diff --git a/README.md b/README.md index 7fc0983e..7935a786 100644 --- a/README.md +++ b/README.md @@ -116,6 +116,14 @@ You can use `linux` or `windows` (all in lowercase) as wildcard. ###### _example `-p windows "Red Hat Enterprise Linux"`_ +##### --architectures | -a + +Instance architecture types to filter. Accepts multiple string values. + +###### _Default: "arm64","arm64_mac","i386","x86_64","x86_64_mac"_ + +###### _example `-a arm64 x86_64`_ + ##### --limit | -l Limits list of price information items to be returned. @@ -173,6 +181,7 @@ import { getGlobalSpotPrices } from 'aws-spot-price'; minVCPU: 2, limit: 5, reduceAZ: true, + architectures: ['arm64', 'x86_64'] }); console.log(JSON.stringify(results, null, 2)); })(); @@ -180,49 +189,65 @@ import { getGlobalSpotPrices } from 'aws-spot-price'; #### Results -```json[ +```json +[ { "availabilityZone": "us-east-2c", - "instanceType": "c5.large", + "instanceType": "t4g.medium", "platform": "Linux/UNIX", - "spotPrice": 0.019, - "timestamp": "2020-11-19T15:18:07.000Z", + "architectures": [ + "arm64" + ], + "spotPrice": 0.0083, + "timestamp": "2024-05-16T10:31:10.000Z", "vCpu": 2, "memoryGiB": 4 }, { - "availabilityZone": "us-east-2c", - "instanceType": "c5a.large", + "availabilityZone": "us-west-2a", + "instanceType": "c7a.large", "platform": "Linux/UNIX", - "spotPrice": 0.019, - "timestamp": "2020-11-19T22:04:26.000Z", + "architectures": [ + "x86_64" + ], + "spotPrice": 0.0103, + "timestamp": "2024-05-15T16:09:23.000Z", "vCpu": 2, "memoryGiB": 4 }, { - "availabilityZone": "us-east-2a", - "instanceType": "c5d.large", + "availabilityZone": "us-west-1b", + "instanceType": "c7i-flex.large", "platform": "Linux/UNIX", - "spotPrice": 0.019, - "timestamp": "2020-11-19T05:58:45.000Z", + "architectures": [ + "x86_64" + ], + "spotPrice": 0.0108, + "timestamp": "2024-05-16T04:16:55.000Z", "vCpu": 2, "memoryGiB": 4 }, { - "availabilityZone": "us-east-2a", - "instanceType": "c5n.large", + "availabilityZone": "us-west-2d", + "instanceType": "m7a.large", "platform": "Linux/UNIX", - "spotPrice": 0.019, - "timestamp": "2020-11-20T02:27:24.000Z", + "architectures": [ + "x86_64" + ], + "spotPrice": 0.0117, + "timestamp": "2024-05-16T00:47:33.000Z", "vCpu": 2, - "memoryGiB": 5.25 + "memoryGiB": 8 }, { - "availabilityZone": "us-east-2b", - "instanceType": "c6g.large", + "availabilityZone": "us-west-2b", + "instanceType": "t3a.medium", "platform": "Linux/UNIX", - "spotPrice": 0.02, - "timestamp": "2020-11-19T13:41:03.000Z", + "architectures": [ + "x86_64" + ], + "spotPrice": 0.0129, + "timestamp": "2024-05-16T09:02:05.000Z", "vCpu": 2, "memoryGiB": 4 } diff --git a/aws-spot-price.code-workspace b/aws-spot-price.code-workspace index b05e77f8..a796014c 100644 --- a/aws-spot-price.code-workspace +++ b/aws-spot-price.code-workspace @@ -11,7 +11,9 @@ "prettier.prettierPath": ".yarn/sdks/prettier/index.js", // editor - "editor.codeActionsOnSave": { "source.fixAll.eslint": true }, + "editor.codeActionsOnSave": { + "source.fixAll.eslint": "explicit" + }, "editor.rulers": [100], "editor.tabSize": 2, "editor.formatOnSave": true, diff --git a/package.json b/package.json index 9e64d4e2..3c696d64 100644 --- a/package.json +++ b/package.json @@ -33,7 +33,7 @@ "build:ec2-info": "ts-node -T scripts/generate-ec2-info.ts", "build:ec2-types": "ts-node -T scripts/generate-ec2-types.ts", "build:regions": "ts-node -T scripts/generate-regions.ts", - "build:types": "dts-bundle-generator -o dist/module.d.ts src/module.ts", + "build:types": "dts-bundle-generator -o dist/module.d.ts src/module.ts --external-inlines @aws-sdk/client-ec2", "build:cli": "yarn esbuild --outdir=./dist --platform=node --format=cjs --bundle --minify --main-fields=module,main --sources-content=false ./src/cli.ts", "build:module": "yarn esbuild --outdir=./dist --platform=node --format=cjs --bundle --minify --main-fields=module,main --sources-content=false ./src/module.ts", "build": "yarn build:cli && yarn build:module", diff --git a/scripts/generate-spot-prices-mock-data.ts b/scripts/generate-spot-prices-mock-data.ts index 5072d52d..53b1f04f 100644 --- a/scripts/generate-spot-prices-mock-data.ts +++ b/scripts/generate-spot-prices-mock-data.ts @@ -18,7 +18,7 @@ const fetchData = async (region: Region, token?: string): Promise => { if (results.NextToken) await fetchData(region, results.NextToken); }; -const jsonPath = resolve(__dirname, '../test/spot-prices-mock.json'); +const jsonPath = resolve(__dirname, '../test/data/spot-prices-mock.json'); const { argv } = yargs() .scriptName('generate-spot-prices-mock') diff --git a/src/lib/core.spec.ts b/src/lib/core.spec.ts index 9b9dc2f9..ad2b1fe7 100644 --- a/src/lib/core.spec.ts +++ b/src/lib/core.spec.ts @@ -336,7 +336,7 @@ describe('lib', () => { beforeAll(async () => { restoreConsole = mockConsole(); mockDefaultRegionEndpoints(); - results = await getGlobalSpotPrices({ architectures: ['arm64'] }); + results = await getGlobalSpotPrices(); }); afterAll(() => { diff --git a/src/lib/core.ts b/src/lib/core.ts index 16a3124b..f3e81b6f 100644 --- a/src/lib/core.ts +++ b/src/lib/core.ts @@ -442,6 +442,7 @@ export const getGlobalSpotPrices = async (options?: { if (instanceInfo) { rExtended.vCpu = instanceInfo.vCpu; rExtended.memoryGiB = instanceInfo.memoryGiB; + rExtended.architectures = instanceInfo.architectures; } else { // fetch intance info data from aws const region = rExtended.availabilityZone.match(/^.+\d/)?.[0]; @@ -456,14 +457,17 @@ export const getGlobalSpotPrices = async (options?: { if ( desc[rExtended.instanceType] && desc[rExtended.instanceType].vCpu && - desc[rExtended.instanceType].memoryGiB + desc[rExtended.instanceType].memoryGiB && + desc[rExtended.instanceType].architectures ) { ec2Info[rExtended.instanceType] = { vCpu: desc[rExtended.instanceType].vCpu, memoryGiB: desc[rExtended.instanceType].memoryGiB, + architectures: desc[rExtended.instanceType].architectures, }; rExtended.vCpu = desc[rExtended.instanceType].vCpu; rExtended.memoryGiB = desc[rExtended.instanceType].memoryGiB; + rExtended.architectures = desc[rExtended.instanceType].architectures; } } } diff --git a/test/__snapshots__/cli.spec.ts.snap b/test/__snapshots__/cli.spec.ts.snap index b48385b3..715c0e83 100644 --- a/test/__snapshots__/cli.spec.ts.snap +++ b/test/__snapshots__/cli.spec.ts.snap @@ -3,122 +3,122 @@ exports[`cli test by import should handle JSON output option 1`] = ` "[ { - "availabilityZone": "us-east-1a", - "instanceType": "t3.nano", - "platform": "Linux/UNIX (Amazon VPC)", + "availabilityZone": "us-east-1c", + "instanceType": "t3a.nano", + "platform": "Linux/UNIX", "architectures": [ "x86_64" ], - "spotPrice": 0.0016, - "timestamp": "2019-10-15T17:09:43.000Z", + "spotPrice": 0.0021, + "timestamp": "2024-05-15T17:09:49.000Z", "vCpu": 2, "memoryGiB": 0.5 }, { - "availabilityZone": "us-east-1b", - "instanceType": "t3.nano", - "platform": "Linux/UNIX (Amazon VPC)", + "availabilityZone": "us-east-1c", + "instanceType": "t3a.nano", + "platform": "SUSE Linux", "architectures": [ "x86_64" ], - "spotPrice": 0.0016, - "timestamp": "2019-10-15T17:09:43.000Z", + "spotPrice": 0.0021, + "timestamp": "2024-05-15T17:09:49.000Z", "vCpu": 2, "memoryGiB": 0.5 }, { - "availabilityZone": "us-east-1c", + "availabilityZone": "us-east-1d", "instanceType": "t3.nano", - "platform": "Linux/UNIX (Amazon VPC)", + "platform": "Linux/UNIX", "architectures": [ "x86_64" ], - "spotPrice": 0.0016, - "timestamp": "2019-10-15T17:09:43.000Z", + "spotPrice": 0.0023, + "timestamp": "2024-05-15T19:02:55.000Z", "vCpu": 2, "memoryGiB": 0.5 }, { "availabilityZone": "us-east-1d", "instanceType": "t3.nano", - "platform": "Linux/UNIX (Amazon VPC)", + "platform": "SUSE Linux", "architectures": [ "x86_64" ], - "spotPrice": 0.0016, - "timestamp": "2019-10-15T17:09:43.000Z", + "spotPrice": 0.0023, + "timestamp": "2024-05-15T19:02:55.000Z", "vCpu": 2, "memoryGiB": 0.5 }, { "availabilityZone": "us-east-1f", "instanceType": "t3.nano", - "platform": "Linux/UNIX (Amazon VPC)", + "platform": "Linux/UNIX", "architectures": [ "x86_64" ], - "spotPrice": 0.0016, - "timestamp": "2019-10-15T17:09:43.000Z", + "spotPrice": 0.0023, + "timestamp": "2024-05-16T00:17:19.000Z", "vCpu": 2, "memoryGiB": 0.5 }, { - "availabilityZone": "us-east-1a", - "instanceType": "t3a.nano", - "platform": "Linux/UNIX (Amazon VPC)", + "availabilityZone": "us-east-1f", + "instanceType": "t3.nano", + "platform": "SUSE Linux", "architectures": [ "x86_64" ], - "spotPrice": 0.0017, - "timestamp": "2019-10-15T22:11:29.000Z", + "spotPrice": 0.0023, + "timestamp": "2024-05-16T00:17:19.000Z", "vCpu": 2, "memoryGiB": 0.5 }, { - "availabilityZone": "us-east-1c", + "availabilityZone": "us-east-1a", "instanceType": "t3a.nano", - "platform": "Linux/UNIX (Amazon VPC)", + "platform": "Linux/UNIX", "architectures": [ "x86_64" ], - "spotPrice": 0.0017, - "timestamp": "2019-10-15T22:11:29.000Z", + "spotPrice": 0.0023, + "timestamp": "2024-05-15T17:09:49.000Z", "vCpu": 2, "memoryGiB": 0.5 }, { - "availabilityZone": "us-east-1b", + "availabilityZone": "us-east-1a", "instanceType": "t3a.nano", - "platform": "Linux/UNIX (Amazon VPC)", + "platform": "SUSE Linux", "architectures": [ "x86_64" ], - "spotPrice": 0.0018, - "timestamp": "2019-10-15T22:11:29.000Z", + "spotPrice": 0.0023, + "timestamp": "2024-05-15T17:09:49.000Z", "vCpu": 2, "memoryGiB": 0.5 }, { - "availabilityZone": "us-east-1d", - "instanceType": "t3a.nano", - "platform": "Linux/UNIX (Amazon VPC)", + "availabilityZone": "us-east-1c", + "instanceType": "t3.nano", + "platform": "Linux/UNIX", "architectures": [ "x86_64" ], - "spotPrice": 0.0018, - "timestamp": "2019-10-15T20:21:10.000Z", + "spotPrice": 0.0024, + "timestamp": "2024-05-16T03:47:25.000Z", "vCpu": 2, "memoryGiB": 0.5 }, { - "availabilityZone": "us-east-1f", - "instanceType": "t3a.nano", - "platform": "Linux/UNIX (Amazon VPC)", + "availabilityZone": "us-east-1c", + "instanceType": "t3.nano", + "platform": "SUSE Linux", "architectures": [ "x86_64" ], - "spotPrice": 0.0018, - "timestamp": "2019-10-15T22:11:29.000Z", + "spotPrice": 0.0024, + "timestamp": "2024-05-16T03:47:25.000Z", "vCpu": 2, "memoryGiB": 0.5 } @@ -126,58 +126,58 @@ exports[`cli test by import should handle JSON output option 1`] = ` `; exports[`cli test by import should handle instance family option 1`] = ` -"╔══════════╤════════╤═════════════════════════╤══════════════╤═══════════════════╗ -║ Type │ Price │ Platform │ Architecture │ Availability Zone ║ -╟──────────┼────────┼─────────────────────────┼──────────────┼───────────────────╢ -║ t3a.nano │ 0.0015 │ Linux/UNIX │ x86_64 │ us-west-2a ║ -║ t3a.nano │ 0.0015 │ Linux/UNIX │ x86_64 │ us-west-2c ║ -║ t3a.nano │ 0.0015 │ Linux/UNIX │ x86_64 │ us-west-2d ║ -║ t3.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ eu-north-1a ║ -║ t3.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ eu-north-1b ║ -║ t3.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ eu-north-1c ║ -║ t3.nano │ 0.0016 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1a ║ -║ t3.nano │ 0.0016 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1b ║ -║ t3.nano │ 0.0016 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1c ║ -║ t3.nano │ 0.0016 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1d ║ -║ t3.nano │ 0.0016 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1f ║ -║ t3.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ us-east-2a ║ -║ t3.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ us-east-2b ║ -║ t3.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ us-east-2c ║ -║ t3.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ us-west-2a ║ -║ t3.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ us-west-2b ║ -║ t3.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ us-west-2c ║ -║ t3.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ us-west-2d ║ -║ t3a.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ ca-central-1a ║ -║ t3a.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ ca-central-1b ║ -╚══════════╧════════╧═════════════════════════╧══════════════╧═══════════════════╝ +"╔══════════╤════════╤════════════╤══════════════╤═══════════════════╗ +║ Type │ Price │ Platform │ Architecture │ Availability Zone ║ +╟──────────┼────────┼────────────┼──────────────┼───────────────────╢ +║ t4g.nano │ 0.0006 │ Linux/UNIX │ arm64 │ ap-northeast-3b ║ +║ t4g.nano │ 0.0006 │ SUSE Linux │ arm64 │ ap-northeast-3b ║ +║ t4g.nano │ 0.0006 │ Linux/UNIX │ arm64 │ ap-northeast-3c ║ +║ t4g.nano │ 0.0006 │ SUSE Linux │ arm64 │ ap-northeast-3c ║ +║ t4g.nano │ 0.0007 │ Linux/UNIX │ arm64 │ ap-northeast-3a ║ +║ t4g.nano │ 0.0007 │ SUSE Linux │ arm64 │ ap-northeast-3a ║ +║ t3.nano │ 0.0010 │ Linux/UNIX │ x86_64 │ us-west-2a ║ +║ t3.nano │ 0.0010 │ SUSE Linux │ x86_64 │ us-west-2a ║ +║ t3.nano │ 0.0010 │ Linux/UNIX │ x86_64 │ us-west-2b ║ +║ t3.nano │ 0.0010 │ SUSE Linux │ x86_64 │ us-west-2b ║ +║ t4g.nano │ 0.0010 │ Linux/UNIX │ arm64 │ sa-east-1a ║ +║ t4g.nano │ 0.0010 │ SUSE Linux │ arm64 │ sa-east-1a ║ +║ t4g.nano │ 0.0010 │ Linux/UNIX │ arm64 │ sa-east-1b ║ +║ t4g.nano │ 0.0010 │ SUSE Linux │ arm64 │ sa-east-1b ║ +║ t3.nano │ 0.0012 │ Linux/UNIX │ x86_64 │ us-west-2c ║ +║ t3.nano │ 0.0012 │ SUSE Linux │ x86_64 │ us-west-2c ║ +║ t3.nano │ 0.0012 │ Linux/UNIX │ x86_64 │ us-west-2d ║ +║ t3.nano │ 0.0012 │ SUSE Linux │ x86_64 │ us-west-2d ║ +║ t3a.nano │ 0.0012 │ Linux/UNIX │ x86_64 │ us-west-2d ║ +║ t3a.nano │ 0.0012 │ SUSE Linux │ x86_64 │ us-west-2d ║ +╚══════════╧════════╧════════════╧══════════════╧═══════════════════╝ " `; exports[`cli test by import should handle no ec2 info found should return expected values 1`] = ` -"╔══════════╤════════╤══════╤═════╤═════════════════════════╤══════════════╤═══════════════════╤═══════════════════════╗ -║ Type │ Price │ vCPU │ RAM │ Platform │ Architecture │ Availability Zone │ Region ║ -╟──────────┼────────┼──────┼─────┼─────────────────────────┼──────────────┼───────────────────┼───────────────────────╢ -║ t3a.nano │ 0.0015 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ us-west-2a │ US West (Oregon) ║ -║ t3a.nano │ 0.0015 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ us-west-2c │ US West (Oregon) ║ -║ t3a.nano │ 0.0015 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ us-west-2d │ US West (Oregon) ║ -║ t3.nano │ 0.0016 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ eu-north-1a │ Europe (Stockholm) ║ -║ t3.nano │ 0.0016 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ eu-north-1b │ Europe (Stockholm) ║ -║ t3.nano │ 0.0016 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ eu-north-1c │ Europe (Stockholm) ║ -║ t3.nano │ 0.0016 │ 2 │ 0.5 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1a │ US East (N. Virginia) ║ -║ t3.nano │ 0.0016 │ 2 │ 0.5 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1b │ US East (N. Virginia) ║ -║ t3.nano │ 0.0016 │ 2 │ 0.5 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1c │ US East (N. Virginia) ║ -║ t3.nano │ 0.0016 │ 2 │ 0.5 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1d │ US East (N. Virginia) ║ -║ t3.nano │ 0.0016 │ 2 │ 0.5 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1f │ US East (N. Virginia) ║ -║ t3.nano │ 0.0016 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ us-east-2a │ US East (Ohio) ║ -║ t3.nano │ 0.0016 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ us-east-2b │ US East (Ohio) ║ -║ t3.nano │ 0.0016 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ us-east-2c │ US East (Ohio) ║ -║ t3.nano │ 0.0016 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ us-west-2a │ US West (Oregon) ║ -║ t3.nano │ 0.0016 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ us-west-2b │ US West (Oregon) ║ -║ t3.nano │ 0.0016 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ us-west-2c │ US West (Oregon) ║ -║ t3.nano │ 0.0016 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ us-west-2d │ US West (Oregon) ║ -║ t3a.nano │ 0.0016 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ ca-central-1a │ Canada (Central) ║ -║ t3a.nano │ 0.0016 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ ca-central-1b │ Canada (Central) ║ -╚══════════╧════════╧══════╧═════╧═════════════════════════╧══════════════╧═══════════════════╧═══════════════════════╝ +"╔══════════╤════════╤══════╤═════╤════════════╤══════════════╤═══════════════════╤═══════════════════════════╗ +║ Type │ Price │ vCPU │ RAM │ Platform │ Architecture │ Availability Zone │ Region ║ +╟──────────┼────────┼──────┼─────┼────────────┼──────────────┼───────────────────┼───────────────────────────╢ +║ t4g.nano │ 0.0006 │ 2 │ 0.5 │ Linux/UNIX │ arm64 │ ap-northeast-3b │ Asia Pacific (Osaka) ║ +║ t4g.nano │ 0.0006 │ 2 │ 0.5 │ SUSE Linux │ arm64 │ ap-northeast-3b │ Asia Pacific (Osaka) ║ +║ t4g.nano │ 0.0006 │ 2 │ 0.5 │ Linux/UNIX │ arm64 │ ap-northeast-3c │ Asia Pacific (Osaka) ║ +║ t4g.nano │ 0.0006 │ 2 │ 0.5 │ SUSE Linux │ arm64 │ ap-northeast-3c │ Asia Pacific (Osaka) ║ +║ t4g.nano │ 0.0007 │ 2 │ 0.5 │ Linux/UNIX │ arm64 │ ap-northeast-3a │ Asia Pacific (Osaka) ║ +║ t4g.nano │ 0.0007 │ 2 │ 0.5 │ SUSE Linux │ arm64 │ ap-northeast-3a │ Asia Pacific (Osaka) ║ +║ t3.nano │ 0.0010 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ us-west-2a │ US West (Oregon) ║ +║ t3.nano │ 0.0010 │ 2 │ 0.5 │ SUSE Linux │ x86_64 │ us-west-2a │ US West (Oregon) ║ +║ t3.nano │ 0.0010 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ us-west-2b │ US West (Oregon) ║ +║ t3.nano │ 0.0010 │ 2 │ 0.5 │ SUSE Linux │ x86_64 │ us-west-2b │ US West (Oregon) ║ +║ t4g.nano │ 0.0010 │ 2 │ 0.5 │ Linux/UNIX │ arm64 │ sa-east-1a │ South America (Sao Paulo) ║ +║ t4g.nano │ 0.0010 │ 2 │ 0.5 │ SUSE Linux │ arm64 │ sa-east-1a │ South America (Sao Paulo) ║ +║ t4g.nano │ 0.0010 │ 2 │ 0.5 │ Linux/UNIX │ arm64 │ sa-east-1b │ South America (Sao Paulo) ║ +║ t4g.nano │ 0.0010 │ 2 │ 0.5 │ SUSE Linux │ arm64 │ sa-east-1b │ South America (Sao Paulo) ║ +║ t3.nano │ 0.0012 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ us-west-2c │ US West (Oregon) ║ +║ t3.nano │ 0.0012 │ 2 │ 0.5 │ SUSE Linux │ x86_64 │ us-west-2c │ US West (Oregon) ║ +║ t3.nano │ 0.0012 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ us-west-2d │ US West (Oregon) ║ +║ t3.nano │ 0.0012 │ 2 │ 0.5 │ SUSE Linux │ x86_64 │ us-west-2d │ US West (Oregon) ║ +║ t3a.nano │ 0.0012 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ us-west-2d │ US West (Oregon) ║ +║ t3a.nano │ 0.0012 │ 2 │ 0.5 │ SUSE Linux │ x86_64 │ us-west-2d │ US West (Oregon) ║ +╚══════════╧════════╧══════╧═════╧════════════╧══════════════╧═══════════════════╧═══════════════════════════╝ " `; @@ -418,158 +418,141 @@ Options: exports[`cli test by import should return expected values if no matching records found 1`] = `"no matching records found"`; exports[`cli test by import should return expected values with default options 1`] = ` -"╔══════════╤════════╤═════════════════════════╤══════════════╤═══════════════════╗ -║ Type │ Price │ Platform │ Architecture │ Availability Zone ║ -╟──────────┼────────┼─────────────────────────┼──────────────┼───────────────────╢ -║ t3a.nano │ 0.0015 │ Linux/UNIX │ x86_64 │ us-west-2a ║ -║ t3.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ eu-north-1a ║ -║ t3.nano │ 0.0016 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1a ║ -║ t3.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ us-east-2a ║ -║ t3.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ us-west-2a ║ -║ t3a.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ ca-central-1a ║ -║ t3a.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ eu-central-1a ║ -║ t3a.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ eu-west-1b ║ -║ t3a.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ eu-west-2a ║ -║ t3a.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ eu-west-3a ║ -║ t3a.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ us-east-2b ║ -║ t3.nano │ 0.0017 │ Linux/UNIX │ x86_64 │ ap-south-1a ║ -║ t3.nano │ 0.0017 │ Linux/UNIX │ x86_64 │ ca-central-1a ║ -║ t3.nano │ 0.0017 │ Linux/UNIX │ x86_64 │ eu-west-1a ║ -║ t3a.nano │ 0.0017 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1a ║ -║ t3a.nano │ 0.0017 │ Linux/UNIX │ x86_64 │ us-west-1b ║ -║ t3.nano │ 0.0018 │ Linux/UNIX │ x86_64 │ eu-central-1a ║ -║ t3.nano │ 0.0018 │ Linux/UNIX │ x86_64 │ eu-west-2a ║ -║ t3a.nano │ 0.0018 │ Linux/UNIX (Amazon VPC) │ x86_64 │ ap-northeast-1a ║ -║ t3a.nano │ 0.0018 │ Linux/UNIX │ x86_64 │ ap-northeast-2a ║ -║ t3a.nano │ 0.0018 │ Linux/UNIX (Amazon VPC) │ x86_64 │ ap-southeast-1a ║ -║ t3a.nano │ 0.0018 │ Linux/UNIX │ x86_64 │ ap-southeast-2a ║ -║ t3.nano │ 0.0019 │ Linux/UNIX │ x86_64 │ us-west-1b ║ -║ t3a.nano │ 0.0019 │ Linux/UNIX │ x86_64 │ sa-east-1a ║ -║ t1.micro │ 0.0020 │ Linux/UNIX │ i386, x86_64 │ ap-southeast-1a ║ -║ t1.micro │ 0.0020 │ Linux/UNIX (Amazon VPC) │ i386, x86_64 │ ap-southeast-1a ║ -║ t1.micro │ 0.0020 │ Linux/UNIX │ i386, x86_64 │ ap-southeast-2a ║ -║ t1.micro │ 0.0020 │ Linux/UNIX │ i386, x86_64 │ eu-west-1a ║ -║ t1.micro │ 0.0020 │ Linux/UNIX │ i386, x86_64 │ us-east-1a ║ -║ t1.micro │ 0.0020 │ Linux/UNIX (Amazon VPC) │ i386, x86_64 │ us-east-1a ║ -╚══════════╧════════╧═════════════════════════╧══════════════╧═══════════════════╝ +"╔═══════════╤════════╤════════════╤══════════════╤═══════════════════╗ +║ Type │ Price │ Platform │ Architecture │ Availability Zone ║ +╟───────────┼────────┼────────────┼──────────────┼───────────────────╢ +║ t4g.nano │ 0.0006 │ Linux/UNIX │ arm64 │ ap-northeast-3b ║ +║ t3.nano │ 0.0010 │ Linux/UNIX │ x86_64 │ us-west-2a ║ +║ t4g.nano │ 0.0010 │ Linux/UNIX │ arm64 │ sa-east-1a ║ +║ t3a.nano │ 0.0012 │ Linux/UNIX │ x86_64 │ us-west-2d ║ +║ t4g.nano │ 0.0012 │ Linux/UNIX │ arm64 │ ap-south-1b ║ +║ t3a.nano │ 0.0013 │ Linux/UNIX │ x86_64 │ ap-south-1b ║ +║ t4g.micro │ 0.0013 │ Linux/UNIX │ arm64 │ ap-northeast-3a ║ +║ t4g.micro │ 0.0013 │ Linux/UNIX │ arm64 │ sa-east-1b ║ +║ t3.micro │ 0.0014 │ Linux/UNIX │ x86_64 │ us-west-2a ║ +║ t4g.nano │ 0.0014 │ Linux/UNIX │ arm64 │ eu-north-1a ║ +║ t3.nano │ 0.0015 │ Linux/UNIX │ x86_64 │ us-east-2c ║ +║ t3.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ ap-northeast-3c ║ +║ t3.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ ap-southeast-1a ║ +║ t3.nano │ 0.0017 │ Linux/UNIX │ x86_64 │ ap-south-1b ║ +║ t3.nano │ 0.0017 │ Linux/UNIX │ x86_64 │ sa-east-1a ║ +║ t3a.nano │ 0.0017 │ Linux/UNIX │ x86_64 │ ap-southeast-1a ║ +║ t3a.nano │ 0.0017 │ Linux/UNIX │ x86_64 │ us-east-2c ║ +║ t4g.nano │ 0.0017 │ Linux/UNIX │ arm64 │ ap-northeast-2b ║ +║ t4g.nano │ 0.0017 │ Linux/UNIX │ arm64 │ eu-central-1a ║ +║ t4g.nano │ 0.0017 │ Linux/UNIX │ arm64 │ eu-west-3a ║ +║ t3.nano │ 0.0018 │ Linux/UNIX │ x86_64 │ ap-northeast-2b ║ +║ t3.nano │ 0.0018 │ Linux/UNIX │ x86_64 │ eu-central-1c ║ +║ t3.nano │ 0.0018 │ Linux/UNIX │ x86_64 │ eu-north-1b ║ +║ t3.nano │ 0.0018 │ Linux/UNIX │ x86_64 │ eu-west-3b ║ +║ t3a.nano │ 0.0018 │ Linux/UNIX │ x86_64 │ ca-central-1b ║ +║ t4g.micro │ 0.0018 │ Linux/UNIX │ arm64 │ ap-south-1b ║ +║ t4g.micro │ 0.0018 │ Linux/UNIX │ arm64 │ eu-west-3a ║ +║ t4g.nano │ 0.0018 │ Linux/UNIX │ arm64 │ us-east-2c ║ +║ t3.micro │ 0.0019 │ Linux/UNIX │ x86_64 │ ap-northeast-2c ║ +║ t3.nano │ 0.0020 │ Linux/UNIX │ x86_64 │ ca-central-1d ║ +╚═══════════╧════════╧════════════╧══════════════╧═══════════════════╝ " `; exports[`cli test by import should return expected values with instance family types and sizes 1`] = ` -"╔══════════╤════════╤═════════════════════════╤══════════════╤═══════════════════╗ -║ Type │ Price │ Platform │ Architecture │ Availability Zone ║ -╟──────────┼────────┼─────────────────────────┼──────────────┼───────────────────╢ -║ t3a.nano │ 0.0015 │ Linux/UNIX │ x86_64 │ us-west-2a ║ -║ t3a.nano │ 0.0015 │ Linux/UNIX │ x86_64 │ us-west-2c ║ -║ t3a.nano │ 0.0015 │ Linux/UNIX │ x86_64 │ us-west-2d ║ -║ t3.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ eu-north-1a ║ -║ t3.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ eu-north-1b ║ -║ t3.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ eu-north-1c ║ -║ t3.nano │ 0.0016 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1a ║ -║ t3.nano │ 0.0016 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1b ║ -║ t3.nano │ 0.0016 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1c ║ -║ t3.nano │ 0.0016 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1d ║ -║ t3.nano │ 0.0016 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1f ║ -║ t3.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ us-east-2a ║ -║ t3.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ us-east-2b ║ -║ t3.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ us-east-2c ║ -║ t3.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ us-west-2a ║ -║ t3.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ us-west-2b ║ -║ t3.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ us-west-2c ║ -║ t3.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ us-west-2d ║ -║ t3a.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ ca-central-1a ║ -║ t3a.nano │ 0.0016 │ Linux/UNIX │ x86_64 │ ca-central-1b ║ -╚══════════╧════════╧═════════════════════════╧══════════════╧═══════════════════╝ +"╔══════════╤════════╤════════════╤══════════════╤═══════════════════╗ +║ Type │ Price │ Platform │ Architecture │ Availability Zone ║ +╟──────────┼────────┼────────────┼──────────────┼───────────────────╢ +║ t4g.nano │ 0.0006 │ Linux/UNIX │ arm64 │ ap-northeast-3b ║ +║ t4g.nano │ 0.0006 │ SUSE Linux │ arm64 │ ap-northeast-3b ║ +║ t4g.nano │ 0.0006 │ Linux/UNIX │ arm64 │ ap-northeast-3c ║ +║ t4g.nano │ 0.0006 │ SUSE Linux │ arm64 │ ap-northeast-3c ║ +║ t4g.nano │ 0.0007 │ Linux/UNIX │ arm64 │ ap-northeast-3a ║ +║ t4g.nano │ 0.0007 │ SUSE Linux │ arm64 │ ap-northeast-3a ║ +║ t3.nano │ 0.0010 │ Linux/UNIX │ x86_64 │ us-west-2a ║ +║ t3.nano │ 0.0010 │ SUSE Linux │ x86_64 │ us-west-2a ║ +║ t3.nano │ 0.0010 │ Linux/UNIX │ x86_64 │ us-west-2b ║ +║ t3.nano │ 0.0010 │ SUSE Linux │ x86_64 │ us-west-2b ║ +║ t4g.nano │ 0.0010 │ Linux/UNIX │ arm64 │ sa-east-1a ║ +║ t4g.nano │ 0.0010 │ SUSE Linux │ arm64 │ sa-east-1a ║ +║ t4g.nano │ 0.0010 │ Linux/UNIX │ arm64 │ sa-east-1b ║ +║ t4g.nano │ 0.0010 │ SUSE Linux │ arm64 │ sa-east-1b ║ +║ t3.nano │ 0.0012 │ Linux/UNIX │ x86_64 │ us-west-2c ║ +║ t3.nano │ 0.0012 │ SUSE Linux │ x86_64 │ us-west-2c ║ +║ t3.nano │ 0.0012 │ Linux/UNIX │ x86_64 │ us-west-2d ║ +║ t3.nano │ 0.0012 │ SUSE Linux │ x86_64 │ us-west-2d ║ +║ t3a.nano │ 0.0012 │ Linux/UNIX │ x86_64 │ us-west-2d ║ +║ t3a.nano │ 0.0012 │ SUSE Linux │ x86_64 │ us-west-2d ║ +╚══════════╧════════╧════════════╧══════════════╧═══════════════════╝ " `; -exports[`cli test by import should return expected values with user options 1`] = ` -"╔══════════╤════════╤═════════════════════════╤══════════════╤═══════════════════╗ -║ Type │ Price │ Platform │ Architecture │ Availability Zone ║ -╟──────────┼────────┼─────────────────────────┼──────────────┼───────────────────╢ -║ t3.nano │ 0.0016 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1a ║ -║ t3.nano │ 0.0016 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1b ║ -║ t3.nano │ 0.0016 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1c ║ -║ t3.nano │ 0.0016 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1d ║ -║ t3.nano │ 0.0016 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1f ║ -║ t3a.nano │ 0.0017 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1a ║ -║ t3a.nano │ 0.0017 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1c ║ -║ t3a.nano │ 0.0018 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1b ║ -║ t3a.nano │ 0.0018 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1d ║ -║ t3a.nano │ 0.0018 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1f ║ -║ t1.micro │ 0.0020 │ Linux/UNIX (Amazon VPC) │ i386, x86_64 │ us-east-1a ║ -╚══════════╧════════╧═════════════════════════╧══════════════╧═══════════════════╝ -" -`; +exports[`cli test by import should return expected values with user options 1`] = `"no matching records found"`; exports[`cli test by import should return expected values with wide option 1`] = ` -"╔══════════╤════════╤══════╤═══════╤═════════════════════════╤══════════════╤═══════════════════╤═══════════════════════════╗ -║ Type │ Price │ vCPU │ RAM │ Platform │ Architecture │ Availability Zone │ Region ║ -╟──────────┼────────┼──────┼───────┼─────────────────────────┼──────────────┼───────────────────┼───────────────────────────╢ -║ t3a.nano │ 0.0015 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ us-west-2a │ US West (Oregon) ║ -║ t3.nano │ 0.0016 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ eu-north-1a │ Europe (Stockholm) ║ -║ t3.nano │ 0.0016 │ 2 │ 0.5 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1a │ US East (N. Virginia) ║ -║ t3.nano │ 0.0016 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ us-east-2a │ US East (Ohio) ║ -║ t3.nano │ 0.0016 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ us-west-2a │ US West (Oregon) ║ -║ t3a.nano │ 0.0016 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ ca-central-1a │ Canada (Central) ║ -║ t3a.nano │ 0.0016 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ eu-central-1a │ Europe (Frankfurt) ║ -║ t3a.nano │ 0.0016 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ eu-west-1b │ Europe (Ireland) ║ -║ t3a.nano │ 0.0016 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ eu-west-2a │ Europe (London) ║ -║ t3a.nano │ 0.0016 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ eu-west-3a │ Europe (Paris) ║ -║ t3a.nano │ 0.0016 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ us-east-2b │ US East (Ohio) ║ -║ t3.nano │ 0.0017 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ ap-south-1a │ Asia Pacific (Mumbai) ║ -║ t3.nano │ 0.0017 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ ca-central-1a │ Canada (Central) ║ -║ t3.nano │ 0.0017 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ eu-west-1a │ Europe (Ireland) ║ -║ t3a.nano │ 0.0017 │ 2 │ 0.5 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1a │ US East (N. Virginia) ║ -║ t3a.nano │ 0.0017 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ us-west-1b │ US West (N. California) ║ -║ t3.nano │ 0.0018 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ eu-central-1a │ Europe (Frankfurt) ║ -║ t3.nano │ 0.0018 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ eu-west-2a │ Europe (London) ║ -║ t3a.nano │ 0.0018 │ 2 │ 0.5 │ Linux/UNIX (Amazon VPC) │ x86_64 │ ap-northeast-1a │ Asia Pacific (Tokyo) ║ -║ t3a.nano │ 0.0018 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ ap-northeast-2a │ Asia Pacific (Seoul) ║ -║ t3a.nano │ 0.0018 │ 2 │ 0.5 │ Linux/UNIX (Amazon VPC) │ x86_64 │ ap-southeast-1a │ Asia Pacific (Singapore) ║ -║ t3a.nano │ 0.0018 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ ap-southeast-2a │ Asia Pacific (Sydney) ║ -║ t3.nano │ 0.0019 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ us-west-1b │ US West (N. California) ║ -║ t3a.nano │ 0.0019 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ sa-east-1a │ South America (Sao Paulo) ║ -║ t1.micro │ 0.0020 │ 1 │ 0.613 │ Linux/UNIX │ i386, x86_64 │ ap-southeast-1a │ Asia Pacific (Singapore) ║ -║ t1.micro │ 0.0020 │ 1 │ 0.613 │ Linux/UNIX (Amazon VPC) │ i386, x86_64 │ ap-southeast-1a │ Asia Pacific (Singapore) ║ -║ t1.micro │ 0.0020 │ 1 │ 0.613 │ Linux/UNIX │ i386, x86_64 │ ap-southeast-2a │ Asia Pacific (Sydney) ║ -║ t1.micro │ 0.0020 │ 1 │ 0.613 │ Linux/UNIX │ i386, x86_64 │ eu-west-1a │ Europe (Ireland) ║ -║ t1.micro │ 0.0020 │ 1 │ 0.613 │ Linux/UNIX │ i386, x86_64 │ us-east-1a │ US East (N. Virginia) ║ -║ t1.micro │ 0.0020 │ 1 │ 0.613 │ Linux/UNIX (Amazon VPC) │ i386, x86_64 │ us-east-1a │ US East (N. Virginia) ║ -╚══════════╧════════╧══════╧═══════╧═════════════════════════╧══════════════╧═══════════════════╧═══════════════════════════╝ +"╔═══════════╤════════╤══════╤═════╤════════════╤══════════════╤═══════════════════╤═══════════════════════════╗ +║ Type │ Price │ vCPU │ RAM │ Platform │ Architecture │ Availability Zone │ Region ║ +╟───────────┼────────┼──────┼─────┼────────────┼──────────────┼───────────────────┼───────────────────────────╢ +║ t4g.nano │ 0.0006 │ 2 │ 0.5 │ Linux/UNIX │ arm64 │ ap-northeast-3b │ Asia Pacific (Osaka) ║ +║ t3.nano │ 0.0010 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ us-west-2a │ US West (Oregon) ║ +║ t4g.nano │ 0.0010 │ 2 │ 0.5 │ Linux/UNIX │ arm64 │ sa-east-1a │ South America (Sao Paulo) ║ +║ t3a.nano │ 0.0012 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ us-west-2d │ US West (Oregon) ║ +║ t4g.nano │ 0.0012 │ 2 │ 0.5 │ Linux/UNIX │ arm64 │ ap-south-1b │ Asia Pacific (Mumbai) ║ +║ t3a.nano │ 0.0013 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ ap-south-1b │ Asia Pacific (Mumbai) ║ +║ t4g.micro │ 0.0013 │ 2 │ 1 │ Linux/UNIX │ arm64 │ ap-northeast-3a │ Asia Pacific (Osaka) ║ +║ t4g.micro │ 0.0013 │ 2 │ 1 │ Linux/UNIX │ arm64 │ sa-east-1b │ South America (Sao Paulo) ║ +║ t3.micro │ 0.0014 │ 2 │ 1 │ Linux/UNIX │ x86_64 │ us-west-2a │ US West (Oregon) ║ +║ t4g.nano │ 0.0014 │ 2 │ 0.5 │ Linux/UNIX │ arm64 │ eu-north-1a │ Europe (Stockholm) ║ +║ t3.nano │ 0.0015 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ us-east-2c │ US East (Ohio) ║ +║ t3.nano │ 0.0016 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ ap-northeast-3c │ Asia Pacific (Osaka) ║ +║ t3.nano │ 0.0016 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ ap-southeast-1a │ Asia Pacific (Singapore) ║ +║ t3.nano │ 0.0017 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ ap-south-1b │ Asia Pacific (Mumbai) ║ +║ t3.nano │ 0.0017 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ sa-east-1a │ South America (Sao Paulo) ║ +║ t3a.nano │ 0.0017 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ ap-southeast-1a │ Asia Pacific (Singapore) ║ +║ t3a.nano │ 0.0017 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ us-east-2c │ US East (Ohio) ║ +║ t4g.nano │ 0.0017 │ 2 │ 0.5 │ Linux/UNIX │ arm64 │ ap-northeast-2b │ Asia Pacific (Seoul) ║ +║ t4g.nano │ 0.0017 │ 2 │ 0.5 │ Linux/UNIX │ arm64 │ eu-central-1a │ Europe (Frankfurt) ║ +║ t4g.nano │ 0.0017 │ 2 │ 0.5 │ Linux/UNIX │ arm64 │ eu-west-3a │ Europe (Paris) ║ +║ t3.nano │ 0.0018 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ ap-northeast-2b │ Asia Pacific (Seoul) ║ +║ t3.nano │ 0.0018 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ eu-central-1c │ Europe (Frankfurt) ║ +║ t3.nano │ 0.0018 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ eu-north-1b │ Europe (Stockholm) ║ +║ t3.nano │ 0.0018 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ eu-west-3b │ Europe (Paris) ║ +║ t3a.nano │ 0.0018 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ ca-central-1b │ Canada (Central) ║ +║ t4g.micro │ 0.0018 │ 2 │ 1 │ Linux/UNIX │ arm64 │ ap-south-1b │ Asia Pacific (Mumbai) ║ +║ t4g.micro │ 0.0018 │ 2 │ 1 │ Linux/UNIX │ arm64 │ eu-west-3a │ Europe (Paris) ║ +║ t4g.nano │ 0.0018 │ 2 │ 0.5 │ Linux/UNIX │ arm64 │ us-east-2c │ US East (Ohio) ║ +║ t3.micro │ 0.0019 │ 2 │ 1 │ Linux/UNIX │ x86_64 │ ap-northeast-2c │ Asia Pacific (Seoul) ║ +║ t3.nano │ 0.0020 │ 2 │ 0.5 │ Linux/UNIX │ x86_64 │ ca-central-1d │ Canada (Central) ║ +╚═══════════╧════════╧══════╧═════╧════════════╧══════════════╧═══════════════════╧═══════════════════════════╝ " `; exports[`cli test by import should return expected values with wildcard platforms 1`] = ` -"╔══════════╤════════╤═════════════════════════╤══════════════╤═══════════════════╗ -║ Type │ Price │ Platform │ Architecture │ Availability Zone ║ -╟──────────┼────────┼─────────────────────────┼──────────────┼───────────────────╢ -║ t3.nano │ 0.0016 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1a ║ -║ t3.nano │ 0.0016 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1b ║ -║ t3.nano │ 0.0016 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1c ║ -║ t3.nano │ 0.0016 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1d ║ -║ t3.nano │ 0.0016 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1f ║ -║ t3a.nano │ 0.0017 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1a ║ -║ t3a.nano │ 0.0017 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1c ║ -║ t3a.nano │ 0.0018 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1b ║ -║ t3a.nano │ 0.0018 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1d ║ -║ t3a.nano │ 0.0018 │ Linux/UNIX (Amazon VPC) │ x86_64 │ us-east-1f ║ -╚══════════╧════════╧═════════════════════════╧══════════════╧═══════════════════╝ +"╔══════════╤════════╤════════════╤══════════════╤═══════════════════╗ +║ Type │ Price │ Platform │ Architecture │ Availability Zone ║ +╟──────────┼────────┼────────────┼──────────────┼───────────────────╢ +║ t3a.nano │ 0.0021 │ Linux/UNIX │ x86_64 │ us-east-1c ║ +║ t3a.nano │ 0.0021 │ SUSE Linux │ x86_64 │ us-east-1c ║ +║ t3.nano │ 0.0023 │ Linux/UNIX │ x86_64 │ us-east-1d ║ +║ t3.nano │ 0.0023 │ SUSE Linux │ x86_64 │ us-east-1d ║ +║ t3.nano │ 0.0023 │ Linux/UNIX │ x86_64 │ us-east-1f ║ +║ t3.nano │ 0.0023 │ SUSE Linux │ x86_64 │ us-east-1f ║ +║ t3a.nano │ 0.0023 │ Linux/UNIX │ x86_64 │ us-east-1a ║ +║ t3a.nano │ 0.0023 │ SUSE Linux │ x86_64 │ us-east-1a ║ +║ t3.nano │ 0.0024 │ Linux/UNIX │ x86_64 │ us-east-1c ║ +║ t3.nano │ 0.0024 │ SUSE Linux │ x86_64 │ us-east-1c ║ +╚══════════╧════════╧════════════╧══════════════╧═══════════════════╝ -╔══════════╤═══════╤══════════════════════╤══════════════╤═══════════════════╗ -║ Type │ Price │ Platform │ Architecture │ Availability Zone ║ -╟──────────┼───────┼──────────────────────┼──────────────┼───────────────────╢ -║ t1.micro │ 0.002 │ Windows │ i386, x86_64 │ us-east-1a ║ -║ t1.micro │ 0.002 │ Windows (Amazon VPC) │ i386, x86_64 │ us-east-1a ║ -║ t1.micro │ 0.002 │ Windows │ i386, x86_64 │ us-east-1b ║ -║ t1.micro │ 0.002 │ Windows (Amazon VPC) │ i386, x86_64 │ us-east-1b ║ -║ t1.micro │ 0.002 │ Windows │ i386, x86_64 │ us-east-1c ║ -║ t1.micro │ 0.002 │ Windows (Amazon VPC) │ i386, x86_64 │ us-east-1c ║ -║ t1.micro │ 0.002 │ Windows │ i386, x86_64 │ us-east-1d ║ -║ t1.micro │ 0.002 │ Windows (Amazon VPC) │ i386, x86_64 │ us-east-1d ║ -║ t1.micro │ 0.002 │ Windows (Amazon VPC) │ i386, x86_64 │ us-east-1f ║ -║ t3a.nano │ 0.006 │ Windows (Amazon VPC) │ x86_64 │ us-east-1a ║ -╚══════════╧═══════╧══════════════════════╧══════════════╧═══════════════════╝ +╔══════════╤════════╤══════════╤══════════════╤═══════════════════╗ +║ Type │ Price │ Platform │ Architecture │ Availability Zone ║ +╟──────────┼────────┼──────────┼──────────────┼───────────────────╢ +║ t3a.nano │ 0.0066 │ Windows │ x86_64 │ us-east-1f ║ +║ t3a.nano │ 0.0067 │ Windows │ x86_64 │ us-east-1c ║ +║ t3.nano │ 0.0068 │ Windows │ x86_64 │ us-east-1d ║ +║ t3a.nano │ 0.0068 │ Windows │ x86_64 │ us-east-1b ║ +║ t3.nano │ 0.0069 │ Windows │ x86_64 │ us-east-1b ║ +║ t3.nano │ 0.0069 │ Windows │ x86_64 │ us-east-1f ║ +║ t3a.nano │ 0.0069 │ Windows │ x86_64 │ us-east-1a ║ +║ t3a.nano │ 0.0069 │ Windows │ x86_64 │ us-east-1d ║ +║ t3.nano │ 0.0070 │ Windows │ x86_64 │ us-east-1a ║ +║ t3.nano │ 0.0070 │ Windows │ x86_64 │ us-east-1c ║ +╚══════════╧════════╧══════════╧══════════════╧═══════════════════╝ " `; @@ -577,34 +560,62 @@ exports[`cli test by import ui mode should return expected result 1`] = ` "╔══════════╤════════╤════════════╤══════════════╤═══════════════════╗ ║ Type │ Price │ Platform │ Architecture │ Availability Zone ║ ╟──────────┼────────┼────────────┼──────────────┼───────────────────╢ -║ c4.large │ 0.0181 │ Linux/UNIX │ x86_64 │ us-east-2a ║ -║ c4.large │ 0.0181 │ Linux/UNIX │ x86_64 │ us-east-2c ║ -║ c4.large │ 0.0195 │ Linux/UNIX │ x86_64 │ us-east-2b ║ -║ r5.large │ 0.0209 │ Linux/UNIX │ x86_64 │ us-east-2a ║ -║ r5.large │ 0.0211 │ Linux/UNIX │ x86_64 │ us-east-2c ║ -║ r5.large │ 0.0212 │ Linux/UNIX │ x86_64 │ us-east-2b ║ -║ c4.large │ 0.0293 │ Linux/UNIX │ x86_64 │ us-west-1b ║ -║ c4.large │ 0.0293 │ Linux/UNIX │ x86_64 │ us-west-1c ║ -║ c4.large │ 0.0313 │ Linux/UNIX │ x86_64 │ us-west-2c ║ -║ c4.large │ 0.0315 │ Linux/UNIX │ x86_64 │ us-west-2a ║ -║ c4.large │ 0.0333 │ Linux/UNIX │ x86_64 │ us-west-2b ║ -║ r5.large │ 0.0338 │ Linux/UNIX │ x86_64 │ us-west-1c ║ -║ r5.large │ 0.0354 │ Linux/UNIX │ x86_64 │ us-west-2a ║ -║ r5.large │ 0.0354 │ Linux/UNIX │ x86_64 │ us-west-2b ║ -║ r5.large │ 0.0354 │ Linux/UNIX │ x86_64 │ us-west-2c ║ -║ r5.large │ 0.0414 │ Linux/UNIX │ x86_64 │ us-west-1b ║ -║ r5.large │ 0.0690 │ Linux/UNIX │ x86_64 │ us-west-2d ║ -║ c4.large │ 0.1293 │ SUSE Linux │ x86_64 │ us-west-1b ║ -║ c4.large │ 0.1293 │ SUSE Linux │ x86_64 │ us-west-1c ║ -║ c4.large │ 0.1313 │ SUSE Linux │ x86_64 │ us-west-2c ║ -║ c4.large │ 0.1315 │ SUSE Linux │ x86_64 │ us-west-2a ║ -║ c4.large │ 0.1333 │ SUSE Linux │ x86_64 │ us-west-2b ║ -║ r5.large │ 0.1338 │ SUSE Linux │ x86_64 │ us-west-1c ║ -║ r5.large │ 0.1354 │ SUSE Linux │ x86_64 │ us-west-2a ║ -║ r5.large │ 0.1354 │ SUSE Linux │ x86_64 │ us-west-2b ║ -║ r5.large │ 0.1354 │ SUSE Linux │ x86_64 │ us-west-2c ║ -║ r5.large │ 0.1414 │ SUSE Linux │ x86_64 │ us-west-1b ║ -║ r5.large │ 0.1690 │ SUSE Linux │ x86_64 │ us-west-2d ║ +║ c4.large │ 0.0344 │ Linux/UNIX │ x86_64 │ us-east-2c ║ +║ c4.large │ 0.0353 │ Linux/UNIX │ x86_64 │ us-east-2b ║ +║ c4.large │ 0.0376 │ Linux/UNIX │ x86_64 │ us-west-2c ║ +║ c4.large │ 0.0379 │ Linux/UNIX │ x86_64 │ us-west-2a ║ +║ c4.large │ 0.0382 │ Linux/UNIX │ x86_64 │ us-east-2a ║ +║ c4.large │ 0.0389 │ Linux/UNIX │ x86_64 │ us-west-2b ║ +║ r5.large │ 0.0446 │ Linux/UNIX │ x86_64 │ us-west-2d ║ +║ c4.large │ 0.0464 │ Linux/UNIX │ x86_64 │ us-east-1f ║ +║ c4.large │ 0.0472 │ Linux/UNIX │ x86_64 │ us-west-1b ║ +║ r5.large │ 0.0485 │ Linux/UNIX │ x86_64 │ us-west-1b ║ +║ c4.large │ 0.0493 │ Linux/UNIX │ x86_64 │ us-east-1e ║ +║ c4.large │ 0.0506 │ Linux/UNIX │ x86_64 │ us-east-1d ║ +║ c4.large │ 0.0515 │ Linux/UNIX │ x86_64 │ us-west-1c ║ +║ c4.large │ 0.0531 │ Linux/UNIX │ x86_64 │ us-east-1a ║ +║ r5.large │ 0.0534 │ Linux/UNIX │ x86_64 │ us-west-2c ║ +║ r5.large │ 0.0545 │ Linux/UNIX │ x86_64 │ us-west-2a ║ +║ c4.large │ 0.0554 │ Linux/UNIX │ x86_64 │ us-east-1b ║ +║ r5.large │ 0.0554 │ Linux/UNIX │ x86_64 │ us-east-2c ║ +║ r5.large │ 0.0560 │ Linux/UNIX │ x86_64 │ us-east-2b ║ +║ r5.large │ 0.0560 │ Linux/UNIX │ x86_64 │ us-west-2b ║ +║ c4.large │ 0.0575 │ Linux/UNIX │ x86_64 │ us-east-1c ║ +║ r5.large │ 0.0618 │ Linux/UNIX │ x86_64 │ us-east-2a ║ +║ r5.large │ 0.0621 │ Linux/UNIX │ x86_64 │ us-west-1c ║ +║ r5.large │ 0.0626 │ Linux/UNIX │ x86_64 │ us-east-1a ║ +║ r5.large │ 0.0650 │ Linux/UNIX │ x86_64 │ us-east-1c ║ +║ r5.large │ 0.0653 │ Linux/UNIX │ x86_64 │ us-east-1b ║ +║ r5.large │ 0.0668 │ Linux/UNIX │ x86_64 │ us-east-1f ║ +║ r5.large │ 0.0675 │ Linux/UNIX │ x86_64 │ us-east-1d ║ +║ r5.large │ 0.1006 │ SUSE Linux │ x86_64 │ us-west-2d ║ +║ r5.large │ 0.1045 │ SUSE Linux │ x86_64 │ us-west-1b ║ +║ r5.large │ 0.1094 │ SUSE Linux │ x86_64 │ us-west-2c ║ +║ r5.large │ 0.1105 │ SUSE Linux │ x86_64 │ us-west-2a ║ +║ r5.large │ 0.1114 │ SUSE Linux │ x86_64 │ us-east-2c ║ +║ r5.large │ 0.1120 │ SUSE Linux │ x86_64 │ us-east-2b ║ +║ r5.large │ 0.1120 │ SUSE Linux │ x86_64 │ us-west-2b ║ +║ r5.large │ 0.1178 │ SUSE Linux │ x86_64 │ us-east-2a ║ +║ r5.large │ 0.1181 │ SUSE Linux │ x86_64 │ us-west-1c ║ +║ r5.large │ 0.1186 │ SUSE Linux │ x86_64 │ us-east-1a ║ +║ r5.large │ 0.1210 │ SUSE Linux │ x86_64 │ us-east-1c ║ +║ r5.large │ 0.1213 │ SUSE Linux │ x86_64 │ us-east-1b ║ +║ r5.large │ 0.1228 │ SUSE Linux │ x86_64 │ us-east-1f ║ +║ r5.large │ 0.1235 │ SUSE Linux │ x86_64 │ us-east-1d ║ +║ c4.large │ 0.1344 │ SUSE Linux │ x86_64 │ us-east-2c ║ +║ c4.large │ 0.1353 │ SUSE Linux │ x86_64 │ us-east-2b ║ +║ c4.large │ 0.1376 │ SUSE Linux │ x86_64 │ us-west-2c ║ +║ c4.large │ 0.1379 │ SUSE Linux │ x86_64 │ us-west-2a ║ +║ c4.large │ 0.1382 │ SUSE Linux │ x86_64 │ us-east-2a ║ +║ c4.large │ 0.1389 │ SUSE Linux │ x86_64 │ us-west-2b ║ +║ c4.large │ 0.1464 │ SUSE Linux │ x86_64 │ us-east-1f ║ +║ c4.large │ 0.1472 │ SUSE Linux │ x86_64 │ us-west-1b ║ +║ c4.large │ 0.1493 │ SUSE Linux │ x86_64 │ us-east-1e ║ +║ c4.large │ 0.1506 │ SUSE Linux │ x86_64 │ us-east-1d ║ +║ c4.large │ 0.1515 │ SUSE Linux │ x86_64 │ us-west-1c ║ +║ c4.large │ 0.1531 │ SUSE Linux │ x86_64 │ us-east-1a ║ +║ c4.large │ 0.1554 │ SUSE Linux │ x86_64 │ us-east-1b ║ +║ c4.large │ 0.1575 │ SUSE Linux │ x86_64 │ us-east-1c ║ ╚══════════╧════════╧════════════╧══════════════╧═══════════════════╝ " `; diff --git a/test/__snapshots__/lib/core.spec.ts.snap b/test/__snapshots__/lib/core.spec.ts.snap index 09ab4b65..52144b04 100644 --- a/test/__snapshots__/lib/core.spec.ts.snap +++ b/test/__snapshots__/lib/core.spec.ts.snap @@ -2447,206 +2447,206 @@ exports[`lib getGlobalSpotPrices run with default options should return expected [ { "architectures": [ - "x86_64", + "arm64", ], - "availabilityZone": "us-west-2a", - "instanceType": "t3a.nano", + "availabilityZone": "ap-northeast-3b", + "instanceType": "t4g.nano", "memoryGiB": 0.5, "platform": "Linux/UNIX", - "spotPrice": 0.0015, - "timestamp": 2019-10-15T22:41:58.000Z, + "spotPrice": 0.0006, + "timestamp": 2024-05-15T15:29:18.000Z, "vCpu": 2, }, { "architectures": [ - "x86_64", + "arm64", ], - "availabilityZone": "us-west-2c", - "instanceType": "t3a.nano", + "availabilityZone": "ap-northeast-3b", + "instanceType": "t4g.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX", - "spotPrice": 0.0015, - "timestamp": 2019-10-15T07:13:00.000Z, + "platform": "SUSE Linux", + "spotPrice": 0.0006, + "timestamp": 2024-05-15T15:29:18.000Z, "vCpu": 2, }, { "architectures": [ - "x86_64", + "arm64", ], - "availabilityZone": "us-west-2d", - "instanceType": "t3a.nano", + "availabilityZone": "ap-northeast-3c", + "instanceType": "t4g.nano", "memoryGiB": 0.5, "platform": "Linux/UNIX", - "spotPrice": 0.0015, - "timestamp": 2019-10-15T23:09:28.000Z, + "spotPrice": 0.0006, + "timestamp": 2024-05-15T17:16:20.000Z, "vCpu": 2, }, { "architectures": [ - "x86_64", + "arm64", ], - "availabilityZone": "eu-north-1a", - "instanceType": "t3.nano", + "availabilityZone": "ap-northeast-3c", + "instanceType": "t4g.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T12:45:20.000Z, + "platform": "SUSE Linux", + "spotPrice": 0.0006, + "timestamp": 2024-05-15T17:16:20.000Z, "vCpu": 2, }, { "architectures": [ - "x86_64", + "arm64", ], - "availabilityZone": "eu-north-1b", - "instanceType": "t3.nano", + "availabilityZone": "ap-northeast-3a", + "instanceType": "t4g.nano", "memoryGiB": 0.5, "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T12:45:20.000Z, + "spotPrice": 0.0007, + "timestamp": 2024-05-15T15:29:18.000Z, "vCpu": 2, }, { "architectures": [ - "x86_64", + "arm64", ], - "availabilityZone": "eu-north-1c", - "instanceType": "t3.nano", + "availabilityZone": "ap-northeast-3a", + "instanceType": "t4g.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T12:45:20.000Z, + "platform": "SUSE Linux", + "spotPrice": 0.0007, + "timestamp": 2024-05-15T15:29:18.000Z, "vCpu": 2, }, { "architectures": [ "x86_64", ], - "availabilityZone": "us-east-1a", + "availabilityZone": "us-west-2a", "instanceType": "t3.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T17:09:43.000Z, + "platform": "Linux/UNIX", + "spotPrice": 0.001, + "timestamp": 2024-05-16T00:32:49.000Z, "vCpu": 2, }, { "architectures": [ "x86_64", ], - "availabilityZone": "us-east-1b", + "availabilityZone": "us-west-2a", "instanceType": "t3.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T17:09:43.000Z, + "platform": "SUSE Linux", + "spotPrice": 0.001, + "timestamp": 2024-05-16T00:32:49.000Z, "vCpu": 2, }, { "architectures": [ "x86_64", ], - "availabilityZone": "us-east-1c", + "availabilityZone": "us-west-2b", "instanceType": "t3.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T17:09:43.000Z, + "platform": "Linux/UNIX", + "spotPrice": 0.001, + "timestamp": 2024-05-16T06:47:32.000Z, "vCpu": 2, }, { "architectures": [ "x86_64", ], - "availabilityZone": "us-east-1d", + "availabilityZone": "us-west-2b", "instanceType": "t3.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T17:09:43.000Z, + "platform": "SUSE Linux", + "spotPrice": 0.001, + "timestamp": 2024-05-16T06:47:32.000Z, "vCpu": 2, }, { "architectures": [ - "x86_64", + "arm64", ], - "availabilityZone": "us-east-1f", - "instanceType": "t3.nano", + "availabilityZone": "sa-east-1a", + "instanceType": "t4g.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T17:09:43.000Z, + "platform": "Linux/UNIX", + "spotPrice": 0.001, + "timestamp": 2024-05-15T22:45:24.000Z, "vCpu": 2, }, { "architectures": [ - "x86_64", + "arm64", ], - "availabilityZone": "us-east-2a", - "instanceType": "t3.nano", + "availabilityZone": "sa-east-1a", + "instanceType": "t4g.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T12:01:55.000Z, + "platform": "SUSE Linux", + "spotPrice": 0.001, + "timestamp": 2024-05-15T22:45:24.000Z, "vCpu": 2, }, { "architectures": [ - "x86_64", + "arm64", ], - "availabilityZone": "us-east-2b", - "instanceType": "t3.nano", + "availabilityZone": "sa-east-1b", + "instanceType": "t4g.nano", "memoryGiB": 0.5, "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T12:01:55.000Z, + "spotPrice": 0.001, + "timestamp": 2024-05-15T20:16:23.000Z, "vCpu": 2, }, { "architectures": [ - "x86_64", + "arm64", ], - "availabilityZone": "us-east-2c", - "instanceType": "t3.nano", + "availabilityZone": "sa-east-1b", + "instanceType": "t4g.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T12:01:55.000Z, + "platform": "SUSE Linux", + "spotPrice": 0.001, + "timestamp": 2024-05-15T20:16:23.000Z, "vCpu": 2, }, { "architectures": [ "x86_64", ], - "availabilityZone": "us-west-2a", + "availabilityZone": "us-west-2c", "instanceType": "t3.nano", "memoryGiB": 0.5, "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T17:08:19.000Z, + "spotPrice": 0.0012, + "timestamp": 2024-05-15T18:32:58.000Z, "vCpu": 2, }, { "architectures": [ "x86_64", ], - "availabilityZone": "us-west-2b", + "availabilityZone": "us-west-2c", "instanceType": "t3.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T17:08:19.000Z, + "platform": "SUSE Linux", + "spotPrice": 0.0012, + "timestamp": 2024-05-15T18:32:58.000Z, "vCpu": 2, }, { "architectures": [ "x86_64", ], - "availabilityZone": "us-west-2c", + "availabilityZone": "us-west-2d", "instanceType": "t3.nano", "memoryGiB": 0.5, "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T17:08:19.000Z, + "spotPrice": 0.0012, + "timestamp": 2024-05-16T01:17:00.000Z, "vCpu": 2, }, { @@ -2656,153 +2656,153 @@ exports[`lib getGlobalSpotPrices run with default options should return expected "availabilityZone": "us-west-2d", "instanceType": "t3.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T17:08:19.000Z, + "platform": "SUSE Linux", + "spotPrice": 0.0012, + "timestamp": 2024-05-16T01:17:00.000Z, "vCpu": 2, }, { "architectures": [ "x86_64", ], - "availabilityZone": "ca-central-1a", + "availabilityZone": "us-west-2d", "instanceType": "t3a.nano", "memoryGiB": 0.5, "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T15:04:27.000Z, + "spotPrice": 0.0012, + "timestamp": 2024-05-16T13:02:29.000Z, "vCpu": 2, }, { "architectures": [ "x86_64", ], - "availabilityZone": "ca-central-1b", + "availabilityZone": "us-west-2d", "instanceType": "t3a.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T15:04:27.000Z, + "platform": "SUSE Linux", + "spotPrice": 0.0012, + "timestamp": 2024-05-16T13:02:29.000Z, "vCpu": 2, }, { "architectures": [ - "x86_64", + "arm64", ], - "availabilityZone": "eu-central-1a", - "instanceType": "t3a.nano", + "availabilityZone": "ap-south-1b", + "instanceType": "t4g.nano", "memoryGiB": 0.5, "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-16T02:51:49.000Z, + "spotPrice": 0.0012, + "timestamp": 2024-05-15T16:48:20.000Z, "vCpu": 2, }, { "architectures": [ - "x86_64", + "arm64", ], - "availabilityZone": "eu-central-1b", - "instanceType": "t3a.nano", + "availabilityZone": "ap-south-1b", + "instanceType": "t4g.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-16T02:51:49.000Z, + "platform": "SUSE Linux", + "spotPrice": 0.0012, + "timestamp": 2024-05-15T16:48:20.000Z, "vCpu": 2, }, { "architectures": [ - "x86_64", + "arm64", ], - "availabilityZone": "eu-west-1b", - "instanceType": "t3a.nano", + "availabilityZone": "ap-south-1c", + "instanceType": "t4g.nano", "memoryGiB": 0.5, "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T18:39:03.000Z, + "spotPrice": 0.0012, + "timestamp": 2024-05-16T09:16:25.000Z, "vCpu": 2, }, { "architectures": [ - "x86_64", + "arm64", ], - "availabilityZone": "eu-west-1c", - "instanceType": "t3a.nano", + "availabilityZone": "ap-south-1c", + "instanceType": "t4g.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T08:01:03.000Z, + "platform": "SUSE Linux", + "spotPrice": 0.0012, + "timestamp": 2024-05-16T09:16:25.000Z, "vCpu": 2, }, { "architectures": [ "x86_64", ], - "availabilityZone": "eu-west-2a", + "availabilityZone": "ap-south-1b", "instanceType": "t3a.nano", "memoryGiB": 0.5, "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T17:05:27.000Z, + "spotPrice": 0.0013, + "timestamp": 2024-05-16T13:46:46.000Z, "vCpu": 2, }, { "architectures": [ "x86_64", ], - "availabilityZone": "eu-west-2b", + "availabilityZone": "ap-south-1b", "instanceType": "t3a.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T17:05:27.000Z, + "platform": "SUSE Linux", + "spotPrice": 0.0013, + "timestamp": 2024-05-16T13:46:46.000Z, "vCpu": 2, }, { "architectures": [ - "x86_64", + "arm64", ], - "availabilityZone": "eu-west-2c", - "instanceType": "t3a.nano", - "memoryGiB": 0.5, + "availabilityZone": "ap-northeast-3a", + "instanceType": "t4g.micro", + "memoryGiB": 1, "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T17:05:27.000Z, + "spotPrice": 0.0013, + "timestamp": 2024-05-16T05:24:09.000Z, "vCpu": 2, }, { "architectures": [ - "x86_64", + "arm64", ], - "availabilityZone": "eu-west-3a", - "instanceType": "t3a.nano", - "memoryGiB": 0.5, - "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T04:02:17.000Z, + "availabilityZone": "ap-northeast-3a", + "instanceType": "t4g.micro", + "memoryGiB": 1, + "platform": "SUSE Linux", + "spotPrice": 0.0013, + "timestamp": 2024-05-16T05:24:09.000Z, "vCpu": 2, }, { "architectures": [ - "x86_64", + "arm64", ], - "availabilityZone": "eu-west-3b", - "instanceType": "t3a.nano", - "memoryGiB": 0.5, + "availabilityZone": "sa-east-1b", + "instanceType": "t4g.micro", + "memoryGiB": 1, "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T04:02:17.000Z, + "spotPrice": 0.0013, + "timestamp": 2024-05-15T23:54:20.000Z, "vCpu": 2, }, { "architectures": [ - "x86_64", + "arm64", ], - "availabilityZone": "eu-west-3c", - "instanceType": "t3a.nano", - "memoryGiB": 0.5, - "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T04:02:17.000Z, + "availabilityZone": "sa-east-1b", + "instanceType": "t4g.micro", + "memoryGiB": 1, + "platform": "SUSE Linux", + "spotPrice": 0.0013, + "timestamp": 2024-05-15T23:54:20.000Z, "vCpu": 2, }, ] @@ -2811,201 +2811,207 @@ exports[`lib getGlobalSpotPrices run with default options should return expected exports[`lib getGlobalSpotPrices should fetch ec2 instance type info dynamically if not found from constants should return expected values 1`] = ` [ { - "architectures": undefined, - "availabilityZone": "us-west-2a", - "instanceType": "t3a.nano", - "memoryGiB": 1, + "architectures": [ + "arm64", + ], + "availabilityZone": "ap-northeast-3b", + "instanceType": "t4g.nano", + "memoryGiB": 0.5, "platform": "Linux/UNIX", - "spotPrice": 0.0015, - "timestamp": 2019-10-15T22:41:58.000Z, - "vCpu": 4, + "spotPrice": 0.0006, + "timestamp": 2024-05-15T15:29:18.000Z, + "vCpu": 2, }, { - "architectures": undefined, - "availabilityZone": "us-west-2c", - "instanceType": "t3a.nano", - "memoryGiB": 1, - "platform": "Linux/UNIX", - "spotPrice": 0.0015, - "timestamp": 2019-10-15T07:13:00.000Z, - "vCpu": 4, + "architectures": [ + "arm64", + ], + "availabilityZone": "ap-northeast-3b", + "instanceType": "t4g.nano", + "memoryGiB": 0.5, + "platform": "SUSE Linux", + "spotPrice": 0.0006, + "timestamp": 2024-05-15T15:29:18.000Z, + "vCpu": 2, }, { - "architectures": undefined, - "availabilityZone": "us-west-2d", - "instanceType": "t3a.nano", - "memoryGiB": 1, + "architectures": [ + "arm64", + ], + "availabilityZone": "ap-northeast-3c", + "instanceType": "t4g.nano", + "memoryGiB": 0.5, "platform": "Linux/UNIX", - "spotPrice": 0.0015, - "timestamp": 2019-10-15T23:09:28.000Z, - "vCpu": 4, + "spotPrice": 0.0006, + "timestamp": 2024-05-15T17:16:20.000Z, + "vCpu": 2, }, { "architectures": [ - "x86_64", + "arm64", ], - "availabilityZone": "eu-north-1a", - "instanceType": "t3.nano", + "availabilityZone": "ap-northeast-3c", + "instanceType": "t4g.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T12:45:20.000Z, + "platform": "SUSE Linux", + "spotPrice": 0.0006, + "timestamp": 2024-05-15T17:16:20.000Z, "vCpu": 2, }, { "architectures": [ - "x86_64", + "arm64", ], - "availabilityZone": "eu-north-1b", - "instanceType": "t3.nano", + "availabilityZone": "ap-northeast-3a", + "instanceType": "t4g.nano", "memoryGiB": 0.5, "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T12:45:20.000Z, + "spotPrice": 0.0007, + "timestamp": 2024-05-15T15:29:18.000Z, "vCpu": 2, }, { "architectures": [ - "x86_64", + "arm64", ], - "availabilityZone": "eu-north-1c", - "instanceType": "t3.nano", + "availabilityZone": "ap-northeast-3a", + "instanceType": "t4g.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T12:45:20.000Z, + "platform": "SUSE Linux", + "spotPrice": 0.0007, + "timestamp": 2024-05-15T15:29:18.000Z, "vCpu": 2, }, { "architectures": [ "x86_64", ], - "availabilityZone": "us-east-1a", + "availabilityZone": "us-west-2a", "instanceType": "t3.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T17:09:43.000Z, + "platform": "Linux/UNIX", + "spotPrice": 0.001, + "timestamp": 2024-05-16T00:32:49.000Z, "vCpu": 2, }, { "architectures": [ "x86_64", ], - "availabilityZone": "us-east-1b", + "availabilityZone": "us-west-2a", "instanceType": "t3.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T17:09:43.000Z, + "platform": "SUSE Linux", + "spotPrice": 0.001, + "timestamp": 2024-05-16T00:32:49.000Z, "vCpu": 2, }, { "architectures": [ "x86_64", ], - "availabilityZone": "us-east-1c", + "availabilityZone": "us-west-2b", "instanceType": "t3.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T17:09:43.000Z, + "platform": "Linux/UNIX", + "spotPrice": 0.001, + "timestamp": 2024-05-16T06:47:32.000Z, "vCpu": 2, }, { "architectures": [ "x86_64", ], - "availabilityZone": "us-east-1d", + "availabilityZone": "us-west-2b", "instanceType": "t3.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T17:09:43.000Z, + "platform": "SUSE Linux", + "spotPrice": 0.001, + "timestamp": 2024-05-16T06:47:32.000Z, "vCpu": 2, }, { "architectures": [ - "x86_64", + "arm64", ], - "availabilityZone": "us-east-1f", - "instanceType": "t3.nano", + "availabilityZone": "sa-east-1a", + "instanceType": "t4g.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T17:09:43.000Z, + "platform": "Linux/UNIX", + "spotPrice": 0.001, + "timestamp": 2024-05-15T22:45:24.000Z, "vCpu": 2, }, { "architectures": [ - "x86_64", + "arm64", ], - "availabilityZone": "us-east-2a", - "instanceType": "t3.nano", + "availabilityZone": "sa-east-1a", + "instanceType": "t4g.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T12:01:55.000Z, + "platform": "SUSE Linux", + "spotPrice": 0.001, + "timestamp": 2024-05-15T22:45:24.000Z, "vCpu": 2, }, { "architectures": [ - "x86_64", + "arm64", ], - "availabilityZone": "us-east-2b", - "instanceType": "t3.nano", + "availabilityZone": "sa-east-1b", + "instanceType": "t4g.nano", "memoryGiB": 0.5, "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T12:01:55.000Z, + "spotPrice": 0.001, + "timestamp": 2024-05-15T20:16:23.000Z, "vCpu": 2, }, { "architectures": [ - "x86_64", + "arm64", ], - "availabilityZone": "us-east-2c", - "instanceType": "t3.nano", + "availabilityZone": "sa-east-1b", + "instanceType": "t4g.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T12:01:55.000Z, + "platform": "SUSE Linux", + "spotPrice": 0.001, + "timestamp": 2024-05-15T20:16:23.000Z, "vCpu": 2, }, { "architectures": [ "x86_64", ], - "availabilityZone": "us-west-2a", + "availabilityZone": "us-west-2c", "instanceType": "t3.nano", "memoryGiB": 0.5, "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T17:08:19.000Z, + "spotPrice": 0.0012, + "timestamp": 2024-05-15T18:32:58.000Z, "vCpu": 2, }, { "architectures": [ "x86_64", ], - "availabilityZone": "us-west-2b", + "availabilityZone": "us-west-2c", "instanceType": "t3.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T17:08:19.000Z, + "platform": "SUSE Linux", + "spotPrice": 0.0012, + "timestamp": 2024-05-15T18:32:58.000Z, "vCpu": 2, }, { "architectures": [ "x86_64", ], - "availabilityZone": "us-west-2c", + "availabilityZone": "us-west-2d", "instanceType": "t3.nano", "memoryGiB": 0.5, "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T17:08:19.000Z, + "spotPrice": 0.0012, + "timestamp": 2024-05-16T01:17:00.000Z, "vCpu": 2, }, { @@ -3015,29 +3021,33 @@ exports[`lib getGlobalSpotPrices should fetch ec2 instance type info dynamically "availabilityZone": "us-west-2d", "instanceType": "t3.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T17:08:19.000Z, + "platform": "SUSE Linux", + "spotPrice": 0.0012, + "timestamp": 2024-05-16T01:17:00.000Z, "vCpu": 2, }, { - "architectures": undefined, - "availabilityZone": "ca-central-1a", + "architectures": { + "Item": "x86_64", + }, + "availabilityZone": "us-west-2d", "instanceType": "t3a.nano", "memoryGiB": 1, "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T15:04:27.000Z, + "spotPrice": 0.0012, + "timestamp": 2024-05-16T13:02:29.000Z, "vCpu": 4, }, { - "architectures": undefined, - "availabilityZone": "ca-central-1b", + "architectures": { + "Item": "x86_64", + }, + "availabilityZone": "us-west-2d", "instanceType": "t3a.nano", "memoryGiB": 1, - "platform": "Linux/UNIX", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T15:04:27.000Z, + "platform": "SUSE Linux", + "spotPrice": 0.0012, + "timestamp": 2024-05-16T13:02:29.000Z, "vCpu": 4, }, ] @@ -3049,360 +3059,360 @@ exports[`lib getGlobalSpotPrices should filter architecture should return expect "architectures": [ "arm64", ], - "availabilityZone": "us-east-2a", - "instanceType": "a1.medium", - "memoryGiB": 2, + "availabilityZone": "ap-northeast-3b", + "instanceType": "t4g.nano", + "memoryGiB": 0.5, "platform": "Linux/UNIX", - "spotPrice": 0.0049, - "timestamp": 2019-10-15T03:32:13.000Z, - "vCpu": 1, + "spotPrice": 0.0006, + "timestamp": 2024-05-15T15:29:18.000Z, + "vCpu": 2, }, { "architectures": [ "arm64", ], - "availabilityZone": "us-east-2b", - "instanceType": "a1.medium", - "memoryGiB": 2, - "platform": "Linux/UNIX", - "spotPrice": 0.0049, - "timestamp": 2019-10-15T03:32:13.000Z, - "vCpu": 1, + "availabilityZone": "ap-northeast-3b", + "instanceType": "t4g.nano", + "memoryGiB": 0.5, + "platform": "SUSE Linux", + "spotPrice": 0.0006, + "timestamp": 2024-05-15T15:29:18.000Z, + "vCpu": 2, }, { "architectures": [ "arm64", ], - "availabilityZone": "ap-south-1b", - "instanceType": "a1.medium", - "memoryGiB": 2, + "availabilityZone": "ap-northeast-3c", + "instanceType": "t4g.nano", + "memoryGiB": 0.5, "platform": "Linux/UNIX", - "spotPrice": 0.0075, - "timestamp": 2019-10-15T21:14:19.000Z, - "vCpu": 1, + "spotPrice": 0.0006, + "timestamp": 2024-05-15T17:16:20.000Z, + "vCpu": 2, }, { "architectures": [ "arm64", ], - "availabilityZone": "ap-south-1c", - "instanceType": "a1.medium", - "memoryGiB": 2, - "platform": "Linux/UNIX", - "spotPrice": 0.0075, - "timestamp": 2019-10-15T21:14:19.000Z, - "vCpu": 1, + "availabilityZone": "ap-northeast-3c", + "instanceType": "t4g.nano", + "memoryGiB": 0.5, + "platform": "SUSE Linux", + "spotPrice": 0.0006, + "timestamp": 2024-05-15T17:16:20.000Z, + "vCpu": 2, }, { "architectures": [ "arm64", ], - "availabilityZone": "us-west-2a", - "instanceType": "a1.medium", - "memoryGiB": 2, + "availabilityZone": "ap-northeast-3a", + "instanceType": "t4g.nano", + "memoryGiB": 0.5, "platform": "Linux/UNIX", - "spotPrice": 0.0083, - "timestamp": 2019-10-15T21:08:17.000Z, - "vCpu": 1, + "spotPrice": 0.0007, + "timestamp": 2024-05-15T15:29:18.000Z, + "vCpu": 2, }, { "architectures": [ "arm64", ], - "availabilityZone": "us-east-1a", - "instanceType": "a1.medium", - "memoryGiB": 2, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.0084, - "timestamp": 2019-10-15T14:11:25.000Z, - "vCpu": 1, + "availabilityZone": "ap-northeast-3a", + "instanceType": "t4g.nano", + "memoryGiB": 0.5, + "platform": "SUSE Linux", + "spotPrice": 0.0007, + "timestamp": 2024-05-15T15:29:18.000Z, + "vCpu": 2, }, { "architectures": [ - "arm64", + "x86_64", ], - "availabilityZone": "us-east-1b", - "instanceType": "a1.medium", - "memoryGiB": 2, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.0084, - "timestamp": 2019-10-15T14:11:25.000Z, - "vCpu": 1, + "availabilityZone": "us-west-2a", + "instanceType": "t3.nano", + "memoryGiB": 0.5, + "platform": "Linux/UNIX", + "spotPrice": 0.001, + "timestamp": 2024-05-16T00:32:49.000Z, + "vCpu": 2, }, { "architectures": [ - "arm64", + "x86_64", ], - "availabilityZone": "us-east-1d", - "instanceType": "a1.medium", - "memoryGiB": 2, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.0084, - "timestamp": 2019-10-15T14:11:25.000Z, - "vCpu": 1, + "availabilityZone": "us-west-2a", + "instanceType": "t3.nano", + "memoryGiB": 0.5, + "platform": "SUSE Linux", + "spotPrice": 0.001, + "timestamp": 2024-05-16T00:32:49.000Z, + "vCpu": 2, }, { "architectures": [ - "arm64", + "x86_64", ], - "availabilityZone": "ap-northeast-1a", - "instanceType": "a1.medium", - "memoryGiB": 2, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.0086, - "timestamp": 2019-10-15T12:42:42.000Z, - "vCpu": 1, + "availabilityZone": "us-west-2b", + "instanceType": "t3.nano", + "memoryGiB": 0.5, + "platform": "Linux/UNIX", + "spotPrice": 0.001, + "timestamp": 2024-05-16T06:47:32.000Z, + "vCpu": 2, }, { "architectures": [ - "arm64", + "x86_64", ], - "availabilityZone": "ap-northeast-1d", - "instanceType": "a1.medium", - "memoryGiB": 2, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.0086, - "timestamp": 2019-10-15T12:42:42.000Z, - "vCpu": 1, + "availabilityZone": "us-west-2b", + "instanceType": "t3.nano", + "memoryGiB": 0.5, + "platform": "SUSE Linux", + "spotPrice": 0.001, + "timestamp": 2024-05-16T06:47:32.000Z, + "vCpu": 2, }, { "architectures": [ "arm64", ], - "availabilityZone": "eu-central-1a", - "instanceType": "a1.medium", - "memoryGiB": 2, + "availabilityZone": "sa-east-1a", + "instanceType": "t4g.nano", + "memoryGiB": 0.5, "platform": "Linux/UNIX", - "spotPrice": 0.0086, - "timestamp": 2019-10-15T17:52:24.000Z, - "vCpu": 1, + "spotPrice": 0.001, + "timestamp": 2024-05-15T22:45:24.000Z, + "vCpu": 2, }, { "architectures": [ "arm64", ], - "availabilityZone": "eu-central-1b", - "instanceType": "a1.medium", - "memoryGiB": 2, - "platform": "Linux/UNIX", - "spotPrice": 0.0086, - "timestamp": 2019-10-15T17:52:24.000Z, - "vCpu": 1, + "availabilityZone": "sa-east-1a", + "instanceType": "t4g.nano", + "memoryGiB": 0.5, + "platform": "SUSE Linux", + "spotPrice": 0.001, + "timestamp": 2024-05-15T22:45:24.000Z, + "vCpu": 2, }, { "architectures": [ "arm64", ], - "availabilityZone": "ap-southeast-2a", - "instanceType": "a1.medium", - "memoryGiB": 2, + "availabilityZone": "sa-east-1b", + "instanceType": "t4g.nano", + "memoryGiB": 0.5, "platform": "Linux/UNIX", - "spotPrice": 0.0089, - "timestamp": 2019-10-15T22:09:27.000Z, - "vCpu": 1, + "spotPrice": 0.001, + "timestamp": 2024-05-15T20:16:23.000Z, + "vCpu": 2, }, { "architectures": [ "arm64", ], - "availabilityZone": "ap-southeast-2c", - "instanceType": "a1.medium", - "memoryGiB": 2, - "platform": "Linux/UNIX", - "spotPrice": 0.0089, - "timestamp": 2019-10-15T22:09:27.000Z, - "vCpu": 1, + "availabilityZone": "sa-east-1b", + "instanceType": "t4g.nano", + "memoryGiB": 0.5, + "platform": "SUSE Linux", + "spotPrice": 0.001, + "timestamp": 2024-05-15T20:16:23.000Z, + "vCpu": 2, }, { "architectures": [ - "arm64", + "x86_64", ], - "availabilityZone": "eu-west-1b", - "instanceType": "a1.medium", - "memoryGiB": 2, + "availabilityZone": "us-west-2c", + "instanceType": "t3.nano", + "memoryGiB": 0.5, "platform": "Linux/UNIX", - "spotPrice": 0.0089, - "timestamp": 2019-10-15T15:42:45.000Z, - "vCpu": 1, + "spotPrice": 0.0012, + "timestamp": 2024-05-15T18:32:58.000Z, + "vCpu": 2, }, { "architectures": [ - "arm64", + "x86_64", ], - "availabilityZone": "eu-west-1c", - "instanceType": "a1.medium", - "memoryGiB": 2, - "platform": "Linux/UNIX", - "spotPrice": 0.0089, - "timestamp": 2019-10-15T15:42:45.000Z, - "vCpu": 1, + "availabilityZone": "us-west-2c", + "instanceType": "t3.nano", + "memoryGiB": 0.5, + "platform": "SUSE Linux", + "spotPrice": 0.0012, + "timestamp": 2024-05-15T18:32:58.000Z, + "vCpu": 2, }, { "architectures": [ - "arm64", + "x86_64", ], - "availabilityZone": "us-east-2a", - "instanceType": "a1.large", - "memoryGiB": 4, + "availabilityZone": "us-west-2d", + "instanceType": "t3.nano", + "memoryGiB": 0.5, "platform": "Linux/UNIX", - "spotPrice": 0.0098, - "timestamp": 2019-10-15T15:03:37.000Z, + "spotPrice": 0.0012, + "timestamp": 2024-05-16T01:17:00.000Z, "vCpu": 2, }, { "architectures": [ - "arm64", + "x86_64", ], - "availabilityZone": "us-east-2b", - "instanceType": "a1.large", - "memoryGiB": 4, - "platform": "Linux/UNIX", - "spotPrice": 0.0098, - "timestamp": 2019-10-15T15:03:37.000Z, + "availabilityZone": "us-west-2d", + "instanceType": "t3.nano", + "memoryGiB": 0.5, + "platform": "SUSE Linux", + "spotPrice": 0.0012, + "timestamp": 2024-05-16T01:17:00.000Z, "vCpu": 2, }, { "architectures": [ - "arm64", + "x86_64", ], - "availabilityZone": "us-west-2c", - "instanceType": "a1.medium", - "memoryGiB": 2, + "availabilityZone": "us-west-2d", + "instanceType": "t3a.nano", + "memoryGiB": 0.5, "platform": "Linux/UNIX", - "spotPrice": 0.0148, - "timestamp": 2019-10-16T00:22:14.000Z, - "vCpu": 1, + "spotPrice": 0.0012, + "timestamp": 2024-05-16T13:02:29.000Z, + "vCpu": 2, }, { "architectures": [ - "arm64", + "x86_64", ], - "availabilityZone": "ap-south-1b", - "instanceType": "a1.large", - "memoryGiB": 4, - "platform": "Linux/UNIX", - "spotPrice": 0.015, - "timestamp": 2019-10-15T04:00:06.000Z, + "availabilityZone": "us-west-2d", + "instanceType": "t3a.nano", + "memoryGiB": 0.5, + "platform": "SUSE Linux", + "spotPrice": 0.0012, + "timestamp": 2024-05-16T13:02:29.000Z, "vCpu": 2, }, { "architectures": [ "arm64", ], - "availabilityZone": "ap-south-1c", - "instanceType": "a1.large", - "memoryGiB": 4, + "availabilityZone": "ap-south-1b", + "instanceType": "t4g.nano", + "memoryGiB": 0.5, "platform": "Linux/UNIX", - "spotPrice": 0.015, - "timestamp": 2019-10-15T04:00:06.000Z, + "spotPrice": 0.0012, + "timestamp": 2024-05-15T16:48:20.000Z, "vCpu": 2, }, { "architectures": [ "arm64", ], - "availabilityZone": "us-west-2a", - "instanceType": "a1.large", - "memoryGiB": 4, - "platform": "Linux/UNIX", - "spotPrice": 0.0167, - "timestamp": 2019-10-15T17:27:17.000Z, + "availabilityZone": "ap-south-1b", + "instanceType": "t4g.nano", + "memoryGiB": 0.5, + "platform": "SUSE Linux", + "spotPrice": 0.0012, + "timestamp": 2024-05-15T16:48:20.000Z, "vCpu": 2, }, { "architectures": [ "arm64", ], - "availabilityZone": "us-west-2c", - "instanceType": "a1.large", - "memoryGiB": 4, + "availabilityZone": "ap-south-1c", + "instanceType": "t4g.nano", + "memoryGiB": 0.5, "platform": "Linux/UNIX", - "spotPrice": 0.0167, - "timestamp": 2019-10-15T17:27:17.000Z, + "spotPrice": 0.0012, + "timestamp": 2024-05-16T09:16:25.000Z, "vCpu": 2, }, { "architectures": [ "arm64", ], - "availabilityZone": "us-east-1a", - "instanceType": "a1.large", - "memoryGiB": 4, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.0168, - "timestamp": 2019-10-16T02:43:12.000Z, + "availabilityZone": "ap-south-1c", + "instanceType": "t4g.nano", + "memoryGiB": 0.5, + "platform": "SUSE Linux", + "spotPrice": 0.0012, + "timestamp": 2024-05-16T09:16:25.000Z, "vCpu": 2, }, { "architectures": [ - "arm64", + "x86_64", ], - "availabilityZone": "us-east-1b", - "instanceType": "a1.large", - "memoryGiB": 4, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.0168, - "timestamp": 2019-10-16T02:43:12.000Z, + "availabilityZone": "ap-south-1b", + "instanceType": "t3a.nano", + "memoryGiB": 0.5, + "platform": "Linux/UNIX", + "spotPrice": 0.0013, + "timestamp": 2024-05-16T13:46:46.000Z, "vCpu": 2, }, { "architectures": [ - "arm64", + "x86_64", ], - "availabilityZone": "us-east-1d", - "instanceType": "a1.large", - "memoryGiB": 4, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.0168, - "timestamp": 2019-10-16T02:43:12.000Z, + "availabilityZone": "ap-south-1b", + "instanceType": "t3a.nano", + "memoryGiB": 0.5, + "platform": "SUSE Linux", + "spotPrice": 0.0013, + "timestamp": 2024-05-16T13:46:46.000Z, "vCpu": 2, }, { "architectures": [ "arm64", ], - "availabilityZone": "ap-northeast-1a", - "instanceType": "a1.large", - "memoryGiB": 4, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.0172, - "timestamp": 2019-10-15T21:08:47.000Z, + "availabilityZone": "ap-northeast-3a", + "instanceType": "t4g.micro", + "memoryGiB": 1, + "platform": "Linux/UNIX", + "spotPrice": 0.0013, + "timestamp": 2024-05-16T05:24:09.000Z, "vCpu": 2, }, { "architectures": [ "arm64", ], - "availabilityZone": "ap-northeast-1d", - "instanceType": "a1.large", - "memoryGiB": 4, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.0172, - "timestamp": 2019-10-15T21:08:47.000Z, + "availabilityZone": "ap-northeast-3a", + "instanceType": "t4g.micro", + "memoryGiB": 1, + "platform": "SUSE Linux", + "spotPrice": 0.0013, + "timestamp": 2024-05-16T05:24:09.000Z, "vCpu": 2, }, { "architectures": [ "arm64", ], - "availabilityZone": "eu-central-1a", - "instanceType": "a1.large", - "memoryGiB": 4, + "availabilityZone": "sa-east-1b", + "instanceType": "t4g.micro", + "memoryGiB": 1, "platform": "Linux/UNIX", - "spotPrice": 0.0172, - "timestamp": 2019-10-16T01:52:43.000Z, + "spotPrice": 0.0013, + "timestamp": 2024-05-15T23:54:20.000Z, "vCpu": 2, }, { "architectures": [ "arm64", ], - "availabilityZone": "eu-central-1b", - "instanceType": "a1.large", - "memoryGiB": 4, - "platform": "Linux/UNIX", - "spotPrice": 0.0172, - "timestamp": 2019-10-16T01:52:43.000Z, + "availabilityZone": "sa-east-1b", + "instanceType": "t4g.micro", + "memoryGiB": 1, + "platform": "SUSE Linux", + "spotPrice": 0.0013, + "timestamp": 2024-05-15T23:54:20.000Z, "vCpu": 2, }, ] @@ -3412,62 +3422,62 @@ exports[`lib getGlobalSpotPrices should filter by minVCPU & minMemoryGiB should [ { "architectures": [ - "x86_64", + "arm64", ], - "availabilityZone": "us-east-2a", - "instanceType": "r3.xlarge", - "memoryGiB": 30.5, + "availabilityZone": "ap-northeast-3a", + "instanceType": "t4g.xlarge", + "memoryGiB": 16, "platform": "Linux/UNIX", - "spotPrice": 0.0379, - "timestamp": 2019-10-15T21:09:49.000Z, + "spotPrice": 0.021, + "timestamp": 2024-05-16T08:31:20.000Z, "vCpu": 4, }, { "architectures": [ - "x86_64", + "arm64", ], - "availabilityZone": "us-east-2b", - "instanceType": "r3.xlarge", - "memoryGiB": 30.5, + "availabilityZone": "ap-northeast-3c", + "instanceType": "t4g.xlarge", + "memoryGiB": 16, "platform": "Linux/UNIX", - "spotPrice": 0.0379, - "timestamp": 2019-10-15T21:09:49.000Z, + "spotPrice": 0.0211, + "timestamp": 2024-05-16T11:01:04.000Z, "vCpu": 4, }, { "architectures": [ - "x86_64", + "arm64", ], - "availabilityZone": "us-east-2c", - "instanceType": "r3.xlarge", - "memoryGiB": 30.5, + "availabilityZone": "ap-northeast-3b", + "instanceType": "t4g.xlarge", + "memoryGiB": 16, "platform": "Linux/UNIX", - "spotPrice": 0.0379, - "timestamp": 2019-10-15T21:09:49.000Z, + "spotPrice": 0.0215, + "timestamp": 2024-05-16T07:15:45.000Z, "vCpu": 4, }, { "architectures": [ "x86_64", ], - "availabilityZone": "us-east-2b", - "instanceType": "m4.xlarge", + "availabilityZone": "us-west-2d", + "instanceType": "m7a.xlarge", "memoryGiB": 16, "platform": "Linux/UNIX", - "spotPrice": 0.038, - "timestamp": 2019-10-15T19:11:29.000Z, + "spotPrice": 0.0233, + "timestamp": 2024-05-16T07:02:41.000Z, "vCpu": 4, }, { "architectures": [ "x86_64", ], - "availabilityZone": "us-east-2c", - "instanceType": "m4.xlarge", + "availabilityZone": "eu-west-2a", + "instanceType": "m6id.xlarge", "memoryGiB": 16, "platform": "Linux/UNIX", - "spotPrice": 0.038, - "timestamp": 2019-10-15T19:11:29.000Z, + "spotPrice": 0.0295, + "timestamp": 2024-05-16T08:46:27.000Z, "vCpu": 4, }, ] @@ -3479,36 +3489,36 @@ exports[`lib getGlobalSpotPrices should handle RequestLimitExceeded error should "architectures": [ "x86_64", ], - "availabilityZone": "us-east-1a", - "instanceType": "t3.nano", + "availabilityZone": "us-east-1c", + "instanceType": "t3a.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T17:09:43.000Z, + "platform": "Linux/UNIX", + "spotPrice": 0.0021, + "timestamp": 2024-05-15T17:09:49.000Z, "vCpu": 2, }, { "architectures": [ "x86_64", ], - "availabilityZone": "us-east-1b", - "instanceType": "t3.nano", + "availabilityZone": "us-east-1c", + "instanceType": "t3a.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T17:09:43.000Z, + "platform": "SUSE Linux", + "spotPrice": 0.0021, + "timestamp": 2024-05-15T17:09:49.000Z, "vCpu": 2, }, { "architectures": [ "x86_64", ], - "availabilityZone": "us-east-1c", + "availabilityZone": "us-east-1d", "instanceType": "t3.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T17:09:43.000Z, + "platform": "Linux/UNIX", + "spotPrice": 0.0023, + "timestamp": 2024-05-15T19:02:55.000Z, "vCpu": 2, }, { @@ -3518,9 +3528,9 @@ exports[`lib getGlobalSpotPrices should handle RequestLimitExceeded error should "availabilityZone": "us-east-1d", "instanceType": "t3.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T17:09:43.000Z, + "platform": "SUSE Linux", + "spotPrice": 0.0023, + "timestamp": 2024-05-15T19:02:55.000Z, "vCpu": 2, }, { @@ -3530,327 +3540,309 @@ exports[`lib getGlobalSpotPrices should handle RequestLimitExceeded error should "availabilityZone": "us-east-1f", "instanceType": "t3.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.0016, - "timestamp": 2019-10-15T17:09:43.000Z, + "platform": "Linux/UNIX", + "spotPrice": 0.0023, + "timestamp": 2024-05-16T00:17:19.000Z, "vCpu": 2, }, { "architectures": [ "x86_64", ], - "availabilityZone": "us-east-1a", - "instanceType": "t3a.nano", + "availabilityZone": "us-east-1f", + "instanceType": "t3.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.0017, - "timestamp": 2019-10-15T22:11:29.000Z, + "platform": "SUSE Linux", + "spotPrice": 0.0023, + "timestamp": 2024-05-16T00:17:19.000Z, "vCpu": 2, }, { "architectures": [ "x86_64", ], - "availabilityZone": "us-east-1c", + "availabilityZone": "us-east-1a", "instanceType": "t3a.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.0017, - "timestamp": 2019-10-15T22:11:29.000Z, + "platform": "Linux/UNIX", + "spotPrice": 0.0023, + "timestamp": 2024-05-15T17:09:49.000Z, "vCpu": 2, }, { "architectures": [ "x86_64", ], - "availabilityZone": "us-east-1b", + "availabilityZone": "us-east-1a", "instanceType": "t3a.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.0018, - "timestamp": 2019-10-15T22:11:29.000Z, + "platform": "SUSE Linux", + "spotPrice": 0.0023, + "timestamp": 2024-05-15T17:09:49.000Z, "vCpu": 2, }, { "architectures": [ "x86_64", ], - "availabilityZone": "us-east-1d", - "instanceType": "t3a.nano", + "availabilityZone": "us-east-1c", + "instanceType": "t3.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.0018, - "timestamp": 2019-10-15T20:21:10.000Z, + "platform": "Linux/UNIX", + "spotPrice": 0.0024, + "timestamp": 2024-05-16T03:47:25.000Z, "vCpu": 2, }, { "architectures": [ "x86_64", ], - "availabilityZone": "us-east-1f", - "instanceType": "t3a.nano", + "availabilityZone": "us-east-1c", + "instanceType": "t3.nano", "memoryGiB": 0.5, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.0018, - "timestamp": 2019-10-15T22:11:29.000Z, + "platform": "SUSE Linux", + "spotPrice": 0.0024, + "timestamp": 2024-05-16T03:47:25.000Z, "vCpu": 2, }, { "architectures": [ - "i386", "x86_64", ], - "availabilityZone": "us-east-1a", - "instanceType": "t1.micro", - "memoryGiB": 0.613, + "availabilityZone": "us-east-1d", + "instanceType": "t3a.nano", + "memoryGiB": 0.5, "platform": "Linux/UNIX", - "spotPrice": 0.002, - "timestamp": 2019-10-15T13:11:12.000Z, - "vCpu": 1, + "spotPrice": 0.0024, + "timestamp": 2024-05-15T17:09:49.000Z, + "vCpu": 2, }, { "architectures": [ - "i386", "x86_64", ], - "availabilityZone": "us-east-1a", - "instanceType": "t1.micro", - "memoryGiB": 0.613, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.002, - "timestamp": 2019-10-15T13:11:25.000Z, - "vCpu": 1, + "availabilityZone": "us-east-1d", + "instanceType": "t3a.nano", + "memoryGiB": 0.5, + "platform": "SUSE Linux", + "spotPrice": 0.0024, + "timestamp": 2024-05-15T17:09:49.000Z, + "vCpu": 2, }, { "architectures": [ - "i386", "x86_64", ], - "availabilityZone": "us-east-1a", - "instanceType": "t1.micro", - "memoryGiB": 0.613, - "platform": "Windows", - "spotPrice": 0.002, - "timestamp": 2019-10-15T13:12:13.000Z, - "vCpu": 1, + "availabilityZone": "us-east-1b", + "instanceType": "t3.nano", + "memoryGiB": 0.5, + "platform": "Linux/UNIX", + "spotPrice": 0.0025, + "timestamp": 2024-05-16T06:47:43.000Z, + "vCpu": 2, }, { "architectures": [ - "i386", "x86_64", ], - "availabilityZone": "us-east-1a", - "instanceType": "t1.micro", - "memoryGiB": 0.613, - "platform": "Windows (Amazon VPC)", - "spotPrice": 0.002, - "timestamp": 2019-10-15T13:12:16.000Z, - "vCpu": 1, + "availabilityZone": "us-east-1b", + "instanceType": "t3.nano", + "memoryGiB": 0.5, + "platform": "SUSE Linux", + "spotPrice": 0.0025, + "timestamp": 2024-05-16T06:47:43.000Z, + "vCpu": 2, }, { "architectures": [ - "i386", "x86_64", ], "availabilityZone": "us-east-1b", - "instanceType": "t1.micro", - "memoryGiB": 0.613, + "instanceType": "t3a.nano", + "memoryGiB": 0.5, "platform": "Linux/UNIX", - "spotPrice": 0.002, - "timestamp": 2019-10-15T13:11:12.000Z, - "vCpu": 1, + "spotPrice": 0.0025, + "timestamp": 2024-05-16T11:17:31.000Z, + "vCpu": 2, }, { "architectures": [ - "i386", "x86_64", ], "availabilityZone": "us-east-1b", - "instanceType": "t1.micro", - "memoryGiB": 0.613, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.002, - "timestamp": 2019-10-15T13:11:25.000Z, - "vCpu": 1, + "instanceType": "t3a.nano", + "memoryGiB": 0.5, + "platform": "SUSE Linux", + "spotPrice": 0.0025, + "timestamp": 2024-05-16T11:17:31.000Z, + "vCpu": 2, }, { "architectures": [ - "i386", "x86_64", ], - "availabilityZone": "us-east-1b", - "instanceType": "t1.micro", - "memoryGiB": 0.613, - "platform": "Windows", - "spotPrice": 0.002, - "timestamp": 2019-10-15T13:12:13.000Z, - "vCpu": 1, + "availabilityZone": "us-east-1a", + "instanceType": "t3.nano", + "memoryGiB": 0.5, + "platform": "Linux/UNIX", + "spotPrice": 0.0026, + "timestamp": 2024-05-16T11:32:26.000Z, + "vCpu": 2, }, { "architectures": [ - "i386", "x86_64", ], - "availabilityZone": "us-east-1b", - "instanceType": "t1.micro", - "memoryGiB": 0.613, - "platform": "Windows (Amazon VPC)", - "spotPrice": 0.002, - "timestamp": 2019-10-15T13:12:16.000Z, - "vCpu": 1, + "availabilityZone": "us-east-1a", + "instanceType": "t3.nano", + "memoryGiB": 0.5, + "platform": "SUSE Linux", + "spotPrice": 0.0026, + "timestamp": 2024-05-16T11:32:26.000Z, + "vCpu": 2, }, { "architectures": [ - "i386", - "x86_64", + "arm64", ], "availabilityZone": "us-east-1c", - "instanceType": "t1.micro", - "memoryGiB": 0.613, + "instanceType": "t4g.nano", + "memoryGiB": 0.5, "platform": "Linux/UNIX", - "spotPrice": 0.002, - "timestamp": 2019-10-15T13:11:12.000Z, - "vCpu": 1, + "spotPrice": 0.0027, + "timestamp": 2024-05-15T20:02:31.000Z, + "vCpu": 2, }, { "architectures": [ - "i386", - "x86_64", + "arm64", ], "availabilityZone": "us-east-1c", - "instanceType": "t1.micro", - "memoryGiB": 0.613, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.002, - "timestamp": 2019-10-15T13:11:25.000Z, - "vCpu": 1, + "instanceType": "t4g.nano", + "memoryGiB": 0.5, + "platform": "SUSE Linux", + "spotPrice": 0.0027, + "timestamp": 2024-05-15T20:02:31.000Z, + "vCpu": 2, }, { "architectures": [ - "i386", - "x86_64", + "arm64", ], - "availabilityZone": "us-east-1c", - "instanceType": "t1.micro", - "memoryGiB": 0.613, - "platform": "Windows", - "spotPrice": 0.002, - "timestamp": 2019-10-15T13:12:13.000Z, - "vCpu": 1, + "availabilityZone": "us-east-1d", + "instanceType": "t4g.nano", + "memoryGiB": 0.5, + "platform": "Linux/UNIX", + "spotPrice": 0.0027, + "timestamp": 2024-05-16T04:47:25.000Z, + "vCpu": 2, }, { "architectures": [ - "i386", - "x86_64", + "arm64", ], - "availabilityZone": "us-east-1c", - "instanceType": "t1.micro", - "memoryGiB": 0.613, - "platform": "Windows (Amazon VPC)", - "spotPrice": 0.002, - "timestamp": 2019-10-15T13:12:16.000Z, - "vCpu": 1, + "availabilityZone": "us-east-1d", + "instanceType": "t4g.nano", + "memoryGiB": 0.5, + "platform": "SUSE Linux", + "spotPrice": 0.0027, + "timestamp": 2024-05-16T04:47:25.000Z, + "vCpu": 2, }, { "architectures": [ - "i386", - "x86_64", + "arm64", ], - "availabilityZone": "us-east-1d", - "instanceType": "t1.micro", - "memoryGiB": 0.613, + "availabilityZone": "us-east-1a", + "instanceType": "t4g.nano", + "memoryGiB": 0.5, "platform": "Linux/UNIX", - "spotPrice": 0.002, - "timestamp": 2019-10-15T13:11:12.000Z, - "vCpu": 1, + "spotPrice": 0.0028, + "timestamp": 2024-05-16T01:17:11.000Z, + "vCpu": 2, }, { "architectures": [ - "i386", - "x86_64", + "arm64", ], - "availabilityZone": "us-east-1d", - "instanceType": "t1.micro", - "memoryGiB": 0.613, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.002, - "timestamp": 2019-10-15T13:11:25.000Z, - "vCpu": 1, + "availabilityZone": "us-east-1a", + "instanceType": "t4g.nano", + "memoryGiB": 0.5, + "platform": "SUSE Linux", + "spotPrice": 0.0028, + "timestamp": 2024-05-16T01:17:11.000Z, + "vCpu": 2, }, { "architectures": [ - "i386", "x86_64", ], - "availabilityZone": "us-east-1d", - "instanceType": "t1.micro", - "memoryGiB": 0.613, - "platform": "Windows", - "spotPrice": 0.002, - "timestamp": 2019-10-15T13:12:13.000Z, - "vCpu": 1, + "availabilityZone": "us-east-1f", + "instanceType": "t3a.nano", + "memoryGiB": 0.5, + "platform": "Linux/UNIX", + "spotPrice": 0.0034, + "timestamp": 2024-05-15T17:09:49.000Z, + "vCpu": 2, }, { "architectures": [ - "i386", "x86_64", ], - "availabilityZone": "us-east-1d", - "instanceType": "t1.micro", - "memoryGiB": 0.613, - "platform": "Windows (Amazon VPC)", - "spotPrice": 0.002, - "timestamp": 2019-10-15T13:12:16.000Z, - "vCpu": 1, + "availabilityZone": "us-east-1f", + "instanceType": "t3a.nano", + "memoryGiB": 0.5, + "platform": "SUSE Linux", + "spotPrice": 0.0034, + "timestamp": 2024-05-15T17:09:49.000Z, + "vCpu": 2, }, { "architectures": [ - "i386", - "x86_64", + "arm64", ], - "availabilityZone": "us-east-1f", - "instanceType": "t1.micro", - "memoryGiB": 0.613, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.002, - "timestamp": 2019-10-15T13:11:25.000Z, - "vCpu": 1, + "availabilityZone": "us-east-1b", + "instanceType": "t4g.nano", + "memoryGiB": 0.5, + "platform": "Linux/UNIX", + "spotPrice": 0.0038, + "timestamp": 2024-05-16T09:32:44.000Z, + "vCpu": 2, }, { "architectures": [ - "i386", - "x86_64", + "arm64", ], - "availabilityZone": "us-east-1f", - "instanceType": "t1.micro", - "memoryGiB": 0.613, - "platform": "Windows (Amazon VPC)", - "spotPrice": 0.002, - "timestamp": 2019-10-15T13:12:16.000Z, - "vCpu": 1, + "availabilityZone": "us-east-1b", + "instanceType": "t4g.nano", + "memoryGiB": 0.5, + "platform": "SUSE Linux", + "spotPrice": 0.0038, + "timestamp": 2024-05-16T09:32:44.000Z, + "vCpu": 2, }, { "architectures": [ - "x86_64", + "arm64", ], "availabilityZone": "us-east-1a", - "instanceType": "t3a.micro", + "instanceType": "t4g.micro", "memoryGiB": 1, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.0028, - "timestamp": 2019-10-16T00:11:49.000Z, + "platform": "Linux/UNIX", + "spotPrice": 0.0039, + "timestamp": 2024-05-15T21:11:34.000Z, "vCpu": 2, }, { "architectures": [ - "x86_64", + "arm64", ], - "availabilityZone": "us-east-1c", - "instanceType": "t3a.micro", + "availabilityZone": "us-east-1a", + "instanceType": "t4g.micro", "memoryGiB": 1, - "platform": "Linux/UNIX (Amazon VPC)", - "spotPrice": 0.0028, - "timestamp": 2019-10-16T00:11:49.000Z, + "platform": "SUSE Linux", + "spotPrice": 0.0039, + "timestamp": 2024-05-15T21:11:34.000Z, "vCpu": 2, }, ] diff --git a/test/data/spot-prices-mock.json b/test/data/spot-prices-mock.json index c65a0922..ee00ca3f 100644 --- a/test/data/spot-prices-mock.json +++ b/test/data/spot-prices-mock.json @@ -1,259359 +1,1086164 @@ [ - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.048300", - "Timestamp": "2019-10-16T02:55:49.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.541100", - "Timestamp": "2019-10-16T02:55:43.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.511100", - "Timestamp": "2019-10-16T02:55:43.000Z" - }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.411100", - "Timestamp": "2019-10-16T02:55:43.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.544000", - "Timestamp": "2019-10-16T02:55:41.000Z" + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.013600", + "Timestamp": "2024-05-16T14:04:35.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.824900", - "Timestamp": "2019-10-16T02:55:12.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082400", + "Timestamp": "2024-05-16T14:03:38.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.794900", - "Timestamp": "2019-10-16T02:55:12.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078700", + "Timestamp": "2024-05-16T14:03:38.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.694900", - "Timestamp": "2019-10-16T02:55:12.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022400", + "Timestamp": "2024-05-16T14:03:38.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.266200", - "Timestamp": "2019-10-16T02:55:08.000Z" + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.789400", + "Timestamp": "2024-05-16T14:03:37.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.236200", - "Timestamp": "2019-10-16T02:55:08.000Z" + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.784400", + "Timestamp": "2024-05-16T14:03:37.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.136200", - "Timestamp": "2019-10-16T02:55:08.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.336600", - "Timestamp": "2019-10-16T02:55:08.000Z" + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.659400", + "Timestamp": "2024-05-16T14:03:37.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.616300", - "Timestamp": "2019-10-16T02:55:08.000Z" + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.132500", + "Timestamp": "2024-05-16T14:03:33.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.306600", - "Timestamp": "2019-10-16T02:55:08.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.348500", + "Timestamp": "2024-05-16T14:03:32.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.586300", - "Timestamp": "2019-10-16T02:55:08.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "13.552600", + "Timestamp": "2024-05-16T14:03:30.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.206600", - "Timestamp": "2019-10-16T02:55:08.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "p2.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "13.522600", + "Timestamp": "2024-05-16T14:03:30.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.486300", - "Timestamp": "2019-10-16T02:55:08.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "13.422600", + "Timestamp": "2024-05-16T14:03:30.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.286000", - "Timestamp": "2019-10-16T02:54:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.308900", + "Timestamp": "2024-05-16T14:03:29.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.256000", - "Timestamp": "2019-10-16T02:54:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.604200", + "Timestamp": "2024-05-16T14:03:29.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.156000", - "Timestamp": "2019-10-16T02:54:57.000Z" + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.803400", + "Timestamp": "2024-05-16T14:03:26.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.521800", - "Timestamp": "2019-10-16T02:54:57.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.444100", + "Timestamp": "2024-05-16T14:03:25.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.372900", - "Timestamp": "2019-10-16T02:54:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.709000", + "Timestamp": "2024-05-16T14:03:24.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.342900", - "Timestamp": "2019-10-16T02:54:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.679000", + "Timestamp": "2024-05-16T14:03:24.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.242900", - "Timestamp": "2019-10-16T02:54:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.579000", + "Timestamp": "2024-05-16T14:03:24.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.000000", - "Timestamp": "2019-10-16T02:54:51.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.043300", + "Timestamp": "2024-05-16T14:03:23.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.10xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.970000", - "Timestamp": "2019-10-16T02:54:51.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.038300", + "Timestamp": "2024-05-16T14:03:23.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.870000", - "Timestamp": "2019-10-16T02:54:51.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.913300", + "Timestamp": "2024-05-16T14:03:23.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.259700", - "Timestamp": "2019-10-16T02:54:49.000Z" + "SpotPrice": "4.980800", + "Timestamp": "2024-05-16T14:03:23.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.229700", - "Timestamp": "2019-10-16T02:54:49.000Z" + "SpotPrice": "4.975800", + "Timestamp": "2024-05-16T14:03:23.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.129700", - "Timestamp": "2019-10-16T02:54:49.000Z" + "SpotPrice": "4.850800", + "Timestamp": "2024-05-16T14:03:23.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.394600", - "Timestamp": "2019-10-16T02:54:48.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.614300", + "Timestamp": "2024-05-16T14:03:22.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "p2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.364600", - "Timestamp": "2019-10-16T02:54:48.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.301200", + "Timestamp": "2024-05-16T14:03:21.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.264600", - "Timestamp": "2019-10-16T02:54:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.777700", + "Timestamp": "2024-05-16T14:03:21.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.545200", - "Timestamp": "2019-10-16T02:54:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.772700", + "Timestamp": "2024-05-16T14:03:21.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.515200", - "Timestamp": "2019-10-16T02:54:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.647700", + "Timestamp": "2024-05-16T14:03:21.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.415200", - "Timestamp": "2019-10-16T02:54:35.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164400", + "Timestamp": "2024-05-16T14:03:21.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.855100", - "Timestamp": "2019-10-16T02:54:28.000Z" + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160700", + "Timestamp": "2024-05-16T14:03:21.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.825100", - "Timestamp": "2019-10-16T02:54:28.000Z" + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T14:03:21.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.725100", - "Timestamp": "2019-10-16T02:54:28.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.501100", + "Timestamp": "2024-05-16T14:03:20.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.941500", - "Timestamp": "2019-10-16T02:54:28.000Z" + "InstanceType": "r7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.496100", + "Timestamp": "2024-05-16T14:03:20.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.911500", - "Timestamp": "2019-10-16T02:54:28.000Z" + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.371100", + "Timestamp": "2024-05-16T14:03:20.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.811500", - "Timestamp": "2019-10-16T02:54:28.000Z" + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.303000", + "Timestamp": "2024-05-16T14:03:19.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.138200", - "Timestamp": "2019-10-16T02:54:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.616000", + "Timestamp": "2024-05-16T14:03:19.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.644300", + "Timestamp": "2024-05-16T14:03:19.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.178200", - "Timestamp": "2019-10-16T02:54:25.000Z" + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.576900", + "Timestamp": "2024-05-16T14:03:18.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.078200", - "Timestamp": "2019-10-16T02:54:25.000Z" + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.975100", + "Timestamp": "2024-05-16T14:03:18.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.246200", - "Timestamp": "2019-10-16T02:47:21.000Z" + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.970100", + "Timestamp": "2024-05-16T14:03:18.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.216200", - "Timestamp": "2019-10-16T02:47:21.000Z" + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.845100", + "Timestamp": "2024-05-16T14:03:18.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.116200", - "Timestamp": "2019-10-16T02:47:21.000Z" + "InstanceType": "h1.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.567900", + "Timestamp": "2024-05-16T14:03:18.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.356300", - "Timestamp": "2019-10-16T02:47:17.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.835200", + "Timestamp": "2024-05-16T14:03:17.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.326300", - "Timestamp": "2019-10-16T02:47:17.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.272400", + "Timestamp": "2024-05-16T14:03:17.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.226300", - "Timestamp": "2019-10-16T02:47:17.000Z" + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.891400", + "Timestamp": "2024-05-16T14:03:17.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095600", - "Timestamp": "2019-10-16T02:47:04.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.244800", + "Timestamp": "2024-05-16T14:03:16.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-16T02:47:04.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.239800", + "Timestamp": "2024-05-16T14:03:16.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035600", - "Timestamp": "2019-10-16T02:47:04.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.114800", + "Timestamp": "2024-05-16T14:03:16.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.262100", - "Timestamp": "2019-10-16T02:46:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.916100", + "Timestamp": "2024-05-16T14:03:16.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.232100", - "Timestamp": "2019-10-16T02:46:57.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.958400", + "Timestamp": "2024-05-16T14:03:16.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.132100", - "Timestamp": "2019-10-16T02:46:57.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.953400", + "Timestamp": "2024-05-16T14:03:16.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.485800", - "Timestamp": "2019-10-16T02:46:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.828400", + "Timestamp": "2024-05-16T14:03:16.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.455800", - "Timestamp": "2019-10-16T02:46:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.177500", + "Timestamp": "2024-05-16T14:03:15.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.355800", - "Timestamp": "2019-10-16T02:46:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.172500", + "Timestamp": "2024-05-16T14:03:15.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.840000", - "Timestamp": "2019-10-16T02:46:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.047500", + "Timestamp": "2024-05-16T14:03:15.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.810000", - "Timestamp": "2019-10-16T02:46:41.000Z" + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.327700", + "Timestamp": "2024-05-16T14:03:15.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.710000", - "Timestamp": "2019-10-16T02:46:41.000Z" + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.322700", + "Timestamp": "2024-05-16T14:03:15.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.902100", - "Timestamp": "2019-10-16T02:46:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.197700", + "Timestamp": "2024-05-16T14:03:15.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.872100", - "Timestamp": "2019-10-16T02:46:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.120800", + "Timestamp": "2024-05-16T14:03:14.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.772100", - "Timestamp": "2019-10-16T02:46:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.115800", + "Timestamp": "2024-05-16T14:03:14.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.489900", - "Timestamp": "2019-10-16T02:46:39.000Z" + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.990800", + "Timestamp": "2024-05-16T14:03:14.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.459900", - "Timestamp": "2019-10-16T02:46:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.140200", + "Timestamp": "2024-05-16T14:03:14.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.359900", - "Timestamp": "2019-10-16T02:46:39.000Z" + "InstanceType": "f1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.822300", + "Timestamp": "2024-05-16T14:03:13.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "4.450000", - "Timestamp": "2019-10-16T02:46:39.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "f1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.792300", + "Timestamp": "2024-05-16T14:03:13.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "p2.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "4.420000", - "Timestamp": "2019-10-16T02:46:39.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "f1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.692300", + "Timestamp": "2024-05-16T14:03:13.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "4.320000", - "Timestamp": "2019-10-16T02:46:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152200", + "Timestamp": "2024-05-16T14:03:13.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.777600", - "Timestamp": "2019-10-16T02:46:38.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148200", + "Timestamp": "2024-05-16T14:03:13.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.747600", - "Timestamp": "2019-10-16T02:46:38.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092200", + "Timestamp": "2024-05-16T14:03:13.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.647600", - "Timestamp": "2019-10-16T02:46:38.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.639500", + "Timestamp": "2024-05-16T14:03:12.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.492200", - "Timestamp": "2019-10-16T02:46:35.000Z" + "InstanceType": "m5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.634500", + "Timestamp": "2024-05-16T14:03:12.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.462200", - "Timestamp": "2019-10-16T02:46:35.000Z" + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.509500", + "Timestamp": "2024-05-16T14:03:12.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.645800", + "Timestamp": "2024-05-16T14:03:12.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.362200", - "Timestamp": "2019-10-16T02:46:35.000Z" + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.108800", + "Timestamp": "2024-05-16T14:03:11.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.256600", - "Timestamp": "2019-10-16T02:46:35.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.631300", + "Timestamp": "2024-05-16T14:03:10.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.226600", - "Timestamp": "2019-10-16T02:46:35.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.626300", + "Timestamp": "2024-05-16T14:03:10.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.126600", - "Timestamp": "2019-10-16T02:46:35.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.501300", + "Timestamp": "2024-05-16T14:03:10.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.466100", - "Timestamp": "2019-10-16T02:46:31.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.157200", + "Timestamp": "2024-05-16T14:03:10.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.436100", - "Timestamp": "2019-10-16T02:46:31.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.348000", + "Timestamp": "2024-05-16T14:03:10.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.336100", - "Timestamp": "2019-10-16T02:46:31.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343000", + "Timestamp": "2024-05-16T14:03:10.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.396300", - "Timestamp": "2019-10-16T02:46:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.218000", + "Timestamp": "2024-05-16T14:03:10.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.366300", - "Timestamp": "2019-10-16T02:46:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.669600", + "Timestamp": "2024-05-16T14:03:10.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.266300", - "Timestamp": "2019-10-16T02:46:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.664600", + "Timestamp": "2024-05-16T14:03:10.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.676300", - "Timestamp": "2019-10-16T02:46:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.539600", + "Timestamp": "2024-05-16T14:03:10.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.646300", - "Timestamp": "2019-10-16T02:46:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.143600", + "Timestamp": "2024-05-16T14:03:10.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.546300", - "Timestamp": "2019-10-16T02:46:25.000Z" + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.139200", + "Timestamp": "2024-05-16T14:03:08.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.535300", - "Timestamp": "2019-10-16T02:46:20.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.024200", + "Timestamp": "2024-05-16T14:03:08.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.505300", - "Timestamp": "2019-10-16T02:46:20.000Z" + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.596700", + "Timestamp": "2024-05-16T14:03:08.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.543100", + "Timestamp": "2024-05-16T14:03:07.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.405300", - "Timestamp": "2019-10-16T02:46:20.000Z" + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.026300", + "Timestamp": "2024-05-16T14:03:07.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.366800", - "Timestamp": "2019-10-16T02:46:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.537700", + "Timestamp": "2024-05-16T14:03:07.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.336800", - "Timestamp": "2019-10-16T02:46:16.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.231500", + "Timestamp": "2024-05-16T14:03:06.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.236800", - "Timestamp": "2019-10-16T02:46:16.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.553700", + "Timestamp": "2024-05-16T14:03:06.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "a1.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.310500", - "Timestamp": "2019-10-16T02:46:15.000Z" + "InstanceType": "g5g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261700", + "Timestamp": "2024-05-16T14:03:06.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "a1.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.280500", - "Timestamp": "2019-10-16T02:46:15.000Z" + "InstanceType": "g5g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258000", + "Timestamp": "2024-05-16T14:03:06.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "a1.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.180500", - "Timestamp": "2019-10-16T02:46:15.000Z" + "InstanceType": "g5g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.201700", + "Timestamp": "2024-05-16T14:03:06.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.474700", - "Timestamp": "2019-10-16T02:46:15.000Z" + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.194300", + "Timestamp": "2024-05-16T14:03:05.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.444700", - "Timestamp": "2019-10-16T02:46:15.000Z" + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.164300", + "Timestamp": "2024-05-16T14:03:05.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.344700", - "Timestamp": "2019-10-16T02:46:15.000Z" + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.064300", + "Timestamp": "2024-05-16T14:03:05.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.384400", - "Timestamp": "2019-10-16T02:46:11.000Z" + "InstanceType": "g6.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.241500", + "Timestamp": "2024-05-16T14:03:05.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.354400", - "Timestamp": "2019-10-16T02:46:11.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.092400", + "Timestamp": "2024-05-16T14:03:05.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.254400", - "Timestamp": "2019-10-16T02:46:11.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "f1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.830400", + "Timestamp": "2024-05-16T14:03:04.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.328400", - "Timestamp": "2019-10-16T02:46:02.000Z" + "InstanceType": "f1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.800400", + "Timestamp": "2024-05-16T14:03:04.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.298400", - "Timestamp": "2019-10-16T02:46:02.000Z" + "InstanceType": "f1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.700400", + "Timestamp": "2024-05-16T14:03:04.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.367200", + "Timestamp": "2024-05-16T14:03:03.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.198400", - "Timestamp": "2019-10-16T02:46:02.000Z" + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.239400", + "Timestamp": "2024-05-16T14:03:03.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095600", - "Timestamp": "2019-10-16T02:45:59.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.296600", + "Timestamp": "2024-05-16T14:03:03.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-16T02:45:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.234400", + "Timestamp": "2024-05-16T14:03:03.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035600", - "Timestamp": "2019-10-16T02:45:59.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.291600", + "Timestamp": "2024-05-16T14:03:03.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "a1.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.076800", - "Timestamp": "2019-10-16T02:43:12.000Z" + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.109400", + "Timestamp": "2024-05-16T14:03:03.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.166600", + "Timestamp": "2024-05-16T14:03:03.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.690900", + "Timestamp": "2024-05-16T14:03:03.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "a1.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.076800", - "Timestamp": "2019-10-16T02:43:12.000Z" + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.260300", + "Timestamp": "2024-05-16T14:03:03.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.305300", + "Timestamp": "2024-05-16T14:03:02.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.302500", + "Timestamp": "2024-05-16T14:03:02.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "a1.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.076800", - "Timestamp": "2019-10-16T02:43:12.000Z" + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.210900", + "Timestamp": "2024-05-16T14:03:02.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "a1.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.116800", - "Timestamp": "2019-10-16T02:43:12.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.176800", + "Timestamp": "2024-05-16T14:03:02.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "a1.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.116800", - "Timestamp": "2019-10-16T02:43:12.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.171800", + "Timestamp": "2024-05-16T14:03:02.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "a1.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.116800", - "Timestamp": "2019-10-16T02:43:12.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.046800", + "Timestamp": "2024-05-16T14:03:02.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "a1.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.016800", - "Timestamp": "2019-10-16T02:43:12.000Z" + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.682400", + "Timestamp": "2024-05-16T14:03:01.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "a1.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.016800", - "Timestamp": "2019-10-16T02:43:12.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.677400", + "Timestamp": "2024-05-16T14:03:01.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "a1.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.016800", - "Timestamp": "2019-10-16T02:43:12.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.552400", + "Timestamp": "2024-05-16T14:03:01.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.466100", - "Timestamp": "2019-10-16T02:38:50.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.192500", + "Timestamp": "2024-05-16T14:03:01.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.436100", - "Timestamp": "2019-10-16T02:38:50.000Z" + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.543400", + "Timestamp": "2024-05-16T14:03:01.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.336100", - "Timestamp": "2019-10-16T02:38:50.000Z" + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.538400", + "Timestamp": "2024-05-16T14:03:01.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.775400", - "Timestamp": "2019-10-16T02:38:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.413400", + "Timestamp": "2024-05-16T14:03:01.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.745400", - "Timestamp": "2019-10-16T02:38:40.000Z" + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.446300", + "Timestamp": "2024-05-16T14:03:00.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.645400", - "Timestamp": "2019-10-16T02:38:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.086400", + "Timestamp": "2024-05-16T14:03:00.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.447600", - "Timestamp": "2019-10-16T02:38:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.183300", + "Timestamp": "2024-05-16T14:02:59.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.417600", - "Timestamp": "2019-10-16T02:38:29.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.573400", + "Timestamp": "2024-05-16T14:02:59.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.317600", - "Timestamp": "2019-10-16T02:38:29.000Z" + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.533300", + "Timestamp": "2024-05-16T14:02:59.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.096000", - "Timestamp": "2019-10-16T02:38:22.000Z" + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.568400", + "Timestamp": "2024-05-16T14:02:59.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.136000", - "Timestamp": "2019-10-16T02:38:22.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.528300", + "Timestamp": "2024-05-16T14:02:59.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.036000", - "Timestamp": "2019-10-16T02:38:22.000Z" + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.443400", + "Timestamp": "2024-05-16T14:02:59.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.131900", - "Timestamp": "2019-10-16T02:38:01.000Z" + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.403300", + "Timestamp": "2024-05-16T14:02:59.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "p3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.101900", - "Timestamp": "2019-10-16T02:38:01.000Z" + "InstanceType": "m1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.094200", + "Timestamp": "2024-05-16T14:02:59.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.001900", - "Timestamp": "2019-10-16T02:38:01.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.787900", + "Timestamp": "2024-05-16T14:02:59.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.425100", - "Timestamp": "2019-10-16T02:38:01.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126200", + "Timestamp": "2024-05-16T14:02:59.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.395100", - "Timestamp": "2019-10-16T02:38:01.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122200", + "Timestamp": "2024-05-16T14:02:59.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.295100", - "Timestamp": "2019-10-16T02:38:01.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066200", + "Timestamp": "2024-05-16T14:02:59.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.900100", - "Timestamp": "2019-10-16T02:38:01.000Z" + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.129700", + "Timestamp": "2024-05-16T14:02:58.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.870100", - "Timestamp": "2019-10-16T02:38:01.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.270300", + "Timestamp": "2024-05-16T14:02:58.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.770100", - "Timestamp": "2019-10-16T02:38:01.000Z" + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.982600", + "Timestamp": "2024-05-16T14:02:58.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.214900", + "Timestamp": "2024-05-16T14:02:58.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.297600", - "Timestamp": "2019-10-16T02:38:00.000Z" + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.053000", + "Timestamp": "2024-05-16T14:02:58.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.780300", - "Timestamp": "2019-10-16T02:37:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.537300", + "Timestamp": "2024-05-16T14:02:58.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.765900", - "Timestamp": "2019-10-16T02:37:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.532300", + "Timestamp": "2024-05-16T14:02:58.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.750300", - "Timestamp": "2019-10-16T02:37:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.407300", + "Timestamp": "2024-05-16T14:02:58.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.735900", - "Timestamp": "2019-10-16T02:37:54.000Z" + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.045500", + "Timestamp": "2024-05-16T14:02:58.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.650300", - "Timestamp": "2019-10-16T02:37:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.040500", + "Timestamp": "2024-05-16T14:02:58.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.635900", - "Timestamp": "2019-10-16T02:37:54.000Z" + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.915500", + "Timestamp": "2024-05-16T14:02:58.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.879100", - "Timestamp": "2019-10-16T02:37:51.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.008700", + "Timestamp": "2024-05-16T14:02:58.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.849100", - "Timestamp": "2019-10-16T02:37:51.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.978700", + "Timestamp": "2024-05-16T14:02:58.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.749100", - "Timestamp": "2019-10-16T02:37:51.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.878700", + "Timestamp": "2024-05-16T14:02:58.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.266600", - "Timestamp": "2019-10-16T02:37:47.000Z" + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.398700", + "Timestamp": "2024-05-16T14:02:58.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.236600", - "Timestamp": "2019-10-16T02:37:47.000Z" + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.393700", + "Timestamp": "2024-05-16T14:02:58.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.136600", - "Timestamp": "2019-10-16T02:37:47.000Z" + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.268700", + "Timestamp": "2024-05-16T14:02:58.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.122700", - "Timestamp": "2019-10-16T02:37:45.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.476000", + "Timestamp": "2024-05-16T14:02:56.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.162700", - "Timestamp": "2019-10-16T02:37:45.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307800", + "Timestamp": "2024-05-16T14:02:56.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.062700", - "Timestamp": "2019-10-16T02:37:45.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302800", + "Timestamp": "2024-05-16T14:02:56.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.840000", - "Timestamp": "2019-10-16T02:37:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177800", + "Timestamp": "2024-05-16T14:02:56.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.810000", - "Timestamp": "2019-10-16T02:37:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.162600", + "Timestamp": "2024-05-16T14:02:56.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.710000", - "Timestamp": "2019-10-16T02:37:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "h1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.792400", + "Timestamp": "2024-05-16T14:02:56.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.126000", - "Timestamp": "2019-10-16T02:37:07.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.814600", + "Timestamp": "2024-05-16T14:02:55.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "9.889400", - "Timestamp": "2019-10-16T02:35:24.000Z" + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.809600", + "Timestamp": "2024-05-16T14:02:55.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "9.889400", - "Timestamp": "2019-10-16T02:35:24.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.684600", + "Timestamp": "2024-05-16T14:02:55.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "9.889400", - "Timestamp": "2019-10-16T02:35:24.000Z" + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.185700", + "Timestamp": "2024-05-16T14:02:55.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "9.889400", - "Timestamp": "2019-10-16T02:35:24.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.180700", + "Timestamp": "2024-05-16T14:02:55.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "9.889400", - "Timestamp": "2019-10-16T02:35:24.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.055700", + "Timestamp": "2024-05-16T14:02:55.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "9.889400", - "Timestamp": "2019-10-16T02:35:24.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.437800", + "Timestamp": "2024-05-16T14:02:54.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.358500", - "Timestamp": "2019-10-16T02:30:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.528100", + "Timestamp": "2024-05-16T14:02:54.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.328500", - "Timestamp": "2019-10-16T02:30:11.000Z" + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.177500", + "Timestamp": "2024-05-16T14:02:54.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.228500", - "Timestamp": "2019-10-16T02:30:11.000Z" + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.172500", + "Timestamp": "2024-05-16T14:02:54.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.129500", - "Timestamp": "2019-10-16T02:30:00.000Z" + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.047500", + "Timestamp": "2024-05-16T14:02:54.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.169500", - "Timestamp": "2019-10-16T02:30:00.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.015600", + "Timestamp": "2024-05-16T14:02:54.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.069500", - "Timestamp": "2019-10-16T02:30:00.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.770300", + "Timestamp": "2024-05-16T14:02:54.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.894600", - "Timestamp": "2019-10-16T02:30:00.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.765300", + "Timestamp": "2024-05-16T14:02:54.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.864600", - "Timestamp": "2019-10-16T02:30:00.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.640300", + "Timestamp": "2024-05-16T14:02:54.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.764600", - "Timestamp": "2019-10-16T02:30:00.000Z" + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.654300", + "Timestamp": "2024-05-16T14:02:54.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.098400", - "Timestamp": "2019-10-16T02:29:58.000Z" + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.151200", + "Timestamp": "2024-05-16T14:02:54.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.138400", - "Timestamp": "2019-10-16T02:29:58.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.166600", + "Timestamp": "2024-05-16T14:02:53.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.038400", - "Timestamp": "2019-10-16T02:29:58.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.259900", + "Timestamp": "2024-05-16T14:02:52.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.141900", - "Timestamp": "2019-10-16T02:29:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.229900", + "Timestamp": "2024-05-16T14:02:52.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.181900", - "Timestamp": "2019-10-16T02:29:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129900", + "Timestamp": "2024-05-16T14:02:52.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.451200", + "Timestamp": "2024-05-16T14:02:52.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.446200", + "Timestamp": "2024-05-16T14:02:52.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.321200", + "Timestamp": "2024-05-16T14:02:52.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.081900", - "Timestamp": "2019-10-16T02:29:41.000Z" + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.197500", + "Timestamp": "2024-05-16T14:02:52.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.977300", - "Timestamp": "2019-10-16T02:29:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.168000", + "Timestamp": "2024-05-16T14:02:52.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.947300", - "Timestamp": "2019-10-16T02:29:39.000Z" + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.306600", + "Timestamp": "2024-05-16T14:02:51.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.847300", - "Timestamp": "2019-10-16T02:29:39.000Z" + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.904700", + "Timestamp": "2024-05-16T14:02:50.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.007100", - "Timestamp": "2019-10-16T02:29:36.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.056900", + "Timestamp": "2024-05-16T14:02:50.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.977100", - "Timestamp": "2019-10-16T02:29:36.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.051900", + "Timestamp": "2024-05-16T14:02:50.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.877100", - "Timestamp": "2019-10-16T02:29:36.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.926900", + "Timestamp": "2024-05-16T14:02:50.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.292900", - "Timestamp": "2019-10-16T02:29:25.000Z" + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.471000", + "Timestamp": "2024-05-16T14:02:50.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.262900", - "Timestamp": "2019-10-16T02:29:25.000Z" + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.466000", + "Timestamp": "2024-05-16T14:02:50.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.162900", - "Timestamp": "2019-10-16T02:29:25.000Z" + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.341000", + "Timestamp": "2024-05-16T14:02:50.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.601600", - "Timestamp": "2019-10-16T02:29:24.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.888900", + "Timestamp": "2024-05-16T14:02:50.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.571600", - "Timestamp": "2019-10-16T02:29:24.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.883900", + "Timestamp": "2024-05-16T14:02:50.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.471600", - "Timestamp": "2019-10-16T02:29:24.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.758900", + "Timestamp": "2024-05-16T14:02:50.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.075800", - "Timestamp": "2019-10-16T02:29:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.688700", + "Timestamp": "2024-05-16T14:02:50.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.122700", - "Timestamp": "2019-10-16T02:28:51.000Z" + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.683700", + "Timestamp": "2024-05-16T14:02:50.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.162700", - "Timestamp": "2019-10-16T02:28:51.000Z" + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.558700", + "Timestamp": "2024-05-16T14:02:50.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.062700", - "Timestamp": "2019-10-16T02:28:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.072400", + "Timestamp": "2024-05-16T14:02:50.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.698800", - "Timestamp": "2019-10-16T02:21:49.000Z" + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.067400", + "Timestamp": "2024-05-16T14:02:50.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.668800", - "Timestamp": "2019-10-16T02:21:49.000Z" + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.942400", + "Timestamp": "2024-05-16T14:02:50.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.568800", - "Timestamp": "2019-10-16T02:21:49.000Z" + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.304800", + "Timestamp": "2024-05-16T14:02:49.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.xlarge", + "InstanceType": "m6id.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.275200", - "Timestamp": "2019-10-16T02:21:43.000Z" + "SpotPrice": "1.922300", + "Timestamp": "2024-05-16T14:02:49.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.xlarge", + "InstanceType": "m6id.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.315200", - "Timestamp": "2019-10-16T02:21:43.000Z" + "SpotPrice": "1.917300", + "Timestamp": "2024-05-16T14:02:49.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.xlarge", + "InstanceType": "m6id.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.215200", - "Timestamp": "2019-10-16T02:21:43.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.097100", - "Timestamp": "2019-10-16T02:21:26.000Z" + "SpotPrice": "1.792300", + "Timestamp": "2024-05-16T14:02:49.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.137100", - "Timestamp": "2019-10-16T02:21:26.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.728000", + "Timestamp": "2024-05-16T14:02:49.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.037100", - "Timestamp": "2019-10-16T02:21:26.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.xlarge", + "InstanceType": "m5dn.large", "ProductDescription": "Windows", - "SpotPrice": "0.296300", - "Timestamp": "2019-10-16T02:21:26.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.078900", - "Timestamp": "2019-10-16T02:21:20.000Z" - }, - { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.175200", - "Timestamp": "2019-10-16T02:21:19.000Z" - }, - { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.215200", - "Timestamp": "2019-10-16T02:21:19.000Z" + "SpotPrice": "0.149200", + "Timestamp": "2024-05-16T14:02:49.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.115200", - "Timestamp": "2019-10-16T02:21:19.000Z" + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.214800", + "Timestamp": "2024-05-16T14:02:48.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.437200", - "Timestamp": "2019-10-16T02:21:13.000Z" + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131600", + "Timestamp": "2024-05-16T14:02:47.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.407200", - "Timestamp": "2019-10-16T02:21:13.000Z" + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127900", + "Timestamp": "2024-05-16T14:02:47.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.307200", - "Timestamp": "2019-10-16T02:21:13.000Z" + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071600", + "Timestamp": "2024-05-16T14:02:47.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.585300", - "Timestamp": "2019-10-16T02:21:12.000Z" + "InstanceType": "g6.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.332500", + "Timestamp": "2024-05-16T14:02:47.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.555300", - "Timestamp": "2019-10-16T02:21:12.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.293100", + "Timestamp": "2024-05-16T14:02:47.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.455300", - "Timestamp": "2019-10-16T02:21:12.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.659800", + "Timestamp": "2024-05-16T14:02:47.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.731700", - "Timestamp": "2019-10-16T02:21:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.368600", + "Timestamp": "2024-05-16T14:02:47.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.701700", - "Timestamp": "2019-10-16T02:21:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.363600", + "Timestamp": "2024-05-16T14:02:47.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.601700", - "Timestamp": "2019-10-16T02:21:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.238600", + "Timestamp": "2024-05-16T14:02:47.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.869000", - "Timestamp": "2019-10-16T02:21:11.000Z" + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.232100", + "Timestamp": "2024-05-16T14:02:47.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.839000", - "Timestamp": "2019-10-16T02:21:11.000Z" + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.227100", + "Timestamp": "2024-05-16T14:02:47.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.739000", - "Timestamp": "2019-10-16T02:21:11.000Z" + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.102100", + "Timestamp": "2024-05-16T14:02:47.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.308700", - "Timestamp": "2019-10-16T02:21:09.000Z" + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168600", + "Timestamp": "2024-05-16T14:02:47.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "p2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.278700", - "Timestamp": "2019-10-16T02:21:09.000Z" + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164900", + "Timestamp": "2024-05-16T14:02:47.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.178700", - "Timestamp": "2019-10-16T02:21:09.000Z" + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-16T14:02:47.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.266000", - "Timestamp": "2019-10-16T02:20:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.788400", + "Timestamp": "2024-05-16T14:02:47.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.236000", - "Timestamp": "2019-10-16T02:20:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.783400", + "Timestamp": "2024-05-16T14:02:47.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.658400", + "Timestamp": "2024-05-16T14:02:47.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.136000", - "Timestamp": "2019-10-16T02:20:54.000Z" + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.538600", + "Timestamp": "2024-05-16T14:02:47.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.143700", - "Timestamp": "2019-10-16T02:20:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.466500", + "Timestamp": "2024-05-16T14:02:47.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.183700", - "Timestamp": "2019-10-16T02:20:47.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.212900", + "Timestamp": "2024-05-16T14:02:46.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.083700", - "Timestamp": "2019-10-16T02:20:47.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.207900", + "Timestamp": "2024-05-16T14:02:46.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-16T02:14:01.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.082900", + "Timestamp": "2024-05-16T14:02:46.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-16T02:14:01.000Z" + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.165000", + "Timestamp": "2024-05-16T14:02:45.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-16T02:14:01.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.490600", + "Timestamp": "2024-05-16T14:02:45.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-16T02:14:01.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.485600", + "Timestamp": "2024-05-16T14:02:45.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-16T02:14:01.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.360600", + "Timestamp": "2024-05-16T14:02:45.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-16T02:14:01.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.477900", + "Timestamp": "2024-05-16T14:02:44.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-16T02:14:01.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.472900", + "Timestamp": "2024-05-16T14:02:44.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-16T02:14:01.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.347900", + "Timestamp": "2024-05-16T14:02:44.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-16T02:14:01.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.333200", + "Timestamp": "2024-05-16T14:02:44.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.958800", - "Timestamp": "2019-10-16T02:13:59.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.303200", + "Timestamp": "2024-05-16T14:02:44.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.958800", - "Timestamp": "2019-10-16T02:13:59.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.203200", + "Timestamp": "2024-05-16T14:02:44.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.958800", - "Timestamp": "2019-10-16T02:13:59.000Z" + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.863100", + "Timestamp": "2024-05-16T14:02:44.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.958800", - "Timestamp": "2019-10-16T02:13:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.502100", + "Timestamp": "2024-05-16T14:02:43.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.958800", - "Timestamp": "2019-10-16T02:13:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.497100", + "Timestamp": "2024-05-16T14:02:43.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.069700", - "Timestamp": "2019-10-16T02:13:53.000Z" + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.372100", + "Timestamp": "2024-05-16T14:02:43.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.069700", - "Timestamp": "2019-10-16T02:13:53.000Z" + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.162600", + "Timestamp": "2024-05-16T14:02:43.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.069700", - "Timestamp": "2019-10-16T02:13:53.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.132600", + "Timestamp": "2024-05-16T14:02:43.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.069700", - "Timestamp": "2019-10-16T02:13:53.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.032600", + "Timestamp": "2024-05-16T14:02:43.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.069700", - "Timestamp": "2019-10-16T02:13:34.000Z" - }, - { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.069700", - "Timestamp": "2019-10-16T02:13:34.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.069700", - "Timestamp": "2019-10-16T02:13:34.000Z" + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.840200", + "Timestamp": "2024-05-16T14:02:43.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.096400", - "Timestamp": "2019-10-16T02:13:23.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.835200", + "Timestamp": "2024-05-16T14:02:43.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.136400", - "Timestamp": "2019-10-16T02:13:23.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.710200", + "Timestamp": "2024-05-16T14:02:43.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.036400", - "Timestamp": "2019-10-16T02:13:23.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.043100", + "Timestamp": "2024-05-16T14:02:43.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.441600", - "Timestamp": "2019-10-16T02:13:21.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.038100", + "Timestamp": "2024-05-16T14:02:43.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.441600", - "Timestamp": "2019-10-16T02:13:21.000Z" + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.913100", + "Timestamp": "2024-05-16T14:02:43.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.441600", - "Timestamp": "2019-10-16T02:13:21.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.544800", + "Timestamp": "2024-05-16T14:02:43.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.441600", - "Timestamp": "2019-10-16T02:13:21.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.539800", + "Timestamp": "2024-05-16T14:02:43.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.441600", - "Timestamp": "2019-10-16T02:13:21.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.414800", + "Timestamp": "2024-05-16T14:02:43.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.985000", - "Timestamp": "2019-10-16T02:13:20.000Z" + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.227400", + "Timestamp": "2024-05-16T14:02:42.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.955000", - "Timestamp": "2019-10-16T02:13:20.000Z" + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267400", + "Timestamp": "2024-05-16T14:02:42.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.855000", - "Timestamp": "2019-10-16T02:13:20.000Z" + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167400", + "Timestamp": "2024-05-16T14:02:42.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5ad.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.157400", - "Timestamp": "2019-10-16T02:13:14.000Z" + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.979900", + "Timestamp": "2024-05-16T14:02:42.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.159400", - "Timestamp": "2019-10-16T02:13:08.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.949900", + "Timestamp": "2024-05-16T14:02:42.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.145700", - "Timestamp": "2019-10-16T02:13:08.000Z" + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.849900", + "Timestamp": "2024-05-16T14:02:42.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.199400", - "Timestamp": "2019-10-16T02:13:08.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.261700", + "Timestamp": "2024-05-16T14:02:41.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.185700", - "Timestamp": "2019-10-16T02:13:08.000Z" + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.408800", + "Timestamp": "2024-05-16T14:02:41.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.099400", - "Timestamp": "2019-10-16T02:13:08.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.403800", + "Timestamp": "2024-05-16T14:02:41.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.085700", - "Timestamp": "2019-10-16T02:13:08.000Z" + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.278800", + "Timestamp": "2024-05-16T14:02:41.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.108600", - "Timestamp": "2019-10-16T02:12:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.684600", + "Timestamp": "2024-05-16T14:02:41.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.078600", - "Timestamp": "2019-10-16T02:12:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.736700", + "Timestamp": "2024-05-16T14:02:41.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.978600", - "Timestamp": "2019-10-16T02:12:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.731700", + "Timestamp": "2024-05-16T14:02:41.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.099900", - "Timestamp": "2019-10-16T02:12:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.606700", + "Timestamp": "2024-05-16T14:02:41.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.139900", - "Timestamp": "2019-10-16T02:12:54.000Z" + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.914300", + "Timestamp": "2024-05-16T14:02:41.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.039900", - "Timestamp": "2019-10-16T02:12:54.000Z" - }, - { - "AvailabilityZone": "us-east-1f", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.137100", - "Timestamp": "2019-10-16T02:12:49.000Z" + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.909300", + "Timestamp": "2024-05-16T14:02:41.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "p3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.107100", - "Timestamp": "2019-10-16T02:12:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.784300", + "Timestamp": "2024-05-16T14:02:41.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.007100", - "Timestamp": "2019-10-16T02:12:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.359100", + "Timestamp": "2024-05-16T14:02:40.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.188800", - "Timestamp": "2019-10-16T02:12:47.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.354100", + "Timestamp": "2024-05-16T14:02:40.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.228800", - "Timestamp": "2019-10-16T02:12:47.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.229100", + "Timestamp": "2024-05-16T14:02:40.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.128800", - "Timestamp": "2019-10-16T02:12:47.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.078100", + "Timestamp": "2024-05-16T14:02:40.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.344300", - "Timestamp": "2019-10-16T02:12:45.000Z" + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.598600", + "Timestamp": "2024-05-16T14:02:39.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.314300", - "Timestamp": "2019-10-16T02:12:45.000Z" + "InstanceType": "c7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.593600", + "Timestamp": "2024-05-16T14:02:39.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.214300", - "Timestamp": "2019-10-16T02:12:45.000Z" + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.468600", + "Timestamp": "2024-05-16T14:02:39.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.099100", - "Timestamp": "2019-10-16T02:12:45.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.624300", + "Timestamp": "2024-05-16T14:02:39.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.139100", - "Timestamp": "2019-10-16T02:12:45.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.333700", + "Timestamp": "2024-05-16T14:02:39.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.039100", - "Timestamp": "2019-10-16T02:12:45.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.321300", + "Timestamp": "2024-05-16T14:02:39.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.309700", - "Timestamp": "2019-10-16T02:12:45.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.196900", + "Timestamp": "2024-05-16T14:02:39.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.303700", - "Timestamp": "2019-10-16T02:12:45.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193200", + "Timestamp": "2024-05-16T14:02:39.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.279700", - "Timestamp": "2019-10-16T02:12:45.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136900", + "Timestamp": "2024-05-16T14:02:39.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.273700", - "Timestamp": "2019-10-16T02:12:45.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.248400", + "Timestamp": "2024-05-16T14:02:38.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.179700", - "Timestamp": "2019-10-16T02:12:45.000Z" + "InstanceType": "r7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.243400", + "Timestamp": "2024-05-16T14:02:38.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.173700", - "Timestamp": "2019-10-16T02:12:45.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.118400", + "Timestamp": "2024-05-16T14:02:38.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.250400", - "Timestamp": "2019-10-16T02:12:44.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.224600", + "Timestamp": "2024-05-16T14:02:38.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.220400", - "Timestamp": "2019-10-16T02:12:44.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.219600", + "Timestamp": "2024-05-16T14:02:38.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.120400", - "Timestamp": "2019-10-16T02:12:44.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.094600", + "Timestamp": "2024-05-16T14:02:38.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.213000", - "Timestamp": "2019-10-16T02:12:44.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140800", + "Timestamp": "2024-05-16T14:02:38.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.183000", - "Timestamp": "2019-10-16T02:12:44.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137100", + "Timestamp": "2024-05-16T14:02:38.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.083000", - "Timestamp": "2019-10-16T02:12:44.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080800", + "Timestamp": "2024-05-16T14:02:38.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-16T02:12:41.000Z" + "SpotPrice": "2.010200", + "Timestamp": "2024-05-16T14:02:37.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-16T02:12:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.005200", + "Timestamp": "2024-05-16T14:02:37.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-16T02:12:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.880200", + "Timestamp": "2024-05-16T14:02:37.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.9xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-16T02:12:41.000Z" + "SpotPrice": "0.828100", + "Timestamp": "2024-05-16T14:02:37.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.9xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.106700", - "Timestamp": "2019-10-16T02:12:41.000Z" + "SpotPrice": "0.798100", + "Timestamp": "2024-05-16T14:02:37.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.106700", - "Timestamp": "2019-10-16T02:12:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.698100", + "Timestamp": "2024-05-16T14:02:37.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.106700", - "Timestamp": "2019-10-16T02:12:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.691600", + "Timestamp": "2024-05-16T14:02:37.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.106700", - "Timestamp": "2019-10-16T02:12:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.918000", + "Timestamp": "2024-05-16T14:02:37.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006700", - "Timestamp": "2019-10-16T02:12:41.000Z" + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.686600", + "Timestamp": "2024-05-16T14:02:37.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006700", - "Timestamp": "2019-10-16T02:12:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.913000", + "Timestamp": "2024-05-16T14:02:37.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006700", - "Timestamp": "2019-10-16T02:12:41.000Z" + "SpotPrice": "5.561600", + "Timestamp": "2024-05-16T14:02:37.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006700", - "Timestamp": "2019-10-16T02:12:41.000Z" + "SpotPrice": "5.788000", + "Timestamp": "2024-05-16T14:02:37.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "p2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.414300", - "Timestamp": "2019-10-16T02:12:28.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.325000", + "Timestamp": "2024-05-16T14:02:37.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "p2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.454300", - "Timestamp": "2019-10-16T02:12:28.000Z" + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.823500", + "Timestamp": "2024-05-16T14:02:37.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "p2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.354300", - "Timestamp": "2019-10-16T02:12:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.595200", + "Timestamp": "2024-05-16T14:02:37.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.869500", - "Timestamp": "2019-10-16T02:12:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.953700", + "Timestamp": "2024-05-16T14:02:37.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.839500", - "Timestamp": "2019-10-16T02:12:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.948700", + "Timestamp": "2024-05-16T14:02:37.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.739500", - "Timestamp": "2019-10-16T02:12:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.823700", + "Timestamp": "2024-05-16T14:02:37.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.475300", - "Timestamp": "2019-10-16T02:12:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.315200", + "Timestamp": "2024-05-16T14:02:36.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.445300", - "Timestamp": "2019-10-16T02:12:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.310200", + "Timestamp": "2024-05-16T14:02:36.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.345300", - "Timestamp": "2019-10-16T02:12:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.185200", + "Timestamp": "2024-05-16T14:02:36.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.441600", - "Timestamp": "2019-10-16T02:12:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.279500", + "Timestamp": "2024-05-16T14:02:35.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.441600", - "Timestamp": "2019-10-16T02:12:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.274500", + "Timestamp": "2024-05-16T14:02:35.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.441600", - "Timestamp": "2019-10-16T02:12:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149500", + "Timestamp": "2024-05-16T14:02:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.441600", - "Timestamp": "2019-10-16T02:12:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.294000", + "Timestamp": "2024-05-16T14:02:35.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.441600", - "Timestamp": "2019-10-16T02:12:19.000Z" + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.556000", + "Timestamp": "2024-05-16T14:02:35.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.536800", - "Timestamp": "2019-10-16T02:12:13.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.551000", + "Timestamp": "2024-05-16T14:02:35.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.536800", - "Timestamp": "2019-10-16T02:12:13.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.426000", + "Timestamp": "2024-05-16T14:02:35.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.536800", - "Timestamp": "2019-10-16T02:12:13.000Z" + "InstanceType": "r7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.074800", + "Timestamp": "2024-05-16T14:02:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.536800", - "Timestamp": "2019-10-16T02:12:13.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.405900", + "Timestamp": "2024-05-16T14:02:35.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.536800", - "Timestamp": "2019-10-16T02:12:13.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.400900", + "Timestamp": "2024-05-16T14:02:35.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.506800", - "Timestamp": "2019-10-16T02:12:13.000Z" + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.275900", + "Timestamp": "2024-05-16T14:02:35.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.506800", - "Timestamp": "2019-10-16T02:12:13.000Z" + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125000", + "Timestamp": "2024-05-16T14:02:34.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.506800", - "Timestamp": "2019-10-16T02:12:13.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121000", + "Timestamp": "2024-05-16T14:02:34.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.506800", - "Timestamp": "2019-10-16T02:12:13.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065000", + "Timestamp": "2024-05-16T14:02:34.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.506800", - "Timestamp": "2019-10-16T02:12:13.000Z" + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.464000", + "Timestamp": "2024-05-16T14:02:34.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.406800", - "Timestamp": "2019-10-16T02:12:13.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.459000", + "Timestamp": "2024-05-16T14:02:34.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.406800", - "Timestamp": "2019-10-16T02:12:13.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.334000", + "Timestamp": "2024-05-16T14:02:34.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.406800", - "Timestamp": "2019-10-16T02:12:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122700", + "Timestamp": "2024-05-16T14:02:34.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.406800", - "Timestamp": "2019-10-16T02:12:13.000Z" + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118700", + "Timestamp": "2024-05-16T14:02:34.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.406800", - "Timestamp": "2019-10-16T02:12:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062700", + "Timestamp": "2024-05-16T14:02:34.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-16T02:12:01.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.376200", + "Timestamp": "2024-05-16T14:02:34.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-16T02:12:01.000Z" + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.369000", + "Timestamp": "2024-05-16T14:02:34.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-16T02:12:01.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.134900", + "Timestamp": "2024-05-16T14:02:33.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.564900", + "Timestamp": "2024-05-16T14:02:33.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i3.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-16T02:12:01.000Z" + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.093400", + "Timestamp": "2024-05-16T14:02:33.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-16T02:12:01.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.769900", + "Timestamp": "2024-05-16T14:02:32.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-16T02:12:01.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.764900", + "Timestamp": "2024-05-16T14:02:32.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-16T02:12:01.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.639900", + "Timestamp": "2024-05-16T14:02:32.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-16T02:12:01.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.662700", + "Timestamp": "2024-05-16T14:02:32.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i3.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-16T02:12:01.000Z" + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.657700", + "Timestamp": "2024-05-16T14:02:32.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-16T02:12:01.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.532700", + "Timestamp": "2024-05-16T14:02:32.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-16T02:12:01.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.763700", + "Timestamp": "2024-05-16T14:02:32.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-16T02:12:01.000Z" + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.307200", + "Timestamp": "2024-05-16T14:02:31.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-16T02:12:01.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.302200", + "Timestamp": "2024-05-16T14:02:31.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-16T02:12:01.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.177200", + "Timestamp": "2024-05-16T14:02:31.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-16T02:12:01.000Z" + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.524200", + "Timestamp": "2024-05-16T14:02:31.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124400", - "Timestamp": "2019-10-16T02:11:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.812200", + "Timestamp": "2024-05-16T14:02:31.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124400", - "Timestamp": "2019-10-16T02:11:54.000Z" + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.807200", + "Timestamp": "2024-05-16T14:02:31.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124400", - "Timestamp": "2019-10-16T02:11:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.682200", + "Timestamp": "2024-05-16T14:02:31.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124400", - "Timestamp": "2019-10-16T02:11:54.000Z" + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.287800", + "Timestamp": "2024-05-16T14:02:31.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124400", - "Timestamp": "2019-10-16T02:11:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.282800", + "Timestamp": "2024-05-16T14:02:31.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-16T02:11:50.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157800", + "Timestamp": "2024-05-16T14:02:31.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-16T02:11:50.000Z" + "InstanceType": "x2gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.586500", + "Timestamp": "2024-05-16T14:02:31.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-16T02:11:50.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.581500", + "Timestamp": "2024-05-16T14:02:31.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-16T02:11:50.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.456500", + "Timestamp": "2024-05-16T14:02:31.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.106700", - "Timestamp": "2019-10-16T02:11:50.000Z" + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.435400", + "Timestamp": "2024-05-16T14:02:31.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.106700", - "Timestamp": "2019-10-16T02:11:50.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.430400", + "Timestamp": "2024-05-16T14:02:31.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.106700", - "Timestamp": "2019-10-16T02:11:50.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.305400", + "Timestamp": "2024-05-16T14:02:31.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.106700", - "Timestamp": "2019-10-16T02:11:50.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.218100", + "Timestamp": "2024-05-16T14:02:31.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.006700", - "Timestamp": "2019-10-16T02:11:50.000Z" + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148100", + "Timestamp": "2024-05-16T14:02:30.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.006700", - "Timestamp": "2019-10-16T02:11:50.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.188100", + "Timestamp": "2024-05-16T14:02:30.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.006700", - "Timestamp": "2019-10-16T02:11:50.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-16T14:02:30.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.006700", - "Timestamp": "2019-10-16T02:11:50.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "trn1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.688300", + "Timestamp": "2024-05-16T14:02:30.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.798700", - "Timestamp": "2019-10-16T02:11:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "trn1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.658300", + "Timestamp": "2024-05-16T14:02:30.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.415000", - "Timestamp": "2019-10-16T02:11:41.000Z" + "InstanceType": "trn1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.558300", + "Timestamp": "2024-05-16T14:02:30.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.492100", - "Timestamp": "2019-10-16T02:11:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.899300", + "Timestamp": "2024-05-16T14:02:29.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.467400", - "Timestamp": "2019-10-16T02:11:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128900", + "Timestamp": "2024-05-16T14:02:28.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.455100", - "Timestamp": "2019-10-16T02:11:41.000Z" + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125200", + "Timestamp": "2024-05-16T14:02:28.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.768700", - "Timestamp": "2019-10-16T02:11:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068900", + "Timestamp": "2024-05-16T14:02:28.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.385000", - "Timestamp": "2019-10-16T02:11:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079200", + "Timestamp": "2024-05-16T14:02:27.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.462100", - "Timestamp": "2019-10-16T02:11:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075500", + "Timestamp": "2024-05-16T14:02:27.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.437400", - "Timestamp": "2019-10-16T02:11:41.000Z" + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019200", + "Timestamp": "2024-05-16T14:02:27.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.425100", - "Timestamp": "2019-10-16T02:11:41.000Z" + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.147100", + "Timestamp": "2024-05-16T14:02:27.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.668700", - "Timestamp": "2019-10-16T02:11:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.510500", + "Timestamp": "2024-05-16T14:02:26.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.285000", - "Timestamp": "2019-10-16T02:11:41.000Z" + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131500", + "Timestamp": "2024-05-16T14:02:26.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.362100", - "Timestamp": "2019-10-16T02:11:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127800", + "Timestamp": "2024-05-16T14:02:26.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.337400", - "Timestamp": "2019-10-16T02:11:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071500", + "Timestamp": "2024-05-16T14:02:26.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.325100", - "Timestamp": "2019-10-16T02:11:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.022500", + "Timestamp": "2024-05-16T14:02:26.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-16T02:11:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.292500", + "Timestamp": "2024-05-16T14:02:25.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-16T02:11:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.287500", + "Timestamp": "2024-05-16T14:02:25.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-16T02:11:41.000Z" + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162500", + "Timestamp": "2024-05-16T14:02:25.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-16T02:11:41.000Z" + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.547100", + "Timestamp": "2024-05-16T14:02:24.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-16T02:11:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.542100", + "Timestamp": "2024-05-16T14:02:24.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.983800", - "Timestamp": "2019-10-16T02:10:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.417100", + "Timestamp": "2024-05-16T14:02:24.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.777700", - "Timestamp": "2019-10-16T02:10:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.586800", + "Timestamp": "2024-05-16T14:02:23.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.828200", - "Timestamp": "2019-10-16T02:10:40.000Z" + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T14:02:23.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.777700", - "Timestamp": "2019-10-16T02:10:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100500", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044200", + "Timestamp": "2024-05-16T14:02:23.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.000300", - "Timestamp": "2019-10-16T02:10:40.000Z" + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.179300", + "Timestamp": "2024-05-16T14:02:22.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.856000", - "Timestamp": "2019-10-16T02:10:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.309700", + "Timestamp": "2024-05-16T14:02:21.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.10xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.953800", - "Timestamp": "2019-10-16T02:10:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.304700", + "Timestamp": "2024-05-16T14:02:21.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.10xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.747700", - "Timestamp": "2019-10-16T02:10:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.179700", + "Timestamp": "2024-05-16T14:02:21.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.798200", - "Timestamp": "2019-10-16T02:10:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176200", + "Timestamp": "2024-05-16T14:02:21.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m4.10xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.747700", - "Timestamp": "2019-10-16T02:10:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172500", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116200", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.339700", + "Timestamp": "2024-05-16T14:02:20.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.334700", + "Timestamp": "2024-05-16T14:02:20.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.209700", + "Timestamp": "2024-05-16T14:02:20.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.148800", + "Timestamp": "2024-05-16T14:02:18.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.10xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.970300", - "Timestamp": "2019-10-16T02:10:40.000Z" + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.947800", + "Timestamp": "2024-05-16T14:02:17.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.826000", - "Timestamp": "2019-10-16T02:10:40.000Z" + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.047100", + "Timestamp": "2024-05-16T14:02:17.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.853800", - "Timestamp": "2019-10-16T02:10:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.222000", + "Timestamp": "2024-05-16T14:02:17.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.647700", - "Timestamp": "2019-10-16T02:10:40.000Z" + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.219000", + "Timestamp": "2024-05-16T14:02:17.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.698200", - "Timestamp": "2019-10-16T02:10:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162000", + "Timestamp": "2024-05-16T14:02:17.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.647700", - "Timestamp": "2019-10-16T02:10:40.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105500", + "Timestamp": "2024-05-16T14:02:16.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.870300", - "Timestamp": "2019-10-16T02:10:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T14:02:16.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.726000", - "Timestamp": "2019-10-16T02:10:40.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101500", + "Timestamp": "2024-05-16T14:02:16.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-16T14:02:16.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.487700", - "Timestamp": "2019-10-16T02:10:39.000Z" + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045500", + "Timestamp": "2024-05-16T14:02:16.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044900", + "Timestamp": "2024-05-16T14:02:16.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.487700", - "Timestamp": "2019-10-16T02:10:39.000Z" + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.122800", + "Timestamp": "2024-05-16T14:02:16.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.487700", - "Timestamp": "2019-10-16T02:10:39.000Z" + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.042600", + "Timestamp": "2024-05-16T14:02:15.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.487700", - "Timestamp": "2019-10-16T02:10:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154800", + "Timestamp": "2024-05-16T14:02:14.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.487700", - "Timestamp": "2019-10-16T02:10:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150800", + "Timestamp": "2024-05-16T14:02:14.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.487700", - "Timestamp": "2019-10-16T02:10:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094800", + "Timestamp": "2024-05-16T14:02:14.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.666300", + "Timestamp": "2024-05-16T14:02:14.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.291800", - "Timestamp": "2019-10-16T02:05:13.000Z" + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.938600", + "Timestamp": "2024-05-16T14:02:14.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.261800", - "Timestamp": "2019-10-16T02:05:13.000Z" + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.933600", + "Timestamp": "2024-05-16T14:02:14.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.161800", - "Timestamp": "2019-10-16T02:05:13.000Z" + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.808600", + "Timestamp": "2024-05-16T14:02:14.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.457700", - "Timestamp": "2019-10-16T02:05:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.287100", + "Timestamp": "2024-05-16T14:02:14.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.427700", - "Timestamp": "2019-10-16T02:05:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.257100", + "Timestamp": "2024-05-16T14:02:14.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.327700", - "Timestamp": "2019-10-16T02:05:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157100", + "Timestamp": "2024-05-16T14:02:14.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.015700", - "Timestamp": "2019-10-16T02:05:02.000Z" + "InstanceType": "r7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.159000", + "Timestamp": "2024-05-16T14:02:14.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.985700", - "Timestamp": "2019-10-16T02:05:02.000Z" + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.189200", + "Timestamp": "2024-05-16T14:02:13.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.885700", - "Timestamp": "2019-10-16T02:05:02.000Z" + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185200", + "Timestamp": "2024-05-16T14:02:13.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.299200", - "Timestamp": "2019-10-16T02:04:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129200", + "Timestamp": "2024-05-16T14:02:13.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.269200", - "Timestamp": "2019-10-16T02:04:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167500", + "Timestamp": "2024-05-16T14:02:13.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.169200", - "Timestamp": "2019-10-16T02:04:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163500", + "Timestamp": "2024-05-16T14:02:13.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.569000", - "Timestamp": "2019-10-16T02:04:44.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T14:02:13.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r4.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.539000", - "Timestamp": "2019-10-16T02:04:44.000Z" + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.930600", + "Timestamp": "2024-05-16T14:02:12.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.439000", - "Timestamp": "2019-10-16T02:04:44.000Z" + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.925600", + "Timestamp": "2024-05-16T14:02:12.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.509300", - "Timestamp": "2019-10-16T02:04:36.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.800600", + "Timestamp": "2024-05-16T14:02:12.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.479300", - "Timestamp": "2019-10-16T02:04:36.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.246800", + "Timestamp": "2024-05-16T14:02:11.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.379300", - "Timestamp": "2019-10-16T02:04:36.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.152000", + "Timestamp": "2024-05-16T14:02:11.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.310500", - "Timestamp": "2019-10-16T02:04:29.000Z" + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.241800", + "Timestamp": "2024-05-16T14:02:11.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.280500", - "Timestamp": "2019-10-16T02:04:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.147000", + "Timestamp": "2024-05-16T14:02:11.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.180500", - "Timestamp": "2019-10-16T02:04:29.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.688300", - "Timestamp": "2019-10-16T02:04:29.000Z" + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.116800", + "Timestamp": "2024-05-16T14:02:11.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.658300", - "Timestamp": "2019-10-16T02:04:29.000Z" + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.022000", + "Timestamp": "2024-05-16T14:02:11.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.558300", - "Timestamp": "2019-10-16T02:04:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.016900", + "Timestamp": "2024-05-16T14:02:11.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.271800", - "Timestamp": "2019-10-16T02:04:24.000Z" + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.856300", + "Timestamp": "2024-05-16T14:02:11.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.241800", - "Timestamp": "2019-10-16T02:04:24.000Z" + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.826300", + "Timestamp": "2024-05-16T14:02:11.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.141800", - "Timestamp": "2019-10-16T02:04:24.000Z" + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.726300", + "Timestamp": "2024-05-16T14:02:11.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.076000", - "Timestamp": "2019-10-16T02:04:20.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.277900", + "Timestamp": "2024-05-16T14:02:11.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.709600", - "Timestamp": "2019-10-16T02:04:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.247900", + "Timestamp": "2024-05-16T14:02:11.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.679600", - "Timestamp": "2019-10-16T02:04:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147900", + "Timestamp": "2024-05-16T14:02:11.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.579600", - "Timestamp": "2019-10-16T02:04:18.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.304300", + "Timestamp": "2024-05-16T14:02:11.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.444000", - "Timestamp": "2019-10-16T02:04:09.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.299300", + "Timestamp": "2024-05-16T14:02:11.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.414000", - "Timestamp": "2019-10-16T02:04:09.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.174300", + "Timestamp": "2024-05-16T14:02:11.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.314000", - "Timestamp": "2019-10-16T02:04:09.000Z" + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.546100", + "Timestamp": "2024-05-16T14:02:11.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.373800", - "Timestamp": "2019-10-16T01:56:43.000Z" + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124300", + "Timestamp": "2024-05-16T14:02:11.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.343800", - "Timestamp": "2019-10-16T01:56:43.000Z" + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120600", + "Timestamp": "2024-05-16T14:02:11.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.243800", - "Timestamp": "2019-10-16T01:56:43.000Z" + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064300", + "Timestamp": "2024-05-16T14:02:11.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.647100", - "Timestamp": "2019-10-16T01:56:29.000Z" + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.250100", + "Timestamp": "2024-05-16T13:50:13.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.617100", - "Timestamp": "2019-10-16T01:56:29.000Z" + "InstanceType": "m7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.245100", + "Timestamp": "2024-05-16T13:50:13.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.517100", - "Timestamp": "2019-10-16T01:56:29.000Z" + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.120100", + "Timestamp": "2024-05-16T13:50:13.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.515900", + "Timestamp": "2024-05-16T13:50:11.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.290700", - "Timestamp": "2019-10-16T01:56:23.000Z" + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.202000", + "Timestamp": "2024-05-16T13:50:10.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.260700", - "Timestamp": "2019-10-16T01:56:23.000Z" + "InstanceType": "c3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.180100", + "Timestamp": "2024-05-16T13:50:09.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.160700", - "Timestamp": "2019-10-16T01:56:23.000Z" + "InstanceType": "c3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.220100", + "Timestamp": "2024-05-16T13:50:09.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120100", + "Timestamp": "2024-05-16T13:50:09.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.940900", + "Timestamp": "2024-05-16T13:50:09.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.704300", - "Timestamp": "2019-10-16T01:56:18.000Z" + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.880000", + "Timestamp": "2024-05-16T13:50:06.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.674300", - "Timestamp": "2019-10-16T01:56:18.000Z" + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.850000", + "Timestamp": "2024-05-16T13:50:06.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.574300", - "Timestamp": "2019-10-16T01:56:18.000Z" + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.750000", + "Timestamp": "2024-05-16T13:50:06.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.853100", - "Timestamp": "2019-10-16T01:56:15.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.488900", + "Timestamp": "2024-05-16T13:50:06.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.823100", - "Timestamp": "2019-10-16T01:56:15.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.528900", + "Timestamp": "2024-05-16T13:50:06.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.723100", - "Timestamp": "2019-10-16T01:56:15.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.428900", + "Timestamp": "2024-05-16T13:50:06.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.158300", + "Timestamp": "2024-05-16T13:50:05.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5zn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.155000", + "Timestamp": "2024-05-16T13:50:05.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.869800", + "Timestamp": "2024-05-16T13:50:05.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.168300", + "Timestamp": "2024-05-16T13:50:04.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.163300", + "Timestamp": "2024-05-16T13:50:04.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.038300", + "Timestamp": "2024-05-16T13:50:04.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.813600", + "Timestamp": "2024-05-16T13:50:02.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.517200", - "Timestamp": "2019-10-16T01:56:11.000Z" + "InstanceType": "m2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.622800", + "Timestamp": "2024-05-16T13:50:02.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "g3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.487200", - "Timestamp": "2019-10-16T01:56:11.000Z" + "InstanceType": "m2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.592800", + "Timestamp": "2024-05-16T13:50:02.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.387200", - "Timestamp": "2019-10-16T01:56:11.000Z" + "InstanceType": "m2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.492800", + "Timestamp": "2024-05-16T13:50:02.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.445500", - "Timestamp": "2019-10-16T01:56:03.000Z" + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.025400", + "Timestamp": "2024-05-16T13:50:02.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.415500", - "Timestamp": "2019-10-16T01:56:03.000Z" + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.020400", + "Timestamp": "2024-05-16T13:50:02.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.315500", - "Timestamp": "2019-10-16T01:56:03.000Z" + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.895400", + "Timestamp": "2024-05-16T13:50:02.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.601300", - "Timestamp": "2019-10-16T01:55:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.373500", + "Timestamp": "2024-05-16T13:50:02.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.571300", - "Timestamp": "2019-10-16T01:55:57.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.114200", + "Timestamp": "2024-05-16T13:50:02.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.471300", - "Timestamp": "2019-10-16T01:55:57.000Z" + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.360100", + "Timestamp": "2024-05-16T13:50:02.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.093900", - "Timestamp": "2019-10-16T01:55:53.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.663600", + "Timestamp": "2024-05-16T13:50:01.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.133900", - "Timestamp": "2019-10-16T01:55:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.138400", + "Timestamp": "2024-05-16T13:50:01.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.033900", - "Timestamp": "2019-10-16T01:55:53.000Z" + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.432100", + "Timestamp": "2024-05-16T13:50:00.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.472400", - "Timestamp": "2019-10-16T01:55:52.000Z" + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.388500", + "Timestamp": "2024-05-16T13:50:00.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.442400", - "Timestamp": "2019-10-16T01:55:52.000Z" + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.383500", + "Timestamp": "2024-05-16T13:50:00.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.342400", - "Timestamp": "2019-10-16T01:55:52.000Z" + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.258500", + "Timestamp": "2024-05-16T13:50:00.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.489100", - "Timestamp": "2019-10-16T01:55:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.484300", + "Timestamp": "2024-05-16T13:50:00.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.459100", - "Timestamp": "2019-10-16T01:55:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.479300", + "Timestamp": "2024-05-16T13:50:00.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.359100", - "Timestamp": "2019-10-16T01:55:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.354300", + "Timestamp": "2024-05-16T13:50:00.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.550700", - "Timestamp": "2019-10-16T01:48:05.000Z" + "SpotPrice": "6.439300", + "Timestamp": "2024-05-16T13:49:59.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.291700", - "Timestamp": "2019-10-16T01:48:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.199200", + "Timestamp": "2024-05-16T13:49:58.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.261700", - "Timestamp": "2019-10-16T01:48:03.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.086200", + "Timestamp": "2024-05-16T13:49:58.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.291700", + "Timestamp": "2024-05-16T13:49:58.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.161700", - "Timestamp": "2019-10-16T01:48:03.000Z" + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.074900", + "Timestamp": "2024-05-16T13:49:58.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.181100", - "Timestamp": "2019-10-16T01:47:53.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.008100", + "Timestamp": "2024-05-16T13:49:57.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.151100", - "Timestamp": "2019-10-16T01:47:53.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.617200", + "Timestamp": "2024-05-16T13:49:57.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.051100", - "Timestamp": "2019-10-16T01:47:53.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.003100", + "Timestamp": "2024-05-16T13:49:57.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.536800", - "Timestamp": "2019-10-16T01:47:53.000Z" + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.612200", + "Timestamp": "2024-05-16T13:49:57.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.506800", - "Timestamp": "2019-10-16T01:47:53.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.878100", + "Timestamp": "2024-05-16T13:49:57.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.406800", - "Timestamp": "2019-10-16T01:47:53.000Z" + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.487200", + "Timestamp": "2024-05-16T13:49:57.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.286200", - "Timestamp": "2019-10-16T01:47:49.000Z" + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.268300", + "Timestamp": "2024-05-16T13:49:57.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.256200", - "Timestamp": "2019-10-16T01:47:49.000Z" + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.263300", + "Timestamp": "2024-05-16T13:49:57.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.156200", - "Timestamp": "2019-10-16T01:47:49.000Z" + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.138300", + "Timestamp": "2024-05-16T13:49:57.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.146900", - "Timestamp": "2019-10-16T01:47:38.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.177300", + "Timestamp": "2024-05-16T13:49:57.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.186900", - "Timestamp": "2019-10-16T01:47:38.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173600", + "Timestamp": "2024-05-16T13:49:57.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.086900", - "Timestamp": "2019-10-16T01:47:38.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.117300", + "Timestamp": "2024-05-16T13:49:57.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.148800", - "Timestamp": "2019-10-16T01:47:30.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.583500", + "Timestamp": "2024-05-16T13:49:56.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.188800", - "Timestamp": "2019-10-16T01:47:30.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.158600", + "Timestamp": "2024-05-16T13:49:56.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.088800", - "Timestamp": "2019-10-16T01:47:30.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.307500", - "Timestamp": "2019-10-16T01:47:28.000Z" + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.102300", + "Timestamp": "2024-05-16T13:49:56.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "h1.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.277500", - "Timestamp": "2019-10-16T01:47:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.065100", + "Timestamp": "2024-05-16T13:49:55.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.177500", - "Timestamp": "2019-10-16T01:47:28.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.714900", + "Timestamp": "2024-05-16T13:49:55.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.853900", - "Timestamp": "2019-10-16T01:47:26.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.460000", + "Timestamp": "2024-05-16T13:49:54.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.823900", - "Timestamp": "2019-10-16T01:47:26.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.060700", + "Timestamp": "2024-05-16T13:49:53.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.723900", - "Timestamp": "2019-10-16T01:47:26.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.704400", + "Timestamp": "2024-05-16T13:49:53.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.811000", - "Timestamp": "2019-10-16T01:47:23.000Z" + "InstanceType": "m7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.699400", + "Timestamp": "2024-05-16T13:49:53.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.781000", - "Timestamp": "2019-10-16T01:47:23.000Z" + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.574400", + "Timestamp": "2024-05-16T13:49:53.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.681000", - "Timestamp": "2019-10-16T01:47:23.000Z" + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.131800", + "Timestamp": "2024-05-16T13:49:53.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.186600", - "Timestamp": "2019-10-16T01:47:21.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128800", + "Timestamp": "2024-05-16T13:49:53.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.226600", - "Timestamp": "2019-10-16T01:47:21.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.533600", + "Timestamp": "2024-05-16T13:49:51.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.126600", - "Timestamp": "2019-10-16T01:47:21.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.528600", + "Timestamp": "2024-05-16T13:49:51.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.small", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.403600", + "Timestamp": "2024-05-16T13:49:51.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067500", - "Timestamp": "2019-10-16T01:47:20.000Z" + "SpotPrice": "5.889800", + "Timestamp": "2024-05-16T13:49:51.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.small", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.037500", - "Timestamp": "2019-10-16T01:47:20.000Z" + "SpotPrice": "5.884800", + "Timestamp": "2024-05-16T13:49:51.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.small", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007500", - "Timestamp": "2019-10-16T01:47:20.000Z" + "SpotPrice": "5.759800", + "Timestamp": "2024-05-16T13:49:51.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.079400", - "Timestamp": "2019-10-16T01:47:19.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.302900", + "Timestamp": "2024-05-16T13:49:49.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.xlarge", + "InstanceType": "a1.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.315900", - "Timestamp": "2019-10-16T01:46:26.000Z" + "SpotPrice": "0.329700", + "Timestamp": "2024-05-16T13:49:49.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.315900", - "Timestamp": "2019-10-16T01:46:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "a1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324700", + "Timestamp": "2024-05-16T13:49:49.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.315900", - "Timestamp": "2019-10-16T01:46:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199700", + "Timestamp": "2024-05-16T13:49:49.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.315900", - "Timestamp": "2019-10-16T01:46:26.000Z" + "SpotPrice": "0.079000", + "Timestamp": "2024-05-16T13:49:48.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.355900", - "Timestamp": "2019-10-16T01:46:26.000Z" + "SpotPrice": "0.050000", + "Timestamp": "2024-05-16T13:49:48.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.355900", - "Timestamp": "2019-10-16T01:46:26.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019000", + "Timestamp": "2024-05-16T13:49:48.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.355900", - "Timestamp": "2019-10-16T01:46:26.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125500", + "Timestamp": "2024-05-16T13:49:48.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.355900", - "Timestamp": "2019-10-16T01:46:26.000Z" + "SpotPrice": "0.121800", + "Timestamp": "2024-05-16T13:49:48.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.255900", - "Timestamp": "2019-10-16T01:46:26.000Z" + "SpotPrice": "0.065500", + "Timestamp": "2024-05-16T13:49:48.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.255900", - "Timestamp": "2019-10-16T01:46:26.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.375800", + "Timestamp": "2024-05-16T13:49:47.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.255900", - "Timestamp": "2019-10-16T01:46:26.000Z" + "InstanceType": "f1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.409000", + "Timestamp": "2024-05-16T13:49:47.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.255900", - "Timestamp": "2019-10-16T01:46:26.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "f1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.379000", + "Timestamp": "2024-05-16T13:49:47.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.375900", - "Timestamp": "2019-10-16T01:45:46.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.279000", + "Timestamp": "2024-05-16T13:49:47.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.375900", - "Timestamp": "2019-10-16T01:45:46.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.480200", + "Timestamp": "2024-05-16T13:49:47.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.375900", - "Timestamp": "2019-10-16T01:45:46.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.449100", + "Timestamp": "2024-05-16T13:49:47.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.375900", - "Timestamp": "2019-10-16T01:45:46.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.475200", + "Timestamp": "2024-05-16T13:49:47.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.375900", - "Timestamp": "2019-10-16T01:45:46.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.444100", + "Timestamp": "2024-05-16T13:49:47.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.375900", - "Timestamp": "2019-10-16T01:43:45.000Z" + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.350200", + "Timestamp": "2024-05-16T13:49:47.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.375900", - "Timestamp": "2019-10-16T01:43:45.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.319100", + "Timestamp": "2024-05-16T13:49:47.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.375900", - "Timestamp": "2019-10-16T01:43:45.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.604400", + "Timestamp": "2024-05-16T13:49:46.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.375900", - "Timestamp": "2019-10-16T01:43:45.000Z" + "InstanceType": "m5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123700", + "Timestamp": "2024-05-16T13:49:46.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.375900", - "Timestamp": "2019-10-16T01:43:45.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119700", + "Timestamp": "2024-05-16T13:49:46.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.315900", - "Timestamp": "2019-10-16T01:43:43.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063700", + "Timestamp": "2024-05-16T13:49:46.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.315900", - "Timestamp": "2019-10-16T01:43:43.000Z" + "InstanceType": "c1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.126500", + "Timestamp": "2024-05-16T13:49:46.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.315900", - "Timestamp": "2019-10-16T01:43:43.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.299600", + "Timestamp": "2024-05-16T13:49:46.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.315900", - "Timestamp": "2019-10-16T01:43:43.000Z" + "InstanceType": "r6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.327100", + "Timestamp": "2024-05-16T13:49:46.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.355900", - "Timestamp": "2019-10-16T01:43:43.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.355900", - "Timestamp": "2019-10-16T01:43:43.000Z" + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.779700", + "Timestamp": "2024-05-16T13:49:45.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.355900", - "Timestamp": "2019-10-16T01:43:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.952300", + "Timestamp": "2024-05-16T13:49:45.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.355900", - "Timestamp": "2019-10-16T01:43:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.041500", + "Timestamp": "2024-05-16T13:49:45.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.255900", - "Timestamp": "2019-10-16T01:43:43.000Z" + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.542100", + "Timestamp": "2024-05-16T13:49:45.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.255900", - "Timestamp": "2019-10-16T01:43:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.512100", + "Timestamp": "2024-05-16T13:49:45.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.255900", - "Timestamp": "2019-10-16T01:43:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.412100", + "Timestamp": "2024-05-16T13:49:45.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.255900", - "Timestamp": "2019-10-16T01:43:43.000Z" + "InstanceType": "x2iedn.metal", + "ProductDescription": "Windows", + "SpotPrice": "16.076900", + "Timestamp": "2024-05-16T13:49:44.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.840000", - "Timestamp": "2019-10-16T01:40:27.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.319500", + "Timestamp": "2024-05-16T13:49:44.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.810000", - "Timestamp": "2019-10-16T01:40:27.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.314500", + "Timestamp": "2024-05-16T13:49:44.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.710000", - "Timestamp": "2019-10-16T01:40:27.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.189500", + "Timestamp": "2024-05-16T13:49:44.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.097300", - "Timestamp": "2019-10-16T01:40:00.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.030500", + "Timestamp": "2024-05-16T13:49:44.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.137300", - "Timestamp": "2019-10-16T01:40:00.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.025500", + "Timestamp": "2024-05-16T13:49:44.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.037300", - "Timestamp": "2019-10-16T01:40:00.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.900500", + "Timestamp": "2024-05-16T13:49:44.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094000", - "Timestamp": "2019-10-16T01:39:52.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.339300", + "Timestamp": "2024-05-16T13:49:43.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134000", - "Timestamp": "2019-10-16T01:39:52.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.334300", + "Timestamp": "2024-05-16T13:49:43.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034000", - "Timestamp": "2019-10-16T01:39:52.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.209300", + "Timestamp": "2024-05-16T13:49:43.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5ad.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.173500", - "Timestamp": "2019-10-16T01:39:38.000Z" + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.596400", + "Timestamp": "2024-05-16T13:49:43.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5ad.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.213500", - "Timestamp": "2019-10-16T01:39:38.000Z" + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.591400", + "Timestamp": "2024-05-16T13:49:43.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5ad.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.113500", - "Timestamp": "2019-10-16T01:39:38.000Z" + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.466400", + "Timestamp": "2024-05-16T13:49:43.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.396600", - "Timestamp": "2019-10-16T01:39:35.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.581000", + "Timestamp": "2024-05-16T13:49:42.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.576000", + "Timestamp": "2024-05-16T13:49:42.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.451000", + "Timestamp": "2024-05-16T13:49:42.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.075500", + "Timestamp": "2024-05-16T13:49:42.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.366600", - "Timestamp": "2019-10-16T01:39:35.000Z" + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.415200", + "Timestamp": "2024-05-16T13:49:41.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.266600", - "Timestamp": "2019-10-16T01:39:35.000Z" + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.165400", + "Timestamp": "2024-05-16T13:49:41.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.372200", - "Timestamp": "2019-10-16T01:39:29.000Z" + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.160400", + "Timestamp": "2024-05-16T13:49:41.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.342200", - "Timestamp": "2019-10-16T01:39:29.000Z" + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.035400", + "Timestamp": "2024-05-16T13:49:41.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.242200", - "Timestamp": "2019-10-16T01:39:29.000Z" + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.626000", + "Timestamp": "2024-05-16T13:49:41.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.985000", - "Timestamp": "2019-10-16T01:39:20.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.621000", + "Timestamp": "2024-05-16T13:49:41.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.955000", - "Timestamp": "2019-10-16T01:39:20.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.496000", + "Timestamp": "2024-05-16T13:49:41.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.855000", - "Timestamp": "2019-10-16T01:39:20.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.808100", + "Timestamp": "2024-05-16T13:49:41.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.148100", - "Timestamp": "2019-10-16T01:39:18.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.778100", + "Timestamp": "2024-05-16T13:49:41.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.188100", - "Timestamp": "2019-10-16T01:39:18.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.678100", + "Timestamp": "2024-05-16T13:49:41.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.088100", - "Timestamp": "2019-10-16T01:39:18.000Z" + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.885000", + "Timestamp": "2024-05-16T13:49:40.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.360400", - "Timestamp": "2019-10-16T01:39:16.000Z" + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.880000", + "Timestamp": "2024-05-16T13:49:40.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.400400", - "Timestamp": "2019-10-16T01:39:16.000Z" + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.755000", + "Timestamp": "2024-05-16T13:49:40.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.300400", - "Timestamp": "2019-10-16T01:39:16.000Z" + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Windows", + "SpotPrice": "9.447300", + "Timestamp": "2024-05-16T13:49:40.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.196100", - "Timestamp": "2019-10-16T01:39:14.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.080200", + "Timestamp": "2024-05-16T13:49:40.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.097600", - "Timestamp": "2019-10-16T01:39:12.000Z" + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.069900", + "Timestamp": "2024-05-16T13:49:40.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.137600", - "Timestamp": "2019-10-16T01:39:12.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.776700", + "Timestamp": "2024-05-16T13:49:40.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.037600", - "Timestamp": "2019-10-16T01:39:12.000Z" + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.941300", + "Timestamp": "2024-05-16T13:49:40.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.309300", - "Timestamp": "2019-10-16T01:39:11.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.041700", + "Timestamp": "2024-05-16T13:49:40.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.279300", - "Timestamp": "2019-10-16T01:39:11.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.281200", + "Timestamp": "2024-05-16T13:49:40.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.179300", - "Timestamp": "2019-10-16T01:39:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.426100", + "Timestamp": "2024-05-16T13:49:40.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.245700", - "Timestamp": "2019-10-16T01:38:22.000Z" + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.355800", + "Timestamp": "2024-05-16T13:49:39.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.245700", - "Timestamp": "2019-10-16T01:38:22.000Z" + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.320200", + "Timestamp": "2024-05-16T13:49:39.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.245700", - "Timestamp": "2019-10-16T01:38:22.000Z" - }, - { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.245700", - "Timestamp": "2019-10-16T01:38:22.000Z" + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.045000", + "Timestamp": "2024-05-16T13:49:39.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.245700", - "Timestamp": "2019-10-16T01:38:22.000Z" + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.641500", + "Timestamp": "2024-05-16T13:49:39.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.245700", - "Timestamp": "2019-10-16T01:38:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.636500", + "Timestamp": "2024-05-16T13:49:39.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.849800", - "Timestamp": "2019-10-16T01:31:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.511500", + "Timestamp": "2024-05-16T13:49:39.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.819800", - "Timestamp": "2019-10-16T01:31:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.566800", + "Timestamp": "2024-05-16T13:49:39.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.719800", - "Timestamp": "2019-10-16T01:31:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.344400", + "Timestamp": "2024-05-16T13:49:39.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.266000", - "Timestamp": "2019-10-16T01:31:19.000Z" + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.649400", + "Timestamp": "2024-05-16T13:49:39.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.236000", - "Timestamp": "2019-10-16T01:31:19.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.619200", + "Timestamp": "2024-05-16T13:49:39.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.136000", - "Timestamp": "2019-10-16T01:31:19.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.154600", + "Timestamp": "2024-05-16T13:49:38.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.062200", - "Timestamp": "2019-10-16T01:31:17.000Z" + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.166800", + "Timestamp": "2024-05-16T13:49:38.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.032200", - "Timestamp": "2019-10-16T01:31:17.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170000", + "Timestamp": "2024-05-16T13:49:38.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.932200", - "Timestamp": "2019-10-16T01:31:17.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.210000", + "Timestamp": "2024-05-16T13:49:38.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.219900", - "Timestamp": "2019-10-16T01:31:03.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T13:49:38.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c1.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.189900", - "Timestamp": "2019-10-16T01:31:03.000Z" + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.732900", + "Timestamp": "2024-05-16T13:49:37.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c1.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.089900", - "Timestamp": "2019-10-16T01:31:03.000Z" + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.727900", + "Timestamp": "2024-05-16T13:49:37.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5ad.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.128000", - "Timestamp": "2019-10-16T01:31:00.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.602900", + "Timestamp": "2024-05-16T13:49:37.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5ad.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.168000", - "Timestamp": "2019-10-16T01:31:00.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.887500", + "Timestamp": "2024-05-16T13:49:36.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5ad.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.068000", - "Timestamp": "2019-10-16T01:31:00.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.882500", + "Timestamp": "2024-05-16T13:49:36.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.785500", - "Timestamp": "2019-10-16T01:30:58.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.757500", + "Timestamp": "2024-05-16T13:49:36.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.755500", - "Timestamp": "2019-10-16T01:30:58.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.900400", + "Timestamp": "2024-05-16T13:49:36.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.655500", - "Timestamp": "2019-10-16T01:30:58.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.895400", + "Timestamp": "2024-05-16T13:49:36.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.126100", - "Timestamp": "2019-10-16T01:30:48.000Z" + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.770400", + "Timestamp": "2024-05-16T13:49:36.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.166100", - "Timestamp": "2019-10-16T01:30:48.000Z" + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.577100", + "Timestamp": "2024-05-16T13:49:36.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.066100", - "Timestamp": "2019-10-16T01:30:48.000Z" + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.316900", + "Timestamp": "2024-05-16T13:49:36.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.856000", - "Timestamp": "2019-10-16T01:23:13.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.586500", + "Timestamp": "2024-05-16T13:49:35.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.826000", - "Timestamp": "2019-10-16T01:23:13.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.581500", + "Timestamp": "2024-05-16T13:49:35.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.726000", - "Timestamp": "2019-10-16T01:23:13.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.456500", + "Timestamp": "2024-05-16T13:49:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095600", - "Timestamp": "2019-10-16T01:23:01.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.260000", + "Timestamp": "2024-05-16T13:49:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-16T01:23:01.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.255000", + "Timestamp": "2024-05-16T13:49:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035600", - "Timestamp": "2019-10-16T01:23:01.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.130000", + "Timestamp": "2024-05-16T13:49:35.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.120400", - "Timestamp": "2019-10-16T01:23:00.000Z" + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.961300", + "Timestamp": "2024-05-16T13:49:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.160400", - "Timestamp": "2019-10-16T01:23:00.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.525400", + "Timestamp": "2024-05-16T13:49:34.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.060400", - "Timestamp": "2019-10-16T01:23:00.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.520400", + "Timestamp": "2024-05-16T13:49:34.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.841300", - "Timestamp": "2019-10-16T01:22:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.395400", + "Timestamp": "2024-05-16T13:49:34.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "p2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.811300", - "Timestamp": "2019-10-16T01:22:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.089500", + "Timestamp": "2024-05-16T13:49:34.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.711300", - "Timestamp": "2019-10-16T01:22:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.983100", + "Timestamp": "2024-05-16T13:49:34.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.366500", - "Timestamp": "2019-10-16T01:22:46.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.531900", + "Timestamp": "2024-05-16T13:49:34.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.336500", - "Timestamp": "2019-10-16T01:22:46.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.526900", + "Timestamp": "2024-05-16T13:49:34.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.236500", - "Timestamp": "2019-10-16T01:22:46.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.401900", + "Timestamp": "2024-05-16T13:49:34.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m1.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127300", - "Timestamp": "2019-10-16T01:22:43.000Z" + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.440300", + "Timestamp": "2024-05-16T13:49:34.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.125500", - "Timestamp": "2019-10-16T01:22:40.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.098900", + "Timestamp": "2024-05-16T13:49:33.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.165500", - "Timestamp": "2019-10-16T01:22:40.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.689900", + "Timestamp": "2024-05-16T13:49:33.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.065500", - "Timestamp": "2019-10-16T01:22:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.323700", + "Timestamp": "2024-05-16T13:49:33.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.660600", - "Timestamp": "2019-10-16T01:22:32.000Z" + "InstanceType": "r7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.684900", + "Timestamp": "2024-05-16T13:49:33.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r4.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.630600", - "Timestamp": "2019-10-16T01:22:32.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.318700", + "Timestamp": "2024-05-16T13:49:33.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.530600", - "Timestamp": "2019-10-16T01:22:32.000Z" - }, - { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.074700", - "Timestamp": "2019-10-16T01:22:19.000Z" + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.559900", + "Timestamp": "2024-05-16T13:49:33.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-16T01:15:00.000Z" + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.193700", + "Timestamp": "2024-05-16T13:49:33.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.732700", - "Timestamp": "2019-10-16T01:14:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.424400", + "Timestamp": "2024-05-16T13:49:32.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.301400", - "Timestamp": "2019-10-16T01:14:51.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.278700", + "Timestamp": "2024-05-16T13:49:32.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.271400", - "Timestamp": "2019-10-16T01:14:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.809800", + "Timestamp": "2024-05-16T13:49:32.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.171400", - "Timestamp": "2019-10-16T01:14:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.804800", + "Timestamp": "2024-05-16T13:49:32.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.777800", - "Timestamp": "2019-10-16T01:14:38.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.679800", + "Timestamp": "2024-05-16T13:49:32.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.747800", - "Timestamp": "2019-10-16T01:14:38.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.496800", + "Timestamp": "2024-05-16T13:49:32.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.647800", - "Timestamp": "2019-10-16T01:14:38.000Z" + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.209000", + "Timestamp": "2024-05-16T13:49:31.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.097300", - "Timestamp": "2019-10-16T01:14:37.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.038100", + "Timestamp": "2024-05-16T13:49:30.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.137300", - "Timestamp": "2019-10-16T01:14:37.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.575500", + "Timestamp": "2024-05-16T13:49:30.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.037300", - "Timestamp": "2019-10-16T01:14:37.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.545500", + "Timestamp": "2024-05-16T13:49:30.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.141200", - "Timestamp": "2019-10-16T01:13:58.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.445500", + "Timestamp": "2024-05-16T13:49:30.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.181200", - "Timestamp": "2019-10-16T01:13:58.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.206000", + "Timestamp": "2024-05-16T13:49:30.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.081200", - "Timestamp": "2019-10-16T01:13:58.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.202300", + "Timestamp": "2024-05-16T13:49:30.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.374000", - "Timestamp": "2019-10-16T01:13:58.000Z" + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146000", + "Timestamp": "2024-05-16T13:49:30.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.344000", - "Timestamp": "2019-10-16T01:13:58.000Z" + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.711700", + "Timestamp": "2024-05-16T13:49:29.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.244000", - "Timestamp": "2019-10-16T01:13:58.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.012300", + "Timestamp": "2024-05-16T13:49:29.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.421100", - "Timestamp": "2019-10-16T01:13:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.084900", + "Timestamp": "2024-05-16T13:49:29.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.424100", - "Timestamp": "2019-10-16T01:13:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "p2.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.982300", + "Timestamp": "2024-05-16T13:49:29.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.391100", - "Timestamp": "2019-10-16T01:13:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "p2.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.054900", + "Timestamp": "2024-05-16T13:49:29.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.394100", - "Timestamp": "2019-10-16T01:13:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.882300", + "Timestamp": "2024-05-16T13:49:29.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.291100", - "Timestamp": "2019-10-16T01:13:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.954900", + "Timestamp": "2024-05-16T13:49:29.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.294100", - "Timestamp": "2019-10-16T01:13:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.927700", + "Timestamp": "2024-05-16T13:49:29.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.452500", - "Timestamp": "2019-10-16T01:13:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.922700", + "Timestamp": "2024-05-16T13:49:29.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.422500", - "Timestamp": "2019-10-16T01:13:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.797700", + "Timestamp": "2024-05-16T13:49:29.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.322500", - "Timestamp": "2019-10-16T01:13:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.277500", + "Timestamp": "2024-05-16T13:49:29.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.286000", - "Timestamp": "2019-10-16T01:13:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.272500", + "Timestamp": "2024-05-16T13:49:29.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.286000", - "Timestamp": "2019-10-16T01:13:54.000Z" + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.147500", + "Timestamp": "2024-05-16T13:49:29.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.286000", - "Timestamp": "2019-10-16T01:13:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119900", + "Timestamp": "2024-05-16T13:49:29.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.286000", - "Timestamp": "2019-10-16T01:13:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159900", + "Timestamp": "2024-05-16T13:49:29.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.727400", - "Timestamp": "2019-10-16T01:13:53.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059900", + "Timestamp": "2024-05-16T13:49:29.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.697400", - "Timestamp": "2019-10-16T01:13:53.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.254400", + "Timestamp": "2024-05-16T13:49:29.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.597400", - "Timestamp": "2019-10-16T01:13:53.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.513200", + "Timestamp": "2024-05-16T13:49:28.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-16T01:13:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.483200", + "Timestamp": "2024-05-16T13:49:28.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-16T01:13:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.383200", + "Timestamp": "2024-05-16T13:49:28.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-16T01:13:29.000Z" + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.932800", + "Timestamp": "2024-05-16T13:49:28.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-16T01:13:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.927800", + "Timestamp": "2024-05-16T13:49:28.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-16T01:13:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.802800", + "Timestamp": "2024-05-16T13:49:28.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-16T01:13:29.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.648500", + "Timestamp": "2024-05-16T13:49:28.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-16T01:13:29.000Z" + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.019100", + "Timestamp": "2024-05-16T13:49:28.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-16T01:13:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.880500", + "Timestamp": "2024-05-16T13:49:28.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-16T01:13:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.875500", + "Timestamp": "2024-05-16T13:49:28.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-16T01:13:29.000Z" + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.750500", + "Timestamp": "2024-05-16T13:49:28.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-16T01:13:29.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.507800", + "Timestamp": "2024-05-16T13:49:28.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-16T01:13:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.336700", + "Timestamp": "2024-05-16T13:49:28.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-16T01:13:29.000Z" + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.292200", + "Timestamp": "2024-05-16T13:49:28.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-16T01:13:29.000Z" + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.192900", + "Timestamp": "2024-05-16T13:49:27.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-16T01:13:29.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.187900", + "Timestamp": "2024-05-16T13:49:27.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.062900", + "Timestamp": "2024-05-16T13:49:27.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.556000", - "Timestamp": "2019-10-16T01:13:27.000Z" + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.054700", + "Timestamp": "2024-05-16T13:49:27.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.556000", - "Timestamp": "2019-10-16T01:13:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.676400", + "Timestamp": "2024-05-16T13:49:27.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.671400", + "Timestamp": "2024-05-16T13:49:27.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.546400", + "Timestamp": "2024-05-16T13:49:27.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.556000", - "Timestamp": "2019-10-16T01:13:27.000Z" + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.155200", + "Timestamp": "2024-05-16T13:49:26.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.556000", - "Timestamp": "2019-10-16T01:13:27.000Z" + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.799400", + "Timestamp": "2024-05-16T13:49:26.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.556000", - "Timestamp": "2019-10-16T01:13:27.000Z" + "InstanceType": "p2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.997800", + "Timestamp": "2024-05-16T13:49:26.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.029700", - "Timestamp": "2019-10-16T01:13:21.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "p2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.543000", + "Timestamp": "2024-05-16T13:49:26.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.029700", - "Timestamp": "2019-10-16T01:13:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.592200", + "Timestamp": "2024-05-16T13:49:26.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.029700", - "Timestamp": "2019-10-16T01:13:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.587200", + "Timestamp": "2024-05-16T13:49:26.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.029700", - "Timestamp": "2019-10-16T01:13:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.462200", + "Timestamp": "2024-05-16T13:49:26.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.029700", - "Timestamp": "2019-10-16T01:13:21.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.096400", + "Timestamp": "2024-05-16T13:49:26.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-16T01:13:12.000Z" + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.863800", + "Timestamp": "2024-05-16T13:49:25.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-16T01:13:12.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.557700", + "Timestamp": "2024-05-16T13:49:25.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-16T01:13:12.000Z" + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.552700", + "Timestamp": "2024-05-16T13:49:25.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-16T01:13:12.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.427700", + "Timestamp": "2024-05-16T13:49:25.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-16T01:13:12.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.641300", + "Timestamp": "2024-05-16T13:49:25.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-16T01:12:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.636300", + "Timestamp": "2024-05-16T13:49:25.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-16T01:12:40.000Z" + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.511300", + "Timestamp": "2024-05-16T13:49:25.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-16T01:12:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.650000", + "Timestamp": "2024-05-16T13:49:24.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-16T01:12:40.000Z" + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.620000", + "Timestamp": "2024-05-16T13:49:24.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.111300", - "Timestamp": "2019-10-16T01:12:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.520000", + "Timestamp": "2024-05-16T13:49:24.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.111300", - "Timestamp": "2019-10-16T01:12:40.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.111300", - "Timestamp": "2019-10-16T01:12:40.000Z" + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.031900", + "Timestamp": "2024-05-16T13:49:24.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.111300", - "Timestamp": "2019-10-16T01:12:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.909500", + "Timestamp": "2024-05-16T13:49:23.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.011300", - "Timestamp": "2019-10-16T01:12:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.904500", + "Timestamp": "2024-05-16T13:49:23.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.011300", - "Timestamp": "2019-10-16T01:12:40.000Z" + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.779500", + "Timestamp": "2024-05-16T13:49:23.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.011300", - "Timestamp": "2019-10-16T01:12:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.373400", + "Timestamp": "2024-05-16T13:49:23.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.011300", - "Timestamp": "2019-10-16T01:12:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.035400", + "Timestamp": "2024-05-16T13:49:23.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.409000", - "Timestamp": "2019-10-16T01:12:14.000Z" + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.488900", + "Timestamp": "2024-05-16T13:49:22.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.409000", - "Timestamp": "2019-10-16T01:12:14.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.483900", + "Timestamp": "2024-05-16T13:49:22.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.409000", - "Timestamp": "2019-10-16T01:12:14.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.358900", + "Timestamp": "2024-05-16T13:49:22.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.409000", - "Timestamp": "2019-10-16T01:12:14.000Z" + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.120100", + "Timestamp": "2024-05-16T13:49:22.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.510500", - "Timestamp": "2019-10-16T01:12:12.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.889300", + "Timestamp": "2024-05-16T13:49:21.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.510500", - "Timestamp": "2019-10-16T01:12:12.000Z" + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.884300", + "Timestamp": "2024-05-16T13:49:21.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.510500", - "Timestamp": "2019-10-16T01:12:12.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.759300", + "Timestamp": "2024-05-16T13:49:21.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.510500", - "Timestamp": "2019-10-16T01:12:12.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "8.072700", + "Timestamp": "2024-05-16T13:49:21.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.510500", - "Timestamp": "2019-10-16T01:12:12.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "8.067700", + "Timestamp": "2024-05-16T13:49:21.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095600", - "Timestamp": "2019-10-16T01:11:58.000Z" + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.942700", + "Timestamp": "2024-05-16T13:49:21.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095600", - "Timestamp": "2019-10-16T01:11:58.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.004300", + "Timestamp": "2024-05-16T13:49:21.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095600", - "Timestamp": "2019-10-16T01:11:58.000Z" - }, - { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-16T01:11:58.000Z" + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.952600", + "Timestamp": "2024-05-16T13:49:21.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-16T01:11:58.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.281200", + "Timestamp": "2024-05-16T13:49:20.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-16T01:11:58.000Z" + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.351000", + "Timestamp": "2024-05-16T13:49:20.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035600", - "Timestamp": "2019-10-16T01:11:58.000Z" + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.320500", + "Timestamp": "2024-05-16T13:49:20.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035600", - "Timestamp": "2019-10-16T01:11:58.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.315500", + "Timestamp": "2024-05-16T13:49:20.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035600", - "Timestamp": "2019-10-16T01:11:58.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190500", + "Timestamp": "2024-05-16T13:49:20.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-16T01:11:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128000", + "Timestamp": "2024-05-16T13:49:19.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-16T01:11:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124300", + "Timestamp": "2024-05-16T13:49:19.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-16T01:11:52.000Z" + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068000", + "Timestamp": "2024-05-16T13:49:19.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-16T01:11:52.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.481900", + "Timestamp": "2024-05-16T13:49:18.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.142800", + "Timestamp": "2024-05-16T13:49:17.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-16T01:11:52.000Z" + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.303200", + "Timestamp": "2024-05-16T13:49:17.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.415000", - "Timestamp": "2019-10-16T01:11:41.000Z" + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.108700", + "Timestamp": "2024-05-16T13:49:17.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.415000", - "Timestamp": "2019-10-16T01:11:41.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.415000", - "Timestamp": "2019-10-16T01:11:41.000Z" + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.407000", + "Timestamp": "2024-05-16T13:49:17.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.415000", - "Timestamp": "2019-10-16T01:11:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-16T13:49:15.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.415000", - "Timestamp": "2019-10-16T01:11:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088900", + "Timestamp": "2024-05-16T13:49:15.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.385000", - "Timestamp": "2019-10-16T01:11:41.000Z" + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032600", + "Timestamp": "2024-05-16T13:49:15.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.385000", - "Timestamp": "2019-10-16T01:11:41.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.876800", + "Timestamp": "2024-05-16T13:49:15.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.385000", - "Timestamp": "2019-10-16T01:11:41.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.846800", + "Timestamp": "2024-05-16T13:49:15.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.385000", - "Timestamp": "2019-10-16T01:11:41.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.746800", + "Timestamp": "2024-05-16T13:49:15.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.385000", - "Timestamp": "2019-10-16T01:11:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "10.744300", + "Timestamp": "2024-05-16T13:49:15.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.285000", - "Timestamp": "2019-10-16T01:11:41.000Z" + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "10.739300", + "Timestamp": "2024-05-16T13:49:15.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.285000", - "Timestamp": "2019-10-16T01:11:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "10.614300", + "Timestamp": "2024-05-16T13:49:15.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.285000", - "Timestamp": "2019-10-16T01:11:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.267000", + "Timestamp": "2024-05-16T13:49:14.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.285000", - "Timestamp": "2019-10-16T01:11:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262000", + "Timestamp": "2024-05-16T13:49:14.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.285000", - "Timestamp": "2019-10-16T01:11:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137000", + "Timestamp": "2024-05-16T13:49:14.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.985000", - "Timestamp": "2019-10-16T01:11:32.000Z" + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T13:49:14.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.955000", - "Timestamp": "2019-10-16T01:11:32.000Z" + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146400", + "Timestamp": "2024-05-16T13:49:14.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.855000", - "Timestamp": "2019-10-16T01:11:32.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-16T01:11:24.000Z" + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046400", + "Timestamp": "2024-05-16T13:49:14.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-16T01:11:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116800", + "Timestamp": "2024-05-16T13:49:14.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.281800", - "Timestamp": "2019-10-16T01:11:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T13:49:14.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-16T01:11:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056800", + "Timestamp": "2024-05-16T13:49:14.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.283900", - "Timestamp": "2019-10-16T01:11:24.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.172900", + "Timestamp": "2024-05-16T13:49:14.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-16T01:11:24.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.167900", + "Timestamp": "2024-05-16T13:49:14.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-16T01:11:24.000Z" + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.042900", + "Timestamp": "2024-05-16T13:49:14.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.251800", - "Timestamp": "2019-10-16T01:11:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.379600", + "Timestamp": "2024-05-16T13:49:13.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-16T01:11:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.374600", + "Timestamp": "2024-05-16T13:49:13.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.253900", - "Timestamp": "2019-10-16T01:11:24.000Z" + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.249600", + "Timestamp": "2024-05-16T13:49:13.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-16T01:11:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.505000", + "Timestamp": "2024-05-16T13:49:13.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-16T01:11:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.500000", + "Timestamp": "2024-05-16T13:49:13.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.151800", - "Timestamp": "2019-10-16T01:11:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.375000", + "Timestamp": "2024-05-16T13:49:13.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-16T01:11:24.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.449100", + "Timestamp": "2024-05-16T13:49:13.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.153900", - "Timestamp": "2019-10-16T01:11:24.000Z" + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.474900", + "Timestamp": "2024-05-16T13:49:13.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.084000", - "Timestamp": "2019-10-16T01:11:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.469900", + "Timestamp": "2024-05-16T13:49:13.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.084000", - "Timestamp": "2019-10-16T01:11:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.344900", + "Timestamp": "2024-05-16T13:49:13.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.084000", - "Timestamp": "2019-10-16T01:11:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.575300", + "Timestamp": "2024-05-16T13:49:13.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.084000", - "Timestamp": "2019-10-16T01:11:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.545300", + "Timestamp": "2024-05-16T13:49:13.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.084000", - "Timestamp": "2019-10-16T01:11:24.000Z" + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.445300", + "Timestamp": "2024-05-16T13:49:13.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-16T01:11:22.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.203500", + "Timestamp": "2024-05-16T13:49:13.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-16T01:11:22.000Z" + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.391900", + "Timestamp": "2024-05-16T13:49:12.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-16T01:11:22.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.386900", + "Timestamp": "2024-05-16T13:49:12.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-16T01:11:22.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.261900", + "Timestamp": "2024-05-16T13:49:12.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-16T01:11:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.275600", + "Timestamp": "2024-05-16T13:49:12.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.063000", - "Timestamp": "2019-10-16T01:11:21.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270600", + "Timestamp": "2024-05-16T13:49:12.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.063000", - "Timestamp": "2019-10-16T01:11:21.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145600", + "Timestamp": "2024-05-16T13:49:12.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.063000", - "Timestamp": "2019-10-16T01:11:21.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.934400", + "Timestamp": "2024-05-16T13:49:12.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.063000", - "Timestamp": "2019-10-16T01:11:21.000Z" + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.929400", + "Timestamp": "2024-05-16T13:49:12.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.063000", - "Timestamp": "2019-10-16T01:11:21.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.804400", + "Timestamp": "2024-05-16T13:49:12.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t2.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.063500", - "Timestamp": "2019-10-16T01:10:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.188800", + "Timestamp": "2024-05-16T13:49:12.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "t2.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.063500", - "Timestamp": "2019-10-16T01:10:56.000Z" + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.183800", + "Timestamp": "2024-05-16T13:49:12.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t2.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.063500", - "Timestamp": "2019-10-16T01:10:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.058800", + "Timestamp": "2024-05-16T13:49:12.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "t2.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.063500", - "Timestamp": "2019-10-16T01:10:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.216700", + "Timestamp": "2024-05-16T13:49:12.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t2.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.063500", - "Timestamp": "2019-10-16T01:10:56.000Z" + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.256700", + "Timestamp": "2024-05-16T13:49:12.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t2.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.063500", - "Timestamp": "2019-10-16T01:10:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156700", + "Timestamp": "2024-05-16T13:49:12.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "t2.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.013500", - "Timestamp": "2019-10-16T01:10:56.000Z" + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.482500", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t2.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.013500", - "Timestamp": "2019-10-16T01:10:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.452500", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t2.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.013500", - "Timestamp": "2019-10-16T01:10:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.352500", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "t2.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.013500", - "Timestamp": "2019-10-16T01:10:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.310300", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t2.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.013500", - "Timestamp": "2019-10-16T01:10:56.000Z" + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.305300", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t2.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.013500", - "Timestamp": "2019-10-16T01:10:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180300", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t2.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.003500", - "Timestamp": "2019-10-16T01:10:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.280200", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "t2.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.003500", - "Timestamp": "2019-10-16T01:10:56.000Z" + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.275200", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t2.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.003500", - "Timestamp": "2019-10-16T01:10:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150200", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "t2.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.003500", - "Timestamp": "2019-10-16T01:10:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.479700", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t2.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.003500", - "Timestamp": "2019-10-16T01:10:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.474700", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t2.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.003500", - "Timestamp": "2019-10-16T01:10:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.349700", + "Timestamp": "2024-05-16T13:49:11.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.890800", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "t2.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.008100", - "Timestamp": "2019-10-16T01:10:55.000Z" + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.535800", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "t2.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.008100", - "Timestamp": "2019-10-16T01:10:55.000Z" + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121400", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t2.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.008100", - "Timestamp": "2019-10-16T01:10:55.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117700", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "t2.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.008100", - "Timestamp": "2019-10-16T01:10:55.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061400", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t2.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.008100", - "Timestamp": "2019-10-16T01:10:55.000Z" + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081700", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t2.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.008100", - "Timestamp": "2019-10-16T01:10:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121700", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.946200", - "Timestamp": "2019-10-16T01:10:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021700", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.946200", - "Timestamp": "2019-10-16T01:10:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.486000", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.001100", - "Timestamp": "2019-10-16T01:10:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.481000", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.958300", - "Timestamp": "2019-10-16T01:10:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.356000", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.946200", - "Timestamp": "2019-10-16T01:10:40.000Z" + "InstanceType": "r6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.212500", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.916200", - "Timestamp": "2019-10-16T01:10:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.208800", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.916200", - "Timestamp": "2019-10-16T01:10:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.152500", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.971100", - "Timestamp": "2019-10-16T01:10:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.974100", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.928300", - "Timestamp": "2019-10-16T01:10:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.969100", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.916200", - "Timestamp": "2019-10-16T01:10:40.000Z" + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.844100", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.816200", - "Timestamp": "2019-10-16T01:10:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.471100", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.816200", - "Timestamp": "2019-10-16T01:10:40.000Z" + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.466100", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.871100", - "Timestamp": "2019-10-16T01:10:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.341100", + "Timestamp": "2024-05-16T13:49:11.000Z" + }, + { + "AvailabilityZone": "us-east-1e", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.547200", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.828300", - "Timestamp": "2019-10-16T01:10:40.000Z" + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133400", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.816200", - "Timestamp": "2019-10-16T01:10:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129700", + "Timestamp": "2024-05-16T13:49:11.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073400", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.024200", - "Timestamp": "2019-10-16T01:10:40.000Z" + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.550600", + "Timestamp": "2024-05-16T13:49:11.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.024200", - "Timestamp": "2019-10-16T01:10:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.341200", + "Timestamp": "2024-05-16T13:49:09.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.024200", - "Timestamp": "2019-10-16T01:10:40.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.361200", + "Timestamp": "2024-05-16T13:49:08.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.024200", - "Timestamp": "2019-10-16T01:10:40.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.331200", + "Timestamp": "2024-05-16T13:49:08.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.024200", - "Timestamp": "2019-10-16T01:10:40.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.231200", + "Timestamp": "2024-05-16T13:49:08.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.402100", - "Timestamp": "2019-10-16T01:06:55.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.493300", + "Timestamp": "2024-05-16T13:49:08.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.372100", - "Timestamp": "2019-10-16T01:06:55.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.488300", + "Timestamp": "2024-05-16T13:49:08.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.272100", - "Timestamp": "2019-10-16T01:06:55.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.363300", + "Timestamp": "2024-05-16T13:49:08.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.548000", - "Timestamp": "2019-10-16T01:06:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.210000", + "Timestamp": "2024-05-16T13:49:08.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.369900", - "Timestamp": "2019-10-16T01:06:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.206000", + "Timestamp": "2024-05-16T13:49:08.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.339900", - "Timestamp": "2019-10-16T01:06:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150000", + "Timestamp": "2024-05-16T13:49:08.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.239900", - "Timestamp": "2019-10-16T01:06:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.637900", + "Timestamp": "2024-05-16T13:49:08.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.103600", - "Timestamp": "2019-10-16T01:06:23.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.632900", + "Timestamp": "2024-05-16T13:49:08.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.143600", - "Timestamp": "2019-10-16T01:06:23.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.507900", + "Timestamp": "2024-05-16T13:49:08.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.043600", - "Timestamp": "2019-10-16T01:06:23.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.583100", + "Timestamp": "2024-05-16T13:49:07.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.498500", - "Timestamp": "2019-10-16T01:06:21.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.579400", + "Timestamp": "2024-05-16T13:49:07.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.468500", - "Timestamp": "2019-10-16T01:06:21.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.523100", + "Timestamp": "2024-05-16T13:49:07.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.368500", - "Timestamp": "2019-10-16T01:06:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.602100", + "Timestamp": "2024-05-16T13:49:07.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.418600", - "Timestamp": "2019-10-16T01:06:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.572100", + "Timestamp": "2024-05-16T13:49:07.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.388600", - "Timestamp": "2019-10-16T01:06:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.472100", + "Timestamp": "2024-05-16T13:49:07.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.288600", - "Timestamp": "2019-10-16T01:06:20.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.372100", + "Timestamp": "2024-05-16T13:49:06.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.186600", - "Timestamp": "2019-10-16T01:06:14.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.342100", + "Timestamp": "2024-05-16T13:49:06.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.317600", - "Timestamp": "2019-10-16T01:06:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.242100", + "Timestamp": "2024-05-16T13:49:06.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.357600", - "Timestamp": "2019-10-16T01:06:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.453500", + "Timestamp": "2024-05-16T13:49:06.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.257600", - "Timestamp": "2019-10-16T01:06:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.423500", + "Timestamp": "2024-05-16T13:49:06.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.323500", + "Timestamp": "2024-05-16T13:49:06.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.192200", - "Timestamp": "2019-10-16T01:05:45.000Z" + "InstanceType": "g6.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.591100", + "Timestamp": "2024-05-16T13:49:05.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.162200", - "Timestamp": "2019-10-16T01:05:45.000Z" + "InstanceType": "g6.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.561100", + "Timestamp": "2024-05-16T13:49:05.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.062200", - "Timestamp": "2019-10-16T01:05:45.000Z" + "InstanceType": "g6.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.461100", + "Timestamp": "2024-05-16T13:49:05.000Z" }, { "AvailabilityZone": "us-east-1e", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.401500", - "Timestamp": "2019-10-16T01:05:34.000Z" + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.418900", + "Timestamp": "2024-05-16T13:49:05.000Z" }, { "AvailabilityZone": "us-east-1e", - "InstanceType": "g2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.371500", - "Timestamp": "2019-10-16T01:05:34.000Z" + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.388900", + "Timestamp": "2024-05-16T13:49:05.000Z" }, { "AvailabilityZone": "us-east-1e", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.271500", - "Timestamp": "2019-10-16T01:05:34.000Z" + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.288900", + "Timestamp": "2024-05-16T13:49:05.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.588200", + "Timestamp": "2024-05-16T13:49:04.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.224700", + "Timestamp": "2024-05-16T13:49:04.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.220700", + "Timestamp": "2024-05-16T13:49:04.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164700", + "Timestamp": "2024-05-16T13:49:04.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.323600", - "Timestamp": "2019-10-16T01:05:33.000Z" + "InstanceType": "f1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.922000", + "Timestamp": "2024-05-16T13:49:04.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.293600", - "Timestamp": "2019-10-16T01:05:33.000Z" + "InstanceType": "f1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.892000", + "Timestamp": "2024-05-16T13:49:04.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.193600", - "Timestamp": "2019-10-16T01:05:33.000Z" + "InstanceType": "f1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.792000", + "Timestamp": "2024-05-16T13:49:04.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.083600", + "Timestamp": "2024-05-16T13:49:03.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.078600", + "Timestamp": "2024-05-16T13:49:03.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.953600", + "Timestamp": "2024-05-16T13:49:03.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "p2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.417800", - "Timestamp": "2019-10-16T01:05:33.000Z" + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "11.085100", + "Timestamp": "2024-05-16T13:49:03.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "p2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.457800", - "Timestamp": "2019-10-16T01:05:33.000Z" + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "11.055100", + "Timestamp": "2024-05-16T13:49:03.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "p2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.357800", - "Timestamp": "2019-10-16T01:05:33.000Z" + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "10.955100", + "Timestamp": "2024-05-16T13:49:03.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.492300", - "Timestamp": "2019-10-16T01:05:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.751900", + "Timestamp": "2024-05-16T13:49:03.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.462300", - "Timestamp": "2019-10-16T01:05:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164900", + "Timestamp": "2024-05-16T13:49:02.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.362300", - "Timestamp": "2019-10-16T01:05:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160900", + "Timestamp": "2024-05-16T13:49:02.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T13:49:02.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.2xlarge", + "InstanceType": "r6in.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.253400", - "Timestamp": "2019-10-16T00:58:32.000Z" + "SpotPrice": "3.709800", + "Timestamp": "2024-05-16T13:49:02.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.2xlarge", + "InstanceType": "r6in.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.223400", - "Timestamp": "2019-10-16T00:58:32.000Z" + "SpotPrice": "3.704800", + "Timestamp": "2024-05-16T13:49:02.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.2xlarge", + "InstanceType": "r6in.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.123400", - "Timestamp": "2019-10-16T00:58:32.000Z" + "SpotPrice": "3.579800", + "Timestamp": "2024-05-16T13:49:02.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.947000", - "Timestamp": "2019-10-16T00:58:18.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.510000", + "Timestamp": "2024-05-16T13:49:01.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.917000", - "Timestamp": "2019-10-16T00:58:18.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.480000", + "Timestamp": "2024-05-16T13:49:01.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.817000", - "Timestamp": "2019-10-16T00:58:18.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.380000", + "Timestamp": "2024-05-16T13:49:01.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.366900", - "Timestamp": "2019-10-16T00:58:00.000Z" + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.562400", + "Timestamp": "2024-05-16T13:49:01.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "g3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.336900", - "Timestamp": "2019-10-16T00:58:00.000Z" + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.557400", + "Timestamp": "2024-05-16T13:49:01.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.236900", - "Timestamp": "2019-10-16T00:58:00.000Z" + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.432400", + "Timestamp": "2024-05-16T13:49:01.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.411700", - "Timestamp": "2019-10-16T00:57:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.733300", + "Timestamp": "2024-05-16T13:49:01.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.381700", - "Timestamp": "2019-10-16T00:57:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.728300", + "Timestamp": "2024-05-16T13:49:01.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.281700", - "Timestamp": "2019-10-16T00:57:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.603300", + "Timestamp": "2024-05-16T13:49:01.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.303700", - "Timestamp": "2019-10-16T00:57:45.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153900", + "Timestamp": "2024-05-16T13:49:01.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.273700", - "Timestamp": "2019-10-16T00:57:45.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150200", + "Timestamp": "2024-05-16T13:49:01.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.173700", - "Timestamp": "2019-10-16T00:57:45.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093900", + "Timestamp": "2024-05-16T13:49:01.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.087200", - "Timestamp": "2019-10-16T00:57:32.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.153600", + "Timestamp": "2024-05-16T13:49:01.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.127200", - "Timestamp": "2019-10-16T00:57:32.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.148600", + "Timestamp": "2024-05-16T13:49:01.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.027200", - "Timestamp": "2019-10-16T00:57:32.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.023600", + "Timestamp": "2024-05-16T13:49:01.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.145900", - "Timestamp": "2019-10-16T00:57:28.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.171400", + "Timestamp": "2024-05-16T13:49:00.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.185900", - "Timestamp": "2019-10-16T00:57:28.000Z" + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T13:49:00.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.085900", - "Timestamp": "2019-10-16T00:57:28.000Z" + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100500", + "Timestamp": "2024-05-16T13:49:00.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.744100", - "Timestamp": "2019-10-16T00:57:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044200", + "Timestamp": "2024-05-16T13:49:00.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.714100", - "Timestamp": "2019-10-16T00:57:25.000Z" + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.865500", + "Timestamp": "2024-05-16T13:48:59.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.614100", - "Timestamp": "2019-10-16T00:57:25.000Z" + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.860500", + "Timestamp": "2024-05-16T13:48:59.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.448000", - "Timestamp": "2019-10-16T00:57:25.000Z" + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.735500", + "Timestamp": "2024-05-16T13:48:59.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.418000", - "Timestamp": "2019-10-16T00:57:25.000Z" + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.332600", + "Timestamp": "2024-05-16T13:48:58.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.318000", - "Timestamp": "2019-10-16T00:57:25.000Z" + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.327600", + "Timestamp": "2024-05-16T13:48:58.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.095200", - "Timestamp": "2019-10-16T00:57:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.202600", + "Timestamp": "2024-05-16T13:48:58.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.065200", - "Timestamp": "2019-10-16T00:57:24.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166000", + "Timestamp": "2024-05-16T13:48:56.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.965200", - "Timestamp": "2019-10-16T00:57:24.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162300", + "Timestamp": "2024-05-16T13:48:56.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.322200", - "Timestamp": "2019-10-16T00:57:23.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106000", + "Timestamp": "2024-05-16T13:48:56.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.292200", - "Timestamp": "2019-10-16T00:57:23.000Z" + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145200", + "Timestamp": "2024-05-16T13:48:55.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.192200", - "Timestamp": "2019-10-16T00:57:23.000Z" + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141200", + "Timestamp": "2024-05-16T13:48:55.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-16T00:50:00.000Z" + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085200", + "Timestamp": "2024-05-16T13:48:55.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.491200", - "Timestamp": "2019-10-16T00:49:42.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.484400", + "Timestamp": "2024-05-16T13:48:54.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.461200", - "Timestamp": "2019-10-16T00:49:42.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119400", + "Timestamp": "2024-05-16T13:48:54.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.361200", - "Timestamp": "2019-10-16T00:49:42.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159400", + "Timestamp": "2024-05-16T13:48:54.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.431700", - "Timestamp": "2019-10-16T00:49:27.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059400", + "Timestamp": "2024-05-16T13:48:54.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.401700", - "Timestamp": "2019-10-16T00:49:27.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.694200", + "Timestamp": "2024-05-16T13:48:54.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.301700", - "Timestamp": "2019-10-16T00:49:27.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.689200", + "Timestamp": "2024-05-16T13:48:54.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.458000", - "Timestamp": "2019-10-16T00:49:22.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.564200", + "Timestamp": "2024-05-16T13:48:54.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.428000", - "Timestamp": "2019-10-16T00:49:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167600", + "Timestamp": "2024-05-16T13:48:44.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.328000", - "Timestamp": "2019-10-16T00:49:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163900", + "Timestamp": "2024-05-16T13:48:44.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.312900", - "Timestamp": "2019-10-16T00:49:12.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T13:48:44.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.282900", - "Timestamp": "2019-10-16T00:49:12.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.313000", + "Timestamp": "2024-05-16T13:48:42.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.182900", - "Timestamp": "2019-10-16T00:49:12.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.308000", + "Timestamp": "2024-05-16T13:48:42.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.305100", - "Timestamp": "2019-10-16T00:49:04.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.183000", + "Timestamp": "2024-05-16T13:48:42.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.317700", - "Timestamp": "2019-10-16T00:49:04.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.181100", + "Timestamp": "2024-05-16T13:48:41.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.275100", - "Timestamp": "2019-10-16T00:49:04.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177400", + "Timestamp": "2024-05-16T13:48:41.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.287700", - "Timestamp": "2019-10-16T00:49:04.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121100", + "Timestamp": "2024-05-16T13:48:41.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.175100", - "Timestamp": "2019-10-16T00:49:04.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.665100", + "Timestamp": "2024-05-16T13:48:41.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.187700", - "Timestamp": "2019-10-16T00:49:04.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.660100", + "Timestamp": "2024-05-16T13:48:41.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.900000", - "Timestamp": "2019-10-16T00:49:02.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.535100", + "Timestamp": "2024-05-16T13:48:41.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.870000", - "Timestamp": "2019-10-16T00:49:02.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.009500", + "Timestamp": "2024-05-16T13:47:43.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.770000", - "Timestamp": "2019-10-16T00:49:02.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.523200", + "Timestamp": "2024-05-16T13:33:30.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.000500", - "Timestamp": "2019-10-16T00:49:02.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.840600", + "Timestamp": "2024-05-16T13:33:28.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.128500", - "Timestamp": "2019-10-16T00:48:49.000Z" + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.835600", + "Timestamp": "2024-05-16T13:33:28.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.168500", - "Timestamp": "2019-10-16T00:48:49.000Z" + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.710600", + "Timestamp": "2024-05-16T13:33:28.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.068500", - "Timestamp": "2019-10-16T00:48:49.000Z" + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.703900", + "Timestamp": "2024-05-16T13:33:27.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.380800", - "Timestamp": "2019-10-16T00:48:48.000Z" + "InstanceType": "d3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.698900", + "Timestamp": "2024-05-16T13:33:27.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.350800", - "Timestamp": "2019-10-16T00:48:48.000Z" + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.573900", + "Timestamp": "2024-05-16T13:33:27.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.250800", - "Timestamp": "2019-10-16T00:48:48.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.312800", + "Timestamp": "2024-05-16T13:33:27.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.126100", - "Timestamp": "2019-10-16T00:47:50.000Z" + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.080700", + "Timestamp": "2024-05-16T13:33:27.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.166100", - "Timestamp": "2019-10-16T00:47:50.000Z" + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.075700", + "Timestamp": "2024-05-16T13:33:27.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.066100", - "Timestamp": "2019-10-16T00:47:50.000Z" + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.950700", + "Timestamp": "2024-05-16T13:33:27.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.016100", - "Timestamp": "2019-10-16T00:45:49.000Z" + "InstanceType": "p2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.346500", + "Timestamp": "2024-05-16T13:33:26.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.016100", - "Timestamp": "2019-10-16T00:45:49.000Z" + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.296700", + "Timestamp": "2024-05-16T13:33:21.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.510900", + "Timestamp": "2024-05-16T13:33:20.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.016100", - "Timestamp": "2019-10-16T00:45:49.000Z" + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.434900", + "Timestamp": "2024-05-16T13:33:20.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.404900", + "Timestamp": "2024-05-16T13:33:20.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.304900", + "Timestamp": "2024-05-16T13:33:20.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.016100", - "Timestamp": "2019-10-16T00:45:49.000Z" + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.178100", + "Timestamp": "2024-05-16T13:33:18.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.016100", - "Timestamp": "2019-10-16T00:45:49.000Z" + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.236700", + "Timestamp": "2024-05-16T13:33:18.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.042000", - "Timestamp": "2019-10-16T00:43:48.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.231700", + "Timestamp": "2024-05-16T13:33:18.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.042000", - "Timestamp": "2019-10-16T00:43:48.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.106700", + "Timestamp": "2024-05-16T13:33:18.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.042000", - "Timestamp": "2019-10-16T00:43:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143300", + "Timestamp": "2024-05-16T13:33:17.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.042000", - "Timestamp": "2019-10-16T00:43:48.000Z" + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139600", + "Timestamp": "2024-05-16T13:33:17.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.042000", - "Timestamp": "2019-10-16T00:43:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083300", + "Timestamp": "2024-05-16T13:33:17.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.700000", - "Timestamp": "2019-10-16T00:41:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.157300", + "Timestamp": "2024-05-16T13:33:17.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.700000", - "Timestamp": "2019-10-16T00:41:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.243200", + "Timestamp": "2024-05-16T13:33:16.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.700000", - "Timestamp": "2019-10-16T00:41:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.238200", + "Timestamp": "2024-05-16T13:33:16.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.670000", - "Timestamp": "2019-10-16T00:41:55.000Z" + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.113200", + "Timestamp": "2024-05-16T13:33:16.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.670000", - "Timestamp": "2019-10-16T00:41:55.000Z" + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.518000", + "Timestamp": "2024-05-16T13:33:15.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.670000", - "Timestamp": "2019-10-16T00:41:55.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.513000", + "Timestamp": "2024-05-16T13:33:15.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.570000", - "Timestamp": "2019-10-16T00:41:55.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.388000", + "Timestamp": "2024-05-16T13:33:15.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.570000", - "Timestamp": "2019-10-16T00:41:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.268100", + "Timestamp": "2024-05-16T13:33:15.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.570000", - "Timestamp": "2019-10-16T00:41:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.769800", + "Timestamp": "2024-05-16T13:33:12.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.477500", - "Timestamp": "2019-10-16T00:41:19.000Z" + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.344300", + "Timestamp": "2024-05-16T13:33:11.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.447500", - "Timestamp": "2019-10-16T00:41:19.000Z" + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.314300", + "Timestamp": "2024-05-16T13:33:11.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.347500", - "Timestamp": "2019-10-16T00:41:19.000Z" + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.214300", + "Timestamp": "2024-05-16T13:33:11.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.266000", - "Timestamp": "2019-10-16T00:41:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.322400", + "Timestamp": "2024-05-16T13:33:11.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.236000", - "Timestamp": "2019-10-16T00:41:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.317400", + "Timestamp": "2024-05-16T13:33:11.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.192400", + "Timestamp": "2024-05-16T13:33:11.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.136000", - "Timestamp": "2019-10-16T00:41:19.000Z" + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.732700", + "Timestamp": "2024-05-16T13:33:11.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.899500", - "Timestamp": "2019-10-16T00:41:12.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.538900", + "Timestamp": "2024-05-16T13:33:11.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.869500", - "Timestamp": "2019-10-16T00:41:12.000Z" + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Windows", + "SpotPrice": "5.309000", + "Timestamp": "2024-05-16T13:33:10.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.769500", - "Timestamp": "2019-10-16T00:41:12.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.679800", + "Timestamp": "2024-05-16T13:33:10.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.110300", - "Timestamp": "2019-10-16T00:41:02.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.674800", + "Timestamp": "2024-05-16T13:33:10.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.080300", - "Timestamp": "2019-10-16T00:41:02.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.549800", + "Timestamp": "2024-05-16T13:33:10.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.980300", - "Timestamp": "2019-10-16T00:41:02.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.884700", + "Timestamp": "2024-05-16T13:33:09.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.241900", - "Timestamp": "2019-10-16T00:40:53.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.879700", + "Timestamp": "2024-05-16T13:33:09.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.330900", - "Timestamp": "2019-10-16T00:40:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.754700", + "Timestamp": "2024-05-16T13:33:09.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.296400", - "Timestamp": "2019-10-16T00:40:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.340900", + "Timestamp": "2024-05-16T13:33:09.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.300900", - "Timestamp": "2019-10-16T00:40:49.000Z" + "InstanceType": "g6.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.485400", + "Timestamp": "2024-05-16T13:33:09.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.266400", - "Timestamp": "2019-10-16T00:40:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.351200", + "Timestamp": "2024-05-16T13:33:08.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.200900", - "Timestamp": "2019-10-16T00:40:49.000Z" + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.346200", + "Timestamp": "2024-05-16T13:33:08.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.166400", - "Timestamp": "2019-10-16T00:40:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.221200", + "Timestamp": "2024-05-16T13:33:08.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.265100", - "Timestamp": "2019-10-16T00:40:47.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.445400", + "Timestamp": "2024-05-16T13:33:08.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.235100", - "Timestamp": "2019-10-16T00:40:47.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.440400", + "Timestamp": "2024-05-16T13:33:08.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.135100", - "Timestamp": "2019-10-16T00:40:47.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.315400", + "Timestamp": "2024-05-16T13:33:08.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.292700", - "Timestamp": "2019-10-16T00:40:44.000Z" + "SpotPrice": "6.246200", + "Timestamp": "2024-05-16T13:33:08.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094100", - "Timestamp": "2019-10-16T00:40:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.979900", + "Timestamp": "2024-05-16T13:33:08.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134100", - "Timestamp": "2019-10-16T00:40:40.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.914800", + "Timestamp": "2024-05-16T13:33:08.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034100", - "Timestamp": "2019-10-16T00:40:40.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.909800", + "Timestamp": "2024-05-16T13:33:08.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.270100", - "Timestamp": "2019-10-16T00:40:31.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.784800", + "Timestamp": "2024-05-16T13:33:08.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.240100", - "Timestamp": "2019-10-16T00:40:31.000Z" + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.323200", + "Timestamp": "2024-05-16T13:33:08.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.140100", - "Timestamp": "2019-10-16T00:40:31.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.263700", + "Timestamp": "2024-05-16T13:33:07.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.098400", - "Timestamp": "2019-10-16T00:40:30.000Z" + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.890300", + "Timestamp": "2024-05-16T13:33:06.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.138400", - "Timestamp": "2019-10-16T00:40:30.000Z" + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.885300", + "Timestamp": "2024-05-16T13:33:06.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.038400", - "Timestamp": "2019-10-16T00:40:30.000Z" + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.760300", + "Timestamp": "2024-05-16T13:33:06.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.402900", - "Timestamp": "2019-10-16T00:40:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.431200", + "Timestamp": "2024-05-16T13:33:06.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.372900", - "Timestamp": "2019-10-16T00:40:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.321500", + "Timestamp": "2024-05-16T13:33:06.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.272900", - "Timestamp": "2019-10-16T00:40:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.494400", + "Timestamp": "2024-05-16T13:33:05.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.875300", - "Timestamp": "2019-10-16T00:32:43.000Z" + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.282600", + "Timestamp": "2024-05-16T13:33:05.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.845300", - "Timestamp": "2019-10-16T00:32:43.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.150400", + "Timestamp": "2024-05-16T13:33:05.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.745300", - "Timestamp": "2019-10-16T00:32:43.000Z" + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.277600", + "Timestamp": "2024-05-16T13:33:05.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.605000", - "Timestamp": "2019-10-16T00:32:33.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.145400", + "Timestamp": "2024-05-16T13:33:05.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.575000", - "Timestamp": "2019-10-16T00:32:33.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.152600", + "Timestamp": "2024-05-16T13:33:05.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.475000", - "Timestamp": "2019-10-16T00:32:33.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.020400", + "Timestamp": "2024-05-16T13:33:05.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.377600", - "Timestamp": "2019-10-16T00:32:31.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.159700", + "Timestamp": "2024-05-16T13:33:05.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.347600", - "Timestamp": "2019-10-16T00:32:31.000Z" + "InstanceType": "r6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.379100", + "Timestamp": "2024-05-16T13:33:04.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.247600", - "Timestamp": "2019-10-16T00:32:31.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.664800", + "Timestamp": "2024-05-16T13:33:04.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.784800", - "Timestamp": "2019-10-16T00:32:31.000Z" + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.744200", + "Timestamp": "2024-05-16T13:33:04.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.754800", - "Timestamp": "2019-10-16T00:32:31.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.659800", + "Timestamp": "2024-05-16T13:33:04.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.654800", - "Timestamp": "2019-10-16T00:32:31.000Z" + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.739200", + "Timestamp": "2024-05-16T13:33:04.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.141300", - "Timestamp": "2019-10-16T00:32:31.000Z" + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.534800", + "Timestamp": "2024-05-16T13:33:04.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.181300", - "Timestamp": "2019-10-16T00:32:31.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.614200", + "Timestamp": "2024-05-16T13:33:04.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.081300", - "Timestamp": "2019-10-16T00:32:31.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.634800", + "Timestamp": "2024-05-16T13:33:04.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.956700", - "Timestamp": "2019-10-16T00:32:30.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.512000", + "Timestamp": "2024-05-16T13:33:04.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.926700", - "Timestamp": "2019-10-16T00:32:30.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.629800", + "Timestamp": "2024-05-16T13:33:04.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.826700", - "Timestamp": "2019-10-16T00:32:30.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.507000", + "Timestamp": "2024-05-16T13:33:04.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.086900", - "Timestamp": "2019-10-16T00:32:30.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.504800", + "Timestamp": "2024-05-16T13:33:04.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.126900", - "Timestamp": "2019-10-16T00:32:30.000Z" + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.382000", + "Timestamp": "2024-05-16T13:33:04.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.026900", - "Timestamp": "2019-10-16T00:32:30.000Z" + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.635500", + "Timestamp": "2024-05-16T13:33:03.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.158300", - "Timestamp": "2019-10-16T00:32:29.000Z" + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.148300", + "Timestamp": "2024-05-16T13:33:02.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.198300", - "Timestamp": "2019-10-16T00:32:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.693600", + "Timestamp": "2024-05-16T13:33:01.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.098300", - "Timestamp": "2019-10-16T00:32:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.663600", + "Timestamp": "2024-05-16T13:33:01.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.492400", - "Timestamp": "2019-10-16T00:32:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.563600", + "Timestamp": "2024-05-16T13:33:01.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.462400", - "Timestamp": "2019-10-16T00:32:29.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.439900", + "Timestamp": "2024-05-16T13:33:01.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.362400", - "Timestamp": "2019-10-16T00:32:29.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.434900", + "Timestamp": "2024-05-16T13:33:01.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.239900", - "Timestamp": "2019-10-16T00:32:23.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.309900", + "Timestamp": "2024-05-16T13:33:01.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.078900", - "Timestamp": "2019-10-16T00:32:19.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.612500", + "Timestamp": "2024-05-16T13:33:00.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.291900", - "Timestamp": "2019-10-16T00:32:05.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.607500", + "Timestamp": "2024-05-16T13:33:00.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.482500", + "Timestamp": "2024-05-16T13:33:00.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-16T00:31:32.000Z" + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.535600", + "Timestamp": "2024-05-16T13:32:59.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-16T00:31:32.000Z" + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.530600", + "Timestamp": "2024-05-16T13:32:59.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-16T00:31:32.000Z" + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.405600", + "Timestamp": "2024-05-16T13:32:59.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.131700", - "Timestamp": "2019-10-16T00:24:44.000Z" + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.226700", + "Timestamp": "2024-05-16T13:32:59.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.171700", - "Timestamp": "2019-10-16T00:24:44.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.498600", + "Timestamp": "2024-05-16T13:32:59.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.071700", - "Timestamp": "2019-10-16T00:24:44.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.160700", + "Timestamp": "2024-05-16T13:32:59.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.273800", - "Timestamp": "2019-10-16T00:24:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.259800", + "Timestamp": "2024-05-16T13:32:59.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.243800", - "Timestamp": "2019-10-16T00:24:43.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.301800", + "Timestamp": "2024-05-16T13:32:59.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.143800", - "Timestamp": "2019-10-16T00:24:43.000Z" + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.111700", + "Timestamp": "2024-05-16T13:32:58.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.605000", - "Timestamp": "2019-10-16T00:24:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.252400", + "Timestamp": "2024-05-16T13:32:58.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.575000", - "Timestamp": "2019-10-16T00:24:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.247400", + "Timestamp": "2024-05-16T13:32:58.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.475000", - "Timestamp": "2019-10-16T00:24:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.122400", + "Timestamp": "2024-05-16T13:32:58.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.472600", - "Timestamp": "2019-10-16T00:24:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.161500", + "Timestamp": "2024-05-16T13:32:58.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.442600", - "Timestamp": "2019-10-16T00:24:40.000Z" + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.286300", + "Timestamp": "2024-05-16T13:32:57.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.342600", - "Timestamp": "2019-10-16T00:24:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.336400", + "Timestamp": "2024-05-16T13:32:57.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.540600", - "Timestamp": "2019-10-16T00:24:21.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.899800", + "Timestamp": "2024-05-16T13:32:57.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.510600", - "Timestamp": "2019-10-16T00:24:21.000Z" + "InstanceType": "r6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.331400", + "Timestamp": "2024-05-16T13:32:57.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.894800", + "Timestamp": "2024-05-16T13:32:57.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.410600", - "Timestamp": "2019-10-16T00:24:21.000Z" + "InstanceType": "r6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.206400", + "Timestamp": "2024-05-16T13:32:57.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.769800", + "Timestamp": "2024-05-16T13:32:57.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.947500", - "Timestamp": "2019-10-16T00:24:17.000Z" + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.284800", + "Timestamp": "2024-05-16T13:32:57.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.917500", - "Timestamp": "2019-10-16T00:24:17.000Z" + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.279800", + "Timestamp": "2024-05-16T13:32:57.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.817500", - "Timestamp": "2019-10-16T00:24:17.000Z" + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.154800", + "Timestamp": "2024-05-16T13:32:57.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "p2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.416600", - "Timestamp": "2019-10-16T00:23:58.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.814300", + "Timestamp": "2024-05-16T13:32:56.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "p2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.456600", - "Timestamp": "2019-10-16T00:23:58.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.809300", + "Timestamp": "2024-05-16T13:32:56.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.684300", + "Timestamp": "2024-05-16T13:32:56.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.961300", + "Timestamp": "2024-05-16T13:32:56.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "p2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.356600", - "Timestamp": "2019-10-16T00:23:58.000Z" + "InstanceType": "m7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.135100", + "Timestamp": "2024-05-16T13:32:55.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.611000", + "Timestamp": "2024-05-16T13:32:54.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.063000", - "Timestamp": "2019-10-16T00:23:56.000Z" + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.732400", + "Timestamp": "2024-05-16T13:32:54.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.256700", - "Timestamp": "2019-10-16T00:23:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.276400", + "Timestamp": "2024-05-16T13:32:54.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.226700", - "Timestamp": "2019-10-16T00:23:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.271400", + "Timestamp": "2024-05-16T13:32:54.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.126700", - "Timestamp": "2019-10-16T00:23:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.146400", + "Timestamp": "2024-05-16T13:32:54.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.685100", - "Timestamp": "2019-10-16T00:23:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.120900", + "Timestamp": "2024-05-16T13:32:54.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.655100", - "Timestamp": "2019-10-16T00:23:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.320300", + "Timestamp": "2024-05-16T13:32:54.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.555100", - "Timestamp": "2019-10-16T00:23:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "13.445300", + "Timestamp": "2024-05-16T13:32:54.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.524000", - "Timestamp": "2019-10-16T00:23:46.000Z" + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.173100", + "Timestamp": "2024-05-16T13:32:54.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.494000", - "Timestamp": "2019-10-16T00:23:46.000Z" + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.168100", + "Timestamp": "2024-05-16T13:32:54.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.394000", - "Timestamp": "2019-10-16T00:23:46.000Z" + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.043100", + "Timestamp": "2024-05-16T13:32:54.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.086000", - "Timestamp": "2019-10-16T00:23:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.464900", + "Timestamp": "2024-05-16T13:32:53.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-16T00:23:34.000Z" + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.189300", + "Timestamp": "2024-05-16T13:32:53.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.026000", - "Timestamp": "2019-10-16T00:23:34.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.366500", - "Timestamp": "2019-10-16T00:16:22.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "h1.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.336500", - "Timestamp": "2019-10-16T00:16:22.000Z" + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.184300", + "Timestamp": "2024-05-16T13:32:53.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.236500", - "Timestamp": "2019-10-16T00:16:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.059300", + "Timestamp": "2024-05-16T13:32:53.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.237100", - "Timestamp": "2019-10-16T00:16:17.000Z" + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.073300", + "Timestamp": "2024-05-16T13:32:53.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.277100", - "Timestamp": "2019-10-16T00:16:17.000Z" + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.043300", + "Timestamp": "2024-05-16T13:32:53.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.177100", - "Timestamp": "2019-10-16T00:16:17.000Z" + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.943300", + "Timestamp": "2024-05-16T13:32:53.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092900", - "Timestamp": "2019-10-16T00:16:17.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.509000", + "Timestamp": "2024-05-16T13:32:53.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132900", - "Timestamp": "2019-10-16T00:16:17.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.997400", + "Timestamp": "2024-05-16T13:32:52.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032900", - "Timestamp": "2019-10-16T00:16:17.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.241600", + "Timestamp": "2024-05-16T13:32:51.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.309400", - "Timestamp": "2019-10-16T00:16:16.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281600", + "Timestamp": "2024-05-16T13:32:51.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.279400", - "Timestamp": "2019-10-16T00:16:16.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181600", + "Timestamp": "2024-05-16T13:32:51.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.179400", - "Timestamp": "2019-10-16T00:16:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T13:32:51.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.239600", - "Timestamp": "2019-10-16T00:16:14.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093200", + "Timestamp": "2024-05-16T13:32:51.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c1.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.209600", - "Timestamp": "2019-10-16T00:16:14.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-16T13:32:51.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c1.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.109600", - "Timestamp": "2019-10-16T00:16:14.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089500", + "Timestamp": "2024-05-16T13:32:51.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.293000", - "Timestamp": "2019-10-16T00:16:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031800", + "Timestamp": "2024-05-16T13:32:51.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.263000", - "Timestamp": "2019-10-16T00:16:10.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033200", + "Timestamp": "2024-05-16T13:32:51.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.163000", - "Timestamp": "2019-10-16T00:16:10.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.265100", + "Timestamp": "2024-05-16T13:32:50.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.463500", - "Timestamp": "2019-10-16T00:15:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.136900", + "Timestamp": "2024-05-16T13:32:50.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.433500", - "Timestamp": "2019-10-16T00:15:55.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.224700", + "Timestamp": "2024-05-16T13:32:50.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.333500", - "Timestamp": "2019-10-16T00:15:55.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.219700", + "Timestamp": "2024-05-16T13:32:50.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "4.972000", - "Timestamp": "2019-10-16T00:15:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.094700", + "Timestamp": "2024-05-16T13:32:50.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "4.942000", - "Timestamp": "2019-10-16T00:15:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.553000", + "Timestamp": "2024-05-16T13:32:49.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "4.842000", - "Timestamp": "2019-10-16T00:15:49.000Z" + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.278100", + "Timestamp": "2024-05-16T13:32:49.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.459400", - "Timestamp": "2019-10-16T00:15:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.701000", + "Timestamp": "2024-05-16T13:32:49.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.429400", - "Timestamp": "2019-10-16T00:15:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.696000", + "Timestamp": "2024-05-16T13:32:49.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.329400", - "Timestamp": "2019-10-16T00:15:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.571000", + "Timestamp": "2024-05-16T13:32:49.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.483200", - "Timestamp": "2019-10-16T00:15:36.000Z" - }, - { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.501200", - "Timestamp": "2019-10-16T00:15:32.000Z" - }, - { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.471200", - "Timestamp": "2019-10-16T00:15:32.000Z" + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.270000", + "Timestamp": "2024-05-16T13:32:49.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.371200", - "Timestamp": "2019-10-16T00:15:32.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.780800", + "Timestamp": "2024-05-16T13:32:49.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.318100", - "Timestamp": "2019-10-16T00:15:30.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.775800", + "Timestamp": "2024-05-16T13:32:49.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.288100", - "Timestamp": "2019-10-16T00:15:30.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.650800", + "Timestamp": "2024-05-16T13:32:49.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.188100", - "Timestamp": "2019-10-16T00:15:30.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.536300", + "Timestamp": "2024-05-16T13:32:48.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.282900", - "Timestamp": "2019-10-16T00:15:27.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.531300", + "Timestamp": "2024-05-16T13:32:48.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.252900", - "Timestamp": "2019-10-16T00:15:27.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.406300", + "Timestamp": "2024-05-16T13:32:48.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.152900", - "Timestamp": "2019-10-16T00:15:27.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082000", + "Timestamp": "2024-05-16T13:32:48.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.498000", - "Timestamp": "2019-10-16T00:13:00.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078300", + "Timestamp": "2024-05-16T13:32:48.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.498000", - "Timestamp": "2019-10-16T00:13:00.000Z" + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022000", + "Timestamp": "2024-05-16T13:32:48.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.498000", - "Timestamp": "2019-10-16T00:13:00.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.657100", + "Timestamp": "2024-05-16T13:32:48.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.468000", - "Timestamp": "2019-10-16T00:13:00.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.627100", + "Timestamp": "2024-05-16T13:32:48.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.468000", - "Timestamp": "2019-10-16T00:13:00.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.527100", + "Timestamp": "2024-05-16T13:32:48.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.468000", - "Timestamp": "2019-10-16T00:13:00.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.975600", + "Timestamp": "2024-05-16T13:32:48.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.368000", - "Timestamp": "2019-10-16T00:13:00.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T13:32:47.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.368000", - "Timestamp": "2019-10-16T00:13:00.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101100", + "Timestamp": "2024-05-16T13:32:47.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.368000", - "Timestamp": "2019-10-16T00:13:00.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044800", + "Timestamp": "2024-05-16T13:32:47.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.312000", - "Timestamp": "2019-10-16T00:12:23.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.064200", + "Timestamp": "2024-05-16T13:32:47.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.312000", - "Timestamp": "2019-10-16T00:12:23.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "a1.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.305500", + "Timestamp": "2024-05-16T13:32:47.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.312000", - "Timestamp": "2019-10-16T00:12:23.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "a1.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.300500", + "Timestamp": "2024-05-16T13:32:47.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-16T00:12:16.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "a1.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175500", + "Timestamp": "2024-05-16T13:32:47.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-16T00:12:16.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.664200", + "Timestamp": "2024-05-16T13:32:45.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-16T00:12:16.000Z" + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.464500", + "Timestamp": "2024-05-16T13:32:45.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-16T00:12:16.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-16T00:12:16.000Z" + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.506700", + "Timestamp": "2024-05-16T13:32:45.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "m3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.365000", - "Timestamp": "2019-10-16T00:12:01.000Z" + "SpotPrice": "0.203800", + "Timestamp": "2024-05-16T13:32:45.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.365000", - "Timestamp": "2019-10-16T00:12:01.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "m3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.243800", + "Timestamp": "2024-05-16T13:32:45.000Z" }, { "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.365000", - "Timestamp": "2019-10-16T00:12:01.000Z" + "InstanceType": "m3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143800", + "Timestamp": "2024-05-16T13:32:45.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.4xlarge", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.313800", + "Timestamp": "2024-05-16T13:32:45.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.365000", - "Timestamp": "2019-10-16T00:12:01.000Z" + "SpotPrice": "3.851000", + "Timestamp": "2024-05-16T13:32:44.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.335000", - "Timestamp": "2019-10-16T00:12:01.000Z" + "SpotPrice": "3.846000", + "Timestamp": "2024-05-16T13:32:44.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.335000", - "Timestamp": "2019-10-16T00:12:01.000Z" + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.721000", + "Timestamp": "2024-05-16T13:32:44.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.335000", - "Timestamp": "2019-10-16T00:12:01.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.696300", + "Timestamp": "2024-05-16T13:32:44.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.4xlarge", + "InstanceType": "m7a.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.335000", - "Timestamp": "2019-10-16T00:12:01.000Z" + "SpotPrice": "2.691300", + "Timestamp": "2024-05-16T13:32:44.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.235000", - "Timestamp": "2019-10-16T00:12:01.000Z" + "SpotPrice": "2.566300", + "Timestamp": "2024-05-16T13:32:44.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.235000", - "Timestamp": "2019-10-16T00:12:01.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.140900", + "Timestamp": "2024-05-16T13:32:44.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.235000", - "Timestamp": "2019-10-16T00:12:01.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.112600", + "Timestamp": "2024-05-16T13:32:43.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.235000", - "Timestamp": "2019-10-16T00:12:01.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.082600", + "Timestamp": "2024-05-16T13:32:43.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.899000", - "Timestamp": "2019-10-16T00:11:50.000Z" + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.982600", + "Timestamp": "2024-05-16T13:32:43.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.4xlarge", + "InstanceType": "r5a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.899000", - "Timestamp": "2019-10-16T00:11:50.000Z" + "SpotPrice": "0.286700", + "Timestamp": "2024-05-16T13:32:43.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5n.9xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.899000", - "Timestamp": "2019-10-16T00:11:50.000Z" + "SpotPrice": "2.502900", + "Timestamp": "2024-05-16T13:32:42.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.4xlarge", + "InstanceType": "m1.large", "ProductDescription": "Windows", - "SpotPrice": "0.899000", - "Timestamp": "2019-10-16T00:11:50.000Z" + "SpotPrice": "0.181700", + "Timestamp": "2024-05-16T13:32:42.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3a.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.063300", - "Timestamp": "2019-10-16T00:11:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.014500", + "Timestamp": "2024-05-16T13:32:42.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.062800", - "Timestamp": "2019-10-16T00:11:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.009500", + "Timestamp": "2024-05-16T13:32:42.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.062800", - "Timestamp": "2019-10-16T00:11:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.884500", + "Timestamp": "2024-05-16T13:32:42.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.062800", - "Timestamp": "2019-10-16T00:11:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.662100", + "Timestamp": "2024-05-16T13:32:41.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.062800", - "Timestamp": "2019-10-16T00:11:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137800", + "Timestamp": "2024-05-16T13:32:41.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3a.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.103300", - "Timestamp": "2019-10-16T00:11:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134100", + "Timestamp": "2024-05-16T13:32:41.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.102800", - "Timestamp": "2019-10-16T00:11:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077800", + "Timestamp": "2024-05-16T13:32:41.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.102800", - "Timestamp": "2019-10-16T00:11:49.000Z" + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.339700", + "Timestamp": "2024-05-16T13:32:41.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.102800", - "Timestamp": "2019-10-16T00:11:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.402900", + "Timestamp": "2024-05-16T13:32:40.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.102800", - "Timestamp": "2019-10-16T00:11:49.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.003300", - "Timestamp": "2019-10-16T00:11:49.000Z" + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.740700", + "Timestamp": "2024-05-16T13:32:40.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.002800", - "Timestamp": "2019-10-16T00:11:49.000Z" + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.560800", + "Timestamp": "2024-05-16T13:32:40.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.002800", - "Timestamp": "2019-10-16T00:11:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.674200", + "Timestamp": "2024-05-16T13:32:39.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.002800", - "Timestamp": "2019-10-16T00:11:49.000Z" + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.356000", + "Timestamp": "2024-05-16T13:32:39.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.002800", - "Timestamp": "2019-10-16T00:11:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.644200", + "Timestamp": "2024-05-16T13:32:39.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-16T00:11:43.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.326000", + "Timestamp": "2024-05-16T13:32:39.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-16T00:11:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.544200", + "Timestamp": "2024-05-16T13:32:39.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-16T00:11:43.000Z" + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.226000", + "Timestamp": "2024-05-16T13:32:39.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-16T00:11:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.983000", + "Timestamp": "2024-05-16T13:32:39.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-16T00:11:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.978000", + "Timestamp": "2024-05-16T13:32:39.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-16T00:11:43.000Z" + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.853000", + "Timestamp": "2024-05-16T13:32:39.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-16T00:11:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.345200", + "Timestamp": "2024-05-16T13:32:38.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-16T00:11:43.000Z" + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.369800", + "Timestamp": "2024-05-16T13:32:38.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-16T00:11:43.000Z" + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.340200", + "Timestamp": "2024-05-16T13:32:38.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-16T00:11:43.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.364800", + "Timestamp": "2024-05-16T13:32:38.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-16T00:11:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.215200", + "Timestamp": "2024-05-16T13:32:38.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-16T00:11:43.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.899000", - "Timestamp": "2019-10-16T00:11:27.000Z" + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.239800", + "Timestamp": "2024-05-16T13:32:38.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.899000", - "Timestamp": "2019-10-16T00:11:27.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.021200", + "Timestamp": "2024-05-16T13:32:38.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.899000", - "Timestamp": "2019-10-16T00:11:27.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.016200", + "Timestamp": "2024-05-16T13:32:38.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.899000", - "Timestamp": "2019-10-16T00:11:27.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.891200", + "Timestamp": "2024-05-16T13:32:38.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.239000", - "Timestamp": "2019-10-16T00:11:21.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.475600", + "Timestamp": "2024-05-16T13:32:38.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.239000", - "Timestamp": "2019-10-16T00:11:21.000Z" + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.470600", + "Timestamp": "2024-05-16T13:32:38.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.239000", - "Timestamp": "2019-10-16T00:11:21.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.345600", + "Timestamp": "2024-05-16T13:32:38.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.239000", - "Timestamp": "2019-10-16T00:11:21.000Z" + "InstanceType": "d3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.401200", + "Timestamp": "2024-05-16T13:32:38.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.239000", - "Timestamp": "2019-10-16T00:11:21.000Z" + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.562700", + "Timestamp": "2024-05-16T13:32:38.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.504200", - "Timestamp": "2019-10-16T00:10:55.000Z" + "InstanceType": "r5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.464300", + "Timestamp": "2024-05-16T13:32:36.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.504200", - "Timestamp": "2019-10-16T00:10:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.343600", + "Timestamp": "2024-05-16T13:32:36.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.504200", - "Timestamp": "2019-10-16T00:10:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.191000", + "Timestamp": "2024-05-16T13:32:35.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.504200", - "Timestamp": "2019-10-16T00:10:55.000Z" + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.416800", + "Timestamp": "2024-05-16T13:32:35.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.266000", - "Timestamp": "2019-10-16T00:08:19.000Z" + "InstanceType": "m5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.411800", + "Timestamp": "2024-05-16T13:32:35.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.236000", - "Timestamp": "2019-10-16T00:08:19.000Z" + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.286800", + "Timestamp": "2024-05-16T13:32:35.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.136000", - "Timestamp": "2019-10-16T00:08:19.000Z" + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.509700", + "Timestamp": "2024-05-16T13:32:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "h1.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.488200", - "Timestamp": "2019-10-16T00:08:07.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.504700", + "Timestamp": "2024-05-16T13:32:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "h1.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.458200", - "Timestamp": "2019-10-16T00:08:07.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.379700", + "Timestamp": "2024-05-16T13:32:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "h1.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.358200", - "Timestamp": "2019-10-16T00:08:07.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.231600", + "Timestamp": "2024-05-16T13:32:34.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.310700", - "Timestamp": "2019-10-16T00:07:52.000Z" + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.917200", + "Timestamp": "2024-05-16T13:32:34.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "p2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.280700", - "Timestamp": "2019-10-16T00:07:52.000Z" + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.912200", + "Timestamp": "2024-05-16T13:32:34.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.180700", - "Timestamp": "2019-10-16T00:07:52.000Z" + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.787200", + "Timestamp": "2024-05-16T13:32:34.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "a1.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.304900", - "Timestamp": "2019-10-16T00:07:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.019300", + "Timestamp": "2024-05-16T13:32:34.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "a1.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.274900", - "Timestamp": "2019-10-16T00:07:41.000Z" + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.389900", + "Timestamp": "2024-05-16T13:32:34.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "a1.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.174900", - "Timestamp": "2019-10-16T00:07:41.000Z" + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.384900", + "Timestamp": "2024-05-16T13:32:34.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.379500", - "Timestamp": "2019-10-16T00:07:36.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.259900", + "Timestamp": "2024-05-16T13:32:34.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.001100", - "Timestamp": "2019-10-16T00:07:24.000Z" + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.563600", + "Timestamp": "2024-05-16T13:32:34.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.971100", - "Timestamp": "2019-10-16T00:07:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.300200", + "Timestamp": "2024-05-16T13:32:34.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.871100", - "Timestamp": "2019-10-16T00:07:24.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.570200", + "Timestamp": "2024-05-16T13:32:33.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.358200", - "Timestamp": "2019-10-16T00:07:21.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.565200", + "Timestamp": "2024-05-16T13:32:33.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.328200", - "Timestamp": "2019-10-16T00:07:21.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.440200", + "Timestamp": "2024-05-16T13:32:33.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.228200", - "Timestamp": "2019-10-16T00:07:21.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.749400", + "Timestamp": "2024-05-16T13:32:33.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "7.766400", - "Timestamp": "2019-10-16T00:07:19.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "i2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.719400", + "Timestamp": "2024-05-16T13:32:33.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.762300", - "Timestamp": "2019-10-16T00:07:15.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.619400", + "Timestamp": "2024-05-16T13:32:33.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.732300", - "Timestamp": "2019-10-16T00:07:15.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.072500", + "Timestamp": "2024-05-16T13:32:33.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.632300", - "Timestamp": "2019-10-16T00:07:15.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.067500", + "Timestamp": "2024-05-16T13:32:33.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.876500", - "Timestamp": "2019-10-16T00:07:15.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.942500", + "Timestamp": "2024-05-16T13:32:33.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.846500", - "Timestamp": "2019-10-16T00:07:15.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.626900", + "Timestamp": "2024-05-16T13:32:32.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.746500", - "Timestamp": "2019-10-16T00:07:15.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.813000", + "Timestamp": "2024-05-16T13:32:32.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.840000", - "Timestamp": "2019-10-16T00:07:10.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.783000", + "Timestamp": "2024-05-16T13:32:32.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.810000", - "Timestamp": "2019-10-16T00:07:10.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.683000", + "Timestamp": "2024-05-16T13:32:32.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.710000", - "Timestamp": "2019-10-16T00:07:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.210300", + "Timestamp": "2024-05-16T13:32:32.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.798700", - "Timestamp": "2019-10-16T00:07:10.000Z" + "InstanceType": "m1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.250300", + "Timestamp": "2024-05-16T13:32:32.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.768700", - "Timestamp": "2019-10-16T00:07:10.000Z" + "InstanceType": "m1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150300", + "Timestamp": "2024-05-16T13:32:32.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.668700", - "Timestamp": "2019-10-16T00:07:10.000Z" + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.650100", + "Timestamp": "2024-05-16T13:32:32.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.104200", - "Timestamp": "2019-10-16T00:07:02.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.620100", + "Timestamp": "2024-05-16T13:32:32.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.144200", - "Timestamp": "2019-10-16T00:07:02.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.520100", + "Timestamp": "2024-05-16T13:32:32.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.044200", - "Timestamp": "2019-10-16T00:07:02.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133100", + "Timestamp": "2024-05-16T13:32:32.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.506200", - "Timestamp": "2019-10-16T00:06:58.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129400", + "Timestamp": "2024-05-16T13:32:32.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.476200", - "Timestamp": "2019-10-16T00:06:58.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073100", + "Timestamp": "2024-05-16T13:32:32.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.376200", - "Timestamp": "2019-10-16T00:06:58.000Z" + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.048600", + "Timestamp": "2024-05-16T13:32:32.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.323300", - "Timestamp": "2019-10-16T00:06:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.073100", + "Timestamp": "2024-05-16T13:32:32.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.293300", - "Timestamp": "2019-10-16T00:06:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "a1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117300", + "Timestamp": "2024-05-16T13:32:32.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.193300", - "Timestamp": "2019-10-16T00:06:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "a1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113600", + "Timestamp": "2024-05-16T13:32:32.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.853500", - "Timestamp": "2019-10-16T00:06:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "a1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057300", + "Timestamp": "2024-05-16T13:32:32.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.823500", - "Timestamp": "2019-10-16T00:06:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.468800", + "Timestamp": "2024-05-16T13:32:32.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.723500", - "Timestamp": "2019-10-16T00:06:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.438800", + "Timestamp": "2024-05-16T13:32:32.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T23:59:59.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.338800", + "Timestamp": "2024-05-16T13:32:32.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-15T23:59:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.550700", + "Timestamp": "2024-05-16T13:32:31.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-15T23:59:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.545700", + "Timestamp": "2024-05-16T13:32:31.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-15T23:59:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.420700", + "Timestamp": "2024-05-16T13:32:31.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.599200", - "Timestamp": "2019-10-15T23:59:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.387500", + "Timestamp": "2024-05-16T13:32:31.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.569200", - "Timestamp": "2019-10-15T23:59:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.357500", + "Timestamp": "2024-05-16T13:32:31.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.469200", - "Timestamp": "2019-10-15T23:59:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.257500", + "Timestamp": "2024-05-16T13:32:31.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.048300", - "Timestamp": "2019-10-15T23:59:24.000Z" - }, - { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.952400", - "Timestamp": "2019-10-15T23:59:22.000Z" + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.296700", + "Timestamp": "2024-05-16T13:32:31.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.922400", - "Timestamp": "2019-10-15T23:59:22.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.921900", + "Timestamp": "2024-05-16T13:32:30.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.822400", - "Timestamp": "2019-10-15T23:59:22.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.891900", + "Timestamp": "2024-05-16T13:32:30.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.142400", - "Timestamp": "2019-10-15T23:59:22.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.791900", + "Timestamp": "2024-05-16T13:32:30.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.182400", - "Timestamp": "2019-10-15T23:59:22.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.394900", + "Timestamp": "2024-05-16T13:32:30.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.082400", - "Timestamp": "2019-10-15T23:59:22.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.389900", + "Timestamp": "2024-05-16T13:32:30.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.654300", - "Timestamp": "2019-10-15T23:59:15.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.264900", + "Timestamp": "2024-05-16T13:32:30.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.624300", - "Timestamp": "2019-10-15T23:59:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119100", + "Timestamp": "2024-05-16T13:32:30.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.524300", - "Timestamp": "2019-10-15T23:59:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115400", + "Timestamp": "2024-05-16T13:32:30.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.130200", - "Timestamp": "2019-10-15T23:58:59.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059100", + "Timestamp": "2024-05-16T13:32:30.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.170200", - "Timestamp": "2019-10-15T23:58:59.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.266200", + "Timestamp": "2024-05-16T13:32:30.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.070200", - "Timestamp": "2019-10-15T23:58:59.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.261200", + "Timestamp": "2024-05-16T13:32:30.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.394100", - "Timestamp": "2019-10-15T23:58:56.000Z" + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136200", + "Timestamp": "2024-05-16T13:32:30.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.678500", - "Timestamp": "2019-10-15T23:58:50.000Z" + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.194000", + "Timestamp": "2024-05-16T13:32:30.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.648500", - "Timestamp": "2019-10-15T23:58:50.000Z" + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.164000", + "Timestamp": "2024-05-16T13:32:30.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.548500", - "Timestamp": "2019-10-15T23:58:50.000Z" + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.064000", + "Timestamp": "2024-05-16T13:32:30.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.828200", - "Timestamp": "2019-10-15T23:58:45.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.140900", + "Timestamp": "2024-05-16T13:32:30.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.798200", - "Timestamp": "2019-10-15T23:58:45.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.135900", + "Timestamp": "2024-05-16T13:32:30.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.698200", - "Timestamp": "2019-10-15T23:58:45.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.010900", + "Timestamp": "2024-05-16T13:32:30.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.329500", - "Timestamp": "2019-10-15T23:58:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.118800", + "Timestamp": "2024-05-16T13:32:29.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.299500", - "Timestamp": "2019-10-15T23:58:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.113800", + "Timestamp": "2024-05-16T13:32:29.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.199500", - "Timestamp": "2019-10-15T23:58:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.988800", + "Timestamp": "2024-05-16T13:32:29.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "h1.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.480800", - "Timestamp": "2019-10-15T23:51:07.000Z" + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.514500", + "Timestamp": "2024-05-16T13:32:29.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "h1.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.450800", - "Timestamp": "2019-10-15T23:51:07.000Z" + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.484500", + "Timestamp": "2024-05-16T13:32:29.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "h1.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.350800", - "Timestamp": "2019-10-15T23:51:07.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.272500", - "Timestamp": "2019-10-15T23:51:06.000Z" + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.384500", + "Timestamp": "2024-05-16T13:32:29.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.242500", - "Timestamp": "2019-10-15T23:51:06.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.885100", + "Timestamp": "2024-05-16T13:32:29.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.142500", - "Timestamp": "2019-10-15T23:51:06.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.880100", + "Timestamp": "2024-05-16T13:32:29.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5ad.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.214900", - "Timestamp": "2019-10-15T23:51:02.000Z" + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.755100", + "Timestamp": "2024-05-16T13:32:29.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.322100", - "Timestamp": "2019-10-15T23:50:27.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.398700", + "Timestamp": "2024-05-16T13:32:29.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.292100", - "Timestamp": "2019-10-15T23:50:27.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.393700", + "Timestamp": "2024-05-16T13:32:29.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.192100", - "Timestamp": "2019-10-15T23:50:27.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.268700", + "Timestamp": "2024-05-16T13:32:29.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.480900", - "Timestamp": "2019-10-15T23:50:26.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.567100", + "Timestamp": "2024-05-16T13:32:29.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.450900", - "Timestamp": "2019-10-15T23:50:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "15.952500", + "Timestamp": "2024-05-16T13:32:29.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.350900", - "Timestamp": "2019-10-15T23:50:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.765000", + "Timestamp": "2024-05-16T13:32:28.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.246600", - "Timestamp": "2019-10-15T23:50:21.000Z" + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.760000", + "Timestamp": "2024-05-16T13:32:28.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.190500", - "Timestamp": "2019-10-15T23:50:21.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.635000", + "Timestamp": "2024-05-16T13:32:28.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.216600", - "Timestamp": "2019-10-15T23:50:21.000Z" + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.880400", + "Timestamp": "2024-05-16T13:32:28.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m4.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.160500", - "Timestamp": "2019-10-15T23:50:21.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.091000", + "Timestamp": "2024-05-16T13:32:28.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.116600", - "Timestamp": "2019-10-15T23:50:21.000Z" + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.086000", + "Timestamp": "2024-05-16T13:32:28.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.060500", - "Timestamp": "2019-10-15T23:50:21.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.961000", + "Timestamp": "2024-05-16T13:32:28.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.142900", - "Timestamp": "2019-10-15T23:50:21.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.860400", + "Timestamp": "2024-05-16T13:32:27.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5n.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.182900", - "Timestamp": "2019-10-15T23:50:21.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.580500", + "Timestamp": "2024-05-16T13:32:27.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.082900", - "Timestamp": "2019-10-15T23:50:21.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.575500", + "Timestamp": "2024-05-16T13:32:27.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.300600", - "Timestamp": "2019-10-15T23:50:18.000Z" + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.450500", + "Timestamp": "2024-05-16T13:32:27.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.270600", - "Timestamp": "2019-10-15T23:50:18.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.392600", + "Timestamp": "2024-05-16T13:32:26.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.170600", - "Timestamp": "2019-10-15T23:50:18.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.546800", + "Timestamp": "2024-05-16T13:32:26.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.674700", - "Timestamp": "2019-10-15T23:50:05.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.213800", + "Timestamp": "2024-05-16T13:32:26.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.644700", - "Timestamp": "2019-10-15T23:50:05.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.208800", + "Timestamp": "2024-05-16T13:32:26.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.544700", - "Timestamp": "2019-10-15T23:50:05.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.083800", + "Timestamp": "2024-05-16T13:32:26.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.2xlarge", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.141500", + "Timestamp": "2024-05-16T13:32:26.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.250100", - "Timestamp": "2019-10-15T23:50:05.000Z" + "SpotPrice": "0.098700", + "Timestamp": "2024-05-16T13:32:25.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.220100", - "Timestamp": "2019-10-15T23:50:05.000Z" + "SpotPrice": "0.095000", + "Timestamp": "2024-05-16T13:32:25.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.120100", - "Timestamp": "2019-10-15T23:50:05.000Z" + "SpotPrice": "0.038700", + "Timestamp": "2024-05-16T13:32:25.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.274400", - "Timestamp": "2019-10-15T23:50:03.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161700", + "Timestamp": "2024-05-16T13:32:25.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.265000", - "Timestamp": "2019-10-15T23:50:03.000Z" + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158000", + "Timestamp": "2024-05-16T13:32:25.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.244400", - "Timestamp": "2019-10-15T23:50:03.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-16T13:32:25.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.235000", - "Timestamp": "2019-10-15T23:50:03.000Z" + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.486300", + "Timestamp": "2024-05-16T13:32:25.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.144400", - "Timestamp": "2019-10-15T23:50:03.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.481300", + "Timestamp": "2024-05-16T13:32:25.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.135000", - "Timestamp": "2019-10-15T23:50:03.000Z" + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.356300", + "Timestamp": "2024-05-16T13:32:25.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.141200", - "Timestamp": "2019-10-15T23:50:03.000Z" + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.530100", + "Timestamp": "2024-05-16T13:32:24.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.181200", - "Timestamp": "2019-10-15T23:50:03.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.495100", + "Timestamp": "2024-05-16T13:32:24.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.081200", - "Timestamp": "2019-10-15T23:50:03.000Z" + "InstanceType": "c7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.525100", + "Timestamp": "2024-05-16T13:32:24.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.490100", + "Timestamp": "2024-05-16T13:32:24.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.504000", - "Timestamp": "2019-10-15T23:43:05.000Z" + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.400100", + "Timestamp": "2024-05-16T13:32:24.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.068800", - "Timestamp": "2019-10-15T23:42:47.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.365100", + "Timestamp": "2024-05-16T13:32:24.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.317800", - "Timestamp": "2019-10-15T23:42:44.000Z" + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.365100", + "Timestamp": "2024-05-16T13:32:24.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.287800", - "Timestamp": "2019-10-15T23:42:44.000Z" + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.360100", + "Timestamp": "2024-05-16T13:32:24.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.187800", - "Timestamp": "2019-10-15T23:42:44.000Z" + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.235100", + "Timestamp": "2024-05-16T13:32:24.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.420100", + "Timestamp": "2024-05-16T13:32:23.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.326300", + "Timestamp": "2024-05-16T13:32:23.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296300", + "Timestamp": "2024-05-16T13:32:23.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196300", + "Timestamp": "2024-05-16T13:32:23.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.751400", - "Timestamp": "2019-10-15T23:42:41.000Z" + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134700", + "Timestamp": "2024-05-16T13:32:22.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.721400", - "Timestamp": "2019-10-15T23:42:41.000Z" + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131000", + "Timestamp": "2024-05-16T13:32:22.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.621400", - "Timestamp": "2019-10-15T23:42:41.000Z" + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074700", + "Timestamp": "2024-05-16T13:32:22.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.283900", - "Timestamp": "2019-10-15T23:42:18.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.024400", + "Timestamp": "2024-05-16T13:32:22.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.253900", - "Timestamp": "2019-10-15T23:42:18.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "h1.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.994400", + "Timestamp": "2024-05-16T13:32:22.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.153900", - "Timestamp": "2019-10-15T23:42:18.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.894400", + "Timestamp": "2024-05-16T13:32:22.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.324500", - "Timestamp": "2019-10-15T23:42:18.000Z" + "InstanceType": "m2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.196000", + "Timestamp": "2024-05-16T13:32:22.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.294500", - "Timestamp": "2019-10-15T23:42:18.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.561700", + "Timestamp": "2024-05-16T13:32:22.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.194500", - "Timestamp": "2019-10-15T23:42:18.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.531700", + "Timestamp": "2024-05-16T13:32:22.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.373700", - "Timestamp": "2019-10-15T23:42:09.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.431700", + "Timestamp": "2024-05-16T13:32:22.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.343700", - "Timestamp": "2019-10-15T23:42:09.000Z" + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.037600", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.153600", + "Timestamp": "2024-05-16T13:32:22.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.243700", - "Timestamp": "2019-10-15T23:42:09.000Z" + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.007600", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.123600", + "Timestamp": "2024-05-16T13:32:22.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.208900", - "Timestamp": "2019-10-15T23:42:07.000Z" + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.907600", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.023600", + "Timestamp": "2024-05-16T13:32:22.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.248900", - "Timestamp": "2019-10-15T23:42:07.000Z" + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.442600", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.450700", + "Timestamp": "2024-05-16T13:32:22.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.148900", - "Timestamp": "2019-10-15T23:42:07.000Z" + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.437600", + "Timestamp": "2024-05-16T13:32:22.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.367300", - "Timestamp": "2019-10-15T23:42:05.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.445700", + "Timestamp": "2024-05-16T13:32:22.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.337300", - "Timestamp": "2019-10-15T23:42:05.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.312600", + "Timestamp": "2024-05-16T13:32:22.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.237300", - "Timestamp": "2019-10-15T23:42:05.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.320700", + "Timestamp": "2024-05-16T13:32:22.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.547400", - "Timestamp": "2019-10-15T23:42:04.000Z" + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145100", + "Timestamp": "2024-05-16T13:32:21.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.473300", - "Timestamp": "2019-10-15T23:42:01.000Z" + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141400", + "Timestamp": "2024-05-16T13:32:21.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.443300", - "Timestamp": "2019-10-15T23:42:01.000Z" + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085100", + "Timestamp": "2024-05-16T13:32:21.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.343300", - "Timestamp": "2019-10-15T23:42:01.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.581300", + "Timestamp": "2024-05-16T13:32:21.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.004900", - "Timestamp": "2019-10-15T23:42:01.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.576300", + "Timestamp": "2024-05-16T13:32:21.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.974900", - "Timestamp": "2019-10-15T23:42:01.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.451300", + "Timestamp": "2024-05-16T13:32:21.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.874900", - "Timestamp": "2019-10-15T23:42:01.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.876400", + "Timestamp": "2024-05-16T13:32:21.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.312700", - "Timestamp": "2019-10-15T23:41:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.955600", + "Timestamp": "2024-05-16T13:32:21.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.282700", - "Timestamp": "2019-10-15T23:41:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.993900", + "Timestamp": "2024-05-16T13:32:21.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.514200", + "Timestamp": "2024-05-16T13:32:20.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.072100", + "Timestamp": "2024-05-16T13:32:19.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.182700", - "Timestamp": "2019-10-15T23:41:56.000Z" + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.022800", + "Timestamp": "2024-05-16T13:32:19.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.174700", - "Timestamp": "2019-10-15T23:41:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.042100", + "Timestamp": "2024-05-16T13:32:19.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.144700", - "Timestamp": "2019-10-15T23:41:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.992800", + "Timestamp": "2024-05-16T13:32:19.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.044700", - "Timestamp": "2019-10-15T23:41:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.942100", + "Timestamp": "2024-05-16T13:32:19.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T23:34:49.000Z" + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.892800", + "Timestamp": "2024-05-16T13:32:19.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.281800", - "Timestamp": "2019-10-15T23:34:18.000Z" + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.446500", + "Timestamp": "2024-05-16T13:32:19.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.251800", - "Timestamp": "2019-10-15T23:34:18.000Z" + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.441500", + "Timestamp": "2024-05-16T13:32:19.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.151800", - "Timestamp": "2019-10-15T23:34:18.000Z" + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.316500", + "Timestamp": "2024-05-16T13:32:19.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.174700", - "Timestamp": "2019-10-15T23:33:54.000Z" + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.911800", + "Timestamp": "2024-05-16T13:32:18.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.214700", - "Timestamp": "2019-10-15T23:33:54.000Z" + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.906800", + "Timestamp": "2024-05-16T13:32:18.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.114700", - "Timestamp": "2019-10-15T23:33:54.000Z" + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.781800", + "Timestamp": "2024-05-16T13:32:18.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.966600", - "Timestamp": "2019-10-15T23:33:34.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.470600", + "Timestamp": "2024-05-16T13:32:18.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.936600", - "Timestamp": "2019-10-15T23:33:34.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t1.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.012400", + "Timestamp": "2024-05-16T13:32:18.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.836600", - "Timestamp": "2019-10-15T23:33:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.141500", + "Timestamp": "2024-05-16T13:32:17.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.489500", - "Timestamp": "2019-10-15T23:33:34.000Z" + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130800", + "Timestamp": "2024-05-16T13:32:17.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.459500", - "Timestamp": "2019-10-15T23:33:34.000Z" + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127100", + "Timestamp": "2024-05-16T13:32:17.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.359500", - "Timestamp": "2019-10-15T23:33:34.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.946200", - "Timestamp": "2019-10-15T23:33:27.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.916200", - "Timestamp": "2019-10-15T23:33:27.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.816200", - "Timestamp": "2019-10-15T23:33:27.000Z" + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070800", + "Timestamp": "2024-05-16T13:32:17.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.293900", - "Timestamp": "2019-10-15T23:26:09.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.510500", - "Timestamp": "2019-10-15T23:26:08.000Z" + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173200", + "Timestamp": "2024-05-16T13:32:15.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.799600", - "Timestamp": "2019-10-15T23:26:02.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169500", + "Timestamp": "2024-05-16T13:32:15.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.769600", - "Timestamp": "2019-10-15T23:26:02.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113200", + "Timestamp": "2024-05-16T13:32:15.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.669600", - "Timestamp": "2019-10-15T23:26:02.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.597200", + "Timestamp": "2024-05-16T13:32:15.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.427600", - "Timestamp": "2019-10-15T23:25:47.000Z" + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.136100", + "Timestamp": "2024-05-16T13:32:15.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.397600", - "Timestamp": "2019-10-15T23:25:47.000Z" + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.131100", + "Timestamp": "2024-05-16T13:32:15.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.297600", - "Timestamp": "2019-10-15T23:25:47.000Z" + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.006100", + "Timestamp": "2024-05-16T13:32:15.000Z" }, { - "AvailabilityZone": "us-east-1b", + "AvailabilityZone": "us-east-1d", "InstanceType": "r5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.693400", - "Timestamp": "2019-10-15T23:25:47.000Z" + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.666400", + "Timestamp": "2024-05-16T13:32:14.000Z" }, { - "AvailabilityZone": "us-east-1b", + "AvailabilityZone": "us-east-1d", "InstanceType": "r5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.663400", - "Timestamp": "2019-10-15T23:25:47.000Z" + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.661400", + "Timestamp": "2024-05-16T13:32:14.000Z" }, { - "AvailabilityZone": "us-east-1b", + "AvailabilityZone": "us-east-1d", "InstanceType": "r5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.563400", - "Timestamp": "2019-10-15T23:25:47.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.496300", - "Timestamp": "2019-10-15T23:25:42.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.466300", - "Timestamp": "2019-10-15T23:25:42.000Z" + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.536400", + "Timestamp": "2024-05-16T13:32:14.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.366300", - "Timestamp": "2019-10-15T23:25:42.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.784000", + "Timestamp": "2024-05-16T13:32:14.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.461000", - "Timestamp": "2019-10-15T23:25:31.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.516200", + "Timestamp": "2024-05-16T13:32:14.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.431000", - "Timestamp": "2019-10-15T23:25:31.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "f1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.486200", + "Timestamp": "2024-05-16T13:32:14.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.331000", - "Timestamp": "2019-10-15T23:25:31.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.386200", + "Timestamp": "2024-05-16T13:32:14.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.4xlarge", + "InstanceType": "x2gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.391600", - "Timestamp": "2019-10-15T23:25:23.000Z" + "SpotPrice": "2.155400", + "Timestamp": "2024-05-16T13:32:13.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.4xlarge", + "InstanceType": "x2gd.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.361600", - "Timestamp": "2019-10-15T23:25:23.000Z" + "SpotPrice": "2.150400", + "Timestamp": "2024-05-16T13:32:13.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.4xlarge", + "InstanceType": "x2gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.261600", - "Timestamp": "2019-10-15T23:25:23.000Z" + "SpotPrice": "2.025400", + "Timestamp": "2024-05-16T13:32:13.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.598700", - "Timestamp": "2019-10-15T23:25:15.000Z" + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.426700", + "Timestamp": "2024-05-16T13:32:13.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.568700", - "Timestamp": "2019-10-15T23:25:15.000Z" + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.421700", + "Timestamp": "2024-05-16T13:32:13.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.468700", - "Timestamp": "2019-10-15T23:25:15.000Z" + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.296700", + "Timestamp": "2024-05-16T13:32:13.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.477500", - "Timestamp": "2019-10-15T23:25:13.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.168100", + "Timestamp": "2024-05-16T13:32:13.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.447500", - "Timestamp": "2019-10-15T23:25:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.099900", + "Timestamp": "2024-05-16T13:32:13.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.347500", - "Timestamp": "2019-10-15T23:25:13.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.647300", + "Timestamp": "2024-05-16T13:32:13.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.295700", - "Timestamp": "2019-10-15T23:25:05.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121100", + "Timestamp": "2024-05-16T13:32:12.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.388200", - "Timestamp": "2019-10-15T23:17:34.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117400", + "Timestamp": "2024-05-16T13:32:12.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.358200", - "Timestamp": "2019-10-15T23:17:34.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061100", + "Timestamp": "2024-05-16T13:32:12.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.258200", - "Timestamp": "2019-10-15T23:17:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.560100", + "Timestamp": "2024-05-16T13:32:12.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.472100", - "Timestamp": "2019-10-15T23:17:30.000Z" + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.555100", + "Timestamp": "2024-05-16T13:32:12.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.442100", - "Timestamp": "2019-10-15T23:17:30.000Z" + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.430100", + "Timestamp": "2024-05-16T13:32:12.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.342100", - "Timestamp": "2019-10-15T23:17:30.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146600", + "Timestamp": "2024-05-16T13:32:12.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.048300", - "Timestamp": "2019-10-15T23:17:23.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142900", + "Timestamp": "2024-05-16T13:32:12.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.400600", - "Timestamp": "2019-10-15T23:17:16.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086600", + "Timestamp": "2024-05-16T13:32:12.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.370600", - "Timestamp": "2019-10-15T23:17:16.000Z" + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.088400", + "Timestamp": "2024-05-16T13:32:12.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.270600", - "Timestamp": "2019-10-15T23:17:16.000Z" + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.083400", + "Timestamp": "2024-05-16T13:32:12.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.024200", - "Timestamp": "2019-10-15T23:17:14.000Z" + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.958400", + "Timestamp": "2024-05-16T13:32:12.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.233500", - "Timestamp": "2019-10-15T23:17:13.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.049400", + "Timestamp": "2024-05-16T13:32:12.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c1.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.203500", - "Timestamp": "2019-10-15T23:17:13.000Z" + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074700", + "Timestamp": "2024-05-16T13:32:11.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c1.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.103500", - "Timestamp": "2019-10-15T23:17:13.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.538100", - "Timestamp": "2019-10-15T23:16:49.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.508100", - "Timestamp": "2019-10-15T23:16:49.000Z" + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071000", + "Timestamp": "2024-05-16T13:32:11.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.408100", - "Timestamp": "2019-10-15T23:16:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014700", + "Timestamp": "2024-05-16T13:32:11.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.506900", - "Timestamp": "2019-10-15T23:16:47.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.474100", + "Timestamp": "2024-05-16T13:32:11.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.476900", - "Timestamp": "2019-10-15T23:16:47.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.469100", + "Timestamp": "2024-05-16T13:32:11.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.376900", - "Timestamp": "2019-10-15T23:16:47.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.344100", + "Timestamp": "2024-05-16T13:32:11.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.762300", - "Timestamp": "2019-10-15T23:16:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.388300", + "Timestamp": "2024-05-16T13:32:11.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.732300", - "Timestamp": "2019-10-15T23:16:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.383300", + "Timestamp": "2024-05-16T13:32:11.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.632300", - "Timestamp": "2019-10-15T23:16:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.258300", + "Timestamp": "2024-05-16T13:32:11.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "g2.2xlarge", + "InstanceType": "m5n.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.325000", - "Timestamp": "2019-10-15T23:14:23.000Z" + "SpotPrice": "0.440100", + "Timestamp": "2024-05-16T13:32:11.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.325000", - "Timestamp": "2019-10-15T23:14:23.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.435100", + "Timestamp": "2024-05-16T13:32:11.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.325000", - "Timestamp": "2019-10-15T23:14:23.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.310100", + "Timestamp": "2024-05-16T13:32:11.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.325000", - "Timestamp": "2019-10-15T23:14:23.000Z" + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.335000", + "Timestamp": "2024-05-16T13:32:11.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "g2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.295000", - "Timestamp": "2019-10-15T23:14:23.000Z" + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.459600", + "Timestamp": "2024-05-16T13:32:11.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "g2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.295000", - "Timestamp": "2019-10-15T23:14:23.000Z" + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.457700", + "Timestamp": "2024-05-16T13:32:11.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g3s.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.295000", - "Timestamp": "2019-10-15T23:14:23.000Z" + "SpotPrice": "0.455600", + "Timestamp": "2024-05-16T13:32:11.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g3s.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.295000", - "Timestamp": "2019-10-15T23:14:23.000Z" + "SpotPrice": "0.453700", + "Timestamp": "2024-05-16T13:32:11.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "g2.2xlarge", + "InstanceType": "g3s.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.195000", - "Timestamp": "2019-10-15T23:14:23.000Z" + "SpotPrice": "0.399600", + "Timestamp": "2024-05-16T13:32:11.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "g2.2xlarge", + "InstanceType": "g3s.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.195000", - "Timestamp": "2019-10-15T23:14:23.000Z" + "SpotPrice": "0.397700", + "Timestamp": "2024-05-16T13:32:11.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.195000", - "Timestamp": "2019-10-15T23:14:23.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.785500", + "Timestamp": "2024-05-16T13:32:10.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.780500", + "Timestamp": "2024-05-16T13:32:10.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.195000", - "Timestamp": "2019-10-15T23:14:23.000Z" + "SpotPrice": "0.655500", + "Timestamp": "2024-05-16T13:32:10.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.146200", + "Timestamp": "2024-05-16T13:32:09.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.312000", - "Timestamp": "2019-10-15T23:14:14.000Z" + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.302800", + "Timestamp": "2024-05-16T13:18:27.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.312000", - "Timestamp": "2019-10-15T23:14:14.000Z" + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.002700", + "Timestamp": "2024-05-16T13:18:26.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.312000", - "Timestamp": "2019-10-15T23:14:14.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.997700", + "Timestamp": "2024-05-16T13:18:26.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.312000", - "Timestamp": "2019-10-15T23:14:14.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.872700", + "Timestamp": "2024-05-16T13:18:26.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.metal", "ProductDescription": "Windows", - "SpotPrice": "0.312000", - "Timestamp": "2019-10-15T23:13:05.000Z" + "SpotPrice": "3.800500", + "Timestamp": "2024-05-16T13:18:25.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "g2.2xlarge", + "InstanceType": "d2.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.312000", - "Timestamp": "2019-10-15T23:13:05.000Z" + "SpotPrice": "1.406500", + "Timestamp": "2024-05-16T13:18:24.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.312000", - "Timestamp": "2019-10-15T23:13:05.000Z" + "SpotPrice": "13.063500", + "Timestamp": "2024-05-16T13:18:22.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iezn.metal", "ProductDescription": "Windows", - "SpotPrice": "0.312000", - "Timestamp": "2019-10-15T23:13:05.000Z" + "SpotPrice": "6.171000", + "Timestamp": "2024-05-16T13:18:21.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "z1d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.147800", - "Timestamp": "2019-10-15T23:12:53.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.507200", + "Timestamp": "2024-05-16T13:18:21.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "z1d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.147800", - "Timestamp": "2019-10-15T23:12:53.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.413300", + "Timestamp": "2024-05-16T13:18:20.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "z1d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.147800", - "Timestamp": "2019-10-15T23:12:53.000Z" + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "17.261500", + "Timestamp": "2024-05-16T13:18:19.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "z1d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.147800", - "Timestamp": "2019-10-15T23:12:53.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.661600", + "Timestamp": "2024-05-16T13:18:17.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "z1d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.147800", - "Timestamp": "2019-10-15T23:12:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T13:18:17.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-15T23:12:39.000Z" + "InstanceType": "c7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T13:18:17.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-15T23:12:39.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046600", + "Timestamp": "2024-05-16T13:18:17.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-15T23:12:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.233000", + "Timestamp": "2024-05-16T13:18:17.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-15T23:12:39.000Z" + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.938100", + "Timestamp": "2024-05-16T13:18:16.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-15T23:12:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "vt1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.361900", + "Timestamp": "2024-05-16T13:18:13.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "4.131400", - "Timestamp": "2019-10-15T23:12:33.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "vt1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.331900", + "Timestamp": "2024-05-16T13:18:13.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "4.131400", - "Timestamp": "2019-10-15T23:12:33.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "vt1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.231900", + "Timestamp": "2024-05-16T13:18:13.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "4.131400", - "Timestamp": "2019-10-15T23:12:33.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "f1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.325700", + "Timestamp": "2024-05-16T13:18:12.000Z" }, { "AvailabilityZone": "us-east-1e", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "4.131400", - "Timestamp": "2019-10-15T23:12:33.000Z" + "InstanceType": "f1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.295700", + "Timestamp": "2024-05-16T13:18:12.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "4.131400", - "Timestamp": "2019-10-15T23:12:33.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "f1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.195700", + "Timestamp": "2024-05-16T13:18:12.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "4.131400", - "Timestamp": "2019-10-15T23:12:33.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "x1.32xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "4.101400", - "Timestamp": "2019-10-15T23:12:33.000Z" - }, - { - "AvailabilityZone": "us-east-1f", - "InstanceType": "x1.32xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "4.101400", - "Timestamp": "2019-10-15T23:12:33.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "x1.32xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "4.101400", - "Timestamp": "2019-10-15T23:12:33.000Z" + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141100", + "Timestamp": "2024-05-16T13:18:11.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "x1.32xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "4.101400", - "Timestamp": "2019-10-15T23:12:33.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137100", + "Timestamp": "2024-05-16T13:18:11.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "x1.32xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "4.101400", - "Timestamp": "2019-10-15T23:12:33.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081100", + "Timestamp": "2024-05-16T13:18:11.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "x1.32xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "4.101400", - "Timestamp": "2019-10-15T23:12:33.000Z" + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.889100", + "Timestamp": "2024-05-16T13:18:11.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "4.001400", - "Timestamp": "2019-10-15T23:12:33.000Z" + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.189500", + "Timestamp": "2024-05-16T13:18:11.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "4.001400", - "Timestamp": "2019-10-15T23:12:33.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.080900", + "Timestamp": "2024-05-16T13:18:11.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "4.001400", - "Timestamp": "2019-10-15T23:12:33.000Z" - }, - { - "AvailabilityZone": "us-east-1e", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "4.001400", - "Timestamp": "2019-10-15T23:12:33.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "4.001400", - "Timestamp": "2019-10-15T23:12:33.000Z" + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.486900", + "Timestamp": "2024-05-16T13:18:11.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "4.001400", - "Timestamp": "2019-10-15T23:12:33.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.325000", - "Timestamp": "2019-10-15T23:12:21.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.295000", - "Timestamp": "2019-10-15T23:12:21.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.195000", - "Timestamp": "2019-10-15T23:12:21.000Z" + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.116100", + "Timestamp": "2024-05-16T13:18:10.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.008100", - "Timestamp": "2019-10-15T23:12:21.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.137300", + "Timestamp": "2024-05-16T13:18:10.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.008100", - "Timestamp": "2019-10-15T23:12:21.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.526200", + "Timestamp": "2024-05-16T13:18:10.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.008100", - "Timestamp": "2019-10-15T23:12:21.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.521200", + "Timestamp": "2024-05-16T13:18:10.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.008100", - "Timestamp": "2019-10-15T23:12:21.000Z" + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.396200", + "Timestamp": "2024-05-16T13:18:10.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.008100", - "Timestamp": "2019-10-15T23:12:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.359200", + "Timestamp": "2024-05-16T13:18:10.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.157300", - "Timestamp": "2019-10-15T23:12:20.000Z" + "InstanceType": "m5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.140000", + "Timestamp": "2024-05-16T13:18:10.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.157300", - "Timestamp": "2019-10-15T23:12:20.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.788500", + "Timestamp": "2024-05-16T13:18:09.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.157300", - "Timestamp": "2019-10-15T23:12:20.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.783500", + "Timestamp": "2024-05-16T13:18:09.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.157300", - "Timestamp": "2019-10-15T23:12:20.000Z" + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.658500", + "Timestamp": "2024-05-16T13:18:09.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "z1d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.115800", - "Timestamp": "2019-10-15T23:12:05.000Z" + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.395800", + "Timestamp": "2024-05-16T13:18:09.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "z1d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.115800", - "Timestamp": "2019-10-15T23:12:05.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.700800", + "Timestamp": "2024-05-16T13:18:09.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "z1d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.115800", - "Timestamp": "2019-10-15T23:12:05.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.174400", + "Timestamp": "2024-05-16T13:18:09.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "z1d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.115800", - "Timestamp": "2019-10-15T23:12:05.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.303000", + "Timestamp": "2024-05-16T13:18:09.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "z1d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.115800", - "Timestamp": "2019-10-15T23:12:05.000Z" + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.956700", + "Timestamp": "2024-05-16T13:18:09.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "z1d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.155800", - "Timestamp": "2019-10-15T23:12:05.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.951700", + "Timestamp": "2024-05-16T13:18:09.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "z1d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.155800", - "Timestamp": "2019-10-15T23:12:05.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.826700", + "Timestamp": "2024-05-16T13:18:09.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "z1d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.155800", - "Timestamp": "2019-10-15T23:12:05.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.678800", + "Timestamp": "2024-05-16T13:18:07.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "z1d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.155800", - "Timestamp": "2019-10-15T23:12:05.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.785500", + "Timestamp": "2024-05-16T13:18:07.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "z1d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.155800", - "Timestamp": "2019-10-15T23:12:05.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.755500", + "Timestamp": "2024-05-16T13:18:07.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "z1d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.055800", - "Timestamp": "2019-10-15T23:12:05.000Z" + "InstanceType": "i2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.655500", + "Timestamp": "2024-05-16T13:18:07.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "z1d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.055800", - "Timestamp": "2019-10-15T23:12:05.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.801400", + "Timestamp": "2024-05-16T13:18:07.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "z1d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.055800", - "Timestamp": "2019-10-15T23:12:05.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.796400", + "Timestamp": "2024-05-16T13:18:07.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "z1d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.055800", - "Timestamp": "2019-10-15T23:12:05.000Z" + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.671400", + "Timestamp": "2024-05-16T13:18:07.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "z1d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.055800", - "Timestamp": "2019-10-15T23:12:05.000Z" + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.785600", + "Timestamp": "2024-05-16T13:18:07.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.402100", - "Timestamp": "2019-10-15T23:11:47.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.780600", + "Timestamp": "2024-05-16T13:18:07.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.402100", - "Timestamp": "2019-10-15T23:11:47.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.655600", + "Timestamp": "2024-05-16T13:18:07.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.402100", - "Timestamp": "2019-10-15T23:11:47.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.003200", + "Timestamp": "2024-05-16T13:18:07.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.402100", - "Timestamp": "2019-10-15T23:11:47.000Z" + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.998200", + "Timestamp": "2024-05-16T13:18:07.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.402100", - "Timestamp": "2019-10-15T23:11:47.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.873200", + "Timestamp": "2024-05-16T13:18:07.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.372100", - "Timestamp": "2019-10-15T23:11:47.000Z" + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.323800", + "Timestamp": "2024-05-16T13:18:07.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.372100", - "Timestamp": "2019-10-15T23:11:47.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.584200", + "Timestamp": "2024-05-16T13:18:07.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.372100", - "Timestamp": "2019-10-15T23:11:47.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.372100", - "Timestamp": "2019-10-15T23:11:47.000Z" + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.255200", + "Timestamp": "2024-05-16T13:18:07.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.372100", - "Timestamp": "2019-10-15T23:11:47.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.272100", - "Timestamp": "2019-10-15T23:11:47.000Z" + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.345400", + "Timestamp": "2024-05-16T13:18:06.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.272100", - "Timestamp": "2019-10-15T23:11:47.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.272100", - "Timestamp": "2019-10-15T23:11:47.000Z" + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.261500", + "Timestamp": "2024-05-16T13:18:06.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.272100", - "Timestamp": "2019-10-15T23:11:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.543400", + "Timestamp": "2024-05-16T13:18:06.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.272100", - "Timestamp": "2019-10-15T23:11:47.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.231700", + "Timestamp": "2024-05-16T13:18:05.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1e", + "InstanceType": "m3.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092300", - "Timestamp": "2019-10-15T23:11:26.000Z" + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T13:18:05.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092300", - "Timestamp": "2019-10-15T23:11:26.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "m3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166300", + "Timestamp": "2024-05-16T13:18:05.000Z" }, { "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092300", - "Timestamp": "2019-10-15T23:11:26.000Z" + "InstanceType": "m3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066300", + "Timestamp": "2024-05-16T13:18:05.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.large", + "InstanceType": "m6id.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092300", - "Timestamp": "2019-10-15T23:11:26.000Z" + "SpotPrice": "3.554300", + "Timestamp": "2024-05-16T13:18:05.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132300", - "Timestamp": "2019-10-15T23:11:26.000Z" + "SpotPrice": "3.549300", + "Timestamp": "2024-05-16T13:18:05.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132300", - "Timestamp": "2019-10-15T23:11:26.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.424300", + "Timestamp": "2024-05-16T13:18:05.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132300", - "Timestamp": "2019-10-15T23:11:26.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.647100", + "Timestamp": "2024-05-16T13:18:05.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132300", - "Timestamp": "2019-10-15T23:11:26.000Z" + "SpotPrice": "3.642100", + "Timestamp": "2024-05-16T13:18:05.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032300", - "Timestamp": "2019-10-15T23:11:26.000Z" + "SpotPrice": "3.517100", + "Timestamp": "2024-05-16T13:18:05.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032300", - "Timestamp": "2019-10-15T23:11:26.000Z" + "InstanceType": "m1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094800", + "Timestamp": "2024-05-16T13:18:04.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032300", - "Timestamp": "2019-10-15T23:11:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134800", + "Timestamp": "2024-05-16T13:18:04.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m1.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032300", - "Timestamp": "2019-10-15T23:11:26.000Z" + "SpotPrice": "0.034800", + "Timestamp": "2024-05-16T13:18:04.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.124800", - "Timestamp": "2019-10-15T23:11:25.000Z" - }, - { - "AvailabilityZone": "us-east-1f", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.124800", - "Timestamp": "2019-10-15T23:11:25.000Z" + "InstanceType": "g6.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.248500", + "Timestamp": "2024-05-16T13:18:04.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.124800", - "Timestamp": "2019-10-15T23:11:25.000Z" + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "12.426300", + "Timestamp": "2024-05-16T13:18:04.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.124800", - "Timestamp": "2019-10-15T23:11:25.000Z" + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.703100", + "Timestamp": "2024-05-16T13:18:04.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.124800", - "Timestamp": "2019-10-15T23:11:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "f1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.889200", + "Timestamp": "2024-05-16T13:18:03.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.782800", - "Timestamp": "2019-10-15T23:11:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "f1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.859200", + "Timestamp": "2024-05-16T13:18:03.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.782800", - "Timestamp": "2019-10-15T23:11:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "f1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.759200", + "Timestamp": "2024-05-16T13:18:03.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.782800", - "Timestamp": "2019-10-15T23:11:25.000Z" + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.919900", + "Timestamp": "2024-05-16T13:18:03.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.782800", - "Timestamp": "2019-10-15T23:11:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.194500", + "Timestamp": "2024-05-16T13:18:02.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.782800", - "Timestamp": "2019-10-15T23:11:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.011000", + "Timestamp": "2024-05-16T13:18:01.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.752800", - "Timestamp": "2019-10-15T23:11:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.082100", + "Timestamp": "2024-05-16T13:18:01.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.752800", - "Timestamp": "2019-10-15T23:11:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.077100", + "Timestamp": "2024-05-16T13:18:01.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.752800", - "Timestamp": "2019-10-15T23:11:25.000Z" + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.952100", + "Timestamp": "2024-05-16T13:18:01.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.752800", - "Timestamp": "2019-10-15T23:11:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.142700", + "Timestamp": "2024-05-16T13:18:01.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.752800", - "Timestamp": "2019-10-15T23:11:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.817000", + "Timestamp": "2024-05-16T13:18:01.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.652800", - "Timestamp": "2019-10-15T23:11:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.812000", + "Timestamp": "2024-05-16T13:18:01.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.652800", - "Timestamp": "2019-10-15T23:11:25.000Z" + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.687000", + "Timestamp": "2024-05-16T13:18:01.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.652800", - "Timestamp": "2019-10-15T23:11:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.407600", + "Timestamp": "2024-05-16T13:18:00.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.652800", - "Timestamp": "2019-10-15T23:11:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.402600", + "Timestamp": "2024-05-16T13:18:00.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.652800", - "Timestamp": "2019-10-15T23:11:25.000Z" + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.277600", + "Timestamp": "2024-05-16T13:18:00.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.157300", - "Timestamp": "2019-10-15T23:11:21.000Z" + "SpotPrice": "0.651100", + "Timestamp": "2024-05-16T13:17:59.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.large", + "InstanceType": "i2.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.157300", - "Timestamp": "2019-10-15T23:11:21.000Z" + "SpotPrice": "1.832900", + "Timestamp": "2024-05-16T13:17:59.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.157300", - "Timestamp": "2019-10-15T23:11:21.000Z" + "SpotPrice": "5.562200", + "Timestamp": "2024-05-16T13:17:59.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.157300", - "Timestamp": "2019-10-15T23:11:21.000Z" + "SpotPrice": "5.329000", + "Timestamp": "2024-05-16T13:17:59.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092300", - "Timestamp": "2019-10-15T23:10:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.873000", + "Timestamp": "2024-05-16T13:17:59.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092300", - "Timestamp": "2019-10-15T23:10:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.868000", + "Timestamp": "2024-05-16T13:17:59.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092300", - "Timestamp": "2019-10-15T23:10:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.743000", + "Timestamp": "2024-05-16T13:17:59.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092300", - "Timestamp": "2019-10-15T23:10:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.369300", + "Timestamp": "2024-05-16T13:17:57.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.364300", + "Timestamp": "2024-05-16T13:17:57.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.239300", + "Timestamp": "2024-05-16T13:17:57.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.256900", + "Timestamp": "2024-05-16T13:17:57.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132300", - "Timestamp": "2019-10-15T23:10:57.000Z" + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.296900", + "Timestamp": "2024-05-16T13:17:57.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132300", - "Timestamp": "2019-10-15T23:10:57.000Z" + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.109000", + "Timestamp": "2024-05-16T13:17:57.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132300", - "Timestamp": "2019-10-15T23:10:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.749600", + "Timestamp": "2024-05-16T13:17:56.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132300", - "Timestamp": "2019-10-15T23:10:57.000Z" + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.032200", + "Timestamp": "2024-05-16T13:17:55.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032300", - "Timestamp": "2019-10-15T23:10:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.027200", + "Timestamp": "2024-05-16T13:17:55.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032300", - "Timestamp": "2019-10-15T23:10:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.902200", + "Timestamp": "2024-05-16T13:17:55.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032300", - "Timestamp": "2019-10-15T23:10:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.477600", + "Timestamp": "2024-05-16T13:17:55.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032300", - "Timestamp": "2019-10-15T23:10:57.000Z" + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.447600", + "Timestamp": "2024-05-16T13:17:55.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.058000", - "Timestamp": "2019-10-15T23:10:21.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.347600", + "Timestamp": "2024-05-16T13:17:55.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.058000", - "Timestamp": "2019-10-15T23:10:21.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.376900", + "Timestamp": "2024-05-16T13:17:55.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.058000", - "Timestamp": "2019-10-15T23:10:21.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.371900", + "Timestamp": "2024-05-16T13:17:55.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.058000", - "Timestamp": "2019-10-15T23:10:21.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.246900", + "Timestamp": "2024-05-16T13:17:55.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.910000", - "Timestamp": "2019-10-15T23:10:15.000Z" + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.712800", + "Timestamp": "2024-05-16T13:17:55.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.910000", - "Timestamp": "2019-10-15T23:10:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.161400", + "Timestamp": "2024-05-16T13:17:55.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.910000", - "Timestamp": "2019-10-15T23:10:15.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.083000", + "Timestamp": "2024-05-16T13:17:55.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "g2.8xlarge", + "InstanceType": "g5g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.910000", - "Timestamp": "2019-10-15T23:10:15.000Z" + "SpotPrice": "0.396600", + "Timestamp": "2024-05-16T13:17:55.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.880000", - "Timestamp": "2019-10-15T23:10:15.000Z" + "SpotPrice": "0.391600", + "Timestamp": "2024-05-16T13:17:55.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.880000", - "Timestamp": "2019-10-15T23:10:15.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.266600", + "Timestamp": "2024-05-16T13:17:55.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.880000", - "Timestamp": "2019-10-15T23:10:15.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.574800", + "Timestamp": "2024-05-16T13:17:55.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "g2.8xlarge", + "InstanceType": "r6a.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.880000", - "Timestamp": "2019-10-15T23:10:15.000Z" + "SpotPrice": "2.569800", + "Timestamp": "2024-05-16T13:17:55.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.780000", - "Timestamp": "2019-10-15T23:10:15.000Z" + "SpotPrice": "2.444800", + "Timestamp": "2024-05-16T13:17:55.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.780000", - "Timestamp": "2019-10-15T23:10:15.000Z" + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.382700", + "Timestamp": "2024-05-16T13:17:54.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.780000", - "Timestamp": "2019-10-15T23:10:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.377700", + "Timestamp": "2024-05-16T13:17:54.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.780000", - "Timestamp": "2019-10-15T23:10:15.000Z" + "SpotPrice": "0.252700", + "Timestamp": "2024-05-16T13:17:54.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.058000", - "Timestamp": "2019-10-15T23:10:15.000Z" + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150300", + "Timestamp": "2024-05-16T13:17:54.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.058000", - "Timestamp": "2019-10-15T23:10:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146600", + "Timestamp": "2024-05-16T13:17:54.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.058000", - "Timestamp": "2019-10-15T23:10:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090300", + "Timestamp": "2024-05-16T13:17:54.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "g2.8xlarge", + "InstanceType": "m6i.large", "ProductDescription": "Windows", - "SpotPrice": "1.058000", - "Timestamp": "2019-10-15T23:10:15.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.910000", - "Timestamp": "2019-10-15T23:10:05.000Z" + "SpotPrice": "0.134600", + "Timestamp": "2024-05-16T13:17:54.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.910000", - "Timestamp": "2019-10-15T23:10:05.000Z" + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "13.422200", + "Timestamp": "2024-05-16T13:17:53.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.910000", - "Timestamp": "2019-10-15T23:10:05.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.269800", + "Timestamp": "2024-05-16T13:17:53.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.910000", - "Timestamp": "2019-10-15T23:10:05.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.041700", + "Timestamp": "2024-05-16T13:17:53.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.880000", - "Timestamp": "2019-10-15T23:10:05.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.036700", + "Timestamp": "2024-05-16T13:17:53.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.880000", - "Timestamp": "2019-10-15T23:10:05.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.911700", + "Timestamp": "2024-05-16T13:17:53.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.880000", - "Timestamp": "2019-10-15T23:10:05.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.325500", + "Timestamp": "2024-05-16T13:17:53.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "g2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.880000", - "Timestamp": "2019-10-15T23:10:05.000Z" + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.295500", + "Timestamp": "2024-05-16T13:17:53.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.780000", - "Timestamp": "2019-10-15T23:10:05.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.195500", + "Timestamp": "2024-05-16T13:17:53.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.780000", - "Timestamp": "2019-10-15T23:10:05.000Z" + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.814900", + "Timestamp": "2024-05-16T13:17:53.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.780000", - "Timestamp": "2019-10-15T23:10:05.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.809900", + "Timestamp": "2024-05-16T13:17:53.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.780000", - "Timestamp": "2019-10-15T23:10:05.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.684900", + "Timestamp": "2024-05-16T13:17:53.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.505600", - "Timestamp": "2019-10-15T23:09:12.000Z" + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.330100", + "Timestamp": "2024-05-16T13:17:53.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.347400", - "Timestamp": "2019-10-15T23:09:12.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.347300", + "Timestamp": "2024-05-16T13:17:53.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.475600", - "Timestamp": "2019-10-15T23:09:12.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.342300", + "Timestamp": "2024-05-16T13:17:53.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.317400", - "Timestamp": "2019-10-15T23:09:12.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.217300", + "Timestamp": "2024-05-16T13:17:53.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.375600", - "Timestamp": "2019-10-15T23:09:12.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.670700", + "Timestamp": "2024-05-16T13:17:53.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.217400", - "Timestamp": "2019-10-15T23:09:12.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.665700", + "Timestamp": "2024-05-16T13:17:53.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5dn.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T23:08:48.000Z" + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.540700", + "Timestamp": "2024-05-16T13:17:53.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.983800", - "Timestamp": "2019-10-15T23:08:46.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.289100", + "Timestamp": "2024-05-16T13:17:52.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.10xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.953800", - "Timestamp": "2019-10-15T23:08:46.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.167700", + "Timestamp": "2024-05-16T13:17:52.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.853800", - "Timestamp": "2019-10-15T23:08:46.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.177800", + "Timestamp": "2024-05-16T13:17:51.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.313100", - "Timestamp": "2019-10-15T23:08:33.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.163700", + "Timestamp": "2024-05-16T13:17:51.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "p2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.283100", - "Timestamp": "2019-10-15T23:08:33.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.338600", + "Timestamp": "2024-05-16T13:17:51.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.183100", - "Timestamp": "2019-10-15T23:08:33.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.574000", + "Timestamp": "2024-05-16T13:17:51.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.358900", - "Timestamp": "2019-10-15T23:08:32.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.241700", + "Timestamp": "2024-05-16T13:17:50.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.328900", - "Timestamp": "2019-10-15T23:08:32.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.238000", + "Timestamp": "2024-05-16T13:17:50.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.228900", - "Timestamp": "2019-10-15T23:08:32.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181700", + "Timestamp": "2024-05-16T13:17:50.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.572300", + "Timestamp": "2024-05-16T13:17:49.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.329000", - "Timestamp": "2019-10-15T23:08:32.000Z" + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.994400", + "Timestamp": "2024-05-16T13:17:49.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.299000", - "Timestamp": "2019-10-15T23:08:32.000Z" + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.989400", + "Timestamp": "2024-05-16T13:17:49.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.199000", - "Timestamp": "2019-10-15T23:08:32.000Z" + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.864400", + "Timestamp": "2024-05-16T13:17:49.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.523300", - "Timestamp": "2019-10-15T23:08:32.000Z" + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109000", + "Timestamp": "2024-05-16T13:17:49.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.493300", - "Timestamp": "2019-10-15T23:08:32.000Z" + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105300", + "Timestamp": "2024-05-16T13:17:49.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.393300", - "Timestamp": "2019-10-15T23:08:32.000Z" + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049000", + "Timestamp": "2024-05-16T13:17:49.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.407000", - "Timestamp": "2019-10-15T23:08:29.000Z" + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.387700", + "Timestamp": "2024-05-16T13:17:48.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.377000", - "Timestamp": "2019-10-15T23:08:29.000Z" + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.382700", + "Timestamp": "2024-05-16T13:17:48.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.277000", - "Timestamp": "2019-10-15T23:08:29.000Z" + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.257700", + "Timestamp": "2024-05-16T13:17:48.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.417000", - "Timestamp": "2019-10-15T23:08:26.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.364200", + "Timestamp": "2024-05-16T13:17:47.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.387000", - "Timestamp": "2019-10-15T23:08:26.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.359200", + "Timestamp": "2024-05-16T13:17:47.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.287000", - "Timestamp": "2019-10-15T23:08:26.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.234200", + "Timestamp": "2024-05-16T13:17:47.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.145000", - "Timestamp": "2019-10-15T23:08:18.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.127100", + "Timestamp": "2024-05-16T13:17:47.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.185000", - "Timestamp": "2019-10-15T23:08:18.000Z" + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.119100", + "Timestamp": "2024-05-16T13:17:47.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.085000", - "Timestamp": "2019-10-15T23:08:18.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.113900", + "Timestamp": "2024-05-16T13:17:47.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.582500", - "Timestamp": "2019-10-15T23:08:16.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166400", + "Timestamp": "2024-05-16T13:17:47.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.552500", - "Timestamp": "2019-10-15T23:08:16.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162700", + "Timestamp": "2024-05-16T13:17:47.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.452500", - "Timestamp": "2019-10-15T23:08:16.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T13:17:47.000Z" }, { "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.2xlarge", + "InstanceType": "m3.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.544900", - "Timestamp": "2019-10-15T23:01:03.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.216300", - "Timestamp": "2019-10-15T23:01:03.000Z" + "SpotPrice": "0.366700", + "Timestamp": "2024-05-16T13:17:46.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.186300", - "Timestamp": "2019-10-15T23:01:03.000Z" + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098300", + "Timestamp": "2024-05-16T13:17:46.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.086300", - "Timestamp": "2019-10-15T23:01:03.000Z" + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094600", + "Timestamp": "2024-05-16T13:17:46.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.100700", - "Timestamp": "2019-10-15T23:00:54.000Z" + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038300", + "Timestamp": "2024-05-16T13:17:46.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.140700", - "Timestamp": "2019-10-15T23:00:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.177200", + "Timestamp": "2024-05-16T13:17:46.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.040700", - "Timestamp": "2019-10-15T23:00:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173500", + "Timestamp": "2024-05-16T13:17:46.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.473800", - "Timestamp": "2019-10-15T23:00:52.000Z" + "InstanceType": "m7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.117200", + "Timestamp": "2024-05-16T13:17:46.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.443800", - "Timestamp": "2019-10-15T23:00:52.000Z" + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.481100", + "Timestamp": "2024-05-16T13:17:45.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.343800", - "Timestamp": "2019-10-15T23:00:52.000Z" + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.476100", + "Timestamp": "2024-05-16T13:17:45.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.148300", - "Timestamp": "2019-10-15T23:00:46.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.351100", + "Timestamp": "2024-05-16T13:17:45.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.188300", - "Timestamp": "2019-10-15T23:00:46.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.035800", + "Timestamp": "2024-05-16T13:17:45.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.088300", - "Timestamp": "2019-10-15T23:00:46.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.944200", + "Timestamp": "2024-05-16T13:17:45.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.565700", - "Timestamp": "2019-10-15T23:00:41.000Z" + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.148000", + "Timestamp": "2024-05-16T13:17:45.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.535700", - "Timestamp": "2019-10-15T23:00:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.297800", + "Timestamp": "2024-05-16T13:17:44.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.435700", - "Timestamp": "2019-10-15T23:00:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.119500", + "Timestamp": "2024-05-16T13:17:44.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "p3dn.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "9.493600", - "Timestamp": "2019-10-15T23:00:33.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.114500", + "Timestamp": "2024-05-16T13:17:44.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "p3dn.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "9.493600", - "Timestamp": "2019-10-15T23:00:33.000Z" + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.989500", + "Timestamp": "2024-05-16T13:17:44.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "p3dn.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "9.463600", - "Timestamp": "2019-10-15T23:00:33.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.276800", + "Timestamp": "2024-05-16T13:17:44.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "p3dn.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "9.463600", - "Timestamp": "2019-10-15T23:00:33.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.849200", + "Timestamp": "2024-05-16T13:17:43.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "p3dn.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "9.363600", - "Timestamp": "2019-10-15T23:00:33.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.030500", + "Timestamp": "2024-05-16T13:17:43.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "p3dn.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "9.363600", - "Timestamp": "2019-10-15T23:00:33.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.025500", + "Timestamp": "2024-05-16T13:17:43.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "p3dn.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "13.779600", - "Timestamp": "2019-10-15T23:00:24.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.900500", + "Timestamp": "2024-05-16T13:17:43.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "p3dn.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "13.779600", - "Timestamp": "2019-10-15T23:00:24.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.594300", + "Timestamp": "2024-05-16T13:17:42.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.464400", - "Timestamp": "2019-10-15T23:00:21.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.434400", - "Timestamp": "2019-10-15T23:00:21.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.334400", - "Timestamp": "2019-10-15T23:00:21.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.589300", + "Timestamp": "2024-05-16T13:17:42.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.274800", - "Timestamp": "2019-10-15T23:00:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.464300", + "Timestamp": "2024-05-16T13:17:42.000Z" }, { "AvailabilityZone": "us-east-1d", "InstanceType": "m3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.288700", - "Timestamp": "2019-10-15T23:00:19.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.244800", - "Timestamp": "2019-10-15T23:00:19.000Z" + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.372300", + "Timestamp": "2024-05-16T13:17:42.000Z" }, { "AvailabilityZone": "us-east-1d", "InstanceType": "m3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.258700", - "Timestamp": "2019-10-15T23:00:19.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.144800", - "Timestamp": "2019-10-15T23:00:19.000Z" + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.342300", + "Timestamp": "2024-05-16T13:17:42.000Z" }, { "AvailabilityZone": "us-east-1d", "InstanceType": "m3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.158700", - "Timestamp": "2019-10-15T23:00:19.000Z" - }, - { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.261100", - "Timestamp": "2019-10-15T23:00:18.000Z" + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242300", + "Timestamp": "2024-05-16T13:17:42.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.231100", - "Timestamp": "2019-10-15T23:00:18.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.527500", + "Timestamp": "2024-05-16T13:17:42.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.131100", - "Timestamp": "2019-10-15T23:00:18.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.948300", + "Timestamp": "2024-05-16T13:17:42.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.330800", - "Timestamp": "2019-10-15T23:00:03.000Z" + "InstanceType": "r5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.943300", + "Timestamp": "2024-05-16T13:17:42.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r4.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.300800", - "Timestamp": "2019-10-15T23:00:03.000Z" + "InstanceType": "r5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.818300", + "Timestamp": "2024-05-16T13:17:42.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.200800", - "Timestamp": "2019-10-15T23:00:03.000Z" + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "15.198800", + "Timestamp": "2024-05-16T13:17:42.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.152700", - "Timestamp": "2019-10-15T22:52:36.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "15.912300", + "Timestamp": "2024-05-16T13:17:42.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.192700", - "Timestamp": "2019-10-15T22:52:36.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.086700", + "Timestamp": "2024-05-16T13:17:41.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.092700", - "Timestamp": "2019-10-15T22:52:36.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.081700", + "Timestamp": "2024-05-16T13:17:41.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.168200", - "Timestamp": "2019-10-15T22:52:35.000Z" + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.956700", + "Timestamp": "2024-05-16T13:17:41.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.579800", + "Timestamp": "2024-05-16T13:17:41.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.208200", - "Timestamp": "2019-10-15T22:52:35.000Z" + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.856400", + "Timestamp": "2024-05-16T13:17:40.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.108200", - "Timestamp": "2019-10-15T22:52:35.000Z" + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.851400", + "Timestamp": "2024-05-16T13:17:40.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.130600", - "Timestamp": "2019-10-15T22:52:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.726400", + "Timestamp": "2024-05-16T13:17:40.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.170600", - "Timestamp": "2019-10-15T22:52:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.374700", + "Timestamp": "2024-05-16T13:17:40.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.070600", - "Timestamp": "2019-10-15T22:52:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.369700", + "Timestamp": "2024-05-16T13:17:40.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.674100", - "Timestamp": "2019-10-15T22:52:26.000Z" + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.244700", + "Timestamp": "2024-05-16T13:17:40.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.385600", - "Timestamp": "2019-10-15T22:52:26.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.384300", + "Timestamp": "2024-05-16T13:17:39.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.644100", - "Timestamp": "2019-10-15T22:52:26.000Z" + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.354300", + "Timestamp": "2024-05-16T13:17:39.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.355600", - "Timestamp": "2019-10-15T22:52:26.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.254300", + "Timestamp": "2024-05-16T13:17:39.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.544100", - "Timestamp": "2019-10-15T22:52:26.000Z" + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.028000", + "Timestamp": "2024-05-16T13:17:39.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.255600", - "Timestamp": "2019-10-15T22:52:26.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.093700", + "Timestamp": "2024-05-16T13:17:39.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.146400", - "Timestamp": "2019-10-15T22:52:20.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.088700", + "Timestamp": "2024-05-16T13:17:39.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.140400", - "Timestamp": "2019-10-15T22:52:20.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.963700", + "Timestamp": "2024-05-16T13:17:39.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.186400", - "Timestamp": "2019-10-15T22:52:20.000Z" + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.568600", + "Timestamp": "2024-05-16T13:17:39.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.180400", - "Timestamp": "2019-10-15T22:52:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095100", + "Timestamp": "2024-05-16T13:17:39.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.086400", - "Timestamp": "2019-10-15T22:52:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066100", + "Timestamp": "2024-05-16T13:17:39.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.080400", - "Timestamp": "2019-10-15T22:52:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035100", + "Timestamp": "2024-05-16T13:17:39.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.181200", - "Timestamp": "2019-10-15T22:52:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.018600", + "Timestamp": "2024-05-16T13:17:38.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.151200", - "Timestamp": "2019-10-15T22:52:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.208200", + "Timestamp": "2024-05-16T13:17:38.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.051200", - "Timestamp": "2019-10-15T22:52:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.178200", + "Timestamp": "2024-05-16T13:17:38.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.481900", - "Timestamp": "2019-10-15T22:52:14.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.078200", + "Timestamp": "2024-05-16T13:17:38.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.451900", - "Timestamp": "2019-10-15T22:52:14.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.610800", + "Timestamp": "2024-05-16T13:17:38.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.351900", - "Timestamp": "2019-10-15T22:52:14.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.406800", + "Timestamp": "2024-05-16T13:17:38.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.700000", - "Timestamp": "2019-10-15T22:52:02.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.376800", + "Timestamp": "2024-05-16T13:17:38.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.700000", - "Timestamp": "2019-10-15T22:52:02.000Z" + "InstanceType": "g6.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.276800", + "Timestamp": "2024-05-16T13:17:38.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.567300", - "Timestamp": "2019-10-15T22:52:02.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.486800", + "Timestamp": "2024-05-16T13:17:37.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.670000", - "Timestamp": "2019-10-15T22:52:02.000Z" + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.481800", + "Timestamp": "2024-05-16T13:17:37.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.670000", - "Timestamp": "2019-10-15T22:52:02.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.356800", + "Timestamp": "2024-05-16T13:17:37.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.537300", - "Timestamp": "2019-10-15T22:52:02.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.665000", + "Timestamp": "2024-05-16T13:17:37.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.570000", - "Timestamp": "2019-10-15T22:52:02.000Z" + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.660000", + "Timestamp": "2024-05-16T13:17:37.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.570000", - "Timestamp": "2019-10-15T22:52:02.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.535000", + "Timestamp": "2024-05-16T13:17:37.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.437300", - "Timestamp": "2019-10-15T22:52:02.000Z" + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.714600", + "Timestamp": "2024-05-16T13:17:37.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.042000", - "Timestamp": "2019-10-15T22:52:00.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.042000", - "Timestamp": "2019-10-15T22:52:00.000Z" + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.632100", + "Timestamp": "2024-05-16T13:17:37.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.944600", - "Timestamp": "2019-10-15T22:52:00.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.602100", + "Timestamp": "2024-05-16T13:17:37.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.129000", - "Timestamp": "2019-10-15T22:51:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.502100", + "Timestamp": "2024-05-16T13:17:37.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.169000", - "Timestamp": "2019-10-15T22:51:57.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.426600", + "Timestamp": "2024-05-16T13:17:37.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.069000", - "Timestamp": "2019-10-15T22:51:57.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.421600", + "Timestamp": "2024-05-16T13:17:37.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.293700", - "Timestamp": "2019-10-15T22:51:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.296600", + "Timestamp": "2024-05-16T13:17:37.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.131600", - "Timestamp": "2019-10-15T22:51:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.197800", + "Timestamp": "2024-05-16T13:17:37.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.171600", - "Timestamp": "2019-10-15T22:51:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193800", + "Timestamp": "2024-05-16T13:17:37.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.071600", - "Timestamp": "2019-10-15T22:51:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137800", + "Timestamp": "2024-05-16T13:17:37.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.362800", - "Timestamp": "2019-10-15T22:51:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.227100", + "Timestamp": "2024-05-16T13:17:37.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.332800", - "Timestamp": "2019-10-15T22:51:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.223100", + "Timestamp": "2024-05-16T13:17:37.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.232800", - "Timestamp": "2019-10-15T22:51:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167100", + "Timestamp": "2024-05-16T13:17:37.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.682300", - "Timestamp": "2019-10-15T22:51:54.000Z" + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122800", + "Timestamp": "2024-05-16T13:17:36.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.652300", - "Timestamp": "2019-10-15T22:51:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139700", + "Timestamp": "2024-05-16T13:17:36.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.552300", - "Timestamp": "2019-10-15T22:51:54.000Z" + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118800", + "Timestamp": "2024-05-16T13:17:36.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.297000", - "Timestamp": "2019-10-15T22:51:51.000Z" + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135700", + "Timestamp": "2024-05-16T13:17:36.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-15T22:51:51.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062800", + "Timestamp": "2024-05-16T13:17:36.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.167000", - "Timestamp": "2019-10-15T22:51:51.000Z" + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079700", + "Timestamp": "2024-05-16T13:17:36.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.374300", - "Timestamp": "2019-10-15T22:51:50.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.734500", + "Timestamp": "2024-05-16T13:17:36.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.344300", - "Timestamp": "2019-10-15T22:51:50.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.729500", + "Timestamp": "2024-05-16T13:17:36.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.244300", - "Timestamp": "2019-10-15T22:51:50.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.604500", + "Timestamp": "2024-05-16T13:17:36.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.016100", - "Timestamp": "2019-10-15T22:51:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.274600", + "Timestamp": "2024-05-16T13:17:36.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.821900", - "Timestamp": "2019-10-15T22:51:47.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.485800", + "Timestamp": "2024-05-16T13:17:36.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.842100", - "Timestamp": "2019-10-15T22:51:43.000Z" + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.480800", + "Timestamp": "2024-05-16T13:17:36.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.812100", - "Timestamp": "2019-10-15T22:51:43.000Z" + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.355800", + "Timestamp": "2024-05-16T13:17:36.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.712100", - "Timestamp": "2019-10-15T22:51:43.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.315900", + "Timestamp": "2024-05-16T13:17:35.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.090400", - "Timestamp": "2019-10-15T22:51:35.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.310900", + "Timestamp": "2024-05-16T13:17:35.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "p3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.060400", - "Timestamp": "2019-10-15T22:51:35.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.185900", + "Timestamp": "2024-05-16T13:17:35.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.960400", - "Timestamp": "2019-10-15T22:51:35.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.289800", + "Timestamp": "2024-05-16T13:17:35.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.141400", - "Timestamp": "2019-10-15T22:51:32.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.284800", + "Timestamp": "2024-05-16T13:17:35.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.181400", - "Timestamp": "2019-10-15T22:51:32.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159800", + "Timestamp": "2024-05-16T13:17:35.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.081400", - "Timestamp": "2019-10-15T22:51:32.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.158400", + "Timestamp": "2024-05-16T13:17:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.326000", - "Timestamp": "2019-10-15T22:51:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.582200", + "Timestamp": "2024-05-16T13:17:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.296000", - "Timestamp": "2019-10-15T22:51:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.552200", + "Timestamp": "2024-05-16T13:17:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.196000", - "Timestamp": "2019-10-15T22:51:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.452200", + "Timestamp": "2024-05-16T13:17:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.128000", - "Timestamp": "2019-10-15T22:44:07.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163500", + "Timestamp": "2024-05-16T13:17:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.168000", - "Timestamp": "2019-10-15T22:44:07.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159800", + "Timestamp": "2024-05-16T13:17:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.068000", - "Timestamp": "2019-10-15T22:44:07.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T13:17:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.265400", - "Timestamp": "2019-10-15T22:44:00.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.670900", + "Timestamp": "2024-05-16T13:17:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.235400", - "Timestamp": "2019-10-15T22:44:00.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.665900", + "Timestamp": "2024-05-16T13:17:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.135400", - "Timestamp": "2019-10-15T22:44:00.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.540900", + "Timestamp": "2024-05-16T13:17:35.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.151800", - "Timestamp": "2019-10-15T22:43:43.000Z" + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-16T13:17:35.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.191800", - "Timestamp": "2019-10-15T22:43:43.000Z" + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T13:17:35.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.091800", - "Timestamp": "2019-10-15T22:43:43.000Z" + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047200", + "Timestamp": "2024-05-16T13:17:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.958300", - "Timestamp": "2019-10-15T22:43:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.447400", + "Timestamp": "2024-05-16T13:17:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.928300", - "Timestamp": "2019-10-15T22:43:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.040000", + "Timestamp": "2024-05-16T13:17:34.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.828300", - "Timestamp": "2019-10-15T22:43:41.000Z" + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.468700", + "Timestamp": "2024-05-16T13:17:33.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.699800", - "Timestamp": "2019-10-15T22:43:28.000Z" + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.463700", + "Timestamp": "2024-05-16T13:17:33.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.669800", - "Timestamp": "2019-10-15T22:43:28.000Z" + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.338700", + "Timestamp": "2024-05-16T13:17:33.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.569800", - "Timestamp": "2019-10-15T22:43:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099400", + "Timestamp": "2024-05-16T13:17:33.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.292700", - "Timestamp": "2019-10-15T22:43:28.000Z" + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095700", + "Timestamp": "2024-05-16T13:17:33.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.295400", - "Timestamp": "2019-10-15T22:43:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039400", + "Timestamp": "2024-05-16T13:17:33.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.297000", - "Timestamp": "2019-10-15T22:43:28.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.025400", + "Timestamp": "2024-05-16T13:17:33.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.143600", - "Timestamp": "2019-10-15T22:43:28.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.020400", + "Timestamp": "2024-05-16T13:17:33.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.183600", - "Timestamp": "2019-10-15T22:43:28.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.895400", + "Timestamp": "2024-05-16T13:17:33.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.083600", - "Timestamp": "2019-10-15T22:43:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.361200", + "Timestamp": "2024-05-16T13:17:33.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.976300", - "Timestamp": "2019-10-15T22:43:27.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.356200", + "Timestamp": "2024-05-16T13:17:33.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.946300", - "Timestamp": "2019-10-15T22:43:27.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.231200", + "Timestamp": "2024-05-16T13:17:33.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.846300", - "Timestamp": "2019-10-15T22:43:27.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.798400", + "Timestamp": "2024-05-16T13:17:32.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.809300", - "Timestamp": "2019-10-15T22:43:04.000Z" + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.793400", + "Timestamp": "2024-05-16T13:17:32.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.846400", - "Timestamp": "2019-10-15T22:43:04.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.668400", + "Timestamp": "2024-05-16T13:17:32.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.779300", - "Timestamp": "2019-10-15T22:43:04.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.514000", + "Timestamp": "2024-05-16T13:17:32.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.816400", - "Timestamp": "2019-10-15T22:43:04.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.484000", + "Timestamp": "2024-05-16T13:17:32.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.679300", - "Timestamp": "2019-10-15T22:43:04.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.384000", + "Timestamp": "2024-05-16T13:17:32.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.716400", - "Timestamp": "2019-10-15T22:43:04.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123900", + "Timestamp": "2024-05-16T13:17:31.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.504000", - "Timestamp": "2019-10-15T22:43:03.000Z" + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120200", + "Timestamp": "2024-05-16T13:17:31.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.137900", - "Timestamp": "2019-10-15T22:43:02.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063900", + "Timestamp": "2024-05-16T13:17:31.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.177900", - "Timestamp": "2019-10-15T22:43:02.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.463800", + "Timestamp": "2024-05-16T13:17:31.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.077900", - "Timestamp": "2019-10-15T22:43:02.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.458800", + "Timestamp": "2024-05-16T13:17:31.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.333800", + "Timestamp": "2024-05-16T13:17:31.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.104500", + "Timestamp": "2024-05-16T13:17:31.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.125700", - "Timestamp": "2019-10-15T22:43:02.000Z" + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.757000", + "Timestamp": "2024-05-16T13:17:31.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.165700", - "Timestamp": "2019-10-15T22:43:02.000Z" + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.752000", + "Timestamp": "2024-05-16T13:17:31.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.065700", - "Timestamp": "2019-10-15T22:43:02.000Z" + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.627000", + "Timestamp": "2024-05-16T13:17:31.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.110400", - "Timestamp": "2019-10-15T22:41:04.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.559700", + "Timestamp": "2024-05-16T13:17:31.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.110400", - "Timestamp": "2019-10-15T22:41:04.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.556000", + "Timestamp": "2024-05-16T13:17:31.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.110400", - "Timestamp": "2019-10-15T22:41:04.000Z" + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.499700", + "Timestamp": "2024-05-16T13:17:31.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.110400", - "Timestamp": "2019-10-15T22:41:04.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.644700", + "Timestamp": "2024-05-16T13:17:31.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.110400", - "Timestamp": "2019-10-15T22:41:04.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.639700", + "Timestamp": "2024-05-16T13:17:31.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.984000", - "Timestamp": "2019-10-15T22:41:04.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.514700", + "Timestamp": "2024-05-16T13:17:31.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.251900", - "Timestamp": "2019-10-15T22:40:39.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.142100", + "Timestamp": "2024-05-16T13:17:31.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.251900", - "Timestamp": "2019-10-15T22:40:39.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-16T13:17:31.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.251900", - "Timestamp": "2019-10-15T22:40:39.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095100", + "Timestamp": "2024-05-16T13:17:31.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.251900", - "Timestamp": "2019-10-15T22:40:39.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038800", + "Timestamp": "2024-05-16T13:17:31.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.251900", - "Timestamp": "2019-10-15T22:40:39.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.718400", + "Timestamp": "2024-05-16T13:17:31.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.251900", - "Timestamp": "2019-10-15T22:40:39.000Z" + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.713400", + "Timestamp": "2024-05-16T13:17:31.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.294800", - "Timestamp": "2019-10-15T22:35:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.588400", + "Timestamp": "2024-05-16T13:17:31.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.139000", - "Timestamp": "2019-10-15T22:35:06.000Z" + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128700", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.179000", - "Timestamp": "2019-10-15T22:35:06.000Z" + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125000", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.079000", - "Timestamp": "2019-10-15T22:35:06.000Z" + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068700", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.293400", - "Timestamp": "2019-10-15T22:35:04.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.065500", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.103200", - "Timestamp": "2019-10-15T22:35:03.000Z" + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098600", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.143200", - "Timestamp": "2019-10-15T22:35:03.000Z" + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094900", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.043200", - "Timestamp": "2019-10-15T22:35:03.000Z" + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038600", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.613800", - "Timestamp": "2019-10-15T22:34:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.856300", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.583800", - "Timestamp": "2019-10-15T22:34:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.851300", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.483800", - "Timestamp": "2019-10-15T22:34:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.726300", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.378000", - "Timestamp": "2019-10-15T22:33:58.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.488400", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.348000", - "Timestamp": "2019-10-15T22:33:58.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.483400", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.248000", - "Timestamp": "2019-10-15T22:33:58.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.358400", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.008100", - "Timestamp": "2019-10-15T22:27:29.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.842200", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.042000", - "Timestamp": "2019-10-15T22:27:05.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.812200", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.511000", - "Timestamp": "2019-10-15T22:27:04.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.712200", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.481000", - "Timestamp": "2019-10-15T22:27:04.000Z" + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.229400", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.381000", - "Timestamp": "2019-10-15T22:27:04.000Z" + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.279500", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.312400", - "Timestamp": "2019-10-15T22:26:45.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.274500", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.282400", - "Timestamp": "2019-10-15T22:26:45.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149500", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.182400", - "Timestamp": "2019-10-15T22:26:45.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.389100", - "Timestamp": "2019-10-15T22:26:37.000Z" + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.528800", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.359100", - "Timestamp": "2019-10-15T22:26:37.000Z" + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.116600", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.259100", - "Timestamp": "2019-10-15T22:26:37.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.184900", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.320200", - "Timestamp": "2019-10-15T22:26:31.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.154900", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.290200", - "Timestamp": "2019-10-15T22:26:31.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.054900", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.190200", - "Timestamp": "2019-10-15T22:26:31.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101800", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.331200", - "Timestamp": "2019-10-15T22:26:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.301200", - "Timestamp": "2019-10-15T22:26:29.000Z" + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097800", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.201200", - "Timestamp": "2019-10-15T22:26:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103100", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.408900", - "Timestamp": "2019-10-15T22:26:26.000Z" + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041800", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.378900", - "Timestamp": "2019-10-15T22:26:26.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047100", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.278900", - "Timestamp": "2019-10-15T22:26:26.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.453400", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.538900", - "Timestamp": "2019-10-15T22:26:26.000Z" + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.585300", + "Timestamp": "2024-05-16T13:17:29.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.508900", - "Timestamp": "2019-10-15T22:26:26.000Z" + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.580300", + "Timestamp": "2024-05-16T13:17:29.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.408900", - "Timestamp": "2019-10-15T22:26:26.000Z" + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.455300", + "Timestamp": "2024-05-16T13:17:29.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.202300", - "Timestamp": "2019-10-15T22:26:24.000Z" + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129900", + "Timestamp": "2024-05-16T13:17:29.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.225900", - "Timestamp": "2019-10-15T22:26:24.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126200", + "Timestamp": "2024-05-16T13:17:29.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.242300", - "Timestamp": "2019-10-15T22:26:24.000Z" + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069900", + "Timestamp": "2024-05-16T13:17:29.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.265900", - "Timestamp": "2019-10-15T22:26:24.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.570700", + "Timestamp": "2024-05-16T13:17:29.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.565700", + "Timestamp": "2024-05-16T13:17:29.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.440700", + "Timestamp": "2024-05-16T13:17:29.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.142300", - "Timestamp": "2019-10-15T22:26:24.000Z" + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.611200", + "Timestamp": "2024-05-16T13:17:29.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.165900", - "Timestamp": "2019-10-15T22:26:24.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.606200", + "Timestamp": "2024-05-16T13:17:29.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.192900", - "Timestamp": "2019-10-15T22:26:16.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.481200", + "Timestamp": "2024-05-16T13:17:29.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.982400", - "Timestamp": "2019-10-15T22:26:16.000Z" + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.204900", + "Timestamp": "2024-05-16T13:17:29.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.162900", - "Timestamp": "2019-10-15T22:26:16.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.200900", + "Timestamp": "2024-05-16T13:17:29.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.952400", - "Timestamp": "2019-10-15T22:26:16.000Z" + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144900", + "Timestamp": "2024-05-16T13:17:29.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.062900", - "Timestamp": "2019-10-15T22:26:16.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.718700", + "Timestamp": "2024-05-16T13:17:28.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.852400", - "Timestamp": "2019-10-15T22:26:16.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.713700", + "Timestamp": "2024-05-16T13:17:28.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.249600", - "Timestamp": "2019-10-15T22:25:14.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.588700", + "Timestamp": "2024-05-16T13:17:28.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.249600", - "Timestamp": "2019-10-15T22:25:14.000Z" + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118200", + "Timestamp": "2024-05-16T13:17:28.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.249600", - "Timestamp": "2019-10-15T22:25:14.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158200", + "Timestamp": "2024-05-16T13:17:28.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.249600", - "Timestamp": "2019-10-15T22:25:14.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058200", + "Timestamp": "2024-05-16T13:17:28.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.249600", - "Timestamp": "2019-10-15T22:25:14.000Z" + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.563000", + "Timestamp": "2024-05-16T13:17:28.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.295200", - "Timestamp": "2019-10-15T22:18:59.000Z" + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.558000", + "Timestamp": "2024-05-16T13:17:28.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.499500", - "Timestamp": "2019-10-15T22:18:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.433000", + "Timestamp": "2024-05-16T13:17:28.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.469500", - "Timestamp": "2019-10-15T22:18:51.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.929600", + "Timestamp": "2024-05-16T13:17:27.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.369500", - "Timestamp": "2019-10-15T22:18:51.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.924600", + "Timestamp": "2024-05-16T13:17:27.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.648600", - "Timestamp": "2019-10-15T22:18:47.000Z" - }, - { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.618600", - "Timestamp": "2019-10-15T22:18:47.000Z" - }, - { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.518600", - "Timestamp": "2019-10-15T22:18:47.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.799600", + "Timestamp": "2024-05-16T13:17:27.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.504600", - "Timestamp": "2019-10-15T22:18:36.000Z" + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.521200", + "Timestamp": "2024-05-16T13:17:26.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.474600", - "Timestamp": "2019-10-15T22:18:36.000Z" + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.491200", + "Timestamp": "2024-05-16T13:17:26.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.374600", - "Timestamp": "2019-10-15T22:18:36.000Z" + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.391200", + "Timestamp": "2024-05-16T13:17:26.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5ad.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.173500", - "Timestamp": "2019-10-15T22:18:36.000Z" + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.133400", + "Timestamp": "2024-05-16T13:17:26.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5ad.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.213500", - "Timestamp": "2019-10-15T22:18:36.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.800600", + "Timestamp": "2024-05-16T13:17:26.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5ad.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.113500", - "Timestamp": "2019-10-15T22:18:36.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134100", + "Timestamp": "2024-05-16T13:17:26.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.456200", - "Timestamp": "2019-10-15T22:18:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130400", + "Timestamp": "2024-05-16T13:17:26.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g3s.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.496200", - "Timestamp": "2019-10-15T22:18:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074100", + "Timestamp": "2024-05-16T13:17:26.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.396200", - "Timestamp": "2019-10-15T22:18:29.000Z" + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.052300", + "Timestamp": "2024-05-16T13:17:26.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.117500", - "Timestamp": "2019-10-15T22:18:28.000Z" + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.102200", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "us-east-1e", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124500", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "us-east-1e", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164500", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "us-east-1e", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064500", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.135600", + "Timestamp": "2024-05-16T13:17:25.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "t3a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.087400", - "Timestamp": "2019-10-15T22:18:22.000Z" + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.897400", + "Timestamp": "2024-05-16T13:17:25.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "t3a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.127400", - "Timestamp": "2019-10-15T22:18:22.000Z" + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.892400", + "Timestamp": "2024-05-16T13:17:25.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "t3a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.027400", - "Timestamp": "2019-10-15T22:18:22.000Z" + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.767400", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.714800", + "Timestamp": "2024-05-16T13:17:25.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t2.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.089600", - "Timestamp": "2019-10-15T22:18:20.000Z" + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.604100", + "Timestamp": "2024-05-16T13:17:25.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t2.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.129600", - "Timestamp": "2019-10-15T22:18:20.000Z" + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.599100", + "Timestamp": "2024-05-16T13:17:25.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t2.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.029600", - "Timestamp": "2019-10-15T22:18:20.000Z" + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.474100", + "Timestamp": "2024-05-16T13:17:25.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.298700", - "Timestamp": "2019-10-15T22:18:20.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.042700", + "Timestamp": "2024-05-16T13:17:25.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.268700", - "Timestamp": "2019-10-15T22:18:20.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.393100", + "Timestamp": "2024-05-16T13:17:24.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.168700", - "Timestamp": "2019-10-15T22:18:20.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.389400", + "Timestamp": "2024-05-16T13:17:24.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.777600", - "Timestamp": "2019-10-15T22:18:20.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.333100", + "Timestamp": "2024-05-16T13:17:24.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.747600", - "Timestamp": "2019-10-15T22:18:20.000Z" + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.435800", + "Timestamp": "2024-05-16T13:17:23.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.647600", - "Timestamp": "2019-10-15T22:18:20.000Z" + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.430800", + "Timestamp": "2024-05-16T13:17:23.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.538500", - "Timestamp": "2019-10-15T22:18:15.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.305800", + "Timestamp": "2024-05-16T13:17:23.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.508500", - "Timestamp": "2019-10-15T22:18:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.480500", + "Timestamp": "2024-05-16T13:17:22.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.408500", - "Timestamp": "2019-10-15T22:18:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.475500", + "Timestamp": "2024-05-16T13:17:22.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.290400", - "Timestamp": "2019-10-15T22:18:14.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.350500", + "Timestamp": "2024-05-16T13:17:22.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.951400", - "Timestamp": "2019-10-15T22:18:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.522100", + "Timestamp": "2024-05-16T13:17:22.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.921400", - "Timestamp": "2019-10-15T22:18:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.517100", + "Timestamp": "2024-05-16T13:17:22.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.821400", - "Timestamp": "2019-10-15T22:18:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.392100", + "Timestamp": "2024-05-16T13:17:22.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.455100", - "Timestamp": "2019-10-15T22:18:07.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.934500", + "Timestamp": "2024-05-16T13:17:22.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.425100", - "Timestamp": "2019-10-15T22:18:07.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.929500", + "Timestamp": "2024-05-16T13:17:22.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.325100", - "Timestamp": "2019-10-15T22:18:07.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.804500", + "Timestamp": "2024-05-16T13:17:22.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "p2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.413600", - "Timestamp": "2019-10-15T22:17:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.562300", + "Timestamp": "2024-05-16T13:17:22.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "p2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.453600", - "Timestamp": "2019-10-15T22:17:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.251500", + "Timestamp": "2024-05-16T13:17:22.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "p2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.353600", - "Timestamp": "2019-10-15T22:17:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.962500", + "Timestamp": "2024-05-16T13:17:21.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.381600", - "Timestamp": "2019-10-15T22:14:08.000Z" + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.712900", + "Timestamp": "2024-05-16T13:17:21.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.381600", - "Timestamp": "2019-10-15T22:14:08.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.374800", + "Timestamp": "2024-05-16T13:17:21.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.381600", - "Timestamp": "2019-10-15T22:14:08.000Z" + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.371100", + "Timestamp": "2024-05-16T13:17:21.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.381600", - "Timestamp": "2019-10-15T22:14:08.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.314800", + "Timestamp": "2024-05-16T13:17:21.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.381600", - "Timestamp": "2019-10-15T22:14:08.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.303600", - "Timestamp": "2019-10-15T22:13:36.000Z" + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.372400", + "Timestamp": "2024-05-16T13:17:20.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.303600", - "Timestamp": "2019-10-15T22:13:36.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.367400", + "Timestamp": "2024-05-16T13:17:20.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.303600", - "Timestamp": "2019-10-15T22:13:36.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242400", + "Timestamp": "2024-05-16T13:17:20.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.303600", - "Timestamp": "2019-10-15T22:13:36.000Z" + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.082300", + "Timestamp": "2024-05-16T13:17:20.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.303600", - "Timestamp": "2019-10-15T22:13:36.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.325200", + "Timestamp": "2024-05-16T13:17:19.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.273600", - "Timestamp": "2019-10-15T22:13:36.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.320200", + "Timestamp": "2024-05-16T13:17:19.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.273600", - "Timestamp": "2019-10-15T22:13:36.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195200", + "Timestamp": "2024-05-16T13:17:19.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.273600", - "Timestamp": "2019-10-15T22:13:36.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.366800", + "Timestamp": "2024-05-16T13:17:18.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.273600", - "Timestamp": "2019-10-15T22:13:36.000Z" + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.361800", + "Timestamp": "2024-05-16T13:17:18.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.273600", - "Timestamp": "2019-10-15T22:13:36.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.236800", + "Timestamp": "2024-05-16T13:17:18.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.173600", - "Timestamp": "2019-10-15T22:13:36.000Z" + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.329000", + "Timestamp": "2024-05-16T13:17:18.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.173600", - "Timestamp": "2019-10-15T22:13:36.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.324000", + "Timestamp": "2024-05-16T13:17:18.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.173600", - "Timestamp": "2019-10-15T22:13:36.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.199000", + "Timestamp": "2024-05-16T13:17:18.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.173600", - "Timestamp": "2019-10-15T22:13:36.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.866200", + "Timestamp": "2024-05-16T13:17:18.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.173600", - "Timestamp": "2019-10-15T22:13:36.000Z" + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.064200", + "Timestamp": "2024-05-16T13:17:18.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t2.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.066900", - "Timestamp": "2019-10-15T22:13:02.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.861200", + "Timestamp": "2024-05-16T13:17:18.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t2.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.066900", - "Timestamp": "2019-10-15T22:13:02.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.059200", + "Timestamp": "2024-05-16T13:17:18.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "t2.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.066900", - "Timestamp": "2019-10-15T22:13:02.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.736200", + "Timestamp": "2024-05-16T13:17:18.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t2.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.066900", - "Timestamp": "2019-10-15T22:13:02.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.934200", + "Timestamp": "2024-05-16T13:17:18.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t2.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.066900", - "Timestamp": "2019-10-15T22:13:02.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.640800", + "Timestamp": "2024-05-16T13:17:17.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "t2.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.036900", - "Timestamp": "2019-10-15T22:13:02.000Z" + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.635800", + "Timestamp": "2024-05-16T13:17:17.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t2.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.036900", - "Timestamp": "2019-10-15T22:13:02.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.510800", + "Timestamp": "2024-05-16T13:17:17.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "t2.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.036900", - "Timestamp": "2019-10-15T22:13:02.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.154300", + "Timestamp": "2024-05-16T13:17:17.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t2.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.036900", - "Timestamp": "2019-10-15T22:13:02.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.278000", + "Timestamp": "2024-05-16T13:17:17.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t2.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.036900", - "Timestamp": "2019-10-15T22:13:02.000Z" + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.721600", + "Timestamp": "2024-05-16T13:17:16.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t2.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.006900", - "Timestamp": "2019-10-15T22:13:02.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.910800", + "Timestamp": "2024-05-16T13:17:16.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t2.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.006900", - "Timestamp": "2019-10-15T22:13:02.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.905800", + "Timestamp": "2024-05-16T13:17:16.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "t2.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.006900", - "Timestamp": "2019-10-15T22:13:02.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.780800", + "Timestamp": "2024-05-16T13:17:16.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t2.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.006900", - "Timestamp": "2019-10-15T22:13:02.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.352300", + "Timestamp": "2024-05-16T13:17:16.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t2.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.006900", - "Timestamp": "2019-10-15T22:13:02.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.392300", + "Timestamp": "2024-05-16T13:17:16.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t2.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.015900", - "Timestamp": "2019-10-15T22:12:15.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.292300", + "Timestamp": "2024-05-16T13:17:16.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "t2.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.015900", - "Timestamp": "2019-10-15T22:12:15.000Z" + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.572500", + "Timestamp": "2024-05-16T13:17:15.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t2.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.015900", - "Timestamp": "2019-10-15T22:12:15.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.586000", + "Timestamp": "2024-05-16T13:17:15.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "t2.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.015900", - "Timestamp": "2019-10-15T22:12:15.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.581000", + "Timestamp": "2024-05-16T13:17:15.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t2.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.015900", - "Timestamp": "2019-10-15T22:12:15.000Z" + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.456000", + "Timestamp": "2024-05-16T13:17:15.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t2.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.015900", - "Timestamp": "2019-10-15T22:12:15.000Z" + "InstanceType": "m7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086100", + "Timestamp": "2024-05-16T13:17:15.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.262000", - "Timestamp": "2019-10-15T22:11:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082400", + "Timestamp": "2024-05-16T13:17:15.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.285700", - "Timestamp": "2019-10-15T22:11:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026100", + "Timestamp": "2024-05-16T13:17:15.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.291900", - "Timestamp": "2019-10-15T22:11:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.131200", + "Timestamp": "2024-05-16T13:17:15.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.232000", - "Timestamp": "2019-10-15T22:11:41.000Z" + "InstanceType": "c5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101600", + "Timestamp": "2024-05-16T13:17:14.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.255700", - "Timestamp": "2019-10-15T22:11:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097600", + "Timestamp": "2024-05-16T13:17:14.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.261900", - "Timestamp": "2019-10-15T22:11:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041600", + "Timestamp": "2024-05-16T13:17:14.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.132000", - "Timestamp": "2019-10-15T22:11:41.000Z" + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128300", + "Timestamp": "2024-05-16T13:17:14.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.155700", - "Timestamp": "2019-10-15T22:11:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124600", + "Timestamp": "2024-05-16T13:17:14.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068300", + "Timestamp": "2024-05-16T13:17:14.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.161900", - "Timestamp": "2019-10-15T22:11:41.000Z" + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "12.217200", + "Timestamp": "2024-05-16T13:17:13.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.497500", - "Timestamp": "2019-10-15T22:11:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.189500", + "Timestamp": "2024-05-16T13:17:13.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.497500", - "Timestamp": "2019-10-15T22:11:41.000Z" + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185500", + "Timestamp": "2024-05-16T13:17:13.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.497500", - "Timestamp": "2019-10-15T22:11:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129500", + "Timestamp": "2024-05-16T13:17:13.000Z" }, { - "AvailabilityZone": "us-east-1d", + "AvailabilityZone": "us-east-1f", "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.497500", - "Timestamp": "2019-10-15T22:11:41.000Z" + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.328400", + "Timestamp": "2024-05-16T13:17:13.000Z" }, { - "AvailabilityZone": "us-east-1c", + "AvailabilityZone": "us-east-1f", "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.497500", - "Timestamp": "2019-10-15T22:11:41.000Z" + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298400", + "Timestamp": "2024-05-16T13:17:13.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "f1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "4.090000", - "Timestamp": "2019-10-15T22:11:34.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.198400", + "Timestamp": "2024-05-16T13:17:13.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "f1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "4.090000", - "Timestamp": "2019-10-15T22:11:34.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.113100", + "Timestamp": "2024-05-16T13:17:12.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "f1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "4.090000", - "Timestamp": "2019-10-15T22:11:34.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076700", + "Timestamp": "2024-05-16T13:17:12.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "f1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "4.090000", - "Timestamp": "2019-10-15T22:11:34.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073000", + "Timestamp": "2024-05-16T13:17:12.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "f1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "13.330000", - "Timestamp": "2019-10-15T22:11:34.000Z" + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016700", + "Timestamp": "2024-05-16T13:17:12.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "f1.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "4.060000", - "Timestamp": "2019-10-15T22:11:34.000Z" + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.171000", + "Timestamp": "2024-05-16T13:17:12.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "f1.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "4.060000", - "Timestamp": "2019-10-15T22:11:34.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147100", + "Timestamp": "2024-05-16T13:17:12.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "f1.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "4.060000", - "Timestamp": "2019-10-15T22:11:34.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143100", + "Timestamp": "2024-05-16T13:17:12.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "f1.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "4.060000", - "Timestamp": "2019-10-15T22:11:34.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087100", + "Timestamp": "2024-05-16T13:17:12.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "f1.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "13.300000", - "Timestamp": "2019-10-15T22:11:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.168100", + "Timestamp": "2024-05-16T13:17:12.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "f1.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.960000", - "Timestamp": "2019-10-15T22:11:34.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.512600", + "Timestamp": "2024-05-16T13:17:12.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "f1.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.960000", - "Timestamp": "2019-10-15T22:11:34.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.507600", + "Timestamp": "2024-05-16T13:17:12.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "f1.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.960000", - "Timestamp": "2019-10-15T22:11:34.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.382600", + "Timestamp": "2024-05-16T13:17:12.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "f1.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.960000", - "Timestamp": "2019-10-15T22:11:34.000Z" + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101900", + "Timestamp": "2024-05-16T13:17:12.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "f1.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "13.200000", - "Timestamp": "2019-10-15T22:11:34.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098200", + "Timestamp": "2024-05-16T13:17:12.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3a.nano", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.061800", - "Timestamp": "2019-10-15T22:11:29.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041900", + "Timestamp": "2024-05-16T13:17:12.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.nano", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.061800", - "Timestamp": "2019-10-15T22:11:29.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147400", + "Timestamp": "2024-05-16T13:17:11.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.nano", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.061700", - "Timestamp": "2019-10-15T22:11:29.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143700", + "Timestamp": "2024-05-16T13:17:11.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.nano", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.061700", - "Timestamp": "2019-10-15T22:11:29.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087400", + "Timestamp": "2024-05-16T13:17:11.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "t3a.nano", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-15T22:11:29.000Z" + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.282700", + "Timestamp": "2024-05-16T13:17:11.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.nano", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-15T22:11:29.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.289200", + "Timestamp": "2024-05-16T13:17:11.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.nano", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.101700", - "Timestamp": "2019-10-15T22:11:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.277700", + "Timestamp": "2024-05-16T13:17:11.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.nano", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.101700", - "Timestamp": "2019-10-15T22:11:29.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.284200", + "Timestamp": "2024-05-16T13:17:11.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "t3a.nano", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.001800", - "Timestamp": "2019-10-15T22:11:29.000Z" + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.152700", + "Timestamp": "2024-05-16T13:17:11.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.nano", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.001800", - "Timestamp": "2019-10-15T22:11:29.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159200", + "Timestamp": "2024-05-16T13:17:11.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.nano", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.001700", - "Timestamp": "2019-10-15T22:11:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.490400", + "Timestamp": "2024-05-16T13:17:11.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.nano", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.001700", - "Timestamp": "2019-10-15T22:11:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.485400", + "Timestamp": "2024-05-16T13:17:11.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "h1.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.132000", - "Timestamp": "2019-10-15T22:11:14.000Z" + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.360400", + "Timestamp": "2024-05-16T13:17:11.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "h1.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.132000", - "Timestamp": "2019-10-15T22:11:14.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.007000", + "Timestamp": "2024-05-16T13:05:14.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "h1.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.132000", - "Timestamp": "2019-10-15T22:11:14.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.323600", + "Timestamp": "2024-05-16T13:03:58.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "h1.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.132000", - "Timestamp": "2019-10-15T22:11:14.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.318600", + "Timestamp": "2024-05-16T13:03:58.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "h1.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.790000", - "Timestamp": "2019-10-15T22:11:12.000Z" + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.193600", + "Timestamp": "2024-05-16T13:03:58.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "h1.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.790000", - "Timestamp": "2019-10-15T22:11:12.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.937600", + "Timestamp": "2024-05-16T13:03:56.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "h1.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.790000", - "Timestamp": "2019-10-15T22:11:12.000Z" + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.932600", + "Timestamp": "2024-05-16T13:03:56.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "h1.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.790000", - "Timestamp": "2019-10-15T22:11:12.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.807600", + "Timestamp": "2024-05-16T13:03:56.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "h1.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.760000", - "Timestamp": "2019-10-15T22:11:12.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.137700", + "Timestamp": "2024-05-16T13:03:52.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "h1.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.760000", - "Timestamp": "2019-10-15T22:11:12.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.033700", + "Timestamp": "2024-05-16T13:03:52.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "h1.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.760000", - "Timestamp": "2019-10-15T22:11:12.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.233300", + "Timestamp": "2024-05-16T13:03:47.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "h1.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.760000", - "Timestamp": "2019-10-15T22:11:12.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.305300", + "Timestamp": "2024-05-16T13:03:47.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "h1.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.660000", - "Timestamp": "2019-10-15T22:11:12.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.300300", + "Timestamp": "2024-05-16T13:03:47.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "h1.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.660000", - "Timestamp": "2019-10-15T22:11:12.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175300", + "Timestamp": "2024-05-16T13:03:47.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "h1.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.660000", - "Timestamp": "2019-10-15T22:11:12.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.197300", + "Timestamp": "2024-05-16T13:03:46.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "h1.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.660000", - "Timestamp": "2019-10-15T22:11:12.000Z" + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.132900", + "Timestamp": "2024-05-16T13:03:46.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.006000", - "Timestamp": "2019-10-15T22:11:06.000Z" + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.411000", + "Timestamp": "2024-05-16T13:03:45.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.006000", - "Timestamp": "2019-10-15T22:11:06.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.406000", + "Timestamp": "2024-05-16T13:03:45.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.006000", - "Timestamp": "2019-10-15T22:11:06.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.281000", + "Timestamp": "2024-05-16T13:03:45.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.006000", - "Timestamp": "2019-10-15T22:11:06.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.981700", + "Timestamp": "2024-05-16T13:03:43.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.006000", - "Timestamp": "2019-10-15T22:11:06.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.976700", + "Timestamp": "2024-05-16T13:03:43.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.699100", - "Timestamp": "2019-10-15T22:10:56.000Z" + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.851700", + "Timestamp": "2024-05-16T13:03:43.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.504300", - "Timestamp": "2019-10-15T22:10:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.329900", + "Timestamp": "2024-05-16T13:03:39.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.600800", - "Timestamp": "2019-10-15T22:10:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.078900", + "Timestamp": "2024-05-16T13:03:39.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.509600", - "Timestamp": "2019-10-15T22:10:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.024300", + "Timestamp": "2024-05-16T13:03:38.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.564800", - "Timestamp": "2019-10-15T22:10:56.000Z" + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.019300", + "Timestamp": "2024-05-16T13:03:38.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.477400", - "Timestamp": "2019-10-15T22:10:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.894300", + "Timestamp": "2024-05-16T13:03:38.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.669100", - "Timestamp": "2019-10-15T22:10:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.061000", + "Timestamp": "2024-05-16T13:03:38.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.474300", - "Timestamp": "2019-10-15T22:10:56.000Z" + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.076500", + "Timestamp": "2024-05-16T13:03:38.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.570800", - "Timestamp": "2019-10-15T22:10:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.071500", + "Timestamp": "2024-05-16T13:03:38.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.479600", - "Timestamp": "2019-10-15T22:10:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.946500", + "Timestamp": "2024-05-16T13:03:38.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.534800", - "Timestamp": "2019-10-15T22:10:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.541000", + "Timestamp": "2024-05-16T13:03:37.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.447400", - "Timestamp": "2019-10-15T22:10:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.511000", + "Timestamp": "2024-05-16T13:03:37.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.569100", - "Timestamp": "2019-10-15T22:10:56.000Z" + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.411000", + "Timestamp": "2024-05-16T13:03:37.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.374300", - "Timestamp": "2019-10-15T22:10:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.880100", + "Timestamp": "2024-05-16T13:03:36.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.470800", - "Timestamp": "2019-10-15T22:10:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.875100", + "Timestamp": "2024-05-16T13:03:36.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.379600", - "Timestamp": "2019-10-15T22:10:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.750100", + "Timestamp": "2024-05-16T13:03:36.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.434800", - "Timestamp": "2019-10-15T22:10:56.000Z" + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.777800", + "Timestamp": "2024-05-16T13:03:34.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.347400", - "Timestamp": "2019-10-15T22:10:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.772800", + "Timestamp": "2024-05-16T13:03:34.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.298900", - "Timestamp": "2019-10-15T22:10:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.647800", + "Timestamp": "2024-05-16T13:03:34.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.504000", - "Timestamp": "2019-10-15T22:10:40.000Z" + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.569900", + "Timestamp": "2024-05-16T13:03:34.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.504000", - "Timestamp": "2019-10-15T22:10:40.000Z" + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.348100", + "Timestamp": "2024-05-16T13:03:33.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.504000", - "Timestamp": "2019-10-15T22:10:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.006600", + "Timestamp": "2024-05-16T13:03:33.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.504000", - "Timestamp": "2019-10-15T22:10:40.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.919400", + "Timestamp": "2024-05-16T13:03:33.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.504000", - "Timestamp": "2019-10-15T22:10:40.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.914400", + "Timestamp": "2024-05-16T13:03:33.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095800", - "Timestamp": "2019-10-15T22:10:39.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.789400", + "Timestamp": "2024-05-16T13:03:33.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.103500", - "Timestamp": "2019-10-15T22:10:39.000Z" + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.278200", + "Timestamp": "2024-05-16T13:03:33.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.097400", - "Timestamp": "2019-10-15T22:10:39.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.281800", + "Timestamp": "2024-05-16T13:03:33.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.096500", - "Timestamp": "2019-10-15T22:10:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.386600", + "Timestamp": "2024-05-16T13:03:31.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135800", - "Timestamp": "2019-10-15T22:10:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.356600", + "Timestamp": "2024-05-16T13:03:31.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.143500", - "Timestamp": "2019-10-15T22:10:39.000Z" + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.256600", + "Timestamp": "2024-05-16T13:03:31.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.137400", - "Timestamp": "2019-10-15T22:10:39.000Z" + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.387600", + "Timestamp": "2024-05-16T13:03:31.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.136500", - "Timestamp": "2019-10-15T22:10:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.357600", + "Timestamp": "2024-05-16T13:03:31.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.257600", + "Timestamp": "2024-05-16T13:03:31.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035800", - "Timestamp": "2019-10-15T22:10:39.000Z" + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.927300", + "Timestamp": "2024-05-16T13:03:30.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.043500", - "Timestamp": "2019-10-15T22:10:39.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.742300", + "Timestamp": "2024-05-16T13:03:30.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.037400", - "Timestamp": "2019-10-15T22:10:39.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.737300", + "Timestamp": "2024-05-16T13:03:30.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.036500", - "Timestamp": "2019-10-15T22:10:39.000Z" + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.612300", + "Timestamp": "2024-05-16T13:03:30.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T22:10:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.522600", + "Timestamp": "2024-05-16T13:03:30.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T22:10:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.186900", + "Timestamp": "2024-05-16T13:03:29.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T22:10:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.182900", + "Timestamp": "2024-05-16T13:03:29.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T22:10:39.000Z" + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126900", + "Timestamp": "2024-05-16T13:03:29.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T22:10:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.809800", + "Timestamp": "2024-05-16T13:03:29.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.404900", - "Timestamp": "2019-10-15T22:10:32.000Z" + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.751900", + "Timestamp": "2024-05-16T13:03:29.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "p2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.374900", - "Timestamp": "2019-10-15T22:10:32.000Z" + "InstanceType": "m5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.746900", + "Timestamp": "2024-05-16T13:03:29.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.274900", - "Timestamp": "2019-10-15T22:10:32.000Z" + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.621900", + "Timestamp": "2024-05-16T13:03:29.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.260700", - "Timestamp": "2019-10-15T22:10:31.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307600", + "Timestamp": "2024-05-16T13:03:28.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c1.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.230700", - "Timestamp": "2019-10-15T22:10:31.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.277600", + "Timestamp": "2024-05-16T13:03:28.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c1.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.130700", - "Timestamp": "2019-10-15T22:10:31.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177600", + "Timestamp": "2024-05-16T13:03:28.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.048300", - "Timestamp": "2019-10-15T22:10:23.000Z" + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.308500", + "Timestamp": "2024-05-16T13:03:28.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.337500", - "Timestamp": "2019-10-15T22:10:11.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.992000", + "Timestamp": "2024-05-16T13:03:28.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g3s.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.377500", - "Timestamp": "2019-10-15T22:10:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.571700", + "Timestamp": "2024-05-16T13:03:28.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.277500", - "Timestamp": "2019-10-15T22:10:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.133400", + "Timestamp": "2024-05-16T13:03:28.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.547900", - "Timestamp": "2019-10-15T22:10:03.000Z" + "InstanceType": "a1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.368600", + "Timestamp": "2024-05-16T13:03:28.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.543100", - "Timestamp": "2019-10-15T22:10:03.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "a1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.363600", + "Timestamp": "2024-05-16T13:03:28.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.771300", - "Timestamp": "2019-10-15T22:09:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.238600", + "Timestamp": "2024-05-16T13:03:28.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.741300", - "Timestamp": "2019-10-15T22:09:59.000Z" + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.145000", + "Timestamp": "2024-05-16T13:03:27.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.641300", - "Timestamp": "2019-10-15T22:09:59.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.851900", + "Timestamp": "2024-05-16T13:03:27.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.239000", - "Timestamp": "2019-10-15T22:09:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.846900", + "Timestamp": "2024-05-16T13:03:27.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.239000", - "Timestamp": "2019-10-15T22:09:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.721900", + "Timestamp": "2024-05-16T13:03:27.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.239000", - "Timestamp": "2019-10-15T22:09:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.740600", + "Timestamp": "2024-05-16T13:03:27.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.032300", + "Timestamp": "2024-05-16T13:03:27.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.239000", - "Timestamp": "2019-10-15T22:09:56.000Z" + "InstanceType": "d3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.735600", + "Timestamp": "2024-05-16T13:03:27.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.239000", - "Timestamp": "2019-10-15T22:09:56.000Z" + "InstanceType": "d3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.027300", + "Timestamp": "2024-05-16T13:03:27.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.713000", - "Timestamp": "2019-10-15T22:09:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.610600", + "Timestamp": "2024-05-16T13:03:27.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.713000", - "Timestamp": "2019-10-15T22:09:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.902300", + "Timestamp": "2024-05-16T13:03:27.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.937700", - "Timestamp": "2019-10-15T22:09:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.828500", + "Timestamp": "2024-05-16T13:03:27.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.713000", - "Timestamp": "2019-10-15T22:09:56.000Z" + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.823500", + "Timestamp": "2024-05-16T13:03:27.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.898200", - "Timestamp": "2019-10-15T22:09:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.698500", + "Timestamp": "2024-05-16T13:03:27.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.683000", - "Timestamp": "2019-10-15T22:09:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.805400", + "Timestamp": "2024-05-16T13:03:26.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.683000", - "Timestamp": "2019-10-15T22:09:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.800400", + "Timestamp": "2024-05-16T13:03:26.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.907700", - "Timestamp": "2019-10-15T22:09:56.000Z" + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.675400", + "Timestamp": "2024-05-16T13:03:26.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.683000", - "Timestamp": "2019-10-15T22:09:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "14.015100", + "Timestamp": "2024-05-16T13:03:26.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.868200", - "Timestamp": "2019-10-15T22:09:56.000Z" + "InstanceType": "p4d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "14.010100", + "Timestamp": "2024-05-16T13:03:26.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "13.885100", + "Timestamp": "2024-05-16T13:03:26.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.583000", - "Timestamp": "2019-10-15T22:09:56.000Z" + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.091300", + "Timestamp": "2024-05-16T13:03:25.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.583000", - "Timestamp": "2019-10-15T22:09:56.000Z" + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.149600", + "Timestamp": "2024-05-16T13:03:25.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.807700", - "Timestamp": "2019-10-15T22:09:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128700", + "Timestamp": "2024-05-16T13:03:25.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.583000", - "Timestamp": "2019-10-15T22:09:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112500", + "Timestamp": "2024-05-16T13:03:24.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.768200", - "Timestamp": "2019-10-15T22:09:56.000Z" + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108800", + "Timestamp": "2024-05-16T13:03:24.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.660600", - "Timestamp": "2019-10-15T22:09:55.000Z" + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052500", + "Timestamp": "2024-05-16T13:03:24.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.775500", - "Timestamp": "2019-10-15T22:09:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.783500", + "Timestamp": "2024-05-16T13:03:24.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.770700", + "Timestamp": "2024-05-16T13:03:22.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.745500", - "Timestamp": "2019-10-15T22:09:55.000Z" + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.600800", + "Timestamp": "2024-05-16T13:03:22.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.765700", + "Timestamp": "2024-05-16T13:03:22.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.645500", - "Timestamp": "2019-10-15T22:09:55.000Z" + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.595800", + "Timestamp": "2024-05-16T13:03:22.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.640700", + "Timestamp": "2024-05-16T13:03:22.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.710700", - "Timestamp": "2019-10-15T22:09:54.000Z" + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.470800", + "Timestamp": "2024-05-16T13:03:22.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.621900", + "Timestamp": "2024-05-16T13:03:22.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.680700", - "Timestamp": "2019-10-15T22:09:54.000Z" + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.617400", + "Timestamp": "2024-05-16T13:03:22.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.580700", - "Timestamp": "2019-10-15T22:09:54.000Z" + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.138300", + "Timestamp": "2024-05-16T13:03:22.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.474100", - "Timestamp": "2019-10-15T22:09:51.000Z" + "InstanceType": "m2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.196000", + "Timestamp": "2024-05-16T13:03:22.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.444100", - "Timestamp": "2019-10-15T22:09:51.000Z" + "InstanceType": "x2iezn.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.561000", + "Timestamp": "2024-05-16T13:03:21.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.344100", - "Timestamp": "2019-10-15T22:09:51.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.471600", + "Timestamp": "2024-05-16T13:03:21.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.374100", - "Timestamp": "2019-10-15T22:09:48.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120600", + "Timestamp": "2024-05-16T13:03:21.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.344100", - "Timestamp": "2019-10-15T22:09:48.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-16T13:03:21.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.244100", - "Timestamp": "2019-10-15T22:09:48.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060600", + "Timestamp": "2024-05-16T13:03:21.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.182100", - "Timestamp": "2019-10-15T22:09:37.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.404100", + "Timestamp": "2024-05-16T13:03:21.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.152100", - "Timestamp": "2019-10-15T22:09:37.000Z" + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.688900", + "Timestamp": "2024-05-16T13:03:20.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.052100", - "Timestamp": "2019-10-15T22:09:37.000Z" + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.683900", + "Timestamp": "2024-05-16T13:03:20.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "p2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.413400", - "Timestamp": "2019-10-15T22:09:33.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.558900", + "Timestamp": "2024-05-16T13:03:20.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "p2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.850100", - "Timestamp": "2019-10-15T22:09:33.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.021200", + "Timestamp": "2024-05-16T13:03:20.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "p2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.453400", - "Timestamp": "2019-10-15T22:09:33.000Z" + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.991200", + "Timestamp": "2024-05-16T13:03:20.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "p2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.890100", - "Timestamp": "2019-10-15T22:09:33.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.891200", + "Timestamp": "2024-05-16T13:03:20.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "p2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.353400", - "Timestamp": "2019-10-15T22:09:33.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "16.880900", + "Timestamp": "2024-05-16T13:03:20.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "p2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.790100", - "Timestamp": "2019-10-15T22:09:33.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.212100", + "Timestamp": "2024-05-16T13:03:19.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.103800", - "Timestamp": "2019-10-15T22:09:32.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.436000", + "Timestamp": "2024-05-16T13:03:19.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.143800", - "Timestamp": "2019-10-15T22:09:32.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.406000", + "Timestamp": "2024-05-16T13:03:19.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.043800", - "Timestamp": "2019-10-15T22:09:32.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.306000", + "Timestamp": "2024-05-16T13:03:19.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.479000", - "Timestamp": "2019-10-15T22:09:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "trn1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.707100", + "Timestamp": "2024-05-16T13:03:19.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.449000", - "Timestamp": "2019-10-15T22:09:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "trn1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.677100", + "Timestamp": "2024-05-16T13:03:19.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.349000", - "Timestamp": "2019-10-15T22:09:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "trn1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.577100", + "Timestamp": "2024-05-16T13:03:19.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.917600", - "Timestamp": "2019-10-15T22:07:42.000Z" + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.539200", + "Timestamp": "2024-05-16T13:03:19.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.917600", - "Timestamp": "2019-10-15T22:07:42.000Z" + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.154500", + "Timestamp": "2024-05-16T13:03:18.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.917600", - "Timestamp": "2019-10-15T22:07:42.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.149500", + "Timestamp": "2024-05-16T13:03:18.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.917600", - "Timestamp": "2019-10-15T22:07:42.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.024500", + "Timestamp": "2024-05-16T13:03:18.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.917600", - "Timestamp": "2019-10-15T22:07:42.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.604000", + "Timestamp": "2024-05-16T13:03:17.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "a1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.098500", - "Timestamp": "2019-10-15T22:02:15.000Z" + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.151200", + "Timestamp": "2024-05-16T13:03:17.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "a1.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.138500", - "Timestamp": "2019-10-15T22:02:15.000Z" + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.121200", + "Timestamp": "2024-05-16T13:03:17.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "a1.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.038500", - "Timestamp": "2019-10-15T22:02:15.000Z" + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.021200", + "Timestamp": "2024-05-16T13:03:17.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.538000", - "Timestamp": "2019-10-15T22:01:53.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.571100", + "Timestamp": "2024-05-16T13:03:17.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.190500", - "Timestamp": "2019-10-15T22:01:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.069100", + "Timestamp": "2024-05-16T13:03:17.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.230500", - "Timestamp": "2019-10-15T22:01:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.266000", + "Timestamp": "2024-05-16T13:03:16.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.130500", - "Timestamp": "2019-10-15T22:01:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.261000", + "Timestamp": "2024-05-16T13:03:16.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.948500", - "Timestamp": "2019-10-15T22:01:43.000Z" + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.136000", + "Timestamp": "2024-05-16T13:03:16.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.918500", - "Timestamp": "2019-10-15T22:01:43.000Z" + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.293000", + "Timestamp": "2024-05-16T13:03:15.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.818500", - "Timestamp": "2019-10-15T22:01:43.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.249800", + "Timestamp": "2024-05-16T13:03:15.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.396800", - "Timestamp": "2019-10-15T22:01:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.288000", + "Timestamp": "2024-05-16T13:03:15.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.366800", - "Timestamp": "2019-10-15T22:01:27.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.244800", + "Timestamp": "2024-05-16T13:03:15.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.266800", - "Timestamp": "2019-10-15T22:01:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.163000", + "Timestamp": "2024-05-16T13:03:15.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.307500", - "Timestamp": "2019-10-15T22:01:27.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.119800", + "Timestamp": "2024-05-16T13:03:15.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.277500", - "Timestamp": "2019-10-15T22:01:27.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.772500", + "Timestamp": "2024-05-16T13:03:15.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.177500", - "Timestamp": "2019-10-15T22:01:27.000Z" + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.690300", + "Timestamp": "2024-05-16T13:03:15.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.337000", - "Timestamp": "2019-10-15T22:01:25.000Z" + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.767500", + "Timestamp": "2024-05-16T13:03:15.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.307000", - "Timestamp": "2019-10-15T22:01:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.685300", + "Timestamp": "2024-05-16T13:03:15.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.207000", - "Timestamp": "2019-10-15T22:01:25.000Z" + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.642500", + "Timestamp": "2024-05-16T13:03:15.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.314300", - "Timestamp": "2019-10-15T21:53:55.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.560300", + "Timestamp": "2024-05-16T13:03:15.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "h1.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.284300", - "Timestamp": "2019-10-15T21:53:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "13.440900", + "Timestamp": "2024-05-16T13:03:15.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.184300", - "Timestamp": "2019-10-15T21:53:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.598500", + "Timestamp": "2024-05-16T13:03:15.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.279200", - "Timestamp": "2019-10-15T21:53:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.628600", + "Timestamp": "2024-05-16T13:03:15.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.249200", - "Timestamp": "2019-10-15T21:53:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.623600", + "Timestamp": "2024-05-16T13:03:15.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.149200", - "Timestamp": "2019-10-15T21:53:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.498600", + "Timestamp": "2024-05-16T13:03:15.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.2xlarge", + "InstanceType": "c6gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.259400", - "Timestamp": "2019-10-15T21:53:25.000Z" + "SpotPrice": "1.358200", + "Timestamp": "2024-05-16T13:03:15.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.2xlarge", + "InstanceType": "c6gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.229400", - "Timestamp": "2019-10-15T21:53:25.000Z" + "SpotPrice": "1.353200", + "Timestamp": "2024-05-16T13:03:15.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.2xlarge", + "InstanceType": "c6gd.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.129400", - "Timestamp": "2019-10-15T21:53:25.000Z" + "SpotPrice": "1.228200", + "Timestamp": "2024-05-16T13:03:15.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.138000", - "Timestamp": "2019-10-15T21:53:21.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.067000", + "Timestamp": "2024-05-16T13:03:13.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.178000", - "Timestamp": "2019-10-15T21:53:21.000Z" + "InstanceType": "c7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083600", + "Timestamp": "2024-05-16T13:03:13.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.078000", - "Timestamp": "2019-10-15T21:53:21.000Z" + "InstanceType": "c7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079900", + "Timestamp": "2024-05-16T13:03:13.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.471300", - "Timestamp": "2019-10-15T21:52:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023600", + "Timestamp": "2024-05-16T13:03:13.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.441300", - "Timestamp": "2019-10-15T21:52:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.887900", + "Timestamp": "2024-05-16T13:03:13.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.341300", - "Timestamp": "2019-10-15T21:52:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.882900", + "Timestamp": "2024-05-16T13:03:13.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.063000", - "Timestamp": "2019-10-15T21:46:29.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.757900", + "Timestamp": "2024-05-16T13:03:13.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094000", - "Timestamp": "2019-10-15T21:45:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.784500", + "Timestamp": "2024-05-16T13:03:13.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134000", - "Timestamp": "2019-10-15T21:45:49.000Z" + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.131200", + "Timestamp": "2024-05-16T13:03:12.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034000", - "Timestamp": "2019-10-15T21:45:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.040600", + "Timestamp": "2024-05-16T13:03:12.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.008100", - "Timestamp": "2019-10-15T21:45:28.000Z" + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.353200", + "Timestamp": "2024-05-16T13:03:12.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.138500", - "Timestamp": "2019-10-15T21:45:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.304600", + "Timestamp": "2024-05-16T13:03:12.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.178500", - "Timestamp": "2019-10-15T21:45:16.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "f1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "8.226300", + "Timestamp": "2024-05-16T13:03:12.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.078500", - "Timestamp": "2019-10-15T21:45:16.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "f1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "8.196300", + "Timestamp": "2024-05-16T13:03:12.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.676500", - "Timestamp": "2019-10-15T21:45:09.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "f1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "8.096300", + "Timestamp": "2024-05-16T13:03:12.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.646500", - "Timestamp": "2019-10-15T21:45:09.000Z" + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.641800", + "Timestamp": "2024-05-16T13:03:12.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.546500", - "Timestamp": "2019-10-15T21:45:09.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.868800", - "Timestamp": "2019-10-15T21:45:08.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.838800", - "Timestamp": "2019-10-15T21:45:08.000Z" + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.636800", + "Timestamp": "2024-05-16T13:03:12.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.738800", - "Timestamp": "2019-10-15T21:45:08.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.511800", + "Timestamp": "2024-05-16T13:03:12.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.127700", - "Timestamp": "2019-10-15T21:44:46.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.523500", + "Timestamp": "2024-05-16T13:03:11.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.167700", - "Timestamp": "2019-10-15T21:44:46.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.567400", + "Timestamp": "2024-05-16T13:03:10.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.067700", - "Timestamp": "2019-10-15T21:44:46.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.015200", + "Timestamp": "2024-05-16T13:03:10.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.265500", - "Timestamp": "2019-10-15T21:44:45.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.010200", + "Timestamp": "2024-05-16T13:03:10.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.235500", - "Timestamp": "2019-10-15T21:44:45.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.885200", + "Timestamp": "2024-05-16T13:03:10.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.135500", - "Timestamp": "2019-10-15T21:44:45.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.818700", + "Timestamp": "2024-05-16T13:03:10.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.340300", - "Timestamp": "2019-10-15T21:44:44.000Z" + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.744600", + "Timestamp": "2024-05-16T13:03:09.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.310300", - "Timestamp": "2019-10-15T21:44:44.000Z" + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.739600", + "Timestamp": "2024-05-16T13:03:09.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.210300", - "Timestamp": "2019-10-15T21:44:44.000Z" + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.614600", + "Timestamp": "2024-05-16T13:03:09.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.266000", - "Timestamp": "2019-10-15T21:44:44.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.383400", + "Timestamp": "2024-05-16T13:03:09.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.236000", - "Timestamp": "2019-10-15T21:44:44.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.457600", + "Timestamp": "2024-05-16T13:03:08.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.136000", - "Timestamp": "2019-10-15T21:44:44.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.303100", + "Timestamp": "2024-05-16T13:03:08.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.893500", - "Timestamp": "2019-10-15T21:44:34.000Z" + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298100", + "Timestamp": "2024-05-16T13:03:08.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.863500", - "Timestamp": "2019-10-15T21:44:34.000Z" + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.173100", + "Timestamp": "2024-05-16T13:03:08.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.763500", - "Timestamp": "2019-10-15T21:44:34.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.261100", + "Timestamp": "2024-05-16T13:03:08.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.093500", - "Timestamp": "2019-10-15T21:44:26.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.256100", + "Timestamp": "2024-05-16T13:03:08.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.133500", - "Timestamp": "2019-10-15T21:44:26.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.131100", + "Timestamp": "2024-05-16T13:03:08.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.033500", - "Timestamp": "2019-10-15T21:44:26.000Z" + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.341900", + "Timestamp": "2024-05-16T13:03:07.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "h1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.551400", - "Timestamp": "2019-10-15T21:44:26.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.336900", + "Timestamp": "2024-05-16T13:03:07.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "h1.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.521400", - "Timestamp": "2019-10-15T21:44:26.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.211900", + "Timestamp": "2024-05-16T13:03:07.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "h1.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.421400", - "Timestamp": "2019-10-15T21:44:26.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.686700", + "Timestamp": "2024-05-16T13:03:07.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.457800", - "Timestamp": "2019-10-15T21:44:22.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.559400", + "Timestamp": "2024-05-16T13:03:07.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.427800", - "Timestamp": "2019-10-15T21:44:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.490600", + "Timestamp": "2024-05-16T13:03:07.000Z" }, { "AvailabilityZone": "us-east-1f", "InstanceType": "r5a.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.327800", - "Timestamp": "2019-10-15T21:44:22.000Z" + "ProductDescription": "Windows", + "SpotPrice": "1.157600", + "Timestamp": "2024-05-16T13:03:07.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.063000", - "Timestamp": "2019-10-15T21:43:05.000Z" + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.582900", + "Timestamp": "2024-05-16T13:03:07.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.063000", - "Timestamp": "2019-10-15T21:43:05.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127700", + "Timestamp": "2024-05-16T13:03:06.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.063000", - "Timestamp": "2019-10-15T21:43:05.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124000", + "Timestamp": "2024-05-16T13:03:06.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.063000", - "Timestamp": "2019-10-15T21:43:05.000Z" + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067700", + "Timestamp": "2024-05-16T13:03:06.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.063000", - "Timestamp": "2019-10-15T21:43:05.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.405000", + "Timestamp": "2024-05-16T13:03:06.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.435600", - "Timestamp": "2019-10-15T21:42:31.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.513900", + "Timestamp": "2024-05-16T13:03:06.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.435600", - "Timestamp": "2019-10-15T21:42:31.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082700", + "Timestamp": "2024-05-16T13:03:05.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.435600", - "Timestamp": "2019-10-15T21:42:31.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.053700", + "Timestamp": "2024-05-16T13:03:05.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.435600", - "Timestamp": "2019-10-15T21:42:31.000Z" + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022700", + "Timestamp": "2024-05-16T13:03:05.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.435600", - "Timestamp": "2019-10-15T21:42:31.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.407200", + "Timestamp": "2024-05-16T13:03:05.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.405600", - "Timestamp": "2019-10-15T21:42:31.000Z" + "InstanceType": "i2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.447200", + "Timestamp": "2024-05-16T13:03:05.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.405600", - "Timestamp": "2019-10-15T21:42:31.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.347200", + "Timestamp": "2024-05-16T13:03:05.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.405600", - "Timestamp": "2019-10-15T21:42:31.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.524300", + "Timestamp": "2024-05-16T13:03:05.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.405600", - "Timestamp": "2019-10-15T21:42:31.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.650900", + "Timestamp": "2024-05-16T13:03:05.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.405600", - "Timestamp": "2019-10-15T21:42:31.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.510100", + "Timestamp": "2024-05-16T13:03:05.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.305600", - "Timestamp": "2019-10-15T21:42:31.000Z" + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.121300", + "Timestamp": "2024-05-16T13:03:05.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.305600", - "Timestamp": "2019-10-15T21:42:31.000Z" + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.640500", + "Timestamp": "2024-05-16T13:03:04.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.305600", - "Timestamp": "2019-10-15T21:42:31.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.176500", + "Timestamp": "2024-05-16T13:03:04.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.305600", - "Timestamp": "2019-10-15T21:42:31.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.223700", + "Timestamp": "2024-05-16T13:03:04.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.305600", - "Timestamp": "2019-10-15T21:42:31.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.891700", + "Timestamp": "2024-05-16T13:03:03.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.266000", - "Timestamp": "2019-10-15T21:41:49.000Z" + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.673500", + "Timestamp": "2024-05-16T13:03:03.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.306000", - "Timestamp": "2019-10-15T21:41:49.000Z" + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.668500", + "Timestamp": "2024-05-16T13:03:03.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.206000", - "Timestamp": "2019-10-15T21:41:49.000Z" + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.543500", + "Timestamp": "2024-05-16T13:03:03.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.674100", - "Timestamp": "2019-10-15T21:40:53.000Z" + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.636000", + "Timestamp": "2024-05-16T13:03:03.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.674100", - "Timestamp": "2019-10-15T21:40:53.000Z" + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.606400", + "Timestamp": "2024-05-16T13:03:02.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.674100", - "Timestamp": "2019-10-15T21:40:53.000Z" + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.316500", + "Timestamp": "2024-05-16T13:03:02.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.674100", - "Timestamp": "2019-10-15T21:40:53.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.311500", + "Timestamp": "2024-05-16T13:03:02.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.644100", - "Timestamp": "2019-10-15T21:40:53.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.186500", + "Timestamp": "2024-05-16T13:03:02.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.644100", - "Timestamp": "2019-10-15T21:40:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.129600", + "Timestamp": "2024-05-16T13:03:01.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.644100", - "Timestamp": "2019-10-15T21:40:53.000Z" + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.788500", + "Timestamp": "2024-05-16T13:03:01.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.644100", - "Timestamp": "2019-10-15T21:40:53.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.783500", + "Timestamp": "2024-05-16T13:03:01.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.544100", - "Timestamp": "2019-10-15T21:40:53.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.658500", + "Timestamp": "2024-05-16T13:03:01.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.544100", - "Timestamp": "2019-10-15T21:40:53.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.563600", + "Timestamp": "2024-05-16T13:03:01.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.544100", - "Timestamp": "2019-10-15T21:40:53.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.533600", + "Timestamp": "2024-05-16T13:03:01.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.544100", - "Timestamp": "2019-10-15T21:40:53.000Z" + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.433600", + "Timestamp": "2024-05-16T13:03:01.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.390000", - "Timestamp": "2019-10-15T21:39:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.261300", + "Timestamp": "2024-05-16T13:03:00.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.128000", - "Timestamp": "2019-10-15T21:38:21.000Z" + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.427000", + "Timestamp": "2024-05-16T13:03:00.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.168000", - "Timestamp": "2019-10-15T21:38:21.000Z" + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.422000", + "Timestamp": "2024-05-16T13:03:00.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.068000", - "Timestamp": "2019-10-15T21:38:21.000Z" + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.297000", + "Timestamp": "2024-05-16T13:03:00.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.946200", - "Timestamp": "2019-10-15T21:37:26.000Z" + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174300", + "Timestamp": "2024-05-16T13:03:00.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.916200", - "Timestamp": "2019-10-15T21:37:26.000Z" + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170600", + "Timestamp": "2024-05-16T13:03:00.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.816200", - "Timestamp": "2019-10-15T21:37:26.000Z" + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114300", + "Timestamp": "2024-05-16T13:03:00.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.876800", - "Timestamp": "2019-10-15T21:37:04.000Z" + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.466700", + "Timestamp": "2024-05-16T13:03:00.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.327000", - "Timestamp": "2019-10-15T21:37:01.000Z" + "InstanceType": "c3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173200", + "Timestamp": "2024-05-16T13:03:00.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "p2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.297000", - "Timestamp": "2019-10-15T21:37:01.000Z" + "InstanceType": "c3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.213200", + "Timestamp": "2024-05-16T13:03:00.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.197000", - "Timestamp": "2019-10-15T21:37:01.000Z" + "InstanceType": "c3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113200", + "Timestamp": "2024-05-16T13:03:00.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.780600", - "Timestamp": "2019-10-15T21:37:00.000Z" + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.791000", + "Timestamp": "2024-05-16T13:02:59.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.750600", - "Timestamp": "2019-10-15T21:37:00.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.669800", + "Timestamp": "2024-05-16T13:02:59.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.650600", - "Timestamp": "2019-10-15T21:37:00.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.510800", - "Timestamp": "2019-10-15T21:36:58.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.480800", - "Timestamp": "2019-10-15T21:36:58.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.380800", - "Timestamp": "2019-10-15T21:36:58.000Z" + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.786000", + "Timestamp": "2024-05-16T13:02:59.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.685700", - "Timestamp": "2019-10-15T21:36:58.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.664800", + "Timestamp": "2024-05-16T13:02:59.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.655700", - "Timestamp": "2019-10-15T21:36:58.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.661000", + "Timestamp": "2024-05-16T13:02:59.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.555700", - "Timestamp": "2019-10-15T21:36:58.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.539800", + "Timestamp": "2024-05-16T13:02:59.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.492100", - "Timestamp": "2019-10-15T21:36:41.000Z" + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.268400", + "Timestamp": "2024-05-16T13:02:59.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.467400", - "Timestamp": "2019-10-15T21:36:41.000Z" + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.113200", + "Timestamp": "2024-05-16T13:02:59.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.462100", - "Timestamp": "2019-10-15T21:36:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.063600", + "Timestamp": "2024-05-16T13:02:59.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.437400", - "Timestamp": "2019-10-15T21:36:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.058600", + "Timestamp": "2024-05-16T13:02:59.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.362100", - "Timestamp": "2019-10-15T21:36:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.933600", + "Timestamp": "2024-05-16T13:02:59.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.337400", - "Timestamp": "2019-10-15T21:36:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.930300", + "Timestamp": "2024-05-16T13:02:58.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.097200", - "Timestamp": "2019-10-15T21:36:34.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.925300", + "Timestamp": "2024-05-16T13:02:58.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.137200", - "Timestamp": "2019-10-15T21:36:34.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.800300", + "Timestamp": "2024-05-16T13:02:58.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.037200", - "Timestamp": "2019-10-15T21:36:34.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096300", + "Timestamp": "2024-05-16T13:02:58.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.486700", - "Timestamp": "2019-10-15T21:36:32.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-16T13:02:58.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.456700", - "Timestamp": "2019-10-15T21:36:32.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036300", + "Timestamp": "2024-05-16T13:02:58.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.356700", - "Timestamp": "2019-10-15T21:36:32.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.067700", + "Timestamp": "2024-05-16T13:02:58.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.275200", - "Timestamp": "2019-10-15T21:36:31.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.199600", + "Timestamp": "2024-05-16T13:02:58.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.245200", - "Timestamp": "2019-10-15T21:36:31.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.062700", + "Timestamp": "2024-05-16T13:02:58.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.145200", - "Timestamp": "2019-10-15T21:36:31.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.194600", + "Timestamp": "2024-05-16T13:02:58.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.134400", - "Timestamp": "2019-10-15T21:36:30.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.937700", + "Timestamp": "2024-05-16T13:02:58.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.174400", - "Timestamp": "2019-10-15T21:36:30.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.069600", + "Timestamp": "2024-05-16T13:02:58.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.074400", - "Timestamp": "2019-10-15T21:36:30.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.278800", + "Timestamp": "2024-05-16T13:02:58.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.137300", - "Timestamp": "2019-10-15T21:36:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.273800", + "Timestamp": "2024-05-16T13:02:58.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.177300", - "Timestamp": "2019-10-15T21:36:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.148800", + "Timestamp": "2024-05-16T13:02:58.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.077300", - "Timestamp": "2019-10-15T21:36:27.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.527700", + "Timestamp": "2024-05-16T13:02:58.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.143600", - "Timestamp": "2019-10-15T21:36:25.000Z" + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.744200", + "Timestamp": "2024-05-16T13:02:58.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.183600", - "Timestamp": "2019-10-15T21:36:25.000Z" + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.739200", + "Timestamp": "2024-05-16T13:02:58.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.083600", - "Timestamp": "2019-10-15T21:36:25.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.325200", - "Timestamp": "2019-10-15T21:36:19.000Z" + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.614200", + "Timestamp": "2024-05-16T13:02:58.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.295200", - "Timestamp": "2019-10-15T21:36:19.000Z" + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.157100", + "Timestamp": "2024-05-16T13:02:57.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.195200", - "Timestamp": "2019-10-15T21:36:19.000Z" + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.488600", + "Timestamp": "2024-05-16T13:02:57.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.129600", - "Timestamp": "2019-10-15T21:36:18.000Z" + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.423100", + "Timestamp": "2024-05-16T13:02:57.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.169600", - "Timestamp": "2019-10-15T21:36:18.000Z" + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.418100", + "Timestamp": "2024-05-16T13:02:57.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.069600", - "Timestamp": "2019-10-15T21:36:18.000Z" + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.293100", + "Timestamp": "2024-05-16T13:02:57.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.973400", - "Timestamp": "2019-10-15T21:36:15.000Z" + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.001400", + "Timestamp": "2024-05-16T13:02:56.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.014600", - "Timestamp": "2019-10-15T21:36:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.996400", + "Timestamp": "2024-05-16T13:02:56.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.943400", - "Timestamp": "2019-10-15T21:36:15.000Z" + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.871400", + "Timestamp": "2024-05-16T13:02:56.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.984600", - "Timestamp": "2019-10-15T21:36:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.774800", + "Timestamp": "2024-05-16T13:02:56.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.843400", - "Timestamp": "2019-10-15T21:36:15.000Z" + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.496000", + "Timestamp": "2024-05-16T13:02:56.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.884600", - "Timestamp": "2019-10-15T21:36:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.466000", + "Timestamp": "2024-05-16T13:02:56.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252000", - "Timestamp": "2019-10-15T21:35:42.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.366000", + "Timestamp": "2024-05-16T13:02:56.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.084000", - "Timestamp": "2019-10-15T21:35:07.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.963500", + "Timestamp": "2024-05-16T13:02:56.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.084000", - "Timestamp": "2019-10-15T21:35:07.000Z" + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.164500", + "Timestamp": "2024-05-16T13:02:56.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.084000", - "Timestamp": "2019-10-15T21:35:07.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.159500", + "Timestamp": "2024-05-16T13:02:56.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.084000", - "Timestamp": "2019-10-15T21:35:07.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.034500", + "Timestamp": "2024-05-16T13:02:56.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.084000", - "Timestamp": "2019-10-15T21:35:07.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.321600", + "Timestamp": "2024-05-16T13:02:55.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.814000", - "Timestamp": "2019-10-15T21:31:43.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.254000", + "Timestamp": "2024-05-16T13:02:55.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.814000", - "Timestamp": "2019-10-15T21:31:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.291600", + "Timestamp": "2024-05-16T13:02:55.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.814000", - "Timestamp": "2019-10-15T21:31:43.000Z" + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.224000", + "Timestamp": "2024-05-16T13:02:55.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.784000", - "Timestamp": "2019-10-15T21:31:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.191600", + "Timestamp": "2024-05-16T13:02:55.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.784000", - "Timestamp": "2019-10-15T21:31:43.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.124000", + "Timestamp": "2024-05-16T13:02:55.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.784000", - "Timestamp": "2019-10-15T21:31:43.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.957000", + "Timestamp": "2024-05-16T13:02:55.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.684000", - "Timestamp": "2019-10-15T21:31:43.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.952000", + "Timestamp": "2024-05-16T13:02:55.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.684000", - "Timestamp": "2019-10-15T21:31:43.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.827000", + "Timestamp": "2024-05-16T13:02:55.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.684000", - "Timestamp": "2019-10-15T21:31:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.326900", + "Timestamp": "2024-05-16T13:02:55.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.115700", - "Timestamp": "2019-10-15T21:31:37.000Z" + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.321900", + "Timestamp": "2024-05-16T13:02:55.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "t2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.115700", - "Timestamp": "2019-10-15T21:31:37.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.196900", + "Timestamp": "2024-05-16T13:02:55.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.115700", - "Timestamp": "2019-10-15T21:31:37.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.025100", + "Timestamp": "2024-05-16T13:02:55.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.155700", - "Timestamp": "2019-10-15T21:31:37.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.020100", + "Timestamp": "2024-05-16T13:02:55.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "t2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.155700", - "Timestamp": "2019-10-15T21:31:37.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.895100", + "Timestamp": "2024-05-16T13:02:55.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.155700", - "Timestamp": "2019-10-15T21:31:37.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.565500", + "Timestamp": "2024-05-16T13:02:54.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.055700", - "Timestamp": "2019-10-15T21:31:37.000Z" + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.484700", + "Timestamp": "2024-05-16T13:02:54.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "t2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.055700", - "Timestamp": "2019-10-15T21:31:37.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.479700", + "Timestamp": "2024-05-16T13:02:54.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.055700", - "Timestamp": "2019-10-15T21:31:37.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.354700", + "Timestamp": "2024-05-16T13:02:54.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.156000", - "Timestamp": "2019-10-15T21:31:27.000Z" + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.820700", + "Timestamp": "2024-05-16T13:02:54.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.156000", - "Timestamp": "2019-10-15T21:31:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.815700", + "Timestamp": "2024-05-16T13:02:54.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.156000", - "Timestamp": "2019-10-15T21:31:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.690700", + "Timestamp": "2024-05-16T13:02:54.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.156000", - "Timestamp": "2019-10-15T21:31:27.000Z" + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.138700", + "Timestamp": "2024-05-16T13:02:52.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.096700", - "Timestamp": "2019-10-15T21:30:23.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.664800", + "Timestamp": "2024-05-16T13:02:52.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "t2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.096700", - "Timestamp": "2019-10-15T21:30:23.000Z" + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.409100", + "Timestamp": "2024-05-16T13:02:51.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.096700", - "Timestamp": "2019-10-15T21:30:23.000Z" + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.613400", + "Timestamp": "2024-05-16T13:02:51.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "t2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.096700", - "Timestamp": "2019-10-15T21:30:23.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.608400", + "Timestamp": "2024-05-16T13:02:51.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.096700", - "Timestamp": "2019-10-15T21:30:23.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.483400", + "Timestamp": "2024-05-16T13:02:51.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.096700", - "Timestamp": "2019-10-15T21:30:23.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.036300", + "Timestamp": "2024-05-16T13:02:50.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.171600", - "Timestamp": "2019-10-15T21:28:51.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.031300", + "Timestamp": "2024-05-16T13:02:50.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.171600", - "Timestamp": "2019-10-15T21:28:51.000Z" + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.906300", + "Timestamp": "2024-05-16T13:02:50.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.171600", - "Timestamp": "2019-10-15T21:28:51.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.300300", + "Timestamp": "2024-05-16T13:02:49.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.171600", - "Timestamp": "2019-10-15T21:28:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.141500", + "Timestamp": "2024-05-16T13:02:49.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.171600", - "Timestamp": "2019-10-15T21:28:51.000Z" + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.136500", + "Timestamp": "2024-05-16T13:02:49.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "z1d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.211600", - "Timestamp": "2019-10-15T21:28:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.011500", + "Timestamp": "2024-05-16T13:02:49.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "z1d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.211600", - "Timestamp": "2019-10-15T21:28:51.000Z" + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T13:02:48.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "z1d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.211600", - "Timestamp": "2019-10-15T21:28:51.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107000", + "Timestamp": "2024-05-16T13:02:48.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "z1d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.211600", - "Timestamp": "2019-10-15T21:28:51.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051000", + "Timestamp": "2024-05-16T13:02:48.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "z1d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.211600", - "Timestamp": "2019-10-15T21:28:51.000Z" + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.084800", + "Timestamp": "2024-05-16T13:02:48.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.111600", - "Timestamp": "2019-10-15T21:28:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.546600", + "Timestamp": "2024-05-16T13:02:48.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.111600", - "Timestamp": "2019-10-15T21:28:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.770300", + "Timestamp": "2024-05-16T13:02:48.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.753900", + "Timestamp": "2024-05-16T13:02:48.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.111600", - "Timestamp": "2019-10-15T21:28:51.000Z" + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.765300", + "Timestamp": "2024-05-16T13:02:48.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.111600", - "Timestamp": "2019-10-15T21:28:51.000Z" + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.748900", + "Timestamp": "2024-05-16T13:02:48.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.111600", - "Timestamp": "2019-10-15T21:28:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.640300", + "Timestamp": "2024-05-16T13:02:48.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.857100", - "Timestamp": "2019-10-15T21:28:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.623900", + "Timestamp": "2024-05-16T13:02:48.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.827100", - "Timestamp": "2019-10-15T21:28:48.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.862600", + "Timestamp": "2024-05-16T13:02:48.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.727100", - "Timestamp": "2019-10-15T21:28:48.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.857600", + "Timestamp": "2024-05-16T13:02:48.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.732600", + "Timestamp": "2024-05-16T13:02:48.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.364700", - "Timestamp": "2019-10-15T21:28:30.000Z" + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.218000", + "Timestamp": "2024-05-16T13:02:48.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "g2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.334700", - "Timestamp": "2019-10-15T21:28:30.000Z" + "InstanceType": "x2gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.214300", + "Timestamp": "2024-05-16T13:02:48.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.234700", - "Timestamp": "2019-10-15T21:28:30.000Z" + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158000", + "Timestamp": "2024-05-16T13:02:48.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.475500", - "Timestamp": "2019-10-15T21:28:28.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.129600", + "Timestamp": "2024-05-16T13:02:47.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.445500", - "Timestamp": "2019-10-15T21:28:28.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.803500", + "Timestamp": "2024-05-16T13:02:47.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.855400", + "Timestamp": "2024-05-16T13:02:47.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.345500", - "Timestamp": "2019-10-15T21:28:28.000Z" + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.351700", + "Timestamp": "2024-05-16T13:02:47.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.145400", - "Timestamp": "2019-10-15T21:28:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.608900", + "Timestamp": "2024-05-16T13:02:46.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.115400", - "Timestamp": "2019-10-15T21:28:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.589500", + "Timestamp": "2024-05-16T13:02:46.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.015400", - "Timestamp": "2019-10-15T21:28:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.584500", + "Timestamp": "2024-05-16T13:02:46.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.459500", + "Timestamp": "2024-05-16T13:02:46.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.293700", - "Timestamp": "2019-10-15T21:28:12.000Z" + "InstanceType": "p2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.529800", + "Timestamp": "2024-05-16T13:02:46.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.263700", - "Timestamp": "2019-10-15T21:28:12.000Z" + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.569800", + "Timestamp": "2024-05-16T13:02:46.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.163700", - "Timestamp": "2019-10-15T21:28:12.000Z" + "InstanceType": "p2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.469800", + "Timestamp": "2024-05-16T13:02:46.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.385000", - "Timestamp": "2019-10-15T21:28:01.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.073000", + "Timestamp": "2024-05-16T13:02:46.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g3s.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.425000", - "Timestamp": "2019-10-15T21:28:01.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076900", + "Timestamp": "2024-05-16T13:02:46.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.325000", - "Timestamp": "2019-10-15T21:28:01.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047900", + "Timestamp": "2024-05-16T13:02:46.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5ad.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.206200", - "Timestamp": "2019-10-15T21:28:00.000Z" + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016900", + "Timestamp": "2024-05-16T13:02:46.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.295600", - "Timestamp": "2019-10-15T21:27:44.000Z" + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.379100", + "Timestamp": "2024-05-16T13:02:46.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.295600", - "Timestamp": "2019-10-15T21:27:44.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.374100", + "Timestamp": "2024-05-16T13:02:46.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.249100", + "Timestamp": "2024-05-16T13:02:46.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.295600", - "Timestamp": "2019-10-15T21:27:44.000Z" + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161000", + "Timestamp": "2024-05-16T13:02:45.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.295600", - "Timestamp": "2019-10-15T21:27:44.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157000", + "Timestamp": "2024-05-16T13:02:45.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.295600", - "Timestamp": "2019-10-15T21:27:44.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101000", + "Timestamp": "2024-05-16T13:02:45.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.106100", - "Timestamp": "2019-10-15T21:27:37.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.957500", + "Timestamp": "2024-05-16T13:02:45.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.146100", - "Timestamp": "2019-10-15T21:27:37.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.947400", + "Timestamp": "2024-05-16T13:02:45.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.046100", - "Timestamp": "2019-10-15T21:27:37.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.952500", + "Timestamp": "2024-05-16T13:02:45.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.315500", - "Timestamp": "2019-10-15T21:27:32.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.942400", + "Timestamp": "2024-05-16T13:02:45.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.285500", - "Timestamp": "2019-10-15T21:27:32.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.827500", + "Timestamp": "2024-05-16T13:02:45.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.817400", + "Timestamp": "2024-05-16T13:02:45.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.185500", - "Timestamp": "2019-10-15T21:27:32.000Z" + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.937300", + "Timestamp": "2024-05-16T13:02:45.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.126000", - "Timestamp": "2019-10-15T21:27:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.932300", + "Timestamp": "2024-05-16T13:02:45.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.179200", - "Timestamp": "2019-10-15T21:20:05.000Z" + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.807300", + "Timestamp": "2024-05-16T13:02:45.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.299700", - "Timestamp": "2019-10-15T21:19:58.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.757200", + "Timestamp": "2024-05-16T13:02:45.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.269700", - "Timestamp": "2019-10-15T21:19:58.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.752200", + "Timestamp": "2024-05-16T13:02:45.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.169700", - "Timestamp": "2019-10-15T21:19:58.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.627200", + "Timestamp": "2024-05-16T13:02:45.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.439300", - "Timestamp": "2019-10-15T21:19:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.141000", + "Timestamp": "2024-05-16T13:02:45.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.409300", - "Timestamp": "2019-10-15T21:19:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.142100", + "Timestamp": "2024-05-16T13:02:45.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.309300", - "Timestamp": "2019-10-15T21:19:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.319100", + "Timestamp": "2024-05-16T13:02:45.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.897500", - "Timestamp": "2019-10-15T21:19:42.000Z" + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.314100", + "Timestamp": "2024-05-16T13:02:45.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.867500", - "Timestamp": "2019-10-15T21:19:42.000Z" + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.189100", + "Timestamp": "2024-05-16T13:02:45.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.767500", - "Timestamp": "2019-10-15T21:19:42.000Z" + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.038400", + "Timestamp": "2024-05-16T13:02:45.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.484600", - "Timestamp": "2019-10-15T21:19:30.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.955900", + "Timestamp": "2024-05-16T13:02:45.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.454600", - "Timestamp": "2019-10-15T21:19:30.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.925900", + "Timestamp": "2024-05-16T13:02:45.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.354600", - "Timestamp": "2019-10-15T21:19:30.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.825900", + "Timestamp": "2024-05-16T13:02:45.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.733400", - "Timestamp": "2019-10-15T21:19:26.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.492200", + "Timestamp": "2024-05-16T13:02:45.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.703400", - "Timestamp": "2019-10-15T21:19:26.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.462200", + "Timestamp": "2024-05-16T13:02:45.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.603400", - "Timestamp": "2019-10-15T21:19:26.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.362200", + "Timestamp": "2024-05-16T13:02:45.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.424400", - "Timestamp": "2019-10-15T21:19:26.000Z" + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.328700", + "Timestamp": "2024-05-16T13:02:45.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.394400", - "Timestamp": "2019-10-15T21:19:26.000Z" + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323700", + "Timestamp": "2024-05-16T13:02:45.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.294400", - "Timestamp": "2019-10-15T21:19:26.000Z" + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.198700", + "Timestamp": "2024-05-16T13:02:45.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.224800", - "Timestamp": "2019-10-15T21:15:20.000Z" + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078800", + "Timestamp": "2024-05-16T13:02:44.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.224800", - "Timestamp": "2019-10-15T21:15:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.049800", + "Timestamp": "2024-05-16T13:02:44.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.224800", - "Timestamp": "2019-10-15T21:15:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018800", + "Timestamp": "2024-05-16T13:02:44.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.224800", - "Timestamp": "2019-10-15T21:15:20.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.809700", + "Timestamp": "2024-05-16T13:02:44.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.248800", - "Timestamp": "2019-10-15T21:14:07.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.804700", + "Timestamp": "2024-05-16T13:02:44.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.248800", - "Timestamp": "2019-10-15T21:14:07.000Z" + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.679700", + "Timestamp": "2024-05-16T13:02:44.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.248800", - "Timestamp": "2019-10-15T21:14:07.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.557200", + "Timestamp": "2024-05-16T13:02:44.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.248800", - "Timestamp": "2019-10-15T21:14:07.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.552200", + "Timestamp": "2024-05-16T13:02:44.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.248800", - "Timestamp": "2019-10-15T21:14:07.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.427200", + "Timestamp": "2024-05-16T13:02:44.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.497500", - "Timestamp": "2019-10-15T21:13:52.000Z" + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.469600", + "Timestamp": "2024-05-16T13:02:44.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.497500", - "Timestamp": "2019-10-15T21:13:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.464600", + "Timestamp": "2024-05-16T13:02:44.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.497500", - "Timestamp": "2019-10-15T21:13:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.339600", + "Timestamp": "2024-05-16T13:02:44.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.497500", - "Timestamp": "2019-10-15T21:13:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.275000", + "Timestamp": "2024-05-16T13:02:44.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.497500", - "Timestamp": "2019-10-15T21:13:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270000", + "Timestamp": "2024-05-16T13:02:44.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.497500", - "Timestamp": "2019-10-15T21:13:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145000", + "Timestamp": "2024-05-16T13:02:44.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.993500", - "Timestamp": "2019-10-15T21:13:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134500", + "Timestamp": "2024-05-16T13:02:43.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.993500", - "Timestamp": "2019-10-15T21:13:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174500", + "Timestamp": "2024-05-16T13:02:43.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.993500", - "Timestamp": "2019-10-15T21:13:15.000Z" + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074500", + "Timestamp": "2024-05-16T13:02:43.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.993500", - "Timestamp": "2019-10-15T21:13:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.343400", + "Timestamp": "2024-05-16T13:02:43.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.993500", - "Timestamp": "2019-10-15T21:13:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.338400", + "Timestamp": "2024-05-16T13:02:43.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.993500", - "Timestamp": "2019-10-15T21:13:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.213400", + "Timestamp": "2024-05-16T13:02:43.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.118800", - "Timestamp": "2019-10-15T21:13:14.000Z" + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.579300", + "Timestamp": "2024-05-16T13:02:43.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.118800", - "Timestamp": "2019-10-15T21:13:14.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.660600", + "Timestamp": "2024-05-16T13:02:43.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.118800", - "Timestamp": "2019-10-15T21:13:14.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.643200", + "Timestamp": "2024-05-16T13:02:42.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.118800", - "Timestamp": "2019-10-15T21:13:14.000Z" + "SpotPrice": "0.376600", + "Timestamp": "2024-05-16T13:02:42.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.xlarge", + "InstanceType": "c5ad.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.158800", - "Timestamp": "2019-10-15T21:13:14.000Z" + "SpotPrice": "0.371600", + "Timestamp": "2024-05-16T13:02:42.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.158800", - "Timestamp": "2019-10-15T21:13:14.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.246600", + "Timestamp": "2024-05-16T13:02:42.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.158800", - "Timestamp": "2019-10-15T21:13:14.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104100", + "Timestamp": "2024-05-16T13:02:42.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.xlarge", + "InstanceType": "m5.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.158800", - "Timestamp": "2019-10-15T21:13:14.000Z" + "SpotPrice": "0.100100", + "Timestamp": "2024-05-16T13:02:42.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.058800", - "Timestamp": "2019-10-15T21:13:14.000Z" + "SpotPrice": "0.044100", + "Timestamp": "2024-05-16T13:02:42.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.058800", - "Timestamp": "2019-10-15T21:13:14.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.476600", + "Timestamp": "2024-05-16T13:02:42.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.058800", - "Timestamp": "2019-10-15T21:13:14.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.471600", + "Timestamp": "2024-05-16T13:02:42.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.058800", - "Timestamp": "2019-10-15T21:13:14.000Z" + "SpotPrice": "0.346600", + "Timestamp": "2024-05-16T13:02:42.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.943600", - "Timestamp": "2019-10-15T21:13:12.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.178300", + "Timestamp": "2024-05-16T13:02:42.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162800", + "Timestamp": "2024-05-16T13:02:42.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.943600", - "Timestamp": "2019-10-15T21:13:12.000Z" + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174600", + "Timestamp": "2024-05-16T13:02:42.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.943600", - "Timestamp": "2019-10-15T21:13:12.000Z" + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159100", + "Timestamp": "2024-05-16T13:02:42.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.943600", - "Timestamp": "2019-10-15T21:13:12.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118300", + "Timestamp": "2024-05-16T13:02:42.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.943600", - "Timestamp": "2019-10-15T21:13:12.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T13:02:42.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.913600", - "Timestamp": "2019-10-15T21:13:12.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.187900", + "Timestamp": "2024-05-16T13:02:41.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.913600", - "Timestamp": "2019-10-15T21:13:12.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183900", + "Timestamp": "2024-05-16T13:02:41.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.913600", - "Timestamp": "2019-10-15T21:13:12.000Z" + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127900", + "Timestamp": "2024-05-16T13:02:41.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.913600", - "Timestamp": "2019-10-15T21:13:12.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.913600", - "Timestamp": "2019-10-15T21:13:12.000Z" + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.827000", + "Timestamp": "2024-05-16T13:02:41.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.813600", - "Timestamp": "2019-10-15T21:13:12.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.822000", + "Timestamp": "2024-05-16T13:02:41.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.813600", - "Timestamp": "2019-10-15T21:13:12.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.697000", + "Timestamp": "2024-05-16T13:02:41.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.813600", - "Timestamp": "2019-10-15T21:13:12.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.398900", + "Timestamp": "2024-05-16T13:02:41.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.813600", - "Timestamp": "2019-10-15T21:13:12.000Z" + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.425900", + "Timestamp": "2024-05-16T13:02:41.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.813600", - "Timestamp": "2019-10-15T21:13:12.000Z" + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.823500", + "Timestamp": "2024-05-16T13:02:41.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.497500", - "Timestamp": "2019-10-15T21:12:58.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.818500", + "Timestamp": "2024-05-16T13:02:41.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.497500", - "Timestamp": "2019-10-15T21:12:58.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.693500", + "Timestamp": "2024-05-16T13:02:41.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.497500", - "Timestamp": "2019-10-15T21:12:58.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.323300", + "Timestamp": "2024-05-16T13:02:41.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.497500", - "Timestamp": "2019-10-15T21:12:58.000Z" + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.318300", + "Timestamp": "2024-05-16T13:02:41.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.497500", - "Timestamp": "2019-10-15T21:12:58.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.193300", + "Timestamp": "2024-05-16T13:02:41.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.224800", - "Timestamp": "2019-10-15T21:12:53.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.224800", - "Timestamp": "2019-10-15T21:12:53.000Z" + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T13:02:41.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.224800", - "Timestamp": "2019-10-15T21:12:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141200", + "Timestamp": "2024-05-16T13:02:41.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.224800", - "Timestamp": "2019-10-15T21:12:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041200", + "Timestamp": "2024-05-16T13:02:41.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-15T21:12:32.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.508000", + "Timestamp": "2024-05-16T13:02:41.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-15T21:12:32.000Z" + "InstanceType": "m7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.503000", + "Timestamp": "2024-05-16T13:02:41.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-15T21:12:32.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.378000", + "Timestamp": "2024-05-16T13:02:41.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-15T21:12:32.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146400", + "Timestamp": "2024-05-16T13:02:41.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-15T21:12:32.000Z" + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142700", + "Timestamp": "2024-05-16T13:02:41.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-15T21:12:32.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086400", + "Timestamp": "2024-05-16T13:02:41.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-15T21:12:32.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.270700", + "Timestamp": "2024-05-16T13:02:41.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-15T21:12:32.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.265700", + "Timestamp": "2024-05-16T13:02:41.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-15T21:12:32.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.140700", + "Timestamp": "2024-05-16T13:02:41.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T21:12:30.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.471000", + "Timestamp": "2024-05-16T13:02:40.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T21:12:30.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.441000", + "Timestamp": "2024-05-16T13:02:40.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T21:12:30.000Z" + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.341000", + "Timestamp": "2024-05-16T13:02:40.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T21:12:30.000Z" + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299900", + "Timestamp": "2024-05-16T13:02:38.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T21:12:30.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294900", + "Timestamp": "2024-05-16T13:02:38.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-15T21:12:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169900", + "Timestamp": "2024-05-16T13:02:38.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-15T21:12:27.000Z" + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.138900", + "Timestamp": "2024-05-16T13:02:37.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-15T21:12:27.000Z" + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064500", + "Timestamp": "2024-05-16T13:02:36.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-15T21:12:27.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004500", + "Timestamp": "2024-05-16T13:02:36.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-15T21:12:27.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004500", + "Timestamp": "2024-05-16T13:02:36.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.353200", - "Timestamp": "2019-10-15T21:12:21.000Z" + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.922500", + "Timestamp": "2024-05-16T13:02:36.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.353200", - "Timestamp": "2019-10-15T21:12:21.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.892500", + "Timestamp": "2024-05-16T13:02:36.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.323200", - "Timestamp": "2019-10-15T21:12:21.000Z" + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.792500", + "Timestamp": "2024-05-16T13:02:36.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.323200", - "Timestamp": "2019-10-15T21:12:21.000Z" + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.177900", + "Timestamp": "2024-05-16T13:02:35.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.223200", - "Timestamp": "2019-10-15T21:12:21.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.172900", + "Timestamp": "2024-05-16T13:02:35.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.223200", - "Timestamp": "2019-10-15T21:12:21.000Z" + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.047900", + "Timestamp": "2024-05-16T13:02:35.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.353200", - "Timestamp": "2019-10-15T21:12:21.000Z" + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.156600", + "Timestamp": "2024-05-16T13:02:35.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.323200", - "Timestamp": "2019-10-15T21:12:21.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.483600", + "Timestamp": "2024-05-16T13:02:35.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.223200", - "Timestamp": "2019-10-15T21:12:21.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.478600", + "Timestamp": "2024-05-16T13:02:35.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.084000", - "Timestamp": "2019-10-15T21:12:05.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.353600", + "Timestamp": "2024-05-16T13:02:35.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.084000", - "Timestamp": "2019-10-15T21:12:05.000Z" + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134700", + "Timestamp": "2024-05-16T13:02:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.084000", - "Timestamp": "2019-10-15T21:12:05.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130700", + "Timestamp": "2024-05-16T13:02:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.307800", - "Timestamp": "2019-10-15T21:11:54.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "h1.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.277800", - "Timestamp": "2019-10-15T21:11:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074700", + "Timestamp": "2024-05-16T13:02:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.177800", - "Timestamp": "2019-10-15T21:11:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.711700", + "Timestamp": "2024-05-16T13:02:34.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.591200", - "Timestamp": "2019-10-15T21:11:51.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.706700", + "Timestamp": "2024-05-16T13:02:34.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.591200", - "Timestamp": "2019-10-15T21:11:51.000Z" + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.581700", + "Timestamp": "2024-05-16T13:02:34.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.591200", - "Timestamp": "2019-10-15T21:11:51.000Z" + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096100", + "Timestamp": "2024-05-16T13:02:32.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.591200", - "Timestamp": "2019-10-15T21:11:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092400", + "Timestamp": "2024-05-16T13:02:32.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.591200", - "Timestamp": "2019-10-15T21:11:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036100", + "Timestamp": "2024-05-16T13:02:32.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.536400", - "Timestamp": "2019-10-15T21:11:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093900", + "Timestamp": "2024-05-16T13:02:32.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.506400", - "Timestamp": "2019-10-15T21:11:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090200", + "Timestamp": "2024-05-16T13:02:32.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.406400", - "Timestamp": "2019-10-15T21:11:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033900", + "Timestamp": "2024-05-16T13:02:32.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.310200", - "Timestamp": "2019-10-15T21:11:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T13:02:31.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.310200", - "Timestamp": "2019-10-15T21:11:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108500", + "Timestamp": "2024-05-16T13:02:31.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.310200", - "Timestamp": "2019-10-15T21:11:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052200", + "Timestamp": "2024-05-16T13:02:31.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.310200", - "Timestamp": "2019-10-15T21:11:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.895000", + "Timestamp": "2024-05-16T13:02:31.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "x1e.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.350200", - "Timestamp": "2019-10-15T21:11:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.890000", + "Timestamp": "2024-05-16T13:02:31.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "x1e.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.350200", - "Timestamp": "2019-10-15T21:11:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.765000", + "Timestamp": "2024-05-16T13:02:31.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "x1e.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.350200", - "Timestamp": "2019-10-15T21:11:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.452900", + "Timestamp": "2024-05-16T13:02:31.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "x1e.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.350200", - "Timestamp": "2019-10-15T21:11:41.000Z" + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.447900", + "Timestamp": "2024-05-16T13:02:31.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.250200", - "Timestamp": "2019-10-15T21:11:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.322900", + "Timestamp": "2024-05-16T13:02:31.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.250200", - "Timestamp": "2019-10-15T21:11:41.000Z" + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152400", + "Timestamp": "2024-05-16T13:02:31.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.250200", - "Timestamp": "2019-10-15T21:11:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192400", + "Timestamp": "2024-05-16T13:02:31.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.250200", - "Timestamp": "2019-10-15T21:11:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092400", + "Timestamp": "2024-05-16T13:02:31.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.434200", - "Timestamp": "2019-10-15T21:11:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T13:02:31.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.434200", - "Timestamp": "2019-10-15T21:11:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T13:02:31.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.434200", - "Timestamp": "2019-10-15T21:11:41.000Z" + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047500", + "Timestamp": "2024-05-16T13:02:31.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.434200", - "Timestamp": "2019-10-15T21:11:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.273800", + "Timestamp": "2024-05-16T13:02:31.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.366400", - "Timestamp": "2019-10-15T21:11:31.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.301500", + "Timestamp": "2024-05-16T13:02:30.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "g3s.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.406400", - "Timestamp": "2019-10-15T21:11:31.000Z" + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.958500", + "Timestamp": "2024-05-16T13:02:30.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.306400", - "Timestamp": "2019-10-15T21:11:31.000Z" + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.928500", + "Timestamp": "2024-05-16T13:02:30.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.130000", - "Timestamp": "2019-10-15T21:11:29.000Z" + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.828500", + "Timestamp": "2024-05-16T13:02:30.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.130000", - "Timestamp": "2019-10-15T21:11:29.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.689400", + "Timestamp": "2024-05-16T13:02:25.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.130000", - "Timestamp": "2019-10-15T21:11:29.000Z" + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.351000", + "Timestamp": "2024-05-16T13:02:24.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.130000", - "Timestamp": "2019-10-15T21:11:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.321000", + "Timestamp": "2024-05-16T13:02:24.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.130000", - "Timestamp": "2019-10-15T21:11:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.221000", + "Timestamp": "2024-05-16T13:02:24.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.130000", - "Timestamp": "2019-10-15T21:11:29.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.006900", + "Timestamp": "2024-05-16T12:54:14.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.xlarge", + "InstanceType": "r5.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.275100", - "Timestamp": "2019-10-15T21:11:20.000Z" + "SpotPrice": "2.773000", + "Timestamp": "2024-05-16T12:48:50.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.xlarge", + "InstanceType": "r5.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.315100", - "Timestamp": "2019-10-15T21:11:20.000Z" + "SpotPrice": "2.768000", + "Timestamp": "2024-05-16T12:48:50.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.xlarge", + "InstanceType": "r5.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.215100", - "Timestamp": "2019-10-15T21:11:20.000Z" + "SpotPrice": "2.643000", + "Timestamp": "2024-05-16T12:48:50.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.356700", - "Timestamp": "2019-10-15T21:11:16.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.704800", + "Timestamp": "2024-05-16T12:48:43.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.326700", - "Timestamp": "2019-10-15T21:11:16.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.478300", + "Timestamp": "2024-05-16T12:48:42.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.226700", - "Timestamp": "2019-10-15T21:11:16.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.224600", + "Timestamp": "2024-05-16T12:48:41.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.221300", - "Timestamp": "2019-10-15T21:11:13.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.703600", + "Timestamp": "2024-05-16T12:48:39.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.261300", - "Timestamp": "2019-10-15T21:11:13.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.698600", + "Timestamp": "2024-05-16T12:48:39.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.161300", - "Timestamp": "2019-10-15T21:11:13.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.573600", + "Timestamp": "2024-05-16T12:48:39.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.295900", - "Timestamp": "2019-10-15T21:11:12.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.083100", - "Timestamp": "2019-10-15T21:11:11.000Z" + "SpotPrice": "0.314800", + "Timestamp": "2024-05-16T12:48:39.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.123100", - "Timestamp": "2019-10-15T21:11:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.384800", + "Timestamp": "2024-05-16T12:48:39.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.023100", - "Timestamp": "2019-10-15T21:11:11.000Z" + "InstanceType": "c1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.380600", + "Timestamp": "2024-05-16T12:48:38.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.392000", - "Timestamp": "2019-10-15T21:11:10.000Z" + "InstanceType": "c1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.350600", + "Timestamp": "2024-05-16T12:48:38.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.362000", - "Timestamp": "2019-10-15T21:11:10.000Z" + "InstanceType": "c1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.250600", + "Timestamp": "2024-05-16T12:48:38.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.262000", - "Timestamp": "2019-10-15T21:11:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.091500", + "Timestamp": "2024-05-16T12:48:38.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.159800", - "Timestamp": "2019-10-15T21:11:09.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.086500", + "Timestamp": "2024-05-16T12:48:38.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.159800", - "Timestamp": "2019-10-15T21:11:09.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.961500", + "Timestamp": "2024-05-16T12:48:38.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.159800", - "Timestamp": "2019-10-15T21:11:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.131000", + "Timestamp": "2024-05-16T12:48:38.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.159800", - "Timestamp": "2019-10-15T21:11:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.126000", + "Timestamp": "2024-05-16T12:48:38.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.159800", - "Timestamp": "2019-10-15T21:11:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.001000", + "Timestamp": "2024-05-16T12:48:38.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.958000", - "Timestamp": "2019-10-15T21:11:05.000Z" + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.058200", + "Timestamp": "2024-05-16T12:48:37.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "c3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.958000", - "Timestamp": "2019-10-15T21:11:05.000Z" + "SpotPrice": "0.154600", + "Timestamp": "2024-05-16T12:48:37.000Z" }, { "AvailabilityZone": "us-east-1e", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.958000", - "Timestamp": "2019-10-15T21:11:05.000Z" + "InstanceType": "c3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.194600", + "Timestamp": "2024-05-16T12:48:37.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.958000", - "Timestamp": "2019-10-15T21:11:05.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "c3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094600", + "Timestamp": "2024-05-16T12:48:37.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.958000", - "Timestamp": "2019-10-15T21:11:05.000Z" + "SpotPrice": "6.076400", + "Timestamp": "2024-05-16T12:48:37.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "d2.4xlarge", + "InstanceType": "r6idn.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.928000", - "Timestamp": "2019-10-15T21:11:05.000Z" + "SpotPrice": "6.071400", + "Timestamp": "2024-05-16T12:48:37.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.928000", - "Timestamp": "2019-10-15T21:11:05.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.946400", + "Timestamp": "2024-05-16T12:48:37.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "d2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.928000", - "Timestamp": "2019-10-15T21:11:05.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.850700", + "Timestamp": "2024-05-16T12:48:36.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.928000", - "Timestamp": "2019-10-15T21:11:05.000Z" + "SpotPrice": "3.845700", + "Timestamp": "2024-05-16T12:48:36.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.928000", - "Timestamp": "2019-10-15T21:11:05.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.720700", + "Timestamp": "2024-05-16T12:48:36.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.845600", + "Timestamp": "2024-05-16T12:48:36.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.828000", - "Timestamp": "2019-10-15T21:11:05.000Z" + "InstanceType": "c3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.289100", + "Timestamp": "2024-05-16T12:48:35.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.828000", - "Timestamp": "2019-10-15T21:11:05.000Z" + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.847900", + "Timestamp": "2024-05-16T12:48:32.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.828000", - "Timestamp": "2019-10-15T21:11:05.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.241800", + "Timestamp": "2024-05-16T12:48:31.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.828000", - "Timestamp": "2019-10-15T21:11:05.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.236800", + "Timestamp": "2024-05-16T12:48:31.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.828000", - "Timestamp": "2019-10-15T21:11:05.000Z" + "SpotPrice": "1.111800", + "Timestamp": "2024-05-16T12:48:31.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.268500", - "Timestamp": "2019-10-15T21:11:05.000Z" + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.362500", + "Timestamp": "2024-05-16T12:48:31.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.293700", - "Timestamp": "2019-10-15T21:11:04.000Z" + "InstanceType": "m7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T12:48:31.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.263700", - "Timestamp": "2019-10-15T21:11:04.000Z" + "InstanceType": "m7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T12:48:31.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.163700", - "Timestamp": "2019-10-15T21:11:04.000Z" + "InstanceType": "m7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049500", + "Timestamp": "2024-05-16T12:48:31.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.130000", - "Timestamp": "2019-10-15T21:11:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.619200", + "Timestamp": "2024-05-16T12:48:29.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.130000", - "Timestamp": "2019-10-15T21:11:03.000Z" + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.614200", + "Timestamp": "2024-05-16T12:48:29.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.130000", - "Timestamp": "2019-10-15T21:11:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.489200", + "Timestamp": "2024-05-16T12:48:29.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.130000", - "Timestamp": "2019-10-15T21:11:03.000Z" + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.859800", + "Timestamp": "2024-05-16T12:48:29.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.130000", - "Timestamp": "2019-10-15T21:11:03.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.854800", + "Timestamp": "2024-05-16T12:48:29.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.101000", - "Timestamp": "2019-10-15T21:11:03.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.729800", + "Timestamp": "2024-05-16T12:48:29.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.141000", - "Timestamp": "2019-10-15T21:11:03.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.756500", + "Timestamp": "2024-05-16T12:48:29.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.041000", - "Timestamp": "2019-10-15T21:11:03.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.751500", + "Timestamp": "2024-05-16T12:48:29.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.547600", - "Timestamp": "2019-10-15T21:11:02.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.626500", + "Timestamp": "2024-05-16T12:48:29.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.097200", - "Timestamp": "2019-10-15T21:11:00.000Z" - }, - { - "AvailabilityZone": "us-east-1f", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.097200", - "Timestamp": "2019-10-15T21:11:00.000Z" + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.591900", + "Timestamp": "2024-05-16T12:48:29.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.097200", - "Timestamp": "2019-10-15T21:11:00.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.622500", + "Timestamp": "2024-05-16T12:48:28.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.097200", - "Timestamp": "2019-10-15T21:11:00.000Z" + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.311800", + "Timestamp": "2024-05-16T12:48:28.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.097200", - "Timestamp": "2019-10-15T21:11:00.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.137900", + "Timestamp": "2024-05-16T12:48:28.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.127800", - "Timestamp": "2019-10-15T21:10:57.000Z" + "InstanceType": "p2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.491000", + "Timestamp": "2024-05-16T12:48:28.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.127800", - "Timestamp": "2019-10-15T21:10:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.531000", + "Timestamp": "2024-05-16T12:48:28.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.127800", - "Timestamp": "2019-10-15T21:10:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "p2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.431000", + "Timestamp": "2024-05-16T12:48:28.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.127800", - "Timestamp": "2019-10-15T21:10:57.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.127800", - "Timestamp": "2019-10-15T21:10:57.000Z" + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.055700", + "Timestamp": "2024-05-16T12:48:27.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.167800", - "Timestamp": "2019-10-15T21:10:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.050700", + "Timestamp": "2024-05-16T12:48:27.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.167800", - "Timestamp": "2019-10-15T21:10:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.925700", + "Timestamp": "2024-05-16T12:48:27.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.167800", - "Timestamp": "2019-10-15T21:10:57.000Z" + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.713400", + "Timestamp": "2024-05-16T12:48:27.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.167800", - "Timestamp": "2019-10-15T21:10:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.569400", + "Timestamp": "2024-05-16T12:48:27.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.167800", - "Timestamp": "2019-10-15T21:10:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.564400", + "Timestamp": "2024-05-16T12:48:27.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.067800", - "Timestamp": "2019-10-15T21:10:57.000Z" + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.439400", + "Timestamp": "2024-05-16T12:48:27.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.067800", - "Timestamp": "2019-10-15T21:10:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.585800", + "Timestamp": "2024-05-16T12:48:27.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.067800", - "Timestamp": "2019-10-15T21:10:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.580800", + "Timestamp": "2024-05-16T12:48:27.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.067800", - "Timestamp": "2019-10-15T21:10:57.000Z" + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.455800", + "Timestamp": "2024-05-16T12:48:27.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.067800", - "Timestamp": "2019-10-15T21:10:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.460300", + "Timestamp": "2024-05-16T12:48:26.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.111300", - "Timestamp": "2019-10-15T21:10:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.455300", + "Timestamp": "2024-05-16T12:48:26.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "t3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.110100", - "Timestamp": "2019-10-15T21:10:56.000Z" + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.330300", + "Timestamp": "2024-05-16T12:48:26.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.110100", - "Timestamp": "2019-10-15T21:10:56.000Z" + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.186900", + "Timestamp": "2024-05-16T12:48:26.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.111500", - "Timestamp": "2019-10-15T21:10:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.181900", + "Timestamp": "2024-05-16T12:48:26.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.110100", - "Timestamp": "2019-10-15T21:10:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.056900", + "Timestamp": "2024-05-16T12:48:26.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.151300", - "Timestamp": "2019-10-15T21:10:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.612900", + "Timestamp": "2024-05-16T12:48:26.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "t3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.150100", - "Timestamp": "2019-10-15T21:10:56.000Z" + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.918800", + "Timestamp": "2024-05-16T12:48:26.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.150100", - "Timestamp": "2019-10-15T21:10:56.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.151500", - "Timestamp": "2019-10-15T21:10:56.000Z" + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.832800", + "Timestamp": "2024-05-16T12:48:26.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.150100", - "Timestamp": "2019-10-15T21:10:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.621800", + "Timestamp": "2024-05-16T12:48:26.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.051300", - "Timestamp": "2019-10-15T21:10:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.762000", + "Timestamp": "2024-05-16T12:48:26.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "t3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.050100", - "Timestamp": "2019-10-15T21:10:56.000Z" + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.472800", + "Timestamp": "2024-05-16T12:48:26.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.050100", - "Timestamp": "2019-10-15T21:10:56.000Z" + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.331100", + "Timestamp": "2024-05-16T12:48:26.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.051500", - "Timestamp": "2019-10-15T21:10:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "trn1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "9.547300", + "Timestamp": "2024-05-16T12:48:25.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.050100", - "Timestamp": "2019-10-15T21:10:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "trn1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "9.517300", + "Timestamp": "2024-05-16T12:48:25.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.771800", - "Timestamp": "2019-10-15T21:10:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "trn1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "9.417300", + "Timestamp": "2024-05-16T12:48:25.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.741800", - "Timestamp": "2019-10-15T21:10:56.000Z" + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.899800", + "Timestamp": "2024-05-16T12:48:25.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.641800", - "Timestamp": "2019-10-15T21:10:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.751800", + "Timestamp": "2024-05-16T12:48:25.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.952100", - "Timestamp": "2019-10-15T21:10:56.000Z" + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.746800", + "Timestamp": "2024-05-16T12:48:25.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.922100", - "Timestamp": "2019-10-15T21:10:56.000Z" + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.621800", + "Timestamp": "2024-05-16T12:48:25.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.822100", - "Timestamp": "2019-10-15T21:10:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.099200", + "Timestamp": "2024-05-16T12:48:24.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.123700", - "Timestamp": "2019-10-15T21:10:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.972700", + "Timestamp": "2024-05-16T12:48:24.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.123700", - "Timestamp": "2019-10-15T21:10:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.433800", + "Timestamp": "2024-05-16T12:48:24.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.123700", - "Timestamp": "2019-10-15T21:10:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.737700", + "Timestamp": "2024-05-16T12:48:24.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.123700", - "Timestamp": "2019-10-15T21:10:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.732700", + "Timestamp": "2024-05-16T12:48:24.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.123700", - "Timestamp": "2019-10-15T21:10:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.607700", + "Timestamp": "2024-05-16T12:48:24.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5ad.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.163000", - "Timestamp": "2019-10-15T21:10:54.000Z" + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.526300", + "Timestamp": "2024-05-16T12:48:23.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5ad.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.130000", - "Timestamp": "2019-10-15T21:10:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.521300", + "Timestamp": "2024-05-16T12:48:23.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5ad.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.203000", - "Timestamp": "2019-10-15T21:10:54.000Z" + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.396300", + "Timestamp": "2024-05-16T12:48:23.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5ad.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.170000", - "Timestamp": "2019-10-15T21:10:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.555400", + "Timestamp": "2024-05-16T12:48:22.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5ad.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.103000", - "Timestamp": "2019-10-15T21:10:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.550400", + "Timestamp": "2024-05-16T12:48:22.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5ad.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.070000", - "Timestamp": "2019-10-15T21:10:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.425400", + "Timestamp": "2024-05-16T12:48:22.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5ad.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.195000", - "Timestamp": "2019-10-15T21:10:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.192500", + "Timestamp": "2024-05-16T12:48:21.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5ad.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.160600", - "Timestamp": "2019-10-15T21:10:54.000Z" + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.058500", + "Timestamp": "2024-05-16T12:48:21.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.491200", - "Timestamp": "2019-10-15T21:10:47.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.364800", + "Timestamp": "2024-05-16T12:48:20.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.491200", - "Timestamp": "2019-10-15T21:10:47.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.361100", + "Timestamp": "2024-05-16T12:48:20.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.491200", - "Timestamp": "2019-10-15T21:10:47.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.304800", + "Timestamp": "2024-05-16T12:48:20.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.461200", - "Timestamp": "2019-10-15T21:10:47.000Z" + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.525200", + "Timestamp": "2024-05-16T12:48:20.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.461200", - "Timestamp": "2019-10-15T21:10:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.520200", + "Timestamp": "2024-05-16T12:48:20.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.461200", - "Timestamp": "2019-10-15T21:10:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.395200", + "Timestamp": "2024-05-16T12:48:20.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.361200", - "Timestamp": "2019-10-15T21:10:47.000Z" + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.324200", + "Timestamp": "2024-05-16T12:48:18.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.361200", - "Timestamp": "2019-10-15T21:10:47.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.637700", + "Timestamp": "2024-05-16T12:48:18.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.361200", - "Timestamp": "2019-10-15T21:10:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.624700", + "Timestamp": "2024-05-16T12:48:18.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.309500", - "Timestamp": "2019-10-15T21:10:45.000Z" + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.331300", + "Timestamp": "2024-05-16T12:48:17.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.279500", - "Timestamp": "2019-10-15T21:10:45.000Z" + "InstanceType": "c7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.326300", + "Timestamp": "2024-05-16T12:48:17.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.179500", - "Timestamp": "2019-10-15T21:10:45.000Z" + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.201300", + "Timestamp": "2024-05-16T12:48:17.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.126000", - "Timestamp": "2019-10-15T21:10:22.000Z" + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.376100", + "Timestamp": "2024-05-16T12:48:17.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.247600", - "Timestamp": "2019-10-15T21:10:22.000Z" + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.008200", + "Timestamp": "2024-05-16T12:48:17.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.155500", - "Timestamp": "2019-10-15T21:10:22.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.232400", + "Timestamp": "2024-05-16T12:48:17.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.042000", - "Timestamp": "2019-10-15T21:10:16.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.227400", + "Timestamp": "2024-05-16T12:48:17.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.042000", - "Timestamp": "2019-10-15T21:10:16.000Z" + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.102400", + "Timestamp": "2024-05-16T12:48:17.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.042000", - "Timestamp": "2019-10-15T21:10:16.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.135400", + "Timestamp": "2024-05-16T12:48:17.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.042000", - "Timestamp": "2019-10-15T21:10:16.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.133600", + "Timestamp": "2024-05-16T12:48:17.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.042000", - "Timestamp": "2019-10-15T21:10:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.879800", + "Timestamp": "2024-05-16T12:48:16.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.118800", - "Timestamp": "2019-10-15T21:10:09.000Z" + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.874800", + "Timestamp": "2024-05-16T12:48:16.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.118800", - "Timestamp": "2019-10-15T21:10:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.749800", + "Timestamp": "2024-05-16T12:48:16.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.118800", - "Timestamp": "2019-10-15T21:10:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.764600", + "Timestamp": "2024-05-16T12:48:16.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.118800", - "Timestamp": "2019-10-15T21:10:09.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.151600", + "Timestamp": "2024-05-16T12:48:16.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.158800", - "Timestamp": "2019-10-15T21:10:09.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.146600", + "Timestamp": "2024-05-16T12:48:16.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.158800", - "Timestamp": "2019-10-15T21:10:09.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.021600", + "Timestamp": "2024-05-16T12:48:16.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.158800", - "Timestamp": "2019-10-15T21:10:09.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "13.288800", + "Timestamp": "2024-05-16T12:48:15.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.158800", - "Timestamp": "2019-10-15T21:10:09.000Z" + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.686000", + "Timestamp": "2024-05-16T12:48:15.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.058800", - "Timestamp": "2019-10-15T21:10:09.000Z" + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.603100", + "Timestamp": "2024-05-16T12:48:14.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.058800", - "Timestamp": "2019-10-15T21:10:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.598100", + "Timestamp": "2024-05-16T12:48:14.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.058800", - "Timestamp": "2019-10-15T21:10:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.473100", + "Timestamp": "2024-05-16T12:48:14.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.058800", - "Timestamp": "2019-10-15T21:10:09.000Z" + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.268100", + "Timestamp": "2024-05-16T12:48:14.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.126000", - "Timestamp": "2019-10-15T21:10:09.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.263100", + "Timestamp": "2024-05-16T12:48:14.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.126000", - "Timestamp": "2019-10-15T21:10:09.000Z" + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.138100", + "Timestamp": "2024-05-16T12:48:14.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.700000", - "Timestamp": "2019-10-15T21:09:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.918200", + "Timestamp": "2024-05-16T12:48:12.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.700000", - "Timestamp": "2019-10-15T21:09:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "vt1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.878800", + "Timestamp": "2024-05-16T12:48:12.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.670000", - "Timestamp": "2019-10-15T21:09:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "vt1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.848800", + "Timestamp": "2024-05-16T12:48:12.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.670000", - "Timestamp": "2019-10-15T21:09:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "vt1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.748800", + "Timestamp": "2024-05-16T12:48:12.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.570000", - "Timestamp": "2019-10-15T21:09:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.477200", + "Timestamp": "2024-05-16T12:48:12.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.570000", - "Timestamp": "2019-10-15T21:09:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.472200", + "Timestamp": "2024-05-16T12:48:12.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.958000", - "Timestamp": "2019-10-15T21:09:37.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.347200", + "Timestamp": "2024-05-16T12:48:12.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.958000", - "Timestamp": "2019-10-15T21:09:37.000Z" + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.995600", + "Timestamp": "2024-05-16T12:48:12.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.958000", - "Timestamp": "2019-10-15T21:09:37.000Z" - }, - { - "AvailabilityZone": "us-east-1e", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.958000", - "Timestamp": "2019-10-15T21:09:37.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.958000", - "Timestamp": "2019-10-15T21:09:37.000Z" + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.252300", + "Timestamp": "2024-05-16T12:48:12.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.958000", - "Timestamp": "2019-10-15T21:09:37.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.990600", + "Timestamp": "2024-05-16T12:48:12.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.928000", - "Timestamp": "2019-10-15T21:09:37.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.247300", + "Timestamp": "2024-05-16T12:48:12.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "d2.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.928000", - "Timestamp": "2019-10-15T21:09:37.000Z" + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.865600", + "Timestamp": "2024-05-16T12:48:12.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.928000", - "Timestamp": "2019-10-15T21:09:37.000Z" - }, - { - "AvailabilityZone": "us-east-1e", - "InstanceType": "d2.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.928000", - "Timestamp": "2019-10-15T21:09:37.000Z" + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.122300", + "Timestamp": "2024-05-16T12:48:12.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.928000", - "Timestamp": "2019-10-15T21:09:37.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.928000", - "Timestamp": "2019-10-15T21:09:37.000Z" + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.247100", + "Timestamp": "2024-05-16T12:48:11.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.828000", - "Timestamp": "2019-10-15T21:09:37.000Z" + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.727700", + "Timestamp": "2024-05-16T12:48:11.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.828000", - "Timestamp": "2019-10-15T21:09:37.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.349600", + "Timestamp": "2024-05-16T12:48:11.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.828000", - "Timestamp": "2019-10-15T21:09:37.000Z" - }, - { - "AvailabilityZone": "us-east-1e", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.828000", - "Timestamp": "2019-10-15T21:09:37.000Z" + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.748400", + "Timestamp": "2024-05-16T12:48:10.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.828000", - "Timestamp": "2019-10-15T21:09:37.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.828000", - "Timestamp": "2019-10-15T21:09:37.000Z" + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.533800", + "Timestamp": "2024-05-16T12:48:10.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.840000", - "Timestamp": "2019-10-15T21:09:24.000Z" + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.062600", + "Timestamp": "2024-05-16T12:48:10.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.840000", - "Timestamp": "2019-10-15T21:09:24.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.041500", + "Timestamp": "2024-05-16T12:48:10.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.810000", - "Timestamp": "2019-10-15T21:09:24.000Z" + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080300", + "Timestamp": "2024-05-16T12:48:10.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.810000", - "Timestamp": "2019-10-15T21:09:24.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.051300", + "Timestamp": "2024-05-16T12:48:10.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.710000", - "Timestamp": "2019-10-15T21:09:24.000Z" + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020300", + "Timestamp": "2024-05-16T12:48:10.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.710000", - "Timestamp": "2019-10-15T21:09:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.148500", + "Timestamp": "2024-05-16T12:48:10.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.341800", - "Timestamp": "2019-10-15T21:05:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.239800", + "Timestamp": "2024-05-16T12:48:10.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.315900", - "Timestamp": "2019-10-15T21:04:52.000Z" + "SpotPrice": "1.162200", + "Timestamp": "2024-05-16T12:48:10.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.355900", - "Timestamp": "2019-10-15T21:04:52.000Z" + "SpotPrice": "1.157200", + "Timestamp": "2024-05-16T12:48:10.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.255900", - "Timestamp": "2019-10-15T21:04:52.000Z" + "SpotPrice": "1.032200", + "Timestamp": "2024-05-16T12:48:10.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.456900", - "Timestamp": "2019-10-15T21:03:12.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.581700", + "Timestamp": "2024-05-16T12:48:09.000Z" }, { - "AvailabilityZone": "us-east-1d", + "AvailabilityZone": "us-east-1a", "InstanceType": "m5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.426900", - "Timestamp": "2019-10-15T21:03:12.000Z" + "ProductDescription": "Windows", + "SpotPrice": "1.133000", + "Timestamp": "2024-05-16T12:48:09.000Z" }, { "AvailabilityZone": "us-east-1d", "InstanceType": "m5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.326900", - "Timestamp": "2019-10-15T21:03:12.000Z" + "ProductDescription": "Windows", + "SpotPrice": "1.150700", + "Timestamp": "2024-05-16T12:48:09.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094000", - "Timestamp": "2019-10-15T21:03:08.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.314800", + "Timestamp": "2024-05-16T12:48:08.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134000", - "Timestamp": "2019-10-15T21:03:08.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.370000", + "Timestamp": "2024-05-16T12:48:08.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034000", - "Timestamp": "2019-10-15T21:03:08.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.059600", + "Timestamp": "2024-05-16T12:48:08.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.442700", - "Timestamp": "2019-10-15T21:02:40.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.054600", + "Timestamp": "2024-05-16T12:48:08.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.929600", + "Timestamp": "2024-05-16T12:48:08.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.412700", - "Timestamp": "2019-10-15T21:02:40.000Z" + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.825800", + "Timestamp": "2024-05-16T12:48:08.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.312700", - "Timestamp": "2019-10-15T21:02:40.000Z" + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.820800", + "Timestamp": "2024-05-16T12:48:08.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.122000", - "Timestamp": "2019-10-15T21:02:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.695800", + "Timestamp": "2024-05-16T12:48:08.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.162000", - "Timestamp": "2019-10-15T21:02:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.669800", + "Timestamp": "2024-05-16T12:48:07.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.062000", - "Timestamp": "2019-10-15T21:02:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.934300", + "Timestamp": "2024-05-16T12:48:07.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.149000", - "Timestamp": "2019-10-15T21:02:27.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.929300", + "Timestamp": "2024-05-16T12:48:07.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.189000", - "Timestamp": "2019-10-15T21:02:27.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.804300", + "Timestamp": "2024-05-16T12:48:07.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.089000", - "Timestamp": "2019-10-15T21:02:27.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.126500", + "Timestamp": "2024-05-16T12:48:06.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.097200", - "Timestamp": "2019-10-15T20:55:13.000Z" + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.609100", + "Timestamp": "2024-05-16T12:48:06.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.067200", - "Timestamp": "2019-10-15T20:55:13.000Z" + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.579100", + "Timestamp": "2024-05-16T12:48:06.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.967200", - "Timestamp": "2019-10-15T20:55:13.000Z" + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.479100", + "Timestamp": "2024-05-16T12:48:06.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.223100", - "Timestamp": "2019-10-15T20:54:58.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.336100", + "Timestamp": "2024-05-16T12:48:06.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c1.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.193100", - "Timestamp": "2019-10-15T20:54:58.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.306100", + "Timestamp": "2024-05-16T12:48:06.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c1.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.093100", - "Timestamp": "2019-10-15T20:54:58.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.206100", + "Timestamp": "2024-05-16T12:48:06.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.259600", - "Timestamp": "2019-10-15T20:54:56.000Z" + "SpotPrice": "2.106900", + "Timestamp": "2024-05-16T12:48:06.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.229600", - "Timestamp": "2019-10-15T20:54:56.000Z" + "SpotPrice": "2.101900", + "Timestamp": "2024-05-16T12:48:06.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.129600", - "Timestamp": "2019-10-15T20:54:56.000Z" + "SpotPrice": "1.976900", + "Timestamp": "2024-05-16T12:48:06.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.267200", - "Timestamp": "2019-10-15T20:54:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.314600", + "Timestamp": "2024-05-16T12:48:06.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.237200", - "Timestamp": "2019-10-15T20:54:40.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.065300", + "Timestamp": "2024-05-16T12:48:06.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.137200", - "Timestamp": "2019-10-15T20:54:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.192000", + "Timestamp": "2024-05-16T12:48:05.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.565300", - "Timestamp": "2019-10-15T20:54:34.000Z" + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.187000", + "Timestamp": "2024-05-16T12:48:05.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.899300", - "Timestamp": "2019-10-15T20:54:32.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.062000", + "Timestamp": "2024-05-16T12:48:05.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.869300", - "Timestamp": "2019-10-15T20:54:32.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.857700", + "Timestamp": "2024-05-16T12:48:05.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.769300", - "Timestamp": "2019-10-15T20:54:32.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.698300", + "Timestamp": "2024-05-16T12:48:05.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.647300", - "Timestamp": "2019-10-15T20:54:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.840800", + "Timestamp": "2024-05-16T12:48:05.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.617300", - "Timestamp": "2019-10-15T20:54:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.835800", + "Timestamp": "2024-05-16T12:48:05.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.517300", - "Timestamp": "2019-10-15T20:54:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.710800", + "Timestamp": "2024-05-16T12:48:05.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.972200", - "Timestamp": "2019-10-15T20:54:27.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.590000", + "Timestamp": "2024-05-16T12:48:04.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.942200", - "Timestamp": "2019-10-15T20:54:27.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.560000", + "Timestamp": "2024-05-16T12:48:04.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.842200", - "Timestamp": "2019-10-15T20:54:27.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.460000", + "Timestamp": "2024-05-16T12:48:04.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.147300", - "Timestamp": "2019-10-15T20:54:20.000Z" + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.416100", + "Timestamp": "2024-05-16T12:48:04.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.187300", - "Timestamp": "2019-10-15T20:54:20.000Z" + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.412100", + "Timestamp": "2024-05-16T12:48:04.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.087300", - "Timestamp": "2019-10-15T20:54:20.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.880200", - "Timestamp": "2019-10-15T20:54:18.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.850200", - "Timestamp": "2019-10-15T20:54:18.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.750200", - "Timestamp": "2019-10-15T20:54:18.000Z" + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.356100", + "Timestamp": "2024-05-16T12:48:04.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.189100", - "Timestamp": "2019-10-15T20:54:17.000Z" + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.203900", + "Timestamp": "2024-05-16T12:48:03.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.229100", - "Timestamp": "2019-10-15T20:54:17.000Z" + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.200200", + "Timestamp": "2024-05-16T12:48:03.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.129100", - "Timestamp": "2019-10-15T20:54:17.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.096800", - "Timestamp": "2019-10-15T20:54:12.000Z" + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143900", + "Timestamp": "2024-05-16T12:48:03.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.136800", - "Timestamp": "2019-10-15T20:54:12.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.061500", + "Timestamp": "2024-05-16T12:48:03.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.036800", - "Timestamp": "2019-10-15T20:54:12.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.539900", + "Timestamp": "2024-05-16T12:48:03.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5dn.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094000", - "Timestamp": "2019-10-15T20:47:09.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.291300", + "Timestamp": "2024-05-16T12:48:03.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5dn.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134000", - "Timestamp": "2019-10-15T20:47:09.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.261300", + "Timestamp": "2024-05-16T12:48:03.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5dn.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034000", - "Timestamp": "2019-10-15T20:47:09.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.161300", + "Timestamp": "2024-05-16T12:48:03.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.310000", - "Timestamp": "2019-10-15T20:46:45.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.287800", + "Timestamp": "2024-05-16T12:48:02.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.280000", - "Timestamp": "2019-10-15T20:46:45.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.433000", + "Timestamp": "2024-05-16T12:48:01.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.180000", - "Timestamp": "2019-10-15T20:46:45.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.330700", + "Timestamp": "2024-05-16T12:48:01.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.140500", - "Timestamp": "2019-10-15T20:46:08.000Z" + "InstanceType": "g5g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.325700", + "Timestamp": "2024-05-16T12:48:01.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "p3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.110500", - "Timestamp": "2019-10-15T20:46:08.000Z" + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.200700", + "Timestamp": "2024-05-16T12:48:01.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.010500", - "Timestamp": "2019-10-15T20:46:08.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.642100", + "Timestamp": "2024-05-16T12:48:01.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.128500", - "Timestamp": "2019-10-15T20:46:05.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.637100", + "Timestamp": "2024-05-16T12:48:01.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.168500", - "Timestamp": "2019-10-15T20:46:05.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.512100", + "Timestamp": "2024-05-16T12:48:01.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.068500", - "Timestamp": "2019-10-15T20:46:05.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.534100", + "Timestamp": "2024-05-16T12:48:01.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.296000", - "Timestamp": "2019-10-15T20:46:02.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.529100", + "Timestamp": "2024-05-16T12:48:01.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.098200", - "Timestamp": "2019-10-15T20:45:58.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.404100", + "Timestamp": "2024-05-16T12:48:01.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.138200", - "Timestamp": "2019-10-15T20:45:58.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.896100", + "Timestamp": "2024-05-16T12:48:00.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.038200", - "Timestamp": "2019-10-15T20:45:58.000Z" + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.111400", + "Timestamp": "2024-05-16T12:48:00.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t2.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.090600", - "Timestamp": "2019-10-15T20:45:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.106400", + "Timestamp": "2024-05-16T12:48:00.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t2.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.130600", - "Timestamp": "2019-10-15T20:45:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.981400", + "Timestamp": "2024-05-16T12:48:00.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t2.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.030600", - "Timestamp": "2019-10-15T20:45:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.279100", + "Timestamp": "2024-05-16T12:48:00.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.705200", - "Timestamp": "2019-10-15T20:45:56.000Z" + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.202600", + "Timestamp": "2024-05-16T12:48:00.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.675200", - "Timestamp": "2019-10-15T20:45:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.201500", + "Timestamp": "2024-05-16T12:48:00.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.575200", - "Timestamp": "2019-10-15T20:45:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.727800", + "Timestamp": "2024-05-16T12:48:00.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.289800", - "Timestamp": "2019-10-15T20:45:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.407900", + "Timestamp": "2024-05-16T12:48:00.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.259800", - "Timestamp": "2019-10-15T20:45:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.402900", + "Timestamp": "2024-05-16T12:48:00.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.159800", - "Timestamp": "2019-10-15T20:45:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.277900", + "Timestamp": "2024-05-16T12:48:00.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.826800", - "Timestamp": "2019-10-15T20:45:56.000Z" + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.799900", + "Timestamp": "2024-05-16T12:48:00.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.796800", - "Timestamp": "2019-10-15T20:45:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.867400", + "Timestamp": "2024-05-16T12:48:00.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.696800", - "Timestamp": "2019-10-15T20:45:56.000Z" + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.794900", + "Timestamp": "2024-05-16T12:48:00.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.467400", - "Timestamp": "2019-10-15T20:45:54.000Z" + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.862400", + "Timestamp": "2024-05-16T12:48:00.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.437400", - "Timestamp": "2019-10-15T20:45:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.669900", + "Timestamp": "2024-05-16T12:48:00.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.337400", - "Timestamp": "2019-10-15T20:45:54.000Z" + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.737400", + "Timestamp": "2024-05-16T12:48:00.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.297800", - "Timestamp": "2019-10-15T20:45:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.699100", + "Timestamp": "2024-05-16T12:48:00.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.267800", - "Timestamp": "2019-10-15T20:45:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.694100", + "Timestamp": "2024-05-16T12:48:00.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.167800", - "Timestamp": "2019-10-15T20:45:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.569100", + "Timestamp": "2024-05-16T12:48:00.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.525300", - "Timestamp": "2019-10-15T20:45:46.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.416400", + "Timestamp": "2024-05-16T12:47:59.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.495300", - "Timestamp": "2019-10-15T20:45:46.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.411400", + "Timestamp": "2024-05-16T12:47:59.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.395300", - "Timestamp": "2019-10-15T20:45:46.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.286400", + "Timestamp": "2024-05-16T12:47:59.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.361700", - "Timestamp": "2019-10-15T20:38:22.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.132300", + "Timestamp": "2024-05-16T12:47:59.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.331700", - "Timestamp": "2019-10-15T20:38:22.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.609900", + "Timestamp": "2024-05-16T12:47:59.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.231700", - "Timestamp": "2019-10-15T20:38:22.000Z" + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.183200", + "Timestamp": "2024-05-16T12:47:59.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.544400", - "Timestamp": "2019-10-15T20:38:01.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.938900", + "Timestamp": "2024-05-16T12:47:58.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "p2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.414200", - "Timestamp": "2019-10-15T20:37:32.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.961900", + "Timestamp": "2024-05-16T12:47:58.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "p2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.454200", - "Timestamp": "2019-10-15T20:37:32.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.933900", + "Timestamp": "2024-05-16T12:47:58.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "p2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.354200", - "Timestamp": "2019-10-15T20:37:32.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.956900", + "Timestamp": "2024-05-16T12:47:58.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.620000", - "Timestamp": "2019-10-15T20:37:31.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.808900", + "Timestamp": "2024-05-16T12:47:58.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.590000", - "Timestamp": "2019-10-15T20:37:31.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.831900", + "Timestamp": "2024-05-16T12:47:58.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.490000", - "Timestamp": "2019-10-15T20:37:31.000Z" + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.205300", + "Timestamp": "2024-05-16T12:47:58.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.139600", - "Timestamp": "2019-10-15T20:37:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.175300", + "Timestamp": "2024-05-16T12:47:58.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.179600", - "Timestamp": "2019-10-15T20:37:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.075300", + "Timestamp": "2024-05-16T12:47:58.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.079600", - "Timestamp": "2019-10-15T20:37:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.676300", + "Timestamp": "2024-05-16T12:47:58.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.246200", - "Timestamp": "2019-10-15T20:37:15.000Z" + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.671300", + "Timestamp": "2024-05-16T12:47:58.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.216200", - "Timestamp": "2019-10-15T20:37:15.000Z" + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.546300", + "Timestamp": "2024-05-16T12:47:58.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.116200", - "Timestamp": "2019-10-15T20:37:15.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.299100", + "Timestamp": "2024-05-16T12:47:58.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5dn.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094000", - "Timestamp": "2019-10-15T20:30:09.000Z" + "InstanceType": "p3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.953900", + "Timestamp": "2024-05-16T12:47:58.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5dn.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134000", - "Timestamp": "2019-10-15T20:30:09.000Z" + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.923900", + "Timestamp": "2024-05-16T12:47:58.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5dn.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034000", - "Timestamp": "2019-10-15T20:30:09.000Z" + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.823900", + "Timestamp": "2024-05-16T12:47:58.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.077700", - "Timestamp": "2019-10-15T20:29:44.000Z" + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.132100", + "Timestamp": "2024-05-16T12:47:58.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.540400", - "Timestamp": "2019-10-15T20:29:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.568600", + "Timestamp": "2024-05-16T12:47:57.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.510400", - "Timestamp": "2019-10-15T20:29:25.000Z" + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.976800", + "Timestamp": "2024-05-16T12:47:57.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.410400", - "Timestamp": "2019-10-15T20:29:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.068600", + "Timestamp": "2024-05-16T12:47:57.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.096200", - "Timestamp": "2019-10-15T20:29:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.063600", + "Timestamp": "2024-05-16T12:47:57.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.136200", - "Timestamp": "2019-10-15T20:29:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.938600", + "Timestamp": "2024-05-16T12:47:57.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.036200", - "Timestamp": "2019-10-15T20:29:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.279700", + "Timestamp": "2024-05-16T12:47:56.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.292300", - "Timestamp": "2019-10-15T20:29:22.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.080900", + "Timestamp": "2024-05-16T12:47:56.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.262300", - "Timestamp": "2019-10-15T20:29:22.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.075900", + "Timestamp": "2024-05-16T12:47:56.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.162300", - "Timestamp": "2019-10-15T20:29:22.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.950900", + "Timestamp": "2024-05-16T12:47:56.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.303000", - "Timestamp": "2019-10-15T20:29:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.665100", + "Timestamp": "2024-05-16T12:47:56.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.273000", - "Timestamp": "2019-10-15T20:29:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.660100", + "Timestamp": "2024-05-16T12:47:56.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.173000", - "Timestamp": "2019-10-15T20:29:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.535100", + "Timestamp": "2024-05-16T12:47:56.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.328900", - "Timestamp": "2019-10-15T20:29:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.607900", + "Timestamp": "2024-05-16T12:47:56.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.298900", - "Timestamp": "2019-10-15T20:29:03.000Z" + "InstanceType": "m5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.787600", + "Timestamp": "2024-05-16T12:47:56.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.198900", - "Timestamp": "2019-10-15T20:29:03.000Z" + "InstanceType": "m5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.782600", + "Timestamp": "2024-05-16T12:47:56.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.583200", - "Timestamp": "2019-10-15T20:29:03.000Z" + "InstanceType": "m5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.657600", + "Timestamp": "2024-05-16T12:47:56.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.553200", - "Timestamp": "2019-10-15T20:29:03.000Z" + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.561300", + "Timestamp": "2024-05-16T12:47:55.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.453200", - "Timestamp": "2019-10-15T20:29:03.000Z" + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.556300", + "Timestamp": "2024-05-16T12:47:55.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.473400", - "Timestamp": "2019-10-15T20:29:00.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.431300", + "Timestamp": "2024-05-16T12:47:55.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.443400", - "Timestamp": "2019-10-15T20:29:00.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.471500", + "Timestamp": "2024-05-16T12:47:55.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.343400", - "Timestamp": "2019-10-15T20:29:00.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.522600", + "Timestamp": "2024-05-16T12:47:55.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.145400", - "Timestamp": "2019-10-15T20:29:00.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.517600", + "Timestamp": "2024-05-16T12:47:55.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.185400", - "Timestamp": "2019-10-15T20:29:00.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.392600", + "Timestamp": "2024-05-16T12:47:55.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.085400", - "Timestamp": "2019-10-15T20:29:00.000Z" + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.650800", + "Timestamp": "2024-05-16T12:47:54.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.701500", - "Timestamp": "2019-10-15T20:28:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136900", + "Timestamp": "2024-05-16T12:47:54.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.671500", - "Timestamp": "2019-10-15T20:28:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133200", + "Timestamp": "2024-05-16T12:47:54.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.571500", - "Timestamp": "2019-10-15T20:28:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076900", + "Timestamp": "2024-05-16T12:47:54.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.786500", - "Timestamp": "2019-10-15T20:28:55.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.841900", + "Timestamp": "2024-05-16T12:47:54.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.756500", - "Timestamp": "2019-10-15T20:28:55.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.836900", + "Timestamp": "2024-05-16T12:47:54.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.656500", - "Timestamp": "2019-10-15T20:28:55.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.711900", + "Timestamp": "2024-05-16T12:47:54.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094000", - "Timestamp": "2019-10-15T20:22:21.000Z" + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.406400", + "Timestamp": "2024-05-16T12:47:54.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134000", - "Timestamp": "2019-10-15T20:22:21.000Z" + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.678200", + "Timestamp": "2024-05-16T12:47:54.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034000", - "Timestamp": "2019-10-15T20:22:21.000Z" + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.727900", + "Timestamp": "2024-05-16T12:47:53.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.852600", - "Timestamp": "2019-10-15T20:21:24.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.133000", + "Timestamp": "2024-05-16T12:47:53.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.822600", - "Timestamp": "2019-10-15T20:21:24.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.128000", + "Timestamp": "2024-05-16T12:47:53.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.722600", - "Timestamp": "2019-10-15T20:21:24.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.003000", + "Timestamp": "2024-05-16T12:47:53.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.142700", - "Timestamp": "2019-10-15T20:21:22.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.258300", + "Timestamp": "2024-05-16T12:47:53.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "p3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.112700", - "Timestamp": "2019-10-15T20:21:22.000Z" + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171600", + "Timestamp": "2024-05-16T12:47:53.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.012700", - "Timestamp": "2019-10-15T20:21:22.000Z" + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167600", + "Timestamp": "2024-05-16T12:47:53.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "t2.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.068500", - "Timestamp": "2019-10-15T20:21:16.000Z" + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111600", + "Timestamp": "2024-05-16T12:47:53.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.597000", + "Timestamp": "2024-05-16T12:47:52.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "t2.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.038500", - "Timestamp": "2019-10-15T20:21:16.000Z" + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.937300", + "Timestamp": "2024-05-16T12:47:52.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "t2.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.008500", - "Timestamp": "2019-10-15T20:21:16.000Z" + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.932300", + "Timestamp": "2024-05-16T12:47:52.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.nano", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.061800", - "Timestamp": "2019-10-15T20:21:10.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.807300", + "Timestamp": "2024-05-16T12:47:52.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.nano", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-15T20:21:10.000Z" + "InstanceType": "m5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122800", + "Timestamp": "2024-05-16T12:47:52.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.nano", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.001800", - "Timestamp": "2019-10-15T20:21:10.000Z" + "InstanceType": "m5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118800", + "Timestamp": "2024-05-16T12:47:52.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.904500", - "Timestamp": "2019-10-15T20:21:02.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062800", + "Timestamp": "2024-05-16T12:47:52.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.874500", - "Timestamp": "2019-10-15T20:21:02.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.176000", + "Timestamp": "2024-05-16T12:47:52.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.774500", - "Timestamp": "2019-10-15T20:21:02.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.349100", + "Timestamp": "2024-05-16T12:47:51.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.459100", - "Timestamp": "2019-10-15T20:21:01.000Z" + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.181100", + "Timestamp": "2024-05-16T12:47:51.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.429100", - "Timestamp": "2019-10-15T20:21:01.000Z" + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.108200", + "Timestamp": "2024-05-16T12:47:50.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.329100", - "Timestamp": "2019-10-15T20:21:01.000Z" + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.103200", + "Timestamp": "2024-05-16T12:47:50.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-15T20:21:01.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.978200", + "Timestamp": "2024-05-16T12:47:50.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-15T20:21:01.000Z" + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.061400", + "Timestamp": "2024-05-16T12:47:49.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-15T20:21:01.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "14.005700", + "Timestamp": "2024-05-16T12:47:49.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.425000", - "Timestamp": "2019-10-15T20:20:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.856600", + "Timestamp": "2024-05-16T12:47:49.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.395000", - "Timestamp": "2019-10-15T20:20:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.851600", + "Timestamp": "2024-05-16T12:47:49.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.295000", - "Timestamp": "2019-10-15T20:20:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.726600", + "Timestamp": "2024-05-16T12:47:49.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.474800", - "Timestamp": "2019-10-15T20:20:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.683400", + "Timestamp": "2024-05-16T12:47:49.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.444800", - "Timestamp": "2019-10-15T20:20:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.678400", + "Timestamp": "2024-05-16T12:47:49.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.344800", - "Timestamp": "2019-10-15T20:20:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.553400", + "Timestamp": "2024-05-16T12:47:49.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.220600", - "Timestamp": "2019-10-15T20:20:55.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.651200", + "Timestamp": "2024-05-16T12:47:49.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.190600", - "Timestamp": "2019-10-15T20:20:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.439700", + "Timestamp": "2024-05-16T12:47:48.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.090600", - "Timestamp": "2019-10-15T20:20:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.210300", + "Timestamp": "2024-05-16T12:47:48.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.519800", - "Timestamp": "2019-10-15T20:20:49.000Z" + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.502500", + "Timestamp": "2024-05-16T12:47:48.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "g3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.489800", - "Timestamp": "2019-10-15T20:20:49.000Z" + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125500", + "Timestamp": "2024-05-16T12:47:47.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.389800", - "Timestamp": "2019-10-15T20:20:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.599900", + "Timestamp": "2024-05-16T12:47:47.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.141800", - "Timestamp": "2019-10-15T20:20:32.000Z" + "InstanceType": "r7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.594900", + "Timestamp": "2024-05-16T12:47:47.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.181800", - "Timestamp": "2019-10-15T20:20:32.000Z" + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.469900", + "Timestamp": "2024-05-16T12:47:47.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.081800", - "Timestamp": "2019-10-15T20:20:32.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.383000", + "Timestamp": "2024-05-16T12:47:47.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252000", - "Timestamp": "2019-10-15T20:13:21.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.378000", + "Timestamp": "2024-05-16T12:47:47.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.253000", + "Timestamp": "2024-05-16T12:47:47.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252000", - "Timestamp": "2019-10-15T20:13:21.000Z" + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.236900", + "Timestamp": "2024-05-16T12:47:46.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252000", - "Timestamp": "2019-10-15T20:13:21.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.231900", + "Timestamp": "2024-05-16T12:47:46.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252000", - "Timestamp": "2019-10-15T20:13:21.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.106900", + "Timestamp": "2024-05-16T12:47:46.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252000", - "Timestamp": "2019-10-15T20:13:21.000Z" + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.536600", + "Timestamp": "2024-05-16T12:47:46.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.797400", - "Timestamp": "2019-10-15T20:13:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.607400", + "Timestamp": "2024-05-16T12:47:46.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.767400", - "Timestamp": "2019-10-15T20:13:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.602400", + "Timestamp": "2024-05-16T12:47:46.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.667400", - "Timestamp": "2019-10-15T20:13:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.477400", + "Timestamp": "2024-05-16T12:47:46.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.904200", - "Timestamp": "2019-10-15T20:13:09.000Z" + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.213000", + "Timestamp": "2024-05-16T12:47:46.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.874200", - "Timestamp": "2019-10-15T20:13:09.000Z" + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.208000", + "Timestamp": "2024-05-16T12:47:46.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.774200", - "Timestamp": "2019-10-15T20:13:09.000Z" + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.083000", + "Timestamp": "2024-05-16T12:47:46.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "7.474000", - "Timestamp": "2019-10-15T20:13:08.000Z" + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.507900", + "Timestamp": "2024-05-16T12:47:46.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "7.474000", - "Timestamp": "2019-10-15T20:13:08.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.502900", + "Timestamp": "2024-05-16T12:47:46.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "7.474000", - "Timestamp": "2019-10-15T20:13:08.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.377900", + "Timestamp": "2024-05-16T12:47:46.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "7.474000", - "Timestamp": "2019-10-15T20:13:08.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.782700", + "Timestamp": "2024-05-16T12:47:45.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "p3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "7.444000", - "Timestamp": "2019-10-15T20:13:08.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.777700", + "Timestamp": "2024-05-16T12:47:45.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "p3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "7.444000", - "Timestamp": "2019-10-15T20:13:08.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.652700", + "Timestamp": "2024-05-16T12:47:45.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "p3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "7.444000", - "Timestamp": "2019-10-15T20:13:08.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.135000", + "Timestamp": "2024-05-16T12:47:45.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "p3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "7.444000", - "Timestamp": "2019-10-15T20:13:08.000Z" + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.135100", + "Timestamp": "2024-05-16T12:47:45.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "7.344000", - "Timestamp": "2019-10-15T20:13:08.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.130700", + "Timestamp": "2024-05-16T12:47:45.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "7.344000", - "Timestamp": "2019-10-15T20:13:08.000Z" + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.756800", + "Timestamp": "2024-05-16T12:47:45.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "7.344000", - "Timestamp": "2019-10-15T20:13:08.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.800000", + "Timestamp": "2024-05-16T12:47:45.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "7.344000", - "Timestamp": "2019-10-15T20:13:08.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.751800", + "Timestamp": "2024-05-16T12:47:45.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.146100", - "Timestamp": "2019-10-15T20:12:57.000Z" + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.795000", + "Timestamp": "2024-05-16T12:47:45.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.626800", + "Timestamp": "2024-05-16T12:47:45.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.186100", - "Timestamp": "2019-10-15T20:12:57.000Z" + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.670000", + "Timestamp": "2024-05-16T12:47:45.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.339300", + "Timestamp": "2024-05-16T12:47:45.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.086100", - "Timestamp": "2019-10-15T20:12:57.000Z" + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.333800", + "Timestamp": "2024-05-16T12:47:45.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.443900", - "Timestamp": "2019-10-15T20:12:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334300", + "Timestamp": "2024-05-16T12:47:45.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.413900", - "Timestamp": "2019-10-15T20:12:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.328800", + "Timestamp": "2024-05-16T12:47:45.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.313900", - "Timestamp": "2019-10-15T20:12:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.209300", + "Timestamp": "2024-05-16T12:47:45.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.126200", - "Timestamp": "2019-10-15T20:12:45.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.203800", + "Timestamp": "2024-05-16T12:47:45.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.166200", - "Timestamp": "2019-10-15T20:12:45.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142300", + "Timestamp": "2024-05-16T12:47:45.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.066200", - "Timestamp": "2019-10-15T20:12:45.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138600", + "Timestamp": "2024-05-16T12:47:45.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.374100", - "Timestamp": "2019-10-15T20:12:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082300", + "Timestamp": "2024-05-16T12:47:45.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.344100", - "Timestamp": "2019-10-15T20:12:43.000Z" + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.606400", + "Timestamp": "2024-05-16T12:47:45.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.244100", - "Timestamp": "2019-10-15T20:12:43.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.581000", + "Timestamp": "2024-05-16T12:47:45.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-15T20:12:42.000Z" + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.438900", + "Timestamp": "2024-05-16T12:47:45.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-15T20:12:42.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.433900", + "Timestamp": "2024-05-16T12:47:45.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-15T20:12:42.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.308900", + "Timestamp": "2024-05-16T12:47:45.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-15T20:12:42.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.673000", + "Timestamp": "2024-05-16T12:47:45.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-15T20:12:42.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.668000", + "Timestamp": "2024-05-16T12:47:45.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.477900", - "Timestamp": "2019-10-15T20:12:37.000Z" + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.543000", + "Timestamp": "2024-05-16T12:47:45.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.477900", - "Timestamp": "2019-10-15T20:12:37.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.477900", - "Timestamp": "2019-10-15T20:12:37.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.477900", - "Timestamp": "2019-10-15T20:12:37.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.477900", - "Timestamp": "2019-10-15T20:12:37.000Z" + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294300", + "Timestamp": "2024-05-16T12:47:44.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.293400", - "Timestamp": "2019-10-15T20:12:25.000Z" + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289300", + "Timestamp": "2024-05-16T12:47:44.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.263400", - "Timestamp": "2019-10-15T20:12:25.000Z" + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164300", + "Timestamp": "2024-05-16T12:47:44.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.163400", - "Timestamp": "2019-10-15T20:12:25.000Z" + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.405600", + "Timestamp": "2024-05-16T12:47:44.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.144000", - "Timestamp": "2019-10-15T20:12:23.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168100", + "Timestamp": "2024-05-16T12:47:44.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.146400", - "Timestamp": "2019-10-15T20:12:23.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164100", + "Timestamp": "2024-05-16T12:47:44.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.184000", - "Timestamp": "2019-10-15T20:12:23.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T12:47:44.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.186400", - "Timestamp": "2019-10-15T20:12:23.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.347200", + "Timestamp": "2024-05-16T12:47:44.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.084000", - "Timestamp": "2019-10-15T20:12:23.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.342200", + "Timestamp": "2024-05-16T12:47:44.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.086400", - "Timestamp": "2019-10-15T20:12:23.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.217200", + "Timestamp": "2024-05-16T12:47:44.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.295900", - "Timestamp": "2019-10-15T20:12:07.000Z" + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.266900", + "Timestamp": "2024-05-16T12:47:44.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.265900", - "Timestamp": "2019-10-15T20:12:07.000Z" + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.263900", + "Timestamp": "2024-05-16T12:47:44.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.165900", - "Timestamp": "2019-10-15T20:12:07.000Z" + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.206900", + "Timestamp": "2024-05-16T12:47:44.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "10.288000", - "Timestamp": "2019-10-15T20:11:51.000Z" + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.275400", + "Timestamp": "2024-05-16T12:47:44.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "10.288000", - "Timestamp": "2019-10-15T20:11:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.276800", + "Timestamp": "2024-05-16T12:47:44.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "10.288000", - "Timestamp": "2019-10-15T20:11:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297500", + "Timestamp": "2024-05-16T12:47:44.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "10.288000", - "Timestamp": "2019-10-15T20:11:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267500", + "Timestamp": "2024-05-16T12:47:44.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.248800", - "Timestamp": "2019-10-15T20:11:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167500", + "Timestamp": "2024-05-16T12:47:44.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.248800", - "Timestamp": "2019-10-15T20:11:43.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.248800", - "Timestamp": "2019-10-15T20:11:43.000Z" + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.094900", + "Timestamp": "2024-05-16T12:47:44.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.248800", - "Timestamp": "2019-10-15T20:11:43.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.064900", + "Timestamp": "2024-05-16T12:47:44.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.248800", - "Timestamp": "2019-10-15T20:11:43.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.964900", + "Timestamp": "2024-05-16T12:47:44.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.248800", - "Timestamp": "2019-10-15T20:11:43.000Z" + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.532000", + "Timestamp": "2024-05-16T12:47:43.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.995100", - "Timestamp": "2019-10-15T20:11:40.000Z" + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.554400", + "Timestamp": "2024-05-16T12:47:43.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.995100", - "Timestamp": "2019-10-15T20:11:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.588200", + "Timestamp": "2024-05-16T12:47:43.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.995100", - "Timestamp": "2019-10-15T20:11:40.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.549400", + "Timestamp": "2024-05-16T12:47:43.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.995100", - "Timestamp": "2019-10-15T20:11:40.000Z" + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.583200", + "Timestamp": "2024-05-16T12:47:43.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.995100", - "Timestamp": "2019-10-15T20:11:40.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.424400", + "Timestamp": "2024-05-16T12:47:43.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.995100", - "Timestamp": "2019-10-15T20:11:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.458200", + "Timestamp": "2024-05-16T12:47:43.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.995100", - "Timestamp": "2019-10-15T20:11:28.000Z" + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.248600", + "Timestamp": "2024-05-16T12:47:43.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.995100", - "Timestamp": "2019-10-15T20:11:28.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.243600", + "Timestamp": "2024-05-16T12:47:43.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.995100", - "Timestamp": "2019-10-15T20:11:28.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.118600", + "Timestamp": "2024-05-16T12:47:43.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.995100", - "Timestamp": "2019-10-15T20:11:28.000Z" + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.562400", + "Timestamp": "2024-05-16T12:47:43.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.389100", - "Timestamp": "2019-10-15T20:11:22.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.283300", + "Timestamp": "2024-05-16T12:47:42.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.359100", - "Timestamp": "2019-10-15T20:11:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.029800", + "Timestamp": "2024-05-16T12:47:42.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.259100", - "Timestamp": "2019-10-15T20:11:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.999800", + "Timestamp": "2024-05-16T12:47:42.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.239000", - "Timestamp": "2019-10-15T20:11:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.899800", + "Timestamp": "2024-05-16T12:47:42.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.239000", - "Timestamp": "2019-10-15T20:11:11.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.256400", + "Timestamp": "2024-05-16T12:47:42.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.239000", - "Timestamp": "2019-10-15T20:11:11.000Z" + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.226400", + "Timestamp": "2024-05-16T12:47:42.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.239000", - "Timestamp": "2019-10-15T20:11:11.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126400", + "Timestamp": "2024-05-16T12:47:42.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.239000", - "Timestamp": "2019-10-15T20:11:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T12:47:42.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-16T12:47:42.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044900", + "Timestamp": "2024-05-16T12:47:42.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c1.xlarge", + "InstanceType": "m4.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.182000", - "Timestamp": "2019-10-15T20:11:10.000Z" + "SpotPrice": "0.340500", + "Timestamp": "2024-05-16T12:47:42.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.182000", - "Timestamp": "2019-10-15T20:11:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.310500", + "Timestamp": "2024-05-16T12:47:42.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.182000", - "Timestamp": "2019-10-15T20:11:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.210500", + "Timestamp": "2024-05-16T12:47:42.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.182000", - "Timestamp": "2019-10-15T20:11:10.000Z" + "SpotPrice": "0.635500", + "Timestamp": "2024-05-16T12:47:41.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.152000", - "Timestamp": "2019-10-15T20:11:10.000Z" + "SpotPrice": "0.630500", + "Timestamp": "2024-05-16T12:47:41.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c1.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.152000", - "Timestamp": "2019-10-15T20:11:10.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.505500", + "Timestamp": "2024-05-16T12:47:41.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c1.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.152000", - "Timestamp": "2019-10-15T20:11:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.536200", + "Timestamp": "2024-05-16T12:47:41.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.152000", - "Timestamp": "2019-10-15T20:11:10.000Z" + "SpotPrice": "0.531200", + "Timestamp": "2024-05-16T12:47:41.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c1.xlarge", + "InstanceType": "r7g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.052000", - "Timestamp": "2019-10-15T20:11:10.000Z" + "SpotPrice": "0.406200", + "Timestamp": "2024-05-16T12:47:41.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c1.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.052000", - "Timestamp": "2019-10-15T20:11:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.501200", + "Timestamp": "2024-05-16T12:47:41.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c1.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.052000", - "Timestamp": "2019-10-15T20:11:10.000Z" + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.496200", + "Timestamp": "2024-05-16T12:47:41.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.052000", - "Timestamp": "2019-10-15T20:11:10.000Z" + "SpotPrice": "0.371200", + "Timestamp": "2024-05-16T12:47:41.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c1.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.372000", - "Timestamp": "2019-10-15T20:11:10.000Z" + "InstanceType": "a1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.233700", + "Timestamp": "2024-05-16T12:47:41.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c1.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.372000", - "Timestamp": "2019-10-15T20:11:10.000Z" + "InstanceType": "a1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.237700", + "Timestamp": "2024-05-16T12:47:41.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c1.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.372000", - "Timestamp": "2019-10-15T20:11:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "a1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.228700", + "Timestamp": "2024-05-16T12:47:41.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c1.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.372000", - "Timestamp": "2019-10-15T20:11:10.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "a1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232700", + "Timestamp": "2024-05-16T12:47:41.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c1.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.372000", - "Timestamp": "2019-10-15T20:11:10.000Z" + "InstanceType": "a1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T12:47:41.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c1.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.372000", - "Timestamp": "2019-10-15T20:11:10.000Z" + "InstanceType": "a1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T12:47:41.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c1.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.372000", - "Timestamp": "2019-10-15T20:11:10.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.898800", + "Timestamp": "2024-05-16T12:47:41.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c1.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.372000", - "Timestamp": "2019-10-15T20:11:10.000Z" + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.893800", + "Timestamp": "2024-05-16T12:47:41.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.237400", - "Timestamp": "2019-10-15T20:11:10.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.768800", + "Timestamp": "2024-05-16T12:47:41.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c1.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.207400", - "Timestamp": "2019-10-15T20:11:10.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.507500", + "Timestamp": "2024-05-16T12:47:41.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c1.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.107400", - "Timestamp": "2019-10-15T20:11:10.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.477500", + "Timestamp": "2024-05-16T12:47:41.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.946200", - "Timestamp": "2019-10-15T20:10:54.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.377500", + "Timestamp": "2024-05-16T12:47:41.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.947000", - "Timestamp": "2019-10-15T20:10:54.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.957400", - "Timestamp": "2019-10-15T20:10:54.000Z" - }, - { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.916200", - "Timestamp": "2019-10-15T20:10:54.000Z" + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.881700", + "Timestamp": "2024-05-16T12:47:41.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.917000", - "Timestamp": "2019-10-15T20:10:54.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.927400", - "Timestamp": "2019-10-15T20:10:54.000Z" - }, - { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.816200", - "Timestamp": "2019-10-15T20:10:54.000Z" + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.876700", + "Timestamp": "2024-05-16T12:47:41.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.817000", - "Timestamp": "2019-10-15T20:10:54.000Z" + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.751700", + "Timestamp": "2024-05-16T12:47:41.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.827400", - "Timestamp": "2019-10-15T20:10:54.000Z" + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.974000", + "Timestamp": "2024-05-16T12:47:41.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.024200", - "Timestamp": "2019-10-15T20:10:53.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.969000", + "Timestamp": "2024-05-16T12:47:41.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.024200", - "Timestamp": "2019-10-15T20:10:53.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.844000", + "Timestamp": "2024-05-16T12:47:41.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.024200", - "Timestamp": "2019-10-15T20:10:53.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.774800", + "Timestamp": "2024-05-16T12:47:40.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.024200", - "Timestamp": "2019-10-15T20:10:53.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.744800", + "Timestamp": "2024-05-16T12:47:40.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.024200", - "Timestamp": "2019-10-15T20:10:53.000Z" + "InstanceType": "g6.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.644800", + "Timestamp": "2024-05-16T12:47:40.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.072500", - "Timestamp": "2019-10-15T20:09:57.000Z" - }, - { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.072500", - "Timestamp": "2019-10-15T20:09:57.000Z" + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103200", + "Timestamp": "2024-05-16T12:47:40.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.072500", - "Timestamp": "2019-10-15T20:09:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T12:47:40.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.072500", - "Timestamp": "2019-10-15T20:09:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043200", + "Timestamp": "2024-05-16T12:47:40.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.072500", - "Timestamp": "2019-10-15T20:09:57.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.112500", - "Timestamp": "2019-10-15T20:09:57.000Z" + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.209100", + "Timestamp": "2024-05-16T12:47:39.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.112500", - "Timestamp": "2019-10-15T20:09:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.464100", + "Timestamp": "2024-05-16T12:47:39.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.112500", - "Timestamp": "2019-10-15T20:09:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.459100", + "Timestamp": "2024-05-16T12:47:39.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t3.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.112500", - "Timestamp": "2019-10-15T20:09:57.000Z" + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.334100", + "Timestamp": "2024-05-16T12:47:39.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.112500", - "Timestamp": "2019-10-15T20:09:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.990800", + "Timestamp": "2024-05-16T12:47:39.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.012500", - "Timestamp": "2019-10-15T20:09:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.400600", + "Timestamp": "2024-05-16T12:47:39.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.012500", - "Timestamp": "2019-10-15T20:09:57.000Z" + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.370600", + "Timestamp": "2024-05-16T12:47:39.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.012500", - "Timestamp": "2019-10-15T20:09:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.270600", + "Timestamp": "2024-05-16T12:47:39.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.012500", - "Timestamp": "2019-10-15T20:09:57.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140900", + "Timestamp": "2024-05-16T12:47:39.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.012500", - "Timestamp": "2019-10-15T20:09:57.000Z" + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136900", + "Timestamp": "2024-05-16T12:47:39.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.030900", - "Timestamp": "2019-10-15T20:09:55.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080900", + "Timestamp": "2024-05-16T12:47:39.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.030900", - "Timestamp": "2019-10-15T20:09:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.361900", + "Timestamp": "2024-05-16T12:47:39.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t3.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.030900", - "Timestamp": "2019-10-15T20:09:55.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.030900", - "Timestamp": "2019-10-15T20:09:55.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.030900", - "Timestamp": "2019-10-15T20:09:55.000Z" + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.121400", + "Timestamp": "2024-05-16T12:47:39.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "a1.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.264300", - "Timestamp": "2019-10-15T20:04:58.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.356900", + "Timestamp": "2024-05-16T12:47:39.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "a1.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.234300", - "Timestamp": "2019-10-15T20:04:58.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.116400", + "Timestamp": "2024-05-16T12:47:39.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "a1.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-15T20:04:58.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.231900", + "Timestamp": "2024-05-16T12:47:39.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.074700", - "Timestamp": "2019-10-15T20:04:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.991400", + "Timestamp": "2024-05-16T12:47:39.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.294800", - "Timestamp": "2019-10-15T20:04:32.000Z" + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.310100", + "Timestamp": "2024-05-16T12:47:38.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.491800", - "Timestamp": "2019-10-15T20:04:31.000Z" + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.305100", + "Timestamp": "2024-05-16T12:47:38.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.461800", - "Timestamp": "2019-10-15T20:04:31.000Z" + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.180100", + "Timestamp": "2024-05-16T12:47:38.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.361800", - "Timestamp": "2019-10-15T20:04:31.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.830100", + "Timestamp": "2024-05-16T12:47:38.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "a1.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.310700", - "Timestamp": "2019-10-15T20:04:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.825100", + "Timestamp": "2024-05-16T12:47:38.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "a1.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.280700", - "Timestamp": "2019-10-15T20:04:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.700100", + "Timestamp": "2024-05-16T12:47:38.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "a1.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.180700", - "Timestamp": "2019-10-15T20:04:03.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.827900", + "Timestamp": "2024-05-16T12:47:37.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.670600", - "Timestamp": "2019-10-15T20:04:02.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.822900", + "Timestamp": "2024-05-16T12:47:37.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.640600", - "Timestamp": "2019-10-15T20:04:02.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.697900", + "Timestamp": "2024-05-16T12:47:37.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.540600", - "Timestamp": "2019-10-15T20:04:02.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150600", + "Timestamp": "2024-05-16T12:47:37.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.504000", - "Timestamp": "2019-10-15T20:03:55.000Z" + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146600", + "Timestamp": "2024-05-16T12:47:37.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.179500", - "Timestamp": "2019-10-15T19:56:21.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090600", + "Timestamp": "2024-05-16T12:47:37.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.149500", - "Timestamp": "2019-10-15T19:56:21.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.310900", + "Timestamp": "2024-05-16T12:47:36.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.049500", - "Timestamp": "2019-10-15T19:56:21.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.952400", + "Timestamp": "2024-05-16T12:47:36.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.270000", - "Timestamp": "2019-10-15T19:55:50.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.922400", + "Timestamp": "2024-05-16T12:47:36.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.240000", - "Timestamp": "2019-10-15T19:55:50.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.822400", + "Timestamp": "2024-05-16T12:47:36.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.140000", - "Timestamp": "2019-10-15T19:55:50.000Z" + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.023900", + "Timestamp": "2024-05-16T12:47:36.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.391200", - "Timestamp": "2019-10-15T19:55:32.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.993900", + "Timestamp": "2024-05-16T12:47:36.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.361200", - "Timestamp": "2019-10-15T19:55:32.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.893900", + "Timestamp": "2024-05-16T12:47:36.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.261200", - "Timestamp": "2019-10-15T19:55:32.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.367200", + "Timestamp": "2024-05-16T12:47:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.138400", - "Timestamp": "2019-10-15T19:55:27.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.362200", + "Timestamp": "2024-05-16T12:47:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.178400", - "Timestamp": "2019-10-15T19:55:27.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.237200", + "Timestamp": "2024-05-16T12:47:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.078400", - "Timestamp": "2019-10-15T19:55:27.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.431800", + "Timestamp": "2024-05-16T12:47:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "p2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.417000", - "Timestamp": "2019-10-15T19:55:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.580400", + "Timestamp": "2024-05-16T12:47:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "p2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.457000", - "Timestamp": "2019-10-15T19:55:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.576700", + "Timestamp": "2024-05-16T12:47:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "p2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.357000", - "Timestamp": "2019-10-15T19:55:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.520400", + "Timestamp": "2024-05-16T12:47:35.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092400", - "Timestamp": "2019-10-15T19:55:04.000Z" + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.541600", + "Timestamp": "2024-05-16T12:47:33.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132400", - "Timestamp": "2019-10-15T19:55:04.000Z" + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.536600", + "Timestamp": "2024-05-16T12:47:33.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032400", - "Timestamp": "2019-10-15T19:55:04.000Z" + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.411600", + "Timestamp": "2024-05-16T12:47:33.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.946200", - "Timestamp": "2019-10-15T19:48:11.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.067800", + "Timestamp": "2024-05-16T12:47:33.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.916200", - "Timestamp": "2019-10-15T19:48:11.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.062800", + "Timestamp": "2024-05-16T12:47:33.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.816200", - "Timestamp": "2019-10-15T19:48:11.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.937800", + "Timestamp": "2024-05-16T12:47:33.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.128200", - "Timestamp": "2019-10-15T19:48:11.000Z" + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.284600", + "Timestamp": "2024-05-16T12:47:32.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.168200", - "Timestamp": "2019-10-15T19:48:11.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.374000", + "Timestamp": "2024-05-16T12:47:32.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.068200", - "Timestamp": "2019-10-15T19:48:11.000Z" + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.254600", + "Timestamp": "2024-05-16T12:47:32.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.903700", - "Timestamp": "2019-10-15T19:48:09.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.344000", + "Timestamp": "2024-05-16T12:47:32.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.873700", - "Timestamp": "2019-10-15T19:48:09.000Z" + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.154600", + "Timestamp": "2024-05-16T12:47:32.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.773700", - "Timestamp": "2019-10-15T19:48:09.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.244000", + "Timestamp": "2024-05-16T12:47:32.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.085600", - "Timestamp": "2019-10-15T19:48:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.523900", + "Timestamp": "2024-05-16T12:47:32.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094000", - "Timestamp": "2019-10-15T19:48:06.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.864700", + "Timestamp": "2024-05-16T12:47:31.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134000", - "Timestamp": "2019-10-15T19:48:06.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.834700", + "Timestamp": "2024-05-16T12:47:31.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034000", - "Timestamp": "2019-10-15T19:48:06.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.734700", + "Timestamp": "2024-05-16T12:47:31.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.099700", - "Timestamp": "2019-10-15T19:48:00.000Z" + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148500", + "Timestamp": "2024-05-16T12:47:30.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.139700", - "Timestamp": "2019-10-15T19:48:00.000Z" + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144500", + "Timestamp": "2024-05-16T12:47:30.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.039700", - "Timestamp": "2019-10-15T19:48:00.000Z" + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088500", + "Timestamp": "2024-05-16T12:47:30.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.314700", - "Timestamp": "2019-10-15T19:47:47.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.620200", + "Timestamp": "2024-05-16T12:47:30.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.699700", - "Timestamp": "2019-10-15T19:47:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.070500", + "Timestamp": "2024-05-16T12:47:30.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.669700", - "Timestamp": "2019-10-15T19:47:27.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.016000", + "Timestamp": "2024-05-16T12:47:30.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.569700", - "Timestamp": "2019-10-15T19:47:27.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.011000", + "Timestamp": "2024-05-16T12:47:30.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.265200", - "Timestamp": "2019-10-15T19:47:25.000Z" + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.886000", + "Timestamp": "2024-05-16T12:47:30.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.235200", - "Timestamp": "2019-10-15T19:47:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.044000", + "Timestamp": "2024-05-16T12:47:26.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.135200", - "Timestamp": "2019-10-15T19:47:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.033700", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176200", + "Timestamp": "2024-05-16T12:47:25.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172200", + "Timestamp": "2024-05-16T12:47:25.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116200", + "Timestamp": "2024-05-16T12:47:25.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.605100", - "Timestamp": "2019-10-15T19:47:20.000Z" + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.810600", + "Timestamp": "2024-05-16T12:47:25.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.575100", - "Timestamp": "2019-10-15T19:47:20.000Z" + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.805600", + "Timestamp": "2024-05-16T12:47:25.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.475100", - "Timestamp": "2019-10-15T19:47:20.000Z" + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.680600", + "Timestamp": "2024-05-16T12:47:25.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.313200", - "Timestamp": "2019-10-15T19:47:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172000", + "Timestamp": "2024-05-16T12:47:24.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.283200", - "Timestamp": "2019-10-15T19:47:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168300", + "Timestamp": "2024-05-16T12:47:24.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.183200", - "Timestamp": "2019-10-15T19:47:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-16T12:47:24.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.268900", - "Timestamp": "2019-10-15T19:47:16.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.705000", + "Timestamp": "2024-05-16T12:47:24.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.238900", - "Timestamp": "2019-10-15T19:47:16.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.700000", + "Timestamp": "2024-05-16T12:47:24.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.138900", - "Timestamp": "2019-10-15T19:47:16.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.575000", + "Timestamp": "2024-05-16T12:47:24.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.386000", - "Timestamp": "2019-10-15T19:47:03.000Z" + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078500", + "Timestamp": "2024-05-16T12:47:20.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.356000", - "Timestamp": "2019-10-15T19:47:03.000Z" + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.049500", + "Timestamp": "2024-05-16T12:47:20.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.256000", - "Timestamp": "2019-10-15T19:47:03.000Z" + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018500", + "Timestamp": "2024-05-16T12:47:20.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.602000", - "Timestamp": "2019-10-15T19:42:57.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.608900", + "Timestamp": "2024-05-16T12:33:30.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.572000", - "Timestamp": "2019-10-15T19:42:57.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.603900", + "Timestamp": "2024-05-16T12:33:30.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.472000", - "Timestamp": "2019-10-15T19:42:57.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.478900", + "Timestamp": "2024-05-16T12:33:30.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.680000", - "Timestamp": "2019-10-15T19:40:57.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.000100", + "Timestamp": "2024-05-16T12:33:29.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.703600", - "Timestamp": "2019-10-15T19:39:43.000Z" + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.995100", + "Timestamp": "2024-05-16T12:33:29.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.673600", - "Timestamp": "2019-10-15T19:39:43.000Z" + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.870100", + "Timestamp": "2024-05-16T12:33:29.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.573600", - "Timestamp": "2019-10-15T19:39:43.000Z" + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.703300", + "Timestamp": "2024-05-16T12:33:27.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.077900", - "Timestamp": "2019-10-15T19:39:43.000Z" + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.010600", + "Timestamp": "2024-05-16T12:33:23.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.146800", - "Timestamp": "2019-10-15T19:39:29.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.064800", + "Timestamp": "2024-05-16T12:33:21.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.186800", - "Timestamp": "2019-10-15T19:39:29.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.591300", + "Timestamp": "2024-05-16T12:33:21.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.086800", - "Timestamp": "2019-10-15T19:39:29.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.521200", + "Timestamp": "2024-05-16T12:33:21.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.779100", - "Timestamp": "2019-10-15T19:39:29.000Z" + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.466500", + "Timestamp": "2024-05-16T12:33:20.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.749100", - "Timestamp": "2019-10-15T19:39:29.000Z" + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.461500", + "Timestamp": "2024-05-16T12:33:20.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.649100", - "Timestamp": "2019-10-15T19:39:29.000Z" + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.336500", + "Timestamp": "2024-05-16T12:33:20.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.small", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.615200", + "Timestamp": "2024-05-16T12:33:19.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.009400", + "Timestamp": "2024-05-16T12:33:19.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "d2.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067600", - "Timestamp": "2019-10-15T19:39:26.000Z" + "SpotPrice": "1.351100", + "Timestamp": "2024-05-16T12:33:19.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.small", + "InstanceType": "d2.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.037600", - "Timestamp": "2019-10-15T19:39:26.000Z" + "SpotPrice": "1.321100", + "Timestamp": "2024-05-16T12:33:19.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.small", + "InstanceType": "d2.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007600", - "Timestamp": "2019-10-15T19:39:26.000Z" + "SpotPrice": "1.221100", + "Timestamp": "2024-05-16T12:33:19.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "a1.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.280200", - "Timestamp": "2019-10-15T19:39:14.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.187100", + "Timestamp": "2024-05-16T12:33:19.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.182100", + "Timestamp": "2024-05-16T12:33:19.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.057100", + "Timestamp": "2024-05-16T12:33:19.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.265900", + "Timestamp": "2024-05-16T12:33:18.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "a1.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.250200", - "Timestamp": "2019-10-15T19:39:14.000Z" + "InstanceType": "c3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.518500", + "Timestamp": "2024-05-16T12:33:17.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "a1.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.150200", - "Timestamp": "2019-10-15T19:39:14.000Z" + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.408000", + "Timestamp": "2024-05-16T12:33:17.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-15T19:39:12.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.180700", + "Timestamp": "2024-05-16T12:33:16.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.975500", - "Timestamp": "2019-10-15T19:39:12.000Z" + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.060300", + "Timestamp": "2024-05-16T12:33:15.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.945500", - "Timestamp": "2019-10-15T19:39:12.000Z" + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.055300", + "Timestamp": "2024-05-16T12:33:15.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.845500", - "Timestamp": "2019-10-15T19:39:12.000Z" + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.930300", + "Timestamp": "2024-05-16T12:33:15.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.097200", - "Timestamp": "2019-10-15T19:39:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.064500", + "Timestamp": "2024-05-16T12:33:15.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.137200", - "Timestamp": "2019-10-15T19:39:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.034500", + "Timestamp": "2024-05-16T12:33:15.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.037200", - "Timestamp": "2019-10-15T19:39:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.934500", + "Timestamp": "2024-05-16T12:33:15.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.549100", - "Timestamp": "2019-10-15T19:39:01.000Z" + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.233400", + "Timestamp": "2024-05-16T12:33:15.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.727500", - "Timestamp": "2019-10-15T19:38:58.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.228400", + "Timestamp": "2024-05-16T12:33:15.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.697500", - "Timestamp": "2019-10-15T19:38:58.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.103400", + "Timestamp": "2024-05-16T12:33:15.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.597500", - "Timestamp": "2019-10-15T19:38:58.000Z" + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.750500", + "Timestamp": "2024-05-16T12:33:14.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.604800", - "Timestamp": "2019-10-15T19:38:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.735900", + "Timestamp": "2024-05-16T12:33:14.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.574800", - "Timestamp": "2019-10-15T19:38:55.000Z" + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.745500", + "Timestamp": "2024-05-16T12:33:14.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.730900", + "Timestamp": "2024-05-16T12:33:14.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.474800", - "Timestamp": "2019-10-15T19:38:55.000Z" + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.620500", + "Timestamp": "2024-05-16T12:33:14.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.742500", - "Timestamp": "2019-10-15T19:38:53.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.605900", + "Timestamp": "2024-05-16T12:33:14.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.533200", - "Timestamp": "2019-10-15T19:38:50.000Z" + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "10.513300", + "Timestamp": "2024-05-16T12:33:14.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.503200", - "Timestamp": "2019-10-15T19:38:50.000Z" + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "10.508300", + "Timestamp": "2024-05-16T12:33:14.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.403200", - "Timestamp": "2019-10-15T19:38:50.000Z" + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "10.383300", + "Timestamp": "2024-05-16T12:33:14.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.266500", - "Timestamp": "2019-10-15T19:38:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.701800", + "Timestamp": "2024-05-16T12:33:12.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.236500", - "Timestamp": "2019-10-15T19:38:47.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.132100", + "Timestamp": "2024-05-16T12:33:11.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.136500", - "Timestamp": "2019-10-15T19:38:47.000Z" + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.517800", + "Timestamp": "2024-05-16T12:33:11.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.000300", - "Timestamp": "2019-10-15T19:38:46.000Z" + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.466900", + "Timestamp": "2024-05-16T12:33:11.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.10xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.970300", - "Timestamp": "2019-10-15T19:38:46.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.157300", + "Timestamp": "2024-05-16T12:33:10.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.352700", + "Timestamp": "2024-05-16T12:33:10.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.147800", + "Timestamp": "2024-05-16T12:33:10.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.155200", + "Timestamp": "2024-05-16T12:33:09.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.870300", - "Timestamp": "2019-10-15T19:38:46.000Z" + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.171400", + "Timestamp": "2024-05-16T12:33:09.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.075000", - "Timestamp": "2019-10-15T19:31:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.422300", + "Timestamp": "2024-05-16T12:33:09.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.688600", - "Timestamp": "2019-10-15T19:31:12.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.417300", + "Timestamp": "2024-05-16T12:33:09.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.658600", - "Timestamp": "2019-10-15T19:31:12.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.292300", + "Timestamp": "2024-05-16T12:33:09.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.558600", - "Timestamp": "2019-10-15T19:31:12.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.333600", + "Timestamp": "2024-05-16T12:33:08.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.192300", - "Timestamp": "2019-10-15T19:31:02.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.321400", + "Timestamp": "2024-05-16T12:33:08.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.162300", - "Timestamp": "2019-10-15T19:31:02.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "14.368300", + "Timestamp": "2024-05-16T12:33:08.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.062300", - "Timestamp": "2019-10-15T19:31:02.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.695300", + "Timestamp": "2024-05-16T12:33:07.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.494900", + "Timestamp": "2024-05-16T12:33:06.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.709200", - "Timestamp": "2019-10-15T19:30:46.000Z" + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.264600", + "Timestamp": "2024-05-16T12:33:06.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.679200", - "Timestamp": "2019-10-15T19:30:46.000Z" + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.259600", + "Timestamp": "2024-05-16T12:33:06.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.579200", - "Timestamp": "2019-10-15T19:30:46.000Z" + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134600", + "Timestamp": "2024-05-16T12:33:06.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.244900", - "Timestamp": "2019-10-15T19:30:44.000Z" + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.421700", + "Timestamp": "2024-05-16T12:33:06.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.214900", - "Timestamp": "2019-10-15T19:30:44.000Z" + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.416700", + "Timestamp": "2024-05-16T12:33:06.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.114900", - "Timestamp": "2019-10-15T19:30:44.000Z" + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.291700", + "Timestamp": "2024-05-16T12:33:06.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.401600", - "Timestamp": "2019-10-15T19:30:39.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.124000", + "Timestamp": "2024-05-16T12:33:05.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.371600", - "Timestamp": "2019-10-15T19:30:39.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.119000", + "Timestamp": "2024-05-16T12:33:05.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.271600", - "Timestamp": "2019-10-15T19:30:39.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.994000", + "Timestamp": "2024-05-16T12:33:05.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.159500", - "Timestamp": "2019-10-15T19:30:36.000Z" + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.149700", + "Timestamp": "2024-05-16T12:33:05.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.378500", + "Timestamp": "2024-05-16T12:33:05.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.199500", - "Timestamp": "2019-10-15T19:30:36.000Z" + "InstanceType": "m3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118200", + "Timestamp": "2024-05-16T12:33:05.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.099500", - "Timestamp": "2019-10-15T19:30:36.000Z" + "InstanceType": "m3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158200", + "Timestamp": "2024-05-16T12:33:05.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.303400", - "Timestamp": "2019-10-15T19:30:34.000Z" + "InstanceType": "m3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058200", + "Timestamp": "2024-05-16T12:33:05.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.273400", - "Timestamp": "2019-10-15T19:30:34.000Z" + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.336800", + "Timestamp": "2024-05-16T12:33:04.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.173400", - "Timestamp": "2019-10-15T19:30:34.000Z" + "InstanceType": "gr6.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.306800", + "Timestamp": "2024-05-16T12:33:04.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.532600", - "Timestamp": "2019-10-15T19:30:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.206800", + "Timestamp": "2024-05-16T12:33:04.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.502600", - "Timestamp": "2019-10-15T19:30:27.000Z" + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.186700", + "Timestamp": "2024-05-16T12:33:04.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.402600", - "Timestamp": "2019-10-15T19:30:27.000Z" + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183000", + "Timestamp": "2024-05-16T12:33:04.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.290900", - "Timestamp": "2019-10-15T19:23:01.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126700", + "Timestamp": "2024-05-16T12:33:04.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.291900", - "Timestamp": "2019-10-15T19:23:01.000Z" + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.550400", + "Timestamp": "2024-05-16T12:33:03.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.261900", - "Timestamp": "2019-10-15T19:23:01.000Z" + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.050600", + "Timestamp": "2024-05-16T12:33:03.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.161900", - "Timestamp": "2019-10-15T19:23:01.000Z" + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.045600", + "Timestamp": "2024-05-16T12:33:03.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "h1.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.488800", - "Timestamp": "2019-10-15T19:22:58.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.920600", + "Timestamp": "2024-05-16T12:33:03.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "h1.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.458800", - "Timestamp": "2019-10-15T19:22:58.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.562000", + "Timestamp": "2024-05-16T12:33:03.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "h1.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.358800", - "Timestamp": "2019-10-15T19:22:58.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.710400", + "Timestamp": "2024-05-16T12:33:02.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.536800", - "Timestamp": "2019-10-15T19:22:53.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.705400", + "Timestamp": "2024-05-16T12:33:02.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.506800", - "Timestamp": "2019-10-15T19:22:53.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.580400", + "Timestamp": "2024-05-16T12:33:02.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.406800", - "Timestamp": "2019-10-15T19:22:53.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.409400", + "Timestamp": "2024-05-16T12:33:02.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.296300", - "Timestamp": "2019-10-15T19:22:43.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.669400", + "Timestamp": "2024-05-16T12:33:02.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.098900", - "Timestamp": "2019-10-15T19:22:31.000Z" + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.437700", + "Timestamp": "2024-05-16T12:33:02.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.262300", + "Timestamp": "2024-05-16T12:33:01.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.068900", - "Timestamp": "2019-10-15T19:22:31.000Z" + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.531400", + "Timestamp": "2024-05-16T12:33:01.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.605200", + "Timestamp": "2024-05-16T12:33:01.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.968900", - "Timestamp": "2019-10-15T19:22:31.000Z" + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.526400", + "Timestamp": "2024-05-16T12:33:01.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.125400", - "Timestamp": "2019-10-15T19:22:28.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.600200", + "Timestamp": "2024-05-16T12:33:01.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.165400", - "Timestamp": "2019-10-15T19:22:28.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.401400", + "Timestamp": "2024-05-16T12:33:01.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.065400", - "Timestamp": "2019-10-15T19:22:28.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.475200", + "Timestamp": "2024-05-16T12:33:01.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.456200", - "Timestamp": "2019-10-15T19:22:27.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.454200", + "Timestamp": "2024-05-16T12:33:01.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.426200", - "Timestamp": "2019-10-15T19:22:27.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.427200", + "Timestamp": "2024-05-16T12:33:00.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.326200", - "Timestamp": "2019-10-15T19:22:27.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.422200", + "Timestamp": "2024-05-16T12:33:00.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "p2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.683200", - "Timestamp": "2019-10-15T19:22:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.297200", + "Timestamp": "2024-05-16T12:33:00.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.792900", - "Timestamp": "2019-10-15T19:22:22.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.162400", + "Timestamp": "2024-05-16T12:33:00.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.762900", - "Timestamp": "2019-10-15T19:22:22.000Z" + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.852100", + "Timestamp": "2024-05-16T12:33:00.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.662900", - "Timestamp": "2019-10-15T19:22:22.000Z" + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.847100", + "Timestamp": "2024-05-16T12:33:00.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.745700", - "Timestamp": "2019-10-15T19:22:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.722100", + "Timestamp": "2024-05-16T12:33:00.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.715700", - "Timestamp": "2019-10-15T19:22:21.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.553100", + "Timestamp": "2024-05-16T12:33:00.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.615700", - "Timestamp": "2019-10-15T19:22:21.000Z" + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.394600", + "Timestamp": "2024-05-16T12:33:00.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.001400", - "Timestamp": "2019-10-15T19:14:26.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.480500", + "Timestamp": "2024-05-16T12:32:59.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.971400", - "Timestamp": "2019-10-15T19:14:26.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.450500", + "Timestamp": "2024-05-16T12:32:59.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.871400", - "Timestamp": "2019-10-15T19:14:26.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.350500", + "Timestamp": "2024-05-16T12:32:59.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.099400", - "Timestamp": "2019-10-15T19:14:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.120500", + "Timestamp": "2024-05-16T12:32:59.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.069400", - "Timestamp": "2019-10-15T19:14:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.115500", + "Timestamp": "2024-05-16T12:32:59.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.969400", - "Timestamp": "2019-10-15T19:14:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.990500", + "Timestamp": "2024-05-16T12:32:59.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.120500", - "Timestamp": "2019-10-15T19:14:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.313700", + "Timestamp": "2024-05-16T12:32:59.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.160500", - "Timestamp": "2019-10-15T19:14:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.423500", + "Timestamp": "2024-05-16T12:32:59.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.060500", - "Timestamp": "2019-10-15T19:14:09.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.465900", + "Timestamp": "2024-05-16T12:32:59.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.373000", - "Timestamp": "2019-10-15T19:14:05.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.635700", + "Timestamp": "2024-05-16T12:32:58.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.343000", - "Timestamp": "2019-10-15T19:14:05.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.630700", + "Timestamp": "2024-05-16T12:32:58.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.243000", - "Timestamp": "2019-10-15T19:14:05.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.505700", + "Timestamp": "2024-05-16T12:32:58.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.767500", - "Timestamp": "2019-10-15T19:13:58.000Z" + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.911500", + "Timestamp": "2024-05-16T12:32:58.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.737500", - "Timestamp": "2019-10-15T19:13:58.000Z" + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.906500", + "Timestamp": "2024-05-16T12:32:58.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.637500", - "Timestamp": "2019-10-15T19:13:58.000Z" + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.781500", + "Timestamp": "2024-05-16T12:32:58.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.856000", - "Timestamp": "2019-10-15T19:13:58.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.134700", + "Timestamp": "2024-05-16T12:32:57.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.826000", - "Timestamp": "2019-10-15T19:13:58.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.large", + "ProductDescription": "Windows", + "SpotPrice": "0.169000", + "Timestamp": "2024-05-16T12:32:57.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.726000", - "Timestamp": "2019-10-15T19:13:58.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.287800", + "Timestamp": "2024-05-16T12:32:57.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.186200", - "Timestamp": "2019-10-15T19:13:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.282800", + "Timestamp": "2024-05-16T12:32:57.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.226200", - "Timestamp": "2019-10-15T19:13:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.157800", + "Timestamp": "2024-05-16T12:32:57.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.126200", - "Timestamp": "2019-10-15T19:13:48.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.483100", + "Timestamp": "2024-05-16T12:32:56.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.985000", - "Timestamp": "2019-10-15T19:13:40.000Z" + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.642400", + "Timestamp": "2024-05-16T12:32:56.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.955000", - "Timestamp": "2019-10-15T19:13:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.478100", + "Timestamp": "2024-05-16T12:32:56.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.855000", - "Timestamp": "2019-10-15T19:13:40.000Z" + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.637400", + "Timestamp": "2024-05-16T12:32:56.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.131300", - "Timestamp": "2019-10-15T19:12:13.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.353100", + "Timestamp": "2024-05-16T12:32:56.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.131300", - "Timestamp": "2019-10-15T19:12:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.512400", + "Timestamp": "2024-05-16T12:32:56.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.131300", - "Timestamp": "2019-10-15T19:12:13.000Z" + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.993500", + "Timestamp": "2024-05-16T12:32:56.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.131300", - "Timestamp": "2019-10-15T19:12:13.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.362600", + "Timestamp": "2024-05-16T12:32:56.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.131300", - "Timestamp": "2019-10-15T19:12:13.000Z" + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.357600", + "Timestamp": "2024-05-16T12:32:56.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.171300", - "Timestamp": "2019-10-15T19:12:13.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.232600", + "Timestamp": "2024-05-16T12:32:56.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.171300", - "Timestamp": "2019-10-15T19:12:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.763100", + "Timestamp": "2024-05-16T12:32:56.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5n.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.171300", - "Timestamp": "2019-10-15T19:12:13.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.193400", + "Timestamp": "2024-05-16T12:32:55.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.171300", - "Timestamp": "2019-10-15T19:12:13.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.591100", + "Timestamp": "2024-05-16T12:32:55.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.171300", - "Timestamp": "2019-10-15T19:12:13.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.561100", + "Timestamp": "2024-05-16T12:32:55.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-15T19:12:13.000Z" + "InstanceType": "m2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.461100", + "Timestamp": "2024-05-16T12:32:55.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-15T19:12:13.000Z" + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.932100", + "Timestamp": "2024-05-16T12:32:55.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-15T19:12:13.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.927100", + "Timestamp": "2024-05-16T12:32:55.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-15T19:12:13.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.802100", + "Timestamp": "2024-05-16T12:32:55.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-15T19:12:13.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-15T19:12:11.000Z" + "InstanceType": "i2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.950900", + "Timestamp": "2024-05-16T12:32:54.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-15T19:12:11.000Z" + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.999000", + "Timestamp": "2024-05-16T12:32:54.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-15T19:12:11.000Z" + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.037400", + "Timestamp": "2024-05-16T12:32:54.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-15T19:12:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.929500", + "Timestamp": "2024-05-16T12:32:53.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.8xlarge", + "InstanceType": "r7i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.647000", - "Timestamp": "2019-10-15T19:12:10.000Z" + "SpotPrice": "1.397700", + "Timestamp": "2024-05-16T12:32:53.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.647000", - "Timestamp": "2019-10-15T19:12:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.392700", + "Timestamp": "2024-05-16T12:32:53.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.647000", - "Timestamp": "2019-10-15T19:12:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.267700", + "Timestamp": "2024-05-16T12:32:53.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.647000", - "Timestamp": "2019-10-15T19:12:10.000Z" + "SpotPrice": "1.512800", + "Timestamp": "2024-05-16T12:32:52.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.617000", - "Timestamp": "2019-10-15T19:12:10.000Z" + "SpotPrice": "1.507800", + "Timestamp": "2024-05-16T12:32:52.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.617000", - "Timestamp": "2019-10-15T19:12:10.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.382800", + "Timestamp": "2024-05-16T12:32:52.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.617000", - "Timestamp": "2019-10-15T19:12:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.171900", + "Timestamp": "2024-05-16T12:32:52.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.8xlarge", + "InstanceType": "m7i.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.617000", - "Timestamp": "2019-10-15T19:12:10.000Z" + "SpotPrice": "1.166900", + "Timestamp": "2024-05-16T12:32:52.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.517000", - "Timestamp": "2019-10-15T19:12:10.000Z" + "SpotPrice": "1.041900", + "Timestamp": "2024-05-16T12:32:52.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.517000", - "Timestamp": "2019-10-15T19:12:10.000Z" + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.305500", + "Timestamp": "2024-05-16T12:32:52.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.517000", - "Timestamp": "2019-10-15T19:12:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.306000", + "Timestamp": "2024-05-16T12:32:52.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.301000", + "Timestamp": "2024-05-16T12:32:52.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.517000", - "Timestamp": "2019-10-15T19:12:10.000Z" + "SpotPrice": "4.176000", + "Timestamp": "2024-05-16T12:32:52.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.357000", - "Timestamp": "2019-10-15T19:11:49.000Z" + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.746300", + "Timestamp": "2024-05-16T12:32:52.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.357000", - "Timestamp": "2019-10-15T19:11:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.741300", + "Timestamp": "2024-05-16T12:32:52.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.357000", - "Timestamp": "2019-10-15T19:11:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.616300", + "Timestamp": "2024-05-16T12:32:52.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.357000", - "Timestamp": "2019-10-15T19:11:49.000Z" + "SpotPrice": "2.289500", + "Timestamp": "2024-05-16T12:32:51.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-15T19:11:44.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.105200", + "Timestamp": "2024-05-16T12:32:51.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-15T19:11:44.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.425900", + "Timestamp": "2024-05-16T12:32:51.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-15T19:11:44.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.420900", + "Timestamp": "2024-05-16T12:32:51.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-15T19:11:44.000Z" + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.295900", + "Timestamp": "2024-05-16T12:32:51.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-15T19:11:44.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.268200", + "Timestamp": "2024-05-16T12:32:50.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092800", - "Timestamp": "2019-10-15T19:11:42.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.263200", + "Timestamp": "2024-05-16T12:32:50.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.098300", - "Timestamp": "2019-10-15T19:11:42.000Z" + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.138200", + "Timestamp": "2024-05-16T12:32:50.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.098300", - "Timestamp": "2019-10-15T19:11:42.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.526300", + "Timestamp": "2024-05-16T12:32:50.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.097400", - "Timestamp": "2019-10-15T19:11:42.000Z" + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.377700", + "Timestamp": "2024-05-16T12:32:50.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132800", - "Timestamp": "2019-10-15T19:11:42.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.372700", + "Timestamp": "2024-05-16T12:32:50.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.138300", - "Timestamp": "2019-10-15T19:11:42.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.247700", + "Timestamp": "2024-05-16T12:32:50.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.138300", - "Timestamp": "2019-10-15T19:11:42.000Z" + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.911100", + "Timestamp": "2024-05-16T12:32:49.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.137400", - "Timestamp": "2019-10-15T19:11:42.000Z" + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.961700", + "Timestamp": "2024-05-16T12:32:49.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032712", - "Timestamp": "2019-10-15T19:11:42.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.906100", + "Timestamp": "2024-05-16T12:32:49.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.038300", - "Timestamp": "2019-10-15T19:11:42.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.956700", + "Timestamp": "2024-05-16T12:32:49.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.038300", - "Timestamp": "2019-10-15T19:11:42.000Z" + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.781100", + "Timestamp": "2024-05-16T12:32:49.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.037400", - "Timestamp": "2019-10-15T19:11:42.000Z" + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.831700", + "Timestamp": "2024-05-16T12:32:49.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124400", - "Timestamp": "2019-10-15T19:11:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.762400", + "Timestamp": "2024-05-16T12:32:49.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124400", - "Timestamp": "2019-10-15T19:11:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.732400", + "Timestamp": "2024-05-16T12:32:49.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124400", - "Timestamp": "2019-10-15T19:11:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.632400", + "Timestamp": "2024-05-16T12:32:49.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124400", - "Timestamp": "2019-10-15T19:11:41.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124400", - "Timestamp": "2019-10-15T19:11:41.000Z" + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128800", + "Timestamp": "2024-05-16T12:32:49.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.641500", - "Timestamp": "2019-10-15T19:11:30.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125100", + "Timestamp": "2024-05-16T12:32:49.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.641500", - "Timestamp": "2019-10-15T19:11:30.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-16T12:32:49.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.641500", - "Timestamp": "2019-10-15T19:11:30.000Z" + "SpotPrice": "2.097100", + "Timestamp": "2024-05-16T12:32:49.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.641500", - "Timestamp": "2019-10-15T19:11:30.000Z" + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.092100", + "Timestamp": "2024-05-16T12:32:49.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.641500", - "Timestamp": "2019-10-15T19:11:30.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.967100", + "Timestamp": "2024-05-16T12:32:49.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.611500", - "Timestamp": "2019-10-15T19:11:30.000Z" + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.108700", + "Timestamp": "2024-05-16T12:32:48.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.611500", - "Timestamp": "2019-10-15T19:11:30.000Z" - }, - { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.611500", - "Timestamp": "2019-10-15T19:11:30.000Z" + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.146200", + "Timestamp": "2024-05-16T12:32:48.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.611500", - "Timestamp": "2019-10-15T19:11:30.000Z" + "SpotPrice": "1.103700", + "Timestamp": "2024-05-16T12:32:48.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.611500", - "Timestamp": "2019-10-15T19:11:30.000Z" + "SpotPrice": "1.141200", + "Timestamp": "2024-05-16T12:32:48.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.2xlarge", + "InstanceType": "r5.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.511500", - "Timestamp": "2019-10-15T19:11:30.000Z" + "SpotPrice": "0.978700", + "Timestamp": "2024-05-16T12:32:48.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.2xlarge", + "InstanceType": "r5.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.511500", - "Timestamp": "2019-10-15T19:11:30.000Z" + "SpotPrice": "1.016200", + "Timestamp": "2024-05-16T12:32:48.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.511500", - "Timestamp": "2019-10-15T19:11:30.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.325800", + "Timestamp": "2024-05-16T12:32:48.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.511500", - "Timestamp": "2019-10-15T19:11:30.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.295800", + "Timestamp": "2024-05-16T12:32:48.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c3.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.511500", - "Timestamp": "2019-10-15T19:11:30.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.220200", - "Timestamp": "2019-10-15T19:11:28.000Z" + "SpotPrice": "0.195800", + "Timestamp": "2024-05-16T12:32:48.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.220200", - "Timestamp": "2019-10-15T19:11:28.000Z" + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.447400", + "Timestamp": "2024-05-16T12:32:48.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.220200", - "Timestamp": "2019-10-15T19:11:28.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.220200", - "Timestamp": "2019-10-15T19:11:28.000Z" + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.554400", + "Timestamp": "2024-05-16T12:32:48.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.220200", - "Timestamp": "2019-10-15T19:11:28.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.442400", + "Timestamp": "2024-05-16T12:32:48.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.190200", - "Timestamp": "2019-10-15T19:11:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.549400", + "Timestamp": "2024-05-16T12:32:48.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.190200", - "Timestamp": "2019-10-15T19:11:28.000Z" + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.317400", + "Timestamp": "2024-05-16T12:32:48.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.190200", - "Timestamp": "2019-10-15T19:11:28.000Z" + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.424400", + "Timestamp": "2024-05-16T12:32:48.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.190200", - "Timestamp": "2019-10-15T19:11:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.223400", + "Timestamp": "2024-05-16T12:32:48.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.190200", - "Timestamp": "2019-10-15T19:11:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.219400", + "Timestamp": "2024-05-16T12:32:48.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.090200", - "Timestamp": "2019-10-15T19:11:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.163400", + "Timestamp": "2024-05-16T12:32:48.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.090200", - "Timestamp": "2019-10-15T19:11:28.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.149900", + "Timestamp": "2024-05-16T12:32:48.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.090200", - "Timestamp": "2019-10-15T19:11:28.000Z" + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.993800", + "Timestamp": "2024-05-16T12:32:47.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.090200", - "Timestamp": "2019-10-15T19:11:28.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.314300", + "Timestamp": "2024-05-16T12:32:46.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.090200", - "Timestamp": "2019-10-15T19:11:28.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.309300", + "Timestamp": "2024-05-16T12:32:46.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.641500", - "Timestamp": "2019-10-15T19:11:28.000Z" + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.184300", + "Timestamp": "2024-05-16T12:32:46.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.641500", - "Timestamp": "2019-10-15T19:11:28.000Z" + "InstanceType": "g6.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.314400", + "Timestamp": "2024-05-16T12:32:46.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.641500", - "Timestamp": "2019-10-15T19:11:28.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.556100", + "Timestamp": "2024-05-16T12:32:45.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.641500", - "Timestamp": "2019-10-15T19:11:28.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.551100", + "Timestamp": "2024-05-16T12:32:45.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.641500", - "Timestamp": "2019-10-15T19:11:28.000Z" + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.426100", + "Timestamp": "2024-05-16T12:32:45.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.611500", - "Timestamp": "2019-10-15T19:11:28.000Z" + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.515800", + "Timestamp": "2024-05-16T12:32:45.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.611500", - "Timestamp": "2019-10-15T19:11:28.000Z" + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.921600", + "Timestamp": "2024-05-16T12:32:45.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.611500", - "Timestamp": "2019-10-15T19:11:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.946000", + "Timestamp": "2024-05-16T12:32:45.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.611500", - "Timestamp": "2019-10-15T19:11:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.916600", + "Timestamp": "2024-05-16T12:32:45.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.611500", - "Timestamp": "2019-10-15T19:11:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.941000", + "Timestamp": "2024-05-16T12:32:45.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.511500", - "Timestamp": "2019-10-15T19:11:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.791600", + "Timestamp": "2024-05-16T12:32:45.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.511500", - "Timestamp": "2019-10-15T19:11:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.816000", + "Timestamp": "2024-05-16T12:32:45.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.511500", - "Timestamp": "2019-10-15T19:11:28.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.457700", + "Timestamp": "2024-05-16T12:32:45.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.511500", - "Timestamp": "2019-10-15T19:11:28.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.452700", + "Timestamp": "2024-05-16T12:32:45.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.511500", - "Timestamp": "2019-10-15T19:11:28.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.327700", + "Timestamp": "2024-05-16T12:32:45.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.752500", - "Timestamp": "2019-10-15T19:11:23.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.427900", + "Timestamp": "2024-05-16T12:32:44.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.752500", - "Timestamp": "2019-10-15T19:11:23.000Z" + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.422900", + "Timestamp": "2024-05-16T12:32:44.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.752500", - "Timestamp": "2019-10-15T19:11:23.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.297900", + "Timestamp": "2024-05-16T12:32:44.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.752500", - "Timestamp": "2019-10-15T19:11:23.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.136200", + "Timestamp": "2024-05-16T12:32:44.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.752500", - "Timestamp": "2019-10-15T19:11:23.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.131200", + "Timestamp": "2024-05-16T12:32:44.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.126000", - "Timestamp": "2019-10-15T19:11:10.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.006200", + "Timestamp": "2024-05-16T12:32:44.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.126000", - "Timestamp": "2019-10-15T19:11:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.848800", + "Timestamp": "2024-05-16T12:32:44.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.126000", - "Timestamp": "2019-10-15T19:11:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.843800", + "Timestamp": "2024-05-16T12:32:44.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.126000", - "Timestamp": "2019-10-15T19:11:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.718800", + "Timestamp": "2024-05-16T12:32:44.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.126000", - "Timestamp": "2019-10-15T19:11:10.000Z" + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.255400", + "Timestamp": "2024-05-16T12:32:44.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.840000", - "Timestamp": "2019-10-15T19:11:10.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.251400", + "Timestamp": "2024-05-16T12:32:44.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.875900", - "Timestamp": "2019-10-15T19:11:10.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195400", + "Timestamp": "2024-05-16T12:32:44.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.810000", - "Timestamp": "2019-10-15T19:11:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.697100", + "Timestamp": "2024-05-16T12:32:43.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.845900", - "Timestamp": "2019-10-15T19:11:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.692100", + "Timestamp": "2024-05-16T12:32:43.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.710000", - "Timestamp": "2019-10-15T19:11:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.567100", + "Timestamp": "2024-05-16T12:32:43.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.745900", - "Timestamp": "2019-10-15T19:11:10.000Z" + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.307000", + "Timestamp": "2024-05-16T12:32:42.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.752500", - "Timestamp": "2019-10-15T19:10:59.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.025100", + "Timestamp": "2024-05-16T12:32:42.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.752500", - "Timestamp": "2019-10-15T19:10:59.000Z" + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.020100", + "Timestamp": "2024-05-16T12:32:42.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.752500", - "Timestamp": "2019-10-15T19:10:59.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.895100", + "Timestamp": "2024-05-16T12:32:42.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.752500", - "Timestamp": "2019-10-15T19:10:59.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.513400", + "Timestamp": "2024-05-16T12:32:42.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.752500", - "Timestamp": "2019-10-15T19:10:59.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.508400", + "Timestamp": "2024-05-16T12:32:42.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.415000", - "Timestamp": "2019-10-15T19:10:59.000Z" + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.383400", + "Timestamp": "2024-05-16T12:32:42.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.385000", - "Timestamp": "2019-10-15T19:10:59.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.079700", + "Timestamp": "2024-05-16T12:32:42.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.049700", + "Timestamp": "2024-05-16T12:32:42.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.949700", + "Timestamp": "2024-05-16T12:32:42.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.285000", - "Timestamp": "2019-10-15T19:10:59.000Z" + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.253700", + "Timestamp": "2024-05-16T12:32:42.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.497500", - "Timestamp": "2019-10-15T19:10:58.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.020700", + "Timestamp": "2024-05-16T12:32:42.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.497500", - "Timestamp": "2019-10-15T19:10:58.000Z" + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.223700", + "Timestamp": "2024-05-16T12:32:42.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.497500", - "Timestamp": "2019-10-15T19:10:58.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.990700", + "Timestamp": "2024-05-16T12:32:42.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.497500", - "Timestamp": "2019-10-15T19:10:58.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.123700", + "Timestamp": "2024-05-16T12:32:42.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.497500", - "Timestamp": "2019-10-15T19:10:58.000Z" + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.890700", + "Timestamp": "2024-05-16T12:32:42.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.477900", - "Timestamp": "2019-10-15T19:10:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.205400", + "Timestamp": "2024-05-16T12:32:42.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.477900", - "Timestamp": "2019-10-15T19:10:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.201700", + "Timestamp": "2024-05-16T12:32:42.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.477900", - "Timestamp": "2019-10-15T19:10:39.000Z" + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145400", + "Timestamp": "2024-05-16T12:32:42.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.477900", - "Timestamp": "2019-10-15T19:10:39.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.380400", + "Timestamp": "2024-05-16T12:32:42.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.477900", - "Timestamp": "2019-10-15T19:10:39.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.375400", + "Timestamp": "2024-05-16T12:32:42.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.014900", - "Timestamp": "2019-10-15T19:10:15.000Z" + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.250400", + "Timestamp": "2024-05-16T12:32:42.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.014900", - "Timestamp": "2019-10-15T19:10:15.000Z" + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.302400", + "Timestamp": "2024-05-16T12:32:41.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.014900", - "Timestamp": "2019-10-15T19:10:15.000Z" + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.072400", + "Timestamp": "2024-05-16T12:32:41.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.014900", - "Timestamp": "2019-10-15T19:10:15.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.463100", + "Timestamp": "2024-05-16T12:32:41.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.014900", - "Timestamp": "2019-10-15T19:10:15.000Z" + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.279800", + "Timestamp": "2024-05-16T12:32:41.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.014900", - "Timestamp": "2019-10-15T19:10:15.000Z" + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065100", + "Timestamp": "2024-05-16T12:32:40.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.237400", - "Timestamp": "2019-10-15T19:10:07.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.005100", + "Timestamp": "2024-05-16T12:32:40.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.237400", - "Timestamp": "2019-10-15T19:10:07.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005100", + "Timestamp": "2024-05-16T12:32:40.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.237400", - "Timestamp": "2019-10-15T19:10:07.000Z" + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.654300", + "Timestamp": "2024-05-16T12:32:40.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.237400", - "Timestamp": "2019-10-15T19:10:07.000Z" + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.567000", + "Timestamp": "2024-05-16T12:32:40.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.237400", - "Timestamp": "2019-10-15T19:10:07.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.649300", + "Timestamp": "2024-05-16T12:32:40.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.562000", + "Timestamp": "2024-05-16T12:32:40.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.217800", - "Timestamp": "2019-10-15T19:07:36.000Z" + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.524300", + "Timestamp": "2024-05-16T12:32:40.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.217800", - "Timestamp": "2019-10-15T19:07:36.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.437000", + "Timestamp": "2024-05-16T12:32:40.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.257800", - "Timestamp": "2019-10-15T19:07:36.000Z" + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.068900", + "Timestamp": "2024-05-16T12:32:40.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.257800", - "Timestamp": "2019-10-15T19:07:36.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.366200", + "Timestamp": "2024-05-16T12:32:39.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.157800", - "Timestamp": "2019-10-15T19:07:36.000Z" + "InstanceType": "m3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.336200", + "Timestamp": "2024-05-16T12:32:39.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.157800", - "Timestamp": "2019-10-15T19:07:36.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.236200", + "Timestamp": "2024-05-16T12:32:39.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.366400", - "Timestamp": "2019-10-15T19:06:20.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.762200", + "Timestamp": "2024-05-16T12:32:38.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "h1.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.336400", - "Timestamp": "2019-10-15T19:06:20.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.757200", + "Timestamp": "2024-05-16T12:32:38.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.236400", - "Timestamp": "2019-10-15T19:06:20.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.632200", + "Timestamp": "2024-05-16T12:32:38.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.141600", - "Timestamp": "2019-10-15T19:06:10.000Z" + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124200", + "Timestamp": "2024-05-16T12:32:38.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.181600", - "Timestamp": "2019-10-15T19:06:10.000Z" + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164200", + "Timestamp": "2024-05-16T12:32:38.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.081600", - "Timestamp": "2019-10-15T19:06:10.000Z" + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064200", + "Timestamp": "2024-05-16T12:32:38.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T19:05:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.037600", + "Timestamp": "2024-05-16T12:32:38.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.743600", - "Timestamp": "2019-10-15T19:05:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.327000", + "Timestamp": "2024-05-16T12:32:37.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "p2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.713600", - "Timestamp": "2019-10-15T19:05:43.000Z" + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162200", + "Timestamp": "2024-05-16T12:32:37.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.613600", - "Timestamp": "2019-10-15T19:05:43.000Z" + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158500", + "Timestamp": "2024-05-16T12:32:37.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "p2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.413600", - "Timestamp": "2019-10-15T19:05:41.000Z" + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102200", + "Timestamp": "2024-05-16T12:32:37.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "p2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.453600", - "Timestamp": "2019-10-15T19:05:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.930900", + "Timestamp": "2024-05-16T12:32:37.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "p2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.353600", - "Timestamp": "2019-10-15T19:05:41.000Z" + "InstanceType": "r6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.172500", + "Timestamp": "2024-05-16T12:32:37.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.403400", - "Timestamp": "2019-10-15T19:05:31.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.244100", + "Timestamp": "2024-05-16T12:32:37.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.458300", - "Timestamp": "2019-10-15T19:05:28.000Z" + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.478100", + "Timestamp": "2024-05-16T12:32:36.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.428300", - "Timestamp": "2019-10-15T19:05:28.000Z" + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473100", + "Timestamp": "2024-05-16T12:32:36.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.328300", - "Timestamp": "2019-10-15T19:05:28.000Z" + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.348100", + "Timestamp": "2024-05-16T12:32:36.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.007600", - "Timestamp": "2019-10-15T19:05:27.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.703600", + "Timestamp": "2024-05-16T12:32:35.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.977600", - "Timestamp": "2019-10-15T19:05:27.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.698600", + "Timestamp": "2024-05-16T12:32:35.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.877600", - "Timestamp": "2019-10-15T19:05:27.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.573600", + "Timestamp": "2024-05-16T12:32:35.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.321200", - "Timestamp": "2019-10-15T19:05:21.000Z" + "InstanceType": "g6.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.144700", + "Timestamp": "2024-05-16T12:32:35.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.291200", - "Timestamp": "2019-10-15T19:05:21.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.341700", + "Timestamp": "2024-05-16T12:32:35.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.191200", - "Timestamp": "2019-10-15T19:05:21.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.336700", + "Timestamp": "2024-05-16T12:32:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T19:05:14.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.211700", + "Timestamp": "2024-05-16T12:32:35.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.854900", - "Timestamp": "2019-10-15T18:57:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.364000", + "Timestamp": "2024-05-16T12:32:35.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.824900", - "Timestamp": "2019-10-15T18:57:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.359000", + "Timestamp": "2024-05-16T12:32:35.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.724900", - "Timestamp": "2019-10-15T18:57:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.234000", + "Timestamp": "2024-05-16T12:32:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.499300", - "Timestamp": "2019-10-15T18:57:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149400", + "Timestamp": "2024-05-16T12:32:34.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.469300", - "Timestamp": "2019-10-15T18:57:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145400", + "Timestamp": "2024-05-16T12:32:34.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.369300", - "Timestamp": "2019-10-15T18:57:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089400", + "Timestamp": "2024-05-16T12:32:34.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.211600", - "Timestamp": "2019-10-15T18:57:07.000Z" + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.428200", + "Timestamp": "2024-05-16T12:32:34.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.181600", - "Timestamp": "2019-10-15T18:57:07.000Z" + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.580100", + "Timestamp": "2024-05-16T12:32:34.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.081600", - "Timestamp": "2019-10-15T18:57:07.000Z" + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.575100", + "Timestamp": "2024-05-16T12:32:34.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.096900", - "Timestamp": "2019-10-15T18:57:03.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.450100", + "Timestamp": "2024-05-16T12:32:34.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.136900", - "Timestamp": "2019-10-15T18:57:03.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112700", + "Timestamp": "2024-05-16T12:32:34.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.036900", - "Timestamp": "2019-10-15T18:57:03.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T12:32:34.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.305400", - "Timestamp": "2019-10-15T18:57:03.000Z" + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052700", + "Timestamp": "2024-05-16T12:32:34.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.275400", - "Timestamp": "2019-10-15T18:57:03.000Z" + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.338800", + "Timestamp": "2024-05-16T12:32:34.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.175400", - "Timestamp": "2019-10-15T18:57:03.000Z" + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.333800", + "Timestamp": "2024-05-16T12:32:34.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.208800", + "Timestamp": "2024-05-16T12:32:34.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.272100", - "Timestamp": "2019-10-15T18:56:48.000Z" + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.862300", + "Timestamp": "2024-05-16T12:32:34.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.271600", - "Timestamp": "2019-10-15T18:56:48.000Z" + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.275600", + "Timestamp": "2024-05-16T12:32:34.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.242100", - "Timestamp": "2019-10-15T18:56:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095800", + "Timestamp": "2024-05-16T12:32:33.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.241600", - "Timestamp": "2019-10-15T18:56:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092100", + "Timestamp": "2024-05-16T12:32:33.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035800", + "Timestamp": "2024-05-16T12:32:33.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.142100", - "Timestamp": "2019-10-15T18:56:48.000Z" + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.554200", + "Timestamp": "2024-05-16T12:32:33.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.141600", - "Timestamp": "2019-10-15T18:56:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.549200", + "Timestamp": "2024-05-16T12:32:33.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.811100", - "Timestamp": "2019-10-15T18:56:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.424200", + "Timestamp": "2024-05-16T12:32:33.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.781100", - "Timestamp": "2019-10-15T18:56:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.475500", + "Timestamp": "2024-05-16T12:32:33.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.681100", - "Timestamp": "2019-10-15T18:56:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.470500", + "Timestamp": "2024-05-16T12:32:33.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094000", - "Timestamp": "2019-10-15T18:56:44.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.345500", + "Timestamp": "2024-05-16T12:32:33.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134000", - "Timestamp": "2019-10-15T18:56:44.000Z" + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162700", + "Timestamp": "2024-05-16T12:32:33.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034000", - "Timestamp": "2019-10-15T18:56:44.000Z" + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159000", + "Timestamp": "2024-05-16T12:32:33.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.328000", - "Timestamp": "2019-10-15T18:49:31.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102700", + "Timestamp": "2024-05-16T12:32:33.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.298000", - "Timestamp": "2019-10-15T18:49:31.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.081100", + "Timestamp": "2024-05-16T12:32:33.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.198000", - "Timestamp": "2019-10-15T18:49:31.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.076100", + "Timestamp": "2024-05-16T12:32:33.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T18:48:59.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.951100", + "Timestamp": "2024-05-16T12:32:33.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.444900", - "Timestamp": "2019-10-15T18:48:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.418200", + "Timestamp": "2024-05-16T12:32:32.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.414900", - "Timestamp": "2019-10-15T18:48:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.280700", + "Timestamp": "2024-05-16T12:32:32.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.314900", - "Timestamp": "2019-10-15T18:48:55.000Z" + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.668900", + "Timestamp": "2024-05-16T12:32:32.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.420500", - "Timestamp": "2019-10-15T18:48:52.000Z" + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.663900", + "Timestamp": "2024-05-16T12:32:32.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.390500", - "Timestamp": "2019-10-15T18:48:52.000Z" + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.538900", + "Timestamp": "2024-05-16T12:32:32.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.290500", - "Timestamp": "2019-10-15T18:48:52.000Z" + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.360200", + "Timestamp": "2024-05-16T12:32:32.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.529600", - "Timestamp": "2019-10-15T18:48:50.000Z" + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.355200", + "Timestamp": "2024-05-16T12:32:32.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.499600", - "Timestamp": "2019-10-15T18:48:50.000Z" + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.230200", + "Timestamp": "2024-05-16T12:32:32.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.399600", - "Timestamp": "2019-10-15T18:48:50.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.435600", + "Timestamp": "2024-05-16T12:32:32.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.402100", - "Timestamp": "2019-10-15T18:48:35.000Z" + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.430600", + "Timestamp": "2024-05-16T12:32:32.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.372100", - "Timestamp": "2019-10-15T18:48:35.000Z" + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.305600", + "Timestamp": "2024-05-16T12:32:32.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.272100", - "Timestamp": "2019-10-15T18:48:35.000Z" + "InstanceType": "m1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.227600", + "Timestamp": "2024-05-16T12:32:31.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-15T18:42:38.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267600", + "Timestamp": "2024-05-16T12:32:31.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-15T18:42:38.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167600", + "Timestamp": "2024-05-16T12:32:31.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-15T18:42:38.000Z" + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.255200", + "Timestamp": "2024-05-16T12:32:31.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-15T18:42:38.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-15T18:42:38.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-15T18:42:38.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-15T18:42:38.000Z" + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.426700", + "Timestamp": "2024-05-16T12:32:31.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-15T18:42:38.000Z" + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.057800", + "Timestamp": "2024-05-16T12:32:31.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-15T18:42:38.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.581500", + "Timestamp": "2024-05-16T12:32:31.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-15T18:42:38.000Z" + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.576500", + "Timestamp": "2024-05-16T12:32:31.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-15T18:42:38.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.451500", + "Timestamp": "2024-05-16T12:32:31.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-15T18:42:38.000Z" - }, - { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.501900", - "Timestamp": "2019-10-15T18:40:52.000Z" + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.975000", + "Timestamp": "2024-05-16T12:32:31.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.471900", - "Timestamp": "2019-10-15T18:40:52.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.970000", + "Timestamp": "2024-05-16T12:32:31.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.371900", - "Timestamp": "2019-10-15T18:40:52.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.845000", + "Timestamp": "2024-05-16T12:32:31.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.323100", - "Timestamp": "2019-10-15T18:40:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.295600", + "Timestamp": "2024-05-16T12:32:30.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.293100", - "Timestamp": "2019-10-15T18:40:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265600", + "Timestamp": "2024-05-16T12:32:30.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.193100", - "Timestamp": "2019-10-15T18:40:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165600", + "Timestamp": "2024-05-16T12:32:30.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.131300", - "Timestamp": "2019-10-15T18:40:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120400", + "Timestamp": "2024-05-16T12:32:30.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.171300", - "Timestamp": "2019-10-15T18:40:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-16T12:32:30.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-15T18:40:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060400", + "Timestamp": "2024-05-16T12:32:30.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.470800", - "Timestamp": "2019-10-15T18:40:26.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.204700", + "Timestamp": "2024-05-16T12:32:30.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.440800", - "Timestamp": "2019-10-15T18:40:26.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.201000", + "Timestamp": "2024-05-16T12:32:30.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.340800", - "Timestamp": "2019-10-15T18:40:26.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144700", + "Timestamp": "2024-05-16T12:32:30.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.158500", - "Timestamp": "2019-10-15T18:40:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.377800", + "Timestamp": "2024-05-16T12:32:30.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.198500", - "Timestamp": "2019-10-15T18:40:25.000Z" + "InstanceType": "m1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.383800", + "Timestamp": "2024-05-16T12:32:30.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.098500", - "Timestamp": "2019-10-15T18:40:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.743300", + "Timestamp": "2024-05-16T12:32:30.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.066100", - "Timestamp": "2019-10-15T18:40:14.000Z" + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.738300", + "Timestamp": "2024-05-16T12:32:30.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.036100", - "Timestamp": "2019-10-15T18:40:14.000Z" + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.613300", + "Timestamp": "2024-05-16T12:32:30.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.936100", - "Timestamp": "2019-10-15T18:40:14.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.391600", + "Timestamp": "2024-05-16T12:32:30.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.126200", - "Timestamp": "2019-10-15T18:39:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.361600", + "Timestamp": "2024-05-16T12:32:30.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.166200", - "Timestamp": "2019-10-15T18:39:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.261600", + "Timestamp": "2024-05-16T12:32:30.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.066200", - "Timestamp": "2019-10-15T18:39:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095800", + "Timestamp": "2024-05-16T12:32:28.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252000", - "Timestamp": "2019-10-15T18:39:47.000Z" + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092100", + "Timestamp": "2024-05-16T12:32:28.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.048300", - "Timestamp": "2019-10-15T18:33:18.000Z" + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035800", + "Timestamp": "2024-05-16T12:32:28.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.048300", - "Timestamp": "2019-10-15T18:33:18.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.021200", + "Timestamp": "2024-05-16T12:32:28.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.110000", - "Timestamp": "2019-10-15T18:32:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134400", + "Timestamp": "2024-05-16T12:32:27.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.080000", - "Timestamp": "2019-10-15T18:32:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130700", + "Timestamp": "2024-05-16T12:32:27.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.980000", - "Timestamp": "2019-10-15T18:32:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074400", + "Timestamp": "2024-05-16T12:32:27.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.493500", - "Timestamp": "2019-10-15T18:32:31.000Z" + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.263500", + "Timestamp": "2024-05-16T12:32:26.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.463500", - "Timestamp": "2019-10-15T18:32:31.000Z" + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.258500", + "Timestamp": "2024-05-16T12:32:26.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.363500", - "Timestamp": "2019-10-15T18:32:31.000Z" + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.133500", + "Timestamp": "2024-05-16T12:32:26.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.985000", - "Timestamp": "2019-10-15T18:32:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079300", + "Timestamp": "2024-05-16T12:32:26.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.955000", - "Timestamp": "2019-10-15T18:32:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.050300", + "Timestamp": "2024-05-16T12:32:26.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.855000", - "Timestamp": "2019-10-15T18:32:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019300", + "Timestamp": "2024-05-16T12:32:26.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.477800", - "Timestamp": "2019-10-15T18:32:18.000Z" + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.873600", + "Timestamp": "2024-05-16T12:32:25.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.447800", - "Timestamp": "2019-10-15T18:32:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-16T12:32:25.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.347800", - "Timestamp": "2019-10-15T18:32:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096600", + "Timestamp": "2024-05-16T12:32:25.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.306100", - "Timestamp": "2019-10-15T18:32:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040300", + "Timestamp": "2024-05-16T12:32:25.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.569500", - "Timestamp": "2019-10-15T18:32:17.000Z" + "InstanceType": "g6.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.262100", + "Timestamp": "2024-05-16T12:32:25.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r4.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.539500", - "Timestamp": "2019-10-15T18:32:17.000Z" + "InstanceType": "g6.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232100", + "Timestamp": "2024-05-16T12:32:25.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.439500", - "Timestamp": "2019-10-15T18:32:17.000Z" + "InstanceType": "g6.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.132100", + "Timestamp": "2024-05-16T12:32:25.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.104300", - "Timestamp": "2019-10-15T18:32:02.000Z" + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.263700", + "Timestamp": "2024-05-16T12:32:24.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.144300", - "Timestamp": "2019-10-15T18:32:02.000Z" + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.444500", + "Timestamp": "2024-05-16T12:32:24.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.044300", - "Timestamp": "2019-10-15T18:32:02.000Z" + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.439500", + "Timestamp": "2024-05-16T12:32:24.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.126100", - "Timestamp": "2019-10-15T18:31:54.000Z" + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.314500", + "Timestamp": "2024-05-16T12:32:24.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.166100", - "Timestamp": "2019-10-15T18:31:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.183400", + "Timestamp": "2024-05-16T12:32:23.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.066100", - "Timestamp": "2019-10-15T18:31:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.153400", + "Timestamp": "2024-05-16T12:32:23.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.850500", - "Timestamp": "2019-10-15T18:31:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.053400", + "Timestamp": "2024-05-16T12:32:23.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.820500", - "Timestamp": "2019-10-15T18:31:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.850400", + "Timestamp": "2024-05-16T12:32:23.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.720500", - "Timestamp": "2019-10-15T18:31:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.845400", + "Timestamp": "2024-05-16T12:32:23.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.018700", - "Timestamp": "2019-10-15T18:31:54.000Z" + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.720400", + "Timestamp": "2024-05-16T12:32:23.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.944900", - "Timestamp": "2019-10-15T18:31:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.950700", + "Timestamp": "2024-05-16T12:32:23.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.988700", - "Timestamp": "2019-10-15T18:31:54.000Z" + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.292500", + "Timestamp": "2024-05-16T12:32:23.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.914900", - "Timestamp": "2019-10-15T18:31:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T12:32:23.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.888700", - "Timestamp": "2019-10-15T18:31:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051400", + "Timestamp": "2024-05-16T12:32:23.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.814900", - "Timestamp": "2019-10-15T18:31:54.000Z" + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.900900", + "Timestamp": "2024-05-16T12:32:22.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.322200", - "Timestamp": "2019-10-15T18:31:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.895900", + "Timestamp": "2024-05-16T12:32:22.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.292200", - "Timestamp": "2019-10-15T18:31:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.770900", + "Timestamp": "2024-05-16T12:32:22.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.192200", - "Timestamp": "2019-10-15T18:31:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.083800", + "Timestamp": "2024-05-16T12:32:22.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.762300", - "Timestamp": "2019-10-15T18:24:28.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.130400", + "Timestamp": "2024-05-16T12:32:22.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.732300", - "Timestamp": "2019-10-15T18:24:28.000Z" + "InstanceType": "m5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124800", + "Timestamp": "2024-05-16T12:32:21.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.632300", - "Timestamp": "2019-10-15T18:24:28.000Z" + "InstanceType": "m5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120800", + "Timestamp": "2024-05-16T12:32:21.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.008100", - "Timestamp": "2019-10-15T18:24:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064800", + "Timestamp": "2024-05-16T12:32:21.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.327100", - "Timestamp": "2019-10-15T18:24:20.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.531800", + "Timestamp": "2024-05-16T12:32:20.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.297100", - "Timestamp": "2019-10-15T18:24:20.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.526800", + "Timestamp": "2024-05-16T12:32:20.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.197100", - "Timestamp": "2019-10-15T18:24:20.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.401800", + "Timestamp": "2024-05-16T12:32:20.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.369100", - "Timestamp": "2019-10-15T18:24:16.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.483100", + "Timestamp": "2024-05-16T12:32:20.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.339100", - "Timestamp": "2019-10-15T18:24:16.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.584700", + "Timestamp": "2024-05-16T12:32:19.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.239100", - "Timestamp": "2019-10-15T18:24:16.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.076400", + "Timestamp": "2024-05-16T12:32:19.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.375000", - "Timestamp": "2019-10-15T18:24:05.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.877400", + "Timestamp": "2024-05-16T12:32:18.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.345000", - "Timestamp": "2019-10-15T18:24:05.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.770600", + "Timestamp": "2024-05-16T12:32:17.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.245000", - "Timestamp": "2019-10-15T18:24:05.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.497000", + "Timestamp": "2024-05-16T12:32:17.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.433300", - "Timestamp": "2019-10-15T18:24:00.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.467000", + "Timestamp": "2024-05-16T12:32:17.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.403300", - "Timestamp": "2019-10-15T18:24:00.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.367000", + "Timestamp": "2024-05-16T12:32:17.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.303300", - "Timestamp": "2019-10-15T18:24:00.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.794200", + "Timestamp": "2024-05-16T12:32:16.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "a1.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.304700", - "Timestamp": "2019-10-15T18:23:50.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.789200", + "Timestamp": "2024-05-16T12:32:16.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "a1.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.274700", - "Timestamp": "2019-10-15T18:23:50.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.664200", + "Timestamp": "2024-05-16T12:32:16.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "a1.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.174700", - "Timestamp": "2019-10-15T18:23:50.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.618000", + "Timestamp": "2024-05-16T12:32:16.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.395100", - "Timestamp": "2019-10-15T18:23:25.000Z" + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.588000", + "Timestamp": "2024-05-16T12:32:16.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.365100", - "Timestamp": "2019-10-15T18:23:25.000Z" + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.488000", + "Timestamp": "2024-05-16T12:32:16.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.265100", - "Timestamp": "2019-10-15T18:23:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.145300", + "Timestamp": "2024-05-16T12:32:16.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.309900", - "Timestamp": "2019-10-15T18:23:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.675900", + "Timestamp": "2024-05-16T12:32:15.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.670900", + "Timestamp": "2024-05-16T12:32:15.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.545900", + "Timestamp": "2024-05-16T12:32:15.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.279900", - "Timestamp": "2019-10-15T18:23:25.000Z" + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.658400", + "Timestamp": "2024-05-16T12:32:15.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.179900", - "Timestamp": "2019-10-15T18:23:25.000Z" + "InstanceType": "g3s.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.498900", + "Timestamp": "2024-05-16T12:32:14.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.403200", - "Timestamp": "2019-10-15T18:23:24.000Z" + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.713300", + "Timestamp": "2024-05-16T12:32:13.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.373200", - "Timestamp": "2019-10-15T18:23:24.000Z" + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.708300", + "Timestamp": "2024-05-16T12:32:13.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.273200", - "Timestamp": "2019-10-15T18:23:24.000Z" + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.583300", + "Timestamp": "2024-05-16T12:32:13.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.366600", - "Timestamp": "2019-10-15T18:15:51.000Z" + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.832000", + "Timestamp": "2024-05-16T12:32:13.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.336600", - "Timestamp": "2019-10-15T18:15:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301300", + "Timestamp": "2024-05-16T12:32:13.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296300", + "Timestamp": "2024-05-16T12:32:13.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171300", + "Timestamp": "2024-05-16T12:32:13.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.989600", + "Timestamp": "2024-05-16T12:32:13.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.236600", - "Timestamp": "2019-10-15T18:15:51.000Z" + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.274900", + "Timestamp": "2024-05-16T12:32:12.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.072900", - "Timestamp": "2019-10-15T18:15:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.271500", + "Timestamp": "2024-05-16T12:32:12.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.858000", + "Timestamp": "2024-05-16T12:32:12.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.828000", + "Timestamp": "2024-05-16T12:32:12.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.728000", + "Timestamp": "2024-05-16T12:32:12.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.419300", - "Timestamp": "2019-10-15T18:15:34.000Z" + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098500", + "Timestamp": "2024-05-16T12:32:11.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100000", + "Timestamp": "2024-05-16T12:32:11.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.389300", - "Timestamp": "2019-10-15T18:15:34.000Z" + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094500", + "Timestamp": "2024-05-16T12:32:11.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T12:32:11.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.289300", - "Timestamp": "2019-10-15T18:15:34.000Z" + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038500", + "Timestamp": "2024-05-16T12:32:11.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040000", + "Timestamp": "2024-05-16T12:32:11.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.141000", - "Timestamp": "2019-10-15T18:15:29.000Z" + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.525300", + "Timestamp": "2024-05-16T12:32:11.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.181000", - "Timestamp": "2019-10-15T18:15:29.000Z" + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.520300", + "Timestamp": "2024-05-16T12:32:11.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.081000", - "Timestamp": "2019-10-15T18:15:29.000Z" + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.395300", + "Timestamp": "2024-05-16T12:32:11.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.285400", - "Timestamp": "2019-10-15T18:15:22.000Z" + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.858300", + "Timestamp": "2024-05-16T12:32:09.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.255400", - "Timestamp": "2019-10-15T18:15:22.000Z" + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.853300", + "Timestamp": "2024-05-16T12:32:09.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.155400", - "Timestamp": "2019-10-15T18:15:22.000Z" + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.728300", + "Timestamp": "2024-05-16T12:32:09.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.490800", - "Timestamp": "2019-10-15T18:14:54.000Z" + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147300", + "Timestamp": "2024-05-16T12:32:00.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.460800", - "Timestamp": "2019-10-15T18:14:54.000Z" + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143300", + "Timestamp": "2024-05-16T12:32:00.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.360800", - "Timestamp": "2019-10-15T18:14:54.000Z" + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087300", + "Timestamp": "2024-05-16T12:32:00.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.122800", - "Timestamp": "2019-10-15T18:14:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079200", + "Timestamp": "2024-05-16T12:19:39.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.162800", - "Timestamp": "2019-10-15T18:14:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.050200", + "Timestamp": "2024-05-16T12:19:39.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.062800", - "Timestamp": "2019-10-15T18:14:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019200", + "Timestamp": "2024-05-16T12:19:39.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.593600", - "Timestamp": "2019-10-15T18:14:10.000Z" + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.292400", + "Timestamp": "2024-05-16T12:18:44.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.593600", - "Timestamp": "2019-10-15T18:14:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.463700", + "Timestamp": "2024-05-16T12:18:44.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.593600", - "Timestamp": "2019-10-15T18:14:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.433700", + "Timestamp": "2024-05-16T12:18:44.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.593600", - "Timestamp": "2019-10-15T18:14:10.000Z" + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.333700", + "Timestamp": "2024-05-16T12:18:44.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.593600", - "Timestamp": "2019-10-15T18:14:10.000Z" - }, - { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.510500", - "Timestamp": "2019-10-15T18:13:36.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.510500", - "Timestamp": "2019-10-15T18:13:36.000Z" + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067800", + "Timestamp": "2024-05-16T12:18:41.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.272500", - "Timestamp": "2019-10-15T18:13:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039100", + "Timestamp": "2024-05-16T12:18:41.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.272500", - "Timestamp": "2019-10-15T18:13:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007800", + "Timestamp": "2024-05-16T12:18:41.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.242500", - "Timestamp": "2019-10-15T18:13:24.000Z" + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.011800", + "Timestamp": "2024-05-16T12:18:39.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.242500", - "Timestamp": "2019-10-15T18:13:24.000Z" - }, - { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.142500", - "Timestamp": "2019-10-15T18:13:24.000Z" + "InstanceType": "i2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.905300", + "Timestamp": "2024-05-16T12:18:39.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.142500", - "Timestamp": "2019-10-15T18:13:24.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.8xlarge", + "InstanceType": "r6in.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.798000", - "Timestamp": "2019-10-15T18:13:19.000Z" + "SpotPrice": "7.934900", + "Timestamp": "2024-05-16T12:18:39.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.8xlarge", + "InstanceType": "m6idn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.798000", - "Timestamp": "2019-10-15T18:13:19.000Z" + "SpotPrice": "0.302900", + "Timestamp": "2024-05-16T12:18:38.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.798000", - "Timestamp": "2019-10-15T18:13:19.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090700", + "Timestamp": "2024-05-16T12:18:38.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.798000", - "Timestamp": "2019-10-15T18:13:19.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.061700", + "Timestamp": "2024-05-16T12:18:38.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.063000", - "Timestamp": "2019-10-15T18:12:32.000Z" + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030700", + "Timestamp": "2024-05-16T12:18:38.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.063000", - "Timestamp": "2019-10-15T18:12:32.000Z" + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.840700", + "Timestamp": "2024-05-16T12:18:38.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.985000", - "Timestamp": "2019-10-15T18:12:21.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.835700", + "Timestamp": "2024-05-16T12:18:38.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.985000", - "Timestamp": "2019-10-15T18:12:21.000Z" + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.710700", + "Timestamp": "2024-05-16T12:18:38.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.955000", - "Timestamp": "2019-10-15T18:12:21.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.298200", + "Timestamp": "2024-05-16T12:18:37.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.955000", - "Timestamp": "2019-10-15T18:12:21.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.379600", + "Timestamp": "2024-05-16T12:18:36.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.855000", - "Timestamp": "2019-10-15T18:12:21.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166500", + "Timestamp": "2024-05-16T12:18:36.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.855000", - "Timestamp": "2019-10-15T18:12:21.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.206500", + "Timestamp": "2024-05-16T12:18:36.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.248800", - "Timestamp": "2019-10-15T18:12:15.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-16T12:18:36.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.248800", - "Timestamp": "2019-10-15T18:12:15.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.996300", + "Timestamp": "2024-05-16T12:18:34.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.248800", - "Timestamp": "2019-10-15T18:12:15.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.991300", + "Timestamp": "2024-05-16T12:18:34.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.248800", - "Timestamp": "2019-10-15T18:12:15.000Z" + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.866300", + "Timestamp": "2024-05-16T12:18:34.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.248800", - "Timestamp": "2019-10-15T18:12:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.985400", + "Timestamp": "2024-05-16T12:18:34.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.449500", - "Timestamp": "2019-10-15T18:12:14.000Z" + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.980400", + "Timestamp": "2024-05-16T12:18:34.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.449500", - "Timestamp": "2019-10-15T18:12:14.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.855400", + "Timestamp": "2024-05-16T12:18:34.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.449500", - "Timestamp": "2019-10-15T18:12:14.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.509700", + "Timestamp": "2024-05-16T12:18:34.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.449500", - "Timestamp": "2019-10-15T18:12:14.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.220800", + "Timestamp": "2024-05-16T12:18:34.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.798000", - "Timestamp": "2019-10-15T18:12:14.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.217100", + "Timestamp": "2024-05-16T12:18:34.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.798000", - "Timestamp": "2019-10-15T18:12:14.000Z" + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.160800", + "Timestamp": "2024-05-16T12:18:34.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.798000", - "Timestamp": "2019-10-15T18:12:14.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.547400", + "Timestamp": "2024-05-16T12:18:33.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.798000", - "Timestamp": "2019-10-15T18:12:14.000Z" + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.268700", + "Timestamp": "2024-05-16T12:18:31.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.449500", - "Timestamp": "2019-10-15T18:12:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.263700", + "Timestamp": "2024-05-16T12:18:31.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.449500", - "Timestamp": "2019-10-15T18:12:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.138700", + "Timestamp": "2024-05-16T12:18:31.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.449500", - "Timestamp": "2019-10-15T18:12:13.000Z" + "SpotPrice": "2.505600", + "Timestamp": "2024-05-16T12:18:31.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.449500", - "Timestamp": "2019-10-15T18:12:13.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.447900", + "Timestamp": "2024-05-16T12:18:30.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.247500", - "Timestamp": "2019-10-15T18:12:06.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.442900", + "Timestamp": "2024-05-16T12:18:30.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.247500", - "Timestamp": "2019-10-15T18:12:06.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.317900", + "Timestamp": "2024-05-16T12:18:30.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.2xlarge", + "InstanceType": "is4gen.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.247500", - "Timestamp": "2019-10-15T18:12:06.000Z" + "SpotPrice": "0.750100", + "Timestamp": "2024-05-16T12:18:29.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "is4gen.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.217500", - "Timestamp": "2019-10-15T18:12:06.000Z" + "SpotPrice": "0.745100", + "Timestamp": "2024-05-16T12:18:29.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.217500", - "Timestamp": "2019-10-15T18:12:06.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.620100", + "Timestamp": "2024-05-16T12:18:29.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.217500", - "Timestamp": "2019-10-15T18:12:06.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.959200", + "Timestamp": "2024-05-16T12:18:29.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.117500", - "Timestamp": "2019-10-15T18:12:06.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.954200", + "Timestamp": "2024-05-16T12:18:29.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.117500", - "Timestamp": "2019-10-15T18:12:06.000Z" + "SpotPrice": "2.829200", + "Timestamp": "2024-05-16T12:18:29.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.117500", - "Timestamp": "2019-10-15T18:12:06.000Z" + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.449400", + "Timestamp": "2024-05-16T12:18:28.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.250600", - "Timestamp": "2019-10-15T18:11:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.379700", + "Timestamp": "2024-05-16T12:18:28.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.250300", - "Timestamp": "2019-10-15T18:11:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.374700", + "Timestamp": "2024-05-16T12:18:28.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.220600", - "Timestamp": "2019-10-15T18:11:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.249700", + "Timestamp": "2024-05-16T12:18:28.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.220300", - "Timestamp": "2019-10-15T18:11:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.247100", + "Timestamp": "2024-05-16T12:18:27.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.120600", - "Timestamp": "2019-10-15T18:11:54.000Z" + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.182900", + "Timestamp": "2024-05-16T12:18:27.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.120300", - "Timestamp": "2019-10-15T18:11:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.177900", + "Timestamp": "2024-05-16T12:18:27.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-15T18:11:54.000Z" + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.052900", + "Timestamp": "2024-05-16T12:18:27.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-15T18:11:54.000Z" + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.957800", + "Timestamp": "2024-05-16T12:18:27.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-15T18:11:54.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-15T18:11:54.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-15T18:11:54.000Z" + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.941400", + "Timestamp": "2024-05-16T12:18:26.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.131300", - "Timestamp": "2019-10-15T18:11:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.936400", + "Timestamp": "2024-05-16T12:18:26.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.131300", - "Timestamp": "2019-10-15T18:11:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.811400", + "Timestamp": "2024-05-16T12:18:26.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.131300", - "Timestamp": "2019-10-15T18:11:34.000Z" + "InstanceType": "p2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.239200", + "Timestamp": "2024-05-16T12:18:25.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.131300", - "Timestamp": "2019-10-15T18:11:34.000Z" + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.521800", + "Timestamp": "2024-05-16T12:18:25.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.131300", - "Timestamp": "2019-10-15T18:11:34.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.516800", + "Timestamp": "2024-05-16T12:18:25.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.171300", - "Timestamp": "2019-10-15T18:11:34.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.391800", + "Timestamp": "2024-05-16T12:18:25.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.171300", - "Timestamp": "2019-10-15T18:11:34.000Z" + "InstanceType": "m5zn.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.815400", + "Timestamp": "2024-05-16T12:18:24.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.171300", - "Timestamp": "2019-10-15T18:11:34.000Z" + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.321800", + "Timestamp": "2024-05-16T12:18:24.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.935900", + "Timestamp": "2024-05-16T12:18:24.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.171300", - "Timestamp": "2019-10-15T18:11:34.000Z" + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.538700", + "Timestamp": "2024-05-16T12:18:20.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.171300", - "Timestamp": "2019-10-15T18:11:34.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.533700", + "Timestamp": "2024-05-16T12:18:20.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-15T18:11:34.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.408700", + "Timestamp": "2024-05-16T12:18:20.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-15T18:11:34.000Z" + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.939600", + "Timestamp": "2024-05-16T12:18:20.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-15T18:11:34.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.934600", + "Timestamp": "2024-05-16T12:18:20.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-15T18:11:34.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.809600", + "Timestamp": "2024-05-16T12:18:20.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-15T18:11:34.000Z" + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.067200", + "Timestamp": "2024-05-16T12:18:20.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-15T18:11:33.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.243800", + "Timestamp": "2024-05-16T12:18:18.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-15T18:11:33.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.213800", + "Timestamp": "2024-05-16T12:18:18.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-15T18:11:33.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.113800", + "Timestamp": "2024-05-16T12:18:18.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-15T18:11:33.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.994800", + "Timestamp": "2024-05-16T12:18:18.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-15T18:11:33.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.989800", + "Timestamp": "2024-05-16T12:18:18.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-15T18:11:33.000Z" + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.864800", + "Timestamp": "2024-05-16T12:18:18.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-15T18:11:33.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.595300", + "Timestamp": "2024-05-16T12:18:18.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-15T18:11:33.000Z" + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.540500", + "Timestamp": "2024-05-16T12:18:18.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-15T18:11:33.000Z" + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.559500", + "Timestamp": "2024-05-16T12:18:18.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-15T18:11:33.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.554500", + "Timestamp": "2024-05-16T12:18:18.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-15T18:11:33.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.429500", + "Timestamp": "2024-05-16T12:18:18.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-15T18:11:33.000Z" + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.456100", + "Timestamp": "2024-05-16T12:18:17.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-15T18:11:33.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.252700", + "Timestamp": "2024-05-16T12:18:16.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-15T18:11:33.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.247700", + "Timestamp": "2024-05-16T12:18:16.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-15T18:11:33.000Z" + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.122700", + "Timestamp": "2024-05-16T12:18:16.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.032200", - "Timestamp": "2019-10-15T18:11:20.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.809700", + "Timestamp": "2024-05-16T12:18:16.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.032200", - "Timestamp": "2019-10-15T18:11:20.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.804700", + "Timestamp": "2024-05-16T12:18:16.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.032200", - "Timestamp": "2019-10-15T18:11:20.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.679700", + "Timestamp": "2024-05-16T12:18:16.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.032200", - "Timestamp": "2019-10-15T18:11:20.000Z" + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.769800", + "Timestamp": "2024-05-16T12:18:15.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.032200", - "Timestamp": "2019-10-15T18:11:20.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.237000", + "Timestamp": "2024-05-16T12:18:15.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.052700", - "Timestamp": "2019-10-15T18:11:20.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.232000", + "Timestamp": "2024-05-16T12:18:15.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.052700", - "Timestamp": "2019-10-15T18:11:20.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.107000", + "Timestamp": "2024-05-16T12:18:15.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.052700", - "Timestamp": "2019-10-15T18:11:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.283600", + "Timestamp": "2024-05-16T12:18:15.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.052700", - "Timestamp": "2019-10-15T18:11:20.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.322600", + "Timestamp": "2024-05-16T12:18:14.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.052700", - "Timestamp": "2019-10-15T18:11:20.000Z" + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.317600", + "Timestamp": "2024-05-16T12:18:14.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "4.133200", - "Timestamp": "2019-10-15T18:10:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.192600", + "Timestamp": "2024-05-16T12:18:14.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "4.133200", - "Timestamp": "2019-10-15T18:10:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.132600", + "Timestamp": "2024-05-16T12:18:14.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "4.133200", - "Timestamp": "2019-10-15T18:10:54.000Z" + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.603900", + "Timestamp": "2024-05-16T12:18:14.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "4.133200", - "Timestamp": "2019-10-15T18:10:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.598900", + "Timestamp": "2024-05-16T12:18:14.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "4.103200", - "Timestamp": "2019-10-15T18:10:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.473900", + "Timestamp": "2024-05-16T12:18:14.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "4.103200", - "Timestamp": "2019-10-15T18:10:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.150400", + "Timestamp": "2024-05-16T12:18:13.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "4.103200", - "Timestamp": "2019-10-15T18:10:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.272000", + "Timestamp": "2024-05-16T12:18:12.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "4.103200", - "Timestamp": "2019-10-15T18:10:54.000Z" + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269000", + "Timestamp": "2024-05-16T12:18:12.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "4.003200", - "Timestamp": "2019-10-15T18:10:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212000", + "Timestamp": "2024-05-16T12:18:12.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "4.003200", - "Timestamp": "2019-10-15T18:10:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.308200", + "Timestamp": "2024-05-16T12:18:12.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "4.003200", - "Timestamp": "2019-10-15T18:10:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.290600", + "Timestamp": "2024-05-16T12:18:12.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "4.003200", - "Timestamp": "2019-10-15T18:10:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.285600", + "Timestamp": "2024-05-16T12:18:12.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.947200", - "Timestamp": "2019-10-15T18:10:54.000Z" + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.160600", + "Timestamp": "2024-05-16T12:18:12.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.947200", - "Timestamp": "2019-10-15T18:10:54.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.947200", - "Timestamp": "2019-10-15T18:10:54.000Z" + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.038200", + "Timestamp": "2024-05-16T12:18:12.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.947200", - "Timestamp": "2019-10-15T18:10:54.000Z" + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.114500", + "Timestamp": "2024-05-16T12:18:12.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.600000", - "Timestamp": "2019-10-15T18:10:54.000Z" + "SpotPrice": "2.125700", + "Timestamp": "2024-05-16T12:18:12.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.600000", - "Timestamp": "2019-10-15T18:10:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.120700", + "Timestamp": "2024-05-16T12:18:12.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.600000", - "Timestamp": "2019-10-15T18:10:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.995700", + "Timestamp": "2024-05-16T12:18:12.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.600000", - "Timestamp": "2019-10-15T18:10:54.000Z" + "SpotPrice": "0.133400", + "Timestamp": "2024-05-16T12:18:11.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.8xlarge", + "InstanceType": "m5zn.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.570000", - "Timestamp": "2019-10-15T18:10:54.000Z" + "SpotPrice": "0.129700", + "Timestamp": "2024-05-16T12:18:11.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.570000", - "Timestamp": "2019-10-15T18:10:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073400", + "Timestamp": "2024-05-16T12:18:11.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.570000", - "Timestamp": "2019-10-15T18:10:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.170700", + "Timestamp": "2024-05-16T12:18:11.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.570000", - "Timestamp": "2019-10-15T18:10:54.000Z" + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.131800", + "Timestamp": "2024-05-16T12:18:10.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.470000", - "Timestamp": "2019-10-15T18:10:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.161700", + "Timestamp": "2024-05-16T12:18:10.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.470000", - "Timestamp": "2019-10-15T18:10:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.596000", + "Timestamp": "2024-05-16T12:18:10.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.470000", - "Timestamp": "2019-10-15T18:10:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.591000", + "Timestamp": "2024-05-16T12:18:10.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.470000", - "Timestamp": "2019-10-15T18:10:54.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.995100", - "Timestamp": "2019-10-15T18:10:25.000Z" + "SpotPrice": "0.466000", + "Timestamp": "2024-05-16T12:18:10.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.995100", - "Timestamp": "2019-10-15T18:10:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.023100", + "Timestamp": "2024-05-16T12:18:09.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.995100", - "Timestamp": "2019-10-15T18:10:25.000Z" + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.322800", + "Timestamp": "2024-05-16T12:18:09.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.995100", - "Timestamp": "2019-10-15T18:10:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.146700", + "Timestamp": "2024-05-16T12:18:09.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.995100", - "Timestamp": "2019-10-15T18:10:25.000Z" + "InstanceType": "g6.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.710500", + "Timestamp": "2024-05-16T12:18:08.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.995100", - "Timestamp": "2019-10-15T18:10:25.000Z" + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.535500", + "Timestamp": "2024-05-16T12:18:07.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.085100", - "Timestamp": "2019-10-15T18:10:00.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "15.598700", + "Timestamp": "2024-05-16T12:18:07.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.125100", - "Timestamp": "2019-10-15T18:10:00.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.842200", + "Timestamp": "2024-05-16T12:18:07.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.025100", - "Timestamp": "2019-10-15T18:10:00.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.837200", + "Timestamp": "2024-05-16T12:18:07.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.085100", - "Timestamp": "2019-10-15T18:10:00.000Z" + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.712200", + "Timestamp": "2024-05-16T12:18:07.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.125100", - "Timestamp": "2019-10-15T18:10:00.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.393800", + "Timestamp": "2024-05-16T12:18:07.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.025100", - "Timestamp": "2019-10-15T18:10:00.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.388800", + "Timestamp": "2024-05-16T12:18:07.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.504200", - "Timestamp": "2019-10-15T18:09:55.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.263800", + "Timestamp": "2024-05-16T12:18:07.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.504200", - "Timestamp": "2019-10-15T18:09:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.343600", + "Timestamp": "2024-05-16T12:18:07.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.504200", - "Timestamp": "2019-10-15T18:09:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.338600", + "Timestamp": "2024-05-16T12:18:07.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.504200", - "Timestamp": "2019-10-15T18:09:55.000Z" + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.213600", + "Timestamp": "2024-05-16T12:18:07.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.504200", - "Timestamp": "2019-10-15T18:09:55.000Z" + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132500", + "Timestamp": "2024-05-16T12:18:07.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-15T18:09:55.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128800", + "Timestamp": "2024-05-16T12:18:07.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-15T18:09:55.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072500", + "Timestamp": "2024-05-16T12:18:07.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-15T18:09:55.000Z" + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.648200", + "Timestamp": "2024-05-16T12:18:07.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-15T18:09:55.000Z" + "InstanceType": "i2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.548200", + "Timestamp": "2024-05-16T12:18:07.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-15T18:09:55.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.518200", + "Timestamp": "2024-05-16T12:18:07.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-15T18:09:55.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.418200", + "Timestamp": "2024-05-16T12:18:07.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-15T18:09:55.000Z" + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.084800", + "Timestamp": "2024-05-16T12:18:06.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-15T18:09:55.000Z" + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.112700", + "Timestamp": "2024-05-16T12:18:06.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-15T18:09:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.145300", + "Timestamp": "2024-05-16T12:18:06.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-15T18:09:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.023100", + "Timestamp": "2024-05-16T12:18:05.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-15T18:09:55.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.453500", + "Timestamp": "2024-05-16T12:18:04.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-15T18:09:55.000Z" + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.423500", + "Timestamp": "2024-05-16T12:18:04.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.317500", - "Timestamp": "2019-10-15T18:06:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.323500", + "Timestamp": "2024-05-16T12:18:04.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.357500", - "Timestamp": "2019-10-15T18:06:54.000Z" - }, - { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.257500", - "Timestamp": "2019-10-15T18:06:54.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.504000", - "Timestamp": "2019-10-15T18:06:53.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.784400", - "Timestamp": "2019-10-15T18:06:52.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.754400", - "Timestamp": "2019-10-15T18:06:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.994200", + "Timestamp": "2024-05-16T12:18:04.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.654400", - "Timestamp": "2019-10-15T18:06:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.964200", + "Timestamp": "2024-05-16T12:18:04.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.008100", - "Timestamp": "2019-10-15T18:06:22.000Z" + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.864200", + "Timestamp": "2024-05-16T12:18:04.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.008100", - "Timestamp": "2019-10-15T18:06:22.000Z" + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.850500", + "Timestamp": "2024-05-16T12:18:04.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.504000", - "Timestamp": "2019-10-15T17:59:58.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.845500", + "Timestamp": "2024-05-16T12:18:04.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5dn.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T17:58:58.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.720500", + "Timestamp": "2024-05-16T12:18:04.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.077400", - "Timestamp": "2019-10-15T17:58:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.343400", + "Timestamp": "2024-05-16T12:18:04.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.899800", - "Timestamp": "2019-10-15T17:58:41.000Z" + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.095300", + "Timestamp": "2024-05-16T12:18:03.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.869800", - "Timestamp": "2019-10-15T17:58:41.000Z" + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.090300", + "Timestamp": "2024-05-16T12:18:03.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.769800", - "Timestamp": "2019-10-15T17:58:41.000Z" + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.965300", + "Timestamp": "2024-05-16T12:18:03.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.xlarge", + "InstanceType": "c6id.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.291600", - "Timestamp": "2019-10-15T17:58:38.000Z" - }, - { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.547300", - "Timestamp": "2019-10-15T17:50:47.000Z" + "SpotPrice": "1.128300", + "Timestamp": "2024-05-16T12:18:03.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.657200", - "Timestamp": "2019-10-15T17:50:39.000Z" + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.499600", + "Timestamp": "2024-05-16T12:18:03.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r4.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.627200", - "Timestamp": "2019-10-15T17:50:39.000Z" + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.494600", + "Timestamp": "2024-05-16T12:18:03.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.527200", - "Timestamp": "2019-10-15T17:50:39.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.311700", - "Timestamp": "2019-10-15T17:50:31.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "p2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.281700", - "Timestamp": "2019-10-15T17:50:31.000Z" + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.369600", + "Timestamp": "2024-05-16T12:18:03.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.181700", - "Timestamp": "2019-10-15T17:50:31.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.090800", + "Timestamp": "2024-05-16T12:18:03.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.141100", - "Timestamp": "2019-10-15T17:50:27.000Z" + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.203200", + "Timestamp": "2024-05-16T12:18:03.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.181100", - "Timestamp": "2019-10-15T17:50:27.000Z" + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.198200", + "Timestamp": "2024-05-16T12:18:03.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.081100", - "Timestamp": "2019-10-15T17:50:27.000Z" + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.073200", + "Timestamp": "2024-05-16T12:18:03.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "t2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.131400", - "Timestamp": "2019-10-15T17:50:20.000Z" + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.132300", + "Timestamp": "2024-05-16T12:18:02.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "t2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.171400", - "Timestamp": "2019-10-15T17:50:20.000Z" + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.127300", + "Timestamp": "2024-05-16T12:18:02.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "t2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.071400", - "Timestamp": "2019-10-15T17:50:20.000Z" + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.002300", + "Timestamp": "2024-05-16T12:18:02.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.306900", - "Timestamp": "2019-10-15T17:50:07.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "9.841200", + "Timestamp": "2024-05-16T12:18:02.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.276900", - "Timestamp": "2019-10-15T17:50:07.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "9.811200", + "Timestamp": "2024-05-16T12:18:02.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.176900", - "Timestamp": "2019-10-15T17:50:07.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "9.711200", + "Timestamp": "2024-05-16T12:18:02.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.090400", + "Timestamp": "2024-05-16T12:18:02.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.356500", - "Timestamp": "2019-10-15T17:50:07.000Z" + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.364800", + "Timestamp": "2024-05-16T12:18:02.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.326500", - "Timestamp": "2019-10-15T17:50:07.000Z" + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.359800", + "Timestamp": "2024-05-16T12:18:02.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.226500", - "Timestamp": "2019-10-15T17:50:07.000Z" + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.234800", + "Timestamp": "2024-05-16T12:18:02.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.788800", + "Timestamp": "2024-05-16T12:18:02.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.093800", - "Timestamp": "2019-10-15T17:50:00.000Z" + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.364600", + "Timestamp": "2024-05-16T12:18:01.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.133800", - "Timestamp": "2019-10-15T17:50:00.000Z" + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.359600", + "Timestamp": "2024-05-16T12:18:01.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.033800", - "Timestamp": "2019-10-15T17:50:00.000Z" + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.234600", + "Timestamp": "2024-05-16T12:18:01.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094800", - "Timestamp": "2019-10-15T17:48:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.085100", + "Timestamp": "2024-05-16T12:18:01.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134800", - "Timestamp": "2019-10-15T17:48:22.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.037200", + "Timestamp": "2024-05-16T12:18:00.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034800", - "Timestamp": "2019-10-15T17:48:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.349000", + "Timestamp": "2024-05-16T12:18:00.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.504000", - "Timestamp": "2019-10-15T17:42:58.000Z" + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.985400", + "Timestamp": "2024-05-16T12:18:00.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.380600", - "Timestamp": "2019-10-15T17:42:15.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.126900", + "Timestamp": "2024-05-16T12:18:00.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.350600", - "Timestamp": "2019-10-15T17:42:15.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.524200", + "Timestamp": "2024-05-16T12:18:00.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.250600", - "Timestamp": "2019-10-15T17:42:15.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.650700", + "Timestamp": "2024-05-16T12:17:59.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.087300", - "Timestamp": "2019-10-15T17:42:15.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136500", + "Timestamp": "2024-05-16T12:17:59.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.127300", - "Timestamp": "2019-10-15T17:42:15.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132800", + "Timestamp": "2024-05-16T12:17:59.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076500", + "Timestamp": "2024-05-16T12:17:59.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.159300", + "Timestamp": "2024-05-16T12:17:59.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.154300", + "Timestamp": "2024-05-16T12:17:59.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.029300", + "Timestamp": "2024-05-16T12:17:59.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "t3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.027300", - "Timestamp": "2019-10-15T17:42:15.000Z" + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.165500", + "Timestamp": "2024-05-16T12:17:59.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.378300", - "Timestamp": "2019-10-15T17:42:04.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.160500", + "Timestamp": "2024-05-16T12:17:59.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.348300", - "Timestamp": "2019-10-15T17:42:04.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.035500", + "Timestamp": "2024-05-16T12:17:59.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.248300", - "Timestamp": "2019-10-15T17:42:04.000Z" + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.152300", + "Timestamp": "2024-05-16T12:17:58.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.840300", - "Timestamp": "2019-10-15T17:41:59.000Z" + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.561500", + "Timestamp": "2024-05-16T12:17:58.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.810300", - "Timestamp": "2019-10-15T17:41:59.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.549400", + "Timestamp": "2024-05-16T12:17:58.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.710300", - "Timestamp": "2019-10-15T17:41:59.000Z" + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.556500", + "Timestamp": "2024-05-16T12:17:58.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.448400", - "Timestamp": "2019-10-15T17:41:53.000Z" + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.544400", + "Timestamp": "2024-05-16T12:17:58.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.418400", - "Timestamp": "2019-10-15T17:41:53.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.431500", + "Timestamp": "2024-05-16T12:17:58.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.318400", - "Timestamp": "2019-10-15T17:41:53.000Z" + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.419400", + "Timestamp": "2024-05-16T12:17:58.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.877200", - "Timestamp": "2019-10-15T17:41:51.000Z" + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.562000", + "Timestamp": "2024-05-16T12:17:57.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.847200", - "Timestamp": "2019-10-15T17:41:51.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.689600", + "Timestamp": "2024-05-16T12:17:57.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.747200", - "Timestamp": "2019-10-15T17:41:51.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.684600", + "Timestamp": "2024-05-16T12:17:57.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.473100", - "Timestamp": "2019-10-15T17:41:42.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.559600", + "Timestamp": "2024-05-16T12:17:57.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.443100", - "Timestamp": "2019-10-15T17:41:42.000Z" + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.840900", + "Timestamp": "2024-05-16T12:17:57.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.960500", + "Timestamp": "2024-05-16T12:17:57.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.475200", + "Timestamp": "2024-05-16T12:17:57.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.343100", - "Timestamp": "2019-10-15T17:41:42.000Z" + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.835900", + "Timestamp": "2024-05-16T12:17:57.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.453800", - "Timestamp": "2019-10-15T17:41:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.955500", + "Timestamp": "2024-05-16T12:17:57.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.423800", - "Timestamp": "2019-10-15T17:41:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.470200", + "Timestamp": "2024-05-16T12:17:57.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.323800", - "Timestamp": "2019-10-15T17:41:40.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.710900", + "Timestamp": "2024-05-16T12:17:57.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.266000", - "Timestamp": "2019-10-15T17:41:40.000Z" + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.830500", + "Timestamp": "2024-05-16T12:17:57.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.236000", - "Timestamp": "2019-10-15T17:41:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.345200", + "Timestamp": "2024-05-16T12:17:57.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.136000", - "Timestamp": "2019-10-15T17:41:40.000Z" + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.099800", + "Timestamp": "2024-05-16T12:17:57.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.112400", - "Timestamp": "2019-10-15T17:41:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.080600", + "Timestamp": "2024-05-16T12:17:57.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.112400", - "Timestamp": "2019-10-15T17:41:39.000Z" + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.376200", + "Timestamp": "2024-05-16T12:17:56.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.112400", - "Timestamp": "2019-10-15T17:41:39.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.014100", + "Timestamp": "2024-05-16T12:17:56.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.112400", - "Timestamp": "2019-10-15T17:41:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.389900", + "Timestamp": "2024-05-16T12:17:56.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.269300", - "Timestamp": "2019-10-15T17:41:34.000Z" + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.384900", + "Timestamp": "2024-05-16T12:17:56.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.239300", - "Timestamp": "2019-10-15T17:41:34.000Z" + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.259900", + "Timestamp": "2024-05-16T12:17:56.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.139300", - "Timestamp": "2019-10-15T17:41:34.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.526200", + "Timestamp": "2024-05-16T12:17:55.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252000", - "Timestamp": "2019-10-15T17:40:49.000Z" + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.163100", + "Timestamp": "2024-05-16T12:17:55.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252000", - "Timestamp": "2019-10-15T17:40:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.158100", + "Timestamp": "2024-05-16T12:17:55.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252000", - "Timestamp": "2019-10-15T17:40:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.033100", + "Timestamp": "2024-05-16T12:17:55.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252000", - "Timestamp": "2019-10-15T17:40:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.792900", + "Timestamp": "2024-05-16T12:17:55.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252000", - "Timestamp": "2019-10-15T17:40:49.000Z" + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.787900", + "Timestamp": "2024-05-16T12:17:55.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.112400", - "Timestamp": "2019-10-15T17:40:05.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.662900", + "Timestamp": "2024-05-16T12:17:55.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.112400", - "Timestamp": "2019-10-15T17:40:05.000Z" + "SpotPrice": "0.461900", + "Timestamp": "2024-05-16T12:17:54.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.112400", - "Timestamp": "2019-10-15T17:40:05.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.214900", + "Timestamp": "2024-05-16T12:17:54.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.112400", - "Timestamp": "2019-10-15T17:40:05.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.211200", + "Timestamp": "2024-05-16T12:17:54.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089400", - "Timestamp": "2019-10-15T17:40:00.000Z" + "InstanceType": "r7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.154900", + "Timestamp": "2024-05-16T12:17:54.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089400", - "Timestamp": "2019-10-15T17:40:00.000Z" + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.654200", + "Timestamp": "2024-05-16T12:17:54.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089400", - "Timestamp": "2019-10-15T17:40:00.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.834600", + "Timestamp": "2024-05-16T12:17:53.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.large", + "InstanceType": "z1d.6xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089400", - "Timestamp": "2019-10-15T17:40:00.000Z" + "SpotPrice": "1.191500", + "Timestamp": "2024-05-16T12:17:53.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.6xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.129400", - "Timestamp": "2019-10-15T17:40:00.000Z" + "SpotPrice": "1.186500", + "Timestamp": "2024-05-16T12:17:53.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.129400", - "Timestamp": "2019-10-15T17:40:00.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.061500", + "Timestamp": "2024-05-16T12:17:53.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.129400", - "Timestamp": "2019-10-15T17:40:00.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.218400", + "Timestamp": "2024-05-16T12:17:52.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.129400", - "Timestamp": "2019-10-15T17:40:00.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029400", - "Timestamp": "2019-10-15T17:40:00.000Z" + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.573600", + "Timestamp": "2024-05-16T12:17:50.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029400", - "Timestamp": "2019-10-15T17:40:00.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.568600", + "Timestamp": "2024-05-16T12:17:50.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029400", - "Timestamp": "2019-10-15T17:40:00.000Z" + "SpotPrice": "0.443600", + "Timestamp": "2024-05-16T12:17:50.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029400", - "Timestamp": "2019-10-15T17:40:00.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.897900", + "Timestamp": "2024-05-16T12:17:50.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.684600", - "Timestamp": "2019-10-15T17:39:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.892900", + "Timestamp": "2024-05-16T12:17:50.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.684600", - "Timestamp": "2019-10-15T17:39:54.000Z" + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.767900", + "Timestamp": "2024-05-16T12:17:50.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.684600", - "Timestamp": "2019-10-15T17:39:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "14.184400", + "Timestamp": "2024-05-16T12:17:49.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.684600", - "Timestamp": "2019-10-15T17:39:54.000Z" + "InstanceType": "m1.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078800", + "Timestamp": "2024-05-16T12:17:48.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.684600", - "Timestamp": "2019-10-15T17:39:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m1.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.048800", + "Timestamp": "2024-05-16T12:17:48.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.654600", - "Timestamp": "2019-10-15T17:39:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m1.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018800", + "Timestamp": "2024-05-16T12:17:48.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.654600", - "Timestamp": "2019-10-15T17:39:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.466900", + "Timestamp": "2024-05-16T12:17:48.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.654600", - "Timestamp": "2019-10-15T17:39:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.461900", + "Timestamp": "2024-05-16T12:17:48.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.654600", - "Timestamp": "2019-10-15T17:39:54.000Z" + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.336900", + "Timestamp": "2024-05-16T12:17:48.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.654600", - "Timestamp": "2019-10-15T17:39:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.196700", + "Timestamp": "2024-05-16T12:17:48.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.554600", - "Timestamp": "2019-10-15T17:39:54.000Z" + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193000", + "Timestamp": "2024-05-16T12:17:48.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.554600", - "Timestamp": "2019-10-15T17:39:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136700", + "Timestamp": "2024-05-16T12:17:48.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.554600", - "Timestamp": "2019-10-15T17:39:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.387400", + "Timestamp": "2024-05-16T12:17:47.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.554600", - "Timestamp": "2019-10-15T17:39:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.382400", + "Timestamp": "2024-05-16T12:17:47.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.554600", - "Timestamp": "2019-10-15T17:39:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.257400", + "Timestamp": "2024-05-16T12:17:47.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "9.360000", - "Timestamp": "2019-10-15T17:39:25.000Z" + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.820100", + "Timestamp": "2024-05-16T12:17:46.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "9.360000", - "Timestamp": "2019-10-15T17:39:25.000Z" + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.109300", + "Timestamp": "2024-05-16T12:17:46.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "5.074000", - "Timestamp": "2019-10-15T17:38:25.000Z" + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.203400", + "Timestamp": "2024-05-16T12:17:46.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "5.074000", - "Timestamp": "2019-10-15T17:38:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.199700", + "Timestamp": "2024-05-16T12:17:46.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "5.044000", - "Timestamp": "2019-10-15T17:38:25.000Z" + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143400", + "Timestamp": "2024-05-16T12:17:46.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "5.044000", - "Timestamp": "2019-10-15T17:38:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.792800", + "Timestamp": "2024-05-16T12:17:45.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "4.944000", - "Timestamp": "2019-10-15T17:38:25.000Z" + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.787800", + "Timestamp": "2024-05-16T12:17:45.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "4.944000", - "Timestamp": "2019-10-15T17:38:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.662800", + "Timestamp": "2024-05-16T12:17:45.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.247400", - "Timestamp": "2019-10-15T17:38:12.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.480000", + "Timestamp": "2024-05-16T12:17:45.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.247400", - "Timestamp": "2019-10-15T17:38:12.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.450000", + "Timestamp": "2024-05-16T12:17:45.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.247400", - "Timestamp": "2019-10-15T17:38:12.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.350000", + "Timestamp": "2024-05-16T12:17:45.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.247400", - "Timestamp": "2019-10-15T17:38:12.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.461800", + "Timestamp": "2024-05-16T12:17:45.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.247400", - "Timestamp": "2019-10-15T17:38:12.000Z" + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.452800", + "Timestamp": "2024-05-16T12:17:45.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.970600", - "Timestamp": "2019-10-15T17:37:55.000Z" - }, - { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.970600", - "Timestamp": "2019-10-15T17:37:55.000Z" + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.456800", + "Timestamp": "2024-05-16T12:17:45.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.970600", - "Timestamp": "2019-10-15T17:37:55.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.447800", + "Timestamp": "2024-05-16T12:17:45.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.970600", - "Timestamp": "2019-10-15T17:37:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.331800", + "Timestamp": "2024-05-16T12:17:45.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.970600", - "Timestamp": "2019-10-15T17:37:55.000Z" + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.322800", + "Timestamp": "2024-05-16T12:17:45.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.230200", - "Timestamp": "2019-10-15T17:37:48.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.556500", + "Timestamp": "2024-05-16T12:17:45.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.230200", - "Timestamp": "2019-10-15T17:37:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T12:17:45.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.230200", - "Timestamp": "2019-10-15T17:37:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150600", + "Timestamp": "2024-05-16T12:17:45.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.230200", - "Timestamp": "2019-10-15T17:37:48.000Z" + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050600", + "Timestamp": "2024-05-16T12:17:45.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.230200", - "Timestamp": "2019-10-15T17:37:48.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.302800", + "Timestamp": "2024-05-16T12:17:45.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.200200", - "Timestamp": "2019-10-15T17:37:48.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.272800", + "Timestamp": "2024-05-16T12:17:45.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.200200", - "Timestamp": "2019-10-15T17:37:48.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172800", + "Timestamp": "2024-05-16T12:17:45.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.200200", - "Timestamp": "2019-10-15T17:37:48.000Z" + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.434800", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.200200", - "Timestamp": "2019-10-15T17:37:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.429800", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.200200", - "Timestamp": "2019-10-15T17:37:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.304800", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.100200", - "Timestamp": "2019-10-15T17:37:48.000Z" + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.300600", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.100200", - "Timestamp": "2019-10-15T17:37:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270600", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.100200", - "Timestamp": "2019-10-15T17:37:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170600", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.100200", - "Timestamp": "2019-10-15T17:37:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.948100", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.100200", - "Timestamp": "2019-10-15T17:37:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.943100", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.089400", - "Timestamp": "2019-10-15T17:37:33.000Z" + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.818100", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.089400", - "Timestamp": "2019-10-15T17:37:33.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.427400", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.089400", - "Timestamp": "2019-10-15T17:37:33.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.422400", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.089400", - "Timestamp": "2019-10-15T17:37:33.000Z" + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.297400", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.129400", - "Timestamp": "2019-10-15T17:37:33.000Z" + "InstanceType": "m7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085700", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.129400", - "Timestamp": "2019-10-15T17:37:33.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082000", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.129400", - "Timestamp": "2019-10-15T17:37:33.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025700", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.129400", - "Timestamp": "2019-10-15T17:37:33.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.543500", + "Timestamp": "2024-05-16T12:17:44.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.194200", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.029400", - "Timestamp": "2019-10-15T17:37:33.000Z" + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.538500", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.029400", - "Timestamp": "2019-10-15T17:37:33.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.189200", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.029400", - "Timestamp": "2019-10-15T17:37:33.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.413500", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.029400", - "Timestamp": "2019-10-15T17:37:33.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.064200", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094000", - "Timestamp": "2019-10-15T17:33:23.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.169800", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134000", - "Timestamp": "2019-10-15T17:33:23.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.164800", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034000", - "Timestamp": "2019-10-15T17:33:23.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.039800", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.429400", - "Timestamp": "2019-10-15T17:25:39.000Z" + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.016000", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "g3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.399400", - "Timestamp": "2019-10-15T17:25:39.000Z" + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.986000", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.299400", - "Timestamp": "2019-10-15T17:25:39.000Z" + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.886000", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.318000", - "Timestamp": "2019-10-15T17:25:32.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.189600", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.288000", - "Timestamp": "2019-10-15T17:25:32.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185900", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.188000", - "Timestamp": "2019-10-15T17:25:32.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129600", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.237300", - "Timestamp": "2019-10-15T17:25:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.878100", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.277300", - "Timestamp": "2019-10-15T17:25:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.691500", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.177300", - "Timestamp": "2019-10-15T17:25:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.686500", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.318200", - "Timestamp": "2019-10-15T17:25:05.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.561500", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.288200", - "Timestamp": "2019-10-15T17:25:05.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149400", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.188200", - "Timestamp": "2019-10-15T17:25:05.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145700", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c1.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.073000", - "Timestamp": "2019-10-15T17:20:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089400", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c1.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.073000", - "Timestamp": "2019-10-15T17:20:52.000Z" + "SpotPrice": "0.588500", + "Timestamp": "2024-05-16T12:17:43.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c1.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.073000", - "Timestamp": "2019-10-15T17:20:52.000Z" + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.584800", + "Timestamp": "2024-05-16T12:17:43.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c1.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.528500", + "Timestamp": "2024-05-16T12:17:43.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "vt1.3xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.073000", - "Timestamp": "2019-10-15T17:20:52.000Z" + "SpotPrice": "0.451600", + "Timestamp": "2024-05-16T12:17:43.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c1.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "vt1.3xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.113000", - "Timestamp": "2019-10-15T17:20:52.000Z" + "SpotPrice": "0.421600", + "Timestamp": "2024-05-16T12:17:43.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c1.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.113000", - "Timestamp": "2019-10-15T17:20:52.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "vt1.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.321600", + "Timestamp": "2024-05-16T12:17:43.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c1.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.113000", - "Timestamp": "2019-10-15T17:20:52.000Z" + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.265200", + "Timestamp": "2024-05-16T12:17:43.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c1.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.113000", - "Timestamp": "2019-10-15T17:20:52.000Z" + "SpotPrice": "0.260200", + "Timestamp": "2024-05-16T12:17:43.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c1.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.013000", - "Timestamp": "2019-10-15T17:20:52.000Z" + "SpotPrice": "0.135200", + "Timestamp": "2024-05-16T12:17:43.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c1.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.013000", - "Timestamp": "2019-10-15T17:20:52.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.597900", + "Timestamp": "2024-05-16T12:17:43.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c1.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.013000", - "Timestamp": "2019-10-15T17:20:52.000Z" + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.592900", + "Timestamp": "2024-05-16T12:17:43.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c1.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.013000", - "Timestamp": "2019-10-15T17:20:52.000Z" + "SpotPrice": "0.467900", + "Timestamp": "2024-05-16T12:17:43.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c1.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-15T17:20:06.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076300", + "Timestamp": "2024-05-16T12:17:43.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c1.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-15T17:20:06.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.072600", + "Timestamp": "2024-05-16T12:17:43.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c1.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-15T17:20:06.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016300", + "Timestamp": "2024-05-16T12:17:43.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c1.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-15T17:20:06.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157200", + "Timestamp": "2024-05-16T12:17:42.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c1.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-15T17:20:05.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153500", + "Timestamp": "2024-05-16T12:17:42.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c1.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-15T17:20:05.000Z" + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-16T12:17:42.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c1.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-15T17:20:05.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.491700", + "Timestamp": "2024-05-16T12:17:42.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c1.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-15T17:20:05.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.486700", + "Timestamp": "2024-05-16T12:17:42.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c1.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.073000", - "Timestamp": "2019-10-15T17:18:12.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.361700", + "Timestamp": "2024-05-16T12:17:42.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c1.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.073000", - "Timestamp": "2019-10-15T17:18:12.000Z" + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.460700", + "Timestamp": "2024-05-16T12:17:42.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c1.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.073000", - "Timestamp": "2019-10-15T17:18:12.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.455700", + "Timestamp": "2024-05-16T12:17:42.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c1.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.113000", - "Timestamp": "2019-10-15T17:18:12.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.330700", + "Timestamp": "2024-05-16T12:17:42.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c1.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.113000", - "Timestamp": "2019-10-15T17:18:12.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.421800", + "Timestamp": "2024-05-16T12:17:42.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c1.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.113000", - "Timestamp": "2019-10-15T17:18:12.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.416800", + "Timestamp": "2024-05-16T12:17:42.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c1.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.013000", - "Timestamp": "2019-10-15T17:18:12.000Z" + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.291800", + "Timestamp": "2024-05-16T12:17:42.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c1.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.013000", - "Timestamp": "2019-10-15T17:18:12.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.263100", + "Timestamp": "2024-05-16T12:17:42.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c1.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.013000", - "Timestamp": "2019-10-15T17:18:12.000Z" + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.233100", + "Timestamp": "2024-05-16T12:17:42.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c1.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.073000", - "Timestamp": "2019-10-15T17:18:12.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133100", + "Timestamp": "2024-05-16T12:17:42.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c1.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.113000", - "Timestamp": "2019-10-15T17:18:12.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T12:17:41.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c1.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.013000", - "Timestamp": "2019-10-15T17:18:12.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-16T12:17:41.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.272500", - "Timestamp": "2019-10-15T17:17:08.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044600", + "Timestamp": "2024-05-16T12:17:41.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.242500", - "Timestamp": "2019-10-15T17:17:08.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.910300", + "Timestamp": "2024-05-16T12:17:41.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.142500", - "Timestamp": "2019-10-15T17:17:08.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.880300", + "Timestamp": "2024-05-16T12:17:41.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.338000", - "Timestamp": "2019-10-15T17:17:05.000Z" + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.780300", + "Timestamp": "2024-05-16T12:17:41.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.338000", - "Timestamp": "2019-10-15T17:17:05.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125000", + "Timestamp": "2024-05-16T12:17:41.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.338000", - "Timestamp": "2019-10-15T17:17:05.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121000", + "Timestamp": "2024-05-16T12:17:41.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.338000", - "Timestamp": "2019-10-15T17:17:05.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065000", + "Timestamp": "2024-05-16T12:17:41.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "d2.xlarge", + "InstanceType": "c5d.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.338000", - "Timestamp": "2019-10-15T17:17:05.000Z" + "SpotPrice": "1.045400", + "Timestamp": "2024-05-16T12:17:41.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.411400", + "Timestamp": "2024-05-16T12:17:40.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-15T17:16:55.000Z" + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.133600", + "Timestamp": "2024-05-16T12:17:40.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.133000", - "Timestamp": "2019-10-15T17:16:55.000Z" + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.103600", + "Timestamp": "2024-05-16T12:17:40.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.033000", - "Timestamp": "2019-10-15T17:16:55.000Z" + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.003600", + "Timestamp": "2024-05-16T12:17:40.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.128900", - "Timestamp": "2019-10-15T17:16:47.000Z" + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.528500", + "Timestamp": "2024-05-16T12:17:39.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.168900", - "Timestamp": "2019-10-15T17:16:47.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.303100", + "Timestamp": "2024-05-16T12:17:38.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.068900", - "Timestamp": "2019-10-15T17:16:47.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.298100", + "Timestamp": "2024-05-16T12:17:38.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.016100", - "Timestamp": "2019-10-15T17:16:38.000Z" + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.173100", + "Timestamp": "2024-05-16T12:17:38.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.016100", - "Timestamp": "2019-10-15T17:16:38.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134800", + "Timestamp": "2024-05-16T12:17:38.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.016100", - "Timestamp": "2019-10-15T17:16:38.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174800", + "Timestamp": "2024-05-16T12:17:38.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.016100", - "Timestamp": "2019-10-15T17:16:38.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074800", + "Timestamp": "2024-05-16T12:17:38.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.016100", - "Timestamp": "2019-10-15T17:16:38.000Z" + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.083500", + "Timestamp": "2024-05-16T12:17:37.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-15T17:15:17.000Z" + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.137000", + "Timestamp": "2024-05-16T12:17:37.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-15T17:15:17.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.152700", + "Timestamp": "2024-05-16T12:17:37.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-15T17:15:17.000Z" + "SpotPrice": "1.219700", + "Timestamp": "2024-05-16T12:17:37.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-15T17:15:17.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.189700", + "Timestamp": "2024-05-16T12:17:37.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "d2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.307000", - "Timestamp": "2019-10-15T17:15:17.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.089700", + "Timestamp": "2024-05-16T12:17:37.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.307000", - "Timestamp": "2019-10-15T17:15:17.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.131600", + "Timestamp": "2024-05-16T12:17:36.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.307000", - "Timestamp": "2019-10-15T17:15:17.000Z" + "SpotPrice": "1.126600", + "Timestamp": "2024-05-16T12:17:36.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.307000", - "Timestamp": "2019-10-15T17:15:17.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.001600", + "Timestamp": "2024-05-16T12:17:36.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.207000", - "Timestamp": "2019-10-15T17:15:17.000Z" + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.013500", + "Timestamp": "2024-05-16T12:17:36.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.207000", - "Timestamp": "2019-10-15T17:15:17.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.001900", + "Timestamp": "2024-05-16T12:17:35.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.996900", + "Timestamp": "2024-05-16T12:17:35.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.207000", - "Timestamp": "2019-10-15T17:15:17.000Z" + "SpotPrice": "1.871900", + "Timestamp": "2024-05-16T12:17:35.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.207000", - "Timestamp": "2019-10-15T17:15:17.000Z" + "InstanceType": "r5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.746300", + "Timestamp": "2024-05-16T12:17:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.metal-48xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.259300", - "Timestamp": "2019-10-15T17:15:17.000Z" + "SpotPrice": "4.310600", + "Timestamp": "2024-05-16T12:17:34.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.metal-48xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.229300", - "Timestamp": "2019-10-15T17:15:17.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.129300", - "Timestamp": "2019-10-15T17:15:17.000Z" + "SpotPrice": "4.305600", + "Timestamp": "2024-05-16T12:17:34.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.338000", - "Timestamp": "2019-10-15T17:15:05.000Z" + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.180600", + "Timestamp": "2024-05-16T12:17:34.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.338000", - "Timestamp": "2019-10-15T17:15:05.000Z" + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.068900", + "Timestamp": "2024-05-16T12:17:34.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.338000", - "Timestamp": "2019-10-15T17:15:05.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.486600", + "Timestamp": "2024-05-16T12:17:34.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.338000", - "Timestamp": "2019-10-15T17:15:05.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.481600", + "Timestamp": "2024-05-16T12:17:34.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.338000", - "Timestamp": "2019-10-15T17:15:05.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.356600", + "Timestamp": "2024-05-16T12:17:34.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.338000", - "Timestamp": "2019-10-15T17:15:05.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.2xlarge", + "InstanceType": "c6in.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.509300", - "Timestamp": "2019-10-15T17:15:03.000Z" + "SpotPrice": "0.283000", + "Timestamp": "2024-05-16T12:17:33.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.509300", - "Timestamp": "2019-10-15T17:15:03.000Z" + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.477300", + "Timestamp": "2024-05-16T12:17:33.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.509300", - "Timestamp": "2019-10-15T17:15:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.472300", + "Timestamp": "2024-05-16T12:17:33.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.509300", - "Timestamp": "2019-10-15T17:15:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.347300", + "Timestamp": "2024-05-16T12:17:33.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "t3.nano", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.006200", - "Timestamp": "2019-10-15T17:14:56.000Z" + "InstanceType": "p2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.354000", + "Timestamp": "2024-05-16T12:17:32.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3.nano", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.006200", - "Timestamp": "2019-10-15T17:14:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.320900", + "Timestamp": "2024-05-16T12:17:32.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3.nano", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.006200", - "Timestamp": "2019-10-15T17:14:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "p2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.324000", + "Timestamp": "2024-05-16T12:17:32.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t3.nano", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.006200", - "Timestamp": "2019-10-15T17:14:56.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3.nano", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.006200", - "Timestamp": "2019-10-15T17:14:56.000Z" + "InstanceType": "p2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.290900", + "Timestamp": "2024-05-16T12:17:32.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124400", - "Timestamp": "2019-10-15T17:14:28.000Z" + "InstanceType": "p2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.224000", + "Timestamp": "2024-05-16T12:17:32.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124400", - "Timestamp": "2019-10-15T17:14:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.190900", + "Timestamp": "2024-05-16T12:17:32.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124400", - "Timestamp": "2019-10-15T17:14:28.000Z" - }, - { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124400", - "Timestamp": "2019-10-15T17:14:28.000Z" + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.458200", + "Timestamp": "2024-05-16T12:17:32.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124400", - "Timestamp": "2019-10-15T17:14:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.453200", + "Timestamp": "2024-05-16T12:17:32.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124400", - "Timestamp": "2019-10-15T17:14:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.328200", + "Timestamp": "2024-05-16T12:17:32.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.835200", - "Timestamp": "2019-10-15T17:13:53.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.365800", + "Timestamp": "2024-05-16T12:17:31.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.835200", - "Timestamp": "2019-10-15T17:13:53.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.360800", + "Timestamp": "2024-05-16T12:17:31.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.835200", - "Timestamp": "2019-10-15T17:13:53.000Z" + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.235800", + "Timestamp": "2024-05-16T12:17:31.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.835200", - "Timestamp": "2019-10-15T17:13:53.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.872000", + "Timestamp": "2024-05-16T12:17:31.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.835200", - "Timestamp": "2019-10-15T17:13:53.000Z" + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.867000", + "Timestamp": "2024-05-16T12:17:31.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.509300", - "Timestamp": "2019-10-15T17:13:48.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.742000", + "Timestamp": "2024-05-16T12:17:31.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.509300", - "Timestamp": "2019-10-15T17:13:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.488700", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.509300", - "Timestamp": "2019-10-15T17:13:48.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.472600", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.509300", - "Timestamp": "2019-10-15T17:13:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.483700", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.674100", - "Timestamp": "2019-10-15T17:13:39.000Z" + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.467600", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.644100", - "Timestamp": "2019-10-15T17:13:39.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.358700", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.544100", - "Timestamp": "2019-10-15T17:13:39.000Z" + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.342600", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.272500", - "Timestamp": "2019-10-15T17:13:08.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297000", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.272500", - "Timestamp": "2019-10-15T17:13:08.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267000", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.272500", - "Timestamp": "2019-10-15T17:13:08.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167000", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.272500", - "Timestamp": "2019-10-15T17:13:08.000Z" + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.276200", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.242500", - "Timestamp": "2019-10-15T17:13:08.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.507000", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.242500", - "Timestamp": "2019-10-15T17:13:08.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.477000", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.242500", - "Timestamp": "2019-10-15T17:13:08.000Z" + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.377000", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.242500", - "Timestamp": "2019-10-15T17:13:08.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.142500", - "Timestamp": "2019-10-15T17:13:08.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102200", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045900", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.142500", - "Timestamp": "2019-10-15T17:13:08.000Z" + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.484000", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.142500", - "Timestamp": "2019-10-15T17:13:08.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.479000", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.142500", - "Timestamp": "2019-10-15T17:13:08.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.354000", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.757200", - "Timestamp": "2019-10-15T17:12:53.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.000300", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.757200", - "Timestamp": "2019-10-15T17:12:53.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.970300", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.757200", - "Timestamp": "2019-10-15T17:12:53.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.870300", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.757200", - "Timestamp": "2019-10-15T17:12:53.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.283000", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.757200", - "Timestamp": "2019-10-15T17:12:53.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.220400", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.727200", - "Timestamp": "2019-10-15T17:12:53.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.215400", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.727200", - "Timestamp": "2019-10-15T17:12:53.000Z" + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.090400", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.727200", - "Timestamp": "2019-10-15T17:12:53.000Z" + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.287900", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.727200", - "Timestamp": "2019-10-15T17:12:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.742900", + "Timestamp": "2024-05-16T12:17:29.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.727200", - "Timestamp": "2019-10-15T17:12:53.000Z" + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.525500", + "Timestamp": "2024-05-16T12:17:29.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.627200", - "Timestamp": "2019-10-15T17:12:53.000Z" - }, - { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.627200", - "Timestamp": "2019-10-15T17:12:53.000Z" + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.737900", + "Timestamp": "2024-05-16T12:17:29.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.627200", - "Timestamp": "2019-10-15T17:12:53.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.520500", + "Timestamp": "2024-05-16T12:17:29.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.627200", - "Timestamp": "2019-10-15T17:12:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.612900", + "Timestamp": "2024-05-16T12:17:29.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.627200", - "Timestamp": "2019-10-15T17:12:53.000Z" + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.395500", + "Timestamp": "2024-05-16T12:17:29.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.510500", - "Timestamp": "2019-10-15T17:12:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.615700", + "Timestamp": "2024-05-16T12:17:29.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.510500", - "Timestamp": "2019-10-15T17:12:25.000Z" + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.170800", + "Timestamp": "2024-05-16T12:17:28.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.510500", - "Timestamp": "2019-10-15T17:12:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.140800", + "Timestamp": "2024-05-16T12:17:28.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.510500", - "Timestamp": "2019-10-15T17:12:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.040800", + "Timestamp": "2024-05-16T12:17:28.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.510500", - "Timestamp": "2019-10-15T17:12:25.000Z" + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.901600", + "Timestamp": "2024-05-16T12:17:27.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-15T17:12:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.896600", + "Timestamp": "2024-05-16T12:17:27.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-15T17:12:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.771600", + "Timestamp": "2024-05-16T12:17:27.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-15T17:12:24.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.897200", + "Timestamp": "2024-05-16T12:17:27.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-15T17:12:24.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.642600", + "Timestamp": "2024-05-16T12:17:27.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-15T17:12:24.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.892200", + "Timestamp": "2024-05-16T12:17:27.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-15T17:12:24.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.637600", + "Timestamp": "2024-05-16T12:17:27.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "d2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.307000", - "Timestamp": "2019-10-15T17:12:24.000Z" + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.767200", + "Timestamp": "2024-05-16T12:17:27.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "d2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.307000", - "Timestamp": "2019-10-15T17:12:24.000Z" + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.512600", + "Timestamp": "2024-05-16T12:17:27.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.307000", - "Timestamp": "2019-10-15T17:12:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.600100", + "Timestamp": "2024-05-16T12:17:26.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "d2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.307000", - "Timestamp": "2019-10-15T17:12:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.595100", + "Timestamp": "2024-05-16T12:17:26.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.307000", - "Timestamp": "2019-10-15T17:12:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.470100", + "Timestamp": "2024-05-16T12:17:26.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.307000", - "Timestamp": "2019-10-15T17:12:24.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.634700", + "Timestamp": "2024-05-16T12:17:25.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.207000", - "Timestamp": "2019-10-15T17:12:24.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.629700", + "Timestamp": "2024-05-16T12:17:25.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.504700", + "Timestamp": "2024-05-16T12:17:25.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.207000", - "Timestamp": "2019-10-15T17:12:24.000Z" + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.480000", + "Timestamp": "2024-05-16T12:17:25.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.207000", - "Timestamp": "2019-10-15T17:12:24.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.450000", + "Timestamp": "2024-05-16T12:17:25.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.207000", - "Timestamp": "2019-10-15T17:12:24.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.350000", + "Timestamp": "2024-05-16T12:17:25.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.207000", - "Timestamp": "2019-10-15T17:12:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.826400", + "Timestamp": "2024-05-16T12:17:25.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.207000", - "Timestamp": "2019-10-15T17:12:24.000Z" + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.821400", + "Timestamp": "2024-05-16T12:17:25.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.503700", - "Timestamp": "2019-10-15T17:12:21.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.696400", + "Timestamp": "2024-05-16T12:17:25.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.503700", - "Timestamp": "2019-10-15T17:12:21.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.634700", + "Timestamp": "2024-05-16T12:17:25.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.503700", - "Timestamp": "2019-10-15T17:12:21.000Z" + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.604700", + "Timestamp": "2024-05-16T12:17:25.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.503700", - "Timestamp": "2019-10-15T17:12:21.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.504700", + "Timestamp": "2024-05-16T12:17:25.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.503700", - "Timestamp": "2019-10-15T17:12:21.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.644700", + "Timestamp": "2024-05-16T12:17:25.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.503700", - "Timestamp": "2019-10-15T17:12:21.000Z" + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.614700", + "Timestamp": "2024-05-16T12:17:25.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.032200", - "Timestamp": "2019-10-15T17:12:01.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.514700", + "Timestamp": "2024-05-16T12:17:25.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.032200", - "Timestamp": "2019-10-15T17:12:01.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163100", + "Timestamp": "2024-05-16T12:17:25.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.032200", - "Timestamp": "2019-10-15T17:12:01.000Z" + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.203100", + "Timestamp": "2024-05-16T12:17:25.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.032200", - "Timestamp": "2019-10-15T17:12:01.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103100", + "Timestamp": "2024-05-16T12:17:25.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.032200", - "Timestamp": "2019-10-15T17:12:01.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.177000", + "Timestamp": "2024-05-16T12:17:24.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.630400", - "Timestamp": "2019-10-15T17:11:41.000Z" + "InstanceType": "m5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173000", + "Timestamp": "2024-05-16T12:17:24.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.630400", - "Timestamp": "2019-10-15T17:11:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.117000", + "Timestamp": "2024-05-16T12:17:24.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.630400", - "Timestamp": "2019-10-15T17:11:41.000Z" + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.143900", + "Timestamp": "2024-05-16T12:17:24.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.630400", - "Timestamp": "2019-10-15T17:11:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.495000", + "Timestamp": "2024-05-16T12:17:21.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.600400", - "Timestamp": "2019-10-15T17:11:41.000Z" + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.490000", + "Timestamp": "2024-05-16T12:17:21.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.600400", - "Timestamp": "2019-10-15T17:11:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.365000", + "Timestamp": "2024-05-16T12:17:21.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.600400", - "Timestamp": "2019-10-15T17:11:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.290900", + "Timestamp": "2024-05-16T12:17:16.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.600400", - "Timestamp": "2019-10-15T17:11:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.821200", + "Timestamp": "2024-05-16T12:17:16.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.500400", - "Timestamp": "2019-10-15T17:11:41.000Z" + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.816200", + "Timestamp": "2024-05-16T12:17:16.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.500400", - "Timestamp": "2019-10-15T17:11:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.691200", + "Timestamp": "2024-05-16T12:17:16.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.500400", - "Timestamp": "2019-10-15T17:11:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121100", + "Timestamp": "2024-05-16T12:17:14.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.500400", - "Timestamp": "2019-10-15T17:11:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117100", + "Timestamp": "2024-05-16T12:17:14.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.868400", - "Timestamp": "2019-10-15T17:11:41.000Z" + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061100", + "Timestamp": "2024-05-16T12:17:14.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.868400", - "Timestamp": "2019-10-15T17:11:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.387400", + "Timestamp": "2024-05-16T12:17:13.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.868400", - "Timestamp": "2019-10-15T17:11:41.000Z" + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.382400", + "Timestamp": "2024-05-16T12:17:13.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.868400", - "Timestamp": "2019-10-15T17:11:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.257400", + "Timestamp": "2024-05-16T12:17:13.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124500", - "Timestamp": "2019-10-15T17:11:36.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.198200", + "Timestamp": "2024-05-16T12:04:00.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124500", - "Timestamp": "2019-10-15T17:11:36.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.238200", + "Timestamp": "2024-05-16T12:04:00.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124500", - "Timestamp": "2019-10-15T17:11:36.000Z" + "InstanceType": "r3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.138200", + "Timestamp": "2024-05-16T12:04:00.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124500", - "Timestamp": "2019-10-15T17:11:36.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.180700", + "Timestamp": "2024-05-16T12:04:00.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.124500", - "Timestamp": "2019-10-15T17:11:35.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177000", + "Timestamp": "2024-05-16T12:04:00.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.124500", - "Timestamp": "2019-10-15T17:11:35.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120700", + "Timestamp": "2024-05-16T12:04:00.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m2.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.metal", "ProductDescription": "Windows", - "SpotPrice": "0.124500", - "Timestamp": "2019-10-15T17:11:35.000Z" + "SpotPrice": "9.203200", + "Timestamp": "2024-05-16T12:03:59.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.124500", - "Timestamp": "2019-10-15T17:11:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.430600", + "Timestamp": "2024-05-16T12:03:57.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.084500", - "Timestamp": "2019-10-15T17:11:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.425600", + "Timestamp": "2024-05-16T12:03:57.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.084500", - "Timestamp": "2019-10-15T17:11:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.300600", + "Timestamp": "2024-05-16T12:03:57.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.084500", - "Timestamp": "2019-10-15T17:11:28.000Z" + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.253100", + "Timestamp": "2024-05-16T12:03:56.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.084500", - "Timestamp": "2019-10-15T17:11:28.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.363900", + "Timestamp": "2024-05-16T12:03:56.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.124500", - "Timestamp": "2019-10-15T17:11:28.000Z" + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.358900", + "Timestamp": "2024-05-16T12:03:56.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.233900", + "Timestamp": "2024-05-16T12:03:56.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.124500", - "Timestamp": "2019-10-15T17:11:28.000Z" + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.159700", + "Timestamp": "2024-05-16T12:03:54.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.124500", - "Timestamp": "2019-10-15T17:11:28.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.611700", + "Timestamp": "2024-05-16T12:03:53.000Z" + }, + { + "AvailabilityZone": "us-east-1e", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.230200", + "Timestamp": "2024-05-16T12:03:52.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.124500", - "Timestamp": "2019-10-15T17:11:28.000Z" + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.550900", + "Timestamp": "2024-05-16T12:03:51.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.024500", - "Timestamp": "2019-10-15T17:11:28.000Z" + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.177500", + "Timestamp": "2024-05-16T12:03:49.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.024500", - "Timestamp": "2019-10-15T17:11:28.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.024500", - "Timestamp": "2019-10-15T17:11:28.000Z" + "InstanceType": "gr6.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.730900", + "Timestamp": "2024-05-16T12:03:47.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.024500", - "Timestamp": "2019-10-15T17:11:28.000Z" + "InstanceType": "c7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115800", + "Timestamp": "2024-05-16T12:03:47.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.084500", - "Timestamp": "2019-10-15T17:11:28.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.084500", - "Timestamp": "2019-10-15T17:11:28.000Z" + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.494000", + "Timestamp": "2024-05-16T12:03:46.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.084500", - "Timestamp": "2019-10-15T17:11:28.000Z" + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.988200", + "Timestamp": "2024-05-16T12:03:46.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.124500", - "Timestamp": "2019-10-15T17:11:28.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.332100", + "Timestamp": "2024-05-16T12:03:46.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.124500", - "Timestamp": "2019-10-15T17:11:28.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.007700", + "Timestamp": "2024-05-16T12:03:46.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m2.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.124500", - "Timestamp": "2019-10-15T17:11:28.000Z" + "SpotPrice": "2.002700", + "Timestamp": "2024-05-16T12:03:46.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m2.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.024500", - "Timestamp": "2019-10-15T17:11:28.000Z" + "SpotPrice": "1.877700", + "Timestamp": "2024-05-16T12:03:46.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.024500", - "Timestamp": "2019-10-15T17:11:28.000Z" + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.181700", + "Timestamp": "2024-05-16T12:03:45.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.024500", - "Timestamp": "2019-10-15T17:11:28.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.299800", + "Timestamp": "2024-05-16T12:03:45.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-15T17:11:18.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.264500", + "Timestamp": "2024-05-16T12:03:44.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.589900", + "Timestamp": "2024-05-16T12:03:44.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-15T17:11:18.000Z" + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.731400", + "Timestamp": "2024-05-16T12:03:44.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-15T17:11:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.361200", + "Timestamp": "2024-05-16T12:03:44.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-15T17:11:18.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.726400", + "Timestamp": "2024-05-16T12:03:44.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-15T17:11:18.000Z" + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.356200", + "Timestamp": "2024-05-16T12:03:44.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-15T17:11:18.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.601400", + "Timestamp": "2024-05-16T12:03:44.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-15T17:11:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.231200", + "Timestamp": "2024-05-16T12:03:44.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-15T17:11:18.000Z" + "InstanceType": "r7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.308500", + "Timestamp": "2024-05-16T12:03:43.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-15T17:11:18.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.258100", + "Timestamp": "2024-05-16T12:03:43.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-15T17:11:18.000Z" + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.324900", + "Timestamp": "2024-05-16T12:03:43.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-15T17:11:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.319900", + "Timestamp": "2024-05-16T12:03:43.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-15T17:11:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.194900", + "Timestamp": "2024-05-16T12:03:43.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-15T17:11:18.000Z" + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.696300", + "Timestamp": "2024-05-16T12:03:42.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-15T17:11:18.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.503400", + "Timestamp": "2024-05-16T12:03:41.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-15T17:11:18.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.539100", + "Timestamp": "2024-05-16T12:03:41.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.121700", - "Timestamp": "2019-10-15T17:10:46.000Z" + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.058800", + "Timestamp": "2024-05-16T12:03:41.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.xlarge", + "InstanceType": "m5d.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.121700", - "Timestamp": "2019-10-15T17:10:46.000Z" + "SpotPrice": "1.060100", + "Timestamp": "2024-05-16T12:03:41.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.121700", - "Timestamp": "2019-10-15T17:10:46.000Z" + "SpotPrice": "1.100400", + "Timestamp": "2024-05-16T12:03:41.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.121700", - "Timestamp": "2019-10-15T17:10:46.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.030100", + "Timestamp": "2024-05-16T12:03:41.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.161700", - "Timestamp": "2019-10-15T17:10:46.000Z" + "SpotPrice": "1.070400", + "Timestamp": "2024-05-16T12:03:41.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.161700", - "Timestamp": "2019-10-15T17:10:46.000Z" + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.930100", + "Timestamp": "2024-05-16T12:03:41.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.970400", + "Timestamp": "2024-05-16T12:03:41.000Z" }, { "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.161700", - "Timestamp": "2019-10-15T17:10:46.000Z" + "InstanceType": "g3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.869800", + "Timestamp": "2024-05-16T12:03:40.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.417800", + "Timestamp": "2024-05-16T12:03:40.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.xlarge", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.899100", + "Timestamp": "2024-05-16T12:03:40.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.573200", + "Timestamp": "2024-05-16T12:03:40.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.161700", - "Timestamp": "2019-10-15T17:10:46.000Z" + "SpotPrice": "1.568200", + "Timestamp": "2024-05-16T12:03:40.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.xlarge", + "InstanceType": "r6gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.061700", - "Timestamp": "2019-10-15T17:10:46.000Z" + "SpotPrice": "1.443200", + "Timestamp": "2024-05-16T12:03:40.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.061700", - "Timestamp": "2019-10-15T17:10:46.000Z" + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.683400", + "Timestamp": "2024-05-16T12:03:39.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.061700", - "Timestamp": "2019-10-15T17:10:46.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.678400", + "Timestamp": "2024-05-16T12:03:39.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.061700", - "Timestamp": "2019-10-15T17:10:46.000Z" + "SpotPrice": "6.553400", + "Timestamp": "2024-05-16T12:03:39.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092400", - "Timestamp": "2019-10-15T17:10:08.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.825700", + "Timestamp": "2024-05-16T12:03:39.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092400", - "Timestamp": "2019-10-15T17:10:08.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.100800", + "Timestamp": "2024-05-16T12:03:38.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092400", - "Timestamp": "2019-10-15T17:10:08.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.708200", + "Timestamp": "2024-05-16T12:03:38.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092400", - "Timestamp": "2019-10-15T17:10:08.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.466600", + "Timestamp": "2024-05-16T12:03:37.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132400", - "Timestamp": "2019-10-15T17:10:08.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.436600", + "Timestamp": "2024-05-16T12:03:37.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132400", - "Timestamp": "2019-10-15T17:10:08.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.336600", + "Timestamp": "2024-05-16T12:03:37.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132400", - "Timestamp": "2019-10-15T17:10:08.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.309200", + "Timestamp": "2024-05-16T12:03:37.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132400", - "Timestamp": "2019-10-15T17:10:08.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.997700", + "Timestamp": "2024-05-16T12:03:37.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032400", - "Timestamp": "2019-10-15T17:10:08.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.992700", + "Timestamp": "2024-05-16T12:03:37.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032400", - "Timestamp": "2019-10-15T17:10:08.000Z" + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.867700", + "Timestamp": "2024-05-16T12:03:37.000Z" }, { "AvailabilityZone": "us-east-1e", - "InstanceType": "m4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032400", - "Timestamp": "2019-10-15T17:10:08.000Z" + "InstanceType": "m3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.422700", + "Timestamp": "2024-05-16T12:03:37.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032400", - "Timestamp": "2019-10-15T17:10:08.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "m3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.392700", + "Timestamp": "2024-05-16T12:03:37.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.061600", - "Timestamp": "2019-10-15T17:09:43.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.292700", + "Timestamp": "2024-05-16T12:03:37.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.061600", - "Timestamp": "2019-10-15T17:09:43.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.475500", + "Timestamp": "2024-05-16T12:03:37.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.061600", - "Timestamp": "2019-10-15T17:09:43.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.470500", + "Timestamp": "2024-05-16T12:03:37.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.061600", - "Timestamp": "2019-10-15T17:09:43.000Z" + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.345500", + "Timestamp": "2024-05-16T12:03:37.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.061600", - "Timestamp": "2019-10-15T17:09:43.000Z" + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.936300", + "Timestamp": "2024-05-16T12:03:35.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3.nano", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.101600", - "Timestamp": "2019-10-15T17:09:43.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "c3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.266000", + "Timestamp": "2024-05-16T12:03:35.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3.nano", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.101600", - "Timestamp": "2019-10-15T17:09:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.172500", + "Timestamp": "2024-05-16T12:03:35.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t3.nano", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.101600", - "Timestamp": "2019-10-15T17:09:43.000Z" + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.167500", + "Timestamp": "2024-05-16T12:03:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3.nano", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.101600", - "Timestamp": "2019-10-15T17:09:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.042500", + "Timestamp": "2024-05-16T12:03:35.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t3.nano", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.101600", - "Timestamp": "2019-10-15T17:09:43.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3.nano", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.001600", - "Timestamp": "2019-10-15T17:09:43.000Z" - }, - { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3.nano", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.001600", - "Timestamp": "2019-10-15T17:09:43.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3.nano", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.001600", - "Timestamp": "2019-10-15T17:09:43.000Z" + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.757100", + "Timestamp": "2024-05-16T12:03:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3.nano", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.001600", - "Timestamp": "2019-10-15T17:09:43.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.752100", + "Timestamp": "2024-05-16T12:03:35.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t3.nano", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.001600", - "Timestamp": "2019-10-15T17:09:43.000Z" + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.627100", + "Timestamp": "2024-05-16T12:03:35.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.319600", - "Timestamp": "2019-10-15T17:09:20.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.042300", + "Timestamp": "2024-05-16T12:03:33.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.319600", - "Timestamp": "2019-10-15T17:09:20.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.674700", + "Timestamp": "2024-05-16T12:03:33.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.319600", - "Timestamp": "2019-10-15T17:09:20.000Z" + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.649000", + "Timestamp": "2024-05-16T12:03:33.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.319600", - "Timestamp": "2019-10-15T17:09:20.000Z" + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.562700", + "Timestamp": "2024-05-16T12:03:33.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.319600", - "Timestamp": "2019-10-15T17:09:20.000Z" + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.082100", + "Timestamp": "2024-05-16T12:03:33.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.140800", - "Timestamp": "2019-10-15T17:08:16.000Z" + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.052100", + "Timestamp": "2024-05-16T12:03:33.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.180800", - "Timestamp": "2019-10-15T17:08:16.000Z" + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.952100", + "Timestamp": "2024-05-16T12:03:33.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.080800", - "Timestamp": "2019-10-15T17:08:16.000Z" + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.037100", + "Timestamp": "2024-05-16T12:03:32.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.195600", - "Timestamp": "2019-10-15T17:08:08.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.452200", + "Timestamp": "2024-05-16T12:03:32.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.195600", - "Timestamp": "2019-10-15T17:08:08.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.743200", + "Timestamp": "2024-05-16T12:03:32.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.195600", - "Timestamp": "2019-10-15T17:08:08.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.447200", + "Timestamp": "2024-05-16T12:03:32.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.235600", - "Timestamp": "2019-10-15T17:08:08.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.738200", + "Timestamp": "2024-05-16T12:03:32.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.235600", - "Timestamp": "2019-10-15T17:08:08.000Z" + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.322200", + "Timestamp": "2024-05-16T12:03:32.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.235600", - "Timestamp": "2019-10-15T17:08:08.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.613200", + "Timestamp": "2024-05-16T12:03:32.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T17:08:08.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148600", + "Timestamp": "2024-05-16T12:03:32.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T17:08:08.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144900", + "Timestamp": "2024-05-16T12:03:32.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T17:08:08.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088600", + "Timestamp": "2024-05-16T12:03:32.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "t3.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.012300", - "Timestamp": "2019-10-15T17:07:39.000Z" - }, - { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.012300", - "Timestamp": "2019-10-15T17:07:39.000Z" + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.441200", + "Timestamp": "2024-05-16T12:03:32.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.012300", - "Timestamp": "2019-10-15T17:07:39.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083200", + "Timestamp": "2024-05-16T12:03:32.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.012300", - "Timestamp": "2019-10-15T17:07:39.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.054200", + "Timestamp": "2024-05-16T12:03:32.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t3.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.012300", - "Timestamp": "2019-10-15T17:07:39.000Z" + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023200", + "Timestamp": "2024-05-16T12:03:32.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.063100", - "Timestamp": "2019-10-15T17:06:05.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.589400", + "Timestamp": "2024-05-16T12:03:32.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.063100", - "Timestamp": "2019-10-15T17:06:05.000Z" + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.584400", + "Timestamp": "2024-05-16T12:03:32.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.063100", - "Timestamp": "2019-10-15T17:06:05.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.459400", + "Timestamp": "2024-05-16T12:03:32.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.063100", - "Timestamp": "2019-10-15T17:06:05.000Z" + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.181000", + "Timestamp": "2024-05-16T12:03:31.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.063100", - "Timestamp": "2019-10-15T17:06:05.000Z" + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.259000", + "Timestamp": "2024-05-16T12:03:31.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "t3.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.103100", - "Timestamp": "2019-10-15T17:06:05.000Z" + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.000800", + "Timestamp": "2024-05-16T12:03:31.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.103100", - "Timestamp": "2019-10-15T17:06:05.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.995800", + "Timestamp": "2024-05-16T12:03:31.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.103100", - "Timestamp": "2019-10-15T17:06:05.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.870800", + "Timestamp": "2024-05-16T12:03:31.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.779200", + "Timestamp": "2024-05-16T12:03:30.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t3.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.103100", - "Timestamp": "2019-10-15T17:06:05.000Z" + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.387100", + "Timestamp": "2024-05-16T12:03:30.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.103100", - "Timestamp": "2019-10-15T17:06:05.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.774200", + "Timestamp": "2024-05-16T12:03:30.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.003100", - "Timestamp": "2019-10-15T17:06:05.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.382100", + "Timestamp": "2024-05-16T12:03:30.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.003100", - "Timestamp": "2019-10-15T17:06:05.000Z" + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.649200", + "Timestamp": "2024-05-16T12:03:30.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.257100", + "Timestamp": "2024-05-16T12:03:30.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.003100", - "Timestamp": "2019-10-15T17:06:05.000Z" + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.143800", + "Timestamp": "2024-05-16T12:03:30.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.003100", - "Timestamp": "2019-10-15T17:06:05.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.537300", + "Timestamp": "2024-05-16T12:03:28.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.003100", - "Timestamp": "2019-10-15T17:06:05.000Z" + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.022700", + "Timestamp": "2024-05-16T12:03:28.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.282900", - "Timestamp": "2019-10-15T16:51:53.000Z" + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.338900", + "Timestamp": "2024-05-16T12:03:27.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.385900", + "Timestamp": "2024-05-16T12:03:27.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.252900", - "Timestamp": "2019-10-15T16:51:53.000Z" + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.333900", + "Timestamp": "2024-05-16T12:03:27.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.380900", + "Timestamp": "2024-05-16T12:03:27.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.152900", - "Timestamp": "2019-10-15T16:51:53.000Z" + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.208900", + "Timestamp": "2024-05-16T12:03:27.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.985000", - "Timestamp": "2019-10-15T16:51:50.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.255900", + "Timestamp": "2024-05-16T12:03:27.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.955000", - "Timestamp": "2019-10-15T16:51:50.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.488600", + "Timestamp": "2024-05-16T12:03:27.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.855000", - "Timestamp": "2019-10-15T16:51:50.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.483600", + "Timestamp": "2024-05-16T12:03:27.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.604900", - "Timestamp": "2019-10-15T16:51:31.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.358600", + "Timestamp": "2024-05-16T12:03:27.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.574900", - "Timestamp": "2019-10-15T16:51:31.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.104800", + "Timestamp": "2024-05-16T12:03:27.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.474900", - "Timestamp": "2019-10-15T16:51:31.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.099800", + "Timestamp": "2024-05-16T12:03:27.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.128000", - "Timestamp": "2019-10-15T16:51:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.974800", + "Timestamp": "2024-05-16T12:03:27.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.168000", - "Timestamp": "2019-10-15T16:51:19.000Z" + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.801600", + "Timestamp": "2024-05-16T12:03:27.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.068000", - "Timestamp": "2019-10-15T16:51:19.000Z" + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.796600", + "Timestamp": "2024-05-16T12:03:27.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.309000", - "Timestamp": "2019-10-15T16:43:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.671600", + "Timestamp": "2024-05-16T12:03:27.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.279000", - "Timestamp": "2019-10-15T16:43:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.352700", + "Timestamp": "2024-05-16T12:03:27.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.179000", - "Timestamp": "2019-10-15T16:43:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.347700", + "Timestamp": "2024-05-16T12:03:27.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.709700", - "Timestamp": "2019-10-15T16:34:51.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.222700", + "Timestamp": "2024-05-16T12:03:27.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.679700", - "Timestamp": "2019-10-15T16:34:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "15.622300", + "Timestamp": "2024-05-16T12:03:27.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.579700", - "Timestamp": "2019-10-15T16:34:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.708800", + "Timestamp": "2024-05-16T12:03:26.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.048300", - "Timestamp": "2019-10-15T16:27:18.000Z" + "InstanceType": "g5g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.703800", + "Timestamp": "2024-05-16T12:03:26.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.173600", - "Timestamp": "2019-10-15T16:26:28.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.578800", + "Timestamp": "2024-05-16T12:03:26.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "p3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.143600", - "Timestamp": "2019-10-15T16:26:28.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.503800", + "Timestamp": "2024-05-16T12:03:26.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.043600", - "Timestamp": "2019-10-15T16:26:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.218000", + "Timestamp": "2024-05-16T12:03:26.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.102300", - "Timestamp": "2019-10-15T16:26:06.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.213000", + "Timestamp": "2024-05-16T12:03:26.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.142300", - "Timestamp": "2019-10-15T16:26:06.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.088000", + "Timestamp": "2024-05-16T12:03:26.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.042300", - "Timestamp": "2019-10-15T16:26:06.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.256600", + "Timestamp": "2024-05-16T12:03:26.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.402100", - "Timestamp": "2019-10-15T16:19:32.000Z" + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.251600", + "Timestamp": "2024-05-16T12:03:26.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.372100", - "Timestamp": "2019-10-15T16:19:32.000Z" + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.126600", + "Timestamp": "2024-05-16T12:03:26.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.272100", - "Timestamp": "2019-10-15T16:19:32.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "p2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.527800", + "Timestamp": "2024-05-16T12:03:25.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "4.450000", - "Timestamp": "2019-10-15T16:12:21.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.805800", + "Timestamp": "2024-05-16T12:03:25.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "4.450000", - "Timestamp": "2019-10-15T16:12:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129700", + "Timestamp": "2024-05-16T12:03:25.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "4.450000", - "Timestamp": "2019-10-15T16:12:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125700", + "Timestamp": "2024-05-16T12:03:25.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "4.450000", - "Timestamp": "2019-10-15T16:12:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069700", + "Timestamp": "2024-05-16T12:03:25.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "p2.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "4.420000", - "Timestamp": "2019-10-15T16:12:21.000Z" + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.024900", + "Timestamp": "2024-05-16T12:03:24.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "p2.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "4.420000", - "Timestamp": "2019-10-15T16:12:21.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.161200", + "Timestamp": "2024-05-16T12:03:24.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "p2.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "4.420000", - "Timestamp": "2019-10-15T16:12:21.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.156200", + "Timestamp": "2024-05-16T12:03:24.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "p2.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "4.420000", - "Timestamp": "2019-10-15T16:12:21.000Z" + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.031200", + "Timestamp": "2024-05-16T12:03:24.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "4.320000", - "Timestamp": "2019-10-15T16:12:21.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.992900", + "Timestamp": "2024-05-16T12:03:24.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "4.320000", - "Timestamp": "2019-10-15T16:12:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.392400", + "Timestamp": "2024-05-16T12:03:23.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "4.320000", - "Timestamp": "2019-10-15T16:12:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.030700", + "Timestamp": "2024-05-16T12:03:23.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "4.320000", - "Timestamp": "2019-10-15T16:12:21.000Z" + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.974700", + "Timestamp": "2024-05-16T12:03:23.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.477900", - "Timestamp": "2019-10-15T16:12:12.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.969700", + "Timestamp": "2024-05-16T12:03:23.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.477900", - "Timestamp": "2019-10-15T16:12:12.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.844700", + "Timestamp": "2024-05-16T12:03:23.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.506200", + "Timestamp": "2024-05-16T12:03:22.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.477900", - "Timestamp": "2019-10-15T16:12:12.000Z" + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.540400", + "Timestamp": "2024-05-16T12:03:22.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.477900", - "Timestamp": "2019-10-15T16:12:12.000Z" + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.488300", + "Timestamp": "2024-05-16T12:03:22.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.477900", - "Timestamp": "2019-10-15T16:12:12.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.483300", + "Timestamp": "2024-05-16T12:03:22.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.954000", - "Timestamp": "2019-10-15T16:12:12.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.358300", + "Timestamp": "2024-05-16T12:03:22.000Z" }, { - "AvailabilityZone": "us-east-1f", + "AvailabilityZone": "us-east-1d", "InstanceType": "m5ad.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.924000", - "Timestamp": "2019-10-15T16:12:12.000Z" + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.602700", + "Timestamp": "2024-05-16T12:03:22.000Z" }, { - "AvailabilityZone": "us-east-1f", + "AvailabilityZone": "us-east-1d", "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.824000", - "Timestamp": "2019-10-15T16:12:12.000Z" + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.597700", + "Timestamp": "2024-05-16T12:03:22.000Z" }, { - "AvailabilityZone": "us-east-1f", + "AvailabilityZone": "us-east-1d", "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.560000", - "Timestamp": "2019-10-15T16:12:08.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "7.264000", - "Timestamp": "2019-10-15T16:12:06.000Z" + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.472700", + "Timestamp": "2024-05-16T12:03:22.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "7.264000", - "Timestamp": "2019-10-15T16:12:06.000Z" + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.194300", + "Timestamp": "2024-05-16T12:03:22.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "7.264000", - "Timestamp": "2019-10-15T16:12:06.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.164300", + "Timestamp": "2024-05-16T12:03:22.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "7.264000", - "Timestamp": "2019-10-15T16:12:06.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.064300", + "Timestamp": "2024-05-16T12:03:22.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "7.264000", - "Timestamp": "2019-10-15T16:12:06.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T12:03:21.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.295900", - "Timestamp": "2019-10-15T16:11:52.000Z" + "InstanceType": "m3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152800", + "Timestamp": "2024-05-16T12:03:21.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.295900", - "Timestamp": "2019-10-15T16:11:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052800", + "Timestamp": "2024-05-16T12:03:21.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.295900", - "Timestamp": "2019-10-15T16:11:52.000Z" + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.135300", + "Timestamp": "2024-05-16T12:03:21.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.295900", - "Timestamp": "2019-10-15T16:11:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079600", + "Timestamp": "2024-05-16T12:03:21.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.265900", - "Timestamp": "2019-10-15T16:11:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.050600", + "Timestamp": "2024-05-16T12:03:21.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.265900", - "Timestamp": "2019-10-15T16:11:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019600", + "Timestamp": "2024-05-16T12:03:21.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.265900", - "Timestamp": "2019-10-15T16:11:52.000Z" + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.064500", + "Timestamp": "2024-05-16T12:03:20.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.172300", + "Timestamp": "2024-05-16T12:03:19.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.747700", + "Timestamp": "2024-05-16T12:03:19.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.265900", - "Timestamp": "2019-10-15T16:11:52.000Z" + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.848800", + "Timestamp": "2024-05-16T12:03:19.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.304000", + "Timestamp": "2024-05-16T12:03:19.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.165900", - "Timestamp": "2019-10-15T16:11:52.000Z" + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.410900", + "Timestamp": "2024-05-16T12:03:19.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.165900", - "Timestamp": "2019-10-15T16:11:52.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.314900", + "Timestamp": "2024-05-16T12:03:19.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.165900", - "Timestamp": "2019-10-15T16:11:52.000Z" + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.309900", + "Timestamp": "2024-05-16T12:03:19.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.165900", - "Timestamp": "2019-10-15T16:11:52.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.184900", + "Timestamp": "2024-05-16T12:03:19.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.510500", - "Timestamp": "2019-10-15T16:10:55.000Z" + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115200", + "Timestamp": "2024-05-16T12:03:17.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.510500", - "Timestamp": "2019-10-15T16:10:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-16T12:03:17.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055200", + "Timestamp": "2024-05-16T12:03:17.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.510500", - "Timestamp": "2019-10-15T16:10:55.000Z" + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.910600", + "Timestamp": "2024-05-16T12:03:17.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.510500", - "Timestamp": "2019-10-15T16:10:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.624000", + "Timestamp": "2024-05-16T12:03:17.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.510500", - "Timestamp": "2019-10-15T16:10:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.619000", + "Timestamp": "2024-05-16T12:03:17.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.084000", - "Timestamp": "2019-10-15T16:10:45.000Z" + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.203500", + "Timestamp": "2024-05-16T12:03:17.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094000", - "Timestamp": "2019-10-15T16:10:32.000Z" + "InstanceType": "x2gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.199800", + "Timestamp": "2024-05-16T12:03:17.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134000", - "Timestamp": "2019-10-15T16:10:32.000Z" + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143500", + "Timestamp": "2024-05-16T12:03:17.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034000", - "Timestamp": "2019-10-15T16:10:32.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.489300", + "Timestamp": "2024-05-16T12:03:16.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.007400", - "Timestamp": "2019-10-15T16:10:11.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.781300", + "Timestamp": "2024-05-16T12:03:15.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.007400", - "Timestamp": "2019-10-15T16:10:11.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.808200", + "Timestamp": "2024-05-16T12:03:15.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.007400", - "Timestamp": "2019-10-15T16:10:11.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.803200", + "Timestamp": "2024-05-16T12:03:15.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.007400", - "Timestamp": "2019-10-15T16:10:11.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.678200", + "Timestamp": "2024-05-16T12:03:15.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.007400", - "Timestamp": "2019-10-15T16:10:11.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.406300", + "Timestamp": "2024-05-16T12:03:15.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.007400", - "Timestamp": "2019-10-15T16:10:11.000Z" + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.401300", + "Timestamp": "2024-05-16T12:03:15.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.276300", + "Timestamp": "2024-05-16T12:03:15.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.634500", + "Timestamp": "2024-05-16T12:03:15.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.535500", + "Timestamp": "2024-05-16T12:03:14.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T16:10:07.000Z" + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.135200", + "Timestamp": "2024-05-16T12:03:12.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.098700", - "Timestamp": "2019-10-15T16:09:52.000Z" + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.071000", + "Timestamp": "2024-05-16T12:03:12.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m1.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.138700", - "Timestamp": "2019-10-15T16:09:52.000Z" + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.066000", + "Timestamp": "2024-05-16T12:03:12.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m1.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.038700", - "Timestamp": "2019-10-15T16:09:52.000Z" + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.941000", + "Timestamp": "2024-05-16T12:03:12.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.415000", - "Timestamp": "2019-10-15T16:01:52.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.214400", + "Timestamp": "2024-05-16T12:03:12.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.385000", - "Timestamp": "2019-10-15T16:01:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.269900", + "Timestamp": "2024-05-16T12:03:12.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.285000", - "Timestamp": "2019-10-15T16:01:52.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.775700", + "Timestamp": "2024-05-16T12:03:11.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.336900", - "Timestamp": "2019-10-15T16:01:02.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.510600", + "Timestamp": "2024-05-16T12:03:11.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "g2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.306900", - "Timestamp": "2019-10-15T16:01:02.000Z" + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.772900", + "Timestamp": "2024-05-16T12:03:11.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.206900", - "Timestamp": "2019-10-15T16:01:02.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.840000", - "Timestamp": "2019-10-15T15:45:09.000Z" + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.111200", + "Timestamp": "2024-05-16T12:03:11.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.810000", - "Timestamp": "2019-10-15T15:45:09.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.106200", + "Timestamp": "2024-05-16T12:03:11.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.710000", - "Timestamp": "2019-10-15T15:45:09.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.981200", + "Timestamp": "2024-05-16T12:03:11.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.299500", - "Timestamp": "2019-10-15T15:44:22.000Z" + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.230300", + "Timestamp": "2024-05-16T12:03:11.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.269500", - "Timestamp": "2019-10-15T15:44:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123000", + "Timestamp": "2024-05-16T12:03:10.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.169500", - "Timestamp": "2019-10-15T15:44:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119300", + "Timestamp": "2024-05-16T12:03:10.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.145000", - "Timestamp": "2019-10-15T15:44:17.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063000", + "Timestamp": "2024-05-16T12:03:10.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.185000", - "Timestamp": "2019-10-15T15:44:17.000Z" + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.520100", + "Timestamp": "2024-05-16T12:03:10.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.085000", - "Timestamp": "2019-10-15T15:44:17.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.655500", + "Timestamp": "2024-05-16T12:03:10.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-15T15:42:02.000Z" + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.229800", + "Timestamp": "2024-05-16T12:03:10.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-15T15:42:02.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.990300", + "Timestamp": "2024-05-16T12:03:10.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-15T15:42:02.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.112500", + "Timestamp": "2024-05-16T12:03:10.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-15T15:42:02.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.999700", + "Timestamp": "2024-05-16T12:03:09.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-15T15:42:02.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.969700", + "Timestamp": "2024-05-16T12:03:09.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.220800", - "Timestamp": "2019-10-15T15:41:24.000Z" + "InstanceType": "g6.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.869700", + "Timestamp": "2024-05-16T12:03:09.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.220800", - "Timestamp": "2019-10-15T15:41:24.000Z" + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.792500", + "Timestamp": "2024-05-16T12:03:09.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.220800", - "Timestamp": "2019-10-15T15:41:24.000Z" - }, - { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.220800", - "Timestamp": "2019-10-15T15:41:24.000Z" + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.945500", + "Timestamp": "2024-05-16T12:03:09.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.220800", - "Timestamp": "2019-10-15T15:41:24.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.940500", + "Timestamp": "2024-05-16T12:03:09.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.968000", - "Timestamp": "2019-10-15T15:41:24.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.815500", + "Timestamp": "2024-05-16T12:03:09.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.878800", - "Timestamp": "2019-10-15T15:38:33.000Z" + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.130100", + "Timestamp": "2024-05-16T12:03:08.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.626000", - "Timestamp": "2019-10-15T15:38:33.000Z" - }, - { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.848800", - "Timestamp": "2019-10-15T15:38:33.000Z" + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.247500", + "Timestamp": "2024-05-16T12:03:08.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.596000", - "Timestamp": "2019-10-15T15:38:33.000Z" - }, - { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.748800", - "Timestamp": "2019-10-15T15:38:33.000Z" + "InstanceType": "r7iz.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.243800", + "Timestamp": "2024-05-16T12:03:08.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.496000", - "Timestamp": "2019-10-15T15:38:33.000Z" + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.187500", + "Timestamp": "2024-05-16T12:03:08.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.115700", - "Timestamp": "2019-10-15T15:38:24.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.215400", + "Timestamp": "2024-05-16T12:03:08.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.155700", - "Timestamp": "2019-10-15T15:38:24.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.210400", + "Timestamp": "2024-05-16T12:03:08.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.055700", - "Timestamp": "2019-10-15T15:38:24.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.085400", + "Timestamp": "2024-05-16T12:03:08.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.500800", - "Timestamp": "2019-10-15T15:36:49.000Z" + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.824300", + "Timestamp": "2024-05-16T12:03:07.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.470800", - "Timestamp": "2019-10-15T15:36:49.000Z" + "InstanceType": "m5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.819300", + "Timestamp": "2024-05-16T12:03:07.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.370800", - "Timestamp": "2019-10-15T15:36:49.000Z" + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.694300", + "Timestamp": "2024-05-16T12:03:07.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-15T15:36:25.000Z" + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.670800", + "Timestamp": "2024-05-16T12:03:07.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095600", - "Timestamp": "2019-10-15T15:36:05.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.472200", + "Timestamp": "2024-05-16T12:03:07.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T15:36:05.000Z" + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.513400", + "Timestamp": "2024-05-16T12:03:07.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035600", - "Timestamp": "2019-10-15T15:36:05.000Z" + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.508400", + "Timestamp": "2024-05-16T12:03:07.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.102400", - "Timestamp": "2019-10-15T15:35:55.000Z" + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.383400", + "Timestamp": "2024-05-16T12:03:07.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.142400", - "Timestamp": "2019-10-15T15:35:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.506200", + "Timestamp": "2024-05-16T12:03:06.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.042400", - "Timestamp": "2019-10-15T15:35:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.476200", + "Timestamp": "2024-05-16T12:03:06.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.100000", - "Timestamp": "2019-10-15T15:27:57.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.376200", + "Timestamp": "2024-05-16T12:03:06.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.070000", - "Timestamp": "2019-10-15T15:27:57.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.175200", + "Timestamp": "2024-05-16T12:03:06.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.970000", - "Timestamp": "2019-10-15T15:27:57.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.171500", + "Timestamp": "2024-05-16T12:03:06.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.175400", - "Timestamp": "2019-10-15T15:27:47.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115200", + "Timestamp": "2024-05-16T12:03:06.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.215400", - "Timestamp": "2019-10-15T15:27:47.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.326200", + "Timestamp": "2024-05-16T12:03:06.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.115400", - "Timestamp": "2019-10-15T15:27:47.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.122000", - "Timestamp": "2019-10-15T15:26:41.000Z" + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151500", + "Timestamp": "2024-05-16T12:03:06.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.162000", - "Timestamp": "2019-10-15T15:26:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167700", + "Timestamp": "2024-05-16T12:03:06.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.062000", - "Timestamp": "2019-10-15T15:26:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147800", + "Timestamp": "2024-05-16T12:03:06.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095500", - "Timestamp": "2019-10-15T15:19:23.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164000", + "Timestamp": "2024-05-16T12:03:06.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135500", - "Timestamp": "2019-10-15T15:19:23.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091500", + "Timestamp": "2024-05-16T12:03:06.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035500", - "Timestamp": "2019-10-15T15:19:23.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T12:03:06.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094200", - "Timestamp": "2019-10-15T15:19:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.937200", + "Timestamp": "2024-05-16T12:03:05.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134200", - "Timestamp": "2019-10-15T15:19:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.921500", + "Timestamp": "2024-05-16T12:03:04.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034200", - "Timestamp": "2019-10-15T15:19:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.916500", + "Timestamp": "2024-05-16T12:03:04.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-15T15:13:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.791500", + "Timestamp": "2024-05-16T12:03:04.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-15T15:13:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149600", + "Timestamp": "2024-05-16T12:03:04.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-15T15:13:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145900", + "Timestamp": "2024-05-16T12:03:04.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-15T15:13:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089600", + "Timestamp": "2024-05-16T12:03:04.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-15T15:13:28.000Z" + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.539400", + "Timestamp": "2024-05-16T12:03:04.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-15T15:13:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.265500", + "Timestamp": "2024-05-16T12:03:03.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-15T15:13:28.000Z" + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.154700", + "Timestamp": "2024-05-16T12:03:03.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-15T15:13:28.000Z" + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.745400", + "Timestamp": "2024-05-16T12:03:03.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-15T15:13:28.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.084000", - "Timestamp": "2019-10-15T15:12:50.000Z" + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.799300", + "Timestamp": "2024-05-16T12:03:03.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.084000", - "Timestamp": "2019-10-15T15:12:50.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.572600", + "Timestamp": "2024-05-16T12:03:03.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.084000", - "Timestamp": "2019-10-15T15:12:50.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.567600", + "Timestamp": "2024-05-16T12:03:03.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.084000", - "Timestamp": "2019-10-15T15:12:50.000Z" + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.442600", + "Timestamp": "2024-05-16T12:03:03.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.084000", - "Timestamp": "2019-10-15T15:12:50.000Z" + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.198900", + "Timestamp": "2024-05-16T12:03:03.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-15T15:12:42.000Z" + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.286000", + "Timestamp": "2024-05-16T12:03:02.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-15T15:12:42.000Z" + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281000", + "Timestamp": "2024-05-16T12:03:02.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-15T15:12:42.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.840000", - "Timestamp": "2019-10-15T15:12:26.000Z" + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156000", + "Timestamp": "2024-05-16T12:03:02.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.840000", - "Timestamp": "2019-10-15T15:12:26.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.840000", - "Timestamp": "2019-10-15T15:12:26.000Z" + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.575600", + "Timestamp": "2024-05-16T12:03:02.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.840000", - "Timestamp": "2019-10-15T15:12:26.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.570600", + "Timestamp": "2024-05-16T12:03:02.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.810000", - "Timestamp": "2019-10-15T15:12:26.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.445600", + "Timestamp": "2024-05-16T12:03:02.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.810000", - "Timestamp": "2019-10-15T15:12:26.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314300", + "Timestamp": "2024-05-16T12:03:02.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.810000", - "Timestamp": "2019-10-15T15:12:26.000Z" + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.284300", + "Timestamp": "2024-05-16T12:03:02.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.810000", - "Timestamp": "2019-10-15T15:12:26.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184300", + "Timestamp": "2024-05-16T12:03:02.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.710000", - "Timestamp": "2019-10-15T15:12:26.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.716500", + "Timestamp": "2024-05-16T12:03:01.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.710000", - "Timestamp": "2019-10-15T15:12:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.542600", + "Timestamp": "2024-05-16T12:03:01.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.710000", - "Timestamp": "2019-10-15T15:12:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.537600", + "Timestamp": "2024-05-16T12:03:01.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.710000", - "Timestamp": "2019-10-15T15:12:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.412600", + "Timestamp": "2024-05-16T12:03:01.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.786000", - "Timestamp": "2019-10-15T15:11:51.000Z" + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.198300", + "Timestamp": "2024-05-16T12:03:01.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.786000", - "Timestamp": "2019-10-15T15:11:51.000Z" + "SpotPrice": "0.141200", + "Timestamp": "2024-05-16T12:03:01.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.786000", - "Timestamp": "2019-10-15T15:11:51.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137200", + "Timestamp": "2024-05-16T12:03:01.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.786000", - "Timestamp": "2019-10-15T15:11:51.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081200", + "Timestamp": "2024-05-16T12:03:01.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.786000", - "Timestamp": "2019-10-15T15:11:51.000Z" + "SpotPrice": "0.138500", + "Timestamp": "2024-05-16T12:03:01.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.756000", - "Timestamp": "2019-10-15T15:11:51.000Z" + "SpotPrice": "0.134500", + "Timestamp": "2024-05-16T12:03:01.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.756000", - "Timestamp": "2019-10-15T15:11:51.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078500", + "Timestamp": "2024-05-16T12:03:01.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "d2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.756000", - "Timestamp": "2019-10-15T15:11:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.178800", + "Timestamp": "2024-05-16T12:03:01.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.756000", - "Timestamp": "2019-10-15T15:11:51.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.138100", + "Timestamp": "2024-05-16T12:03:01.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.756000", - "Timestamp": "2019-10-15T15:11:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.168500", + "Timestamp": "2024-05-16T12:03:01.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.656000", - "Timestamp": "2019-10-15T15:11:51.000Z" + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.265900", + "Timestamp": "2024-05-16T12:03:00.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.656000", - "Timestamp": "2019-10-15T15:11:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.167600", + "Timestamp": "2024-05-16T12:03:00.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.656000", - "Timestamp": "2019-10-15T15:11:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.686400", + "Timestamp": "2024-05-16T12:02:59.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.656000", - "Timestamp": "2019-10-15T15:11:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.681400", + "Timestamp": "2024-05-16T12:02:59.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "d2.8xlarge", + "InstanceType": "r7iz.metal-16xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.656000", - "Timestamp": "2019-10-15T15:11:51.000Z" + "SpotPrice": "2.556400", + "Timestamp": "2024-05-16T12:02:59.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "d2.8xlarge", + "InstanceType": "r5b.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.334000", - "Timestamp": "2019-10-15T15:11:47.000Z" + "SpotPrice": "0.624900", + "Timestamp": "2024-05-16T12:02:59.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "d2.8xlarge", + "InstanceType": "r5b.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.334000", - "Timestamp": "2019-10-15T15:11:47.000Z" + "SpotPrice": "0.620300", + "Timestamp": "2024-05-16T12:02:59.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.334000", - "Timestamp": "2019-10-15T15:11:47.000Z" + "SpotPrice": "5.667900", + "Timestamp": "2024-05-16T12:02:58.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.334000", - "Timestamp": "2019-10-15T15:11:47.000Z" + "SpotPrice": "5.216300", + "Timestamp": "2024-05-16T12:02:58.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.334000", - "Timestamp": "2019-10-15T15:11:47.000Z" + "SpotPrice": "0.673200", + "Timestamp": "2024-05-16T12:02:58.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.126000", - "Timestamp": "2019-10-15T15:11:41.000Z" + "InstanceType": "i2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.797500", + "Timestamp": "2024-05-16T12:02:58.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.126000", - "Timestamp": "2019-10-15T15:11:41.000Z" + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.161000", + "Timestamp": "2024-05-16T12:02:58.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.130500", + "Timestamp": "2024-05-16T12:02:58.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.126000", - "Timestamp": "2019-10-15T15:11:41.000Z" + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.496800", + "Timestamp": "2024-05-16T12:02:57.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.491800", + "Timestamp": "2024-05-16T12:02:57.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.366800", + "Timestamp": "2024-05-16T12:02:57.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.126000", - "Timestamp": "2019-10-15T15:11:41.000Z" + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.134800", + "Timestamp": "2024-05-16T12:02:57.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.126000", - "Timestamp": "2019-10-15T15:11:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.003500", + "Timestamp": "2024-05-16T12:02:57.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.786000", - "Timestamp": "2019-10-15T15:11:41.000Z" + "InstanceType": "r7iz.large", + "ProductDescription": "Windows", + "SpotPrice": "0.161400", + "Timestamp": "2024-05-16T12:02:57.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165100", + "Timestamp": "2024-05-16T12:02:57.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161100", + "Timestamp": "2024-05-16T12:02:57.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105100", + "Timestamp": "2024-05-16T12:02:57.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.786000", - "Timestamp": "2019-10-15T15:11:41.000Z" + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.358500", + "Timestamp": "2024-05-16T12:02:57.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.786000", - "Timestamp": "2019-10-15T15:11:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.353500", + "Timestamp": "2024-05-16T12:02:57.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.786000", - "Timestamp": "2019-10-15T15:11:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.228500", + "Timestamp": "2024-05-16T12:02:57.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.786000", - "Timestamp": "2019-10-15T15:11:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.127400", + "Timestamp": "2024-05-16T12:02:57.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.786000", - "Timestamp": "2019-10-15T15:11:41.000Z" + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.833900", + "Timestamp": "2024-05-16T12:02:56.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.756000", - "Timestamp": "2019-10-15T15:11:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.391200", + "Timestamp": "2024-05-16T12:02:56.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "d2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.756000", - "Timestamp": "2019-10-15T15:11:41.000Z" + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.278700", + "Timestamp": "2024-05-16T12:02:56.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.756000", - "Timestamp": "2019-10-15T15:11:41.000Z" + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.185500", + "Timestamp": "2024-05-16T12:02:56.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.256300", + "Timestamp": "2024-05-16T12:02:56.000Z" }, { "AvailabilityZone": "us-east-1e", - "InstanceType": "d2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.756000", - "Timestamp": "2019-10-15T15:11:41.000Z" + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.476900", + "Timestamp": "2024-05-16T12:02:55.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.756000", - "Timestamp": "2019-10-15T15:11:41.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "g3s.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.472900", + "Timestamp": "2024-05-16T12:02:55.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.756000", - "Timestamp": "2019-10-15T15:11:41.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.416900", + "Timestamp": "2024-05-16T12:02:55.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.656000", - "Timestamp": "2019-10-15T15:11:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.536000", + "Timestamp": "2024-05-16T12:02:55.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.656000", - "Timestamp": "2019-10-15T15:11:41.000Z" + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115100", + "Timestamp": "2024-05-16T12:02:55.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.656000", - "Timestamp": "2019-10-15T15:11:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155100", + "Timestamp": "2024-05-16T12:02:55.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.656000", - "Timestamp": "2019-10-15T15:11:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055100", + "Timestamp": "2024-05-16T12:02:55.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.656000", - "Timestamp": "2019-10-15T15:11:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.057300", + "Timestamp": "2024-05-16T12:02:55.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.656000", - "Timestamp": "2019-10-15T15:11:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.052300", + "Timestamp": "2024-05-16T12:02:55.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.078000", - "Timestamp": "2019-10-15T15:11:38.000Z" + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.927300", + "Timestamp": "2024-05-16T12:02:55.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.078000", - "Timestamp": "2019-10-15T15:11:38.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.281100", + "Timestamp": "2024-05-16T12:02:55.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.078000", - "Timestamp": "2019-10-15T15:11:38.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.907000", + "Timestamp": "2024-05-16T12:02:55.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.078000", - "Timestamp": "2019-10-15T15:11:38.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.902000", + "Timestamp": "2024-05-16T12:02:55.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.777000", + "Timestamp": "2024-05-16T12:02:55.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "a1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094000", - "Timestamp": "2019-10-15T15:11:37.000Z" + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154500", + "Timestamp": "2024-05-16T12:02:55.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "a1.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134000", - "Timestamp": "2019-10-15T15:11:37.000Z" + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150500", + "Timestamp": "2024-05-16T12:02:55.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "a1.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034000", - "Timestamp": "2019-10-15T15:11:37.000Z" + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094500", + "Timestamp": "2024-05-16T12:02:55.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.334000", - "Timestamp": "2019-10-15T15:11:31.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.157700", + "Timestamp": "2024-05-16T12:02:55.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.334000", - "Timestamp": "2019-10-15T15:11:31.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.152700", + "Timestamp": "2024-05-16T12:02:55.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.027700", + "Timestamp": "2024-05-16T12:02:55.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.334000", - "Timestamp": "2019-10-15T15:11:31.000Z" + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.907000", + "Timestamp": "2024-05-16T12:02:55.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.334000", - "Timestamp": "2019-10-15T15:11:31.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.702100", + "Timestamp": "2024-05-16T12:02:55.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.334000", - "Timestamp": "2019-10-15T15:11:31.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.902000", + "Timestamp": "2024-05-16T12:02:55.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.334000", - "Timestamp": "2019-10-15T15:11:31.000Z" + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.697100", + "Timestamp": "2024-05-16T12:02:55.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.074300", - "Timestamp": "2019-10-15T15:11:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.777000", + "Timestamp": "2024-05-16T12:02:55.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.073900", - "Timestamp": "2019-10-15T15:11:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.572100", + "Timestamp": "2024-05-16T12:02:55.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.073900", - "Timestamp": "2019-10-15T15:11:19.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.451200", + "Timestamp": "2024-05-16T12:02:54.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.073900", - "Timestamp": "2019-10-15T15:11:19.000Z" + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.421200", + "Timestamp": "2024-05-16T12:02:54.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.073900", - "Timestamp": "2019-10-15T15:11:19.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.321200", + "Timestamp": "2024-05-16T12:02:54.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "t2.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.114300", - "Timestamp": "2019-10-15T15:11:19.000Z" + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.072900", + "Timestamp": "2024-05-16T12:02:54.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t2.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.113900", - "Timestamp": "2019-10-15T15:11:19.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.067900", + "Timestamp": "2024-05-16T12:02:54.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "t2.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.113900", - "Timestamp": "2019-10-15T15:11:19.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.942900", + "Timestamp": "2024-05-16T12:02:54.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t2.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.113900", - "Timestamp": "2019-10-15T15:11:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.699600", + "Timestamp": "2024-05-16T12:02:54.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t2.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.113900", - "Timestamp": "2019-10-15T15:11:19.000Z" + "InstanceType": "m7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.694600", + "Timestamp": "2024-05-16T12:02:54.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t2.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.014300", - "Timestamp": "2019-10-15T15:11:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.569600", + "Timestamp": "2024-05-16T12:02:54.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t2.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.013900", - "Timestamp": "2019-10-15T15:11:19.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.256500", + "Timestamp": "2024-05-16T12:02:53.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "t2.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.013900", - "Timestamp": "2019-10-15T15:11:19.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.251500", + "Timestamp": "2024-05-16T12:02:53.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t2.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.013900", - "Timestamp": "2019-10-15T15:11:19.000Z" + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.126500", + "Timestamp": "2024-05-16T12:02:53.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t2.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.013900", - "Timestamp": "2019-10-15T15:11:19.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.126500", + "Timestamp": "2024-05-16T12:02:53.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t2.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.031900", - "Timestamp": "2019-10-15T15:11:18.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.253400", + "Timestamp": "2024-05-16T12:02:53.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "t2.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.031900", - "Timestamp": "2019-10-15T15:11:18.000Z" + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.121500", + "Timestamp": "2024-05-16T12:02:53.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t2.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.031900", - "Timestamp": "2019-10-15T15:11:18.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.248400", + "Timestamp": "2024-05-16T12:02:53.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "t2.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.031900", - "Timestamp": "2019-10-15T15:11:18.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.996500", + "Timestamp": "2024-05-16T12:02:53.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t2.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.031900", - "Timestamp": "2019-10-15T15:11:18.000Z" + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.123400", + "Timestamp": "2024-05-16T12:02:53.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t2.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.031900", - "Timestamp": "2019-10-15T15:11:18.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.338500", + "Timestamp": "2024-05-16T12:02:53.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.944700", - "Timestamp": "2019-10-15T15:11:09.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.331800", + "Timestamp": "2024-05-16T12:02:53.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.944700", - "Timestamp": "2019-10-15T15:11:09.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.944700", - "Timestamp": "2019-10-15T15:11:09.000Z" + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.333500", + "Timestamp": "2024-05-16T12:02:53.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.944700", - "Timestamp": "2019-10-15T15:11:09.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.326800", + "Timestamp": "2024-05-16T12:02:53.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.944700", - "Timestamp": "2019-10-15T15:11:09.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.208500", + "Timestamp": "2024-05-16T12:02:53.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.944700", - "Timestamp": "2019-10-15T15:11:09.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.130700", - "Timestamp": "2019-10-15T15:11:09.000Z" + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.201800", + "Timestamp": "2024-05-16T12:02:53.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.130700", - "Timestamp": "2019-10-15T15:11:09.000Z" + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.608900", + "Timestamp": "2024-05-16T12:02:52.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.130700", - "Timestamp": "2019-10-15T15:11:09.000Z" + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.361000", + "Timestamp": "2024-05-16T12:02:52.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.130700", - "Timestamp": "2019-10-15T15:11:09.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.182100", + "Timestamp": "2024-05-16T12:02:51.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.130700", - "Timestamp": "2019-10-15T15:11:09.000Z" + "InstanceType": "m2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.222100", + "Timestamp": "2024-05-16T12:02:51.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.130700", - "Timestamp": "2019-10-15T15:11:09.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122100", + "Timestamp": "2024-05-16T12:02:51.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "x1.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.100700", - "Timestamp": "2019-10-15T15:11:09.000Z" + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.124400", + "Timestamp": "2024-05-16T12:02:51.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "x1.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.100700", - "Timestamp": "2019-10-15T15:11:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163000", + "Timestamp": "2024-05-16T12:02:51.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.100700", - "Timestamp": "2019-10-15T15:11:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159000", + "Timestamp": "2024-05-16T12:02:51.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "x1.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.100700", - "Timestamp": "2019-10-15T15:11:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T12:02:51.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "x1.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.100700", - "Timestamp": "2019-10-15T15:11:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.678400", + "Timestamp": "2024-05-16T12:02:51.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.100700", - "Timestamp": "2019-10-15T15:11:09.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.521600", + "Timestamp": "2024-05-16T12:02:51.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.000700", - "Timestamp": "2019-10-15T15:11:09.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.516600", + "Timestamp": "2024-05-16T12:02:51.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.000700", - "Timestamp": "2019-10-15T15:11:09.000Z" + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.391600", + "Timestamp": "2024-05-16T12:02:51.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.000700", - "Timestamp": "2019-10-15T15:11:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.584600", + "Timestamp": "2024-05-16T12:02:50.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.000700", - "Timestamp": "2019-10-15T15:11:09.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.475600", + "Timestamp": "2024-05-16T12:02:50.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.000700", - "Timestamp": "2019-10-15T15:11:09.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.470600", + "Timestamp": "2024-05-16T12:02:50.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.345600", + "Timestamp": "2024-05-16T12:02:50.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.000700", - "Timestamp": "2019-10-15T15:11:09.000Z" + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.216900", + "Timestamp": "2024-05-16T12:02:50.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.096200", - "Timestamp": "2019-10-15T15:11:08.000Z" + "InstanceType": "c3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117700", + "Timestamp": "2024-05-16T12:02:50.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.136200", - "Timestamp": "2019-10-15T15:11:08.000Z" + "InstanceType": "c3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157700", + "Timestamp": "2024-05-16T12:02:50.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.036200", - "Timestamp": "2019-10-15T15:11:08.000Z" + "InstanceType": "c3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057700", + "Timestamp": "2024-05-16T12:02:50.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.106800", - "Timestamp": "2019-10-15T15:10:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.268300", + "Timestamp": "2024-05-16T12:02:50.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.106800", - "Timestamp": "2019-10-15T15:10:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.263300", + "Timestamp": "2024-05-16T12:02:50.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.106800", - "Timestamp": "2019-10-15T15:10:56.000Z" + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.138300", + "Timestamp": "2024-05-16T12:02:50.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.106800", - "Timestamp": "2019-10-15T15:10:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.111700", + "Timestamp": "2024-05-16T12:02:49.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.106800", - "Timestamp": "2019-10-15T15:10:56.000Z" + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.893400", + "Timestamp": "2024-05-16T12:02:49.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.216000", - "Timestamp": "2019-10-15T15:10:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.888400", + "Timestamp": "2024-05-16T12:02:49.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.146800", - "Timestamp": "2019-10-15T15:10:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.763400", + "Timestamp": "2024-05-16T12:02:49.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.146800", - "Timestamp": "2019-10-15T15:10:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.446400", + "Timestamp": "2024-05-16T12:02:49.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.146800", - "Timestamp": "2019-10-15T15:10:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.772100", + "Timestamp": "2024-05-16T12:02:48.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.146800", - "Timestamp": "2019-10-15T15:10:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.767100", + "Timestamp": "2024-05-16T12:02:48.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.146800", - "Timestamp": "2019-10-15T15:10:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.642100", + "Timestamp": "2024-05-16T12:02:48.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.256000", - "Timestamp": "2019-10-15T15:10:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.361700", + "Timestamp": "2024-05-16T12:02:48.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.046800", - "Timestamp": "2019-10-15T15:10:56.000Z" + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.356700", + "Timestamp": "2024-05-16T12:02:48.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.046800", - "Timestamp": "2019-10-15T15:10:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.231700", + "Timestamp": "2024-05-16T12:02:48.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.046800", - "Timestamp": "2019-10-15T15:10:56.000Z" + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122400", + "Timestamp": "2024-05-16T12:02:48.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.046800", - "Timestamp": "2019-10-15T15:10:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144800", + "Timestamp": "2024-05-16T12:02:48.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.046800", - "Timestamp": "2019-10-15T15:10:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118400", + "Timestamp": "2024-05-16T12:02:48.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.156000", - "Timestamp": "2019-10-15T15:10:56.000Z" + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140800", + "Timestamp": "2024-05-16T12:02:48.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.138800", - "Timestamp": "2019-10-15T15:10:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062400", + "Timestamp": "2024-05-16T12:02:48.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.138800", - "Timestamp": "2019-10-15T15:10:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084800", + "Timestamp": "2024-05-16T12:02:48.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.138800", - "Timestamp": "2019-10-15T15:10:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.536300", + "Timestamp": "2024-05-16T12:02:47.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.138800", - "Timestamp": "2019-10-15T15:10:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.531300", + "Timestamp": "2024-05-16T12:02:47.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.138800", - "Timestamp": "2019-10-15T15:10:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.406300", + "Timestamp": "2024-05-16T12:02:47.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.248000", - "Timestamp": "2019-10-15T15:10:56.000Z" + "InstanceType": "m5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.146700", + "Timestamp": "2024-05-16T12:02:47.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.946200", - "Timestamp": "2019-10-15T15:10:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.527800", + "Timestamp": "2024-05-16T12:02:47.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.946200", - "Timestamp": "2019-10-15T15:10:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.485900", + "Timestamp": "2024-05-16T12:02:47.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.946200", - "Timestamp": "2019-10-15T15:10:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.828800", + "Timestamp": "2024-05-16T12:02:47.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.946200", - "Timestamp": "2019-10-15T15:10:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.823800", + "Timestamp": "2024-05-16T12:02:47.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.946200", - "Timestamp": "2019-10-15T15:10:54.000Z" + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.698800", + "Timestamp": "2024-05-16T12:02:47.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.916200", - "Timestamp": "2019-10-15T15:10:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.263500", + "Timestamp": "2024-05-16T12:02:47.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.916200", - "Timestamp": "2019-10-15T15:10:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.233500", + "Timestamp": "2024-05-16T12:02:47.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.916200", - "Timestamp": "2019-10-15T15:10:54.000Z" + "InstanceType": "g6.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133500", + "Timestamp": "2024-05-16T12:02:47.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.916200", - "Timestamp": "2019-10-15T15:10:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.600800", + "Timestamp": "2024-05-16T12:02:46.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.916200", - "Timestamp": "2019-10-15T15:10:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.522700", + "Timestamp": "2024-05-16T12:02:46.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.816200", - "Timestamp": "2019-10-15T15:10:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.639000", + "Timestamp": "2024-05-16T12:02:45.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.816200", - "Timestamp": "2019-10-15T15:10:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.634000", + "Timestamp": "2024-05-16T12:02:45.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.816200", - "Timestamp": "2019-10-15T15:10:54.000Z" + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.509000", + "Timestamp": "2024-05-16T12:02:45.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.816200", - "Timestamp": "2019-10-15T15:10:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.197900", + "Timestamp": "2024-05-16T12:02:45.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.816200", - "Timestamp": "2019-10-15T15:10:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.194200", + "Timestamp": "2024-05-16T12:02:45.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.134400", - "Timestamp": "2019-10-15T15:10:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137900", + "Timestamp": "2024-05-16T12:02:45.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.174400", - "Timestamp": "2019-10-15T15:10:47.000Z" + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.327400", + "Timestamp": "2024-05-16T12:02:45.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.074400", - "Timestamp": "2019-10-15T15:10:47.000Z" + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.322400", + "Timestamp": "2024-05-16T12:02:45.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.090800", - "Timestamp": "2019-10-15T15:10:40.000Z" + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.197400", + "Timestamp": "2024-05-16T12:02:45.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.090800", - "Timestamp": "2019-10-15T15:10:40.000Z" - }, + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.612900", + "Timestamp": "2024-05-16T12:02:45.000Z" + }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.090800", - "Timestamp": "2019-10-15T15:10:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.607900", + "Timestamp": "2024-05-16T12:02:45.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.090800", - "Timestamp": "2019-10-15T15:10:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.482900", + "Timestamp": "2024-05-16T12:02:45.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T15:10:40.000Z" + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.596300", + "Timestamp": "2024-05-16T12:02:44.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T15:10:40.000Z" + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.203200", + "Timestamp": "2024-05-16T12:02:44.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T15:10:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.199100", + "Timestamp": "2024-05-16T12:02:44.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T15:10:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.199200", + "Timestamp": "2024-05-16T12:02:44.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.030800", - "Timestamp": "2019-10-15T15:10:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.195100", + "Timestamp": "2024-05-16T12:02:44.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.030800", - "Timestamp": "2019-10-15T15:10:40.000Z" + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143200", + "Timestamp": "2024-05-16T12:02:44.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.030800", - "Timestamp": "2019-10-15T15:10:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139100", + "Timestamp": "2024-05-16T12:02:44.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.136900", + "Timestamp": "2024-05-16T12:02:43.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.030800", - "Timestamp": "2019-10-15T15:10:40.000Z" + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.918500", + "Timestamp": "2024-05-16T12:02:43.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.large", + "InstanceType": "r6i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090800", - "Timestamp": "2019-10-15T15:10:39.000Z" + "SpotPrice": "0.118600", + "Timestamp": "2024-05-16T12:02:43.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090800", - "Timestamp": "2019-10-15T15:10:39.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114900", + "Timestamp": "2024-05-16T12:02:43.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090800", - "Timestamp": "2019-10-15T15:10:39.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058600", + "Timestamp": "2024-05-16T12:02:43.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.537100", + "Timestamp": "2024-05-16T12:02:43.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090800", - "Timestamp": "2019-10-15T15:10:39.000Z" + "SpotPrice": "0.151100", + "Timestamp": "2024-05-16T12:02:43.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T15:10:39.000Z" + "SpotPrice": "0.147400", + "Timestamp": "2024-05-16T12:02:43.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T15:10:39.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091100", + "Timestamp": "2024-05-16T12:02:43.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T15:10:39.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.426400", + "Timestamp": "2024-05-16T12:02:43.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T15:10:39.000Z" + "SpotPrice": "0.421400", + "Timestamp": "2024-05-16T12:02:43.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.large", + "InstanceType": "c6gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030800", - "Timestamp": "2019-10-15T15:10:39.000Z" + "SpotPrice": "0.296400", + "Timestamp": "2024-05-16T12:02:43.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030800", - "Timestamp": "2019-10-15T15:10:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.477300", + "Timestamp": "2024-05-16T12:02:43.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030800", - "Timestamp": "2019-10-15T15:10:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.472300", + "Timestamp": "2024-05-16T12:02:43.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.large", + "InstanceType": "r5dn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030800", - "Timestamp": "2019-10-15T15:10:39.000Z" + "SpotPrice": "2.347300", + "Timestamp": "2024-05-16T12:02:43.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.156800", - "Timestamp": "2019-10-15T15:10:39.000Z" + "SpotPrice": "12.259900", + "Timestamp": "2024-05-16T12:02:43.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.156800", - "Timestamp": "2019-10-15T15:10:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.832000", + "Timestamp": "2024-05-16T12:02:43.000Z" }, { "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.156800", - "Timestamp": "2019-10-15T15:10:39.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.156800", - "Timestamp": "2019-10-15T15:10:39.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.156800", - "Timestamp": "2019-10-15T15:10:39.000Z" + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.924900", + "Timestamp": "2024-05-16T12:02:43.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.156800", - "Timestamp": "2019-10-15T15:10:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.802000", + "Timestamp": "2024-05-16T12:02:43.000Z" }, { "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.156800", - "Timestamp": "2019-10-15T15:10:39.000Z" + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.894900", + "Timestamp": "2024-05-16T12:02:43.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.156800", - "Timestamp": "2019-10-15T15:10:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.702000", + "Timestamp": "2024-05-16T12:02:43.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.024200", - "Timestamp": "2019-10-15T15:10:20.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.794900", + "Timestamp": "2024-05-16T12:02:43.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.024200", - "Timestamp": "2019-10-15T15:10:20.000Z" + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.199900", + "Timestamp": "2024-05-16T12:02:42.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.024200", - "Timestamp": "2019-10-15T15:10:20.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.239900", + "Timestamp": "2024-05-16T12:02:42.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.024200", - "Timestamp": "2019-10-15T15:10:20.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139900", + "Timestamp": "2024-05-16T12:02:42.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.024200", - "Timestamp": "2019-10-15T15:10:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.453600", + "Timestamp": "2024-05-16T12:02:42.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.674100", - "Timestamp": "2019-10-15T15:07:02.000Z" + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.448600", + "Timestamp": "2024-05-16T12:02:42.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.644100", - "Timestamp": "2019-10-15T15:07:02.000Z" + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.323600", + "Timestamp": "2024-05-16T12:02:42.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.544100", - "Timestamp": "2019-10-15T15:07:02.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T12:02:41.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.266000", - "Timestamp": "2019-10-15T15:03:30.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099800", + "Timestamp": "2024-05-16T12:02:41.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.236000", - "Timestamp": "2019-10-15T15:03:30.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043800", + "Timestamp": "2024-05-16T12:02:41.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.136000", - "Timestamp": "2019-10-15T15:03:30.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.118700", + "Timestamp": "2024-05-16T12:02:41.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T15:03:06.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.113700", + "Timestamp": "2024-05-16T12:02:41.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.295000", - "Timestamp": "2019-10-15T14:59:23.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.988700", + "Timestamp": "2024-05-16T12:02:41.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "h1.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.265000", - "Timestamp": "2019-10-15T14:59:23.000Z" + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076000", + "Timestamp": "2024-05-16T12:02:41.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.165000", - "Timestamp": "2019-10-15T14:59:23.000Z" + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.072300", + "Timestamp": "2024-05-16T12:02:41.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.533000", - "Timestamp": "2019-10-15T14:59:07.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016000", + "Timestamp": "2024-05-16T12:02:41.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.533000", - "Timestamp": "2019-10-15T14:59:07.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.525700", + "Timestamp": "2024-05-16T12:02:41.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.533000", - "Timestamp": "2019-10-15T14:59:07.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.520700", + "Timestamp": "2024-05-16T12:02:41.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.533000", - "Timestamp": "2019-10-15T14:59:07.000Z" + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.395700", + "Timestamp": "2024-05-16T12:02:41.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094000", - "Timestamp": "2019-10-15T14:47:30.000Z" + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.498100", + "Timestamp": "2024-05-16T12:02:41.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134000", - "Timestamp": "2019-10-15T14:47:30.000Z" + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.493100", + "Timestamp": "2024-05-16T12:02:41.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034000", - "Timestamp": "2019-10-15T14:47:30.000Z" + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.368100", + "Timestamp": "2024-05-16T12:02:41.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.048300", - "Timestamp": "2019-10-15T14:47:17.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.281500", + "Timestamp": "2024-05-16T12:02:37.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "a1.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.264300", - "Timestamp": "2019-10-15T14:46:53.000Z" + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.420300", + "Timestamp": "2024-05-16T12:02:32.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "a1.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.264300", - "Timestamp": "2019-10-15T14:46:53.000Z" + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.402200", + "Timestamp": "2024-05-16T12:02:32.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "a1.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.234300", - "Timestamp": "2019-10-15T14:46:53.000Z" + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.415300", + "Timestamp": "2024-05-16T12:02:32.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "a1.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.234300", - "Timestamp": "2019-10-15T14:46:53.000Z" + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.397200", + "Timestamp": "2024-05-16T12:02:32.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "a1.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-15T14:46:53.000Z" + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.290300", + "Timestamp": "2024-05-16T12:02:32.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "a1.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-15T14:46:53.000Z" + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.272200", + "Timestamp": "2024-05-16T12:02:32.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.326600", - "Timestamp": "2019-10-15T14:46:18.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m1.small", + "ProductDescription": "Windows", + "SpotPrice": "0.047700", + "Timestamp": "2024-05-16T12:02:21.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.296600", - "Timestamp": "2019-10-15T14:46:18.000Z" + "InstanceType": "m1.large", + "ProductDescription": "Windows", + "SpotPrice": "0.183000", + "Timestamp": "2024-05-16T11:48:41.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.196600", - "Timestamp": "2019-10-15T14:46:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.798900", + "Timestamp": "2024-05-16T11:48:41.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.128600", - "Timestamp": "2019-10-15T14:46:03.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.793900", + "Timestamp": "2024-05-16T11:48:41.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.168600", - "Timestamp": "2019-10-15T14:46:03.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.668900", + "Timestamp": "2024-05-16T11:48:41.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.068600", - "Timestamp": "2019-10-15T14:46:03.000Z" + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.496400", + "Timestamp": "2024-05-16T11:48:40.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252000", - "Timestamp": "2019-10-15T14:45:44.000Z" + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.867700", + "Timestamp": "2024-05-16T11:48:39.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-15T14:34:44.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.537100", + "Timestamp": "2024-05-16T11:48:39.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-15T14:34:44.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.953600", + "Timestamp": "2024-05-16T11:48:39.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-15T14:34:44.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.025900", + "Timestamp": "2024-05-16T11:48:39.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-15T14:34:44.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.020900", + "Timestamp": "2024-05-16T11:48:39.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.895900", + "Timestamp": "2024-05-16T11:48:39.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-15T14:34:44.000Z" + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.078100", + "Timestamp": "2024-05-16T11:48:37.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-15T14:34:44.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.067100", + "Timestamp": "2024-05-16T11:48:37.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-15T14:34:44.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.550100", + "Timestamp": "2024-05-16T11:48:37.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-15T14:34:44.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.545100", + "Timestamp": "2024-05-16T11:48:37.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-15T14:34:44.000Z" + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.420100", + "Timestamp": "2024-05-16T11:48:37.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-15T14:34:44.000Z" + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.069400", + "Timestamp": "2024-05-16T11:48:33.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-15T14:34:44.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-15T14:34:44.000Z" + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.775000", + "Timestamp": "2024-05-16T11:48:32.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.488100", - "Timestamp": "2019-10-15T14:29:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.770000", + "Timestamp": "2024-05-16T11:48:32.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.458100", - "Timestamp": "2019-10-15T14:29:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.645000", + "Timestamp": "2024-05-16T11:48:32.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.358100", - "Timestamp": "2019-10-15T14:29:34.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.972100", + "Timestamp": "2024-05-16T11:48:32.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.556000", - "Timestamp": "2019-10-15T14:29:30.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "p2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.488800", + "Timestamp": "2024-05-16T11:48:31.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.556000", - "Timestamp": "2019-10-15T14:29:30.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.528800", + "Timestamp": "2024-05-16T11:48:31.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.556000", - "Timestamp": "2019-10-15T14:29:30.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "p2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.428800", + "Timestamp": "2024-05-16T11:48:31.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.556000", - "Timestamp": "2019-10-15T14:29:30.000Z" + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.498900", + "Timestamp": "2024-05-16T11:48:30.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.556000", - "Timestamp": "2019-10-15T14:29:30.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.117400", + "Timestamp": "2024-05-16T11:48:29.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.840000", - "Timestamp": "2019-10-15T14:28:06.000Z" + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.087400", + "Timestamp": "2024-05-16T11:48:29.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.810000", - "Timestamp": "2019-10-15T14:28:06.000Z" + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.987400", + "Timestamp": "2024-05-16T11:48:29.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.710000", - "Timestamp": "2019-10-15T14:28:06.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.394400", + "Timestamp": "2024-05-16T11:48:29.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.762300", - "Timestamp": "2019-10-15T14:22:21.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.385000", + "Timestamp": "2024-05-16T11:48:29.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.732300", - "Timestamp": "2019-10-15T14:22:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.059500", + "Timestamp": "2024-05-16T11:48:28.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.632300", - "Timestamp": "2019-10-15T14:22:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.755400", + "Timestamp": "2024-05-16T11:48:28.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.063000", - "Timestamp": "2019-10-15T14:20:19.000Z" + "InstanceType": "g6.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.725400", + "Timestamp": "2024-05-16T11:48:28.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.032200", - "Timestamp": "2019-10-15T14:13:36.000Z" + "InstanceType": "g6.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.625400", + "Timestamp": "2024-05-16T11:48:28.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.032200", - "Timestamp": "2019-10-15T14:13:36.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.443700", + "Timestamp": "2024-05-16T11:48:27.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.032200", - "Timestamp": "2019-10-15T14:13:36.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.530500", + "Timestamp": "2024-05-16T11:48:27.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.525500", + "Timestamp": "2024-05-16T11:48:27.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.400500", + "Timestamp": "2024-05-16T11:48:27.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.032200", - "Timestamp": "2019-10-15T14:13:36.000Z" + "InstanceType": "p2.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.703400", + "Timestamp": "2024-05-16T11:48:27.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.032200", - "Timestamp": "2019-10-15T14:13:36.000Z" + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.132400", + "Timestamp": "2024-05-16T11:48:27.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.024200", - "Timestamp": "2019-10-15T14:13:28.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.340600", + "Timestamp": "2024-05-16T11:48:26.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.024200", - "Timestamp": "2019-10-15T14:13:28.000Z" + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.335600", + "Timestamp": "2024-05-16T11:48:26.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.024200", - "Timestamp": "2019-10-15T14:13:28.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.210600", + "Timestamp": "2024-05-16T11:48:26.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.024200", - "Timestamp": "2019-10-15T14:13:28.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.384500", + "Timestamp": "2024-05-16T11:48:26.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.024200", - "Timestamp": "2019-10-15T14:13:28.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.379500", + "Timestamp": "2024-05-16T11:48:26.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "f1.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.120000", - "Timestamp": "2019-10-15T14:12:49.000Z" + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.254500", + "Timestamp": "2024-05-16T11:48:26.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "f1.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.120000", - "Timestamp": "2019-10-15T14:12:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.498800", + "Timestamp": "2024-05-16T11:48:26.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "f1.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.120000", - "Timestamp": "2019-10-15T14:12:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.132300", + "Timestamp": "2024-05-16T11:48:26.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "f1.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.120000", - "Timestamp": "2019-10-15T14:12:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.211500", + "Timestamp": "2024-05-16T11:48:26.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.207800", + "Timestamp": "2024-05-16T11:48:26.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.151500", + "Timestamp": "2024-05-16T11:48:26.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "f1.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.430000", - "Timestamp": "2019-10-15T14:12:49.000Z" + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.706000", + "Timestamp": "2024-05-16T11:48:26.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "f1.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.090000", - "Timestamp": "2019-10-15T14:12:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077800", + "Timestamp": "2024-05-16T11:48:25.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "f1.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.090000", - "Timestamp": "2019-10-15T14:12:49.000Z" + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.048800", + "Timestamp": "2024-05-16T11:48:25.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "f1.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.090000", - "Timestamp": "2019-10-15T14:12:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017800", + "Timestamp": "2024-05-16T11:48:25.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "f1.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.090000", - "Timestamp": "2019-10-15T14:12:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.144000", + "Timestamp": "2024-05-16T11:48:25.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "f1.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.400000", - "Timestamp": "2019-10-15T14:12:49.000Z" + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.033200", + "Timestamp": "2024-05-16T11:48:25.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "f1.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.990000", - "Timestamp": "2019-10-15T14:12:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.006200", + "Timestamp": "2024-05-16T11:48:25.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "f1.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.990000", - "Timestamp": "2019-10-15T14:12:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.001200", + "Timestamp": "2024-05-16T11:48:25.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "f1.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.990000", - "Timestamp": "2019-10-15T14:12:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.876200", + "Timestamp": "2024-05-16T11:48:25.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "f1.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.990000", - "Timestamp": "2019-10-15T14:12:49.000Z" + "InstanceType": "p2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.559000", + "Timestamp": "2024-05-16T11:48:25.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "f1.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.300000", - "Timestamp": "2019-10-15T14:12:49.000Z" + "InstanceType": "p2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.550500", + "Timestamp": "2024-05-16T11:48:25.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-15T14:12:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163000", + "Timestamp": "2024-05-16T11:48:24.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-15T14:12:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.203000", + "Timestamp": "2024-05-16T11:48:24.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-15T14:12:39.000Z" + "InstanceType": "c3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T11:48:24.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.038600", + "Timestamp": "2024-05-16T11:48:24.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-15T14:12:39.000Z" + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.651200", + "Timestamp": "2024-05-16T11:48:23.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-15T14:12:39.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.381200", + "Timestamp": "2024-05-16T11:48:23.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-15T14:12:39.000Z" + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.131100", + "Timestamp": "2024-05-16T11:48:22.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-15T14:12:39.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.126100", + "Timestamp": "2024-05-16T11:48:22.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-15T14:12:39.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.001100", + "Timestamp": "2024-05-16T11:48:22.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-15T14:12:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.948700", + "Timestamp": "2024-05-16T11:48:21.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-15T14:12:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.174000", + "Timestamp": "2024-05-16T11:48:21.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-15T14:12:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.169000", + "Timestamp": "2024-05-16T11:48:21.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-15T14:12:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.044000", + "Timestamp": "2024-05-16T11:48:21.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-15T14:12:39.000Z" + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.135300", + "Timestamp": "2024-05-16T11:48:21.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-15T14:12:39.000Z" + "InstanceType": "x2iezn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.287500", + "Timestamp": "2024-05-16T11:48:20.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-15T14:12:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.282500", + "Timestamp": "2024-05-16T11:48:20.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.104500", - "Timestamp": "2019-10-15T14:12:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.157500", + "Timestamp": "2024-05-16T11:48:20.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.144500", - "Timestamp": "2019-10-15T14:12:28.000Z" + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.793500", + "Timestamp": "2024-05-16T11:48:19.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.044500", - "Timestamp": "2019-10-15T14:12:28.000Z" + "InstanceType": "r7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.788500", + "Timestamp": "2024-05-16T11:48:19.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.946200", - "Timestamp": "2019-10-15T14:12:09.000Z" - }, - { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.946200", - "Timestamp": "2019-10-15T14:12:09.000Z" + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.663500", + "Timestamp": "2024-05-16T11:48:19.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.946200", - "Timestamp": "2019-10-15T14:12:09.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.916200", - "Timestamp": "2019-10-15T14:12:09.000Z" + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.647700", + "Timestamp": "2024-05-16T11:48:19.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.916200", - "Timestamp": "2019-10-15T14:12:09.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.642700", + "Timestamp": "2024-05-16T11:48:19.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.916200", - "Timestamp": "2019-10-15T14:12:09.000Z" + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.517700", + "Timestamp": "2024-05-16T11:48:19.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.816200", - "Timestamp": "2019-10-15T14:12:09.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.533500", + "Timestamp": "2024-05-16T11:48:19.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.816200", - "Timestamp": "2019-10-15T14:12:09.000Z" + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.302100", + "Timestamp": "2024-05-16T11:48:19.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.816200", - "Timestamp": "2019-10-15T14:12:09.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.289200", + "Timestamp": "2024-05-16T11:48:19.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t2.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.008100", - "Timestamp": "2019-10-15T14:11:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.735600", + "Timestamp": "2024-05-16T11:48:19.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t2.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.008100", - "Timestamp": "2019-10-15T14:11:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.730600", + "Timestamp": "2024-05-16T11:48:19.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t2.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.008100", - "Timestamp": "2019-10-15T14:11:48.000Z" + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.605600", + "Timestamp": "2024-05-16T11:48:19.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "t2.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.008100", - "Timestamp": "2019-10-15T14:11:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.420500", + "Timestamp": "2024-05-16T11:48:18.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t2.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.008100", - "Timestamp": "2019-10-15T14:11:48.000Z" + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.773500", + "Timestamp": "2024-05-16T11:48:18.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t2.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.008100", - "Timestamp": "2019-10-15T14:11:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.322000", + "Timestamp": "2024-05-16T11:48:17.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.547200", - "Timestamp": "2019-10-15T14:11:37.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.397500", + "Timestamp": "2024-05-16T11:48:16.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.547200", - "Timestamp": "2019-10-15T14:11:37.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.198700", + "Timestamp": "2024-05-16T11:48:16.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.547200", - "Timestamp": "2019-10-15T14:11:37.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.238700", + "Timestamp": "2024-05-16T11:48:16.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.547200", - "Timestamp": "2019-10-15T14:11:37.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.138700", + "Timestamp": "2024-05-16T11:48:16.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.547200", - "Timestamp": "2019-10-15T14:11:37.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.356500", + "Timestamp": "2024-05-16T11:48:16.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.126300", - "Timestamp": "2019-10-15T14:11:30.000Z" - }, - { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.126300", - "Timestamp": "2019-10-15T14:11:30.000Z" + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.259800", + "Timestamp": "2024-05-16T11:48:16.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.126300", - "Timestamp": "2019-10-15T14:11:30.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.841700", + "Timestamp": "2024-05-16T11:48:16.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.126300", - "Timestamp": "2019-10-15T14:11:30.000Z" + "InstanceType": "c7gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112500", + "Timestamp": "2024-05-16T11:48:16.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.126300", - "Timestamp": "2019-10-15T14:11:30.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108800", + "Timestamp": "2024-05-16T11:48:16.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.469200", - "Timestamp": "2019-10-15T14:11:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052500", + "Timestamp": "2024-05-16T11:48:16.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.469200", - "Timestamp": "2019-10-15T14:11:25.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.469200", - "Timestamp": "2019-10-15T14:11:25.000Z" + "InstanceType": "h1.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.584200", + "Timestamp": "2024-05-16T11:48:16.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.469200", - "Timestamp": "2019-10-15T14:11:25.000Z" + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.560400", + "Timestamp": "2024-05-16T11:48:16.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.439200", - "Timestamp": "2019-10-15T14:11:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.555400", + "Timestamp": "2024-05-16T11:48:16.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.439200", - "Timestamp": "2019-10-15T14:11:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.430400", + "Timestamp": "2024-05-16T11:48:16.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.439200", - "Timestamp": "2019-10-15T14:11:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.895300", + "Timestamp": "2024-05-16T11:48:15.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.439200", - "Timestamp": "2019-10-15T14:11:25.000Z" + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.851600", + "Timestamp": "2024-05-16T11:48:15.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.339200", - "Timestamp": "2019-10-15T14:11:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.310100", + "Timestamp": "2024-05-16T11:48:15.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.339200", - "Timestamp": "2019-10-15T14:11:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116800", + "Timestamp": "2024-05-16T11:48:14.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.339200", - "Timestamp": "2019-10-15T14:11:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113100", + "Timestamp": "2024-05-16T11:48:14.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.339200", - "Timestamp": "2019-10-15T14:11:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056800", + "Timestamp": "2024-05-16T11:48:14.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "a1.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.068400", - "Timestamp": "2019-10-15T14:11:25.000Z" + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.068000", + "Timestamp": "2024-05-16T11:48:13.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "a1.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.068400", - "Timestamp": "2019-10-15T14:11:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.071400", + "Timestamp": "2024-05-16T11:48:13.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "a1.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.068400", - "Timestamp": "2019-10-15T14:11:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.293600", + "Timestamp": "2024-05-16T11:48:13.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "a1.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.108400", - "Timestamp": "2019-10-15T14:11:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.481900", + "Timestamp": "2024-05-16T11:48:13.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "a1.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.108400", - "Timestamp": "2019-10-15T14:11:25.000Z" + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.288600", + "Timestamp": "2024-05-16T11:48:13.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "a1.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.108400", - "Timestamp": "2019-10-15T14:11:25.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "a1.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.008400", - "Timestamp": "2019-10-15T14:11:25.000Z" + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.476900", + "Timestamp": "2024-05-16T11:48:13.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "a1.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.008400", - "Timestamp": "2019-10-15T14:11:25.000Z" + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.163600", + "Timestamp": "2024-05-16T11:48:13.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "a1.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.008400", - "Timestamp": "2019-10-15T14:11:25.000Z" + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.351900", + "Timestamp": "2024-05-16T11:48:13.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.777700", - "Timestamp": "2019-10-15T14:11:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.937900", + "Timestamp": "2024-05-16T11:48:12.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.777700", - "Timestamp": "2019-10-15T14:11:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.932900", + "Timestamp": "2024-05-16T11:48:12.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.10xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.747700", - "Timestamp": "2019-10-15T14:11:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.807900", + "Timestamp": "2024-05-16T11:48:12.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m4.10xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.747700", - "Timestamp": "2019-10-15T14:11:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.505500", + "Timestamp": "2024-05-16T11:48:11.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.647700", - "Timestamp": "2019-10-15T14:11:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.500500", + "Timestamp": "2024-05-16T11:48:11.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.647700", - "Timestamp": "2019-10-15T14:11:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.375500", + "Timestamp": "2024-05-16T11:48:11.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.090800", - "Timestamp": "2019-10-15T14:11:12.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.880400", + "Timestamp": "2024-05-16T11:48:11.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.090800", - "Timestamp": "2019-10-15T14:11:12.000Z" + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.425100", + "Timestamp": "2024-05-16T11:48:11.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.090800", - "Timestamp": "2019-10-15T14:11:12.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.420100", + "Timestamp": "2024-05-16T11:48:11.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.091500", - "Timestamp": "2019-10-15T14:11:12.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.295100", + "Timestamp": "2024-05-16T11:48:11.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.093800", - "Timestamp": "2019-10-15T14:11:12.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T14:11:12.000Z" + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.972700", + "Timestamp": "2024-05-16T11:48:10.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T14:11:12.000Z" - }, - { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T14:11:12.000Z" + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.977900", + "Timestamp": "2024-05-16T11:48:09.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.131500", - "Timestamp": "2019-10-15T14:11:12.000Z" + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.379600", + "Timestamp": "2024-05-16T11:48:09.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.133800", - "Timestamp": "2019-10-15T14:11:12.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.163000", + "Timestamp": "2024-05-16T11:48:09.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.030800", - "Timestamp": "2019-10-15T14:11:12.000Z" + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.341800", + "Timestamp": "2024-05-16T11:48:08.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.030800", - "Timestamp": "2019-10-15T14:11:12.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.638300", + "Timestamp": "2024-05-16T11:48:08.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.030800", - "Timestamp": "2019-10-15T14:11:12.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.633300", + "Timestamp": "2024-05-16T11:48:08.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.031500", - "Timestamp": "2019-10-15T14:11:12.000Z" + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.508300", + "Timestamp": "2024-05-16T11:48:08.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.033800", - "Timestamp": "2019-10-15T14:11:12.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.294400", + "Timestamp": "2024-05-16T11:48:07.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.886800", - "Timestamp": "2019-10-15T14:11:12.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.287500", + "Timestamp": "2024-05-16T11:48:07.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.886800", - "Timestamp": "2019-10-15T14:11:12.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "15.249300", + "Timestamp": "2024-05-16T11:48:07.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.886800", - "Timestamp": "2019-10-15T14:11:12.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.244700", + "Timestamp": "2024-05-16T11:48:06.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.886800", - "Timestamp": "2019-10-15T14:11:12.000Z" + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.239700", + "Timestamp": "2024-05-16T11:48:06.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.114700", + "Timestamp": "2024-05-16T11:48:06.000Z" + }, + { + "AvailabilityZone": "us-east-1e", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.002400", + "Timestamp": "2024-05-16T11:48:06.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.886800", - "Timestamp": "2019-10-15T14:11:12.000Z" + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.123600", + "Timestamp": "2024-05-16T11:48:06.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.487700", - "Timestamp": "2019-10-15T14:11:09.000Z" + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.829700", + "Timestamp": "2024-05-16T11:48:05.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.487700", - "Timestamp": "2019-10-15T14:11:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.824700", + "Timestamp": "2024-05-16T11:48:05.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.487700", - "Timestamp": "2019-10-15T14:11:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.699700", + "Timestamp": "2024-05-16T11:48:05.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.487700", - "Timestamp": "2019-10-15T14:11:09.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.427100", + "Timestamp": "2024-05-16T11:48:05.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.487700", - "Timestamp": "2019-10-15T14:11:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.200500", + "Timestamp": "2024-05-16T11:48:04.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.487700", - "Timestamp": "2019-10-15T14:11:09.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.125300", + "Timestamp": "2024-05-16T11:48:04.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.122800", - "Timestamp": "2019-10-15T14:11:09.000Z" + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.195500", + "Timestamp": "2024-05-16T11:48:04.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.122800", - "Timestamp": "2019-10-15T14:11:09.000Z" + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.120300", + "Timestamp": "2024-05-16T11:48:04.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.122800", - "Timestamp": "2019-10-15T14:11:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.070500", + "Timestamp": "2024-05-16T11:48:04.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.122800", - "Timestamp": "2019-10-15T14:11:09.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.995300", + "Timestamp": "2024-05-16T11:48:04.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.122800", - "Timestamp": "2019-10-15T14:11:09.000Z" + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.428000", + "Timestamp": "2024-05-16T11:48:04.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.122800", - "Timestamp": "2019-10-15T14:11:09.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.464900", + "Timestamp": "2024-05-16T11:48:04.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.464800", - "Timestamp": "2019-10-15T14:11:02.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.938200", + "Timestamp": "2024-05-16T11:48:04.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.464800", - "Timestamp": "2019-10-15T14:11:02.000Z" + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.933200", + "Timestamp": "2024-05-16T11:48:04.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.808200", + "Timestamp": "2024-05-16T11:48:04.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.464800", - "Timestamp": "2019-10-15T14:11:02.000Z" + "InstanceType": "h1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.747300", + "Timestamp": "2024-05-16T11:48:04.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.464800", - "Timestamp": "2019-10-15T14:11:02.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "h1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.717300", + "Timestamp": "2024-05-16T11:48:04.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.464800", - "Timestamp": "2019-10-15T14:11:02.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.617300", + "Timestamp": "2024-05-16T11:48:04.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.434800", - "Timestamp": "2019-10-15T14:11:02.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.506400", + "Timestamp": "2024-05-16T11:48:04.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.434800", - "Timestamp": "2019-10-15T14:11:02.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.113700", + "Timestamp": "2024-05-16T11:48:03.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.434800", - "Timestamp": "2019-10-15T14:11:02.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.083700", + "Timestamp": "2024-05-16T11:48:03.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.434800", - "Timestamp": "2019-10-15T14:11:02.000Z" + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.983700", + "Timestamp": "2024-05-16T11:48:03.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.434800", - "Timestamp": "2019-10-15T14:11:02.000Z" + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.401700", + "Timestamp": "2024-05-16T11:48:03.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.334800", - "Timestamp": "2019-10-15T14:11:02.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.397700", + "Timestamp": "2024-05-16T11:48:03.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.334800", - "Timestamp": "2019-10-15T14:11:02.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.341700", + "Timestamp": "2024-05-16T11:48:03.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.334800", - "Timestamp": "2019-10-15T14:11:02.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.877000", + "Timestamp": "2024-05-16T11:48:03.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.334800", - "Timestamp": "2019-10-15T14:11:02.000Z" + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.806500", + "Timestamp": "2024-05-16T11:48:02.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.334800", - "Timestamp": "2019-10-15T14:11:02.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.801500", + "Timestamp": "2024-05-16T11:48:02.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.676500", + "Timestamp": "2024-05-16T11:48:02.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "t2.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.063500", - "Timestamp": "2019-10-15T14:11:00.000Z" + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "12.479600", + "Timestamp": "2024-05-16T11:48:02.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.777300", + "Timestamp": "2024-05-16T11:48:02.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.278400", + "Timestamp": "2024-05-16T11:48:01.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "t2.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.063500", - "Timestamp": "2019-10-15T14:11:00.000Z" + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.092900", + "Timestamp": "2024-05-16T11:48:01.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t2.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.063500", - "Timestamp": "2019-10-15T14:11:00.000Z" + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.579700", + "Timestamp": "2024-05-16T11:48:01.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "t2.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.063500", - "Timestamp": "2019-10-15T14:11:00.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.805400", + "Timestamp": "2024-05-16T11:48:01.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t2.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.063500", - "Timestamp": "2019-10-15T14:11:00.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.677700", + "Timestamp": "2024-05-16T11:48:01.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.672700", + "Timestamp": "2024-05-16T11:48:01.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.547700", + "Timestamp": "2024-05-16T11:48:01.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t2.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.063500", - "Timestamp": "2019-10-15T14:11:00.000Z" + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.318400", + "Timestamp": "2024-05-16T11:48:01.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t2.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.013500", - "Timestamp": "2019-10-15T14:11:00.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.117100", + "Timestamp": "2024-05-16T11:48:01.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "t2.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.013500", - "Timestamp": "2019-10-15T14:11:00.000Z" + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.055800", + "Timestamp": "2024-05-16T11:48:01.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t2.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.013500", - "Timestamp": "2019-10-15T14:11:00.000Z" + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.005800", + "Timestamp": "2024-05-16T11:48:00.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "t2.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.013500", - "Timestamp": "2019-10-15T14:11:00.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.723300", + "Timestamp": "2024-05-16T11:48:00.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t2.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.013500", - "Timestamp": "2019-10-15T14:11:00.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.292000", + "Timestamp": "2024-05-16T11:48:00.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t2.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.013500", - "Timestamp": "2019-10-15T14:11:00.000Z" + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.287000", + "Timestamp": "2024-05-16T11:48:00.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t2.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.003500", - "Timestamp": "2019-10-15T14:11:00.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.162000", + "Timestamp": "2024-05-16T11:48:00.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "t2.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.003500", - "Timestamp": "2019-10-15T14:11:00.000Z" + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.382600", + "Timestamp": "2024-05-16T11:47:59.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.521100", + "Timestamp": "2024-05-16T11:47:59.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t2.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.003500", - "Timestamp": "2019-10-15T14:11:00.000Z" + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.504000", + "Timestamp": "2024-05-16T11:47:59.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "t2.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.003500", - "Timestamp": "2019-10-15T14:11:00.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.389900", + "Timestamp": "2024-05-16T11:47:59.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t2.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.003500", - "Timestamp": "2019-10-15T14:11:00.000Z" + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.221200", + "Timestamp": "2024-05-16T11:47:59.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t2.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.003500", - "Timestamp": "2019-10-15T14:11:00.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.873300", + "Timestamp": "2024-05-16T11:47:59.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5ad.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.177900", - "Timestamp": "2019-10-15T14:10:54.000Z" + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.954800", + "Timestamp": "2024-05-16T11:47:59.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5ad.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.217900", - "Timestamp": "2019-10-15T14:10:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.319000", + "Timestamp": "2024-05-16T11:47:58.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5ad.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.117900", - "Timestamp": "2019-10-15T14:10:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.496300", + "Timestamp": "2024-05-16T11:47:57.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.491300", + "Timestamp": "2024-05-16T11:47:57.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.366300", + "Timestamp": "2024-05-16T11:47:57.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252000", - "Timestamp": "2019-10-15T14:09:55.000Z" + "InstanceType": "m7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T11:47:57.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252000", - "Timestamp": "2019-10-15T14:09:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-16T11:47:57.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252000", - "Timestamp": "2019-10-15T14:09:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048200", + "Timestamp": "2024-05-16T11:47:57.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252000", - "Timestamp": "2019-10-15T14:09:55.000Z" + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.476300", + "Timestamp": "2024-05-16T11:47:57.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252000", - "Timestamp": "2019-10-15T14:09:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.large", + "ProductDescription": "Windows", + "SpotPrice": "0.167800", + "Timestamp": "2024-05-16T11:47:57.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.266000", - "Timestamp": "2019-10-15T14:05:13.000Z" + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.525900", + "Timestamp": "2024-05-16T11:47:56.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.236000", - "Timestamp": "2019-10-15T14:05:13.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.755500", + "Timestamp": "2024-05-16T11:47:56.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.136000", - "Timestamp": "2019-10-15T14:05:13.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.774500", + "Timestamp": "2024-05-16T11:47:56.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.366900", - "Timestamp": "2019-10-15T14:04:08.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.769500", + "Timestamp": "2024-05-16T11:47:56.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.336900", - "Timestamp": "2019-10-15T14:04:08.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.644500", + "Timestamp": "2024-05-16T11:47:56.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.236900", - "Timestamp": "2019-10-15T14:04:08.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.126200", + "Timestamp": "2024-05-16T11:47:56.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m2.xlarge", + "InstanceType": "c5ad.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.084500", - "Timestamp": "2019-10-15T13:56:15.000Z" + "SpotPrice": "0.330800", + "Timestamp": "2024-05-16T11:47:56.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m2.xlarge", + "InstanceType": "c5ad.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.124500", - "Timestamp": "2019-10-15T13:56:15.000Z" + "SpotPrice": "0.325800", + "Timestamp": "2024-05-16T11:47:56.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m2.xlarge", + "InstanceType": "c5ad.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.024500", - "Timestamp": "2019-10-15T13:56:15.000Z" + "SpotPrice": "0.200800", + "Timestamp": "2024-05-16T11:47:56.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.417200", + "Timestamp": "2024-05-16T11:47:56.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.412200", + "Timestamp": "2024-05-16T11:47:56.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.287200", + "Timestamp": "2024-05-16T11:47:56.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.098900", - "Timestamp": "2019-10-15T13:55:56.000Z" + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.718300", + "Timestamp": "2024-05-16T11:47:56.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.668900", + "Timestamp": "2024-05-16T11:47:56.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.284800", + "Timestamp": "2024-05-16T11:47:56.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.138900", - "Timestamp": "2019-10-15T13:55:56.000Z" + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271200", + "Timestamp": "2024-05-16T11:47:56.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.038900", - "Timestamp": "2019-10-15T13:55:56.000Z" + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267200", + "Timestamp": "2024-05-16T11:47:56.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-15T13:48:23.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.211200", + "Timestamp": "2024-05-16T11:47:56.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.148300", - "Timestamp": "2019-10-15T13:47:35.000Z" + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078200", + "Timestamp": "2024-05-16T11:47:55.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.188300", - "Timestamp": "2019-10-15T13:47:35.000Z" + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074500", + "Timestamp": "2024-05-16T11:47:55.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.088300", - "Timestamp": "2019-10-15T13:47:35.000Z" + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018200", + "Timestamp": "2024-05-16T11:47:55.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.035800", + "Timestamp": "2024-05-16T11:47:55.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m1.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127200", - "Timestamp": "2019-10-15T13:39:41.000Z" + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.628000", + "Timestamp": "2024-05-16T11:47:55.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.126600", - "Timestamp": "2019-10-15T13:38:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.627700", + "Timestamp": "2024-05-16T11:47:55.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.166600", - "Timestamp": "2019-10-15T13:38:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.446000", + "Timestamp": "2024-05-16T11:47:55.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.066600", - "Timestamp": "2019-10-15T13:38:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.441000", + "Timestamp": "2024-05-16T11:47:55.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T13:38:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.316000", + "Timestamp": "2024-05-16T11:47:55.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.389100", - "Timestamp": "2019-10-15T13:37:51.000Z" + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127400", + "Timestamp": "2024-05-16T11:47:55.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.359100", - "Timestamp": "2019-10-15T13:37:51.000Z" + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123700", + "Timestamp": "2024-05-16T11:47:55.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.259100", - "Timestamp": "2019-10-15T13:37:51.000Z" + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067400", + "Timestamp": "2024-05-16T11:47:55.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.128000", - "Timestamp": "2019-10-15T13:31:16.000Z" + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.225100", + "Timestamp": "2024-05-16T11:47:54.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.168000", - "Timestamp": "2019-10-15T13:31:16.000Z" + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.221400", + "Timestamp": "2024-05-16T11:47:54.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.068000", - "Timestamp": "2019-10-15T13:31:16.000Z" + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165100", + "Timestamp": "2024-05-16T11:47:54.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.128000", - "Timestamp": "2019-10-15T13:23:16.000Z" + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.616100", + "Timestamp": "2024-05-16T11:47:54.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.168000", - "Timestamp": "2019-10-15T13:23:16.000Z" + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.611100", + "Timestamp": "2024-05-16T11:47:54.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.068000", - "Timestamp": "2019-10-15T13:23:16.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-15T13:22:22.000Z" + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.486100", + "Timestamp": "2024-05-16T11:47:54.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t2.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.090400", - "Timestamp": "2019-10-15T13:21:22.000Z" + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.471800", + "Timestamp": "2024-05-16T11:47:54.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t2.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.130400", - "Timestamp": "2019-10-15T13:21:22.000Z" + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.466800", + "Timestamp": "2024-05-16T11:47:54.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t2.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.030400", - "Timestamp": "2019-10-15T13:21:22.000Z" + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.341800", + "Timestamp": "2024-05-16T11:47:54.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.799600", - "Timestamp": "2019-10-15T13:14:02.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.399800", + "Timestamp": "2024-05-16T11:47:53.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.799600", - "Timestamp": "2019-10-15T13:14:02.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.569900", + "Timestamp": "2024-05-16T11:47:53.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.769600", - "Timestamp": "2019-10-15T13:14:02.000Z" + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.515200", + "Timestamp": "2024-05-16T11:47:53.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.769600", - "Timestamp": "2019-10-15T13:14:02.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.510200", + "Timestamp": "2024-05-16T11:47:53.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.669600", - "Timestamp": "2019-10-15T13:14:02.000Z" + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.385200", + "Timestamp": "2024-05-16T11:47:53.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.669600", - "Timestamp": "2019-10-15T13:14:02.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.014100", + "Timestamp": "2024-05-16T11:47:53.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.773600", - "Timestamp": "2019-10-15T13:13:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.592500", + "Timestamp": "2024-05-16T11:47:53.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.773600", - "Timestamp": "2019-10-15T13:13:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.587500", + "Timestamp": "2024-05-16T11:47:53.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.773600", - "Timestamp": "2019-10-15T13:13:52.000Z" + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.462500", + "Timestamp": "2024-05-16T11:47:53.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.773600", - "Timestamp": "2019-10-15T13:13:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.623800", + "Timestamp": "2024-05-16T11:47:52.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.773600", - "Timestamp": "2019-10-15T13:13:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.618800", + "Timestamp": "2024-05-16T11:47:52.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.544000", - "Timestamp": "2019-10-15T13:12:18.000Z" + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.493800", + "Timestamp": "2024-05-16T11:47:52.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.544000", - "Timestamp": "2019-10-15T13:12:18.000Z" + "SpotPrice": "3.248900", + "Timestamp": "2024-05-16T11:47:52.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.544000", - "Timestamp": "2019-10-15T13:12:18.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.243900", + "Timestamp": "2024-05-16T11:47:52.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.544000", - "Timestamp": "2019-10-15T13:12:18.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.118900", + "Timestamp": "2024-05-16T11:47:52.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.627000", + "Timestamp": "2024-05-16T11:47:52.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.544000", - "Timestamp": "2019-10-15T13:12:18.000Z" + "SpotPrice": "1.798500", + "Timestamp": "2024-05-16T11:47:52.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "d2.2xlarge", + "InstanceType": "c6a.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.514000", - "Timestamp": "2019-10-15T13:12:18.000Z" + "SpotPrice": "1.793500", + "Timestamp": "2024-05-16T11:47:52.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.514000", - "Timestamp": "2019-10-15T13:12:18.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.668500", + "Timestamp": "2024-05-16T11:47:52.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "d2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.514000", - "Timestamp": "2019-10-15T13:12:18.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.121600", + "Timestamp": "2024-05-16T11:47:51.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.514000", - "Timestamp": "2019-10-15T13:12:18.000Z" + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.686000", + "Timestamp": "2024-05-16T11:47:51.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.514000", - "Timestamp": "2019-10-15T13:12:18.000Z" + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.699000", + "Timestamp": "2024-05-16T11:47:50.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.414000", - "Timestamp": "2019-10-15T13:12:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.694000", + "Timestamp": "2024-05-16T11:47:50.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4dn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.414000", - "Timestamp": "2019-10-15T13:12:18.000Z" + "SpotPrice": "1.569000", + "Timestamp": "2024-05-16T11:47:50.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.414000", - "Timestamp": "2019-10-15T13:12:18.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.559300", + "Timestamp": "2024-05-16T11:47:50.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.414000", - "Timestamp": "2019-10-15T13:12:18.000Z" + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.554300", + "Timestamp": "2024-05-16T11:47:50.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.414000", - "Timestamp": "2019-10-15T13:12:18.000Z" + "SpotPrice": "1.429300", + "Timestamp": "2024-05-16T11:47:50.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.544000", - "Timestamp": "2019-10-15T13:12:16.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.219500", + "Timestamp": "2024-05-16T11:47:50.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.544000", - "Timestamp": "2019-10-15T13:12:16.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.634500", + "Timestamp": "2024-05-16T11:47:49.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.544000", - "Timestamp": "2019-10-15T13:12:16.000Z" + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.629500", + "Timestamp": "2024-05-16T11:47:49.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.544000", - "Timestamp": "2019-10-15T13:12:16.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.504500", + "Timestamp": "2024-05-16T11:47:49.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.544000", - "Timestamp": "2019-10-15T13:12:16.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.695200", + "Timestamp": "2024-05-16T11:47:49.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.544000", - "Timestamp": "2019-10-15T13:12:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.204200", + "Timestamp": "2024-05-16T11:47:49.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.514000", - "Timestamp": "2019-10-15T13:12:16.000Z" + "InstanceType": "i4g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.199200", + "Timestamp": "2024-05-16T11:47:49.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "d2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.514000", - "Timestamp": "2019-10-15T13:12:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.074200", + "Timestamp": "2024-05-16T11:47:49.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.514000", - "Timestamp": "2019-10-15T13:12:16.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.368800", + "Timestamp": "2024-05-16T11:47:49.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "d2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.514000", - "Timestamp": "2019-10-15T13:12:16.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.363800", + "Timestamp": "2024-05-16T11:47:49.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.514000", - "Timestamp": "2019-10-15T13:12:16.000Z" + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.238800", + "Timestamp": "2024-05-16T11:47:49.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.514000", - "Timestamp": "2019-10-15T13:12:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.209600", + "Timestamp": "2024-05-16T11:47:49.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.414000", - "Timestamp": "2019-10-15T13:12:16.000Z" + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.205900", + "Timestamp": "2024-05-16T11:47:49.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.414000", - "Timestamp": "2019-10-15T13:12:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149600", + "Timestamp": "2024-05-16T11:47:49.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.414000", - "Timestamp": "2019-10-15T13:12:16.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.572700", + "Timestamp": "2024-05-16T11:47:49.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.414000", - "Timestamp": "2019-10-15T13:12:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.002000", + "Timestamp": "2024-05-16T11:47:49.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.414000", - "Timestamp": "2019-10-15T13:12:16.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.001200", + "Timestamp": "2024-05-16T11:47:49.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.414000", - "Timestamp": "2019-10-15T13:12:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.997000", + "Timestamp": "2024-05-16T11:47:49.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t1.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T13:12:16.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.996200", + "Timestamp": "2024-05-16T11:47:49.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t1.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T13:12:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.872000", + "Timestamp": "2024-05-16T11:47:49.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t1.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T13:12:16.000Z" + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.871200", + "Timestamp": "2024-05-16T11:47:49.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t1.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T13:12:16.000Z" + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.828400", + "Timestamp": "2024-05-16T11:47:48.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.077400", + "Timestamp": "2024-05-16T11:47:48.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t1.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T13:12:16.000Z" + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.560600", + "Timestamp": "2024-05-16T11:47:48.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t1.micro", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T13:12:13.000Z" + "SpotPrice": "2.507400", + "Timestamp": "2024-05-16T11:47:47.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t1.micro", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.metal", "ProductDescription": "Windows", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T13:12:13.000Z" + "SpotPrice": "8.685000", + "Timestamp": "2024-05-16T11:47:47.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t1.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T13:12:13.000Z" + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.999600", + "Timestamp": "2024-05-16T11:47:47.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t1.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T13:12:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.994600", + "Timestamp": "2024-05-16T11:47:47.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.635000", - "Timestamp": "2019-10-15T13:12:04.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.869600", + "Timestamp": "2024-05-16T11:47:47.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.635000", - "Timestamp": "2019-10-15T13:12:04.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.480800", + "Timestamp": "2024-05-16T11:47:47.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.635000", - "Timestamp": "2019-10-15T13:12:04.000Z" + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.475800", + "Timestamp": "2024-05-16T11:47:47.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.635000", - "Timestamp": "2019-10-15T13:12:04.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.350800", + "Timestamp": "2024-05-16T11:47:47.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.635000", - "Timestamp": "2019-10-15T13:12:04.000Z" + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.454800", + "Timestamp": "2024-05-16T11:47:47.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.635000", - "Timestamp": "2019-10-15T13:12:04.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.449800", + "Timestamp": "2024-05-16T11:47:47.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.324800", + "Timestamp": "2024-05-16T11:47:47.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "d2.2xlarge", + "InstanceType": "gr6.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.635000", - "Timestamp": "2019-10-15T13:12:02.000Z" + "SpotPrice": "1.732100", + "Timestamp": "2024-05-16T11:47:47.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.635000", - "Timestamp": "2019-10-15T13:12:02.000Z" + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.133900", + "Timestamp": "2024-05-16T11:47:47.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.635000", - "Timestamp": "2019-10-15T13:12:02.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.128900", + "Timestamp": "2024-05-16T11:47:47.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.635000", - "Timestamp": "2019-10-15T13:12:02.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.003900", + "Timestamp": "2024-05-16T11:47:47.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "d2.2xlarge", + "InstanceType": "r7i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.635000", - "Timestamp": "2019-10-15T13:12:02.000Z" + "SpotPrice": "2.075400", + "Timestamp": "2024-05-16T11:47:47.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.131600", - "Timestamp": "2019-10-15T13:11:40.000Z" + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.744700", + "Timestamp": "2024-05-16T11:47:46.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.131600", - "Timestamp": "2019-10-15T13:11:40.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.739700", + "Timestamp": "2024-05-16T11:47:46.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.131600", - "Timestamp": "2019-10-15T13:11:40.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.614700", + "Timestamp": "2024-05-16T11:47:46.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.131600", - "Timestamp": "2019-10-15T13:11:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.651900", + "Timestamp": "2024-05-16T11:47:46.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.101600", - "Timestamp": "2019-10-15T13:11:40.000Z" + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.153400", + "Timestamp": "2024-05-16T11:47:46.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.101600", - "Timestamp": "2019-10-15T13:11:40.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.101600", - "Timestamp": "2019-10-15T13:11:40.000Z" + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.558000", + "Timestamp": "2024-05-16T11:47:46.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.101600", - "Timestamp": "2019-10-15T13:11:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.639600", + "Timestamp": "2024-05-16T11:47:46.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.001600", - "Timestamp": "2019-10-15T13:11:40.000Z" + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.609700", + "Timestamp": "2024-05-16T11:47:45.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.001600", - "Timestamp": "2019-10-15T13:11:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.512800", + "Timestamp": "2024-05-16T11:47:45.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.001600", - "Timestamp": "2019-10-15T13:11:40.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.604700", + "Timestamp": "2024-05-16T11:47:45.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.001600", - "Timestamp": "2019-10-15T13:11:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.507800", + "Timestamp": "2024-05-16T11:47:45.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.473600", - "Timestamp": "2019-10-15T13:11:40.000Z" + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.479700", + "Timestamp": "2024-05-16T11:47:45.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.473600", - "Timestamp": "2019-10-15T13:11:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.382800", + "Timestamp": "2024-05-16T11:47:45.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.473600", - "Timestamp": "2019-10-15T13:11:40.000Z" + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084700", + "Timestamp": "2024-05-16T11:47:45.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.473600", - "Timestamp": "2019-10-15T13:11:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.081000", + "Timestamp": "2024-05-16T11:47:45.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t1.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.062000", - "Timestamp": "2019-10-15T13:11:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024700", + "Timestamp": "2024-05-16T11:47:45.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t1.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.062000", - "Timestamp": "2019-10-15T13:11:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T11:47:45.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t1.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.062000", - "Timestamp": "2019-10-15T13:11:25.000Z" + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098400", + "Timestamp": "2024-05-16T11:47:45.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t1.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.062000", - "Timestamp": "2019-10-15T13:11:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042100", + "Timestamp": "2024-05-16T11:47:45.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t1.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.062000", - "Timestamp": "2019-10-15T13:11:25.000Z" + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.340900", + "Timestamp": "2024-05-16T11:47:45.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "t1.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-15T13:11:25.000Z" + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.259700", + "Timestamp": "2024-05-16T11:47:44.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t1.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-15T13:11:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.254700", + "Timestamp": "2024-05-16T11:47:44.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t1.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-15T13:11:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129700", + "Timestamp": "2024-05-16T11:47:44.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t1.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-15T13:11:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.348000", + "Timestamp": "2024-05-16T11:47:44.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t1.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-15T13:11:25.000Z" + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.318000", + "Timestamp": "2024-05-16T11:47:44.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t1.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T13:11:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.218000", + "Timestamp": "2024-05-16T11:47:44.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "t1.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T13:11:25.000Z" + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.694700", + "Timestamp": "2024-05-16T11:47:44.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t1.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T13:11:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.664700", + "Timestamp": "2024-05-16T11:47:44.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t1.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T13:11:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.564700", + "Timestamp": "2024-05-16T11:47:44.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t1.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T13:11:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110400", + "Timestamp": "2024-05-16T11:47:44.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095600", - "Timestamp": "2019-10-15T13:11:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106700", + "Timestamp": "2024-05-16T11:47:44.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.097200", - "Timestamp": "2019-10-15T13:11:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050400", + "Timestamp": "2024-05-16T11:47:44.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095600", - "Timestamp": "2019-10-15T13:11:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076900", + "Timestamp": "2024-05-16T11:47:44.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T13:11:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073200", + "Timestamp": "2024-05-16T11:47:44.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.137200", - "Timestamp": "2019-10-15T13:11:25.000Z" + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016900", + "Timestamp": "2024-05-16T11:47:44.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T13:11:25.000Z" + "InstanceType": "p3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "8.982500", + "Timestamp": "2024-05-16T11:47:43.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035600", - "Timestamp": "2019-10-15T13:11:25.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.037200", - "Timestamp": "2019-10-15T13:11:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "8.952500", + "Timestamp": "2024-05-16T11:47:43.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035600", - "Timestamp": "2019-10-15T13:11:25.000Z" + "InstanceType": "p3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "8.852500", + "Timestamp": "2024-05-16T11:47:43.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T13:11:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235700", + "Timestamp": "2024-05-16T11:47:43.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T13:11:25.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T13:11:25.000Z" + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110900", + "Timestamp": "2024-05-16T11:47:43.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T13:11:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-16T11:47:43.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T13:11:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050900", + "Timestamp": "2024-05-16T11:47:43.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t1.micro", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062000", - "Timestamp": "2019-10-15T13:11:12.000Z" + "SpotPrice": "1.058600", + "Timestamp": "2024-05-16T11:47:43.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t1.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062000", - "Timestamp": "2019-10-15T13:11:12.000Z" + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.053600", + "Timestamp": "2024-05-16T11:47:43.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t1.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062000", - "Timestamp": "2019-10-15T13:11:12.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.928600", + "Timestamp": "2024-05-16T11:47:43.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t1.micro", + "InstanceType": "m6a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062000", - "Timestamp": "2019-10-15T13:11:12.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t1.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-15T13:11:12.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t1.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-15T13:11:12.000Z" + "SpotPrice": "0.462400", + "Timestamp": "2024-05-16T11:47:43.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t1.micro", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-15T13:11:12.000Z" + "SpotPrice": "0.457400", + "Timestamp": "2024-05-16T11:47:43.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t1.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-15T13:11:12.000Z" + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.332400", + "Timestamp": "2024-05-16T11:47:43.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t1.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T13:11:12.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.394000", + "Timestamp": "2024-05-16T11:47:43.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t1.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T13:11:12.000Z" + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.389000", + "Timestamp": "2024-05-16T11:47:43.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t1.micro", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T13:11:12.000Z" + "SpotPrice": "3.264000", + "Timestamp": "2024-05-16T11:47:43.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t1.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T13:11:12.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271700", + "Timestamp": "2024-05-16T11:47:43.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.802000", - "Timestamp": "2019-10-15T13:10:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266700", + "Timestamp": "2024-05-16T11:47:43.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.802000", - "Timestamp": "2019-10-15T13:10:56.000Z" + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141700", + "Timestamp": "2024-05-16T11:47:43.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.802000", - "Timestamp": "2019-10-15T13:10:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122200", + "Timestamp": "2024-05-16T11:47:43.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.802000", - "Timestamp": "2019-10-15T13:10:56.000Z" + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118500", + "Timestamp": "2024-05-16T11:47:43.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "p3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.772000", - "Timestamp": "2019-10-15T13:10:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062200", + "Timestamp": "2024-05-16T11:47:43.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "p3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.772000", - "Timestamp": "2019-10-15T13:10:56.000Z" + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.012100", + "Timestamp": "2024-05-16T11:47:42.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "p3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.772000", - "Timestamp": "2019-10-15T13:10:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.007100", + "Timestamp": "2024-05-16T11:47:42.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "p3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.772000", - "Timestamp": "2019-10-15T13:10:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.882100", + "Timestamp": "2024-05-16T11:47:42.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.672000", - "Timestamp": "2019-10-15T13:10:56.000Z" + "InstanceType": "c7gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084600", + "Timestamp": "2024-05-16T11:47:42.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.672000", - "Timestamp": "2019-10-15T13:10:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080900", + "Timestamp": "2024-05-16T11:47:42.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.672000", - "Timestamp": "2019-10-15T13:10:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024600", + "Timestamp": "2024-05-16T11:47:42.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.672000", - "Timestamp": "2019-10-15T13:10:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.300900", + "Timestamp": "2024-05-16T11:47:42.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.144000", - "Timestamp": "2019-10-15T13:10:55.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.295900", + "Timestamp": "2024-05-16T11:47:42.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.144000", - "Timestamp": "2019-10-15T13:10:55.000Z" + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170900", + "Timestamp": "2024-05-16T11:47:42.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.144000", - "Timestamp": "2019-10-15T13:10:55.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.629200", + "Timestamp": "2024-05-16T11:47:42.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.144000", - "Timestamp": "2019-10-15T13:10:55.000Z" + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.972300", + "Timestamp": "2024-05-16T11:47:42.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.129300", + "Timestamp": "2024-05-16T11:47:42.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "h1.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.066000", - "Timestamp": "2019-10-15T13:10:39.000Z" + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.275700", + "Timestamp": "2024-05-16T11:47:42.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "h1.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.066000", - "Timestamp": "2019-10-15T13:10:39.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270700", + "Timestamp": "2024-05-16T11:47:42.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "h1.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.066000", - "Timestamp": "2019-10-15T13:10:39.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145700", + "Timestamp": "2024-05-16T11:47:42.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "h1.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.066000", - "Timestamp": "2019-10-15T13:10:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.216600", + "Timestamp": "2024-05-16T11:47:41.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "h1.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.460000", - "Timestamp": "2019-10-15T13:10:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.212600", + "Timestamp": "2024-05-16T11:47:41.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "h1.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.460000", - "Timestamp": "2019-10-15T13:10:39.000Z" + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156600", + "Timestamp": "2024-05-16T11:47:41.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "h1.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.430000", - "Timestamp": "2019-10-15T13:10:39.000Z" + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.731200", + "Timestamp": "2024-05-16T11:47:41.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "h1.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.430000", - "Timestamp": "2019-10-15T13:10:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.726200", + "Timestamp": "2024-05-16T11:47:41.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "h1.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.330000", - "Timestamp": "2019-10-15T13:10:39.000Z" + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.601200", + "Timestamp": "2024-05-16T11:47:41.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "h1.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.330000", - "Timestamp": "2019-10-15T13:10:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.043100", + "Timestamp": "2024-05-16T11:47:41.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.266000", - "Timestamp": "2019-10-15T13:09:56.000Z" + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148200", + "Timestamp": "2024-05-16T11:47:41.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.236000", - "Timestamp": "2019-10-15T13:09:56.000Z" + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144500", + "Timestamp": "2024-05-16T11:47:41.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.136000", - "Timestamp": "2019-10-15T13:09:56.000Z" + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088200", + "Timestamp": "2024-05-16T11:47:41.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.504000", - "Timestamp": "2019-10-15T13:09:56.000Z" - }, - { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.504000", - "Timestamp": "2019-10-15T13:09:56.000Z" + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.066500", + "Timestamp": "2024-05-16T11:47:41.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.504000", - "Timestamp": "2019-10-15T13:09:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.057800", + "Timestamp": "2024-05-16T11:47:41.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.504000", - "Timestamp": "2019-10-15T13:09:56.000Z" + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126600", + "Timestamp": "2024-05-16T11:47:40.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.504000", - "Timestamp": "2019-10-15T13:09:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166600", + "Timestamp": "2024-05-16T11:47:40.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094000", - "Timestamp": "2019-10-15T13:06:29.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066600", + "Timestamp": "2024-05-16T11:47:40.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134000", - "Timestamp": "2019-10-15T13:06:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143100", + "Timestamp": "2024-05-16T11:47:40.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034000", - "Timestamp": "2019-10-15T13:06:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139400", + "Timestamp": "2024-05-16T11:47:40.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T13:05:04.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083100", + "Timestamp": "2024-05-16T11:47:40.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.341800", - "Timestamp": "2019-10-15T13:00:14.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.119100", + "Timestamp": "2024-05-16T11:47:39.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.534800", - "Timestamp": "2019-10-15T12:56:55.000Z" + "InstanceType": "c1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.367900", + "Timestamp": "2024-05-16T11:47:39.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.504800", - "Timestamp": "2019-10-15T12:56:55.000Z" + "InstanceType": "c1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.337900", + "Timestamp": "2024-05-16T11:47:39.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.404800", - "Timestamp": "2019-10-15T12:56:55.000Z" + "InstanceType": "c1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.237900", + "Timestamp": "2024-05-16T11:47:39.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.122600", - "Timestamp": "2019-10-15T12:56:46.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.318900", + "Timestamp": "2024-05-16T11:47:39.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.162600", - "Timestamp": "2019-10-15T12:56:46.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.469600", + "Timestamp": "2024-05-16T11:47:38.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.062600", - "Timestamp": "2019-10-15T12:56:46.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.464600", + "Timestamp": "2024-05-16T11:47:38.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-15T12:49:21.000Z" + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.339600", + "Timestamp": "2024-05-16T11:47:38.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-15T12:49:21.000Z" + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.965700", + "Timestamp": "2024-05-16T11:47:38.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.024200", - "Timestamp": "2019-10-15T12:49:03.000Z" + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.960700", + "Timestamp": "2024-05-16T11:47:38.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095800", - "Timestamp": "2019-10-15T12:49:02.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.835700", + "Timestamp": "2024-05-16T11:47:38.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135800", - "Timestamp": "2019-10-15T12:49:02.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.844000", + "Timestamp": "2024-05-16T11:47:36.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035800", - "Timestamp": "2019-10-15T12:49:02.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.839000", + "Timestamp": "2024-05-16T11:47:36.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.510500", - "Timestamp": "2019-10-15T12:48:59.000Z" + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.714000", + "Timestamp": "2024-05-16T11:47:36.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.096600", - "Timestamp": "2019-10-15T12:48:24.000Z" + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.091400", + "Timestamp": "2024-05-16T11:47:36.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.136600", - "Timestamp": "2019-10-15T12:48:24.000Z" + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.767700", + "Timestamp": "2024-05-16T11:47:35.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.036600", - "Timestamp": "2019-10-15T12:48:24.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.074800", + "Timestamp": "2024-05-16T11:47:35.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.402100", - "Timestamp": "2019-10-15T12:43:17.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.044800", + "Timestamp": "2024-05-16T11:47:35.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.372100", - "Timestamp": "2019-10-15T12:43:17.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.944800", + "Timestamp": "2024-05-16T11:47:35.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.272100", - "Timestamp": "2019-10-15T12:43:17.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.761600", + "Timestamp": "2024-05-16T11:47:35.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.756600", + "Timestamp": "2024-05-16T11:47:35.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.631600", + "Timestamp": "2024-05-16T11:47:35.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.008100", - "Timestamp": "2019-10-15T12:42:25.000Z" + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.840000", + "Timestamp": "2024-05-16T11:47:34.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.008100", - "Timestamp": "2019-10-15T12:42:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.835000", + "Timestamp": "2024-05-16T11:47:34.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.008100", - "Timestamp": "2019-10-15T12:42:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.710000", + "Timestamp": "2024-05-16T11:47:34.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.008100", - "Timestamp": "2019-10-15T12:42:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.269500", + "Timestamp": "2024-05-16T11:47:33.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.008100", - "Timestamp": "2019-10-15T12:42:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.264500", + "Timestamp": "2024-05-16T11:47:33.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.685500", - "Timestamp": "2019-10-15T12:32:13.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.139500", + "Timestamp": "2024-05-16T11:47:33.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.655500", - "Timestamp": "2019-10-15T12:32:13.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.153600", + "Timestamp": "2024-05-16T11:47:33.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.555500", - "Timestamp": "2019-10-15T12:32:13.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.148600", + "Timestamp": "2024-05-16T11:47:33.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.700000", - "Timestamp": "2019-10-15T12:31:55.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.023600", + "Timestamp": "2024-05-16T11:47:33.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.670000", - "Timestamp": "2019-10-15T12:31:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.002900", + "Timestamp": "2024-05-16T11:47:33.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.570000", - "Timestamp": "2019-10-15T12:31:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.997900", + "Timestamp": "2024-05-16T11:47:33.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.125000", - "Timestamp": "2019-10-15T12:31:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.872900", + "Timestamp": "2024-05-16T11:47:33.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.165000", - "Timestamp": "2019-10-15T12:31:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.331400", + "Timestamp": "2024-05-16T11:47:32.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.065000", - "Timestamp": "2019-10-15T12:31:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.326400", + "Timestamp": "2024-05-16T11:47:32.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.367000", - "Timestamp": "2019-10-15T12:23:37.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.201400", + "Timestamp": "2024-05-16T11:47:32.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.337000", - "Timestamp": "2019-10-15T12:23:37.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.612700", + "Timestamp": "2024-05-16T11:47:32.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.237000", - "Timestamp": "2019-10-15T12:23:37.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.582700", + "Timestamp": "2024-05-16T11:47:32.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-15T12:14:45.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.482700", + "Timestamp": "2024-05-16T11:47:32.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-15T12:14:45.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.548500", + "Timestamp": "2024-05-16T11:47:31.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-15T12:14:45.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.543500", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.418500", + "Timestamp": "2024-05-16T11:47:31.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.982800", - "Timestamp": "2019-10-15T12:13:08.000Z" + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T11:47:31.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.982800", - "Timestamp": "2019-10-15T12:13:08.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102000", + "Timestamp": "2024-05-16T11:47:31.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.982800", - "Timestamp": "2019-10-15T12:13:08.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045700", + "Timestamp": "2024-05-16T11:47:31.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.982800", - "Timestamp": "2019-10-15T12:13:08.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.283000", + "Timestamp": "2024-05-16T11:47:31.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.982800", - "Timestamp": "2019-10-15T12:13:08.000Z" + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.279000", + "Timestamp": "2024-05-16T11:47:31.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.982800", - "Timestamp": "2019-10-15T12:13:08.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.223000", + "Timestamp": "2024-05-16T11:47:31.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.700000", - "Timestamp": "2019-10-15T12:12:38.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.529300", + "Timestamp": "2024-05-16T11:47:31.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.670000", - "Timestamp": "2019-10-15T12:12:38.000Z" + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.738000", + "Timestamp": "2024-05-16T11:47:31.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.570000", - "Timestamp": "2019-10-15T12:12:38.000Z" + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.733000", + "Timestamp": "2024-05-16T11:47:31.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.277600", - "Timestamp": "2019-10-15T12:12:16.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.608000", + "Timestamp": "2024-05-16T11:47:31.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.277600", - "Timestamp": "2019-10-15T12:12:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.571600", + "Timestamp": "2024-05-16T11:47:31.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.277600", - "Timestamp": "2019-10-15T12:12:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.541600", + "Timestamp": "2024-05-16T11:47:31.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.277600", - "Timestamp": "2019-10-15T12:12:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.441600", + "Timestamp": "2024-05-16T11:47:31.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.277600", - "Timestamp": "2019-10-15T12:12:16.000Z" + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149400", + "Timestamp": "2024-05-16T11:47:31.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.496000", - "Timestamp": "2019-10-15T12:12:16.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145400", + "Timestamp": "2024-05-16T11:47:31.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.084000", - "Timestamp": "2019-10-15T12:11:43.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089400", + "Timestamp": "2024-05-16T11:47:31.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.084000", - "Timestamp": "2019-10-15T12:11:43.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.880100", + "Timestamp": "2024-05-16T11:47:31.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.084000", - "Timestamp": "2019-10-15T12:11:43.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.850100", + "Timestamp": "2024-05-16T11:47:31.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.084000", - "Timestamp": "2019-10-15T12:11:43.000Z" + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.750100", + "Timestamp": "2024-05-16T11:47:31.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.084000", - "Timestamp": "2019-10-15T12:11:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.988700", + "Timestamp": "2024-05-16T11:47:31.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m1.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.070700", - "Timestamp": "2019-10-15T12:11:36.000Z" + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.983700", + "Timestamp": "2024-05-16T11:47:31.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m1.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.070700", - "Timestamp": "2019-10-15T12:11:36.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.858700", + "Timestamp": "2024-05-16T11:47:31.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m1.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.070700", - "Timestamp": "2019-10-15T12:11:36.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.218300", + "Timestamp": "2024-05-16T11:47:31.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.070700", - "Timestamp": "2019-10-15T12:11:36.000Z" + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.214300", + "Timestamp": "2024-05-16T11:47:31.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.866600", - "Timestamp": "2019-10-15T12:11:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158300", + "Timestamp": "2024-05-16T11:47:31.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.866600", - "Timestamp": "2019-10-15T12:11:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083400", + "Timestamp": "2024-05-16T11:47:30.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5n.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.866600", - "Timestamp": "2019-10-15T12:11:25.000Z" + "InstanceType": "c7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079700", + "Timestamp": "2024-05-16T11:47:30.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.866600", - "Timestamp": "2019-10-15T12:11:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023400", + "Timestamp": "2024-05-16T11:47:30.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m1.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.068700", - "Timestamp": "2019-10-15T12:11:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.558600", + "Timestamp": "2024-05-16T11:47:30.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m1.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.068700", - "Timestamp": "2019-10-15T12:11:25.000Z" + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.553600", + "Timestamp": "2024-05-16T11:47:30.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m1.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.068700", - "Timestamp": "2019-10-15T12:11:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.428600", + "Timestamp": "2024-05-16T11:47:30.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.068700", - "Timestamp": "2019-10-15T12:11:25.000Z" + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.463000", + "Timestamp": "2024-05-16T11:47:30.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m1.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.108700", - "Timestamp": "2019-10-15T12:11:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.458000", + "Timestamp": "2024-05-16T11:47:30.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m1.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.108700", - "Timestamp": "2019-10-15T12:11:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.333000", + "Timestamp": "2024-05-16T11:47:30.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m1.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.108700", - "Timestamp": "2019-10-15T12:11:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.739900", + "Timestamp": "2024-05-16T11:47:30.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.108700", - "Timestamp": "2019-10-15T12:11:25.000Z" + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.734900", + "Timestamp": "2024-05-16T11:47:30.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m1.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.008700", - "Timestamp": "2019-10-15T12:11:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.609900", + "Timestamp": "2024-05-16T11:47:30.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m1.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.008700", - "Timestamp": "2019-10-15T12:11:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.207900", + "Timestamp": "2024-05-16T11:47:29.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m1.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.008700", - "Timestamp": "2019-10-15T12:11:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.204200", + "Timestamp": "2024-05-16T11:47:29.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.008700", - "Timestamp": "2019-10-15T12:11:25.000Z" + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147900", + "Timestamp": "2024-05-16T11:47:29.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.684600", - "Timestamp": "2019-10-15T12:11:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.193300", + "Timestamp": "2024-05-16T11:47:28.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.684600", - "Timestamp": "2019-10-15T12:11:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.188300", + "Timestamp": "2024-05-16T11:47:28.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5n.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.684600", - "Timestamp": "2019-10-15T12:11:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.063300", + "Timestamp": "2024-05-16T11:47:28.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.684600", - "Timestamp": "2019-10-15T12:11:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.549200", + "Timestamp": "2024-05-16T11:47:28.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.654600", - "Timestamp": "2019-10-15T12:11:25.000Z" + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.519200", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.419200", + "Timestamp": "2024-05-16T11:47:28.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.654600", - "Timestamp": "2019-10-15T12:11:25.000Z" + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.320600", + "Timestamp": "2024-05-16T11:47:27.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5n.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.654600", - "Timestamp": "2019-10-15T12:11:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.315600", + "Timestamp": "2024-05-16T11:47:27.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.654600", - "Timestamp": "2019-10-15T12:11:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.190600", + "Timestamp": "2024-05-16T11:47:27.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.554600", - "Timestamp": "2019-10-15T12:11:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.882400", + "Timestamp": "2024-05-16T11:47:27.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.554600", - "Timestamp": "2019-10-15T12:11:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.877400", + "Timestamp": "2024-05-16T11:47:27.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5n.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.554600", - "Timestamp": "2019-10-15T12:11:25.000Z" + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.752400", + "Timestamp": "2024-05-16T11:47:27.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.554600", - "Timestamp": "2019-10-15T12:11:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "16.172400", + "Timestamp": "2024-05-16T11:47:26.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m1.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.068700", - "Timestamp": "2019-10-15T12:11:18.000Z" + "SpotPrice": "0.773900", + "Timestamp": "2024-05-16T11:47:26.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m1.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.068700", - "Timestamp": "2019-10-15T12:11:18.000Z" + "InstanceType": "g5g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.768900", + "Timestamp": "2024-05-16T11:47:26.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m1.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.068700", - "Timestamp": "2019-10-15T12:11:18.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.643900", + "Timestamp": "2024-05-16T11:47:26.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.medium", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.068700", - "Timestamp": "2019-10-15T12:11:18.000Z" + "SpotPrice": "3.021200", + "Timestamp": "2024-05-16T11:47:26.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m1.medium", + "InstanceType": "r7i.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.108700", - "Timestamp": "2019-10-15T12:11:18.000Z" + "SpotPrice": "3.016200", + "Timestamp": "2024-05-16T11:47:26.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m1.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.108700", - "Timestamp": "2019-10-15T12:11:18.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.891200", + "Timestamp": "2024-05-16T11:47:26.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m1.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.108700", - "Timestamp": "2019-10-15T12:11:18.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137600", + "Timestamp": "2024-05-16T11:47:25.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.medium", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2gd.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.108700", - "Timestamp": "2019-10-15T12:11:18.000Z" + "SpotPrice": "0.133900", + "Timestamp": "2024-05-16T11:47:25.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m1.medium", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.008700", - "Timestamp": "2019-10-15T12:11:18.000Z" + "SpotPrice": "0.077600", + "Timestamp": "2024-05-16T11:47:25.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m1.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.008700", - "Timestamp": "2019-10-15T12:11:18.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.743200", + "Timestamp": "2024-05-16T11:47:25.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m1.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.008700", - "Timestamp": "2019-10-15T12:11:18.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.738200", + "Timestamp": "2024-05-16T11:47:25.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.medium", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.008700", - "Timestamp": "2019-10-15T12:11:18.000Z" + "SpotPrice": "0.613200", + "Timestamp": "2024-05-16T11:47:25.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m1.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.070700", - "Timestamp": "2019-10-15T12:11:09.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.545600", + "Timestamp": "2024-05-16T11:47:25.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m1.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.070700", - "Timestamp": "2019-10-15T12:11:09.000Z" + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.540600", + "Timestamp": "2024-05-16T11:47:25.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m1.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.070700", - "Timestamp": "2019-10-15T12:11:09.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.415600", + "Timestamp": "2024-05-16T11:47:25.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.medium", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.18xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.070700", - "Timestamp": "2019-10-15T12:11:09.000Z" + "SpotPrice": "4.752700", + "Timestamp": "2024-05-16T11:47:24.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-15T12:11:03.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.332400", + "Timestamp": "2024-05-16T11:47:24.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-15T12:11:03.000Z" + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372400", + "Timestamp": "2024-05-16T11:47:24.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-15T12:11:03.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.272400", + "Timestamp": "2024-05-16T11:47:24.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-15T12:11:03.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270700", + "Timestamp": "2024-05-16T11:47:23.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-15T12:11:03.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265700", + "Timestamp": "2024-05-16T11:47:23.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-15T12:11:03.000Z" + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140700", + "Timestamp": "2024-05-16T11:47:23.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-15T12:11:03.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.326100", + "Timestamp": "2024-05-16T11:47:22.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-15T12:11:03.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.321100", + "Timestamp": "2024-05-16T11:47:22.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-15T12:11:03.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196100", + "Timestamp": "2024-05-16T11:47:22.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-15T12:11:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.696000", + "Timestamp": "2024-05-16T11:47:19.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-15T12:11:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.691000", + "Timestamp": "2024-05-16T11:47:19.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.566000", + "Timestamp": "2024-05-16T11:47:19.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-15T12:11:03.000Z" + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.329600", + "Timestamp": "2024-05-16T11:47:19.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-15T12:11:03.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324600", + "Timestamp": "2024-05-16T11:47:19.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-15T12:11:03.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199600", + "Timestamp": "2024-05-16T11:47:19.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-15T12:11:03.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137800", + "Timestamp": "2024-05-16T11:47:17.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.372000", - "Timestamp": "2019-10-15T12:10:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134100", + "Timestamp": "2024-05-16T11:47:17.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.412000", - "Timestamp": "2019-10-15T12:10:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077800", + "Timestamp": "2024-05-16T11:47:17.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.312000", - "Timestamp": "2019-10-15T12:10:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.109800", + "Timestamp": "2024-05-16T11:47:16.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.174700", - "Timestamp": "2019-10-15T12:06:47.000Z" + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.303100", + "Timestamp": "2024-05-16T11:47:15.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.214700", - "Timestamp": "2019-10-15T12:06:47.000Z" + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298100", + "Timestamp": "2024-05-16T11:47:15.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.114700", - "Timestamp": "2019-10-15T12:06:47.000Z" + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.173100", + "Timestamp": "2024-05-16T11:47:15.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.250300", - "Timestamp": "2019-10-15T12:06:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.879000", + "Timestamp": "2024-05-16T11:47:15.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.220300", - "Timestamp": "2019-10-15T12:06:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.849000", + "Timestamp": "2024-05-16T11:47:15.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.120300", - "Timestamp": "2019-10-15T12:06:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.749000", + "Timestamp": "2024-05-16T11:47:15.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.419000", - "Timestamp": "2019-10-15T11:58:46.000Z" + "InstanceType": "r7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.160000", + "Timestamp": "2024-05-16T11:47:12.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.389000", - "Timestamp": "2019-10-15T11:58:46.000Z" + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.886900", + "Timestamp": "2024-05-16T11:47:11.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.289000", - "Timestamp": "2019-10-15T11:58:46.000Z" + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.856900", + "Timestamp": "2024-05-16T11:47:11.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.256800", - "Timestamp": "2019-10-15T11:49:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.756900", + "Timestamp": "2024-05-16T11:47:11.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.226800", - "Timestamp": "2019-10-15T11:49:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.733900", + "Timestamp": "2024-05-16T11:33:47.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.126800", - "Timestamp": "2019-10-15T11:49:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.059200", + "Timestamp": "2024-05-16T11:33:41.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.063000", - "Timestamp": "2019-10-15T11:49:16.000Z" + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.054200", + "Timestamp": "2024-05-16T11:33:41.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.510500", - "Timestamp": "2019-10-15T11:41:58.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.929200", + "Timestamp": "2024-05-16T11:33:41.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.907300", - "Timestamp": "2019-10-15T11:41:34.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.930100", + "Timestamp": "2024-05-16T11:33:40.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.877300", - "Timestamp": "2019-10-15T11:41:34.000Z" + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.554800", + "Timestamp": "2024-05-16T11:33:40.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.777300", - "Timestamp": "2019-10-15T11:41:34.000Z" + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.584500", + "Timestamp": "2024-05-16T11:33:40.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.074200", - "Timestamp": "2019-10-15T11:41:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.271900", + "Timestamp": "2024-05-16T11:33:40.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t2.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.114200", - "Timestamp": "2019-10-15T11:41:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.840800", + "Timestamp": "2024-05-16T11:33:40.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t2.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.014200", - "Timestamp": "2019-10-15T11:41:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.835800", + "Timestamp": "2024-05-16T11:33:40.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "7.670400", - "Timestamp": "2019-10-15T11:41:21.000Z" + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.710800", + "Timestamp": "2024-05-16T11:33:40.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "7.670400", - "Timestamp": "2019-10-15T11:41:21.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "7.670400", - "Timestamp": "2019-10-15T11:41:21.000Z" + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.516800", + "Timestamp": "2024-05-16T11:33:40.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "7.670400", - "Timestamp": "2019-10-15T11:41:21.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.511800", + "Timestamp": "2024-05-16T11:33:40.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "7.670400", - "Timestamp": "2019-10-15T11:41:21.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.386800", + "Timestamp": "2024-05-16T11:33:40.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.384400", - "Timestamp": "2019-10-15T11:39:08.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "13.867500", + "Timestamp": "2024-05-16T11:33:39.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.384400", - "Timestamp": "2019-10-15T11:39:08.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "13.862500", + "Timestamp": "2024-05-16T11:33:39.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.384400", - "Timestamp": "2019-10-15T11:39:08.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "13.737500", + "Timestamp": "2024-05-16T11:33:39.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.384400", - "Timestamp": "2019-10-15T11:39:08.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.139700", + "Timestamp": "2024-05-16T11:33:39.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.384400", - "Timestamp": "2019-10-15T11:39:08.000Z" + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.813500", + "Timestamp": "2024-05-16T11:33:39.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.354400", - "Timestamp": "2019-10-15T11:39:08.000Z" - }, - { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.354400", - "Timestamp": "2019-10-15T11:39:08.000Z" + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.134700", + "Timestamp": "2024-05-16T11:33:39.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.354400", - "Timestamp": "2019-10-15T11:39:08.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.808500", + "Timestamp": "2024-05-16T11:33:39.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.354400", - "Timestamp": "2019-10-15T11:39:08.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.009700", + "Timestamp": "2024-05-16T11:33:39.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.354400", - "Timestamp": "2019-10-15T11:39:08.000Z" + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.683500", + "Timestamp": "2024-05-16T11:33:39.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.254400", - "Timestamp": "2019-10-15T11:39:08.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.878100", + "Timestamp": "2024-05-16T11:33:39.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.254400", - "Timestamp": "2019-10-15T11:39:08.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.666800", + "Timestamp": "2024-05-16T11:33:38.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.254400", - "Timestamp": "2019-10-15T11:39:08.000Z" + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.661800", + "Timestamp": "2024-05-16T11:33:38.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.254400", - "Timestamp": "2019-10-15T11:39:08.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.536800", + "Timestamp": "2024-05-16T11:33:38.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.254400", - "Timestamp": "2019-10-15T11:39:08.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.436300", + "Timestamp": "2024-05-16T11:33:37.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.063000", - "Timestamp": "2019-10-15T11:24:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.828200", + "Timestamp": "2024-05-16T11:33:37.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-15T11:15:45.000Z" + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.823200", + "Timestamp": "2024-05-16T11:33:37.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-15T11:15:45.000Z" + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.698200", + "Timestamp": "2024-05-16T11:33:37.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-15T11:15:45.000Z" + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.581700", + "Timestamp": "2024-05-16T11:33:37.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.050200", - "Timestamp": "2019-10-15T11:12:05.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.484000", + "Timestamp": "2024-05-16T11:33:37.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.050200", - "Timestamp": "2019-10-15T11:12:05.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.459700", + "Timestamp": "2024-05-16T11:33:36.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.050200", - "Timestamp": "2019-10-15T11:12:05.000Z" + "InstanceType": "m7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.454700", + "Timestamp": "2024-05-16T11:33:36.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.329700", + "Timestamp": "2024-05-16T11:33:36.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.696100", + "Timestamp": "2024-05-16T11:33:35.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.050200", - "Timestamp": "2019-10-15T11:12:05.000Z" + "InstanceType": "r5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.429600", + "Timestamp": "2024-05-16T11:33:34.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.050200", - "Timestamp": "2019-10-15T11:12:05.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.424600", + "Timestamp": "2024-05-16T11:33:34.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.510500", - "Timestamp": "2019-10-15T11:12:04.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.299600", + "Timestamp": "2024-05-16T11:33:34.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.510500", - "Timestamp": "2019-10-15T11:12:04.000Z" + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.038700", + "Timestamp": "2024-05-16T11:33:33.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.510500", - "Timestamp": "2019-10-15T11:12:04.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.302200", + "Timestamp": "2024-05-16T11:33:32.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.510500", - "Timestamp": "2019-10-15T11:12:04.000Z" + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.760400", + "Timestamp": "2024-05-16T11:33:31.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.510500", - "Timestamp": "2019-10-15T11:12:04.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.755400", + "Timestamp": "2024-05-16T11:33:31.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.024200", - "Timestamp": "2019-10-15T11:11:52.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.630400", + "Timestamp": "2024-05-16T11:33:31.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.024200", - "Timestamp": "2019-10-15T11:11:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.293700", + "Timestamp": "2024-05-16T11:33:30.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.024200", - "Timestamp": "2019-10-15T11:11:52.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.423600", + "Timestamp": "2024-05-16T11:33:29.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.024200", - "Timestamp": "2019-10-15T11:11:52.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.418600", + "Timestamp": "2024-05-16T11:33:29.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.024200", - "Timestamp": "2019-10-15T11:11:52.000Z" + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.293600", + "Timestamp": "2024-05-16T11:33:29.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.048300", - "Timestamp": "2019-10-15T11:11:45.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.388800", + "Timestamp": "2024-05-16T11:33:29.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.048300", - "Timestamp": "2019-10-15T11:11:45.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.383800", + "Timestamp": "2024-05-16T11:33:29.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.048300", - "Timestamp": "2019-10-15T11:11:45.000Z" + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.258800", + "Timestamp": "2024-05-16T11:33:29.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.048300", - "Timestamp": "2019-10-15T11:11:45.000Z" + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.933800", + "Timestamp": "2024-05-16T11:33:29.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.048300", - "Timestamp": "2019-10-15T11:11:45.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.928800", + "Timestamp": "2024-05-16T11:33:29.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.762300", - "Timestamp": "2019-10-15T11:11:42.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.803800", + "Timestamp": "2024-05-16T11:33:29.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.762300", - "Timestamp": "2019-10-15T11:11:42.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T11:33:28.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.762300", - "Timestamp": "2019-10-15T11:11:42.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108800", + "Timestamp": "2024-05-16T11:33:28.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.762300", - "Timestamp": "2019-10-15T11:11:42.000Z" + "InstanceType": "c5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052800", + "Timestamp": "2024-05-16T11:33:28.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.732300", - "Timestamp": "2019-10-15T11:11:42.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.335300", + "Timestamp": "2024-05-16T11:33:27.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.732300", - "Timestamp": "2019-10-15T11:11:42.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.827300", + "Timestamp": "2024-05-16T11:33:27.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.732300", - "Timestamp": "2019-10-15T11:11:42.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "p2.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.797300", + "Timestamp": "2024-05-16T11:33:27.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.732300", - "Timestamp": "2019-10-15T11:11:42.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.697300", + "Timestamp": "2024-05-16T11:33:27.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.632300", - "Timestamp": "2019-10-15T11:11:42.000Z" + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.317400", + "Timestamp": "2024-05-16T11:33:27.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.632300", - "Timestamp": "2019-10-15T11:11:42.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.960500", + "Timestamp": "2024-05-16T11:33:26.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.632300", - "Timestamp": "2019-10-15T11:11:42.000Z" + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "14.016200", + "Timestamp": "2024-05-16T11:33:26.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.632300", - "Timestamp": "2019-10-15T11:11:42.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.628200", + "Timestamp": "2024-05-16T11:33:25.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.082600", - "Timestamp": "2019-10-15T11:11:26.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.577600", + "Timestamp": "2024-05-16T11:33:24.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.082600", - "Timestamp": "2019-10-15T11:11:26.000Z" + "InstanceType": "p2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.281100", + "Timestamp": "2024-05-16T11:33:24.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.082600", - "Timestamp": "2019-10-15T11:11:26.000Z" - }, - { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.122600", - "Timestamp": "2019-10-15T11:11:26.000Z" + "InstanceType": "p2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.146000", + "Timestamp": "2024-05-16T11:33:24.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.122600", - "Timestamp": "2019-10-15T11:11:26.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "p2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.116000", + "Timestamp": "2024-05-16T11:33:24.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.122600", - "Timestamp": "2019-10-15T11:11:26.000Z" + "InstanceType": "p2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.016000", + "Timestamp": "2024-05-16T11:33:24.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.022600", - "Timestamp": "2019-10-15T11:11:26.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.828000", + "Timestamp": "2024-05-16T11:33:24.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.022600", - "Timestamp": "2019-10-15T11:11:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.282800", + "Timestamp": "2024-05-16T11:33:24.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.022600", - "Timestamp": "2019-10-15T11:11:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.191100", + "Timestamp": "2024-05-16T11:33:24.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.402100", - "Timestamp": "2019-10-15T11:11:10.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.186100", + "Timestamp": "2024-05-16T11:33:24.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.372100", - "Timestamp": "2019-10-15T11:11:10.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.061100", + "Timestamp": "2024-05-16T11:33:24.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.272100", - "Timestamp": "2019-10-15T11:11:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.978500", + "Timestamp": "2024-05-16T11:33:24.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.008100", - "Timestamp": "2019-10-15T11:10:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.973500", + "Timestamp": "2024-05-16T11:33:24.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.008100", - "Timestamp": "2019-10-15T11:10:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.848500", + "Timestamp": "2024-05-16T11:33:24.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.008100", - "Timestamp": "2019-10-15T11:10:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.384500", + "Timestamp": "2024-05-16T11:33:23.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.008100", - "Timestamp": "2019-10-15T11:10:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132700", + "Timestamp": "2024-05-16T11:33:23.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.008100", - "Timestamp": "2019-10-15T11:10:56.000Z" + "InstanceType": "m5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128700", + "Timestamp": "2024-05-16T11:33:23.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.402100", - "Timestamp": "2019-10-15T11:00:42.000Z" + "InstanceType": "m5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072700", + "Timestamp": "2024-05-16T11:33:23.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.372100", - "Timestamp": "2019-10-15T11:00:42.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.627300", + "Timestamp": "2024-05-16T11:33:23.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.272100", - "Timestamp": "2019-10-15T11:00:42.000Z" + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.946700", + "Timestamp": "2024-05-16T11:33:23.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.282800", - "Timestamp": "2019-10-15T10:59:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.622300", + "Timestamp": "2024-05-16T11:33:23.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.252800", - "Timestamp": "2019-10-15T10:59:47.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.941700", + "Timestamp": "2024-05-16T11:33:23.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.152800", - "Timestamp": "2019-10-15T10:59:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.497300", + "Timestamp": "2024-05-16T11:33:23.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.266000", - "Timestamp": "2019-10-15T10:52:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.816700", + "Timestamp": "2024-05-16T11:33:23.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.236000", - "Timestamp": "2019-10-15T10:52:49.000Z" + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.639300", + "Timestamp": "2024-05-16T11:33:23.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.136000", - "Timestamp": "2019-10-15T10:52:49.000Z" + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.609300", + "Timestamp": "2024-05-16T11:33:23.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.063000", - "Timestamp": "2019-10-15T10:51:16.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.509300", + "Timestamp": "2024-05-16T11:33:23.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.130800", - "Timestamp": "2019-10-15T10:46:15.000Z" + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.201400", + "Timestamp": "2024-05-16T11:33:23.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.130800", - "Timestamp": "2019-10-15T10:46:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.196400", + "Timestamp": "2024-05-16T11:33:23.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.130800", - "Timestamp": "2019-10-15T10:46:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.071400", + "Timestamp": "2024-05-16T11:33:23.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.130800", - "Timestamp": "2019-10-15T10:46:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.955100", + "Timestamp": "2024-05-16T11:33:22.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.100800", - "Timestamp": "2019-10-15T10:46:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.597700", + "Timestamp": "2024-05-16T11:33:21.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.100800", - "Timestamp": "2019-10-15T10:46:15.000Z" + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.592700", + "Timestamp": "2024-05-16T11:33:21.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.100800", - "Timestamp": "2019-10-15T10:46:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.467700", + "Timestamp": "2024-05-16T11:33:21.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.100800", - "Timestamp": "2019-10-15T10:46:15.000Z" + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.738300", + "Timestamp": "2024-05-16T11:33:21.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.000800", - "Timestamp": "2019-10-15T10:46:15.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.733300", + "Timestamp": "2024-05-16T11:33:21.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.000800", - "Timestamp": "2019-10-15T10:46:15.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.608300", + "Timestamp": "2024-05-16T11:33:21.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.000800", - "Timestamp": "2019-10-15T10:46:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.779000", + "Timestamp": "2024-05-16T11:33:21.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.000800", - "Timestamp": "2019-10-15T10:46:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.774000", + "Timestamp": "2024-05-16T11:33:21.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.736800", - "Timestamp": "2019-10-15T10:44:41.000Z" + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.649000", + "Timestamp": "2024-05-16T11:33:21.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.736800", - "Timestamp": "2019-10-15T10:44:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.196200", + "Timestamp": "2024-05-16T11:33:21.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.736800", - "Timestamp": "2019-10-15T10:44:41.000Z" + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.123700", + "Timestamp": "2024-05-16T11:33:20.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.736800", - "Timestamp": "2019-10-15T10:44:41.000Z" + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.552300", + "Timestamp": "2024-05-16T11:33:20.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.762300", - "Timestamp": "2019-10-15T10:43:49.000Z" + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.106900", + "Timestamp": "2024-05-16T11:33:20.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.732300", - "Timestamp": "2019-10-15T10:43:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.467800", + "Timestamp": "2024-05-16T11:33:19.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.632300", - "Timestamp": "2019-10-15T10:43:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.061400", + "Timestamp": "2024-05-16T11:33:18.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.126200", - "Timestamp": "2019-10-15T10:42:55.000Z" + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.306700", + "Timestamp": "2024-05-16T11:33:17.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.166200", - "Timestamp": "2019-10-15T10:42:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.420100", + "Timestamp": "2024-05-16T11:33:16.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.066200", - "Timestamp": "2019-10-15T10:42:55.000Z" + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.613600", + "Timestamp": "2024-05-16T11:33:16.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.840000", - "Timestamp": "2019-10-15T10:34:03.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.148200", + "Timestamp": "2024-05-16T11:33:15.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.810000", - "Timestamp": "2019-10-15T10:34:03.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.775900", + "Timestamp": "2024-05-16T11:33:15.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.710000", - "Timestamp": "2019-10-15T10:34:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.308400", + "Timestamp": "2024-05-16T11:33:15.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.042000", - "Timestamp": "2019-10-15T10:30:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.076600", + "Timestamp": "2024-05-16T11:33:15.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.700000", - "Timestamp": "2019-10-15T10:30:17.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T11:33:14.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.670000", - "Timestamp": "2019-10-15T10:30:17.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-16T11:33:14.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.570000", - "Timestamp": "2019-10-15T10:30:17.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046300", + "Timestamp": "2024-05-16T11:33:14.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.366000", - "Timestamp": "2019-10-15T10:26:20.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.232100", + "Timestamp": "2024-05-16T11:33:13.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.336000", - "Timestamp": "2019-10-15T10:26:20.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.160200", + "Timestamp": "2024-05-16T11:33:13.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.236000", - "Timestamp": "2019-10-15T10:26:20.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141800", + "Timestamp": "2024-05-16T11:33:13.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.318300", - "Timestamp": "2019-10-15T10:18:39.000Z" + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181800", + "Timestamp": "2024-05-16T11:33:13.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.288300", - "Timestamp": "2019-10-15T10:18:39.000Z" + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081800", + "Timestamp": "2024-05-16T11:33:13.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.188300", - "Timestamp": "2019-10-15T10:18:39.000Z" + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.803500", + "Timestamp": "2024-05-16T11:33:13.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.008100", - "Timestamp": "2019-10-15T10:12:02.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.798500", + "Timestamp": "2024-05-16T11:33:13.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.008100", - "Timestamp": "2019-10-15T10:12:02.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.673500", + "Timestamp": "2024-05-16T11:33:13.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.008100", - "Timestamp": "2019-10-15T10:12:02.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.395500", + "Timestamp": "2024-05-16T11:33:13.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.008100", - "Timestamp": "2019-10-15T10:12:02.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "11.119300", + "Timestamp": "2024-05-16T11:33:13.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.008100", - "Timestamp": "2019-10-15T10:12:02.000Z" + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "11.114300", + "Timestamp": "2024-05-16T11:33:13.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.985300", - "Timestamp": "2019-10-15T10:11:55.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "10.989300", + "Timestamp": "2024-05-16T11:33:13.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.985300", - "Timestamp": "2019-10-15T10:11:55.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.825200", + "Timestamp": "2024-05-16T11:33:12.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.985300", - "Timestamp": "2019-10-15T10:11:55.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.820200", + "Timestamp": "2024-05-16T11:33:12.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.985300", - "Timestamp": "2019-10-15T10:11:55.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.695200", + "Timestamp": "2024-05-16T11:33:12.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.985300", - "Timestamp": "2019-10-15T10:11:55.000Z" + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.366700", + "Timestamp": "2024-05-16T11:33:11.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.907300", - "Timestamp": "2019-10-15T10:11:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.361700", + "Timestamp": "2024-05-16T11:33:11.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.907300", - "Timestamp": "2019-10-15T10:11:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.236700", + "Timestamp": "2024-05-16T11:33:11.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.907300", - "Timestamp": "2019-10-15T10:11:51.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.907300", - "Timestamp": "2019-10-15T10:11:51.000Z" + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.224100", + "Timestamp": "2024-05-16T11:33:11.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.877300", - "Timestamp": "2019-10-15T10:11:51.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.219100", + "Timestamp": "2024-05-16T11:33:11.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.877300", - "Timestamp": "2019-10-15T10:11:51.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.094100", + "Timestamp": "2024-05-16T11:33:11.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.877300", - "Timestamp": "2019-10-15T10:11:51.000Z" + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.141700", + "Timestamp": "2024-05-16T11:33:11.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.877300", - "Timestamp": "2019-10-15T10:11:51.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.132800", + "Timestamp": "2024-05-16T11:33:11.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.777300", - "Timestamp": "2019-10-15T10:11:51.000Z" + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.649000", + "Timestamp": "2024-05-16T11:33:11.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.777300", - "Timestamp": "2019-10-15T10:11:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.353900", + "Timestamp": "2024-05-16T11:33:11.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.777300", - "Timestamp": "2019-10-15T10:11:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.348900", + "Timestamp": "2024-05-16T11:33:11.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.777300", - "Timestamp": "2019-10-15T10:11:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.223900", + "Timestamp": "2024-05-16T11:33:11.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.415000", - "Timestamp": "2019-10-15T10:11:51.000Z" + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.849400", + "Timestamp": "2024-05-16T11:33:10.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.385000", - "Timestamp": "2019-10-15T10:11:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.531400", + "Timestamp": "2024-05-16T11:33:10.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.285000", - "Timestamp": "2019-10-15T10:11:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.054600", + "Timestamp": "2024-05-16T11:33:09.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.032200", - "Timestamp": "2019-10-15T10:11:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.328800", + "Timestamp": "2024-05-16T11:33:09.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.032200", - "Timestamp": "2019-10-15T10:11:25.000Z" + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323800", + "Timestamp": "2024-05-16T11:33:09.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.032200", - "Timestamp": "2019-10-15T10:11:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.198800", + "Timestamp": "2024-05-16T11:33:09.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.032200", - "Timestamp": "2019-10-15T10:11:25.000Z" + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.841800", + "Timestamp": "2024-05-16T11:33:09.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.032200", - "Timestamp": "2019-10-15T10:11:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.751000", + "Timestamp": "2024-05-16T11:33:09.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.176000", - "Timestamp": "2019-10-15T10:11:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.746000", + "Timestamp": "2024-05-16T11:33:09.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.176000", - "Timestamp": "2019-10-15T10:11:25.000Z" + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.621000", + "Timestamp": "2024-05-16T11:33:09.000Z" }, { "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.176000", - "Timestamp": "2019-10-15T10:11:25.000Z" + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.550100", + "Timestamp": "2024-05-16T11:33:08.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.176000", - "Timestamp": "2019-10-15T10:11:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.247300", + "Timestamp": "2024-05-16T11:33:07.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.176000", - "Timestamp": "2019-10-15T10:11:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.242300", + "Timestamp": "2024-05-16T11:33:07.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.146000", - "Timestamp": "2019-10-15T10:11:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.117300", + "Timestamp": "2024-05-16T11:33:07.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.146000", - "Timestamp": "2019-10-15T10:11:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.329000", + "Timestamp": "2024-05-16T11:33:07.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.146000", - "Timestamp": "2019-10-15T10:11:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324000", + "Timestamp": "2024-05-16T11:33:07.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.146000", - "Timestamp": "2019-10-15T10:11:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199000", + "Timestamp": "2024-05-16T11:33:07.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.146000", - "Timestamp": "2019-10-15T10:11:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.498400", + "Timestamp": "2024-05-16T11:33:06.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.046000", - "Timestamp": "2019-10-15T10:11:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.929500", + "Timestamp": "2024-05-16T11:33:06.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.046000", - "Timestamp": "2019-10-15T10:11:25.000Z" + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.924500", + "Timestamp": "2024-05-16T11:33:06.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.046000", - "Timestamp": "2019-10-15T10:11:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.799500", + "Timestamp": "2024-05-16T11:33:06.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.046000", - "Timestamp": "2019-10-15T10:11:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.572900", + "Timestamp": "2024-05-16T11:33:06.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.046000", - "Timestamp": "2019-10-15T10:11:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.567900", + "Timestamp": "2024-05-16T11:33:06.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.008000", - "Timestamp": "2019-10-15T10:11:24.000Z" + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.442900", + "Timestamp": "2024-05-16T11:33:06.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.8xlarge", + "InstanceType": "m6id.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.008000", - "Timestamp": "2019-10-15T10:11:24.000Z" + "SpotPrice": "4.564300", + "Timestamp": "2024-05-16T11:33:05.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.008000", - "Timestamp": "2019-10-15T10:11:24.000Z" + "SpotPrice": "7.008200", + "Timestamp": "2024-05-16T11:33:04.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.008000", - "Timestamp": "2019-10-15T10:11:24.000Z" + "InstanceType": "i2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.417500", + "Timestamp": "2024-05-16T11:33:04.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.008000", - "Timestamp": "2019-10-15T10:11:24.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.457500", + "Timestamp": "2024-05-16T11:33:04.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.176000", - "Timestamp": "2019-10-15T10:11:24.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.357500", + "Timestamp": "2024-05-16T11:33:04.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.176000", - "Timestamp": "2019-10-15T10:11:24.000Z" + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.245400", + "Timestamp": "2024-05-16T11:33:04.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.176000", - "Timestamp": "2019-10-15T10:11:24.000Z" + "SpotPrice": "4.775200", + "Timestamp": "2024-05-16T11:33:04.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.176000", - "Timestamp": "2019-10-15T10:11:24.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.770200", + "Timestamp": "2024-05-16T11:33:04.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.645200", + "Timestamp": "2024-05-16T11:33:04.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.8xlarge", + "InstanceType": "r7i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.176000", - "Timestamp": "2019-10-15T10:11:24.000Z" + "SpotPrice": "0.874500", + "Timestamp": "2024-05-16T11:33:04.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.146000", - "Timestamp": "2019-10-15T10:11:24.000Z" + "SpotPrice": "0.869500", + "Timestamp": "2024-05-16T11:33:04.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.146000", - "Timestamp": "2019-10-15T10:11:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.744500", + "Timestamp": "2024-05-16T11:33:04.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.146000", - "Timestamp": "2019-10-15T10:11:24.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.449300", + "Timestamp": "2024-05-16T11:33:04.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.146000", - "Timestamp": "2019-10-15T10:11:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.538400", + "Timestamp": "2024-05-16T11:33:04.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.146000", - "Timestamp": "2019-10-15T10:11:24.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.535400", + "Timestamp": "2024-05-16T11:33:04.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.046000", - "Timestamp": "2019-10-15T10:11:24.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.505400", + "Timestamp": "2024-05-16T11:33:04.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.8xlarge", + "InstanceType": "m5.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.046000", - "Timestamp": "2019-10-15T10:11:24.000Z" + "SpotPrice": "1.405400", + "Timestamp": "2024-05-16T11:33:04.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.046000", - "Timestamp": "2019-10-15T10:11:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.251400", + "Timestamp": "2024-05-16T11:33:04.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.046000", - "Timestamp": "2019-10-15T10:11:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.246400", + "Timestamp": "2024-05-16T11:33:04.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.8xlarge", + "InstanceType": "m5ad.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.046000", - "Timestamp": "2019-10-15T10:11:24.000Z" + "SpotPrice": "1.121400", + "Timestamp": "2024-05-16T11:33:04.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.008000", - "Timestamp": "2019-10-15T10:11:24.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.493300", + "Timestamp": "2024-05-16T11:33:03.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.008000", - "Timestamp": "2019-10-15T10:11:24.000Z" - }, - { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.008000", - "Timestamp": "2019-10-15T10:11:24.000Z" + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.382600", + "Timestamp": "2024-05-16T11:33:03.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.008000", - "Timestamp": "2019-10-15T10:11:24.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.378600", + "Timestamp": "2024-05-16T11:33:03.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.008000", - "Timestamp": "2019-10-15T10:11:24.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.322600", + "Timestamp": "2024-05-16T11:33:03.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-15T10:11:23.000Z" + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.636500", + "Timestamp": "2024-05-16T11:33:02.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-15T10:11:23.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "12.503100", + "Timestamp": "2024-05-16T11:33:02.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-15T10:11:11.000Z" - }, - { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-15T10:11:11.000Z" + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.701200", + "Timestamp": "2024-05-16T11:33:01.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-15T10:11:11.000Z" + "InstanceType": "m3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.180500", + "Timestamp": "2024-05-16T11:33:01.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-15T10:11:11.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.220500", + "Timestamp": "2024-05-16T11:33:01.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-15T10:11:11.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120500", + "Timestamp": "2024-05-16T11:33:01.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-15T10:11:11.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354400", + "Timestamp": "2024-05-16T11:33:01.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-15T10:11:11.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349400", + "Timestamp": "2024-05-16T11:33:01.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-15T10:11:11.000Z" + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224400", + "Timestamp": "2024-05-16T11:33:01.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-15T10:11:11.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.728000", + "Timestamp": "2024-05-16T11:33:01.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-15T10:11:11.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-15T10:11:11.000Z" + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.166900", + "Timestamp": "2024-05-16T11:33:00.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-15T10:11:11.000Z" + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.519000", + "Timestamp": "2024-05-16T11:33:00.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-15T10:11:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.514000", + "Timestamp": "2024-05-16T11:33:00.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-15T10:11:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.389000", + "Timestamp": "2024-05-16T11:33:00.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-15T10:11:11.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.164400", + "Timestamp": "2024-05-16T11:33:00.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m2.2xlarge", + "InstanceType": "c5a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.249000", - "Timestamp": "2019-10-15T10:10:40.000Z" + "SpotPrice": "0.517600", + "Timestamp": "2024-05-16T11:32:59.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.249000", - "Timestamp": "2019-10-15T10:10:40.000Z" + "SpotPrice": "0.262000", + "Timestamp": "2024-05-16T11:32:59.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m2.2xlarge", + "InstanceType": "m7i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.249000", - "Timestamp": "2019-10-15T10:10:40.000Z" + "SpotPrice": "4.431400", + "Timestamp": "2024-05-16T11:32:59.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.249000", - "Timestamp": "2019-10-15T10:10:40.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.249000", - "Timestamp": "2019-10-15T10:10:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.473100", + "Timestamp": "2024-05-16T11:32:59.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.249000", - "Timestamp": "2019-10-15T10:10:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.468100", + "Timestamp": "2024-05-16T11:32:59.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.249000", - "Timestamp": "2019-10-15T10:10:39.000Z" + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.343100", + "Timestamp": "2024-05-16T11:32:59.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.249000", - "Timestamp": "2019-10-15T10:10:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.201200", + "Timestamp": "2024-05-16T11:32:59.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.109000", - "Timestamp": "2019-10-15T10:10:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.196200", + "Timestamp": "2024-05-16T11:32:59.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.109000", - "Timestamp": "2019-10-15T10:10:39.000Z" + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.071200", + "Timestamp": "2024-05-16T11:32:59.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m2.2xlarge", + "InstanceType": "i4i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.109000", - "Timestamp": "2019-10-15T10:10:39.000Z" + "SpotPrice": "2.662300", + "Timestamp": "2024-05-16T11:32:58.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.109000", - "Timestamp": "2019-10-15T10:10:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.657300", + "Timestamp": "2024-05-16T11:32:58.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.149000", - "Timestamp": "2019-10-15T10:10:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.532300", + "Timestamp": "2024-05-16T11:32:58.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.149000", - "Timestamp": "2019-10-15T10:10:39.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.630800", + "Timestamp": "2024-05-16T11:32:58.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.149000", - "Timestamp": "2019-10-15T10:10:39.000Z" + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.141600", + "Timestamp": "2024-05-16T11:32:58.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.149000", - "Timestamp": "2019-10-15T10:10:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.855700", + "Timestamp": "2024-05-16T11:32:58.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.049000", - "Timestamp": "2019-10-15T10:10:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.850700", + "Timestamp": "2024-05-16T11:32:58.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.049000", - "Timestamp": "2019-10-15T10:10:39.000Z" + "SpotPrice": "1.725700", + "Timestamp": "2024-05-16T11:32:58.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.049000", - "Timestamp": "2019-10-15T10:10:39.000Z" + "InstanceType": "m5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.225500", + "Timestamp": "2024-05-16T11:32:57.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.049000", - "Timestamp": "2019-10-15T10:10:39.000Z" + "InstanceType": "m5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.000400", + "Timestamp": "2024-05-16T11:32:57.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.109000", - "Timestamp": "2019-10-15T10:10:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.381700", + "Timestamp": "2024-05-16T11:32:57.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.109000", - "Timestamp": "2019-10-15T10:10:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.376700", + "Timestamp": "2024-05-16T11:32:57.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.109000", - "Timestamp": "2019-10-15T10:10:39.000Z" + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.251700", + "Timestamp": "2024-05-16T11:32:57.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.109000", - "Timestamp": "2019-10-15T10:10:39.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.274700", + "Timestamp": "2024-05-16T11:32:57.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.149000", - "Timestamp": "2019-10-15T10:10:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.377800", + "Timestamp": "2024-05-16T11:32:57.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.149000", - "Timestamp": "2019-10-15T10:10:39.000Z" + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.075200", + "Timestamp": "2024-05-16T11:32:57.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.149000", - "Timestamp": "2019-10-15T10:10:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.614700", + "Timestamp": "2024-05-16T11:32:56.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.149000", - "Timestamp": "2019-10-15T10:10:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.584700", + "Timestamp": "2024-05-16T11:32:56.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.049000", - "Timestamp": "2019-10-15T10:10:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.484700", + "Timestamp": "2024-05-16T11:32:56.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.049000", - "Timestamp": "2019-10-15T10:10:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.784400", + "Timestamp": "2024-05-16T11:32:56.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.049000", - "Timestamp": "2019-10-15T10:10:39.000Z" + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.754400", + "Timestamp": "2024-05-16T11:32:56.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.049000", - "Timestamp": "2019-10-15T10:10:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.654400", + "Timestamp": "2024-05-16T11:32:56.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "h1.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.264000", - "Timestamp": "2019-10-15T10:10:17.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.241700", + "Timestamp": "2024-05-16T11:32:56.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "h1.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.264000", - "Timestamp": "2019-10-15T10:10:17.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.678600", + "Timestamp": "2024-05-16T11:32:56.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "h1.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.264000", - "Timestamp": "2019-10-15T10:10:17.000Z" + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.673600", + "Timestamp": "2024-05-16T11:32:56.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.548600", + "Timestamp": "2024-05-16T11:32:56.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "h1.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.264000", - "Timestamp": "2019-10-15T10:10:17.000Z" + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.515600", + "Timestamp": "2024-05-16T11:32:56.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "h1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.450000", - "Timestamp": "2019-10-15T10:09:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.781600", + "Timestamp": "2024-05-16T11:32:55.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "h1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.450000", - "Timestamp": "2019-10-15T10:09:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.776600", + "Timestamp": "2024-05-16T11:32:55.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.651600", + "Timestamp": "2024-05-16T11:32:55.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "h1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.450000", - "Timestamp": "2019-10-15T10:09:57.000Z" + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.258200", + "Timestamp": "2024-05-16T11:32:55.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "h1.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.420000", - "Timestamp": "2019-10-15T10:09:57.000Z" + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.067500", + "Timestamp": "2024-05-16T11:32:55.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "h1.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.420000", - "Timestamp": "2019-10-15T10:09:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.476000", + "Timestamp": "2024-05-16T11:32:55.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "h1.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.420000", - "Timestamp": "2019-10-15T10:09:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.471000", + "Timestamp": "2024-05-16T11:32:55.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "h1.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.320000", - "Timestamp": "2019-10-15T10:09:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.346000", + "Timestamp": "2024-05-16T11:32:55.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "h1.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.320000", - "Timestamp": "2019-10-15T10:09:57.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.217100", + "Timestamp": "2024-05-16T11:32:55.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "h1.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.320000", - "Timestamp": "2019-10-15T10:09:57.000Z" + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.213400", + "Timestamp": "2024-05-16T11:32:55.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.674100", - "Timestamp": "2019-10-15T10:09:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157100", + "Timestamp": "2024-05-16T11:32:55.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.674100", - "Timestamp": "2019-10-15T10:09:56.000Z" + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.167300", + "Timestamp": "2024-05-16T11:32:55.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.674100", - "Timestamp": "2019-10-15T10:09:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.131900", + "Timestamp": "2024-05-16T11:32:55.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.674100", - "Timestamp": "2019-10-15T10:09:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.387500", + "Timestamp": "2024-05-16T11:32:55.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.674100", - "Timestamp": "2019-10-15T10:09:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.382500", + "Timestamp": "2024-05-16T11:32:55.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.644100", - "Timestamp": "2019-10-15T10:09:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.257500", + "Timestamp": "2024-05-16T11:32:55.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.644100", - "Timestamp": "2019-10-15T10:09:56.000Z" + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.607800", + "Timestamp": "2024-05-16T11:32:55.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.644100", - "Timestamp": "2019-10-15T10:09:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.692500", + "Timestamp": "2024-05-16T11:32:55.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.644100", - "Timestamp": "2019-10-15T10:09:56.000Z" + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.198900", + "Timestamp": "2024-05-16T11:32:54.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.644100", - "Timestamp": "2019-10-15T10:09:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.725900", + "Timestamp": "2024-05-16T11:32:54.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.544100", - "Timestamp": "2019-10-15T10:09:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.695900", + "Timestamp": "2024-05-16T11:32:54.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.544100", - "Timestamp": "2019-10-15T10:09:56.000Z" + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.595900", + "Timestamp": "2024-05-16T11:32:54.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.544100", - "Timestamp": "2019-10-15T10:09:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099000", + "Timestamp": "2024-05-16T11:32:54.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.544100", - "Timestamp": "2019-10-15T10:09:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095300", + "Timestamp": "2024-05-16T11:32:54.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.544100", - "Timestamp": "2019-10-15T10:09:56.000Z" + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039000", + "Timestamp": "2024-05-16T11:32:54.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.016100", - "Timestamp": "2019-10-15T10:09:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.552800", + "Timestamp": "2024-05-16T11:32:53.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.016100", - "Timestamp": "2019-10-15T10:09:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.547800", + "Timestamp": "2024-05-16T11:32:53.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.016100", - "Timestamp": "2019-10-15T10:09:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.422800", + "Timestamp": "2024-05-16T11:32:53.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.016100", - "Timestamp": "2019-10-15T10:09:55.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.340400", + "Timestamp": "2024-05-16T11:32:53.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.016100", - "Timestamp": "2019-10-15T10:09:55.000Z" + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.335400", + "Timestamp": "2024-05-16T11:32:53.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.762300", - "Timestamp": "2019-10-15T10:02:17.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.210400", + "Timestamp": "2024-05-16T11:32:53.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.732300", - "Timestamp": "2019-10-15T10:02:17.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.945600", + "Timestamp": "2024-05-16T11:32:53.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.632300", - "Timestamp": "2019-10-15T10:02:17.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.915600", + "Timestamp": "2024-05-16T11:32:53.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.121900", - "Timestamp": "2019-10-15T10:00:46.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.815600", + "Timestamp": "2024-05-16T11:32:53.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.161900", - "Timestamp": "2019-10-15T10:00:46.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.060200", + "Timestamp": "2024-05-16T11:32:53.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.061900", - "Timestamp": "2019-10-15T10:00:46.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.250700", + "Timestamp": "2024-05-16T11:32:53.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.841400", + "Timestamp": "2024-05-16T11:32:53.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.2xlarge", + "InstanceType": "c5.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.259500", - "Timestamp": "2019-10-15T09:52:50.000Z" + "SpotPrice": "1.998900", + "Timestamp": "2024-05-16T11:32:52.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.2xlarge", + "InstanceType": "c5.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.229500", - "Timestamp": "2019-10-15T09:52:50.000Z" + "SpotPrice": "1.968900", + "Timestamp": "2024-05-16T11:32:52.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.2xlarge", + "InstanceType": "c5.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.129500", - "Timestamp": "2019-10-15T09:52:50.000Z" + "SpotPrice": "1.868900", + "Timestamp": "2024-05-16T11:32:52.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.872500", - "Timestamp": "2019-10-15T09:44:06.000Z" + "SpotPrice": "6.172800", + "Timestamp": "2024-05-16T11:32:52.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i2.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.872500", - "Timestamp": "2019-10-15T09:44:06.000Z" + "SpotPrice": "3.628100", + "Timestamp": "2024-05-16T11:32:52.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.872500", - "Timestamp": "2019-10-15T09:44:06.000Z" + "SpotPrice": "0.272300", + "Timestamp": "2024-05-16T11:32:52.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.872500", - "Timestamp": "2019-10-15T09:44:06.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.864700", + "Timestamp": "2024-05-16T11:32:51.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.872500", - "Timestamp": "2019-10-15T09:44:06.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.859700", + "Timestamp": "2024-05-16T11:32:51.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.872500", - "Timestamp": "2019-10-15T09:44:06.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.734700", + "Timestamp": "2024-05-16T11:32:51.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.872500", - "Timestamp": "2019-10-15T09:44:06.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.242300", + "Timestamp": "2024-05-16T11:32:51.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.872500", - "Timestamp": "2019-10-15T09:44:06.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.554600", + "Timestamp": "2024-05-16T11:32:50.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.4xlarge", + "InstanceType": "m5n.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.388500", - "Timestamp": "2019-10-15T09:43:42.000Z" + "SpotPrice": "0.123300", + "Timestamp": "2024-05-16T11:32:50.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.388500", - "Timestamp": "2019-10-15T09:43:42.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119300", + "Timestamp": "2024-05-16T11:32:50.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.388500", - "Timestamp": "2019-10-15T09:43:42.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063300", + "Timestamp": "2024-05-16T11:32:50.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.358500", - "Timestamp": "2019-10-15T09:43:42.000Z" + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.594200", + "Timestamp": "2024-05-16T11:32:50.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.358500", - "Timestamp": "2019-10-15T09:43:42.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.335100", + "Timestamp": "2024-05-16T11:32:50.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.358500", - "Timestamp": "2019-10-15T09:43:42.000Z" + "SpotPrice": "0.330100", + "Timestamp": "2024-05-16T11:32:50.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.4xlarge", + "InstanceType": "c5ad.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.258500", - "Timestamp": "2019-10-15T09:43:42.000Z" + "SpotPrice": "0.205100", + "Timestamp": "2024-05-16T11:32:50.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.258500", - "Timestamp": "2019-10-15T09:43:42.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.752900", + "Timestamp": "2024-05-16T11:32:50.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.747900", + "Timestamp": "2024-05-16T11:32:50.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.258500", - "Timestamp": "2019-10-15T09:43:42.000Z" + "SpotPrice": "1.622900", + "Timestamp": "2024-05-16T11:32:50.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "f1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.625000", - "Timestamp": "2019-10-15T09:40:21.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.729600", + "Timestamp": "2024-05-16T11:32:49.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "f1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.625000", - "Timestamp": "2019-10-15T09:40:21.000Z" + "InstanceType": "m2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176100", + "Timestamp": "2024-05-16T11:32:49.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "f1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.625000", - "Timestamp": "2019-10-15T09:40:21.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.216100", + "Timestamp": "2024-05-16T11:32:49.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "f1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.625000", - "Timestamp": "2019-10-15T09:40:21.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116100", + "Timestamp": "2024-05-16T11:32:49.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "f1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.625000", - "Timestamp": "2019-10-15T09:40:21.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.757300", + "Timestamp": "2024-05-16T11:32:49.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "f1.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.595000", - "Timestamp": "2019-10-15T09:40:21.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.752300", + "Timestamp": "2024-05-16T11:32:49.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "f1.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.595000", - "Timestamp": "2019-10-15T09:40:21.000Z" + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.627300", + "Timestamp": "2024-05-16T11:32:49.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "f1.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.595000", - "Timestamp": "2019-10-15T09:40:21.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.583000", + "Timestamp": "2024-05-16T11:32:49.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.761400", + "Timestamp": "2024-05-16T11:32:48.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "f1.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.595000", - "Timestamp": "2019-10-15T09:40:21.000Z" + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.450500", + "Timestamp": "2024-05-16T11:32:48.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "f1.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.595000", - "Timestamp": "2019-10-15T09:40:21.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.445500", + "Timestamp": "2024-05-16T11:32:48.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "f1.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.495000", - "Timestamp": "2019-10-15T09:40:21.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.320500", + "Timestamp": "2024-05-16T11:32:48.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "f1.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.495000", - "Timestamp": "2019-10-15T09:40:21.000Z" + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145800", + "Timestamp": "2024-05-16T11:32:48.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "f1.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.495000", - "Timestamp": "2019-10-15T09:40:21.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142100", + "Timestamp": "2024-05-16T11:32:48.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "f1.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.495000", - "Timestamp": "2019-10-15T09:40:21.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085800", + "Timestamp": "2024-05-16T11:32:48.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "f1.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.495000", - "Timestamp": "2019-10-15T09:40:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.119200", + "Timestamp": "2024-05-16T11:32:48.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.341800", - "Timestamp": "2019-10-15T09:38:11.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.114200", + "Timestamp": "2024-05-16T11:32:48.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252000", - "Timestamp": "2019-10-15T09:35:37.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.989200", + "Timestamp": "2024-05-16T11:32:48.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.146100", - "Timestamp": "2019-10-15T09:27:29.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.427100", + "Timestamp": "2024-05-16T11:32:47.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.186100", - "Timestamp": "2019-10-15T09:27:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.226200", + "Timestamp": "2024-05-16T11:32:47.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.086100", - "Timestamp": "2019-10-15T09:27:29.000Z" + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.080000", + "Timestamp": "2024-05-16T11:32:47.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.674100", - "Timestamp": "2019-10-15T09:27:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.353800", + "Timestamp": "2024-05-16T11:32:47.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.644100", - "Timestamp": "2019-10-15T09:27:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.148600", + "Timestamp": "2024-05-16T11:32:46.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.544100", - "Timestamp": "2019-10-15T09:27:25.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.149500", + "Timestamp": "2024-05-16T11:32:46.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.048300", - "Timestamp": "2019-10-15T09:21:04.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.154700", + "Timestamp": "2024-05-16T11:32:46.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.510500", - "Timestamp": "2019-10-15T09:19:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.123200", + "Timestamp": "2024-05-16T11:32:46.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.133200", - "Timestamp": "2019-10-15T09:19:45.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.129400", + "Timestamp": "2024-05-16T11:32:46.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.173200", - "Timestamp": "2019-10-15T09:19:45.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128400", + "Timestamp": "2024-05-16T11:32:46.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.073200", - "Timestamp": "2019-10-15T09:19:45.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105100", + "Timestamp": "2024-05-16T11:32:46.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.086800", - "Timestamp": "2019-10-15T09:18:35.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107000", + "Timestamp": "2024-05-16T11:32:46.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.126800", - "Timestamp": "2019-10-15T09:18:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101400", + "Timestamp": "2024-05-16T11:32:46.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.026800", - "Timestamp": "2019-10-15T09:18:35.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T11:32:46.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.048300", - "Timestamp": "2019-10-15T09:13:08.000Z" + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045100", + "Timestamp": "2024-05-16T11:32:46.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.048300", - "Timestamp": "2019-10-15T09:13:08.000Z" + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047000", + "Timestamp": "2024-05-16T11:32:46.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.048300", - "Timestamp": "2019-10-15T09:13:08.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.554900", + "Timestamp": "2024-05-16T11:32:46.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.048300", - "Timestamp": "2019-10-15T09:13:08.000Z" + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.455400", + "Timestamp": "2024-05-16T11:32:45.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.048300", - "Timestamp": "2019-10-15T09:13:08.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.450400", + "Timestamp": "2024-05-16T11:32:45.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.272500", - "Timestamp": "2019-10-15T09:11:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.325400", + "Timestamp": "2024-05-16T11:32:45.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.242500", - "Timestamp": "2019-10-15T09:11:56.000Z" + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.772000", + "Timestamp": "2024-05-16T11:32:45.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.142500", - "Timestamp": "2019-10-15T09:11:56.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T09:10:38.000Z" - }, - { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T09:10:38.000Z" + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.742000", + "Timestamp": "2024-05-16T11:32:45.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T09:10:38.000Z" + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.642000", + "Timestamp": "2024-05-16T11:32:45.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T09:10:38.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.255400", + "Timestamp": "2024-05-16T11:32:45.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T09:10:38.000Z" + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.251400", + "Timestamp": "2024-05-16T11:32:45.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T09:04:00.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195400", + "Timestamp": "2024-05-16T11:32:45.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.415000", - "Timestamp": "2019-10-15T09:02:58.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.302300", + "Timestamp": "2024-05-16T11:32:45.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.385000", - "Timestamp": "2019-10-15T09:02:58.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299800", + "Timestamp": "2024-05-16T11:32:45.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.285000", - "Timestamp": "2019-10-15T09:02:58.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.297300", + "Timestamp": "2024-05-16T11:32:45.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m1.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.283000", - "Timestamp": "2019-10-15T09:02:52.000Z" + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294800", + "Timestamp": "2024-05-16T11:32:45.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.125900", - "Timestamp": "2019-10-15T08:41:45.000Z" + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172300", + "Timestamp": "2024-05-16T11:32:45.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.125900", - "Timestamp": "2019-10-15T08:41:45.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169800", + "Timestamp": "2024-05-16T11:32:45.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.125900", - "Timestamp": "2019-10-15T08:41:45.000Z" + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.780100", + "Timestamp": "2024-05-16T11:32:45.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.125900", - "Timestamp": "2019-10-15T08:41:45.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.775100", + "Timestamp": "2024-05-16T11:32:45.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.125900", - "Timestamp": "2019-10-15T08:41:45.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.650100", + "Timestamp": "2024-05-16T11:32:45.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.125900", - "Timestamp": "2019-10-15T08:41:45.000Z" + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.574300", + "Timestamp": "2024-05-16T11:32:44.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.309800", - "Timestamp": "2019-10-15T08:37:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.569300", + "Timestamp": "2024-05-16T11:32:44.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.279800", - "Timestamp": "2019-10-15T08:37:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.444300", + "Timestamp": "2024-05-16T11:32:44.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.179800", - "Timestamp": "2019-10-15T08:37:51.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.400100", + "Timestamp": "2024-05-16T11:32:44.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.096500", - "Timestamp": "2019-10-15T08:37:49.000Z" + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.395100", + "Timestamp": "2024-05-16T11:32:44.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.136500", - "Timestamp": "2019-10-15T08:37:49.000Z" + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.270100", + "Timestamp": "2024-05-16T11:32:44.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.036500", - "Timestamp": "2019-10-15T08:37:49.000Z" + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.293300", + "Timestamp": "2024-05-16T11:32:44.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.093900", - "Timestamp": "2019-10-15T08:33:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.288300", + "Timestamp": "2024-05-16T11:32:44.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.133900", - "Timestamp": "2019-10-15T08:33:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.163300", + "Timestamp": "2024-05-16T11:32:44.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.033900", - "Timestamp": "2019-10-15T08:33:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.369400", + "Timestamp": "2024-05-16T11:32:43.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.105100", - "Timestamp": "2019-10-15T08:11:43.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.364400", + "Timestamp": "2024-05-16T11:32:43.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.105100", - "Timestamp": "2019-10-15T08:11:43.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.239400", + "Timestamp": "2024-05-16T11:32:43.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.105100", - "Timestamp": "2019-10-15T08:11:43.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.192900", + "Timestamp": "2024-05-16T11:32:43.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.105100", - "Timestamp": "2019-10-15T08:11:43.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.795400", + "Timestamp": "2024-05-16T11:32:43.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.105100", - "Timestamp": "2019-10-15T08:11:43.000Z" + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.790400", + "Timestamp": "2024-05-16T11:32:43.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.145100", - "Timestamp": "2019-10-15T08:11:43.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.665400", + "Timestamp": "2024-05-16T11:32:43.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.145100", - "Timestamp": "2019-10-15T08:11:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.482600", + "Timestamp": "2024-05-16T11:32:43.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.145100", - "Timestamp": "2019-10-15T08:11:43.000Z" + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.474900", + "Timestamp": "2024-05-16T11:32:43.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.145100", - "Timestamp": "2019-10-15T08:11:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.477600", + "Timestamp": "2024-05-16T11:32:43.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.145100", - "Timestamp": "2019-10-15T08:11:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.469900", + "Timestamp": "2024-05-16T11:32:43.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.045100", - "Timestamp": "2019-10-15T08:11:43.000Z" - }, - { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.045100", - "Timestamp": "2019-10-15T08:11:43.000Z" + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.352600", + "Timestamp": "2024-05-16T11:32:43.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.045100", - "Timestamp": "2019-10-15T08:11:43.000Z" + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.344900", + "Timestamp": "2024-05-16T11:32:43.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.045100", - "Timestamp": "2019-10-15T08:11:43.000Z" + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079600", + "Timestamp": "2024-05-16T11:32:43.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.045100", - "Timestamp": "2019-10-15T08:11:43.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075900", + "Timestamp": "2024-05-16T11:32:43.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m1.large", - "ProductDescription": "Windows", - "SpotPrice": "0.141500", - "Timestamp": "2019-10-15T08:11:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019600", + "Timestamp": "2024-05-16T11:32:43.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m1.large", - "ProductDescription": "Windows", - "SpotPrice": "0.141500", - "Timestamp": "2019-10-15T08:11:10.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.230700", + "Timestamp": "2024-05-16T11:32:43.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m1.large", - "ProductDescription": "Windows", - "SpotPrice": "0.141500", - "Timestamp": "2019-10-15T08:11:10.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.226700", + "Timestamp": "2024-05-16T11:32:43.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.large", - "ProductDescription": "Windows", - "SpotPrice": "0.141500", - "Timestamp": "2019-10-15T08:11:10.000Z" + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170700", + "Timestamp": "2024-05-16T11:32:43.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m1.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.141500", - "Timestamp": "2019-10-15T08:11:10.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.279700", + "Timestamp": "2024-05-16T11:32:42.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m1.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.141500", - "Timestamp": "2019-10-15T08:11:10.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.274700", + "Timestamp": "2024-05-16T11:32:42.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.141500", - "Timestamp": "2019-10-15T08:11:10.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149700", + "Timestamp": "2024-05-16T11:32:42.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m1.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.077500", - "Timestamp": "2019-10-15T08:11:09.000Z" + "SpotPrice": "0.314100", + "Timestamp": "2024-05-16T11:32:42.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m1.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.077500", - "Timestamp": "2019-10-15T08:11:09.000Z" + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.309100", + "Timestamp": "2024-05-16T11:32:42.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m1.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.077500", - "Timestamp": "2019-10-15T08:11:09.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184100", + "Timestamp": "2024-05-16T11:32:42.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.077500", - "Timestamp": "2019-10-15T08:11:09.000Z" + "SpotPrice": "0.346600", + "Timestamp": "2024-05-16T11:32:42.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m1.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.117500", - "Timestamp": "2019-10-15T08:11:09.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.364000", + "Timestamp": "2024-05-16T11:32:42.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m1.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.117500", - "Timestamp": "2019-10-15T08:11:09.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m1.large", + "InstanceType": "r7g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.117500", - "Timestamp": "2019-10-15T08:11:09.000Z" + "SpotPrice": "0.341600", + "Timestamp": "2024-05-16T11:32:42.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.large", + "InstanceType": "r7g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.117500", - "Timestamp": "2019-10-15T08:11:09.000Z" + "SpotPrice": "0.359000", + "Timestamp": "2024-05-16T11:32:42.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m1.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.017500", - "Timestamp": "2019-10-15T08:11:09.000Z" + "SpotPrice": "0.216600", + "Timestamp": "2024-05-16T11:32:42.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m1.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.017500", - "Timestamp": "2019-10-15T08:11:09.000Z" + "SpotPrice": "0.234000", + "Timestamp": "2024-05-16T11:32:42.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m1.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.017500", - "Timestamp": "2019-10-15T08:11:09.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.122400", + "Timestamp": "2024-05-16T11:32:42.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.017500", - "Timestamp": "2019-10-15T08:11:09.000Z" + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.345900", + "Timestamp": "2024-05-16T11:32:42.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m1.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.077500", - "Timestamp": "2019-10-15T08:11:09.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.315900", + "Timestamp": "2024-05-16T11:32:42.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m1.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.077500", - "Timestamp": "2019-10-15T08:11:09.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.215900", + "Timestamp": "2024-05-16T11:32:42.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m1.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.077500", - "Timestamp": "2019-10-15T08:11:09.000Z" + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.262900", + "Timestamp": "2024-05-16T11:32:42.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.077500", - "Timestamp": "2019-10-15T08:11:09.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.257900", + "Timestamp": "2024-05-16T11:32:42.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m1.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.117500", - "Timestamp": "2019-10-15T08:11:09.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.132900", + "Timestamp": "2024-05-16T11:32:42.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m1.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.117500", - "Timestamp": "2019-10-15T08:11:09.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.487300", + "Timestamp": "2024-05-16T11:32:42.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m1.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.117500", - "Timestamp": "2019-10-15T08:11:09.000Z" + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.457300", + "Timestamp": "2024-05-16T11:32:42.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.117500", - "Timestamp": "2019-10-15T08:11:09.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.357300", + "Timestamp": "2024-05-16T11:32:42.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m1.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.017500", - "Timestamp": "2019-10-15T08:11:09.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.581900", + "Timestamp": "2024-05-16T11:32:41.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m1.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.017500", - "Timestamp": "2019-10-15T08:11:09.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.576900", + "Timestamp": "2024-05-16T11:32:41.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.451900", + "Timestamp": "2024-05-16T11:32:41.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m1.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.017500", - "Timestamp": "2019-10-15T08:11:09.000Z" + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.190200", + "Timestamp": "2024-05-16T11:32:41.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.017500", - "Timestamp": "2019-10-15T08:11:09.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.186200", + "Timestamp": "2024-05-16T11:32:41.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.118700", - "Timestamp": "2019-10-15T08:11:09.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130200", + "Timestamp": "2024-05-16T11:32:41.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.118700", - "Timestamp": "2019-10-15T08:11:09.000Z" + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.774900", + "Timestamp": "2024-05-16T11:32:41.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.118700", - "Timestamp": "2019-10-15T08:11:09.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.769900", + "Timestamp": "2024-05-16T11:32:41.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.644900", + "Timestamp": "2024-05-16T11:32:41.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.754700", + "Timestamp": "2024-05-16T11:32:41.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.118700", - "Timestamp": "2019-10-15T08:11:09.000Z" + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.484500", + "Timestamp": "2024-05-16T11:32:41.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.118700", - "Timestamp": "2019-10-15T08:11:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.749700", + "Timestamp": "2024-05-16T11:32:41.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.985000", - "Timestamp": "2019-10-15T07:46:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.479500", + "Timestamp": "2024-05-16T11:32:41.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.955000", - "Timestamp": "2019-10-15T07:46:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.624700", + "Timestamp": "2024-05-16T11:32:41.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.855000", - "Timestamp": "2019-10-15T07:46:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.354500", + "Timestamp": "2024-05-16T11:32:41.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.504000", - "Timestamp": "2019-10-15T07:39:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.179300", + "Timestamp": "2024-05-16T11:32:41.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.415000", - "Timestamp": "2019-10-15T07:38:57.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.175600", + "Timestamp": "2024-05-16T11:32:41.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.385000", - "Timestamp": "2019-10-15T07:38:57.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119300", + "Timestamp": "2024-05-16T11:32:41.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.285000", - "Timestamp": "2019-10-15T07:38:57.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.833500", + "Timestamp": "2024-05-16T11:32:41.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.131500", - "Timestamp": "2019-10-15T07:38:45.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.828500", + "Timestamp": "2024-05-16T11:32:41.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.171500", - "Timestamp": "2019-10-15T07:38:45.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.703500", + "Timestamp": "2024-05-16T11:32:41.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.071500", - "Timestamp": "2019-10-15T07:38:45.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.687800", + "Timestamp": "2024-05-16T11:32:41.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.510500", - "Timestamp": "2019-10-15T07:38:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.609700", + "Timestamp": "2024-05-16T11:32:41.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.084000", - "Timestamp": "2019-10-15T07:13:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.682800", + "Timestamp": "2024-05-16T11:32:41.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.604700", + "Timestamp": "2024-05-16T11:32:41.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.084000", - "Timestamp": "2019-10-15T07:13:40.000Z" + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.557800", + "Timestamp": "2024-05-16T11:32:41.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.084000", - "Timestamp": "2019-10-15T07:13:40.000Z" + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.479700", + "Timestamp": "2024-05-16T11:32:41.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.084000", - "Timestamp": "2019-10-15T07:13:40.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.854300", + "Timestamp": "2024-05-16T11:32:41.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.970600", - "Timestamp": "2019-10-15T07:13:23.000Z" + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.849300", + "Timestamp": "2024-05-16T11:32:41.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.970600", - "Timestamp": "2019-10-15T07:13:23.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.724300", + "Timestamp": "2024-05-16T11:32:41.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.026700", + "Timestamp": "2024-05-16T11:32:41.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.970600", - "Timestamp": "2019-10-15T07:13:23.000Z" + "InstanceType": "g3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.820300", + "Timestamp": "2024-05-16T11:32:40.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.970600", - "Timestamp": "2019-10-15T07:13:23.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.573700", + "Timestamp": "2024-05-16T11:32:40.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.970600", - "Timestamp": "2019-10-15T07:13:23.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.568700", + "Timestamp": "2024-05-16T11:32:40.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "z1d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.469200", - "Timestamp": "2019-10-15T07:12:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.443700", + "Timestamp": "2024-05-16T11:32:40.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "z1d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.469200", - "Timestamp": "2019-10-15T07:12:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101800", + "Timestamp": "2024-05-16T11:32:39.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "z1d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.469200", - "Timestamp": "2019-10-15T07:12:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-16T11:32:39.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "z1d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.439200", - "Timestamp": "2019-10-15T07:12:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041800", + "Timestamp": "2024-05-16T11:32:39.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "z1d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.439200", - "Timestamp": "2019-10-15T07:12:55.000Z" + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.512700", + "Timestamp": "2024-05-16T11:32:38.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "z1d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.439200", - "Timestamp": "2019-10-15T07:12:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.790900", + "Timestamp": "2024-05-16T11:32:37.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "z1d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.339200", - "Timestamp": "2019-10-15T07:12:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.785900", + "Timestamp": "2024-05-16T11:32:37.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "z1d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.339200", - "Timestamp": "2019-10-15T07:12:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.660900", + "Timestamp": "2024-05-16T11:32:37.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "z1d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.339200", - "Timestamp": "2019-10-15T07:12:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.250900", + "Timestamp": "2024-05-16T11:32:37.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-15T07:12:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.245900", + "Timestamp": "2024-05-16T11:32:37.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.120900", + "Timestamp": "2024-05-16T11:32:37.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-15T07:12:41.000Z" + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.301600", + "Timestamp": "2024-05-16T11:32:37.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-15T07:12:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.296600", + "Timestamp": "2024-05-16T11:32:37.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-15T07:12:41.000Z" + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.171600", + "Timestamp": "2024-05-16T11:32:37.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-15T07:12:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.158900", + "Timestamp": "2024-05-16T11:32:36.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-15T07:12:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083100", + "Timestamp": "2024-05-16T11:32:36.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "z1d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.547200", - "Timestamp": "2019-10-15T07:12:06.000Z" + "InstanceType": "c7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079400", + "Timestamp": "2024-05-16T11:32:36.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "z1d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.547200", - "Timestamp": "2019-10-15T07:12:06.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023100", + "Timestamp": "2024-05-16T11:32:36.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "z1d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.547200", - "Timestamp": "2019-10-15T07:12:06.000Z" + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.090200", + "Timestamp": "2024-05-16T11:32:36.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.684600", - "Timestamp": "2019-10-15T07:11:54.000Z" - }, - { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.684600", - "Timestamp": "2019-10-15T07:11:54.000Z" + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.327000", + "Timestamp": "2024-05-16T11:32:35.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.684600", - "Timestamp": "2019-10-15T07:11:54.000Z" + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127100", + "Timestamp": "2024-05-16T11:32:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.684600", - "Timestamp": "2019-10-15T07:11:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123400", + "Timestamp": "2024-05-16T11:32:35.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.684600", - "Timestamp": "2019-10-15T07:11:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067100", + "Timestamp": "2024-05-16T11:32:35.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.654600", - "Timestamp": "2019-10-15T07:11:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100600", + "Timestamp": "2024-05-16T11:32:34.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.654600", - "Timestamp": "2019-10-15T07:11:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096600", + "Timestamp": "2024-05-16T11:32:34.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.654600", - "Timestamp": "2019-10-15T07:11:54.000Z" + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040600", + "Timestamp": "2024-05-16T11:32:34.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.654600", - "Timestamp": "2019-10-15T07:11:54.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.592700", + "Timestamp": "2024-05-16T11:32:34.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.654600", - "Timestamp": "2019-10-15T07:11:54.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.562700", + "Timestamp": "2024-05-16T11:32:34.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.554600", - "Timestamp": "2019-10-15T07:11:54.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.462700", + "Timestamp": "2024-05-16T11:32:34.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.554600", - "Timestamp": "2019-10-15T07:11:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.954900", + "Timestamp": "2024-05-16T11:32:34.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.554600", - "Timestamp": "2019-10-15T07:11:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.949900", + "Timestamp": "2024-05-16T11:32:34.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.554600", - "Timestamp": "2019-10-15T07:11:54.000Z" + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.824900", + "Timestamp": "2024-05-16T11:32:34.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.554600", - "Timestamp": "2019-10-15T07:11:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154400", + "Timestamp": "2024-05-16T11:32:34.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "7.670400", - "Timestamp": "2019-10-15T07:11:42.000Z" + "InstanceType": "c5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150400", + "Timestamp": "2024-05-16T11:32:34.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "7.670400", - "Timestamp": "2019-10-15T07:11:42.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094400", + "Timestamp": "2024-05-16T11:32:34.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "7.670400", - "Timestamp": "2019-10-15T07:11:42.000Z" + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.592700", + "Timestamp": "2024-05-16T11:32:33.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "7.670400", - "Timestamp": "2019-10-15T07:11:42.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.587700", + "Timestamp": "2024-05-16T11:32:33.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "7.670400", - "Timestamp": "2019-10-15T07:11:42.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.462700", + "Timestamp": "2024-05-16T11:32:33.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.401200", - "Timestamp": "2019-10-15T07:11:09.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.062700", + "Timestamp": "2024-05-16T11:32:33.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.401200", - "Timestamp": "2019-10-15T07:11:09.000Z" + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.057700", + "Timestamp": "2024-05-16T11:32:33.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.401200", - "Timestamp": "2019-10-15T07:11:09.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.932700", + "Timestamp": "2024-05-16T11:32:33.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.401200", - "Timestamp": "2019-10-15T07:11:09.000Z" + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076400", + "Timestamp": "2024-05-16T11:32:32.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.371200", - "Timestamp": "2019-10-15T07:11:09.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047400", + "Timestamp": "2024-05-16T11:32:32.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.371200", - "Timestamp": "2019-10-15T07:11:09.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016400", + "Timestamp": "2024-05-16T11:32:32.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.371200", - "Timestamp": "2019-10-15T07:11:09.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.504400", + "Timestamp": "2024-05-16T11:32:31.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.371200", - "Timestamp": "2019-10-15T07:11:09.000Z" + "InstanceType": "m1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.229900", + "Timestamp": "2024-05-16T11:32:30.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.271200", - "Timestamp": "2019-10-15T07:11:09.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269900", + "Timestamp": "2024-05-16T11:32:30.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.271200", - "Timestamp": "2019-10-15T07:11:09.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169900", + "Timestamp": "2024-05-16T11:32:30.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.271200", - "Timestamp": "2019-10-15T07:11:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117300", + "Timestamp": "2024-05-16T11:32:30.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.271200", - "Timestamp": "2019-10-15T07:11:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113600", + "Timestamp": "2024-05-16T11:32:30.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.639200", - "Timestamp": "2019-10-15T07:11:09.000Z" + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057300", + "Timestamp": "2024-05-16T11:32:30.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.639200", - "Timestamp": "2019-10-15T07:11:09.000Z" + "InstanceType": "r7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.210100", + "Timestamp": "2024-05-16T11:32:29.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.639200", - "Timestamp": "2019-10-15T07:11:09.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.206400", + "Timestamp": "2024-05-16T11:32:29.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.639200", - "Timestamp": "2019-10-15T07:11:09.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150100", + "Timestamp": "2024-05-16T11:32:29.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.639200", - "Timestamp": "2019-10-15T07:11:09.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.408900", + "Timestamp": "2024-05-16T11:32:28.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.384400", - "Timestamp": "2019-10-15T07:10:45.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.403900", + "Timestamp": "2024-05-16T11:32:28.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.384400", - "Timestamp": "2019-10-15T07:10:45.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.278900", + "Timestamp": "2024-05-16T11:32:28.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.384400", - "Timestamp": "2019-10-15T07:10:45.000Z" + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062600", + "Timestamp": "2024-05-16T11:32:26.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.384400", - "Timestamp": "2019-10-15T07:10:45.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-16T11:32:26.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.384400", - "Timestamp": "2019-10-15T07:10:45.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-16T11:32:26.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.354400", - "Timestamp": "2019-10-15T07:10:45.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.443800", + "Timestamp": "2024-05-16T11:32:25.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.354400", - "Timestamp": "2019-10-15T07:10:45.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.413800", + "Timestamp": "2024-05-16T11:32:25.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.354400", - "Timestamp": "2019-10-15T07:10:45.000Z" + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.313800", + "Timestamp": "2024-05-16T11:32:25.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.354400", - "Timestamp": "2019-10-15T07:10:45.000Z" + "InstanceType": "m5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171500", + "Timestamp": "2024-05-16T11:32:25.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.354400", - "Timestamp": "2019-10-15T07:10:45.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167500", + "Timestamp": "2024-05-16T11:32:25.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.254400", - "Timestamp": "2019-10-15T07:10:45.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-16T11:32:25.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.254400", - "Timestamp": "2019-10-15T07:10:45.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184400", + "Timestamp": "2024-05-16T11:32:25.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.254400", - "Timestamp": "2019-10-15T07:10:45.000Z" + "InstanceType": "m5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180400", + "Timestamp": "2024-05-16T11:32:25.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.254400", - "Timestamp": "2019-10-15T07:10:45.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124400", + "Timestamp": "2024-05-16T11:32:25.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.254400", - "Timestamp": "2019-10-15T07:10:45.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.335700", + "Timestamp": "2024-05-16T11:18:49.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.840000", - "Timestamp": "2019-10-15T06:56:24.000Z" + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.330700", + "Timestamp": "2024-05-16T11:18:49.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.810000", - "Timestamp": "2019-10-15T06:56:24.000Z" + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.205700", + "Timestamp": "2024-05-16T11:18:49.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.287800", + "Timestamp": "2024-05-16T11:18:42.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.695600", + "Timestamp": "2024-05-16T11:18:42.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.710000", - "Timestamp": "2019-10-15T06:56:24.000Z" + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.009100", + "Timestamp": "2024-05-16T11:18:40.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.071800", - "Timestamp": "2019-10-15T06:48:40.000Z" + "InstanceType": "d3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.285900", + "Timestamp": "2024-05-16T11:18:40.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "t3a.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.111800", - "Timestamp": "2019-10-15T06:48:40.000Z" + "InstanceType": "d3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281900", + "Timestamp": "2024-05-16T11:18:40.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.011800", - "Timestamp": "2019-10-15T06:48:40.000Z" + "InstanceType": "d3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.225900", + "Timestamp": "2024-05-16T11:18:40.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-15T06:48:35.000Z" + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.012700", + "Timestamp": "2024-05-16T11:18:40.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-15T06:48:35.000Z" + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.007700", + "Timestamp": "2024-05-16T11:18:40.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-15T06:48:35.000Z" + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.882700", + "Timestamp": "2024-05-16T11:18:40.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.063000", - "Timestamp": "2019-10-15T06:42:28.000Z" + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.016800", + "Timestamp": "2024-05-16T11:18:39.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.063000", - "Timestamp": "2019-10-15T06:42:28.000Z" + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.669800", + "Timestamp": "2024-05-16T11:18:38.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.664800", + "Timestamp": "2024-05-16T11:18:38.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.539800", + "Timestamp": "2024-05-16T11:18:38.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.063000", - "Timestamp": "2019-10-15T06:42:28.000Z" + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.090200", + "Timestamp": "2024-05-16T11:18:37.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.063000", - "Timestamp": "2019-10-15T06:42:28.000Z" + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.563300", + "Timestamp": "2024-05-16T11:18:37.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.063000", - "Timestamp": "2019-10-15T06:42:28.000Z" + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139400", + "Timestamp": "2024-05-16T11:18:36.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.985000", - "Timestamp": "2019-10-15T06:39:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179400", + "Timestamp": "2024-05-16T11:18:36.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.985000", - "Timestamp": "2019-10-15T06:39:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079400", + "Timestamp": "2024-05-16T11:18:36.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.985000", - "Timestamp": "2019-10-15T06:39:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.366600", + "Timestamp": "2024-05-16T11:18:36.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.955000", - "Timestamp": "2019-10-15T06:39:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.361600", + "Timestamp": "2024-05-16T11:18:36.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.955000", - "Timestamp": "2019-10-15T06:39:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.236600", + "Timestamp": "2024-05-16T11:18:36.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.955000", - "Timestamp": "2019-10-15T06:39:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.248100", + "Timestamp": "2024-05-16T11:18:35.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.855000", - "Timestamp": "2019-10-15T06:39:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.243100", + "Timestamp": "2024-05-16T11:18:35.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.855000", - "Timestamp": "2019-10-15T06:39:40.000Z" + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.118100", + "Timestamp": "2024-05-16T11:18:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.855000", - "Timestamp": "2019-10-15T06:39:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.528300", + "Timestamp": "2024-05-16T11:18:35.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.762300", - "Timestamp": "2019-10-15T06:32:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.523300", + "Timestamp": "2024-05-16T11:18:35.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.732300", - "Timestamp": "2019-10-15T06:32:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.398300", + "Timestamp": "2024-05-16T11:18:35.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.632300", - "Timestamp": "2019-10-15T06:32:52.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.283000", + "Timestamp": "2024-05-16T11:18:35.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.126000", - "Timestamp": "2019-10-15T06:23:06.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.521700", + "Timestamp": "2024-05-16T11:18:34.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.228000", - "Timestamp": "2019-10-15T06:13:25.000Z" + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.516700", + "Timestamp": "2024-05-16T11:18:34.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.228000", - "Timestamp": "2019-10-15T06:13:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.391700", + "Timestamp": "2024-05-16T11:18:34.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.228000", - "Timestamp": "2019-10-15T06:13:25.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.228000", - "Timestamp": "2019-10-15T06:13:25.000Z" + "InstanceType": "a1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087000", + "Timestamp": "2024-05-16T11:18:34.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m2.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.198000", - "Timestamp": "2019-10-15T06:13:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "a1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083300", + "Timestamp": "2024-05-16T11:18:34.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m2.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.198000", - "Timestamp": "2019-10-15T06:13:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "a1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027000", + "Timestamp": "2024-05-16T11:18:34.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m2.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.198000", - "Timestamp": "2019-10-15T06:13:25.000Z" + "InstanceType": "r7iz.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142500", + "Timestamp": "2024-05-16T11:18:34.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m2.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.198000", - "Timestamp": "2019-10-15T06:13:25.000Z" + "InstanceType": "r7iz.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141300", + "Timestamp": "2024-05-16T11:18:34.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.098000", - "Timestamp": "2019-10-15T06:13:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138800", + "Timestamp": "2024-05-16T11:18:34.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.098000", - "Timestamp": "2019-10-15T06:13:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137600", + "Timestamp": "2024-05-16T11:18:34.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.098000", - "Timestamp": "2019-10-15T06:13:25.000Z" + "InstanceType": "r7iz.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082500", + "Timestamp": "2024-05-16T11:18:34.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.098000", - "Timestamp": "2019-10-15T06:13:25.000Z" + "InstanceType": "r7iz.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081300", + "Timestamp": "2024-05-16T11:18:34.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.498000", - "Timestamp": "2019-10-15T06:12:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.280600", + "Timestamp": "2024-05-16T11:18:33.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.498000", - "Timestamp": "2019-10-15T06:12:51.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.068500", + "Timestamp": "2024-05-16T11:18:33.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.498000", - "Timestamp": "2019-10-15T06:12:51.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.038500", + "Timestamp": "2024-05-16T11:18:33.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.498000", - "Timestamp": "2019-10-15T06:12:51.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.938500", + "Timestamp": "2024-05-16T11:18:33.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5n.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.498000", - "Timestamp": "2019-10-15T06:12:49.000Z" + "SpotPrice": "0.550900", + "Timestamp": "2024-05-16T11:18:32.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.498000", - "Timestamp": "2019-10-15T06:12:49.000Z" + "SpotPrice": "2.359600", + "Timestamp": "2024-05-16T11:18:31.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m2.4xlarge", + "InstanceType": "r6idn.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.498000", - "Timestamp": "2019-10-15T06:12:49.000Z" + "SpotPrice": "3.915600", + "Timestamp": "2024-05-16T11:18:30.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.498000", - "Timestamp": "2019-10-15T06:12:49.000Z" + "SpotPrice": "6.333800", + "Timestamp": "2024-05-16T11:18:30.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.228000", - "Timestamp": "2019-10-15T06:12:48.000Z" + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.178500", + "Timestamp": "2024-05-16T11:18:30.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.228000", - "Timestamp": "2019-10-15T06:12:48.000Z" + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.378100", + "Timestamp": "2024-05-16T11:18:29.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.228000", - "Timestamp": "2019-10-15T06:12:48.000Z" + "InstanceType": "r3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.401900", + "Timestamp": "2024-05-16T11:18:29.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.228000", - "Timestamp": "2019-10-15T06:12:48.000Z" + "SpotPrice": "2.659600", + "Timestamp": "2024-05-16T11:18:28.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.198000", - "Timestamp": "2019-10-15T06:12:48.000Z" + "SpotPrice": "2.654600", + "Timestamp": "2024-05-16T11:18:28.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.529600", + "Timestamp": "2024-05-16T11:18:28.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.198000", - "Timestamp": "2019-10-15T06:12:48.000Z" + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.112500", + "Timestamp": "2024-05-16T11:18:27.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.198000", - "Timestamp": "2019-10-15T06:12:48.000Z" + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.337100", + "Timestamp": "2024-05-16T11:18:27.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.198000", - "Timestamp": "2019-10-15T06:12:48.000Z" + "SpotPrice": "1.332100", + "Timestamp": "2024-05-16T11:18:27.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.098000", - "Timestamp": "2019-10-15T06:12:48.000Z" + "SpotPrice": "1.207100", + "Timestamp": "2024-05-16T11:18:27.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.098000", - "Timestamp": "2019-10-15T06:12:48.000Z" + "InstanceType": "p2.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.020200", + "Timestamp": "2024-05-16T11:18:27.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.098000", - "Timestamp": "2019-10-15T06:12:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "p2.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.990200", + "Timestamp": "2024-05-16T11:18:27.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "p2.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.098000", - "Timestamp": "2019-10-15T06:12:48.000Z" + "SpotPrice": "5.890200", + "Timestamp": "2024-05-16T11:18:27.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "13.894400", - "Timestamp": "2019-10-15T06:12:14.000Z" + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.340700", + "Timestamp": "2024-05-16T11:18:26.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "13.894400", - "Timestamp": "2019-10-15T06:12:14.000Z" + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.134000", + "Timestamp": "2024-05-16T11:18:26.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "13.894400", - "Timestamp": "2019-10-15T06:12:14.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.308600", + "Timestamp": "2024-05-16T11:18:26.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "13.894400", - "Timestamp": "2019-10-15T06:12:14.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.303600", + "Timestamp": "2024-05-16T11:18:26.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "8.136400", - "Timestamp": "2019-10-15T06:11:52.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.178600", + "Timestamp": "2024-05-16T11:18:26.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "8.136400", - "Timestamp": "2019-10-15T06:11:52.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.756900", + "Timestamp": "2024-05-16T11:18:24.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "8.136400", - "Timestamp": "2019-10-15T06:11:52.000Z" + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.292500", + "Timestamp": "2024-05-16T11:18:24.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "8.136400", - "Timestamp": "2019-10-15T06:11:52.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.287500", + "Timestamp": "2024-05-16T11:18:24.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "8.106400", - "Timestamp": "2019-10-15T06:11:52.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.162500", + "Timestamp": "2024-05-16T11:18:24.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "8.106400", - "Timestamp": "2019-10-15T06:11:52.000Z" + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.080700", + "Timestamp": "2024-05-16T11:18:23.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "8.106400", - "Timestamp": "2019-10-15T06:11:52.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "8.106400", - "Timestamp": "2019-10-15T06:11:52.000Z" + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.386800", + "Timestamp": "2024-05-16T11:18:23.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "8.006400", - "Timestamp": "2019-10-15T06:11:52.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.468600", + "Timestamp": "2024-05-16T11:18:22.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "8.006400", - "Timestamp": "2019-10-15T06:11:52.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.473800", + "Timestamp": "2024-05-16T11:18:22.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "8.006400", - "Timestamp": "2019-10-15T06:11:52.000Z" + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.299000", + "Timestamp": "2024-05-16T11:18:22.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "8.006400", - "Timestamp": "2019-10-15T06:11:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.353300", + "Timestamp": "2024-05-16T11:18:21.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "t2.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.055800", - "Timestamp": "2019-10-15T06:11:27.000Z" + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.348300", + "Timestamp": "2024-05-16T11:18:21.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t2.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.055800", - "Timestamp": "2019-10-15T06:11:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.223300", + "Timestamp": "2024-05-16T11:18:21.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t2.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.055800", - "Timestamp": "2019-10-15T06:11:27.000Z" + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.269800", + "Timestamp": "2024-05-16T11:18:20.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "t2.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.055800", - "Timestamp": "2019-10-15T06:11:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.004800", + "Timestamp": "2024-05-16T11:18:19.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t2.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.055800", - "Timestamp": "2019-10-15T06:11:27.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t2.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.055800", - "Timestamp": "2019-10-15T06:11:27.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.754000", - "Timestamp": "2019-10-15T06:11:25.000Z" + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.369100", + "Timestamp": "2024-05-16T11:18:18.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.724000", - "Timestamp": "2019-10-15T06:11:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "16.273100", + "Timestamp": "2024-05-16T11:18:18.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.624000", - "Timestamp": "2019-10-15T06:11:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "17.012000", + "Timestamp": "2024-05-16T11:18:17.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.555200", - "Timestamp": "2019-10-15T06:11:24.000Z" + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.310200", + "Timestamp": "2024-05-16T11:18:17.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.555200", - "Timestamp": "2019-10-15T06:11:24.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.555200", - "Timestamp": "2019-10-15T06:11:24.000Z" - }, - { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.555200", - "Timestamp": "2019-10-15T06:11:24.000Z" + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.509400", + "Timestamp": "2024-05-16T11:18:17.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.555200", - "Timestamp": "2019-10-15T06:11:24.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.240100", + "Timestamp": "2024-05-16T11:18:17.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.992000", - "Timestamp": "2019-10-15T06:11:24.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.149300", + "Timestamp": "2024-05-16T11:18:16.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.029700", - "Timestamp": "2019-10-15T06:10:32.000Z" + "InstanceType": "c3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.572200", + "Timestamp": "2024-05-16T11:18:16.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.029700", - "Timestamp": "2019-10-15T06:10:32.000Z" + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.760700", + "Timestamp": "2024-05-16T11:18:16.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.029700", - "Timestamp": "2019-10-15T06:10:32.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.755700", + "Timestamp": "2024-05-16T11:18:16.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.029700", - "Timestamp": "2019-10-15T06:10:32.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.630700", + "Timestamp": "2024-05-16T11:18:16.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.029700", - "Timestamp": "2019-10-15T06:10:32.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.971100", + "Timestamp": "2024-05-16T11:18:15.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.029700", - "Timestamp": "2019-10-15T06:10:32.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.935300", + "Timestamp": "2024-05-16T11:18:14.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "t2.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.087800", - "Timestamp": "2019-10-15T06:09:57.000Z" + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.932300", + "Timestamp": "2024-05-16T11:18:14.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "t2.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.087800", - "Timestamp": "2019-10-15T06:09:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.322500", + "Timestamp": "2024-05-16T11:18:14.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t2.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.087800", - "Timestamp": "2019-10-15T06:09:57.000Z" + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.315200", + "Timestamp": "2024-05-16T11:18:14.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t2.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.127800", - "Timestamp": "2019-10-15T06:09:57.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.310200", + "Timestamp": "2024-05-16T11:18:14.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "t2.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.127800", - "Timestamp": "2019-10-15T06:09:57.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.185200", + "Timestamp": "2024-05-16T11:18:14.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t2.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.127800", - "Timestamp": "2019-10-15T06:09:57.000Z" + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.318900", + "Timestamp": "2024-05-16T11:18:14.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t2.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.027800", - "Timestamp": "2019-10-15T06:09:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.700200", + "Timestamp": "2024-05-16T11:18:13.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "t2.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.027800", - "Timestamp": "2019-10-15T06:09:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.878700", + "Timestamp": "2024-05-16T11:18:13.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t2.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.027800", - "Timestamp": "2019-10-15T06:09:57.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.995100", - "Timestamp": "2019-10-15T06:08:14.000Z" - }, - { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.995100", - "Timestamp": "2019-10-15T06:08:14.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.995100", - "Timestamp": "2019-10-15T06:08:14.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.873700", + "Timestamp": "2024-05-16T11:18:13.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.995100", - "Timestamp": "2019-10-15T06:08:14.000Z" + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.748700", + "Timestamp": "2024-05-16T11:18:13.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.995100", - "Timestamp": "2019-10-15T06:08:14.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.010300", + "Timestamp": "2024-05-16T11:18:13.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.341800", - "Timestamp": "2019-10-15T05:59:46.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.270000", + "Timestamp": "2024-05-16T11:18:12.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m1.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.283000", - "Timestamp": "2019-10-15T05:58:11.000Z" + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.904600", + "Timestamp": "2024-05-16T11:18:12.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.217800", - "Timestamp": "2019-10-15T05:51:12.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.899600", + "Timestamp": "2024-05-16T11:18:12.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.257800", - "Timestamp": "2019-10-15T05:51:12.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.774600", + "Timestamp": "2024-05-16T11:18:12.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.157800", - "Timestamp": "2019-10-15T05:51:12.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.024500", + "Timestamp": "2024-05-16T11:18:12.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252000", - "Timestamp": "2019-10-15T05:50:14.000Z" + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.428500", + "Timestamp": "2024-05-16T11:18:12.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.266000", - "Timestamp": "2019-10-15T05:42:56.000Z" + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.423500", + "Timestamp": "2024-05-16T11:18:12.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.236000", - "Timestamp": "2019-10-15T05:42:56.000Z" + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.298500", + "Timestamp": "2024-05-16T11:18:12.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.136000", - "Timestamp": "2019-10-15T05:42:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.987800", + "Timestamp": "2024-05-16T11:18:12.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.700000", - "Timestamp": "2019-10-15T05:42:47.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.798200", + "Timestamp": "2024-05-16T11:18:11.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.700000", - "Timestamp": "2019-10-15T05:42:47.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.793200", + "Timestamp": "2024-05-16T11:18:11.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.670000", - "Timestamp": "2019-10-15T05:42:47.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.668200", + "Timestamp": "2024-05-16T11:18:11.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.670000", - "Timestamp": "2019-10-15T05:42:47.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.274800", + "Timestamp": "2024-05-16T11:18:11.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.570000", - "Timestamp": "2019-10-15T05:42:47.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.197900", + "Timestamp": "2024-05-16T11:18:11.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.570000", - "Timestamp": "2019-10-15T05:42:47.000Z" + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.754000", + "Timestamp": "2024-05-16T11:18:11.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.674100", - "Timestamp": "2019-10-15T05:42:11.000Z" + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.749000", + "Timestamp": "2024-05-16T11:18:11.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.674100", - "Timestamp": "2019-10-15T05:42:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.624000", + "Timestamp": "2024-05-16T11:18:11.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.674100", - "Timestamp": "2019-10-15T05:42:11.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.228000", + "Timestamp": "2024-05-16T11:18:10.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.674100", - "Timestamp": "2019-10-15T05:42:11.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.224300", + "Timestamp": "2024-05-16T11:18:10.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.644100", - "Timestamp": "2019-10-15T05:42:11.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168000", + "Timestamp": "2024-05-16T11:18:10.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.644100", - "Timestamp": "2019-10-15T05:42:11.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.644100", - "Timestamp": "2019-10-15T05:42:11.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.644100", - "Timestamp": "2019-10-15T05:42:11.000Z" + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.046900", + "Timestamp": "2024-05-16T11:18:09.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.544100", - "Timestamp": "2019-10-15T05:42:11.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.520400", + "Timestamp": "2024-05-16T11:18:09.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.544100", - "Timestamp": "2019-10-15T05:42:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.722900", + "Timestamp": "2024-05-16T11:18:09.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.544100", - "Timestamp": "2019-10-15T05:42:11.000Z" + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.717900", + "Timestamp": "2024-05-16T11:18:09.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.544100", - "Timestamp": "2019-10-15T05:42:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.592900", + "Timestamp": "2024-05-16T11:18:09.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.415000", - "Timestamp": "2019-10-15T05:41:55.000Z" + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123500", + "Timestamp": "2024-05-16T11:18:09.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.385000", - "Timestamp": "2019-10-15T05:41:55.000Z" + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119800", + "Timestamp": "2024-05-16T11:18:09.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.285000", - "Timestamp": "2019-10-15T05:41:55.000Z" + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063500", + "Timestamp": "2024-05-16T11:18:09.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.042000", - "Timestamp": "2019-10-15T05:41:52.000Z" + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.951900", + "Timestamp": "2024-05-16T11:18:08.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.042000", - "Timestamp": "2019-10-15T05:41:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.946900", + "Timestamp": "2024-05-16T11:18:08.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.042000", - "Timestamp": "2019-10-15T05:41:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.821900", + "Timestamp": "2024-05-16T11:18:08.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.042000", - "Timestamp": "2019-10-15T05:41:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.054300", + "Timestamp": "2024-05-16T11:18:08.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.042000", - "Timestamp": "2019-10-15T05:41:52.000Z" + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.982300", + "Timestamp": "2024-05-16T11:18:08.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.065900", - "Timestamp": "2019-10-15T05:41:25.000Z" + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.049300", + "Timestamp": "2024-05-16T11:18:08.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.105900", - "Timestamp": "2019-10-15T05:41:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.977300", + "Timestamp": "2024-05-16T11:18:08.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.005900", - "Timestamp": "2019-10-15T05:41:25.000Z" + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.924300", + "Timestamp": "2024-05-16T11:18:08.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.341800", - "Timestamp": "2019-10-15T05:40:46.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.852300", + "Timestamp": "2024-05-16T11:18:08.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.016100", - "Timestamp": "2019-10-15T05:39:01.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.408400", + "Timestamp": "2024-05-16T11:18:08.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.016100", - "Timestamp": "2019-10-15T05:39:01.000Z" + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.587900", + "Timestamp": "2024-05-16T11:18:08.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.016100", - "Timestamp": "2019-10-15T05:39:01.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.582900", + "Timestamp": "2024-05-16T11:18:08.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.016100", - "Timestamp": "2019-10-15T05:39:01.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.457900", + "Timestamp": "2024-05-16T11:18:08.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.016100", - "Timestamp": "2019-10-15T05:39:01.000Z" + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.718800", + "Timestamp": "2024-05-16T11:18:08.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.328600", + "Timestamp": "2024-05-16T11:18:08.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.762300", - "Timestamp": "2019-10-15T05:34:33.000Z" + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.456100", + "Timestamp": "2024-05-16T11:18:08.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.732300", - "Timestamp": "2019-10-15T05:34:33.000Z" + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.451100", + "Timestamp": "2024-05-16T11:18:08.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.632300", - "Timestamp": "2019-10-15T05:34:33.000Z" + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.326100", + "Timestamp": "2024-05-16T11:18:08.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.985000", - "Timestamp": "2019-10-15T05:24:13.000Z" + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.641800", + "Timestamp": "2024-05-16T11:18:07.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.955000", - "Timestamp": "2019-10-15T05:24:13.000Z" + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.636800", + "Timestamp": "2024-05-16T11:18:07.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.855000", - "Timestamp": "2019-10-15T05:24:13.000Z" + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.511800", + "Timestamp": "2024-05-16T11:18:07.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.762300", - "Timestamp": "2019-10-15T05:17:33.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.792000", + "Timestamp": "2024-05-16T11:18:07.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.732300", - "Timestamp": "2019-10-15T05:17:33.000Z" + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.757600", + "Timestamp": "2024-05-16T11:18:07.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.632300", - "Timestamp": "2019-10-15T05:17:33.000Z" + "InstanceType": "r7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.752600", + "Timestamp": "2024-05-16T11:18:07.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.024200", - "Timestamp": "2019-10-15T05:16:58.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.627600", + "Timestamp": "2024-05-16T11:18:07.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.504000", - "Timestamp": "2019-10-15T05:14:20.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.748000", + "Timestamp": "2024-05-16T11:18:07.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.504000", - "Timestamp": "2019-10-15T05:14:20.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.743000", + "Timestamp": "2024-05-16T11:18:07.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.504000", - "Timestamp": "2019-10-15T05:14:20.000Z" + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.618000", + "Timestamp": "2024-05-16T11:18:07.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.504000", - "Timestamp": "2019-10-15T05:14:20.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136000", + "Timestamp": "2024-05-16T11:18:07.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.504000", - "Timestamp": "2019-10-15T05:14:20.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132300", + "Timestamp": "2024-05-16T11:18:07.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.504000", - "Timestamp": "2019-10-15T05:12:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076000", + "Timestamp": "2024-05-16T11:18:07.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.504000", - "Timestamp": "2019-10-15T05:12:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T11:18:07.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.504000", - "Timestamp": "2019-10-15T05:12:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094100", + "Timestamp": "2024-05-16T11:18:07.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.504000", - "Timestamp": "2019-10-15T05:12:25.000Z" + "InstanceType": "x2gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065100", + "Timestamp": "2024-05-16T11:18:07.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.504000", - "Timestamp": "2019-10-15T05:12:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034100", + "Timestamp": "2024-05-16T11:18:07.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.153000", - "Timestamp": "2019-10-15T05:12:06.000Z" + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.532700", + "Timestamp": "2024-05-16T11:18:07.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.153000", - "Timestamp": "2019-10-15T05:12:06.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.519500", + "Timestamp": "2024-05-16T11:18:06.000Z" }, { "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.153000", - "Timestamp": "2019-10-15T05:12:06.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.153000", - "Timestamp": "2019-10-15T05:12:06.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.4xlarge", + "InstanceType": "i2.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.153000", - "Timestamp": "2019-10-15T05:12:06.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.123000", - "Timestamp": "2019-10-15T05:12:06.000Z" + "SpotPrice": "2.946800", + "Timestamp": "2024-05-16T11:18:06.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "i2.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.123000", - "Timestamp": "2019-10-15T05:12:06.000Z" + "SpotPrice": "2.916800", + "Timestamp": "2024-05-16T11:18:06.000Z" }, { "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.123000", - "Timestamp": "2019-10-15T05:12:06.000Z" + "InstanceType": "i2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.816800", + "Timestamp": "2024-05-16T11:18:06.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.123000", - "Timestamp": "2019-10-15T05:12:06.000Z" + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.964200", + "Timestamp": "2024-05-16T11:18:06.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.123000", - "Timestamp": "2019-10-15T05:12:06.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.023000", - "Timestamp": "2019-10-15T05:12:06.000Z" + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.378000", + "Timestamp": "2024-05-16T11:18:06.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.023000", - "Timestamp": "2019-10-15T05:12:06.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.373000", + "Timestamp": "2024-05-16T11:18:06.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.023000", - "Timestamp": "2019-10-15T05:12:06.000Z" + "SpotPrice": "1.248000", + "Timestamp": "2024-05-16T11:18:06.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.023000", - "Timestamp": "2019-10-15T05:12:06.000Z" + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.520900", + "Timestamp": "2024-05-16T11:18:05.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.023000", - "Timestamp": "2019-10-15T05:12:06.000Z" + "InstanceType": "p3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.529700", + "Timestamp": "2024-05-16T11:18:05.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.153000", - "Timestamp": "2019-10-15T05:11:53.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.499700", + "Timestamp": "2024-05-16T11:18:05.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.153000", - "Timestamp": "2019-10-15T05:11:53.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.399700", + "Timestamp": "2024-05-16T11:18:05.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.153000", - "Timestamp": "2019-10-15T05:11:53.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.262500", + "Timestamp": "2024-05-16T11:18:04.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.153000", - "Timestamp": "2019-10-15T05:11:53.000Z" + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.171400", + "Timestamp": "2024-05-16T11:18:04.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.123000", - "Timestamp": "2019-10-15T05:11:53.000Z" - }, - { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.123000", - "Timestamp": "2019-10-15T05:11:53.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.123000", - "Timestamp": "2019-10-15T05:11:53.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.123000", - "Timestamp": "2019-10-15T05:11:53.000Z" + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.212300", + "Timestamp": "2024-05-16T11:18:04.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.023000", - "Timestamp": "2019-10-15T05:11:53.000Z" + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.207300", + "Timestamp": "2024-05-16T11:18:04.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.023000", - "Timestamp": "2019-10-15T05:11:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.082300", + "Timestamp": "2024-05-16T11:18:04.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.023000", - "Timestamp": "2019-10-15T05:11:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.112400", + "Timestamp": "2024-05-16T11:18:04.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.023000", - "Timestamp": "2019-10-15T05:11:53.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.4xlarge", + "InstanceType": "r6id.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.504000", - "Timestamp": "2019-10-15T05:11:36.000Z" + "SpotPrice": "9.943700", + "Timestamp": "2024-05-16T11:18:04.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.504000", - "Timestamp": "2019-10-15T05:11:36.000Z" + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.286500", + "Timestamp": "2024-05-16T11:18:04.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.504000", - "Timestamp": "2019-10-15T05:11:36.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281500", + "Timestamp": "2024-05-16T11:18:04.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.504000", - "Timestamp": "2019-10-15T05:11:36.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156500", + "Timestamp": "2024-05-16T11:18:04.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.504000", - "Timestamp": "2019-10-15T05:11:36.000Z" + "SpotPrice": "3.495700", + "Timestamp": "2024-05-16T11:18:03.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.241400", - "Timestamp": "2019-10-15T05:10:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.877100", + "Timestamp": "2024-05-16T11:18:03.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.241400", - "Timestamp": "2019-10-15T05:10:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "h1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.847100", + "Timestamp": "2024-05-16T11:18:03.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.241400", - "Timestamp": "2019-10-15T05:10:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.747100", + "Timestamp": "2024-05-16T11:18:03.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.241400", - "Timestamp": "2019-10-15T05:10:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126100", + "Timestamp": "2024-05-16T11:18:03.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.241400", - "Timestamp": "2019-10-15T05:10:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122100", + "Timestamp": "2024-05-16T11:18:03.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.241400", - "Timestamp": "2019-10-15T05:10:54.000Z" + "InstanceType": "m5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066100", + "Timestamp": "2024-05-16T11:18:03.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.211400", - "Timestamp": "2019-10-15T05:10:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.275900", + "Timestamp": "2024-05-16T11:18:03.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.211400", - "Timestamp": "2019-10-15T05:10:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.237400", + "Timestamp": "2024-05-16T11:18:03.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.211400", - "Timestamp": "2019-10-15T05:10:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.270900", + "Timestamp": "2024-05-16T11:18:03.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "t2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.211400", - "Timestamp": "2019-10-15T05:10:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.232400", + "Timestamp": "2024-05-16T11:18:03.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.211400", - "Timestamp": "2019-10-15T05:10:54.000Z" + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.145900", + "Timestamp": "2024-05-16T11:18:03.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.211400", - "Timestamp": "2019-10-15T05:10:54.000Z" + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.107400", + "Timestamp": "2024-05-16T11:18:03.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.111400", - "Timestamp": "2019-10-15T05:10:54.000Z" + "InstanceType": "r6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150200", + "Timestamp": "2024-05-16T11:18:03.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.111400", - "Timestamp": "2019-10-15T05:10:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146500", + "Timestamp": "2024-05-16T11:18:03.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.111400", - "Timestamp": "2019-10-15T05:10:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090200", + "Timestamp": "2024-05-16T11:18:03.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.111400", - "Timestamp": "2019-10-15T05:10:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.116000", + "Timestamp": "2024-05-16T11:18:03.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.111400", - "Timestamp": "2019-10-15T05:10:54.000Z" + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.379600", + "Timestamp": "2024-05-16T11:18:02.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.111400", - "Timestamp": "2019-10-15T05:10:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.375600", + "Timestamp": "2024-05-16T11:18:02.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.173400", - "Timestamp": "2019-10-15T05:10:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.319600", + "Timestamp": "2024-05-16T11:18:02.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.173400", - "Timestamp": "2019-10-15T05:10:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.298300", + "Timestamp": "2024-05-16T11:18:02.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.173400", - "Timestamp": "2019-10-15T05:10:54.000Z" + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.293300", + "Timestamp": "2024-05-16T11:18:02.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.173400", - "Timestamp": "2019-10-15T05:10:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.168300", + "Timestamp": "2024-05-16T11:18:02.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.173400", - "Timestamp": "2019-10-15T05:10:54.000Z" + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.876700", + "Timestamp": "2024-05-16T11:18:02.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.173400", - "Timestamp": "2019-10-15T05:10:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.871700", + "Timestamp": "2024-05-16T11:18:02.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.746700", + "Timestamp": "2024-05-16T11:18:02.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-15T05:10:29.000Z" + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.726800", + "Timestamp": "2024-05-16T11:18:01.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-15T05:10:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.661000", + "Timestamp": "2024-05-16T11:18:01.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.131300", - "Timestamp": "2019-10-15T05:10:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.284900", + "Timestamp": "2024-05-16T11:18:01.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.171300", - "Timestamp": "2019-10-15T05:10:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T11:18:01.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-15T05:10:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101800", + "Timestamp": "2024-05-16T11:18:01.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.126000", - "Timestamp": "2019-10-15T05:08:05.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045800", + "Timestamp": "2024-05-16T11:18:01.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.504000", - "Timestamp": "2019-10-15T04:59:55.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137600", + "Timestamp": "2024-05-16T11:18:00.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.946200", - "Timestamp": "2019-10-15T04:59:22.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133900", + "Timestamp": "2024-05-16T11:18:00.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.916200", - "Timestamp": "2019-10-15T04:59:22.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077600", + "Timestamp": "2024-05-16T11:18:00.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.816200", - "Timestamp": "2019-10-15T04:59:22.000Z" + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.144100", + "Timestamp": "2024-05-16T11:18:00.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095600", - "Timestamp": "2019-10-15T04:52:48.000Z" + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.681600", + "Timestamp": "2024-05-16T11:17:59.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T04:52:48.000Z" + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.676600", + "Timestamp": "2024-05-16T11:17:59.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035600", - "Timestamp": "2019-10-15T04:52:48.000Z" + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.551600", + "Timestamp": "2024-05-16T11:17:59.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.840000", - "Timestamp": "2019-10-15T04:43:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.779600", + "Timestamp": "2024-05-16T11:17:59.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.810000", - "Timestamp": "2019-10-15T04:43:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.080700", + "Timestamp": "2024-05-16T11:17:59.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.710000", - "Timestamp": "2019-10-15T04:43:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.075700", + "Timestamp": "2024-05-16T11:17:59.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124400", - "Timestamp": "2019-10-15T04:43:43.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.950700", + "Timestamp": "2024-05-16T11:17:59.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124400", - "Timestamp": "2019-10-15T04:43:43.000Z" + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.026400", + "Timestamp": "2024-05-16T11:17:59.000Z" }, { "AvailabilityZone": "us-east-1a", "InstanceType": "c5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124400", - "Timestamp": "2019-10-15T04:43:43.000Z" + "ProductDescription": "Windows", + "SpotPrice": "0.134600", + "Timestamp": "2024-05-16T11:17:59.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124400", - "Timestamp": "2019-10-15T04:43:43.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.316600", + "Timestamp": "2024-05-16T11:17:59.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124400", - "Timestamp": "2019-10-15T04:43:43.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.635700", + "Timestamp": "2024-05-16T11:17:58.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.126000", - "Timestamp": "2019-10-15T04:43:05.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.630700", + "Timestamp": "2024-05-16T11:17:58.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "p2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.454000", - "Timestamp": "2019-10-15T04:43:02.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.505700", + "Timestamp": "2024-05-16T11:17:58.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "p2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.454000", - "Timestamp": "2019-10-15T04:43:02.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.432200", + "Timestamp": "2024-05-16T11:17:58.000Z" }, { "AvailabilityZone": "us-east-1e", - "InstanceType": "p2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.454000", - "Timestamp": "2019-10-15T04:43:02.000Z" + "InstanceType": "i2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.782600", + "Timestamp": "2024-05-16T11:17:58.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "p2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.454000", - "Timestamp": "2019-10-15T04:43:02.000Z" + "InstanceType": "i2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.879900", + "Timestamp": "2024-05-16T11:17:58.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "p2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.454000", - "Timestamp": "2019-10-15T04:43:02.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301200", + "Timestamp": "2024-05-16T11:17:58.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "a1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.197100", - "Timestamp": "2019-10-15T04:42:29.000Z" + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296200", + "Timestamp": "2024-05-16T11:17:58.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "a1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.197100", - "Timestamp": "2019-10-15T04:42:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171200", + "Timestamp": "2024-05-16T11:17:58.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "a1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.197100", - "Timestamp": "2019-10-15T04:42:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.928200", + "Timestamp": "2024-05-16T11:17:57.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "a1.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.167100", - "Timestamp": "2019-10-15T04:42:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.923200", + "Timestamp": "2024-05-16T11:17:57.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "a1.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.167100", - "Timestamp": "2019-10-15T04:42:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.798200", + "Timestamp": "2024-05-16T11:17:57.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "a1.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.167100", - "Timestamp": "2019-10-15T04:42:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.183500", + "Timestamp": "2024-05-16T11:17:57.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "a1.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.067100", - "Timestamp": "2019-10-15T04:42:29.000Z" + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.178500", + "Timestamp": "2024-05-16T11:17:57.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "a1.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.067100", - "Timestamp": "2019-10-15T04:42:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.053500", + "Timestamp": "2024-05-16T11:17:57.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "a1.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.067100", - "Timestamp": "2019-10-15T04:42:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.138700", + "Timestamp": "2024-05-16T11:17:56.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.814000", - "Timestamp": "2019-10-15T04:42:25.000Z" + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.665400", + "Timestamp": "2024-05-16T11:17:56.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "g3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.784000", - "Timestamp": "2019-10-15T04:42:25.000Z" + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.660400", + "Timestamp": "2024-05-16T11:17:56.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.684000", - "Timestamp": "2019-10-15T04:42:25.000Z" + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.535400", + "Timestamp": "2024-05-16T11:17:56.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092400", - "Timestamp": "2019-10-15T04:40:59.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.783200", + "Timestamp": "2024-05-16T11:17:56.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092400", - "Timestamp": "2019-10-15T04:40:59.000Z" + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.753200", + "Timestamp": "2024-05-16T11:17:56.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092400", - "Timestamp": "2019-10-15T04:40:59.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.653200", + "Timestamp": "2024-05-16T11:17:56.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092400", - "Timestamp": "2019-10-15T04:40:59.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.327900", + "Timestamp": "2024-05-16T11:17:56.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132400", - "Timestamp": "2019-10-15T04:40:59.000Z" + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.322900", + "Timestamp": "2024-05-16T11:17:56.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132400", - "Timestamp": "2019-10-15T04:40:59.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.197900", + "Timestamp": "2024-05-16T11:17:56.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132400", - "Timestamp": "2019-10-15T04:40:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.901600", + "Timestamp": "2024-05-16T11:17:56.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132400", - "Timestamp": "2019-10-15T04:40:59.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.887000", + "Timestamp": "2024-05-16T11:17:56.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032400", - "Timestamp": "2019-10-15T04:40:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.871600", + "Timestamp": "2024-05-16T11:17:56.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032400", - "Timestamp": "2019-10-15T04:40:59.000Z" + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.857000", + "Timestamp": "2024-05-16T11:17:56.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032400", - "Timestamp": "2019-10-15T04:40:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.771600", + "Timestamp": "2024-05-16T11:17:56.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032400", - "Timestamp": "2019-10-15T04:40:59.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.757000", + "Timestamp": "2024-05-16T11:17:56.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.253400", - "Timestamp": "2019-10-15T04:39:59.000Z" + "SpotPrice": "1.435400", + "Timestamp": "2024-05-16T11:17:56.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.253400", - "Timestamp": "2019-10-15T04:39:59.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.430400", + "Timestamp": "2024-05-16T11:17:56.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.305400", + "Timestamp": "2024-05-16T11:17:56.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.2xlarge", + "InstanceType": "c3.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.253400", - "Timestamp": "2019-10-15T04:39:59.000Z" + "SpotPrice": "0.509800", + "Timestamp": "2024-05-16T11:17:55.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c3.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.223400", - "Timestamp": "2019-10-15T04:39:59.000Z" + "SpotPrice": "0.479800", + "Timestamp": "2024-05-16T11:17:55.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.223400", - "Timestamp": "2019-10-15T04:39:59.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.379800", + "Timestamp": "2024-05-16T11:17:55.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.225800", + "Timestamp": "2024-05-16T11:17:55.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.223400", - "Timestamp": "2019-10-15T04:39:59.000Z" + "SpotPrice": "4.220800", + "Timestamp": "2024-05-16T11:17:55.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.123400", - "Timestamp": "2019-10-15T04:39:59.000Z" + "SpotPrice": "4.095800", + "Timestamp": "2024-05-16T11:17:55.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.123400", - "Timestamp": "2019-10-15T04:39:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.229300", + "Timestamp": "2024-05-16T11:17:55.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.123400", - "Timestamp": "2019-10-15T04:39:59.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.613700", + "Timestamp": "2024-05-16T11:17:55.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.272500", - "Timestamp": "2019-10-15T04:26:15.000Z" + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.540400", + "Timestamp": "2024-05-16T11:17:54.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.242500", - "Timestamp": "2019-10-15T04:26:15.000Z" + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.535400", + "Timestamp": "2024-05-16T11:17:54.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.142500", - "Timestamp": "2019-10-15T04:26:15.000Z" + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.410400", + "Timestamp": "2024-05-16T11:17:54.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.762300", - "Timestamp": "2019-10-15T04:26:02.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.084700", + "Timestamp": "2024-05-16T11:17:54.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.732300", - "Timestamp": "2019-10-15T04:26:02.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.542600", + "Timestamp": "2024-05-16T11:17:54.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.632300", - "Timestamp": "2019-10-15T04:26:02.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.537600", + "Timestamp": "2024-05-16T11:17:54.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-15T04:19:53.000Z" + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.412600", + "Timestamp": "2024-05-16T11:17:54.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-15T04:19:53.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.687500", + "Timestamp": "2024-05-16T11:17:54.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-15T04:19:53.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.682500", + "Timestamp": "2024-05-16T11:17:54.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-15T04:19:53.000Z" + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.557500", + "Timestamp": "2024-05-16T11:17:54.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-15T04:19:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.443700", + "Timestamp": "2024-05-16T11:17:53.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-15T04:19:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.438700", + "Timestamp": "2024-05-16T11:17:53.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-15T04:19:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.313700", + "Timestamp": "2024-05-16T11:17:53.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-15T04:19:53.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.597500", + "Timestamp": "2024-05-16T11:17:53.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-15T04:19:53.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.567500", + "Timestamp": "2024-05-16T11:17:53.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094000", - "Timestamp": "2019-10-15T04:19:49.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.467500", + "Timestamp": "2024-05-16T11:17:53.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134000", - "Timestamp": "2019-10-15T04:19:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.039200", + "Timestamp": "2024-05-16T11:17:53.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034000", - "Timestamp": "2019-10-15T04:19:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.537000", + "Timestamp": "2024-05-16T11:17:53.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.504000", - "Timestamp": "2019-10-15T04:19:44.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.032200", - "Timestamp": "2019-10-15T04:19:43.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.532000", + "Timestamp": "2024-05-16T11:17:53.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.032200", - "Timestamp": "2019-10-15T04:19:43.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.032200", - "Timestamp": "2019-10-15T04:19:43.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.032200", - "Timestamp": "2019-10-15T04:19:43.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.032200", - "Timestamp": "2019-10-15T04:19:43.000Z" + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.407000", + "Timestamp": "2024-05-16T11:17:53.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T04:19:17.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.419300", + "Timestamp": "2024-05-16T11:17:53.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.266000", - "Timestamp": "2019-10-15T04:18:43.000Z" + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.205100", + "Timestamp": "2024-05-16T11:17:52.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.236000", - "Timestamp": "2019-10-15T04:18:43.000Z" + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.200100", + "Timestamp": "2024-05-16T11:17:52.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.136000", - "Timestamp": "2019-10-15T04:18:43.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.272500", - "Timestamp": "2019-10-15T04:18:15.000Z" + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.075100", + "Timestamp": "2024-05-16T11:17:52.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.242500", - "Timestamp": "2019-10-15T04:18:15.000Z" + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.816900", + "Timestamp": "2024-05-16T11:17:52.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.142500", - "Timestamp": "2019-10-15T04:18:15.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159200", + "Timestamp": "2024-05-16T11:17:52.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.126000", - "Timestamp": "2019-10-15T04:18:04.000Z" + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155200", + "Timestamp": "2024-05-16T11:17:52.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.946200", - "Timestamp": "2019-10-15T04:17:21.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T11:17:52.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.916200", - "Timestamp": "2019-10-15T04:17:21.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.161200", + "Timestamp": "2024-05-16T11:17:52.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.816200", - "Timestamp": "2019-10-15T04:17:21.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.500600", + "Timestamp": "2024-05-16T11:17:51.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "a1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.093600", - "Timestamp": "2019-10-15T04:13:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.495600", + "Timestamp": "2024-05-16T11:17:51.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "a1.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.133600", - "Timestamp": "2019-10-15T04:13:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.370600", + "Timestamp": "2024-05-16T11:17:51.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "a1.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.033600", - "Timestamp": "2019-10-15T04:13:48.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m1.xlarge", + "InstanceType": "m5n.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.283000", - "Timestamp": "2019-10-15T04:11:48.000Z" + "SpotPrice": "2.288900", + "Timestamp": "2024-05-16T11:17:50.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m1.xlarge", + "InstanceType": "c6id.large", "ProductDescription": "Windows", - "SpotPrice": "0.283000", - "Timestamp": "2019-10-15T04:11:48.000Z" + "SpotPrice": "0.134200", + "Timestamp": "2024-05-16T11:17:50.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.xlarge", + "InstanceType": "c6id.large", "ProductDescription": "Windows", - "SpotPrice": "0.283000", - "Timestamp": "2019-10-15T04:11:48.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095000", - "Timestamp": "2019-10-15T04:11:30.000Z" + "SpotPrice": "0.137600", + "Timestamp": "2024-05-16T11:17:50.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095000", - "Timestamp": "2019-10-15T04:11:30.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095000", - "Timestamp": "2019-10-15T04:11:30.000Z" + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.632700", + "Timestamp": "2024-05-16T11:17:50.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m1.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135000", - "Timestamp": "2019-10-15T04:11:30.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.627700", + "Timestamp": "2024-05-16T11:17:50.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m1.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135000", - "Timestamp": "2019-10-15T04:11:30.000Z" + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.502700", + "Timestamp": "2024-05-16T11:17:50.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135000", - "Timestamp": "2019-10-15T04:11:30.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.447600", + "Timestamp": "2024-05-16T11:17:49.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m1.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035000", - "Timestamp": "2019-10-15T04:11:30.000Z" + "InstanceType": "gr6.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.417600", + "Timestamp": "2024-05-16T11:17:49.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m1.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035000", - "Timestamp": "2019-10-15T04:11:30.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.317600", + "Timestamp": "2024-05-16T11:17:49.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035000", - "Timestamp": "2019-10-15T04:11:30.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.139900", + "Timestamp": "2024-05-16T11:17:49.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095000", - "Timestamp": "2019-10-15T04:11:26.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m1.xlarge", + "InstanceType": "inf1.6xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095000", - "Timestamp": "2019-10-15T04:11:26.000Z" + "SpotPrice": "0.687800", + "Timestamp": "2024-05-16T11:17:49.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095000", - "Timestamp": "2019-10-15T04:11:26.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.xlarge", + "InstanceType": "inf1.6xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095000", - "Timestamp": "2019-10-15T04:11:26.000Z" + "SpotPrice": "0.649700", + "Timestamp": "2024-05-16T11:17:49.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m1.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135000", - "Timestamp": "2019-10-15T04:11:26.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m1.xlarge", + "InstanceType": "inf1.6xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135000", - "Timestamp": "2019-10-15T04:11:26.000Z" + "SpotPrice": "0.682800", + "Timestamp": "2024-05-16T11:17:49.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m1.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135000", - "Timestamp": "2019-10-15T04:11:26.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.xlarge", + "InstanceType": "inf1.6xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135000", - "Timestamp": "2019-10-15T04:11:26.000Z" + "SpotPrice": "0.644700", + "Timestamp": "2024-05-16T11:17:49.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m1.xlarge", + "InstanceType": "inf1.6xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035000", - "Timestamp": "2019-10-15T04:11:26.000Z" + "SpotPrice": "0.557800", + "Timestamp": "2024-05-16T11:17:49.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "inf1.6xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035000", - "Timestamp": "2019-10-15T04:11:26.000Z" + "SpotPrice": "0.519700", + "Timestamp": "2024-05-16T11:17:49.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m1.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035000", - "Timestamp": "2019-10-15T04:11:26.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.235700", + "Timestamp": "2024-05-16T11:17:49.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.xlarge", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232000", + "Timestamp": "2024-05-16T11:17:49.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035000", - "Timestamp": "2019-10-15T04:11:26.000Z" + "SpotPrice": "0.175700", + "Timestamp": "2024-05-16T11:17:49.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m1.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.283000", - "Timestamp": "2019-10-15T04:11:25.000Z" + "InstanceType": "m2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270700", + "Timestamp": "2024-05-16T11:17:48.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m1.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.283000", - "Timestamp": "2019-10-15T04:11:25.000Z" + "InstanceType": "m2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.279600", + "Timestamp": "2024-05-16T11:17:48.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.283000", - "Timestamp": "2019-10-15T04:11:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.310700", + "Timestamp": "2024-05-16T11:17:48.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.762300", - "Timestamp": "2019-10-15T04:11:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319600", + "Timestamp": "2024-05-16T11:17:48.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.762300", - "Timestamp": "2019-10-15T04:11:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.210700", + "Timestamp": "2024-05-16T11:17:48.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.762300", - "Timestamp": "2019-10-15T04:11:25.000Z" + "InstanceType": "m2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219600", + "Timestamp": "2024-05-16T11:17:48.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.762300", - "Timestamp": "2019-10-15T04:11:25.000Z" - }, - { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.732300", - "Timestamp": "2019-10-15T04:11:25.000Z" + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.997600", + "Timestamp": "2024-05-16T11:17:48.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.732300", - "Timestamp": "2019-10-15T04:11:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.992600", + "Timestamp": "2024-05-16T11:17:48.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.732300", - "Timestamp": "2019-10-15T04:11:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.867600", + "Timestamp": "2024-05-16T11:17:48.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.732300", - "Timestamp": "2019-10-15T04:11:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.127600", + "Timestamp": "2024-05-16T11:17:48.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.632300", - "Timestamp": "2019-10-15T04:11:25.000Z" + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.524700", + "Timestamp": "2024-05-16T11:17:48.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.632300", - "Timestamp": "2019-10-15T04:11:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.871800", + "Timestamp": "2024-05-16T11:17:48.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.632300", - "Timestamp": "2019-10-15T04:11:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.866800", + "Timestamp": "2024-05-16T11:17:48.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.632300", - "Timestamp": "2019-10-15T04:11:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.741800", + "Timestamp": "2024-05-16T11:17:48.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.048300", - "Timestamp": "2019-10-15T04:11:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.104300", + "Timestamp": "2024-05-16T11:17:48.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.048300", - "Timestamp": "2019-10-15T04:11:25.000Z" + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.099300", + "Timestamp": "2024-05-16T11:17:48.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.048300", - "Timestamp": "2019-10-15T04:11:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.974300", + "Timestamp": "2024-05-16T11:17:48.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.048300", - "Timestamp": "2019-10-15T04:11:25.000Z" + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.298200", + "Timestamp": "2024-05-16T11:17:48.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.048300", - "Timestamp": "2019-10-15T04:11:25.000Z" + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.466000", + "Timestamp": "2024-05-16T11:17:47.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.491400", - "Timestamp": "2019-10-15T04:11:11.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.461000", + "Timestamp": "2024-05-16T11:17:47.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.491400", - "Timestamp": "2019-10-15T04:11:11.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.336000", + "Timestamp": "2024-05-16T11:17:47.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.491400", - "Timestamp": "2019-10-15T04:11:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.262900", + "Timestamp": "2024-05-16T11:17:47.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.491400", - "Timestamp": "2019-10-15T04:11:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.642400", + "Timestamp": "2024-05-16T11:17:47.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.491400", - "Timestamp": "2019-10-15T04:11:11.000Z" + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.153200", + "Timestamp": "2024-05-16T11:17:47.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.491400", - "Timestamp": "2019-10-15T04:11:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.123200", + "Timestamp": "2024-05-16T11:17:47.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m1.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.035400", - "Timestamp": "2019-10-15T04:11:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.023200", + "Timestamp": "2024-05-16T11:17:47.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m1.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.035400", - "Timestamp": "2019-10-15T04:11:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099500", + "Timestamp": "2024-05-16T11:17:47.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m1.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.035400", - "Timestamp": "2019-10-15T04:11:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095800", + "Timestamp": "2024-05-16T11:17:47.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.035400", - "Timestamp": "2019-10-15T04:11:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039500", + "Timestamp": "2024-05-16T11:17:47.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m1.small", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.035400", - "Timestamp": "2019-10-15T04:11:10.000Z" + "SpotPrice": "0.520800", + "Timestamp": "2024-05-16T11:17:46.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m1.small", - "ProductDescription": "Windows", - "SpotPrice": "0.035400", - "Timestamp": "2019-10-15T04:11:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.952500", + "Timestamp": "2024-05-16T11:17:46.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m1.small", - "ProductDescription": "Windows", - "SpotPrice": "0.035400", - "Timestamp": "2019-10-15T04:11:10.000Z" + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.947500", + "Timestamp": "2024-05-16T11:17:46.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.small", - "ProductDescription": "Windows", - "SpotPrice": "0.035400", - "Timestamp": "2019-10-15T04:11:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.822500", + "Timestamp": "2024-05-16T11:17:46.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m1.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.064400", - "Timestamp": "2019-10-15T04:11:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.023700", + "Timestamp": "2024-05-16T11:17:46.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m1.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.064400", - "Timestamp": "2019-10-15T04:11:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.018700", + "Timestamp": "2024-05-16T11:17:46.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m1.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.064400", - "Timestamp": "2019-10-15T04:11:10.000Z" + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.893700", + "Timestamp": "2024-05-16T11:17:46.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.064400", - "Timestamp": "2019-10-15T04:11:10.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.496400", + "Timestamp": "2024-05-16T11:17:46.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m1.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.034400", - "Timestamp": "2019-10-15T04:11:10.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.491400", + "Timestamp": "2024-05-16T11:17:46.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m1.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.034400", - "Timestamp": "2019-10-15T04:11:10.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.366400", + "Timestamp": "2024-05-16T11:17:46.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m1.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.034400", - "Timestamp": "2019-10-15T04:11:10.000Z" + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.888400", + "Timestamp": "2024-05-16T11:17:46.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.034400", - "Timestamp": "2019-10-15T04:11:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.883400", + "Timestamp": "2024-05-16T11:17:46.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.758400", + "Timestamp": "2024-05-16T11:17:46.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m1.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.004400", - "Timestamp": "2019-10-15T04:11:10.000Z" + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.453500", + "Timestamp": "2024-05-16T11:17:45.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m1.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.004400", - "Timestamp": "2019-10-15T04:11:10.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.839000", + "Timestamp": "2024-05-16T11:17:45.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m1.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.004400", - "Timestamp": "2019-10-15T04:11:10.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.809000", + "Timestamp": "2024-05-16T11:17:45.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m1.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.004400", - "Timestamp": "2019-10-15T04:11:10.000Z" + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.709000", + "Timestamp": "2024-05-16T11:17:45.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m1.small", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.064400", - "Timestamp": "2019-10-15T04:11:10.000Z" + "SpotPrice": "0.295700", + "Timestamp": "2024-05-16T11:17:45.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m1.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.064400", - "Timestamp": "2019-10-15T04:11:10.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265700", + "Timestamp": "2024-05-16T11:17:45.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m1.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.064400", - "Timestamp": "2019-10-15T04:11:10.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165700", + "Timestamp": "2024-05-16T11:17:45.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m1.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.034400", - "Timestamp": "2019-10-15T04:11:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.309200", + "Timestamp": "2024-05-16T11:17:45.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m1.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.034400", - "Timestamp": "2019-10-15T04:11:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104700", + "Timestamp": "2024-05-16T11:17:45.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m1.small", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.034400", - "Timestamp": "2019-10-15T04:11:10.000Z" + "SpotPrice": "0.101000", + "Timestamp": "2024-05-16T11:17:45.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m1.small", + "InstanceType": "m6i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.004400", - "Timestamp": "2019-10-15T04:11:10.000Z" + "SpotPrice": "0.044700", + "Timestamp": "2024-05-16T11:17:45.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m1.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.004400", - "Timestamp": "2019-10-15T04:11:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.449300", + "Timestamp": "2024-05-16T11:17:44.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m1.small", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.444300", + "Timestamp": "2024-05-16T11:17:44.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.004400", - "Timestamp": "2019-10-15T04:11:10.000Z" + "SpotPrice": "1.319300", + "Timestamp": "2024-05-16T11:17:44.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.048300", - "Timestamp": "2019-10-15T04:11:01.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125000", + "Timestamp": "2024-05-16T11:17:44.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "7.330000", - "Timestamp": "2019-10-15T04:10:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113100", + "Timestamp": "2024-05-16T11:17:44.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "p2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "7.300000", - "Timestamp": "2019-10-15T04:10:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153100", + "Timestamp": "2024-05-16T11:17:44.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "7.200000", - "Timestamp": "2019-10-15T04:10:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053100", + "Timestamp": "2024-05-16T11:17:44.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.632000", - "Timestamp": "2019-10-15T04:10:53.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.376200", + "Timestamp": "2024-05-16T11:17:44.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "8.672000", - "Timestamp": "2019-10-15T04:10:53.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.371200", + "Timestamp": "2024-05-16T11:17:44.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.632000", - "Timestamp": "2019-10-15T04:10:53.000Z" + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.246200", + "Timestamp": "2024-05-16T11:17:44.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.632000", - "Timestamp": "2019-10-15T04:10:53.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120400", + "Timestamp": "2024-05-16T11:17:44.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.632000", - "Timestamp": "2019-10-15T04:10:53.000Z" + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-16T11:17:44.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.128000", - "Timestamp": "2019-10-15T04:09:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060400", + "Timestamp": "2024-05-16T11:17:44.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.128000", - "Timestamp": "2019-10-15T04:09:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.390000", + "Timestamp": "2024-05-16T11:17:43.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.128000", - "Timestamp": "2019-10-15T04:09:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.385000", + "Timestamp": "2024-05-16T11:17:43.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.128000", - "Timestamp": "2019-10-15T04:09:56.000Z" + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.260000", + "Timestamp": "2024-05-16T11:17:43.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.128000", - "Timestamp": "2019-10-15T04:09:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.509000", + "Timestamp": "2024-05-16T11:17:43.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.168000", - "Timestamp": "2019-10-15T04:09:56.000Z" + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.504000", + "Timestamp": "2024-05-16T11:17:43.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5n.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.168000", - "Timestamp": "2019-10-15T04:09:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.379000", + "Timestamp": "2024-05-16T11:17:43.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5n.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.168000", - "Timestamp": "2019-10-15T04:09:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135900", + "Timestamp": "2024-05-16T11:17:43.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5n.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.168000", - "Timestamp": "2019-10-15T04:09:56.000Z" + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132200", + "Timestamp": "2024-05-16T11:17:43.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5n.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.168000", - "Timestamp": "2019-10-15T04:09:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075900", + "Timestamp": "2024-05-16T11:17:43.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.068000", - "Timestamp": "2019-10-15T04:09:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.067000", + "Timestamp": "2024-05-16T11:17:43.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.068000", - "Timestamp": "2019-10-15T04:09:56.000Z" + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.062000", + "Timestamp": "2024-05-16T11:17:43.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.068000", - "Timestamp": "2019-10-15T04:09:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.937000", + "Timestamp": "2024-05-16T11:17:43.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.068000", - "Timestamp": "2019-10-15T04:09:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.951200", + "Timestamp": "2024-05-16T11:17:43.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.068000", - "Timestamp": "2019-10-15T04:09:56.000Z" + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.946200", + "Timestamp": "2024-05-16T11:17:43.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252000", - "Timestamp": "2019-10-15T04:09:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.821200", + "Timestamp": "2024-05-16T11:17:43.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252000", - "Timestamp": "2019-10-15T04:09:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142500", + "Timestamp": "2024-05-16T11:17:42.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252000", - "Timestamp": "2019-10-15T04:09:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138800", + "Timestamp": "2024-05-16T11:17:42.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252000", - "Timestamp": "2019-10-15T04:09:56.000Z" + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082500", + "Timestamp": "2024-05-16T11:17:42.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.150100", + "Timestamp": "2024-05-16T11:17:42.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252000", - "Timestamp": "2019-10-15T04:09:56.000Z" + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.157400", + "Timestamp": "2024-05-16T11:17:42.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.504000", - "Timestamp": "2019-10-15T04:01:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294700", + "Timestamp": "2024-05-16T11:17:42.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.985000", - "Timestamp": "2019-10-15T04:01:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289700", + "Timestamp": "2024-05-16T11:17:42.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.955000", - "Timestamp": "2019-10-15T04:01:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164700", + "Timestamp": "2024-05-16T11:17:42.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.855000", - "Timestamp": "2019-10-15T04:01:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.597200", + "Timestamp": "2024-05-16T11:17:42.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.139500", - "Timestamp": "2019-10-15T04:00:44.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.567200", + "Timestamp": "2024-05-16T11:17:42.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.179500", - "Timestamp": "2019-10-15T04:00:44.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.467200", + "Timestamp": "2024-05-16T11:17:42.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.079500", - "Timestamp": "2019-10-15T04:00:44.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Windows", + "SpotPrice": "15.622300", + "Timestamp": "2024-05-16T11:17:42.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.402100", - "Timestamp": "2019-10-15T04:00:26.000Z" + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147700", + "Timestamp": "2024-05-16T11:17:42.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.372100", - "Timestamp": "2019-10-15T04:00:26.000Z" + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143700", + "Timestamp": "2024-05-16T11:17:42.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.272100", - "Timestamp": "2019-10-15T04:00:26.000Z" + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087700", + "Timestamp": "2024-05-16T11:17:42.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.126000", - "Timestamp": "2019-10-15T03:53:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.520100", + "Timestamp": "2024-05-16T11:17:41.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.063000", - "Timestamp": "2019-10-15T03:52:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.465100", + "Timestamp": "2024-05-16T11:17:41.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.248800", - "Timestamp": "2019-10-15T03:42:19.000Z" + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.515100", + "Timestamp": "2024-05-16T11:17:41.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.248800", - "Timestamp": "2019-10-15T03:42:19.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.460100", + "Timestamp": "2024-05-16T11:17:41.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.248800", - "Timestamp": "2019-10-15T03:42:19.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.390100", + "Timestamp": "2024-05-16T11:17:41.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.248800", - "Timestamp": "2019-10-15T03:42:19.000Z" + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.335100", + "Timestamp": "2024-05-16T11:17:41.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.248800", - "Timestamp": "2019-10-15T03:42:19.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.541800", + "Timestamp": "2024-05-16T11:17:41.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.272500", - "Timestamp": "2019-10-15T03:28:14.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.536800", + "Timestamp": "2024-05-16T11:17:41.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.242500", - "Timestamp": "2019-10-15T03:28:14.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.411800", + "Timestamp": "2024-05-16T11:17:41.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.142500", - "Timestamp": "2019-10-15T03:28:14.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.883800", + "Timestamp": "2024-05-16T11:17:41.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.415000", - "Timestamp": "2019-10-15T03:27:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.878800", + "Timestamp": "2024-05-16T11:17:41.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.385000", - "Timestamp": "2019-10-15T03:27:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.753800", + "Timestamp": "2024-05-16T11:17:41.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.285000", - "Timestamp": "2019-10-15T03:27:55.000Z" + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.799000", + "Timestamp": "2024-05-16T11:17:41.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.024200", - "Timestamp": "2019-10-15T03:18:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.794000", + "Timestamp": "2024-05-16T11:17:41.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.024200", - "Timestamp": "2019-10-15T03:18:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.669000", + "Timestamp": "2024-05-16T11:17:41.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3a.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.024000", - "Timestamp": "2019-10-15T03:13:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.305200", + "Timestamp": "2024-05-16T11:17:41.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.024000", - "Timestamp": "2019-10-15T03:13:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.300200", + "Timestamp": "2024-05-16T11:17:41.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.024000", - "Timestamp": "2019-10-15T03:13:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175200", + "Timestamp": "2024-05-16T11:17:41.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.024000", - "Timestamp": "2019-10-15T03:13:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.669800", + "Timestamp": "2024-05-16T11:17:41.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.024000", - "Timestamp": "2019-10-15T03:13:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.664800", + "Timestamp": "2024-05-16T11:17:41.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "t3a.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.066400", - "Timestamp": "2019-10-15T03:12:33.000Z" + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.539800", + "Timestamp": "2024-05-16T11:17:41.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.065600", - "Timestamp": "2019-10-15T03:12:33.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.448300", + "Timestamp": "2024-05-16T11:17:41.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.066100", - "Timestamp": "2019-10-15T03:12:33.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.443300", + "Timestamp": "2024-05-16T11:17:41.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.065600", - "Timestamp": "2019-10-15T03:12:33.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.318300", + "Timestamp": "2024-05-16T11:17:41.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3a.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.106400", - "Timestamp": "2019-10-15T03:12:33.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.992600", + "Timestamp": "2024-05-16T11:17:40.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.105600", - "Timestamp": "2019-10-15T03:12:33.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.987600", + "Timestamp": "2024-05-16T11:17:40.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.106100", - "Timestamp": "2019-10-15T03:12:33.000Z" + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.862600", + "Timestamp": "2024-05-16T11:17:40.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.105600", - "Timestamp": "2019-10-15T03:12:33.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.484700", + "Timestamp": "2024-05-16T11:17:40.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "t3a.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.006400", - "Timestamp": "2019-10-15T03:12:33.000Z" + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.479700", + "Timestamp": "2024-05-16T11:17:40.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.005600", - "Timestamp": "2019-10-15T03:12:33.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.354700", + "Timestamp": "2024-05-16T11:17:40.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.006100", - "Timestamp": "2019-10-15T03:12:33.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.388800", + "Timestamp": "2024-05-16T11:17:40.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.005600", - "Timestamp": "2019-10-15T03:12:33.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.124800", + "Timestamp": "2024-05-16T11:17:39.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.066600", - "Timestamp": "2019-10-15T03:11:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.119800", + "Timestamp": "2024-05-16T11:17:39.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "t3.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.066300", - "Timestamp": "2019-10-15T03:11:41.000Z" + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.994800", + "Timestamp": "2024-05-16T11:17:39.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.066300", - "Timestamp": "2019-10-15T03:11:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.607800", + "Timestamp": "2024-05-16T11:17:38.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.066300", - "Timestamp": "2019-10-15T03:11:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.602800", + "Timestamp": "2024-05-16T11:17:38.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t3.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.066300", - "Timestamp": "2019-10-15T03:11:41.000Z" + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.477800", + "Timestamp": "2024-05-16T11:17:38.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.106600", - "Timestamp": "2019-10-15T03:11:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.242500", + "Timestamp": "2024-05-16T11:17:38.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.106300", - "Timestamp": "2019-10-15T03:11:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.263300", + "Timestamp": "2024-05-16T11:17:37.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t3.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.106300", - "Timestamp": "2019-10-15T03:11:41.000Z" + "InstanceType": "g6.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.233300", + "Timestamp": "2024-05-16T11:17:37.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.106300", - "Timestamp": "2019-10-15T03:11:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133300", + "Timestamp": "2024-05-16T11:17:37.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t3.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.106300", - "Timestamp": "2019-10-15T03:11:41.000Z" + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.854000", + "Timestamp": "2024-05-16T11:17:37.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.006600", - "Timestamp": "2019-10-15T03:11:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119000", + "Timestamp": "2024-05-16T11:17:36.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.006300", - "Timestamp": "2019-10-15T03:11:41.000Z" + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115300", + "Timestamp": "2024-05-16T11:17:36.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.006300", - "Timestamp": "2019-10-15T03:11:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059000", + "Timestamp": "2024-05-16T11:17:36.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.006300", - "Timestamp": "2019-10-15T03:11:41.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.006300", - "Timestamp": "2019-10-15T03:11:41.000Z" + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.241100", + "Timestamp": "2024-05-16T11:17:35.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "t3.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.024700", - "Timestamp": "2019-10-15T03:11:40.000Z" + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.073900", + "Timestamp": "2024-05-16T11:17:35.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.024700", - "Timestamp": "2019-10-15T03:11:40.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.089500", + "Timestamp": "2024-05-16T11:17:35.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t3.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.024700", - "Timestamp": "2019-10-15T03:11:40.000Z" + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.626100", + "Timestamp": "2024-05-16T11:17:35.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.024700", - "Timestamp": "2019-10-15T03:11:40.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.084500", + "Timestamp": "2024-05-16T11:17:35.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.024700", - "Timestamp": "2019-10-15T03:11:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.621100", + "Timestamp": "2024-05-16T11:17:35.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.124700", - "Timestamp": "2019-10-15T03:11:26.000Z" + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.959500", + "Timestamp": "2024-05-16T11:17:35.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.125200", - "Timestamp": "2019-10-15T03:11:26.000Z" + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.496100", + "Timestamp": "2024-05-16T11:17:35.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.124600", - "Timestamp": "2019-10-15T03:11:26.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.237900", + "Timestamp": "2024-05-16T11:17:35.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.164700", - "Timestamp": "2019-10-15T03:11:26.000Z" + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.207900", + "Timestamp": "2024-05-16T11:17:35.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.165200", - "Timestamp": "2019-10-15T03:11:26.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.107900", + "Timestamp": "2024-05-16T11:17:35.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.164600", - "Timestamp": "2019-10-15T03:11:26.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.613400", + "Timestamp": "2024-05-16T11:17:35.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.268000", + "Timestamp": "2024-05-16T11:17:32.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.064700", - "Timestamp": "2019-10-15T03:11:26.000Z" + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165500", + "Timestamp": "2024-05-16T11:17:31.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.065200", - "Timestamp": "2019-10-15T03:11:26.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161800", + "Timestamp": "2024-05-16T11:17:31.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.064600", - "Timestamp": "2019-10-15T03:11:26.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105500", + "Timestamp": "2024-05-16T11:17:31.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.xlarge", + "InstanceType": "t3a.nano", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.124600", - "Timestamp": "2019-10-15T03:11:25.000Z" + "SpotPrice": "0.062500", + "Timestamp": "2024-05-16T11:17:31.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.124600", - "Timestamp": "2019-10-15T03:11:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-16T11:17:31.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.124600", - "Timestamp": "2019-10-15T03:11:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-16T11:17:31.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.xlarge", + "InstanceType": "m4.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.124600", - "Timestamp": "2019-10-15T03:11:25.000Z" + "SpotPrice": "0.521300", + "Timestamp": "2024-05-16T11:17:31.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.164600", - "Timestamp": "2019-10-15T03:11:25.000Z" + "SpotPrice": "0.491300", + "Timestamp": "2024-05-16T11:17:31.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.391300", + "Timestamp": "2024-05-16T11:17:31.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.164600", - "Timestamp": "2019-10-15T03:11:25.000Z" + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.295200", + "Timestamp": "2024-05-16T11:17:31.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.164600", - "Timestamp": "2019-10-15T03:11:25.000Z" + "SpotPrice": "0.291200", + "Timestamp": "2024-05-16T11:17:31.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235200", + "Timestamp": "2024-05-16T11:17:31.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.xlarge", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134900", + "Timestamp": "2024-05-16T11:17:31.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.164600", - "Timestamp": "2019-10-15T03:11:25.000Z" + "SpotPrice": "0.130900", + "Timestamp": "2024-05-16T11:17:31.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.064600", - "Timestamp": "2019-10-15T03:11:25.000Z" + "SpotPrice": "0.074900", + "Timestamp": "2024-05-16T11:17:31.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.064600", - "Timestamp": "2019-10-15T03:11:25.000Z" + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100100", + "Timestamp": "2024-05-16T11:17:30.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.064600", - "Timestamp": "2019-10-15T03:11:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096400", + "Timestamp": "2024-05-16T11:17:30.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.064600", - "Timestamp": "2019-10-15T03:11:25.000Z" + "SpotPrice": "0.040100", + "Timestamp": "2024-05-16T11:17:30.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095600", - "Timestamp": "2019-10-15T03:11:14.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111600", + "Timestamp": "2024-05-16T11:17:30.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095600", - "Timestamp": "2019-10-15T03:11:14.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T11:17:30.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T03:11:14.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051600", + "Timestamp": "2024-05-16T11:17:30.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T03:11:14.000Z" + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.840400", + "Timestamp": "2024-05-16T11:17:30.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035600", - "Timestamp": "2019-10-15T03:11:14.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.835400", + "Timestamp": "2024-05-16T11:17:30.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035600", - "Timestamp": "2019-10-15T03:11:14.000Z" + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.710400", + "Timestamp": "2024-05-16T11:17:30.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.096200", - "Timestamp": "2019-10-15T03:10:56.000Z" + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.302800", + "Timestamp": "2024-05-16T11:17:30.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.136200", - "Timestamp": "2019-10-15T03:10:56.000Z" + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.297800", + "Timestamp": "2024-05-16T11:17:30.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.036200", - "Timestamp": "2019-10-15T03:10:56.000Z" + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172800", + "Timestamp": "2024-05-16T11:17:30.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T03:10:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.989600", + "Timestamp": "2024-05-16T11:17:30.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T03:10:55.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.174600", + "Timestamp": "2024-05-16T11:17:30.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T03:10:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.984600", + "Timestamp": "2024-05-16T11:17:30.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.169600", + "Timestamp": "2024-05-16T11:17:30.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T03:10:55.000Z" + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.859600", + "Timestamp": "2024-05-16T11:17:30.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T03:10:55.000Z" + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.044600", + "Timestamp": "2024-05-16T11:17:30.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.063000", - "Timestamp": "2019-10-15T03:10:55.000Z" + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.871600", + "Timestamp": "2024-05-16T11:17:30.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T03:10:52.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.866600", + "Timestamp": "2024-05-16T11:17:30.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5dn.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T03:10:52.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.741600", + "Timestamp": "2024-05-16T11:17:30.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T03:10:52.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.653300", + "Timestamp": "2024-05-16T11:17:30.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T03:10:52.000Z" + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.648300", + "Timestamp": "2024-05-16T11:17:30.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T03:10:52.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.523300", + "Timestamp": "2024-05-16T11:17:30.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095600", - "Timestamp": "2019-10-15T03:10:23.000Z" + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.513700", + "Timestamp": "2024-05-16T11:17:30.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5dn.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095600", - "Timestamp": "2019-10-15T03:10:23.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.508700", + "Timestamp": "2024-05-16T11:17:30.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095600", - "Timestamp": "2019-10-15T03:10:23.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.383700", + "Timestamp": "2024-05-16T11:17:30.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095600", - "Timestamp": "2019-10-15T03:10:23.000Z" + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.288800", + "Timestamp": "2024-05-16T11:17:27.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095600", - "Timestamp": "2019-10-15T03:10:23.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.402000", + "Timestamp": "2024-05-16T11:17:27.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T03:10:23.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.435300", + "Timestamp": "2024-05-16T11:17:27.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5dn.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T03:10:23.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.397000", + "Timestamp": "2024-05-16T11:17:27.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T03:10:23.000Z" + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.430300", + "Timestamp": "2024-05-16T11:17:27.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T03:10:23.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.272000", + "Timestamp": "2024-05-16T11:17:27.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T03:10:23.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.305300", + "Timestamp": "2024-05-16T11:17:27.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035600", - "Timestamp": "2019-10-15T03:10:23.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.390600", + "Timestamp": "2024-05-16T11:17:26.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5dn.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035600", - "Timestamp": "2019-10-15T03:10:23.000Z" + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.385600", + "Timestamp": "2024-05-16T11:17:26.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035600", - "Timestamp": "2019-10-15T03:10:23.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.260600", + "Timestamp": "2024-05-16T11:17:26.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035600", - "Timestamp": "2019-10-15T03:10:23.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144000", + "Timestamp": "2024-05-16T11:17:25.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035600", - "Timestamp": "2019-10-15T03:10:23.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140300", + "Timestamp": "2024-05-16T11:17:25.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.048300", - "Timestamp": "2019-10-15T02:55:00.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084000", + "Timestamp": "2024-05-16T11:17:25.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "4.450000", - "Timestamp": "2019-10-15T02:46:20.000Z" + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170300", + "Timestamp": "2024-05-16T11:17:25.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "p2.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "4.420000", - "Timestamp": "2019-10-15T02:46:20.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169000", + "Timestamp": "2024-05-16T11:17:25.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "4.320000", - "Timestamp": "2019-10-15T02:46:20.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095600", - "Timestamp": "2019-10-15T02:46:13.000Z" + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166300", + "Timestamp": "2024-05-16T11:17:25.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T02:46:13.000Z" + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165000", + "Timestamp": "2024-05-16T11:17:25.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035600", - "Timestamp": "2019-10-15T02:46:13.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T11:17:25.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095600", - "Timestamp": "2019-10-15T02:45:47.000Z" + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109000", + "Timestamp": "2024-05-16T11:17:25.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T02:45:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171300", + "Timestamp": "2024-05-16T11:17:25.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035600", - "Timestamp": "2019-10-15T02:45:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167300", + "Timestamp": "2024-05-16T11:17:25.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.840000", - "Timestamp": "2019-10-15T02:45:46.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111300", + "Timestamp": "2024-05-16T11:17:25.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.810000", - "Timestamp": "2019-10-15T02:45:46.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.988700", + "Timestamp": "2024-05-16T11:03:44.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.710000", - "Timestamp": "2019-10-15T02:45:46.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.983700", + "Timestamp": "2024-05-16T11:03:44.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "a1.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.076800", - "Timestamp": "2019-10-15T02:43:11.000Z" + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.858700", + "Timestamp": "2024-05-16T11:03:44.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "a1.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.076800", - "Timestamp": "2019-10-15T02:43:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.725300", + "Timestamp": "2024-05-16T11:03:42.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "a1.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.076800", - "Timestamp": "2019-10-15T02:43:11.000Z" + "InstanceType": "x2iedn.metal", + "ProductDescription": "Windows", + "SpotPrice": "21.775900", + "Timestamp": "2024-05-16T11:03:41.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "a1.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.116800", - "Timestamp": "2019-10-15T02:43:11.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "a1.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.116800", - "Timestamp": "2019-10-15T02:43:11.000Z" + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.793600", + "Timestamp": "2024-05-16T11:03:40.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "a1.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.116800", - "Timestamp": "2019-10-15T02:43:11.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.788600", + "Timestamp": "2024-05-16T11:03:40.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "a1.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.016800", - "Timestamp": "2019-10-15T02:43:11.000Z" + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.663600", + "Timestamp": "2024-05-16T11:03:40.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "a1.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.016800", - "Timestamp": "2019-10-15T02:43:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.430400", + "Timestamp": "2024-05-16T11:03:40.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "a1.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.016800", - "Timestamp": "2019-10-15T02:43:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.425400", + "Timestamp": "2024-05-16T11:03:40.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.096000", - "Timestamp": "2019-10-15T02:38:18.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.300400", + "Timestamp": "2024-05-16T11:03:40.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.136000", - "Timestamp": "2019-10-15T02:38:18.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "10.121200", + "Timestamp": "2024-05-16T11:03:39.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.036000", - "Timestamp": "2019-10-15T02:38:18.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "10.116200", + "Timestamp": "2024-05-16T11:03:39.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.840000", - "Timestamp": "2019-10-15T02:37:32.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "9.991200", + "Timestamp": "2024-05-16T11:03:39.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.810000", - "Timestamp": "2019-10-15T02:37:32.000Z" + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.401700", + "Timestamp": "2024-05-16T11:03:38.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.710000", - "Timestamp": "2019-10-15T02:37:32.000Z" + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.398000", + "Timestamp": "2024-05-16T11:03:38.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.126000", - "Timestamp": "2019-10-15T02:37:03.000Z" + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.341700", + "Timestamp": "2024-05-16T11:03:38.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "9.889400", - "Timestamp": "2019-10-15T02:35:05.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.076600", + "Timestamp": "2024-05-16T11:03:37.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "9.889400", - "Timestamp": "2019-10-15T02:35:05.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.611100", + "Timestamp": "2024-05-16T11:03:37.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "9.889400", - "Timestamp": "2019-10-15T02:35:05.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.606100", + "Timestamp": "2024-05-16T11:03:37.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "9.889400", - "Timestamp": "2019-10-15T02:35:05.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.481100", + "Timestamp": "2024-05-16T11:03:37.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "9.889400", - "Timestamp": "2019-10-15T02:35:05.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.081400", + "Timestamp": "2024-05-16T11:03:37.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "9.889400", - "Timestamp": "2019-10-15T02:35:05.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.940500", + "Timestamp": "2024-05-16T11:03:36.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.122700", - "Timestamp": "2019-10-15T02:28:51.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.935500", + "Timestamp": "2024-05-16T11:03:36.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.162700", - "Timestamp": "2019-10-15T02:28:51.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.810500", + "Timestamp": "2024-05-16T11:03:36.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.062700", - "Timestamp": "2019-10-15T02:28:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.257300", + "Timestamp": "2024-05-16T11:03:34.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.266000", - "Timestamp": "2019-10-15T02:20:42.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.120100", + "Timestamp": "2024-05-16T11:03:34.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.236000", - "Timestamp": "2019-10-15T02:20:42.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.303400", + "Timestamp": "2024-05-16T11:03:33.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.136000", - "Timestamp": "2019-10-15T02:20:42.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.898900", + "Timestamp": "2024-05-16T11:03:33.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.069700", - "Timestamp": "2019-10-15T02:13:32.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.893900", + "Timestamp": "2024-05-16T11:03:33.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.069700", - "Timestamp": "2019-10-15T02:13:32.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.768900", + "Timestamp": "2024-05-16T11:03:33.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.metal", "ProductDescription": "Windows", - "SpotPrice": "0.069700", - "Timestamp": "2019-10-15T02:13:32.000Z" + "SpotPrice": "9.260600", + "Timestamp": "2024-05-16T11:03:33.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-15T02:13:28.000Z" + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.447800", + "Timestamp": "2024-05-16T11:03:32.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-15T02:13:28.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.442800", + "Timestamp": "2024-05-16T11:03:32.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-15T02:13:28.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.317800", + "Timestamp": "2024-05-16T11:03:32.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "5.122000", - "Timestamp": "2019-10-15T02:13:28.000Z" + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.003200", + "Timestamp": "2024-05-16T11:03:32.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-15T02:13:28.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.117000", + "Timestamp": "2024-05-16T11:03:32.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-15T02:13:28.000Z" + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.112000", + "Timestamp": "2024-05-16T11:03:32.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-15T02:13:28.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.987000", + "Timestamp": "2024-05-16T11:03:32.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "5.092000", - "Timestamp": "2019-10-15T02:13:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.302000", + "Timestamp": "2024-05-16T11:03:31.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-15T02:13:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298300", + "Timestamp": "2024-05-16T11:03:31.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-15T02:13:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242000", + "Timestamp": "2024-05-16T11:03:31.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-15T02:13:28.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.296100", + "Timestamp": "2024-05-16T11:03:31.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "4.992000", - "Timestamp": "2019-10-15T02:13:28.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.291100", + "Timestamp": "2024-05-16T11:03:31.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.958800", - "Timestamp": "2019-10-15T02:13:25.000Z" + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.166100", + "Timestamp": "2024-05-16T11:03:31.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.958800", - "Timestamp": "2019-10-15T02:13:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.379600", + "Timestamp": "2024-05-16T11:03:30.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.958800", - "Timestamp": "2019-10-15T02:13:25.000Z" + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.948100", + "Timestamp": "2024-05-16T11:03:29.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.565400", + "Timestamp": "2024-05-16T11:03:29.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.958800", - "Timestamp": "2019-10-15T02:13:25.000Z" + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.721400", + "Timestamp": "2024-05-16T11:03:29.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.958800", - "Timestamp": "2019-10-15T02:13:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.716400", + "Timestamp": "2024-05-16T11:03:29.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.985000", - "Timestamp": "2019-10-15T02:13:05.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.591400", + "Timestamp": "2024-05-16T11:03:29.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.955000", - "Timestamp": "2019-10-15T02:13:05.000Z" + "InstanceType": "x2gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.775300", + "Timestamp": "2024-05-16T11:03:28.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.855000", - "Timestamp": "2019-10-15T02:13:05.000Z" + "InstanceType": "x2gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.770300", + "Timestamp": "2024-05-16T11:03:28.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.441600", - "Timestamp": "2019-10-15T02:13:04.000Z" + "InstanceType": "x2gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.645300", + "Timestamp": "2024-05-16T11:03:28.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.441600", - "Timestamp": "2019-10-15T02:13:04.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.613600", + "Timestamp": "2024-05-16T11:03:27.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.441600", - "Timestamp": "2019-10-15T02:13:04.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.866100", + "Timestamp": "2024-05-16T11:03:27.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.441600", - "Timestamp": "2019-10-15T02:13:04.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.861100", + "Timestamp": "2024-05-16T11:03:27.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.441600", - "Timestamp": "2019-10-15T02:13:04.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.736100", + "Timestamp": "2024-05-16T11:03:27.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "7.936000", - "Timestamp": "2019-10-15T02:13:04.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.590900", + "Timestamp": "2024-05-16T11:03:27.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.069700", - "Timestamp": "2019-10-15T02:12:58.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.876400", + "Timestamp": "2024-05-16T11:03:26.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.069700", - "Timestamp": "2019-10-15T02:12:58.000Z" + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.604600", + "Timestamp": "2024-05-16T11:03:26.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.069700", - "Timestamp": "2019-10-15T02:12:58.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.755200", + "Timestamp": "2024-05-16T11:03:26.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.069700", - "Timestamp": "2019-10-15T02:12:58.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.750200", + "Timestamp": "2024-05-16T11:03:26.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-15T02:12:01.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.625200", + "Timestamp": "2024-05-16T11:03:26.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.medium", + "InstanceType": "c7gn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-15T02:12:01.000Z" + "SpotPrice": "0.573300", + "Timestamp": "2024-05-16T11:03:26.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-15T02:12:01.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.568300", + "Timestamp": "2024-05-16T11:03:26.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.443300", + "Timestamp": "2024-05-16T11:03:26.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-15T02:12:01.000Z" + "SpotPrice": "2.427500", + "Timestamp": "2024-05-16T11:03:26.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.106700", - "Timestamp": "2019-10-15T02:12:01.000Z" + "SpotPrice": "2.422500", + "Timestamp": "2024-05-16T11:03:26.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.106700", - "Timestamp": "2019-10-15T02:12:01.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.297500", + "Timestamp": "2024-05-16T11:03:26.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.106700", - "Timestamp": "2019-10-15T02:12:01.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.572600", + "Timestamp": "2024-05-16T11:03:25.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.239100", + "Timestamp": "2024-05-16T11:03:25.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6g.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.106700", - "Timestamp": "2019-10-15T02:12:01.000Z" + "SpotPrice": "1.234100", + "Timestamp": "2024-05-16T11:03:25.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006700", - "Timestamp": "2019-10-15T02:12:01.000Z" + "SpotPrice": "1.109100", + "Timestamp": "2024-05-16T11:03:25.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006700", - "Timestamp": "2019-10-15T02:12:01.000Z" + "InstanceType": "i2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.788000", + "Timestamp": "2024-05-16T11:03:25.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006700", - "Timestamp": "2019-10-15T02:12:01.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.758000", + "Timestamp": "2024-05-16T11:03:25.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i2.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006700", - "Timestamp": "2019-10-15T02:12:01.000Z" + "SpotPrice": "0.658000", + "Timestamp": "2024-05-16T11:03:25.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.441600", - "Timestamp": "2019-10-15T02:11:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.083000", + "Timestamp": "2024-05-16T11:03:25.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.441600", - "Timestamp": "2019-10-15T02:11:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.657700", + "Timestamp": "2024-05-16T11:03:25.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.441600", - "Timestamp": "2019-10-15T02:11:54.000Z" + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.652700", + "Timestamp": "2024-05-16T11:03:25.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.441600", - "Timestamp": "2019-10-15T02:11:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.527700", + "Timestamp": "2024-05-16T11:03:25.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.441600", - "Timestamp": "2019-10-15T02:11:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.127600", + "Timestamp": "2024-05-16T11:03:25.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-15T02:11:48.000Z" + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.122600", + "Timestamp": "2024-05-16T11:03:25.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-15T02:11:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.997600", + "Timestamp": "2024-05-16T11:03:25.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-15T02:11:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.152500", + "Timestamp": "2024-05-16T11:03:25.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-15T02:11:48.000Z" + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.160500", + "Timestamp": "2024-05-16T11:03:24.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.106700", - "Timestamp": "2019-10-15T02:11:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "13.347600", + "Timestamp": "2024-05-16T11:03:23.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.106700", - "Timestamp": "2019-10-15T02:11:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "13.342600", + "Timestamp": "2024-05-16T11:03:23.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.106700", - "Timestamp": "2019-10-15T02:11:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "13.217600", + "Timestamp": "2024-05-16T11:03:23.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.106700", - "Timestamp": "2019-10-15T02:11:48.000Z" + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.157600", + "Timestamp": "2024-05-16T11:03:23.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.006700", - "Timestamp": "2019-10-15T02:11:48.000Z" + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.105100", + "Timestamp": "2024-05-16T11:03:23.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m3.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.006700", - "Timestamp": "2019-10-15T02:11:48.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.628000", + "Timestamp": "2024-05-16T11:03:23.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "m3.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.006700", - "Timestamp": "2019-10-15T02:11:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.329300", + "Timestamp": "2024-05-16T11:03:23.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m3.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.006700", - "Timestamp": "2019-10-15T02:11:48.000Z" + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.324300", + "Timestamp": "2024-05-16T11:03:23.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.536800", - "Timestamp": "2019-10-15T02:11:47.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.199300", + "Timestamp": "2024-05-16T11:03:23.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.536800", - "Timestamp": "2019-10-15T02:11:47.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.113100", + "Timestamp": "2024-05-16T11:03:23.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.536800", - "Timestamp": "2019-10-15T02:11:47.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.113500", + "Timestamp": "2024-05-16T11:03:22.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.536800", - "Timestamp": "2019-10-15T02:11:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.934700", + "Timestamp": "2024-05-16T11:03:22.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.536800", - "Timestamp": "2019-10-15T02:11:47.000Z" + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.007800", + "Timestamp": "2024-05-16T11:03:21.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.506800", - "Timestamp": "2019-10-15T02:11:47.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.071100", + "Timestamp": "2024-05-16T11:03:21.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.506800", - "Timestamp": "2019-10-15T02:11:47.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.896200", + "Timestamp": "2024-05-16T11:03:20.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.506800", - "Timestamp": "2019-10-15T02:11:47.000Z" + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.891200", + "Timestamp": "2024-05-16T11:03:20.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.506800", - "Timestamp": "2019-10-15T02:11:47.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.766200", + "Timestamp": "2024-05-16T11:03:20.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.506800", - "Timestamp": "2019-10-15T02:11:47.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.845200", + "Timestamp": "2024-05-16T11:03:20.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.406800", - "Timestamp": "2019-10-15T02:11:47.000Z" + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.840200", + "Timestamp": "2024-05-16T11:03:20.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.406800", - "Timestamp": "2019-10-15T02:11:47.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.715200", + "Timestamp": "2024-05-16T11:03:20.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.406800", - "Timestamp": "2019-10-15T02:11:47.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.036600", + "Timestamp": "2024-05-16T11:03:20.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.406800", - "Timestamp": "2019-10-15T02:11:47.000Z" + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.949800", + "Timestamp": "2024-05-16T11:03:19.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.406800", - "Timestamp": "2019-10-15T02:11:47.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.944800", + "Timestamp": "2024-05-16T11:03:19.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124400", - "Timestamp": "2019-10-15T02:11:44.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.819800", + "Timestamp": "2024-05-16T11:03:19.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124400", - "Timestamp": "2019-10-15T02:11:44.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.822000", + "Timestamp": "2024-05-16T11:03:19.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124400", - "Timestamp": "2019-10-15T02:11:44.000Z" + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.138800", + "Timestamp": "2024-05-16T11:03:19.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124400", - "Timestamp": "2019-10-15T02:11:44.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.096400", + "Timestamp": "2024-05-16T11:03:18.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124400", - "Timestamp": "2019-10-15T02:11:44.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.066400", + "Timestamp": "2024-05-16T11:03:18.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-15T02:11:32.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.966400", + "Timestamp": "2024-05-16T11:03:18.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-15T02:11:32.000Z" + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.066100", + "Timestamp": "2024-05-16T11:03:17.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-15T02:11:32.000Z" + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.269200", + "Timestamp": "2024-05-16T11:03:16.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-15T02:11:32.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265200", + "Timestamp": "2024-05-16T11:03:16.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.209200", + "Timestamp": "2024-05-16T11:03:16.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-15T02:11:32.000Z" + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.564700", + "Timestamp": "2024-05-16T11:03:16.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-15T02:11:32.000Z" + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.631600", + "Timestamp": "2024-05-16T11:03:16.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-15T02:11:32.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.626600", + "Timestamp": "2024-05-16T11:03:16.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-15T02:11:32.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.501600", + "Timestamp": "2024-05-16T11:03:16.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i3.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-15T02:11:32.000Z" + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.086300", + "Timestamp": "2024-05-16T11:03:15.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-15T02:11:32.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.192500", + "Timestamp": "2024-05-16T11:03:15.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i3.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-15T02:11:32.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.554500", + "Timestamp": "2024-05-16T11:03:14.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "i3.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-15T02:11:32.000Z" + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "11.800100", + "Timestamp": "2024-05-16T11:03:12.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-15T02:11:32.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "11.795100", + "Timestamp": "2024-05-16T11:03:12.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i3.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-15T02:11:32.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "11.670100", + "Timestamp": "2024-05-16T11:03:12.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i3.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-15T02:11:32.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.468100", + "Timestamp": "2024-05-16T11:03:12.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.315900", - "Timestamp": "2019-10-15T01:46:05.000Z" + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.463100", + "Timestamp": "2024-05-16T11:03:12.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.315900", - "Timestamp": "2019-10-15T01:46:05.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.338100", + "Timestamp": "2024-05-16T11:03:12.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.315900", - "Timestamp": "2019-10-15T01:46:05.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.075400", + "Timestamp": "2024-05-16T11:03:12.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.315900", - "Timestamp": "2019-10-15T01:46:05.000Z" + "SpotPrice": "0.158500", + "Timestamp": "2024-05-16T11:03:12.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.xlarge", + "InstanceType": "m7i.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.355900", - "Timestamp": "2019-10-15T01:46:05.000Z" + "SpotPrice": "0.154800", + "Timestamp": "2024-05-16T11:03:12.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.355900", - "Timestamp": "2019-10-15T01:46:05.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098500", + "Timestamp": "2024-05-16T11:03:12.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.355900", - "Timestamp": "2019-10-15T01:46:05.000Z" + "InstanceType": "r7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.078000", + "Timestamp": "2024-05-16T11:03:11.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.355900", - "Timestamp": "2019-10-15T01:46:05.000Z" + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.018900", + "Timestamp": "2024-05-16T11:03:11.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.255900", - "Timestamp": "2019-10-15T01:46:05.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.577700", + "Timestamp": "2024-05-16T11:03:11.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.255900", - "Timestamp": "2019-10-15T01:46:05.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.547700", + "Timestamp": "2024-05-16T11:03:11.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.xlarge", + "InstanceType": "c5.18xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.255900", - "Timestamp": "2019-10-15T01:46:05.000Z" + "SpotPrice": "1.447700", + "Timestamp": "2024-05-16T11:03:11.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.255900", - "Timestamp": "2019-10-15T01:46:05.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.573600", + "Timestamp": "2024-05-16T11:03:10.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.375900", - "Timestamp": "2019-10-15T01:45:12.000Z" + "SpotPrice": "4.276900", + "Timestamp": "2024-05-16T11:03:10.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.xlarge", + "InstanceType": "r7i.large", "ProductDescription": "Windows", - "SpotPrice": "0.375900", - "Timestamp": "2019-10-15T01:45:12.000Z" + "SpotPrice": "0.143300", + "Timestamp": "2024-05-16T11:03:10.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.375900", - "Timestamp": "2019-10-15T01:45:12.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081100", + "Timestamp": "2024-05-16T11:03:10.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.375900", - "Timestamp": "2019-10-15T01:45:12.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.375900", - "Timestamp": "2019-10-15T01:45:12.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.052100", + "Timestamp": "2024-05-16T11:03:10.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.375900", - "Timestamp": "2019-10-15T01:43:43.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021100", + "Timestamp": "2024-05-16T11:03:10.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.375900", - "Timestamp": "2019-10-15T01:43:43.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.210400", + "Timestamp": "2024-05-16T11:03:10.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.375900", - "Timestamp": "2019-10-15T01:43:43.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.675200", + "Timestamp": "2024-05-16T11:03:08.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.375900", - "Timestamp": "2019-10-15T01:43:43.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.763700", + "Timestamp": "2024-05-16T11:03:08.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.375900", - "Timestamp": "2019-10-15T01:43:43.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.315900", - "Timestamp": "2019-10-15T01:42:57.000Z" + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.122900", + "Timestamp": "2024-05-16T11:03:08.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.315900", - "Timestamp": "2019-10-15T01:42:57.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.117900", + "Timestamp": "2024-05-16T11:03:08.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.315900", - "Timestamp": "2019-10-15T01:42:57.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.992900", + "Timestamp": "2024-05-16T11:03:08.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.315900", - "Timestamp": "2019-10-15T01:42:57.000Z" + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.133200", + "Timestamp": "2024-05-16T11:03:08.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.355900", - "Timestamp": "2019-10-15T01:42:57.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.355900", - "Timestamp": "2019-10-15T01:42:57.000Z" - }, - { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.355900", - "Timestamp": "2019-10-15T01:42:57.000Z" + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.740300", + "Timestamp": "2024-05-16T11:03:08.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.355900", - "Timestamp": "2019-10-15T01:42:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.735300", + "Timestamp": "2024-05-16T11:03:08.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.255900", - "Timestamp": "2019-10-15T01:42:57.000Z" + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.610300", + "Timestamp": "2024-05-16T11:03:08.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.255900", - "Timestamp": "2019-10-15T01:42:57.000Z" + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.588700", + "Timestamp": "2024-05-16T11:03:07.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.255900", - "Timestamp": "2019-10-15T01:42:57.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.583700", + "Timestamp": "2024-05-16T11:03:07.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.255900", - "Timestamp": "2019-10-15T01:42:57.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.458700", + "Timestamp": "2024-05-16T11:03:07.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.840000", - "Timestamp": "2019-10-15T01:39:53.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.917100", + "Timestamp": "2024-05-16T11:03:07.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.810000", - "Timestamp": "2019-10-15T01:39:53.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.912100", + "Timestamp": "2024-05-16T11:03:07.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.710000", - "Timestamp": "2019-10-15T01:39:53.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.787100", + "Timestamp": "2024-05-16T11:03:07.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094000", - "Timestamp": "2019-10-15T01:39:46.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.395500", + "Timestamp": "2024-05-16T11:03:07.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134000", - "Timestamp": "2019-10-15T01:39:46.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.390500", + "Timestamp": "2024-05-16T11:03:07.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034000", - "Timestamp": "2019-10-15T01:39:46.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.265500", + "Timestamp": "2024-05-16T11:03:07.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.985000", - "Timestamp": "2019-10-15T01:39:05.000Z" + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.713800", + "Timestamp": "2024-05-16T11:03:07.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.955000", - "Timestamp": "2019-10-15T01:39:05.000Z" + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.708800", + "Timestamp": "2024-05-16T11:03:07.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.855000", - "Timestamp": "2019-10-15T01:39:05.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.245700", - "Timestamp": "2019-10-15T01:38:12.000Z" - }, - { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.245700", - "Timestamp": "2019-10-15T01:38:12.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.245700", - "Timestamp": "2019-10-15T01:38:12.000Z" + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.583800", + "Timestamp": "2024-05-16T11:03:07.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.245700", - "Timestamp": "2019-10-15T01:38:12.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.081700", + "Timestamp": "2024-05-16T11:03:07.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.245700", - "Timestamp": "2019-10-15T01:38:12.000Z" + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.076700", + "Timestamp": "2024-05-16T11:03:07.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.245700", - "Timestamp": "2019-10-15T01:38:12.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.951700", + "Timestamp": "2024-05-16T11:03:07.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.266000", - "Timestamp": "2019-10-15T01:31:02.000Z" + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.376100", + "Timestamp": "2024-05-16T11:03:07.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.236000", - "Timestamp": "2019-10-15T01:31:02.000Z" + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.371100", + "Timestamp": "2024-05-16T11:03:07.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.136000", - "Timestamp": "2019-10-15T01:31:02.000Z" + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.246100", + "Timestamp": "2024-05-16T11:03:07.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095600", - "Timestamp": "2019-10-15T01:22:12.000Z" + "InstanceType": "dl1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.346200", + "Timestamp": "2024-05-16T11:03:06.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T01:22:12.000Z" + "InstanceType": "dl1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.316200", + "Timestamp": "2024-05-16T11:03:06.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035600", - "Timestamp": "2019-10-15T01:22:12.000Z" + "InstanceType": "dl1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.216200", + "Timestamp": "2024-05-16T11:03:06.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T01:14:15.000Z" + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.285800", + "Timestamp": "2024-05-16T11:03:06.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.286000", - "Timestamp": "2019-10-15T01:13:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.280800", + "Timestamp": "2024-05-16T11:03:06.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.286000", - "Timestamp": "2019-10-15T01:13:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.155800", + "Timestamp": "2024-05-16T11:03:06.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.286000", - "Timestamp": "2019-10-15T01:13:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.534300", + "Timestamp": "2024-05-16T11:03:05.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.286000", - "Timestamp": "2019-10-15T01:13:24.000Z" + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.504300", + "Timestamp": "2024-05-16T11:03:05.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-15T01:13:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.404300", + "Timestamp": "2024-05-16T11:03:05.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-15T01:13:19.000Z" + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.177800", + "Timestamp": "2024-05-16T11:03:05.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-15T01:13:19.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.147800", + "Timestamp": "2024-05-16T11:03:05.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.047800", + "Timestamp": "2024-05-16T11:03:05.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-15T01:13:19.000Z" + "InstanceType": "p3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.967100", + "Timestamp": "2024-05-16T11:03:05.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.937100", + "Timestamp": "2024-05-16T11:03:05.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.837100", + "Timestamp": "2024-05-16T11:03:05.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-15T01:13:19.000Z" + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089800", + "Timestamp": "2024-05-16T11:03:04.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-15T01:13:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.060800", + "Timestamp": "2024-05-16T11:03:04.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-15T01:13:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029800", + "Timestamp": "2024-05-16T11:03:04.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-15T01:13:19.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.666100", + "Timestamp": "2024-05-16T11:03:04.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-15T01:13:19.000Z" + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.636100", + "Timestamp": "2024-05-16T11:03:04.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.240000", - "Timestamp": "2019-10-15T01:13:19.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.536100", + "Timestamp": "2024-05-16T11:03:04.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-15T01:13:19.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.132500", + "Timestamp": "2024-05-16T11:03:04.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-15T01:13:19.000Z" + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.314300", + "Timestamp": "2024-05-16T11:03:04.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-15T01:13:19.000Z" + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.895400", + "Timestamp": "2024-05-16T11:03:04.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-15T01:13:19.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.491400", + "Timestamp": "2024-05-16T11:03:03.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-15T01:13:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.336800", + "Timestamp": "2024-05-16T11:03:02.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-15T01:13:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.331800", + "Timestamp": "2024-05-16T11:03:02.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-15T01:13:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.206800", + "Timestamp": "2024-05-16T11:03:02.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-15T01:13:03.000Z" + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.852000", + "Timestamp": "2024-05-16T11:03:02.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-15T01:13:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.847000", + "Timestamp": "2024-05-16T11:03:02.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-15T01:13:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.722000", + "Timestamp": "2024-05-16T11:03:02.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.556000", - "Timestamp": "2019-10-15T01:12:34.000Z" + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.525600", + "Timestamp": "2024-05-16T11:03:02.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.556000", - "Timestamp": "2019-10-15T01:12:34.000Z" + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.293800", + "Timestamp": "2024-05-16T11:03:02.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.556000", - "Timestamp": "2019-10-15T01:12:34.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.288800", + "Timestamp": "2024-05-16T11:03:02.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.556000", - "Timestamp": "2019-10-15T01:12:34.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.163800", + "Timestamp": "2024-05-16T11:03:02.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.556000", - "Timestamp": "2019-10-15T01:12:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.134200", + "Timestamp": "2024-05-16T11:03:01.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.029700", - "Timestamp": "2019-10-15T01:12:28.000Z" + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.266900", + "Timestamp": "2024-05-16T11:03:01.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.029700", - "Timestamp": "2019-10-15T01:12:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.714900", + "Timestamp": "2024-05-16T11:03:00.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.029700", - "Timestamp": "2019-10-15T01:12:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.709900", + "Timestamp": "2024-05-16T11:03:00.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.029700", - "Timestamp": "2019-10-15T01:12:28.000Z" + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.584900", + "Timestamp": "2024-05-16T11:03:00.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.029700", - "Timestamp": "2019-10-15T01:12:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.215800", + "Timestamp": "2024-05-16T11:03:00.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-15T01:12:18.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.210800", + "Timestamp": "2024-05-16T11:03:00.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-15T01:12:18.000Z" + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.085800", + "Timestamp": "2024-05-16T11:03:00.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-15T01:12:18.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.165500", + "Timestamp": "2024-05-16T11:03:00.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-15T01:12:18.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.077400", + "Timestamp": "2024-05-16T11:03:00.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.111300", - "Timestamp": "2019-10-15T01:12:18.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.267300", + "Timestamp": "2024-05-16T11:03:00.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.111300", - "Timestamp": "2019-10-15T01:12:18.000Z" + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.237300", + "Timestamp": "2024-05-16T11:03:00.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.111300", - "Timestamp": "2019-10-15T01:12:18.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.137300", + "Timestamp": "2024-05-16T11:03:00.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.111300", - "Timestamp": "2019-10-15T01:12:18.000Z" + "InstanceType": "g6.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.019300", + "Timestamp": "2024-05-16T11:03:00.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.011300", - "Timestamp": "2019-10-15T01:12:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.989300", + "Timestamp": "2024-05-16T11:03:00.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.011300", - "Timestamp": "2019-10-15T01:12:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.889300", + "Timestamp": "2024-05-16T11:03:00.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.011300", - "Timestamp": "2019-10-15T01:12:18.000Z" + "InstanceType": "c7gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168300", + "Timestamp": "2024-05-16T11:02:59.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.011300", - "Timestamp": "2019-10-15T01:12:18.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164600", + "Timestamp": "2024-05-16T11:02:59.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.409000", - "Timestamp": "2019-10-15T01:12:03.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108300", + "Timestamp": "2024-05-16T11:02:59.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.409000", - "Timestamp": "2019-10-15T01:12:03.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.596600", + "Timestamp": "2024-05-16T11:02:59.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.409000", - "Timestamp": "2019-10-15T01:12:03.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.552300", + "Timestamp": "2024-05-16T11:02:59.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.409000", - "Timestamp": "2019-10-15T01:12:03.000Z" + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.547300", + "Timestamp": "2024-05-16T11:02:59.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.510500", - "Timestamp": "2019-10-15T01:12:03.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.422300", + "Timestamp": "2024-05-16T11:02:59.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.510500", - "Timestamp": "2019-10-15T01:12:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.212700", + "Timestamp": "2024-05-16T11:02:59.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.510500", - "Timestamp": "2019-10-15T01:12:03.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.835700", + "Timestamp": "2024-05-16T11:02:59.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.510500", - "Timestamp": "2019-10-15T01:12:03.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.129200", + "Timestamp": "2024-05-16T11:02:59.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.510500", - "Timestamp": "2019-10-15T01:12:03.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.132300", + "Timestamp": "2024-05-16T11:02:58.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095600", - "Timestamp": "2019-10-15T01:11:22.000Z" + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.466800", + "Timestamp": "2024-05-16T11:02:58.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095600", - "Timestamp": "2019-10-15T01:11:22.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.461800", + "Timestamp": "2024-05-16T11:02:58.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095600", - "Timestamp": "2019-10-15T01:11:22.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.336800", + "Timestamp": "2024-05-16T11:02:58.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T01:11:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.159800", + "Timestamp": "2024-05-16T11:02:58.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T01:11:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.154800", + "Timestamp": "2024-05-16T11:02:58.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T01:11:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.029800", + "Timestamp": "2024-05-16T11:02:58.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035600", - "Timestamp": "2019-10-15T01:11:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.632300", + "Timestamp": "2024-05-16T11:02:58.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035600", - "Timestamp": "2019-10-15T01:11:22.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.081400", + "Timestamp": "2024-05-16T11:02:57.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035600", - "Timestamp": "2019-10-15T01:11:22.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.076400", + "Timestamp": "2024-05-16T11:02:57.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.415000", - "Timestamp": "2019-10-15T01:11:06.000Z" + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.951400", + "Timestamp": "2024-05-16T11:02:57.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.415000", - "Timestamp": "2019-10-15T01:11:06.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.082100", + "Timestamp": "2024-05-16T11:02:57.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.415000", - "Timestamp": "2019-10-15T01:11:06.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.133900", + "Timestamp": "2024-05-16T11:02:57.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.415000", - "Timestamp": "2019-10-15T01:11:06.000Z" + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.077100", + "Timestamp": "2024-05-16T11:02:57.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.415000", - "Timestamp": "2019-10-15T01:11:06.000Z" + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.128900", + "Timestamp": "2024-05-16T11:02:57.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.385000", - "Timestamp": "2019-10-15T01:11:06.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.952100", + "Timestamp": "2024-05-16T11:02:57.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.385000", - "Timestamp": "2019-10-15T01:11:06.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.003900", + "Timestamp": "2024-05-16T11:02:57.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.385000", - "Timestamp": "2019-10-15T01:11:06.000Z" + "InstanceType": "c7gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119400", + "Timestamp": "2024-05-16T11:02:57.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.385000", - "Timestamp": "2019-10-15T01:11:06.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115700", + "Timestamp": "2024-05-16T11:02:57.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.385000", - "Timestamp": "2019-10-15T01:11:06.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059400", + "Timestamp": "2024-05-16T11:02:57.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.285000", - "Timestamp": "2019-10-15T01:11:06.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.293100", + "Timestamp": "2024-05-16T11:02:57.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.285000", - "Timestamp": "2019-10-15T01:11:06.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.957200", + "Timestamp": "2024-05-16T11:02:57.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.285000", - "Timestamp": "2019-10-15T01:11:06.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.927200", + "Timestamp": "2024-05-16T11:02:57.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.285000", - "Timestamp": "2019-10-15T01:11:06.000Z" + "InstanceType": "g6.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.827200", + "Timestamp": "2024-05-16T11:02:57.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.285000", - "Timestamp": "2019-10-15T01:11:06.000Z" + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.537700", + "Timestamp": "2024-05-16T11:02:56.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T01:11:03.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.063700", + "Timestamp": "2024-05-16T11:02:56.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T01:11:03.000Z" + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.058700", + "Timestamp": "2024-05-16T11:02:56.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T01:11:03.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.933700", + "Timestamp": "2024-05-16T11:02:56.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T01:11:03.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.145400", + "Timestamp": "2024-05-16T11:02:56.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T01:11:03.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.342800", + "Timestamp": "2024-05-16T11:02:55.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-15T01:10:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.310000", + "Timestamp": "2024-05-16T11:02:55.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-15T01:10:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.305000", + "Timestamp": "2024-05-16T11:02:55.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-15T01:10:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.180000", + "Timestamp": "2024-05-16T11:02:55.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-15T01:10:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.222700", + "Timestamp": "2024-05-16T11:02:55.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.021000", - "Timestamp": "2019-10-15T01:10:54.000Z" + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.592000", + "Timestamp": "2024-05-16T11:02:55.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.985000", - "Timestamp": "2019-10-15T01:10:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.780100", + "Timestamp": "2024-05-16T11:02:55.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.955000", - "Timestamp": "2019-10-15T01:10:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.225300", + "Timestamp": "2024-05-16T11:02:55.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.855000", - "Timestamp": "2019-10-15T01:10:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.217700", + "Timestamp": "2024-05-16T11:02:55.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.063000", - "Timestamp": "2019-10-15T01:10:37.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.378500", + "Timestamp": "2024-05-16T11:02:55.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.063000", - "Timestamp": "2019-10-15T01:10:37.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.373500", + "Timestamp": "2024-05-16T11:02:55.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.063000", - "Timestamp": "2019-10-15T01:10:37.000Z" + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.248500", + "Timestamp": "2024-05-16T11:02:55.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.063000", - "Timestamp": "2019-10-15T01:10:37.000Z" + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.251700", + "Timestamp": "2024-05-16T11:02:55.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.063000", - "Timestamp": "2019-10-15T01:10:37.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.246700", + "Timestamp": "2024-05-16T11:02:55.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.402100", - "Timestamp": "2019-10-15T01:06:23.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.121700", + "Timestamp": "2024-05-16T11:02:55.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.372100", - "Timestamp": "2019-10-15T01:06:23.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.405000", + "Timestamp": "2024-05-16T11:02:55.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.272100", - "Timestamp": "2019-10-15T01:06:23.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.385100", + "Timestamp": "2024-05-16T11:02:55.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.253400", - "Timestamp": "2019-10-15T00:58:02.000Z" + "InstanceType": "g5g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.400000", + "Timestamp": "2024-05-16T11:02:55.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.223400", - "Timestamp": "2019-10-15T00:58:02.000Z" + "SpotPrice": "0.380100", + "Timestamp": "2024-05-16T11:02:55.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m3.2xlarge", + "InstanceType": "g5g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.123400", - "Timestamp": "2019-10-15T00:58:02.000Z" + "SpotPrice": "0.275000", + "Timestamp": "2024-05-16T11:02:55.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.255100", + "Timestamp": "2024-05-16T11:02:55.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "r5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T00:49:14.000Z" + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.348900", + "Timestamp": "2024-05-16T11:02:54.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.491200", - "Timestamp": "2019-10-15T00:48:55.000Z" + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.948100", + "Timestamp": "2024-05-16T11:02:54.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.461200", - "Timestamp": "2019-10-15T00:48:55.000Z" + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.943100", + "Timestamp": "2024-05-16T11:02:54.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.361200", - "Timestamp": "2019-10-15T00:48:55.000Z" + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.818100", + "Timestamp": "2024-05-16T11:02:54.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.126100", - "Timestamp": "2019-10-15T00:47:49.000Z" + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.413500", + "Timestamp": "2024-05-16T11:02:54.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.166100", - "Timestamp": "2019-10-15T00:47:49.000Z" + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.408500", + "Timestamp": "2024-05-16T11:02:54.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.066100", - "Timestamp": "2019-10-15T00:47:49.000Z" + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.283500", + "Timestamp": "2024-05-16T11:02:54.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.016100", - "Timestamp": "2019-10-15T00:45:01.000Z" + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.134500", + "Timestamp": "2024-05-16T11:02:54.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.016100", - "Timestamp": "2019-10-15T00:45:01.000Z" + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.731500", + "Timestamp": "2024-05-16T11:02:52.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.016100", - "Timestamp": "2019-10-15T00:45:01.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.726500", + "Timestamp": "2024-05-16T11:02:52.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.601500", + "Timestamp": "2024-05-16T11:02:52.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.016100", - "Timestamp": "2019-10-15T00:45:01.000Z" + "InstanceType": "m3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.177100", + "Timestamp": "2024-05-16T11:02:52.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "h1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.643900", + "Timestamp": "2024-05-16T11:02:52.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.016100", - "Timestamp": "2019-10-15T00:45:01.000Z" + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.313500", + "Timestamp": "2024-05-16T11:02:51.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.042000", - "Timestamp": "2019-10-15T00:43:11.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.631000", + "Timestamp": "2024-05-16T11:02:51.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.042000", - "Timestamp": "2019-10-15T00:43:11.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.626000", + "Timestamp": "2024-05-16T11:02:51.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.042000", - "Timestamp": "2019-10-15T00:43:11.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.501000", + "Timestamp": "2024-05-16T11:02:51.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.042000", - "Timestamp": "2019-10-15T00:43:11.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.236000", + "Timestamp": "2024-05-16T11:02:51.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.042000", - "Timestamp": "2019-10-15T00:43:11.000Z" + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.231000", + "Timestamp": "2024-05-16T11:02:51.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.700000", - "Timestamp": "2019-10-15T00:41:27.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.106000", + "Timestamp": "2024-05-16T11:02:51.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.700000", - "Timestamp": "2019-10-15T00:41:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.918600", + "Timestamp": "2024-05-16T11:02:51.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.700000", - "Timestamp": "2019-10-15T00:41:27.000Z" + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.913600", + "Timestamp": "2024-05-16T11:02:51.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.670000", - "Timestamp": "2019-10-15T00:41:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.788600", + "Timestamp": "2024-05-16T11:02:51.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.670000", - "Timestamp": "2019-10-15T00:41:27.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.839300", + "Timestamp": "2024-05-16T11:02:51.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.670000", - "Timestamp": "2019-10-15T00:41:27.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.834300", + "Timestamp": "2024-05-16T11:02:51.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.570000", - "Timestamp": "2019-10-15T00:41:27.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.709300", + "Timestamp": "2024-05-16T11:02:51.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.570000", - "Timestamp": "2019-10-15T00:41:27.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.586600", + "Timestamp": "2024-05-16T11:02:51.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.570000", - "Timestamp": "2019-10-15T00:41:27.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.556600", + "Timestamp": "2024-05-16T11:02:51.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.266000", - "Timestamp": "2019-10-15T00:41:02.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.456600", + "Timestamp": "2024-05-16T11:02:51.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.236000", - "Timestamp": "2019-10-15T00:41:02.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.149500", + "Timestamp": "2024-05-16T11:02:50.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.136000", - "Timestamp": "2019-10-15T00:41:02.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.119500", + "Timestamp": "2024-05-16T11:02:50.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-15T00:31:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.019500", + "Timestamp": "2024-05-16T11:02:50.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-15T00:31:18.000Z" + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.662200", + "Timestamp": "2024-05-16T11:02:50.000Z" }, { - "AvailabilityZone": "us-east-1a", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.246600", + "Timestamp": "2024-05-16T11:02:50.000Z" + }, + { + "AvailabilityZone": "us-east-1f", "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-15T00:31:18.000Z" + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.198500", + "Timestamp": "2024-05-16T11:02:49.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.063000", - "Timestamp": "2019-10-15T00:23:53.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.168500", + "Timestamp": "2024-05-16T11:02:49.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.086000", - "Timestamp": "2019-10-15T00:23:16.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.068500", + "Timestamp": "2024-05-16T11:02:49.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T00:23:16.000Z" + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.121700", + "Timestamp": "2024-05-16T11:02:49.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.026000", - "Timestamp": "2019-10-15T00:23:16.000Z" + "InstanceType": "c7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.064600", + "Timestamp": "2024-05-16T11:02:49.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.498000", - "Timestamp": "2019-10-15T00:12:25.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.924900", + "Timestamp": "2024-05-16T11:02:49.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.498000", - "Timestamp": "2019-10-15T00:12:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.477900", + "Timestamp": "2024-05-16T11:02:49.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.498000", - "Timestamp": "2019-10-15T00:12:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133800", + "Timestamp": "2024-05-16T11:02:49.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.468000", - "Timestamp": "2019-10-15T00:12:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130100", + "Timestamp": "2024-05-16T11:02:49.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.468000", - "Timestamp": "2019-10-15T00:12:25.000Z" + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073800", + "Timestamp": "2024-05-16T11:02:49.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.468000", - "Timestamp": "2019-10-15T00:12:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161000", + "Timestamp": "2024-05-16T11:02:49.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.368000", - "Timestamp": "2019-10-15T00:12:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145500", + "Timestamp": "2024-05-16T11:02:49.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.368000", - "Timestamp": "2019-10-15T00:12:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157300", + "Timestamp": "2024-05-16T11:02:49.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.368000", - "Timestamp": "2019-10-15T00:12:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141800", + "Timestamp": "2024-05-16T11:02:49.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.312000", - "Timestamp": "2019-10-15T00:12:02.000Z" + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101000", + "Timestamp": "2024-05-16T11:02:49.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.312000", - "Timestamp": "2019-10-15T00:12:02.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085500", + "Timestamp": "2024-05-16T11:02:49.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.312000", - "Timestamp": "2019-10-15T00:12:02.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.165600", + "Timestamp": "2024-05-16T11:02:48.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.4xlarge", + "InstanceType": "m5dn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.365000", - "Timestamp": "2019-10-15T00:11:38.000Z" + "SpotPrice": "0.498900", + "Timestamp": "2024-05-16T11:02:48.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.365000", - "Timestamp": "2019-10-15T00:11:38.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.493900", + "Timestamp": "2024-05-16T11:02:48.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.365000", - "Timestamp": "2019-10-15T00:11:38.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.368900", + "Timestamp": "2024-05-16T11:02:48.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.4xlarge", + "InstanceType": "r5a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.365000", - "Timestamp": "2019-10-15T00:11:38.000Z" + "SpotPrice": "1.441000", + "Timestamp": "2024-05-16T11:02:48.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.335000", - "Timestamp": "2019-10-15T00:11:38.000Z" + "SpotPrice": "1.436000", + "Timestamp": "2024-05-16T11:02:48.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.335000", - "Timestamp": "2019-10-15T00:11:38.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.311000", + "Timestamp": "2024-05-16T11:02:48.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.335000", - "Timestamp": "2019-10-15T00:11:38.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "a1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117300", + "Timestamp": "2024-05-16T11:02:48.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.4xlarge", + "InstanceType": "a1.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.335000", - "Timestamp": "2019-10-15T00:11:38.000Z" + "SpotPrice": "0.113600", + "Timestamp": "2024-05-16T11:02:48.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "a1.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.235000", - "Timestamp": "2019-10-15T00:11:38.000Z" + "SpotPrice": "0.057300", + "Timestamp": "2024-05-16T11:02:48.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.235000", - "Timestamp": "2019-10-15T00:11:38.000Z" + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.905100", + "Timestamp": "2024-05-16T11:02:48.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.235000", - "Timestamp": "2019-10-15T00:11:38.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.875100", + "Timestamp": "2024-05-16T11:02:48.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.235000", - "Timestamp": "2019-10-15T00:11:38.000Z" + "SpotPrice": "0.775100", + "Timestamp": "2024-05-16T11:02:48.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3a.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.063300", - "Timestamp": "2019-10-15T00:11:36.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.812200", + "Timestamp": "2024-05-16T11:02:48.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.062800", - "Timestamp": "2019-10-15T00:11:36.000Z" - }, - { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.062800", - "Timestamp": "2019-10-15T00:11:36.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.390100", + "Timestamp": "2024-05-16T11:02:47.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.062800", - "Timestamp": "2019-10-15T00:11:36.000Z" - }, - { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.062800", - "Timestamp": "2019-10-15T00:11:36.000Z" + "InstanceType": "m5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.385100", + "Timestamp": "2024-05-16T11:02:47.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3a.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.103300", - "Timestamp": "2019-10-15T00:11:36.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.260100", + "Timestamp": "2024-05-16T11:02:47.000Z" }, { "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.102800", - "Timestamp": "2019-10-15T00:11:36.000Z" + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.565500", + "Timestamp": "2024-05-16T11:02:47.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.102800", - "Timestamp": "2019-10-15T00:11:36.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.737200", + "Timestamp": "2024-05-16T11:02:47.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.102800", - "Timestamp": "2019-10-15T00:11:36.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.732200", + "Timestamp": "2024-05-16T11:02:47.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.102800", - "Timestamp": "2019-10-15T00:11:36.000Z" + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.607200", + "Timestamp": "2024-05-16T11:02:47.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.003300", - "Timestamp": "2019-10-15T00:11:36.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.198100", + "Timestamp": "2024-05-16T11:02:47.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.002800", - "Timestamp": "2019-10-15T00:11:36.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.194400", + "Timestamp": "2024-05-16T11:02:47.000Z" }, { "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.002800", - "Timestamp": "2019-10-15T00:11:36.000Z" + "InstanceType": "i4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.138100", + "Timestamp": "2024-05-16T11:02:47.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.002800", - "Timestamp": "2019-10-15T00:11:36.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128500", + "Timestamp": "2024-05-16T11:02:46.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.002800", - "Timestamp": "2019-10-15T00:11:36.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146700", + "Timestamp": "2024-05-16T11:02:46.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-15T00:11:31.000Z" + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142700", + "Timestamp": "2024-05-16T11:02:46.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-15T00:11:31.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086700", + "Timestamp": "2024-05-16T11:02:46.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-15T00:11:31.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.263100", + "Timestamp": "2024-05-16T11:02:46.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-15T00:11:31.000Z" + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.217100", + "Timestamp": "2024-05-16T11:02:46.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-15T00:11:31.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.499900", + "Timestamp": "2024-05-16T11:02:46.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.899000", - "Timestamp": "2019-10-15T00:11:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.417400", + "Timestamp": "2024-05-16T11:02:46.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.899000", - "Timestamp": "2019-10-15T00:11:19.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.494900", + "Timestamp": "2024-05-16T11:02:46.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.899000", - "Timestamp": "2019-10-15T00:11:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.412400", + "Timestamp": "2024-05-16T11:02:46.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.899000", - "Timestamp": "2019-10-15T00:11:19.000Z" + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.369900", + "Timestamp": "2024-05-16T11:02:46.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.239000", - "Timestamp": "2019-10-15T00:11:15.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.287400", + "Timestamp": "2024-05-16T11:02:46.000Z" }, { - "AvailabilityZone": "us-east-1f", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.239000", - "Timestamp": "2019-10-15T00:11:15.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T11:02:46.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.239000", - "Timestamp": "2019-10-15T00:11:15.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142100", + "Timestamp": "2024-05-16T11:02:46.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042100", + "Timestamp": "2024-05-16T11:02:46.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.239000", - "Timestamp": "2019-10-15T00:11:15.000Z" + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.331600", + "Timestamp": "2024-05-16T11:02:45.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.239000", - "Timestamp": "2019-10-15T00:11:15.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.448900", + "Timestamp": "2024-05-16T11:02:45.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.899000", - "Timestamp": "2019-10-15T00:11:15.000Z" + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132800", + "Timestamp": "2024-05-16T11:02:45.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.899000", - "Timestamp": "2019-10-15T00:11:15.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128400", + "Timestamp": "2024-05-16T11:02:45.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.899000", - "Timestamp": "2019-10-15T00:11:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172800", + "Timestamp": "2024-05-16T11:02:45.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.899000", - "Timestamp": "2019-10-15T00:11:15.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168400", + "Timestamp": "2024-05-16T11:02:45.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-15T00:11:11.000Z" + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072800", + "Timestamp": "2024-05-16T11:02:45.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-15T00:11:11.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068400", + "Timestamp": "2024-05-16T11:02:45.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-15T00:11:11.000Z" + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.836800", + "Timestamp": "2024-05-16T11:02:45.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.218200", - "Timestamp": "2019-10-15T00:11:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.806800", + "Timestamp": "2024-05-16T11:02:45.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-15T00:11:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.706800", + "Timestamp": "2024-05-16T11:02:45.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-15T00:11:11.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.622300", + "Timestamp": "2024-05-16T11:02:45.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-15T00:11:11.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.617300", + "Timestamp": "2024-05-16T11:02:45.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.188200", - "Timestamp": "2019-10-15T00:11:11.000Z" + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.492300", + "Timestamp": "2024-05-16T11:02:45.000Z" }, { - "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-15T00:11:11.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.671000", + "Timestamp": "2024-05-16T11:02:45.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-15T00:11:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.289000", + "Timestamp": "2024-05-16T11:02:45.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-15T00:11:11.000Z" + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.259000", + "Timestamp": "2024-05-16T11:02:45.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.088200", - "Timestamp": "2019-10-15T00:11:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159000", + "Timestamp": "2024-05-16T11:02:45.000Z" }, { "AvailabilityZone": "us-east-1b", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.504200", - "Timestamp": "2019-10-15T00:10:51.000Z" + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.957600", + "Timestamp": "2024-05-16T11:02:44.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.504200", - "Timestamp": "2019-10-15T00:10:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.952600", + "Timestamp": "2024-05-16T11:02:44.000Z" }, { - "AvailabilityZone": "us-east-1d", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.504200", - "Timestamp": "2019-10-15T00:10:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.827600", + "Timestamp": "2024-05-16T11:02:44.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.504200", - "Timestamp": "2019-10-15T00:10:51.000Z" + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.880700", + "Timestamp": "2024-05-16T11:02:44.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.266000", - "Timestamp": "2019-10-15T00:08:01.000Z" + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.875700", + "Timestamp": "2024-05-16T11:02:44.000Z" }, { "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.236000", - "Timestamp": "2019-10-15T00:08:01.000Z" + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.750700", + "Timestamp": "2024-05-16T11:02:44.000Z" }, { - "AvailabilityZone": "us-east-1c", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.136000", - "Timestamp": "2019-10-15T00:08:01.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.416300", + "Timestamp": "2024-05-16T11:02:44.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.762300", - "Timestamp": "2019-10-15T00:06:57.000Z" + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.303100", + "Timestamp": "2024-05-16T11:02:44.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.732300", - "Timestamp": "2019-10-15T00:06:57.000Z" + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.298100", + "Timestamp": "2024-05-16T11:02:44.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.632300", - "Timestamp": "2019-10-15T00:06:57.000Z" - }, - { - "AvailabilityZone": "us-east-1f", - "InstanceType": "r5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-14T23:59:14.000Z" - }, - { - "AvailabilityZone": "us-east-1b", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.357000", - "Timestamp": "2019-10-14T19:11:22.000Z" + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.173100", + "Timestamp": "2024-05-16T11:02:44.000Z" }, { - "AvailabilityZone": "us-east-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.357000", - "Timestamp": "2019-10-14T19:11:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.345700", + "Timestamp": "2024-05-16T11:02:44.000Z" }, { - "AvailabilityZone": "us-east-1e", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.357000", - "Timestamp": "2019-10-14T19:11:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "a1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.340700", + "Timestamp": "2024-05-16T11:02:44.000Z" }, { "AvailabilityZone": "us-east-1d", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.357000", - "Timestamp": "2019-10-14T19:11:22.000Z" + "InstanceType": "a1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.215700", + "Timestamp": "2024-05-16T11:02:44.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-16T02:58:31.000Z" + "SpotPrice": "0.505900", + "Timestamp": "2024-05-16T11:02:44.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.500900", + "Timestamp": "2024-05-16T11:02:44.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041800", - "Timestamp": "2019-10-16T02:58:31.000Z" + "SpotPrice": "0.375900", + "Timestamp": "2024-05-16T11:02:44.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.325200", - "Timestamp": "2019-10-16T02:56:48.000Z" + "SpotPrice": "0.660400", + "Timestamp": "2024-05-16T11:02:44.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.655400", + "Timestamp": "2024-05-16T11:02:44.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.195200", - "Timestamp": "2019-10-16T02:56:48.000Z" + "SpotPrice": "0.530400", + "Timestamp": "2024-05-16T11:02:44.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t2.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.940600", - "Timestamp": "2019-10-16T02:56:37.000Z" + "SpotPrice": "0.082400", + "Timestamp": "2024-05-16T11:02:43.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122400", + "Timestamp": "2024-05-16T11:02:43.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "t2.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.810600", - "Timestamp": "2019-10-16T02:56:37.000Z" + "SpotPrice": "0.022400", + "Timestamp": "2024-05-16T11:02:43.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.287200", - "Timestamp": "2019-10-16T02:56:19.000Z" + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T11:02:43.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099100", + "Timestamp": "2024-05-16T11:02:43.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.227200", - "Timestamp": "2019-10-16T02:56:19.000Z" + "SpotPrice": "0.042800", + "Timestamp": "2024-05-16T11:02:43.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-16T02:53:20.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.769300", + "Timestamp": "2024-05-16T11:02:43.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041800", - "Timestamp": "2019-10-16T02:53:20.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.880000", + "Timestamp": "2024-05-16T11:02:43.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "z1d.3xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.285000", - "Timestamp": "2019-10-16T02:52:18.000Z" + "SpotPrice": "0.684000", + "Timestamp": "2024-05-16T11:02:43.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "z1d.3xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.285000", - "Timestamp": "2019-10-16T02:52:18.000Z" + "SpotPrice": "0.661300", + "Timestamp": "2024-05-16T11:02:43.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.225000", - "Timestamp": "2019-10-16T02:52:18.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.679000", + "Timestamp": "2024-05-16T11:02:43.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.225000", - "Timestamp": "2019-10-16T02:52:18.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.656300", + "Timestamp": "2024-05-16T11:02:43.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.880800", - "Timestamp": "2019-10-16T02:50:52.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.554000", + "Timestamp": "2024-05-16T11:02:43.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.880800", - "Timestamp": "2019-10-16T02:50:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.531300", + "Timestamp": "2024-05-16T11:02:43.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.880800", - "Timestamp": "2019-10-16T02:50:52.000Z" + "SpotPrice": "3.188900", + "Timestamp": "2024-05-16T11:02:43.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.958000", - "Timestamp": "2019-10-16T02:50:07.000Z" + "SpotPrice": "1.498000", + "Timestamp": "2024-05-16T11:02:43.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.493000", + "Timestamp": "2024-05-16T11:02:43.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.828000", - "Timestamp": "2019-10-16T02:50:07.000Z" + "SpotPrice": "1.368000", + "Timestamp": "2024-05-16T11:02:43.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.315300", - "Timestamp": "2019-10-16T02:48:36.000Z" + "SpotPrice": "0.436500", + "Timestamp": "2024-05-16T11:02:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.431500", + "Timestamp": "2024-05-16T11:02:42.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.185300", - "Timestamp": "2019-10-16T02:48:36.000Z" + "SpotPrice": "0.306500", + "Timestamp": "2024-05-16T11:02:42.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.212200", - "Timestamp": "2019-10-16T02:48:03.000Z" + "SpotPrice": "0.957400", + "Timestamp": "2024-05-16T11:02:42.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.952400", + "Timestamp": "2024-05-16T11:02:42.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.082200", - "Timestamp": "2019-10-16T02:48:03.000Z" + "SpotPrice": "0.827400", + "Timestamp": "2024-05-16T11:02:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c4.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.224800", - "Timestamp": "2019-10-16T02:47:55.000Z" + "SpotPrice": "0.847500", + "Timestamp": "2024-05-16T11:02:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.817500", + "Timestamp": "2024-05-16T11:02:42.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c4.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.094800", - "Timestamp": "2019-10-16T02:47:55.000Z" + "SpotPrice": "0.717500", + "Timestamp": "2024-05-16T11:02:42.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.100000", - "Timestamp": "2019-10-16T02:40:15.000Z" + "SpotPrice": "0.137800", + "Timestamp": "2024-05-16T11:02:41.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133800", + "Timestamp": "2024-05-16T11:02:41.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.040000", - "Timestamp": "2019-10-16T02:40:15.000Z" + "SpotPrice": "0.077800", + "Timestamp": "2024-05-16T11:02:41.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m4.10xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.172800", - "Timestamp": "2019-10-16T02:39:56.000Z" + "SpotPrice": "1.127000", + "Timestamp": "2024-05-16T11:02:41.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.112800", - "Timestamp": "2019-10-16T02:39:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.097000", + "Timestamp": "2024-05-16T11:02:41.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.230200", - "Timestamp": "2019-10-16T02:39:50.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.997000", + "Timestamp": "2024-05-16T11:02:41.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.230200", - "Timestamp": "2019-10-16T02:39:50.000Z" + "SpotPrice": "0.233900", + "Timestamp": "2024-05-16T11:02:41.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", "SpotPrice": "0.230200", - "Timestamp": "2019-10-16T02:39:50.000Z" + "Timestamp": "2024-05-16T11:02:41.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.100200", - "Timestamp": "2019-10-16T02:39:50.000Z" + "SpotPrice": "0.173900", + "Timestamp": "2024-05-16T11:02:41.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.100200", - "Timestamp": "2019-10-16T02:39:50.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.344400", + "Timestamp": "2024-05-16T11:02:41.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.339400", + "Timestamp": "2024-05-16T11:02:41.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.100200", - "Timestamp": "2019-10-16T02:39:50.000Z" + "SpotPrice": "0.214400", + "Timestamp": "2024-05-16T11:02:41.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.620400", - "Timestamp": "2019-10-16T02:39:39.000Z" + "SpotPrice": "0.495600", + "Timestamp": "2024-05-16T11:02:40.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.490400", - "Timestamp": "2019-10-16T02:39:39.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.490600", + "Timestamp": "2024-05-16T11:02:40.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247400", - "Timestamp": "2019-10-16T02:39:14.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.365600", + "Timestamp": "2024-05-16T11:02:40.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.9xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.247400", - "Timestamp": "2019-10-16T02:39:14.000Z" + "SpotPrice": "2.375800", + "Timestamp": "2024-05-16T11:02:39.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3a.large", "ProductDescription": "Windows", - "SpotPrice": "0.247400", - "Timestamp": "2019-10-16T02:39:14.000Z" + "SpotPrice": "0.062700", + "Timestamp": "2024-05-16T11:02:39.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5n.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.464500", - "Timestamp": "2019-10-16T02:37:39.000Z" + "SpotPrice": "0.158800", + "Timestamp": "2024-05-16T11:02:38.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5n.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154800", + "Timestamp": "2024-05-16T11:02:38.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.334500", - "Timestamp": "2019-10-16T02:37:39.000Z" + "SpotPrice": "0.098800", + "Timestamp": "2024-05-16T11:02:38.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5dn.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Windows", + "SpotPrice": "10.426900", + "Timestamp": "2024-05-16T11:02:37.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "is4gen.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.768500", - "Timestamp": "2019-10-16T02:35:50.000Z" + "SpotPrice": "0.117400", + "Timestamp": "2024-05-16T11:02:35.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5dn.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088400", + "Timestamp": "2024-05-16T11:02:35.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "is4gen.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.638500", - "Timestamp": "2019-10-16T02:35:50.000Z" + "SpotPrice": "0.057400", + "Timestamp": "2024-05-16T11:02:35.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.074700", - "Timestamp": "2019-10-16T02:31:58.000Z" + "SpotPrice": "0.206400", + "Timestamp": "2024-05-16T11:02:35.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.202700", + "Timestamp": "2024-05-16T11:02:35.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.944700", - "Timestamp": "2019-10-16T02:31:58.000Z" + "SpotPrice": "0.146400", + "Timestamp": "2024-05-16T11:02:35.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.820200", - "Timestamp": "2019-10-16T02:31:13.000Z" + "SpotPrice": "2.198400", + "Timestamp": "2024-05-16T11:02:35.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.528800", - "Timestamp": "2019-10-16T02:23:54.000Z" + "SpotPrice": "1.803600", + "Timestamp": "2024-05-16T11:02:35.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.398800", - "Timestamp": "2019-10-16T02:23:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.798600", + "Timestamp": "2024-05-16T11:02:35.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.081100", - "Timestamp": "2019-10-16T02:23:16.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.673600", + "Timestamp": "2024-05-16T11:02:35.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.021100", - "Timestamp": "2019-10-16T02:23:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.265800", + "Timestamp": "2024-05-16T11:02:35.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.709700", - "Timestamp": "2019-10-16T02:17:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.260800", + "Timestamp": "2024-05-16T11:02:35.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.294000", - "Timestamp": "2019-10-16T02:15:11.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.135800", + "Timestamp": "2024-05-16T11:02:35.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.342100", - "Timestamp": "2019-10-16T02:15:09.000Z" + "SpotPrice": "0.251900", + "Timestamp": "2024-05-16T11:02:34.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.212100", - "Timestamp": "2019-10-16T02:15:09.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.256200", + "Timestamp": "2024-05-16T11:02:34.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.099100", - "Timestamp": "2019-10-16T02:07:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.248200", + "Timestamp": "2024-05-16T11:02:34.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101400", - "Timestamp": "2019-10-16T02:07:09.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.252500", + "Timestamp": "2024-05-16T11:02:34.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.039100", - "Timestamp": "2019-10-16T02:07:09.000Z" + "SpotPrice": "0.191900", + "Timestamp": "2024-05-16T11:02:34.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041400", - "Timestamp": "2019-10-16T02:07:09.000Z" + "SpotPrice": "0.196200", + "Timestamp": "2024-05-16T11:02:34.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.282000", - "Timestamp": "2019-10-16T02:06:46.000Z" + "SpotPrice": "0.539000", + "Timestamp": "2024-05-16T11:02:34.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.152000", - "Timestamp": "2019-10-16T02:06:46.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.534000", + "Timestamp": "2024-05-16T11:02:34.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "h1.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "7.344000", - "Timestamp": "2019-10-16T02:06:30.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.409000", + "Timestamp": "2024-05-16T11:02:34.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.338000", - "Timestamp": "2019-10-16T02:03:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.051500", + "Timestamp": "2024-05-16T11:02:34.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.338000", - "Timestamp": "2019-10-16T02:03:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.046500", + "Timestamp": "2024-05-16T11:02:34.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.338000", - "Timestamp": "2019-10-16T02:03:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.921500", + "Timestamp": "2024-05-16T11:02:34.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-16T02:03:47.000Z" + "SpotPrice": "0.494300", + "Timestamp": "2024-05-16T11:02:33.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-16T02:03:47.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.489300", + "Timestamp": "2024-05-16T11:02:33.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-16T02:03:47.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.364300", + "Timestamp": "2024-05-16T11:02:33.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.207000", - "Timestamp": "2019-10-16T02:03:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.430800", + "Timestamp": "2024-05-16T11:02:33.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.207000", - "Timestamp": "2019-10-16T02:03:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.425800", + "Timestamp": "2024-05-16T11:02:33.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.207000", - "Timestamp": "2019-10-16T02:03:47.000Z" + "SpotPrice": "0.300800", + "Timestamp": "2024-05-16T11:02:33.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2gd.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.163000", - "Timestamp": "2019-10-16T02:02:11.000Z" + "SpotPrice": "0.857600", + "Timestamp": "2024-05-16T11:02:33.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.852600", + "Timestamp": "2024-05-16T11:02:33.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.103000", - "Timestamp": "2019-10-16T02:02:11.000Z" + "SpotPrice": "0.727600", + "Timestamp": "2024-05-16T11:02:33.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "h1.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.790000", - "Timestamp": "2019-10-16T02:01:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.283900", + "Timestamp": "2024-05-16T11:02:33.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "h1.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c4.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.790000", - "Timestamp": "2019-10-16T02:01:43.000Z" + "SpotPrice": "0.149800", + "Timestamp": "2024-05-16T11:02:31.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "h1.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.790000", - "Timestamp": "2019-10-16T02:01:43.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.189800", + "Timestamp": "2024-05-16T11:02:31.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "h1.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c4.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.660000", - "Timestamp": "2019-10-16T02:01:43.000Z" + "SpotPrice": "0.089800", + "Timestamp": "2024-05-16T11:02:31.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "h1.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.660000", - "Timestamp": "2019-10-16T02:01:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.679300", + "Timestamp": "2024-05-16T11:02:31.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "h1.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.674300", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.660000", - "Timestamp": "2019-10-16T02:01:43.000Z" + "SpotPrice": "4.549300", + "Timestamp": "2024-05-16T11:02:31.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "h1.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.132000", - "Timestamp": "2019-10-16T02:01:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.229500", + "Timestamp": "2024-05-16T11:02:31.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "h1.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.132000", - "Timestamp": "2019-10-16T02:01:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.225500", + "Timestamp": "2024-05-16T11:02:31.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "h1.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.132000", - "Timestamp": "2019-10-16T02:01:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169500", + "Timestamp": "2024-05-16T11:02:31.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t2.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.098300", - "Timestamp": "2019-10-16T01:58:46.000Z" + "SpotPrice": "0.297200", + "Timestamp": "2024-05-16T11:02:30.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267200", + "Timestamp": "2024-05-16T11:02:30.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "t2.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.038300", - "Timestamp": "2019-10-16T01:58:46.000Z" + "SpotPrice": "0.167200", + "Timestamp": "2024-05-16T11:02:30.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.822400", - "Timestamp": "2019-10-16T01:58:37.000Z" + "SpotPrice": "0.280200", + "Timestamp": "2024-05-16T11:02:30.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.275200", + "Timestamp": "2024-05-16T11:02:30.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.692400", - "Timestamp": "2019-10-16T01:58:37.000Z" + "SpotPrice": "0.150200", + "Timestamp": "2024-05-16T11:02:30.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t2.small", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.999400", - "Timestamp": "2019-10-16T01:58:16.000Z" + "SpotPrice": "0.070300", + "Timestamp": "2024-05-16T11:02:29.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040300", + "Timestamp": "2024-05-16T11:02:29.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "t2.small", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.869400", - "Timestamp": "2019-10-16T01:58:16.000Z" + "SpotPrice": "0.010300", + "Timestamp": "2024-05-16T11:02:29.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.099500", - "Timestamp": "2019-10-16T01:57:45.000Z" + "SpotPrice": "1.301000", + "Timestamp": "2024-05-16T11:02:28.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.271000", + "Timestamp": "2024-05-16T11:02:28.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.039500", - "Timestamp": "2019-10-16T01:57:45.000Z" + "SpotPrice": "1.171000", + "Timestamp": "2024-05-16T11:02:28.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.465700", - "Timestamp": "2019-10-16T01:57:40.000Z" + "SpotPrice": "16.612200", + "Timestamp": "2024-05-16T11:02:26.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.209800", - "Timestamp": "2019-10-16T01:51:07.000Z" + "SpotPrice": "0.670000", + "Timestamp": "2024-05-16T11:02:25.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.665000", + "Timestamp": "2024-05-16T11:02:25.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.079800", - "Timestamp": "2019-10-16T01:51:07.000Z" + "SpotPrice": "0.540000", + "Timestamp": "2024-05-16T11:02:25.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.294100", - "Timestamp": "2019-10-16T01:50:27.000Z" + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T11:02:25.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.164100", - "Timestamp": "2019-10-16T01:50:27.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T11:02:25.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.434200", - "Timestamp": "2019-10-16T01:50:04.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044800", + "Timestamp": "2024-05-16T11:02:25.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.304200", - "Timestamp": "2019-10-16T01:50:04.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010400", + "Timestamp": "2024-05-16T10:50:00.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.813100", - "Timestamp": "2019-10-16T01:50:03.000Z" + "SpotPrice": "0.129000", + "Timestamp": "2024-05-16T10:48:41.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125000", + "Timestamp": "2024-05-16T10:48:41.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.683100", - "Timestamp": "2019-10-16T01:50:03.000Z" + "SpotPrice": "0.069000", + "Timestamp": "2024-05-16T10:48:41.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.615100", - "Timestamp": "2019-10-16T01:49:49.000Z" + "SpotPrice": "1.665800", + "Timestamp": "2024-05-16T10:48:40.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.660800", + "Timestamp": "2024-05-16T10:48:40.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.485100", - "Timestamp": "2019-10-16T01:49:49.000Z" + "SpotPrice": "1.535800", + "Timestamp": "2024-05-16T10:48:40.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.244100", - "Timestamp": "2019-10-16T01:49:36.000Z" + "SpotPrice": "4.366900", + "Timestamp": "2024-05-16T10:48:40.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.114100", - "Timestamp": "2019-10-16T01:49:36.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.361900", + "Timestamp": "2024-05-16T10:48:40.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.447800", - "Timestamp": "2019-10-16T01:49:16.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.236900", + "Timestamp": "2024-05-16T10:48:40.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.447800", - "Timestamp": "2019-10-16T01:49:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.122700", + "Timestamp": "2024-05-16T10:48:37.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.447800", - "Timestamp": "2019-10-16T01:49:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.117700", + "Timestamp": "2024-05-16T10:48:37.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.054500", - "Timestamp": "2019-10-16T01:48:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.992700", + "Timestamp": "2024-05-16T10:48:37.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.054500", - "Timestamp": "2019-10-16T01:48:41.000Z" + "SpotPrice": "0.266700", + "Timestamp": "2024-05-16T10:48:30.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.054500", - "Timestamp": "2019-10-16T01:48:41.000Z" + "SpotPrice": "6.532100", + "Timestamp": "2024-05-16T10:48:30.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.087800", - "Timestamp": "2019-10-16T01:48:19.000Z" + "SpotPrice": "2.761600", + "Timestamp": "2024-05-16T10:48:29.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.087800", - "Timestamp": "2019-10-16T01:48:19.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.756600", + "Timestamp": "2024-05-16T10:48:29.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.087800", - "Timestamp": "2019-10-16T01:48:19.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.631600", + "Timestamp": "2024-05-16T10:48:29.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.957800", - "Timestamp": "2019-10-16T01:48:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.571700", + "Timestamp": "2024-05-16T10:48:28.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.957800", - "Timestamp": "2019-10-16T01:48:19.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.061200", + "Timestamp": "2024-05-16T10:48:28.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.957800", - "Timestamp": "2019-10-16T01:48:19.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.056200", + "Timestamp": "2024-05-16T10:48:28.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.373800", - "Timestamp": "2019-10-16T01:48:04.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.931200", + "Timestamp": "2024-05-16T10:48:28.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.373800", - "Timestamp": "2019-10-16T01:48:04.000Z" + "SpotPrice": "4.742000", + "Timestamp": "2024-05-16T10:48:28.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.373800", - "Timestamp": "2019-10-16T01:48:04.000Z" + "SpotPrice": "2.393800", + "Timestamp": "2024-05-16T10:48:27.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.080000", - "Timestamp": "2019-10-16T01:42:02.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.334800", + "Timestamp": "2024-05-16T10:48:26.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.020000", - "Timestamp": "2019-10-16T01:42:02.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.599600", + "Timestamp": "2024-05-16T10:48:26.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.434600", - "Timestamp": "2019-10-16T01:41:48.000Z" - }, - { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.304600", - "Timestamp": "2019-10-16T01:41:48.000Z" + "SpotPrice": "4.277500", + "Timestamp": "2024-05-16T10:48:25.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101600", - "Timestamp": "2019-10-16T01:41:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.272500", + "Timestamp": "2024-05-16T10:48:25.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041600", - "Timestamp": "2019-10-16T01:41:29.000Z" + "SpotPrice": "4.147500", + "Timestamp": "2024-05-16T10:48:25.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "7.825400", - "Timestamp": "2019-10-16T01:41:28.000Z" - }, - { - "AvailabilityZone": "us-east-2b", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "7.695400", - "Timestamp": "2019-10-16T01:41:28.000Z" + "SpotPrice": "0.957000", + "Timestamp": "2024-05-16T10:48:25.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.941200", - "Timestamp": "2019-10-16T01:41:20.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.952000", + "Timestamp": "2024-05-16T10:48:25.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.811200", - "Timestamp": "2019-10-16T01:41:20.000Z" + "SpotPrice": "0.827000", + "Timestamp": "2024-05-16T10:48:25.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101000", - "Timestamp": "2019-10-16T01:41:19.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.321000", + "Timestamp": "2024-05-16T10:48:23.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041000", - "Timestamp": "2019-10-16T01:41:19.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.364700", + "Timestamp": "2024-05-16T10:48:22.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.222500", - "Timestamp": "2019-10-16T01:41:06.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334700", + "Timestamp": "2024-05-16T10:48:22.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m3.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.092500", - "Timestamp": "2019-10-16T01:41:06.000Z" + "SpotPrice": "0.234700", + "Timestamp": "2024-05-16T10:48:22.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.153000", - "Timestamp": "2019-10-16T01:40:53.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.326600", + "Timestamp": "2024-05-16T10:48:22.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.153000", - "Timestamp": "2019-10-16T01:40:53.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.964600", + "Timestamp": "2024-05-16T10:48:21.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "h1.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.153000", - "Timestamp": "2019-10-16T01:40:53.000Z" + "SpotPrice": "0.393000", + "Timestamp": "2024-05-16T10:48:20.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.023000", - "Timestamp": "2019-10-16T01:40:53.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "h1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.363000", + "Timestamp": "2024-05-16T10:48:20.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "h1.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.023000", - "Timestamp": "2019-10-16T01:40:53.000Z" + "SpotPrice": "0.263000", + "Timestamp": "2024-05-16T10:48:20.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.023000", - "Timestamp": "2019-10-16T01:40:53.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.801000", + "Timestamp": "2024-05-16T10:48:20.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.504000", - "Timestamp": "2019-10-16T01:40:02.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.796000", + "Timestamp": "2024-05-16T10:48:20.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.504000", - "Timestamp": "2019-10-16T01:40:02.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.671000", + "Timestamp": "2024-05-16T10:48:20.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.504000", - "Timestamp": "2019-10-16T01:40:02.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.815900", + "Timestamp": "2024-05-16T10:48:20.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.608900", - "Timestamp": "2019-10-16T01:38:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.810900", + "Timestamp": "2024-05-16T10:48:20.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.478900", - "Timestamp": "2019-10-16T01:38:48.000Z" + "SpotPrice": "1.685900", + "Timestamp": "2024-05-16T10:48:20.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5n.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.806500", - "Timestamp": "2019-10-16T01:38:41.000Z" + "SpotPrice": "0.604800", + "Timestamp": "2024-05-16T10:48:20.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.419400", - "Timestamp": "2019-10-16T01:36:04.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.833900", + "Timestamp": "2024-05-16T10:48:20.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-16T01:34:30.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.828900", + "Timestamp": "2024-05-16T10:48:20.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iezn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041800", - "Timestamp": "2019-10-16T01:34:30.000Z" + "SpotPrice": "4.703900", + "Timestamp": "2024-05-16T10:48:20.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5dn.large", - "ProductDescription": "Windows", - "SpotPrice": "0.164000", - "Timestamp": "2019-10-16T01:33:31.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "8.779200", + "Timestamp": "2024-05-16T10:48:19.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.935100", - "Timestamp": "2019-10-16T01:33:01.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "8.774200", + "Timestamp": "2024-05-16T10:48:19.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.805100", - "Timestamp": "2019-10-16T01:33:01.000Z" + "SpotPrice": "8.649200", + "Timestamp": "2024-05-16T10:48:19.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.285400", - "Timestamp": "2019-10-16T01:32:43.000Z" + "SpotPrice": "4.131900", + "Timestamp": "2024-05-16T10:48:18.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.099400", - "Timestamp": "2019-10-16T01:25:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.824100", + "Timestamp": "2024-05-16T10:48:18.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.039400", - "Timestamp": "2019-10-16T01:25:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.329700", + "Timestamp": "2024-05-16T10:48:16.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.449600", - "Timestamp": "2019-10-16T01:24:47.000Z" - }, - { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.319600", - "Timestamp": "2019-10-16T01:24:47.000Z" + "SpotPrice": "1.091500", + "Timestamp": "2024-05-16T10:48:16.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.080900", - "Timestamp": "2019-10-16T01:24:39.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.061500", + "Timestamp": "2024-05-16T10:48:16.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g3.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.020900", - "Timestamp": "2019-10-16T01:24:39.000Z" + "SpotPrice": "0.961500", + "Timestamp": "2024-05-16T10:48:16.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-16T01:22:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.633600", + "Timestamp": "2024-05-16T10:48:16.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041800", - "Timestamp": "2019-10-16T01:22:19.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.697800", + "Timestamp": "2024-05-16T10:48:15.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.215500", - "Timestamp": "2019-10-16T01:16:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "h1.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.567500", + "Timestamp": "2024-05-16T10:48:15.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.085500", - "Timestamp": "2019-10-16T01:16:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.384700", + "Timestamp": "2024-05-16T10:48:15.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.800100", - "Timestamp": "2019-10-16T01:16:53.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.379700", + "Timestamp": "2024-05-16T10:48:15.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4ad.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.670100", - "Timestamp": "2019-10-16T01:16:53.000Z" + "SpotPrice": "0.254700", + "Timestamp": "2024-05-16T10:48:15.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.867100", - "Timestamp": "2019-10-16T01:16:22.000Z" + "SpotPrice": "10.387400", + "Timestamp": "2024-05-16T10:48:14.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.209800", - "Timestamp": "2019-10-16T01:15:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.337800", + "Timestamp": "2024-05-16T10:48:14.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.079800", - "Timestamp": "2019-10-16T01:15:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.645100", + "Timestamp": "2024-05-16T10:48:13.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.464600", - "Timestamp": "2019-10-16T01:15:14.000Z" - }, - { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.334600", - "Timestamp": "2019-10-16T01:15:14.000Z" + "SpotPrice": "0.392900", + "Timestamp": "2024-05-16T10:48:13.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.133400", - "Timestamp": "2019-10-16T01:10:13.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.387900", + "Timestamp": "2024-05-16T10:48:13.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5dn.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.003400", - "Timestamp": "2019-10-16T01:10:13.000Z" + "SpotPrice": "0.262900", + "Timestamp": "2024-05-16T10:48:13.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "x1e.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.625400", - "Timestamp": "2019-10-16T01:08:20.000Z" + "SpotPrice": "3.525200", + "Timestamp": "2024-05-16T10:48:12.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.765100", - "Timestamp": "2019-10-16T01:07:42.000Z" + "SpotPrice": "1.280100", + "Timestamp": "2024-05-16T10:48:12.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.275100", + "Timestamp": "2024-05-16T10:48:12.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.635100", - "Timestamp": "2019-10-16T01:07:42.000Z" + "SpotPrice": "1.150100", + "Timestamp": "2024-05-16T10:48:12.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.788400", - "Timestamp": "2019-10-16T01:07:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.275600", + "Timestamp": "2024-05-16T10:48:11.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.658400", - "Timestamp": "2019-10-16T01:07:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.032600", + "Timestamp": "2024-05-16T10:48:11.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.724600", - "Timestamp": "2019-10-16T01:07:35.000Z" + "SpotPrice": "2.282000", + "Timestamp": "2024-05-16T10:48:10.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.277000", + "Timestamp": "2024-05-16T10:48:10.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.594600", - "Timestamp": "2019-10-16T01:07:35.000Z" + "SpotPrice": "2.152000", + "Timestamp": "2024-05-16T10:48:10.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5dn.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.582500", - "Timestamp": "2019-10-16T01:06:39.000Z" + "SpotPrice": "0.524600", + "Timestamp": "2024-05-16T10:48:09.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.686900", - "Timestamp": "2019-10-16T01:02:50.000Z" + "SpotPrice": "0.364200", + "Timestamp": "2024-05-16T10:48:09.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.686900", - "Timestamp": "2019-10-16T01:02:50.000Z" + "SpotPrice": "5.097600", + "Timestamp": "2024-05-16T10:48:09.000Z" }, { - "AvailabilityZone": "us-east-2a", + "AvailabilityZone": "us-east-1c", "InstanceType": "m5d.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.686900", - "Timestamp": "2019-10-16T01:02:50.000Z" + "SpotPrice": "3.318900", + "Timestamp": "2024-05-16T10:48:08.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.large", "ProductDescription": "Windows", - "SpotPrice": "0.765700", - "Timestamp": "2019-10-16T01:01:30.000Z" + "SpotPrice": "0.149100", + "Timestamp": "2024-05-16T10:48:07.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m2.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.765700", - "Timestamp": "2019-10-16T01:01:30.000Z" + "SpotPrice": "0.385500", + "Timestamp": "2024-05-16T10:48:07.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.765700", - "Timestamp": "2019-10-16T01:01:30.000Z" + "SpotPrice": "2.374800", + "Timestamp": "2024-05-16T10:48:07.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.030900", - "Timestamp": "2019-10-16T01:00:14.000Z" + "SpotPrice": "2.399700", + "Timestamp": "2024-05-16T10:48:07.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.030900", - "Timestamp": "2019-10-16T01:00:14.000Z" + "SpotPrice": "1.299800", + "Timestamp": "2024-05-16T10:48:07.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.030900", - "Timestamp": "2019-10-16T01:00:14.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.618800", + "Timestamp": "2024-05-16T10:48:07.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.791000", - "Timestamp": "2019-10-16T00:59:33.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.613800", + "Timestamp": "2024-05-16T10:48:07.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.661000", - "Timestamp": "2019-10-16T00:59:33.000Z" + "SpotPrice": "0.488800", + "Timestamp": "2024-05-16T10:48:07.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.677600", - "Timestamp": "2019-10-16T00:59:25.000Z" + "SpotPrice": "9.580700", + "Timestamp": "2024-05-16T10:48:07.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.108600", + "Timestamp": "2024-05-16T10:48:07.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.058700", - "Timestamp": "2019-10-16T00:59:20.000Z" + "SpotPrice": "0.369200", + "Timestamp": "2024-05-16T10:48:07.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.928700", - "Timestamp": "2019-10-16T00:59:20.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.364200", + "Timestamp": "2024-05-16T10:48:07.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.072500", - "Timestamp": "2019-10-16T00:58:53.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.239200", + "Timestamp": "2024-05-16T10:48:07.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i2.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.072500", - "Timestamp": "2019-10-16T00:58:53.000Z" + "SpotPrice": "3.106700", + "Timestamp": "2024-05-16T10:48:06.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.072500", - "Timestamp": "2019-10-16T00:58:53.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.076700", + "Timestamp": "2024-05-16T10:48:06.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i2.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.012500", - "Timestamp": "2019-10-16T00:58:53.000Z" + "SpotPrice": "2.976700", + "Timestamp": "2024-05-16T10:48:06.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.012500", - "Timestamp": "2019-10-16T00:58:53.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.735000", + "Timestamp": "2024-05-16T10:48:05.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.012500", - "Timestamp": "2019-10-16T00:58:53.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.730000", + "Timestamp": "2024-05-16T10:48:05.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.582500", - "Timestamp": "2019-10-16T00:51:50.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.605000", + "Timestamp": "2024-05-16T10:48:05.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.582500", - "Timestamp": "2019-10-16T00:51:50.000Z" + "SpotPrice": "4.847200", + "Timestamp": "2024-05-16T10:48:05.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.582500", - "Timestamp": "2019-10-16T00:51:50.000Z" + "SpotPrice": "4.465200", + "Timestamp": "2024-05-16T10:48:04.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.604800", - "Timestamp": "2019-10-16T00:51:39.000Z" + "SpotPrice": "0.184500", + "Timestamp": "2024-05-16T10:48:04.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.224500", + "Timestamp": "2024-05-16T10:48:04.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m3.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.474800", - "Timestamp": "2019-10-16T00:51:39.000Z" + "SpotPrice": "0.124500", + "Timestamp": "2024-05-16T10:48:04.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.431800", - "Timestamp": "2019-10-16T00:51:31.000Z" + "SpotPrice": "1.173300", + "Timestamp": "2024-05-16T10:48:04.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.168300", + "Timestamp": "2024-05-16T10:48:04.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.301800", - "Timestamp": "2019-10-16T00:51:31.000Z" + "SpotPrice": "1.043300", + "Timestamp": "2024-05-16T10:48:04.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.768500", - "Timestamp": "2019-10-16T00:51:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.667700", + "Timestamp": "2024-05-16T10:48:03.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.768500", - "Timestamp": "2019-10-16T00:51:15.000Z" + "SpotPrice": "1.220100", + "Timestamp": "2024-05-16T10:48:03.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.768500", - "Timestamp": "2019-10-16T00:51:15.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.215100", + "Timestamp": "2024-05-16T10:48:03.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.638500", - "Timestamp": "2019-10-16T00:51:15.000Z" + "SpotPrice": "1.090100", + "Timestamp": "2024-05-16T10:48:03.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.638500", - "Timestamp": "2019-10-16T00:51:15.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "p2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.518800", + "Timestamp": "2024-05-16T10:48:03.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.558800", + "Timestamp": "2024-05-16T10:48:03.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "p2.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.638500", - "Timestamp": "2019-10-16T00:51:15.000Z" + "SpotPrice": "0.458800", + "Timestamp": "2024-05-16T10:48:03.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.222700", - "Timestamp": "2019-10-16T00:51:09.000Z" + "SpotPrice": "3.377900", + "Timestamp": "2024-05-16T10:48:03.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.372900", + "Timestamp": "2024-05-16T10:48:03.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.092700", - "Timestamp": "2019-10-16T00:51:09.000Z" + "SpotPrice": "3.247900", + "Timestamp": "2024-05-16T10:48:03.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.203100", - "Timestamp": "2019-10-16T00:51:08.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173500", + "Timestamp": "2024-05-16T10:48:03.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.130000", - "Timestamp": "2019-10-16T00:51:08.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169800", + "Timestamp": "2024-05-16T10:48:03.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113500", + "Timestamp": "2024-05-16T10:48:03.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.130000", - "Timestamp": "2019-10-16T00:51:08.000Z" + "SpotPrice": "1.437000", + "Timestamp": "2024-05-16T10:48:02.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.958000", - "Timestamp": "2019-10-16T00:51:06.000Z" + "SpotPrice": "1.020000", + "Timestamp": "2024-05-16T10:48:02.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.958000", - "Timestamp": "2019-10-16T00:51:06.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.015000", + "Timestamp": "2024-05-16T10:48:02.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.828000", - "Timestamp": "2019-10-16T00:51:06.000Z" + "SpotPrice": "0.890000", + "Timestamp": "2024-05-16T10:48:02.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.828000", - "Timestamp": "2019-10-16T00:51:06.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.538000", + "Timestamp": "2024-05-16T10:48:02.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.111900", - "Timestamp": "2019-10-16T00:50:32.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.533000", + "Timestamp": "2024-05-16T10:48:02.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.111900", - "Timestamp": "2019-10-16T00:50:32.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.408000", + "Timestamp": "2024-05-16T10:48:02.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.111900", - "Timestamp": "2019-10-16T00:50:32.000Z" + "SpotPrice": "1.986200", + "Timestamp": "2024-05-16T10:48:02.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1e", + "InstanceType": "g3.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.079900", - "Timestamp": "2019-10-16T00:47:33.000Z" + "SpotPrice": "0.640600", + "Timestamp": "2024-05-16T10:48:01.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.079900", - "Timestamp": "2019-10-16T00:47:33.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.610600", + "Timestamp": "2024-05-16T10:48:01.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.079900", - "Timestamp": "2019-10-16T00:47:33.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.510600", + "Timestamp": "2024-05-16T10:48:01.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.019900", - "Timestamp": "2019-10-16T00:47:33.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.049700", + "Timestamp": "2024-05-16T10:48:01.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.019900", - "Timestamp": "2019-10-16T00:47:33.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.561500", + "Timestamp": "2024-05-16T10:48:01.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.019900", - "Timestamp": "2019-10-16T00:47:33.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.048700", + "Timestamp": "2024-05-16T10:48:01.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.339500", - "Timestamp": "2019-10-16T00:43:24.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.292400", + "Timestamp": "2024-05-16T10:48:01.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.209500", - "Timestamp": "2019-10-16T00:43:24.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.012700", + "Timestamp": "2024-05-16T10:48:00.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.067400", + "Timestamp": "2024-05-16T10:48:00.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.307000", - "Timestamp": "2019-10-16T00:43:20.000Z" + "SpotPrice": "1.656600", + "Timestamp": "2024-05-16T10:48:00.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.651600", + "Timestamp": "2024-05-16T10:48:00.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.177000", - "Timestamp": "2019-10-16T00:43:20.000Z" + "SpotPrice": "1.526600", + "Timestamp": "2024-05-16T10:48:00.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.165100", + "Timestamp": "2024-05-16T10:48:00.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.291300", + "Timestamp": "2024-05-16T10:48:00.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "z1d.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.598900", - "Timestamp": "2019-10-16T00:42:59.000Z" + "SpotPrice": "0.516400", + "Timestamp": "2024-05-16T10:47:59.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.511400", + "Timestamp": "2024-05-16T10:47:59.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "z1d.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.468900", - "Timestamp": "2019-10-16T00:42:59.000Z" + "SpotPrice": "0.386400", + "Timestamp": "2024-05-16T10:47:59.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.226800", - "Timestamp": "2019-10-16T00:42:54.000Z" + "SpotPrice": "4.306100", + "Timestamp": "2024-05-16T10:47:58.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.105700", - "Timestamp": "2019-10-16T00:42:52.000Z" + "SpotPrice": "0.547300", + "Timestamp": "2024-05-16T10:47:58.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.542300", + "Timestamp": "2024-05-16T10:47:58.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.045700", - "Timestamp": "2019-10-16T00:42:52.000Z" + "SpotPrice": "0.417300", + "Timestamp": "2024-05-16T10:47:58.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.372700", - "Timestamp": "2019-10-16T00:42:37.000Z" + "SpotPrice": "4.575700", + "Timestamp": "2024-05-16T10:47:57.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.570700", + "Timestamp": "2024-05-16T10:47:57.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.312700", - "Timestamp": "2019-10-16T00:42:37.000Z" + "SpotPrice": "4.445700", + "Timestamp": "2024-05-16T10:47:57.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7gd.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101600", - "Timestamp": "2019-10-16T00:42:35.000Z" + "SpotPrice": "0.172700", + "Timestamp": "2024-05-16T10:47:57.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169000", + "Timestamp": "2024-05-16T10:47:57.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041600", - "Timestamp": "2019-10-16T00:42:35.000Z" + "SpotPrice": "0.112700", + "Timestamp": "2024-05-16T10:47:57.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "is4gen.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.432900", - "Timestamp": "2019-10-16T00:42:22.000Z" + "SpotPrice": "2.007300", + "Timestamp": "2024-05-16T10:47:57.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.002300", + "Timestamp": "2024-05-16T10:47:57.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "is4gen.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.302900", - "Timestamp": "2019-10-16T00:42:22.000Z" + "SpotPrice": "1.877300", + "Timestamp": "2024-05-16T10:47:57.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "h1.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.large", "ProductDescription": "Windows", - "SpotPrice": "0.533000", - "Timestamp": "2019-10-16T00:40:34.000Z" + "SpotPrice": "0.143800", + "Timestamp": "2024-05-16T10:47:57.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "h1.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.metal", "ProductDescription": "Windows", - "SpotPrice": "0.533000", - "Timestamp": "2019-10-16T00:40:34.000Z" + "SpotPrice": "6.810500", + "Timestamp": "2024-05-16T10:47:56.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "h1.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.533000", - "Timestamp": "2019-10-16T00:40:34.000Z" + "SpotPrice": "4.504000", + "Timestamp": "2024-05-16T10:47:56.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "h1.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.295000", - "Timestamp": "2019-10-16T00:40:33.000Z" + "SpotPrice": "0.196500", + "Timestamp": "2024-05-16T10:47:56.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.295000", - "Timestamp": "2019-10-16T00:40:33.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192500", + "Timestamp": "2024-05-16T10:47:56.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.295000", - "Timestamp": "2019-10-16T00:40:33.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136500", + "Timestamp": "2024-05-16T10:47:56.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.165000", - "Timestamp": "2019-10-16T00:40:33.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.344200", + "Timestamp": "2024-05-16T10:47:56.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.165000", - "Timestamp": "2019-10-16T00:40:33.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.339200", + "Timestamp": "2024-05-16T10:47:56.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "h1.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.165000", - "Timestamp": "2019-10-16T00:40:33.000Z" + "SpotPrice": "3.214200", + "Timestamp": "2024-05-16T10:47:56.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066300", - "Timestamp": "2019-10-16T00:39:43.000Z" + "SpotPrice": "2.012000", + "Timestamp": "2024-05-16T10:47:56.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066300", - "Timestamp": "2019-10-16T00:39:43.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.007000", + "Timestamp": "2024-05-16T10:47:56.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.882000", + "Timestamp": "2024-05-16T10:47:56.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066300", - "Timestamp": "2019-10-16T00:39:43.000Z" + "SpotPrice": "0.348200", + "Timestamp": "2024-05-16T10:47:56.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006300", - "Timestamp": "2019-10-16T00:39:43.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343200", + "Timestamp": "2024-05-16T10:47:56.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006300", - "Timestamp": "2019-10-16T00:39:43.000Z" + "SpotPrice": "0.218200", + "Timestamp": "2024-05-16T10:47:56.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.754200", + "Timestamp": "2024-05-16T10:47:55.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.749200", + "Timestamp": "2024-05-16T10:47:55.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006300", - "Timestamp": "2019-10-16T00:39:43.000Z" + "SpotPrice": "1.624200", + "Timestamp": "2024-05-16T10:47:55.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.024700", - "Timestamp": "2019-10-16T00:38:17.000Z" + "SpotPrice": "0.277700", + "Timestamp": "2024-05-16T10:47:55.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r3.large", "ProductDescription": "Windows", - "SpotPrice": "0.024700", - "Timestamp": "2019-10-16T00:38:17.000Z" + "SpotPrice": "0.193200", + "Timestamp": "2024-05-16T10:47:55.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.024700", - "Timestamp": "2019-10-16T00:38:17.000Z" + "SpotPrice": "5.520000", + "Timestamp": "2024-05-16T10:47:54.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.332500", - "Timestamp": "2019-10-16T00:34:51.000Z" + "SpotPrice": "0.451200", + "Timestamp": "2024-05-16T10:47:54.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.446200", + "Timestamp": "2024-05-16T10:47:54.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.202500", - "Timestamp": "2019-10-16T00:34:51.000Z" + "SpotPrice": "0.321200", + "Timestamp": "2024-05-16T10:47:54.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.335500", - "Timestamp": "2019-10-16T00:34:34.000Z" + "SpotPrice": "1.694200", + "Timestamp": "2024-05-16T10:47:54.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.689200", + "Timestamp": "2024-05-16T10:47:54.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.205500", - "Timestamp": "2019-10-16T00:34:34.000Z" + "SpotPrice": "1.564200", + "Timestamp": "2024-05-16T10:47:54.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.777800", - "Timestamp": "2019-10-16T00:34:05.000Z" + "SpotPrice": "0.988500", + "Timestamp": "2024-05-16T10:47:53.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.647800", - "Timestamp": "2019-10-16T00:34:05.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.983500", + "Timestamp": "2024-05-16T10:47:53.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.112000", - "Timestamp": "2019-10-16T00:27:07.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.858500", + "Timestamp": "2024-05-16T10:47:53.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.483100", - "Timestamp": "2019-10-16T00:26:33.000Z" + "SpotPrice": "1.093600", + "Timestamp": "2024-05-16T10:47:53.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.088600", + "Timestamp": "2024-05-16T10:47:53.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.353100", - "Timestamp": "2019-10-16T00:26:33.000Z" + "SpotPrice": "0.963600", + "Timestamp": "2024-05-16T10:47:53.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.998100", - "Timestamp": "2019-10-16T00:26:23.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.766000", + "Timestamp": "2024-05-16T10:47:52.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.868100", - "Timestamp": "2019-10-16T00:26:23.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.761600", + "Timestamp": "2024-05-16T10:47:52.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.638500", - "Timestamp": "2019-10-16T00:26:10.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.819600", + "Timestamp": "2024-05-16T10:47:52.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.508500", - "Timestamp": "2019-10-16T00:26:10.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.582000", + "Timestamp": "2024-05-16T10:47:52.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "h1.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101300", - "Timestamp": "2019-10-16T00:26:07.000Z" + "SpotPrice": "2.616700", + "Timestamp": "2024-05-16T10:47:52.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041300", - "Timestamp": "2019-10-16T00:26:07.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "h1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.586700", + "Timestamp": "2024-05-16T10:47:52.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.296700", - "Timestamp": "2019-10-16T00:26:05.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "h1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.486700", + "Timestamp": "2024-05-16T10:47:52.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.166700", - "Timestamp": "2019-10-16T00:26:05.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.633800", + "Timestamp": "2024-05-16T10:47:51.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.332400", - "Timestamp": "2019-10-16T00:18:23.000Z" + "SpotPrice": "0.706500", + "Timestamp": "2024-05-16T10:47:50.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.701500", + "Timestamp": "2024-05-16T10:47:50.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.202400", - "Timestamp": "2019-10-16T00:18:23.000Z" + "SpotPrice": "0.576500", + "Timestamp": "2024-05-16T10:47:50.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.154300", - "Timestamp": "2019-10-16T00:17:58.000Z" + "SpotPrice": "2.790100", + "Timestamp": "2024-05-16T10:47:49.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.024300", - "Timestamp": "2019-10-16T00:17:58.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.085100", + "Timestamp": "2024-05-16T10:47:49.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.087800", - "Timestamp": "2019-10-16T00:16:00.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.785100", + "Timestamp": "2024-05-16T10:47:49.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5dn.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.080100", + "Timestamp": "2024-05-16T10:47:49.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.957800", - "Timestamp": "2019-10-16T00:16:00.000Z" + "SpotPrice": "2.660100", + "Timestamp": "2024-05-16T10:47:49.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.419400", - "Timestamp": "2019-10-16T00:15:19.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.955100", + "Timestamp": "2024-05-16T10:47:49.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.521100", - "Timestamp": "2019-10-16T00:09:58.000Z" + "SpotPrice": "2.083300", + "Timestamp": "2024-05-16T10:47:49.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.078300", + "Timestamp": "2024-05-16T10:47:49.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.391100", - "Timestamp": "2019-10-16T00:09:58.000Z" + "SpotPrice": "1.953300", + "Timestamp": "2024-05-16T10:47:49.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.221600", - "Timestamp": "2019-10-16T00:09:25.000Z" + "SpotPrice": "5.114700", + "Timestamp": "2024-05-16T10:47:49.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.109700", + "Timestamp": "2024-05-16T10:47:49.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.091600", - "Timestamp": "2019-10-16T00:09:25.000Z" + "SpotPrice": "4.984700", + "Timestamp": "2024-05-16T10:47:49.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.975700", - "Timestamp": "2019-10-16T00:09:13.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.760800", + "Timestamp": "2024-05-16T10:47:48.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.845700", - "Timestamp": "2019-10-16T00:09:13.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.056100", + "Timestamp": "2024-05-16T10:47:47.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5dn.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "z1d.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.080000", - "Timestamp": "2019-10-16T00:05:39.000Z" + "SpotPrice": "2.557600", + "Timestamp": "2024-05-16T10:47:47.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5dn.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.020000", - "Timestamp": "2019-10-16T00:05:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.051100", + "Timestamp": "2024-05-16T10:47:47.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.998100", - "Timestamp": "2019-10-16T00:05:04.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.552600", + "Timestamp": "2024-05-16T10:47:47.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.998100", - "Timestamp": "2019-10-16T00:05:04.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.926100", + "Timestamp": "2024-05-16T10:47:47.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.998100", - "Timestamp": "2019-10-16T00:05:04.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.427600", + "Timestamp": "2024-05-16T10:47:47.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.654000", - "Timestamp": "2019-10-16T00:03:12.000Z" + "SpotPrice": "1.664100", + "Timestamp": "2024-05-16T10:47:47.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.654000", - "Timestamp": "2019-10-16T00:03:12.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.659100", + "Timestamp": "2024-05-16T10:47:47.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.534100", + "Timestamp": "2024-05-16T10:47:47.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.654000", - "Timestamp": "2019-10-16T00:03:12.000Z" + "SpotPrice": "0.694000", + "Timestamp": "2024-05-16T10:47:47.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.524000", - "Timestamp": "2019-10-16T00:03:12.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.689000", + "Timestamp": "2024-05-16T10:47:47.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.524000", - "Timestamp": "2019-10-16T00:03:12.000Z" + "SpotPrice": "0.564000", + "Timestamp": "2024-05-16T10:47:47.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.011700", + "Timestamp": "2024-05-16T10:47:46.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.006700", + "Timestamp": "2024-05-16T10:47:46.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.524000", - "Timestamp": "2019-10-16T00:03:12.000Z" + "SpotPrice": "0.881700", + "Timestamp": "2024-05-16T10:47:46.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.892000", - "Timestamp": "2019-10-16T00:02:59.000Z" + "SpotPrice": "2.449300", + "Timestamp": "2024-05-16T10:47:46.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c3.large", "ProductDescription": "Windows", - "SpotPrice": "0.892000", - "Timestamp": "2019-10-16T00:02:59.000Z" + "SpotPrice": "0.142400", + "Timestamp": "2024-05-16T10:47:46.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r4.large", "ProductDescription": "Windows", - "SpotPrice": "0.892000", - "Timestamp": "2019-10-16T00:02:59.000Z" + "SpotPrice": "0.154500", + "Timestamp": "2024-05-16T10:47:46.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.401200", - "Timestamp": "2019-10-16T00:02:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.523800", + "Timestamp": "2024-05-16T10:47:45.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.401200", - "Timestamp": "2019-10-16T00:02:47.000Z" + "SpotPrice": "0.997700", + "Timestamp": "2024-05-16T10:47:45.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.271200", - "Timestamp": "2019-10-16T00:02:47.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.992700", + "Timestamp": "2024-05-16T10:47:45.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.271200", - "Timestamp": "2019-10-16T00:02:47.000Z" + "SpotPrice": "0.867700", + "Timestamp": "2024-05-16T10:47:45.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.639200", - "Timestamp": "2019-10-16T00:02:25.000Z" + "SpotPrice": "3.792500", + "Timestamp": "2024-05-16T10:47:45.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.639200", - "Timestamp": "2019-10-16T00:02:25.000Z" + "SpotPrice": "1.385700", + "Timestamp": "2024-05-16T10:47:45.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5dn.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.709700", - "Timestamp": "2019-10-16T00:02:15.000Z" + "SpotPrice": "0.581600", + "Timestamp": "2024-05-16T10:47:45.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.278500", - "Timestamp": "2019-10-16T00:01:34.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.137300", + "Timestamp": "2024-05-16T10:47:45.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.148500", - "Timestamp": "2019-10-16T00:01:34.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.045100", + "Timestamp": "2024-05-16T10:47:44.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.079200", - "Timestamp": "2019-10-16T00:01:26.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.040100", + "Timestamp": "2024-05-16T10:47:44.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.019200", - "Timestamp": "2019-10-16T00:01:26.000Z" + "SpotPrice": "1.915100", + "Timestamp": "2024-05-16T10:47:44.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.081000", - "Timestamp": "2019-10-16T00:01:15.000Z" + "SpotPrice": "1.451600", + "Timestamp": "2024-05-16T10:47:44.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.446600", + "Timestamp": "2024-05-16T10:47:44.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.021000", - "Timestamp": "2019-10-16T00:01:15.000Z" + "SpotPrice": "1.321600", + "Timestamp": "2024-05-16T10:47:44.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "p2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.343400", - "Timestamp": "2019-10-16T00:00:59.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.297100", + "Timestamp": "2024-05-16T10:47:44.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "p2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.283400", - "Timestamp": "2019-10-16T00:00:59.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T10:47:43.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.642400", - "Timestamp": "2019-10-16T00:00:46.000Z" + "SpotPrice": "0.423500", + "Timestamp": "2024-05-16T10:47:43.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.418500", + "Timestamp": "2024-05-16T10:47:43.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.512400", - "Timestamp": "2019-10-16T00:00:46.000Z" + "SpotPrice": "0.293500", + "Timestamp": "2024-05-16T10:47:43.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.334800", - "Timestamp": "2019-10-16T00:00:34.000Z" + "SpotPrice": "0.148200", + "Timestamp": "2024-05-16T10:47:43.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.204800", - "Timestamp": "2019-10-16T00:00:34.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144500", + "Timestamp": "2024-05-16T10:47:43.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.686900", - "Timestamp": "2019-10-15T23:58:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088200", + "Timestamp": "2024-05-16T10:47:43.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.6xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "9.233300", - "Timestamp": "2019-10-15T23:53:27.000Z" + "SpotPrice": "1.161100", + "Timestamp": "2024-05-16T10:47:43.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.156100", + "Timestamp": "2024-05-16T10:47:43.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.6xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "9.103300", - "Timestamp": "2019-10-15T23:53:27.000Z" + "SpotPrice": "1.031100", + "Timestamp": "2024-05-16T10:47:43.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.940300", - "Timestamp": "2019-10-15T23:52:54.000Z" + "SpotPrice": "2.075400", + "Timestamp": "2024-05-16T10:47:43.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.070400", + "Timestamp": "2024-05-16T10:47:43.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.810300", - "Timestamp": "2019-10-15T23:52:54.000Z" + "SpotPrice": "1.945400", + "Timestamp": "2024-05-16T10:47:43.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.061800", - "Timestamp": "2019-10-15T23:52:53.000Z" + "SpotPrice": "1.035300", + "Timestamp": "2024-05-16T10:47:43.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.030300", + "Timestamp": "2024-05-16T10:47:43.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.931800", - "Timestamp": "2019-10-15T23:52:53.000Z" + "SpotPrice": "0.905300", + "Timestamp": "2024-05-16T10:47:43.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.795800", - "Timestamp": "2019-10-15T23:52:38.000Z" + "SpotPrice": "0.260300", + "Timestamp": "2024-05-16T10:47:43.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.230300", + "Timestamp": "2024-05-16T10:47:43.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.665800", - "Timestamp": "2019-10-15T23:52:38.000Z" + "SpotPrice": "0.130300", + "Timestamp": "2024-05-16T10:47:43.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.328600", - "Timestamp": "2019-10-15T23:52:26.000Z" + "SpotPrice": "0.521700", + "Timestamp": "2024-05-16T10:47:43.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.198600", - "Timestamp": "2019-10-15T23:52:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.516700", + "Timestamp": "2024-05-16T10:47:43.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "a1.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.208800", - "Timestamp": "2019-10-15T23:52:04.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.391700", + "Timestamp": "2024-05-16T10:47:43.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "a1.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.208800", - "Timestamp": "2019-10-15T23:52:04.000Z" + "SpotPrice": "0.078000", + "Timestamp": "2024-05-16T10:47:42.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "a1.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.078800", - "Timestamp": "2019-10-15T23:52:04.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.049000", + "Timestamp": "2024-05-16T10:47:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "a1.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.078800", - "Timestamp": "2019-10-15T23:52:04.000Z" + "SpotPrice": "0.018000", + "Timestamp": "2024-05-16T10:47:42.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.080700", - "Timestamp": "2019-10-15T23:44:30.000Z" + "SpotPrice": "1.482500", + "Timestamp": "2024-05-16T10:47:42.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.477500", + "Timestamp": "2024-05-16T10:47:42.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.950700", - "Timestamp": "2019-10-15T23:44:30.000Z" + "SpotPrice": "1.352500", + "Timestamp": "2024-05-16T10:47:42.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.795600", - "Timestamp": "2019-10-15T23:44:28.000Z" + "SpotPrice": "1.063700", + "Timestamp": "2024-05-16T10:47:42.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.058700", + "Timestamp": "2024-05-16T10:47:42.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.665600", - "Timestamp": "2019-10-15T23:44:28.000Z" + "SpotPrice": "0.933700", + "Timestamp": "2024-05-16T10:47:42.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.505900", - "Timestamp": "2019-10-15T23:44:22.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.233900", + "Timestamp": "2024-05-16T10:47:42.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.341800", - "Timestamp": "2019-10-15T23:43:30.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.665800", + "Timestamp": "2024-05-16T10:47:42.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.341800", - "Timestamp": "2019-10-15T23:43:30.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.228900", + "Timestamp": "2024-05-16T10:47:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.341800", - "Timestamp": "2019-10-15T23:43:30.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.660800", + "Timestamp": "2024-05-16T10:47:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.081500", - "Timestamp": "2019-10-15T23:36:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.103900", + "Timestamp": "2024-05-16T10:47:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.951500", - "Timestamp": "2019-10-15T23:36:49.000Z" + "SpotPrice": "6.535800", + "Timestamp": "2024-05-16T10:47:42.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t4g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.952800", - "Timestamp": "2019-10-15T23:36:31.000Z" + "SpotPrice": "0.130800", + "Timestamp": "2024-05-16T10:47:42.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.822800", - "Timestamp": "2019-10-15T23:36:31.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127100", + "Timestamp": "2024-05-16T10:47:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.859700", - "Timestamp": "2019-10-15T23:36:24.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070800", + "Timestamp": "2024-05-16T10:47:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.282900", - "Timestamp": "2019-10-15T23:36:15.000Z" + "SpotPrice": "1.095400", + "Timestamp": "2024-05-16T10:47:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.065400", + "Timestamp": "2024-05-16T10:47:42.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.152900", - "Timestamp": "2019-10-15T23:36:15.000Z" + "SpotPrice": "0.965400", + "Timestamp": "2024-05-16T10:47:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gn.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101300", - "Timestamp": "2019-10-15T23:36:14.000Z" + "SpotPrice": "0.085200", + "Timestamp": "2024-05-16T10:47:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041300", - "Timestamp": "2019-10-15T23:36:14.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.081500", + "Timestamp": "2024-05-16T10:47:42.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.297500", - "Timestamp": "2019-10-15T23:36:13.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025200", + "Timestamp": "2024-05-16T10:47:42.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.167500", - "Timestamp": "2019-10-15T23:36:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.660700", + "Timestamp": "2024-05-16T10:47:41.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.206000", - "Timestamp": "2019-10-15T23:35:56.000Z" + "SpotPrice": "0.433000", + "Timestamp": "2024-05-16T10:47:41.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.076000", - "Timestamp": "2019-10-15T23:35:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.428000", + "Timestamp": "2024-05-16T10:47:41.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.022900", - "Timestamp": "2019-10-15T23:35:36.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.303000", + "Timestamp": "2024-05-16T10:47:41.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.608900", - "Timestamp": "2019-10-15T23:33:24.000Z" + "SpotPrice": "1.042900", + "Timestamp": "2024-05-16T10:47:41.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.037900", + "Timestamp": "2024-05-16T10:47:41.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.478900", - "Timestamp": "2019-10-15T23:33:24.000Z" + "SpotPrice": "0.912900", + "Timestamp": "2024-05-16T10:47:41.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.486700", - "Timestamp": "2019-10-15T23:28:16.000Z" + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T10:47:41.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095500", + "Timestamp": "2024-05-16T10:47:41.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.356700", - "Timestamp": "2019-10-15T23:28:16.000Z" + "SpotPrice": "0.039200", + "Timestamp": "2024-05-16T10:47:41.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.505700", - "Timestamp": "2019-10-15T23:27:45.000Z" + "SpotPrice": "2.220400", + "Timestamp": "2024-05-16T10:47:41.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.215400", + "Timestamp": "2024-05-16T10:47:41.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.375700", - "Timestamp": "2019-10-15T23:27:45.000Z" + "SpotPrice": "2.090400", + "Timestamp": "2024-05-16T10:47:41.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.080400", - "Timestamp": "2019-10-15T23:27:29.000Z" + "SpotPrice": "8.564000", + "Timestamp": "2024-05-16T10:47:41.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.225400", - "Timestamp": "2019-10-15T23:27:23.000Z" + "SpotPrice": "1.405600", + "Timestamp": "2024-05-16T10:47:41.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.400600", + "Timestamp": "2024-05-16T10:47:41.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.095400", - "Timestamp": "2019-10-15T23:27:23.000Z" + "SpotPrice": "1.275600", + "Timestamp": "2024-05-16T10:47:41.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5dn.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.large", "ProductDescription": "Windows", - "SpotPrice": "2.709700", - "Timestamp": "2019-10-15T23:26:15.000Z" + "SpotPrice": "0.132500", + "Timestamp": "2024-05-16T10:47:40.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.449300", - "Timestamp": "2019-10-15T23:25:41.000Z" + "SpotPrice": "0.744200", + "Timestamp": "2024-05-16T10:47:40.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.449300", - "Timestamp": "2019-10-15T23:25:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.739200", + "Timestamp": "2024-05-16T10:47:40.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.319300", - "Timestamp": "2019-10-15T23:25:41.000Z" + "SpotPrice": "0.614200", + "Timestamp": "2024-05-16T10:47:40.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.319300", - "Timestamp": "2019-10-15T23:25:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.662500", + "Timestamp": "2024-05-16T10:47:40.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.686900", - "Timestamp": "2019-10-15T23:24:28.000Z" + "SpotPrice": "8.722800", + "Timestamp": "2024-05-16T10:47:39.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.061900", - "Timestamp": "2019-10-15T23:19:24.000Z" - }, - { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.931900", - "Timestamp": "2019-10-15T23:19:24.000Z" + "SpotPrice": "2.726300", + "Timestamp": "2024-05-16T10:47:38.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.213600", - "Timestamp": "2019-10-15T23:13:14.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.721300", + "Timestamp": "2024-05-16T10:47:38.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5n.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.083600", - "Timestamp": "2019-10-15T23:13:14.000Z" + "SpotPrice": "2.596300", + "Timestamp": "2024-05-16T10:47:38.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.368500", - "Timestamp": "2019-10-15T23:11:23.000Z" - }, - { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.238500", - "Timestamp": "2019-10-15T23:11:23.000Z" + "SpotPrice": "1.229100", + "Timestamp": "2024-05-16T10:47:38.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.231100", - "Timestamp": "2019-10-15T23:10:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.224100", + "Timestamp": "2024-05-16T10:47:38.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.101100", - "Timestamp": "2019-10-15T23:10:54.000Z" + "SpotPrice": "1.099100", + "Timestamp": "2024-05-16T10:47:38.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.221500", - "Timestamp": "2019-10-15T23:10:47.000Z" + "SpotPrice": "1.407700", + "Timestamp": "2024-05-16T10:47:37.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.402700", + "Timestamp": "2024-05-16T10:47:37.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.091500", - "Timestamp": "2019-10-15T23:10:47.000Z" + "SpotPrice": "1.277700", + "Timestamp": "2024-05-16T10:47:37.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4ad.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.472500", - "Timestamp": "2019-10-15T23:10:43.000Z" + "SpotPrice": "0.225700", + "Timestamp": "2024-05-16T10:47:37.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.222000", + "Timestamp": "2024-05-16T10:47:37.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4ad.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.342500", - "Timestamp": "2019-10-15T23:10:43.000Z" + "SpotPrice": "0.165700", + "Timestamp": "2024-05-16T10:47:37.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.284500", - "Timestamp": "2019-10-15T23:10:39.000Z" + "SpotPrice": "0.309400", + "Timestamp": "2024-05-16T10:47:37.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.581100", - "Timestamp": "2019-10-15T23:08:16.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.362700", + "Timestamp": "2024-05-16T10:47:36.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.581100", - "Timestamp": "2019-10-15T23:08:16.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.332700", + "Timestamp": "2024-05-16T10:47:36.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.581100", - "Timestamp": "2019-10-15T23:08:16.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.232700", + "Timestamp": "2024-05-16T10:47:36.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.130700", - "Timestamp": "2019-10-15T23:04:26.000Z" + "SpotPrice": "0.304700", + "Timestamp": "2024-05-16T10:47:36.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "g4dn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.130700", - "Timestamp": "2019-10-15T23:04:26.000Z" + "SpotPrice": "0.280300", + "Timestamp": "2024-05-16T10:47:36.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.130700", - "Timestamp": "2019-10-15T23:04:26.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.300700", + "Timestamp": "2024-05-16T10:47:36.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.000700", - "Timestamp": "2019-10-15T23:04:26.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276300", + "Timestamp": "2024-05-16T10:47:36.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.000700", - "Timestamp": "2019-10-15T23:04:26.000Z" + "SpotPrice": "0.244700", + "Timestamp": "2024-05-16T10:47:36.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "g4dn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.000700", - "Timestamp": "2019-10-15T23:04:26.000Z" + "SpotPrice": "0.220300", + "Timestamp": "2024-05-16T10:47:36.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.112900", - "Timestamp": "2019-10-15T23:04:02.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.635200", + "Timestamp": "2024-05-16T10:47:36.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.112900", - "Timestamp": "2019-10-15T23:04:02.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.631500", + "Timestamp": "2024-05-16T10:47:36.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.112900", - "Timestamp": "2019-10-15T23:04:02.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.575200", + "Timestamp": "2024-05-16T10:47:36.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.944700", - "Timestamp": "2019-10-15T23:03:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.120400", + "Timestamp": "2024-05-16T10:47:36.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.944700", - "Timestamp": "2019-10-15T23:03:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.115400", + "Timestamp": "2024-05-16T10:47:36.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.944700", - "Timestamp": "2019-10-15T23:03:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.990400", + "Timestamp": "2024-05-16T10:47:36.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.080900", - "Timestamp": "2019-10-15T23:03:17.000Z" + "SpotPrice": "0.371800", + "Timestamp": "2024-05-16T10:47:36.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.080900", - "Timestamp": "2019-10-15T23:03:17.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.341800", + "Timestamp": "2024-05-16T10:47:36.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.080900", - "Timestamp": "2019-10-15T23:03:17.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.241800", + "Timestamp": "2024-05-16T10:47:36.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.020900", - "Timestamp": "2019-10-15T23:03:17.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143600", + "Timestamp": "2024-05-16T10:47:35.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.020900", - "Timestamp": "2019-10-15T23:03:17.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183600", + "Timestamp": "2024-05-16T10:47:35.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c4.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.020900", - "Timestamp": "2019-10-15T23:03:17.000Z" + "SpotPrice": "0.083600", + "Timestamp": "2024-05-16T10:47:35.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.283600", - "Timestamp": "2019-10-15T23:02:54.000Z" - }, - { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.153600", - "Timestamp": "2019-10-15T23:02:54.000Z" + "SpotPrice": "1.195800", + "Timestamp": "2024-05-16T10:47:34.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.213100", - "Timestamp": "2019-10-15T23:02:45.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.190800", + "Timestamp": "2024-05-16T10:47:34.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.083100", - "Timestamp": "2019-10-15T23:02:45.000Z" + "SpotPrice": "1.065800", + "Timestamp": "2024-05-16T10:47:34.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.457500", - "Timestamp": "2019-10-15T23:02:28.000Z" - }, - { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.327500", - "Timestamp": "2019-10-15T23:02:28.000Z" + "SpotPrice": "1.024900", + "Timestamp": "2024-05-16T10:47:33.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.339000", - "Timestamp": "2019-10-15T23:01:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.019900", + "Timestamp": "2024-05-16T10:47:33.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.209000", - "Timestamp": "2019-10-15T23:01:53.000Z" + "SpotPrice": "0.894900", + "Timestamp": "2024-05-16T10:47:33.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m4.10xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.116100", - "Timestamp": "2019-10-15T22:54:59.000Z" - }, - { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.056100", - "Timestamp": "2019-10-15T22:54:59.000Z" + "SpotPrice": "1.186200", + "Timestamp": "2024-05-16T10:47:33.000Z" }, { - "AvailabilityZone": "us-east-2a", + "AvailabilityZone": "us-east-1f", "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.565100", - "Timestamp": "2019-10-15T22:53:55.000Z" + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.156200", + "Timestamp": "2024-05-16T10:47:33.000Z" }, { - "AvailabilityZone": "us-east-2a", + "AvailabilityZone": "us-east-1f", "InstanceType": "m4.10xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.435100", - "Timestamp": "2019-10-15T22:53:55.000Z" + "SpotPrice": "1.056200", + "Timestamp": "2024-05-16T10:47:33.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.223100", - "Timestamp": "2019-10-15T22:53:45.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.261200", + "Timestamp": "2024-05-16T10:47:33.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.093100", - "Timestamp": "2019-10-15T22:53:45.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.262200", + "Timestamp": "2024-05-16T10:47:33.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.100300", - "Timestamp": "2019-10-15T22:51:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.557800", + "Timestamp": "2024-05-16T10:47:33.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.040300", - "Timestamp": "2019-10-15T22:51:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.682100", + "Timestamp": "2024-05-16T10:47:33.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.060900", - "Timestamp": "2019-10-15T22:46:31.000Z" + "SpotPrice": "1.825600", + "Timestamp": "2024-05-16T10:47:33.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.820600", + "Timestamp": "2024-05-16T10:47:33.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.930900", - "Timestamp": "2019-10-15T22:46:31.000Z" + "SpotPrice": "1.695600", + "Timestamp": "2024-05-16T10:47:33.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.081300", - "Timestamp": "2019-10-15T22:46:08.000Z" + "SpotPrice": "0.139600", + "Timestamp": "2024-05-16T10:47:32.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135900", + "Timestamp": "2024-05-16T10:47:32.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.021300", - "Timestamp": "2019-10-15T22:46:08.000Z" + "SpotPrice": "0.079600", + "Timestamp": "2024-05-16T10:47:32.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6gd.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.350900", - "Timestamp": "2019-10-15T22:45:57.000Z" + "SpotPrice": "1.475000", + "Timestamp": "2024-05-16T10:47:32.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.470000", + "Timestamp": "2024-05-16T10:47:32.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.220900", - "Timestamp": "2019-10-15T22:45:57.000Z" + "SpotPrice": "1.345000", + "Timestamp": "2024-05-16T10:47:32.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.952600", - "Timestamp": "2019-10-15T22:45:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.116100", + "Timestamp": "2024-05-16T10:47:31.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.822600", - "Timestamp": "2019-10-15T22:45:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.216200", + "Timestamp": "2024-05-16T10:47:31.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5dn.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.133400", - "Timestamp": "2019-10-15T22:39:12.000Z" + "SpotPrice": "0.217700", + "Timestamp": "2024-05-16T10:47:30.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5dn.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.213700", + "Timestamp": "2024-05-16T10:47:30.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.003400", - "Timestamp": "2019-10-15T22:39:12.000Z" + "SpotPrice": "0.157700", + "Timestamp": "2024-05-16T10:47:30.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.608900", - "Timestamp": "2019-10-15T22:38:31.000Z" + "SpotPrice": "0.241400", + "Timestamp": "2024-05-16T10:47:30.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.237700", + "Timestamp": "2024-05-16T10:47:30.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.478900", - "Timestamp": "2019-10-15T22:38:31.000Z" + "SpotPrice": "0.181400", + "Timestamp": "2024-05-16T10:47:30.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.309300", - "Timestamp": "2019-10-15T22:37:35.000Z" + "SpotPrice": "0.304500", + "Timestamp": "2024-05-16T10:47:29.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.299500", + "Timestamp": "2024-05-16T10:47:29.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.179300", - "Timestamp": "2019-10-15T22:37:35.000Z" + "SpotPrice": "0.174500", + "Timestamp": "2024-05-16T10:47:29.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.224500", - "Timestamp": "2019-10-15T22:37:30.000Z" + "SpotPrice": "1.227300", + "Timestamp": "2024-05-16T10:47:28.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.197300", + "Timestamp": "2024-05-16T10:47:28.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.094500", - "Timestamp": "2019-10-15T22:37:30.000Z" + "SpotPrice": "1.097300", + "Timestamp": "2024-05-16T10:47:28.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.525700", - "Timestamp": "2019-10-15T22:37:25.000Z" + "SpotPrice": "1.488100", + "Timestamp": "2024-05-16T10:47:27.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.483100", + "Timestamp": "2024-05-16T10:47:27.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.395700", - "Timestamp": "2019-10-15T22:37:25.000Z" + "SpotPrice": "1.358100", + "Timestamp": "2024-05-16T10:47:27.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.098800", - "Timestamp": "2019-10-15T22:37:06.000Z" + "SpotPrice": "0.533200", + "Timestamp": "2024-05-16T10:47:27.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.528200", + "Timestamp": "2024-05-16T10:47:27.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.038800", - "Timestamp": "2019-10-15T22:37:06.000Z" + "SpotPrice": "0.403200", + "Timestamp": "2024-05-16T10:47:27.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.216000", - "Timestamp": "2019-10-15T22:29:42.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.521700", + "Timestamp": "2024-05-16T10:47:27.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.086000", - "Timestamp": "2019-10-15T22:29:42.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.896000", + "Timestamp": "2024-05-16T10:47:27.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.575500", + "Timestamp": "2024-05-16T10:47:27.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.081500", - "Timestamp": "2019-10-15T22:29:37.000Z" + "SpotPrice": "0.805700", + "Timestamp": "2024-05-16T10:47:26.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.800700", + "Timestamp": "2024-05-16T10:47:26.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.021500", - "Timestamp": "2019-10-15T22:29:37.000Z" + "SpotPrice": "0.675700", + "Timestamp": "2024-05-16T10:47:26.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.139100", + "Timestamp": "2024-05-16T10:47:26.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.100100", - "Timestamp": "2019-10-15T22:29:24.000Z" + "SpotPrice": "0.388800", + "Timestamp": "2024-05-16T10:47:26.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.383800", + "Timestamp": "2024-05-16T10:47:26.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.040100", - "Timestamp": "2019-10-15T22:29:24.000Z" + "SpotPrice": "0.258800", + "Timestamp": "2024-05-16T10:47:26.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.242900", + "Timestamp": "2024-05-16T10:47:25.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.884100", + "Timestamp": "2024-05-16T10:47:25.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.775100", - "Timestamp": "2019-10-15T22:29:05.000Z" + "SpotPrice": "0.100600", + "Timestamp": "2024-05-16T10:47:25.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096900", + "Timestamp": "2024-05-16T10:47:25.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.645100", - "Timestamp": "2019-10-15T22:29:05.000Z" + "SpotPrice": "0.040600", + "Timestamp": "2024-05-16T10:47:25.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.335600", - "Timestamp": "2019-10-15T22:28:40.000Z" + "SpotPrice": "0.459800", + "Timestamp": "2024-05-16T10:47:25.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.454800", + "Timestamp": "2024-05-16T10:47:25.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.205600", - "Timestamp": "2019-10-15T22:28:40.000Z" + "SpotPrice": "0.329800", + "Timestamp": "2024-05-16T10:47:25.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.206000", - "Timestamp": "2019-10-15T22:26:16.000Z" + "SpotPrice": "0.411300", + "Timestamp": "2024-05-16T10:47:25.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.406300", + "Timestamp": "2024-05-16T10:47:25.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.076000", - "Timestamp": "2019-10-15T22:26:16.000Z" + "SpotPrice": "0.281300", + "Timestamp": "2024-05-16T10:47:25.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.285100", - "Timestamp": "2019-10-15T22:21:25.000Z" + "SpotPrice": "1.129500", + "Timestamp": "2024-05-16T10:47:24.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.124500", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.155100", - "Timestamp": "2019-10-15T22:21:25.000Z" + "SpotPrice": "0.999500", + "Timestamp": "2024-05-16T10:47:24.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.647300", - "Timestamp": "2019-10-15T22:21:25.000Z" + "SpotPrice": "1.685700", + "Timestamp": "2024-05-16T10:47:24.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.655700", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.517300", - "Timestamp": "2019-10-15T22:21:25.000Z" + "SpotPrice": "1.555700", + "Timestamp": "2024-05-16T10:47:24.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.572300", - "Timestamp": "2019-10-15T22:21:22.000Z" + "SpotPrice": "0.494500", + "Timestamp": "2024-05-16T10:47:24.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.489500", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.442300", - "Timestamp": "2019-10-15T22:21:22.000Z" + "SpotPrice": "0.364500", + "Timestamp": "2024-05-16T10:47:24.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.204600", - "Timestamp": "2019-10-15T22:21:18.000Z" + "SpotPrice": "1.962200", + "Timestamp": "2024-05-16T10:47:22.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.932200", + "Timestamp": "2024-05-16T10:47:22.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.074600", - "Timestamp": "2019-10-15T22:21:18.000Z" + "SpotPrice": "1.832200", + "Timestamp": "2024-05-16T10:47:22.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.151100", + "Timestamp": "2024-05-16T10:47:22.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.332500", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101500", - "Timestamp": "2019-10-15T22:21:09.000Z" + "SpotPrice": "0.423600", + "Timestamp": "2024-05-16T10:47:21.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.418600", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041500", - "Timestamp": "2019-10-15T22:21:09.000Z" + "SpotPrice": "0.293600", + "Timestamp": "2024-05-16T10:47:21.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.283600", - "Timestamp": "2019-10-15T22:20:56.000Z" + "SpotPrice": "0.536500", + "Timestamp": "2024-05-16T10:47:20.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.531500", + "Timestamp": "2024-05-16T10:47:20.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.153600", - "Timestamp": "2019-10-15T22:20:56.000Z" + "SpotPrice": "0.406500", + "Timestamp": "2024-05-16T10:47:20.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.211700", - "Timestamp": "2019-10-15T22:20:50.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.040500", + "Timestamp": "2024-05-16T10:47:20.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.214600", - "Timestamp": "2019-10-15T22:20:50.000Z" + "SpotPrice": "1.924200", + "Timestamp": "2024-05-16T10:47:20.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.081700", - "Timestamp": "2019-10-15T22:20:50.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.919200", + "Timestamp": "2024-05-16T10:47:20.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.084600", - "Timestamp": "2019-10-15T22:20:50.000Z" + "SpotPrice": "1.794200", + "Timestamp": "2024-05-16T10:47:20.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "h1.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-15T22:13:29.000Z" + "SpotPrice": "1.033100", + "Timestamp": "2024-05-16T10:47:20.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "h1.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.003100", + "Timestamp": "2024-05-16T10:47:20.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "h1.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041800", - "Timestamp": "2019-10-15T22:13:29.000Z" + "SpotPrice": "0.903100", + "Timestamp": "2024-05-16T10:47:20.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.002000", + "Timestamp": "2024-05-16T10:47:18.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.218600", - "Timestamp": "2019-10-15T22:13:13.000Z" + "SpotPrice": "0.891700", + "Timestamp": "2024-05-16T10:47:18.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.886700", + "Timestamp": "2024-05-16T10:47:18.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.088600", - "Timestamp": "2019-10-15T22:13:13.000Z" + "SpotPrice": "0.761700", + "Timestamp": "2024-05-16T10:47:18.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "trn1.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.333900", - "Timestamp": "2019-10-15T22:12:16.000Z" + "SpotPrice": "0.686900", + "Timestamp": "2024-05-16T10:47:17.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "trn1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.656900", + "Timestamp": "2024-05-16T10:47:17.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "trn1.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.203900", - "Timestamp": "2019-10-15T22:12:16.000Z" + "SpotPrice": "0.556900", + "Timestamp": "2024-05-16T10:47:17.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5dn.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t4g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.768500", - "Timestamp": "2019-10-15T22:09:38.000Z" + "SpotPrice": "0.076600", + "Timestamp": "2024-05-16T10:47:17.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5dn.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.072900", + "Timestamp": "2024-05-16T10:47:17.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "t4g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.638500", - "Timestamp": "2019-10-15T22:09:38.000Z" + "SpotPrice": "0.016600", + "Timestamp": "2024-05-16T10:47:17.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "x1e.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r3.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.261800", - "Timestamp": "2019-10-15T22:04:35.000Z" + "SpotPrice": "0.137500", + "Timestamp": "2024-05-16T10:47:16.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "x1e.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177500", + "Timestamp": "2024-05-16T10:47:16.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r3.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.131800", - "Timestamp": "2019-10-15T22:04:35.000Z" + "SpotPrice": "0.077500", + "Timestamp": "2024-05-16T10:47:16.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.931500", - "Timestamp": "2019-10-15T22:04:33.000Z" + "SpotPrice": "0.103900", + "Timestamp": "2024-05-16T10:47:16.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099900", + "Timestamp": "2024-05-16T10:47:16.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.801500", - "Timestamp": "2019-10-15T22:04:33.000Z" + "SpotPrice": "0.043900", + "Timestamp": "2024-05-16T10:47:16.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.754500", - "Timestamp": "2019-10-15T22:04:19.000Z" + "SpotPrice": "0.584300", + "Timestamp": "2024-05-16T10:47:15.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.738500", - "Timestamp": "2019-10-15T22:04:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.579300", + "Timestamp": "2024-05-16T10:47:15.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.624500", - "Timestamp": "2019-10-15T22:04:19.000Z" + "SpotPrice": "0.454300", + "Timestamp": "2024-05-16T10:47:15.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.518700", + "Timestamp": "2024-05-16T10:47:15.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.513700", + "Timestamp": "2024-05-16T10:47:15.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.608500", - "Timestamp": "2019-10-15T22:04:19.000Z" + "SpotPrice": "0.388700", + "Timestamp": "2024-05-16T10:47:15.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3a.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.065600", - "Timestamp": "2019-10-15T22:04:18.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.939300", + "Timestamp": "2024-05-16T10:47:13.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3a.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.065600", - "Timestamp": "2019-10-15T22:04:18.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.085500", + "Timestamp": "2024-05-16T10:47:12.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.065600", - "Timestamp": "2019-10-15T22:04:18.000Z" + "SpotPrice": "0.180300", + "Timestamp": "2024-05-16T10:47:11.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3a.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.005600", - "Timestamp": "2019-10-15T22:04:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.176300", + "Timestamp": "2024-05-16T10:47:11.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.005600", - "Timestamp": "2019-10-15T22:04:18.000Z" + "SpotPrice": "0.120300", + "Timestamp": "2024-05-16T10:47:11.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3a.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.005600", - "Timestamp": "2019-10-15T22:04:18.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.452200", + "Timestamp": "2024-05-16T10:47:11.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.864600", - "Timestamp": "2019-10-15T22:04:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.447200", + "Timestamp": "2024-05-16T10:47:11.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.734600", - "Timestamp": "2019-10-15T22:04:13.000Z" + "SpotPrice": "0.322200", + "Timestamp": "2024-05-16T10:47:11.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.998100", - "Timestamp": "2019-10-15T22:04:12.000Z" + "SpotPrice": "2.492400", + "Timestamp": "2024-05-16T10:33:40.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.metal", "ProductDescription": "Windows", - "SpotPrice": "1.998100", - "Timestamp": "2019-10-15T22:04:12.000Z" + "SpotPrice": "13.083400", + "Timestamp": "2024-05-16T10:33:34.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.998100", - "Timestamp": "2019-10-15T22:04:12.000Z" + "SpotPrice": "0.491000", + "Timestamp": "2024-05-16T10:33:34.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "z1d.metal", "ProductDescription": "Windows", - "SpotPrice": "0.446000", - "Timestamp": "2019-10-15T22:04:10.000Z" + "SpotPrice": "4.094700", + "Timestamp": "2024-05-16T10:33:31.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.446000", - "Timestamp": "2019-10-15T22:04:10.000Z" + "SpotPrice": "0.296100", + "Timestamp": "2024-05-16T10:33:29.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.024000", - "Timestamp": "2019-10-15T22:04:09.000Z" + "SpotPrice": "0.285600", + "Timestamp": "2024-05-16T10:33:29.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m1.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.024000", - "Timestamp": "2019-10-15T22:04:09.000Z" + "SpotPrice": "0.376700", + "Timestamp": "2024-05-16T10:33:29.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3a.small", - "ProductDescription": "Windows", - "SpotPrice": "0.024000", - "Timestamp": "2019-10-15T22:04:09.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.104600", + "Timestamp": "2024-05-16T10:33:28.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.322000", - "Timestamp": "2019-10-15T22:03:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.099600", + "Timestamp": "2024-05-16T10:33:28.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.974600", + "Timestamp": "2024-05-16T10:33:28.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "p2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.322000", - "Timestamp": "2019-10-15T22:03:55.000Z" + "SpotPrice": "0.524100", + "Timestamp": "2024-05-16T10:33:28.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.262000", - "Timestamp": "2019-10-15T22:03:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.564100", + "Timestamp": "2024-05-16T10:33:28.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "p2.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.262000", - "Timestamp": "2019-10-15T22:03:55.000Z" + "SpotPrice": "0.464100", + "Timestamp": "2024-05-16T10:33:28.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.324100", - "Timestamp": "2019-10-15T22:03:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.628500", + "Timestamp": "2024-05-16T10:33:27.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.194100", - "Timestamp": "2019-10-15T22:03:47.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.534900", + "Timestamp": "2024-05-16T10:33:26.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.110200", - "Timestamp": "2019-10-15T22:03:38.000Z" + "SpotPrice": "2.171800", + "Timestamp": "2024-05-16T10:33:26.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.141800", + "Timestamp": "2024-05-16T10:33:26.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.980200", - "Timestamp": "2019-10-15T22:03:38.000Z" + "SpotPrice": "2.041800", + "Timestamp": "2024-05-16T10:33:26.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.449300", - "Timestamp": "2019-10-15T22:03:31.000Z" + "SpotPrice": "0.306200", + "Timestamp": "2024-05-16T10:33:26.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301200", + "Timestamp": "2024-05-16T10:33:26.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.319300", - "Timestamp": "2019-10-15T22:03:31.000Z" + "SpotPrice": "0.176200", + "Timestamp": "2024-05-16T10:33:26.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.472100", - "Timestamp": "2019-10-15T22:03:17.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.728000", + "Timestamp": "2024-05-16T10:33:25.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.499900", + "Timestamp": "2024-05-16T10:33:25.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3en.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.472100", - "Timestamp": "2019-10-15T22:03:17.000Z" + "SpotPrice": "3.525700", + "Timestamp": "2024-05-16T10:33:25.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.342100", - "Timestamp": "2019-10-15T22:03:17.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.520700", + "Timestamp": "2024-05-16T10:33:25.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3en.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.342100", - "Timestamp": "2019-10-15T22:03:17.000Z" + "SpotPrice": "3.395700", + "Timestamp": "2024-05-16T10:33:25.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.metal", "ProductDescription": "Windows", - "SpotPrice": "1.791300", - "Timestamp": "2019-10-15T22:03:08.000Z" + "SpotPrice": "3.819200", + "Timestamp": "2024-05-16T10:33:23.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r4.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.791300", - "Timestamp": "2019-10-15T22:03:08.000Z" + "SpotPrice": "4.875000", + "Timestamp": "2024-05-16T10:33:23.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.791300", - "Timestamp": "2019-10-15T22:03:08.000Z" + "SpotPrice": "6.267000", + "Timestamp": "2024-05-16T10:33:23.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.048400", - "Timestamp": "2019-10-15T21:56:13.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.353600", + "Timestamp": "2024-05-16T10:33:22.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.918400", - "Timestamp": "2019-10-15T21:56:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.235700", + "Timestamp": "2024-05-16T10:33:21.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.227500", - "Timestamp": "2019-10-15T21:56:07.000Z" + "SpotPrice": "3.092600", + "Timestamp": "2024-05-16T10:33:21.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.087600", + "Timestamp": "2024-05-16T10:33:21.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.097500", - "Timestamp": "2019-10-15T21:56:07.000Z" + "SpotPrice": "2.962600", + "Timestamp": "2024-05-16T10:33:21.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.127300", + "Timestamp": "2024-05-16T10:33:20.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.343900", - "Timestamp": "2019-10-15T21:56:04.000Z" + "SpotPrice": "7.128500", + "Timestamp": "2024-05-16T10:33:20.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.123500", + "Timestamp": "2024-05-16T10:33:20.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.213900", - "Timestamp": "2019-10-15T21:56:04.000Z" + "SpotPrice": "6.998500", + "Timestamp": "2024-05-16T10:33:20.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.814500", - "Timestamp": "2019-10-15T21:55:46.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.611000", + "Timestamp": "2024-05-16T10:33:19.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.684500", - "Timestamp": "2019-10-15T21:55:46.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.035900", + "Timestamp": "2024-05-16T10:33:19.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.054100", - "Timestamp": "2019-10-15T21:55:41.000Z" + "SpotPrice": "2.834000", + "Timestamp": "2024-05-16T10:33:18.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.829000", + "Timestamp": "2024-05-16T10:33:18.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.924100", - "Timestamp": "2019-10-15T21:55:41.000Z" + "SpotPrice": "2.704000", + "Timestamp": "2024-05-16T10:33:18.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.429800", - "Timestamp": "2019-10-15T21:55:19.000Z" + "SpotPrice": "1.478500", + "Timestamp": "2024-05-16T10:33:18.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.473500", + "Timestamp": "2024-05-16T10:33:18.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.299800", - "Timestamp": "2019-10-15T21:55:19.000Z" + "SpotPrice": "1.348500", + "Timestamp": "2024-05-16T10:33:18.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.943600", - "Timestamp": "2019-10-15T21:52:15.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.326000", + "Timestamp": "2024-05-16T10:33:16.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.943600", - "Timestamp": "2019-10-15T21:52:15.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.317700", + "Timestamp": "2024-05-16T10:33:16.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.943600", - "Timestamp": "2019-10-15T21:52:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.643600", + "Timestamp": "2024-05-16T10:33:16.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.813600", - "Timestamp": "2019-10-15T21:52:15.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.562800", + "Timestamp": "2024-05-16T10:33:15.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.813600", - "Timestamp": "2019-10-15T21:52:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.318400", + "Timestamp": "2024-05-16T10:33:15.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.813600", - "Timestamp": "2019-10-15T21:52:15.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.224900", + "Timestamp": "2024-05-16T10:33:15.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.608900", - "Timestamp": "2019-10-15T21:51:26.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.204800", + "Timestamp": "2024-05-16T10:33:15.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.608900", - "Timestamp": "2019-10-15T21:51:26.000Z" + "SpotPrice": "0.310300", + "Timestamp": "2024-05-16T10:33:14.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.608900", - "Timestamp": "2019-10-15T21:51:26.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.305300", + "Timestamp": "2024-05-16T10:33:14.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.478900", - "Timestamp": "2019-10-15T21:51:26.000Z" + "SpotPrice": "0.180300", + "Timestamp": "2024-05-16T10:33:14.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.478900", - "Timestamp": "2019-10-15T21:51:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.853300", + "Timestamp": "2024-05-16T10:33:14.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.746000", + "Timestamp": "2024-05-16T10:33:14.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.741000", + "Timestamp": "2024-05-16T10:33:14.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.478900", - "Timestamp": "2019-10-15T21:51:26.000Z" + "SpotPrice": "0.616000", + "Timestamp": "2024-05-16T10:33:14.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3en.6xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.686900", - "Timestamp": "2019-10-15T21:51:20.000Z" + "SpotPrice": "2.568100", + "Timestamp": "2024-05-16T10:33:14.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.686900", - "Timestamp": "2019-10-15T21:51:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137700", + "Timestamp": "2024-05-16T10:33:13.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.686900", - "Timestamp": "2019-10-15T21:51:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133700", + "Timestamp": "2024-05-16T10:33:13.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.612900", - "Timestamp": "2019-10-15T21:51:18.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077700", + "Timestamp": "2024-05-16T10:33:13.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4ad.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.612900", - "Timestamp": "2019-10-15T21:51:18.000Z" + "SpotPrice": "0.612200", + "Timestamp": "2024-05-16T10:33:13.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.612900", - "Timestamp": "2019-10-15T21:51:18.000Z" + "SpotPrice": "3.534200", + "Timestamp": "2024-05-16T10:33:12.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3en.6xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.917600", - "Timestamp": "2019-10-15T21:51:04.000Z" + "SpotPrice": "3.638400", + "Timestamp": "2024-05-16T10:33:12.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.917600", - "Timestamp": "2019-10-15T21:51:04.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.643400", + "Timestamp": "2024-05-16T10:33:12.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3en.6xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.638400", + "Timestamp": "2024-05-16T10:33:12.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.513400", + "Timestamp": "2024-05-16T10:33:12.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.large", "ProductDescription": "Windows", - "SpotPrice": "1.917600", - "Timestamp": "2019-10-15T21:51:04.000Z" + "SpotPrice": "0.179600", + "Timestamp": "2024-05-16T10:33:12.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.996100", - "Timestamp": "2019-10-15T21:50:52.000Z" + "SpotPrice": "3.498200", + "Timestamp": "2024-05-16T10:33:12.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.metal", "ProductDescription": "Windows", - "SpotPrice": "3.996100", - "Timestamp": "2019-10-15T21:50:52.000Z" + "SpotPrice": "12.067100", + "Timestamp": "2024-05-16T10:33:11.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.metal", "ProductDescription": "Windows", - "SpotPrice": "3.996100", - "Timestamp": "2019-10-15T21:50:52.000Z" + "SpotPrice": "12.330600", + "Timestamp": "2024-05-16T10:33:11.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.814100", - "Timestamp": "2019-10-15T21:50:48.000Z" + "SpotPrice": "0.592700", + "Timestamp": "2024-05-16T10:33:11.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.684100", - "Timestamp": "2019-10-15T21:50:48.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.587700", + "Timestamp": "2024-05-16T10:33:11.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.133400", - "Timestamp": "2019-10-15T21:50:45.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.462700", + "Timestamp": "2024-05-16T10:33:11.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.133400", - "Timestamp": "2019-10-15T21:50:45.000Z" + "SpotPrice": "0.198600", + "Timestamp": "2024-05-16T10:33:10.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.133400", - "Timestamp": "2019-10-15T21:50:45.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.194600", + "Timestamp": "2024-05-16T10:33:10.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.003400", - "Timestamp": "2019-10-15T21:50:45.000Z" + "SpotPrice": "0.138600", + "Timestamp": "2024-05-16T10:33:10.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.003400", - "Timestamp": "2019-10-15T21:50:45.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.778000", + "Timestamp": "2024-05-16T10:33:10.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.003400", - "Timestamp": "2019-10-15T21:50:45.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.773000", + "Timestamp": "2024-05-16T10:33:10.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.419400", - "Timestamp": "2019-10-15T21:50:32.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.648000", + "Timestamp": "2024-05-16T10:33:10.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.419400", - "Timestamp": "2019-10-15T21:50:32.000Z" + "SpotPrice": "1.017100", + "Timestamp": "2024-05-16T10:33:10.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.419400", - "Timestamp": "2019-10-15T21:50:32.000Z" + "SpotPrice": "1.040900", + "Timestamp": "2024-05-16T10:33:10.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.798900", - "Timestamp": "2019-10-15T21:50:14.000Z" + "SpotPrice": "1.331300", + "Timestamp": "2024-05-16T10:33:09.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.798900", - "Timestamp": "2019-10-15T21:50:14.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.326300", + "Timestamp": "2024-05-16T10:33:09.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.798900", - "Timestamp": "2019-10-15T21:50:14.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.201300", + "Timestamp": "2024-05-16T10:33:09.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.668900", - "Timestamp": "2019-10-15T21:50:14.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.840100", + "Timestamp": "2024-05-16T10:33:09.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.668900", - "Timestamp": "2019-10-15T21:50:14.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.835100", + "Timestamp": "2024-05-16T10:33:09.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5zn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.668900", - "Timestamp": "2019-10-15T21:50:14.000Z" + "SpotPrice": "1.710100", + "Timestamp": "2024-05-16T10:33:09.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.996100", - "Timestamp": "2019-10-15T21:50:05.000Z" + "SpotPrice": "0.528400", + "Timestamp": "2024-05-16T10:33:09.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.996100", - "Timestamp": "2019-10-15T21:50:05.000Z" + "SpotPrice": "6.865700", + "Timestamp": "2024-05-16T10:33:08.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.996100", - "Timestamp": "2019-10-15T21:50:05.000Z" + "SpotPrice": "3.336200", + "Timestamp": "2024-05-16T10:33:08.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.631700", - "Timestamp": "2019-10-15T21:49:51.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.539200", + "Timestamp": "2024-05-16T10:33:08.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.501700", - "Timestamp": "2019-10-15T21:49:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.531600", + "Timestamp": "2024-05-16T10:33:08.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.998100", - "Timestamp": "2019-10-15T21:49:46.000Z" + "SpotPrice": "2.736900", + "Timestamp": "2024-05-16T10:33:08.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.998100", - "Timestamp": "2019-10-15T21:49:46.000Z" + "SpotPrice": "2.201700", + "Timestamp": "2024-05-16T10:33:07.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.998100", - "Timestamp": "2019-10-15T21:49:46.000Z" + "SpotPrice": "0.521400", + "Timestamp": "2024-05-16T10:33:06.000Z" }, { - "AvailabilityZone": "us-east-2b", + "AvailabilityZone": "us-east-1c", "InstanceType": "x1e.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.130800", - "Timestamp": "2019-10-15T21:49:41.000Z" + "SpotPrice": "1.596500", + "Timestamp": "2024-05-16T10:33:06.000Z" }, { - "AvailabilityZone": "us-east-2a", + "AvailabilityZone": "us-east-1c", "InstanceType": "x1e.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.130800", - "Timestamp": "2019-10-15T21:49:41.000Z" + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.566500", + "Timestamp": "2024-05-16T10:33:06.000Z" }, { - "AvailabilityZone": "us-east-2b", + "AvailabilityZone": "us-east-1c", "InstanceType": "x1e.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.000800", - "Timestamp": "2019-10-15T21:49:41.000Z" + "SpotPrice": "1.466500", + "Timestamp": "2024-05-16T10:33:06.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.000800", - "Timestamp": "2019-10-15T21:49:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "vt1.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.461200", + "Timestamp": "2024-05-16T10:33:05.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.736800", - "Timestamp": "2019-10-15T21:49:28.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "vt1.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.431200", + "Timestamp": "2024-05-16T10:33:05.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.736800", - "Timestamp": "2019-10-15T21:49:28.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "vt1.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.331200", + "Timestamp": "2024-05-16T10:33:05.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.288600", - "Timestamp": "2019-10-15T21:47:37.000Z" + "SpotPrice": "2.383800", + "Timestamp": "2024-05-16T10:33:05.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.158600", - "Timestamp": "2019-10-15T21:47:37.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.378800", + "Timestamp": "2024-05-16T10:33:05.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.080000", - "Timestamp": "2019-10-15T21:45:12.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.253800", + "Timestamp": "2024-05-16T10:33:05.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.020000", - "Timestamp": "2019-10-15T21:45:12.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.541200", + "Timestamp": "2024-05-16T10:33:05.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.303600", - "Timestamp": "2019-10-15T21:41:38.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.511200", + "Timestamp": "2024-05-16T10:33:05.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.303600", - "Timestamp": "2019-10-15T21:41:38.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.411200", + "Timestamp": "2024-05-16T10:33:05.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.303600", - "Timestamp": "2019-10-15T21:41:38.000Z" - }, - { - "AvailabilityZone": "us-east-2c", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.173600", - "Timestamp": "2019-10-15T21:41:38.000Z" + "SpotPrice": "1.378900", + "Timestamp": "2024-05-16T10:33:05.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.173600", - "Timestamp": "2019-10-15T21:41:38.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.373900", + "Timestamp": "2024-05-16T10:33:05.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.173600", - "Timestamp": "2019-10-15T21:41:38.000Z" + "SpotPrice": "1.248900", + "Timestamp": "2024-05-16T10:33:05.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.metal", "ProductDescription": "Windows", - "SpotPrice": "3.381600", - "Timestamp": "2019-10-15T21:41:38.000Z" + "SpotPrice": "7.449200", + "Timestamp": "2024-05-16T10:33:04.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.381600", - "Timestamp": "2019-10-15T21:41:38.000Z" + "SpotPrice": "7.288900", + "Timestamp": "2024-05-16T10:33:03.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.381600", - "Timestamp": "2019-10-15T21:41:38.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.029600", + "Timestamp": "2024-05-16T10:33:03.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.305300", - "Timestamp": "2019-10-15T21:39:31.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.024600", + "Timestamp": "2024-05-16T10:33:03.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.175300", - "Timestamp": "2019-10-15T21:39:31.000Z" + "SpotPrice": "4.899600", + "Timestamp": "2024-05-16T10:33:03.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.883800", - "Timestamp": "2019-10-15T21:39:09.000Z" + "SpotPrice": "1.182700", + "Timestamp": "2024-05-16T10:33:03.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.753800", - "Timestamp": "2019-10-15T21:39:09.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.177700", + "Timestamp": "2024-05-16T10:33:03.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.287100", - "Timestamp": "2019-10-15T21:39:08.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.052700", + "Timestamp": "2024-05-16T10:33:03.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.micro", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.065300", - "Timestamp": "2019-10-15T21:38:40.000Z" + "SpotPrice": "0.064600", + "Timestamp": "2024-05-16T10:33:03.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004600", + "Timestamp": "2024-05-16T10:33:03.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.micro", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.935300", - "Timestamp": "2019-10-15T21:38:40.000Z" + "SpotPrice": "0.004600", + "Timestamp": "2024-05-16T10:33:03.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.801300", - "Timestamp": "2019-10-15T21:38:38.000Z" + "SpotPrice": "3.710100", + "Timestamp": "2024-05-16T10:33:02.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.705100", + "Timestamp": "2024-05-16T10:33:02.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.671300", - "Timestamp": "2019-10-15T21:38:38.000Z" + "SpotPrice": "3.580100", + "Timestamp": "2024-05-16T10:33:02.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iezn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.620300", - "Timestamp": "2019-10-15T21:38:36.000Z" + "SpotPrice": "0.804300", + "Timestamp": "2024-05-16T10:33:02.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.799300", + "Timestamp": "2024-05-16T10:33:02.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iezn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.490300", - "Timestamp": "2019-10-15T21:38:36.000Z" + "SpotPrice": "0.674300", + "Timestamp": "2024-05-16T10:33:02.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.297200", - "Timestamp": "2019-10-15T21:38:23.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.663600", + "Timestamp": "2024-05-16T10:33:02.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.452000", - "Timestamp": "2019-10-15T21:38:23.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.066200", + "Timestamp": "2024-05-16T10:33:01.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.108200", + "Timestamp": "2024-05-16T10:33:01.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.297200", - "Timestamp": "2019-10-15T21:38:23.000Z" + "SpotPrice": "0.902700", + "Timestamp": "2024-05-16T10:33:01.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.167200", - "Timestamp": "2019-10-15T21:38:23.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.897700", + "Timestamp": "2024-05-16T10:33:01.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.322000", - "Timestamp": "2019-10-15T21:38:23.000Z" + "SpotPrice": "0.772700", + "Timestamp": "2024-05-16T10:33:01.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.167200", - "Timestamp": "2019-10-15T21:38:23.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.874400", + "Timestamp": "2024-05-16T10:33:00.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-15T21:33:36.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.869400", + "Timestamp": "2024-05-16T10:33:00.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-15T21:33:36.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.744400", + "Timestamp": "2024-05-16T10:33:00.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c4.large", "ProductDescription": "Windows", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-15T21:33:36.000Z" + "SpotPrice": "0.134700", + "Timestamp": "2024-05-16T10:33:00.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062800", - "Timestamp": "2019-10-15T21:32:42.000Z" + "SpotPrice": "1.331100", + "Timestamp": "2024-05-16T10:32:59.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3a.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062800", - "Timestamp": "2019-10-15T21:32:42.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.326100", + "Timestamp": "2024-05-16T10:32:59.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3a.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062800", - "Timestamp": "2019-10-15T21:32:42.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.201100", + "Timestamp": "2024-05-16T10:32:59.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002800", - "Timestamp": "2019-10-15T21:32:42.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.288000", + "Timestamp": "2024-05-16T10:32:59.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002800", - "Timestamp": "2019-10-15T21:32:42.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.128400", + "Timestamp": "2024-05-16T10:32:59.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002800", - "Timestamp": "2019-10-15T21:32:42.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.144100", + "Timestamp": "2024-05-16T10:32:59.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101300", - "Timestamp": "2019-10-15T21:31:09.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.439400", + "Timestamp": "2024-05-16T10:32:59.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041300", - "Timestamp": "2019-10-15T21:31:09.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.207600", + "Timestamp": "2024-05-16T10:32:58.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r4.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.214800", - "Timestamp": "2019-10-15T21:30:38.000Z" + "SpotPrice": "1.119400", + "Timestamp": "2024-05-16T10:32:57.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.089400", + "Timestamp": "2024-05-16T10:32:57.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r4.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.084800", - "Timestamp": "2019-10-15T21:30:38.000Z" + "SpotPrice": "0.989400", + "Timestamp": "2024-05-16T10:32:57.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5n.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.209800", - "Timestamp": "2019-10-15T21:29:09.000Z" + "SpotPrice": "0.645400", + "Timestamp": "2024-05-16T10:32:57.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.079800", - "Timestamp": "2019-10-15T21:29:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.640400", + "Timestamp": "2024-05-16T10:32:57.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.209800", - "Timestamp": "2019-10-15T21:25:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.515400", + "Timestamp": "2024-05-16T10:32:57.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.209800", - "Timestamp": "2019-10-15T21:25:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.349000", + "Timestamp": "2024-05-16T10:32:56.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.209800", - "Timestamp": "2019-10-15T21:25:41.000Z" - }, - { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.079800", - "Timestamp": "2019-10-15T21:25:41.000Z" + "SpotPrice": "0.868300", + "Timestamp": "2024-05-16T10:32:56.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.079800", - "Timestamp": "2019-10-15T21:25:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.863300", + "Timestamp": "2024-05-16T10:32:56.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.079800", - "Timestamp": "2019-10-15T21:25:41.000Z" + "SpotPrice": "0.738300", + "Timestamp": "2024-05-16T10:32:56.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.447800", - "Timestamp": "2019-10-15T21:25:37.000Z" + "SpotPrice": "0.542700", + "Timestamp": "2024-05-16T10:32:54.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.large", "ProductDescription": "Windows", - "SpotPrice": "0.447800", - "Timestamp": "2019-10-15T21:25:37.000Z" + "SpotPrice": "0.128300", + "Timestamp": "2024-05-16T10:32:54.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.large", "ProductDescription": "Windows", - "SpotPrice": "0.447800", - "Timestamp": "2019-10-15T21:25:37.000Z" + "SpotPrice": "0.134900", + "Timestamp": "2024-05-16T10:32:54.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "x1e.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.large", "ProductDescription": "Windows", - "SpotPrice": "9.802800", - "Timestamp": "2019-10-15T21:22:57.000Z" + "SpotPrice": "0.133100", + "Timestamp": "2024-05-16T10:32:54.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3a.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.6xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.050200", - "Timestamp": "2019-10-15T21:22:36.000Z" + "SpotPrice": "2.052700", + "Timestamp": "2024-05-16T10:32:53.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.050200", - "Timestamp": "2019-10-15T21:22:36.000Z" + "SpotPrice": "3.179300", + "Timestamp": "2024-05-16T10:32:53.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3a.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4ad.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.050200", - "Timestamp": "2019-10-15T21:22:36.000Z" + "SpotPrice": "1.111000", + "Timestamp": "2024-05-16T10:32:53.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "g4dn.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.217800", - "Timestamp": "2019-10-15T21:22:28.000Z" + "SpotPrice": "0.847500", + "Timestamp": "2024-05-16T10:32:53.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.217800", - "Timestamp": "2019-10-15T21:22:28.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.842500", + "Timestamp": "2024-05-16T10:32:53.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.217800", - "Timestamp": "2019-10-15T21:22:28.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.717500", + "Timestamp": "2024-05-16T10:32:53.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.157800", - "Timestamp": "2019-10-15T21:22:28.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.173800", + "Timestamp": "2024-05-16T10:32:53.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.157800", - "Timestamp": "2019-10-15T21:22:28.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.168800", + "Timestamp": "2024-05-16T10:32:53.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "g4dn.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.157800", - "Timestamp": "2019-10-15T21:22:28.000Z" + "SpotPrice": "1.043800", + "Timestamp": "2024-05-16T10:32:53.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r4.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.112000", - "Timestamp": "2019-10-15T21:22:15.000Z" + "SpotPrice": "2.354100", + "Timestamp": "2024-05-16T10:32:52.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c4.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.112000", - "Timestamp": "2019-10-15T21:22:15.000Z" + "SpotPrice": "0.270600", + "Timestamp": "2024-05-16T10:32:52.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3en.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.112000", - "Timestamp": "2019-10-15T21:22:15.000Z" + "SpotPrice": "0.788800", + "Timestamp": "2024-05-16T10:32:52.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3a.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t4g.small", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.082600", - "Timestamp": "2019-10-15T21:22:13.000Z" + "SpotPrice": "0.068000", + "Timestamp": "2024-05-16T10:32:52.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.082600", - "Timestamp": "2019-10-15T21:22:13.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039300", + "Timestamp": "2024-05-16T10:32:52.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.082600", - "Timestamp": "2019-10-15T21:22:13.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008000", + "Timestamp": "2024-05-16T10:32:52.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.022600", - "Timestamp": "2019-10-15T21:22:13.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.320500", + "Timestamp": "2024-05-16T10:32:52.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.022600", - "Timestamp": "2019-10-15T21:22:13.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "h1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.475000", + "Timestamp": "2024-05-16T10:32:52.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.022600", - "Timestamp": "2019-10-15T21:22:13.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "h1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.445000", + "Timestamp": "2024-05-16T10:32:52.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.612900", - "Timestamp": "2019-10-15T21:22:13.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "h1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.345000", + "Timestamp": "2024-05-16T10:32:52.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.612900", - "Timestamp": "2019-10-15T21:22:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.273100", + "Timestamp": "2024-05-16T10:32:51.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.612900", - "Timestamp": "2019-10-15T21:22:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.268100", + "Timestamp": "2024-05-16T10:32:51.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.080000", - "Timestamp": "2019-10-15T21:22:12.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.143100", + "Timestamp": "2024-05-16T10:32:51.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.080000", - "Timestamp": "2019-10-15T21:22:12.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.598300", + "Timestamp": "2024-05-16T10:32:51.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.080000", - "Timestamp": "2019-10-15T21:22:12.000Z" + "SpotPrice": "2.314700", + "Timestamp": "2024-05-16T10:32:51.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.020000", - "Timestamp": "2019-10-15T21:22:12.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.309700", + "Timestamp": "2024-05-16T10:32:51.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.020000", - "Timestamp": "2019-10-15T21:22:12.000Z" + "SpotPrice": "2.184700", + "Timestamp": "2024-05-16T10:32:51.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.020000", - "Timestamp": "2019-10-15T21:22:12.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.539900", + "Timestamp": "2024-05-16T10:32:51.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.631700", - "Timestamp": "2019-10-15T21:22:07.000Z" + "SpotPrice": "0.334900", + "Timestamp": "2024-05-16T10:32:50.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.631700", - "Timestamp": "2019-10-15T21:22:07.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.329900", + "Timestamp": "2024-05-16T10:32:50.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.501700", - "Timestamp": "2019-10-15T21:22:07.000Z" + "SpotPrice": "0.204900", + "Timestamp": "2024-05-16T10:32:50.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.501700", - "Timestamp": "2019-10-15T21:22:07.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171300", + "Timestamp": "2024-05-16T10:32:49.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.001300", - "Timestamp": "2019-10-15T21:22:07.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167600", + "Timestamp": "2024-05-16T10:32:49.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.871300", - "Timestamp": "2019-10-15T21:22:07.000Z" + "SpotPrice": "0.111300", + "Timestamp": "2024-05-16T10:32:49.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "x1e.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.947200", - "Timestamp": "2019-10-15T21:21:57.000Z" + "SpotPrice": "1.011900", + "Timestamp": "2024-05-16T10:32:49.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.118700", - "Timestamp": "2019-10-15T21:21:54.000Z" + "SpotPrice": "1.154400", + "Timestamp": "2024-05-16T10:32:49.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.118700", - "Timestamp": "2019-10-15T21:21:54.000Z" + "SpotPrice": "1.158200", + "Timestamp": "2024-05-16T10:32:49.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.118700", - "Timestamp": "2019-10-15T21:21:54.000Z" + "SpotPrice": "1.251200", + "Timestamp": "2024-05-16T10:32:49.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.105100", - "Timestamp": "2019-10-15T21:21:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.813400", + "Timestamp": "2024-05-16T10:32:49.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.105100", - "Timestamp": "2019-10-15T21:21:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.196700", + "Timestamp": "2024-05-16T10:32:48.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.105100", - "Timestamp": "2019-10-15T21:21:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.320500", + "Timestamp": "2024-05-16T10:32:48.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.045100", - "Timestamp": "2019-10-15T21:21:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.324400", + "Timestamp": "2024-05-16T10:32:48.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.045100", - "Timestamp": "2019-10-15T21:21:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.478200", + "Timestamp": "2024-05-16T10:32:48.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.045100", - "Timestamp": "2019-10-15T21:21:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.280000", + "Timestamp": "2024-05-16T10:32:48.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.328200", - "Timestamp": "2019-10-15T21:21:46.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.320000", + "Timestamp": "2024-05-16T10:32:48.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.328200", - "Timestamp": "2019-10-15T21:21:46.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.220000", + "Timestamp": "2024-05-16T10:32:48.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i-flex.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.328200", - "Timestamp": "2019-10-15T21:21:46.000Z" + "SpotPrice": "2.088500", + "Timestamp": "2024-05-16T10:32:48.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "x1e.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.133200", - "Timestamp": "2019-10-15T21:21:46.000Z" + "SpotPrice": "0.124200", + "Timestamp": "2024-05-16T10:32:48.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.003200", - "Timestamp": "2019-10-15T21:21:46.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120200", + "Timestamp": "2024-05-16T10:32:48.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-15T21:21:43.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064200", + "Timestamp": "2024-05-16T10:32:48.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-15T21:21:43.000Z" + "SpotPrice": "0.462500", + "Timestamp": "2024-05-16T10:32:47.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-15T21:21:43.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.457500", + "Timestamp": "2024-05-16T10:32:47.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041800", - "Timestamp": "2019-10-15T21:21:43.000Z" + "SpotPrice": "0.332500", + "Timestamp": "2024-05-16T10:32:47.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041800", - "Timestamp": "2019-10-15T21:21:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.152900", + "Timestamp": "2024-05-16T10:32:47.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.147900", + "Timestamp": "2024-05-16T10:32:47.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041800", - "Timestamp": "2019-10-15T21:21:43.000Z" + "SpotPrice": "1.022900", + "Timestamp": "2024-05-16T10:32:47.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.225800", - "Timestamp": "2019-10-15T21:21:39.000Z" + "SpotPrice": "0.270000", + "Timestamp": "2024-05-16T10:32:46.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.225800", - "Timestamp": "2019-10-15T21:21:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.425000", + "Timestamp": "2024-05-16T10:32:46.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.225800", - "Timestamp": "2019-10-15T21:21:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.420000", + "Timestamp": "2024-05-16T10:32:46.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.428000", - "Timestamp": "2019-10-15T21:21:37.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.295000", + "Timestamp": "2024-05-16T10:32:46.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.large", "ProductDescription": "Windows", - "SpotPrice": "1.286000", - "Timestamp": "2019-10-15T21:21:37.000Z" + "SpotPrice": "0.130700", + "Timestamp": "2024-05-16T10:32:45.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.286000", - "Timestamp": "2019-10-15T21:21:37.000Z" + "SpotPrice": "2.269300", + "Timestamp": "2024-05-16T10:32:45.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.757200", - "Timestamp": "2019-10-15T21:20:54.000Z" + "SpotPrice": "0.808800", + "Timestamp": "2024-05-16T10:32:45.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.757200", - "Timestamp": "2019-10-15T21:20:54.000Z" + "SpotPrice": "0.814300", + "Timestamp": "2024-05-16T10:32:45.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.757200", - "Timestamp": "2019-10-15T21:20:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.803800", + "Timestamp": "2024-05-16T10:32:45.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.627200", - "Timestamp": "2019-10-15T21:20:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.809300", + "Timestamp": "2024-05-16T10:32:45.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.627200", - "Timestamp": "2019-10-15T21:20:54.000Z" + "SpotPrice": "0.678800", + "Timestamp": "2024-05-16T10:32:45.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.627200", - "Timestamp": "2019-10-15T21:20:54.000Z" + "SpotPrice": "0.684300", + "Timestamp": "2024-05-16T10:32:45.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.297200", - "Timestamp": "2019-10-15T21:20:43.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.359000", + "Timestamp": "2024-05-16T10:32:45.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5dn.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.297200", - "Timestamp": "2019-10-15T21:20:43.000Z" + "SpotPrice": "1.155500", + "Timestamp": "2024-05-16T10:32:44.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.297200", - "Timestamp": "2019-10-15T21:20:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.150500", + "Timestamp": "2024-05-16T10:32:44.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5dn.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.167200", - "Timestamp": "2019-10-15T21:20:43.000Z" + "SpotPrice": "1.025500", + "Timestamp": "2024-05-16T10:32:44.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.167200", - "Timestamp": "2019-10-15T21:20:43.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092100", + "Timestamp": "2024-05-16T10:32:44.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.167200", - "Timestamp": "2019-10-15T21:20:43.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088400", + "Timestamp": "2024-05-16T10:32:44.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.464500", - "Timestamp": "2019-10-15T21:20:31.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032100", + "Timestamp": "2024-05-16T10:32:44.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4ad.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.464500", - "Timestamp": "2019-10-15T21:20:31.000Z" + "SpotPrice": "0.988100", + "Timestamp": "2024-05-16T10:32:44.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.464500", - "Timestamp": "2019-10-15T21:20:31.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.983100", + "Timestamp": "2024-05-16T10:32:44.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4ad.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.334500", - "Timestamp": "2019-10-15T21:20:31.000Z" + "SpotPrice": "0.858100", + "Timestamp": "2024-05-16T10:32:44.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.334500", - "Timestamp": "2019-10-15T21:20:31.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.484500", + "Timestamp": "2024-05-16T10:32:43.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.479500", + "Timestamp": "2024-05-16T10:32:43.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.334500", - "Timestamp": "2019-10-15T21:20:31.000Z" + "SpotPrice": "0.354500", + "Timestamp": "2024-05-16T10:32:43.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5dn.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.metal", "ProductDescription": "Windows", - "SpotPrice": "0.903200", - "Timestamp": "2019-10-15T21:20:28.000Z" + "SpotPrice": "13.539800", + "Timestamp": "2024-05-16T10:32:43.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.903200", - "Timestamp": "2019-10-15T21:20:28.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.006800", + "Timestamp": "2024-05-16T10:32:43.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows", - "SpotPrice": "9.889400", - "Timestamp": "2019-10-15T21:20:24.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.001800", + "Timestamp": "2024-05-16T10:32:43.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows", - "SpotPrice": "9.889400", - "Timestamp": "2019-10-15T21:20:24.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.876800", + "Timestamp": "2024-05-16T10:32:43.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "9.889400", - "Timestamp": "2019-10-15T21:20:24.000Z" + "SpotPrice": "0.585500", + "Timestamp": "2024-05-16T10:32:43.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.888000", - "Timestamp": "2019-10-15T21:20:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.208700", + "Timestamp": "2024-05-16T10:32:43.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.888000", - "Timestamp": "2019-10-15T21:20:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.178700", + "Timestamp": "2024-05-16T10:32:43.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.078700", + "Timestamp": "2024-05-16T10:32:43.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.888000", - "Timestamp": "2019-10-15T21:20:18.000Z" + "SpotPrice": "12.560700", + "Timestamp": "2024-05-16T10:32:43.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.190000", - "Timestamp": "2019-10-15T21:20:14.000Z" + "SpotPrice": "2.578300", + "Timestamp": "2024-05-16T10:32:43.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.573300", + "Timestamp": "2024-05-16T10:32:43.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.060000", - "Timestamp": "2019-10-15T21:20:14.000Z" + "SpotPrice": "2.448300", + "Timestamp": "2024-05-16T10:32:43.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.087800", - "Timestamp": "2019-10-15T21:20:11.000Z" + "SpotPrice": "0.353400", + "Timestamp": "2024-05-16T10:32:43.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323400", + "Timestamp": "2024-05-16T10:32:43.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.957800", - "Timestamp": "2019-10-15T21:20:11.000Z" + "SpotPrice": "0.223400", + "Timestamp": "2024-05-16T10:32:43.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.835200", - "Timestamp": "2019-10-15T21:20:06.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.085700", + "Timestamp": "2024-05-16T10:32:42.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.835200", - "Timestamp": "2019-10-15T21:20:06.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.080700", + "Timestamp": "2024-05-16T10:32:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.835200", - "Timestamp": "2019-10-15T21:20:06.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.955700", + "Timestamp": "2024-05-16T10:32:42.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.440400", - "Timestamp": "2019-10-15T21:20:02.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.280400", + "Timestamp": "2024-05-16T10:32:42.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.440400", - "Timestamp": "2019-10-15T21:20:02.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.275400", + "Timestamp": "2024-05-16T10:32:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.440400", - "Timestamp": "2019-10-15T21:20:02.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.150400", + "Timestamp": "2024-05-16T10:32:42.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.131400", - "Timestamp": "2019-10-15T21:20:00.000Z" + "SpotPrice": "0.226700", + "Timestamp": "2024-05-16T10:32:42.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.131400", - "Timestamp": "2019-10-15T21:20:00.000Z" + "SpotPrice": "0.207700", + "Timestamp": "2024-05-16T10:32:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.131400", - "Timestamp": "2019-10-15T21:20:00.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.223000", + "Timestamp": "2024-05-16T10:32:42.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.001400", - "Timestamp": "2019-10-15T21:20:00.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.204000", + "Timestamp": "2024-05-16T10:32:42.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.001400", - "Timestamp": "2019-10-15T21:20:00.000Z" + "SpotPrice": "0.166700", + "Timestamp": "2024-05-16T10:32:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.001400", - "Timestamp": "2019-10-15T21:20:00.000Z" + "SpotPrice": "0.147700", + "Timestamp": "2024-05-16T10:32:42.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.315900", - "Timestamp": "2019-10-15T21:19:59.000Z" + "SpotPrice": "0.592500", + "Timestamp": "2024-05-16T10:32:41.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.315900", - "Timestamp": "2019-10-15T21:19:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.562500", + "Timestamp": "2024-05-16T10:32:41.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.462500", + "Timestamp": "2024-05-16T10:32:41.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.315900", - "Timestamp": "2019-10-15T21:19:59.000Z" + "SpotPrice": "1.656800", + "Timestamp": "2024-05-16T10:32:41.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.255900", - "Timestamp": "2019-10-15T21:19:59.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.651800", + "Timestamp": "2024-05-16T10:32:41.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.255900", - "Timestamp": "2019-10-15T21:19:59.000Z" + "SpotPrice": "1.526800", + "Timestamp": "2024-05-16T10:32:41.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.255900", - "Timestamp": "2019-10-15T21:19:59.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.857900", + "Timestamp": "2024-05-16T10:32:40.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.373800", - "Timestamp": "2019-10-15T21:19:38.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.852900", + "Timestamp": "2024-05-16T10:32:40.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.727900", + "Timestamp": "2024-05-16T10:32:40.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m1.large", "ProductDescription": "Windows", - "SpotPrice": "5.373800", - "Timestamp": "2019-10-15T21:19:38.000Z" + "SpotPrice": "0.194900", + "Timestamp": "2024-05-16T10:32:40.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.373800", - "Timestamp": "2019-10-15T21:19:38.000Z" + "SpotPrice": "4.764500", + "Timestamp": "2024-05-16T10:32:40.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.798900", - "Timestamp": "2019-10-15T21:19:35.000Z" + "SpotPrice": "0.097500", + "Timestamp": "2024-05-16T10:32:40.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.798900", - "Timestamp": "2019-10-15T21:19:35.000Z" + "SpotPrice": "0.099700", + "Timestamp": "2024-05-16T10:32:40.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.798900", - "Timestamp": "2019-10-15T21:19:35.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093800", + "Timestamp": "2024-05-16T10:32:40.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.668900", - "Timestamp": "2019-10-15T21:19:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T10:32:40.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.668900", - "Timestamp": "2019-10-15T21:19:35.000Z" + "SpotPrice": "0.037500", + "Timestamp": "2024-05-16T10:32:40.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.668900", - "Timestamp": "2019-10-15T21:19:35.000Z" + "SpotPrice": "0.039700", + "Timestamp": "2024-05-16T10:32:40.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.806500", - "Timestamp": "2019-10-15T21:19:23.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.815000", + "Timestamp": "2024-05-16T10:32:39.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.806500", - "Timestamp": "2019-10-15T21:19:23.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.810000", + "Timestamp": "2024-05-16T10:32:39.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.806500", - "Timestamp": "2019-10-15T21:19:23.000Z" - }, - { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.282000", - "Timestamp": "2019-10-15T21:19:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.685000", + "Timestamp": "2024-05-16T10:32:39.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.282000", - "Timestamp": "2019-10-15T21:19:19.000Z" + "SpotPrice": "0.143000", + "Timestamp": "2024-05-16T10:32:39.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.152000", - "Timestamp": "2019-10-15T21:19:19.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183000", + "Timestamp": "2024-05-16T10:32:39.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t2.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.152000", - "Timestamp": "2019-10-15T21:19:19.000Z" + "SpotPrice": "0.083000", + "Timestamp": "2024-05-16T10:32:39.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.375900", - "Timestamp": "2019-10-15T21:19:10.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127800", + "Timestamp": "2024-05-16T10:32:39.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.375900", - "Timestamp": "2019-10-15T21:19:10.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124100", + "Timestamp": "2024-05-16T10:32:39.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.375900", - "Timestamp": "2019-10-15T21:19:10.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067800", + "Timestamp": "2024-05-16T10:32:39.000Z" }, { - "AvailabilityZone": "us-east-2c", + "AvailabilityZone": "us-east-1f", "InstanceType": "i3en.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.384400", - "Timestamp": "2019-10-15T21:15:32.000Z" + "ProductDescription": "Windows", + "SpotPrice": "8.675100", + "Timestamp": "2024-05-16T10:32:39.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3en.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.384400", - "Timestamp": "2019-10-15T21:15:32.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.067900", + "Timestamp": "2024-05-16T10:32:38.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3en.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.384400", - "Timestamp": "2019-10-15T21:15:32.000Z" + "SpotPrice": "1.523100", + "Timestamp": "2024-05-16T10:32:38.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3en.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.254400", - "Timestamp": "2019-10-15T21:15:32.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.518100", + "Timestamp": "2024-05-16T10:32:38.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3en.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.254400", - "Timestamp": "2019-10-15T21:15:32.000Z" + "SpotPrice": "1.393100", + "Timestamp": "2024-05-16T10:32:38.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3en.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.254400", - "Timestamp": "2019-10-15T21:15:32.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.570500", + "Timestamp": "2024-05-16T10:32:37.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.812800", - "Timestamp": "2019-10-15T21:14:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.565500", + "Timestamp": "2024-05-16T10:32:37.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.682800", - "Timestamp": "2019-10-15T21:14:25.000Z" + "SpotPrice": "2.440500", + "Timestamp": "2024-05-16T10:32:37.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m3.xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.686900", - "Timestamp": "2019-10-15T21:14:24.000Z" + "SpotPrice": "0.367600", + "Timestamp": "2024-05-16T10:32:37.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.686900", - "Timestamp": "2019-10-15T21:14:24.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132000", + "Timestamp": "2024-05-16T10:32:36.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.686900", - "Timestamp": "2019-10-15T21:14:24.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128300", + "Timestamp": "2024-05-16T10:32:36.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.079500", - "Timestamp": "2019-10-15T21:14:06.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072000", + "Timestamp": "2024-05-16T10:32:36.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.019500", - "Timestamp": "2019-10-15T21:14:06.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184900", + "Timestamp": "2024-05-16T10:32:36.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.222000", - "Timestamp": "2019-10-15T21:13:58.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181200", + "Timestamp": "2024-05-16T10:32:36.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.222000", - "Timestamp": "2019-10-15T21:13:58.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124900", + "Timestamp": "2024-05-16T10:32:36.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.222000", - "Timestamp": "2019-10-15T21:13:58.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.698100", + "Timestamp": "2024-05-16T10:32:36.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.075200", - "Timestamp": "2019-10-15T21:13:58.000Z" + "SpotPrice": "1.709300", + "Timestamp": "2024-05-16T10:32:36.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.945200", - "Timestamp": "2019-10-15T21:13:58.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.693100", + "Timestamp": "2024-05-16T10:32:36.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3en.metal", - "ProductDescription": "Windows", - "SpotPrice": "7.670400", - "Timestamp": "2019-10-15T21:13:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.704300", + "Timestamp": "2024-05-16T10:32:36.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3en.metal", - "ProductDescription": "Windows", - "SpotPrice": "7.670400", - "Timestamp": "2019-10-15T21:13:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.568100", + "Timestamp": "2024-05-16T10:32:36.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3en.metal", - "ProductDescription": "Windows", - "SpotPrice": "7.670400", - "Timestamp": "2019-10-15T21:13:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.579300", + "Timestamp": "2024-05-16T10:32:36.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "x1e.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "6.981600", - "Timestamp": "2019-10-15T21:13:46.000Z" + "SpotPrice": "0.101300", + "Timestamp": "2024-05-16T10:32:36.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "6.851600", - "Timestamp": "2019-10-15T21:13:46.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097600", + "Timestamp": "2024-05-16T10:32:36.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.549000", - "Timestamp": "2019-10-15T21:13:38.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041300", + "Timestamp": "2024-05-16T10:32:36.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.620500", - "Timestamp": "2019-10-15T21:13:35.000Z" + "SpotPrice": "0.570800", + "Timestamp": "2024-05-16T10:32:36.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.490500", - "Timestamp": "2019-10-15T21:13:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.565800", + "Timestamp": "2024-05-16T10:32:36.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.312000", - "Timestamp": "2019-10-15T21:13:27.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.440800", + "Timestamp": "2024-05-16T10:32:36.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "7.504000", - "Timestamp": "2019-10-15T21:13:27.000Z" + "SpotPrice": "4.972700", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.312000", - "Timestamp": "2019-10-15T21:13:27.000Z" + "SpotPrice": "4.878200", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.709700", - "Timestamp": "2019-10-15T21:13:26.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.206300", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.709700", - "Timestamp": "2019-10-15T21:13:26.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.202300", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.709700", - "Timestamp": "2019-10-15T21:13:26.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146300", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.498000", - "Timestamp": "2019-10-15T21:13:22.000Z" + "SpotPrice": "0.131600", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.690000", - "Timestamp": "2019-10-15T21:13:22.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127900", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071600", + "Timestamp": "2024-05-16T10:32:35.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.498000", - "Timestamp": "2019-10-15T21:13:22.000Z" + "SpotPrice": "0.816700", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.368000", - "Timestamp": "2019-10-15T21:13:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.811700", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.560000", - "Timestamp": "2019-10-15T21:13:22.000Z" + "SpotPrice": "0.686700", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.368000", - "Timestamp": "2019-10-15T21:13:22.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.001100", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t2.small", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.289600", - "Timestamp": "2019-10-15T21:12:59.000Z" + "SpotPrice": "0.070800", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t2.small", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.289600", - "Timestamp": "2019-10-15T21:12:59.000Z" + "SpotPrice": "0.070000", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.289600", - "Timestamp": "2019-10-15T21:12:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040800", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.159600", - "Timestamp": "2019-10-15T21:12:59.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040000", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t2.small", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.159600", - "Timestamp": "2019-10-15T21:12:59.000Z" + "SpotPrice": "0.010800", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t2.small", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.159600", - "Timestamp": "2019-10-15T21:12:59.000Z" + "SpotPrice": "0.010000", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.143400", - "Timestamp": "2019-10-15T21:12:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084400", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.143400", - "Timestamp": "2019-10-15T21:12:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080700", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.143400", - "Timestamp": "2019-10-15T21:12:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024400", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.895600", - "Timestamp": "2019-10-15T21:12:37.000Z" + "SpotPrice": "0.522600", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.895600", - "Timestamp": "2019-10-15T21:12:37.000Z" + "SpotPrice": "0.531700", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.895600", - "Timestamp": "2019-10-15T21:12:37.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169900", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.098000", - "Timestamp": "2019-10-15T21:12:35.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165900", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.098000", - "Timestamp": "2019-10-15T21:12:35.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.098000", - "Timestamp": "2019-10-15T21:12:35.000Z" + "SpotPrice": "0.486500", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.038000", - "Timestamp": "2019-10-15T21:12:35.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.456500", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.038000", - "Timestamp": "2019-10-15T21:12:35.000Z" + "SpotPrice": "0.356500", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.038000", - "Timestamp": "2019-10-15T21:12:35.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.124700", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.631700", - "Timestamp": "2019-10-15T21:12:22.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.119700", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.501700", - "Timestamp": "2019-10-15T21:12:22.000Z" + "SpotPrice": "1.994700", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.555200", - "Timestamp": "2019-10-15T21:12:08.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.000800", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.555200", - "Timestamp": "2019-10-15T21:12:08.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.995800", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.555200", - "Timestamp": "2019-10-15T21:12:08.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.870800", + "Timestamp": "2024-05-16T10:32:35.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5dn.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.768500", - "Timestamp": "2019-10-15T21:11:37.000Z" + "SpotPrice": "0.144200", + "Timestamp": "2024-05-16T10:32:34.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5dn.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140200", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.638500", - "Timestamp": "2019-10-15T21:11:37.000Z" + "SpotPrice": "0.084200", + "Timestamp": "2024-05-16T10:32:34.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.176000", - "Timestamp": "2019-10-15T21:11:03.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.583400", + "Timestamp": "2024-05-16T10:32:34.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.176000", - "Timestamp": "2019-10-15T21:11:03.000Z" + "SpotPrice": "0.116100", + "Timestamp": "2024-05-16T10:32:34.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.046000", - "Timestamp": "2019-10-15T21:11:03.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-16T10:32:34.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.046000", - "Timestamp": "2019-10-15T21:11:03.000Z" + "SpotPrice": "0.056100", + "Timestamp": "2024-05-16T10:32:34.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.373800", - "Timestamp": "2019-10-15T21:10:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.589200", + "Timestamp": "2024-05-16T10:32:34.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.806500", - "Timestamp": "2019-10-15T21:10:00.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.559200", + "Timestamp": "2024-05-16T10:32:34.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.806500", - "Timestamp": "2019-10-15T21:10:00.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.459200", + "Timestamp": "2024-05-16T10:32:34.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.806500", - "Timestamp": "2019-10-15T21:10:00.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.408700", + "Timestamp": "2024-05-16T10:32:34.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.008000", - "Timestamp": "2019-10-15T21:09:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.403700", + "Timestamp": "2024-05-16T10:32:34.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.008000", - "Timestamp": "2019-10-15T21:09:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.278700", + "Timestamp": "2024-05-16T10:32:34.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.008000", - "Timestamp": "2019-10-15T21:09:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.159500", + "Timestamp": "2024-05-16T10:32:34.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097900", - "Timestamp": "2019-10-15T21:09:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.154500", + "Timestamp": "2024-05-16T10:32:34.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097900", - "Timestamp": "2019-10-15T21:09:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.029500", + "Timestamp": "2024-05-16T10:32:34.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097900", - "Timestamp": "2019-10-15T21:09:49.000Z" + "SpotPrice": "1.676300", + "Timestamp": "2024-05-16T10:32:33.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037900", - "Timestamp": "2019-10-15T21:09:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.671300", + "Timestamp": "2024-05-16T10:32:33.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037900", - "Timestamp": "2019-10-15T21:09:49.000Z" + "SpotPrice": "1.546300", + "Timestamp": "2024-05-16T10:32:33.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037900", - "Timestamp": "2019-10-15T21:09:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.262500", + "Timestamp": "2024-05-16T10:32:33.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.464500", - "Timestamp": "2019-10-15T21:09:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.075400", + "Timestamp": "2024-05-16T10:32:33.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.464500", - "Timestamp": "2019-10-15T21:09:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.100300", + "Timestamp": "2024-05-16T10:32:33.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.464500", - "Timestamp": "2019-10-15T21:09:48.000Z" + "SpotPrice": "1.902100", + "Timestamp": "2024-05-16T10:32:32.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.334500", - "Timestamp": "2019-10-15T21:09:48.000Z" - }, - { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.334500", - "Timestamp": "2019-10-15T21:09:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.897100", + "Timestamp": "2024-05-16T10:32:32.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.334500", - "Timestamp": "2019-10-15T21:09:48.000Z" + "SpotPrice": "1.772100", + "Timestamp": "2024-05-16T10:32:32.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.444000", - "Timestamp": "2019-10-15T21:09:41.000Z" - }, - { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.444000", - "Timestamp": "2019-10-15T21:09:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.480600", + "Timestamp": "2024-05-16T10:32:32.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.444000", - "Timestamp": "2019-10-15T21:09:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.450600", + "Timestamp": "2024-05-16T10:32:32.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.791300", - "Timestamp": "2019-10-15T21:09:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.350600", + "Timestamp": "2024-05-16T10:32:32.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.791300", - "Timestamp": "2019-10-15T21:09:40.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.835000", + "Timestamp": "2024-05-16T10:32:32.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "h1.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.066000", - "Timestamp": "2019-10-15T21:09:38.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.830000", + "Timestamp": "2024-05-16T10:32:32.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "h1.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.066000", - "Timestamp": "2019-10-15T21:09:38.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.705000", + "Timestamp": "2024-05-16T10:32:32.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "h1.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.066000", - "Timestamp": "2019-10-15T21:09:38.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.536600", + "Timestamp": "2024-05-16T10:32:31.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "h1.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.460000", - "Timestamp": "2019-10-15T21:09:38.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.531600", + "Timestamp": "2024-05-16T10:32:31.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "h1.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.460000", - "Timestamp": "2019-10-15T21:09:38.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.406600", + "Timestamp": "2024-05-16T10:32:31.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "h1.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.460000", - "Timestamp": "2019-10-15T21:09:38.000Z" + "SpotPrice": "0.362800", + "Timestamp": "2024-05-16T10:32:31.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "h1.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.330000", - "Timestamp": "2019-10-15T21:09:38.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.357800", + "Timestamp": "2024-05-16T10:32:31.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "h1.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.330000", - "Timestamp": "2019-10-15T21:09:38.000Z" + "SpotPrice": "0.232800", + "Timestamp": "2024-05-16T10:32:31.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "h1.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.330000", - "Timestamp": "2019-10-15T21:09:38.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.048000", + "Timestamp": "2024-05-16T10:32:31.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.133700", - "Timestamp": "2019-10-15T21:09:33.000Z" + "SpotPrice": "0.360600", + "Timestamp": "2024-05-16T10:32:31.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.133700", - "Timestamp": "2019-10-15T21:09:33.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.355600", + "Timestamp": "2024-05-16T10:32:31.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.133700", - "Timestamp": "2019-10-15T21:09:33.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230600", + "Timestamp": "2024-05-16T10:32:31.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.003700", - "Timestamp": "2019-10-15T21:09:33.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114200", + "Timestamp": "2024-05-16T10:32:31.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.003700", - "Timestamp": "2019-10-15T21:09:33.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T10:32:31.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.003700", - "Timestamp": "2019-10-15T21:09:33.000Z" + "SpotPrice": "0.054200", + "Timestamp": "2024-05-16T10:32:31.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.419700", - "Timestamp": "2019-10-15T21:09:31.000Z" + "SpotPrice": "4.950700", + "Timestamp": "2024-05-16T10:32:31.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.419700", - "Timestamp": "2019-10-15T21:09:31.000Z" + "SpotPrice": "3.320700", + "Timestamp": "2024-05-16T10:32:31.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.419700", - "Timestamp": "2019-10-15T21:09:31.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.313000", + "Timestamp": "2024-05-16T10:32:31.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.789600", - "Timestamp": "2019-10-15T21:09:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.283000", + "Timestamp": "2024-05-16T10:32:31.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.789600", - "Timestamp": "2019-10-15T21:09:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.183000", + "Timestamp": "2024-05-16T10:32:31.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.789600", - "Timestamp": "2019-10-15T21:09:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.060700", + "Timestamp": "2024-05-16T10:32:30.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.612900", - "Timestamp": "2019-10-15T21:09:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.055700", + "Timestamp": "2024-05-16T10:32:30.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.612900", - "Timestamp": "2019-10-15T21:09:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.930700", + "Timestamp": "2024-05-16T10:32:30.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.612900", - "Timestamp": "2019-10-15T21:09:26.000Z" + "SpotPrice": "4.238800", + "Timestamp": "2024-05-16T10:32:30.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "12.370000", - "Timestamp": "2019-10-15T21:09:26.000Z" + "SpotPrice": "1.645700", + "Timestamp": "2024-05-16T10:32:30.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.802000", - "Timestamp": "2019-10-15T21:09:26.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.640700", + "Timestamp": "2024-05-16T10:32:30.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "12.240000", - "Timestamp": "2019-10-15T21:09:26.000Z" + "SpotPrice": "1.515700", + "Timestamp": "2024-05-16T10:32:30.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.672000", - "Timestamp": "2019-10-15T21:09:26.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.447200", + "Timestamp": "2024-05-16T10:32:29.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.473600", - "Timestamp": "2019-10-15T21:09:19.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.442200", + "Timestamp": "2024-05-16T10:32:29.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.206000", - "Timestamp": "2019-10-15T21:09:19.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.317200", + "Timestamp": "2024-05-16T10:32:29.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.206000", - "Timestamp": "2019-10-15T21:09:19.000Z" + "SpotPrice": "2.471800", + "Timestamp": "2024-05-16T10:32:29.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.206000", - "Timestamp": "2019-10-15T21:09:19.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.466800", + "Timestamp": "2024-05-16T10:32:29.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.076000", - "Timestamp": "2019-10-15T21:09:19.000Z" + "SpotPrice": "2.341800", + "Timestamp": "2024-05-16T10:32:29.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.076000", - "Timestamp": "2019-10-15T21:09:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.299000", + "Timestamp": "2024-05-16T10:32:28.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.076000", - "Timestamp": "2019-10-15T21:09:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.294000", + "Timestamp": "2024-05-16T10:32:28.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.220200", - "Timestamp": "2019-10-15T21:09:09.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.169000", + "Timestamp": "2024-05-16T10:32:28.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.220200", - "Timestamp": "2019-10-15T21:09:09.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.068000", + "Timestamp": "2024-05-16T10:32:28.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.220200", - "Timestamp": "2019-10-15T21:09:09.000Z" + "SpotPrice": "3.396000", + "Timestamp": "2024-05-16T10:32:28.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.090200", - "Timestamp": "2019-10-15T21:09:09.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.391000", + "Timestamp": "2024-05-16T10:32:28.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.090200", - "Timestamp": "2019-10-15T21:09:09.000Z" + "SpotPrice": "3.266000", + "Timestamp": "2024-05-16T10:32:28.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.090200", - "Timestamp": "2019-10-15T21:09:09.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.793000", + "Timestamp": "2024-05-16T10:32:27.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "13.712000", - "Timestamp": "2019-10-15T21:09:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.788000", + "Timestamp": "2024-05-16T10:32:27.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.144000", - "Timestamp": "2019-10-15T21:09:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.663000", + "Timestamp": "2024-05-16T10:32:27.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.144000", - "Timestamp": "2019-10-15T21:09:03.000Z" + "SpotPrice": "17.074700", + "Timestamp": "2024-05-16T10:32:25.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.593600", - "Timestamp": "2019-10-15T21:08:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142600", + "Timestamp": "2024-05-16T10:32:25.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.593600", - "Timestamp": "2019-10-15T21:08:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138600", + "Timestamp": "2024-05-16T10:32:25.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.593600", - "Timestamp": "2019-10-15T21:08:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082600", + "Timestamp": "2024-05-16T10:32:25.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.798900", - "Timestamp": "2019-10-15T21:08:51.000Z" + "SpotPrice": "1.904100", + "Timestamp": "2024-05-16T10:32:25.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.798900", - "Timestamp": "2019-10-15T21:08:51.000Z" + "SpotPrice": "2.080900", + "Timestamp": "2024-05-16T10:32:25.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.798900", - "Timestamp": "2019-10-15T21:08:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.899100", + "Timestamp": "2024-05-16T10:32:25.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.668900", - "Timestamp": "2019-10-15T21:08:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.075900", + "Timestamp": "2024-05-16T10:32:25.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.668900", - "Timestamp": "2019-10-15T21:08:51.000Z" + "SpotPrice": "1.774100", + "Timestamp": "2024-05-16T10:32:25.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.668900", - "Timestamp": "2019-10-15T21:08:51.000Z" + "SpotPrice": "1.950900", + "Timestamp": "2024-05-16T10:32:25.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "x1e.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.131600", - "Timestamp": "2019-10-15T21:08:34.000Z" + "SpotPrice": "2.895800", + "Timestamp": "2024-05-16T10:32:25.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.001600", - "Timestamp": "2019-10-15T21:08:34.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.890800", + "Timestamp": "2024-05-16T10:32:25.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.111000", - "Timestamp": "2019-10-15T21:08:32.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.765800", + "Timestamp": "2024-05-16T10:32:25.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.metal", "ProductDescription": "Windows", - "SpotPrice": "0.111000", - "Timestamp": "2019-10-15T21:08:32.000Z" + "SpotPrice": "6.566600", + "Timestamp": "2024-05-16T10:32:25.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.111000", - "Timestamp": "2019-10-15T21:08:32.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.593400", + "Timestamp": "2024-05-16T10:32:25.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.903200", - "Timestamp": "2019-10-15T21:08:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.563400", + "Timestamp": "2024-05-16T10:32:25.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.903200", - "Timestamp": "2019-10-15T21:08:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.463400", + "Timestamp": "2024-05-16T10:32:25.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.355600", - "Timestamp": "2019-10-15T21:08:18.000Z" + "SpotPrice": "0.355200", + "Timestamp": "2024-05-16T10:32:24.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.355600", - "Timestamp": "2019-10-15T21:08:18.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.350200", + "Timestamp": "2024-05-16T10:32:24.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.225200", + "Timestamp": "2024-05-16T10:32:24.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5n.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.355600", - "Timestamp": "2019-10-15T21:08:18.000Z" + "SpotPrice": "0.166100", + "Timestamp": "2024-05-16T10:32:24.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.225600", - "Timestamp": "2019-10-15T21:08:18.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162100", + "Timestamp": "2024-05-16T10:32:24.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5n.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.225600", - "Timestamp": "2019-10-15T21:08:18.000Z" + "SpotPrice": "0.106100", + "Timestamp": "2024-05-16T10:32:24.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.225600", - "Timestamp": "2019-10-15T21:08:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136700", + "Timestamp": "2024-05-16T10:32:24.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.632000", - "Timestamp": "2019-10-15T21:08:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.176700", + "Timestamp": "2024-05-16T10:32:24.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.632000", - "Timestamp": "2019-10-15T21:08:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076700", + "Timestamp": "2024-05-16T10:32:24.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.632000", - "Timestamp": "2019-10-15T21:08:18.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200200", + "Timestamp": "2024-05-16T10:32:24.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.237400", - "Timestamp": "2019-10-15T21:08:15.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196500", + "Timestamp": "2024-05-16T10:32:24.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.237400", - "Timestamp": "2019-10-15T21:08:15.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140200", + "Timestamp": "2024-05-16T10:32:24.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c1.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.237400", - "Timestamp": "2019-10-15T21:08:15.000Z" + "SpotPrice": "0.524300", + "Timestamp": "2024-05-16T10:32:24.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.111000", - "Timestamp": "2019-10-15T21:08:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166200", + "Timestamp": "2024-05-16T10:32:23.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.111000", - "Timestamp": "2019-10-15T21:08:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.206200", + "Timestamp": "2024-05-16T10:32:23.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.111000", - "Timestamp": "2019-10-15T21:08:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106200", + "Timestamp": "2024-05-16T10:32:23.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.455800", - "Timestamp": "2019-10-15T21:08:02.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160800", + "Timestamp": "2024-05-16T10:32:21.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.455800", - "Timestamp": "2019-10-15T21:08:02.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156800", + "Timestamp": "2024-05-16T10:32:21.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.455800", - "Timestamp": "2019-10-15T21:08:02.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T10:32:21.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.888000", - "Timestamp": "2019-10-15T21:08:00.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.658300", + "Timestamp": "2024-05-16T10:32:20.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.888000", - "Timestamp": "2019-10-15T21:08:00.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.653300", + "Timestamp": "2024-05-16T10:32:20.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.888000", - "Timestamp": "2019-10-15T21:08:00.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.528300", + "Timestamp": "2024-05-16T10:32:20.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.223900", - "Timestamp": "2019-10-15T21:07:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.292700", + "Timestamp": "2024-05-16T10:32:19.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.223900", - "Timestamp": "2019-10-15T21:07:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.287700", + "Timestamp": "2024-05-16T10:32:19.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.223900", - "Timestamp": "2019-10-15T21:07:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162700", + "Timestamp": "2024-05-16T10:32:19.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.123700", - "Timestamp": "2019-10-15T21:07:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "a1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084800", + "Timestamp": "2024-05-16T10:32:19.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.123700", - "Timestamp": "2019-10-15T21:07:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "a1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.081100", + "Timestamp": "2024-05-16T10:32:19.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.123700", - "Timestamp": "2019-10-15T21:07:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "a1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024800", + "Timestamp": "2024-05-16T10:32:19.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.290000", - "Timestamp": "2019-10-15T21:07:54.000Z" + "SpotPrice": "0.900100", + "Timestamp": "2024-05-16T10:32:18.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.290000", - "Timestamp": "2019-10-15T21:07:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.895100", + "Timestamp": "2024-05-16T10:32:18.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.770100", + "Timestamp": "2024-05-16T10:32:18.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.677600", + "Timestamp": "2024-05-16T10:32:18.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.137000", + "Timestamp": "2024-05-16T10:32:18.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.3xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.290000", - "Timestamp": "2019-10-15T21:07:54.000Z" + "SpotPrice": "0.719300", + "Timestamp": "2024-05-16T10:32:18.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.160000", - "Timestamp": "2019-10-15T21:07:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.714300", + "Timestamp": "2024-05-16T10:32:18.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.3xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.160000", - "Timestamp": "2019-10-15T21:07:54.000Z" + "SpotPrice": "0.589300", + "Timestamp": "2024-05-16T10:32:18.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T10:32:17.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101100", + "Timestamp": "2024-05-16T10:32:17.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.160000", - "Timestamp": "2019-10-15T21:07:54.000Z" + "SpotPrice": "0.044800", + "Timestamp": "2024-05-16T10:32:17.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.631900", - "Timestamp": "2019-10-15T21:07:52.000Z" + "SpotPrice": "0.127300", + "Timestamp": "2024-05-16T10:32:14.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.631900", - "Timestamp": "2019-10-15T21:07:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167300", + "Timestamp": "2024-05-16T10:32:14.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067300", + "Timestamp": "2024-05-16T10:32:14.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.631900", - "Timestamp": "2019-10-15T21:07:52.000Z" + "SpotPrice": "2.458900", + "Timestamp": "2024-05-16T10:32:14.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.501900", - "Timestamp": "2019-10-15T21:07:52.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.453900", + "Timestamp": "2024-05-16T10:32:14.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.501900", - "Timestamp": "2019-10-15T21:07:52.000Z" + "SpotPrice": "2.328900", + "Timestamp": "2024-05-16T10:32:14.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.501900", - "Timestamp": "2019-10-15T21:07:52.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.946900", + "Timestamp": "2024-05-16T10:32:13.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.451600", - "Timestamp": "2019-10-15T21:07:52.000Z" + "SpotPrice": "5.457600", + "Timestamp": "2024-05-16T10:32:13.000Z" }, { - "AvailabilityZone": "us-east-2b", + "AvailabilityZone": "us-east-1c", "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.451600", - "Timestamp": "2019-10-15T21:07:52.000Z" + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.415300", + "Timestamp": "2024-05-16T10:32:13.000Z" }, { - "AvailabilityZone": "us-east-2a", + "AvailabilityZone": "us-east-1c", "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.451600", - "Timestamp": "2019-10-15T21:07:52.000Z" + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.410300", + "Timestamp": "2024-05-16T10:32:13.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.289600", - "Timestamp": "2019-10-15T21:07:50.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.285300", + "Timestamp": "2024-05-16T10:32:13.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5n.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.289600", - "Timestamp": "2019-10-15T21:07:50.000Z" + "SpotPrice": "0.250400", + "Timestamp": "2024-05-16T10:32:13.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.289600", - "Timestamp": "2019-10-15T21:07:50.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.245400", + "Timestamp": "2024-05-16T10:32:13.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5n.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.159600", - "Timestamp": "2019-10-15T21:07:50.000Z" + "SpotPrice": "0.120400", + "Timestamp": "2024-05-16T10:32:13.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.159600", - "Timestamp": "2019-10-15T21:07:50.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.179600", + "Timestamp": "2024-05-16T10:32:12.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5n.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.175900", + "Timestamp": "2024-05-16T10:32:12.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.159600", - "Timestamp": "2019-10-15T21:07:50.000Z" + "SpotPrice": "0.119600", + "Timestamp": "2024-05-16T10:32:12.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.110100", - "Timestamp": "2019-10-15T21:07:43.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.018800", + "Timestamp": "2024-05-16T10:19:51.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.110100", - "Timestamp": "2019-10-15T21:07:43.000Z" + "SpotPrice": "7.604400", + "Timestamp": "2024-05-16T10:18:47.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.110100", - "Timestamp": "2019-10-15T21:07:43.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.599400", + "Timestamp": "2024-05-16T10:18:47.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.050100", - "Timestamp": "2019-10-15T21:07:43.000Z" + "SpotPrice": "7.474400", + "Timestamp": "2024-05-16T10:18:47.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.050100", - "Timestamp": "2019-10-15T21:07:43.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.298800", + "Timestamp": "2024-05-16T10:18:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.178200", + "Timestamp": "2024-05-16T10:18:39.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.173200", + "Timestamp": "2024-05-16T10:18:39.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.050100", - "Timestamp": "2019-10-15T21:07:43.000Z" + "SpotPrice": "4.048200", + "Timestamp": "2024-05-16T10:18:39.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.079000", - "Timestamp": "2019-10-15T21:07:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.453400", + "Timestamp": "2024-05-16T10:18:39.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.079000", - "Timestamp": "2019-10-15T21:07:40.000Z" + "SpotPrice": "0.081900", + "Timestamp": "2024-05-16T10:18:37.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.019000", - "Timestamp": "2019-10-15T21:07:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078200", + "Timestamp": "2024-05-16T10:18:37.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.019000", - "Timestamp": "2019-10-15T21:07:40.000Z" + "SpotPrice": "0.021900", + "Timestamp": "2024-05-16T10:18:37.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.449300", - "Timestamp": "2019-10-15T21:07:26.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.305000", + "Timestamp": "2024-05-16T10:18:36.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.449300", - "Timestamp": "2019-10-15T21:07:26.000Z" + "SpotPrice": "0.813900", + "Timestamp": "2024-05-16T10:18:34.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.449300", - "Timestamp": "2019-10-15T21:07:26.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.808900", + "Timestamp": "2024-05-16T10:18:34.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.319300", - "Timestamp": "2019-10-15T21:07:26.000Z" + "SpotPrice": "0.683900", + "Timestamp": "2024-05-16T10:18:34.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.319300", - "Timestamp": "2019-10-15T21:07:26.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.694500", + "Timestamp": "2024-05-16T10:18:32.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.319300", - "Timestamp": "2019-10-15T21:07:26.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.845200", + "Timestamp": "2024-05-16T10:18:31.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5n.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.895600", - "Timestamp": "2019-10-15T21:07:22.000Z" + "SpotPrice": "2.231700", + "Timestamp": "2024-05-16T10:18:29.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5n.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.895600", - "Timestamp": "2019-10-15T21:07:22.000Z" + "SpotPrice": "4.420900", + "Timestamp": "2024-05-16T10:18:28.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5n.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.895600", - "Timestamp": "2019-10-15T21:07:22.000Z" + "SpotPrice": "0.558000", + "Timestamp": "2024-05-16T10:18:28.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.079000", - "Timestamp": "2019-10-15T21:07:11.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.469800", + "Timestamp": "2024-05-16T10:18:28.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.019000", - "Timestamp": "2019-10-15T21:07:11.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.569300", + "Timestamp": "2024-05-16T10:18:28.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.709900", - "Timestamp": "2019-10-15T21:07:09.000Z" + "SpotPrice": "4.867200", + "Timestamp": "2024-05-16T10:18:28.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.709900", - "Timestamp": "2019-10-15T21:07:09.000Z" + "SpotPrice": "4.668700", + "Timestamp": "2024-05-16T10:18:27.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.709900", - "Timestamp": "2019-10-15T21:07:09.000Z" + "SpotPrice": "0.308700", + "Timestamp": "2024-05-16T10:18:27.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "i3.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.791300", - "Timestamp": "2019-10-15T21:06:50.000Z" + "SpotPrice": "0.307300", + "Timestamp": "2024-05-16T10:18:27.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.791300", - "Timestamp": "2019-10-15T21:06:50.000Z" + "SpotPrice": "5.065700", + "Timestamp": "2024-05-16T10:18:26.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.791300", - "Timestamp": "2019-10-15T21:06:50.000Z" + "SpotPrice": "0.249300", + "Timestamp": "2024-05-16T10:18:26.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.457400", - "Timestamp": "2019-10-15T21:06:06.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.346500", + "Timestamp": "2024-05-16T10:18:26.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.327400", - "Timestamp": "2019-10-15T21:06:06.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.334800", + "Timestamp": "2024-05-16T10:18:26.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.099900", - "Timestamp": "2019-10-15T21:04:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.297000", + "Timestamp": "2024-05-16T10:18:26.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.099900", - "Timestamp": "2019-10-15T21:04:19.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.439300", + "Timestamp": "2024-05-16T10:18:25.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.099900", - "Timestamp": "2019-10-15T21:04:19.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.749600", + "Timestamp": "2024-05-16T10:18:24.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.039900", - "Timestamp": "2019-10-15T21:04:19.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.600100", + "Timestamp": "2024-05-16T10:18:23.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.039900", - "Timestamp": "2019-10-15T21:04:19.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.570100", + "Timestamp": "2024-05-16T10:18:23.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5dn.xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "x1.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.039900", - "Timestamp": "2019-10-15T21:04:19.000Z" + "SpotPrice": "5.470100", + "Timestamp": "2024-05-16T10:18:23.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5dn.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.223900", - "Timestamp": "2019-10-15T21:03:37.000Z" + "SpotPrice": "0.634600", + "Timestamp": "2024-05-16T10:18:23.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5dn.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.223900", - "Timestamp": "2019-10-15T21:03:37.000Z" + "SpotPrice": "6.610100", + "Timestamp": "2024-05-16T10:18:23.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5dn.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.large", "ProductDescription": "Windows", - "SpotPrice": "0.223900", - "Timestamp": "2019-10-15T21:03:37.000Z" + "SpotPrice": "0.151500", + "Timestamp": "2024-05-16T10:18:23.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5dn.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.metal-48xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.209800", - "Timestamp": "2019-10-15T21:03:23.000Z" + "SpotPrice": "3.710700", + "Timestamp": "2024-05-16T10:18:22.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.209800", - "Timestamp": "2019-10-15T21:03:23.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.705700", + "Timestamp": "2024-05-16T10:18:22.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5dn.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.580700", + "Timestamp": "2024-05-16T10:18:22.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.516300", + "Timestamp": "2024-05-16T10:18:21.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.749100", + "Timestamp": "2024-05-16T10:18:21.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m2.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.209800", - "Timestamp": "2019-10-15T21:03:23.000Z" + "SpotPrice": "0.548400", + "Timestamp": "2024-05-16T10:18:20.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.079800", - "Timestamp": "2019-10-15T21:03:23.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.518400", + "Timestamp": "2024-05-16T10:18:20.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5dn.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m2.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.079800", - "Timestamp": "2019-10-15T21:03:23.000Z" + "SpotPrice": "0.418400", + "Timestamp": "2024-05-16T10:18:20.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5dn.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.006900", + "Timestamp": "2024-05-16T10:18:20.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.001900", + "Timestamp": "2024-05-16T10:18:20.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.079800", - "Timestamp": "2019-10-15T21:03:23.000Z" + "SpotPrice": "4.876900", + "Timestamp": "2024-05-16T10:18:20.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5dn.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.537500", + "Timestamp": "2024-05-16T10:18:20.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "h1.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.087800", - "Timestamp": "2019-10-15T21:03:19.000Z" + "SpotPrice": "1.512300", + "Timestamp": "2024-05-16T10:18:19.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5dn.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "h1.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.482300", + "Timestamp": "2024-05-16T10:18:19.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "h1.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.957800", - "Timestamp": "2019-10-15T21:03:19.000Z" + "SpotPrice": "1.382300", + "Timestamp": "2024-05-16T10:18:19.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5dn.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m2.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.447800", - "Timestamp": "2019-10-15T21:03:15.000Z" + "SpotPrice": "0.195800", + "Timestamp": "2024-05-16T10:18:19.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.447800", - "Timestamp": "2019-10-15T21:03:15.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.956900", + "Timestamp": "2024-05-16T10:18:19.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.447800", - "Timestamp": "2019-10-15T21:03:15.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.951900", + "Timestamp": "2024-05-16T10:18:19.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.223800", - "Timestamp": "2019-10-15T21:03:14.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.826900", + "Timestamp": "2024-05-16T10:18:19.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.medium", "ProductDescription": "Windows", - "SpotPrice": "0.223800", - "Timestamp": "2019-10-15T21:03:14.000Z" + "SpotPrice": "0.064200", + "Timestamp": "2024-05-16T10:18:18.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.223800", - "Timestamp": "2019-10-15T21:03:14.000Z" + "SpotPrice": "4.150300", + "Timestamp": "2024-05-16T10:18:18.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.297200", - "Timestamp": "2019-10-15T21:03:00.000Z" + "SpotPrice": "0.861200", + "Timestamp": "2024-05-16T10:18:18.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.297200", - "Timestamp": "2019-10-15T21:03:00.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.856200", + "Timestamp": "2024-05-16T10:18:18.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.297200", - "Timestamp": "2019-10-15T21:03:00.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.731200", + "Timestamp": "2024-05-16T10:18:18.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.167200", - "Timestamp": "2019-10-15T21:03:00.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.297700", + "Timestamp": "2024-05-16T10:18:18.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.167200", - "Timestamp": "2019-10-15T21:03:00.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.480500", + "Timestamp": "2024-05-16T10:18:17.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.167200", - "Timestamp": "2019-10-15T21:03:00.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.327800", + "Timestamp": "2024-05-16T10:18:17.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.903200", - "Timestamp": "2019-10-15T21:02:35.000Z" + "SpotPrice": "4.628800", + "Timestamp": "2024-05-16T10:18:16.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.903200", - "Timestamp": "2019-10-15T21:02:35.000Z" + "SpotPrice": "4.818900", + "Timestamp": "2024-05-16T10:18:16.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.903200", - "Timestamp": "2019-10-15T21:02:35.000Z" + "SpotPrice": "0.339200", + "Timestamp": "2024-05-16T10:18:16.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.099800", - "Timestamp": "2019-10-15T21:02:05.000Z" + "SpotPrice": "0.734300", + "Timestamp": "2024-05-16T10:18:16.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.039800", - "Timestamp": "2019-10-15T21:02:05.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.729300", + "Timestamp": "2024-05-16T10:18:16.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5dn.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132800", - "Timestamp": "2019-10-15T20:57:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.604300", + "Timestamp": "2024-05-16T10:18:16.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5dn.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072800", - "Timestamp": "2019-10-15T20:57:57.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.566900", + "Timestamp": "2024-05-16T10:18:15.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.212000", - "Timestamp": "2019-10-15T20:57:26.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.707600", + "Timestamp": "2024-05-16T10:18:15.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.082000", - "Timestamp": "2019-10-15T20:57:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.471800", + "Timestamp": "2024-05-16T10:18:15.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "h1.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.530000", - "Timestamp": "2019-10-15T20:49:27.000Z" + "SpotPrice": "1.936000", + "Timestamp": "2024-05-16T10:18:14.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "h1.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.400000", - "Timestamp": "2019-10-15T20:49:27.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.984500", + "Timestamp": "2024-05-16T10:18:14.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.534900", - "Timestamp": "2019-10-15T20:49:21.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.906000", + "Timestamp": "2024-05-16T10:18:14.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.404900", - "Timestamp": "2019-10-15T20:49:21.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.954500", + "Timestamp": "2024-05-16T10:18:14.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.332700", - "Timestamp": "2019-10-15T20:49:16.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.806000", + "Timestamp": "2024-05-16T10:18:14.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.202700", - "Timestamp": "2019-10-15T20:49:16.000Z" + "SpotPrice": "1.854500", + "Timestamp": "2024-05-16T10:18:14.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.508800", - "Timestamp": "2019-10-15T20:49:02.000Z" + "SpotPrice": "0.260300", + "Timestamp": "2024-05-16T10:18:14.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.256600", + "Timestamp": "2024-05-16T10:18:14.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.378800", - "Timestamp": "2019-10-15T20:49:02.000Z" + "SpotPrice": "0.200300", + "Timestamp": "2024-05-16T10:18:14.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.280800", - "Timestamp": "2019-10-15T20:48:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.567100", + "Timestamp": "2024-05-16T10:18:14.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.150800", - "Timestamp": "2019-10-15T20:48:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.138900", + "Timestamp": "2024-05-16T10:18:14.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.781300", + "Timestamp": "2024-05-16T10:18:14.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101300", - "Timestamp": "2019-10-15T20:48:35.000Z" + "SpotPrice": "0.797600", + "Timestamp": "2024-05-16T10:18:14.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041300", - "Timestamp": "2019-10-15T20:48:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.792600", + "Timestamp": "2024-05-16T10:18:14.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.112000", - "Timestamp": "2019-10-15T20:47:38.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.667600", + "Timestamp": "2024-05-16T10:18:14.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.080000", - "Timestamp": "2019-10-15T20:47:01.000Z" + "SpotPrice": "1.021300", + "Timestamp": "2024-05-16T10:18:13.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.016300", + "Timestamp": "2024-05-16T10:18:13.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.020000", - "Timestamp": "2019-10-15T20:47:01.000Z" + "SpotPrice": "0.891300", + "Timestamp": "2024-05-16T10:18:13.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.434200", - "Timestamp": "2019-10-15T20:45:59.000Z" + "SpotPrice": "0.266000", + "Timestamp": "2024-05-16T10:18:11.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.018000", - "Timestamp": "2019-10-15T20:45:59.000Z" + "SpotPrice": "0.270000", + "Timestamp": "2024-05-16T10:18:11.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iezn.6xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101200", - "Timestamp": "2019-10-15T20:40:57.000Z" - }, - { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041200", - "Timestamp": "2019-10-15T20:40:57.000Z" + "SpotPrice": "2.228400", + "Timestamp": "2024-05-16T10:18:11.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.225100", - "Timestamp": "2019-10-15T20:40:47.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.223400", + "Timestamp": "2024-05-16T10:18:11.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iezn.6xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.095100", - "Timestamp": "2019-10-15T20:40:47.000Z" + "SpotPrice": "2.098400", + "Timestamp": "2024-05-16T10:18:11.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.099700", - "Timestamp": "2019-10-15T20:40:26.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.917200", + "Timestamp": "2024-05-16T10:18:11.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.039700", - "Timestamp": "2019-10-15T20:40:26.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.974900", + "Timestamp": "2024-05-16T10:18:11.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.530100", - "Timestamp": "2019-10-15T20:40:14.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.969900", + "Timestamp": "2024-05-16T10:18:11.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2idn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.400100", - "Timestamp": "2019-10-15T20:40:14.000Z" + "SpotPrice": "2.844900", + "Timestamp": "2024-05-16T10:18:11.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.444400", - "Timestamp": "2019-10-15T20:32:46.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.120300", + "Timestamp": "2024-05-16T10:18:11.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.314400", - "Timestamp": "2019-10-15T20:32:46.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.074700", + "Timestamp": "2024-05-16T10:18:11.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.098900", - "Timestamp": "2019-10-15T20:32:13.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.791000", + "Timestamp": "2024-05-16T10:18:10.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.038900", - "Timestamp": "2019-10-15T20:32:13.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.467100", + "Timestamp": "2024-05-16T10:18:10.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.221700", - "Timestamp": "2019-10-15T20:32:04.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.462100", + "Timestamp": "2024-05-16T10:18:10.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.091700", - "Timestamp": "2019-10-15T20:32:04.000Z" + "SpotPrice": "4.337100", + "Timestamp": "2024-05-16T10:18:10.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.938600", - "Timestamp": "2019-10-15T20:32:02.000Z" + "SpotPrice": "0.433500", + "Timestamp": "2024-05-16T10:18:09.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.429800", + "Timestamp": "2024-05-16T10:18:09.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.808600", - "Timestamp": "2019-10-15T20:32:02.000Z" + "SpotPrice": "0.373500", + "Timestamp": "2024-05-16T10:18:09.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5dn.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.582500", - "Timestamp": "2019-10-15T20:20:37.000Z" + "SpotPrice": "6.374300", + "Timestamp": "2024-05-16T10:18:09.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.343600", - "Timestamp": "2019-10-15T20:15:56.000Z" + "SpotPrice": "2.144400", + "Timestamp": "2024-05-16T10:18:08.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "p2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.283600", - "Timestamp": "2019-10-15T20:15:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.139400", + "Timestamp": "2024-05-16T10:18:08.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.679600", - "Timestamp": "2019-10-15T20:15:53.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.014400", + "Timestamp": "2024-05-16T10:18:08.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1e.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.447800", - "Timestamp": "2019-10-15T20:14:41.000Z" + "SpotPrice": "2.085000", + "Timestamp": "2024-05-16T10:18:08.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1e.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.447800", - "Timestamp": "2019-10-15T20:14:41.000Z" + "SpotPrice": "1.972100", + "Timestamp": "2024-05-16T10:18:08.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.209800", - "Timestamp": "2019-10-15T20:14:29.000Z" + "SpotPrice": "0.925600", + "Timestamp": "2024-05-16T10:18:08.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.209800", - "Timestamp": "2019-10-15T20:14:29.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.920600", + "Timestamp": "2024-05-16T10:18:08.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.079800", - "Timestamp": "2019-10-15T20:14:29.000Z" + "SpotPrice": "0.795600", + "Timestamp": "2024-05-16T10:18:08.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.079800", - "Timestamp": "2019-10-15T20:14:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.169300", + "Timestamp": "2024-05-16T10:18:08.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.787500", - "Timestamp": "2019-10-15T20:07:19.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.409500", + "Timestamp": "2024-05-16T10:18:08.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.657500", - "Timestamp": "2019-10-15T20:07:19.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.136800", + "Timestamp": "2024-05-16T10:18:08.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.316400", - "Timestamp": "2019-10-15T20:07:17.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.131800", + "Timestamp": "2024-05-16T10:18:08.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.186400", - "Timestamp": "2019-10-15T20:07:17.000Z" + "SpotPrice": "1.006800", + "Timestamp": "2024-05-16T10:18:08.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.080200", - "Timestamp": "2019-10-15T20:07:08.000Z" + "SpotPrice": "3.949100", + "Timestamp": "2024-05-16T10:18:08.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.020200", - "Timestamp": "2019-10-15T20:07:08.000Z" - }, - { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.783100", - "Timestamp": "2019-10-15T19:59:30.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.944100", + "Timestamp": "2024-05-16T10:18:08.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.653100", - "Timestamp": "2019-10-15T19:59:30.000Z" + "SpotPrice": "3.819100", + "Timestamp": "2024-05-16T10:18:08.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m2.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.526800", - "Timestamp": "2019-10-15T19:59:25.000Z" - }, - { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.415100", - "Timestamp": "2019-10-15T19:59:07.000Z" + "SpotPrice": "0.381900", + "Timestamp": "2024-05-16T10:18:07.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.285100", - "Timestamp": "2019-10-15T19:59:07.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.175400", + "Timestamp": "2024-05-16T10:18:07.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5n.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.447800", - "Timestamp": "2019-10-15T19:58:58.000Z" + "SpotPrice": "2.427900", + "Timestamp": "2024-05-16T10:18:07.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.531200", - "Timestamp": "2019-10-15T19:58:34.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.473100", + "Timestamp": "2024-05-16T10:18:07.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.401200", - "Timestamp": "2019-10-15T19:58:34.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150800", + "Timestamp": "2024-05-16T10:18:07.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.243800", - "Timestamp": "2019-10-15T19:58:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146800", + "Timestamp": "2024-05-16T10:18:07.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf1.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.113800", - "Timestamp": "2019-10-15T19:58:21.000Z" + "SpotPrice": "0.090800", + "Timestamp": "2024-05-16T10:18:07.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t2.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.031900", - "Timestamp": "2019-10-15T19:52:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.386200", + "Timestamp": "2024-05-16T10:18:07.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t2.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.031900", - "Timestamp": "2019-10-15T19:52:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.381200", + "Timestamp": "2024-05-16T10:18:07.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t2.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.031900", - "Timestamp": "2019-10-15T19:52:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.256200", + "Timestamp": "2024-05-16T10:18:07.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.metal", "ProductDescription": "Windows", - "SpotPrice": "0.903300", - "Timestamp": "2019-10-15T19:51:20.000Z" + "SpotPrice": "6.756700", + "Timestamp": "2024-05-16T10:18:06.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.903300", - "Timestamp": "2019-10-15T19:51:20.000Z" + "SpotPrice": "8.890100", + "Timestamp": "2024-05-16T10:18:06.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.903300", - "Timestamp": "2019-10-15T19:51:20.000Z" + "SpotPrice": "1.452100", + "Timestamp": "2024-05-16T10:18:05.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.286900", - "Timestamp": "2019-10-15T19:51:01.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.523400", + "Timestamp": "2024-05-16T10:18:05.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.226900", - "Timestamp": "2019-10-15T19:51:01.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.427300", + "Timestamp": "2024-05-16T10:18:05.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.429400", - "Timestamp": "2019-10-15T19:50:57.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.422300", + "Timestamp": "2024-05-16T10:18:05.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.299400", - "Timestamp": "2019-10-15T19:50:57.000Z" + "SpotPrice": "2.297300", + "Timestamp": "2024-05-16T10:18:05.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "im4gn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.318600", - "Timestamp": "2019-10-15T19:50:48.000Z" + "SpotPrice": "0.204500", + "Timestamp": "2024-05-16T10:18:05.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.188600", - "Timestamp": "2019-10-15T19:50:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.211800", + "Timestamp": "2024-05-16T10:18:05.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.073900", - "Timestamp": "2019-10-15T19:49:31.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.200800", + "Timestamp": "2024-05-16T10:18:05.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.073900", - "Timestamp": "2019-10-15T19:49:31.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.208100", + "Timestamp": "2024-05-16T10:18:05.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-1b", + "InstanceType": "im4gn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.013900", - "Timestamp": "2019-10-15T19:49:31.000Z" + "SpotPrice": "0.144500", + "Timestamp": "2024-05-16T10:18:05.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "im4gn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.013900", - "Timestamp": "2019-10-15T19:49:31.000Z" + "SpotPrice": "0.151800", + "Timestamp": "2024-05-16T10:18:05.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.582500", - "Timestamp": "2019-10-15T19:47:37.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.953700", + "Timestamp": "2024-05-16T10:18:05.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.111000", - "Timestamp": "2019-10-15T19:46:45.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.948700", + "Timestamp": "2024-05-16T10:18:05.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.111000", - "Timestamp": "2019-10-15T19:46:45.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.823700", + "Timestamp": "2024-05-16T10:18:05.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.111000", - "Timestamp": "2019-10-15T19:46:45.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.510000", + "Timestamp": "2024-05-16T10:18:04.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5n.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.079000", - "Timestamp": "2019-10-15T19:46:37.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.505000", + "Timestamp": "2024-05-16T10:18:04.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5n.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.019000", - "Timestamp": "2019-10-15T19:46:37.000Z" + "SpotPrice": "1.380000", + "Timestamp": "2024-05-16T10:18:04.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.939400", - "Timestamp": "2019-10-15T19:42:30.000Z" + "SpotPrice": "0.348900", + "Timestamp": "2024-05-16T10:18:04.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343900", + "Timestamp": "2024-05-16T10:18:04.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.809400", - "Timestamp": "2019-10-15T19:42:30.000Z" + "SpotPrice": "0.218900", + "Timestamp": "2024-05-16T10:18:04.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.metal", "ProductDescription": "Windows", - "SpotPrice": "5.868700", - "Timestamp": "2019-10-15T19:42:20.000Z" + "SpotPrice": "7.365100", + "Timestamp": "2024-05-16T10:18:04.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.188600", - "Timestamp": "2019-10-15T19:42:12.000Z" + "SpotPrice": "1.114700", + "Timestamp": "2024-05-16T10:18:04.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "p3.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.293700", - "Timestamp": "2019-10-15T19:41:36.000Z" + "SpotPrice": "1.601700", + "Timestamp": "2024-05-16T10:18:04.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.571700", + "Timestamp": "2024-05-16T10:18:04.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "p3.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.163700", - "Timestamp": "2019-10-15T19:41:36.000Z" + "SpotPrice": "1.471700", + "Timestamp": "2024-05-16T10:18:04.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5dn.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.612900", - "Timestamp": "2019-10-15T19:39:27.000Z" + "SpotPrice": "0.544600", + "Timestamp": "2024-05-16T10:18:02.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.921600", - "Timestamp": "2019-10-15T19:34:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.542400", + "Timestamp": "2024-05-16T10:18:02.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.791600", - "Timestamp": "2019-10-15T19:34:11.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.268300", + "Timestamp": "2024-05-16T10:18:02.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.997300", - "Timestamp": "2019-10-15T19:33:45.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.080800", + "Timestamp": "2024-05-16T10:18:01.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.867300", - "Timestamp": "2019-10-15T19:33:45.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.242600", + "Timestamp": "2024-05-16T10:18:01.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101200", - "Timestamp": "2019-10-15T19:33:27.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.632400", + "Timestamp": "2024-05-16T10:18:01.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041200", - "Timestamp": "2019-10-15T19:33:27.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.171300", + "Timestamp": "2024-05-16T10:18:00.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101200", - "Timestamp": "2019-10-15T19:33:26.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.166300", + "Timestamp": "2024-05-16T10:18:00.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041200", - "Timestamp": "2019-10-15T19:33:26.000Z" + "SpotPrice": "1.041300", + "Timestamp": "2024-05-16T10:18:00.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.605100", - "Timestamp": "2019-10-15T19:33:13.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.131300", + "Timestamp": "2024-05-16T10:18:00.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.475100", - "Timestamp": "2019-10-15T19:33:13.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.103600", + "Timestamp": "2024-05-16T10:18:00.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5n.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.213600", - "Timestamp": "2019-10-15T19:28:13.000Z" + "SpotPrice": "1.481500", + "Timestamp": "2024-05-16T10:17:59.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5n.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.476500", + "Timestamp": "2024-05-16T10:17:59.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.083600", - "Timestamp": "2019-10-15T19:28:13.000Z" + "SpotPrice": "1.351500", + "Timestamp": "2024-05-16T10:17:59.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.177400", - "Timestamp": "2019-10-15T19:25:54.000Z" + "SpotPrice": "2.341400", + "Timestamp": "2024-05-16T10:17:59.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.117400", - "Timestamp": "2019-10-15T19:25:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.299100", + "Timestamp": "2024-05-16T10:17:59.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.278000", - "Timestamp": "2019-10-15T19:25:38.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.336400", + "Timestamp": "2024-05-16T10:17:59.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.148000", - "Timestamp": "2019-10-15T19:25:38.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.294100", + "Timestamp": "2024-05-16T10:17:59.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.331400", - "Timestamp": "2019-10-15T19:25:12.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.211400", + "Timestamp": "2024-05-16T10:17:59.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.201400", - "Timestamp": "2019-10-15T19:25:12.000Z" + "SpotPrice": "2.169100", + "Timestamp": "2024-05-16T10:17:59.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.343300", - "Timestamp": "2019-10-15T19:25:03.000Z" + "SpotPrice": "0.148800", + "Timestamp": "2024-05-16T10:17:59.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145100", + "Timestamp": "2024-05-16T10:17:59.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.283300", - "Timestamp": "2019-10-15T19:25:03.000Z" + "SpotPrice": "0.088800", + "Timestamp": "2024-05-16T10:17:59.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.822200", - "Timestamp": "2019-10-15T19:17:07.000Z" + "SpotPrice": "0.200600", + "Timestamp": "2024-05-16T10:17:58.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196900", + "Timestamp": "2024-05-16T10:17:58.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.692200", - "Timestamp": "2019-10-15T19:17:07.000Z" + "SpotPrice": "0.140600", + "Timestamp": "2024-05-16T10:17:58.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.401300", + "Timestamp": "2024-05-16T10:17:58.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.995100", - "Timestamp": "2019-10-15T19:16:55.000Z" + "SpotPrice": "2.807600", + "Timestamp": "2024-05-16T10:17:58.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.802600", + "Timestamp": "2024-05-16T10:17:58.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.865100", - "Timestamp": "2019-10-15T19:16:55.000Z" + "SpotPrice": "2.677600", + "Timestamp": "2024-05-16T10:17:58.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.772700", - "Timestamp": "2019-10-15T19:16:39.000Z" + "SpotPrice": "2.575800", + "Timestamp": "2024-05-16T10:17:58.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.642700", - "Timestamp": "2019-10-15T19:16:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.570800", + "Timestamp": "2024-05-16T10:17:58.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.310200", - "Timestamp": "2019-10-15T19:15:34.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.445800", + "Timestamp": "2024-05-16T10:17:58.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.894000", - "Timestamp": "2019-10-15T19:15:34.000Z" + "SpotPrice": "1.854200", + "Timestamp": "2024-05-16T10:17:58.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.250200", - "Timestamp": "2019-10-15T19:15:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.849200", + "Timestamp": "2024-05-16T10:17:58.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.834000", - "Timestamp": "2019-10-15T19:15:34.000Z" + "SpotPrice": "1.724200", + "Timestamp": "2024-05-16T10:17:58.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.098000", - "Timestamp": "2019-10-15T19:11:29.000Z" + "SpotPrice": "0.831300", + "Timestamp": "2024-05-16T10:17:57.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.098000", - "Timestamp": "2019-10-15T19:11:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.826300", + "Timestamp": "2024-05-16T10:17:57.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.701300", + "Timestamp": "2024-05-16T10:17:57.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "inf1.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.098200", - "Timestamp": "2019-10-15T19:11:29.000Z" + "SpotPrice": "0.326900", + "Timestamp": "2024-05-16T10:17:57.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.038000", - "Timestamp": "2019-10-15T19:11:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.321900", + "Timestamp": "2024-05-16T10:17:57.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "inf1.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.038000", - "Timestamp": "2019-10-15T19:11:29.000Z" + "SpotPrice": "0.196900", + "Timestamp": "2024-05-16T10:17:57.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.038200", - "Timestamp": "2019-10-15T19:11:29.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.802700", + "Timestamp": "2024-05-16T10:17:57.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.222000", - "Timestamp": "2019-10-15T19:11:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.797700", + "Timestamp": "2024-05-16T10:17:57.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.222000", - "Timestamp": "2019-10-15T19:11:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.672700", + "Timestamp": "2024-05-16T10:17:57.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.222000", - "Timestamp": "2019-10-15T19:11:27.000Z" + "SpotPrice": "0.649200", + "Timestamp": "2024-05-16T10:17:57.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101400", - "Timestamp": "2019-10-15T19:09:14.000Z" + "SpotPrice": "2.199900", + "Timestamp": "2024-05-16T10:17:57.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.194900", + "Timestamp": "2024-05-16T10:17:57.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041400", - "Timestamp": "2019-10-15T19:09:14.000Z" + "SpotPrice": "2.069900", + "Timestamp": "2024-05-16T10:17:57.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.081200", - "Timestamp": "2019-10-15T19:08:59.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.043700", + "Timestamp": "2024-05-16T10:17:56.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.021200", - "Timestamp": "2019-10-15T19:08:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.286300", + "Timestamp": "2024-05-16T10:17:56.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.642300", - "Timestamp": "2019-10-15T19:08:53.000Z" + "SpotPrice": "0.134600", + "Timestamp": "2024-05-16T10:17:56.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.512300", - "Timestamp": "2019-10-15T19:08:53.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130600", + "Timestamp": "2024-05-16T10:17:56.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "h1.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "7.274900", - "Timestamp": "2019-10-15T19:08:27.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074600", + "Timestamp": "2024-05-16T10:17:56.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.076300", - "Timestamp": "2019-10-15T19:08:23.000Z" + "SpotPrice": "0.418600", + "Timestamp": "2024-05-16T10:17:56.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t2.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.016300", - "Timestamp": "2019-10-15T19:08:23.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.413600", + "Timestamp": "2024-05-16T10:17:56.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.451600", - "Timestamp": "2019-10-15T19:02:42.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.288600", + "Timestamp": "2024-05-16T10:17:56.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5n.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.451600", - "Timestamp": "2019-10-15T19:02:42.000Z" + "SpotPrice": "4.645000", + "Timestamp": "2024-05-16T10:17:56.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5n.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.451600", - "Timestamp": "2019-10-15T19:02:42.000Z" + "SpotPrice": "7.979500", + "Timestamp": "2024-05-16T10:17:56.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.282000", - "Timestamp": "2019-10-15T19:02:27.000Z" + "SpotPrice": "1.579700", + "Timestamp": "2024-05-16T10:17:55.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.282000", - "Timestamp": "2019-10-15T19:02:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.574700", + "Timestamp": "2024-05-16T10:17:55.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.282000", - "Timestamp": "2019-10-15T19:02:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.449700", + "Timestamp": "2024-05-16T10:17:55.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.152000", - "Timestamp": "2019-10-15T19:02:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.681000", + "Timestamp": "2024-05-16T10:17:55.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.152000", - "Timestamp": "2019-10-15T19:02:27.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.130700", + "Timestamp": "2024-05-16T10:17:55.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.125700", + "Timestamp": "2024-05-16T10:17:55.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.152000", - "Timestamp": "2019-10-15T19:02:27.000Z" + "SpotPrice": "3.000700", + "Timestamp": "2024-05-16T10:17:55.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.888000", - "Timestamp": "2019-10-15T19:02:22.000Z" + "SpotPrice": "2.175100", + "Timestamp": "2024-05-16T10:17:55.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.888000", - "Timestamp": "2019-10-15T19:02:22.000Z" + "SpotPrice": "0.374100", + "Timestamp": "2024-05-16T10:17:55.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r3.large", "ProductDescription": "Windows", - "SpotPrice": "0.888000", - "Timestamp": "2019-10-15T19:02:22.000Z" + "SpotPrice": "0.188300", + "Timestamp": "2024-05-16T10:17:54.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5n.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "d2.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.213600", - "Timestamp": "2019-10-15T19:02:12.000Z" - }, - { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.083600", - "Timestamp": "2019-10-15T19:02:12.000Z" + "SpotPrice": "2.255600", + "Timestamp": "2024-05-16T10:17:54.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.480000", - "Timestamp": "2019-10-15T19:00:46.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.225600", + "Timestamp": "2024-05-16T10:17:54.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "d2.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.350000", - "Timestamp": "2019-10-15T19:00:46.000Z" + "SpotPrice": "2.125600", + "Timestamp": "2024-05-16T10:17:54.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.449700", - "Timestamp": "2019-10-15T19:00:18.000Z" + "SpotPrice": "3.906100", + "Timestamp": "2024-05-16T10:17:54.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.901100", + "Timestamp": "2024-05-16T10:17:54.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.319700", - "Timestamp": "2019-10-15T19:00:18.000Z" + "SpotPrice": "3.776100", + "Timestamp": "2024-05-16T10:17:54.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5n.18xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.686900", - "Timestamp": "2019-10-15T18:58:26.000Z" + "SpotPrice": "5.062200", + "Timestamp": "2024-05-16T10:17:54.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5n.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.209800", - "Timestamp": "2019-10-15T18:57:54.000Z" + "SpotPrice": "4.998100", + "Timestamp": "2024-05-16T10:17:53.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.079800", - "Timestamp": "2019-10-15T18:57:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.993100", + "Timestamp": "2024-05-16T10:17:53.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.419400", - "Timestamp": "2019-10-15T18:54:17.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.868100", + "Timestamp": "2024-05-16T10:17:53.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5dn.large", - "ProductDescription": "Windows", - "SpotPrice": "0.166500", - "Timestamp": "2019-10-15T18:52:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.624600", + "Timestamp": "2024-05-16T10:17:53.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.099400", - "Timestamp": "2019-10-15T18:52:12.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.619600", + "Timestamp": "2024-05-16T10:17:53.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.039400", - "Timestamp": "2019-10-15T18:52:12.000Z" + "SpotPrice": "2.494600", + "Timestamp": "2024-05-16T10:17:53.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.298000", - "Timestamp": "2019-10-15T18:52:08.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.872200", + "Timestamp": "2024-05-16T10:17:53.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.058500", - "Timestamp": "2019-10-15T18:51:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.867200", + "Timestamp": "2024-05-16T10:17:53.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.metal-24xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.928500", - "Timestamp": "2019-10-15T18:51:49.000Z" + "SpotPrice": "1.742200", + "Timestamp": "2024-05-16T10:17:53.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.157000", + "Timestamp": "2024-05-16T10:17:53.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.242400", - "Timestamp": "2019-10-15T18:51:46.000Z" + "SpotPrice": "0.151900", + "Timestamp": "2024-05-16T10:17:52.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148200", + "Timestamp": "2024-05-16T10:17:52.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.112400", - "Timestamp": "2019-10-15T18:51:46.000Z" + "SpotPrice": "0.091900", + "Timestamp": "2024-05-16T10:17:52.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.328200", - "Timestamp": "2019-10-15T18:45:36.000Z" + "SpotPrice": "8.345000", + "Timestamp": "2024-05-16T10:17:52.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.328200", - "Timestamp": "2019-10-15T18:45:36.000Z" + "SpotPrice": "0.673900", + "Timestamp": "2024-05-16T10:17:52.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.328200", - "Timestamp": "2019-10-15T18:45:36.000Z" + "SpotPrice": "4.248100", + "Timestamp": "2024-05-16T10:17:52.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.104600", - "Timestamp": "2019-10-15T18:43:50.000Z" - }, - { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.044600", - "Timestamp": "2019-10-15T18:43:50.000Z" + "SpotPrice": "0.132700", + "Timestamp": "2024-05-16T10:17:51.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "7.812400", - "Timestamp": "2019-10-15T18:43:37.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129000", + "Timestamp": "2024-05-16T10:17:51.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "7.682400", - "Timestamp": "2019-10-15T18:43:37.000Z" + "SpotPrice": "0.072700", + "Timestamp": "2024-05-16T10:17:51.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.615600", - "Timestamp": "2019-10-15T18:43:18.000Z" + "SpotPrice": "0.484800", + "Timestamp": "2024-05-16T10:17:51.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.479800", + "Timestamp": "2024-05-16T10:17:51.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.485600", - "Timestamp": "2019-10-15T18:43:18.000Z" + "SpotPrice": "0.354800", + "Timestamp": "2024-05-16T10:17:51.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.102100", - "Timestamp": "2019-10-15T18:43:12.000Z" + "SpotPrice": "0.132300", + "Timestamp": "2024-05-16T10:17:50.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128600", + "Timestamp": "2024-05-16T10:17:50.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.042100", - "Timestamp": "2019-10-15T18:43:12.000Z" + "SpotPrice": "0.072300", + "Timestamp": "2024-05-16T10:17:50.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.433400", - "Timestamp": "2019-10-15T18:41:52.000Z" + "SpotPrice": "1.924000", + "Timestamp": "2024-05-16T10:17:50.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.434400", - "Timestamp": "2019-10-15T18:41:52.000Z" + "SpotPrice": "1.866400", + "Timestamp": "2024-05-16T10:17:50.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.435500", - "Timestamp": "2019-10-15T18:41:52.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.919000", + "Timestamp": "2024-05-16T10:17:50.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.303400", - "Timestamp": "2019-10-15T18:41:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.861400", + "Timestamp": "2024-05-16T10:17:50.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.304400", - "Timestamp": "2019-10-15T18:41:52.000Z" + "SpotPrice": "1.794000", + "Timestamp": "2024-05-16T10:17:50.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.305500", - "Timestamp": "2019-10-15T18:41:52.000Z" + "SpotPrice": "1.736400", + "Timestamp": "2024-05-16T10:17:50.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5dn.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m4.xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.373800", - "Timestamp": "2019-10-15T18:40:25.000Z" + "SpotPrice": "0.275800", + "Timestamp": "2024-05-16T10:17:50.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.898000", - "Timestamp": "2019-10-15T18:39:45.000Z" + "SpotPrice": "3.121100", + "Timestamp": "2024-05-16T10:17:49.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.768000", - "Timestamp": "2019-10-15T18:39:45.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.116100", + "Timestamp": "2024-05-16T10:17:49.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "7.712000", - "Timestamp": "2019-10-15T18:39:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.991100", + "Timestamp": "2024-05-16T10:17:49.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "vt1.6xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.081000", - "Timestamp": "2019-10-15T18:38:40.000Z" + "SpotPrice": "0.816000", + "Timestamp": "2024-05-16T10:17:49.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "vt1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.786000", + "Timestamp": "2024-05-16T10:17:49.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "vt1.6xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.021000", - "Timestamp": "2019-10-15T18:38:40.000Z" + "SpotPrice": "0.686000", + "Timestamp": "2024-05-16T10:17:49.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.283900", - "Timestamp": "2019-10-15T18:35:47.000Z" + "SpotPrice": "0.205900", + "Timestamp": "2024-05-16T10:17:49.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.202200", + "Timestamp": "2024-05-16T10:17:49.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.153900", - "Timestamp": "2019-10-15T18:35:47.000Z" + "SpotPrice": "0.145900", + "Timestamp": "2024-05-16T10:17:49.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.793300", - "Timestamp": "2019-10-15T18:35:07.000Z" + "SpotPrice": "0.847800", + "Timestamp": "2024-05-16T10:17:49.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.842800", + "Timestamp": "2024-05-16T10:17:49.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.663300", - "Timestamp": "2019-10-15T18:35:07.000Z" + "SpotPrice": "0.717800", + "Timestamp": "2024-05-16T10:17:49.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "x1e.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i2.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.555000", - "Timestamp": "2019-10-15T18:27:18.000Z" + "SpotPrice": "3.472800", + "Timestamp": "2024-05-16T10:17:48.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.599500", - "Timestamp": "2019-10-15T18:26:43.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.162600", + "Timestamp": "2024-05-16T10:17:47.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.469500", - "Timestamp": "2019-10-15T18:26:43.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.478400", + "Timestamp": "2024-05-16T10:17:46.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.307400", - "Timestamp": "2019-10-15T18:18:18.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g3s.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.474400", + "Timestamp": "2024-05-16T10:17:46.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g3s.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.177400", - "Timestamp": "2019-10-15T18:18:18.000Z" + "SpotPrice": "0.418400", + "Timestamp": "2024-05-16T10:17:46.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.332900", - "Timestamp": "2019-10-15T18:18:09.000Z" - }, - { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.202900", - "Timestamp": "2019-10-15T18:18:09.000Z" + "SpotPrice": "0.928800", + "Timestamp": "2024-05-16T10:17:46.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-15T18:13:22.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.923800", + "Timestamp": "2024-05-16T10:17:46.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-15T18:13:22.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.798800", + "Timestamp": "2024-05-16T10:17:46.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-15T18:13:22.000Z" + "SpotPrice": "2.272200", + "Timestamp": "2024-05-16T10:17:46.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-15T18:13:22.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.267200", + "Timestamp": "2024-05-16T10:17:46.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-15T18:13:22.000Z" + "SpotPrice": "2.142200", + "Timestamp": "2024-05-16T10:17:46.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-15T18:13:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.972000", + "Timestamp": "2024-05-16T10:17:45.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r4.large", "ProductDescription": "Windows", - "SpotPrice": "4.441600", - "Timestamp": "2019-10-15T18:13:22.000Z" + "SpotPrice": "0.143200", + "Timestamp": "2024-05-16T10:17:45.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.441600", - "Timestamp": "2019-10-15T18:13:22.000Z" + "SpotPrice": "2.336300", + "Timestamp": "2024-05-16T10:17:45.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.441600", - "Timestamp": "2019-10-15T18:13:22.000Z" + "SpotPrice": "2.288400", + "Timestamp": "2024-05-16T10:17:45.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.112900", - "Timestamp": "2019-10-15T18:11:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.078200", + "Timestamp": "2024-05-16T10:17:45.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.112900", - "Timestamp": "2019-10-15T18:11:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.073200", + "Timestamp": "2024-05-16T10:17:45.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.112900", - "Timestamp": "2019-10-15T18:11:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.948200", + "Timestamp": "2024-05-16T10:17:45.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.080900", - "Timestamp": "2019-10-15T18:11:29.000Z" + "SpotPrice": "3.872300", + "Timestamp": "2024-05-16T10:17:45.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.867300", + "Timestamp": "2024-05-16T10:17:45.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.742300", + "Timestamp": "2024-05-16T10:17:45.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r4.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.080900", - "Timestamp": "2019-10-15T18:11:29.000Z" + "SpotPrice": "1.082500", + "Timestamp": "2024-05-16T10:17:45.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r4.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.080900", - "Timestamp": "2019-10-15T18:11:29.000Z" + "SpotPrice": "1.019400", + "Timestamp": "2024-05-16T10:17:45.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5n.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.020900", - "Timestamp": "2019-10-15T18:11:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.052500", + "Timestamp": "2024-05-16T10:17:45.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5n.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.020900", - "Timestamp": "2019-10-15T18:11:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.989400", + "Timestamp": "2024-05-16T10:17:45.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r4.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.020900", - "Timestamp": "2019-10-15T18:11:29.000Z" + "SpotPrice": "0.952500", + "Timestamp": "2024-05-16T10:17:45.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.688600", - "Timestamp": "2019-10-15T18:10:11.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.889400", + "Timestamp": "2024-05-16T10:17:45.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1e.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.284500", - "Timestamp": "2019-10-15T18:09:58.000Z" + "SpotPrice": "8.318600", + "Timestamp": "2024-05-16T10:17:45.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061800", - "Timestamp": "2019-10-15T18:05:35.000Z" + "SpotPrice": "0.227000", + "Timestamp": "2024-05-16T10:17:44.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.223300", + "Timestamp": "2024-05-16T10:17:44.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001800", - "Timestamp": "2019-10-15T18:05:35.000Z" + "SpotPrice": "0.167000", + "Timestamp": "2024-05-16T10:17:44.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.432400", - "Timestamp": "2019-10-15T18:01:45.000Z" + "SpotPrice": "0.663200", + "Timestamp": "2024-05-16T10:17:44.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.658200", + "Timestamp": "2024-05-16T10:17:44.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.302400", - "Timestamp": "2019-10-15T18:01:45.000Z" + "SpotPrice": "0.533200", + "Timestamp": "2024-05-16T10:17:44.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.220900", - "Timestamp": "2019-10-15T17:53:05.000Z" + "SpotPrice": "0.859500", + "Timestamp": "2024-05-16T10:17:44.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.829500", + "Timestamp": "2024-05-16T10:17:44.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.090900", - "Timestamp": "2019-10-15T17:53:05.000Z" + "SpotPrice": "0.729500", + "Timestamp": "2024-05-16T10:17:44.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.720500", - "Timestamp": "2019-10-15T17:53:03.000Z" + "SpotPrice": "1.387200", + "Timestamp": "2024-05-16T10:17:44.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.590500", - "Timestamp": "2019-10-15T17:53:03.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.382200", + "Timestamp": "2024-05-16T10:17:44.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.112000", - "Timestamp": "2019-10-15T17:52:06.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.257200", + "Timestamp": "2024-05-16T10:17:44.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.709700", - "Timestamp": "2019-10-15T17:51:34.000Z" + "SpotPrice": "2.427200", + "Timestamp": "2024-05-16T10:17:44.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.709700", - "Timestamp": "2019-10-15T17:51:34.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.436100", + "Timestamp": "2024-05-16T10:17:43.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.709700", - "Timestamp": "2019-10-15T17:51:34.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.431100", + "Timestamp": "2024-05-16T10:17:43.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.631700", - "Timestamp": "2019-10-15T17:50:32.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.306100", + "Timestamp": "2024-05-16T10:17:43.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.631700", - "Timestamp": "2019-10-15T17:50:32.000Z" + "SpotPrice": "0.412000", + "Timestamp": "2024-05-16T10:17:43.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.631700", - "Timestamp": "2019-10-15T17:50:32.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.407000", + "Timestamp": "2024-05-16T10:17:43.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.501700", - "Timestamp": "2019-10-15T17:50:32.000Z" + "SpotPrice": "0.282000", + "Timestamp": "2024-05-16T10:17:43.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.501700", - "Timestamp": "2019-10-15T17:50:32.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.308600", + "Timestamp": "2024-05-16T10:17:43.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.278600", + "Timestamp": "2024-05-16T10:17:43.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.501700", - "Timestamp": "2019-10-15T17:50:32.000Z" + "SpotPrice": "0.178600", + "Timestamp": "2024-05-16T10:17:43.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.124800", - "Timestamp": "2019-10-15T17:50:07.000Z" + "SpotPrice": "4.504400", + "Timestamp": "2024-05-16T10:17:43.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.124800", - "Timestamp": "2019-10-15T17:50:07.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.829100", + "Timestamp": "2024-05-16T10:17:43.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.124800", - "Timestamp": "2019-10-15T17:50:07.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.799100", + "Timestamp": "2024-05-16T10:17:43.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.782800", - "Timestamp": "2019-10-15T17:49:23.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.699100", + "Timestamp": "2024-05-16T10:17:43.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.782800", - "Timestamp": "2019-10-15T17:49:23.000Z" + "SpotPrice": "1.753200", + "Timestamp": "2024-05-16T10:17:43.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.782800", - "Timestamp": "2019-10-15T17:49:23.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.748200", + "Timestamp": "2024-05-16T10:17:43.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.652800", - "Timestamp": "2019-10-15T17:49:23.000Z" + "SpotPrice": "1.623200", + "Timestamp": "2024-05-16T10:17:43.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.652800", - "Timestamp": "2019-10-15T17:49:23.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.277500", + "Timestamp": "2024-05-16T10:17:43.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.652800", - "Timestamp": "2019-10-15T17:49:23.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.272500", + "Timestamp": "2024-05-16T10:17:43.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.225600", - "Timestamp": "2019-10-15T17:44:52.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147500", + "Timestamp": "2024-05-16T10:17:43.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.220100", - "Timestamp": "2019-10-15T17:44:42.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093200", + "Timestamp": "2024-05-16T10:17:42.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.220100", - "Timestamp": "2019-10-15T17:44:42.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089500", + "Timestamp": "2024-05-16T10:17:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.220100", - "Timestamp": "2019-10-15T17:44:42.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033200", + "Timestamp": "2024-05-16T10:17:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.079000", - "Timestamp": "2019-10-15T17:44:40.000Z" + "SpotPrice": "0.165500", + "Timestamp": "2024-05-16T10:17:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161500", + "Timestamp": "2024-05-16T10:17:42.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.019000", - "Timestamp": "2019-10-15T17:44:40.000Z" + "SpotPrice": "0.105500", + "Timestamp": "2024-05-16T10:17:42.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.202800", + "Timestamp": "2024-05-16T10:17:42.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.787300", - "Timestamp": "2019-10-15T17:37:03.000Z" + "SpotPrice": "1.247800", + "Timestamp": "2024-05-16T10:17:42.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.217800", + "Timestamp": "2024-05-16T10:17:42.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r3.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.657300", - "Timestamp": "2019-10-15T17:37:03.000Z" + "SpotPrice": "1.117800", + "Timestamp": "2024-05-16T10:17:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7gd.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.213600", - "Timestamp": "2019-10-15T17:36:34.000Z" + "SpotPrice": "0.558000", + "Timestamp": "2024-05-16T10:17:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.083600", - "Timestamp": "2019-10-15T17:36:34.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.553000", + "Timestamp": "2024-05-16T10:17:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.225800", - "Timestamp": "2019-10-15T17:30:01.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.428000", + "Timestamp": "2024-05-16T10:17:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.481500", - "Timestamp": "2019-10-15T17:28:51.000Z" + "SpotPrice": "0.360400", + "Timestamp": "2024-05-16T10:17:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.330400", + "Timestamp": "2024-05-16T10:17:42.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.351500", - "Timestamp": "2019-10-15T17:28:51.000Z" + "SpotPrice": "0.230400", + "Timestamp": "2024-05-16T10:17:42.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.638600", - "Timestamp": "2019-10-15T17:28:19.000Z" + "SpotPrice": "0.300200", + "Timestamp": "2024-05-16T10:17:42.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.508600", - "Timestamp": "2019-10-15T17:28:19.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.295200", + "Timestamp": "2024-05-16T10:17:42.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "a1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.169400", - "Timestamp": "2019-10-15T17:22:38.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170200", + "Timestamp": "2024-05-16T10:17:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "a1.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t2.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.169400", - "Timestamp": "2019-10-15T17:22:38.000Z" + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T10:17:42.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "a1.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.039400", - "Timestamp": "2019-10-15T17:22:38.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143300", + "Timestamp": "2024-05-16T10:17:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "a1.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t2.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.039400", - "Timestamp": "2019-10-15T17:22:38.000Z" + "SpotPrice": "0.043300", + "Timestamp": "2024-05-16T10:17:42.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.241400", - "Timestamp": "2019-10-15T17:22:31.000Z" + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T10:17:42.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.241400", - "Timestamp": "2019-10-15T17:22:31.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-16T10:17:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.241400", - "Timestamp": "2019-10-15T17:22:31.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045700", + "Timestamp": "2024-05-16T10:17:42.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.111400", - "Timestamp": "2019-10-15T17:22:31.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.320200", + "Timestamp": "2024-05-16T10:17:41.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.111400", - "Timestamp": "2019-10-15T17:22:31.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.315200", + "Timestamp": "2024-05-16T10:17:41.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.111400", - "Timestamp": "2019-10-15T17:22:31.000Z" + "SpotPrice": "0.190200", + "Timestamp": "2024-05-16T10:17:41.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127800", - "Timestamp": "2019-10-15T17:22:18.000Z" + "SpotPrice": "0.161500", + "Timestamp": "2024-05-16T10:17:41.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3en.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127800", - "Timestamp": "2019-10-15T17:22:18.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157800", + "Timestamp": "2024-05-16T10:17:41.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3en.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127800", - "Timestamp": "2019-10-15T17:22:18.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101500", + "Timestamp": "2024-05-16T10:17:41.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3en.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067800", - "Timestamp": "2019-10-15T17:22:18.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.087700", + "Timestamp": "2024-05-16T10:17:41.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3en.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067800", - "Timestamp": "2019-10-15T17:22:18.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.082700", + "Timestamp": "2024-05-16T10:17:41.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067800", - "Timestamp": "2019-10-15T17:22:18.000Z" + "SpotPrice": "0.957700", + "Timestamp": "2024-05-16T10:17:41.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.159800", - "Timestamp": "2019-10-15T17:22:09.000Z" + "SpotPrice": "0.308300", + "Timestamp": "2024-05-16T10:17:40.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3en.large", - "ProductDescription": "Windows", - "SpotPrice": "0.159800", - "Timestamp": "2019-10-15T17:22:09.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.195000", + "Timestamp": "2024-05-16T10:17:39.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.191300", + "Timestamp": "2024-05-16T10:17:39.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.135000", + "Timestamp": "2024-05-16T10:17:39.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "g3.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.159800", - "Timestamp": "2019-10-15T17:22:09.000Z" + "SpotPrice": "4.747900", + "Timestamp": "2024-05-16T10:17:39.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.209800", - "Timestamp": "2019-10-15T17:22:05.000Z" + "SpotPrice": "1.003100", + "Timestamp": "2024-05-16T10:17:39.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.998100", + "Timestamp": "2024-05-16T10:17:39.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.079800", - "Timestamp": "2019-10-15T17:22:05.000Z" + "SpotPrice": "0.873100", + "Timestamp": "2024-05-16T10:17:39.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.447800", - "Timestamp": "2019-10-15T17:21:40.000Z" + "SpotPrice": "0.258500", + "Timestamp": "2024-05-16T10:17:38.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.metal", "ProductDescription": "Windows", - "SpotPrice": "0.173400", - "Timestamp": "2019-10-15T17:20:40.000Z" + "SpotPrice": "6.866600", + "Timestamp": "2024-05-16T10:17:38.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.metal-32xl", "ProductDescription": "Windows", - "SpotPrice": "0.173400", - "Timestamp": "2019-10-15T17:20:40.000Z" + "SpotPrice": "9.450700", + "Timestamp": "2024-05-16T10:17:37.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.173400", - "Timestamp": "2019-10-15T17:20:40.000Z" + "SpotPrice": "8.438700", + "Timestamp": "2024-05-16T10:17:36.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.100200", - "Timestamp": "2019-10-15T17:20:27.000Z" + "SpotPrice": "0.874500", + "Timestamp": "2024-05-16T10:17:35.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.040200", - "Timestamp": "2019-10-15T17:20:27.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.869500", + "Timestamp": "2024-05-16T10:17:35.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.978500", - "Timestamp": "2019-10-15T17:20:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.744500", + "Timestamp": "2024-05-16T10:17:35.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.848500", - "Timestamp": "2019-10-15T17:20:24.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.065100", + "Timestamp": "2024-05-16T10:17:34.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.502400", - "Timestamp": "2019-10-15T17:20:16.000Z" + "SpotPrice": "0.810300", + "Timestamp": "2024-05-16T10:17:34.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.805300", + "Timestamp": "2024-05-16T10:17:34.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.372400", - "Timestamp": "2019-10-15T17:20:16.000Z" + "SpotPrice": "0.680300", + "Timestamp": "2024-05-16T10:17:34.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.372800", - "Timestamp": "2019-10-15T17:19:34.000Z" + "SpotPrice": "1.346100", + "Timestamp": "2024-05-16T10:17:34.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.341100", + "Timestamp": "2024-05-16T10:17:34.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.312800", - "Timestamp": "2019-10-15T17:19:34.000Z" + "SpotPrice": "1.216100", + "Timestamp": "2024-05-16T10:17:34.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.798900", - "Timestamp": "2019-10-15T17:15:12.000Z" + "SpotPrice": "1.289400", + "Timestamp": "2024-05-16T10:17:34.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.668900", - "Timestamp": "2019-10-15T17:15:12.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.284400", + "Timestamp": "2024-05-16T10:17:34.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.552100", - "Timestamp": "2019-10-15T17:14:02.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.159400", + "Timestamp": "2024-05-16T10:17:34.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3en.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.552100", - "Timestamp": "2019-10-15T17:14:02.000Z" + "SpotPrice": "5.593000", + "Timestamp": "2024-05-16T10:17:34.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.552100", - "Timestamp": "2019-10-15T17:14:02.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.555000", + "Timestamp": "2024-05-16T10:17:33.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.295500", - "Timestamp": "2019-10-15T17:11:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.550000", + "Timestamp": "2024-05-16T10:17:33.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.165500", - "Timestamp": "2019-10-15T17:11:56.000Z" + "SpotPrice": "4.425000", + "Timestamp": "2024-05-16T10:17:33.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t2.small", - "ProductDescription": "Windows", - "SpotPrice": "0.015900", - "Timestamp": "2019-10-15T17:11:05.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.559100", + "Timestamp": "2024-05-16T10:17:33.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t2.small", - "ProductDescription": "Windows", - "SpotPrice": "0.015900", - "Timestamp": "2019-10-15T17:11:05.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.554100", + "Timestamp": "2024-05-16T10:17:33.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t2.small", - "ProductDescription": "Windows", - "SpotPrice": "0.015900", - "Timestamp": "2019-10-15T17:11:05.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.429100", + "Timestamp": "2024-05-16T10:17:33.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i-flex.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066900", - "Timestamp": "2019-10-15T17:10:54.000Z" + "SpotPrice": "0.348300", + "Timestamp": "2024-05-16T10:17:33.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t2.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066900", - "Timestamp": "2019-10-15T17:10:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343300", + "Timestamp": "2024-05-16T10:17:33.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.218300", + "Timestamp": "2024-05-16T10:17:33.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r4.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066900", - "Timestamp": "2019-10-15T17:10:54.000Z" + "SpotPrice": "0.442800", + "Timestamp": "2024-05-16T10:17:33.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t2.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006900", - "Timestamp": "2019-10-15T17:10:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.412800", + "Timestamp": "2024-05-16T10:17:33.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r4.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006900", - "Timestamp": "2019-10-15T17:10:54.000Z" + "SpotPrice": "0.312800", + "Timestamp": "2024-05-16T10:17:33.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t2.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006900", - "Timestamp": "2019-10-15T17:10:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149000", + "Timestamp": "2024-05-16T10:17:32.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.635000", - "Timestamp": "2019-10-15T17:10:37.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145000", + "Timestamp": "2024-05-16T10:17:32.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.635000", - "Timestamp": "2019-10-15T17:10:37.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089000", + "Timestamp": "2024-05-16T10:17:32.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.635000", - "Timestamp": "2019-10-15T17:10:37.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122400", + "Timestamp": "2024-05-16T10:17:32.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.451600", - "Timestamp": "2019-10-15T17:10:04.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118400", + "Timestamp": "2024-05-16T10:17:32.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.451600", - "Timestamp": "2019-10-15T17:10:04.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062400", + "Timestamp": "2024-05-16T10:17:32.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.451600", - "Timestamp": "2019-10-15T17:10:04.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.467800", + "Timestamp": "2024-05-16T10:17:32.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.903200", - "Timestamp": "2019-10-15T17:10:01.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.437800", + "Timestamp": "2024-05-16T10:17:32.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.664100", - "Timestamp": "2019-10-15T17:09:59.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.337800", + "Timestamp": "2024-05-16T10:17:32.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.664100", - "Timestamp": "2019-10-15T17:09:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.308200", + "Timestamp": "2024-05-16T10:17:32.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.664100", - "Timestamp": "2019-10-15T17:09:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.278200", + "Timestamp": "2024-05-16T10:17:32.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.586100", - "Timestamp": "2019-10-15T17:09:44.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.178200", + "Timestamp": "2024-05-16T10:17:32.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.586100", - "Timestamp": "2019-10-15T17:09:44.000Z" + "SpotPrice": "0.455100", + "Timestamp": "2024-05-16T10:17:32.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.586100", - "Timestamp": "2019-10-15T17:09:44.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.450100", + "Timestamp": "2024-05-16T10:17:32.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.456100", - "Timestamp": "2019-10-15T17:09:44.000Z" + "SpotPrice": "0.325100", + "Timestamp": "2024-05-16T10:17:32.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.456100", - "Timestamp": "2019-10-15T17:09:44.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.399300", + "Timestamp": "2024-05-16T10:17:32.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.394300", + "Timestamp": "2024-05-16T10:17:32.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.456100", - "Timestamp": "2019-10-15T17:09:44.000Z" + "SpotPrice": "0.269300", + "Timestamp": "2024-05-16T10:17:32.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.029700", - "Timestamp": "2019-10-15T17:09:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.523800", + "Timestamp": "2024-05-16T10:17:31.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.029700", - "Timestamp": "2019-10-15T17:09:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.493800", + "Timestamp": "2024-05-16T10:17:31.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.029700", - "Timestamp": "2019-10-15T17:09:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.393800", + "Timestamp": "2024-05-16T10:17:31.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "p2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.454000", - "Timestamp": "2019-10-15T17:09:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.582700", + "Timestamp": "2024-05-16T10:17:31.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "p2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.454000", - "Timestamp": "2019-10-15T17:09:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.579000", + "Timestamp": "2024-05-16T10:17:31.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "p2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.454000", - "Timestamp": "2019-10-15T17:09:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.522700", + "Timestamp": "2024-05-16T10:17:31.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.metal-48xl", "ProductDescription": "Windows", - "SpotPrice": "0.447800", - "Timestamp": "2019-10-15T17:09:29.000Z" + "SpotPrice": "12.441600", + "Timestamp": "2024-05-16T10:17:31.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.447800", - "Timestamp": "2019-10-15T17:09:29.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134800", + "Timestamp": "2024-05-16T10:17:31.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.447800", - "Timestamp": "2019-10-15T17:09:29.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130800", + "Timestamp": "2024-05-16T10:17:31.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-15T17:09:22.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074800", + "Timestamp": "2024-05-16T10:17:31.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3a.medium", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3en.6xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-15T17:09:22.000Z" + "SpotPrice": "1.478800", + "Timestamp": "2024-05-16T10:17:31.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-15T17:09:22.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.473800", + "Timestamp": "2024-05-16T10:17:31.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3a.medium", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3en.6xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.011300", - "Timestamp": "2019-10-15T17:09:22.000Z" + "SpotPrice": "1.348800", + "Timestamp": "2024-05-16T10:17:31.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.011300", - "Timestamp": "2019-10-15T17:09:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.452000", + "Timestamp": "2024-05-16T10:17:31.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.011300", - "Timestamp": "2019-10-15T17:09:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.422000", + "Timestamp": "2024-05-16T10:17:31.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5dn.large", - "ProductDescription": "Windows", - "SpotPrice": "0.112000", - "Timestamp": "2019-10-15T17:08:26.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.322000", + "Timestamp": "2024-05-16T10:17:31.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.220200", - "Timestamp": "2019-10-15T17:08:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.410300", + "Timestamp": "2024-05-16T10:17:31.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.220200", - "Timestamp": "2019-10-15T17:08:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.405300", + "Timestamp": "2024-05-16T10:17:31.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.220200", - "Timestamp": "2019-10-15T17:08:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.280300", + "Timestamp": "2024-05-16T10:17:31.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3.micro", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.213600", - "Timestamp": "2019-10-15T17:07:41.000Z" + "SpotPrice": "0.064400", + "Timestamp": "2024-05-16T10:17:30.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.083600", - "Timestamp": "2019-10-15T17:07:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004400", + "Timestamp": "2024-05-16T10:17:30.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.544000", - "Timestamp": "2019-10-15T17:07:37.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004400", + "Timestamp": "2024-05-16T10:17:30.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.544000", - "Timestamp": "2019-10-15T17:07:37.000Z" + "SpotPrice": "0.143700", + "Timestamp": "2024-05-16T10:17:25.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.544000", - "Timestamp": "2019-10-15T17:07:37.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139700", + "Timestamp": "2024-05-16T10:17:25.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.414000", - "Timestamp": "2019-10-15T17:07:37.000Z" + "SpotPrice": "0.083700", + "Timestamp": "2024-05-16T10:17:25.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.414000", - "Timestamp": "2019-10-15T17:07:37.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.304300", + "Timestamp": "2024-05-16T10:17:24.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.414000", - "Timestamp": "2019-10-15T17:07:37.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.299300", + "Timestamp": "2024-05-16T10:17:24.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.376000", - "Timestamp": "2019-10-15T17:06:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.174300", + "Timestamp": "2024-05-16T10:17:24.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.376000", - "Timestamp": "2019-10-15T17:06:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.692500", + "Timestamp": "2024-05-16T10:17:24.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.376000", - "Timestamp": "2019-10-15T17:06:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.662500", + "Timestamp": "2024-05-16T10:17:24.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.144000", - "Timestamp": "2019-10-15T17:06:50.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.562500", + "Timestamp": "2024-05-16T10:17:24.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.metal", "ProductDescription": "Windows", - "SpotPrice": "0.144000", - "Timestamp": "2019-10-15T17:06:50.000Z" + "SpotPrice": "6.453900", + "Timestamp": "2024-05-16T10:17:24.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.144000", - "Timestamp": "2019-10-15T17:06:50.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.371200", + "Timestamp": "2024-05-16T10:03:42.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.112900", - "Timestamp": "2019-10-15T17:06:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.411200", + "Timestamp": "2024-05-16T10:03:42.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.112900", - "Timestamp": "2019-10-15T17:06:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.311200", + "Timestamp": "2024-05-16T10:03:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.112900", - "Timestamp": "2019-10-15T17:06:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.196500", + "Timestamp": "2024-05-16T10:03:41.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012300", - "Timestamp": "2019-10-15T17:06:30.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192800", + "Timestamp": "2024-05-16T10:03:41.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012300", - "Timestamp": "2019-10-15T17:06:30.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136500", + "Timestamp": "2024-05-16T10:03:41.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012300", - "Timestamp": "2019-10-15T17:06:30.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.519400", + "Timestamp": "2024-05-16T10:03:39.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5n.metal", - "ProductDescription": "Windows", - "SpotPrice": "4.224200", - "Timestamp": "2019-10-15T17:06:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.514400", + "Timestamp": "2024-05-16T10:03:39.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5n.metal", - "ProductDescription": "Windows", - "SpotPrice": "4.224200", - "Timestamp": "2019-10-15T17:06:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.389400", + "Timestamp": "2024-05-16T10:03:39.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5n.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.224200", - "Timestamp": "2019-10-15T17:06:28.000Z" + "SpotPrice": "2.411100", + "Timestamp": "2024-05-16T10:03:39.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5n.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.034000", - "Timestamp": "2019-10-15T17:06:26.000Z" + "SpotPrice": "0.151500", + "Timestamp": "2024-05-16T10:03:37.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.034000", - "Timestamp": "2019-10-15T17:06:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147800", + "Timestamp": "2024-05-16T10:03:37.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5n.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091500", + "Timestamp": "2024-05-16T10:03:37.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.034000", - "Timestamp": "2019-10-15T17:06:26.000Z" + "SpotPrice": "3.870800", + "Timestamp": "2024-05-16T10:03:36.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.904000", - "Timestamp": "2019-10-15T17:06:26.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.865800", + "Timestamp": "2024-05-16T10:03:36.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5n.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.904000", - "Timestamp": "2019-10-15T17:06:26.000Z" + "SpotPrice": "3.740800", + "Timestamp": "2024-05-16T10:03:36.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.904000", - "Timestamp": "2019-10-15T17:06:26.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.586700", + "Timestamp": "2024-05-16T10:03:34.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "h1.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "p3dn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.450000", - "Timestamp": "2019-10-15T17:06:26.000Z" + "SpotPrice": "12.577000", + "Timestamp": "2024-05-16T10:03:32.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "h1.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "p3dn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.450000", - "Timestamp": "2019-10-15T17:06:26.000Z" + "SpotPrice": "13.777500", + "Timestamp": "2024-05-16T10:03:32.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "h1.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.320000", - "Timestamp": "2019-10-15T17:06:26.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "12.572000", + "Timestamp": "2024-05-16T10:03:32.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "h1.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.320000", - "Timestamp": "2019-10-15T17:06:26.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "13.772500", + "Timestamp": "2024-05-16T10:03:32.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "h1.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.264000", - "Timestamp": "2019-10-15T17:06:26.000Z" - }, - { - "AvailabilityZone": "us-east-2b", - "InstanceType": "h1.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.264000", - "Timestamp": "2019-10-15T17:06:26.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "12.447000", + "Timestamp": "2024-05-16T10:03:32.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.222000", - "Timestamp": "2019-10-15T17:06:21.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "13.647500", + "Timestamp": "2024-05-16T10:03:32.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.metal", "ProductDescription": "Windows", - "SpotPrice": "0.222000", - "Timestamp": "2019-10-15T17:06:21.000Z" + "SpotPrice": "7.455800", + "Timestamp": "2024-05-16T10:03:31.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "z1d.metal", "ProductDescription": "Windows", - "SpotPrice": "0.222000", - "Timestamp": "2019-10-15T17:06:21.000Z" + "SpotPrice": "3.971500", + "Timestamp": "2024-05-16T10:03:31.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "a1.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.079700", - "Timestamp": "2019-10-15T17:06:17.000Z" + "SpotPrice": "0.903800", + "Timestamp": "2024-05-16T10:03:31.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "a1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.079700", - "Timestamp": "2019-10-15T17:06:17.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.898800", + "Timestamp": "2024-05-16T10:03:31.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "a1.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.019700", - "Timestamp": "2019-10-15T17:06:17.000Z" + "SpotPrice": "0.773800", + "Timestamp": "2024-05-16T10:03:31.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "a1.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.019700", - "Timestamp": "2019-10-15T17:06:17.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.148700", + "Timestamp": "2024-05-16T10:03:31.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.080900", - "Timestamp": "2019-10-15T17:06:11.000Z" + "SpotPrice": "0.165600", + "Timestamp": "2024-05-16T10:03:30.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.080900", - "Timestamp": "2019-10-15T17:06:11.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161900", + "Timestamp": "2024-05-16T10:03:30.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T10:03:30.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2idn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.080900", - "Timestamp": "2019-10-15T17:06:11.000Z" + "SpotPrice": "4.829200", + "Timestamp": "2024-05-16T10:03:30.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.020900", - "Timestamp": "2019-10-15T17:06:11.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.824200", + "Timestamp": "2024-05-16T10:03:30.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2idn.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.020900", - "Timestamp": "2019-10-15T17:06:11.000Z" + "SpotPrice": "4.699200", + "Timestamp": "2024-05-16T10:03:30.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.020900", - "Timestamp": "2019-10-15T17:06:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.563600", + "Timestamp": "2024-05-16T10:03:29.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.079100", - "Timestamp": "2019-10-15T17:05:47.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.619800", + "Timestamp": "2024-05-16T10:03:28.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.019100", - "Timestamp": "2019-10-15T17:05:47.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.535600", + "Timestamp": "2024-05-16T10:03:28.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063100", - "Timestamp": "2019-10-15T17:05:45.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.308700", + "Timestamp": "2024-05-16T10:03:26.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063100", - "Timestamp": "2019-10-15T17:05:45.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.244700", + "Timestamp": "2024-05-16T10:03:26.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.763300", + "Timestamp": "2024-05-16T10:03:25.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "p3.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063100", - "Timestamp": "2019-10-15T17:05:45.000Z" + "SpotPrice": "9.942900", + "Timestamp": "2024-05-16T10:03:25.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003100", - "Timestamp": "2019-10-15T17:05:45.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "9.912900", + "Timestamp": "2024-05-16T10:03:25.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-1f", + "InstanceType": "p3.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003100", - "Timestamp": "2019-10-15T17:05:45.000Z" + "SpotPrice": "9.812900", + "Timestamp": "2024-05-16T10:03:25.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003100", - "Timestamp": "2019-10-15T17:05:45.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.382600", + "Timestamp": "2024-05-16T10:03:24.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5n.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.042200", - "Timestamp": "2019-10-15T17:05:37.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.526700", + "Timestamp": "2024-05-16T10:03:24.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5n.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.042200", - "Timestamp": "2019-10-15T17:05:37.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.511200", + "Timestamp": "2024-05-16T10:03:24.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5n.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.042200", - "Timestamp": "2019-10-15T17:05:37.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.132600", + "Timestamp": "2024-05-16T10:03:24.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5n.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.912200", - "Timestamp": "2019-10-15T17:05:37.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.145600", + "Timestamp": "2024-05-16T10:03:23.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5n.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.912200", - "Timestamp": "2019-10-15T17:05:37.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.115600", + "Timestamp": "2024-05-16T10:03:23.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5n.metal", + "AvailabilityZone": "us-east-1e", + "InstanceType": "g3.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.912200", - "Timestamp": "2019-10-15T17:05:37.000Z" + "SpotPrice": "1.015600", + "Timestamp": "2024-05-16T10:03:23.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.333200", - "Timestamp": "2019-10-15T17:04:00.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.754500", + "Timestamp": "2024-05-16T10:03:22.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.203200", - "Timestamp": "2019-10-15T17:04:00.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.959500", + "Timestamp": "2024-05-16T10:03:22.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.767200", - "Timestamp": "2019-10-15T17:03:27.000Z" - }, - { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.637200", - "Timestamp": "2019-10-15T17:03:27.000Z" + "SpotPrice": "0.395300", + "Timestamp": "2024-05-16T10:03:22.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.335300", - "Timestamp": "2019-10-15T17:03:20.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.390300", + "Timestamp": "2024-05-16T10:03:22.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.205300", - "Timestamp": "2019-10-15T17:03:20.000Z" + "SpotPrice": "0.265300", + "Timestamp": "2024-05-16T10:03:22.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.895600", - "Timestamp": "2019-10-15T16:59:57.000Z" + "SpotPrice": "0.546300", + "Timestamp": "2024-05-16T10:03:21.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.895600", - "Timestamp": "2019-10-15T16:59:57.000Z" + "SpotPrice": "2.252100", + "Timestamp": "2024-05-16T10:03:21.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.895600", - "Timestamp": "2019-10-15T16:59:57.000Z" + "SpotPrice": "6.068400", + "Timestamp": "2024-05-16T10:03:21.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5dn.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.631700", - "Timestamp": "2019-10-15T16:54:49.000Z" + "SpotPrice": "4.758800", + "Timestamp": "2024-05-16T10:03:21.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.501700", - "Timestamp": "2019-10-15T16:54:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.753800", + "Timestamp": "2024-05-16T10:03:21.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.582500", - "Timestamp": "2019-10-15T16:52:17.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.628800", + "Timestamp": "2024-05-16T10:03:21.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.582500", - "Timestamp": "2019-10-15T16:52:17.000Z" + "SpotPrice": "3.163300", + "Timestamp": "2024-05-16T10:03:20.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.582500", - "Timestamp": "2019-10-15T16:52:17.000Z" + "SpotPrice": "0.601200", + "Timestamp": "2024-05-16T10:03:19.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.536800", - "Timestamp": "2019-10-15T16:51:36.000Z" + "SpotPrice": "0.105100", + "Timestamp": "2024-05-16T10:03:19.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.536800", - "Timestamp": "2019-10-15T16:51:36.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101400", + "Timestamp": "2024-05-16T10:03:19.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.536800", - "Timestamp": "2019-10-15T16:51:36.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045100", + "Timestamp": "2024-05-16T10:03:19.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.406800", - "Timestamp": "2019-10-15T16:51:36.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.042400", + "Timestamp": "2024-05-16T10:03:19.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.406800", - "Timestamp": "2019-10-15T16:51:36.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.037400", + "Timestamp": "2024-05-16T10:03:19.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.406800", - "Timestamp": "2019-10-15T16:51:36.000Z" + "SpotPrice": "5.912400", + "Timestamp": "2024-05-16T10:03:19.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.768500", - "Timestamp": "2019-10-15T16:51:20.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.268700", + "Timestamp": "2024-05-16T10:03:19.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.768500", - "Timestamp": "2019-10-15T16:51:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.048200", + "Timestamp": "2024-05-16T10:03:19.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "a1.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.768500", - "Timestamp": "2019-10-15T16:51:20.000Z" - }, - { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.638500", - "Timestamp": "2019-10-15T16:51:20.000Z" + "SpotPrice": "0.087700", + "Timestamp": "2024-05-16T10:03:18.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.638500", - "Timestamp": "2019-10-15T16:51:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "a1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084000", + "Timestamp": "2024-05-16T10:03:18.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "a1.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.638500", - "Timestamp": "2019-10-15T16:51:20.000Z" - }, - { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.958800", - "Timestamp": "2019-10-15T16:50:10.000Z" + "SpotPrice": "0.027700", + "Timestamp": "2024-05-16T10:03:18.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "r3.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.958800", - "Timestamp": "2019-10-15T16:50:10.000Z" + "SpotPrice": "1.154200", + "Timestamp": "2024-05-16T10:03:18.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.958800", - "Timestamp": "2019-10-15T16:50:10.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.474600", + "Timestamp": "2024-05-16T10:03:17.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.768500", - "Timestamp": "2019-10-15T16:39:13.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.469600", + "Timestamp": "2024-05-16T10:03:17.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.768500", - "Timestamp": "2019-10-15T16:39:13.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.344600", + "Timestamp": "2024-05-16T10:03:17.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.768500", - "Timestamp": "2019-10-15T16:39:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.155100", + "Timestamp": "2024-05-16T10:03:17.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.638500", - "Timestamp": "2019-10-15T16:39:13.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.279600", + "Timestamp": "2024-05-16T10:03:17.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.638500", - "Timestamp": "2019-10-15T16:39:13.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.644200", + "Timestamp": "2024-05-16T10:03:15.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.638500", - "Timestamp": "2019-10-15T16:39:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.655900", + "Timestamp": "2024-05-16T10:03:15.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.806500", - "Timestamp": "2019-10-15T16:38:39.000Z" + "SpotPrice": "2.285700", + "Timestamp": "2024-05-16T10:03:15.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.806500", - "Timestamp": "2019-10-15T16:38:39.000Z" + "SpotPrice": "3.764000", + "Timestamp": "2024-05-16T10:03:15.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.806500", - "Timestamp": "2019-10-15T16:38:39.000Z" + "SpotPrice": "0.276600", + "Timestamp": "2024-05-16T10:03:14.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.289600", - "Timestamp": "2019-10-15T16:38:20.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.038400", + "Timestamp": "2024-05-16T10:03:14.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.289600", - "Timestamp": "2019-10-15T16:38:20.000Z" + "SpotPrice": "0.773500", + "Timestamp": "2024-05-16T10:03:14.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.159600", - "Timestamp": "2019-10-15T16:38:20.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.768500", + "Timestamp": "2024-05-16T10:03:14.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.159600", - "Timestamp": "2019-10-15T16:38:20.000Z" + "SpotPrice": "0.643500", + "Timestamp": "2024-05-16T10:03:14.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.895600", - "Timestamp": "2019-10-15T16:38:11.000Z" + "SpotPrice": "4.614000", + "Timestamp": "2024-05-16T10:03:14.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.metal", "ProductDescription": "Windows", - "SpotPrice": "0.895600", - "Timestamp": "2019-10-15T16:38:11.000Z" + "SpotPrice": "9.932200", + "Timestamp": "2024-05-16T10:03:14.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.464500", - "Timestamp": "2019-10-15T16:37:45.000Z" + "SpotPrice": "4.832600", + "Timestamp": "2024-05-16T10:03:13.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.464500", - "Timestamp": "2019-10-15T16:37:45.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.827600", + "Timestamp": "2024-05-16T10:03:13.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.702600", + "Timestamp": "2024-05-16T10:03:13.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "im4gn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.464500", - "Timestamp": "2019-10-15T16:37:45.000Z" + "SpotPrice": "0.739900", + "Timestamp": "2024-05-16T10:03:12.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.334500", - "Timestamp": "2019-10-15T16:37:45.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.734900", + "Timestamp": "2024-05-16T10:03:12.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "im4gn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.334500", - "Timestamp": "2019-10-15T16:37:45.000Z" + "SpotPrice": "0.609900", + "Timestamp": "2024-05-16T10:03:12.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.334500", - "Timestamp": "2019-10-15T16:37:45.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.799100", + "Timestamp": "2024-05-16T10:03:11.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.582500", - "Timestamp": "2019-10-15T16:37:44.000Z" + "SpotPrice": "0.281000", + "Timestamp": "2024-05-16T10:03:10.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1e.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.582500", - "Timestamp": "2019-10-15T16:37:44.000Z" + "SpotPrice": "0.999600", + "Timestamp": "2024-05-16T10:03:10.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.metal", "ProductDescription": "Windows", - "SpotPrice": "3.582500", - "Timestamp": "2019-10-15T16:37:44.000Z" + "SpotPrice": "6.300600", + "Timestamp": "2024-05-16T10:03:10.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.079000", - "Timestamp": "2019-10-15T16:26:11.000Z" + "SpotPrice": "3.900000", + "Timestamp": "2024-05-16T10:03:10.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.895000", + "Timestamp": "2024-05-16T10:03:10.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.019000", - "Timestamp": "2019-10-15T16:26:11.000Z" + "SpotPrice": "3.770000", + "Timestamp": "2024-05-16T10:03:10.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.277600", - "Timestamp": "2019-10-15T16:12:58.000Z" + "SpotPrice": "0.974700", + "Timestamp": "2024-05-16T10:03:09.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.069700", + "Timestamp": "2024-05-16T10:03:09.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.969700", + "Timestamp": "2024-05-16T10:03:09.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.064700", + "Timestamp": "2024-05-16T10:03:09.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.147600", - "Timestamp": "2019-10-15T16:12:58.000Z" + "SpotPrice": "0.844700", + "Timestamp": "2024-05-16T10:03:09.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.939700", + "Timestamp": "2024-05-16T10:03:09.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.282000", - "Timestamp": "2019-10-15T16:05:12.000Z" + "SpotPrice": "0.426000", + "Timestamp": "2024-05-16T10:03:09.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.422300", + "Timestamp": "2024-05-16T10:03:09.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.152000", - "Timestamp": "2019-10-15T16:05:12.000Z" + "SpotPrice": "0.366000", + "Timestamp": "2024-05-16T10:03:09.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.xlarge", "ProductDescription": "Windows", - "SpotPrice": "10.288000", - "Timestamp": "2019-10-15T16:04:29.000Z" + "SpotPrice": "0.359000", + "Timestamp": "2024-05-16T10:03:08.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "10.288000", - "Timestamp": "2019-10-15T16:04:29.000Z" + "SpotPrice": "4.796600", + "Timestamp": "2024-05-16T10:03:08.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.115700", - "Timestamp": "2019-10-15T16:04:08.000Z" + "SpotPrice": "2.735200", + "Timestamp": "2024-05-16T10:03:07.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.115700", - "Timestamp": "2019-10-15T16:04:08.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.730200", + "Timestamp": "2024-05-16T10:03:07.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.055700", - "Timestamp": "2019-10-15T16:04:08.000Z" + "SpotPrice": "2.605200", + "Timestamp": "2024-05-16T10:03:07.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.055700", - "Timestamp": "2019-10-15T16:04:08.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.686700", + "Timestamp": "2024-05-16T10:03:07.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.096700", - "Timestamp": "2019-10-15T16:04:05.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.681700", + "Timestamp": "2024-05-16T10:03:07.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.096700", - "Timestamp": "2019-10-15T16:04:05.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.556700", + "Timestamp": "2024-05-16T10:03:07.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.096700", - "Timestamp": "2019-10-15T16:04:05.000Z" + "SpotPrice": "2.947600", + "Timestamp": "2024-05-16T10:03:07.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.110400", - "Timestamp": "2019-10-15T16:03:45.000Z" + "SpotPrice": "2.201700", + "Timestamp": "2024-05-16T10:03:07.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.110400", - "Timestamp": "2019-10-15T16:03:45.000Z" + "SpotPrice": "9.125600", + "Timestamp": "2024-05-16T10:03:06.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.110400", - "Timestamp": "2019-10-15T16:03:45.000Z" + "SpotPrice": "1.120100", + "Timestamp": "2024-05-16T10:03:06.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.504400", - "Timestamp": "2019-10-15T16:03:00.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.133300", + "Timestamp": "2024-05-16T10:03:06.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.504400", - "Timestamp": "2019-10-15T16:03:00.000Z" + "SpotPrice": "0.139100", + "Timestamp": "2024-05-16T10:03:06.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.374400", - "Timestamp": "2019-10-15T16:03:00.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135400", + "Timestamp": "2024-05-16T10:03:06.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.374400", - "Timestamp": "2019-10-15T16:03:00.000Z" + "SpotPrice": "0.079100", + "Timestamp": "2024-05-16T10:03:06.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5dn.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.080000", - "Timestamp": "2019-10-15T16:02:09.000Z" + "SpotPrice": "0.136500", + "Timestamp": "2024-05-16T10:03:05.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5dn.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132800", + "Timestamp": "2024-05-16T10:03:05.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.020000", - "Timestamp": "2019-10-15T16:02:09.000Z" + "SpotPrice": "0.076500", + "Timestamp": "2024-05-16T10:03:05.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.608900", - "Timestamp": "2019-10-15T16:01:58.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.573200", + "Timestamp": "2024-05-16T10:03:05.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.478900", - "Timestamp": "2019-10-15T16:01:58.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.567200", + "Timestamp": "2024-05-16T10:03:05.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.087800", - "Timestamp": "2019-10-15T16:01:55.000Z" + "SpotPrice": "0.889200", + "Timestamp": "2024-05-16T10:03:05.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.087800", - "Timestamp": "2019-10-15T16:01:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.859200", + "Timestamp": "2024-05-16T10:03:05.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.759200", + "Timestamp": "2024-05-16T10:03:05.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.087800", - "Timestamp": "2019-10-15T16:01:55.000Z" + "SpotPrice": "1.541100", + "Timestamp": "2024-05-16T10:03:04.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.957800", - "Timestamp": "2019-10-15T16:01:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.536100", + "Timestamp": "2024-05-16T10:03:04.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.957800", - "Timestamp": "2019-10-15T16:01:55.000Z" + "SpotPrice": "1.411100", + "Timestamp": "2024-05-16T10:03:04.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.957800", - "Timestamp": "2019-10-15T16:01:55.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.286300", + "Timestamp": "2024-05-16T10:03:04.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.373800", - "Timestamp": "2019-10-15T16:01:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.296900", + "Timestamp": "2024-05-16T10:03:04.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.373800", - "Timestamp": "2019-10-15T16:01:35.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281300", + "Timestamp": "2024-05-16T10:03:04.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.373800", - "Timestamp": "2019-10-15T16:01:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.291900", + "Timestamp": "2024-05-16T10:03:04.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.904700", - "Timestamp": "2019-10-15T15:56:15.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156300", + "Timestamp": "2024-05-16T10:03:04.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.888000", - "Timestamp": "2019-10-15T15:51:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.166900", + "Timestamp": "2024-05-16T10:03:04.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.888000", - "Timestamp": "2019-10-15T15:51:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134100", + "Timestamp": "2024-05-16T10:03:04.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.888000", - "Timestamp": "2019-10-15T15:51:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130400", + "Timestamp": "2024-05-16T10:03:04.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.895600", - "Timestamp": "2019-10-15T15:51:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074100", + "Timestamp": "2024-05-16T10:03:04.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.895600", - "Timestamp": "2019-10-15T15:51:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.355800", + "Timestamp": "2024-05-16T10:03:04.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.895600", - "Timestamp": "2019-10-15T15:51:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.350800", + "Timestamp": "2024-05-16T10:03:04.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.225800", + "Timestamp": "2024-05-16T10:03:04.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.754800", - "Timestamp": "2019-10-15T15:48:29.000Z" + "SpotPrice": "0.813200", + "Timestamp": "2024-05-16T10:03:03.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.624800", - "Timestamp": "2019-10-15T15:48:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.808200", + "Timestamp": "2024-05-16T10:03:03.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.419400", - "Timestamp": "2019-10-15T15:46:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.683200", + "Timestamp": "2024-05-16T10:03:03.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.373800", - "Timestamp": "2019-10-15T15:45:52.000Z" + "SpotPrice": "8.234500", + "Timestamp": "2024-05-16T10:03:03.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.195600", - "Timestamp": "2019-10-15T15:38:22.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.274700", + "Timestamp": "2024-05-16T10:03:03.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.195600", - "Timestamp": "2019-10-15T15:38:22.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.610700", + "Timestamp": "2024-05-16T10:03:03.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.195600", - "Timestamp": "2019-10-15T15:38:22.000Z" - }, - { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T15:38:22.000Z" + "SpotPrice": "0.875900", + "Timestamp": "2024-05-16T10:03:03.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T15:38:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.870900", + "Timestamp": "2024-05-16T10:03:03.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T15:38:22.000Z" + "SpotPrice": "0.745900", + "Timestamp": "2024-05-16T10:03:03.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5n.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.319600", - "Timestamp": "2019-10-15T15:37:37.000Z" + "SpotPrice": "1.102400", + "Timestamp": "2024-05-16T10:03:02.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.metal", "ProductDescription": "Windows", - "SpotPrice": "0.319600", - "Timestamp": "2019-10-15T15:37:37.000Z" + "SpotPrice": "11.358000", + "Timestamp": "2024-05-16T10:03:02.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.metal", "ProductDescription": "Windows", - "SpotPrice": "0.319600", - "Timestamp": "2019-10-15T15:37:37.000Z" + "SpotPrice": "10.826100", + "Timestamp": "2024-05-16T10:03:02.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5n.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.464500", - "Timestamp": "2019-10-15T15:33:34.000Z" + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T10:03:02.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5n.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.334500", - "Timestamp": "2019-10-15T15:33:34.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T10:03:02.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.215400", - "Timestamp": "2019-10-15T15:31:20.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051000", + "Timestamp": "2024-05-16T10:03:02.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.085400", - "Timestamp": "2019-10-15T15:31:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.188100", + "Timestamp": "2024-05-16T10:03:02.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.081200", - "Timestamp": "2019-10-15T15:23:34.000Z" + "SpotPrice": "5.627300", + "Timestamp": "2024-05-16T10:03:01.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.622300", + "Timestamp": "2024-05-16T10:03:01.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.021200", - "Timestamp": "2019-10-15T15:23:34.000Z" + "SpotPrice": "5.497300", + "Timestamp": "2024-05-16T10:03:01.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.996100", - "Timestamp": "2019-10-15T15:03:47.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.543700", + "Timestamp": "2024-05-16T10:03:01.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.996100", - "Timestamp": "2019-10-15T15:03:47.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.538700", + "Timestamp": "2024-05-16T10:03:01.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.996100", - "Timestamp": "2019-10-15T15:03:47.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.413700", + "Timestamp": "2024-05-16T10:03:01.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "a1.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.069800", - "Timestamp": "2019-10-15T15:03:37.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.086300", + "Timestamp": "2024-05-16T10:03:01.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "a1.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.069800", - "Timestamp": "2019-10-15T15:03:37.000Z" + "SpotPrice": "0.563700", + "Timestamp": "2024-05-16T10:03:01.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "a1.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.009800", - "Timestamp": "2019-10-15T15:03:37.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.558700", + "Timestamp": "2024-05-16T10:03:01.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "a1.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.009800", - "Timestamp": "2019-10-15T15:03:37.000Z" + "SpotPrice": "0.433700", + "Timestamp": "2024-05-16T10:03:01.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.099900", - "Timestamp": "2019-10-15T15:03:33.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.934600", + "Timestamp": "2024-05-16T10:03:01.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5n.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.099900", - "Timestamp": "2019-10-15T15:03:33.000Z" + "SpotPrice": "0.180300", + "Timestamp": "2024-05-16T10:03:01.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.099900", - "Timestamp": "2019-10-15T15:03:33.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.176600", + "Timestamp": "2024-05-16T10:03:01.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5n.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.039900", - "Timestamp": "2019-10-15T15:03:33.000Z" + "SpotPrice": "0.120300", + "Timestamp": "2024-05-16T10:03:01.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.039900", - "Timestamp": "2019-10-15T15:03:33.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.813800", + "Timestamp": "2024-05-16T10:03:00.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5n.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.808800", + "Timestamp": "2024-05-16T10:03:00.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.039900", - "Timestamp": "2019-10-15T15:03:33.000Z" + "SpotPrice": "1.683800", + "Timestamp": "2024-05-16T10:03:00.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5n.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.223900", - "Timestamp": "2019-10-15T15:03:33.000Z" + "SpotPrice": "3.182000", + "Timestamp": "2024-05-16T10:03:00.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5n.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.223900", - "Timestamp": "2019-10-15T15:03:33.000Z" + "SpotPrice": "3.141500", + "Timestamp": "2024-05-16T10:03:00.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5n.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.223900", - "Timestamp": "2019-10-15T15:03:33.000Z" + "SpotPrice": "1.010500", + "Timestamp": "2024-05-16T10:03:00.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.225800", - "Timestamp": "2019-10-15T15:00:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.339100", + "Timestamp": "2024-05-16T10:03:00.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.111000", - "Timestamp": "2019-10-15T14:51:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.309100", + "Timestamp": "2024-05-16T10:03:00.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.111000", - "Timestamp": "2019-10-15T14:51:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.209100", + "Timestamp": "2024-05-16T10:03:00.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.111000", - "Timestamp": "2019-10-15T14:51:10.000Z" + "SpotPrice": "3.741400", + "Timestamp": "2024-05-16T10:03:00.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.903200", - "Timestamp": "2019-10-15T14:51:02.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117800", + "Timestamp": "2024-05-16T10:02:59.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.903200", - "Timestamp": "2019-10-15T14:51:02.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114100", + "Timestamp": "2024-05-16T10:02:59.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057800", + "Timestamp": "2024-05-16T10:02:59.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.large", "ProductDescription": "Windows", - "SpotPrice": "0.903200", - "Timestamp": "2019-10-15T14:51:02.000Z" + "SpotPrice": "0.176500", + "Timestamp": "2024-05-16T10:02:59.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.297200", - "Timestamp": "2019-10-15T14:50:44.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.550400", + "Timestamp": "2024-05-16T10:02:59.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.297200", - "Timestamp": "2019-10-15T14:50:44.000Z" + "SpotPrice": "2.042100", + "Timestamp": "2024-05-16T10:02:59.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.297200", - "Timestamp": "2019-10-15T14:50:44.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.012100", + "Timestamp": "2024-05-16T10:02:59.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.167200", - "Timestamp": "2019-10-15T14:50:44.000Z" + "SpotPrice": "1.912100", + "Timestamp": "2024-05-16T10:02:59.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.167200", - "Timestamp": "2019-10-15T14:50:44.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.998000", + "Timestamp": "2024-05-16T10:02:58.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.993000", + "Timestamp": "2024-05-16T10:02:58.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.167200", - "Timestamp": "2019-10-15T14:50:44.000Z" + "SpotPrice": "0.868000", + "Timestamp": "2024-05-16T10:02:58.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.868400", - "Timestamp": "2019-10-15T14:48:37.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.489800", + "Timestamp": "2024-05-16T10:02:58.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.868400", - "Timestamp": "2019-10-15T14:48:37.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.484800", + "Timestamp": "2024-05-16T10:02:58.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.630400", - "Timestamp": "2019-10-15T14:47:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.359800", + "Timestamp": "2024-05-16T10:02:58.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "x1e.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.630400", - "Timestamp": "2019-10-15T14:47:51.000Z" + "SpotPrice": "2.602600", + "Timestamp": "2024-05-16T10:02:57.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.500400", - "Timestamp": "2019-10-15T14:47:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.597600", + "Timestamp": "2024-05-16T10:02:57.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "x1e.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.500400", - "Timestamp": "2019-10-15T14:47:51.000Z" + "SpotPrice": "2.472600", + "Timestamp": "2024-05-16T10:02:57.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.419400", - "Timestamp": "2019-10-15T14:39:47.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.377000", + "Timestamp": "2024-05-16T10:02:57.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.409000", - "Timestamp": "2019-10-15T14:36:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372000", + "Timestamp": "2024-05-16T10:02:57.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.409000", - "Timestamp": "2019-10-15T14:36:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.247000", + "Timestamp": "2024-05-16T10:02:57.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.409000", - "Timestamp": "2019-10-15T14:36:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.346900", + "Timestamp": "2024-05-16T10:02:57.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.133400", - "Timestamp": "2019-10-15T14:10:18.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.341900", + "Timestamp": "2024-05-16T10:02:57.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.003400", - "Timestamp": "2019-10-15T14:10:18.000Z" + "SpotPrice": "3.216900", + "Timestamp": "2024-05-16T10:02:57.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3a.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061700", - "Timestamp": "2019-10-15T14:05:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.439200", + "Timestamp": "2024-05-16T10:02:56.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3a.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001700", - "Timestamp": "2019-10-15T14:05:55.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.359900", + "Timestamp": "2024-05-16T10:02:55.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.798900", - "Timestamp": "2019-10-15T14:03:36.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.354900", + "Timestamp": "2024-05-16T10:02:55.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.668900", - "Timestamp": "2019-10-15T14:03:36.000Z" + "SpotPrice": "1.229900", + "Timestamp": "2024-05-16T10:02:55.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.084900", - "Timestamp": "2019-10-15T14:03:24.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.390500", + "Timestamp": "2024-05-16T10:02:55.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.084900", - "Timestamp": "2019-10-15T14:03:24.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "i2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.360500", + "Timestamp": "2024-05-16T10:02:55.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.084900", - "Timestamp": "2019-10-15T14:03:24.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.260500", + "Timestamp": "2024-05-16T10:02:55.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "g4dn.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.097200", - "Timestamp": "2019-10-15T13:51:11.000Z" + "SpotPrice": "6.469600", + "Timestamp": "2024-05-16T10:02:55.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g4dn.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.097200", - "Timestamp": "2019-10-15T13:51:11.000Z" + "SpotPrice": "0.314500", + "Timestamp": "2024-05-16T10:02:55.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.097200", - "Timestamp": "2019-10-15T13:51:11.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.179300", + "Timestamp": "2024-05-16T10:02:55.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.491200", - "Timestamp": "2019-10-15T13:51:11.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.174300", + "Timestamp": "2024-05-16T10:02:55.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.491200", - "Timestamp": "2019-10-15T13:51:11.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.049300", + "Timestamp": "2024-05-16T10:02:55.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "g4dn.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "p3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.491200", - "Timestamp": "2019-10-15T13:51:11.000Z" + "SpotPrice": "5.214500", + "Timestamp": "2024-05-16T10:02:55.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.361200", - "Timestamp": "2019-10-15T13:51:11.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.184500", + "Timestamp": "2024-05-16T10:02:55.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g4dn.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "p3.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.361200", - "Timestamp": "2019-10-15T13:51:11.000Z" + "SpotPrice": "5.084500", + "Timestamp": "2024-05-16T10:02:55.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.361200", - "Timestamp": "2019-10-15T13:51:11.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.115900", + "Timestamp": "2024-05-16T10:02:54.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "r3.large", "ProductDescription": "Windows", - "SpotPrice": "0.444000", - "Timestamp": "2019-10-15T13:49:52.000Z" + "SpotPrice": "0.192000", + "Timestamp": "2024-05-16T10:02:54.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.444000", - "Timestamp": "2019-10-15T13:49:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.332800", + "Timestamp": "2024-05-16T10:02:53.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.444000", - "Timestamp": "2019-10-15T13:49:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.302800", + "Timestamp": "2024-05-16T10:02:53.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5dn.large", - "ProductDescription": "Windows", - "SpotPrice": "0.112900", - "Timestamp": "2019-10-15T13:49:42.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.202800", + "Timestamp": "2024-05-16T10:02:53.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.206000", - "Timestamp": "2019-10-15T13:49:23.000Z" + "SpotPrice": "0.912100", + "Timestamp": "2024-05-16T10:02:53.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.076000", - "Timestamp": "2019-10-15T13:49:23.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.916700", + "Timestamp": "2024-05-16T10:02:53.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.080000", - "Timestamp": "2019-10-15T13:46:45.000Z" + "SpotPrice": "0.899100", + "Timestamp": "2024-05-16T10:02:53.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5n.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.020000", - "Timestamp": "2019-10-15T13:46:45.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.907100", + "Timestamp": "2024-05-16T10:02:53.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.225800", - "Timestamp": "2019-10-15T13:45:58.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.911700", + "Timestamp": "2024-05-16T10:02:53.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101100", - "Timestamp": "2019-10-15T13:42:42.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.894100", + "Timestamp": "2024-05-16T10:02:53.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041100", - "Timestamp": "2019-10-15T13:42:42.000Z" + "SpotPrice": "0.782100", + "Timestamp": "2024-05-16T10:02:53.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.081000", - "Timestamp": "2019-10-15T13:26:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.786700", + "Timestamp": "2024-05-16T10:02:53.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.021000", - "Timestamp": "2019-10-15T13:26:40.000Z" + "SpotPrice": "0.769100", + "Timestamp": "2024-05-16T10:02:53.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.225100", + "Timestamp": "2024-05-16T10:02:53.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.100700", - "Timestamp": "2019-10-15T13:17:43.000Z" + "SpotPrice": "2.160700", + "Timestamp": "2024-05-16T10:02:53.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.040700", - "Timestamp": "2019-10-15T13:17:43.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.155700", + "Timestamp": "2024-05-16T10:02:53.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.213600", - "Timestamp": "2019-10-15T13:17:14.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.030700", + "Timestamp": "2024-05-16T10:02:53.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r3.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.213600", - "Timestamp": "2019-10-15T13:17:14.000Z" + "SpotPrice": "0.434200", + "Timestamp": "2024-05-16T10:02:53.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.213600", - "Timestamp": "2019-10-15T13:17:14.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.404200", + "Timestamp": "2024-05-16T10:02:53.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r3.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.083600", - "Timestamp": "2019-10-15T13:17:14.000Z" + "SpotPrice": "0.304200", + "Timestamp": "2024-05-16T10:02:53.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.083600", - "Timestamp": "2019-10-15T13:17:14.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.198700", + "Timestamp": "2024-05-16T10:02:52.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.083600", - "Timestamp": "2019-10-15T13:17:14.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.193700", + "Timestamp": "2024-05-16T10:02:52.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.249600", - "Timestamp": "2019-10-15T13:03:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.068700", + "Timestamp": "2024-05-16T10:02:52.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.249600", - "Timestamp": "2019-10-15T13:03:55.000Z" + "SpotPrice": "8.614900", + "Timestamp": "2024-05-16T10:02:52.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "r4.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.249600", - "Timestamp": "2019-10-15T13:03:55.000Z" + "SpotPrice": "2.344000", + "Timestamp": "2024-05-16T10:02:52.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.435600", - "Timestamp": "2019-10-15T13:03:15.000Z" + "SpotPrice": "0.167200", + "Timestamp": "2024-05-16T10:02:51.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5n.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.435600", - "Timestamp": "2019-10-15T13:03:15.000Z" + "SpotPrice": "0.172000", + "Timestamp": "2024-05-16T10:02:51.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.435600", - "Timestamp": "2019-10-15T13:03:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163200", + "Timestamp": "2024-05-16T10:02:51.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.305600", - "Timestamp": "2019-10-15T13:03:15.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168000", + "Timestamp": "2024-05-16T10:02:51.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.305600", - "Timestamp": "2019-10-15T13:03:15.000Z" + "SpotPrice": "0.107200", + "Timestamp": "2024-05-16T10:02:51.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5n.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.305600", - "Timestamp": "2019-10-15T13:03:15.000Z" - }, - { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-15T13:02:22.000Z" + "SpotPrice": "0.112000", + "Timestamp": "2024-05-16T10:02:51.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-15T13:02:22.000Z" + "SpotPrice": "1.267400", + "Timestamp": "2024-05-16T10:02:50.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-15T13:02:22.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.262400", + "Timestamp": "2024-05-16T10:02:50.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-15T13:02:22.000Z" + "SpotPrice": "1.137400", + "Timestamp": "2024-05-16T10:02:50.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-15T13:02:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.613500", + "Timestamp": "2024-05-16T10:02:50.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-15T13:02:22.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.904300", + "Timestamp": "2024-05-16T10:02:50.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3.metal", - "ProductDescription": "Windows", - "SpotPrice": "4.441600", - "Timestamp": "2019-10-15T13:00:43.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.899300", + "Timestamp": "2024-05-16T10:02:50.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3.metal", - "ProductDescription": "Windows", - "SpotPrice": "4.441600", - "Timestamp": "2019-10-15T13:00:43.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.774300", + "Timestamp": "2024-05-16T10:02:50.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3.metal", - "ProductDescription": "Windows", - "SpotPrice": "4.441600", - "Timestamp": "2019-10-15T13:00:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.219800", + "Timestamp": "2024-05-16T10:02:50.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.373800", - "Timestamp": "2019-10-15T12:59:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.214800", + "Timestamp": "2024-05-16T10:02:50.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.225800", - "Timestamp": "2019-10-15T12:51:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.089800", + "Timestamp": "2024-05-16T10:02:50.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.225800", - "Timestamp": "2019-10-15T12:51:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.627400", + "Timestamp": "2024-05-16T10:02:49.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.225800", - "Timestamp": "2019-10-15T12:51:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.622400", + "Timestamp": "2024-05-16T10:02:49.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-15T12:51:32.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.497400", + "Timestamp": "2024-05-16T10:02:49.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-15T12:51:32.000Z" + "SpotPrice": "3.422900", + "Timestamp": "2024-05-16T10:02:49.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-15T12:51:32.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.392900", + "Timestamp": "2024-05-16T10:02:49.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041800", - "Timestamp": "2019-10-15T12:51:32.000Z" + "SpotPrice": "3.292900", + "Timestamp": "2024-05-16T10:02:49.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041800", - "Timestamp": "2019-10-15T12:51:32.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.142600", + "Timestamp": "2024-05-16T10:02:48.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041800", - "Timestamp": "2019-10-15T12:51:32.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.311700", + "Timestamp": "2024-05-16T10:02:48.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5dn.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.798900", - "Timestamp": "2019-10-15T12:51:02.000Z" + "SpotPrice": "2.027400", + "Timestamp": "2024-05-16T10:02:48.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.668900", - "Timestamp": "2019-10-15T12:51:02.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.022400", + "Timestamp": "2024-05-16T10:02:48.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.195000", - "Timestamp": "2019-10-15T12:27:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.897400", + "Timestamp": "2024-05-16T10:02:48.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5n.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.079100", - "Timestamp": "2019-10-15T12:12:30.000Z" + "SpotPrice": "0.718200", + "Timestamp": "2024-05-16T10:02:47.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5n.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.019100", - "Timestamp": "2019-10-15T12:12:30.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.713200", + "Timestamp": "2024-05-16T10:02:47.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.612900", - "Timestamp": "2019-10-15T12:10:08.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.588200", + "Timestamp": "2024-05-16T10:02:47.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.223000", - "Timestamp": "2019-10-15T12:04:08.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.305500", + "Timestamp": "2024-05-16T10:02:47.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.223000", - "Timestamp": "2019-10-15T12:04:08.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.300500", + "Timestamp": "2024-05-16T10:02:47.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.223000", - "Timestamp": "2019-10-15T12:04:08.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.175500", + "Timestamp": "2024-05-16T10:02:47.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5dn.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.289600", - "Timestamp": "2019-10-15T12:03:53.000Z" + "SpotPrice": "2.945300", + "Timestamp": "2024-05-16T10:02:47.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5dn.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.289600", - "Timestamp": "2019-10-15T12:03:53.000Z" + "SpotPrice": "2.668100", + "Timestamp": "2024-05-16T10:02:47.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.289600", - "Timestamp": "2019-10-15T12:03:53.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.940300", + "Timestamp": "2024-05-16T10:02:47.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.159600", - "Timestamp": "2019-10-15T12:03:53.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.663100", + "Timestamp": "2024-05-16T10:02:47.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5dn.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.159600", - "Timestamp": "2019-10-15T12:03:53.000Z" + "SpotPrice": "2.815300", + "Timestamp": "2024-05-16T10:02:47.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5dn.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.159600", - "Timestamp": "2019-10-15T12:03:53.000Z" + "SpotPrice": "2.538100", + "Timestamp": "2024-05-16T10:02:47.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.191000", - "Timestamp": "2019-10-15T12:03:43.000Z" + "SpotPrice": "1.047300", + "Timestamp": "2024-05-16T10:02:47.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.191000", - "Timestamp": "2019-10-15T12:03:43.000Z" + "SpotPrice": "1.155400", + "Timestamp": "2024-05-16T10:02:47.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5ad.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.191000", - "Timestamp": "2019-10-15T12:03:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.042300", + "Timestamp": "2024-05-16T10:02:47.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5ad.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.131000", - "Timestamp": "2019-10-15T12:03:43.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.150400", + "Timestamp": "2024-05-16T10:02:47.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.131000", - "Timestamp": "2019-10-15T12:03:43.000Z" + "SpotPrice": "0.917300", + "Timestamp": "2024-05-16T10:02:47.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.131000", - "Timestamp": "2019-10-15T12:03:43.000Z" - }, - { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.451600", - "Timestamp": "2019-10-15T12:03:33.000Z" - }, - { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.451600", - "Timestamp": "2019-10-15T12:03:33.000Z" + "SpotPrice": "1.025400", + "Timestamp": "2024-05-16T10:02:47.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.451600", - "Timestamp": "2019-10-15T12:03:33.000Z" + "SpotPrice": "3.886300", + "Timestamp": "2024-05-16T10:02:47.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5dn.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.895600", - "Timestamp": "2019-10-15T12:03:21.000Z" + "SpotPrice": "3.780600", + "Timestamp": "2024-05-16T10:02:47.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.895600", - "Timestamp": "2019-10-15T12:03:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.264000", + "Timestamp": "2024-05-16T10:02:47.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.895600", - "Timestamp": "2019-10-15T12:03:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.259000", + "Timestamp": "2024-05-16T10:02:47.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.419400", - "Timestamp": "2019-10-15T12:03:05.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.134000", + "Timestamp": "2024-05-16T10:02:47.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.xlarge", "ProductDescription": "Windows", - "SpotPrice": "10.704000", - "Timestamp": "2019-10-15T12:03:05.000Z" + "SpotPrice": "0.315900", + "Timestamp": "2024-05-16T10:02:46.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.133400", - "Timestamp": "2019-10-15T12:02:59.000Z" + "SpotPrice": "0.756700", + "Timestamp": "2024-05-16T10:02:46.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "6.418000", - "Timestamp": "2019-10-15T12:02:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.751700", + "Timestamp": "2024-05-16T10:02:46.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.003400", - "Timestamp": "2019-10-15T12:02:59.000Z" + "SpotPrice": "0.626700", + "Timestamp": "2024-05-16T10:02:46.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "6.288000", - "Timestamp": "2019-10-15T12:02:59.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.158700", + "Timestamp": "2024-05-16T10:02:46.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061600", - "Timestamp": "2019-10-15T12:01:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.383400", + "Timestamp": "2024-05-16T10:02:46.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061600", - "Timestamp": "2019-10-15T12:01:55.000Z" + "SpotPrice": "1.972400", + "Timestamp": "2024-05-16T10:02:45.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061600", - "Timestamp": "2019-10-15T12:01:55.000Z" + "SpotPrice": "1.824600", + "Timestamp": "2024-05-16T10:02:45.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001600", - "Timestamp": "2019-10-15T12:01:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.967400", + "Timestamp": "2024-05-16T10:02:45.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001600", - "Timestamp": "2019-10-15T12:01:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.819600", + "Timestamp": "2024-05-16T10:02:45.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001600", - "Timestamp": "2019-10-15T12:01:55.000Z" - }, - { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006200", - "Timestamp": "2019-10-15T12:01:36.000Z" + "SpotPrice": "1.842400", + "Timestamp": "2024-05-16T10:02:45.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006200", - "Timestamp": "2019-10-15T12:01:36.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.694600", + "Timestamp": "2024-05-16T10:02:45.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006200", - "Timestamp": "2019-10-15T12:01:36.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131300", + "Timestamp": "2024-05-16T10:02:45.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.790500", - "Timestamp": "2019-10-15T11:58:35.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127600", + "Timestamp": "2024-05-16T10:02:45.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.790500", - "Timestamp": "2019-10-15T11:58:35.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071300", + "Timestamp": "2024-05-16T10:02:45.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.790500", - "Timestamp": "2019-10-15T11:58:35.000Z" - }, - { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.448500", - "Timestamp": "2019-10-15T11:58:32.000Z" + "SpotPrice": "1.041500", + "Timestamp": "2024-05-16T10:02:45.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.448500", - "Timestamp": "2019-10-15T11:58:32.000Z" + "SpotPrice": "1.542800", + "Timestamp": "2024-05-16T10:02:45.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.318500", - "Timestamp": "2019-10-15T11:58:32.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.537800", + "Timestamp": "2024-05-16T10:02:45.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.318500", - "Timestamp": "2019-10-15T11:58:32.000Z" + "SpotPrice": "1.412800", + "Timestamp": "2024-05-16T10:02:45.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.563800", - "Timestamp": "2019-10-15T11:53:56.000Z" + "SpotPrice": "3.840600", + "Timestamp": "2024-05-16T10:02:45.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5dn.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.798900", - "Timestamp": "2019-10-15T11:28:01.000Z" + "SpotPrice": "1.499700", + "Timestamp": "2024-05-16T10:02:45.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.668900", - "Timestamp": "2019-10-15T11:28:01.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.494700", + "Timestamp": "2024-05-16T10:02:45.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5dn.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.080900", - "Timestamp": "2019-10-15T11:27:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.369700", + "Timestamp": "2024-05-16T10:02:45.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5dn.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.020900", - "Timestamp": "2019-10-15T11:27:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.968800", + "Timestamp": "2024-05-16T10:02:45.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.099200", - "Timestamp": "2019-10-15T11:12:32.000Z" + "SpotPrice": "0.604300", + "Timestamp": "2024-05-16T10:02:45.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.599300", + "Timestamp": "2024-05-16T10:02:45.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.039200", - "Timestamp": "2019-10-15T11:12:32.000Z" + "SpotPrice": "0.474300", + "Timestamp": "2024-05-16T10:02:45.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.223500", - "Timestamp": "2019-10-15T11:12:20.000Z" + "SpotPrice": "4.065800", + "Timestamp": "2024-05-16T10:02:44.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.093500", - "Timestamp": "2019-10-15T11:12:20.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.060800", + "Timestamp": "2024-05-16T10:02:44.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.220800", - "Timestamp": "2019-10-15T11:02:59.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.935800", + "Timestamp": "2024-05-16T10:02:44.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.220800", - "Timestamp": "2019-10-15T11:02:59.000Z" + "SpotPrice": "1.372000", + "Timestamp": "2024-05-16T10:02:44.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.220800", - "Timestamp": "2019-10-15T11:02:59.000Z" + "SpotPrice": "4.421200", + "Timestamp": "2024-05-16T10:02:44.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.878800", - "Timestamp": "2019-10-15T11:02:59.000Z" + "SpotPrice": "0.663200", + "Timestamp": "2024-05-16T10:02:44.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.878800", - "Timestamp": "2019-10-15T11:02:59.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.658200", + "Timestamp": "2024-05-16T10:02:44.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.878800", - "Timestamp": "2019-10-15T11:02:59.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.533200", + "Timestamp": "2024-05-16T10:02:44.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.748800", - "Timestamp": "2019-10-15T11:02:59.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.851900", + "Timestamp": "2024-05-16T10:02:44.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.748800", - "Timestamp": "2019-10-15T11:02:59.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.846900", + "Timestamp": "2024-05-16T10:02:44.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.748800", - "Timestamp": "2019-10-15T11:02:59.000Z" + "SpotPrice": "0.721900", + "Timestamp": "2024-05-16T10:02:44.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.006000", - "Timestamp": "2019-10-15T10:52:34.000Z" + "SpotPrice": "2.478800", + "Timestamp": "2024-05-16T10:02:43.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006000", - "Timestamp": "2019-10-15T10:52:34.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.312700", + "Timestamp": "2024-05-16T10:02:43.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006000", - "Timestamp": "2019-10-15T10:52:34.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.282700", + "Timestamp": "2024-05-16T10:02:43.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.052700", - "Timestamp": "2019-10-15T10:51:06.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.182700", + "Timestamp": "2024-05-16T10:02:43.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.052700", - "Timestamp": "2019-10-15T10:51:06.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.458600", + "Timestamp": "2024-05-16T10:02:43.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.052700", - "Timestamp": "2019-10-15T10:51:06.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.453600", + "Timestamp": "2024-05-16T10:02:43.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.085100", - "Timestamp": "2019-10-15T10:49:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.328600", + "Timestamp": "2024-05-16T10:02:43.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.085100", - "Timestamp": "2019-10-15T10:49:57.000Z" + "SpotPrice": "0.406300", + "Timestamp": "2024-05-16T10:02:43.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.085100", - "Timestamp": "2019-10-15T10:49:57.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.376300", + "Timestamp": "2024-05-16T10:02:43.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.025100", - "Timestamp": "2019-10-15T10:49:57.000Z" + "SpotPrice": "0.276300", + "Timestamp": "2024-05-16T10:02:43.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.025100", - "Timestamp": "2019-10-15T10:49:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.418800", + "Timestamp": "2024-05-16T10:02:43.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.413800", + "Timestamp": "2024-05-16T10:02:43.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.025100", - "Timestamp": "2019-10-15T10:49:57.000Z" + "SpotPrice": "0.288800", + "Timestamp": "2024-05-16T10:02:43.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.222000", - "Timestamp": "2019-10-15T10:49:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.287000", + "Timestamp": "2024-05-16T10:02:43.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.222000", - "Timestamp": "2019-10-15T10:49:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.282000", + "Timestamp": "2024-05-16T10:02:43.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.222000", - "Timestamp": "2019-10-15T10:49:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157000", + "Timestamp": "2024-05-16T10:02:43.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.451600", - "Timestamp": "2019-10-15T10:45:45.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129800", + "Timestamp": "2024-05-16T10:02:43.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.223900", - "Timestamp": "2019-10-15T10:38:36.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169800", + "Timestamp": "2024-05-16T10:02:43.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.223900", - "Timestamp": "2019-10-15T10:38:36.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069800", + "Timestamp": "2024-05-16T10:02:43.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.metal", "ProductDescription": "Windows", - "SpotPrice": "0.223900", - "Timestamp": "2019-10-15T10:38:36.000Z" + "SpotPrice": "8.189900", + "Timestamp": "2024-05-16T10:02:42.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.204500", - "Timestamp": "2019-10-15T10:22:19.000Z" + "SpotPrice": "1.132800", + "Timestamp": "2024-05-16T10:02:42.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.074500", - "Timestamp": "2019-10-15T10:22:19.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.127800", + "Timestamp": "2024-05-16T10:02:42.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.447800", - "Timestamp": "2019-10-15T10:21:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.002800", + "Timestamp": "2024-05-16T10:02:42.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5dn.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c4.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.087800", - "Timestamp": "2019-10-15T10:15:23.000Z" + "SpotPrice": "0.494700", + "Timestamp": "2024-05-16T10:02:42.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5dn.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.464700", + "Timestamp": "2024-05-16T10:02:42.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c4.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.957800", - "Timestamp": "2019-10-15T10:15:23.000Z" + "SpotPrice": "0.364700", + "Timestamp": "2024-05-16T10:02:42.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.791300", - "Timestamp": "2019-10-15T10:09:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.614500", + "Timestamp": "2024-05-16T10:02:41.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.709700", - "Timestamp": "2019-10-15T10:03:46.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.584500", + "Timestamp": "2024-05-16T10:02:41.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.709700", - "Timestamp": "2019-10-15T10:03:46.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.484500", + "Timestamp": "2024-05-16T10:02:41.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "t2.medium", "ProductDescription": "Windows", - "SpotPrice": "2.709700", - "Timestamp": "2019-10-15T10:03:46.000Z" + "SpotPrice": "0.040900", + "Timestamp": "2024-05-16T10:02:41.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.631700", - "Timestamp": "2019-10-15T10:03:26.000Z" + "SpotPrice": "0.141900", + "Timestamp": "2024-05-16T10:02:41.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.631700", - "Timestamp": "2019-10-15T10:03:26.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138200", + "Timestamp": "2024-05-16T10:02:41.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.631700", - "Timestamp": "2019-10-15T10:03:26.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081900", + "Timestamp": "2024-05-16T10:02:41.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.501700", - "Timestamp": "2019-10-15T10:03:26.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.332200", + "Timestamp": "2024-05-16T10:02:41.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.501700", - "Timestamp": "2019-10-15T10:03:26.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.327200", + "Timestamp": "2024-05-16T10:02:41.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.501700", - "Timestamp": "2019-10-15T10:03:26.000Z" + "SpotPrice": "0.202200", + "Timestamp": "2024-05-16T10:02:41.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.903200", - "Timestamp": "2019-10-15T09:51:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.556900", + "Timestamp": "2024-05-16T10:02:41.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.903200", - "Timestamp": "2019-10-15T09:51:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.551900", + "Timestamp": "2024-05-16T10:02:41.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.903200", - "Timestamp": "2019-10-15T09:51:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.426900", + "Timestamp": "2024-05-16T10:02:41.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.608900", - "Timestamp": "2019-10-15T09:50:58.000Z" + "SpotPrice": "0.496200", + "Timestamp": "2024-05-16T10:02:41.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.478900", - "Timestamp": "2019-10-15T09:50:58.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.491200", + "Timestamp": "2024-05-16T10:02:41.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.686900", - "Timestamp": "2019-10-15T09:50:13.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.366200", + "Timestamp": "2024-05-16T10:02:41.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.288000", - "Timestamp": "2019-10-15T09:41:31.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.266700", + "Timestamp": "2024-05-16T10:02:41.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.474000", - "Timestamp": "2019-10-15T09:41:31.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.261700", + "Timestamp": "2024-05-16T10:02:41.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5dn.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.344000", - "Timestamp": "2019-10-15T09:41:31.000Z" + "SpotPrice": "0.136700", + "Timestamp": "2024-05-16T10:02:41.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1e", + "InstanceType": "i3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.080100", - "Timestamp": "2019-10-15T09:40:14.000Z" + "SpotPrice": "0.211000", + "Timestamp": "2024-05-16T10:02:41.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1e", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.251000", + "Timestamp": "2024-05-16T10:02:41.000Z" + }, + { + "AvailabilityZone": "us-east-1e", + "InstanceType": "i3.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.020100", - "Timestamp": "2019-10-15T09:40:14.000Z" + "SpotPrice": "0.151000", + "Timestamp": "2024-05-16T10:02:41.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5n.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.metal", "ProductDescription": "Windows", - "SpotPrice": "0.447800", - "Timestamp": "2019-10-15T09:39:35.000Z" + "SpotPrice": "15.345800", + "Timestamp": "2024-05-16T10:02:40.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-1e", + "InstanceType": "m3.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.079000", - "Timestamp": "2019-10-15T09:37:46.000Z" + "SpotPrice": "0.089200", + "Timestamp": "2024-05-16T10:02:40.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-1e", + "InstanceType": "m3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129200", + "Timestamp": "2024-05-16T10:02:40.000Z" + }, + { + "AvailabilityZone": "us-east-1e", + "InstanceType": "m3.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.019000", - "Timestamp": "2019-10-15T09:37:46.000Z" + "SpotPrice": "0.029200", + "Timestamp": "2024-05-16T10:02:40.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.449300", - "Timestamp": "2019-10-15T09:27:49.000Z" + "SpotPrice": "2.260500", + "Timestamp": "2024-05-16T10:02:40.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.230500", + "Timestamp": "2024-05-16T10:02:40.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.319300", - "Timestamp": "2019-10-15T09:27:49.000Z" + "SpotPrice": "2.130500", + "Timestamp": "2024-05-16T10:02:40.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.297200", - "Timestamp": "2019-10-15T09:18:49.000Z" + "SpotPrice": "0.143800", + "Timestamp": "2024-05-16T10:02:40.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183800", + "Timestamp": "2024-05-16T10:02:40.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "t2.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.167200", - "Timestamp": "2019-10-15T09:18:49.000Z" + "SpotPrice": "0.083800", + "Timestamp": "2024-05-16T10:02:40.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.225800", - "Timestamp": "2019-10-15T09:17:19.000Z" + "SpotPrice": "1.320900", + "Timestamp": "2024-05-16T10:02:39.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6gd.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.213600", - "Timestamp": "2019-10-15T09:14:00.000Z" + "SpotPrice": "0.080200", + "Timestamp": "2024-05-16T10:02:39.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.051200", + "Timestamp": "2024-05-16T10:02:39.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6gd.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.083600", - "Timestamp": "2019-10-15T09:14:00.000Z" + "SpotPrice": "0.020200", + "Timestamp": "2024-05-16T10:02:39.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.449300", - "Timestamp": "2019-10-15T09:01:22.000Z" + "SpotPrice": "0.100600", + "Timestamp": "2024-05-16T10:02:39.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.319300", - "Timestamp": "2019-10-15T09:01:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096600", + "Timestamp": "2024-05-16T10:02:39.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.444000", - "Timestamp": "2019-10-15T08:50:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040600", + "Timestamp": "2024-05-16T10:02:39.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.444000", - "Timestamp": "2019-10-15T08:50:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.599400", + "Timestamp": "2024-05-16T10:02:39.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.444000", - "Timestamp": "2019-10-15T08:50:35.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.959000", + "Timestamp": "2024-05-16T10:02:39.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.373800", - "Timestamp": "2019-10-15T08:41:39.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.594400", + "Timestamp": "2024-05-16T10:02:39.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.373800", - "Timestamp": "2019-10-15T08:24:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.954000", + "Timestamp": "2024-05-16T10:02:39.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.451600", - "Timestamp": "2019-10-15T08:23:44.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.469400", + "Timestamp": "2024-05-16T10:02:39.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.087800", - "Timestamp": "2019-10-15T08:15:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.829000", + "Timestamp": "2024-05-16T10:02:39.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.087800", - "Timestamp": "2019-10-15T08:15:47.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "15.903500", + "Timestamp": "2024-05-16T10:02:39.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5n.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.9xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.087800", - "Timestamp": "2019-10-15T08:15:47.000Z" + "SpotPrice": "1.017500", + "Timestamp": "2024-05-16T10:02:38.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.957800", - "Timestamp": "2019-10-15T08:15:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.012500", + "Timestamp": "2024-05-16T10:02:38.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5n.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.9xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.957800", - "Timestamp": "2019-10-15T08:15:47.000Z" + "SpotPrice": "0.887500", + "Timestamp": "2024-05-16T10:02:38.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.957800", - "Timestamp": "2019-10-15T08:15:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.363000", + "Timestamp": "2024-05-16T10:02:37.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.133400", - "Timestamp": "2019-10-15T08:03:46.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.358000", + "Timestamp": "2024-05-16T10:02:37.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6gd.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.003400", - "Timestamp": "2019-10-15T08:03:46.000Z" + "SpotPrice": "1.233000", + "Timestamp": "2024-05-16T10:02:37.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5dn.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.080900", - "Timestamp": "2019-10-15T07:59:53.000Z" - }, - { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5dn.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.020900", - "Timestamp": "2019-10-15T07:59:53.000Z" + "SpotPrice": "0.803600", + "Timestamp": "2024-05-16T10:02:37.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.631700", - "Timestamp": "2019-10-15T07:59:46.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.798600", + "Timestamp": "2024-05-16T10:02:37.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5dn.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.501700", - "Timestamp": "2019-10-15T07:59:46.000Z" + "SpotPrice": "0.673600", + "Timestamp": "2024-05-16T10:02:37.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.054500", - "Timestamp": "2019-10-15T07:50:11.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.825900", + "Timestamp": "2024-05-16T10:02:37.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.054500", - "Timestamp": "2019-10-15T07:50:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.829000", + "Timestamp": "2024-05-16T10:02:37.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.054500", - "Timestamp": "2019-10-15T07:50:11.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.820900", + "Timestamp": "2024-05-16T10:02:37.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.895300", - "Timestamp": "2019-10-15T07:40:51.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.824000", + "Timestamp": "2024-05-16T10:02:37.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.895300", - "Timestamp": "2019-10-15T07:40:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.695900", + "Timestamp": "2024-05-16T10:02:37.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.895300", - "Timestamp": "2019-10-15T07:40:51.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.699000", + "Timestamp": "2024-05-16T10:02:37.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4ad.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061600", - "Timestamp": "2019-10-15T07:31:02.000Z" + "SpotPrice": "0.233200", + "Timestamp": "2024-05-16T10:02:35.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.229500", + "Timestamp": "2024-05-16T10:02:35.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4ad.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001600", - "Timestamp": "2019-10-15T07:31:02.000Z" + "SpotPrice": "0.173200", + "Timestamp": "2024-05-16T10:02:35.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5n.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.080000", - "Timestamp": "2019-10-15T07:23:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.703500", + "Timestamp": "2024-05-16T10:02:35.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5n.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.020000", - "Timestamp": "2019-10-15T07:23:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.521400", + "Timestamp": "2024-05-16T10:02:34.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5dn.24xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "m4.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.373800", - "Timestamp": "2019-10-15T07:12:34.000Z" + "SpotPrice": "1.054500", + "Timestamp": "2024-05-16T10:02:34.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.079000", - "Timestamp": "2019-10-15T07:10:03.000Z" + "SpotPrice": "1.886300", + "Timestamp": "2024-05-16T10:02:34.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.019000", - "Timestamp": "2019-10-15T07:10:03.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.881300", + "Timestamp": "2024-05-16T10:02:34.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.225800", - "Timestamp": "2019-10-15T07:09:05.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.756300", + "Timestamp": "2024-05-16T10:02:34.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-15T07:03:04.000Z" + "SpotPrice": "0.134400", + "Timestamp": "2024-05-16T10:02:33.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-15T07:03:04.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130700", + "Timestamp": "2024-05-16T10:02:33.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-15T07:03:04.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074400", + "Timestamp": "2024-05-16T10:02:33.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041800", - "Timestamp": "2019-10-15T07:03:04.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.320900", + "Timestamp": "2024-05-16T10:02:33.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041800", - "Timestamp": "2019-10-15T07:03:04.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.290900", + "Timestamp": "2024-05-16T10:02:33.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041800", - "Timestamp": "2019-10-15T07:03:04.000Z" + "SpotPrice": "2.190900", + "Timestamp": "2024-05-16T10:02:33.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.metal", "ProductDescription": "Windows", - "SpotPrice": "0.225800", - "Timestamp": "2019-10-15T07:02:59.000Z" + "SpotPrice": "7.310700", + "Timestamp": "2024-05-16T10:02:33.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.225800", - "Timestamp": "2019-10-15T07:02:59.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.675500", + "Timestamp": "2024-05-16T10:02:32.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.225800", - "Timestamp": "2019-10-15T07:02:59.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.645500", + "Timestamp": "2024-05-16T10:02:32.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.112000", - "Timestamp": "2019-10-15T06:59:37.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.545500", + "Timestamp": "2024-05-16T10:02:32.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.112000", - "Timestamp": "2019-10-15T06:59:37.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.753400", + "Timestamp": "2024-05-16T10:02:32.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.112000", - "Timestamp": "2019-10-15T06:59:37.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.723400", + "Timestamp": "2024-05-16T10:02:32.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t2.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.008100", - "Timestamp": "2019-10-15T06:48:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.623400", + "Timestamp": "2024-05-16T10:02:32.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t2.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.008100", - "Timestamp": "2019-10-15T06:48:13.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.613100", + "Timestamp": "2024-05-16T10:02:32.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t2.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.008100", - "Timestamp": "2019-10-15T06:48:13.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.608100", + "Timestamp": "2024-05-16T10:02:32.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t2.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063500", - "Timestamp": "2019-10-15T06:48:03.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.483100", + "Timestamp": "2024-05-16T10:02:32.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063500", - "Timestamp": "2019-10-15T06:48:03.000Z" + "SpotPrice": "0.397500", + "Timestamp": "2024-05-16T10:02:31.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t2.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063500", - "Timestamp": "2019-10-15T06:48:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.367500", + "Timestamp": "2024-05-16T10:02:31.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003500", - "Timestamp": "2019-10-15T06:48:03.000Z" + "SpotPrice": "0.267500", + "Timestamp": "2024-05-16T10:02:31.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t2.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003500", - "Timestamp": "2019-10-15T06:48:03.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.473900", + "Timestamp": "2024-05-16T10:02:31.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.468900", + "Timestamp": "2024-05-16T10:02:31.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003500", - "Timestamp": "2019-10-15T06:48:03.000Z" + "SpotPrice": "0.343900", + "Timestamp": "2024-05-16T10:02:31.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.3xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.225800", - "Timestamp": "2019-10-15T06:44:04.000Z" + "SpotPrice": "1.021800", + "Timestamp": "2024-05-16T10:02:31.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.211500", - "Timestamp": "2019-10-15T06:20:00.000Z" + "SpotPrice": "0.344300", + "Timestamp": "2024-05-16T10:02:30.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.339300", + "Timestamp": "2024-05-16T10:02:30.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.081500", - "Timestamp": "2019-10-15T06:20:00.000Z" + "SpotPrice": "0.214300", + "Timestamp": "2024-05-16T10:02:30.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.079300", - "Timestamp": "2019-10-15T06:19:38.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.515100", + "Timestamp": "2024-05-16T10:02:30.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.019300", - "Timestamp": "2019-10-15T06:19:38.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.749100", + "Timestamp": "2024-05-16T10:02:28.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "gr6.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.080000", - "Timestamp": "2019-10-15T06:12:44.000Z" + "SpotPrice": "0.332800", + "Timestamp": "2024-05-16T10:02:28.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302800", + "Timestamp": "2024-05-16T10:02:28.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "gr6.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.020000", - "Timestamp": "2019-10-15T06:12:44.000Z" + "SpotPrice": "0.202800", + "Timestamp": "2024-05-16T10:02:28.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5n.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.079000", - "Timestamp": "2019-10-15T06:07:35.000Z" + "SpotPrice": "0.798400", + "Timestamp": "2024-05-16T10:02:27.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5n.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.793400", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.019000", - "Timestamp": "2019-10-15T06:07:35.000Z" + "SpotPrice": "0.668400", + "Timestamp": "2024-05-16T10:02:27.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "a1.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.208800", - "Timestamp": "2019-10-15T06:00:12.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.920700", + "Timestamp": "2024-05-16T10:02:26.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "a1.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.208800", - "Timestamp": "2019-10-15T06:00:12.000Z" + "SpotPrice": "3.532300", + "Timestamp": "2024-05-16T10:02:25.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "a1.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.078800", - "Timestamp": "2019-10-15T06:00:12.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.527300", + "Timestamp": "2024-05-16T10:02:25.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "a1.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.078800", - "Timestamp": "2019-10-15T06:00:12.000Z" + "SpotPrice": "3.402300", + "Timestamp": "2024-05-16T10:02:25.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.080100", - "Timestamp": "2019-10-15T05:55:24.000Z" + "SpotPrice": "0.170200", + "Timestamp": "2024-05-16T10:02:25.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.020100", - "Timestamp": "2019-10-15T05:55:24.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.210200", + "Timestamp": "2024-05-16T10:02:25.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "26.818000", - "Timestamp": "2019-10-15T05:51:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T10:02:25.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "x1e.32xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "26.818000", - "Timestamp": "2019-10-15T05:51:10.000Z" + "SpotPrice": "0.164000", + "Timestamp": "2024-05-16T10:02:25.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "26.688000", - "Timestamp": "2019-10-15T05:51:10.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160000", + "Timestamp": "2024-05-16T10:02:25.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "x1e.32xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "26.688000", - "Timestamp": "2019-10-15T05:51:10.000Z" + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T10:02:25.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Windows", - "SpotPrice": "32.576000", - "Timestamp": "2019-10-15T05:50:19.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.815900", + "Timestamp": "2024-05-16T10:02:25.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Windows", - "SpotPrice": "32.576000", - "Timestamp": "2019-10-15T05:50:19.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.810900", + "Timestamp": "2024-05-16T10:02:25.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.451600", - "Timestamp": "2019-10-15T05:49:52.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.685900", + "Timestamp": "2024-05-16T10:02:25.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.100000", - "Timestamp": "2019-10-15T05:46:45.000Z" + "SpotPrice": "0.446500", + "Timestamp": "2024-05-16T10:02:24.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.040000", - "Timestamp": "2019-10-15T05:46:45.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.416500", + "Timestamp": "2024-05-16T10:02:24.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5n.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.806500", - "Timestamp": "2019-10-15T05:32:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.316500", + "Timestamp": "2024-05-16T10:02:24.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5dn.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m4.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.133400", - "Timestamp": "2019-10-15T05:11:40.000Z" + "SpotPrice": "0.116300", + "Timestamp": "2024-05-16T10:02:24.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5dn.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156300", + "Timestamp": "2024-05-16T10:02:24.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m4.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.003400", - "Timestamp": "2019-10-15T05:11:40.000Z" + "SpotPrice": "0.056300", + "Timestamp": "2024-05-16T10:02:24.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5dn.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.112900", - "Timestamp": "2019-10-15T05:10:57.000Z" + "SpotPrice": "2.043400", + "Timestamp": "2024-05-16T10:02:23.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.130000", - "Timestamp": "2019-10-15T05:03:12.000Z" + "SpotPrice": "2.020200", + "Timestamp": "2024-05-16T10:02:22.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.metal", "ProductDescription": "Windows", - "SpotPrice": "5.084900", - "Timestamp": "2019-10-15T04:51:15.000Z" + "SpotPrice": "10.271900", + "Timestamp": "2024-05-16T10:02:22.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.084900", - "Timestamp": "2019-10-15T04:51:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.509600", + "Timestamp": "2024-05-16T10:02:17.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.084900", - "Timestamp": "2019-10-15T04:51:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "f1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.479600", + "Timestamp": "2024-05-16T10:02:17.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5dn.large", - "ProductDescription": "Windows", - "SpotPrice": "0.112900", - "Timestamp": "2019-10-15T04:45:57.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.379600", + "Timestamp": "2024-05-16T10:02:17.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.206200", - "Timestamp": "2019-10-15T04:43:47.000Z" + "SpotPrice": "0.329300", + "Timestamp": "2024-05-16T10:02:15.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.076200", - "Timestamp": "2019-10-15T04:43:47.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324300", + "Timestamp": "2024-05-16T10:02:15.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.078000", - "Timestamp": "2019-10-15T04:41:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199300", + "Timestamp": "2024-05-16T10:02:15.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.876000", - "Timestamp": "2019-10-15T04:41:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.612000", + "Timestamp": "2024-05-16T10:02:14.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.078000", - "Timestamp": "2019-10-15T04:41:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.607000", + "Timestamp": "2024-05-16T10:02:14.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.472000", - "Timestamp": "2019-10-15T04:41:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.482000", + "Timestamp": "2024-05-16T10:02:14.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.270000", - "Timestamp": "2019-10-15T04:41:15.000Z" + "SpotPrice": "1.568800", + "Timestamp": "2024-05-16T10:02:12.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.472000", - "Timestamp": "2019-10-15T04:41:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.563800", + "Timestamp": "2024-05-16T10:02:12.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.342000", - "Timestamp": "2019-10-15T04:41:15.000Z" + "SpotPrice": "1.438800", + "Timestamp": "2024-05-16T10:02:12.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.140000", - "Timestamp": "2019-10-15T04:41:15.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170200", + "Timestamp": "2024-05-16T10:02:12.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166500", + "Timestamp": "2024-05-16T10:02:12.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.342000", - "Timestamp": "2019-10-15T04:41:15.000Z" + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T10:02:12.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.metal-48xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.641500", - "Timestamp": "2019-10-15T04:17:26.000Z" + "SpotPrice": "4.051700", + "Timestamp": "2024-05-16T09:48:29.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.641500", - "Timestamp": "2019-10-15T04:17:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.046700", + "Timestamp": "2024-05-16T09:48:29.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.921700", + "Timestamp": "2024-05-16T09:48:29.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.641500", - "Timestamp": "2019-10-15T04:17:26.000Z" + "SpotPrice": "3.278400", + "Timestamp": "2024-05-16T09:48:29.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.511500", - "Timestamp": "2019-10-15T04:17:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.273400", + "Timestamp": "2024-05-16T09:48:29.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.511500", - "Timestamp": "2019-10-15T04:17:26.000Z" + "SpotPrice": "3.148400", + "Timestamp": "2024-05-16T09:48:29.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.511500", - "Timestamp": "2019-10-15T04:17:26.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.208000", + "Timestamp": "2024-05-16T09:48:28.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.112000", - "Timestamp": "2019-10-15T04:12:28.000Z" + "SpotPrice": "2.272500", + "Timestamp": "2024-05-16T09:48:28.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gn.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.163000", - "Timestamp": "2019-10-15T04:05:47.000Z" + "SpotPrice": "0.080000", + "Timestamp": "2024-05-16T09:48:25.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.051000", + "Timestamp": "2024-05-16T09:48:25.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gn.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.103000", - "Timestamp": "2019-10-15T04:05:47.000Z" + "SpotPrice": "0.020000", + "Timestamp": "2024-05-16T09:48:25.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r4.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.390000", - "Timestamp": "2019-10-15T04:03:18.000Z" + "SpotPrice": "4.887200", + "Timestamp": "2024-05-16T09:48:22.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "r4.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.223900", - "Timestamp": "2019-10-15T04:03:18.000Z" + "SpotPrice": "4.668700", + "Timestamp": "2024-05-16T09:48:22.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "d2.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.752500", - "Timestamp": "2019-10-15T04:03:18.000Z" + "SpotPrice": "1.425200", + "Timestamp": "2024-05-16T09:48:22.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.metal-48xl", "ProductDescription": "Windows", - "SpotPrice": "0.752500", - "Timestamp": "2019-10-15T04:03:18.000Z" + "SpotPrice": "11.834200", + "Timestamp": "2024-05-16T09:48:21.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.752500", - "Timestamp": "2019-10-15T04:03:18.000Z" + "SpotPrice": "2.416300", + "Timestamp": "2024-05-16T09:48:21.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.266000", - "Timestamp": "2019-10-15T04:02:54.000Z" + "SpotPrice": "0.735500", + "Timestamp": "2024-05-16T09:48:19.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.730500", + "Timestamp": "2024-05-16T09:48:19.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.605500", + "Timestamp": "2024-05-16T09:48:19.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.099900", - "Timestamp": "2019-10-15T04:02:54.000Z" + "SpotPrice": "7.719600", + "Timestamp": "2024-05-16T09:48:18.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.714600", + "Timestamp": "2024-05-16T09:48:18.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.206000", - "Timestamp": "2019-10-15T04:02:54.000Z" + "SpotPrice": "7.589600", + "Timestamp": "2024-05-16T09:48:18.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.859300", + "Timestamp": "2024-05-16T09:48:18.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.854300", + "Timestamp": "2024-05-16T09:48:18.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.039900", - "Timestamp": "2019-10-15T04:02:54.000Z" + "SpotPrice": "2.729300", + "Timestamp": "2024-05-16T09:48:18.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.334000", - "Timestamp": "2019-10-15T04:02:50.000Z" + "SpotPrice": "0.290800", + "Timestamp": "2024-05-16T09:48:17.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "m4.large", "ProductDescription": "Windows", - "SpotPrice": "2.334000", - "Timestamp": "2019-10-15T04:02:50.000Z" + "SpotPrice": "0.133500", + "Timestamp": "2024-05-16T09:48:17.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.334000", - "Timestamp": "2019-10-15T04:02:50.000Z" + "SpotPrice": "9.951400", + "Timestamp": "2024-05-16T09:48:14.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.786000", - "Timestamp": "2019-10-15T04:02:50.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.283700", + "Timestamp": "2024-05-16T09:48:13.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.786000", - "Timestamp": "2019-10-15T04:02:50.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.152300", + "Timestamp": "2024-05-16T09:48:12.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.786000", - "Timestamp": "2019-10-15T04:02:50.000Z" + "SpotPrice": "3.258100", + "Timestamp": "2024-05-16T09:48:11.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.656000", - "Timestamp": "2019-10-15T04:02:50.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.253100", + "Timestamp": "2024-05-16T09:48:11.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.656000", - "Timestamp": "2019-10-15T04:02:50.000Z" + "SpotPrice": "3.128100", + "Timestamp": "2024-05-16T09:48:11.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.656000", - "Timestamp": "2019-10-15T04:02:50.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.606000", + "Timestamp": "2024-05-16T09:48:11.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.106800", - "Timestamp": "2019-10-15T04:01:47.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.428800", + "Timestamp": "2024-05-16T09:48:10.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.106800", - "Timestamp": "2019-10-15T04:01:47.000Z" + "SpotPrice": "0.197600", + "Timestamp": "2024-05-16T09:48:10.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.106800", - "Timestamp": "2019-10-15T04:01:47.000Z" + "SpotPrice": "0.234000", + "Timestamp": "2024-05-16T09:48:10.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.046800", - "Timestamp": "2019-10-15T04:01:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193600", + "Timestamp": "2024-05-16T09:48:10.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.046800", - "Timestamp": "2019-10-15T04:01:47.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.230000", + "Timestamp": "2024-05-16T09:48:10.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.046800", - "Timestamp": "2019-10-15T04:01:47.000Z" + "SpotPrice": "0.137600", + "Timestamp": "2024-05-16T09:48:10.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.138800", - "Timestamp": "2019-10-15T04:01:47.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.174000", + "Timestamp": "2024-05-16T09:48:10.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1e.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.138800", - "Timestamp": "2019-10-15T04:01:47.000Z" + "SpotPrice": "1.043200", + "Timestamp": "2024-05-16T09:48:10.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.metal", "ProductDescription": "Windows", - "SpotPrice": "0.138800", - "Timestamp": "2019-10-15T04:01:47.000Z" + "SpotPrice": "6.250600", + "Timestamp": "2024-05-16T09:48:10.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.450000", - "Timestamp": "2019-10-15T04:01:04.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.946100", + "Timestamp": "2024-05-16T09:48:09.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.450000", - "Timestamp": "2019-10-15T04:01:04.000Z" + "SpotPrice": "0.775900", + "Timestamp": "2024-05-16T09:48:08.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.450000", - "Timestamp": "2019-10-15T04:01:04.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.770900", + "Timestamp": "2024-05-16T09:48:08.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.320000", - "Timestamp": "2019-10-15T04:01:04.000Z" + "SpotPrice": "0.645900", + "Timestamp": "2024-05-16T09:48:08.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.320000", - "Timestamp": "2019-10-15T04:01:04.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.141300", + "Timestamp": "2024-05-16T09:48:08.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.320000", - "Timestamp": "2019-10-15T04:01:04.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.673800", + "Timestamp": "2024-05-16T09:48:07.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "7.264000", - "Timestamp": "2019-10-15T04:01:04.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.658400", + "Timestamp": "2024-05-16T09:48:07.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "7.264000", - "Timestamp": "2019-10-15T04:01:04.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.668800", + "Timestamp": "2024-05-16T09:48:07.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "7.264000", - "Timestamp": "2019-10-15T04:01:04.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.653400", + "Timestamp": "2024-05-16T09:48:07.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-15T04:00:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.543800", + "Timestamp": "2024-05-16T09:48:07.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041800", - "Timestamp": "2019-10-15T04:00:48.000Z" + "SpotPrice": "1.528400", + "Timestamp": "2024-05-16T09:48:07.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.087800", - "Timestamp": "2019-10-15T04:00:04.000Z" + "SpotPrice": "0.568900", + "Timestamp": "2024-05-16T09:48:07.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.563900", + "Timestamp": "2024-05-16T09:48:07.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.957800", - "Timestamp": "2019-10-15T04:00:04.000Z" + "SpotPrice": "0.438900", + "Timestamp": "2024-05-16T09:48:07.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5dn.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.158200", + "Timestamp": "2024-05-16T09:48:07.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.080900", - "Timestamp": "2019-10-15T03:56:40.000Z" + "SpotPrice": "1.093800", + "Timestamp": "2024-05-16T09:48:07.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5dn.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.088800", + "Timestamp": "2024-05-16T09:48:07.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.020900", - "Timestamp": "2019-10-15T03:56:40.000Z" + "SpotPrice": "0.963800", + "Timestamp": "2024-05-16T09:48:07.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.metal", "ProductDescription": "Windows", - "SpotPrice": "2.686900", - "Timestamp": "2019-10-15T03:55:03.000Z" + "SpotPrice": "6.813900", + "Timestamp": "2024-05-16T09:48:06.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.055800", - "Timestamp": "2019-10-15T03:50:04.000Z" + "SpotPrice": "1.100800", + "Timestamp": "2024-05-16T09:48:06.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r4.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.055800", - "Timestamp": "2019-10-15T03:50:04.000Z" + "SpotPrice": "0.601200", + "Timestamp": "2024-05-16T09:48:05.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.18xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.055800", - "Timestamp": "2019-10-15T03:50:04.000Z" + "SpotPrice": "4.557100", + "Timestamp": "2024-05-16T09:48:05.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t2.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087800", - "Timestamp": "2019-10-15T03:47:02.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.381800", + "Timestamp": "2024-05-16T09:48:05.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1e.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087800", - "Timestamp": "2019-10-15T03:47:02.000Z" + "SpotPrice": "1.459800", + "Timestamp": "2024-05-16T09:48:05.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t2.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087800", - "Timestamp": "2019-10-15T03:47:02.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.429800", + "Timestamp": "2024-05-16T09:48:05.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1e.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027800", - "Timestamp": "2019-10-15T03:47:02.000Z" + "SpotPrice": "1.329800", + "Timestamp": "2024-05-16T09:48:05.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t2.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027800", - "Timestamp": "2019-10-15T03:47:02.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.207800", + "Timestamp": "2024-05-16T09:48:05.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.177800", + "Timestamp": "2024-05-16T09:48:05.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "i2.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027800", - "Timestamp": "2019-10-15T03:47:02.000Z" + "SpotPrice": "3.077800", + "Timestamp": "2024-05-16T09:48:05.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.195000", - "Timestamp": "2019-10-15T03:37:49.000Z" + "SpotPrice": "0.676500", + "Timestamp": "2024-05-16T09:48:03.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5dn.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.144000", - "Timestamp": "2019-10-15T03:37:27.000Z" + "SpotPrice": "6.231100", + "Timestamp": "2024-05-16T09:48:03.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.223900", - "Timestamp": "2019-10-15T03:36:58.000Z" + "SpotPrice": "7.402800", + "Timestamp": "2024-05-16T09:48:02.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.223900", - "Timestamp": "2019-10-15T03:36:58.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.441500", + "Timestamp": "2024-05-16T09:48:02.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.223900", - "Timestamp": "2019-10-15T03:36:58.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.436500", + "Timestamp": "2024-05-16T09:48:02.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.384400", - "Timestamp": "2019-10-15T03:36:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.311500", + "Timestamp": "2024-05-16T09:48:02.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.384400", - "Timestamp": "2019-10-15T03:36:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.742800", + "Timestamp": "2024-05-16T09:48:02.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3en.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.384400", - "Timestamp": "2019-10-15T03:36:53.000Z" + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T09:48:02.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.254400", - "Timestamp": "2019-10-15T03:36:53.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104700", + "Timestamp": "2024-05-16T09:48:02.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3en.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.254400", - "Timestamp": "2019-10-15T03:36:53.000Z" + "SpotPrice": "0.048400", + "Timestamp": "2024-05-16T09:48:02.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3en.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.457300", + "Timestamp": "2024-05-16T09:48:02.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.549600", + "Timestamp": "2024-05-16T09:48:01.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.544600", + "Timestamp": "2024-05-16T09:48:01.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.254400", - "Timestamp": "2019-10-15T03:36:53.000Z" + "SpotPrice": "0.419600", + "Timestamp": "2024-05-16T09:48:01.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3en.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "7.670400", - "Timestamp": "2019-10-15T03:36:25.000Z" + "SpotPrice": "1.395900", + "Timestamp": "2024-05-16T09:48:01.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3en.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.large", "ProductDescription": "Windows", - "SpotPrice": "7.670400", - "Timestamp": "2019-10-15T03:36:25.000Z" + "SpotPrice": "0.153900", + "Timestamp": "2024-05-16T09:48:01.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3en.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4dn.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "7.670400", - "Timestamp": "2019-10-15T03:36:25.000Z" + "SpotPrice": "4.005700", + "Timestamp": "2024-05-16T09:48:00.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.768500", - "Timestamp": "2019-10-15T03:35:58.000Z" + "SpotPrice": "1.923800", + "Timestamp": "2024-05-16T09:48:00.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.918800", + "Timestamp": "2024-05-16T09:48:00.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.638500", - "Timestamp": "2019-10-15T03:35:58.000Z" + "SpotPrice": "1.793800", + "Timestamp": "2024-05-16T09:48:00.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.814000", - "Timestamp": "2019-10-15T03:35:34.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.644300", + "Timestamp": "2024-05-16T09:48:00.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.410000", - "Timestamp": "2019-10-15T03:35:34.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.062000", + "Timestamp": "2024-05-16T09:48:00.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.814000", - "Timestamp": "2019-10-15T03:35:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.303300", + "Timestamp": "2024-05-16T09:48:00.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.684000", - "Timestamp": "2019-10-15T03:35:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.136800", + "Timestamp": "2024-05-16T09:48:00.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.280000", - "Timestamp": "2019-10-15T03:35:34.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.172400", + "Timestamp": "2024-05-16T09:48:00.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.167400", + "Timestamp": "2024-05-16T09:48:00.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.684000", - "Timestamp": "2019-10-15T03:35:34.000Z" + "SpotPrice": "1.042400", + "Timestamp": "2024-05-16T09:48:00.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "11.568000", - "Timestamp": "2019-10-15T03:34:59.000Z" + "SpotPrice": "1.687800", + "Timestamp": "2024-05-16T09:47:59.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.444000", - "Timestamp": "2019-10-15T03:34:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.381400", + "Timestamp": "2024-05-16T09:47:59.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.444000", - "Timestamp": "2019-10-15T03:34:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.351400", + "Timestamp": "2024-05-16T09:47:59.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.444000", - "Timestamp": "2019-10-15T03:34:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.251400", + "Timestamp": "2024-05-16T09:47:59.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.156000", - "Timestamp": "2019-10-15T03:34:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.430400", + "Timestamp": "2024-05-16T09:47:59.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.752000", - "Timestamp": "2019-10-15T03:34:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.425400", + "Timestamp": "2024-05-16T09:47:59.000Z" }, { - "AvailabilityZone": "us-east-2a", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.300400", + "Timestamp": "2024-05-16T09:47:59.000Z" + }, + { + "AvailabilityZone": "us-east-1d", "InstanceType": "g3.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.156000", - "Timestamp": "2019-10-15T03:34:35.000Z" + "SpotPrice": "2.370300", + "Timestamp": "2024-05-16T09:47:58.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "d2.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.277600", - "Timestamp": "2019-10-15T03:33:54.000Z" + "SpotPrice": "0.384200", + "Timestamp": "2024-05-16T09:47:58.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.277600", - "Timestamp": "2019-10-15T03:33:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.943200", + "Timestamp": "2024-05-16T09:47:58.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.277600", - "Timestamp": "2019-10-15T03:33:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.938200", + "Timestamp": "2024-05-16T09:47:58.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.813200", + "Timestamp": "2024-05-16T09:47:58.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "7.282000", - "Timestamp": "2019-10-15T03:33:49.000Z" + "SpotPrice": "2.710100", + "Timestamp": "2024-05-16T09:47:57.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.705100", + "Timestamp": "2024-05-16T09:47:57.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "7.152000", - "Timestamp": "2019-10-15T03:33:49.000Z" + "SpotPrice": "2.580100", + "Timestamp": "2024-05-16T09:47:57.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.153600", - "Timestamp": "2019-10-15T03:33:30.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.283200", + "Timestamp": "2024-05-16T09:47:57.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.153600", - "Timestamp": "2019-10-15T03:33:30.000Z" + "SpotPrice": "3.235100", + "Timestamp": "2024-05-16T09:47:57.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.153600", - "Timestamp": "2019-10-15T03:33:30.000Z" + "SpotPrice": "2.911700", + "Timestamp": "2024-05-16T09:47:57.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.093600", - "Timestamp": "2019-10-15T03:33:30.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.230100", + "Timestamp": "2024-05-16T09:47:57.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.906700", + "Timestamp": "2024-05-16T09:47:57.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.093600", - "Timestamp": "2019-10-15T03:33:30.000Z" + "SpotPrice": "3.105100", + "Timestamp": "2024-05-16T09:47:57.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.093600", - "Timestamp": "2019-10-15T03:33:30.000Z" + "SpotPrice": "2.781700", + "Timestamp": "2024-05-16T09:47:57.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.112900", - "Timestamp": "2019-10-15T03:33:09.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.862000", + "Timestamp": "2024-05-16T09:47:56.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.112900", - "Timestamp": "2019-10-15T03:33:09.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.857000", + "Timestamp": "2024-05-16T09:47:56.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.732000", + "Timestamp": "2024-05-16T09:47:56.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3.large", "ProductDescription": "Windows", - "SpotPrice": "0.112900", - "Timestamp": "2019-10-15T03:33:09.000Z" + "SpotPrice": "0.065400", + "Timestamp": "2024-05-16T09:47:56.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.986000", - "Timestamp": "2019-10-15T03:33:03.000Z" + "SpotPrice": "2.475400", + "Timestamp": "2024-05-16T09:47:56.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.470400", + "Timestamp": "2024-05-16T09:47:56.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.856000", - "Timestamp": "2019-10-15T03:33:03.000Z" + "SpotPrice": "2.345400", + "Timestamp": "2024-05-16T09:47:56.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.large", "ProductDescription": "Windows", - "SpotPrice": "0.112000", - "Timestamp": "2019-10-15T03:32:44.000Z" + "SpotPrice": "0.138300", + "Timestamp": "2024-05-16T09:47:56.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r4.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.112000", - "Timestamp": "2019-10-15T03:32:44.000Z" + "SpotPrice": "0.295900", + "Timestamp": "2024-05-16T09:47:56.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.112000", - "Timestamp": "2019-10-15T03:32:44.000Z" + "SpotPrice": "3.100700", + "Timestamp": "2024-05-16T09:47:56.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.large", "ProductDescription": "Windows", - "SpotPrice": "0.447600", - "Timestamp": "2019-10-15T03:32:32.000Z" + "SpotPrice": "0.169700", + "Timestamp": "2024-05-16T09:47:55.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.447600", - "Timestamp": "2019-10-15T03:32:32.000Z" + "SpotPrice": "3.140400", + "Timestamp": "2024-05-16T09:47:55.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.447600", - "Timestamp": "2019-10-15T03:32:32.000Z" + "SpotPrice": "6.283700", + "Timestamp": "2024-05-16T09:47:55.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5dn.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.335700", + "Timestamp": "2024-05-16T09:47:54.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.194300", + "Timestamp": "2024-05-16T09:47:54.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "d2.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.802000", - "Timestamp": "2019-10-15T03:32:27.000Z" + "SpotPrice": "2.156200", + "Timestamp": "2024-05-16T09:47:54.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5dn.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.126200", + "Timestamp": "2024-05-16T09:47:54.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "d2.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.672000", - "Timestamp": "2019-10-15T03:32:27.000Z" + "SpotPrice": "2.026200", + "Timestamp": "2024-05-16T09:47:54.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "a1.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.064900", - "Timestamp": "2019-10-15T03:32:13.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.648400", + "Timestamp": "2024-05-16T09:47:53.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "a1.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.064900", - "Timestamp": "2019-10-15T03:32:13.000Z" + "SpotPrice": "1.396900", + "Timestamp": "2024-05-16T09:47:53.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "a1.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.004900", - "Timestamp": "2019-10-15T03:32:13.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.391900", + "Timestamp": "2024-05-16T09:47:53.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "a1.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.004900", - "Timestamp": "2019-10-15T03:32:13.000Z" + "SpotPrice": "1.266900", + "Timestamp": "2024-05-16T09:47:53.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.metal", "ProductDescription": "Windows", - "SpotPrice": "5.064000", - "Timestamp": "2019-10-15T03:32:03.000Z" + "SpotPrice": "10.402400", + "Timestamp": "2024-05-16T09:47:53.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.metal-24xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.080000", - "Timestamp": "2019-10-15T03:31:46.000Z" + "SpotPrice": "1.983300", + "Timestamp": "2024-05-16T09:47:52.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.978300", + "Timestamp": "2024-05-16T09:47:52.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.metal-24xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.020000", - "Timestamp": "2019-10-15T03:31:46.000Z" + "SpotPrice": "1.853300", + "Timestamp": "2024-05-16T09:47:52.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.419600", - "Timestamp": "2019-10-15T03:31:42.000Z" + "SpotPrice": "0.596200", + "Timestamp": "2024-05-16T09:47:52.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.419600", - "Timestamp": "2019-10-15T03:31:42.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.921000", + "Timestamp": "2024-05-16T09:47:52.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.916000", + "Timestamp": "2024-05-16T09:47:52.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.791000", + "Timestamp": "2024-05-16T09:47:52.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.large", "ProductDescription": "Windows", - "SpotPrice": "5.419600", - "Timestamp": "2019-10-15T03:31:42.000Z" + "SpotPrice": "0.130500", + "Timestamp": "2024-05-16T09:47:52.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5n.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.938000", - "Timestamp": "2019-10-15T03:31:24.000Z" + "SpotPrice": "1.748700", + "Timestamp": "2024-05-16T09:47:52.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.938000", - "Timestamp": "2019-10-15T03:31:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.743700", + "Timestamp": "2024-05-16T09:47:52.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5n.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.618700", + "Timestamp": "2024-05-16T09:47:52.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.938000", - "Timestamp": "2019-10-15T03:31:24.000Z" + "SpotPrice": "0.924700", + "Timestamp": "2024-05-16T09:47:51.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.808000", - "Timestamp": "2019-10-15T03:31:24.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.919700", + "Timestamp": "2024-05-16T09:47:51.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5n.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.808000", - "Timestamp": "2019-10-15T03:31:24.000Z" + "SpotPrice": "0.794700", + "Timestamp": "2024-05-16T09:47:51.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5n.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.860200", + "Timestamp": "2024-05-16T09:47:51.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.855200", + "Timestamp": "2024-05-16T09:47:51.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.808000", - "Timestamp": "2019-10-15T03:31:24.000Z" + "SpotPrice": "2.730200", + "Timestamp": "2024-05-16T09:47:51.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.752000", - "Timestamp": "2019-10-15T03:30:58.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.178200", + "Timestamp": "2024-05-16T09:47:51.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.752000", - "Timestamp": "2019-10-15T03:30:58.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.173200", + "Timestamp": "2024-05-16T09:47:51.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.752000", - "Timestamp": "2019-10-15T03:30:58.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.048200", + "Timestamp": "2024-05-16T09:47:51.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.133600", - "Timestamp": "2019-10-15T03:30:37.000Z" + "SpotPrice": "1.438400", + "Timestamp": "2024-05-16T09:47:50.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.133600", - "Timestamp": "2019-10-15T03:30:37.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.433400", + "Timestamp": "2024-05-16T09:47:50.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.308400", + "Timestamp": "2024-05-16T09:47:50.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "f1.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.133600", - "Timestamp": "2019-10-15T03:30:37.000Z" + "SpotPrice": "0.888700", + "Timestamp": "2024-05-16T09:47:50.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.003600", - "Timestamp": "2019-10-15T03:30:37.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "f1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.858700", + "Timestamp": "2024-05-16T09:47:50.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "f1.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.003600", - "Timestamp": "2019-10-15T03:30:37.000Z" + "SpotPrice": "0.758700", + "Timestamp": "2024-05-16T09:47:50.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.003600", - "Timestamp": "2019-10-15T03:30:37.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.247000", + "Timestamp": "2024-05-16T09:47:50.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.214300", - "Timestamp": "2019-10-15T03:16:36.000Z" + "SpotPrice": "2.064300", + "Timestamp": "2024-05-16T09:47:50.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.084300", - "Timestamp": "2019-10-15T03:16:36.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.059300", + "Timestamp": "2024-05-16T09:47:50.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.110100", - "Timestamp": "2019-10-15T03:03:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.934300", + "Timestamp": "2024-05-16T09:47:50.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m4.10xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.110100", - "Timestamp": "2019-10-15T03:03:25.000Z" + "SpotPrice": "2.683200", + "Timestamp": "2024-05-16T09:47:50.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t2.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.110100", - "Timestamp": "2019-10-15T03:03:25.000Z" + "SpotPrice": "0.213600", + "Timestamp": "2024-05-16T09:47:49.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.078100", - "Timestamp": "2019-10-15T03:02:47.000Z" + "SpotPrice": "4.429900", + "Timestamp": "2024-05-16T09:47:49.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.078100", - "Timestamp": "2019-10-15T03:02:47.000Z" + "SpotPrice": "5.215600", + "Timestamp": "2024-05-16T09:47:49.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.424900", + "Timestamp": "2024-05-16T09:47:49.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.210600", + "Timestamp": "2024-05-16T09:47:49.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.018100", - "Timestamp": "2019-10-15T03:02:47.000Z" + "SpotPrice": "4.299900", + "Timestamp": "2024-05-16T09:47:49.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.018100", - "Timestamp": "2019-10-15T03:02:47.000Z" + "SpotPrice": "5.085600", + "Timestamp": "2024-05-16T09:47:49.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5dn.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5a.large", "ProductDescription": "Windows", - "SpotPrice": "0.112000", - "Timestamp": "2019-10-15T03:01:49.000Z" + "SpotPrice": "0.139800", + "Timestamp": "2024-05-16T09:47:48.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-15T02:58:18.000Z" + "SpotPrice": "0.223400", + "Timestamp": "2024-05-16T09:47:48.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.219700", + "Timestamp": "2024-05-16T09:47:48.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041800", - "Timestamp": "2019-10-15T02:58:18.000Z" + "SpotPrice": "0.163400", + "Timestamp": "2024-05-16T09:47:48.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-15T02:52:48.000Z" + "SpotPrice": "1.386600", + "Timestamp": "2024-05-16T09:47:48.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.381600", + "Timestamp": "2024-05-16T09:47:48.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041800", - "Timestamp": "2019-10-15T02:52:48.000Z" + "SpotPrice": "1.256600", + "Timestamp": "2024-05-16T09:47:48.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.285000", - "Timestamp": "2019-10-15T02:51:59.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.534800", + "Timestamp": "2024-05-16T09:47:47.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.085900", + "Timestamp": "2024-05-16T09:47:47.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.285000", - "Timestamp": "2019-10-15T02:51:59.000Z" + "SpotPrice": "1.341600", + "Timestamp": "2024-05-16T09:47:47.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.225000", - "Timestamp": "2019-10-15T02:51:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.336600", + "Timestamp": "2024-05-16T09:47:47.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.225000", - "Timestamp": "2019-10-15T02:51:59.000Z" + "SpotPrice": "1.211600", + "Timestamp": "2024-05-16T09:47:47.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.metal", "ProductDescription": "Windows", - "SpotPrice": "0.880800", - "Timestamp": "2019-10-15T02:50:28.000Z" + "SpotPrice": "7.416700", + "Timestamp": "2024-05-16T09:47:47.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.880800", - "Timestamp": "2019-10-15T02:50:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.102100", + "Timestamp": "2024-05-16T09:47:47.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.880800", - "Timestamp": "2019-10-15T02:50:28.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.048000", + "Timestamp": "2024-05-16T09:47:47.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.958000", - "Timestamp": "2019-10-15T02:50:05.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.097100", + "Timestamp": "2024-05-16T09:47:47.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.043000", + "Timestamp": "2024-05-16T09:47:47.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.828000", - "Timestamp": "2019-10-15T02:50:05.000Z" + "SpotPrice": "1.972100", + "Timestamp": "2024-05-16T09:47:47.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.230200", - "Timestamp": "2019-10-15T02:38:59.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.918000", + "Timestamp": "2024-05-16T09:47:47.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.230200", - "Timestamp": "2019-10-15T02:38:59.000Z" + "SpotPrice": "2.892900", + "Timestamp": "2024-05-16T09:47:47.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.230200", - "Timestamp": "2019-10-15T02:38:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.862900", + "Timestamp": "2024-05-16T09:47:47.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.100200", - "Timestamp": "2019-10-15T02:38:59.000Z" + "SpotPrice": "2.762900", + "Timestamp": "2024-05-16T09:47:47.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.100200", - "Timestamp": "2019-10-15T02:38:59.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.900300", + "Timestamp": "2024-05-16T09:47:47.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.895300", + "Timestamp": "2024-05-16T09:47:47.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.100200", - "Timestamp": "2019-10-15T02:38:59.000Z" + "SpotPrice": "1.770300", + "Timestamp": "2024-05-16T09:47:47.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247400", - "Timestamp": "2019-10-15T02:38:43.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.889400", + "Timestamp": "2024-05-16T09:47:47.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247400", - "Timestamp": "2019-10-15T02:38:43.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.884400", + "Timestamp": "2024-05-16T09:47:47.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247400", - "Timestamp": "2019-10-15T02:38:43.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.759400", + "Timestamp": "2024-05-16T09:47:47.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5n.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.464500", - "Timestamp": "2019-10-15T02:37:26.000Z" + "SpotPrice": "0.217500", + "Timestamp": "2024-05-16T09:47:46.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5n.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.213800", + "Timestamp": "2024-05-16T09:47:46.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.334500", - "Timestamp": "2019-10-15T02:37:26.000Z" + "SpotPrice": "0.157500", + "Timestamp": "2024-05-16T09:47:46.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5dn.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.768500", - "Timestamp": "2019-10-15T02:35:17.000Z" + "SpotPrice": "1.334700", + "Timestamp": "2024-05-16T09:47:46.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5dn.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.329700", + "Timestamp": "2024-05-16T09:47:46.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.638500", - "Timestamp": "2019-10-15T02:35:17.000Z" + "SpotPrice": "1.204700", + "Timestamp": "2024-05-16T09:47:46.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5dn.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.large", "ProductDescription": "Windows", - "SpotPrice": "2.709700", - "Timestamp": "2019-10-15T02:16:44.000Z" + "SpotPrice": "0.160400", + "Timestamp": "2024-05-16T09:47:45.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-15T02:03:02.000Z" + "SpotPrice": "0.735700", + "Timestamp": "2024-05-16T09:47:45.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-15T02:03:02.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.730700", + "Timestamp": "2024-05-16T09:47:45.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-15T02:03:02.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.605700", + "Timestamp": "2024-05-16T09:47:45.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.207000", - "Timestamp": "2019-10-15T02:03:02.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.376200", + "Timestamp": "2024-05-16T09:47:45.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.207000", - "Timestamp": "2019-10-15T02:03:02.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.387100", + "Timestamp": "2024-05-16T09:47:44.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.207000", - "Timestamp": "2019-10-15T02:03:02.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.357100", + "Timestamp": "2024-05-16T09:47:44.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.338000", - "Timestamp": "2019-10-15T02:03:02.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.257100", + "Timestamp": "2024-05-16T09:47:44.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.338000", - "Timestamp": "2019-10-15T02:03:02.000Z" + "SpotPrice": "3.882700", + "Timestamp": "2024-05-16T09:47:44.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.338000", - "Timestamp": "2019-10-15T02:03:02.000Z" + "SpotPrice": "4.359600", + "Timestamp": "2024-05-16T09:47:44.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.163000", - "Timestamp": "2019-10-15T02:01:27.000Z" + "SpotPrice": "3.349000", + "Timestamp": "2024-05-16T09:47:44.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.344000", + "Timestamp": "2024-05-16T09:47:44.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.103000", - "Timestamp": "2019-10-15T02:01:27.000Z" + "SpotPrice": "3.219000", + "Timestamp": "2024-05-16T09:47:44.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "h1.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.790000", - "Timestamp": "2019-10-15T02:01:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.331500", + "Timestamp": "2024-05-16T09:47:44.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "h1.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.790000", - "Timestamp": "2019-10-15T02:01:11.000Z" + "SpotPrice": "0.982000", + "Timestamp": "2024-05-16T09:47:44.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "h1.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.790000", - "Timestamp": "2019-10-15T02:01:11.000Z" + "SpotPrice": "1.034300", + "Timestamp": "2024-05-16T09:47:44.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "h1.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.660000", - "Timestamp": "2019-10-15T02:01:11.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.977000", + "Timestamp": "2024-05-16T09:47:44.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "h1.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.660000", - "Timestamp": "2019-10-15T02:01:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.029300", + "Timestamp": "2024-05-16T09:47:44.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "h1.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.660000", - "Timestamp": "2019-10-15T02:01:11.000Z" + "SpotPrice": "0.852000", + "Timestamp": "2024-05-16T09:47:44.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "h1.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.132000", - "Timestamp": "2019-10-15T02:01:10.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.904300", + "Timestamp": "2024-05-16T09:47:44.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "h1.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.3xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.132000", - "Timestamp": "2019-10-15T02:01:10.000Z" + "SpotPrice": "0.943700", + "Timestamp": "2024-05-16T09:47:43.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "h1.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.132000", - "Timestamp": "2019-10-15T02:01:10.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.298500", + "Timestamp": "2024-05-16T09:47:43.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.209800", - "Timestamp": "2019-10-15T01:50:55.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.293500", + "Timestamp": "2024-05-16T09:47:43.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2idn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.079800", - "Timestamp": "2019-10-15T01:50:55.000Z" + "SpotPrice": "5.168500", + "Timestamp": "2024-05-16T09:47:43.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c1.medium", "ProductDescription": "Windows", - "SpotPrice": "0.447800", - "Timestamp": "2019-10-15T01:48:36.000Z" + "SpotPrice": "0.126000", + "Timestamp": "2024-05-16T09:47:43.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.447800", - "Timestamp": "2019-10-15T01:48:36.000Z" + "SpotPrice": "4.463900", + "Timestamp": "2024-05-16T09:47:43.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.447800", - "Timestamp": "2019-10-15T01:48:36.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.501400", + "Timestamp": "2024-05-16T09:47:42.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.054500", - "Timestamp": "2019-10-15T01:48:32.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.496400", + "Timestamp": "2024-05-16T09:47:42.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.054500", - "Timestamp": "2019-10-15T01:48:32.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.371400", + "Timestamp": "2024-05-16T09:47:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.054500", - "Timestamp": "2019-10-15T01:48:32.000Z" + "SpotPrice": "2.119100", + "Timestamp": "2024-05-16T09:47:42.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.087800", - "Timestamp": "2019-10-15T01:48:12.000Z" + "SpotPrice": "1.862600", + "Timestamp": "2024-05-16T09:47:42.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.087800", - "Timestamp": "2019-10-15T01:48:12.000Z" + "SpotPrice": "1.929700", + "Timestamp": "2024-05-16T09:47:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.087800", - "Timestamp": "2019-10-15T01:48:12.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.857600", + "Timestamp": "2024-05-16T09:47:42.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.957800", - "Timestamp": "2019-10-15T01:48:12.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.924700", + "Timestamp": "2024-05-16T09:47:42.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.957800", - "Timestamp": "2019-10-15T01:48:12.000Z" + "SpotPrice": "1.732600", + "Timestamp": "2024-05-16T09:47:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.957800", - "Timestamp": "2019-10-15T01:48:12.000Z" - }, - { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.373800", - "Timestamp": "2019-10-15T01:47:05.000Z" - }, - { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.373800", - "Timestamp": "2019-10-15T01:47:05.000Z" + "SpotPrice": "1.799700", + "Timestamp": "2024-05-16T09:47:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.373800", - "Timestamp": "2019-10-15T01:47:05.000Z" - }, - { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.153000", - "Timestamp": "2019-10-15T01:40:17.000Z" - }, - { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.153000", - "Timestamp": "2019-10-15T01:40:17.000Z" + "SpotPrice": "5.079200", + "Timestamp": "2024-05-16T09:47:42.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.153000", - "Timestamp": "2019-10-15T01:40:17.000Z" + "SpotPrice": "3.287500", + "Timestamp": "2024-05-16T09:47:41.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.023000", - "Timestamp": "2019-10-15T01:40:17.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.282500", + "Timestamp": "2024-05-16T09:47:41.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.023000", - "Timestamp": "2019-10-15T01:40:17.000Z" + "SpotPrice": "3.157500", + "Timestamp": "2024-05-16T09:47:41.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.023000", - "Timestamp": "2019-10-15T01:40:17.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.691500", + "Timestamp": "2024-05-16T09:47:41.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.504000", - "Timestamp": "2019-10-15T01:39:16.000Z" + "SpotPrice": "3.661800", + "Timestamp": "2024-05-16T09:47:40.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.504000", - "Timestamp": "2019-10-15T01:39:16.000Z" + "SpotPrice": "3.489500", + "Timestamp": "2024-05-16T09:47:40.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m1.large", "ProductDescription": "Windows", - "SpotPrice": "1.504000", - "Timestamp": "2019-10-15T01:39:16.000Z" + "SpotPrice": "0.180200", + "Timestamp": "2024-05-16T09:47:40.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m1.small", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.608900", - "Timestamp": "2019-10-15T01:38:41.000Z" + "SpotPrice": "0.077900", + "Timestamp": "2024-05-16T09:47:40.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.478900", - "Timestamp": "2019-10-15T01:38:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m1.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047900", + "Timestamp": "2024-05-16T09:47:40.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5n.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.806500", - "Timestamp": "2019-10-15T01:38:08.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m1.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017900", + "Timestamp": "2024-05-16T09:47:40.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.419400", - "Timestamp": "2019-10-15T01:35:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.606500", + "Timestamp": "2024-05-16T09:47:40.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-15T01:34:18.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.601500", + "Timestamp": "2024-05-16T09:47:40.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041800", - "Timestamp": "2019-10-15T01:34:18.000Z" + "SpotPrice": "2.476500", + "Timestamp": "2024-05-16T09:47:40.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.9xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-15T01:21:26.000Z" + "SpotPrice": "1.012800", + "Timestamp": "2024-05-16T09:47:40.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.982800", + "Timestamp": "2024-05-16T09:47:40.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.9xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041800", - "Timestamp": "2019-10-15T01:21:26.000Z" + "SpotPrice": "0.882800", + "Timestamp": "2024-05-16T09:47:40.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5n.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4dn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.209800", - "Timestamp": "2019-10-15T01:15:24.000Z" + "SpotPrice": "1.082900", + "Timestamp": "2024-05-16T09:47:40.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5n.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.077900", + "Timestamp": "2024-05-16T09:47:40.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4dn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.079800", - "Timestamp": "2019-10-15T01:15:24.000Z" + "SpotPrice": "0.952900", + "Timestamp": "2024-05-16T09:47:40.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5dn.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.133400", - "Timestamp": "2019-10-15T01:09:19.000Z" + "SpotPrice": "0.112400", + "Timestamp": "2024-05-16T09:47:39.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5dn.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T09:47:39.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.003400", - "Timestamp": "2019-10-15T01:09:19.000Z" + "SpotPrice": "0.052400", + "Timestamp": "2024-05-16T09:47:39.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.582500", - "Timestamp": "2019-10-15T01:05:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.174000", + "Timestamp": "2024-05-16T09:47:39.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.686900", - "Timestamp": "2019-10-15T01:02:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.144000", + "Timestamp": "2024-05-16T09:47:39.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.686900", - "Timestamp": "2019-10-15T01:02:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.044000", + "Timestamp": "2024-05-16T09:47:39.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.686900", - "Timestamp": "2019-10-15T01:02:11.000Z" + "SpotPrice": "15.763800", + "Timestamp": "2024-05-16T09:47:38.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.765700", - "Timestamp": "2019-10-15T01:01:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.932700", + "Timestamp": "2024-05-16T09:47:38.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.765700", - "Timestamp": "2019-10-15T01:01:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.927700", + "Timestamp": "2024-05-16T09:47:38.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.765700", - "Timestamp": "2019-10-15T01:01:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.802700", + "Timestamp": "2024-05-16T09:47:38.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.030900", - "Timestamp": "2019-10-15T00:59:14.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114400", + "Timestamp": "2024-05-16T09:47:38.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.030900", - "Timestamp": "2019-10-15T00:59:14.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T09:47:38.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.030900", - "Timestamp": "2019-10-15T00:59:14.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054400", + "Timestamp": "2024-05-16T09:47:38.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7gd.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.072500", - "Timestamp": "2019-10-15T00:58:52.000Z" + "SpotPrice": "0.196600", + "Timestamp": "2024-05-16T09:47:38.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7gd.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.072500", - "Timestamp": "2019-10-15T00:58:52.000Z" + "SpotPrice": "0.187400", + "Timestamp": "2024-05-16T09:47:38.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.072500", - "Timestamp": "2019-10-15T00:58:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192900", + "Timestamp": "2024-05-16T09:47:38.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.012500", - "Timestamp": "2019-10-15T00:58:52.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183700", + "Timestamp": "2024-05-16T09:47:38.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.012500", - "Timestamp": "2019-10-15T00:58:52.000Z" + "SpotPrice": "0.136600", + "Timestamp": "2024-05-16T09:47:38.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.012500", - "Timestamp": "2019-10-15T00:58:52.000Z" + "SpotPrice": "0.127400", + "Timestamp": "2024-05-16T09:47:38.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.582500", - "Timestamp": "2019-10-15T00:51:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.995800", + "Timestamp": "2024-05-16T09:47:38.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.582500", - "Timestamp": "2019-10-15T00:51:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.990800", + "Timestamp": "2024-05-16T09:47:38.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.582500", - "Timestamp": "2019-10-15T00:51:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.865800", + "Timestamp": "2024-05-16T09:47:38.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.768500", - "Timestamp": "2019-10-15T00:50:39.000Z" + "SpotPrice": "10.228200", + "Timestamp": "2024-05-16T09:47:37.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.768500", - "Timestamp": "2019-10-15T00:50:39.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "10.223200", + "Timestamp": "2024-05-16T09:47:37.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "10.098200", + "Timestamp": "2024-05-16T09:47:37.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r4.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.768500", - "Timestamp": "2019-10-15T00:50:39.000Z" + "SpotPrice": "0.394300", + "Timestamp": "2024-05-16T09:47:37.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.638500", - "Timestamp": "2019-10-15T00:50:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.364300", + "Timestamp": "2024-05-16T09:47:37.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r4.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.638500", - "Timestamp": "2019-10-15T00:50:39.000Z" + "SpotPrice": "0.264300", + "Timestamp": "2024-05-16T09:47:37.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.638500", - "Timestamp": "2019-10-15T00:50:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.402200", + "Timestamp": "2024-05-16T09:47:37.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.111900", - "Timestamp": "2019-10-15T00:50:16.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.397200", + "Timestamp": "2024-05-16T09:47:37.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.111900", - "Timestamp": "2019-10-15T00:50:16.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.272200", + "Timestamp": "2024-05-16T09:47:37.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.111900", - "Timestamp": "2019-10-15T00:50:16.000Z" + "SpotPrice": "7.861400", + "Timestamp": "2024-05-16T09:47:37.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.130000", - "Timestamp": "2019-10-15T00:50:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.058100", + "Timestamp": "2024-05-16T09:47:37.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.130000", - "Timestamp": "2019-10-15T00:50:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.028100", + "Timestamp": "2024-05-16T09:47:37.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.958000", - "Timestamp": "2019-10-15T00:50:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.928100", + "Timestamp": "2024-05-16T09:47:37.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.958000", - "Timestamp": "2019-10-15T00:50:10.000Z" + "SpotPrice": "0.459800", + "Timestamp": "2024-05-16T09:47:36.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.828000", - "Timestamp": "2019-10-15T00:50:10.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.454800", + "Timestamp": "2024-05-16T09:47:36.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.828000", - "Timestamp": "2019-10-15T00:50:10.000Z" + "SpotPrice": "0.329800", + "Timestamp": "2024-05-16T09:47:36.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.079900", - "Timestamp": "2019-10-15T00:47:30.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.695300", + "Timestamp": "2024-05-16T09:47:36.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.079900", - "Timestamp": "2019-10-15T00:47:30.000Z" + "SpotPrice": "1.636800", + "Timestamp": "2024-05-16T09:47:36.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.079900", - "Timestamp": "2019-10-15T00:47:30.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.631800", + "Timestamp": "2024-05-16T09:47:36.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.019900", - "Timestamp": "2019-10-15T00:47:30.000Z" + "SpotPrice": "1.506800", + "Timestamp": "2024-05-16T09:47:36.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.019900", - "Timestamp": "2019-10-15T00:47:30.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.094800", + "Timestamp": "2024-05-16T09:47:35.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.019900", - "Timestamp": "2019-10-15T00:47:30.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.064800", + "Timestamp": "2024-05-16T09:47:35.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.295000", - "Timestamp": "2019-10-15T00:40:01.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.964800", + "Timestamp": "2024-05-16T09:47:35.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "h1.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.295000", - "Timestamp": "2019-10-15T00:40:01.000Z" + "SpotPrice": "0.292200", + "Timestamp": "2024-05-16T09:47:35.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.295000", - "Timestamp": "2019-10-15T00:40:01.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.287200", + "Timestamp": "2024-05-16T09:47:35.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "h1.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.165000", - "Timestamp": "2019-10-15T00:40:01.000Z" + "SpotPrice": "0.162200", + "Timestamp": "2024-05-16T09:47:35.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.165000", - "Timestamp": "2019-10-15T00:40:01.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "c3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125600", + "Timestamp": "2024-05-16T09:47:35.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.165000", - "Timestamp": "2019-10-15T00:40:01.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "c3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165600", + "Timestamp": "2024-05-16T09:47:35.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.533000", - "Timestamp": "2019-10-15T00:40:01.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "c3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065600", + "Timestamp": "2024-05-16T09:47:35.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "h1.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.large", "ProductDescription": "Windows", - "SpotPrice": "0.533000", - "Timestamp": "2019-10-15T00:40:01.000Z" + "SpotPrice": "0.144700", + "Timestamp": "2024-05-16T09:47:35.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.533000", - "Timestamp": "2019-10-15T00:40:01.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.656000", + "Timestamp": "2024-05-16T09:47:35.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066300", - "Timestamp": "2019-10-15T00:38:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.651000", + "Timestamp": "2024-05-16T09:47:35.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066300", - "Timestamp": "2019-10-15T00:38:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.526000", + "Timestamp": "2024-05-16T09:47:35.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066300", - "Timestamp": "2019-10-15T00:38:54.000Z" + "SpotPrice": "2.004600", + "Timestamp": "2024-05-16T09:47:35.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006300", - "Timestamp": "2019-10-15T00:38:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.974600", + "Timestamp": "2024-05-16T09:47:35.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006300", - "Timestamp": "2019-10-15T00:38:54.000Z" + "SpotPrice": "1.874600", + "Timestamp": "2024-05-16T09:47:35.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006300", - "Timestamp": "2019-10-15T00:38:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.060000", + "Timestamp": "2024-05-16T09:47:34.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3en.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.024700", - "Timestamp": "2019-10-15T00:37:38.000Z" + "SpotPrice": "0.395400", + "Timestamp": "2024-05-16T09:47:34.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "t3.small", - "ProductDescription": "Windows", - "SpotPrice": "0.024700", - "Timestamp": "2019-10-15T00:37:38.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.520600", + "Timestamp": "2024-05-16T09:47:34.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "t3.small", - "ProductDescription": "Windows", - "SpotPrice": "0.024700", - "Timestamp": "2019-10-15T00:37:38.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.515600", + "Timestamp": "2024-05-16T09:47:34.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.112000", - "Timestamp": "2019-10-15T00:27:00.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.390600", + "Timestamp": "2024-05-16T09:47:34.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5dn.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.087800", - "Timestamp": "2019-10-15T00:15:16.000Z" + "SpotPrice": "0.095300", + "Timestamp": "2024-05-16T09:47:34.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.957800", - "Timestamp": "2019-10-15T00:15:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091600", + "Timestamp": "2024-05-16T09:47:34.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.419400", - "Timestamp": "2019-10-15T00:14:58.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035300", + "Timestamp": "2024-05-16T09:47:34.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5dn.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.080000", - "Timestamp": "2019-10-15T00:05:16.000Z" + "SpotPrice": "0.140600", + "Timestamp": "2024-05-16T09:47:34.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "m5dn.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.020000", - "Timestamp": "2019-10-15T00:05:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136900", + "Timestamp": "2024-05-16T09:47:34.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.654000", - "Timestamp": "2019-10-15T00:02:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080600", + "Timestamp": "2024-05-16T09:47:34.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.654000", - "Timestamp": "2019-10-15T00:02:51.000Z" + "SpotPrice": "0.401400", + "Timestamp": "2024-05-16T09:47:34.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.654000", - "Timestamp": "2019-10-15T00:02:51.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.396400", + "Timestamp": "2024-05-16T09:47:34.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.524000", - "Timestamp": "2019-10-15T00:02:51.000Z" + "SpotPrice": "0.271400", + "Timestamp": "2024-05-16T09:47:34.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.524000", - "Timestamp": "2019-10-15T00:02:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.348000", + "Timestamp": "2024-05-16T09:47:34.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.524000", - "Timestamp": "2019-10-15T00:02:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343000", + "Timestamp": "2024-05-16T09:47:34.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.892000", - "Timestamp": "2019-10-15T00:02:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.218000", + "Timestamp": "2024-05-16T09:47:34.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.892000", - "Timestamp": "2019-10-15T00:02:35.000Z" + "SpotPrice": "2.277000", + "Timestamp": "2024-05-16T09:47:34.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.892000", - "Timestamp": "2019-10-15T00:02:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.283500", + "Timestamp": "2024-05-16T09:47:34.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.401200", - "Timestamp": "2019-10-15T00:02:06.000Z" + "SpotPrice": "0.275400", + "Timestamp": "2024-05-16T09:47:34.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.401200", - "Timestamp": "2019-10-15T00:02:06.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.278500", + "Timestamp": "2024-05-16T09:47:34.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270400", + "Timestamp": "2024-05-16T09:47:34.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.271200", - "Timestamp": "2019-10-15T00:02:06.000Z" + "SpotPrice": "0.153500", + "Timestamp": "2024-05-16T09:47:34.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.271200", - "Timestamp": "2019-10-15T00:02:06.000Z" + "SpotPrice": "0.145400", + "Timestamp": "2024-05-16T09:47:34.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.709700", - "Timestamp": "2019-10-15T00:01:53.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140700", + "Timestamp": "2024-05-16T09:47:33.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.639200", - "Timestamp": "2019-10-15T00:01:33.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147300", + "Timestamp": "2024-05-16T09:47:33.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.639200", - "Timestamp": "2019-10-15T00:01:33.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137000", + "Timestamp": "2024-05-16T09:47:33.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.079200", - "Timestamp": "2019-10-15T00:01:23.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143600", + "Timestamp": "2024-05-16T09:47:33.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.019200", - "Timestamp": "2019-10-15T00:01:23.000Z" + "SpotPrice": "0.080700", + "Timestamp": "2024-05-16T09:47:33.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.998100", - "Timestamp": "2019-10-14T21:22:03.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087300", + "Timestamp": "2024-05-16T09:47:33.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.metal", "ProductDescription": "Windows", - "SpotPrice": "1.998100", - "Timestamp": "2019-10-14T21:22:03.000Z" + "SpotPrice": "8.449900", + "Timestamp": "2024-05-16T09:47:33.000Z" }, { - "AvailabilityZone": "us-east-2a", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.metal", "ProductDescription": "Windows", - "SpotPrice": "1.998100", - "Timestamp": "2019-10-14T21:22:03.000Z" + "SpotPrice": "8.940100", + "Timestamp": "2024-05-16T09:47:33.000Z" }, { - "AvailabilityZone": "us-east-2c", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.709700", - "Timestamp": "2019-10-14T21:21:45.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095200", + "Timestamp": "2024-05-16T09:47:33.000Z" }, { - "AvailabilityZone": "us-east-2b", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091500", + "Timestamp": "2024-05-16T09:47:33.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035200", + "Timestamp": "2024-05-16T09:47:33.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.metal", "ProductDescription": "Windows", - "SpotPrice": "2.709700", - "Timestamp": "2019-10-14T21:21:45.000Z" + "SpotPrice": "7.446700", + "Timestamp": "2024-05-16T09:47:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.256100", - "Timestamp": "2019-10-16T02:58:42.000Z" + "SpotPrice": "0.908700", + "Timestamp": "2024-05-16T09:47:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.226100", - "Timestamp": "2019-10-16T02:58:42.000Z" + "SpotPrice": "0.903700", + "Timestamp": "2024-05-16T09:47:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.126100", - "Timestamp": "2019-10-16T02:58:42.000Z" + "SpotPrice": "0.778700", + "Timestamp": "2024-05-16T09:47:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.376500", - "Timestamp": "2019-10-16T02:51:47.000Z" + "SpotPrice": "0.476500", + "Timestamp": "2024-05-16T09:47:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.346500", - "Timestamp": "2019-10-16T02:51:47.000Z" + "SpotPrice": "0.471500", + "Timestamp": "2024-05-16T09:47:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.246500", - "Timestamp": "2019-10-16T02:51:47.000Z" + "SpotPrice": "0.346500", + "Timestamp": "2024-05-16T09:47:32.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.metal", "ProductDescription": "Windows", - "SpotPrice": "2.013600", - "Timestamp": "2019-10-16T02:50:11.000Z" + "SpotPrice": "7.669400", + "Timestamp": "2024-05-16T09:47:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.013600", - "Timestamp": "2019-10-16T02:50:11.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.523400", + "Timestamp": "2024-05-16T09:47:32.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.671600", - "Timestamp": "2019-10-16T02:49:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.518400", + "Timestamp": "2024-05-16T09:47:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.671600", - "Timestamp": "2019-10-16T02:49:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.393400", + "Timestamp": "2024-05-16T09:47:32.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.641600", - "Timestamp": "2019-10-16T02:49:29.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.185100", + "Timestamp": "2024-05-16T09:47:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.641600", - "Timestamp": "2019-10-16T02:49:29.000Z" + "SpotPrice": "2.155100", + "Timestamp": "2024-05-16T09:47:32.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.541600", - "Timestamp": "2019-10-16T02:49:29.000Z" + "SpotPrice": "2.055100", + "Timestamp": "2024-05-16T09:47:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.541600", - "Timestamp": "2019-10-16T02:49:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.607300", + "Timestamp": "2024-05-16T09:47:32.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.373300", - "Timestamp": "2019-10-16T02:49:16.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.602300", + "Timestamp": "2024-05-16T09:47:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.373300", - "Timestamp": "2019-10-16T02:49:16.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.477300", + "Timestamp": "2024-05-16T09:47:32.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.286300", - "Timestamp": "2019-10-16T02:43:52.000Z" + "SpotPrice": "0.147200", + "Timestamp": "2024-05-16T09:47:32.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.256300", - "Timestamp": "2019-10-16T02:43:52.000Z" + "SpotPrice": "0.143200", + "Timestamp": "2024-05-16T09:47:32.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.156300", - "Timestamp": "2019-10-16T02:43:52.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.491100", - "Timestamp": "2019-10-16T02:41:37.000Z" - }, - { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.491100", - "Timestamp": "2019-10-16T02:41:37.000Z" + "SpotPrice": "0.087200", + "Timestamp": "2024-05-16T09:47:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.282500", - "Timestamp": "2019-10-16T02:35:48.000Z" + "SpotPrice": "2.025400", + "Timestamp": "2024-05-16T09:47:31.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.241800", - "Timestamp": "2019-10-16T02:35:27.000Z" + "SpotPrice": "0.230900", + "Timestamp": "2024-05-16T09:47:31.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.211800", - "Timestamp": "2019-10-16T02:35:27.000Z" + "SpotPrice": "0.226900", + "Timestamp": "2024-05-16T09:47:31.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.111800", - "Timestamp": "2019-10-16T02:35:27.000Z" + "SpotPrice": "0.170900", + "Timestamp": "2024-05-16T09:47:31.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.697400", - "Timestamp": "2019-10-16T02:27:38.000Z" + "SpotPrice": "0.282400", + "Timestamp": "2024-05-16T09:47:31.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.282300", + "Timestamp": "2024-05-16T09:47:31.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.392900", - "Timestamp": "2019-10-16T02:27:22.000Z" + "SpotPrice": "0.593700", + "Timestamp": "2024-05-16T09:47:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.362900", - "Timestamp": "2019-10-16T02:27:22.000Z" + "SpotPrice": "0.588700", + "Timestamp": "2024-05-16T09:47:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.262900", - "Timestamp": "2019-10-16T02:27:22.000Z" + "SpotPrice": "0.463700", + "Timestamp": "2024-05-16T09:47:30.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.732700", - "Timestamp": "2019-10-16T02:26:53.000Z" + "SpotPrice": "0.164100", + "Timestamp": "2024-05-16T09:47:30.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gn.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.702700", - "Timestamp": "2019-10-16T02:26:53.000Z" + "SpotPrice": "0.160400", + "Timestamp": "2024-05-16T09:47:30.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.602700", - "Timestamp": "2019-10-16T02:26:53.000Z" + "SpotPrice": "0.104100", + "Timestamp": "2024-05-16T09:47:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062300", - "Timestamp": "2019-10-16T02:23:44.000Z" + "SpotPrice": "0.778300", + "Timestamp": "2024-05-16T09:47:29.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.102300", - "Timestamp": "2019-10-16T02:23:44.000Z" + "SpotPrice": "0.773300", + "Timestamp": "2024-05-16T09:47:29.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002300", - "Timestamp": "2019-10-16T02:23:44.000Z" + "SpotPrice": "0.648300", + "Timestamp": "2024-05-16T09:47:29.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.070000", + "Timestamp": "2024-05-16T09:47:29.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.100000", + "Timestamp": "2024-05-16T09:47:29.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.334600", - "Timestamp": "2019-10-16T02:19:30.000Z" + "SpotPrice": "0.495400", + "Timestamp": "2024-05-16T09:47:29.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.304600", - "Timestamp": "2019-10-16T02:19:30.000Z" + "SpotPrice": "0.465400", + "Timestamp": "2024-05-16T09:47:29.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.204600", - "Timestamp": "2019-10-16T02:19:30.000Z" + "SpotPrice": "0.365400", + "Timestamp": "2024-05-16T09:47:29.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.230200", - "Timestamp": "2019-10-16T02:18:51.000Z" + "SpotPrice": "1.013600", + "Timestamp": "2024-05-16T09:47:29.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.233800", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.398700", + "Timestamp": "2024-05-16T09:47:27.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095300", - "Timestamp": "2019-10-16T02:10:06.000Z" + "SpotPrice": "0.460500", + "Timestamp": "2024-05-16T09:47:27.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135300", - "Timestamp": "2019-10-16T02:10:06.000Z" + "SpotPrice": "0.430500", + "Timestamp": "2024-05-16T09:47:27.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035300", - "Timestamp": "2019-10-16T02:10:06.000Z" + "SpotPrice": "0.330500", + "Timestamp": "2024-05-16T09:47:27.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.999800", - "Timestamp": "2019-10-16T02:02:36.000Z" + "SpotPrice": "0.174300", + "Timestamp": "2024-05-16T09:47:26.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.969800", - "Timestamp": "2019-10-16T02:02:36.000Z" + "SpotPrice": "0.170600", + "Timestamp": "2024-05-16T09:47:26.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.869800", - "Timestamp": "2019-10-16T02:02:36.000Z" + "SpotPrice": "0.114300", + "Timestamp": "2024-05-16T09:47:26.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.606500", - "Timestamp": "2019-10-16T02:02:32.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.285100", + "Timestamp": "2024-05-16T09:47:26.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c4.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.576500", - "Timestamp": "2019-10-16T02:02:32.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.936900", + "Timestamp": "2024-05-16T09:47:26.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.476500", - "Timestamp": "2019-10-16T02:02:32.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.726500", + "Timestamp": "2024-05-16T09:47:26.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.139400", - "Timestamp": "2019-10-16T01:54:20.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.931900", + "Timestamp": "2024-05-16T09:47:26.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.179400", - "Timestamp": "2019-10-16T01:54:20.000Z" + "SpotPrice": "3.721500", + "Timestamp": "2024-05-16T09:47:26.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.079400", - "Timestamp": "2019-10-16T01:54:20.000Z" + "SpotPrice": "3.806900", + "Timestamp": "2024-05-16T09:47:26.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.396900", - "Timestamp": "2019-10-16T01:53:50.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.596500", + "Timestamp": "2024-05-16T09:47:26.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.366900", - "Timestamp": "2019-10-16T01:53:50.000Z" - }, - { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.266900", - "Timestamp": "2019-10-16T01:53:50.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087900", - "Timestamp": "2019-10-16T01:52:19.000Z" - }, - { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087900", - "Timestamp": "2019-10-16T01:52:19.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.127900", - "Timestamp": "2019-10-16T01:52:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.629000", + "Timestamp": "2024-05-16T09:47:26.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.127900", - "Timestamp": "2019-10-16T01:52:19.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.217500", + "Timestamp": "2024-05-16T09:47:26.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027900", - "Timestamp": "2019-10-16T01:52:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.139800", + "Timestamp": "2024-05-16T09:47:26.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027900", - "Timestamp": "2019-10-16T01:52:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.887500", + "Timestamp": "2024-05-16T09:47:26.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c3.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.095900", - "Timestamp": "2019-10-16T01:51:45.000Z" + "SpotPrice": "0.536400", + "Timestamp": "2024-05-16T09:47:25.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c3.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.metal-48xl", "ProductDescription": "Windows", - "SpotPrice": "0.095900", - "Timestamp": "2019-10-16T01:51:45.000Z" + "SpotPrice": "15.367400", + "Timestamp": "2024-05-16T09:47:25.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.905500", - "Timestamp": "2019-10-16T01:50:48.000Z" + "SpotPrice": "1.120000", + "Timestamp": "2024-05-16T09:47:25.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.905500", - "Timestamp": "2019-10-16T01:50:48.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.115000", + "Timestamp": "2024-05-16T09:47:25.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.875500", - "Timestamp": "2019-10-16T01:50:48.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.990000", + "Timestamp": "2024-05-16T09:47:25.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.875500", - "Timestamp": "2019-10-16T01:50:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "9.860000", + "Timestamp": "2024-05-16T09:47:25.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.775500", - "Timestamp": "2019-10-16T01:50:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "9.830000", + "Timestamp": "2024-05-16T09:47:25.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "p3.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.775500", - "Timestamp": "2019-10-16T01:50:48.000Z" + "SpotPrice": "9.730000", + "Timestamp": "2024-05-16T09:47:25.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.983500", - "Timestamp": "2019-10-16T01:50:48.000Z" + "SpotPrice": "6.748400", + "Timestamp": "2024-05-16T09:47:24.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.983500", - "Timestamp": "2019-10-16T01:50:48.000Z" + "SpotPrice": "13.703900", + "Timestamp": "2024-05-16T09:47:24.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.073400", - "Timestamp": "2019-10-16T01:50:36.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.527100", + "Timestamp": "2024-05-16T09:47:24.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3a.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.073400", - "Timestamp": "2019-10-16T01:50:36.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3a.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.113400", - "Timestamp": "2019-10-16T01:50:36.000Z" + "SpotPrice": "7.104700", + "Timestamp": "2024-05-16T09:47:24.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3a.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.113400", - "Timestamp": "2019-10-16T01:50:36.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.013400", - "Timestamp": "2019-10-16T01:50:36.000Z" + "SpotPrice": "7.099700", + "Timestamp": "2024-05-16T09:47:24.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3a.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.013400", - "Timestamp": "2019-10-16T01:50:36.000Z" + "SpotPrice": "6.974700", + "Timestamp": "2024-05-16T09:47:24.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.388500", - "Timestamp": "2019-10-16T01:50:18.000Z" + "SpotPrice": "1.424600", + "Timestamp": "2024-05-16T09:47:23.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.358500", - "Timestamp": "2019-10-16T01:50:18.000Z" + "SpotPrice": "1.419600", + "Timestamp": "2024-05-16T09:47:23.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.258500", - "Timestamp": "2019-10-16T01:50:18.000Z" + "SpotPrice": "1.294600", + "Timestamp": "2024-05-16T09:47:23.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097900", - "Timestamp": "2019-10-16T01:50:13.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.725600", + "Timestamp": "2024-05-16T09:47:23.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097900", - "Timestamp": "2019-10-16T01:50:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.208300", + "Timestamp": "2024-05-16T09:47:23.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m1.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137900", - "Timestamp": "2019-10-16T01:50:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.350300", + "Timestamp": "2024-05-16T09:47:23.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "inf2.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137900", - "Timestamp": "2019-10-16T01:50:13.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m1.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037900", - "Timestamp": "2019-10-16T01:50:13.000Z" + "SpotPrice": "5.320300", + "Timestamp": "2024-05-16T09:47:23.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "inf2.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037900", - "Timestamp": "2019-10-16T01:50:13.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.031800", - "Timestamp": "2019-10-16T01:50:12.000Z" - }, - { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.031800", - "Timestamp": "2019-10-16T01:50:12.000Z" + "SpotPrice": "5.220300", + "Timestamp": "2024-05-16T09:47:23.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.994500", - "Timestamp": "2019-10-16T01:50:11.000Z" + "SpotPrice": "0.802200", + "Timestamp": "2024-05-16T09:47:22.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.454900", - "Timestamp": "2019-10-16T01:45:46.000Z" + "SpotPrice": "2.131600", + "Timestamp": "2024-05-16T09:47:22.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.424900", - "Timestamp": "2019-10-16T01:45:46.000Z" + "SpotPrice": "2.126600", + "Timestamp": "2024-05-16T09:47:22.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.324900", - "Timestamp": "2019-10-16T01:45:46.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.285000", - "Timestamp": "2019-10-16T01:37:27.000Z" + "SpotPrice": "2.001600", + "Timestamp": "2024-05-16T09:47:22.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.255000", - "Timestamp": "2019-10-16T01:37:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.110400", + "Timestamp": "2024-05-16T09:47:22.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.155000", - "Timestamp": "2019-10-16T01:37:27.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.413200", + "Timestamp": "2024-05-16T09:47:22.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.479600", - "Timestamp": "2019-10-16T01:37:23.000Z" + "SpotPrice": "0.284600", + "Timestamp": "2024-05-16T09:47:21.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6gd.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.449600", - "Timestamp": "2019-10-16T01:37:23.000Z" + "SpotPrice": "0.279600", + "Timestamp": "2024-05-16T09:47:21.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.349600", - "Timestamp": "2019-10-16T01:37:23.000Z" - }, - { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.155200", - "Timestamp": "2019-10-16T01:37:15.000Z" + "SpotPrice": "0.154600", + "Timestamp": "2024-05-16T09:47:21.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.185000", - "Timestamp": "2019-10-16T01:29:11.000Z" + "SpotPrice": "2.895600", + "Timestamp": "2024-05-16T09:47:20.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.225000", - "Timestamp": "2019-10-16T01:29:11.000Z" + "SpotPrice": "2.890600", + "Timestamp": "2024-05-16T09:47:20.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.125000", - "Timestamp": "2019-10-16T01:29:11.000Z" + "SpotPrice": "2.765600", + "Timestamp": "2024-05-16T09:47:20.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.438100", + "Timestamp": "2024-05-16T09:47:19.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iezn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.364900", - "Timestamp": "2019-10-16T01:28:44.000Z" + "SpotPrice": "4.165400", + "Timestamp": "2024-05-16T09:47:19.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iezn.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.404900", - "Timestamp": "2019-10-16T01:28:44.000Z" + "SpotPrice": "4.160400", + "Timestamp": "2024-05-16T09:47:19.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iezn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.304900", - "Timestamp": "2019-10-16T01:28:44.000Z" + "SpotPrice": "4.035400", + "Timestamp": "2024-05-16T09:47:19.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "h1.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.366900", - "Timestamp": "2019-10-16T01:28:40.000Z" + "SpotPrice": "1.023800", + "Timestamp": "2024-05-16T09:47:19.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "h1.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.336900", - "Timestamp": "2019-10-16T01:28:40.000Z" + "SpotPrice": "0.993800", + "Timestamp": "2024-05-16T09:47:19.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "h1.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.236900", - "Timestamp": "2019-10-16T01:28:40.000Z" - }, - { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.637900", - "Timestamp": "2019-10-16T01:20:49.000Z" + "SpotPrice": "0.893800", + "Timestamp": "2024-05-16T09:47:19.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.409300", - "Timestamp": "2019-10-16T01:04:04.000Z" + "SpotPrice": "0.653100", + "Timestamp": "2024-05-16T09:47:18.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.379300", - "Timestamp": "2019-10-16T01:04:04.000Z" + "SpotPrice": "0.648100", + "Timestamp": "2024-05-16T09:47:18.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.279300", - "Timestamp": "2019-10-16T01:04:04.000Z" + "SpotPrice": "0.523100", + "Timestamp": "2024-05-16T09:47:18.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.153500", - "Timestamp": "2019-10-16T01:03:53.000Z" + "SpotPrice": "0.086000", + "Timestamp": "2024-05-16T09:47:18.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.123500", - "Timestamp": "2019-10-16T01:03:53.000Z" + "SpotPrice": "0.082300", + "Timestamp": "2024-05-16T09:47:18.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.023500", - "Timestamp": "2019-10-16T01:03:53.000Z" + "SpotPrice": "0.026000", + "Timestamp": "2024-05-16T09:47:18.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.696700", - "Timestamp": "2019-10-16T01:03:47.000Z" + "SpotPrice": "3.628000", + "Timestamp": "2024-05-16T09:47:18.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.666700", - "Timestamp": "2019-10-16T01:03:47.000Z" + "SpotPrice": "3.623000", + "Timestamp": "2024-05-16T09:47:18.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.566700", - "Timestamp": "2019-10-16T01:03:47.000Z" + "SpotPrice": "3.498000", + "Timestamp": "2024-05-16T09:47:18.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.249800", - "Timestamp": "2019-10-16T01:03:38.000Z" + "SpotPrice": "1.437900", + "Timestamp": "2024-05-16T09:47:17.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.219800", - "Timestamp": "2019-10-16T01:03:38.000Z" + "SpotPrice": "1.432900", + "Timestamp": "2024-05-16T09:47:17.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.119800", - "Timestamp": "2019-10-16T01:03:38.000Z" + "SpotPrice": "1.307900", + "Timestamp": "2024-05-16T09:47:17.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.361400", - "Timestamp": "2019-10-16T01:03:37.000Z" + "SpotPrice": "0.330100", + "Timestamp": "2024-05-16T09:47:17.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "f1.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.124400", - "Timestamp": "2019-10-16T00:55:37.000Z" + "SpotPrice": "1.407200", + "Timestamp": "2024-05-16T09:47:17.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "f1.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.164400", - "Timestamp": "2019-10-16T00:55:37.000Z" + "SpotPrice": "1.377200", + "Timestamp": "2024-05-16T09:47:17.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "f1.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.064400", - "Timestamp": "2019-10-16T00:55:37.000Z" + "SpotPrice": "1.277200", + "Timestamp": "2024-05-16T09:47:17.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m3.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.147200", - "Timestamp": "2019-10-16T00:55:17.000Z" + "SpotPrice": "7.177600", + "Timestamp": "2024-05-16T09:47:17.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.942400", - "Timestamp": "2019-10-16T00:50:33.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.092500", + "Timestamp": "2024-05-16T09:47:16.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.942400", - "Timestamp": "2019-10-16T00:50:33.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.912400", - "Timestamp": "2019-10-16T00:50:33.000Z" + "SpotPrice": "0.136400", + "Timestamp": "2024-05-16T09:47:16.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7g.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.912400", - "Timestamp": "2019-10-16T00:50:33.000Z" + "SpotPrice": "0.132700", + "Timestamp": "2024-05-16T09:47:16.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.812400", - "Timestamp": "2019-10-16T00:50:33.000Z" + "SpotPrice": "0.076400", + "Timestamp": "2024-05-16T09:47:16.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.812400", - "Timestamp": "2019-10-16T00:50:33.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.272700", + "Timestamp": "2024-05-16T09:47:16.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.955600", - "Timestamp": "2019-10-16T00:50:10.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "16.699800", + "Timestamp": "2024-05-16T09:47:16.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1e.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.955600", - "Timestamp": "2019-10-16T00:50:10.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.925600", - "Timestamp": "2019-10-16T00:50:10.000Z" + "SpotPrice": "11.490500", + "Timestamp": "2024-05-16T09:47:15.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1e.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.925600", - "Timestamp": "2019-10-16T00:50:10.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.825600", - "Timestamp": "2019-10-16T00:50:10.000Z" + "SpotPrice": "11.460500", + "Timestamp": "2024-05-16T09:47:15.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1e.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.825600", - "Timestamp": "2019-10-16T00:50:10.000Z" + "SpotPrice": "11.360500", + "Timestamp": "2024-05-16T09:47:15.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.297600", - "Timestamp": "2019-10-16T00:50:10.000Z" + "SpotPrice": "1.213400", + "Timestamp": "2024-05-16T09:47:15.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.large", "ProductDescription": "Windows", - "SpotPrice": "2.297600", - "Timestamp": "2019-10-16T00:50:10.000Z" + "SpotPrice": "0.150600", + "Timestamp": "2024-05-16T09:47:15.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.020400", - "Timestamp": "2019-10-16T00:49:33.000Z" + "SpotPrice": "3.158300", + "Timestamp": "2024-05-16T09:47:15.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.020400", - "Timestamp": "2019-10-16T00:49:33.000Z" + "SpotPrice": "6.623900", + "Timestamp": "2024-05-16T09:47:14.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.118600", - "Timestamp": "2019-10-16T00:49:31.000Z" + "SpotPrice": "0.348900", + "Timestamp": "2024-05-16T09:47:14.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.118600", - "Timestamp": "2019-10-16T00:49:31.000Z" + "SpotPrice": "0.401900", + "Timestamp": "2024-05-16T09:47:14.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.158600", - "Timestamp": "2019-10-16T00:49:31.000Z" + "SpotPrice": "0.343900", + "Timestamp": "2024-05-16T09:47:14.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.158600", - "Timestamp": "2019-10-16T00:49:31.000Z" + "SpotPrice": "0.396900", + "Timestamp": "2024-05-16T09:47:14.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.058600", - "Timestamp": "2019-10-16T00:49:31.000Z" + "SpotPrice": "0.218900", + "Timestamp": "2024-05-16T09:47:14.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.058600", - "Timestamp": "2019-10-16T00:49:31.000Z" + "SpotPrice": "0.271900", + "Timestamp": "2024-05-16T09:47:14.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.155900", - "Timestamp": "2019-10-16T00:47:22.000Z" + "SpotPrice": "4.565600", + "Timestamp": "2024-05-16T09:47:14.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.134800", - "Timestamp": "2019-10-16T00:47:21.000Z" + "SpotPrice": "0.341000", + "Timestamp": "2024-05-16T09:47:14.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.174800", - "Timestamp": "2019-10-16T00:47:21.000Z" + "SpotPrice": "0.311000", + "Timestamp": "2024-05-16T09:47:14.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.074800", - "Timestamp": "2019-10-16T00:47:21.000Z" + "SpotPrice": "0.211000", + "Timestamp": "2024-05-16T09:47:14.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gd.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.828500", - "Timestamp": "2019-10-16T00:39:25.000Z" + "SpotPrice": "0.612900", + "Timestamp": "2024-05-16T09:47:13.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gd.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.798500", - "Timestamp": "2019-10-16T00:39:25.000Z" + "SpotPrice": "0.607900", + "Timestamp": "2024-05-16T09:47:13.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.698500", - "Timestamp": "2019-10-16T00:39:25.000Z" + "SpotPrice": "0.482900", + "Timestamp": "2024-05-16T09:47:13.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.metal-24xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125200", - "Timestamp": "2019-10-16T00:38:27.000Z" + "SpotPrice": "2.221600", + "Timestamp": "2024-05-16T09:47:13.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.metal-24xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.165200", - "Timestamp": "2019-10-16T00:38:27.000Z" + "SpotPrice": "2.216600", + "Timestamp": "2024-05-16T09:47:13.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.metal-24xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065200", - "Timestamp": "2019-10-16T00:38:27.000Z" + "SpotPrice": "2.091600", + "Timestamp": "2024-05-16T09:47:13.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.468300", - "Timestamp": "2019-10-16T00:30:40.000Z" + "SpotPrice": "1.109600", + "Timestamp": "2024-05-16T09:47:13.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.438300", - "Timestamp": "2019-10-16T00:30:40.000Z" + "SpotPrice": "1.104600", + "Timestamp": "2024-05-16T09:47:13.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.338300", - "Timestamp": "2019-10-16T00:30:40.000Z" + "SpotPrice": "0.979600", + "Timestamp": "2024-05-16T09:47:13.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r4.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.257200", - "Timestamp": "2019-10-16T00:30:37.000Z" + "SpotPrice": "0.268700", + "Timestamp": "2024-05-16T09:47:13.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.277700", + "Timestamp": "2024-05-16T09:47:13.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r4.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.227200", - "Timestamp": "2019-10-16T00:30:37.000Z" + "SpotPrice": "0.238700", + "Timestamp": "2024-05-16T09:47:13.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.247700", + "Timestamp": "2024-05-16T09:47:13.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r4.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.127200", - "Timestamp": "2019-10-16T00:30:37.000Z" + "SpotPrice": "0.138700", + "Timestamp": "2024-05-16T09:47:13.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147700", + "Timestamp": "2024-05-16T09:47:13.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.961800", - "Timestamp": "2019-10-16T00:30:01.000Z" + "SpotPrice": "0.557400", + "Timestamp": "2024-05-16T09:47:13.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.931800", - "Timestamp": "2019-10-16T00:30:01.000Z" + "SpotPrice": "0.552400", + "Timestamp": "2024-05-16T09:47:13.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.831800", - "Timestamp": "2019-10-16T00:30:01.000Z" + "SpotPrice": "0.427400", + "Timestamp": "2024-05-16T09:47:13.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093300", - "Timestamp": "2019-10-16T00:22:21.000Z" + "SpotPrice": "1.022600", + "Timestamp": "2024-05-16T09:47:13.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133300", - "Timestamp": "2019-10-16T00:22:21.000Z" + "SpotPrice": "0.992600", + "Timestamp": "2024-05-16T09:47:13.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033300", - "Timestamp": "2019-10-16T00:22:21.000Z" + "SpotPrice": "0.892600", + "Timestamp": "2024-05-16T09:47:13.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.178700", - "Timestamp": "2019-10-16T00:22:18.000Z" + "SpotPrice": "1.555100", + "Timestamp": "2024-05-16T09:47:12.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.148700", - "Timestamp": "2019-10-16T00:22:18.000Z" + "SpotPrice": "1.525100", + "Timestamp": "2024-05-16T09:47:12.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.048700", - "Timestamp": "2019-10-16T00:22:18.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.547500", - "Timestamp": "2019-10-16T00:22:15.000Z" + "SpotPrice": "1.425100", + "Timestamp": "2024-05-16T09:47:12.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.780900", - "Timestamp": "2019-10-16T00:22:13.000Z" + "SpotPrice": "0.978900", + "Timestamp": "2024-05-16T09:47:12.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.750900", - "Timestamp": "2019-10-16T00:22:13.000Z" + "SpotPrice": "0.973900", + "Timestamp": "2024-05-16T09:47:12.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.650900", - "Timestamp": "2019-10-16T00:22:13.000Z" + "SpotPrice": "0.848900", + "Timestamp": "2024-05-16T09:47:12.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.286100", - "Timestamp": "2019-10-16T00:22:07.000Z" + "SpotPrice": "0.125300", + "Timestamp": "2024-05-16T09:47:12.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122600", + "Timestamp": "2024-05-16T09:47:12.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.256100", - "Timestamp": "2019-10-16T00:22:07.000Z" + "SpotPrice": "0.121300", + "Timestamp": "2024-05-16T09:47:12.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118600", + "Timestamp": "2024-05-16T09:47:12.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.156100", - "Timestamp": "2019-10-16T00:22:07.000Z" + "SpotPrice": "0.065300", + "Timestamp": "2024-05-16T09:47:12.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062600", + "Timestamp": "2024-05-16T09:47:12.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.292300", - "Timestamp": "2019-10-16T00:22:07.000Z" + "SpotPrice": "0.154400", + "Timestamp": "2024-05-16T09:47:12.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.262300", - "Timestamp": "2019-10-16T00:22:07.000Z" + "SpotPrice": "0.150400", + "Timestamp": "2024-05-16T09:47:12.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.162300", - "Timestamp": "2019-10-16T00:22:07.000Z" + "SpotPrice": "0.094400", + "Timestamp": "2024-05-16T09:47:12.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267900", - "Timestamp": "2019-10-16T00:21:42.000Z" + "SpotPrice": "10.605300", + "Timestamp": "2024-05-16T09:47:11.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.237900", - "Timestamp": "2019-10-16T00:21:42.000Z" + "SpotPrice": "10.600300", + "Timestamp": "2024-05-16T09:47:11.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.137900", - "Timestamp": "2019-10-16T00:21:42.000Z" + "SpotPrice": "10.475300", + "Timestamp": "2024-05-16T09:47:11.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5zn.3xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096700", - "Timestamp": "2019-10-16T00:13:28.000Z" + "SpotPrice": "0.718800", + "Timestamp": "2024-05-16T09:47:11.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.710200", + "Timestamp": "2024-05-16T09:47:11.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5zn.3xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136700", - "Timestamp": "2019-10-16T00:13:28.000Z" + "SpotPrice": "0.713800", + "Timestamp": "2024-05-16T09:47:11.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.705200", + "Timestamp": "2024-05-16T09:47:11.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5zn.3xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036700", - "Timestamp": "2019-10-16T00:13:28.000Z" + "SpotPrice": "0.588800", + "Timestamp": "2024-05-16T09:47:11.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.580200", + "Timestamp": "2024-05-16T09:47:11.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.401500", - "Timestamp": "2019-10-16T00:13:25.000Z" + "SpotPrice": "0.700000", + "Timestamp": "2024-05-16T09:47:10.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.371500", - "Timestamp": "2019-10-16T00:13:25.000Z" + "SpotPrice": "0.695000", + "Timestamp": "2024-05-16T09:47:10.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.271500", - "Timestamp": "2019-10-16T00:13:25.000Z" + "SpotPrice": "0.570000", + "Timestamp": "2024-05-16T09:47:10.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135200", - "Timestamp": "2019-10-16T00:05:37.000Z" + "SpotPrice": "0.562000", + "Timestamp": "2024-05-16T09:47:09.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175200", - "Timestamp": "2019-10-16T00:05:37.000Z" + "SpotPrice": "0.557000", + "Timestamp": "2024-05-16T09:47:09.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075200", - "Timestamp": "2019-10-16T00:05:37.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.982200", - "Timestamp": "2019-10-16T00:05:24.000Z" + "SpotPrice": "0.432000", + "Timestamp": "2024-05-16T09:47:09.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.815400", - "Timestamp": "2019-10-16T00:05:16.000Z" + "SpotPrice": "0.164300", + "Timestamp": "2024-05-16T09:47:03.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.785400", - "Timestamp": "2019-10-16T00:05:16.000Z" + "SpotPrice": "0.160600", + "Timestamp": "2024-05-16T09:47:03.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.685400", - "Timestamp": "2019-10-16T00:05:16.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.273800", - "Timestamp": "2019-10-16T00:05:12.000Z" + "SpotPrice": "0.104300", + "Timestamp": "2024-05-16T09:47:03.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092900", - "Timestamp": "2019-10-16T00:04:51.000Z" + "SpotPrice": "0.224500", + "Timestamp": "2024-05-16T09:47:02.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132900", - "Timestamp": "2019-10-16T00:04:51.000Z" + "SpotPrice": "0.220500", + "Timestamp": "2024-05-16T09:47:02.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032900", - "Timestamp": "2019-10-16T00:04:51.000Z" + "SpotPrice": "0.164500", + "Timestamp": "2024-05-16T09:47:02.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.006800", - "Timestamp": "2019-10-16T00:01:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.554500", + "Timestamp": "2024-05-16T09:47:02.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.638600", - "Timestamp": "2019-10-15T23:56:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.549500", + "Timestamp": "2024-05-16T09:47:02.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.638600", - "Timestamp": "2019-10-15T23:56:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.424500", + "Timestamp": "2024-05-16T09:47:02.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.772400", - "Timestamp": "2019-10-15T23:56:33.000Z" + "SpotPrice": "1.225100", + "Timestamp": "2024-05-16T09:47:02.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.742400", - "Timestamp": "2019-10-15T23:56:33.000Z" + "SpotPrice": "1.220100", + "Timestamp": "2024-05-16T09:47:02.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.642400", - "Timestamp": "2019-10-15T23:56:33.000Z" + "SpotPrice": "1.095100", + "Timestamp": "2024-05-16T09:47:02.000Z" }, { - "AvailabilityZone": "us-west-1b", + "AvailabilityZone": "us-east-1a", "InstanceType": "r3.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.456100", - "Timestamp": "2019-10-15T23:56:33.000Z" + "SpotPrice": "0.713900", + "Timestamp": "2024-05-16T09:47:02.000Z" }, { - "AvailabilityZone": "us-west-1b", + "AvailabilityZone": "us-east-1a", "InstanceType": "r3.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.426100", - "Timestamp": "2019-10-15T23:56:33.000Z" + "SpotPrice": "0.683900", + "Timestamp": "2024-05-16T09:47:02.000Z" }, { - "AvailabilityZone": "us-west-1b", + "AvailabilityZone": "us-east-1a", "InstanceType": "r3.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.326100", - "Timestamp": "2019-10-15T23:56:33.000Z" + "SpotPrice": "0.583900", + "Timestamp": "2024-05-16T09:47:02.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c4.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.972400", - "Timestamp": "2019-10-15T23:51:51.000Z" + "SpotPrice": "0.147800", + "Timestamp": "2024-05-16T09:47:02.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.972400", - "Timestamp": "2019-10-15T23:51:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.187800", + "Timestamp": "2024-05-16T09:47:02.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.942400", - "Timestamp": "2019-10-15T23:51:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087800", + "Timestamp": "2024-05-16T09:47:02.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.942400", - "Timestamp": "2019-10-15T23:51:51.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.437300", + "Timestamp": "2024-05-16T09:47:01.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.842400", - "Timestamp": "2019-10-15T23:51:51.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.432300", + "Timestamp": "2024-05-16T09:47:01.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.842400", - "Timestamp": "2019-10-15T23:51:51.000Z" + "SpotPrice": "0.307300", + "Timestamp": "2024-05-16T09:47:01.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.989000", - "Timestamp": "2019-10-15T23:50:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128900", + "Timestamp": "2024-05-16T09:47:00.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.989000", - "Timestamp": "2019-10-15T23:50:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125200", + "Timestamp": "2024-05-16T09:47:00.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.120400", - "Timestamp": "2019-10-15T23:50:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068900", + "Timestamp": "2024-05-16T09:47:00.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.120400", - "Timestamp": "2019-10-15T23:50:51.000Z" + "SpotPrice": "3.072400", + "Timestamp": "2024-05-16T09:47:00.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.18xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.993900", - "Timestamp": "2019-10-15T23:50:13.000Z" + "SpotPrice": "4.620200", + "Timestamp": "2024-05-16T09:33:22.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.993900", - "Timestamp": "2019-10-15T23:50:13.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.598600", + "Timestamp": "2024-05-16T09:33:18.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.122800", - "Timestamp": "2019-10-15T23:50:08.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.593600", + "Timestamp": "2024-05-16T09:33:18.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.122800", - "Timestamp": "2019-10-15T23:50:08.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.468600", + "Timestamp": "2024-05-16T09:33:18.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.647000", - "Timestamp": "2019-10-15T23:49:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.286400", + "Timestamp": "2024-05-16T09:33:16.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.647000", - "Timestamp": "2019-10-15T23:49:55.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.617000", - "Timestamp": "2019-10-15T23:49:55.000Z" + "SpotPrice": "1.618500", + "Timestamp": "2024-05-16T09:33:11.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.617000", - "Timestamp": "2019-10-15T23:49:55.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.517000", - "Timestamp": "2019-10-15T23:49:55.000Z" + "SpotPrice": "1.613500", + "Timestamp": "2024-05-16T09:33:11.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.517000", - "Timestamp": "2019-10-15T23:49:55.000Z" + "SpotPrice": "1.488500", + "Timestamp": "2024-05-16T09:33:11.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3en.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.868500", - "Timestamp": "2019-10-15T23:49:39.000Z" + "SpotPrice": "2.576700", + "Timestamp": "2024-05-16T09:33:10.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3en.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.868500", - "Timestamp": "2019-10-15T23:49:39.000Z" + "SpotPrice": "2.950800", + "Timestamp": "2024-05-16T09:33:10.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3en.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.838500", - "Timestamp": "2019-10-15T23:49:39.000Z" + "SpotPrice": "2.571700", + "Timestamp": "2024-05-16T09:33:10.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3en.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.838500", - "Timestamp": "2019-10-15T23:49:39.000Z" + "SpotPrice": "2.945800", + "Timestamp": "2024-05-16T09:33:10.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3en.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.738500", - "Timestamp": "2019-10-15T23:49:39.000Z" + "SpotPrice": "2.446700", + "Timestamp": "2024-05-16T09:33:10.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3en.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.738500", - "Timestamp": "2019-10-15T23:49:39.000Z" + "SpotPrice": "2.820800", + "Timestamp": "2024-05-16T09:33:10.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5n.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090800", - "Timestamp": "2019-10-15T23:49:36.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.171800", + "Timestamp": "2024-05-16T09:33:10.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5n.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090800", - "Timestamp": "2019-10-15T23:49:36.000Z" + "SpotPrice": "2.267700", + "Timestamp": "2024-05-16T09:33:09.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5n.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T23:49:36.000Z" + "SpotPrice": "2.262700", + "Timestamp": "2024-05-16T09:33:09.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5n.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T23:49:36.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.137700", + "Timestamp": "2024-05-16T09:33:09.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5n.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030800", - "Timestamp": "2019-10-15T23:49:36.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081900", + "Timestamp": "2024-05-16T09:33:09.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5n.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078200", + "Timestamp": "2024-05-16T09:33:09.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030800", - "Timestamp": "2019-10-15T23:49:36.000Z" + "SpotPrice": "0.021900", + "Timestamp": "2024-05-16T09:33:09.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.268200", - "Timestamp": "2019-10-15T23:39:56.000Z" + "SpotPrice": "1.581600", + "Timestamp": "2024-05-16T09:33:09.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.238200", - "Timestamp": "2019-10-15T23:39:56.000Z" + "SpotPrice": "1.576600", + "Timestamp": "2024-05-16T09:33:09.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.138200", - "Timestamp": "2019-10-15T23:39:56.000Z" + "SpotPrice": "1.451600", + "Timestamp": "2024-05-16T09:33:09.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.050200", - "Timestamp": "2019-10-15T23:39:55.000Z" + "SpotPrice": "3.141800", + "Timestamp": "2024-05-16T09:33:09.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.176400", - "Timestamp": "2019-10-15T23:39:52.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.246400", + "Timestamp": "2024-05-16T09:33:09.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.146400", - "Timestamp": "2019-10-15T23:39:52.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.160300", + "Timestamp": "2024-05-16T09:33:07.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.046400", - "Timestamp": "2019-10-15T23:39:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.396100", + "Timestamp": "2024-05-16T09:33:07.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.061900", + "Timestamp": "2024-05-16T09:33:06.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.404800", - "Timestamp": "2019-10-15T23:23:12.000Z" + "SpotPrice": "0.972200", + "Timestamp": "2024-05-16T09:33:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.374800", - "Timestamp": "2019-10-15T23:23:12.000Z" + "SpotPrice": "0.967200", + "Timestamp": "2024-05-16T09:33:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.274800", - "Timestamp": "2019-10-15T23:23:12.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m1.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.267500", - "Timestamp": "2019-10-15T23:22:33.000Z" + "SpotPrice": "0.842200", + "Timestamp": "2024-05-16T09:33:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126600", - "Timestamp": "2019-10-15T23:22:23.000Z" + "SpotPrice": "1.270100", + "Timestamp": "2024-05-16T09:33:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.166600", - "Timestamp": "2019-10-15T23:22:23.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.410200", + "Timestamp": "2024-05-16T09:33:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066600", - "Timestamp": "2019-10-15T23:22:23.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.086000", + "Timestamp": "2024-05-16T09:33:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.158800", - "Timestamp": "2019-10-15T23:22:23.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.265100", + "Timestamp": "2024-05-16T09:33:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.484100", - "Timestamp": "2019-10-15T23:22:18.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.405200", + "Timestamp": "2024-05-16T09:33:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.454100", - "Timestamp": "2019-10-15T23:22:18.000Z" + "SpotPrice": "2.081000", + "Timestamp": "2024-05-16T09:33:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.354100", - "Timestamp": "2019-10-15T23:22:18.000Z" + "SpotPrice": "1.140100", + "Timestamp": "2024-05-16T09:33:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.966900", - "Timestamp": "2019-10-15T23:14:09.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.280200", + "Timestamp": "2024-05-16T09:33:06.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.966900", - "Timestamp": "2019-10-15T23:14:09.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.956000", + "Timestamp": "2024-05-16T09:33:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2idn.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.680900", - "Timestamp": "2019-10-15T23:13:59.000Z" + "SpotPrice": "5.272100", + "Timestamp": "2024-05-16T09:33:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2idn.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.650900", - "Timestamp": "2019-10-15T23:13:59.000Z" + "SpotPrice": "5.267100", + "Timestamp": "2024-05-16T09:33:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2idn.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.550900", - "Timestamp": "2019-10-15T23:13:59.000Z" + "SpotPrice": "5.142100", + "Timestamp": "2024-05-16T09:33:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.290400", - "Timestamp": "2019-10-15T23:10:49.000Z" + "SpotPrice": "0.481100", + "Timestamp": "2024-05-16T09:33:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.260400", - "Timestamp": "2019-10-15T23:10:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.416000", + "Timestamp": "2024-05-16T09:33:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.160400", - "Timestamp": "2019-10-15T23:10:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.521100", + "Timestamp": "2024-05-16T09:33:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.430400", - "Timestamp": "2019-10-15T23:10:47.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.456000", + "Timestamp": "2024-05-16T09:33:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.400400", - "Timestamp": "2019-10-15T23:10:47.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.421100", + "Timestamp": "2024-05-16T09:33:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "inf2.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.300400", - "Timestamp": "2019-10-15T23:10:47.000Z" + "SpotPrice": "0.356000", + "Timestamp": "2024-05-16T09:33:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.260900", - "Timestamp": "2019-10-15T23:10:06.000Z" + "SpotPrice": "2.687800", + "Timestamp": "2024-05-16T09:33:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.230900", - "Timestamp": "2019-10-15T23:10:06.000Z" + "SpotPrice": "2.682800", + "Timestamp": "2024-05-16T09:33:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.130900", - "Timestamp": "2019-10-15T23:10:06.000Z" + "SpotPrice": "2.557800", + "Timestamp": "2024-05-16T09:33:06.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.129600", + "Timestamp": "2024-05-16T09:33:04.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.280800", - "Timestamp": "2019-10-15T23:02:36.000Z" + "SpotPrice": "4.270900", + "Timestamp": "2024-05-16T09:33:03.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.250800", - "Timestamp": "2019-10-15T23:02:36.000Z" + "SpotPrice": "4.265900", + "Timestamp": "2024-05-16T09:33:03.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.150800", - "Timestamp": "2019-10-15T23:02:36.000Z" + "SpotPrice": "4.140900", + "Timestamp": "2024-05-16T09:33:03.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.476500", - "Timestamp": "2019-10-15T23:02:22.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.571800", + "Timestamp": "2024-05-16T09:33:02.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.446500", - "Timestamp": "2019-10-15T23:02:22.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.297600", + "Timestamp": "2024-05-16T09:32:59.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.346500", - "Timestamp": "2019-10-15T23:02:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.182600", + "Timestamp": "2024-05-16T09:32:59.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.254500", + "Timestamp": "2024-05-16T09:32:59.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.881200", + "Timestamp": "2024-05-16T09:32:58.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.362200", - "Timestamp": "2019-10-15T23:02:17.000Z" + "SpotPrice": "2.993100", + "Timestamp": "2024-05-16T09:32:57.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.332200", - "Timestamp": "2019-10-15T23:02:17.000Z" + "SpotPrice": "2.988100", + "Timestamp": "2024-05-16T09:32:57.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.232200", - "Timestamp": "2019-10-15T23:02:17.000Z" + "SpotPrice": "2.863100", + "Timestamp": "2024-05-16T09:32:57.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.metal-24xl", "ProductDescription": "Windows", - "SpotPrice": "0.245500", - "Timestamp": "2019-10-15T22:50:10.000Z" + "SpotPrice": "6.222800", + "Timestamp": "2024-05-16T09:32:57.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.245500", - "Timestamp": "2019-10-15T22:50:10.000Z" + "SpotPrice": "4.332100", + "Timestamp": "2024-05-16T09:32:57.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.148800", - "Timestamp": "2019-10-15T22:49:53.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.432600", + "Timestamp": "2024-05-16T09:32:57.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.148800", - "Timestamp": "2019-10-15T22:49:53.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.427600", + "Timestamp": "2024-05-16T09:32:57.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.121300", - "Timestamp": "2019-10-15T22:49:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.302600", + "Timestamp": "2024-05-16T09:32:57.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.large", "ProductDescription": "Windows", - "SpotPrice": "0.121300", - "Timestamp": "2019-10-15T22:49:48.000Z" + "SpotPrice": "0.159500", + "Timestamp": "2024-05-16T09:32:56.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.large", "ProductDescription": "Windows", - "SpotPrice": "4.027200", - "Timestamp": "2019-10-15T22:49:48.000Z" + "SpotPrice": "0.142800", + "Timestamp": "2024-05-16T09:32:56.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.027200", - "Timestamp": "2019-10-15T22:49:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.026600", + "Timestamp": "2024-05-16T09:32:55.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.021600", + "Timestamp": "2024-05-16T09:32:55.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.896600", + "Timestamp": "2024-05-16T09:32:55.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.542800", - "Timestamp": "2019-10-15T22:49:33.000Z" + "SpotPrice": "6.373200", + "Timestamp": "2024-05-16T09:32:55.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.542800", - "Timestamp": "2019-10-15T22:49:33.000Z" + "SpotPrice": "6.166900", + "Timestamp": "2024-05-16T09:32:55.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.512800", - "Timestamp": "2019-10-15T22:49:33.000Z" + "SpotPrice": "6.368200", + "Timestamp": "2024-05-16T09:32:55.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.512800", - "Timestamp": "2019-10-15T22:49:33.000Z" + "SpotPrice": "6.161900", + "Timestamp": "2024-05-16T09:32:55.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.412800", - "Timestamp": "2019-10-15T22:49:33.000Z" + "SpotPrice": "6.243200", + "Timestamp": "2024-05-16T09:32:55.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.412800", - "Timestamp": "2019-10-15T22:49:33.000Z" + "SpotPrice": "6.036900", + "Timestamp": "2024-05-16T09:32:55.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3en.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.213200", - "Timestamp": "2019-10-15T22:49:24.000Z" + "SpotPrice": "0.280800", + "Timestamp": "2024-05-16T09:32:55.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3en.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.213200", - "Timestamp": "2019-10-15T22:49:24.000Z" + "SpotPrice": "0.339900", + "Timestamp": "2024-05-16T09:32:55.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3en.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.183200", - "Timestamp": "2019-10-15T22:49:24.000Z" + "SpotPrice": "0.276800", + "Timestamp": "2024-05-16T09:32:55.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3en.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.183200", - "Timestamp": "2019-10-15T22:49:24.000Z" + "SpotPrice": "0.335900", + "Timestamp": "2024-05-16T09:32:55.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3en.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.083200", - "Timestamp": "2019-10-15T22:49:24.000Z" + "SpotPrice": "0.220800", + "Timestamp": "2024-05-16T09:32:55.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3en.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.083200", - "Timestamp": "2019-10-15T22:49:24.000Z" + "SpotPrice": "0.279900", + "Timestamp": "2024-05-16T09:32:55.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089300", - "Timestamp": "2019-10-15T22:49:23.000Z" + "SpotPrice": "2.780500", + "Timestamp": "2024-05-16T09:32:55.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089300", - "Timestamp": "2019-10-15T22:49:23.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.775500", + "Timestamp": "2024-05-16T09:32:55.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c4.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.129300", - "Timestamp": "2019-10-15T22:49:23.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.650500", + "Timestamp": "2024-05-16T09:32:55.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c4.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.129300", - "Timestamp": "2019-10-15T22:49:23.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.342100", + "Timestamp": "2024-05-16T09:32:54.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029300", - "Timestamp": "2019-10-15T22:49:23.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.312100", + "Timestamp": "2024-05-16T09:32:54.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "gr6.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029300", - "Timestamp": "2019-10-15T22:49:23.000Z" + "SpotPrice": "0.212100", + "Timestamp": "2024-05-16T09:32:54.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.121500", - "Timestamp": "2019-10-15T22:49:23.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.216400", + "Timestamp": "2024-05-16T09:32:54.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "d2.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.121500", - "Timestamp": "2019-10-15T22:49:23.000Z" + "SpotPrice": "2.293000", + "Timestamp": "2024-05-16T09:32:54.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "d2.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.161500", - "Timestamp": "2019-10-15T22:49:23.000Z" + "SpotPrice": "2.263000", + "Timestamp": "2024-05-16T09:32:54.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m4.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.161500", - "Timestamp": "2019-10-15T22:49:23.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.163000", + "Timestamp": "2024-05-16T09:32:54.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.061500", - "Timestamp": "2019-10-15T22:49:23.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.296600", + "Timestamp": "2024-05-16T09:32:53.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.061500", - "Timestamp": "2019-10-15T22:49:23.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.294600", + "Timestamp": "2024-05-16T09:32:53.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "z1d.6xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.255000", - "Timestamp": "2019-10-15T22:48:32.000Z" + "SpotPrice": "2.052100", + "Timestamp": "2024-05-16T09:32:53.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.255000", - "Timestamp": "2019-10-15T22:48:32.000Z" + "SpotPrice": "0.579700", + "Timestamp": "2024-05-16T09:32:52.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.115000", - "Timestamp": "2019-10-15T22:48:32.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.149000", + "Timestamp": "2024-05-16T09:32:52.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.115000", - "Timestamp": "2019-10-15T22:48:32.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.319000", + "Timestamp": "2024-05-16T09:32:52.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.155000", - "Timestamp": "2019-10-15T22:48:32.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.337000", + "Timestamp": "2024-05-16T09:32:52.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.metal-24xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.155000", - "Timestamp": "2019-10-15T22:48:32.000Z" + "SpotPrice": "2.332000", + "Timestamp": "2024-05-16T09:32:52.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.metal-24xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.055000", - "Timestamp": "2019-10-15T22:48:32.000Z" + "SpotPrice": "2.207000", + "Timestamp": "2024-05-16T09:32:52.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.055000", - "Timestamp": "2019-10-15T22:48:32.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.582400", + "Timestamp": "2024-05-16T09:32:52.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.849700", - "Timestamp": "2019-10-15T22:45:22.000Z" + "SpotPrice": "1.732300", + "Timestamp": "2024-05-16T09:32:51.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.819700", - "Timestamp": "2019-10-15T22:45:22.000Z" + "SpotPrice": "1.727300", + "Timestamp": "2024-05-16T09:32:51.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.719700", - "Timestamp": "2019-10-15T22:45:22.000Z" + "SpotPrice": "1.602300", + "Timestamp": "2024-05-16T09:32:51.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.657800", + "Timestamp": "2024-05-16T09:32:49.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.285200", - "Timestamp": "2019-10-15T22:45:20.000Z" + "SpotPrice": "1.342900", + "Timestamp": "2024-05-16T09:32:48.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7g.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.255200", - "Timestamp": "2019-10-15T22:45:20.000Z" + "SpotPrice": "1.337900", + "Timestamp": "2024-05-16T09:32:48.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.155200", - "Timestamp": "2019-10-15T22:45:20.000Z" + "SpotPrice": "1.212900", + "Timestamp": "2024-05-16T09:32:48.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.274800", - "Timestamp": "2019-10-15T22:45:17.000Z" + "SpotPrice": "1.070700", + "Timestamp": "2024-05-16T09:32:47.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.244800", - "Timestamp": "2019-10-15T22:45:17.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.144800", - "Timestamp": "2019-10-15T22:45:17.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.949400", + "Timestamp": "2024-05-16T09:32:47.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.923900", - "Timestamp": "2019-10-15T22:45:04.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.065700", + "Timestamp": "2024-05-16T09:32:47.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.893900", - "Timestamp": "2019-10-15T22:45:04.000Z" + "SpotPrice": "0.944400", + "Timestamp": "2024-05-16T09:32:47.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.793900", - "Timestamp": "2019-10-15T22:45:04.000Z" + "SpotPrice": "0.940700", + "Timestamp": "2024-05-16T09:32:47.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m1.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.267300", - "Timestamp": "2019-10-15T22:37:33.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.819400", + "Timestamp": "2024-05-16T09:32:47.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.470700", - "Timestamp": "2019-10-15T22:36:51.000Z" + "SpotPrice": "0.518100", + "Timestamp": "2024-05-16T09:32:47.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.440700", - "Timestamp": "2019-10-15T22:36:51.000Z" + "SpotPrice": "0.513100", + "Timestamp": "2024-05-16T09:32:47.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.340700", - "Timestamp": "2019-10-15T22:36:51.000Z" + "SpotPrice": "0.388100", + "Timestamp": "2024-05-16T09:32:47.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.058000", - "Timestamp": "2019-10-15T22:29:10.000Z" + "SpotPrice": "1.435300", + "Timestamp": "2024-05-16T09:32:47.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.028000", - "Timestamp": "2019-10-15T22:29:10.000Z" + "SpotPrice": "1.430300", + "Timestamp": "2024-05-16T09:32:47.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.928000", - "Timestamp": "2019-10-15T22:29:10.000Z" + "SpotPrice": "1.305300", + "Timestamp": "2024-05-16T09:32:47.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.994900", + "Timestamp": "2024-05-16T09:32:47.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.658300", - "Timestamp": "2019-10-15T22:26:40.000Z" + "SpotPrice": "1.464200", + "Timestamp": "2024-05-16T09:32:47.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.628300", - "Timestamp": "2019-10-15T22:26:40.000Z" + "SpotPrice": "1.459200", + "Timestamp": "2024-05-16T09:32:47.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.528300", - "Timestamp": "2019-10-15T22:26:40.000Z" + "SpotPrice": "1.334200", + "Timestamp": "2024-05-16T09:32:47.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.metal", "ProductDescription": "Windows", - "SpotPrice": "0.302200", - "Timestamp": "2019-10-15T22:26:37.000Z" + "SpotPrice": "7.422700", + "Timestamp": "2024-05-16T09:32:47.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.metal", "ProductDescription": "Windows", - "SpotPrice": "0.664800", - "Timestamp": "2019-10-15T22:26:23.000Z" + "SpotPrice": "7.258800", + "Timestamp": "2024-05-16T09:32:47.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5zn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.202500", - "Timestamp": "2019-10-15T22:26:09.000Z" + "SpotPrice": "2.047300", + "Timestamp": "2024-05-16T09:32:46.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5zn.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.242500", - "Timestamp": "2019-10-15T22:26:09.000Z" + "SpotPrice": "2.042300", + "Timestamp": "2024-05-16T09:32:46.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5zn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.142500", - "Timestamp": "2019-10-15T22:26:09.000Z" + "SpotPrice": "1.917300", + "Timestamp": "2024-05-16T09:32:46.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.408600", - "Timestamp": "2019-10-15T22:18:10.000Z" + "SpotPrice": "0.396900", + "Timestamp": "2024-05-16T09:32:45.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i2.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.378600", - "Timestamp": "2019-10-15T22:18:10.000Z" + "SpotPrice": "0.436900", + "Timestamp": "2024-05-16T09:32:45.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i2.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.278600", - "Timestamp": "2019-10-15T22:18:10.000Z" - }, - { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.439500", - "Timestamp": "2019-10-15T22:10:36.000Z" + "SpotPrice": "0.336900", + "Timestamp": "2024-05-16T09:32:45.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1e.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.677700", - "Timestamp": "2019-10-15T22:10:03.000Z" + "SpotPrice": "5.617100", + "Timestamp": "2024-05-16T09:32:44.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1e.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.647700", - "Timestamp": "2019-10-15T22:10:03.000Z" + "SpotPrice": "5.587100", + "Timestamp": "2024-05-16T09:32:44.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1e.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.547700", - "Timestamp": "2019-10-15T22:10:03.000Z" + "SpotPrice": "5.487100", + "Timestamp": "2024-05-16T09:32:44.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g3.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.526100", - "Timestamp": "2019-10-15T22:01:26.000Z" + "SpotPrice": "1.200400", + "Timestamp": "2024-05-16T09:32:44.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.542600", - "Timestamp": "2019-10-15T22:00:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.022500", + "Timestamp": "2024-05-16T09:32:44.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.542600", - "Timestamp": "2019-10-15T22:00:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.017500", + "Timestamp": "2024-05-16T09:32:44.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.576600", - "Timestamp": "2019-10-15T22:00:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.892500", + "Timestamp": "2024-05-16T09:32:44.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t4g.nano", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.576600", - "Timestamp": "2019-10-15T22:00:56.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.546600", - "Timestamp": "2019-10-15T22:00:56.000Z" + "SpotPrice": "0.063800", + "Timestamp": "2024-05-16T09:32:44.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t4g.nano", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.546600", - "Timestamp": "2019-10-15T22:00:56.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.446600", - "Timestamp": "2019-10-15T22:00:56.000Z" + "SpotPrice": "0.003800", + "Timestamp": "2024-05-16T09:32:44.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t4g.nano", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.446600", - "Timestamp": "2019-10-15T22:00:56.000Z" + "SpotPrice": "0.003800", + "Timestamp": "2024-05-16T09:32:44.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.076600", - "Timestamp": "2019-10-15T22:00:39.000Z" + "SpotPrice": "0.210200", + "Timestamp": "2024-05-16T09:32:43.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.076600", - "Timestamp": "2019-10-15T22:00:39.000Z" + "SpotPrice": "0.203000", + "Timestamp": "2024-05-16T09:32:43.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r3.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.116600", - "Timestamp": "2019-10-15T22:00:39.000Z" + "SpotPrice": "0.250200", + "Timestamp": "2024-05-16T09:32:43.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r3.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.116600", - "Timestamp": "2019-10-15T22:00:39.000Z" + "SpotPrice": "0.243000", + "Timestamp": "2024-05-16T09:32:43.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r3.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.016600", - "Timestamp": "2019-10-15T22:00:39.000Z" + "SpotPrice": "0.150200", + "Timestamp": "2024-05-16T09:32:43.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r3.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.016600", - "Timestamp": "2019-10-15T22:00:39.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t2.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.034600", - "Timestamp": "2019-10-15T22:00:39.000Z" + "SpotPrice": "0.143000", + "Timestamp": "2024-05-16T09:32:43.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.metal", "ProductDescription": "Windows", - "SpotPrice": "0.034600", - "Timestamp": "2019-10-15T22:00:39.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t1.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062500", - "Timestamp": "2019-10-15T22:00:35.000Z" + "SpotPrice": "13.342500", + "Timestamp": "2024-05-16T09:32:43.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t1.micro", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062500", - "Timestamp": "2019-10-15T22:00:35.000Z" + "SpotPrice": "2.086000", + "Timestamp": "2024-05-16T09:32:42.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t1.micro", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.012500", - "Timestamp": "2019-10-15T22:00:35.000Z" + "SpotPrice": "2.081000", + "Timestamp": "2024-05-16T09:32:42.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t1.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.012500", - "Timestamp": "2019-10-15T22:00:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.956000", + "Timestamp": "2024-05-16T09:32:42.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t1.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002500", - "Timestamp": "2019-10-15T22:00:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.127000", + "Timestamp": "2024-05-16T09:32:42.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t1.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002500", - "Timestamp": "2019-10-15T22:00:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.238500", + "Timestamp": "2024-05-16T09:32:41.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t1.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012500", - "Timestamp": "2019-10-15T22:00:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.233500", + "Timestamp": "2024-05-16T09:32:41.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t1.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012500", - "Timestamp": "2019-10-15T22:00:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.108500", + "Timestamp": "2024-05-16T09:32:41.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.781200", - "Timestamp": "2019-10-15T22:00:28.000Z" + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T09:32:41.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.781200", - "Timestamp": "2019-10-15T22:00:28.000Z" + "SpotPrice": "0.082900", + "Timestamp": "2024-05-16T09:32:41.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.751200", - "Timestamp": "2019-10-15T22:00:28.000Z" + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T09:32:41.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.751200", - "Timestamp": "2019-10-15T22:00:28.000Z" + "SpotPrice": "0.079200", + "Timestamp": "2024-05-16T09:32:41.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.651200", - "Timestamp": "2019-10-15T22:00:28.000Z" + "SpotPrice": "0.048700", + "Timestamp": "2024-05-16T09:32:41.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.651200", - "Timestamp": "2019-10-15T22:00:28.000Z" + "SpotPrice": "0.022900", + "Timestamp": "2024-05-16T09:32:41.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.metal", - "ProductDescription": "Windows", - "SpotPrice": "4.595200", - "Timestamp": "2019-10-15T22:00:28.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.828900", + "Timestamp": "2024-05-16T09:32:40.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3.metal", - "ProductDescription": "Windows", - "SpotPrice": "4.595200", - "Timestamp": "2019-10-15T22:00:28.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.823900", + "Timestamp": "2024-05-16T09:32:40.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127700", - "Timestamp": "2019-10-15T22:00:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.698900", + "Timestamp": "2024-05-16T09:32:40.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127700", - "Timestamp": "2019-10-15T22:00:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.120600", + "Timestamp": "2024-05-16T09:32:40.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.167700", - "Timestamp": "2019-10-15T22:00:20.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.660800", + "Timestamp": "2024-05-16T09:32:40.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.167700", - "Timestamp": "2019-10-15T22:00:20.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.617700", + "Timestamp": "2024-05-16T09:32:40.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067700", - "Timestamp": "2019-10-15T22:00:20.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.612700", + "Timestamp": "2024-05-16T09:32:40.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067700", - "Timestamp": "2019-10-15T22:00:20.000Z" + "SpotPrice": "1.487700", + "Timestamp": "2024-05-16T09:32:40.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.251700", - "Timestamp": "2019-10-15T22:00:20.000Z" + "SpotPrice": "0.280800", + "Timestamp": "2024-05-16T09:32:39.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.251700", - "Timestamp": "2019-10-15T22:00:20.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.645100", + "Timestamp": "2024-05-16T09:32:39.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.970800", - "Timestamp": "2019-10-15T21:59:52.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.615100", + "Timestamp": "2024-05-16T09:32:39.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.970800", - "Timestamp": "2019-10-15T21:59:52.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.515100", + "Timestamp": "2024-05-16T09:32:39.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g3.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.940800", - "Timestamp": "2019-10-15T21:59:52.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.316000", + "Timestamp": "2024-05-16T09:32:38.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.940800", - "Timestamp": "2019-10-15T21:59:52.000Z" + "SpotPrice": "5.311000", + "Timestamp": "2024-05-16T09:32:38.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.840800", - "Timestamp": "2019-10-15T21:59:52.000Z" + "SpotPrice": "5.186000", + "Timestamp": "2024-05-16T09:32:38.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.840800", - "Timestamp": "2019-10-15T21:59:52.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.572700", + "Timestamp": "2024-05-16T09:32:37.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.784800", - "Timestamp": "2019-10-15T21:59:52.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.567700", + "Timestamp": "2024-05-16T09:32:37.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.784800", - "Timestamp": "2019-10-15T21:59:52.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.442700", + "Timestamp": "2024-05-16T09:32:37.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m2.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.136400", - "Timestamp": "2019-10-15T21:53:25.000Z" + "SpotPrice": "0.615300", + "Timestamp": "2024-05-16T09:32:36.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m2.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.176400", - "Timestamp": "2019-10-15T21:53:25.000Z" + "SpotPrice": "0.585300", + "Timestamp": "2024-05-16T09:32:36.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m2.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.076400", - "Timestamp": "2019-10-15T21:53:25.000Z" + "SpotPrice": "0.485300", + "Timestamp": "2024-05-16T09:32:36.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.262700", - "Timestamp": "2019-10-15T21:53:06.000Z" + "SpotPrice": "1.339600", + "Timestamp": "2024-05-16T09:32:36.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.232700", - "Timestamp": "2019-10-15T21:53:06.000Z" + "SpotPrice": "1.334600", + "Timestamp": "2024-05-16T09:32:36.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-15T21:53:06.000Z" + "SpotPrice": "1.209600", + "Timestamp": "2024-05-16T09:32:36.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063700", - "Timestamp": "2019-10-15T21:50:03.000Z" + "SpotPrice": "0.721400", + "Timestamp": "2024-05-16T09:32:36.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063700", - "Timestamp": "2019-10-15T21:50:03.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.716400", + "Timestamp": "2024-05-16T09:32:36.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.103700", - "Timestamp": "2019-10-15T21:50:03.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.591400", + "Timestamp": "2024-05-16T09:32:36.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.255800", + "Timestamp": "2024-05-16T09:32:36.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.103700", - "Timestamp": "2019-10-15T21:50:03.000Z" + "SpotPrice": "2.225800", + "Timestamp": "2024-05-16T09:32:36.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003700", - "Timestamp": "2019-10-15T21:50:03.000Z" + "SpotPrice": "2.125800", + "Timestamp": "2024-05-16T09:32:36.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003700", - "Timestamp": "2019-10-15T21:50:03.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "m3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.366600", + "Timestamp": "2024-05-16T09:32:36.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.012900", - "Timestamp": "2019-10-15T21:49:37.000Z" + "SpotPrice": "2.701400", + "Timestamp": "2024-05-16T09:32:36.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.large", "ProductDescription": "Windows", - "SpotPrice": "0.012900", - "Timestamp": "2019-10-15T21:49:37.000Z" + "SpotPrice": "0.131100", + "Timestamp": "2024-05-16T09:32:35.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.503400", - "Timestamp": "2019-10-15T21:49:16.000Z" + "SpotPrice": "0.141600", + "Timestamp": "2024-05-16T09:32:35.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.265400", - "Timestamp": "2019-10-15T21:49:16.000Z" + "SpotPrice": "3.247700", + "Timestamp": "2024-05-16T09:32:35.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.235400", - "Timestamp": "2019-10-15T21:49:16.000Z" + "SpotPrice": "3.242700", + "Timestamp": "2024-05-16T09:32:35.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.135400", - "Timestamp": "2019-10-15T21:49:16.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.283600", - "Timestamp": "2019-10-15T21:45:00.000Z" + "SpotPrice": "3.117700", + "Timestamp": "2024-05-16T09:32:35.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "a1.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.512800", - "Timestamp": "2019-10-15T21:44:43.000Z" + "SpotPrice": "0.367600", + "Timestamp": "2024-05-16T09:32:35.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "a1.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "4.482800", - "Timestamp": "2019-10-15T21:44:43.000Z" + "SpotPrice": "0.362600", + "Timestamp": "2024-05-16T09:32:35.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "a1.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.382800", - "Timestamp": "2019-10-15T21:44:43.000Z" + "SpotPrice": "0.237600", + "Timestamp": "2024-05-16T09:32:35.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.799000", - "Timestamp": "2019-10-15T21:44:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.573000", + "Timestamp": "2024-05-16T09:32:35.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.127200", - "Timestamp": "2019-10-15T21:44:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.568000", + "Timestamp": "2024-05-16T09:32:35.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.127200", - "Timestamp": "2019-10-15T21:44:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.443000", + "Timestamp": "2024-05-16T09:32:35.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.113600", - "Timestamp": "2019-10-15T21:44:13.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.940000", + "Timestamp": "2024-05-16T09:32:35.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i-flex.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.113600", - "Timestamp": "2019-10-15T21:44:13.000Z" + "SpotPrice": "0.157200", + "Timestamp": "2024-05-16T09:32:33.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i-flex.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.153600", - "Timestamp": "2019-10-15T21:44:13.000Z" + "SpotPrice": "0.153500", + "Timestamp": "2024-05-16T09:32:33.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-16T09:32:33.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158300", + "Timestamp": "2024-05-16T09:32:31.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.153600", - "Timestamp": "2019-10-15T21:44:13.000Z" + "SpotPrice": "0.154600", + "Timestamp": "2024-05-16T09:32:31.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.053600", - "Timestamp": "2019-10-15T21:44:13.000Z" + "SpotPrice": "0.098300", + "Timestamp": "2024-05-16T09:32:31.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.053600", - "Timestamp": "2019-10-15T21:44:13.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.297000", + "Timestamp": "2024-05-16T09:32:31.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.457600", - "Timestamp": "2019-10-15T21:39:35.000Z" + "SpotPrice": "0.215900", + "Timestamp": "2024-05-16T09:32:31.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.427600", - "Timestamp": "2019-10-15T21:39:35.000Z" + "SpotPrice": "0.212200", + "Timestamp": "2024-05-16T09:32:31.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.327600", - "Timestamp": "2019-10-15T21:39:35.000Z" + "SpotPrice": "0.155900", + "Timestamp": "2024-05-16T09:32:31.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.285100", + "Timestamp": "2024-05-16T09:32:30.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.196200", - "Timestamp": "2019-10-15T21:39:24.000Z" + "SpotPrice": "1.919200", + "Timestamp": "2024-05-16T09:32:30.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.236200", - "Timestamp": "2019-10-15T21:39:24.000Z" + "SpotPrice": "1.914200", + "Timestamp": "2024-05-16T09:32:30.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.136200", - "Timestamp": "2019-10-15T21:39:24.000Z" + "SpotPrice": "1.789200", + "Timestamp": "2024-05-16T09:32:30.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.616200", - "Timestamp": "2019-10-15T21:31:58.000Z" + "SpotPrice": "0.546500", + "Timestamp": "2024-05-16T09:32:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.616200", - "Timestamp": "2019-10-15T21:31:58.000Z" + "SpotPrice": "2.278500", + "Timestamp": "2024-05-16T09:32:29.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.248600", - "Timestamp": "2019-10-15T21:31:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.454000", + "Timestamp": "2024-05-16T09:32:29.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.248600", - "Timestamp": "2019-10-15T21:31:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.449000", + "Timestamp": "2024-05-16T09:32:29.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.538200", - "Timestamp": "2019-10-15T21:31:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.324000", + "Timestamp": "2024-05-16T09:32:29.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.080800", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.538200", - "Timestamp": "2019-10-15T21:31:27.000Z" + "SpotPrice": "1.533800", + "Timestamp": "2024-05-16T09:32:29.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.508200", - "Timestamp": "2019-10-15T21:31:27.000Z" + "SpotPrice": "1.528800", + "Timestamp": "2024-05-16T09:32:29.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.403800", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096700", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gn.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.508200", - "Timestamp": "2019-10-15T21:31:27.000Z" + "SpotPrice": "0.093000", + "Timestamp": "2024-05-16T09:32:29.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gn.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.408200", - "Timestamp": "2019-10-15T21:31:27.000Z" + "SpotPrice": "0.036700", + "Timestamp": "2024-05-16T09:32:29.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.408200", - "Timestamp": "2019-10-15T21:31:27.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.181600", + "Timestamp": "2024-05-16T09:32:28.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.241900", - "Timestamp": "2019-10-15T21:30:53.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.994800", + "Timestamp": "2024-05-16T09:32:28.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.211900", - "Timestamp": "2019-10-15T21:30:53.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.573300", + "Timestamp": "2024-05-16T09:32:27.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.111900", - "Timestamp": "2019-10-15T21:30:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.640500", + "Timestamp": "2024-05-16T09:32:27.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.657500", - "Timestamp": "2019-10-15T21:23:19.000Z" + "SpotPrice": "0.306600", + "Timestamp": "2024-05-16T09:32:27.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "m4.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.473500", - "Timestamp": "2019-10-15T21:23:18.000Z" + "SpotPrice": "0.155100", + "Timestamp": "2024-05-16T09:32:26.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "m4.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.443500", - "Timestamp": "2019-10-15T21:23:18.000Z" + "SpotPrice": "0.195100", + "Timestamp": "2024-05-16T09:32:26.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "m4.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.343500", - "Timestamp": "2019-10-15T21:23:18.000Z" + "SpotPrice": "0.095100", + "Timestamp": "2024-05-16T09:32:26.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.251700", - "Timestamp": "2019-10-15T21:22:55.000Z" + "SpotPrice": "0.308300", + "Timestamp": "2024-05-16T09:32:26.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.251700", - "Timestamp": "2019-10-15T21:22:55.000Z" + "SpotPrice": "4.528500", + "Timestamp": "2024-05-16T09:32:26.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127700", - "Timestamp": "2019-10-15T21:22:47.000Z" + "SpotPrice": "1.575100", + "Timestamp": "2024-05-16T09:32:26.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.167700", - "Timestamp": "2019-10-15T21:22:47.000Z" + "SpotPrice": "1.570100", + "Timestamp": "2024-05-16T09:32:26.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067700", - "Timestamp": "2019-10-15T21:22:47.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.259200", - "Timestamp": "2019-10-15T21:22:47.000Z" + "SpotPrice": "1.445100", + "Timestamp": "2024-05-16T09:32:26.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t4g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.259200", - "Timestamp": "2019-10-15T21:22:47.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.229200", - "Timestamp": "2019-10-15T21:22:47.000Z" + "SpotPrice": "0.123200", + "Timestamp": "2024-05-16T09:32:26.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t4g.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.229200", - "Timestamp": "2019-10-15T21:22:47.000Z" + "SpotPrice": "0.119500", + "Timestamp": "2024-05-16T09:32:26.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t4g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.129200", - "Timestamp": "2019-10-15T21:22:47.000Z" + "SpotPrice": "0.063200", + "Timestamp": "2024-05-16T09:32:26.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.129200", - "Timestamp": "2019-10-15T21:22:47.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.796200", + "Timestamp": "2024-05-16T09:32:25.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.989000", - "Timestamp": "2019-10-15T21:22:45.000Z" + "SpotPrice": "2.648100", + "Timestamp": "2024-05-16T09:32:25.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "m3.medium", "ProductDescription": "Windows", - "SpotPrice": "1.989000", - "Timestamp": "2019-10-15T21:22:45.000Z" + "SpotPrice": "0.094000", + "Timestamp": "2024-05-16T09:32:25.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.647000", - "Timestamp": "2019-10-15T21:22:40.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.565100", + "Timestamp": "2024-05-16T09:32:24.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.647000", - "Timestamp": "2019-10-15T21:22:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.575000", + "Timestamp": "2024-05-16T09:32:24.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.617000", - "Timestamp": "2019-10-15T21:22:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.747900", + "Timestamp": "2024-05-16T09:32:24.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.617000", - "Timestamp": "2019-10-15T21:22:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.352500", + "Timestamp": "2024-05-16T09:32:24.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.517000", - "Timestamp": "2019-10-15T21:22:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.347500", + "Timestamp": "2024-05-16T09:32:24.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.517000", - "Timestamp": "2019-10-15T21:22:40.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.310600", - "Timestamp": "2019-10-15T21:22:38.000Z" + "SpotPrice": "0.222500", + "Timestamp": "2024-05-16T09:32:24.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.310600", - "Timestamp": "2019-10-15T21:22:38.000Z" + "SpotPrice": "6.799200", + "Timestamp": "2024-05-16T09:32:24.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122500", - "Timestamp": "2019-10-15T21:22:35.000Z" + "SpotPrice": "3.506500", + "Timestamp": "2024-05-16T09:32:23.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.162500", - "Timestamp": "2019-10-15T21:22:35.000Z" + "SpotPrice": "3.501500", + "Timestamp": "2024-05-16T09:32:23.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062500", - "Timestamp": "2019-10-15T21:22:35.000Z" + "SpotPrice": "3.376500", + "Timestamp": "2024-05-16T09:32:23.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.107200", - "Timestamp": "2019-10-15T21:22:35.000Z" + "SpotPrice": "2.131100", + "Timestamp": "2024-05-16T09:32:23.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.107200", - "Timestamp": "2019-10-15T21:22:35.000Z" + "SpotPrice": "13.872300", + "Timestamp": "2024-05-16T09:32:23.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.118600", - "Timestamp": "2019-10-15T21:22:32.000Z" + "SpotPrice": "5.588600", + "Timestamp": "2024-05-16T09:32:23.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.118600", - "Timestamp": "2019-10-15T21:22:32.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.558600", + "Timestamp": "2024-05-16T09:32:23.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c4.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.158600", - "Timestamp": "2019-10-15T21:22:32.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.458600", + "Timestamp": "2024-05-16T09:32:23.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c4.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.158600", - "Timestamp": "2019-10-15T21:22:32.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.090700", + "Timestamp": "2024-05-16T09:32:22.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.058600", - "Timestamp": "2019-10-15T21:22:32.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.201300", + "Timestamp": "2024-05-16T09:32:21.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.197600", + "Timestamp": "2024-05-16T09:32:21.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.058600", - "Timestamp": "2019-10-15T21:22:32.000Z" + "SpotPrice": "0.141300", + "Timestamp": "2024-05-16T09:32:21.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.966900", - "Timestamp": "2019-10-15T21:22:05.000Z" + "SpotPrice": "4.127800", + "Timestamp": "2024-05-16T09:32:21.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.metal-24xl", "ProductDescription": "Windows", - "SpotPrice": "5.966900", - "Timestamp": "2019-10-15T21:22:05.000Z" + "SpotPrice": "5.887400", + "Timestamp": "2024-05-16T09:32:21.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126200", - "Timestamp": "2019-10-15T21:21:58.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.988200", + "Timestamp": "2024-05-16T09:32:21.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126200", - "Timestamp": "2019-10-15T21:21:58.000Z" + "SpotPrice": "6.131700", + "Timestamp": "2024-05-16T09:32:19.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.166200", - "Timestamp": "2019-10-15T21:21:58.000Z" + "SpotPrice": "6.126700", + "Timestamp": "2024-05-16T09:32:19.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.001700", + "Timestamp": "2024-05-16T09:32:19.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.287400", + "Timestamp": "2024-05-16T09:32:18.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.166200", - "Timestamp": "2019-10-15T21:21:58.000Z" + "SpotPrice": "0.282400", + "Timestamp": "2024-05-16T09:32:18.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066200", - "Timestamp": "2019-10-15T21:21:58.000Z" + "SpotPrice": "0.157400", + "Timestamp": "2024-05-16T09:32:18.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.272600", + "Timestamp": "2024-05-16T09:32:18.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267600", + "Timestamp": "2024-05-16T09:32:18.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066200", - "Timestamp": "2019-10-15T21:21:58.000Z" + "SpotPrice": "0.142600", + "Timestamp": "2024-05-16T09:32:18.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.497200", - "Timestamp": "2019-10-15T21:21:57.000Z" + "SpotPrice": "7.492200", + "Timestamp": "2024-05-16T09:32:17.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.497200", - "Timestamp": "2019-10-15T21:21:57.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.441600", + "Timestamp": "2024-05-16T09:32:17.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.436600", + "Timestamp": "2024-05-16T09:32:17.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.311600", + "Timestamp": "2024-05-16T09:32:17.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "is4gen.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.186600", - "Timestamp": "2019-10-15T21:21:38.000Z" + "SpotPrice": "0.363900", + "Timestamp": "2024-05-16T09:32:17.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "is4gen.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.186600", - "Timestamp": "2019-10-15T21:21:38.000Z" + "SpotPrice": "0.373500", + "Timestamp": "2024-05-16T09:32:17.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "is4gen.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.226600", - "Timestamp": "2019-10-15T21:21:38.000Z" + "SpotPrice": "0.360200", + "Timestamp": "2024-05-16T09:32:17.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "is4gen.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.226600", - "Timestamp": "2019-10-15T21:21:38.000Z" + "SpotPrice": "0.369800", + "Timestamp": "2024-05-16T09:32:17.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "is4gen.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.126600", - "Timestamp": "2019-10-15T21:21:38.000Z" + "SpotPrice": "0.303900", + "Timestamp": "2024-05-16T09:32:17.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "is4gen.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.126600", - "Timestamp": "2019-10-15T21:21:38.000Z" + "SpotPrice": "0.313500", + "Timestamp": "2024-05-16T09:32:17.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.large", "ProductDescription": "Windows", - "SpotPrice": "0.242600", - "Timestamp": "2019-10-15T21:21:30.000Z" + "SpotPrice": "0.151500", + "Timestamp": "2024-05-16T09:32:17.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.242600", - "Timestamp": "2019-10-15T21:21:30.000Z" + "SpotPrice": "0.640100", + "Timestamp": "2024-05-16T09:32:15.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r3.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.008000", - "Timestamp": "2019-10-15T21:21:30.000Z" + "SpotPrice": "1.922900", + "Timestamp": "2024-05-16T09:32:15.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.008000", - "Timestamp": "2019-10-15T21:21:30.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116700", + "Timestamp": "2024-05-16T09:32:15.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.455500", - "Timestamp": "2019-10-15T21:20:59.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112700", + "Timestamp": "2024-05-16T09:32:15.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056700", + "Timestamp": "2024-05-16T09:32:15.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.455500", - "Timestamp": "2019-10-15T21:20:59.000Z" + "SpotPrice": "3.311300", + "Timestamp": "2024-05-16T09:32:15.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.745500", - "Timestamp": "2019-10-15T21:20:59.000Z" + "SpotPrice": "0.286400", + "Timestamp": "2024-05-16T09:32:15.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.715500", - "Timestamp": "2019-10-15T21:20:59.000Z" + "SpotPrice": "0.256400", + "Timestamp": "2024-05-16T09:32:15.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.615500", - "Timestamp": "2019-10-15T21:20:59.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.978000", - "Timestamp": "2019-10-15T21:20:58.000Z" + "SpotPrice": "0.156400", + "Timestamp": "2024-05-16T09:32:15.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.978000", - "Timestamp": "2019-10-15T21:20:58.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.164000", - "Timestamp": "2019-10-15T21:20:58.000Z" + "SpotPrice": "1.210800", + "Timestamp": "2024-05-16T09:32:15.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.164000", - "Timestamp": "2019-10-15T21:20:58.000Z" + "SpotPrice": "0.202500", + "Timestamp": "2024-05-16T09:32:15.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.134000", - "Timestamp": "2019-10-15T21:20:58.000Z" + "SpotPrice": "0.198800", + "Timestamp": "2024-05-16T09:32:15.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.134000", - "Timestamp": "2019-10-15T21:20:58.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142500", + "Timestamp": "2024-05-16T09:32:15.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.034000", - "Timestamp": "2019-10-15T21:20:58.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.082000", + "Timestamp": "2024-05-16T09:32:14.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.034000", - "Timestamp": "2019-10-15T21:20:58.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164000", + "Timestamp": "2024-05-16T09:32:14.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c1.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.379200", - "Timestamp": "2019-10-15T21:20:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160000", + "Timestamp": "2024-05-16T09:32:14.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c1.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.379200", - "Timestamp": "2019-10-15T21:20:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T09:32:14.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.189200", - "Timestamp": "2019-10-15T21:20:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.702600", + "Timestamp": "2024-05-16T09:32:14.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.189200", - "Timestamp": "2019-10-15T21:20:54.000Z" + "SpotPrice": "0.221600", + "Timestamp": "2024-05-16T09:32:14.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.159200", - "Timestamp": "2019-10-15T21:20:54.000Z" + "SpotPrice": "0.218600", + "Timestamp": "2024-05-16T09:32:14.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c1.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.159200", - "Timestamp": "2019-10-15T21:20:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.161600", + "Timestamp": "2024-05-16T09:32:14.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c1.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.059200", - "Timestamp": "2019-10-15T21:20:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142300", + "Timestamp": "2024-05-16T09:32:13.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c1.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.059200", - "Timestamp": "2019-10-15T21:20:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138600", + "Timestamp": "2024-05-16T09:32:13.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.124600", - "Timestamp": "2019-10-15T21:20:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082300", + "Timestamp": "2024-05-16T09:32:13.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.metal-24xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.124600", - "Timestamp": "2019-10-15T21:20:54.000Z" + "SpotPrice": "2.240600", + "Timestamp": "2024-05-16T09:32:13.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.metal-24xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.164600", - "Timestamp": "2019-10-15T21:20:54.000Z" + "SpotPrice": "2.235600", + "Timestamp": "2024-05-16T09:32:13.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.164600", - "Timestamp": "2019-10-15T21:20:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.110600", + "Timestamp": "2024-05-16T09:32:13.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.064600", - "Timestamp": "2019-10-15T21:20:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.397000", + "Timestamp": "2024-05-16T09:32:13.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.064600", - "Timestamp": "2019-10-15T21:20:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.187600", + "Timestamp": "2024-05-16T09:32:13.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.248600", - "Timestamp": "2019-10-15T21:20:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183600", + "Timestamp": "2024-05-16T09:32:13.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.248600", - "Timestamp": "2019-10-15T21:20:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127600", + "Timestamp": "2024-05-16T09:32:13.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t2.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.252800", - "Timestamp": "2019-10-15T21:20:49.000Z" + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T09:32:13.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t2.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.222800", - "Timestamp": "2019-10-15T21:20:49.000Z" + "SpotPrice": "0.145000", + "Timestamp": "2024-05-16T09:32:13.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t2.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.122800", - "Timestamp": "2019-10-15T21:20:49.000Z" + "SpotPrice": "0.045000", + "Timestamp": "2024-05-16T09:32:13.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.515800", - "Timestamp": "2019-10-15T21:20:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.422300", + "Timestamp": "2024-05-16T09:32:12.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.515800", - "Timestamp": "2019-10-15T21:20:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.417300", + "Timestamp": "2024-05-16T09:32:12.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.292300", + "Timestamp": "2024-05-16T09:32:12.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r4.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.283800", - "Timestamp": "2019-10-15T21:20:48.000Z" + "SpotPrice": "0.249700", + "Timestamp": "2024-05-16T09:32:12.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r4.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.253800", - "Timestamp": "2019-10-15T21:20:48.000Z" + "SpotPrice": "0.219700", + "Timestamp": "2024-05-16T09:32:12.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r4.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.153800", - "Timestamp": "2019-10-15T21:20:48.000Z" + "SpotPrice": "0.119700", + "Timestamp": "2024-05-16T09:32:12.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.497200", - "Timestamp": "2019-10-15T21:20:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T09:32:12.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.497200", - "Timestamp": "2019-10-15T21:20:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100400", + "Timestamp": "2024-05-16T09:32:12.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.040800", - "Timestamp": "2019-10-15T21:20:42.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044400", + "Timestamp": "2024-05-16T09:32:12.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.040800", - "Timestamp": "2019-10-15T21:20:42.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.754800", - "Timestamp": "2019-10-15T21:20:42.000Z" + "SpotPrice": "0.514500", + "Timestamp": "2024-05-16T09:32:12.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.754800", - "Timestamp": "2019-10-15T21:20:42.000Z" + "SpotPrice": "0.448600", + "Timestamp": "2024-05-16T09:32:11.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7g.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.724800", - "Timestamp": "2019-10-15T21:20:42.000Z" + "SpotPrice": "0.443600", + "Timestamp": "2024-05-16T09:32:11.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.724800", - "Timestamp": "2019-10-15T21:20:42.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.318600", + "Timestamp": "2024-05-16T09:32:11.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.624800", - "Timestamp": "2019-10-15T21:20:42.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T09:32:11.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.624800", - "Timestamp": "2019-10-15T21:20:42.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-16T09:32:11.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.647000", - "Timestamp": "2019-10-15T21:20:39.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044200", + "Timestamp": "2024-05-16T09:32:11.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "vt1.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.336300", - "Timestamp": "2019-10-15T21:20:39.000Z" + "SpotPrice": "2.868100", + "Timestamp": "2024-05-16T09:32:09.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "vt1.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.617000", - "Timestamp": "2019-10-15T21:20:39.000Z" + "SpotPrice": "2.838100", + "Timestamp": "2024-05-16T09:32:09.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.306300", - "Timestamp": "2019-10-15T21:20:39.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "vt1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.738100", + "Timestamp": "2024-05-16T09:32:09.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.517000", - "Timestamp": "2019-10-15T21:20:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.855500", + "Timestamp": "2024-05-16T09:32:08.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.206300", - "Timestamp": "2019-10-15T21:20:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.339100", + "Timestamp": "2024-05-16T09:32:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.989000", - "Timestamp": "2019-10-15T21:20:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.334100", + "Timestamp": "2024-05-16T09:32:06.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.674300", - "Timestamp": "2019-10-15T21:20:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.209100", + "Timestamp": "2024-05-16T09:32:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "p2.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.249700", - "Timestamp": "2019-10-15T21:20:38.000Z" + "SpotPrice": "3.257100", + "Timestamp": "2024-05-16T09:32:06.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "p2.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.255100", - "Timestamp": "2019-10-15T21:20:38.000Z" + "SpotPrice": "3.146600", + "Timestamp": "2024-05-16T09:32:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "p2.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.219700", - "Timestamp": "2019-10-15T21:20:38.000Z" + "SpotPrice": "3.227100", + "Timestamp": "2024-05-16T09:32:06.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "p2.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.225100", - "Timestamp": "2019-10-15T21:20:38.000Z" + "SpotPrice": "3.116600", + "Timestamp": "2024-05-16T09:32:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "p2.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.119700", - "Timestamp": "2019-10-15T21:20:38.000Z" + "SpotPrice": "3.127100", + "Timestamp": "2024-05-16T09:32:06.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "p2.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.125100", - "Timestamp": "2019-10-15T21:20:38.000Z" + "SpotPrice": "3.016600", + "Timestamp": "2024-05-16T09:32:06.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.522300", - "Timestamp": "2019-10-15T21:20:38.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.822500", + "Timestamp": "2024-05-16T09:32:05.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.503400", - "Timestamp": "2019-10-15T21:20:34.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.792500", + "Timestamp": "2024-05-16T09:32:05.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.503400", - "Timestamp": "2019-10-15T21:20:34.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.692500", + "Timestamp": "2024-05-16T09:32:05.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127700", - "Timestamp": "2019-10-15T21:20:32.000Z" + "SpotPrice": "0.976100", + "Timestamp": "2024-05-16T09:32:04.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127700", - "Timestamp": "2019-10-15T21:20:32.000Z" + "SpotPrice": "0.871500", + "Timestamp": "2024-05-16T09:32:04.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.167700", - "Timestamp": "2019-10-15T21:20:32.000Z" + "SpotPrice": "0.971100", + "Timestamp": "2024-05-16T09:32:04.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.167700", - "Timestamp": "2019-10-15T21:20:32.000Z" + "SpotPrice": "0.866500", + "Timestamp": "2024-05-16T09:32:04.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067700", - "Timestamp": "2019-10-15T21:20:32.000Z" + "SpotPrice": "0.846100", + "Timestamp": "2024-05-16T09:32:04.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067700", - "Timestamp": "2019-10-15T21:20:32.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.251700", - "Timestamp": "2019-10-15T21:20:32.000Z" + "SpotPrice": "0.741500", + "Timestamp": "2024-05-16T09:32:04.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.251700", - "Timestamp": "2019-10-15T21:20:32.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.930000", - "Timestamp": "2019-10-15T21:20:30.000Z" + "SpotPrice": "0.171700", + "Timestamp": "2024-05-16T09:32:04.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.930000", - "Timestamp": "2019-10-15T21:20:30.000Z" + "SpotPrice": "0.168100", + "Timestamp": "2024-05-16T09:32:04.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.900000", - "Timestamp": "2019-10-15T21:20:30.000Z" + "SpotPrice": "0.168000", + "Timestamp": "2024-05-16T09:32:04.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.900000", - "Timestamp": "2019-10-15T21:20:30.000Z" + "SpotPrice": "0.164400", + "Timestamp": "2024-05-16T09:32:04.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.800000", - "Timestamp": "2019-10-15T21:20:30.000Z" + "SpotPrice": "0.111700", + "Timestamp": "2024-05-16T09:32:04.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.800000", - "Timestamp": "2019-10-15T21:20:30.000Z" + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T09:32:04.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.419800", - "Timestamp": "2019-10-15T21:20:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070500", + "Timestamp": "2024-05-16T09:32:04.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.419800", - "Timestamp": "2019-10-15T21:20:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040500", + "Timestamp": "2024-05-16T09:32:04.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.332600", - "Timestamp": "2019-10-15T21:20:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010500", + "Timestamp": "2024-05-16T09:32:04.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r4.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.387300", - "Timestamp": "2019-10-15T21:20:29.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.302600", - "Timestamp": "2019-10-15T21:20:29.000Z" + "SpotPrice": "0.406800", + "Timestamp": "2024-05-16T09:32:04.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r4.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.357300", - "Timestamp": "2019-10-15T21:20:29.000Z" + "SpotPrice": "0.376800", + "Timestamp": "2024-05-16T09:32:04.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r4.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.202600", - "Timestamp": "2019-10-15T21:20:29.000Z" + "SpotPrice": "0.276800", + "Timestamp": "2024-05-16T09:32:04.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.257300", - "Timestamp": "2019-10-15T21:20:29.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.115000", + "Timestamp": "2024-05-16T09:32:04.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.966900", - "Timestamp": "2019-10-15T21:20:16.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.110000", + "Timestamp": "2024-05-16T09:32:04.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.966900", - "Timestamp": "2019-10-15T21:20:16.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.985000", + "Timestamp": "2024-05-16T09:32:04.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.680900", - "Timestamp": "2019-10-15T21:20:16.000Z" + "SpotPrice": "0.568800", + "Timestamp": "2024-05-16T09:32:03.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.680900", - "Timestamp": "2019-10-15T21:20:16.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.563800", + "Timestamp": "2024-05-16T09:32:03.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.650900", - "Timestamp": "2019-10-15T21:20:16.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.438800", + "Timestamp": "2024-05-16T09:32:03.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.650900", - "Timestamp": "2019-10-15T21:20:16.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.080900", + "Timestamp": "2024-05-16T09:32:03.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.550900", - "Timestamp": "2019-10-15T21:20:16.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.075900", + "Timestamp": "2024-05-16T09:32:03.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.550900", - "Timestamp": "2019-10-15T21:20:16.000Z" + "SpotPrice": "0.950900", + "Timestamp": "2024-05-16T09:32:03.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.340600", - "Timestamp": "2019-10-15T21:20:14.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.853000", + "Timestamp": "2024-05-16T09:32:03.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.340600", - "Timestamp": "2019-10-15T21:20:14.000Z" + "SpotPrice": "0.140000", + "Timestamp": "2024-05-16T09:32:01.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.310600", - "Timestamp": "2019-10-15T21:20:14.000Z" + "SpotPrice": "0.136300", + "Timestamp": "2024-05-16T09:32:01.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.310600", - "Timestamp": "2019-10-15T21:20:14.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080000", + "Timestamp": "2024-05-16T09:32:01.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.210600", - "Timestamp": "2019-10-15T21:20:14.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.293500", + "Timestamp": "2024-05-16T09:32:01.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.210600", - "Timestamp": "2019-10-15T21:20:14.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289500", + "Timestamp": "2024-05-16T09:32:01.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.327600", - "Timestamp": "2019-10-15T21:20:14.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.233500", + "Timestamp": "2024-05-16T09:32:01.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.327600", - "Timestamp": "2019-10-15T21:20:14.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.181900", + "Timestamp": "2024-05-16T09:32:00.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.245500", - "Timestamp": "2019-10-15T21:20:01.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.176900", + "Timestamp": "2024-05-16T09:32:00.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.245500", - "Timestamp": "2019-10-15T21:20:01.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.051900", + "Timestamp": "2024-05-16T09:32:00.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122900", - "Timestamp": "2019-10-15T21:20:01.000Z" + "SpotPrice": "0.266100", + "Timestamp": "2024-05-16T09:32:00.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.162900", - "Timestamp": "2019-10-15T21:20:01.000Z" + "SpotPrice": "0.261100", + "Timestamp": "2024-05-16T09:32:00.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062900", - "Timestamp": "2019-10-15T21:20:01.000Z" + "SpotPrice": "0.136100", + "Timestamp": "2024-05-16T09:32:00.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3.metal", "ProductDescription": "Windows", - "SpotPrice": "0.491100", - "Timestamp": "2019-10-15T21:19:58.000Z" + "SpotPrice": "4.781700", + "Timestamp": "2024-05-16T09:32:00.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.491100", - "Timestamp": "2019-10-15T21:19:58.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.628200", + "Timestamp": "2024-05-16T09:32:00.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.253100", - "Timestamp": "2019-10-15T21:19:58.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.623200", + "Timestamp": "2024-05-16T09:32:00.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.253100", - "Timestamp": "2019-10-15T21:19:58.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.498200", + "Timestamp": "2024-05-16T09:32:00.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.223100", - "Timestamp": "2019-10-15T21:19:58.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.524300", + "Timestamp": "2024-05-16T09:31:58.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.223100", - "Timestamp": "2019-10-15T21:19:58.000Z" + "SpotPrice": "0.519300", + "Timestamp": "2024-05-16T09:31:58.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.123100", - "Timestamp": "2019-10-15T21:19:58.000Z" + "SpotPrice": "0.394300", + "Timestamp": "2024-05-16T09:31:58.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.123100", - "Timestamp": "2019-10-15T21:19:58.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.620900", + "Timestamp": "2024-05-16T09:31:57.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.124800", - "Timestamp": "2019-10-15T21:19:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.615900", + "Timestamp": "2024-05-16T09:31:57.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.134100", - "Timestamp": "2019-10-15T21:19:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.490900", + "Timestamp": "2024-05-16T09:31:57.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.164800", - "Timestamp": "2019-10-15T21:19:57.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.598500", + "Timestamp": "2024-05-16T09:31:56.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.174100", - "Timestamp": "2019-10-15T21:19:57.000Z" + "SpotPrice": "2.593500", + "Timestamp": "2024-05-16T09:31:56.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.064800", - "Timestamp": "2019-10-15T21:19:57.000Z" + "SpotPrice": "2.468500", + "Timestamp": "2024-05-16T09:31:56.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.074100", - "Timestamp": "2019-10-15T21:19:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.107500", + "Timestamp": "2024-05-16T09:31:55.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.013600", - "Timestamp": "2019-10-15T21:19:36.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.102500", + "Timestamp": "2024-05-16T09:31:55.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.013600", - "Timestamp": "2019-10-15T21:19:36.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.977500", + "Timestamp": "2024-05-16T09:31:55.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.497200", - "Timestamp": "2019-10-15T21:19:18.000Z" + "SpotPrice": "0.259900", + "Timestamp": "2024-05-16T09:31:55.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.671600", - "Timestamp": "2019-10-15T21:18:57.000Z" + "SpotPrice": "0.389600", + "Timestamp": "2024-05-16T09:31:55.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.671600", - "Timestamp": "2019-10-15T21:18:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.384600", + "Timestamp": "2024-05-16T09:31:55.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.641600", - "Timestamp": "2019-10-15T21:18:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.259600", + "Timestamp": "2024-05-16T09:31:55.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.641600", - "Timestamp": "2019-10-15T21:18:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152900", + "Timestamp": "2024-05-16T09:31:54.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.541600", - "Timestamp": "2019-10-15T21:18:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149200", + "Timestamp": "2024-05-16T09:31:54.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.541600", - "Timestamp": "2019-10-15T21:18:57.000Z" + "SpotPrice": "0.092900", + "Timestamp": "2024-05-16T09:31:54.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093800", - "Timestamp": "2019-10-15T21:16:35.000Z" + "SpotPrice": "0.581100", + "Timestamp": "2024-05-16T09:31:54.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133800", - "Timestamp": "2019-10-15T21:16:35.000Z" + "SpotPrice": "0.551100", + "Timestamp": "2024-05-16T09:31:54.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033800", - "Timestamp": "2019-10-15T21:16:35.000Z" + "SpotPrice": "0.451100", + "Timestamp": "2024-05-16T09:31:54.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.929200", - "Timestamp": "2019-10-15T21:14:35.000Z" + "SpotPrice": "0.081100", + "Timestamp": "2024-05-16T09:31:54.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.899200", - "Timestamp": "2019-10-15T21:14:35.000Z" + "SpotPrice": "0.052100", + "Timestamp": "2024-05-16T09:31:54.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.799200", - "Timestamp": "2019-10-15T21:14:35.000Z" + "SpotPrice": "0.021100", + "Timestamp": "2024-05-16T09:31:54.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1e", + "InstanceType": "t2.large", "ProductDescription": "Windows", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-15T21:14:25.000Z" + "SpotPrice": "0.068500", + "Timestamp": "2024-05-16T09:18:50.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.510000", - "Timestamp": "2019-10-15T21:11:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.607700", + "Timestamp": "2024-05-16T09:18:24.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.510000", - "Timestamp": "2019-10-15T21:11:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.577700", + "Timestamp": "2024-05-16T09:18:24.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.240000", - "Timestamp": "2019-10-15T21:10:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.477700", + "Timestamp": "2024-05-16T09:18:24.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.240000", - "Timestamp": "2019-10-15T21:10:43.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.134700", + "Timestamp": "2024-05-16T09:18:16.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.210000", - "Timestamp": "2019-10-15T21:10:43.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.015700", + "Timestamp": "2024-05-16T09:18:16.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g3.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.210000", - "Timestamp": "2019-10-15T21:10:43.000Z" + "SpotPrice": "1.985700", + "Timestamp": "2024-05-16T09:18:16.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g3.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.110000", - "Timestamp": "2019-10-15T21:10:43.000Z" + "SpotPrice": "1.885700", + "Timestamp": "2024-05-16T09:18:16.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.110000", - "Timestamp": "2019-10-15T21:10:43.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.216100", + "Timestamp": "2024-05-16T09:18:12.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3en.metal", - "ProductDescription": "Windows", - "SpotPrice": "8.016000", - "Timestamp": "2019-10-15T21:10:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.242100", + "Timestamp": "2024-05-16T09:18:11.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3en.metal", - "ProductDescription": "Windows", - "SpotPrice": "8.016000", - "Timestamp": "2019-10-15T21:10:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.237100", + "Timestamp": "2024-05-16T09:18:11.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.401400", - "Timestamp": "2019-10-15T21:10:20.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.112100", + "Timestamp": "2024-05-16T09:18:11.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.401400", - "Timestamp": "2019-10-15T21:10:20.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.047800", + "Timestamp": "2024-05-16T09:18:11.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.070700", - "Timestamp": "2019-10-15T21:10:13.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.017800", + "Timestamp": "2024-05-16T09:18:11.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.917800", + "Timestamp": "2024-05-16T09:18:11.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.070700", - "Timestamp": "2019-10-15T21:10:13.000Z" + "SpotPrice": "3.270500", + "Timestamp": "2024-05-16T09:18:09.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.025900", - "Timestamp": "2019-10-15T21:10:05.000Z" + "SpotPrice": "6.875000", + "Timestamp": "2024-05-16T09:18:09.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.025900", - "Timestamp": "2019-10-15T21:10:05.000Z" + "SpotPrice": "3.164000", + "Timestamp": "2024-05-16T09:18:09.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "i3.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.341400", - "Timestamp": "2019-10-15T21:10:01.000Z" + "SpotPrice": "2.188900", + "Timestamp": "2024-05-16T09:18:09.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "i3.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.381400", - "Timestamp": "2019-10-15T21:10:01.000Z" + "SpotPrice": "2.158900", + "Timestamp": "2024-05-16T09:18:09.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "i3.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.281400", - "Timestamp": "2019-10-15T21:10:01.000Z" + "SpotPrice": "2.058900", + "Timestamp": "2024-05-16T09:18:09.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061900", - "Timestamp": "2019-10-15T21:09:48.000Z" + "SpotPrice": "1.410500", + "Timestamp": "2024-05-16T09:18:09.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5g.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.101900", - "Timestamp": "2019-10-15T21:09:48.000Z" + "SpotPrice": "1.405500", + "Timestamp": "2024-05-16T09:18:09.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001900", - "Timestamp": "2019-10-15T21:09:48.000Z" + "SpotPrice": "1.280500", + "Timestamp": "2024-05-16T09:18:09.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3en.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.730000", - "Timestamp": "2019-10-15T21:09:44.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.326800", + "Timestamp": "2024-05-16T09:18:08.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3en.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.730000", - "Timestamp": "2019-10-15T21:09:44.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.258700", + "Timestamp": "2024-05-16T09:18:08.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3en.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.700000", - "Timestamp": "2019-10-15T21:09:44.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.732200", + "Timestamp": "2024-05-16T09:18:07.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3en.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.700000", - "Timestamp": "2019-10-15T21:09:44.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Windows", + "SpotPrice": "5.307900", + "Timestamp": "2024-05-16T09:18:07.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3en.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.600000", - "Timestamp": "2019-10-15T21:09:44.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.687200", + "Timestamp": "2024-05-16T09:18:07.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3en.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.682200", + "Timestamp": "2024-05-16T09:18:07.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6gd.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.600000", - "Timestamp": "2019-10-15T21:09:44.000Z" + "SpotPrice": "1.557200", + "Timestamp": "2024-05-16T09:18:07.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m4.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.491100", - "Timestamp": "2019-10-15T21:09:43.000Z" + "SpotPrice": "0.557900", + "Timestamp": "2024-05-16T09:18:06.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5zn.large", "ProductDescription": "Windows", - "SpotPrice": "0.491100", - "Timestamp": "2019-10-15T21:09:43.000Z" + "SpotPrice": "0.158000", + "Timestamp": "2024-05-16T09:18:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.978000", - "Timestamp": "2019-10-15T21:09:38.000Z" + "SpotPrice": "1.041300", + "Timestamp": "2024-05-16T09:18:06.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.978000", - "Timestamp": "2019-10-15T21:09:38.000Z" + "SpotPrice": "1.106300", + "Timestamp": "2024-05-16T09:18:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.400600", - "Timestamp": "2019-10-15T21:09:30.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.119600", + "Timestamp": "2024-05-16T09:18:03.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.400600", - "Timestamp": "2019-10-15T21:09:30.000Z" + "SpotPrice": "0.231100", + "Timestamp": "2024-05-16T09:18:03.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.370600", - "Timestamp": "2019-10-15T21:09:30.000Z" + "SpotPrice": "0.227400", + "Timestamp": "2024-05-16T09:18:03.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171100", + "Timestamp": "2024-05-16T09:18:03.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.322900", + "Timestamp": "2024-05-16T09:18:03.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.937400", + "Timestamp": "2024-05-16T09:18:01.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.370600", - "Timestamp": "2019-10-15T21:09:30.000Z" + "SpotPrice": "0.932400", + "Timestamp": "2024-05-16T09:18:01.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.270600", - "Timestamp": "2019-10-15T21:09:30.000Z" + "SpotPrice": "0.807400", + "Timestamp": "2024-05-16T09:18:01.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.270600", - "Timestamp": "2019-10-15T21:09:30.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.177300", + "Timestamp": "2024-05-16T09:18:01.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5n.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.607100", - "Timestamp": "2019-10-15T21:09:26.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.018200", + "Timestamp": "2024-05-16T09:18:01.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5n.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.607100", - "Timestamp": "2019-10-15T21:09:26.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.340200", + "Timestamp": "2024-05-16T09:18:01.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5n.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.577100", - "Timestamp": "2019-10-15T21:09:26.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.233600", + "Timestamp": "2024-05-16T09:18:01.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5n.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "a1.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.577100", - "Timestamp": "2019-10-15T21:09:26.000Z" + "SpotPrice": "0.228600", + "Timestamp": "2024-05-16T09:18:01.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5n.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "a1.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.477100", - "Timestamp": "2019-10-15T21:09:26.000Z" + "SpotPrice": "0.103600", + "Timestamp": "2024-05-16T09:18:01.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5n.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.477100", - "Timestamp": "2019-10-15T21:09:26.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.422000", + "Timestamp": "2024-05-16T09:18:00.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.006500", - "Timestamp": "2019-10-15T21:09:19.000Z" + "SpotPrice": "2.261900", + "Timestamp": "2024-05-16T09:17:59.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.006500", - "Timestamp": "2019-10-15T21:09:19.000Z" + "SpotPrice": "2.056900", + "Timestamp": "2024-05-16T09:17:58.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.419800", - "Timestamp": "2019-10-15T21:09:17.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.402200", + "Timestamp": "2024-05-16T09:17:58.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.419800", - "Timestamp": "2019-10-15T21:09:17.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.397200", + "Timestamp": "2024-05-16T09:17:58.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.237800", - "Timestamp": "2019-10-15T21:09:00.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.272200", + "Timestamp": "2024-05-16T09:17:58.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.237800", - "Timestamp": "2019-10-15T21:09:00.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.201100", + "Timestamp": "2024-05-16T09:17:58.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.207800", - "Timestamp": "2019-10-15T21:09:00.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.689000", + "Timestamp": "2024-05-16T09:17:58.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.207800", - "Timestamp": "2019-10-15T21:09:00.000Z" + "SpotPrice": "5.684000", + "Timestamp": "2024-05-16T09:17:58.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.107800", - "Timestamp": "2019-10-15T21:09:00.000Z" + "SpotPrice": "5.559000", + "Timestamp": "2024-05-16T09:17:58.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.878700", + "Timestamp": "2024-05-16T09:17:58.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.873700", + "Timestamp": "2024-05-16T09:17:58.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.107800", - "Timestamp": "2019-10-15T21:09:00.000Z" + "SpotPrice": "1.748700", + "Timestamp": "2024-05-16T09:17:58.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067500", - "Timestamp": "2019-10-15T21:09:00.000Z" + "SpotPrice": "0.162300", + "Timestamp": "2024-05-16T09:17:56.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067500", - "Timestamp": "2019-10-15T21:09:00.000Z" + "SpotPrice": "0.207400", + "Timestamp": "2024-05-16T09:17:56.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.107500", - "Timestamp": "2019-10-15T21:09:00.000Z" + "SpotPrice": "0.158600", + "Timestamp": "2024-05-16T09:17:56.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.107500", - "Timestamp": "2019-10-15T21:09:00.000Z" + "SpotPrice": "0.203700", + "Timestamp": "2024-05-16T09:17:56.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007500", - "Timestamp": "2019-10-15T21:09:00.000Z" + "SpotPrice": "0.102300", + "Timestamp": "2024-05-16T09:17:56.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007500", - "Timestamp": "2019-10-15T21:09:00.000Z" + "SpotPrice": "0.147400", + "Timestamp": "2024-05-16T09:17:56.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.598900", - "Timestamp": "2019-10-15T21:08:49.000Z" + "SpotPrice": "3.750900", + "Timestamp": "2024-05-16T09:17:56.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.598900", - "Timestamp": "2019-10-15T21:08:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.745900", + "Timestamp": "2024-05-16T09:17:56.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.568900", - "Timestamp": "2019-10-15T21:08:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.620900", + "Timestamp": "2024-05-16T09:17:56.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.568900", - "Timestamp": "2019-10-15T21:08:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "8.875000", + "Timestamp": "2024-05-16T09:17:56.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.468900", - "Timestamp": "2019-10-15T21:08:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "8.870000", + "Timestamp": "2024-05-16T09:17:56.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.468900", - "Timestamp": "2019-10-15T21:08:49.000Z" + "SpotPrice": "8.745000", + "Timestamp": "2024-05-16T09:17:56.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.164000", - "Timestamp": "2019-10-15T21:08:39.000Z" + "SpotPrice": "0.889500", + "Timestamp": "2024-05-16T09:17:54.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.164000", - "Timestamp": "2019-10-15T21:08:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.884500", + "Timestamp": "2024-05-16T09:17:54.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.134000", - "Timestamp": "2019-10-15T21:08:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.759500", + "Timestamp": "2024-05-16T09:17:54.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.134000", - "Timestamp": "2019-10-15T21:08:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.422400", + "Timestamp": "2024-05-16T09:17:54.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.034000", - "Timestamp": "2019-10-15T21:08:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.417400", + "Timestamp": "2024-05-16T09:17:54.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.034000", - "Timestamp": "2019-10-15T21:08:39.000Z" + "SpotPrice": "0.292400", + "Timestamp": "2024-05-16T09:17:54.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5n.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.789100", - "Timestamp": "2019-10-15T21:08:22.000Z" + "SpotPrice": "0.654000", + "Timestamp": "2024-05-16T09:17:54.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5n.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.314900", + "Timestamp": "2024-05-16T09:17:54.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.309900", + "Timestamp": "2024-05-16T09:17:54.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.184900", + "Timestamp": "2024-05-16T09:17:54.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.789100", - "Timestamp": "2019-10-15T21:08:22.000Z" + "SpotPrice": "0.540400", + "Timestamp": "2024-05-16T09:17:54.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067700", - "Timestamp": "2019-10-15T21:07:59.000Z" + "SpotPrice": "4.254200", + "Timestamp": "2024-05-16T09:17:53.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067700", - "Timestamp": "2019-10-15T21:07:59.000Z" + "SpotPrice": "4.363700", + "Timestamp": "2024-05-16T09:17:53.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.107700", - "Timestamp": "2019-10-15T21:07:59.000Z" + "SpotPrice": "4.249200", + "Timestamp": "2024-05-16T09:17:53.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.107700", - "Timestamp": "2019-10-15T21:07:59.000Z" + "SpotPrice": "4.358700", + "Timestamp": "2024-05-16T09:17:53.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007700", - "Timestamp": "2019-10-15T21:07:59.000Z" + "SpotPrice": "4.124200", + "Timestamp": "2024-05-16T09:17:53.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007700", - "Timestamp": "2019-10-15T21:07:59.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.249300", - "Timestamp": "2019-10-15T21:07:48.000Z" + "SpotPrice": "4.233700", + "Timestamp": "2024-05-16T09:17:53.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.249300", - "Timestamp": "2019-10-15T21:07:48.000Z" + "SpotPrice": "0.185500", + "Timestamp": "2024-05-16T09:17:53.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.219300", - "Timestamp": "2019-10-15T21:07:48.000Z" + "SpotPrice": "0.181800", + "Timestamp": "2024-05-16T09:17:53.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.219300", - "Timestamp": "2019-10-15T21:07:48.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125500", + "Timestamp": "2024-05-16T09:17:53.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.119300", - "Timestamp": "2019-10-15T21:07:48.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.296600", + "Timestamp": "2024-05-16T09:17:52.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.119300", - "Timestamp": "2019-10-15T21:07:48.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.291600", + "Timestamp": "2024-05-16T09:17:52.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.266500", - "Timestamp": "2019-10-15T21:07:46.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.166600", + "Timestamp": "2024-05-16T09:17:52.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.266500", - "Timestamp": "2019-10-15T21:07:46.000Z" + "SpotPrice": "0.559000", + "Timestamp": "2024-05-16T09:17:52.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.836900", - "Timestamp": "2019-10-15T21:07:41.000Z" + "SpotPrice": "1.074400", + "Timestamp": "2024-05-16T09:17:51.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.large", "ProductDescription": "Windows", - "SpotPrice": "0.836900", - "Timestamp": "2019-10-15T21:07:41.000Z" + "SpotPrice": "0.140900", + "Timestamp": "2024-05-16T09:17:51.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.656900", - "Timestamp": "2019-10-15T21:06:51.000Z" + "SpotPrice": "0.117600", + "Timestamp": "2024-05-16T09:17:50.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.626900", - "Timestamp": "2019-10-15T21:06:51.000Z" + "SpotPrice": "0.113900", + "Timestamp": "2024-05-16T09:17:50.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.526900", - "Timestamp": "2019-10-15T21:06:51.000Z" + "SpotPrice": "0.057600", + "Timestamp": "2024-05-16T09:17:50.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2idn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.261200", - "Timestamp": "2019-10-15T21:06:51.000Z" + "SpotPrice": "4.589600", + "Timestamp": "2024-05-16T09:17:50.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2idn.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.231200", - "Timestamp": "2019-10-15T21:06:51.000Z" + "SpotPrice": "4.584600", + "Timestamp": "2024-05-16T09:17:50.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2idn.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.131200", - "Timestamp": "2019-10-15T21:06:51.000Z" + "SpotPrice": "4.459600", + "Timestamp": "2024-05-16T09:17:50.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.456100", - "Timestamp": "2019-10-15T21:05:53.000Z" + "SpotPrice": "4.592500", + "Timestamp": "2024-05-16T09:17:49.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.426100", - "Timestamp": "2019-10-15T21:05:53.000Z" + "SpotPrice": "4.587500", + "Timestamp": "2024-05-16T09:17:49.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.326100", - "Timestamp": "2019-10-15T21:05:53.000Z" + "SpotPrice": "4.462500", + "Timestamp": "2024-05-16T09:17:49.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "z1d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123300", - "Timestamp": "2019-10-15T20:45:27.000Z" + "SpotPrice": "0.542800", + "Timestamp": "2024-05-16T09:17:48.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "z1d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.537800", + "Timestamp": "2024-05-16T09:17:48.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.412800", + "Timestamp": "2024-05-16T09:17:48.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5zn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123300", - "Timestamp": "2019-10-15T20:45:27.000Z" + "SpotPrice": "0.609500", + "Timestamp": "2024-05-16T09:17:48.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "z1d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5zn.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.163300", - "Timestamp": "2019-10-15T20:45:27.000Z" + "SpotPrice": "0.604500", + "Timestamp": "2024-05-16T09:17:48.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "z1d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.479500", + "Timestamp": "2024-05-16T09:17:48.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.592200", + "Timestamp": "2024-05-16T09:17:48.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7gd.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.163300", - "Timestamp": "2019-10-15T20:45:27.000Z" + "SpotPrice": "0.587200", + "Timestamp": "2024-05-16T09:17:48.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "z1d.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063300", - "Timestamp": "2019-10-15T20:45:27.000Z" + "SpotPrice": "0.462200", + "Timestamp": "2024-05-16T09:17:48.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "z1d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063300", - "Timestamp": "2019-10-15T20:45:27.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.889700", + "Timestamp": "2024-05-16T09:17:48.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "z1d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.155300", - "Timestamp": "2019-10-15T20:45:27.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.884700", + "Timestamp": "2024-05-16T09:17:48.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "z1d.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.759700", + "Timestamp": "2024-05-16T09:17:48.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.large", "ProductDescription": "Windows", - "SpotPrice": "0.155300", - "Timestamp": "2019-10-15T20:45:27.000Z" + "SpotPrice": "0.137800", + "Timestamp": "2024-05-16T09:17:48.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.287200", - "Timestamp": "2019-10-15T20:45:12.000Z" + "SpotPrice": "1.144000", + "Timestamp": "2024-05-16T09:17:47.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.287200", - "Timestamp": "2019-10-15T20:45:12.000Z" + "SpotPrice": "10.100600", + "Timestamp": "2024-05-16T09:17:47.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.376900", - "Timestamp": "2019-10-15T20:44:57.000Z" + "SpotPrice": "4.190900", + "Timestamp": "2024-05-16T09:17:47.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.330100", - "Timestamp": "2019-10-15T20:44:57.000Z" + "SpotPrice": "2.074800", + "Timestamp": "2024-05-16T09:17:46.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.300100", - "Timestamp": "2019-10-15T20:44:57.000Z" + "SpotPrice": "2.069800", + "Timestamp": "2024-05-16T09:17:46.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.200100", - "Timestamp": "2019-10-15T20:44:57.000Z" + "SpotPrice": "1.944800", + "Timestamp": "2024-05-16T09:17:46.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.618300", + "Timestamp": "2024-05-16T09:17:46.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.302700", + "Timestamp": "2024-05-16T09:17:46.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "i2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.727700", - "Timestamp": "2019-10-15T20:41:31.000Z" + "SpotPrice": "0.488500", + "Timestamp": "2024-05-16T09:17:45.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i2.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.697700", - "Timestamp": "2019-10-15T20:41:31.000Z" + "SpotPrice": "0.528500", + "Timestamp": "2024-05-16T09:17:45.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i2.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.597700", - "Timestamp": "2019-10-15T20:41:31.000Z" + "SpotPrice": "0.428500", + "Timestamp": "2024-05-16T09:17:45.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.241900", - "Timestamp": "2019-10-15T20:41:04.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.047900", + "Timestamp": "2024-05-16T09:17:45.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.211900", - "Timestamp": "2019-10-15T20:41:04.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.776600", + "Timestamp": "2024-05-16T09:17:45.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.111900", - "Timestamp": "2019-10-15T20:41:04.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.608500", + "Timestamp": "2024-05-16T09:17:44.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.345300", + "Timestamp": "2024-05-16T09:17:43.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.498000", - "Timestamp": "2019-10-15T20:40:12.000Z" + "SpotPrice": "0.203800", + "Timestamp": "2024-05-16T09:17:41.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.468000", - "Timestamp": "2019-10-15T20:40:12.000Z" + "SpotPrice": "0.200100", + "Timestamp": "2024-05-16T09:17:41.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.368000", - "Timestamp": "2019-10-15T20:40:12.000Z" + "SpotPrice": "0.143800", + "Timestamp": "2024-05-16T09:17:41.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.400800", - "Timestamp": "2019-10-15T20:40:02.000Z" + "SpotPrice": "5.757800", + "Timestamp": "2024-05-16T09:17:41.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.370800", - "Timestamp": "2019-10-15T20:40:02.000Z" + "SpotPrice": "5.752800", + "Timestamp": "2024-05-16T09:17:41.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.270800", - "Timestamp": "2019-10-15T20:40:02.000Z" + "SpotPrice": "5.627800", + "Timestamp": "2024-05-16T09:17:41.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "z1d.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.154600", - "Timestamp": "2019-10-15T20:33:21.000Z" + "SpotPrice": "0.704000", + "Timestamp": "2024-05-16T09:17:41.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.273600", - "Timestamp": "2019-10-15T20:33:13.000Z" + "SpotPrice": "2.129800", + "Timestamp": "2024-05-16T09:17:41.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.243600", - "Timestamp": "2019-10-15T20:33:13.000Z" + "SpotPrice": "2.124800", + "Timestamp": "2024-05-16T09:17:41.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.143600", - "Timestamp": "2019-10-15T20:33:13.000Z" + "SpotPrice": "1.999800", + "Timestamp": "2024-05-16T09:17:41.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.152200", + "Timestamp": "2024-05-16T09:17:41.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf1.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.283400", - "Timestamp": "2019-10-15T20:32:56.000Z" + "SpotPrice": "2.337100", + "Timestamp": "2024-05-16T09:17:41.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf1.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.253400", - "Timestamp": "2019-10-15T20:32:56.000Z" + "SpotPrice": "2.332100", + "Timestamp": "2024-05-16T09:17:41.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf1.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.153400", - "Timestamp": "2019-10-15T20:32:56.000Z" + "SpotPrice": "2.207100", + "Timestamp": "2024-05-16T09:17:41.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r4.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.141900", - "Timestamp": "2019-10-15T20:32:33.000Z" + "SpotPrice": "2.074400", + "Timestamp": "2024-05-16T09:17:40.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r4.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.181900", - "Timestamp": "2019-10-15T20:32:33.000Z" + "SpotPrice": "2.044400", + "Timestamp": "2024-05-16T09:17:40.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r4.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.081900", - "Timestamp": "2019-10-15T20:32:33.000Z" + "SpotPrice": "1.944400", + "Timestamp": "2024-05-16T09:17:40.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.348100", + "Timestamp": "2024-05-16T09:17:40.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Windows", + "SpotPrice": "16.420200", + "Timestamp": "2024-05-16T09:17:39.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.259200", - "Timestamp": "2019-10-15T20:29:34.000Z" + "SpotPrice": "3.521000", + "Timestamp": "2024-05-16T09:17:39.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.229200", - "Timestamp": "2019-10-15T20:29:34.000Z" + "SpotPrice": "3.516000", + "Timestamp": "2024-05-16T09:17:39.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.129200", - "Timestamp": "2019-10-15T20:29:34.000Z" + "SpotPrice": "3.391000", + "Timestamp": "2024-05-16T09:17:39.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.104500", - "Timestamp": "2019-10-15T20:24:18.000Z" + "SpotPrice": "1.072400", + "Timestamp": "2024-05-16T09:17:39.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.279500", - "Timestamp": "2019-10-15T20:24:08.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.108400", + "Timestamp": "2024-05-16T09:17:38.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.249500", - "Timestamp": "2019-10-15T20:24:08.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.394200", + "Timestamp": "2024-05-16T09:17:38.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.149500", - "Timestamp": "2019-10-15T20:24:08.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128600", + "Timestamp": "2024-05-16T09:17:38.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.509800", - "Timestamp": "2019-10-15T20:15:52.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.127000", + "Timestamp": "2024-05-16T09:17:38.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "z1d.3xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.509800", - "Timestamp": "2019-10-15T20:15:52.000Z" + "SpotPrice": "1.566600", + "Timestamp": "2024-05-16T09:17:38.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "z1d.3xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.479800", - "Timestamp": "2019-10-15T20:15:52.000Z" + "SpotPrice": "1.561600", + "Timestamp": "2024-05-16T09:17:38.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "z1d.3xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.436600", + "Timestamp": "2024-05-16T09:17:38.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.952000", + "Timestamp": "2024-05-16T09:17:38.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.367100", + "Timestamp": "2024-05-16T09:17:38.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c1.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.479800", - "Timestamp": "2019-10-15T20:15:52.000Z" + "SpotPrice": "0.337100", + "Timestamp": "2024-05-16T09:17:38.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "z1d.3xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c1.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.379800", - "Timestamp": "2019-10-15T20:15:52.000Z" + "SpotPrice": "0.237100", + "Timestamp": "2024-05-16T09:17:38.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.379800", - "Timestamp": "2019-10-15T20:15:52.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.133100", + "Timestamp": "2024-05-16T09:17:38.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.259200", - "Timestamp": "2019-10-15T20:15:34.000Z" + "SpotPrice": "2.478000", + "Timestamp": "2024-05-16T09:17:38.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.229200", - "Timestamp": "2019-10-15T20:15:34.000Z" + "SpotPrice": "2.473000", + "Timestamp": "2024-05-16T09:17:38.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.129200", - "Timestamp": "2019-10-15T20:15:34.000Z" + "SpotPrice": "2.348000", + "Timestamp": "2024-05-16T09:17:38.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "z1d.3xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.large", "ProductDescription": "Windows", - "SpotPrice": "0.931800", - "Timestamp": "2019-10-15T20:13:43.000Z" + "SpotPrice": "0.123900", + "Timestamp": "2024-05-16T09:17:38.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.931800", - "Timestamp": "2019-10-15T20:13:43.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.181500", + "Timestamp": "2024-05-16T09:17:38.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.497200", - "Timestamp": "2019-10-15T20:13:17.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.176500", + "Timestamp": "2024-05-16T09:17:38.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.282000", - "Timestamp": "2019-10-15T20:08:00.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.051500", + "Timestamp": "2024-05-16T09:17:38.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.272700", - "Timestamp": "2019-10-15T20:07:32.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "11.176500", + "Timestamp": "2024-05-16T09:17:37.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.155100", - "Timestamp": "2019-10-15T19:59:21.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "11.171500", + "Timestamp": "2024-05-16T09:17:37.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "11.046500", + "Timestamp": "2024-05-16T09:17:37.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.376600", - "Timestamp": "2019-10-15T19:59:18.000Z" + "SpotPrice": "1.874700", + "Timestamp": "2024-05-16T09:17:36.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.346600", - "Timestamp": "2019-10-15T19:59:18.000Z" + "SpotPrice": "1.869700", + "Timestamp": "2024-05-16T09:17:36.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.246600", - "Timestamp": "2019-10-15T19:59:18.000Z" + "SpotPrice": "1.744700", + "Timestamp": "2024-05-16T09:17:36.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.metal-48xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.248300", - "Timestamp": "2019-10-15T19:59:08.000Z" + "SpotPrice": "6.061300", + "Timestamp": "2024-05-16T09:17:36.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.metal-48xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.218300", - "Timestamp": "2019-10-15T19:59:08.000Z" + "SpotPrice": "6.056300", + "Timestamp": "2024-05-16T09:17:36.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.118300", - "Timestamp": "2019-10-15T19:59:08.000Z" + "SpotPrice": "5.931300", + "Timestamp": "2024-05-16T09:17:36.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.552800", + "Timestamp": "2024-05-16T09:17:35.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092300", - "Timestamp": "2019-10-15T19:55:44.000Z" + "SpotPrice": "0.192800", + "Timestamp": "2024-05-16T09:17:35.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132300", - "Timestamp": "2019-10-15T19:55:44.000Z" + "SpotPrice": "0.188800", + "Timestamp": "2024-05-16T09:17:35.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032300", - "Timestamp": "2019-10-15T19:55:44.000Z" + "SpotPrice": "0.132800", + "Timestamp": "2024-05-16T09:17:35.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.114700", - "Timestamp": "2019-10-15T19:51:48.000Z" + "SpotPrice": "1.294700", + "Timestamp": "2024-05-16T09:17:35.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.114700", - "Timestamp": "2019-10-15T19:51:48.000Z" + "SpotPrice": "1.360400", + "Timestamp": "2024-05-16T09:17:35.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.084700", - "Timestamp": "2019-10-15T19:51:48.000Z" + "SpotPrice": "1.289700", + "Timestamp": "2024-05-16T09:17:35.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6gd.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.084700", - "Timestamp": "2019-10-15T19:51:48.000Z" + "SpotPrice": "1.355400", + "Timestamp": "2024-05-16T09:17:35.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.984700", - "Timestamp": "2019-10-15T19:51:48.000Z" + "SpotPrice": "1.164700", + "Timestamp": "2024-05-16T09:17:35.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.984700", - "Timestamp": "2019-10-15T19:51:48.000Z" - }, - { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.051800", - "Timestamp": "2019-10-15T19:51:24.000Z" + "SpotPrice": "1.230400", + "Timestamp": "2024-05-16T09:17:35.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t4g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101400", - "Timestamp": "2019-10-15T19:50:44.000Z" + "SpotPrice": "0.251000", + "Timestamp": "2024-05-16T09:17:34.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t4g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.141400", - "Timestamp": "2019-10-15T19:50:44.000Z" + "SpotPrice": "0.246000", + "Timestamp": "2024-05-16T09:17:34.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t4g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041400", - "Timestamp": "2019-10-15T19:50:44.000Z" + "SpotPrice": "0.121000", + "Timestamp": "2024-05-16T09:17:34.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.802800", - "Timestamp": "2019-10-15T19:50:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.913500", + "Timestamp": "2024-05-16T09:17:34.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.802800", - "Timestamp": "2019-10-15T19:50:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.908500", + "Timestamp": "2024-05-16T09:17:34.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.692800", - "Timestamp": "2019-10-15T19:50:04.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.783500", + "Timestamp": "2024-05-16T09:17:34.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.692800", - "Timestamp": "2019-10-15T19:50:04.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.929400", + "Timestamp": "2024-05-16T09:17:34.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.662800", - "Timestamp": "2019-10-15T19:50:04.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.792900", + "Timestamp": "2024-05-16T09:17:34.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.662800", - "Timestamp": "2019-10-15T19:50:04.000Z" + "SpotPrice": "0.787900", + "Timestamp": "2024-05-16T09:17:34.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.562800", - "Timestamp": "2019-10-15T19:50:04.000Z" - }, - { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.562800", - "Timestamp": "2019-10-15T19:50:04.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.254300", - "Timestamp": "2019-10-15T19:49:56.000Z" + "SpotPrice": "0.662900", + "Timestamp": "2024-05-16T09:17:34.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.254300", - "Timestamp": "2019-10-15T19:49:56.000Z" + "SpotPrice": "7.301600", + "Timestamp": "2024-05-16T09:17:34.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.metal", "ProductDescription": "Windows", - "SpotPrice": "0.503400", - "Timestamp": "2019-10-15T19:49:49.000Z" + "SpotPrice": "8.778500", + "Timestamp": "2024-05-16T09:17:33.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.503400", - "Timestamp": "2019-10-15T19:49:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.985700", + "Timestamp": "2024-05-16T09:17:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.983500", - "Timestamp": "2019-10-15T19:49:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.030900", + "Timestamp": "2024-05-16T09:17:32.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.237100", - "Timestamp": "2019-10-15T19:49:24.000Z" + "SpotPrice": "1.896100", + "Timestamp": "2024-05-16T09:17:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.237100", - "Timestamp": "2019-10-15T19:49:24.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.980700", + "Timestamp": "2024-05-16T09:17:32.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.207100", - "Timestamp": "2019-10-15T19:49:24.000Z" + "SpotPrice": "2.025900", + "Timestamp": "2024-05-16T09:17:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.207100", - "Timestamp": "2019-10-15T19:49:24.000Z" + "SpotPrice": "1.891100", + "Timestamp": "2024-05-16T09:17:32.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.107100", - "Timestamp": "2019-10-15T19:49:24.000Z" + "SpotPrice": "1.855700", + "Timestamp": "2024-05-16T09:17:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.107100", - "Timestamp": "2019-10-15T19:49:24.000Z" + "SpotPrice": "1.900900", + "Timestamp": "2024-05-16T09:17:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.766100", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.905500", - "Timestamp": "2019-10-15T19:49:17.000Z" + "SpotPrice": "4.906700", + "Timestamp": "2024-05-16T09:17:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.875500", - "Timestamp": "2019-10-15T19:49:17.000Z" + "SpotPrice": "4.901700", + "Timestamp": "2024-05-16T09:17:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.775500", - "Timestamp": "2019-10-15T19:49:17.000Z" + "SpotPrice": "4.776700", + "Timestamp": "2024-05-16T09:17:32.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.364500", - "Timestamp": "2019-10-15T19:45:28.000Z" + "SpotPrice": "0.138400", + "Timestamp": "2024-05-16T09:17:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.366800", - "Timestamp": "2019-10-15T19:45:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134700", + "Timestamp": "2024-05-16T09:17:32.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c4.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.334500", - "Timestamp": "2019-10-15T19:45:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078400", + "Timestamp": "2024-05-16T09:17:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c4.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.336800", - "Timestamp": "2019-10-15T19:45:28.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.936100", + "Timestamp": "2024-05-16T09:17:32.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.234500", - "Timestamp": "2019-10-15T19:45:28.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.931100", + "Timestamp": "2024-05-16T09:17:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.236800", - "Timestamp": "2019-10-15T19:45:28.000Z" + "SpotPrice": "0.806100", + "Timestamp": "2024-05-16T09:17:32.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.970500", - "Timestamp": "2019-10-15T19:45:28.000Z" + "SpotPrice": "2.061500", + "Timestamp": "2024-05-16T09:17:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.970500", - "Timestamp": "2019-10-15T19:45:28.000Z" + "SpotPrice": "1.023800", + "Timestamp": "2024-05-16T09:17:32.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135000", - "Timestamp": "2019-10-15T19:45:12.000Z" + "SpotPrice": "0.773600", + "Timestamp": "2024-05-16T09:17:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135000", - "Timestamp": "2019-10-15T19:45:12.000Z" + "SpotPrice": "0.767900", + "Timestamp": "2024-05-16T09:17:32.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175000", - "Timestamp": "2019-10-15T19:45:12.000Z" + "SpotPrice": "0.768600", + "Timestamp": "2024-05-16T09:17:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175000", - "Timestamp": "2019-10-15T19:45:12.000Z" + "SpotPrice": "0.762900", + "Timestamp": "2024-05-16T09:17:32.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075000", - "Timestamp": "2019-10-15T19:45:12.000Z" + "SpotPrice": "0.643600", + "Timestamp": "2024-05-16T09:17:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075000", - "Timestamp": "2019-10-15T19:45:12.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3en.large", - "ProductDescription": "Windows", - "SpotPrice": "0.167000", - "Timestamp": "2019-10-15T19:45:12.000Z" - }, - { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3en.large", - "ProductDescription": "Windows", - "SpotPrice": "0.167000", - "Timestamp": "2019-10-15T19:45:12.000Z" + "SpotPrice": "0.637900", + "Timestamp": "2024-05-16T09:17:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.392500", - "Timestamp": "2019-10-15T19:43:03.000Z" + "SpotPrice": "0.487500", + "Timestamp": "2024-05-16T09:17:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.362500", - "Timestamp": "2019-10-15T19:43:03.000Z" + "SpotPrice": "0.482500", + "Timestamp": "2024-05-16T09:17:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.262500", - "Timestamp": "2019-10-15T19:43:03.000Z" + "SpotPrice": "0.357500", + "Timestamp": "2024-05-16T09:17:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.190100", - "Timestamp": "2019-10-15T19:42:18.000Z" + "SpotPrice": "1.693200", + "Timestamp": "2024-05-16T09:17:31.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.230100", - "Timestamp": "2019-10-15T19:42:18.000Z" + "SpotPrice": "1.688200", + "Timestamp": "2024-05-16T09:17:31.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.130100", - "Timestamp": "2019-10-15T19:42:18.000Z" + "SpotPrice": "1.563200", + "Timestamp": "2024-05-16T09:17:31.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.775400", - "Timestamp": "2019-10-15T19:34:51.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.274500", + "Timestamp": "2024-05-16T09:17:31.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.745400", - "Timestamp": "2019-10-15T19:34:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.460700", + "Timestamp": "2024-05-16T09:17:31.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.645400", - "Timestamp": "2019-10-15T19:34:51.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.838500", + "Timestamp": "2024-05-16T09:17:31.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.493000", - "Timestamp": "2019-10-15T19:34:25.000Z" + "SpotPrice": "1.872600", + "Timestamp": "2024-05-16T09:17:31.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.463000", - "Timestamp": "2019-10-15T19:34:25.000Z" + "SpotPrice": "1.867600", + "Timestamp": "2024-05-16T09:17:31.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.363000", - "Timestamp": "2019-10-15T19:34:25.000Z" + "SpotPrice": "1.742600", + "Timestamp": "2024-05-16T09:17:31.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.417600", + "Timestamp": "2024-05-16T09:17:31.000Z" + }, + { + "AvailabilityZone": "us-east-1e", + "InstanceType": "f1.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.201900", - "Timestamp": "2019-10-15T19:34:11.000Z" + "SpotPrice": "5.317100", + "Timestamp": "2024-05-16T09:17:31.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "f1.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.171900", - "Timestamp": "2019-10-15T19:34:11.000Z" + "SpotPrice": "5.287100", + "Timestamp": "2024-05-16T09:17:31.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "f1.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.071900", - "Timestamp": "2019-10-15T19:34:11.000Z" + "SpotPrice": "5.187100", + "Timestamp": "2024-05-16T09:17:31.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125100", - "Timestamp": "2019-10-15T19:33:40.000Z" + "SpotPrice": "0.094900", + "Timestamp": "2024-05-16T09:17:31.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.165100", - "Timestamp": "2019-10-15T19:33:40.000Z" + "SpotPrice": "0.091200", + "Timestamp": "2024-05-16T09:17:31.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065100", - "Timestamp": "2019-10-15T19:33:40.000Z" + "SpotPrice": "0.034900", + "Timestamp": "2024-05-16T09:17:31.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.122800", - "Timestamp": "2019-10-15T19:13:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.269900", + "Timestamp": "2024-05-16T09:17:31.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.122800", - "Timestamp": "2019-10-15T19:13:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.264900", + "Timestamp": "2024-05-16T09:17:31.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090800", - "Timestamp": "2019-10-15T19:13:23.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.139900", + "Timestamp": "2024-05-16T09:17:31.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090800", - "Timestamp": "2019-10-15T19:13:23.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m4.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T19:13:23.000Z" + "SpotPrice": "0.384100", + "Timestamp": "2024-05-16T09:17:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7g.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T19:13:23.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030800", - "Timestamp": "2019-10-15T19:13:23.000Z" + "SpotPrice": "0.379100", + "Timestamp": "2024-05-16T09:17:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030800", - "Timestamp": "2019-10-15T19:13:23.000Z" - }, - { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095500", - "Timestamp": "2019-10-15T19:09:15.000Z" + "SpotPrice": "0.254100", + "Timestamp": "2024-05-16T09:17:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135500", - "Timestamp": "2019-10-15T19:09:15.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.274300", + "Timestamp": "2024-05-16T09:17:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035500", - "Timestamp": "2019-10-15T19:09:15.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.516100", + "Timestamp": "2024-05-16T09:17:30.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m3.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.146100", - "Timestamp": "2019-10-15T19:09:12.000Z" + "SpotPrice": "1.243700", + "Timestamp": "2024-05-16T09:17:30.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.metal-48xl", "ProductDescription": "Windows", - "SpotPrice": "1.255200", - "Timestamp": "2019-10-15T19:08:59.000Z" + "SpotPrice": "13.422500", + "Timestamp": "2024-05-16T09:17:30.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.273200", - "Timestamp": "2019-10-15T19:00:24.000Z" + "SpotPrice": "0.284200", + "Timestamp": "2024-05-16T09:17:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.363800", - "Timestamp": "2019-10-15T18:52:32.000Z" + "SpotPrice": "1.320100", + "Timestamp": "2024-05-16T09:17:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.403800", - "Timestamp": "2019-10-15T18:52:32.000Z" + "SpotPrice": "1.315100", + "Timestamp": "2024-05-16T09:17:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.303800", - "Timestamp": "2019-10-15T18:52:32.000Z" + "SpotPrice": "1.190100", + "Timestamp": "2024-05-16T09:17:30.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.491100", - "Timestamp": "2019-10-15T18:50:00.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088400", + "Timestamp": "2024-05-16T09:17:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.491100", - "Timestamp": "2019-10-15T18:50:00.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084700", + "Timestamp": "2024-05-16T09:17:30.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.430000", - "Timestamp": "2019-10-15T18:45:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028400", + "Timestamp": "2024-05-16T09:17:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.430000", - "Timestamp": "2019-10-15T18:45:28.000Z" + "SpotPrice": "0.333300", + "Timestamp": "2024-05-16T09:17:30.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.400000", - "Timestamp": "2019-10-15T18:45:28.000Z" + "SpotPrice": "0.328300", + "Timestamp": "2024-05-16T09:17:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.400000", - "Timestamp": "2019-10-15T18:45:28.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.203300", + "Timestamp": "2024-05-16T09:17:30.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.300000", - "Timestamp": "2019-10-15T18:45:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.186500", + "Timestamp": "2024-05-16T09:17:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.181500", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.300000", - "Timestamp": "2019-10-15T18:45:28.000Z" + "SpotPrice": "1.056500", + "Timestamp": "2024-05-16T09:17:30.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.metal", "ProductDescription": "Windows", - "SpotPrice": "0.668000", - "Timestamp": "2019-10-15T18:45:28.000Z" + "SpotPrice": "9.974300", + "Timestamp": "2024-05-16T09:17:29.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.668000", - "Timestamp": "2019-10-15T18:45:28.000Z" + "SpotPrice": "0.531900", + "Timestamp": "2024-05-16T09:17:29.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5zn.6xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.006800", - "Timestamp": "2019-10-15T18:45:13.000Z" + "SpotPrice": "1.885900", + "Timestamp": "2024-05-16T09:17:29.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.006800", - "Timestamp": "2019-10-15T18:45:13.000Z" + "SpotPrice": "2.290800", + "Timestamp": "2024-05-16T09:17:29.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.401300", - "Timestamp": "2019-10-15T18:45:12.000Z" + "SpotPrice": "0.149700", + "Timestamp": "2024-05-16T09:17:28.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.371300", - "Timestamp": "2019-10-15T18:45:12.000Z" + "SpotPrice": "0.145700", + "Timestamp": "2024-05-16T09:17:28.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.271300", - "Timestamp": "2019-10-15T18:45:12.000Z" + "SpotPrice": "0.089700", + "Timestamp": "2024-05-16T09:17:28.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gd.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.696400", - "Timestamp": "2019-10-15T18:44:27.000Z" + "SpotPrice": "0.436900", + "Timestamp": "2024-05-16T09:17:28.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gd.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.666400", - "Timestamp": "2019-10-15T18:44:27.000Z" + "SpotPrice": "0.431900", + "Timestamp": "2024-05-16T09:17:28.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.566400", - "Timestamp": "2019-10-15T18:44:27.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.998800", - "Timestamp": "2019-10-15T18:43:52.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.968800", - "Timestamp": "2019-10-15T18:43:52.000Z" + "SpotPrice": "0.306900", + "Timestamp": "2024-05-16T09:17:28.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.868800", - "Timestamp": "2019-10-15T18:43:52.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.580800", + "Timestamp": "2024-05-16T09:17:28.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.410300", - "Timestamp": "2019-10-15T18:35:49.000Z" + "SpotPrice": "0.186700", + "Timestamp": "2024-05-16T09:17:27.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.380300", - "Timestamp": "2019-10-15T18:35:49.000Z" + "SpotPrice": "0.182700", + "Timestamp": "2024-05-16T09:17:27.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.280300", - "Timestamp": "2019-10-15T18:35:49.000Z" + "SpotPrice": "0.126700", + "Timestamp": "2024-05-16T09:17:27.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.291800", - "Timestamp": "2019-10-15T18:35:40.000Z" + "SpotPrice": "0.808700", + "Timestamp": "2024-05-16T09:17:27.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6g.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.261800", - "Timestamp": "2019-10-15T18:35:40.000Z" + "SpotPrice": "0.803700", + "Timestamp": "2024-05-16T09:17:27.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.161800", - "Timestamp": "2019-10-15T18:35:40.000Z" + "SpotPrice": "0.678700", + "Timestamp": "2024-05-16T09:17:27.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096300", - "Timestamp": "2019-10-15T18:27:21.000Z" + "SpotPrice": "0.672900", + "Timestamp": "2024-05-16T09:17:26.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136300", - "Timestamp": "2019-10-15T18:27:21.000Z" + "SpotPrice": "0.667900", + "Timestamp": "2024-05-16T09:17:26.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036300", - "Timestamp": "2019-10-15T18:27:21.000Z" + "SpotPrice": "0.542900", + "Timestamp": "2024-05-16T09:17:26.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.452300", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.816600", - "Timestamp": "2019-10-15T18:27:01.000Z" + "SpotPrice": "0.767600", + "Timestamp": "2024-05-16T09:17:26.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.786600", - "Timestamp": "2019-10-15T18:27:01.000Z" + "SpotPrice": "0.762600", + "Timestamp": "2024-05-16T09:17:26.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.686600", - "Timestamp": "2019-10-15T18:27:01.000Z" + "SpotPrice": "0.637600", + "Timestamp": "2024-05-16T09:17:26.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.398700", + "Timestamp": "2024-05-16T09:17:25.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5n.18xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.178000", - "Timestamp": "2019-10-15T18:26:58.000Z" + "SpotPrice": "1.931200", + "Timestamp": "2024-05-16T09:17:25.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5n.18xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.148000", - "Timestamp": "2019-10-15T18:26:58.000Z" + "SpotPrice": "1.926200", + "Timestamp": "2024-05-16T09:17:25.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5n.18xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.048000", - "Timestamp": "2019-10-15T18:26:58.000Z" + "SpotPrice": "1.801200", + "Timestamp": "2024-05-16T09:17:25.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m3.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.146700", - "Timestamp": "2019-10-15T18:11:11.000Z" + "SpotPrice": "15.965800", + "Timestamp": "2024-05-16T09:17:24.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.466500", - "Timestamp": "2019-10-15T18:10:12.000Z" + "SpotPrice": "0.130600", + "Timestamp": "2024-05-16T09:17:24.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.436500", - "Timestamp": "2019-10-15T18:10:12.000Z" + "SpotPrice": "0.126900", + "Timestamp": "2024-05-16T09:17:24.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.336500", - "Timestamp": "2019-10-15T18:10:12.000Z" + "SpotPrice": "0.070600", + "Timestamp": "2024-05-16T09:17:24.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1e", + "InstanceType": "m3.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094600", - "Timestamp": "2019-10-15T18:10:08.000Z" + "SpotPrice": "0.126200", + "Timestamp": "2024-05-16T09:17:24.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1e", + "InstanceType": "m3.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134600", - "Timestamp": "2019-10-15T18:10:08.000Z" + "SpotPrice": "0.166200", + "Timestamp": "2024-05-16T09:17:24.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1e", + "InstanceType": "m3.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034600", - "Timestamp": "2019-10-15T18:10:08.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.590200", - "Timestamp": "2019-10-15T17:51:22.000Z" + "SpotPrice": "0.066200", + "Timestamp": "2024-05-16T09:17:24.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.590200", - "Timestamp": "2019-10-15T17:51:22.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.431400", + "Timestamp": "2024-05-16T09:17:24.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g3.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.560200", - "Timestamp": "2019-10-15T17:51:22.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.024600", + "Timestamp": "2024-05-16T09:17:24.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g3.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.560200", - "Timestamp": "2019-10-15T17:51:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.068700", + "Timestamp": "2024-05-16T09:17:24.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.460200", - "Timestamp": "2019-10-15T17:51:22.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.495400", + "Timestamp": "2024-05-16T09:17:23.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.460200", - "Timestamp": "2019-10-15T17:51:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.233400", + "Timestamp": "2024-05-16T09:17:23.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.196200", - "Timestamp": "2019-10-15T17:50:36.000Z" + "SpotPrice": "9.335100", + "Timestamp": "2024-05-16T09:17:23.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "p2.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.196200", - "Timestamp": "2019-10-15T17:50:36.000Z" + "SpotPrice": "4.228600", + "Timestamp": "2024-05-16T09:17:22.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.244900", - "Timestamp": "2019-10-15T17:50:13.000Z" + "SpotPrice": "0.261800", + "Timestamp": "2024-05-16T09:17:21.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.244900", - "Timestamp": "2019-10-15T17:50:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.231800", + "Timestamp": "2024-05-16T09:17:21.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.214900", - "Timestamp": "2019-10-15T17:50:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131800", + "Timestamp": "2024-05-16T09:17:21.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.214900", - "Timestamp": "2019-10-15T17:50:13.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.843900", + "Timestamp": "2024-05-16T09:17:21.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.114900", - "Timestamp": "2019-10-15T17:50:13.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.838900", + "Timestamp": "2024-05-16T09:17:21.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.114900", - "Timestamp": "2019-10-15T17:50:13.000Z" + "SpotPrice": "3.713900", + "Timestamp": "2024-05-16T09:17:21.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.058900", - "Timestamp": "2019-10-15T17:50:13.000Z" + "SpotPrice": "6.737000", + "Timestamp": "2024-05-16T09:17:21.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.058900", - "Timestamp": "2019-10-15T17:50:13.000Z" + "SpotPrice": "6.711100", + "Timestamp": "2024-05-16T09:17:21.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.metal-48xl", "ProductDescription": "Windows", - "SpotPrice": "0.982200", - "Timestamp": "2019-10-15T17:50:13.000Z" + "SpotPrice": "12.253100", + "Timestamp": "2024-05-16T09:17:21.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.982200", - "Timestamp": "2019-10-15T17:50:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152000", + "Timestamp": "2024-05-16T09:17:20.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.248600", - "Timestamp": "2019-10-15T17:49:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148000", + "Timestamp": "2024-05-16T09:17:20.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.248600", - "Timestamp": "2019-10-15T17:49:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092000", + "Timestamp": "2024-05-16T09:17:20.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094000", - "Timestamp": "2019-10-15T17:46:12.000Z" + "SpotPrice": "1.544200", + "Timestamp": "2024-05-16T09:17:20.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134000", - "Timestamp": "2019-10-15T17:46:12.000Z" + "SpotPrice": "1.514200", + "Timestamp": "2024-05-16T09:17:20.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034000", - "Timestamp": "2019-10-15T17:46:12.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.124200", - "Timestamp": "2019-10-15T17:44:59.000Z" + "SpotPrice": "1.414200", + "Timestamp": "2024-05-16T09:17:20.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iezn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.121400", - "Timestamp": "2019-10-15T17:44:59.000Z" + "SpotPrice": "4.424900", + "Timestamp": "2024-05-16T09:17:18.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iezn.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.164200", - "Timestamp": "2019-10-15T17:44:59.000Z" + "SpotPrice": "4.419900", + "Timestamp": "2024-05-16T09:17:18.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.161400", - "Timestamp": "2019-10-15T17:44:59.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.294900", + "Timestamp": "2024-05-16T09:17:18.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.064200", - "Timestamp": "2019-10-15T17:44:59.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.337900", + "Timestamp": "2024-05-16T09:17:17.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.061400", - "Timestamp": "2019-10-15T17:44:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "trn1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.705500", + "Timestamp": "2024-05-16T09:17:17.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.122800", - "Timestamp": "2019-10-15T17:44:44.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "trn1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.675500", + "Timestamp": "2024-05-16T09:17:17.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.122800", - "Timestamp": "2019-10-15T17:44:44.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "trn1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.575500", + "Timestamp": "2024-05-16T09:17:17.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090800", - "Timestamp": "2019-10-15T17:44:44.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.285500", + "Timestamp": "2024-05-16T09:17:16.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g3.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091300", - "Timestamp": "2019-10-15T17:44:44.000Z" + "SpotPrice": "2.280400", + "Timestamp": "2024-05-16T09:17:16.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g3.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T17:44:44.000Z" + "SpotPrice": "2.250400", + "Timestamp": "2024-05-16T09:17:16.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.131300", - "Timestamp": "2019-10-15T17:44:44.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.150400", + "Timestamp": "2024-05-16T09:17:16.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030800", - "Timestamp": "2019-10-15T17:44:44.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.561100", + "Timestamp": "2024-05-16T09:17:16.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031300", - "Timestamp": "2019-10-15T17:44:44.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.556100", + "Timestamp": "2024-05-16T09:17:16.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.265400", - "Timestamp": "2019-10-15T17:44:44.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.431100", + "Timestamp": "2024-05-16T09:17:16.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.265400", - "Timestamp": "2019-10-15T17:44:44.000Z" + "SpotPrice": "3.816200", + "Timestamp": "2024-05-16T09:17:15.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.235400", - "Timestamp": "2019-10-15T17:44:44.000Z" + "SpotPrice": "3.811200", + "Timestamp": "2024-05-16T09:17:15.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.235400", - "Timestamp": "2019-10-15T17:44:44.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.686200", + "Timestamp": "2024-05-16T09:17:15.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.135400", - "Timestamp": "2019-10-15T17:44:44.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.284700", + "Timestamp": "2024-05-16T09:17:15.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.135400", - "Timestamp": "2019-10-15T17:44:44.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281700", + "Timestamp": "2024-05-16T09:17:15.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.503400", - "Timestamp": "2019-10-15T17:44:44.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224700", + "Timestamp": "2024-05-16T09:17:15.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.503400", - "Timestamp": "2019-10-15T17:44:44.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.770000", + "Timestamp": "2024-05-16T09:17:15.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.982300", - "Timestamp": "2019-10-15T17:44:14.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.765000", + "Timestamp": "2024-05-16T09:17:15.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.982200", - "Timestamp": "2019-10-15T17:44:14.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.640000", + "Timestamp": "2024-05-16T09:17:15.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.134500", - "Timestamp": "2019-10-15T17:41:42.000Z" + "SpotPrice": "0.296800", + "Timestamp": "2024-05-16T09:17:15.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.174500", - "Timestamp": "2019-10-15T17:41:42.000Z" + "SpotPrice": "0.266800", + "Timestamp": "2024-05-16T09:17:15.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.074500", - "Timestamp": "2019-10-15T17:41:42.000Z" + "SpotPrice": "0.166800", + "Timestamp": "2024-05-16T09:17:15.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "i3.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.419800", - "Timestamp": "2019-10-15T17:21:04.000Z" + "SpotPrice": "1.281100", + "Timestamp": "2024-05-16T09:17:15.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.419800", - "Timestamp": "2019-10-15T17:21:04.000Z" + "SpotPrice": "1.217500", + "Timestamp": "2024-05-16T09:17:15.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.237800", - "Timestamp": "2019-10-15T17:21:04.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.295900", + "Timestamp": "2024-05-16T09:17:14.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.237800", - "Timestamp": "2019-10-15T17:21:04.000Z" + "SpotPrice": "0.111300", + "Timestamp": "2024-05-16T09:17:14.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.207800", - "Timestamp": "2019-10-15T17:21:04.000Z" + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T09:17:14.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.207800", - "Timestamp": "2019-10-15T17:21:04.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051300", + "Timestamp": "2024-05-16T09:17:14.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.107800", - "Timestamp": "2019-10-15T17:21:04.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115400", + "Timestamp": "2024-05-16T09:17:14.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155400", + "Timestamp": "2024-05-16T09:17:14.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c4.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.107800", - "Timestamp": "2019-10-15T17:21:04.000Z" + "SpotPrice": "0.055400", + "Timestamp": "2024-05-16T09:17:14.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.027200", - "Timestamp": "2019-10-15T17:21:00.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.712000", + "Timestamp": "2024-05-16T09:17:14.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.027200", - "Timestamp": "2019-10-15T17:21:00.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.707000", + "Timestamp": "2024-05-16T09:17:14.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.213200", - "Timestamp": "2019-10-15T17:21:00.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.582000", + "Timestamp": "2024-05-16T09:17:14.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.213200", - "Timestamp": "2019-10-15T17:21:00.000Z" + "SpotPrice": "0.104500", + "Timestamp": "2024-05-16T09:17:14.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6gd.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.183200", - "Timestamp": "2019-10-15T17:21:00.000Z" + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T09:17:14.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044500", + "Timestamp": "2024-05-16T09:17:14.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.909100", + "Timestamp": "2024-05-16T09:17:13.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.183200", - "Timestamp": "2019-10-15T17:21:00.000Z" + "SpotPrice": "0.904100", + "Timestamp": "2024-05-16T09:17:13.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.083200", - "Timestamp": "2019-10-15T17:21:00.000Z" + "SpotPrice": "0.779100", + "Timestamp": "2024-05-16T09:17:13.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.083200", - "Timestamp": "2019-10-15T17:21:00.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "h1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.447700", + "Timestamp": "2024-05-16T09:17:13.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.989000", - "Timestamp": "2019-10-15T17:20:47.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "h1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.417700", + "Timestamp": "2024-05-16T09:17:13.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.989000", - "Timestamp": "2019-10-15T17:20:47.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "h1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.317700", + "Timestamp": "2024-05-16T09:17:13.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "z1d.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.647000", - "Timestamp": "2019-10-15T17:20:46.000Z" + "SpotPrice": "2.618900", + "Timestamp": "2024-05-16T09:17:13.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.647000", - "Timestamp": "2019-10-15T17:20:46.000Z" + "SpotPrice": "1.920600", + "Timestamp": "2024-05-16T09:17:13.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "z1d.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.617000", - "Timestamp": "2019-10-15T17:20:46.000Z" + "SpotPrice": "2.613900", + "Timestamp": "2024-05-16T09:17:13.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.617000", - "Timestamp": "2019-10-15T17:20:46.000Z" + "SpotPrice": "1.915600", + "Timestamp": "2024-05-16T09:17:13.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "z1d.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.517000", - "Timestamp": "2019-10-15T17:20:46.000Z" + "SpotPrice": "2.488900", + "Timestamp": "2024-05-16T09:17:13.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.517000", - "Timestamp": "2019-10-15T17:20:46.000Z" + "SpotPrice": "1.790600", + "Timestamp": "2024-05-16T09:17:13.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.086800", - "Timestamp": "2019-10-15T17:20:46.000Z" + "SpotPrice": "0.146500", + "Timestamp": "2024-05-16T09:17:13.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.086800", - "Timestamp": "2019-10-15T17:20:46.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142800", + "Timestamp": "2024-05-16T09:17:13.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3a.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.126800", - "Timestamp": "2019-10-15T17:20:46.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086500", + "Timestamp": "2024-05-16T09:17:13.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3a.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.126800", - "Timestamp": "2019-10-15T17:20:46.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.149200", + "Timestamp": "2024-05-16T09:17:13.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.026800", - "Timestamp": "2019-10-15T17:20:46.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.144200", + "Timestamp": "2024-05-16T09:17:13.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.metal-24xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.026800", - "Timestamp": "2019-10-15T17:20:46.000Z" + "SpotPrice": "2.019200", + "Timestamp": "2024-05-16T09:17:13.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3a.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3en.6xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.054400", - "Timestamp": "2019-10-15T17:20:46.000Z" + "SpotPrice": "2.332000", + "Timestamp": "2024-05-16T09:17:13.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3a.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.054400", - "Timestamp": "2019-10-15T17:20:46.000Z" + "SpotPrice": "5.155200", + "Timestamp": "2024-05-16T09:17:13.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.388500", - "Timestamp": "2019-10-15T17:20:36.000Z" + "SpotPrice": "1.326300", + "Timestamp": "2024-05-16T09:17:13.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.388500", - "Timestamp": "2019-10-15T17:20:36.000Z" + "SpotPrice": "0.720700", + "Timestamp": "2024-05-16T09:17:13.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.358500", - "Timestamp": "2019-10-15T17:20:36.000Z" + "SpotPrice": "1.321300", + "Timestamp": "2024-05-16T09:17:13.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.358500", - "Timestamp": "2019-10-15T17:20:36.000Z" + "SpotPrice": "0.715700", + "Timestamp": "2024-05-16T09:17:13.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.258500", - "Timestamp": "2019-10-15T17:20:36.000Z" + "SpotPrice": "1.196300", + "Timestamp": "2024-05-16T09:17:13.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.258500", - "Timestamp": "2019-10-15T17:20:36.000Z" + "SpotPrice": "0.590700", + "Timestamp": "2024-05-16T09:17:13.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.994500", - "Timestamp": "2019-10-15T17:20:36.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.896600", + "Timestamp": "2024-05-16T09:17:12.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.994500", - "Timestamp": "2019-10-15T17:20:36.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.891600", + "Timestamp": "2024-05-16T09:17:12.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.766600", + "Timestamp": "2024-05-16T09:17:12.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.958200", - "Timestamp": "2019-10-15T17:16:59.000Z" + "SpotPrice": "0.910800", + "Timestamp": "2024-05-16T09:17:12.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.928200", - "Timestamp": "2019-10-15T17:16:59.000Z" + "SpotPrice": "0.905800", + "Timestamp": "2024-05-16T09:17:12.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.828200", - "Timestamp": "2019-10-15T17:16:59.000Z" + "SpotPrice": "0.780800", + "Timestamp": "2024-05-16T09:17:12.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.598100", - "Timestamp": "2019-10-15T17:16:33.000Z" + "SpotPrice": "0.518200", + "Timestamp": "2024-05-16T09:17:12.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.568100", - "Timestamp": "2019-10-15T17:16:33.000Z" + "SpotPrice": "0.513200", + "Timestamp": "2024-05-16T09:17:12.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.468100", - "Timestamp": "2019-10-15T17:16:33.000Z" + "SpotPrice": "0.388200", + "Timestamp": "2024-05-16T09:17:12.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m3.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t4g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089300", - "Timestamp": "2019-10-15T17:15:28.000Z" + "SpotPrice": "0.092500", + "Timestamp": "2024-05-16T09:17:12.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089300", - "Timestamp": "2019-10-15T17:15:28.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088800", + "Timestamp": "2024-05-16T09:17:12.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.129300", - "Timestamp": "2019-10-15T17:15:28.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032500", + "Timestamp": "2024-05-16T09:17:12.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.129300", - "Timestamp": "2019-10-15T17:15:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.253400", + "Timestamp": "2024-05-16T09:17:11.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029300", - "Timestamp": "2019-10-15T17:15:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.248400", + "Timestamp": "2024-05-16T09:17:11.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m3.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029300", - "Timestamp": "2019-10-15T17:15:28.000Z" + "SpotPrice": "0.123400", + "Timestamp": "2024-05-16T09:17:11.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.680900", - "Timestamp": "2019-10-15T17:14:33.000Z" + "SpotPrice": "2.587800", + "Timestamp": "2024-05-16T09:17:11.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.650900", - "Timestamp": "2019-10-15T17:14:33.000Z" + "SpotPrice": "2.582800", + "Timestamp": "2024-05-16T09:17:11.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.550900", - "Timestamp": "2019-10-15T17:14:33.000Z" + "SpotPrice": "2.457800", + "Timestamp": "2024-05-16T09:17:11.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c4.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090700", - "Timestamp": "2019-10-15T17:14:25.000Z" + "SpotPrice": "0.546300", + "Timestamp": "2024-05-16T09:17:11.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090700", - "Timestamp": "2019-10-15T17:14:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.516300", + "Timestamp": "2024-05-16T09:17:11.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.130700", - "Timestamp": "2019-10-15T17:14:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.416300", + "Timestamp": "2024-05-16T09:17:11.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.130700", - "Timestamp": "2019-10-15T17:14:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.377400", + "Timestamp": "2024-05-16T09:17:11.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030700", - "Timestamp": "2019-10-15T17:14:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.372400", + "Timestamp": "2024-05-16T09:17:11.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030700", - "Timestamp": "2019-10-15T17:14:25.000Z" + "SpotPrice": "2.247400", + "Timestamp": "2024-05-16T09:17:11.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127700", - "Timestamp": "2019-10-15T17:13:47.000Z" + "SpotPrice": "1.331000", + "Timestamp": "2024-05-16T09:17:11.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127700", - "Timestamp": "2019-10-15T17:13:47.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.326000", + "Timestamp": "2024-05-16T09:17:11.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.167700", - "Timestamp": "2019-10-15T17:13:47.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.201000", + "Timestamp": "2024-05-16T09:17:11.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.932100", + "Timestamp": "2024-05-16T09:17:10.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4ad.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.167700", - "Timestamp": "2019-10-15T17:13:47.000Z" + "SpotPrice": "0.927100", + "Timestamp": "2024-05-16T09:17:10.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4ad.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067700", - "Timestamp": "2019-10-15T17:13:47.000Z" + "SpotPrice": "0.802100", + "Timestamp": "2024-05-16T09:17:10.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067700", - "Timestamp": "2019-10-15T17:13:47.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.769400", + "Timestamp": "2024-05-16T09:17:10.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.210000", - "Timestamp": "2019-10-15T17:13:45.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.548700", + "Timestamp": "2024-05-16T09:17:09.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.210000", - "Timestamp": "2019-10-15T17:13:45.000Z" + "SpotPrice": "0.252600", + "Timestamp": "2024-05-16T09:17:08.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.250000", - "Timestamp": "2019-10-15T17:13:45.000Z" + "SpotPrice": "0.248900", + "Timestamp": "2024-05-16T09:17:08.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.250000", - "Timestamp": "2019-10-15T17:13:45.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.192600", + "Timestamp": "2024-05-16T09:17:08.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.150000", - "Timestamp": "2019-10-15T17:13:45.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.119000", + "Timestamp": "2024-05-16T09:17:08.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.114000", + "Timestamp": "2024-05-16T09:17:08.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.150000", - "Timestamp": "2019-10-15T17:13:45.000Z" + "SpotPrice": "0.989000", + "Timestamp": "2024-05-16T09:17:08.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.334000", - "Timestamp": "2019-10-15T17:13:39.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.809800", + "Timestamp": "2024-05-16T09:17:08.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.334000", - "Timestamp": "2019-10-15T17:13:39.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.804800", + "Timestamp": "2024-05-16T09:17:08.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.251700", - "Timestamp": "2019-10-15T17:13:36.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.679800", + "Timestamp": "2024-05-16T09:17:08.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.251700", - "Timestamp": "2019-10-15T17:13:36.000Z" + "SpotPrice": "3.332100", + "Timestamp": "2024-05-16T09:17:07.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.485200", - "Timestamp": "2019-10-15T17:10:07.000Z" + "SpotPrice": "3.343000", + "Timestamp": "2024-05-16T09:17:07.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1e.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.485200", - "Timestamp": "2019-10-15T17:10:07.000Z" + "SpotPrice": "4.013400", + "Timestamp": "2024-05-16T09:17:07.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092300", - "Timestamp": "2019-10-15T17:09:16.000Z" + "SpotPrice": "0.391700", + "Timestamp": "2024-05-16T09:17:06.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092300", - "Timestamp": "2019-10-15T17:09:16.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.386700", + "Timestamp": "2024-05-16T09:17:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132300", - "Timestamp": "2019-10-15T17:09:16.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.261700", + "Timestamp": "2024-05-16T09:17:06.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132300", - "Timestamp": "2019-10-15T17:09:16.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164200", + "Timestamp": "2024-05-16T09:17:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032300", - "Timestamp": "2019-10-15T17:09:16.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160500", + "Timestamp": "2024-05-16T09:17:06.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i-flex.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032300", - "Timestamp": "2019-10-15T17:09:16.000Z" + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T09:17:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g4dn.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4ad.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.169500", - "Timestamp": "2019-10-15T17:09:07.000Z" + "SpotPrice": "0.333000", + "Timestamp": "2024-05-16T09:17:05.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.169500", - "Timestamp": "2019-10-15T17:09:07.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.372400", + "Timestamp": "2024-05-16T09:17:05.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090800", - "Timestamp": "2019-10-15T17:08:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.342400", + "Timestamp": "2024-05-16T09:17:05.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090800", - "Timestamp": "2019-10-15T17:08:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242400", + "Timestamp": "2024-05-16T09:17:05.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5d.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T17:08:43.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.894700", + "Timestamp": "2024-05-16T09:17:05.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5d.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T17:08:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.345400", + "Timestamp": "2024-05-16T09:17:04.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030800", - "Timestamp": "2019-10-15T17:08:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.340400", + "Timestamp": "2024-05-16T09:17:04.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030800", - "Timestamp": "2019-10-15T17:08:43.000Z" + "SpotPrice": "3.215400", + "Timestamp": "2024-05-16T09:17:04.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.376200", - "Timestamp": "2019-10-15T17:08:38.000Z" + "SpotPrice": "0.096400", + "Timestamp": "2024-05-16T09:17:04.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.376200", - "Timestamp": "2019-10-15T17:08:38.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092400", + "Timestamp": "2024-05-16T09:17:04.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.346200", - "Timestamp": "2019-10-15T17:08:38.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036400", + "Timestamp": "2024-05-16T09:17:04.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128600", + "Timestamp": "2024-05-16T09:17:03.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7g.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.346200", - "Timestamp": "2019-10-15T17:08:38.000Z" + "SpotPrice": "0.124900", + "Timestamp": "2024-05-16T09:17:03.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.246200", - "Timestamp": "2019-10-15T17:08:38.000Z" + "SpotPrice": "0.068600", + "Timestamp": "2024-05-16T09:17:03.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133000", + "Timestamp": "2024-05-16T09:17:03.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129000", + "Timestamp": "2024-05-16T09:17:03.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.246200", - "Timestamp": "2019-10-15T17:08:38.000Z" + "SpotPrice": "0.073000", + "Timestamp": "2024-05-16T09:17:03.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.284400", - "Timestamp": "2019-10-15T17:08:31.000Z" + "SpotPrice": "0.122700", + "Timestamp": "2024-05-16T09:17:03.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.254400", - "Timestamp": "2019-10-15T17:08:31.000Z" + "SpotPrice": "0.118700", + "Timestamp": "2024-05-16T09:17:03.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.154400", - "Timestamp": "2019-10-15T17:08:31.000Z" + "SpotPrice": "0.062700", + "Timestamp": "2024-05-16T09:17:03.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.124300", - "Timestamp": "2019-10-15T17:08:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099400", + "Timestamp": "2024-05-16T09:17:02.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.124300", - "Timestamp": "2019-10-15T17:08:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095700", + "Timestamp": "2024-05-16T09:17:02.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.982200", - "Timestamp": "2019-10-15T17:08:15.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039400", + "Timestamp": "2024-05-16T09:17:02.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.982200", - "Timestamp": "2019-10-15T17:08:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.554400", + "Timestamp": "2024-05-16T09:17:02.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.122800", - "Timestamp": "2019-10-15T17:07:44.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.524400", + "Timestamp": "2024-05-16T09:17:02.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.424400", + "Timestamp": "2024-05-16T09:17:02.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.122800", - "Timestamp": "2019-10-15T17:07:44.000Z" + "SpotPrice": "4.553100", + "Timestamp": "2024-05-16T09:17:02.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g4dn.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.563500", - "Timestamp": "2019-10-15T17:07:39.000Z" + "SpotPrice": "0.124900", + "Timestamp": "2024-05-16T09:17:02.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g4dn.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.563500", - "Timestamp": "2019-10-15T17:07:39.000Z" + "SpotPrice": "0.153700", + "Timestamp": "2024-05-16T09:17:02.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g4dn.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.533500", - "Timestamp": "2019-10-15T17:07:39.000Z" + "SpotPrice": "0.120900", + "Timestamp": "2024-05-16T09:17:02.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g4dn.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.533500", - "Timestamp": "2019-10-15T17:07:39.000Z" + "SpotPrice": "0.149700", + "Timestamp": "2024-05-16T09:17:02.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g4dn.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.433500", - "Timestamp": "2019-10-15T17:07:39.000Z" + "SpotPrice": "0.064900", + "Timestamp": "2024-05-16T09:17:02.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g4dn.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.433500", - "Timestamp": "2019-10-15T17:07:39.000Z" + "SpotPrice": "0.093700", + "Timestamp": "2024-05-16T09:17:02.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.576500", - "Timestamp": "2019-10-15T16:51:30.000Z" + "SpotPrice": "1.264100", + "Timestamp": "2024-05-16T09:17:01.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.013600", - "Timestamp": "2019-10-15T16:50:31.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.498400", + "Timestamp": "2024-05-16T09:17:01.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.013600", - "Timestamp": "2019-10-15T16:50:31.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.493400", + "Timestamp": "2024-05-16T09:17:01.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.607100", - "Timestamp": "2019-10-15T16:50:05.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.368400", + "Timestamp": "2024-05-16T09:17:01.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.607100", - "Timestamp": "2019-10-15T16:50:05.000Z" + "SpotPrice": "2.205200", + "Timestamp": "2024-05-16T09:17:01.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.577100", - "Timestamp": "2019-10-15T16:50:05.000Z" + "SpotPrice": "2.200200", + "Timestamp": "2024-05-16T09:17:01.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.075200", + "Timestamp": "2024-05-16T09:17:01.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.033700", + "Timestamp": "2024-05-16T09:17:01.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.577100", - "Timestamp": "2019-10-15T16:50:05.000Z" + "SpotPrice": "2.028700", + "Timestamp": "2024-05-16T09:17:01.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.477100", - "Timestamp": "2019-10-15T16:50:05.000Z" + "SpotPrice": "1.903700", + "Timestamp": "2024-05-16T09:17:01.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.477100", - "Timestamp": "2019-10-15T16:50:05.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.327300", + "Timestamp": "2024-05-16T09:17:01.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3.small", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.671600", - "Timestamp": "2019-10-15T16:50:01.000Z" + "SpotPrice": "0.068200", + "Timestamp": "2024-05-16T09:17:00.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3.small", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.671600", - "Timestamp": "2019-10-15T16:50:01.000Z" + "SpotPrice": "0.068800", + "Timestamp": "2024-05-16T09:17:00.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3.small", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.641600", - "Timestamp": "2019-10-15T16:50:01.000Z" + "SpotPrice": "0.039200", + "Timestamp": "2024-05-16T09:17:00.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3.small", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.641600", - "Timestamp": "2019-10-15T16:50:01.000Z" + "SpotPrice": "0.039800", + "Timestamp": "2024-05-16T09:17:00.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3.small", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.541600", - "Timestamp": "2019-10-15T16:50:01.000Z" + "SpotPrice": "0.008200", + "Timestamp": "2024-05-16T09:17:00.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3.small", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.541600", - "Timestamp": "2019-10-15T16:50:01.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.209900", - "Timestamp": "2019-10-15T16:49:56.000Z" + "SpotPrice": "0.008800", + "Timestamp": "2024-05-16T09:17:00.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.209900", - "Timestamp": "2019-10-15T16:49:56.000Z" + "SpotPrice": "2.120800", + "Timestamp": "2024-05-16T09:17:00.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.683900", - "Timestamp": "2019-10-15T16:49:50.000Z" + "SpotPrice": "2.618700", + "Timestamp": "2024-05-16T09:17:00.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.653900", - "Timestamp": "2019-10-15T16:49:50.000Z" + "SpotPrice": "2.613700", + "Timestamp": "2024-05-16T09:17:00.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.553900", - "Timestamp": "2019-10-15T16:49:50.000Z" + "SpotPrice": "2.488700", + "Timestamp": "2024-05-16T09:17:00.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.893100", - "Timestamp": "2019-10-15T16:49:34.000Z" + "SpotPrice": "3.365000", + "Timestamp": "2024-05-16T09:16:59.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.893100", - "Timestamp": "2019-10-15T16:49:34.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164800", + "Timestamp": "2024-05-16T09:16:55.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.942400", - "Timestamp": "2019-10-15T16:49:30.000Z" - }, - { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.942400", - "Timestamp": "2019-10-15T16:49:30.000Z" + "SpotPrice": "0.178200", + "Timestamp": "2024-05-16T09:16:55.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.912400", - "Timestamp": "2019-10-15T16:49:30.000Z" + "SpotPrice": "0.160800", + "Timestamp": "2024-05-16T09:16:55.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.912400", - "Timestamp": "2019-10-15T16:49:30.000Z" + "SpotPrice": "0.174200", + "Timestamp": "2024-05-16T09:16:55.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.812400", - "Timestamp": "2019-10-15T16:49:30.000Z" + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T09:16:55.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.812400", - "Timestamp": "2019-10-15T16:49:30.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.020400", - "Timestamp": "2019-10-15T16:49:29.000Z" - }, - { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.020400", - "Timestamp": "2019-10-15T16:49:29.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c1.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.074800", - "Timestamp": "2019-10-15T16:49:16.000Z" + "SpotPrice": "0.118200", + "Timestamp": "2024-05-16T09:16:55.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c1.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.metal-32xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.074800", - "Timestamp": "2019-10-15T16:49:16.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c1.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.114800", - "Timestamp": "2019-10-15T16:49:16.000Z" + "SpotPrice": "5.453600", + "Timestamp": "2024-05-16T09:16:54.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c1.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.metal-32xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.114800", - "Timestamp": "2019-10-15T16:49:16.000Z" + "SpotPrice": "5.448600", + "Timestamp": "2024-05-16T09:16:54.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c1.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.metal-32xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.014800", - "Timestamp": "2019-10-15T16:49:16.000Z" + "SpotPrice": "5.323600", + "Timestamp": "2024-05-16T09:16:54.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c1.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.014800", - "Timestamp": "2019-10-15T16:49:16.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.038000", + "Timestamp": "2024-05-16T09:03:53.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c1.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.094800", - "Timestamp": "2019-10-15T16:49:15.000Z" + "SpotPrice": "2.345500", + "Timestamp": "2024-05-16T09:03:39.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c1.medium", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.094800", - "Timestamp": "2019-10-15T16:49:15.000Z" + "SpotPrice": "4.767800", + "Timestamp": "2024-05-16T09:03:39.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.607100", - "Timestamp": "2019-10-15T16:14:38.000Z" + "SpotPrice": "4.525200", + "Timestamp": "2024-05-16T09:03:38.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.607100", - "Timestamp": "2019-10-15T16:14:38.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.520200", + "Timestamp": "2024-05-16T09:03:38.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.577100", - "Timestamp": "2019-10-15T16:14:38.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.395200", + "Timestamp": "2024-05-16T09:03:38.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.917100", + "Timestamp": "2024-05-16T09:03:29.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.071000", + "Timestamp": "2024-05-16T09:03:29.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.metal-48xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.577100", - "Timestamp": "2019-10-15T16:14:38.000Z" + "SpotPrice": "4.066000", + "Timestamp": "2024-05-16T09:03:29.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.477100", - "Timestamp": "2019-10-15T16:14:38.000Z" + "SpotPrice": "3.941000", + "Timestamp": "2024-05-16T09:03:29.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.477100", - "Timestamp": "2019-10-15T16:14:38.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.937800", + "Timestamp": "2024-05-16T09:03:28.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.893100", - "Timestamp": "2019-10-15T16:14:31.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.932800", + "Timestamp": "2024-05-16T09:03:28.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.893100", - "Timestamp": "2019-10-15T16:14:31.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.807800", + "Timestamp": "2024-05-16T09:03:28.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.011900", - "Timestamp": "2019-10-15T15:50:37.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.198300", + "Timestamp": "2024-05-16T09:03:28.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.011900", - "Timestamp": "2019-10-15T15:50:37.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.238300", + "Timestamp": "2024-05-16T09:03:28.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m1.small", - "ProductDescription": "Windows", - "SpotPrice": "0.035700", - "Timestamp": "2019-10-15T15:49:45.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.138300", + "Timestamp": "2024-05-16T09:03:28.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m1.small", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.035700", - "Timestamp": "2019-10-15T15:49:45.000Z" + "SpotPrice": "4.050600", + "Timestamp": "2024-05-16T09:03:27.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m1.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.064700", - "Timestamp": "2019-10-15T15:49:44.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.090100", + "Timestamp": "2024-05-16T09:03:24.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m1.small", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.064700", - "Timestamp": "2019-10-15T15:49:44.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m1.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.034700", - "Timestamp": "2019-10-15T15:49:44.000Z" + "SpotPrice": "0.382100", + "Timestamp": "2024-05-16T09:03:24.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m1.small", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.034700", - "Timestamp": "2019-10-15T15:49:44.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m1.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.004700", - "Timestamp": "2019-10-15T15:49:44.000Z" + "SpotPrice": "0.377100", + "Timestamp": "2024-05-16T09:03:24.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m1.small", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.004700", - "Timestamp": "2019-10-15T15:49:44.000Z" + "SpotPrice": "0.252100", + "Timestamp": "2024-05-16T09:03:24.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.598900", - "Timestamp": "2019-10-15T15:49:26.000Z" + "SpotPrice": "5.726700", + "Timestamp": "2024-05-16T09:03:22.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.568900", - "Timestamp": "2019-10-15T15:49:26.000Z" + "SpotPrice": "5.696700", + "Timestamp": "2024-05-16T09:03:22.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.468900", - "Timestamp": "2019-10-15T15:49:26.000Z" + "SpotPrice": "5.596700", + "Timestamp": "2024-05-16T09:03:22.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.380600", - "Timestamp": "2019-10-15T15:49:15.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.603600", + "Timestamp": "2024-05-16T09:03:22.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.380600", - "Timestamp": "2019-10-15T15:49:15.000Z" + "SpotPrice": "2.284400", + "Timestamp": "2024-05-16T09:03:21.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.350600", - "Timestamp": "2019-10-15T15:49:15.000Z" + "SpotPrice": "2.279400", + "Timestamp": "2024-05-16T09:03:21.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.350600", - "Timestamp": "2019-10-15T15:49:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.154400", + "Timestamp": "2024-05-16T09:03:21.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.250600", - "Timestamp": "2019-10-15T15:49:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.854600", + "Timestamp": "2024-05-16T09:03:21.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.250600", - "Timestamp": "2019-10-15T15:49:15.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.112300", + "Timestamp": "2024-05-16T09:03:21.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.212600", - "Timestamp": "2019-10-15T15:49:15.000Z" + "SpotPrice": "6.031600", + "Timestamp": "2024-05-16T09:03:20.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.212600", - "Timestamp": "2019-10-15T15:49:15.000Z" + "SpotPrice": "4.527700", + "Timestamp": "2024-05-16T09:03:20.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.987800", - "Timestamp": "2019-10-15T15:49:15.000Z" + "SpotPrice": "7.220100", + "Timestamp": "2024-05-16T09:03:20.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.987800", - "Timestamp": "2019-10-15T15:49:15.000Z" + "SpotPrice": "1.097900", + "Timestamp": "2024-05-16T09:03:19.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.078500", + "Timestamp": "2024-05-16T09:03:19.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.247200", - "Timestamp": "2019-10-15T15:39:55.000Z" + "SpotPrice": "7.869700", + "Timestamp": "2024-05-16T09:03:19.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.217200", - "Timestamp": "2019-10-15T15:39:55.000Z" + "SpotPrice": "7.864700", + "Timestamp": "2024-05-16T09:03:19.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.117200", - "Timestamp": "2019-10-15T15:39:55.000Z" + "SpotPrice": "7.739700", + "Timestamp": "2024-05-16T09:03:19.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.574400", - "Timestamp": "2019-10-15T14:50:20.000Z" + "SpotPrice": "3.250100", + "Timestamp": "2024-05-16T09:03:18.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.574400", - "Timestamp": "2019-10-15T14:50:20.000Z" + "SpotPrice": "1.030800", + "Timestamp": "2024-05-16T09:03:18.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t2.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093100", - "Timestamp": "2019-10-15T14:50:16.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.056300", + "Timestamp": "2024-05-16T09:03:18.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093100", - "Timestamp": "2019-10-15T14:50:16.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t2.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133100", - "Timestamp": "2019-10-15T14:50:16.000Z" + "SpotPrice": "0.452200", + "Timestamp": "2024-05-16T09:03:17.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133100", - "Timestamp": "2019-10-15T14:50:16.000Z" + "SpotPrice": "0.447200", + "Timestamp": "2024-05-16T09:03:17.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033100", - "Timestamp": "2019-10-15T14:50:16.000Z" + "SpotPrice": "0.322200", + "Timestamp": "2024-05-16T09:03:17.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t2.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033100", - "Timestamp": "2019-10-15T14:50:16.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.526100", + "Timestamp": "2024-05-16T09:03:17.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t2.large", - "ProductDescription": "Windows", - "SpotPrice": "0.061100", - "Timestamp": "2019-10-15T14:49:52.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.496100", + "Timestamp": "2024-05-16T09:03:17.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t2.large", - "ProductDescription": "Windows", - "SpotPrice": "0.061100", - "Timestamp": "2019-10-15T14:49:52.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.396100", + "Timestamp": "2024-05-16T09:03:17.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "h1.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.983500", - "Timestamp": "2019-10-15T14:49:50.000Z" + "SpotPrice": "2.338800", + "Timestamp": "2024-05-16T09:03:16.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r3.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.983500", - "Timestamp": "2019-10-15T14:49:43.000Z" + "SpotPrice": "1.874900", + "Timestamp": "2024-05-16T09:03:15.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.983500", - "Timestamp": "2019-10-15T14:49:43.000Z" + "SpotPrice": "3.084400", + "Timestamp": "2024-05-16T09:03:14.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.905500", - "Timestamp": "2019-10-15T14:49:35.000Z" + "SpotPrice": "5.436200", + "Timestamp": "2024-05-16T09:03:12.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.875500", - "Timestamp": "2019-10-15T14:49:35.000Z" + "SpotPrice": "5.431200", + "Timestamp": "2024-05-16T09:03:12.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.775500", - "Timestamp": "2019-10-15T14:49:35.000Z" + "SpotPrice": "5.306200", + "Timestamp": "2024-05-16T09:03:12.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.124200", - "Timestamp": "2019-10-15T14:13:36.000Z" - }, - { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.124200", - "Timestamp": "2019-10-15T14:13:36.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.213200", - "Timestamp": "2019-10-15T14:13:29.000Z" + "SpotPrice": "3.083100", + "Timestamp": "2024-05-16T09:03:11.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "p2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.213200", - "Timestamp": "2019-10-15T14:13:29.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.183200", - "Timestamp": "2019-10-15T14:13:29.000Z" + "SpotPrice": "0.489400", + "Timestamp": "2024-05-16T09:03:10.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "p2.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.183200", - "Timestamp": "2019-10-15T14:13:29.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.083200", - "Timestamp": "2019-10-15T14:13:29.000Z" + "SpotPrice": "0.529400", + "Timestamp": "2024-05-16T09:03:10.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "p2.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.083200", - "Timestamp": "2019-10-15T14:13:29.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.499200", - "Timestamp": "2019-10-15T14:13:18.000Z" + "SpotPrice": "0.429400", + "Timestamp": "2024-05-16T09:03:10.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.499200", - "Timestamp": "2019-10-15T14:13:18.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092200", - "Timestamp": "2019-10-15T14:12:25.000Z" + "SpotPrice": "0.625600", + "Timestamp": "2024-05-16T09:03:10.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092200", - "Timestamp": "2019-10-15T14:12:25.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r4.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132200", - "Timestamp": "2019-10-15T14:12:25.000Z" + "SpotPrice": "4.601200", + "Timestamp": "2024-05-16T09:03:10.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132200", - "Timestamp": "2019-10-15T14:12:25.000Z" + "SpotPrice": "4.596200", + "Timestamp": "2024-05-16T09:03:10.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032200", - "Timestamp": "2019-10-15T14:12:25.000Z" + "SpotPrice": "4.471200", + "Timestamp": "2024-05-16T09:03:10.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032200", - "Timestamp": "2019-10-15T14:12:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.035700", + "Timestamp": "2024-05-16T09:03:09.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.606300", - "Timestamp": "2019-10-15T14:05:05.000Z" + "SpotPrice": "0.241800", + "Timestamp": "2024-05-16T09:03:09.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.576300", - "Timestamp": "2019-10-15T14:05:05.000Z" + "SpotPrice": "0.238100", + "Timestamp": "2024-05-16T09:03:09.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.476300", - "Timestamp": "2019-10-15T14:05:05.000Z" + "SpotPrice": "0.181800", + "Timestamp": "2024-05-16T09:03:09.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4ad.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.256300", - "Timestamp": "2019-10-15T13:56:09.000Z" + "SpotPrice": "0.409400", + "Timestamp": "2024-05-16T09:03:09.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4ad.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.226300", - "Timestamp": "2019-10-15T13:56:09.000Z" + "SpotPrice": "0.404400", + "Timestamp": "2024-05-16T09:03:09.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4ad.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.126300", - "Timestamp": "2019-10-15T13:56:09.000Z" + "SpotPrice": "0.279400", + "Timestamp": "2024-05-16T09:03:09.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.235000", + "Timestamp": "2024-05-16T09:03:09.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.273400", + "Timestamp": "2024-05-16T09:03:09.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.580000", - "Timestamp": "2019-10-15T13:50:34.000Z" + "SpotPrice": "1.408700", + "Timestamp": "2024-05-16T09:03:09.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.580000", - "Timestamp": "2019-10-15T13:50:34.000Z" + "SpotPrice": "1.320000", + "Timestamp": "2024-05-16T09:03:09.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5g.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.550000", - "Timestamp": "2019-10-15T13:50:34.000Z" + "SpotPrice": "1.403700", + "Timestamp": "2024-05-16T09:03:09.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5g.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.550000", - "Timestamp": "2019-10-15T13:50:34.000Z" + "SpotPrice": "1.315000", + "Timestamp": "2024-05-16T09:03:09.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.450000", - "Timestamp": "2019-10-15T13:50:34.000Z" + "SpotPrice": "1.278700", + "Timestamp": "2024-05-16T09:03:09.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.450000", - "Timestamp": "2019-10-15T13:50:34.000Z" + "SpotPrice": "1.190000", + "Timestamp": "2024-05-16T09:03:09.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.006800", - "Timestamp": "2019-10-15T13:50:14.000Z" + "SpotPrice": "0.522700", + "Timestamp": "2024-05-16T09:03:08.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.metal-48xl", "ProductDescription": "Windows", - "SpotPrice": "1.006800", - "Timestamp": "2019-10-15T13:50:14.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.400800", - "Timestamp": "2019-10-15T13:50:04.000Z" + "SpotPrice": "14.589900", + "Timestamp": "2024-05-16T09:03:08.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.400800", - "Timestamp": "2019-10-15T13:50:04.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.370800", - "Timestamp": "2019-10-15T13:50:04.000Z" + "SpotPrice": "0.407600", + "Timestamp": "2024-05-16T09:03:08.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.370800", - "Timestamp": "2019-10-15T13:50:04.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.270800", - "Timestamp": "2019-10-15T13:50:04.000Z" + "SpotPrice": "0.402600", + "Timestamp": "2024-05-16T09:03:08.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.270800", - "Timestamp": "2019-10-15T13:50:04.000Z" + "SpotPrice": "0.277600", + "Timestamp": "2024-05-16T09:03:08.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.metal-16xl", "ProductDescription": "Windows", - "SpotPrice": "1.002000", - "Timestamp": "2019-10-15T13:50:01.000Z" + "SpotPrice": "4.735300", + "Timestamp": "2024-05-16T09:03:07.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.002000", - "Timestamp": "2019-10-15T13:50:01.000Z" + "SpotPrice": "0.255200", + "Timestamp": "2024-05-16T09:03:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.595200", - "Timestamp": "2019-10-15T13:49:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.398200", + "Timestamp": "2024-05-16T09:03:06.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.595200", - "Timestamp": "2019-10-15T13:49:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.393200", + "Timestamp": "2024-05-16T09:03:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.781200", - "Timestamp": "2019-10-15T13:49:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.268200", + "Timestamp": "2024-05-16T09:03:06.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.781200", - "Timestamp": "2019-10-15T13:49:51.000Z" + "SpotPrice": "5.684400", + "Timestamp": "2024-05-16T09:03:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.751200", - "Timestamp": "2019-10-15T13:49:51.000Z" + "SpotPrice": "5.679400", + "Timestamp": "2024-05-16T09:03:06.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.751200", - "Timestamp": "2019-10-15T13:49:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.554400", + "Timestamp": "2024-05-16T09:03:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.651200", - "Timestamp": "2019-10-15T13:49:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.616300", + "Timestamp": "2024-05-16T09:03:06.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.651200", - "Timestamp": "2019-10-15T13:49:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.586300", + "Timestamp": "2024-05-16T09:03:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3a.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-15T13:49:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.486300", + "Timestamp": "2024-05-16T09:03:06.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-15T13:49:19.000Z" + "SpotPrice": "1.662000", + "Timestamp": "2024-05-16T09:03:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.106700", - "Timestamp": "2019-10-15T13:49:19.000Z" + "SpotPrice": "1.657000", + "Timestamp": "2024-05-16T09:03:06.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3a.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.106700", - "Timestamp": "2019-10-15T13:49:19.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.532000", + "Timestamp": "2024-05-16T09:03:06.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3a.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006700", - "Timestamp": "2019-10-15T13:49:19.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T09:03:05.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3a.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006700", - "Timestamp": "2019-10-15T13:49:19.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103600", + "Timestamp": "2024-05-16T09:03:05.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.531000", - "Timestamp": "2019-10-15T13:49:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047300", + "Timestamp": "2024-05-16T09:03:05.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.531000", - "Timestamp": "2019-10-15T13:49:15.000Z" + "SpotPrice": "0.276000", + "Timestamp": "2024-05-16T09:03:05.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.005000", - "Timestamp": "2019-10-15T13:49:15.000Z" + "SpotPrice": "1.801000", + "Timestamp": "2024-05-16T09:03:04.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.005000", - "Timestamp": "2019-10-15T13:49:15.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.796000", + "Timestamp": "2024-05-16T09:03:04.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.975000", - "Timestamp": "2019-10-15T13:49:15.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.671000", + "Timestamp": "2024-05-16T09:03:04.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.462000", + "Timestamp": "2024-05-16T09:03:04.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1e.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.975000", - "Timestamp": "2019-10-15T13:49:15.000Z" + "SpotPrice": "1.432000", + "Timestamp": "2024-05-16T09:03:04.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1e.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.875000", - "Timestamp": "2019-10-15T13:49:15.000Z" + "SpotPrice": "1.332000", + "Timestamp": "2024-05-16T09:03:04.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.875000", - "Timestamp": "2019-10-15T13:49:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.332600", + "Timestamp": "2024-05-16T09:03:04.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3a.small", - "ProductDescription": "Windows", - "SpotPrice": "0.025100", - "Timestamp": "2019-10-15T13:48:38.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372600", + "Timestamp": "2024-05-16T09:03:04.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3a.small", - "ProductDescription": "Windows", - "SpotPrice": "0.025100", - "Timestamp": "2019-10-15T13:48:38.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.272600", + "Timestamp": "2024-05-16T09:03:04.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.164000", - "Timestamp": "2019-10-15T13:48:30.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.488700", + "Timestamp": "2024-05-16T09:03:03.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.164000", - "Timestamp": "2019-10-15T13:48:30.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.090300", + "Timestamp": "2024-05-16T09:03:03.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.134000", - "Timestamp": "2019-10-15T13:48:30.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.897100", + "Timestamp": "2024-05-16T09:03:03.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.134000", - "Timestamp": "2019-10-15T13:48:30.000Z" + "SpotPrice": "2.892100", + "Timestamp": "2024-05-16T09:03:03.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.034000", - "Timestamp": "2019-10-15T13:48:30.000Z" + "SpotPrice": "2.767100", + "Timestamp": "2024-05-16T09:03:03.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.034000", - "Timestamp": "2019-10-15T13:48:30.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.227500", + "Timestamp": "2024-05-16T09:03:03.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.978000", - "Timestamp": "2019-10-15T13:48:30.000Z" + "SpotPrice": "0.515400", + "Timestamp": "2024-05-16T09:03:03.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.978000", - "Timestamp": "2019-10-15T13:48:30.000Z" + "SpotPrice": "0.316300", + "Timestamp": "2024-05-16T09:03:03.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.824900", - "Timestamp": "2019-10-15T12:57:35.000Z" + "SpotPrice": "1.217200", + "Timestamp": "2024-05-16T09:03:02.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.794900", - "Timestamp": "2019-10-15T12:57:35.000Z" + "SpotPrice": "1.212200", + "Timestamp": "2024-05-16T09:03:02.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.694900", - "Timestamp": "2019-10-15T12:57:35.000Z" + "SpotPrice": "1.087200", + "Timestamp": "2024-05-16T09:03:02.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.050400", - "Timestamp": "2019-10-15T12:49:52.000Z" + "SpotPrice": "2.055400", + "Timestamp": "2024-05-16T09:03:02.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.050400", + "Timestamp": "2024-05-16T09:03:02.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.925400", + "Timestamp": "2024-05-16T09:03:02.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.402100", + "Timestamp": "2024-05-16T09:03:02.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.050400", - "Timestamp": "2019-10-15T12:49:52.000Z" + "SpotPrice": "0.459800", + "Timestamp": "2024-05-16T09:03:01.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.020400", - "Timestamp": "2019-10-15T12:49:52.000Z" + "SpotPrice": "0.454800", + "Timestamp": "2024-05-16T09:03:01.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.329800", + "Timestamp": "2024-05-16T09:03:01.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.214900", + "Timestamp": "2024-05-16T09:03:01.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.020400", - "Timestamp": "2019-10-15T12:49:52.000Z" + "SpotPrice": "0.211200", + "Timestamp": "2024-05-16T09:03:01.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.920400", - "Timestamp": "2019-10-15T12:49:52.000Z" + "SpotPrice": "0.154900", + "Timestamp": "2024-05-16T09:03:01.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.920400", - "Timestamp": "2019-10-15T12:49:52.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.304700", + "Timestamp": "2024-05-16T09:03:00.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.392400", - "Timestamp": "2019-10-15T12:49:51.000Z" + "SpotPrice": "1.244300", + "Timestamp": "2024-05-16T09:03:00.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.392400", - "Timestamp": "2019-10-15T12:49:51.000Z" + "SpotPrice": "3.573000", + "Timestamp": "2024-05-16T09:03:00.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m1.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.079000", - "Timestamp": "2019-10-15T12:49:32.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.577200", + "Timestamp": "2024-05-16T09:03:00.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m1.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t4g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.079000", - "Timestamp": "2019-10-15T12:49:32.000Z" + "SpotPrice": "0.120300", + "Timestamp": "2024-05-16T09:03:00.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m1.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t4g.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.119000", - "Timestamp": "2019-10-15T12:49:32.000Z" + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T09:03:00.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m1.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060300", + "Timestamp": "2024-05-16T09:03:00.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.961900", + "Timestamp": "2024-05-16T09:02:59.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.119000", - "Timestamp": "2019-10-15T12:49:32.000Z" + "SpotPrice": "0.956900", + "Timestamp": "2024-05-16T09:02:59.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m1.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.019000", - "Timestamp": "2019-10-15T12:49:32.000Z" + "SpotPrice": "0.831900", + "Timestamp": "2024-05-16T09:02:59.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m1.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.019000", - "Timestamp": "2019-10-15T12:49:32.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.433700", + "Timestamp": "2024-05-16T09:02:59.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "inf1.6xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093900", - "Timestamp": "2019-10-15T12:49:29.000Z" + "SpotPrice": "0.668600", + "Timestamp": "2024-05-16T09:02:58.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "inf1.6xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133900", - "Timestamp": "2019-10-15T12:49:29.000Z" + "SpotPrice": "0.663600", + "Timestamp": "2024-05-16T09:02:58.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "inf1.6xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033900", - "Timestamp": "2019-10-15T12:49:29.000Z" + "SpotPrice": "0.538600", + "Timestamp": "2024-05-16T09:02:58.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t2.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-15T12:49:29.000Z" + "SpotPrice": "0.217100", + "Timestamp": "2024-05-16T09:02:58.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-15T12:49:29.000Z" + "SpotPrice": "0.561800", + "Timestamp": "2024-05-16T09:02:57.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.164000", - "Timestamp": "2019-10-15T12:49:14.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.170900", + "Timestamp": "2024-05-16T09:02:57.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.164000", - "Timestamp": "2019-10-15T12:49:14.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.134000", - "Timestamp": "2019-10-15T12:49:14.000Z" + "SpotPrice": "2.864100", + "Timestamp": "2024-05-16T09:02:57.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.134000", - "Timestamp": "2019-10-15T12:49:14.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.034000", - "Timestamp": "2019-10-15T12:49:14.000Z" + "SpotPrice": "2.859100", + "Timestamp": "2024-05-16T09:02:57.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.034000", - "Timestamp": "2019-10-15T12:49:14.000Z" + "SpotPrice": "2.734100", + "Timestamp": "2024-05-16T09:02:57.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.978000", - "Timestamp": "2019-10-15T12:49:14.000Z" + "SpotPrice": "0.523900", + "Timestamp": "2024-05-16T09:02:57.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.978000", - "Timestamp": "2019-10-15T12:49:14.000Z" + "SpotPrice": "3.086700", + "Timestamp": "2024-05-16T09:02:57.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "g3s.xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.840000", - "Timestamp": "2019-10-15T12:40:53.000Z" + "SpotPrice": "0.471000", + "Timestamp": "2024-05-16T09:02:57.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.680900", - "Timestamp": "2019-10-15T12:32:26.000Z" + "SpotPrice": "0.592300", + "Timestamp": "2024-05-16T09:02:57.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.650900", - "Timestamp": "2019-10-15T12:32:26.000Z" + "SpotPrice": "0.587300", + "Timestamp": "2024-05-16T09:02:57.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.550900", - "Timestamp": "2019-10-15T12:32:26.000Z" + "SpotPrice": "0.462300", + "Timestamp": "2024-05-16T09:02:57.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.874600", - "Timestamp": "2019-10-15T12:13:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.693900", + "Timestamp": "2024-05-16T09:02:56.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.874600", - "Timestamp": "2019-10-15T12:13:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.688900", + "Timestamp": "2024-05-16T09:02:56.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.563900", + "Timestamp": "2024-05-16T09:02:56.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.259200", - "Timestamp": "2019-10-15T11:51:14.000Z" + "SpotPrice": "0.120900", + "Timestamp": "2024-05-16T09:02:56.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4g.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.229200", - "Timestamp": "2019-10-15T11:51:14.000Z" + "SpotPrice": "0.117200", + "Timestamp": "2024-05-16T09:02:56.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.129200", - "Timestamp": "2019-10-15T11:51:14.000Z" + "SpotPrice": "0.060900", + "Timestamp": "2024-05-16T09:02:56.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.942400", - "Timestamp": "2019-10-15T11:50:23.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.034900", + "Timestamp": "2024-05-16T09:02:56.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.942400", - "Timestamp": "2019-10-15T11:50:23.000Z" + "SpotPrice": "3.847300", + "Timestamp": "2024-05-16T09:02:56.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.912400", - "Timestamp": "2019-10-15T11:50:23.000Z" + "SpotPrice": "3.842300", + "Timestamp": "2024-05-16T09:02:56.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.912400", - "Timestamp": "2019-10-15T11:50:23.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.717300", + "Timestamp": "2024-05-16T09:02:56.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.812400", - "Timestamp": "2019-10-15T11:50:23.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354100", + "Timestamp": "2024-05-16T09:02:55.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324100", + "Timestamp": "2024-05-16T09:02:55.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c3.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.812400", - "Timestamp": "2019-10-15T11:50:23.000Z" + "SpotPrice": "0.224100", + "Timestamp": "2024-05-16T09:02:55.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.metal-48xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.213200", - "Timestamp": "2019-10-15T11:50:12.000Z" + "SpotPrice": "6.058500", + "Timestamp": "2024-05-16T09:02:55.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.213200", - "Timestamp": "2019-10-15T11:50:12.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.183200", - "Timestamp": "2019-10-15T11:50:12.000Z" - }, - { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.metal-48xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.183200", - "Timestamp": "2019-10-15T11:50:12.000Z" + "SpotPrice": "6.053500", + "Timestamp": "2024-05-16T09:02:55.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.083200", - "Timestamp": "2019-10-15T11:50:12.000Z" + "SpotPrice": "5.928500", + "Timestamp": "2024-05-16T09:02:55.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.083200", - "Timestamp": "2019-10-15T11:50:12.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.179900", + "Timestamp": "2024-05-16T09:02:55.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.020400", - "Timestamp": "2019-10-15T11:50:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.219900", + "Timestamp": "2024-05-16T09:02:55.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.020400", - "Timestamp": "2019-10-15T11:50:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119900", + "Timestamp": "2024-05-16T09:02:55.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.497200", - "Timestamp": "2019-10-15T11:50:02.000Z" + "SpotPrice": "8.151100", + "Timestamp": "2024-05-16T09:02:55.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.497200", - "Timestamp": "2019-10-15T11:50:02.000Z" + "SpotPrice": "4.573100", + "Timestamp": "2024-05-16T09:02:54.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.027200", - "Timestamp": "2019-10-15T11:49:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.478400", + "Timestamp": "2024-05-16T09:02:54.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.027200", - "Timestamp": "2019-10-15T11:49:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.473400", + "Timestamp": "2024-05-16T09:02:54.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.124500", - "Timestamp": "2019-10-15T11:49:44.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.348400", + "Timestamp": "2024-05-16T09:02:54.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t4g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.124600", - "Timestamp": "2019-10-15T11:49:44.000Z" + "SpotPrice": "0.254900", + "Timestamp": "2024-05-16T09:02:54.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t4g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.164500", - "Timestamp": "2019-10-15T11:49:44.000Z" + "SpotPrice": "0.249900", + "Timestamp": "2024-05-16T09:02:54.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r4.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.164600", - "Timestamp": "2019-10-15T11:49:44.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124900", + "Timestamp": "2024-05-16T09:02:54.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.064500", - "Timestamp": "2019-10-15T11:49:44.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.397800", + "Timestamp": "2024-05-16T09:02:54.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.064600", - "Timestamp": "2019-10-15T11:49:44.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.959100", + "Timestamp": "2024-05-16T09:02:54.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.248500", - "Timestamp": "2019-10-15T11:49:44.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.954100", + "Timestamp": "2024-05-16T09:02:54.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.248500", - "Timestamp": "2019-10-15T11:49:44.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.829100", + "Timestamp": "2024-05-16T09:02:54.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.771300", - "Timestamp": "2019-10-15T11:49:30.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.730900", + "Timestamp": "2024-05-16T09:02:54.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.771300", - "Timestamp": "2019-10-15T11:49:30.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.725900", + "Timestamp": "2024-05-16T09:02:54.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.353300", - "Timestamp": "2019-10-15T11:49:30.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.600900", + "Timestamp": "2024-05-16T09:02:54.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "p3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.353300", - "Timestamp": "2019-10-15T11:49:30.000Z" + "SpotPrice": "5.326500", + "Timestamp": "2024-05-16T09:02:54.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "p3.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.323300", - "Timestamp": "2019-10-15T11:49:30.000Z" + "SpotPrice": "5.296500", + "Timestamp": "2024-05-16T09:02:54.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c3.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.323300", - "Timestamp": "2019-10-15T11:49:30.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.196500", + "Timestamp": "2024-05-16T09:02:54.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.223300", - "Timestamp": "2019-10-15T11:49:30.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.312300", + "Timestamp": "2024-05-16T09:02:53.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.223300", - "Timestamp": "2019-10-15T11:49:30.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.131600", + "Timestamp": "2024-05-16T09:02:53.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.006800", - "Timestamp": "2019-10-15T11:49:29.000Z" + "SpotPrice": "9.959700", + "Timestamp": "2024-05-16T09:02:53.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.18xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.006800", - "Timestamp": "2019-10-15T11:49:29.000Z" + "SpotPrice": "4.990400", + "Timestamp": "2024-05-16T09:02:53.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.400800", - "Timestamp": "2019-10-15T11:49:29.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.978200", + "Timestamp": "2024-05-16T09:02:52.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.metal-24xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.400800", - "Timestamp": "2019-10-15T11:49:29.000Z" + "SpotPrice": "3.465500", + "Timestamp": "2024-05-16T09:02:52.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.metal-24xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.370800", - "Timestamp": "2019-10-15T11:49:29.000Z" + "SpotPrice": "3.460500", + "Timestamp": "2024-05-16T09:02:52.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.370800", - "Timestamp": "2019-10-15T11:49:29.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.335500", + "Timestamp": "2024-05-16T09:02:52.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.270800", - "Timestamp": "2019-10-15T11:49:29.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278400", + "Timestamp": "2024-05-16T09:02:51.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.270800", - "Timestamp": "2019-10-15T11:49:29.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273400", + "Timestamp": "2024-05-16T09:02:51.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "z1d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.649200", - "Timestamp": "2019-10-15T11:49:15.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148400", + "Timestamp": "2024-05-16T09:02:51.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "z1d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.649200", - "Timestamp": "2019-10-15T11:49:15.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.921700", + "Timestamp": "2024-05-16T09:02:50.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "z1d.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.619200", - "Timestamp": "2019-10-15T11:49:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.901900", + "Timestamp": "2024-05-16T09:02:50.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "z1d.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.619200", - "Timestamp": "2019-10-15T11:49:15.000Z" + "SpotPrice": "1.896900", + "Timestamp": "2024-05-16T09:02:50.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "z1d.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.519200", - "Timestamp": "2019-10-15T11:49:15.000Z" + "SpotPrice": "1.771900", + "Timestamp": "2024-05-16T09:02:50.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "z1d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.519200", - "Timestamp": "2019-10-15T11:49:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.850900", + "Timestamp": "2024-05-16T09:02:50.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "z1d.metal", - "ProductDescription": "Windows", - "SpotPrice": "3.727200", - "Timestamp": "2019-10-15T11:49:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.820900", + "Timestamp": "2024-05-16T09:02:50.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "z1d.metal", - "ProductDescription": "Windows", - "SpotPrice": "3.727200", - "Timestamp": "2019-10-15T11:49:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.720900", + "Timestamp": "2024-05-16T09:02:50.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093100", - "Timestamp": "2019-10-15T11:41:59.000Z" + "SpotPrice": "1.048000", + "Timestamp": "2024-05-16T09:02:50.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133100", - "Timestamp": "2019-10-15T11:41:59.000Z" + "SpotPrice": "1.043000", + "Timestamp": "2024-05-16T09:02:50.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033100", - "Timestamp": "2019-10-15T11:41:59.000Z" + "SpotPrice": "0.918000", + "Timestamp": "2024-05-16T09:02:50.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.033300", - "Timestamp": "2019-10-15T11:13:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.196800", + "Timestamp": "2024-05-16T09:02:50.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.033300", - "Timestamp": "2019-10-15T11:13:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193100", + "Timestamp": "2024-05-16T09:02:50.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136800", + "Timestamp": "2024-05-16T09:02:50.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "f1.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093800", - "Timestamp": "2019-10-15T11:13:08.000Z" + "SpotPrice": "1.921600", + "Timestamp": "2024-05-16T09:02:49.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "f1.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133800", - "Timestamp": "2019-10-15T11:13:08.000Z" + "SpotPrice": "1.891600", + "Timestamp": "2024-05-16T09:02:49.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "f1.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033800", - "Timestamp": "2019-10-15T11:13:08.000Z" + "SpotPrice": "1.791600", + "Timestamp": "2024-05-16T09:02:49.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-15T11:12:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.579600", + "Timestamp": "2024-05-16T09:02:49.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-15T11:12:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.574600", + "Timestamp": "2024-05-16T09:02:49.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.074900", - "Timestamp": "2019-10-15T11:11:59.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.449600", + "Timestamp": "2024-05-16T09:02:49.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-1b", + "InstanceType": "f1.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.074900", - "Timestamp": "2019-10-15T11:11:59.000Z" + "SpotPrice": "0.829400", + "Timestamp": "2024-05-16T09:02:49.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-1b", + "InstanceType": "f1.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.114900", - "Timestamp": "2019-10-15T11:11:59.000Z" + "SpotPrice": "0.799400", + "Timestamp": "2024-05-16T09:02:49.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-1b", + "InstanceType": "f1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.699400", + "Timestamp": "2024-05-16T09:02:49.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.778200", + "Timestamp": "2024-05-16T09:02:49.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.114900", - "Timestamp": "2019-10-15T11:11:59.000Z" + "SpotPrice": "2.773200", + "Timestamp": "2024-05-16T09:02:49.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.014900", - "Timestamp": "2019-10-15T11:11:59.000Z" + "SpotPrice": "2.648200", + "Timestamp": "2024-05-16T09:02:49.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.014900", - "Timestamp": "2019-10-15T11:11:59.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.166400", + "Timestamp": "2024-05-16T09:02:48.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092300", - "Timestamp": "2019-10-15T11:05:00.000Z" + "SpotPrice": "0.296200", + "Timestamp": "2024-05-16T09:02:48.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132300", - "Timestamp": "2019-10-15T11:05:00.000Z" + "SpotPrice": "0.293200", + "Timestamp": "2024-05-16T09:02:48.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032300", - "Timestamp": "2019-10-15T11:05:00.000Z" + "SpotPrice": "0.236200", + "Timestamp": "2024-05-16T09:02:48.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.621200", - "Timestamp": "2019-10-15T10:50:25.000Z" + "SpotPrice": "4.975000", + "Timestamp": "2024-05-16T09:02:48.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.621200", - "Timestamp": "2019-10-15T10:50:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.970000", + "Timestamp": "2024-05-16T09:02:48.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.591200", - "Timestamp": "2019-10-15T10:50:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.845000", + "Timestamp": "2024-05-16T09:02:48.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.591200", - "Timestamp": "2019-10-15T10:50:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.490300", + "Timestamp": "2024-05-16T09:02:48.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.491200", - "Timestamp": "2019-10-15T10:50:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.485300", + "Timestamp": "2024-05-16T09:02:48.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.491200", - "Timestamp": "2019-10-15T10:50:25.000Z" + "SpotPrice": "0.360300", + "Timestamp": "2024-05-16T09:02:48.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.057400", - "Timestamp": "2019-10-15T10:50:02.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.265800", + "Timestamp": "2024-05-16T09:02:48.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.057400", - "Timestamp": "2019-10-15T10:50:02.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.260800", + "Timestamp": "2024-05-16T09:02:48.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089800", - "Timestamp": "2019-10-15T10:49:57.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.135800", + "Timestamp": "2024-05-16T09:02:48.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089800", - "Timestamp": "2019-10-15T10:49:57.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.143200", + "Timestamp": "2024-05-16T09:02:47.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.129800", - "Timestamp": "2019-10-15T10:49:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.129500", + "Timestamp": "2024-05-16T09:02:47.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.129800", - "Timestamp": "2019-10-15T10:49:57.000Z" + "SpotPrice": "3.124500", + "Timestamp": "2024-05-16T09:02:47.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029800", - "Timestamp": "2019-10-15T10:49:57.000Z" + "SpotPrice": "2.999500", + "Timestamp": "2024-05-16T09:02:47.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029800", - "Timestamp": "2019-10-15T10:49:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.498900", + "Timestamp": "2024-05-16T09:02:47.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.327200", - "Timestamp": "2019-10-15T10:49:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.493900", + "Timestamp": "2024-05-16T09:02:47.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.327200", - "Timestamp": "2019-10-15T10:49:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.368900", + "Timestamp": "2024-05-16T09:02:47.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.388500", - "Timestamp": "2019-10-15T10:49:44.000Z" + "SpotPrice": "0.166100", + "Timestamp": "2024-05-16T09:02:47.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.358500", - "Timestamp": "2019-10-15T10:49:44.000Z" + "SpotPrice": "0.162400", + "Timestamp": "2024-05-16T09:02:47.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.258500", - "Timestamp": "2019-10-15T10:49:44.000Z" + "SpotPrice": "0.106100", + "Timestamp": "2024-05-16T09:02:47.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.994500", - "Timestamp": "2019-10-15T10:49:44.000Z" + "SpotPrice": "4.583400", + "Timestamp": "2024-05-16T09:02:47.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.994500", - "Timestamp": "2019-10-15T10:49:44.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.208600", + "Timestamp": "2024-05-16T09:02:47.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.994500", - "Timestamp": "2019-10-15T10:49:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.203600", + "Timestamp": "2024-05-16T09:02:47.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.994500", - "Timestamp": "2019-10-15T10:49:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.078600", + "Timestamp": "2024-05-16T09:02:47.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m1.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.071500", - "Timestamp": "2019-10-15T10:49:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.241500", + "Timestamp": "2024-05-16T09:02:46.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m1.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.071500", - "Timestamp": "2019-10-15T10:49:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281500", + "Timestamp": "2024-05-16T09:02:46.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m1.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.069500", - "Timestamp": "2019-10-15T10:49:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181500", + "Timestamp": "2024-05-16T09:02:46.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m1.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r3.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.069500", - "Timestamp": "2019-10-15T10:49:29.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m1.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.109500", - "Timestamp": "2019-10-15T10:49:29.000Z" + "SpotPrice": "0.134100", + "Timestamp": "2024-05-16T09:02:46.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m1.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r3.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.109500", - "Timestamp": "2019-10-15T10:49:29.000Z" + "SpotPrice": "0.174100", + "Timestamp": "2024-05-16T09:02:46.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m1.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r3.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.009500", - "Timestamp": "2019-10-15T10:49:29.000Z" + "SpotPrice": "0.074100", + "Timestamp": "2024-05-16T09:02:46.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m1.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.009500", - "Timestamp": "2019-10-15T10:49:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.965400", + "Timestamp": "2024-05-16T09:02:46.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.499200", - "Timestamp": "2019-10-15T10:49:16.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.960400", + "Timestamp": "2024-05-16T09:02:46.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.499200", - "Timestamp": "2019-10-15T10:49:16.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.835400", + "Timestamp": "2024-05-16T09:02:46.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.213200", - "Timestamp": "2019-10-15T10:49:16.000Z" + "SpotPrice": "2.560400", + "Timestamp": "2024-05-16T09:02:46.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.213200", - "Timestamp": "2019-10-15T10:49:16.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.555400", + "Timestamp": "2024-05-16T09:02:46.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.183200", - "Timestamp": "2019-10-15T10:49:16.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.430400", + "Timestamp": "2024-05-16T09:02:46.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.183200", - "Timestamp": "2019-10-15T10:49:16.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "i2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.407900", + "Timestamp": "2024-05-16T09:02:45.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.083200", - "Timestamp": "2019-10-15T10:49:16.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "i2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.447900", + "Timestamp": "2024-05-16T09:02:45.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-1e", + "InstanceType": "i2.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.083200", - "Timestamp": "2019-10-15T10:49:16.000Z" + "SpotPrice": "0.347900", + "Timestamp": "2024-05-16T09:02:45.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.248600", - "Timestamp": "2019-10-15T10:29:13.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093800", - "Timestamp": "2019-10-15T10:14:48.000Z" + "SpotPrice": "0.278200", + "Timestamp": "2024-05-16T09:02:45.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093800", - "Timestamp": "2019-10-15T10:14:48.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133800", - "Timestamp": "2019-10-15T10:14:48.000Z" + "SpotPrice": "1.301500", + "Timestamp": "2024-05-16T09:02:45.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133800", - "Timestamp": "2019-10-15T10:14:48.000Z" + "SpotPrice": "1.296500", + "Timestamp": "2024-05-16T09:02:45.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033800", - "Timestamp": "2019-10-15T10:14:48.000Z" + "SpotPrice": "1.171500", + "Timestamp": "2024-05-16T09:02:45.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033800", - "Timestamp": "2019-10-15T10:14:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.265100", + "Timestamp": "2024-05-16T09:02:44.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-15T10:14:33.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.235100", + "Timestamp": "2024-05-16T09:02:44.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-15T10:14:33.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.135100", + "Timestamp": "2024-05-16T09:02:44.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.385600", - "Timestamp": "2019-10-15T10:14:17.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.194600", + "Timestamp": "2024-05-16T09:02:44.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.385600", - "Timestamp": "2019-10-15T10:14:17.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190900", + "Timestamp": "2024-05-16T09:02:44.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.164000", - "Timestamp": "2019-10-15T09:50:36.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134600", + "Timestamp": "2024-05-16T09:02:44.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1e.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.164000", - "Timestamp": "2019-10-15T09:50:36.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.134000", - "Timestamp": "2019-10-15T09:50:36.000Z" + "SpotPrice": "4.964800", + "Timestamp": "2024-05-16T09:02:44.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1e.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.134000", - "Timestamp": "2019-10-15T09:50:36.000Z" + "SpotPrice": "4.934800", + "Timestamp": "2024-05-16T09:02:44.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1e.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.034000", - "Timestamp": "2019-10-15T09:50:36.000Z" + "SpotPrice": "4.834800", + "Timestamp": "2024-05-16T09:02:44.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.034000", - "Timestamp": "2019-10-15T09:50:36.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127100", + "Timestamp": "2024-05-16T09:02:44.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.127500", - "Timestamp": "2019-10-15T09:50:36.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123400", + "Timestamp": "2024-05-16T09:02:44.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.127500", - "Timestamp": "2019-10-15T09:50:36.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067100", + "Timestamp": "2024-05-16T09:02:44.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087500", - "Timestamp": "2019-10-15T09:50:36.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.387100", + "Timestamp": "2024-05-16T09:02:43.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m2.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087500", - "Timestamp": "2019-10-15T09:50:36.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.127500", - "Timestamp": "2019-10-15T09:50:36.000Z" + "SpotPrice": "2.637500", + "Timestamp": "2024-05-16T09:02:42.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m2.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.127500", - "Timestamp": "2019-10-15T09:50:36.000Z" + "SpotPrice": "2.632500", + "Timestamp": "2024-05-16T09:02:42.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m2.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027500", - "Timestamp": "2019-10-15T09:50:36.000Z" + "SpotPrice": "2.507500", + "Timestamp": "2024-05-16T09:02:42.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027500", - "Timestamp": "2019-10-15T09:50:36.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.130600", + "Timestamp": "2024-05-16T09:02:42.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.metal", "ProductDescription": "Windows", - "SpotPrice": "5.450000", - "Timestamp": "2019-10-15T09:50:15.000Z" + "SpotPrice": "8.191100", + "Timestamp": "2024-05-16T09:02:41.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.450000", - "Timestamp": "2019-10-15T09:50:15.000Z" + "SpotPrice": "4.950000", + "Timestamp": "2024-05-16T09:02:41.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.754800", - "Timestamp": "2019-10-15T09:49:43.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.664700", + "Timestamp": "2024-05-16T09:02:41.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.754800", - "Timestamp": "2019-10-15T09:49:43.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.724800", - "Timestamp": "2019-10-15T09:49:43.000Z" + "SpotPrice": "0.323300", + "Timestamp": "2024-05-16T09:02:41.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.724800", - "Timestamp": "2019-10-15T09:49:43.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.624800", - "Timestamp": "2019-10-15T09:49:43.000Z" + "SpotPrice": "0.293300", + "Timestamp": "2024-05-16T09:02:41.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.624800", - "Timestamp": "2019-10-15T09:49:43.000Z" + "SpotPrice": "0.193300", + "Timestamp": "2024-05-16T09:02:41.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.040800", - "Timestamp": "2019-10-15T09:49:43.000Z" + "SpotPrice": "6.586100", + "Timestamp": "2024-05-16T09:02:41.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i-flex.large", "ProductDescription": "Windows", - "SpotPrice": "6.040800", - "Timestamp": "2019-10-15T09:49:43.000Z" + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T09:02:40.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m3.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.111600", - "Timestamp": "2019-10-15T09:49:40.000Z" + "SpotPrice": "0.372200", + "Timestamp": "2024-05-16T09:02:40.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m3.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.151600", - "Timestamp": "2019-10-15T09:49:40.000Z" + "SpotPrice": "0.342200", + "Timestamp": "2024-05-16T09:02:40.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m3.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.051600", - "Timestamp": "2019-10-15T09:49:40.000Z" + "SpotPrice": "0.242200", + "Timestamp": "2024-05-16T09:02:40.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.115800", - "Timestamp": "2019-10-15T09:49:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.644000", + "Timestamp": "2024-05-16T09:02:40.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gn.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.115800", - "Timestamp": "2019-10-15T09:49:29.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.155800", - "Timestamp": "2019-10-15T09:49:29.000Z" + "SpotPrice": "0.080400", + "Timestamp": "2024-05-16T09:02:39.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gn.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.155800", - "Timestamp": "2019-10-15T09:49:29.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.055800", - "Timestamp": "2019-10-15T09:49:29.000Z" + "SpotPrice": "0.051400", + "Timestamp": "2024-05-16T09:02:39.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gn.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.055800", - "Timestamp": "2019-10-15T09:49:29.000Z" + "SpotPrice": "0.020400", + "Timestamp": "2024-05-16T09:02:39.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.metal", "ProductDescription": "Windows", - "SpotPrice": "0.192800", - "Timestamp": "2019-10-15T09:49:29.000Z" + "SpotPrice": "16.032100", + "Timestamp": "2024-05-16T09:02:39.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.192800", - "Timestamp": "2019-10-15T09:49:29.000Z" + "SpotPrice": "1.231900", + "Timestamp": "2024-05-16T09:02:39.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.143600", - "Timestamp": "2019-10-15T09:49:22.000Z" + "SpotPrice": "5.476200", + "Timestamp": "2024-05-16T09:02:38.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.143600", - "Timestamp": "2019-10-15T09:49:22.000Z" + "SpotPrice": "5.281500", + "Timestamp": "2024-05-16T09:02:38.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.9xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.975600", - "Timestamp": "2019-10-15T09:49:15.000Z" + "SpotPrice": "2.424400", + "Timestamp": "2024-05-16T09:02:37.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.975600", - "Timestamp": "2019-10-15T09:49:15.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.294300", - "Timestamp": "2019-10-15T09:49:14.000Z" + "SpotPrice": "1.117400", + "Timestamp": "2024-05-16T09:02:37.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.294300", - "Timestamp": "2019-10-15T09:49:14.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "d2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.334300", - "Timestamp": "2019-10-15T09:49:14.000Z" + "SpotPrice": "5.559200", + "Timestamp": "2024-05-16T09:02:37.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.334300", - "Timestamp": "2019-10-15T09:49:14.000Z" + "SpotPrice": "5.554200", + "Timestamp": "2024-05-16T09:02:37.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.234300", - "Timestamp": "2019-10-15T09:49:14.000Z" + "SpotPrice": "5.429200", + "Timestamp": "2024-05-16T09:02:37.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.234300", - "Timestamp": "2019-10-15T09:49:14.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.036400", + "Timestamp": "2024-05-16T09:02:37.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i-flex.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.418300", - "Timestamp": "2019-10-15T09:49:14.000Z" + "SpotPrice": "1.075800", + "Timestamp": "2024-05-16T09:02:37.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.418300", - "Timestamp": "2019-10-15T09:49:14.000Z" + "SpotPrice": "0.255500", + "Timestamp": "2024-05-16T09:02:36.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "z1d.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.649200", - "Timestamp": "2019-10-15T08:50:47.000Z" + "SpotPrice": "1.186300", + "Timestamp": "2024-05-16T09:02:36.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.649200", - "Timestamp": "2019-10-15T08:50:47.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.181300", + "Timestamp": "2024-05-16T09:02:36.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.619200", - "Timestamp": "2019-10-15T08:50:47.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.056300", + "Timestamp": "2024-05-16T09:02:36.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.619200", - "Timestamp": "2019-10-15T08:50:47.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.669000", + "Timestamp": "2024-05-16T09:02:35.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.519200", - "Timestamp": "2019-10-15T08:50:47.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.664000", + "Timestamp": "2024-05-16T09:02:35.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "z1d.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "z1d.3xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.519200", - "Timestamp": "2019-10-15T08:50:47.000Z" + "SpotPrice": "0.539000", + "Timestamp": "2024-05-16T09:02:35.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.008700", - "Timestamp": "2019-10-15T08:50:24.000Z" + "SpotPrice": "8.995100", + "Timestamp": "2024-05-16T09:02:35.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t2.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.008700", - "Timestamp": "2019-10-15T08:50:24.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.449000", + "Timestamp": "2024-05-16T09:02:34.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.040800", - "Timestamp": "2019-10-15T08:50:23.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.444000", + "Timestamp": "2024-05-16T09:02:34.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.040800", - "Timestamp": "2019-10-15T08:50:23.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.319000", + "Timestamp": "2024-05-16T09:02:34.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "z1d.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t2.small", "ProductDescription": "Windows", - "SpotPrice": "3.727200", - "Timestamp": "2019-10-15T08:50:22.000Z" + "SpotPrice": "0.018500", + "Timestamp": "2024-05-16T09:02:34.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "z1d.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.727200", - "Timestamp": "2019-10-15T08:50:22.000Z" + "SpotPrice": "0.547400", + "Timestamp": "2024-05-16T09:02:34.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.754800", - "Timestamp": "2019-10-15T08:50:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.139300", + "Timestamp": "2024-05-16T09:02:34.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.754800", - "Timestamp": "2019-10-15T08:50:21.000Z" + "SpotPrice": "0.165700", + "Timestamp": "2024-05-16T09:02:33.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gn.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.724800", - "Timestamp": "2019-10-15T08:50:21.000Z" + "SpotPrice": "0.162000", + "Timestamp": "2024-05-16T09:02:33.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.724800", - "Timestamp": "2019-10-15T08:50:21.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T09:02:33.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.624800", - "Timestamp": "2019-10-15T08:50:21.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.139800", + "Timestamp": "2024-05-16T09:02:33.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.624800", - "Timestamp": "2019-10-15T08:50:21.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.134800", + "Timestamp": "2024-05-16T09:02:33.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t2.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.064100", - "Timestamp": "2019-10-15T08:49:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.009800", + "Timestamp": "2024-05-16T09:02:33.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.064100", - "Timestamp": "2019-10-15T08:49:54.000Z" + "SpotPrice": "0.804900", + "Timestamp": "2024-05-16T09:02:33.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.014100", - "Timestamp": "2019-10-15T08:49:54.000Z" + "SpotPrice": "0.774900", + "Timestamp": "2024-05-16T09:02:33.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t2.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.014100", - "Timestamp": "2019-10-15T08:49:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.674900", + "Timestamp": "2024-05-16T09:02:33.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t2.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.004100", - "Timestamp": "2019-10-15T08:49:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.195900", + "Timestamp": "2024-05-16T09:02:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.190900", + "Timestamp": "2024-05-16T09:02:32.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7gd.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.004100", - "Timestamp": "2019-10-15T08:49:54.000Z" + "SpotPrice": "2.065900", + "Timestamp": "2024-05-16T09:02:32.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.133200", - "Timestamp": "2019-10-15T08:49:30.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080800", + "Timestamp": "2024-05-16T09:02:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.133200", - "Timestamp": "2019-10-15T08:49:30.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.051800", + "Timestamp": "2024-05-16T09:02:32.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.119600", - "Timestamp": "2019-10-15T08:49:30.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020800", + "Timestamp": "2024-05-16T09:02:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.119600", - "Timestamp": "2019-10-15T08:49:30.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.595000", + "Timestamp": "2024-05-16T09:02:32.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.159600", - "Timestamp": "2019-10-15T08:49:30.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.363400", + "Timestamp": "2024-05-16T09:02:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.159600", - "Timestamp": "2019-10-15T08:49:30.000Z" + "SpotPrice": "0.358400", + "Timestamp": "2024-05-16T09:02:32.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.059600", - "Timestamp": "2019-10-15T08:49:30.000Z" + "SpotPrice": "0.233400", + "Timestamp": "2024-05-16T09:02:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.059600", - "Timestamp": "2019-10-15T08:49:30.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.109800", + "Timestamp": "2024-05-16T09:02:32.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.497000", - "Timestamp": "2019-10-15T08:49:28.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.104800", + "Timestamp": "2024-05-16T09:02:32.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.497000", - "Timestamp": "2019-10-15T08:49:28.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.979800", + "Timestamp": "2024-05-16T09:02:32.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.606300", - "Timestamp": "2019-10-15T08:49:16.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144700", + "Timestamp": "2024-05-16T09:02:31.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.606300", - "Timestamp": "2019-10-15T08:49:16.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141000", + "Timestamp": "2024-05-16T09:02:31.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.255300", - "Timestamp": "2019-10-15T08:49:16.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084700", + "Timestamp": "2024-05-16T09:02:31.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r4.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.255300", - "Timestamp": "2019-10-15T08:49:16.000Z" + "SpotPrice": "0.631600", + "Timestamp": "2024-05-16T09:02:31.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r4.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.225300", - "Timestamp": "2019-10-15T08:49:16.000Z" + "SpotPrice": "0.601600", + "Timestamp": "2024-05-16T09:02:31.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.225300", - "Timestamp": "2019-10-15T08:49:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.501600", + "Timestamp": "2024-05-16T09:02:31.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.125300", - "Timestamp": "2019-10-15T08:49:16.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.454000", + "Timestamp": "2024-05-16T09:02:31.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.449000", + "Timestamp": "2024-05-16T09:02:31.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.125300", - "Timestamp": "2019-10-15T08:49:16.000Z" + "SpotPrice": "0.324000", + "Timestamp": "2024-05-16T09:02:31.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "10.272000", - "Timestamp": "2019-10-15T08:49:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.982600", + "Timestamp": "2024-05-16T09:02:31.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.966900", - "Timestamp": "2019-10-15T08:49:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.977600", + "Timestamp": "2024-05-16T09:02:31.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.986000", - "Timestamp": "2019-10-15T08:49:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.852600", + "Timestamp": "2024-05-16T09:02:31.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.680900", - "Timestamp": "2019-10-15T08:49:15.000Z" + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T09:02:31.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "5.956000", - "Timestamp": "2019-10-15T08:49:15.000Z" + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T09:02:31.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.650900", - "Timestamp": "2019-10-15T08:49:15.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052100", + "Timestamp": "2024-05-16T09:02:31.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.856000", - "Timestamp": "2019-10-15T08:49:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083500", + "Timestamp": "2024-05-16T09:02:31.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.550900", - "Timestamp": "2019-10-15T08:49:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079800", + "Timestamp": "2024-05-16T09:02:31.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.383200", - "Timestamp": "2019-10-15T08:49:14.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023500", + "Timestamp": "2024-05-16T09:02:31.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "z1d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.383200", - "Timestamp": "2019-10-15T08:49:14.000Z" + "SpotPrice": "0.538900", + "Timestamp": "2024-05-16T09:02:31.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "z1d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.353200", - "Timestamp": "2019-10-15T08:49:14.000Z" + "SpotPrice": "0.508900", + "Timestamp": "2024-05-16T09:02:31.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "z1d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.408900", + "Timestamp": "2024-05-16T09:02:31.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.358600", + "Timestamp": "2024-05-16T09:02:30.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i-flex.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.353200", - "Timestamp": "2019-10-15T08:49:14.000Z" + "SpotPrice": "0.353600", + "Timestamp": "2024-05-16T09:02:30.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "z1d.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i-flex.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.253200", - "Timestamp": "2019-10-15T08:49:14.000Z" + "SpotPrice": "0.228600", + "Timestamp": "2024-05-16T09:02:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.253200", - "Timestamp": "2019-10-15T08:49:14.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-16T09:02:30.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.621200", - "Timestamp": "2019-10-15T08:49:14.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096600", + "Timestamp": "2024-05-16T09:02:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.621200", - "Timestamp": "2019-10-15T08:49:14.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040300", + "Timestamp": "2024-05-16T09:02:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.124300", - "Timestamp": "2019-10-15T08:42:02.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.555400", + "Timestamp": "2024-05-16T09:02:30.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.124300", - "Timestamp": "2019-10-15T08:13:35.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.550400", + "Timestamp": "2024-05-16T09:02:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.124300", - "Timestamp": "2019-10-15T08:13:35.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.425400", + "Timestamp": "2024-05-16T09:02:30.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.124300", - "Timestamp": "2019-10-15T08:00:32.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.800600", + "Timestamp": "2024-05-16T09:02:30.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.016000", - "Timestamp": "2019-10-15T07:49:21.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.795600", + "Timestamp": "2024-05-16T09:02:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.016000", - "Timestamp": "2019-10-15T07:49:21.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.670600", + "Timestamp": "2024-05-16T09:02:30.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.730000", - "Timestamp": "2019-10-15T07:49:17.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.026500", + "Timestamp": "2024-05-16T09:02:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3en.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.730000", - "Timestamp": "2019-10-15T07:49:17.000Z" + "SpotPrice": "0.463500", + "Timestamp": "2024-05-16T09:02:30.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3en.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6gd.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.700000", - "Timestamp": "2019-10-15T07:49:17.000Z" + "SpotPrice": "0.458500", + "Timestamp": "2024-05-16T09:02:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.700000", - "Timestamp": "2019-10-15T07:49:17.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.333500", + "Timestamp": "2024-05-16T09:02:30.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.600000", - "Timestamp": "2019-10-15T07:49:17.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.434100", + "Timestamp": "2024-05-16T09:02:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.600000", - "Timestamp": "2019-10-15T07:49:17.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.404100", + "Timestamp": "2024-05-16T09:02:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.040800", - "Timestamp": "2019-10-15T07:49:14.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.304100", + "Timestamp": "2024-05-16T09:02:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.754800", - "Timestamp": "2019-10-15T07:49:14.000Z" + "SpotPrice": "0.503700", + "Timestamp": "2024-05-16T09:02:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.724800", - "Timestamp": "2019-10-15T07:49:14.000Z" + "SpotPrice": "0.498700", + "Timestamp": "2024-05-16T09:02:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.624800", - "Timestamp": "2019-10-15T07:49:14.000Z" + "SpotPrice": "0.373700", + "Timestamp": "2024-05-16T09:02:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m1.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.143000", - "Timestamp": "2019-10-15T07:48:36.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.262500", - "Timestamp": "2019-10-15T07:48:31.000Z" + "SpotPrice": "2.339200", + "Timestamp": "2024-05-16T09:02:29.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.262500", - "Timestamp": "2019-10-15T07:48:31.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.232500", - "Timestamp": "2019-10-15T07:48:31.000Z" + "SpotPrice": "1.907900", + "Timestamp": "2024-05-16T09:02:28.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.232500", - "Timestamp": "2019-10-15T07:48:31.000Z" + "SpotPrice": "1.877900", + "Timestamp": "2024-05-16T09:02:28.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.132500", - "Timestamp": "2019-10-15T07:48:31.000Z" - }, - { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.132500", - "Timestamp": "2019-10-15T07:48:31.000Z" + "SpotPrice": "1.777900", + "Timestamp": "2024-05-16T09:02:28.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.metal", "ProductDescription": "Windows", - "SpotPrice": "0.194500", - "Timestamp": "2019-10-15T07:48:31.000Z" + "SpotPrice": "9.687500", + "Timestamp": "2024-05-16T09:02:27.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.194500", - "Timestamp": "2019-10-15T07:48:31.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.725300", + "Timestamp": "2024-05-16T09:02:26.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m1.large", - "ProductDescription": "Windows", - "SpotPrice": "0.143000", - "Timestamp": "2019-10-15T07:23:36.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.720300", + "Timestamp": "2024-05-16T09:02:26.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.136000", - "Timestamp": "2019-10-15T07:15:34.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.595300", + "Timestamp": "2024-05-16T09:02:26.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061700", - "Timestamp": "2019-10-15T06:49:30.000Z" + "SpotPrice": "0.098200", + "Timestamp": "2024-05-16T09:02:25.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061800", - "Timestamp": "2019-10-15T06:49:30.000Z" + "SpotPrice": "0.098600", + "Timestamp": "2024-05-16T09:02:25.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.101700", - "Timestamp": "2019-10-15T06:49:30.000Z" + "SpotPrice": "0.094500", + "Timestamp": "2024-05-16T09:02:25.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-15T06:49:30.000Z" + "SpotPrice": "0.094900", + "Timestamp": "2024-05-16T09:02:25.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001700", - "Timestamp": "2019-10-15T06:49:30.000Z" + "SpotPrice": "0.038200", + "Timestamp": "2024-05-16T09:02:25.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001800", - "Timestamp": "2019-10-15T06:49:30.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006300", - "Timestamp": "2019-10-15T06:49:29.000Z" + "SpotPrice": "0.038600", + "Timestamp": "2024-05-16T09:02:25.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006300", - "Timestamp": "2019-10-15T06:49:29.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.500700", + "Timestamp": "2024-05-16T09:02:25.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.004000", - "Timestamp": "2019-10-15T06:49:15.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.495700", + "Timestamp": "2024-05-16T09:02:25.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.004000", - "Timestamp": "2019-10-15T06:49:15.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.370700", + "Timestamp": "2024-05-16T09:02:25.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3en.6xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.030000", - "Timestamp": "2019-10-15T06:49:15.000Z" + "SpotPrice": "1.406500", + "Timestamp": "2024-05-16T09:02:25.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.030000", - "Timestamp": "2019-10-15T06:49:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.401500", + "Timestamp": "2024-05-16T09:02:25.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.000000", - "Timestamp": "2019-10-15T06:49:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.276500", + "Timestamp": "2024-05-16T09:02:25.000Z" }, { - "AvailabilityZone": "us-west-1c", + "AvailabilityZone": "us-east-1f", "InstanceType": "i3en.6xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.000000", - "Timestamp": "2019-10-15T06:49:15.000Z" + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.148000", + "Timestamp": "2024-05-16T09:02:25.000Z" }, { - "AvailabilityZone": "us-west-1b", + "AvailabilityZone": "us-east-1f", "InstanceType": "i3en.6xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.900000", - "Timestamp": "2019-10-15T06:49:15.000Z" + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.143000", + "Timestamp": "2024-05-16T09:02:25.000Z" }, { - "AvailabilityZone": "us-west-1c", + "AvailabilityZone": "us-east-1f", "InstanceType": "i3en.6xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.900000", - "Timestamp": "2019-10-15T06:49:15.000Z" + "SpotPrice": "1.018000", + "Timestamp": "2024-05-16T09:02:25.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "p2.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.209900", - "Timestamp": "2019-10-15T06:49:14.000Z" + "SpotPrice": "9.538700", + "Timestamp": "2024-05-16T09:02:25.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.209900", - "Timestamp": "2019-10-15T06:49:14.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.178600", + "Timestamp": "2024-05-16T09:02:24.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.124300", - "Timestamp": "2019-10-15T06:14:36.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.173600", + "Timestamp": "2024-05-16T09:02:24.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.124300", - "Timestamp": "2019-10-15T06:14:36.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.048600", + "Timestamp": "2024-05-16T09:02:24.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.121500", - "Timestamp": "2019-10-15T05:12:50.000Z" + "SpotPrice": "0.204400", + "Timestamp": "2024-05-16T09:02:24.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.121500", - "Timestamp": "2019-10-15T05:12:50.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.200700", + "Timestamp": "2024-05-16T09:02:24.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5n.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.161500", - "Timestamp": "2019-10-15T05:12:50.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144400", + "Timestamp": "2024-05-16T09:02:24.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5n.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.161500", - "Timestamp": "2019-10-15T05:12:50.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.901100", + "Timestamp": "2024-05-16T09:02:24.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.061500", - "Timestamp": "2019-10-15T05:12:50.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.896100", + "Timestamp": "2024-05-16T09:02:24.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5n.18xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.061500", - "Timestamp": "2019-10-15T05:12:50.000Z" + "SpotPrice": "1.771100", + "Timestamp": "2024-05-16T09:02:24.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.245500", - "Timestamp": "2019-10-15T05:12:25.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T09:02:24.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.245500", - "Timestamp": "2019-10-15T05:12:25.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150000", + "Timestamp": "2024-05-16T09:02:24.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.683900", - "Timestamp": "2019-10-15T04:50:26.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050000", + "Timestamp": "2024-05-16T09:02:24.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r4.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.683900", - "Timestamp": "2019-10-15T04:50:26.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.653900", - "Timestamp": "2019-10-15T04:50:26.000Z" + "SpotPrice": "0.134500", + "Timestamp": "2024-05-16T09:02:24.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r4.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.653900", - "Timestamp": "2019-10-15T04:50:26.000Z" + "SpotPrice": "0.174500", + "Timestamp": "2024-05-16T09:02:24.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r4.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.553900", - "Timestamp": "2019-10-15T04:50:26.000Z" + "SpotPrice": "0.074500", + "Timestamp": "2024-05-16T09:02:24.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.553900", - "Timestamp": "2019-10-15T04:50:26.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "9.940000", + "Timestamp": "2024-05-16T09:02:24.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.209900", - "Timestamp": "2019-10-15T04:50:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "9.910000", + "Timestamp": "2024-05-16T09:02:24.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.209900", - "Timestamp": "2019-10-15T04:50:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "9.810000", + "Timestamp": "2024-05-16T09:02:24.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.large", "ProductDescription": "Windows", - "SpotPrice": "1.863600", - "Timestamp": "2019-10-15T04:49:30.000Z" + "SpotPrice": "0.138500", + "Timestamp": "2024-05-16T09:02:24.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.863600", - "Timestamp": "2019-10-15T04:49:30.000Z" + "SpotPrice": "13.028500", + "Timestamp": "2024-05-16T09:02:23.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.068300", - "Timestamp": "2019-10-15T04:49:13.000Z" + "SpotPrice": "3.121400", + "Timestamp": "2024-05-16T09:02:23.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t2.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.068300", - "Timestamp": "2019-10-15T04:49:13.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.116400", + "Timestamp": "2024-05-16T09:02:23.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t2.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.038300", - "Timestamp": "2019-10-15T04:49:13.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.991400", + "Timestamp": "2024-05-16T09:02:23.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t2.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.038300", - "Timestamp": "2019-10-15T04:49:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.336500", + "Timestamp": "2024-05-16T09:02:22.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t2.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.008300", - "Timestamp": "2019-10-15T04:49:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.306500", + "Timestamp": "2024-05-16T09:02:22.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-1d", + "InstanceType": "gr6.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.008300", - "Timestamp": "2019-10-15T04:49:13.000Z" + "SpotPrice": "0.206500", + "Timestamp": "2024-05-16T09:02:22.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.017500", - "Timestamp": "2019-10-15T04:49:13.000Z" + "SpotPrice": "0.590800", + "Timestamp": "2024-05-16T09:02:22.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t2.small", - "ProductDescription": "Windows", - "SpotPrice": "0.017500", - "Timestamp": "2019-10-15T04:49:13.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.439300", + "Timestamp": "2024-05-16T09:02:21.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "10.800000", - "Timestamp": "2019-10-15T04:15:26.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.434300", + "Timestamp": "2024-05-16T09:02:21.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.966900", - "Timestamp": "2019-10-15T04:15:26.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.309300", + "Timestamp": "2024-05-16T09:02:21.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "6.514000", - "Timestamp": "2019-10-15T04:14:42.000Z" + "SpotPrice": "0.226700", + "Timestamp": "2024-05-16T09:02:21.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.680900", - "Timestamp": "2019-10-15T04:14:42.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.223700", + "Timestamp": "2024-05-16T09:02:21.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "6.484000", - "Timestamp": "2019-10-15T04:14:42.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.166700", + "Timestamp": "2024-05-16T09:02:21.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.650900", - "Timestamp": "2019-10-15T04:14:42.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.465900", + "Timestamp": "2024-05-16T09:02:20.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "6.384000", - "Timestamp": "2019-10-15T04:14:42.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.460900", + "Timestamp": "2024-05-16T09:02:20.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.550900", - "Timestamp": "2019-10-15T04:14:42.000Z" + "SpotPrice": "1.335900", + "Timestamp": "2024-05-16T09:02:20.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.124600", - "Timestamp": "2019-10-15T04:13:19.000Z" + "SpotPrice": "0.153300", + "Timestamp": "2024-05-16T09:02:20.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.164600", - "Timestamp": "2019-10-15T04:13:19.000Z" + "SpotPrice": "0.149300", + "Timestamp": "2024-05-16T09:02:20.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.064600", - "Timestamp": "2019-10-15T04:13:19.000Z" + "SpotPrice": "0.093300", + "Timestamp": "2024-05-16T09:02:20.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.673500", - "Timestamp": "2019-10-15T03:49:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.276900", + "Timestamp": "2024-05-16T09:02:18.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.673500", - "Timestamp": "2019-10-15T03:49:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.271900", + "Timestamp": "2024-05-16T09:02:18.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.067500", - "Timestamp": "2019-10-15T03:49:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146900", + "Timestamp": "2024-05-16T09:02:18.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.067500", - "Timestamp": "2019-10-15T03:49:29.000Z" + "SpotPrice": "0.879000", + "Timestamp": "2024-05-16T09:02:17.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.037500", - "Timestamp": "2019-10-15T03:49:29.000Z" - }, - { - "AvailabilityZone": "us-west-1c", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.037500", - "Timestamp": "2019-10-15T03:49:29.000Z" + "SpotPrice": "0.874000", + "Timestamp": "2024-05-16T09:02:17.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.937500", - "Timestamp": "2019-10-15T03:49:29.000Z" + "SpotPrice": "0.749000", + "Timestamp": "2024-05-16T09:02:17.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.937500", - "Timestamp": "2019-10-15T03:49:29.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114000", + "Timestamp": "2024-05-16T09:02:17.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.255300", - "Timestamp": "2019-10-15T03:49:29.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T09:02:17.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.255300", - "Timestamp": "2019-10-15T03:49:29.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054000", + "Timestamp": "2024-05-16T09:02:17.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.913300", - "Timestamp": "2019-10-15T03:49:29.000Z" + "SpotPrice": "1.071700", + "Timestamp": "2024-05-16T09:02:16.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.913300", - "Timestamp": "2019-10-15T03:49:29.000Z" + "SpotPrice": "1.083200", + "Timestamp": "2024-05-16T09:02:16.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.883300", - "Timestamp": "2019-10-15T03:49:29.000Z" + "SpotPrice": "1.041700", + "Timestamp": "2024-05-16T09:02:16.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.883300", - "Timestamp": "2019-10-15T03:49:29.000Z" + "SpotPrice": "1.053200", + "Timestamp": "2024-05-16T09:02:16.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.783300", - "Timestamp": "2019-10-15T03:49:29.000Z" + "SpotPrice": "0.941700", + "Timestamp": "2024-05-16T09:02:16.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.783300", - "Timestamp": "2019-10-15T03:49:29.000Z" + "SpotPrice": "0.953200", + "Timestamp": "2024-05-16T09:02:16.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.245500", - "Timestamp": "2019-10-15T03:49:15.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138500", + "Timestamp": "2024-05-16T09:02:16.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.245500", - "Timestamp": "2019-10-15T03:49:15.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134800", + "Timestamp": "2024-05-16T09:02:16.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.121500", - "Timestamp": "2019-10-15T03:49:15.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078500", + "Timestamp": "2024-05-16T09:02:16.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.121500", - "Timestamp": "2019-10-15T03:49:15.000Z" + "SpotPrice": "0.559300", + "Timestamp": "2024-05-16T09:02:15.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.161500", - "Timestamp": "2019-10-15T03:49:15.000Z" + "SpotPrice": "0.554300", + "Timestamp": "2024-05-16T09:02:15.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5d.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.161500", - "Timestamp": "2019-10-15T03:49:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.429300", + "Timestamp": "2024-05-16T09:02:15.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.061500", - "Timestamp": "2019-10-15T03:49:15.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.810600", + "Timestamp": "2024-05-16T09:02:14.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.061500", - "Timestamp": "2019-10-15T03:49:15.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.805600", + "Timestamp": "2024-05-16T09:02:14.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.510600", - "Timestamp": "2019-10-15T03:49:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.680600", + "Timestamp": "2024-05-16T09:02:14.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.510600", - "Timestamp": "2019-10-15T03:49:13.000Z" + "SpotPrice": "1.210900", + "Timestamp": "2024-05-16T09:02:14.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.696600", - "Timestamp": "2019-10-15T03:49:13.000Z" + "SpotPrice": "0.556400", + "Timestamp": "2024-05-16T09:02:14.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.551400", + "Timestamp": "2024-05-16T09:02:14.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.426400", + "Timestamp": "2024-05-16T09:02:14.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.9xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.696600", - "Timestamp": "2019-10-15T03:49:13.000Z" + "SpotPrice": "0.992600", + "Timestamp": "2024-05-16T09:02:13.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.9xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.666600", - "Timestamp": "2019-10-15T03:49:13.000Z" + "SpotPrice": "0.987600", + "Timestamp": "2024-05-16T09:02:13.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.862600", + "Timestamp": "2024-05-16T09:02:13.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.752600", + "Timestamp": "2024-05-16T09:02:13.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "h1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.115000", + "Timestamp": "2024-05-16T08:48:51.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "h1.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.666600", - "Timestamp": "2019-10-15T03:49:13.000Z" + "SpotPrice": "3.085000", + "Timestamp": "2024-05-16T08:48:51.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "h1.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.566600", - "Timestamp": "2019-10-15T03:49:13.000Z" + "SpotPrice": "2.985000", + "Timestamp": "2024-05-16T08:48:51.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132600", + "Timestamp": "2024-05-16T08:48:47.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128900", + "Timestamp": "2024-05-16T08:48:47.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.566600", - "Timestamp": "2019-10-15T03:49:13.000Z" + "SpotPrice": "0.072600", + "Timestamp": "2024-05-16T08:48:47.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-1a", + "InstanceType": "is4gen.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063400", - "Timestamp": "2019-10-15T03:48:31.000Z" + "SpotPrice": "1.363600", + "Timestamp": "2024-05-16T08:48:41.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-1d", + "InstanceType": "is4gen.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063400", - "Timestamp": "2019-10-15T03:48:31.000Z" + "SpotPrice": "1.482000", + "Timestamp": "2024-05-16T08:48:41.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-1a", + "InstanceType": "is4gen.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.103400", - "Timestamp": "2019-10-15T03:48:31.000Z" + "SpotPrice": "1.358600", + "Timestamp": "2024-05-16T08:48:41.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-1d", + "InstanceType": "is4gen.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.103400", - "Timestamp": "2019-10-15T03:48:31.000Z" + "SpotPrice": "1.477000", + "Timestamp": "2024-05-16T08:48:41.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-1a", + "InstanceType": "is4gen.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003400", - "Timestamp": "2019-10-15T03:48:31.000Z" + "SpotPrice": "1.233600", + "Timestamp": "2024-05-16T08:48:41.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-1d", + "InstanceType": "is4gen.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003400", - "Timestamp": "2019-10-15T03:48:31.000Z" + "SpotPrice": "1.352000", + "Timestamp": "2024-05-16T08:48:41.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.012600", - "Timestamp": "2019-10-15T03:48:30.000Z" + "SpotPrice": "5.071500", + "Timestamp": "2024-05-16T08:48:38.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.9xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.012600", - "Timestamp": "2019-10-15T03:48:30.000Z" + "SpotPrice": "2.471400", + "Timestamp": "2024-05-16T08:48:37.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.982200", - "Timestamp": "2019-10-15T03:13:33.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.098700", + "Timestamp": "2024-05-16T08:48:37.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.982200", - "Timestamp": "2019-10-15T03:13:33.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.093700", + "Timestamp": "2024-05-16T08:48:37.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.249300", - "Timestamp": "2019-10-15T03:13:12.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.968700", + "Timestamp": "2024-05-16T08:48:37.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g4dn.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.249300", - "Timestamp": "2019-10-15T03:13:12.000Z" + "SpotPrice": "1.458900", + "Timestamp": "2024-05-16T08:48:36.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g4dn.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.289300", - "Timestamp": "2019-10-15T03:13:12.000Z" + "SpotPrice": "1.453900", + "Timestamp": "2024-05-16T08:48:36.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.289300", - "Timestamp": "2019-10-15T03:13:12.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.328900", + "Timestamp": "2024-05-16T08:48:36.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.189300", - "Timestamp": "2019-10-15T03:13:12.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.521000", + "Timestamp": "2024-05-16T08:48:36.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g4dn.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.516000", + "Timestamp": "2024-05-16T08:48:36.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.189300", - "Timestamp": "2019-10-15T03:13:12.000Z" + "SpotPrice": "1.391000", + "Timestamp": "2024-05-16T08:48:36.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.256100", - "Timestamp": "2019-10-15T02:58:31.000Z" + "SpotPrice": "1.929000", + "Timestamp": "2024-05-16T08:48:35.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.226100", - "Timestamp": "2019-10-15T02:58:31.000Z" + "SpotPrice": "1.924000", + "Timestamp": "2024-05-16T08:48:35.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.126100", - "Timestamp": "2019-10-15T02:58:31.000Z" + "SpotPrice": "1.799000", + "Timestamp": "2024-05-16T08:48:35.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.013600", - "Timestamp": "2019-10-15T02:49:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.892400", + "Timestamp": "2024-05-16T08:48:33.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.013600", - "Timestamp": "2019-10-15T02:49:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.887400", + "Timestamp": "2024-05-16T08:48:33.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.671600", - "Timestamp": "2019-10-15T02:49:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.762400", + "Timestamp": "2024-05-16T08:48:33.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.671600", - "Timestamp": "2019-10-15T02:49:15.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.641600", - "Timestamp": "2019-10-15T02:49:15.000Z" + "SpotPrice": "4.352200", + "Timestamp": "2024-05-16T08:48:33.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.641600", - "Timestamp": "2019-10-15T02:49:15.000Z" + "SpotPrice": "4.347200", + "Timestamp": "2024-05-16T08:48:33.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.541600", - "Timestamp": "2019-10-15T02:49:15.000Z" + "SpotPrice": "4.222200", + "Timestamp": "2024-05-16T08:48:33.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.541600", - "Timestamp": "2019-10-15T02:49:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.288100", + "Timestamp": "2024-05-16T08:48:31.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.373300", - "Timestamp": "2019-10-15T02:48:30.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135400", + "Timestamp": "2024-05-16T08:48:31.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.373300", - "Timestamp": "2019-10-15T02:48:30.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131700", + "Timestamp": "2024-05-16T08:48:31.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.491100", - "Timestamp": "2019-10-15T02:41:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075400", + "Timestamp": "2024-05-16T08:48:31.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.metal", "ProductDescription": "Windows", - "SpotPrice": "0.491100", - "Timestamp": "2019-10-15T02:41:26.000Z" + "SpotPrice": "7.552300", + "Timestamp": "2024-05-16T08:48:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062300", - "Timestamp": "2019-10-15T02:23:04.000Z" + "SpotPrice": "0.230300", + "Timestamp": "2024-05-16T08:48:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.102300", - "Timestamp": "2019-10-15T02:23:04.000Z" + "SpotPrice": "0.226300", + "Timestamp": "2024-05-16T08:48:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002300", - "Timestamp": "2019-10-15T02:23:04.000Z" + "SpotPrice": "0.170300", + "Timestamp": "2024-05-16T08:48:30.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.095900", - "Timestamp": "2019-10-15T01:51:26.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.467500", + "Timestamp": "2024-05-16T08:48:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.095900", - "Timestamp": "2019-10-15T01:51:26.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.462500", + "Timestamp": "2024-05-16T08:48:30.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087900", - "Timestamp": "2019-10-15T01:51:23.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.337500", + "Timestamp": "2024-05-16T08:48:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c3.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087900", - "Timestamp": "2019-10-15T01:51:23.000Z" + "SpotPrice": "2.330900", + "Timestamp": "2024-05-16T08:48:30.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c3.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.127900", - "Timestamp": "2019-10-15T01:51:23.000Z" + "SpotPrice": "2.300900", + "Timestamp": "2024-05-16T08:48:30.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.127900", - "Timestamp": "2019-10-15T01:51:23.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.200900", + "Timestamp": "2024-05-16T08:48:30.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027900", - "Timestamp": "2019-10-15T01:51:23.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.406000", + "Timestamp": "2024-05-16T08:48:29.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027900", - "Timestamp": "2019-10-15T01:51:23.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.402300", + "Timestamp": "2024-05-16T08:48:29.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.983500", - "Timestamp": "2019-10-15T01:50:09.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.346000", + "Timestamp": "2024-05-16T08:48:29.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.983500", - "Timestamp": "2019-10-15T01:50:09.000Z" + "SpotPrice": "0.263800", + "Timestamp": "2024-05-16T08:48:29.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.905500", - "Timestamp": "2019-10-15T01:49:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.523000", + "Timestamp": "2024-05-16T08:48:29.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.905500", - "Timestamp": "2019-10-15T01:49:56.000Z" + "SpotPrice": "1.998000", + "Timestamp": "2024-05-16T08:48:28.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.875500", - "Timestamp": "2019-10-15T01:49:56.000Z" - }, - { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.875500", - "Timestamp": "2019-10-15T01:49:56.000Z" + "SpotPrice": "1.993000", + "Timestamp": "2024-05-16T08:48:28.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.775500", - "Timestamp": "2019-10-15T01:49:56.000Z" + "SpotPrice": "1.868000", + "Timestamp": "2024-05-16T08:48:28.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.775500", - "Timestamp": "2019-10-15T01:49:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.742000", + "Timestamp": "2024-05-16T08:48:28.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.031800", - "Timestamp": "2019-10-15T01:49:50.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.712000", + "Timestamp": "2024-05-16T08:48:28.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.031800", - "Timestamp": "2019-10-15T01:49:50.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.612000", + "Timestamp": "2024-05-16T08:48:28.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.388500", - "Timestamp": "2019-10-15T01:49:46.000Z" + "SpotPrice": "2.946200", + "Timestamp": "2024-05-16T08:48:28.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.358500", - "Timestamp": "2019-10-15T01:49:46.000Z" + "SpotPrice": "2.941200", + "Timestamp": "2024-05-16T08:48:28.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.258500", - "Timestamp": "2019-10-15T01:49:46.000Z" + "SpotPrice": "2.816200", + "Timestamp": "2024-05-16T08:48:28.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3a.medium", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.073400", - "Timestamp": "2019-10-15T01:49:45.000Z" + "SpotPrice": "1.313300", + "Timestamp": "2024-05-16T08:48:28.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.073400", - "Timestamp": "2019-10-15T01:49:45.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.308300", + "Timestamp": "2024-05-16T08:48:28.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3a.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.113400", - "Timestamp": "2019-10-15T01:49:45.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.183300", + "Timestamp": "2024-05-16T08:48:28.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3a.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.113400", - "Timestamp": "2019-10-15T01:49:45.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.213200", + "Timestamp": "2024-05-16T08:48:28.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.013400", - "Timestamp": "2019-10-15T01:49:45.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.324900", + "Timestamp": "2024-05-16T08:48:28.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.013400", - "Timestamp": "2019-10-15T01:49:45.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.319900", + "Timestamp": "2024-05-16T08:48:28.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.994500", - "Timestamp": "2019-10-15T01:49:22.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.194900", + "Timestamp": "2024-05-16T08:48:28.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097900", - "Timestamp": "2019-10-15T01:49:14.000Z" + "SpotPrice": "4.494700", + "Timestamp": "2024-05-16T08:48:28.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097900", - "Timestamp": "2019-10-15T01:49:14.000Z" + "SpotPrice": "4.256200", + "Timestamp": "2024-05-16T08:48:28.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137900", - "Timestamp": "2019-10-15T01:49:14.000Z" + "SpotPrice": "4.489700", + "Timestamp": "2024-05-16T08:48:28.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137900", - "Timestamp": "2019-10-15T01:49:14.000Z" + "SpotPrice": "4.251200", + "Timestamp": "2024-05-16T08:48:28.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037900", - "Timestamp": "2019-10-15T01:49:14.000Z" + "SpotPrice": "4.364700", + "Timestamp": "2024-05-16T08:48:28.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037900", - "Timestamp": "2019-10-15T01:49:14.000Z" + "SpotPrice": "4.126200", + "Timestamp": "2024-05-16T08:48:28.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.942400", - "Timestamp": "2019-10-15T00:49:47.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.187900", + "Timestamp": "2024-05-16T08:48:28.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.942400", - "Timestamp": "2019-10-15T00:49:47.000Z" + "SpotPrice": "4.891600", + "Timestamp": "2024-05-16T08:48:28.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.912400", - "Timestamp": "2019-10-15T00:49:47.000Z" - }, - { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.912400", - "Timestamp": "2019-10-15T00:49:47.000Z" + "SpotPrice": "4.886600", + "Timestamp": "2024-05-16T08:48:28.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.812400", - "Timestamp": "2019-10-15T00:49:47.000Z" + "SpotPrice": "4.761600", + "Timestamp": "2024-05-16T08:48:28.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.812400", - "Timestamp": "2019-10-15T00:49:47.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.145600", + "Timestamp": "2024-05-16T08:48:27.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.955600", - "Timestamp": "2019-10-15T00:49:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.620000", + "Timestamp": "2024-05-16T08:48:27.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2gd.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.955600", - "Timestamp": "2019-10-15T00:49:29.000Z" - }, - { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.925600", - "Timestamp": "2019-10-15T00:49:29.000Z" + "SpotPrice": "2.247300", + "Timestamp": "2024-05-16T08:48:27.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2gd.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.925600", - "Timestamp": "2019-10-15T00:49:29.000Z" + "SpotPrice": "2.242300", + "Timestamp": "2024-05-16T08:48:27.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.825600", - "Timestamp": "2019-10-15T00:49:29.000Z" - }, - { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.825600", - "Timestamp": "2019-10-15T00:49:29.000Z" + "SpotPrice": "2.117300", + "Timestamp": "2024-05-16T08:48:27.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.297600", - "Timestamp": "2019-10-15T00:49:29.000Z" + "SpotPrice": "4.622200", + "Timestamp": "2024-05-16T08:48:26.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g3s.xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.297600", - "Timestamp": "2019-10-15T00:49:29.000Z" + "SpotPrice": "0.478300", + "Timestamp": "2024-05-16T08:48:24.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.118600", - "Timestamp": "2019-10-15T00:49:28.000Z" + "SpotPrice": "1.924400", + "Timestamp": "2024-05-16T08:48:23.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.118600", - "Timestamp": "2019-10-15T00:49:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.919400", + "Timestamp": "2024-05-16T08:48:23.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.158600", - "Timestamp": "2019-10-15T00:49:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.794400", + "Timestamp": "2024-05-16T08:48:23.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.158600", - "Timestamp": "2019-10-15T00:49:28.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.944000", + "Timestamp": "2024-05-16T08:48:23.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "m3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.058600", - "Timestamp": "2019-10-15T00:49:28.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.939000", + "Timestamp": "2024-05-16T08:48:23.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.058600", - "Timestamp": "2019-10-15T00:49:28.000Z" + "SpotPrice": "3.814000", + "Timestamp": "2024-05-16T08:48:23.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c1.xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.020400", - "Timestamp": "2019-10-15T00:49:23.000Z" + "SpotPrice": "0.498800", + "Timestamp": "2024-05-16T08:48:22.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.020400", - "Timestamp": "2019-10-15T00:49:23.000Z" + "SpotPrice": "4.201600", + "Timestamp": "2024-05-16T08:48:22.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267800", - "Timestamp": "2019-10-15T00:25:26.000Z" + "SpotPrice": "2.193200", + "Timestamp": "2024-05-16T08:48:22.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.237800", - "Timestamp": "2019-10-15T00:25:26.000Z" + "SpotPrice": "2.188200", + "Timestamp": "2024-05-16T08:48:22.000Z" }, { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.137800", - "Timestamp": "2019-10-15T00:25:26.000Z" - }, - { - "AvailabilityZone": "us-west-1c", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.006800", - "Timestamp": "2019-10-15T00:00:39.000Z" + "SpotPrice": "2.063200", + "Timestamp": "2024-05-16T08:48:22.000Z" }, { - "AvailabilityZone": "us-west-1b", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.946500", - "Timestamp": "2019-10-14T23:49:14.000Z" - }, - { - "AvailabilityZone": "us-west-1c", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.946500", - "Timestamp": "2019-10-14T23:49:14.000Z" + "SpotPrice": "2.024100", + "Timestamp": "2024-05-16T08:48:21.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.263300", - "Timestamp": "2019-10-16T02:53:25.000Z" + "SpotPrice": "2.840700", + "Timestamp": "2024-05-16T08:48:21.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.233300", - "Timestamp": "2019-10-16T02:53:25.000Z" + "SpotPrice": "2.835700", + "Timestamp": "2024-05-16T08:48:21.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.133300", - "Timestamp": "2019-10-16T02:53:25.000Z" + "SpotPrice": "2.710700", + "Timestamp": "2024-05-16T08:48:21.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.809900", - "Timestamp": "2019-10-16T02:53:10.000Z" + "SpotPrice": "1.115300", + "Timestamp": "2024-05-16T08:48:21.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.779900", - "Timestamp": "2019-10-16T02:53:10.000Z" + "SpotPrice": "1.110300", + "Timestamp": "2024-05-16T08:48:21.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.679900", - "Timestamp": "2019-10-16T02:53:10.000Z" + "SpotPrice": "0.985300", + "Timestamp": "2024-05-16T08:48:21.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125200", - "Timestamp": "2019-10-16T02:52:39.000Z" + "SpotPrice": "1.242900", + "Timestamp": "2024-05-16T08:48:21.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.165200", - "Timestamp": "2019-10-16T02:52:39.000Z" + "SpotPrice": "1.237900", + "Timestamp": "2024-05-16T08:48:21.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065200", - "Timestamp": "2019-10-16T02:52:39.000Z" + "SpotPrice": "1.112900", + "Timestamp": "2024-05-16T08:48:21.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.943600", + "Timestamp": "2024-05-16T08:48:20.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.658300", - "Timestamp": "2019-10-16T02:52:36.000Z" + "SpotPrice": "0.601300", + "Timestamp": "2024-05-16T08:48:20.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.628300", - "Timestamp": "2019-10-16T02:52:36.000Z" + "SpotPrice": "0.596300", + "Timestamp": "2024-05-16T08:48:20.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.528300", - "Timestamp": "2019-10-16T02:52:36.000Z" + "SpotPrice": "0.471300", + "Timestamp": "2024-05-16T08:48:20.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.538200", - "Timestamp": "2019-10-16T02:52:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.129300", + "Timestamp": "2024-05-16T08:48:19.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.337600", - "Timestamp": "2019-10-16T02:52:34.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.254400", + "Timestamp": "2024-05-16T08:48:19.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.503200", - "Timestamp": "2019-10-16T02:46:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.124300", + "Timestamp": "2024-05-16T08:48:19.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.890100", - "Timestamp": "2019-10-16T02:44:24.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.249400", + "Timestamp": "2024-05-16T08:48:19.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.860100", - "Timestamp": "2019-10-16T02:44:24.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.999300", + "Timestamp": "2024-05-16T08:48:19.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.760100", - "Timestamp": "2019-10-16T02:44:24.000Z" + "SpotPrice": "5.124400", + "Timestamp": "2024-05-16T08:48:19.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.413600", - "Timestamp": "2019-10-16T02:44:17.000Z" + "SpotPrice": "0.120900", + "Timestamp": "2024-05-16T08:48:19.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.383600", - "Timestamp": "2019-10-16T02:44:17.000Z" + "SpotPrice": "0.117200", + "Timestamp": "2024-05-16T08:48:19.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.283600", - "Timestamp": "2019-10-16T02:44:17.000Z" + "SpotPrice": "0.060900", + "Timestamp": "2024-05-16T08:48:19.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.994300", - "Timestamp": "2019-10-16T02:36:38.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.135100", + "Timestamp": "2024-05-16T08:48:18.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.964300", - "Timestamp": "2019-10-16T02:36:38.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.242600", + "Timestamp": "2024-05-16T08:48:18.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.864300", - "Timestamp": "2019-10-16T02:36:38.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.055100", + "Timestamp": "2024-05-16T08:48:18.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.747000", + "Timestamp": "2024-05-16T08:48:16.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.420300", - "Timestamp": "2019-10-16T02:36:17.000Z" + "SpotPrice": "4.117300", + "Timestamp": "2024-05-16T08:48:15.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.390300", - "Timestamp": "2019-10-16T02:36:17.000Z" + "SpotPrice": "4.112300", + "Timestamp": "2024-05-16T08:48:15.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.290300", - "Timestamp": "2019-10-16T02:36:17.000Z" + "SpotPrice": "3.987300", + "Timestamp": "2024-05-16T08:48:15.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.large", "ProductDescription": "Windows", - "SpotPrice": "0.850400", - "Timestamp": "2019-10-16T02:36:05.000Z" + "SpotPrice": "0.147000", + "Timestamp": "2024-05-16T08:48:14.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.622500", + "Timestamp": "2024-05-16T08:48:12.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.205000", + "Timestamp": "2024-05-16T08:48:10.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3en.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.518000", - "Timestamp": "2019-10-16T02:35:56.000Z" + "SpotPrice": "0.603000", + "Timestamp": "2024-05-16T08:48:10.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3en.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.488000", - "Timestamp": "2019-10-16T02:35:56.000Z" + "SpotPrice": "0.598000", + "Timestamp": "2024-05-16T08:48:10.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3en.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.388000", - "Timestamp": "2019-10-16T02:35:56.000Z" + "SpotPrice": "0.473000", + "Timestamp": "2024-05-16T08:48:10.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.427600", - "Timestamp": "2019-10-16T02:35:51.000Z" + "SpotPrice": "3.490500", + "Timestamp": "2024-05-16T08:48:10.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.714900", + "Timestamp": "2024-05-16T08:48:09.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.457600", - "Timestamp": "2019-10-16T02:35:47.000Z" + "SpotPrice": "3.133400", + "Timestamp": "2024-05-16T08:48:09.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.427600", - "Timestamp": "2019-10-16T02:35:47.000Z" + "SpotPrice": "3.128400", + "Timestamp": "2024-05-16T08:48:09.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.327600", - "Timestamp": "2019-10-16T02:35:47.000Z" + "SpotPrice": "3.003400", + "Timestamp": "2024-05-16T08:48:09.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.038600", - "Timestamp": "2019-10-16T02:34:56.000Z" + "SpotPrice": "6.699100", + "Timestamp": "2024-05-16T08:48:09.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.274600", - "Timestamp": "2019-10-16T02:28:01.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c4.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.244600", - "Timestamp": "2019-10-16T02:28:01.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.859200", + "Timestamp": "2024-05-16T08:48:08.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.144600", - "Timestamp": "2019-10-16T02:28:01.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.132800", + "Timestamp": "2024-05-16T08:48:08.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.476500", - "Timestamp": "2019-10-16T02:27:46.000Z" + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T08:48:08.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gd.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.446500", - "Timestamp": "2019-10-16T02:27:46.000Z" + "SpotPrice": "0.098800", + "Timestamp": "2024-05-16T08:48:08.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.346500", - "Timestamp": "2019-10-16T02:27:46.000Z" + "SpotPrice": "0.042500", + "Timestamp": "2024-05-16T08:48:08.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "13.696700", + "Timestamp": "2024-05-16T08:48:08.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.461800", - "Timestamp": "2019-10-16T02:27:26.000Z" + "SpotPrice": "1.525100", + "Timestamp": "2024-05-16T08:48:08.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.431800", - "Timestamp": "2019-10-16T02:27:26.000Z" + "SpotPrice": "1.520100", + "Timestamp": "2024-05-16T08:48:08.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.331800", - "Timestamp": "2019-10-16T02:27:26.000Z" + "SpotPrice": "1.395100", + "Timestamp": "2024-05-16T08:48:08.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.128800", - "Timestamp": "2019-10-16T02:27:25.000Z" + "SpotPrice": "0.826600", + "Timestamp": "2024-05-16T08:48:07.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.168800", - "Timestamp": "2019-10-16T02:27:25.000Z" + "SpotPrice": "0.821600", + "Timestamp": "2024-05-16T08:48:07.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.068800", - "Timestamp": "2019-10-16T02:27:25.000Z" + "SpotPrice": "0.696600", + "Timestamp": "2024-05-16T08:48:07.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.562700", - "Timestamp": "2019-10-16T02:27:13.000Z" + "SpotPrice": "1.015300", + "Timestamp": "2024-05-16T08:48:07.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.532700", - "Timestamp": "2019-10-16T02:27:13.000Z" + "SpotPrice": "1.010300", + "Timestamp": "2024-05-16T08:48:07.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.432700", - "Timestamp": "2019-10-16T02:27:13.000Z" + "SpotPrice": "0.885300", + "Timestamp": "2024-05-16T08:48:07.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.459000", - "Timestamp": "2019-10-16T02:27:13.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.077800", + "Timestamp": "2024-05-16T08:48:07.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.429000", - "Timestamp": "2019-10-16T02:27:13.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.254800", + "Timestamp": "2024-05-16T08:48:06.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.329000", - "Timestamp": "2019-10-16T02:27:13.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.257100", + "Timestamp": "2024-05-16T08:48:06.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.115200", - "Timestamp": "2019-10-16T02:27:09.000Z" + "SpotPrice": "0.270200", + "Timestamp": "2024-05-16T08:48:06.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.154900", + "Timestamp": "2024-05-16T08:48:06.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094500", - "Timestamp": "2019-10-16T02:24:18.000Z" + "SpotPrice": "1.359100", + "Timestamp": "2024-05-16T08:48:06.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134500", - "Timestamp": "2019-10-16T02:24:18.000Z" + "SpotPrice": "1.354100", + "Timestamp": "2024-05-16T08:48:06.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034500", - "Timestamp": "2019-10-16T02:24:18.000Z" + "SpotPrice": "1.229100", + "Timestamp": "2024-05-16T08:48:06.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "p2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.454000", - "Timestamp": "2019-10-16T02:20:01.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.851100", + "Timestamp": "2024-05-16T08:48:06.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "p2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.454000", - "Timestamp": "2019-10-16T02:20:01.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.846100", + "Timestamp": "2024-05-16T08:48:06.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "p2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.454000", - "Timestamp": "2019-10-16T02:20:01.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.721100", + "Timestamp": "2024-05-16T08:48:06.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.910000", - "Timestamp": "2019-10-16T02:19:58.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.022500", + "Timestamp": "2024-05-16T08:48:05.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.910000", - "Timestamp": "2019-10-16T02:19:58.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.239400", + "Timestamp": "2024-05-16T08:48:05.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.910000", - "Timestamp": "2019-10-16T02:19:58.000Z" + "SpotPrice": "5.392600", + "Timestamp": "2024-05-16T08:48:05.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.880000", - "Timestamp": "2019-10-16T02:19:58.000Z" + "SpotPrice": "5.387600", + "Timestamp": "2024-05-16T08:48:05.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.880000", - "Timestamp": "2019-10-16T02:19:58.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.262600", + "Timestamp": "2024-05-16T08:48:05.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.080400", + "Timestamp": "2024-05-16T08:48:04.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.880000", - "Timestamp": "2019-10-16T02:19:58.000Z" + "SpotPrice": "1.075400", + "Timestamp": "2024-05-16T08:48:04.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.780000", - "Timestamp": "2019-10-16T02:19:58.000Z" + "SpotPrice": "0.950400", + "Timestamp": "2024-05-16T08:48:04.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.780000", - "Timestamp": "2019-10-16T02:19:58.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.519600", + "Timestamp": "2024-05-16T08:48:04.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.780000", - "Timestamp": "2019-10-16T02:19:58.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.164200", + "Timestamp": "2024-05-16T08:48:03.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.227100", - "Timestamp": "2019-10-16T02:19:17.000Z" + "SpotPrice": "3.081700", + "Timestamp": "2024-05-16T08:48:03.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.197100", - "Timestamp": "2019-10-16T02:19:17.000Z" + "SpotPrice": "3.076700", + "Timestamp": "2024-05-16T08:48:03.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.097100", - "Timestamp": "2019-10-16T02:19:17.000Z" + "SpotPrice": "2.951700", + "Timestamp": "2024-05-16T08:48:03.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.677600", - "Timestamp": "2019-10-16T02:18:59.000Z" + "SpotPrice": "0.374800", + "Timestamp": "2024-05-16T08:48:03.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d2.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.647600", - "Timestamp": "2019-10-16T02:18:59.000Z" + "SpotPrice": "0.414800", + "Timestamp": "2024-05-16T08:48:03.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d2.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.547600", - "Timestamp": "2019-10-16T02:18:59.000Z" + "SpotPrice": "0.314800", + "Timestamp": "2024-05-16T08:48:03.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.409000", - "Timestamp": "2019-10-16T02:18:46.000Z" + "SpotPrice": "14.869000", + "Timestamp": "2024-05-16T08:48:03.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.409000", - "Timestamp": "2019-10-16T02:18:46.000Z" + "SpotPrice": "14.757500", + "Timestamp": "2024-05-16T08:48:03.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.409000", - "Timestamp": "2019-10-16T02:18:46.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.732100", + "Timestamp": "2024-05-16T08:48:03.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.795200", - "Timestamp": "2019-10-16T02:18:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.727100", + "Timestamp": "2024-05-16T08:48:03.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.795200", - "Timestamp": "2019-10-16T02:18:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.602100", + "Timestamp": "2024-05-16T08:48:03.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.795200", - "Timestamp": "2019-10-16T02:18:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.392700", + "Timestamp": "2024-05-16T08:48:03.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.058000", - "Timestamp": "2019-10-16T02:18:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.387700", + "Timestamp": "2024-05-16T08:48:03.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.058000", - "Timestamp": "2019-10-16T02:18:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.262700", + "Timestamp": "2024-05-16T08:48:03.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.058000", - "Timestamp": "2019-10-16T02:18:28.000Z" + "SpotPrice": "4.167000", + "Timestamp": "2024-05-16T08:48:03.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.597200", - "Timestamp": "2019-10-16T02:18:11.000Z" + "SpotPrice": "2.074400", + "Timestamp": "2024-05-16T08:48:03.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.597200", - "Timestamp": "2019-10-16T02:18:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.069400", + "Timestamp": "2024-05-16T08:48:03.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.597200", - "Timestamp": "2019-10-16T02:18:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.944400", + "Timestamp": "2024-05-16T08:48:03.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.567200", - "Timestamp": "2019-10-16T02:18:11.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.125800", + "Timestamp": "2024-05-16T08:48:03.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.567200", - "Timestamp": "2019-10-16T02:18:11.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.277400", + "Timestamp": "2024-05-16T08:48:03.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gn.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.567200", - "Timestamp": "2019-10-16T02:18:11.000Z" + "SpotPrice": "1.272400", + "Timestamp": "2024-05-16T08:48:03.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.467200", - "Timestamp": "2019-10-16T02:18:11.000Z" + "SpotPrice": "1.147400", + "Timestamp": "2024-05-16T08:48:03.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.467200", - "Timestamp": "2019-10-16T02:18:11.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.293900", + "Timestamp": "2024-05-16T08:48:03.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.288900", + "Timestamp": "2024-05-16T08:48:03.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.467200", - "Timestamp": "2019-10-16T02:18:11.000Z" + "SpotPrice": "0.163900", + "Timestamp": "2024-05-16T08:48:03.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "f1.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.625000", - "Timestamp": "2019-10-16T02:17:58.000Z" + "SpotPrice": "0.811300", + "Timestamp": "2024-05-16T08:48:02.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "f1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.625000", - "Timestamp": "2019-10-16T02:17:58.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.806300", + "Timestamp": "2024-05-16T08:48:02.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "f1.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.681300", + "Timestamp": "2024-05-16T08:48:02.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.625000", - "Timestamp": "2019-10-16T02:17:58.000Z" + "SpotPrice": "3.231600", + "Timestamp": "2024-05-16T08:48:02.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "f1.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.595000", - "Timestamp": "2019-10-16T02:17:58.000Z" + "SpotPrice": "3.226600", + "Timestamp": "2024-05-16T08:48:02.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "f1.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.595000", - "Timestamp": "2019-10-16T02:17:58.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.101600", + "Timestamp": "2024-05-16T08:48:02.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "f1.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.595000", - "Timestamp": "2019-10-16T02:17:58.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.533900", + "Timestamp": "2024-05-16T08:48:01.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "f1.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.495000", - "Timestamp": "2019-10-16T02:17:58.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T08:48:01.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "f1.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.495000", - "Timestamp": "2019-10-16T02:17:58.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.809000", + "Timestamp": "2024-05-16T08:48:01.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "f1.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.804000", + "Timestamp": "2024-05-16T08:48:01.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.495000", - "Timestamp": "2019-10-16T02:17:58.000Z" + "SpotPrice": "0.679000", + "Timestamp": "2024-05-16T08:48:01.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.062000", - "Timestamp": "2019-10-16T02:17:17.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.226200", + "Timestamp": "2024-05-16T08:48:01.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.130000", - "Timestamp": "2019-10-16T02:17:17.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.221200", + "Timestamp": "2024-05-16T08:48:01.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.096200", + "Timestamp": "2024-05-16T08:48:01.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.130000", - "Timestamp": "2019-10-16T02:17:17.000Z" + "SpotPrice": "10.646800", + "Timestamp": "2024-05-16T08:48:01.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.130000", - "Timestamp": "2019-10-16T02:17:17.000Z" + "SpotPrice": "6.709300", + "Timestamp": "2024-05-16T08:48:01.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.802000", - "Timestamp": "2019-10-16T02:17:06.000Z" + "SpotPrice": "5.672600", + "Timestamp": "2024-05-16T08:48:00.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.802000", - "Timestamp": "2019-10-16T02:17:06.000Z" + "SpotPrice": "5.051200", + "Timestamp": "2024-05-16T08:48:00.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.772000", - "Timestamp": "2019-10-16T02:17:06.000Z" + "SpotPrice": "5.667600", + "Timestamp": "2024-05-16T08:48:00.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.772000", - "Timestamp": "2019-10-16T02:17:06.000Z" + "SpotPrice": "5.046200", + "Timestamp": "2024-05-16T08:48:00.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.672000", - "Timestamp": "2019-10-16T02:17:06.000Z" + "SpotPrice": "5.542600", + "Timestamp": "2024-05-16T08:48:00.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.672000", - "Timestamp": "2019-10-16T02:17:06.000Z" + "SpotPrice": "4.921200", + "Timestamp": "2024-05-16T08:48:00.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "d2.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.890000", - "Timestamp": "2019-10-16T02:16:51.000Z" + "SpotPrice": "2.708700", + "Timestamp": "2024-05-16T08:48:00.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.958000", - "Timestamp": "2019-10-16T02:16:51.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.678700", + "Timestamp": "2024-05-16T08:48:00.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.958000", - "Timestamp": "2019-10-16T02:16:51.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.578700", + "Timestamp": "2024-05-16T08:48:00.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.146600", + "Timestamp": "2024-05-16T08:48:00.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.958000", - "Timestamp": "2019-10-16T02:16:51.000Z" + "SpotPrice": "1.211600", + "Timestamp": "2024-05-16T08:48:00.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.860000", - "Timestamp": "2019-10-16T02:16:51.000Z" + "SpotPrice": "1.206600", + "Timestamp": "2024-05-16T08:48:00.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.928000", - "Timestamp": "2019-10-16T02:16:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.081600", + "Timestamp": "2024-05-16T08:48:00.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.928000", - "Timestamp": "2019-10-16T02:16:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.047000", + "Timestamp": "2024-05-16T08:48:00.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.928000", - "Timestamp": "2019-10-16T02:16:51.000Z" + "SpotPrice": "2.042000", + "Timestamp": "2024-05-16T08:48:00.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.760000", - "Timestamp": "2019-10-16T02:16:51.000Z" + "SpotPrice": "1.917000", + "Timestamp": "2024-05-16T08:48:00.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.828000", - "Timestamp": "2019-10-16T02:16:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.046100", + "Timestamp": "2024-05-16T08:48:00.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.828000", - "Timestamp": "2019-10-16T02:16:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096800", + "Timestamp": "2024-05-16T08:47:59.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.828000", - "Timestamp": "2019-10-16T02:16:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136800", + "Timestamp": "2024-05-16T08:47:59.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.961400", - "Timestamp": "2019-10-16T02:16:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036800", + "Timestamp": "2024-05-16T08:47:59.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c3.large", "ProductDescription": "Windows", - "SpotPrice": "5.961400", - "Timestamp": "2019-10-16T02:16:51.000Z" + "SpotPrice": "0.132400", + "Timestamp": "2024-05-16T08:47:59.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.961400", - "Timestamp": "2019-10-16T02:16:51.000Z" + "SpotPrice": "6.408700", + "Timestamp": "2024-05-16T08:47:59.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.961400", - "Timestamp": "2019-10-16T02:16:51.000Z" + "SpotPrice": "2.145800", + "Timestamp": "2024-05-16T08:47:58.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "a1.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.675400", - "Timestamp": "2019-10-16T02:16:20.000Z" + "SpotPrice": "0.329400", + "Timestamp": "2024-05-16T08:47:58.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.675400", - "Timestamp": "2019-10-16T02:16:20.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "a1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324400", + "Timestamp": "2024-05-16T08:47:58.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.675400", - "Timestamp": "2019-10-16T02:16:20.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199400", + "Timestamp": "2024-05-16T08:47:58.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.675400", - "Timestamp": "2019-10-16T02:16:20.000Z" + "SpotPrice": "1.665900", + "Timestamp": "2024-05-16T08:47:58.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.645400", - "Timestamp": "2019-10-16T02:16:20.000Z" + "SpotPrice": "1.660900", + "Timestamp": "2024-05-16T08:47:58.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.645400", - "Timestamp": "2019-10-16T02:16:20.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.535900", + "Timestamp": "2024-05-16T08:47:58.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.645400", - "Timestamp": "2019-10-16T02:16:20.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.807200", + "Timestamp": "2024-05-16T08:47:58.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.645400", - "Timestamp": "2019-10-16T02:16:20.000Z" + "SpotPrice": "1.802200", + "Timestamp": "2024-05-16T08:47:58.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.545400", - "Timestamp": "2019-10-16T02:16:20.000Z" + "SpotPrice": "1.677200", + "Timestamp": "2024-05-16T08:47:58.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.545400", - "Timestamp": "2019-10-16T02:16:20.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.143900", + "Timestamp": "2024-05-16T08:47:56.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.545400", - "Timestamp": "2019-10-16T02:16:20.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.138900", + "Timestamp": "2024-05-16T08:47:56.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.545400", - "Timestamp": "2019-10-16T02:16:20.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.144000", - "Timestamp": "2019-10-16T02:16:08.000Z" + "SpotPrice": "4.013900", + "Timestamp": "2024-05-16T08:47:56.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.144000", - "Timestamp": "2019-10-16T02:16:08.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131900", + "Timestamp": "2024-05-16T08:47:56.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.144000", - "Timestamp": "2019-10-16T02:16:08.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128200", + "Timestamp": "2024-05-16T08:47:56.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.434200", - "Timestamp": "2019-10-16T02:16:05.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071900", + "Timestamp": "2024-05-16T08:47:56.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.434200", - "Timestamp": "2019-10-16T02:16:05.000Z" + "SpotPrice": "5.325000", + "Timestamp": "2024-05-16T08:47:56.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.310200", - "Timestamp": "2019-10-16T02:15:51.000Z" + "SpotPrice": "3.691300", + "Timestamp": "2024-05-16T08:47:56.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.310200", - "Timestamp": "2019-10-16T02:15:51.000Z" + "SpotPrice": "3.122500", + "Timestamp": "2024-05-16T08:47:56.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.350200", - "Timestamp": "2019-10-16T02:15:51.000Z" + "SpotPrice": "3.686300", + "Timestamp": "2024-05-16T08:47:56.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.350200", - "Timestamp": "2019-10-16T02:15:51.000Z" + "SpotPrice": "3.117500", + "Timestamp": "2024-05-16T08:47:56.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.250200", - "Timestamp": "2019-10-16T02:15:51.000Z" + "SpotPrice": "3.561300", + "Timestamp": "2024-05-16T08:47:56.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.250200", - "Timestamp": "2019-10-16T02:15:51.000Z" + "SpotPrice": "2.992500", + "Timestamp": "2024-05-16T08:47:56.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.303900", + "Timestamp": "2024-05-16T08:47:56.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.271700", - "Timestamp": "2019-10-16T02:11:39.000Z" + "SpotPrice": "3.506100", + "Timestamp": "2024-05-16T08:47:56.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.501100", + "Timestamp": "2024-05-16T08:47:56.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.376100", + "Timestamp": "2024-05-16T08:47:56.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.126600", + "Timestamp": "2024-05-16T08:47:55.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.271700", - "Timestamp": "2019-10-16T02:11:39.000Z" + "SpotPrice": "3.259200", + "Timestamp": "2024-05-16T08:47:55.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.254200", + "Timestamp": "2024-05-16T08:47:55.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.129200", + "Timestamp": "2024-05-16T08:47:55.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.6xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.271700", - "Timestamp": "2019-10-16T02:11:39.000Z" + "SpotPrice": "1.300500", + "Timestamp": "2024-05-16T08:47:55.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.6xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.241700", - "Timestamp": "2019-10-16T02:11:39.000Z" + "SpotPrice": "1.295500", + "Timestamp": "2024-05-16T08:47:55.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.170500", + "Timestamp": "2024-05-16T08:47:55.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.050200", + "Timestamp": "2024-05-16T08:47:55.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.metal-48xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.241700", - "Timestamp": "2019-10-16T02:11:39.000Z" + "SpotPrice": "7.045200", + "Timestamp": "2024-05-16T08:47:55.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.920200", + "Timestamp": "2024-05-16T08:47:55.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.577300", + "Timestamp": "2024-05-16T08:47:55.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.431500", + "Timestamp": "2024-05-16T08:47:54.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.469500", + "Timestamp": "2024-05-16T08:47:54.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gd.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.241700", - "Timestamp": "2019-10-16T02:11:39.000Z" + "SpotPrice": "0.464500", + "Timestamp": "2024-05-16T08:47:54.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.141700", - "Timestamp": "2019-10-16T02:11:39.000Z" + "SpotPrice": "0.339500", + "Timestamp": "2024-05-16T08:47:54.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.582500", + "Timestamp": "2024-05-16T08:47:54.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.577500", + "Timestamp": "2024-05-16T08:47:54.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.141700", - "Timestamp": "2019-10-16T02:11:39.000Z" + "SpotPrice": "1.452500", + "Timestamp": "2024-05-16T08:47:54.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.730800", + "Timestamp": "2024-05-16T08:47:54.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.725800", + "Timestamp": "2024-05-16T08:47:54.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.141700", - "Timestamp": "2019-10-16T02:11:39.000Z" + "SpotPrice": "2.600800", + "Timestamp": "2024-05-16T08:47:54.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.509700", - "Timestamp": "2019-10-16T02:11:37.000Z" + "SpotPrice": "4.286100", + "Timestamp": "2024-05-16T08:47:54.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.509700", - "Timestamp": "2019-10-16T02:11:37.000Z" + "SpotPrice": "0.526000", + "Timestamp": "2024-05-16T08:47:54.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.509700", - "Timestamp": "2019-10-16T02:11:37.000Z" + "SpotPrice": "0.307000", + "Timestamp": "2024-05-16T08:47:53.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.212400", - "Timestamp": "2019-10-16T02:11:12.000Z" + "SpotPrice": "0.521900", + "Timestamp": "2024-05-16T08:47:53.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.053300", - "Timestamp": "2019-10-16T02:10:58.000Z" + "SpotPrice": "2.665200", + "Timestamp": "2024-05-16T08:47:53.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4g.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.023300", - "Timestamp": "2019-10-16T02:10:58.000Z" + "SpotPrice": "2.660200", + "Timestamp": "2024-05-16T08:47:53.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.923300", - "Timestamp": "2019-10-16T02:10:58.000Z" + "SpotPrice": "2.535200", + "Timestamp": "2024-05-16T08:47:53.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.081900", + "Timestamp": "2024-05-16T08:47:52.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2gd.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.274400", - "Timestamp": "2019-10-16T02:10:56.000Z" + "SpotPrice": "0.858300", + "Timestamp": "2024-05-16T08:47:52.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2gd.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.244400", - "Timestamp": "2019-10-16T02:10:56.000Z" + "SpotPrice": "0.853300", + "Timestamp": "2024-05-16T08:47:52.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.144400", - "Timestamp": "2019-10-16T02:10:56.000Z" + "SpotPrice": "0.728300", + "Timestamp": "2024-05-16T08:47:52.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.277200", - "Timestamp": "2019-10-16T02:10:56.000Z" + "SpotPrice": "3.605300", + "Timestamp": "2024-05-16T08:47:52.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.247200", - "Timestamp": "2019-10-16T02:10:56.000Z" + "SpotPrice": "3.600300", + "Timestamp": "2024-05-16T08:47:52.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.147200", - "Timestamp": "2019-10-16T02:10:56.000Z" + "SpotPrice": "3.475300", + "Timestamp": "2024-05-16T08:47:52.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229700", + "Timestamp": "2024-05-16T08:47:51.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.228000", - "Timestamp": "2019-10-16T02:10:51.000Z" + "SpotPrice": "2.277900", + "Timestamp": "2024-05-16T08:47:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.228000", - "Timestamp": "2019-10-16T02:10:51.000Z" + "SpotPrice": "2.259900", + "Timestamp": "2024-05-16T08:47:51.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.198000", - "Timestamp": "2019-10-16T02:10:51.000Z" + "SpotPrice": "2.272900", + "Timestamp": "2024-05-16T08:47:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.198000", - "Timestamp": "2019-10-16T02:10:51.000Z" + "SpotPrice": "2.254900", + "Timestamp": "2024-05-16T08:47:51.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.098000", - "Timestamp": "2019-10-16T02:10:51.000Z" + "SpotPrice": "2.147900", + "Timestamp": "2024-05-16T08:47:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.098000", - "Timestamp": "2019-10-16T02:10:51.000Z" + "SpotPrice": "2.129900", + "Timestamp": "2024-05-16T08:47:51.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.981700", - "Timestamp": "2019-10-16T02:10:48.000Z" + "SpotPrice": "0.535800", + "Timestamp": "2024-05-16T08:47:51.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.951700", - "Timestamp": "2019-10-16T02:10:48.000Z" + "SpotPrice": "0.530800", + "Timestamp": "2024-05-16T08:47:51.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.851700", - "Timestamp": "2019-10-16T02:10:48.000Z" - }, - { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.286600", - "Timestamp": "2019-10-16T02:10:44.000Z" + "SpotPrice": "0.405800", + "Timestamp": "2024-05-16T08:47:51.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.498000", - "Timestamp": "2019-10-16T02:10:40.000Z" + "SpotPrice": "8.363400", + "Timestamp": "2024-05-16T08:47:51.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.498000", - "Timestamp": "2019-10-16T02:10:40.000Z" + "SpotPrice": "2.770100", + "Timestamp": "2024-05-16T08:47:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.498000", - "Timestamp": "2019-10-16T02:10:40.000Z" + "SpotPrice": "13.178700", + "Timestamp": "2024-05-16T08:47:51.000Z" }, { - "AvailabilityZone": "us-west-2b", + "AvailabilityZone": "us-east-1a", "InstanceType": "m5.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.065500", - "Timestamp": "2019-10-16T02:10:38.000Z" + "SpotPrice": "2.303800", + "Timestamp": "2024-05-16T08:47:51.000Z" }, { - "AvailabilityZone": "us-west-2b", + "AvailabilityZone": "us-east-1a", "InstanceType": "m5.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.035500", - "Timestamp": "2019-10-16T02:10:38.000Z" + "SpotPrice": "2.273800", + "Timestamp": "2024-05-16T08:47:51.000Z" }, { - "AvailabilityZone": "us-west-2b", + "AvailabilityZone": "us-east-1a", "InstanceType": "m5.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.935500", - "Timestamp": "2019-10-16T02:10:38.000Z" + "SpotPrice": "2.173800", + "Timestamp": "2024-05-16T08:47:51.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.183300", + "Timestamp": "2024-05-16T08:47:49.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.178300", + "Timestamp": "2024-05-16T08:47:49.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.053300", + "Timestamp": "2024-05-16T08:47:49.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c4.large", "ProductDescription": "Windows", - "SpotPrice": "1.334800", - "Timestamp": "2019-10-16T02:10:30.000Z" + "SpotPrice": "0.136200", + "Timestamp": "2024-05-16T08:47:49.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "f1.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.167000", - "Timestamp": "2019-10-16T02:10:22.000Z" + "SpotPrice": "0.786900", + "Timestamp": "2024-05-16T08:47:49.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "f1.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.137000", - "Timestamp": "2019-10-16T02:10:22.000Z" + "SpotPrice": "0.756900", + "Timestamp": "2024-05-16T08:47:49.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "f1.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.037000", - "Timestamp": "2019-10-16T02:10:22.000Z" + "SpotPrice": "0.656900", + "Timestamp": "2024-05-16T08:47:49.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.413300", - "Timestamp": "2019-10-16T02:07:37.000Z" + "SpotPrice": "1.023900", + "Timestamp": "2024-05-16T08:47:48.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.383300", - "Timestamp": "2019-10-16T02:07:37.000Z" + "SpotPrice": "1.018900", + "Timestamp": "2024-05-16T08:47:48.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.283300", - "Timestamp": "2019-10-16T02:07:37.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.019300", - "Timestamp": "2019-10-16T02:07:37.000Z" + "SpotPrice": "0.893900", + "Timestamp": "2024-05-16T08:47:48.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.670900", - "Timestamp": "2019-10-16T02:04:37.000Z" + "SpotPrice": "1.935400", + "Timestamp": "2024-05-16T08:47:48.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.640900", - "Timestamp": "2019-10-16T02:04:37.000Z" + "SpotPrice": "1.930400", + "Timestamp": "2024-05-16T08:47:48.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.540900", - "Timestamp": "2019-10-16T02:04:37.000Z" + "SpotPrice": "1.805400", + "Timestamp": "2024-05-16T08:47:48.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.702600", - "Timestamp": "2019-10-16T02:02:30.000Z" + "SpotPrice": "1.097400", + "Timestamp": "2024-05-16T08:47:48.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.672600", - "Timestamp": "2019-10-16T02:02:30.000Z" + "SpotPrice": "1.092400", + "Timestamp": "2024-05-16T08:47:48.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.572600", - "Timestamp": "2019-10-16T02:02:30.000Z" + "SpotPrice": "0.967400", + "Timestamp": "2024-05-16T08:47:48.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.358200", - "Timestamp": "2019-10-16T02:02:25.000Z" + "SpotPrice": "1.265700", + "Timestamp": "2024-05-16T08:47:48.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.398200", - "Timestamp": "2019-10-16T02:02:25.000Z" + "SpotPrice": "1.260700", + "Timestamp": "2024-05-16T08:47:48.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.298200", - "Timestamp": "2019-10-16T02:02:25.000Z" + "SpotPrice": "1.135700", + "Timestamp": "2024-05-16T08:47:48.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "vt1.6xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.469700", - "Timestamp": "2019-10-16T02:02:21.000Z" + "SpotPrice": "0.886700", + "Timestamp": "2024-05-16T08:47:48.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "vt1.6xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.439700", - "Timestamp": "2019-10-16T02:02:21.000Z" + "SpotPrice": "0.856700", + "Timestamp": "2024-05-16T08:47:48.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "vt1.6xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.339700", - "Timestamp": "2019-10-16T02:02:21.000Z" + "SpotPrice": "0.756700", + "Timestamp": "2024-05-16T08:47:48.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.384400", - "Timestamp": "2019-10-16T01:59:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.354900", + "Timestamp": "2024-05-16T08:47:48.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.384400", - "Timestamp": "2019-10-16T01:59:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.373400", + "Timestamp": "2024-05-16T08:47:48.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7gd.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.384400", - "Timestamp": "2019-10-16T01:59:39.000Z" + "SpotPrice": "0.767300", + "Timestamp": "2024-05-16T08:47:47.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7gd.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.354400", - "Timestamp": "2019-10-16T01:59:39.000Z" + "SpotPrice": "0.762300", + "Timestamp": "2024-05-16T08:47:47.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.354400", - "Timestamp": "2019-10-16T01:59:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.637300", + "Timestamp": "2024-05-16T08:47:47.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.354400", - "Timestamp": "2019-10-16T01:59:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.715500", + "Timestamp": "2024-05-16T08:47:47.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.254400", - "Timestamp": "2019-10-16T01:59:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.734100", + "Timestamp": "2024-05-16T08:47:46.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.254400", - "Timestamp": "2019-10-16T01:59:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.729100", + "Timestamp": "2024-05-16T08:47:46.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5zn.3xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.254400", - "Timestamp": "2019-10-16T01:59:39.000Z" + "SpotPrice": "0.604100", + "Timestamp": "2024-05-16T08:47:46.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.162600", - "Timestamp": "2019-10-16T01:57:29.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.314000", + "Timestamp": "2024-05-16T08:47:46.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.167400", - "Timestamp": "2019-10-16T01:54:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.309000", + "Timestamp": "2024-05-16T08:47:46.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.287400", - "Timestamp": "2019-10-16T01:54:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.184000", + "Timestamp": "2024-05-16T08:47:46.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i-flex.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.143900", - "Timestamp": "2019-10-16T01:54:37.000Z" + "SpotPrice": "2.072000", + "Timestamp": "2024-05-16T08:47:46.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.248600", - "Timestamp": "2019-10-16T01:54:17.000Z" + "SpotPrice": "1.674700", + "Timestamp": "2024-05-16T08:47:46.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.218600", - "Timestamp": "2019-10-16T01:54:17.000Z" + "SpotPrice": "1.669700", + "Timestamp": "2024-05-16T08:47:46.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.118600", - "Timestamp": "2019-10-16T01:54:17.000Z" + "SpotPrice": "1.544700", + "Timestamp": "2024-05-16T08:47:46.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.476100", - "Timestamp": "2019-10-16T01:54:06.000Z" + "SpotPrice": "0.920200", + "Timestamp": "2024-05-16T08:47:46.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.446100", - "Timestamp": "2019-10-16T01:54:06.000Z" + "SpotPrice": "0.915200", + "Timestamp": "2024-05-16T08:47:46.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.346100", - "Timestamp": "2019-10-16T01:54:06.000Z" + "SpotPrice": "0.790200", + "Timestamp": "2024-05-16T08:47:46.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m1.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.280500", - "Timestamp": "2019-10-16T01:53:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.048900", + "Timestamp": "2024-05-16T08:47:45.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.018900", + "Timestamp": "2024-05-16T08:47:45.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.918900", + "Timestamp": "2024-05-16T08:47:45.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.462700", - "Timestamp": "2019-10-16T01:53:56.000Z" + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T08:47:45.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.432700", - "Timestamp": "2019-10-16T01:53:56.000Z" + "SpotPrice": "0.099100", + "Timestamp": "2024-05-16T08:47:45.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.332700", - "Timestamp": "2019-10-16T01:53:56.000Z" + "SpotPrice": "0.042800", + "Timestamp": "2024-05-16T08:47:45.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.019300", - "Timestamp": "2019-10-16T01:46:58.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.203800", + "Timestamp": "2024-05-16T08:47:45.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.198800", + "Timestamp": "2024-05-16T08:47:45.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.073800", + "Timestamp": "2024-05-16T08:47:45.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.474800", - "Timestamp": "2019-10-16T01:46:21.000Z" + "SpotPrice": "0.473600", + "Timestamp": "2024-05-16T08:47:45.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.444800", - "Timestamp": "2019-10-16T01:46:21.000Z" + "SpotPrice": "0.468600", + "Timestamp": "2024-05-16T08:47:45.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.344800", - "Timestamp": "2019-10-16T01:46:21.000Z" + "SpotPrice": "0.343600", + "Timestamp": "2024-05-16T08:47:45.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.437000", - "Timestamp": "2019-10-16T01:45:44.000Z" + "SpotPrice": "1.222600", + "Timestamp": "2024-05-16T08:47:45.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.407000", - "Timestamp": "2019-10-16T01:45:44.000Z" + "SpotPrice": "1.217600", + "Timestamp": "2024-05-16T08:47:45.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.307000", - "Timestamp": "2019-10-16T01:45:44.000Z" + "SpotPrice": "1.092600", + "Timestamp": "2024-05-16T08:47:45.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.480200", - "Timestamp": "2019-10-16T01:45:41.000Z" + "SpotPrice": "0.278600", + "Timestamp": "2024-05-16T08:47:44.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.450200", - "Timestamp": "2019-10-16T01:45:41.000Z" + "SpotPrice": "0.273600", + "Timestamp": "2024-05-16T08:47:44.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.350200", - "Timestamp": "2019-10-16T01:45:41.000Z" + "SpotPrice": "0.148600", + "Timestamp": "2024-05-16T08:47:44.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.metal", "ProductDescription": "Windows", - "SpotPrice": "0.127400", - "Timestamp": "2019-10-16T01:43:54.000Z" + "SpotPrice": "6.647600", + "Timestamp": "2024-05-16T08:47:44.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.metal", "ProductDescription": "Windows", - "SpotPrice": "2.038600", - "Timestamp": "2019-10-16T01:38:40.000Z" + "SpotPrice": "6.751300", + "Timestamp": "2024-05-16T08:47:44.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5zn.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.306700", - "Timestamp": "2019-10-16T01:37:42.000Z" + "SpotPrice": "0.655700", + "Timestamp": "2024-05-16T08:47:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.289700", - "Timestamp": "2019-10-16T01:37:41.000Z" + "SpotPrice": "0.772600", + "Timestamp": "2024-05-16T08:47:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.259700", - "Timestamp": "2019-10-16T01:37:41.000Z" + "SpotPrice": "0.767600", + "Timestamp": "2024-05-16T08:47:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.159700", - "Timestamp": "2019-10-16T01:37:41.000Z" + "SpotPrice": "0.642600", + "Timestamp": "2024-05-16T08:47:43.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.984000", + "Timestamp": "2024-05-16T08:47:43.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.271300", + "Timestamp": "2024-05-16T08:47:43.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.198300", - "Timestamp": "2019-10-16T01:37:05.000Z" + "SpotPrice": "1.163200", + "Timestamp": "2024-05-16T08:47:43.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.238300", - "Timestamp": "2019-10-16T01:37:05.000Z" + "SpotPrice": "1.133200", + "Timestamp": "2024-05-16T08:47:43.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.138300", - "Timestamp": "2019-10-16T01:37:05.000Z" + "SpotPrice": "1.033200", + "Timestamp": "2024-05-16T08:47:43.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132100", - "Timestamp": "2019-10-16T01:36:57.000Z" + "SpotPrice": "2.000800", + "Timestamp": "2024-05-16T08:47:43.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172100", - "Timestamp": "2019-10-16T01:36:57.000Z" + "SpotPrice": "1.995800", + "Timestamp": "2024-05-16T08:47:43.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072100", - "Timestamp": "2019-10-16T01:36:57.000Z" + "SpotPrice": "1.870800", + "Timestamp": "2024-05-16T08:47:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.941300", - "Timestamp": "2019-10-16T01:36:20.000Z" + "SpotPrice": "2.804800", + "Timestamp": "2024-05-16T08:47:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.911300", - "Timestamp": "2019-10-16T01:36:20.000Z" + "SpotPrice": "2.799800", + "Timestamp": "2024-05-16T08:47:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.811300", - "Timestamp": "2019-10-16T01:36:20.000Z" + "SpotPrice": "2.674800", + "Timestamp": "2024-05-16T08:47:43.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.019300", - "Timestamp": "2019-10-16T01:31:45.000Z" + "SpotPrice": "2.513300", + "Timestamp": "2024-05-16T08:47:42.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.706300", - "Timestamp": "2019-10-16T01:29:35.000Z" + "SpotPrice": "0.180800", + "Timestamp": "2024-05-16T08:47:42.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.676300", - "Timestamp": "2019-10-16T01:29:35.000Z" + "SpotPrice": "0.177100", + "Timestamp": "2024-05-16T08:47:42.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.576300", - "Timestamp": "2019-10-16T01:29:35.000Z" + "SpotPrice": "0.120800", + "Timestamp": "2024-05-16T08:47:42.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "a1.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.099500", - "Timestamp": "2019-10-16T01:29:28.000Z" + "SpotPrice": "0.305300", + "Timestamp": "2024-05-16T08:47:42.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "a1.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.069500", - "Timestamp": "2019-10-16T01:29:28.000Z" + "SpotPrice": "0.300300", + "Timestamp": "2024-05-16T08:47:42.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "a1.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.969500", - "Timestamp": "2019-10-16T01:29:28.000Z" + "SpotPrice": "0.175300", + "Timestamp": "2024-05-16T08:47:42.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.166500", - "Timestamp": "2019-10-16T01:29:27.000Z" + "SpotPrice": "0.216500", + "Timestamp": "2024-05-16T08:47:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.136500", - "Timestamp": "2019-10-16T01:29:27.000Z" + "SpotPrice": "0.256500", + "Timestamp": "2024-05-16T08:47:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.036500", - "Timestamp": "2019-10-16T01:29:27.000Z" + "SpotPrice": "0.156500", + "Timestamp": "2024-05-16T08:47:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.473800", - "Timestamp": "2019-10-16T01:29:23.000Z" + "SpotPrice": "0.285300", + "Timestamp": "2024-05-16T08:47:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.443800", - "Timestamp": "2019-10-16T01:29:23.000Z" + "SpotPrice": "0.280300", + "Timestamp": "2024-05-16T08:47:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.343800", - "Timestamp": "2019-10-16T01:29:23.000Z" + "SpotPrice": "0.155300", + "Timestamp": "2024-05-16T08:47:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.133000", - "Timestamp": "2019-10-16T01:29:19.000Z" + "SpotPrice": "0.842000", + "Timestamp": "2024-05-16T08:47:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.173000", - "Timestamp": "2019-10-16T01:29:19.000Z" + "SpotPrice": "0.837000", + "Timestamp": "2024-05-16T08:47:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.073000", - "Timestamp": "2019-10-16T01:29:19.000Z" + "SpotPrice": "0.712000", + "Timestamp": "2024-05-16T08:47:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.543400", - "Timestamp": "2019-10-16T01:28:57.000Z" + "SpotPrice": "0.153600", + "Timestamp": "2024-05-16T08:47:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.513400", - "Timestamp": "2019-10-16T01:28:57.000Z" + "SpotPrice": "0.149900", + "Timestamp": "2024-05-16T08:47:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.413400", - "Timestamp": "2019-10-16T01:28:57.000Z" + "SpotPrice": "0.093600", + "Timestamp": "2024-05-16T08:47:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.722700", - "Timestamp": "2019-10-16T01:28:38.000Z" + "SpotPrice": "1.908400", + "Timestamp": "2024-05-16T08:47:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.692700", - "Timestamp": "2019-10-16T01:28:38.000Z" + "SpotPrice": "1.903400", + "Timestamp": "2024-05-16T08:47:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.592700", - "Timestamp": "2019-10-16T01:28:38.000Z" + "SpotPrice": "1.778400", + "Timestamp": "2024-05-16T08:47:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.171100", - "Timestamp": "2019-10-16T01:28:37.000Z" + "SpotPrice": "0.126800", + "Timestamp": "2024-05-16T08:47:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.211100", - "Timestamp": "2019-10-16T01:28:37.000Z" + "SpotPrice": "0.122800", + "Timestamp": "2024-05-16T08:47:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.111100", - "Timestamp": "2019-10-16T01:28:37.000Z" + "SpotPrice": "0.066800", + "Timestamp": "2024-05-16T08:47:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.248500", - "Timestamp": "2019-10-16T01:28:36.000Z" + "SpotPrice": "0.093100", + "Timestamp": "2024-05-16T08:47:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.218500", - "Timestamp": "2019-10-16T01:28:36.000Z" + "SpotPrice": "0.089400", + "Timestamp": "2024-05-16T08:47:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.118500", - "Timestamp": "2019-10-16T01:28:36.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.025800", - "Timestamp": "2019-10-16T01:23:34.000Z" + "SpotPrice": "0.033100", + "Timestamp": "2024-05-16T08:47:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.794800", - "Timestamp": "2019-10-16T01:20:48.000Z" + "SpotPrice": "0.371800", + "Timestamp": "2024-05-16T08:47:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.764800", - "Timestamp": "2019-10-16T01:20:48.000Z" + "SpotPrice": "0.366800", + "Timestamp": "2024-05-16T08:47:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.664800", - "Timestamp": "2019-10-16T01:20:48.000Z" + "SpotPrice": "0.241800", + "Timestamp": "2024-05-16T08:47:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094800", - "Timestamp": "2019-10-16T01:20:44.000Z" + "SpotPrice": "1.399500", + "Timestamp": "2024-05-16T08:47:40.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134800", - "Timestamp": "2019-10-16T01:20:44.000Z" + "SpotPrice": "1.394500", + "Timestamp": "2024-05-16T08:47:40.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034800", - "Timestamp": "2019-10-16T01:20:44.000Z" + "SpotPrice": "1.269500", + "Timestamp": "2024-05-16T08:47:40.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.163400", - "Timestamp": "2019-10-16T01:20:40.000Z" + "SpotPrice": "2.684300", + "Timestamp": "2024-05-16T08:47:40.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.203400", - "Timestamp": "2019-10-16T01:20:40.000Z" + "SpotPrice": "2.679300", + "Timestamp": "2024-05-16T08:47:40.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.103400", - "Timestamp": "2019-10-16T01:20:40.000Z" + "SpotPrice": "2.554300", + "Timestamp": "2024-05-16T08:47:40.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127800", - "Timestamp": "2019-10-16T01:20:37.000Z" + "SpotPrice": "2.035600", + "Timestamp": "2024-05-16T08:47:40.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.167800", - "Timestamp": "2019-10-16T01:20:37.000Z" + "SpotPrice": "2.005600", + "Timestamp": "2024-05-16T08:47:40.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067800", - "Timestamp": "2019-10-16T01:20:37.000Z" - }, - { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.057900", - "Timestamp": "2019-10-16T01:18:37.000Z" - }, - { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-16T01:16:55.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-16T01:16:55.000Z" + "SpotPrice": "1.905600", + "Timestamp": "2024-05-16T08:47:40.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-16T01:16:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.858400", + "Timestamp": "2024-05-16T08:47:40.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-16T01:16:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.853400", + "Timestamp": "2024-05-16T08:47:40.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "a1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093400", - "Timestamp": "2019-10-16T01:16:37.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.728400", + "Timestamp": "2024-05-16T08:47:40.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "a1.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093400", - "Timestamp": "2019-10-16T01:16:37.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "a1.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133400", - "Timestamp": "2019-10-16T01:16:37.000Z" + "SpotPrice": "0.276200", + "Timestamp": "2024-05-16T08:47:39.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "a1.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133400", - "Timestamp": "2019-10-16T01:16:37.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "a1.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033400", - "Timestamp": "2019-10-16T01:16:37.000Z" + "SpotPrice": "0.271200", + "Timestamp": "2024-05-16T08:47:39.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "a1.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033400", - "Timestamp": "2019-10-16T01:16:37.000Z" + "SpotPrice": "0.146200", + "Timestamp": "2024-05-16T08:47:39.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093800", - "Timestamp": "2019-10-16T01:13:49.000Z" + "SpotPrice": "0.443900", + "Timestamp": "2024-05-16T08:47:38.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133800", - "Timestamp": "2019-10-16T01:13:49.000Z" + "SpotPrice": "0.438900", + "Timestamp": "2024-05-16T08:47:38.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033800", - "Timestamp": "2019-10-16T01:13:49.000Z" + "SpotPrice": "0.313900", + "Timestamp": "2024-05-16T08:47:38.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.285600", - "Timestamp": "2019-10-16T01:12:32.000Z" + "SpotPrice": "0.766500", + "Timestamp": "2024-05-16T08:47:37.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.255600", - "Timestamp": "2019-10-16T01:12:32.000Z" + "SpotPrice": "0.736500", + "Timestamp": "2024-05-16T08:47:37.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.155600", - "Timestamp": "2019-10-16T01:12:32.000Z" + "SpotPrice": "0.636500", + "Timestamp": "2024-05-16T08:47:37.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.721800", - "Timestamp": "2019-10-16T01:12:29.000Z" + "SpotPrice": "1.297400", + "Timestamp": "2024-05-16T08:47:37.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.691800", - "Timestamp": "2019-10-16T01:12:29.000Z" + "SpotPrice": "1.292400", + "Timestamp": "2024-05-16T08:47:37.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.591800", - "Timestamp": "2019-10-16T01:12:29.000Z" + "SpotPrice": "1.167400", + "Timestamp": "2024-05-16T08:47:37.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.metal-32xl", "ProductDescription": "Windows", - "SpotPrice": "4.066600", - "Timestamp": "2019-10-16T01:12:26.000Z" + "SpotPrice": "9.441600", + "Timestamp": "2024-05-16T08:47:36.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t2.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.673000", - "Timestamp": "2019-10-16T01:12:07.000Z" + "SpotPrice": "0.290500", + "Timestamp": "2024-05-16T08:47:35.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t2.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.643000", - "Timestamp": "2019-10-16T01:12:07.000Z" + "SpotPrice": "0.260500", + "Timestamp": "2024-05-16T08:47:35.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t2.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.543000", - "Timestamp": "2019-10-16T01:12:07.000Z" + "SpotPrice": "0.160500", + "Timestamp": "2024-05-16T08:47:35.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.947200", + "Timestamp": "2024-05-16T08:47:35.000Z" + }, + { + "AvailabilityZone": "us-east-1e", + "InstanceType": "r4.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.240000", - "Timestamp": "2019-10-16T01:04:28.000Z" + "SpotPrice": "0.118900", + "Timestamp": "2024-05-16T08:47:34.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "r4.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.210000", - "Timestamp": "2019-10-16T01:04:28.000Z" + "SpotPrice": "0.158900", + "Timestamp": "2024-05-16T08:47:34.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "r4.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.110000", - "Timestamp": "2019-10-16T01:04:28.000Z" + "SpotPrice": "0.058900", + "Timestamp": "2024-05-16T08:47:34.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.260700", + "Timestamp": "2024-05-16T08:47:34.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.552600", - "Timestamp": "2019-10-16T01:04:24.000Z" + "SpotPrice": "0.168300", + "Timestamp": "2024-05-16T08:47:34.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.522600", - "Timestamp": "2019-10-16T01:04:24.000Z" + "SpotPrice": "0.164600", + "Timestamp": "2024-05-16T08:47:34.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.422600", - "Timestamp": "2019-10-16T01:04:24.000Z" + "SpotPrice": "0.108300", + "Timestamp": "2024-05-16T08:47:34.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.982300", - "Timestamp": "2019-10-16T01:04:12.000Z" + "SpotPrice": "0.930900", + "Timestamp": "2024-05-16T08:47:33.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.952300", - "Timestamp": "2019-10-16T01:04:12.000Z" + "SpotPrice": "0.925900", + "Timestamp": "2024-05-16T08:47:33.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.852300", - "Timestamp": "2019-10-16T01:04:12.000Z" + "SpotPrice": "0.800900", + "Timestamp": "2024-05-16T08:47:33.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.331800", - "Timestamp": "2019-10-16T01:04:10.000Z" + "SpotPrice": "0.097000", + "Timestamp": "2024-05-16T08:47:32.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.371800", - "Timestamp": "2019-10-16T01:04:10.000Z" + "SpotPrice": "0.093300", + "Timestamp": "2024-05-16T08:47:32.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.271800", - "Timestamp": "2019-10-16T01:04:10.000Z" + "SpotPrice": "0.037000", + "Timestamp": "2024-05-16T08:47:32.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.metal", "ProductDescription": "Windows", - "SpotPrice": "0.320000", - "Timestamp": "2019-10-16T01:03:59.000Z" + "SpotPrice": "7.452000", + "Timestamp": "2024-05-16T08:47:32.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.420700", - "Timestamp": "2019-10-16T01:03:39.000Z" + "SpotPrice": "0.153800", + "Timestamp": "2024-05-16T08:47:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.390700", - "Timestamp": "2019-10-16T01:03:39.000Z" + "SpotPrice": "0.150100", + "Timestamp": "2024-05-16T08:47:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.290700", - "Timestamp": "2019-10-16T01:03:39.000Z" + "SpotPrice": "0.093800", + "Timestamp": "2024-05-16T08:47:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.312300", - "Timestamp": "2019-10-16T01:03:38.000Z" + "SpotPrice": "0.184700", + "Timestamp": "2024-05-16T08:47:30.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.282300", - "Timestamp": "2019-10-16T01:03:38.000Z" + "SpotPrice": "0.181000", + "Timestamp": "2024-05-16T08:47:30.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.182300", - "Timestamp": "2019-10-16T01:03:38.000Z" + "SpotPrice": "0.124700", + "Timestamp": "2024-05-16T08:47:30.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m4.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093800", - "Timestamp": "2019-10-16T00:58:45.000Z" + "SpotPrice": "0.154500", + "Timestamp": "2024-05-16T08:47:29.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m4.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133800", - "Timestamp": "2019-10-16T00:58:45.000Z" + "SpotPrice": "0.194500", + "Timestamp": "2024-05-16T08:47:29.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m4.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033800", - "Timestamp": "2019-10-16T00:58:45.000Z" + "SpotPrice": "0.094500", + "Timestamp": "2024-05-16T08:47:29.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "inf1.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.272600", - "Timestamp": "2019-10-16T00:56:32.000Z" + "SpotPrice": "0.159900", + "Timestamp": "2024-05-16T08:47:27.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "inf1.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.242600", - "Timestamp": "2019-10-16T00:56:32.000Z" + "SpotPrice": "0.155900", + "Timestamp": "2024-05-16T08:47:27.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "inf1.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.142600", - "Timestamp": "2019-10-16T00:56:32.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.693800", - "Timestamp": "2019-10-16T00:56:17.000Z" + "SpotPrice": "0.099900", + "Timestamp": "2024-05-16T08:47:27.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.507300", - "Timestamp": "2019-10-16T00:55:59.000Z" + "SpotPrice": "0.178700", + "Timestamp": "2024-05-16T08:47:26.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.477300", - "Timestamp": "2019-10-16T00:55:59.000Z" + "SpotPrice": "0.174700", + "Timestamp": "2024-05-16T08:47:26.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.377300", - "Timestamp": "2019-10-16T00:55:59.000Z" + "SpotPrice": "0.118700", + "Timestamp": "2024-05-16T08:47:26.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.117300", - "Timestamp": "2019-10-16T00:55:58.000Z" + "SpotPrice": "1.349800", + "Timestamp": "2024-05-16T08:47:25.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.087300", - "Timestamp": "2019-10-16T00:55:58.000Z" + "SpotPrice": "1.319800", + "Timestamp": "2024-05-16T08:47:25.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.987300", - "Timestamp": "2019-10-16T00:55:58.000Z" + "SpotPrice": "1.219800", + "Timestamp": "2024-05-16T08:47:25.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.271700", - "Timestamp": "2019-10-16T00:55:55.000Z" + "SpotPrice": "0.122300", + "Timestamp": "2024-05-16T08:47:02.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.241700", - "Timestamp": "2019-10-16T00:55:55.000Z" + "SpotPrice": "0.118300", + "Timestamp": "2024-05-16T08:47:02.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.141700", - "Timestamp": "2019-10-16T00:55:55.000Z" + "SpotPrice": "0.062300", + "Timestamp": "2024-05-16T08:47:02.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.140100", - "Timestamp": "2019-10-16T00:55:51.000Z" + "SpotPrice": "0.078000", + "Timestamp": "2024-05-16T08:33:45.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.180100", - "Timestamp": "2019-10-16T00:55:51.000Z" + "SpotPrice": "0.049000", + "Timestamp": "2024-05-16T08:33:45.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.080100", - "Timestamp": "2019-10-16T00:55:51.000Z" + "SpotPrice": "0.018000", + "Timestamp": "2024-05-16T08:33:45.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.289300", - "Timestamp": "2019-10-16T00:55:38.000Z" + "SpotPrice": "0.650700", + "Timestamp": "2024-05-16T08:33:40.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.106800", - "Timestamp": "2019-10-16T00:55:12.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m1.large", + "ProductDescription": "Windows", + "SpotPrice": "0.183100", + "Timestamp": "2024-05-16T08:33:39.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.146800", - "Timestamp": "2019-10-16T00:55:12.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.842300", + "Timestamp": "2024-05-16T08:33:37.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.046800", - "Timestamp": "2019-10-16T00:55:12.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.710500", + "Timestamp": "2024-05-16T08:33:36.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.725200", - "Timestamp": "2019-10-16T00:48:03.000Z" + "SpotPrice": "1.593300", + "Timestamp": "2024-05-16T08:33:33.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.695200", - "Timestamp": "2019-10-16T00:48:03.000Z" + "SpotPrice": "1.588300", + "Timestamp": "2024-05-16T08:33:33.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.595200", - "Timestamp": "2019-10-16T00:48:03.000Z" + "SpotPrice": "1.463300", + "Timestamp": "2024-05-16T08:33:33.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.379300", + "Timestamp": "2024-05-16T08:33:33.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.285300", - "Timestamp": "2019-10-16T00:47:50.000Z" + "SpotPrice": "2.223400", + "Timestamp": "2024-05-16T08:33:30.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-16T00:47:50.000Z" + "SpotPrice": "2.218400", + "Timestamp": "2024-05-16T08:33:30.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.155300", - "Timestamp": "2019-10-16T00:47:50.000Z" + "SpotPrice": "2.093400", + "Timestamp": "2024-05-16T08:33:30.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.356000", - "Timestamp": "2019-10-16T00:47:25.000Z" + "SpotPrice": "2.456300", + "Timestamp": "2024-05-16T08:33:29.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.396000", - "Timestamp": "2019-10-16T00:47:25.000Z" + "SpotPrice": "2.451300", + "Timestamp": "2024-05-16T08:33:29.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.296000", - "Timestamp": "2019-10-16T00:47:25.000Z" + "SpotPrice": "2.326300", + "Timestamp": "2024-05-16T08:33:29.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.857100", - "Timestamp": "2019-10-16T00:47:13.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.010400", + "Timestamp": "2024-05-16T08:33:29.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.827100", - "Timestamp": "2019-10-16T00:47:13.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.998200", + "Timestamp": "2024-05-16T08:33:29.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.727100", - "Timestamp": "2019-10-16T00:47:13.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.403200", + "Timestamp": "2024-05-16T08:33:29.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.581800", + "Timestamp": "2024-05-16T08:33:28.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.184500", - "Timestamp": "2019-10-16T00:47:09.000Z" + "SpotPrice": "2.007300", + "Timestamp": "2024-05-16T08:33:28.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.224500", - "Timestamp": "2019-10-16T00:47:09.000Z" + "SpotPrice": "2.002300", + "Timestamp": "2024-05-16T08:33:28.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.124500", - "Timestamp": "2019-10-16T00:47:09.000Z" + "SpotPrice": "1.877300", + "Timestamp": "2024-05-16T08:33:28.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.326900", - "Timestamp": "2019-10-16T00:47:06.000Z" + "SpotPrice": "1.853700", + "Timestamp": "2024-05-16T08:33:28.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.296900", - "Timestamp": "2019-10-16T00:47:06.000Z" + "SpotPrice": "1.848700", + "Timestamp": "2024-05-16T08:33:28.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.196900", - "Timestamp": "2019-10-16T00:47:06.000Z" + "SpotPrice": "1.723700", + "Timestamp": "2024-05-16T08:33:28.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.120500", + "Timestamp": "2024-05-16T08:33:27.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.448800", - "Timestamp": "2019-10-16T00:46:56.000Z" + "SpotPrice": "2.765500", + "Timestamp": "2024-05-16T08:33:27.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.418800", - "Timestamp": "2019-10-16T00:46:56.000Z" + "SpotPrice": "2.760500", + "Timestamp": "2024-05-16T08:33:27.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.318800", - "Timestamp": "2019-10-16T00:46:56.000Z" - }, - { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.278000", - "Timestamp": "2019-10-16T00:46:51.000Z" + "SpotPrice": "2.635500", + "Timestamp": "2024-05-16T08:33:27.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.248000", - "Timestamp": "2019-10-16T00:46:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.906000", + "Timestamp": "2024-05-16T08:33:26.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.148000", - "Timestamp": "2019-10-16T00:46:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.988800", + "Timestamp": "2024-05-16T08:33:26.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "p3.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.829900", - "Timestamp": "2019-10-16T00:45:27.000Z" + "SpotPrice": "1.696800", + "Timestamp": "2024-05-16T08:33:26.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "p3.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.799900", - "Timestamp": "2019-10-16T00:45:27.000Z" + "SpotPrice": "1.666800", + "Timestamp": "2024-05-16T08:33:26.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "p3.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.699900", - "Timestamp": "2019-10-16T00:45:27.000Z" + "SpotPrice": "1.566800", + "Timestamp": "2024-05-16T08:33:26.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.248600", - "Timestamp": "2019-10-16T00:40:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.553000", + "Timestamp": "2024-05-16T08:33:26.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.218600", - "Timestamp": "2019-10-16T00:40:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.650500", + "Timestamp": "2024-05-16T08:33:26.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.118600", - "Timestamp": "2019-10-16T00:40:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.504200", + "Timestamp": "2024-05-16T08:33:26.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.509500", + "Timestamp": "2024-05-16T08:33:25.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.403800", - "Timestamp": "2019-10-16T00:39:32.000Z" + "SpotPrice": "1.278400", + "Timestamp": "2024-05-16T08:33:23.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.373800", - "Timestamp": "2019-10-16T00:39:32.000Z" + "SpotPrice": "1.273400", + "Timestamp": "2024-05-16T08:33:23.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.273800", - "Timestamp": "2019-10-16T00:39:32.000Z" + "SpotPrice": "1.148400", + "Timestamp": "2024-05-16T08:33:23.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.145300", - "Timestamp": "2019-10-16T00:39:23.000Z" + "SpotPrice": "3.836700", + "Timestamp": "2024-05-16T08:33:22.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.185300", - "Timestamp": "2019-10-16T00:39:23.000Z" + "SpotPrice": "3.831700", + "Timestamp": "2024-05-16T08:33:22.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.085300", - "Timestamp": "2019-10-16T00:39:23.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.275900", - "Timestamp": "2019-10-16T00:39:10.000Z" - }, - { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.280700", - "Timestamp": "2019-10-16T00:39:10.000Z" + "SpotPrice": "3.706700", + "Timestamp": "2024-05-16T08:33:22.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.245900", - "Timestamp": "2019-10-16T00:39:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.166900", + "Timestamp": "2024-05-16T08:33:22.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.250700", - "Timestamp": "2019-10-16T00:39:10.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.478100", + "Timestamp": "2024-05-16T08:33:22.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.145900", - "Timestamp": "2019-10-16T00:39:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.583900", + "Timestamp": "2024-05-16T08:33:21.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.150700", - "Timestamp": "2019-10-16T00:39:10.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.570800", + "Timestamp": "2024-05-16T08:33:21.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.369300", - "Timestamp": "2019-10-16T00:38:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.939000", + "Timestamp": "2024-05-16T08:33:21.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g3s.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.409300", - "Timestamp": "2019-10-16T00:38:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.951800", + "Timestamp": "2024-05-16T08:33:21.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.309300", - "Timestamp": "2019-10-16T00:38:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.017600", + "Timestamp": "2024-05-16T08:33:20.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.213000", - "Timestamp": "2019-10-16T00:31:10.000Z" + "SpotPrice": "7.006100", + "Timestamp": "2024-05-16T08:33:19.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-16T00:30:34.000Z" + "SpotPrice": "1.346200", + "Timestamp": "2024-05-16T08:33:19.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175600", - "Timestamp": "2019-10-16T00:30:34.000Z" + "SpotPrice": "1.341200", + "Timestamp": "2024-05-16T08:33:19.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075600", - "Timestamp": "2019-10-16T00:30:34.000Z" + "SpotPrice": "1.216200", + "Timestamp": "2024-05-16T08:33:19.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.703700", - "Timestamp": "2019-10-16T00:30:29.000Z" + "SpotPrice": "4.206300", + "Timestamp": "2024-05-16T08:33:17.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.673700", - "Timestamp": "2019-10-16T00:30:29.000Z" + "SpotPrice": "4.201300", + "Timestamp": "2024-05-16T08:33:17.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.573700", - "Timestamp": "2019-10-16T00:30:29.000Z" + "SpotPrice": "4.076300", + "Timestamp": "2024-05-16T08:33:17.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.262900", - "Timestamp": "2019-10-16T00:30:26.000Z" + "SpotPrice": "2.150300", + "Timestamp": "2024-05-16T08:33:16.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.232900", - "Timestamp": "2019-10-16T00:30:26.000Z" + "SpotPrice": "2.120300", + "Timestamp": "2024-05-16T08:33:16.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.132900", - "Timestamp": "2019-10-16T00:30:26.000Z" + "SpotPrice": "2.020300", + "Timestamp": "2024-05-16T08:33:16.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.688800", + "Timestamp": "2024-05-16T08:33:14.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120200", - "Timestamp": "2019-10-16T00:30:25.000Z" + "SpotPrice": "0.487700", + "Timestamp": "2024-05-16T08:33:14.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.160200", - "Timestamp": "2019-10-16T00:30:25.000Z" + "SpotPrice": "0.482700", + "Timestamp": "2024-05-16T08:33:14.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060200", - "Timestamp": "2019-10-16T00:30:25.000Z" + "SpotPrice": "0.357700", + "Timestamp": "2024-05-16T08:33:14.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.480200", - "Timestamp": "2019-10-16T00:30:24.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.581700", + "Timestamp": "2024-05-16T08:33:13.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m4.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.450200", - "Timestamp": "2019-10-16T00:30:24.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.519100", + "Timestamp": "2024-05-16T08:33:13.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.350200", - "Timestamp": "2019-10-16T00:30:24.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.779200", + "Timestamp": "2024-05-16T08:33:13.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "x1.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.149500", - "Timestamp": "2019-10-16T00:30:23.000Z" + "SpotPrice": "3.007000", + "Timestamp": "2024-05-16T08:33:12.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "x1.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.189500", - "Timestamp": "2019-10-16T00:30:23.000Z" + "SpotPrice": "2.977000", + "Timestamp": "2024-05-16T08:33:12.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "x1.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.089500", - "Timestamp": "2019-10-16T00:30:23.000Z" + "SpotPrice": "2.877000", + "Timestamp": "2024-05-16T08:33:12.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.954700", - "Timestamp": "2019-10-16T00:30:18.000Z" + "SpotPrice": "2.381700", + "Timestamp": "2024-05-16T08:33:11.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.924700", - "Timestamp": "2019-10-16T00:30:18.000Z" + "SpotPrice": "2.351700", + "Timestamp": "2024-05-16T08:33:11.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.824700", - "Timestamp": "2019-10-16T00:30:18.000Z" + "SpotPrice": "2.251700", + "Timestamp": "2024-05-16T08:33:11.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.476800", - "Timestamp": "2019-10-16T00:30:06.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.528000", + "Timestamp": "2024-05-16T08:33:11.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.446800", - "Timestamp": "2019-10-16T00:30:06.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.525000", + "Timestamp": "2024-05-16T08:33:11.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.346800", - "Timestamp": "2019-10-16T00:30:06.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.027700", + "Timestamp": "2024-05-16T08:33:11.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.670900", - "Timestamp": "2019-10-16T00:24:17.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.172400", + "Timestamp": "2024-05-16T08:33:10.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.640900", - "Timestamp": "2019-10-16T00:24:17.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.144700", + "Timestamp": "2024-05-16T08:33:10.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.540900", - "Timestamp": "2019-10-16T00:24:17.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.859500", + "Timestamp": "2024-05-16T08:33:10.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.480500", - "Timestamp": "2019-10-16T00:22:58.000Z" + "SpotPrice": "4.301100", + "Timestamp": "2024-05-16T08:33:10.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.450500", - "Timestamp": "2019-10-16T00:22:58.000Z" + "SpotPrice": "4.296100", + "Timestamp": "2024-05-16T08:33:10.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.350500", - "Timestamp": "2019-10-16T00:22:58.000Z" + "SpotPrice": "4.171100", + "Timestamp": "2024-05-16T08:33:10.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.019300", - "Timestamp": "2019-10-16T00:22:58.000Z" + "SpotPrice": "12.855900", + "Timestamp": "2024-05-16T08:33:09.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.453400", - "Timestamp": "2019-10-16T00:22:58.000Z" + "SpotPrice": "2.890800", + "Timestamp": "2024-05-16T08:33:09.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.423400", - "Timestamp": "2019-10-16T00:22:58.000Z" + "SpotPrice": "2.885800", + "Timestamp": "2024-05-16T08:33:09.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.323400", - "Timestamp": "2019-10-16T00:22:58.000Z" + "SpotPrice": "2.760800", + "Timestamp": "2024-05-16T08:33:09.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.166500", - "Timestamp": "2019-10-16T00:22:55.000Z" + "SpotPrice": "6.769900", + "Timestamp": "2024-05-16T08:33:09.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.642400", - "Timestamp": "2019-10-16T00:22:47.000Z" + "SpotPrice": "3.129600", + "Timestamp": "2024-05-16T08:33:09.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.985800", - "Timestamp": "2019-10-16T00:22:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.768500", + "Timestamp": "2024-05-16T08:33:08.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.955800", - "Timestamp": "2019-10-16T00:22:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.639800", + "Timestamp": "2024-05-16T08:33:07.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.855800", - "Timestamp": "2019-10-16T00:22:34.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.621000", + "Timestamp": "2024-05-16T08:33:07.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "a1.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.074800", - "Timestamp": "2019-10-16T00:22:14.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.634800", + "Timestamp": "2024-05-16T08:33:07.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "a1.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7gd.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.114800", - "Timestamp": "2019-10-16T00:22:14.000Z" + "SpotPrice": "1.616000", + "Timestamp": "2024-05-16T08:33:07.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "a1.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.014800", - "Timestamp": "2019-10-16T00:22:14.000Z" + "SpotPrice": "1.509800", + "Timestamp": "2024-05-16T08:33:07.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.491000", + "Timestamp": "2024-05-16T08:33:07.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.479300", - "Timestamp": "2019-10-16T00:22:14.000Z" + "SpotPrice": "5.517500", + "Timestamp": "2024-05-16T08:33:07.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.449300", - "Timestamp": "2019-10-16T00:22:14.000Z" + "SpotPrice": "5.512500", + "Timestamp": "2024-05-16T08:33:07.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.349300", - "Timestamp": "2019-10-16T00:22:14.000Z" + "SpotPrice": "5.387500", + "Timestamp": "2024-05-16T08:33:07.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.128900", - "Timestamp": "2019-10-16T00:22:07.000Z" + "SpotPrice": "0.726100", + "Timestamp": "2024-05-16T08:33:07.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.168900", - "Timestamp": "2019-10-16T00:22:07.000Z" + "SpotPrice": "0.721100", + "Timestamp": "2024-05-16T08:33:07.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.068900", - "Timestamp": "2019-10-16T00:22:07.000Z" + "SpotPrice": "0.596100", + "Timestamp": "2024-05-16T08:33:07.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.341200", - "Timestamp": "2019-10-16T00:22:04.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.978100", + "Timestamp": "2024-05-16T08:33:07.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.311200", - "Timestamp": "2019-10-16T00:22:04.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.280500", + "Timestamp": "2024-05-16T08:33:06.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.211200", - "Timestamp": "2019-10-16T00:22:04.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.713500", + "Timestamp": "2024-05-16T08:33:06.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.782800", - "Timestamp": "2019-10-16T00:17:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.708500", + "Timestamp": "2024-05-16T08:33:06.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.782800", - "Timestamp": "2019-10-16T00:17:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.583500", + "Timestamp": "2024-05-16T08:33:06.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.782800", - "Timestamp": "2019-10-16T00:17:59.000Z" + "SpotPrice": "0.126200", + "Timestamp": "2024-05-16T08:33:06.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.752800", - "Timestamp": "2019-10-16T00:17:59.000Z" + "SpotPrice": "0.122500", + "Timestamp": "2024-05-16T08:33:06.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.752800", - "Timestamp": "2019-10-16T00:17:59.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066200", + "Timestamp": "2024-05-16T08:33:06.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.533900", + "Timestamp": "2024-05-16T08:33:05.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2idn.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.752800", - "Timestamp": "2019-10-16T00:17:59.000Z" + "SpotPrice": "5.528900", + "Timestamp": "2024-05-16T08:33:05.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2idn.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.652800", - "Timestamp": "2019-10-16T00:17:59.000Z" + "SpotPrice": "5.403900", + "Timestamp": "2024-05-16T08:33:05.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.652800", - "Timestamp": "2019-10-16T00:17:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.679900", + "Timestamp": "2024-05-16T08:33:05.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.652800", - "Timestamp": "2019-10-16T00:17:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.674900", + "Timestamp": "2024-05-16T08:33:05.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.124800", - "Timestamp": "2019-10-16T00:16:44.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.549900", + "Timestamp": "2024-05-16T08:33:05.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.124800", - "Timestamp": "2019-10-16T00:16:44.000Z" + "SpotPrice": "1.148700", + "Timestamp": "2024-05-16T08:33:05.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.124800", - "Timestamp": "2019-10-16T00:16:44.000Z" + "SpotPrice": "0.136700", + "Timestamp": "2024-05-16T08:33:05.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "im4gn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-16T00:14:46.000Z" + "SpotPrice": "0.202000", + "Timestamp": "2024-05-16T08:33:04.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "im4gn.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.170800", - "Timestamp": "2019-10-16T00:14:46.000Z" + "SpotPrice": "0.198300", + "Timestamp": "2024-05-16T08:33:04.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "im4gn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.070800", - "Timestamp": "2019-10-16T00:14:46.000Z" - }, - { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.metal", - "ProductDescription": "Windows", - "SpotPrice": "7.778300", - "Timestamp": "2019-10-16T00:14:28.000Z" + "SpotPrice": "0.142000", + "Timestamp": "2024-05-16T08:33:04.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.472800", - "Timestamp": "2019-10-16T00:13:58.000Z" + "SpotPrice": "1.333800", + "Timestamp": "2024-05-16T08:33:04.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.442800", - "Timestamp": "2019-10-16T00:13:58.000Z" + "SpotPrice": "1.328800", + "Timestamp": "2024-05-16T08:33:04.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.342800", - "Timestamp": "2019-10-16T00:13:58.000Z" + "SpotPrice": "1.203800", + "Timestamp": "2024-05-16T08:33:04.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.131300", - "Timestamp": "2019-10-16T00:13:53.000Z" + "SpotPrice": "0.896800", + "Timestamp": "2024-05-16T08:33:04.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.171300", - "Timestamp": "2019-10-16T00:13:53.000Z" + "SpotPrice": "0.891800", + "Timestamp": "2024-05-16T08:33:04.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-16T00:13:53.000Z" + "SpotPrice": "0.766800", + "Timestamp": "2024-05-16T08:33:04.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.295200", - "Timestamp": "2019-10-16T00:13:52.000Z" + "SpotPrice": "0.334000", + "Timestamp": "2024-05-16T08:33:04.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gn.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.265200", - "Timestamp": "2019-10-16T00:13:52.000Z" + "SpotPrice": "0.329000", + "Timestamp": "2024-05-16T08:33:04.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.165200", - "Timestamp": "2019-10-16T00:13:52.000Z" + "SpotPrice": "0.204000", + "Timestamp": "2024-05-16T08:33:04.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "inf2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.261300", - "Timestamp": "2019-10-16T00:13:26.000Z" + "SpotPrice": "0.418700", + "Timestamp": "2024-05-16T08:33:03.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "inf2.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.231300", - "Timestamp": "2019-10-16T00:13:26.000Z" + "SpotPrice": "0.458700", + "Timestamp": "2024-05-16T08:33:03.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "inf2.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.131300", - "Timestamp": "2019-10-16T00:13:26.000Z" + "SpotPrice": "0.358700", + "Timestamp": "2024-05-16T08:33:03.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "d2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.128300", - "Timestamp": "2019-10-16T00:13:22.000Z" + "SpotPrice": "0.332700", + "Timestamp": "2024-05-16T08:33:03.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "d2.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.168300", - "Timestamp": "2019-10-16T00:13:22.000Z" + "SpotPrice": "0.372700", + "Timestamp": "2024-05-16T08:33:03.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "d2.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.068300", - "Timestamp": "2019-10-16T00:13:22.000Z" + "SpotPrice": "0.272700", + "Timestamp": "2024-05-16T08:33:03.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "a1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.196700", - "Timestamp": "2019-10-16T00:10:58.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.065900", + "Timestamp": "2024-05-16T08:33:03.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "a1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.196700", - "Timestamp": "2019-10-16T00:10:58.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.171100", + "Timestamp": "2024-05-16T08:33:03.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "a1.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.166700", - "Timestamp": "2019-10-16T00:10:58.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.356300", + "Timestamp": "2024-05-16T08:33:03.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "a1.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.166700", - "Timestamp": "2019-10-16T00:10:58.000Z" + "SpotPrice": "1.351300", + "Timestamp": "2024-05-16T08:33:03.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "a1.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-16T00:10:58.000Z" + "SpotPrice": "1.226300", + "Timestamp": "2024-05-16T08:33:03.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "a1.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-16T00:10:58.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.053300", + "Timestamp": "2024-05-16T08:33:02.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.029700", - "Timestamp": "2019-10-16T00:07:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.048300", + "Timestamp": "2024-05-16T08:33:02.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.029700", - "Timestamp": "2019-10-16T00:07:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.923300", + "Timestamp": "2024-05-16T08:33:02.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.029700", - "Timestamp": "2019-10-16T00:07:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.560300", + "Timestamp": "2024-05-16T08:33:01.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.029700", - "Timestamp": "2019-10-16T00:07:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.555300", + "Timestamp": "2024-05-16T08:33:01.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-16T00:07:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.430300", + "Timestamp": "2024-05-16T08:33:01.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3a.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g3s.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-16T00:07:35.000Z" + "SpotPrice": "0.457500", + "Timestamp": "2024-05-16T08:33:01.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-16T00:07:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.453500", + "Timestamp": "2024-05-16T08:33:01.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-16T00:07:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.397500", + "Timestamp": "2024-05-16T08:33:01.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3a.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.111300", - "Timestamp": "2019-10-16T00:07:35.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.510000", + "Timestamp": "2024-05-16T08:33:01.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3a.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.111300", - "Timestamp": "2019-10-16T00:07:35.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.646000", + "Timestamp": "2024-05-16T08:33:01.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3a.medium", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.111300", - "Timestamp": "2019-10-16T00:07:35.000Z" + "SpotPrice": "1.641000", + "Timestamp": "2024-05-16T08:33:01.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3a.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.111300", - "Timestamp": "2019-10-16T00:07:35.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.516000", + "Timestamp": "2024-05-16T08:33:01.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.011300", - "Timestamp": "2019-10-16T00:07:35.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.737300", + "Timestamp": "2024-05-16T08:33:01.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.011300", - "Timestamp": "2019-10-16T00:07:35.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.720800", + "Timestamp": "2024-05-16T08:33:01.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.011300", - "Timestamp": "2019-10-16T00:07:35.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.715800", + "Timestamp": "2024-05-16T08:33:01.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3a.medium", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.011300", - "Timestamp": "2019-10-16T00:07:35.000Z" + "SpotPrice": "0.590800", + "Timestamp": "2024-05-16T08:33:01.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.197500", + "Timestamp": "2024-05-16T08:33:00.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m3.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.941300", - "Timestamp": "2019-10-16T00:06:31.000Z" + "SpotPrice": "0.090000", + "Timestamp": "2024-05-16T08:33:00.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m3.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.911300", - "Timestamp": "2019-10-16T00:06:31.000Z" + "SpotPrice": "0.130000", + "Timestamp": "2024-05-16T08:33:00.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m3.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.811300", - "Timestamp": "2019-10-16T00:06:31.000Z" + "SpotPrice": "0.030000", + "Timestamp": "2024-05-16T08:33:00.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.638300", - "Timestamp": "2019-10-16T00:05:58.000Z" + "SpotPrice": "3.877400", + "Timestamp": "2024-05-16T08:33:00.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.608300", - "Timestamp": "2019-10-16T00:05:58.000Z" + "SpotPrice": "3.872400", + "Timestamp": "2024-05-16T08:33:00.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.508300", - "Timestamp": "2019-10-16T00:05:58.000Z" + "SpotPrice": "3.747400", + "Timestamp": "2024-05-16T08:33:00.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.539400", - "Timestamp": "2019-10-16T00:05:54.000Z" + "SpotPrice": "1.205300", + "Timestamp": "2024-05-16T08:32:59.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.749700", + "Timestamp": "2024-05-16T08:32:59.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.131400", - "Timestamp": "2019-10-16T00:05:37.000Z" + "SpotPrice": "2.462400", + "Timestamp": "2024-05-16T08:32:58.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.171400", - "Timestamp": "2019-10-16T00:05:37.000Z" + "SpotPrice": "2.457400", + "Timestamp": "2024-05-16T08:32:58.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.071400", - "Timestamp": "2019-10-16T00:05:37.000Z" + "SpotPrice": "2.332400", + "Timestamp": "2024-05-16T08:32:58.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "8.180600", - "Timestamp": "2019-10-16T00:05:18.000Z" + "SpotPrice": "2.097700", + "Timestamp": "2024-05-16T08:32:58.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.403300", + "Timestamp": "2024-05-16T08:32:57.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.729200", - "Timestamp": "2019-10-16T00:05:17.000Z" + "SpotPrice": "0.392400", + "Timestamp": "2024-05-16T08:32:57.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.699200", - "Timestamp": "2019-10-16T00:05:17.000Z" + "SpotPrice": "0.387400", + "Timestamp": "2024-05-16T08:32:57.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.599200", - "Timestamp": "2019-10-16T00:05:17.000Z" + "SpotPrice": "0.262400", + "Timestamp": "2024-05-16T08:32:57.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.140400", - "Timestamp": "2019-10-16T00:05:09.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.162000", + "Timestamp": "2024-05-16T08:32:57.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.180400", - "Timestamp": "2019-10-16T00:05:09.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.800600", + "Timestamp": "2024-05-16T08:32:57.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.080400", - "Timestamp": "2019-10-16T00:05:09.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.654200", + "Timestamp": "2024-05-16T08:32:57.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.847000", - "Timestamp": "2019-10-15T23:57:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.602800", + "Timestamp": "2024-05-16T08:32:56.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.817000", - "Timestamp": "2019-10-15T23:57:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.327500", + "Timestamp": "2024-05-16T08:32:56.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.717000", - "Timestamp": "2019-10-15T23:57:29.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.302500", + "Timestamp": "2024-05-16T08:32:55.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.783000", - "Timestamp": "2019-10-15T23:57:27.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.132000", + "Timestamp": "2024-05-16T08:32:55.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.753000", - "Timestamp": "2019-10-15T23:57:27.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.129600", + "Timestamp": "2024-05-16T08:32:55.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.653000", - "Timestamp": "2019-10-15T23:57:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.734800", + "Timestamp": "2024-05-16T08:32:54.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3en.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.067400", - "Timestamp": "2019-10-15T23:57:26.000Z" + "SpotPrice": "3.496700", + "Timestamp": "2024-05-16T08:32:54.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "is4gen.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.143500", - "Timestamp": "2019-10-15T23:57:20.000Z" + "SpotPrice": "2.030300", + "Timestamp": "2024-05-16T08:32:54.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "is4gen.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.183500", - "Timestamp": "2019-10-15T23:57:20.000Z" + "SpotPrice": "2.025300", + "Timestamp": "2024-05-16T08:32:54.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "is4gen.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.083500", - "Timestamp": "2019-10-15T23:57:20.000Z" + "SpotPrice": "1.900300", + "Timestamp": "2024-05-16T08:32:54.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.384700", + "Timestamp": "2024-05-16T08:32:54.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.269500", - "Timestamp": "2019-10-15T23:57:06.000Z" + "SpotPrice": "1.929600", + "Timestamp": "2024-05-16T08:32:54.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.239500", - "Timestamp": "2019-10-15T23:57:06.000Z" + "SpotPrice": "1.924600", + "Timestamp": "2024-05-16T08:32:54.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.139500", - "Timestamp": "2019-10-15T23:57:06.000Z" + "SpotPrice": "1.799600", + "Timestamp": "2024-05-16T08:32:54.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5zn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132600", - "Timestamp": "2019-10-15T23:57:00.000Z" + "SpotPrice": "0.479000", + "Timestamp": "2024-05-16T08:32:54.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5zn.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172600", - "Timestamp": "2019-10-15T23:57:00.000Z" + "SpotPrice": "0.474000", + "Timestamp": "2024-05-16T08:32:54.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5zn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072600", - "Timestamp": "2019-10-15T23:57:00.000Z" + "SpotPrice": "0.349000", + "Timestamp": "2024-05-16T08:32:54.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.453000", - "Timestamp": "2019-10-15T23:49:29.000Z" + "SpotPrice": "1.948300", + "Timestamp": "2024-05-16T08:32:53.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.423000", - "Timestamp": "2019-10-15T23:49:29.000Z" + "SpotPrice": "1.918300", + "Timestamp": "2024-05-16T08:32:53.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.323000", - "Timestamp": "2019-10-15T23:49:29.000Z" + "SpotPrice": "1.818300", + "Timestamp": "2024-05-16T08:32:53.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.583200", + "Timestamp": "2024-05-16T08:32:53.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.115200", - "Timestamp": "2019-10-15T23:49:22.000Z" + "SpotPrice": "6.074200", + "Timestamp": "2024-05-16T08:32:53.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.155200", - "Timestamp": "2019-10-15T23:49:22.000Z" + "SpotPrice": "6.069200", + "Timestamp": "2024-05-16T08:32:53.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.055200", - "Timestamp": "2019-10-15T23:49:22.000Z" + "SpotPrice": "5.944200", + "Timestamp": "2024-05-16T08:32:53.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.162200", - "Timestamp": "2019-10-15T23:49:13.000Z" + "SpotPrice": "9.517300", + "Timestamp": "2024-05-16T08:32:52.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2gd.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129000", - "Timestamp": "2019-10-15T23:49:08.000Z" + "SpotPrice": "0.744600", + "Timestamp": "2024-05-16T08:32:52.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2gd.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.169000", - "Timestamp": "2019-10-15T23:49:08.000Z" + "SpotPrice": "0.739600", + "Timestamp": "2024-05-16T08:32:52.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069000", - "Timestamp": "2019-10-15T23:49:08.000Z" + "SpotPrice": "0.614600", + "Timestamp": "2024-05-16T08:32:52.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c4.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.537200", - "Timestamp": "2019-10-15T23:49:00.000Z" + "SpotPrice": "0.533500", + "Timestamp": "2024-05-16T08:32:52.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.586800", - "Timestamp": "2019-10-15T23:48:55.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.688800", + "Timestamp": "2024-05-16T08:32:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "10.975300", - "Timestamp": "2019-10-15T23:48:37.000Z" + "SpotPrice": "2.776300", + "Timestamp": "2024-05-16T08:32:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.795900", + "Timestamp": "2024-05-16T08:32:51.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "10.945300", - "Timestamp": "2019-10-15T23:48:37.000Z" + "SpotPrice": "2.683800", + "Timestamp": "2024-05-16T08:32:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.771300", + "Timestamp": "2024-05-16T08:32:51.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.790900", + "Timestamp": "2024-05-16T08:32:51.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "10.845300", - "Timestamp": "2019-10-15T23:48:37.000Z" + "SpotPrice": "2.558800", + "Timestamp": "2024-05-16T08:32:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.646300", + "Timestamp": "2024-05-16T08:32:51.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.665900", + "Timestamp": "2024-05-16T08:32:51.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093300", - "Timestamp": "2019-10-15T23:48:25.000Z" + "SpotPrice": "2.897800", + "Timestamp": "2024-05-16T08:32:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133300", - "Timestamp": "2019-10-15T23:48:25.000Z" + "SpotPrice": "2.892800", + "Timestamp": "2024-05-16T08:32:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033300", - "Timestamp": "2019-10-15T23:48:25.000Z" + "SpotPrice": "2.767800", + "Timestamp": "2024-05-16T08:32:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127300", - "Timestamp": "2019-10-15T23:48:24.000Z" + "SpotPrice": "0.250800", + "Timestamp": "2024-05-16T08:32:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.167300", - "Timestamp": "2019-10-15T23:48:24.000Z" + "SpotPrice": "0.247100", + "Timestamp": "2024-05-16T08:32:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067300", - "Timestamp": "2019-10-15T23:48:24.000Z" + "SpotPrice": "0.190800", + "Timestamp": "2024-05-16T08:32:51.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.273500", - "Timestamp": "2019-10-15T23:48:21.000Z" + "SpotPrice": "0.203100", + "Timestamp": "2024-05-16T08:32:51.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.243500", - "Timestamp": "2019-10-15T23:48:21.000Z" + "SpotPrice": "0.199400", + "Timestamp": "2024-05-16T08:32:51.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.143500", - "Timestamp": "2019-10-15T23:48:21.000Z" + "SpotPrice": "0.143100", + "Timestamp": "2024-05-16T08:32:51.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r4.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.019300", - "Timestamp": "2019-10-15T23:40:57.000Z" + "SpotPrice": "2.364900", + "Timestamp": "2024-05-16T08:32:51.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4dn.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.287200", - "Timestamp": "2019-10-15T23:40:42.000Z" + "SpotPrice": "0.685100", + "Timestamp": "2024-05-16T08:32:51.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "g4dn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.454800", - "Timestamp": "2019-10-15T23:40:34.000Z" + "SpotPrice": "3.666300", + "Timestamp": "2024-05-16T08:32:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.661300", + "Timestamp": "2024-05-16T08:32:51.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.536300", + "Timestamp": "2024-05-16T08:32:51.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.473700", - "Timestamp": "2019-10-15T23:40:34.000Z" + "SpotPrice": "3.511600", + "Timestamp": "2024-05-16T08:32:50.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.424800", - "Timestamp": "2019-10-15T23:40:34.000Z" + "SpotPrice": "3.506600", + "Timestamp": "2024-05-16T08:32:50.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.381600", + "Timestamp": "2024-05-16T08:32:50.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.033200", + "Timestamp": "2024-05-16T08:32:50.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.443700", - "Timestamp": "2019-10-15T23:40:34.000Z" + "SpotPrice": "3.028200", + "Timestamp": "2024-05-16T08:32:50.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.324800", - "Timestamp": "2019-10-15T23:40:34.000Z" + "SpotPrice": "2.903200", + "Timestamp": "2024-05-16T08:32:50.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.599600", + "Timestamp": "2024-05-16T08:32:50.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.594600", + "Timestamp": "2024-05-16T08:32:50.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.343700", - "Timestamp": "2019-10-15T23:40:34.000Z" + "SpotPrice": "2.469600", + "Timestamp": "2024-05-16T08:32:50.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.139800", - "Timestamp": "2019-10-15T23:32:30.000Z" + "SpotPrice": "0.877400", + "Timestamp": "2024-05-16T08:32:50.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.179800", - "Timestamp": "2019-10-15T23:32:30.000Z" + "SpotPrice": "0.872400", + "Timestamp": "2024-05-16T08:32:50.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.079800", - "Timestamp": "2019-10-15T23:32:30.000Z" + "SpotPrice": "0.747400", + "Timestamp": "2024-05-16T08:32:50.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.157100", - "Timestamp": "2019-10-15T23:32:22.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.184800", + "Timestamp": "2024-05-16T08:32:49.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.521500", - "Timestamp": "2019-10-15T23:32:16.000Z" + "SpotPrice": "2.126800", + "Timestamp": "2024-05-16T08:32:49.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.491500", - "Timestamp": "2019-10-15T23:32:16.000Z" + "SpotPrice": "2.179800", + "Timestamp": "2024-05-16T08:32:49.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.121800", + "Timestamp": "2024-05-16T08:32:49.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.391500", - "Timestamp": "2019-10-15T23:32:16.000Z" + "SpotPrice": "2.054800", + "Timestamp": "2024-05-16T08:32:49.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.996800", + "Timestamp": "2024-05-16T08:32:49.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.461100", - "Timestamp": "2019-10-15T23:32:11.000Z" + "SpotPrice": "0.451400", + "Timestamp": "2024-05-16T08:32:49.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.431100", - "Timestamp": "2019-10-15T23:32:11.000Z" + "SpotPrice": "0.446400", + "Timestamp": "2024-05-16T08:32:49.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.331100", - "Timestamp": "2019-10-15T23:32:11.000Z" - }, - { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.135300", - "Timestamp": "2019-10-15T23:32:05.000Z" + "SpotPrice": "0.321400", + "Timestamp": "2024-05-16T08:32:49.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.297700", - "Timestamp": "2019-10-15T23:24:19.000Z" + "SpotPrice": "0.529200", + "Timestamp": "2024-05-16T08:32:49.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.267700", - "Timestamp": "2019-10-15T23:24:19.000Z" + "SpotPrice": "0.524200", + "Timestamp": "2024-05-16T08:32:49.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.167700", - "Timestamp": "2019-10-15T23:24:19.000Z" + "SpotPrice": "0.399200", + "Timestamp": "2024-05-16T08:32:49.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "f1.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.216300", - "Timestamp": "2019-10-15T23:23:47.000Z" + "SpotPrice": "0.921200", + "Timestamp": "2024-05-16T08:32:49.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "f1.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.160100", - "Timestamp": "2019-10-15T23:23:47.000Z" + "SpotPrice": "0.808300", + "Timestamp": "2024-05-16T08:32:49.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "f1.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.256300", - "Timestamp": "2019-10-15T23:23:47.000Z" + "SpotPrice": "0.891200", + "Timestamp": "2024-05-16T08:32:49.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "f1.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.200100", - "Timestamp": "2019-10-15T23:23:47.000Z" + "SpotPrice": "0.778300", + "Timestamp": "2024-05-16T08:32:49.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "f1.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.156300", - "Timestamp": "2019-10-15T23:23:47.000Z" + "SpotPrice": "0.791200", + "Timestamp": "2024-05-16T08:32:49.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "f1.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.100100", - "Timestamp": "2019-10-15T23:23:47.000Z" + "SpotPrice": "0.678300", + "Timestamp": "2024-05-16T08:32:49.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.286100", - "Timestamp": "2019-10-15T23:23:42.000Z" + "SpotPrice": "0.607800", + "Timestamp": "2024-05-16T08:32:48.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.106100", - "Timestamp": "2019-10-15T23:23:40.000Z" + "SpotPrice": "0.169800", + "Timestamp": "2024-05-16T08:32:48.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.146100", - "Timestamp": "2019-10-15T23:23:40.000Z" + "SpotPrice": "0.209800", + "Timestamp": "2024-05-16T08:32:48.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.046100", - "Timestamp": "2019-10-15T23:23:40.000Z" + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T08:32:48.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.057900", - "Timestamp": "2019-10-15T23:17:32.000Z" + "SpotPrice": "1.142300", + "Timestamp": "2024-05-16T08:32:46.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.352000", - "Timestamp": "2019-10-15T23:17:32.000Z" + "SpotPrice": "1.111200", + "Timestamp": "2024-05-16T08:32:46.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.352000", - "Timestamp": "2019-10-15T23:17:32.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.940200", + "Timestamp": "2024-05-16T08:32:46.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.910200", + "Timestamp": "2024-05-16T08:32:46.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.810200", + "Timestamp": "2024-05-16T08:32:46.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i-flex.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.352000", - "Timestamp": "2019-10-15T23:17:32.000Z" + "SpotPrice": "2.042300", + "Timestamp": "2024-05-16T08:32:46.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.979900", - "Timestamp": "2019-10-15T23:16:41.000Z" + "SpotPrice": "1.316700", + "Timestamp": "2024-05-16T08:32:46.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.274000", - "Timestamp": "2019-10-15T23:16:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.311700", + "Timestamp": "2024-05-16T08:32:46.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.274000", - "Timestamp": "2019-10-15T23:16:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.186700", + "Timestamp": "2024-05-16T08:32:46.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.988500", + "Timestamp": "2024-05-16T08:32:46.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.574400", + "Timestamp": "2024-05-16T08:32:45.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.274000", - "Timestamp": "2019-10-15T23:16:41.000Z" + "SpotPrice": "2.387000", + "Timestamp": "2024-05-16T08:32:45.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.949900", - "Timestamp": "2019-10-15T23:16:41.000Z" + "SpotPrice": "2.382000", + "Timestamp": "2024-05-16T08:32:45.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.257000", + "Timestamp": "2024-05-16T08:32:45.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.635300", + "Timestamp": "2024-05-16T08:32:44.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.244000", - "Timestamp": "2019-10-15T23:16:41.000Z" + "SpotPrice": "0.630300", + "Timestamp": "2024-05-16T08:32:44.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.505300", + "Timestamp": "2024-05-16T08:32:44.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142100", + "Timestamp": "2024-05-16T08:32:44.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150900", + "Timestamp": "2024-05-16T08:32:44.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.244000", - "Timestamp": "2019-10-15T23:16:41.000Z" + "SpotPrice": "0.138400", + "Timestamp": "2024-05-16T08:32:44.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.244000", - "Timestamp": "2019-10-15T23:16:41.000Z" + "SpotPrice": "0.147200", + "Timestamp": "2024-05-16T08:32:44.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.849900", - "Timestamp": "2019-10-15T23:16:41.000Z" + "SpotPrice": "0.082100", + "Timestamp": "2024-05-16T08:32:44.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.144000", - "Timestamp": "2019-10-15T23:16:41.000Z" + "SpotPrice": "0.090900", + "Timestamp": "2024-05-16T08:32:44.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.144000", - "Timestamp": "2019-10-15T23:16:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.780400", + "Timestamp": "2024-05-16T08:32:43.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.144000", - "Timestamp": "2019-10-15T23:16:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.775400", + "Timestamp": "2024-05-16T08:32:43.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "7.670400", - "Timestamp": "2019-10-15T23:15:57.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.650400", + "Timestamp": "2024-05-16T08:32:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "7.670400", - "Timestamp": "2019-10-15T23:15:57.000Z" + "SpotPrice": "2.075800", + "Timestamp": "2024-05-16T08:32:43.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "7.670400", - "Timestamp": "2019-10-15T23:15:57.000Z" + "SpotPrice": "1.103800", + "Timestamp": "2024-05-16T08:32:43.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.418700", - "Timestamp": "2019-10-15T23:15:51.000Z" + "SpotPrice": "0.368500", + "Timestamp": "2024-05-16T08:32:43.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.388700", - "Timestamp": "2019-10-15T23:15:51.000Z" + "SpotPrice": "0.363500", + "Timestamp": "2024-05-16T08:32:43.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.288700", - "Timestamp": "2019-10-15T23:15:51.000Z" + "SpotPrice": "0.238500", + "Timestamp": "2024-05-16T08:32:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.331800", + "Timestamp": "2024-05-16T08:32:43.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.401000", + "Timestamp": "2024-05-16T08:32:43.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.045100", - "Timestamp": "2019-10-15T23:15:42.000Z" + "SpotPrice": "0.436000", + "Timestamp": "2024-05-16T08:32:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.015100", - "Timestamp": "2019-10-15T23:15:42.000Z" + "SpotPrice": "0.431000", + "Timestamp": "2024-05-16T08:32:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.915100", - "Timestamp": "2019-10-15T23:15:42.000Z" + "SpotPrice": "0.306000", + "Timestamp": "2024-05-16T08:32:43.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.352800", - "Timestamp": "2019-10-15T23:15:25.000Z" + "SpotPrice": "2.157300", + "Timestamp": "2024-05-16T08:32:42.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.322800", - "Timestamp": "2019-10-15T23:15:25.000Z" + "SpotPrice": "2.152300", + "Timestamp": "2024-05-16T08:32:42.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.222800", - "Timestamp": "2019-10-15T23:15:25.000Z" + "SpotPrice": "2.027300", + "Timestamp": "2024-05-16T08:32:42.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.796500", - "Timestamp": "2019-10-15T23:15:12.000Z" + "SpotPrice": "1.125500", + "Timestamp": "2024-05-16T08:32:42.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.766500", - "Timestamp": "2019-10-15T23:15:12.000Z" + "SpotPrice": "1.120500", + "Timestamp": "2024-05-16T08:32:42.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.666500", - "Timestamp": "2019-10-15T23:15:12.000Z" + "SpotPrice": "0.995500", + "Timestamp": "2024-05-16T08:32:42.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.775000", - "Timestamp": "2019-10-15T23:15:12.000Z" + "SpotPrice": "0.182400", + "Timestamp": "2024-05-16T08:32:42.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.745000", - "Timestamp": "2019-10-15T23:15:12.000Z" + "SpotPrice": "0.178700", + "Timestamp": "2024-05-16T08:32:42.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.645000", - "Timestamp": "2019-10-15T23:15:12.000Z" + "SpotPrice": "0.122400", + "Timestamp": "2024-05-16T08:32:42.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.314300", - "Timestamp": "2019-10-15T23:15:04.000Z" + "SpotPrice": "0.275900", + "Timestamp": "2024-05-16T08:32:42.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gd.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.354300", - "Timestamp": "2019-10-15T23:15:04.000Z" + "SpotPrice": "0.270900", + "Timestamp": "2024-05-16T08:32:42.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.254300", - "Timestamp": "2019-10-15T23:15:04.000Z" + "SpotPrice": "0.145900", + "Timestamp": "2024-05-16T08:32:42.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.195600", + "Timestamp": "2024-05-16T08:32:42.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132100", - "Timestamp": "2019-10-15T23:14:59.000Z" + "SpotPrice": "0.677800", + "Timestamp": "2024-05-16T08:32:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172100", - "Timestamp": "2019-10-15T23:14:59.000Z" + "SpotPrice": "0.672800", + "Timestamp": "2024-05-16T08:32:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072100", - "Timestamp": "2019-10-15T23:14:59.000Z" + "SpotPrice": "0.547800", + "Timestamp": "2024-05-16T08:32:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "a1.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.723500", - "Timestamp": "2019-10-15T23:14:58.000Z" + "SpotPrice": "0.305000", + "Timestamp": "2024-05-16T08:32:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "a1.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.693500", - "Timestamp": "2019-10-15T23:14:58.000Z" + "SpotPrice": "0.300000", + "Timestamp": "2024-05-16T08:32:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "a1.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.593500", - "Timestamp": "2019-10-15T23:14:58.000Z" + "SpotPrice": "0.175000", + "Timestamp": "2024-05-16T08:32:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132400", - "Timestamp": "2019-10-15T23:14:53.000Z" + "SpotPrice": "3.843100", + "Timestamp": "2024-05-16T08:32:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172400", - "Timestamp": "2019-10-15T23:14:53.000Z" + "SpotPrice": "3.838100", + "Timestamp": "2024-05-16T08:32:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072400", - "Timestamp": "2019-10-15T23:14:53.000Z" + "SpotPrice": "3.713100", + "Timestamp": "2024-05-16T08:32:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.metal", "ProductDescription": "Windows", - "SpotPrice": "4.025800", - "Timestamp": "2019-10-15T23:10:41.000Z" + "SpotPrice": "8.476800", + "Timestamp": "2024-05-16T08:32:41.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.211800", - "Timestamp": "2019-10-15T23:09:34.000Z" + "SpotPrice": "0.491700", + "Timestamp": "2024-05-16T08:32:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.211800", - "Timestamp": "2019-10-15T23:09:34.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.486700", + "Timestamp": "2024-05-16T08:32:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.211800", - "Timestamp": "2019-10-15T23:09:34.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.361700", + "Timestamp": "2024-05-16T08:32:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.211800", - "Timestamp": "2019-10-15T23:09:34.000Z" + "SpotPrice": "0.822100", + "Timestamp": "2024-05-16T08:32:41.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.181800", - "Timestamp": "2019-10-15T23:09:34.000Z" + "SpotPrice": "0.817100", + "Timestamp": "2024-05-16T08:32:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.181800", - "Timestamp": "2019-10-15T23:09:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.692100", + "Timestamp": "2024-05-16T08:32:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.181800", - "Timestamp": "2019-10-15T23:09:34.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.404600", + "Timestamp": "2024-05-16T08:32:40.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.181800", - "Timestamp": "2019-10-15T23:09:34.000Z" + "SpotPrice": "0.374600", + "Timestamp": "2024-05-16T08:32:40.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.081800", - "Timestamp": "2019-10-15T23:09:34.000Z" + "SpotPrice": "0.274600", + "Timestamp": "2024-05-16T08:32:40.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.081800", - "Timestamp": "2019-10-15T23:09:34.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.404600", + "Timestamp": "2024-05-16T08:32:40.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.399600", + "Timestamp": "2024-05-16T08:32:40.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "is4gen.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.081800", - "Timestamp": "2019-10-15T23:09:34.000Z" + "SpotPrice": "1.274600", + "Timestamp": "2024-05-16T08:32:40.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.081800", - "Timestamp": "2019-10-15T23:09:34.000Z" - }, - { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061500", - "Timestamp": "2019-10-15T23:09:28.000Z" + "SpotPrice": "0.592700", + "Timestamp": "2024-05-16T08:32:40.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.101500", - "Timestamp": "2019-10-15T23:09:28.000Z" + "SpotPrice": "0.587700", + "Timestamp": "2024-05-16T08:32:40.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001500", - "Timestamp": "2019-10-15T23:09:28.000Z" + "SpotPrice": "0.462700", + "Timestamp": "2024-05-16T08:32:40.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.063800", - "Timestamp": "2019-10-15T23:07:25.000Z" + "SpotPrice": "0.300500", + "Timestamp": "2024-05-16T08:32:40.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135400", - "Timestamp": "2019-10-15T23:07:16.000Z" + "SpotPrice": "0.982000", + "Timestamp": "2024-05-16T08:32:40.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175400", - "Timestamp": "2019-10-15T23:07:16.000Z" + "SpotPrice": "0.977000", + "Timestamp": "2024-05-16T08:32:40.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075400", - "Timestamp": "2019-10-15T23:07:16.000Z" + "SpotPrice": "0.852000", + "Timestamp": "2024-05-16T08:32:40.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135400", - "Timestamp": "2019-10-15T23:07:15.000Z" + "SpotPrice": "1.326700", + "Timestamp": "2024-05-16T08:32:40.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175400", - "Timestamp": "2019-10-15T23:07:15.000Z" + "SpotPrice": "1.321700", + "Timestamp": "2024-05-16T08:32:40.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075400", - "Timestamp": "2019-10-15T23:07:15.000Z" + "SpotPrice": "1.196700", + "Timestamp": "2024-05-16T08:32:40.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m1.large", + "ProductDescription": "Windows", + "SpotPrice": "0.181400", + "Timestamp": "2024-05-16T08:32:39.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.metal-16xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.723400", - "Timestamp": "2019-10-15T23:07:05.000Z" + "SpotPrice": "3.153100", + "Timestamp": "2024-05-16T08:32:39.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.metal-16xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.693400", - "Timestamp": "2019-10-15T23:07:05.000Z" + "SpotPrice": "3.148100", + "Timestamp": "2024-05-16T08:32:39.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.metal-16xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.593400", - "Timestamp": "2019-10-15T23:07:05.000Z" + "SpotPrice": "3.023100", + "Timestamp": "2024-05-16T08:32:39.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.641800", + "Timestamp": "2024-05-16T08:32:39.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.408300", + "Timestamp": "2024-05-16T08:32:39.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.134600", - "Timestamp": "2019-10-15T23:06:57.000Z" + "SpotPrice": "0.394600", + "Timestamp": "2024-05-16T08:32:39.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.174600", - "Timestamp": "2019-10-15T23:06:57.000Z" + "SpotPrice": "0.389600", + "Timestamp": "2024-05-16T08:32:39.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.074600", - "Timestamp": "2019-10-15T23:06:57.000Z" + "SpotPrice": "0.264600", + "Timestamp": "2024-05-16T08:32:39.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.989700", - "Timestamp": "2019-10-15T23:06:55.000Z" + "SpotPrice": "0.643300", + "Timestamp": "2024-05-16T08:32:38.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.959700", - "Timestamp": "2019-10-15T23:06:55.000Z" + "SpotPrice": "0.638300", + "Timestamp": "2024-05-16T08:32:38.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.859700", - "Timestamp": "2019-10-15T23:06:55.000Z" + "SpotPrice": "0.513300", + "Timestamp": "2024-05-16T08:32:38.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.844300", + "Timestamp": "2024-05-16T08:32:38.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.269200", - "Timestamp": "2019-10-15T23:06:52.000Z" + "SpotPrice": "0.696700", + "Timestamp": "2024-05-16T08:32:37.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.239200", - "Timestamp": "2019-10-15T23:06:52.000Z" + "SpotPrice": "0.691700", + "Timestamp": "2024-05-16T08:32:37.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.139200", - "Timestamp": "2019-10-15T23:06:52.000Z" + "SpotPrice": "0.566700", + "Timestamp": "2024-05-16T08:32:37.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.142500", - "Timestamp": "2019-10-15T23:06:52.000Z" + "SpotPrice": "0.790000", + "Timestamp": "2024-05-16T08:32:37.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.182500", - "Timestamp": "2019-10-15T23:06:52.000Z" + "SpotPrice": "0.785000", + "Timestamp": "2024-05-16T08:32:37.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.082500", - "Timestamp": "2019-10-15T23:06:52.000Z" + "SpotPrice": "0.660000", + "Timestamp": "2024-05-16T08:32:37.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.724000", - "Timestamp": "2019-10-15T23:06:52.000Z" + "SpotPrice": "0.221700", + "Timestamp": "2024-05-16T08:32:37.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.694000", - "Timestamp": "2019-10-15T23:06:52.000Z" + "SpotPrice": "0.217700", + "Timestamp": "2024-05-16T08:32:37.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.594000", - "Timestamp": "2019-10-15T23:06:52.000Z" - }, - { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006000", - "Timestamp": "2019-10-15T23:04:39.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006000", - "Timestamp": "2019-10-15T23:04:39.000Z" + "SpotPrice": "0.161700", + "Timestamp": "2024-05-16T08:32:37.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.006000", - "Timestamp": "2019-10-15T23:04:39.000Z" + "SpotPrice": "1.113000", + "Timestamp": "2024-05-16T08:32:37.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.006000", - "Timestamp": "2019-10-15T23:04:39.000Z" + "SpotPrice": "0.485300", + "Timestamp": "2024-05-16T08:32:37.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.263300", - "Timestamp": "2019-10-15T22:59:43.000Z" + "SpotPrice": "0.634900", + "Timestamp": "2024-05-16T08:32:37.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.233300", - "Timestamp": "2019-10-15T22:59:43.000Z" + "SpotPrice": "0.629900", + "Timestamp": "2024-05-16T08:32:37.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.133300", - "Timestamp": "2019-10-15T22:59:43.000Z" + "SpotPrice": "0.504900", + "Timestamp": "2024-05-16T08:32:37.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.705000", - "Timestamp": "2019-10-15T22:59:00.000Z" + "SpotPrice": "0.138400", + "Timestamp": "2024-05-16T08:32:37.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.675000", - "Timestamp": "2019-10-15T22:59:00.000Z" + "SpotPrice": "0.134400", + "Timestamp": "2024-05-16T08:32:37.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.575000", - "Timestamp": "2019-10-15T22:59:00.000Z" - }, - { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m1.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.282000", - "Timestamp": "2019-10-15T22:58:51.000Z" - }, - { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.436500", - "Timestamp": "2019-10-15T22:58:49.000Z" + "SpotPrice": "0.078400", + "Timestamp": "2024-05-16T08:32:37.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.407900", - "Timestamp": "2019-10-15T22:58:42.000Z" + "SpotPrice": "0.903400", + "Timestamp": "2024-05-16T08:32:37.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.377900", - "Timestamp": "2019-10-15T22:58:42.000Z" + "SpotPrice": "0.898400", + "Timestamp": "2024-05-16T08:32:37.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.277900", - "Timestamp": "2019-10-15T22:58:42.000Z" + "SpotPrice": "0.773400", + "Timestamp": "2024-05-16T08:32:37.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.232400", - "Timestamp": "2019-10-15T22:58:33.000Z" + "SpotPrice": "0.162100", + "Timestamp": "2024-05-16T08:32:37.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5a.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.202400", - "Timestamp": "2019-10-15T22:58:33.000Z" + "SpotPrice": "0.158100", + "Timestamp": "2024-05-16T08:32:37.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.102400", - "Timestamp": "2019-10-15T22:58:33.000Z" + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T08:32:37.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.262200", - "Timestamp": "2019-10-15T22:58:27.000Z" + "SpotPrice": "1.262600", + "Timestamp": "2024-05-16T08:32:36.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.232200", - "Timestamp": "2019-10-15T22:58:27.000Z" + "SpotPrice": "1.257600", + "Timestamp": "2024-05-16T08:32:36.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.132200", - "Timestamp": "2019-10-15T22:58:27.000Z" + "SpotPrice": "1.132600", + "Timestamp": "2024-05-16T08:32:36.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.727600", - "Timestamp": "2019-10-15T22:58:18.000Z" + "SpotPrice": "0.127100", + "Timestamp": "2024-05-16T08:32:36.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.697600", - "Timestamp": "2019-10-15T22:58:18.000Z" + "SpotPrice": "0.123100", + "Timestamp": "2024-05-16T08:32:36.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.597600", - "Timestamp": "2019-10-15T22:58:18.000Z" + "SpotPrice": "0.067100", + "Timestamp": "2024-05-16T08:32:36.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "r4.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.358500", - "Timestamp": "2019-10-15T22:51:02.000Z" + "SpotPrice": "2.212200", + "Timestamp": "2024-05-16T08:32:36.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "r4.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.328500", - "Timestamp": "2019-10-15T22:51:02.000Z" + "SpotPrice": "2.182200", + "Timestamp": "2024-05-16T08:32:36.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "r4.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.228500", - "Timestamp": "2019-10-15T22:51:02.000Z" - }, - { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.285600", - "Timestamp": "2019-10-15T22:50:37.000Z" + "SpotPrice": "2.082200", + "Timestamp": "2024-05-16T08:32:36.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6gd.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.962000", - "Timestamp": "2019-10-15T22:50:26.000Z" + "SpotPrice": "0.601000", + "Timestamp": "2024-05-16T08:32:36.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6gd.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.932000", - "Timestamp": "2019-10-15T22:50:26.000Z" + "SpotPrice": "0.596000", + "Timestamp": "2024-05-16T08:32:36.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.832000", - "Timestamp": "2019-10-15T22:50:26.000Z" + "SpotPrice": "0.471000", + "Timestamp": "2024-05-16T08:32:36.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m2.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.471100", - "Timestamp": "2019-10-15T22:50:05.000Z" + "SpotPrice": "0.590600", + "Timestamp": "2024-05-16T08:32:34.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m2.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.441100", - "Timestamp": "2019-10-15T22:50:05.000Z" + "SpotPrice": "0.560600", + "Timestamp": "2024-05-16T08:32:34.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m2.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.341100", - "Timestamp": "2019-10-15T22:50:05.000Z" + "SpotPrice": "0.460600", + "Timestamp": "2024-05-16T08:32:34.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r4.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.477500", - "Timestamp": "2019-10-15T22:50:00.000Z" + "SpotPrice": "0.120200", + "Timestamp": "2024-05-16T08:32:34.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r4.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.447500", - "Timestamp": "2019-10-15T22:50:00.000Z" + "SpotPrice": "0.160200", + "Timestamp": "2024-05-16T08:32:34.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r4.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.347500", - "Timestamp": "2019-10-15T22:50:00.000Z" + "SpotPrice": "0.060200", + "Timestamp": "2024-05-16T08:32:34.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.464300", - "Timestamp": "2019-10-15T22:49:57.000Z" + "SpotPrice": "1.086200", + "Timestamp": "2024-05-16T08:32:34.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.434300", - "Timestamp": "2019-10-15T22:49:57.000Z" + "SpotPrice": "1.081200", + "Timestamp": "2024-05-16T08:32:34.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.334300", - "Timestamp": "2019-10-15T22:49:57.000Z" + "SpotPrice": "0.956200", + "Timestamp": "2024-05-16T08:32:34.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "13.326500", + "Timestamp": "2024-05-16T08:32:34.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.133200", - "Timestamp": "2019-10-15T22:49:52.000Z" + "SpotPrice": "1.110500", + "Timestamp": "2024-05-16T08:32:33.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.173200", - "Timestamp": "2019-10-15T22:49:52.000Z" + "SpotPrice": "1.105500", + "Timestamp": "2024-05-16T08:32:33.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.073200", - "Timestamp": "2019-10-15T22:49:52.000Z" + "SpotPrice": "0.980500", + "Timestamp": "2024-05-16T08:32:33.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.092600", + "Timestamp": "2024-05-16T08:32:33.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.882600", - "Timestamp": "2019-10-15T22:42:12.000Z" + "SpotPrice": "0.842400", + "Timestamp": "2024-05-16T08:32:32.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.852600", - "Timestamp": "2019-10-15T22:42:12.000Z" + "SpotPrice": "0.837400", + "Timestamp": "2024-05-16T08:32:32.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.752600", - "Timestamp": "2019-10-15T22:42:12.000Z" + "SpotPrice": "0.712400", + "Timestamp": "2024-05-16T08:32:32.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.219300", - "Timestamp": "2019-10-15T22:42:11.000Z" + "SpotPrice": "0.135200", + "Timestamp": "2024-05-16T08:32:32.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.189300", - "Timestamp": "2019-10-15T22:42:11.000Z" + "SpotPrice": "0.131500", + "Timestamp": "2024-05-16T08:32:32.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.089300", - "Timestamp": "2019-10-15T22:42:11.000Z" + "SpotPrice": "0.075200", + "Timestamp": "2024-05-16T08:32:32.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.137600", - "Timestamp": "2019-10-15T22:41:58.000Z" + "SpotPrice": "1.534700", + "Timestamp": "2024-05-16T08:32:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.177600", - "Timestamp": "2019-10-15T22:41:58.000Z" + "SpotPrice": "1.529700", + "Timestamp": "2024-05-16T08:32:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.077600", - "Timestamp": "2019-10-15T22:41:58.000Z" + "SpotPrice": "1.404700", + "Timestamp": "2024-05-16T08:32:31.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061500", - "Timestamp": "2019-10-15T22:41:58.000Z" + "SpotPrice": "0.291500", + "Timestamp": "2024-05-16T08:32:31.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.101500", - "Timestamp": "2019-10-15T22:41:58.000Z" + "SpotPrice": "0.288500", + "Timestamp": "2024-05-16T08:32:31.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001500", - "Timestamp": "2019-10-15T22:41:58.000Z" + "SpotPrice": "0.231500", + "Timestamp": "2024-05-16T08:32:31.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.536800", + "Timestamp": "2024-05-16T08:32:31.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.metal-48xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.234000", - "Timestamp": "2019-10-15T22:41:56.000Z" + "SpotPrice": "4.357700", + "Timestamp": "2024-05-16T08:32:31.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.metal-48xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.204000", - "Timestamp": "2019-10-15T22:41:56.000Z" + "SpotPrice": "4.352700", + "Timestamp": "2024-05-16T08:32:31.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.104000", - "Timestamp": "2019-10-15T22:41:56.000Z" + "SpotPrice": "4.227700", + "Timestamp": "2024-05-16T08:32:31.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g3.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.284900", - "Timestamp": "2019-10-15T22:41:55.000Z" + "SpotPrice": "0.649200", + "Timestamp": "2024-05-16T08:32:31.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g3.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.254900", - "Timestamp": "2019-10-15T22:41:55.000Z" + "SpotPrice": "0.619200", + "Timestamp": "2024-05-16T08:32:31.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g3.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.154900", - "Timestamp": "2019-10-15T22:41:55.000Z" + "SpotPrice": "0.519200", + "Timestamp": "2024-05-16T08:32:31.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.725000", - "Timestamp": "2019-10-15T22:41:48.000Z" + "SpotPrice": "0.667300", + "Timestamp": "2024-05-16T08:32:31.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.695000", - "Timestamp": "2019-10-15T22:41:48.000Z" + "SpotPrice": "0.662300", + "Timestamp": "2024-05-16T08:32:31.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.595000", - "Timestamp": "2019-10-15T22:41:48.000Z" + "SpotPrice": "0.537300", + "Timestamp": "2024-05-16T08:32:31.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.865100", - "Timestamp": "2019-10-15T22:33:41.000Z" + "SpotPrice": "0.820300", + "Timestamp": "2024-05-16T08:32:31.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.835100", - "Timestamp": "2019-10-15T22:33:41.000Z" + "SpotPrice": "0.815300", + "Timestamp": "2024-05-16T08:32:31.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.735100", - "Timestamp": "2019-10-15T22:33:41.000Z" + "SpotPrice": "0.690300", + "Timestamp": "2024-05-16T08:32:31.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r4.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.351300", - "Timestamp": "2019-10-15T22:33:39.000Z" + "SpotPrice": "0.648400", + "Timestamp": "2024-05-16T08:32:31.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r4.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.391300", - "Timestamp": "2019-10-15T22:33:39.000Z" + "SpotPrice": "0.618400", + "Timestamp": "2024-05-16T08:32:31.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r4.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.291300", - "Timestamp": "2019-10-15T22:33:39.000Z" + "SpotPrice": "0.518400", + "Timestamp": "2024-05-16T08:32:31.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "i3.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.526500", - "Timestamp": "2019-10-15T22:33:39.000Z" + "SpotPrice": "0.418800", + "Timestamp": "2024-05-16T08:32:31.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "i3.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.496500", - "Timestamp": "2019-10-15T22:33:39.000Z" + "SpotPrice": "0.388800", + "Timestamp": "2024-05-16T08:32:31.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "i3.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.396500", - "Timestamp": "2019-10-15T22:33:39.000Z" + "SpotPrice": "0.288800", + "Timestamp": "2024-05-16T08:32:31.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.497700", - "Timestamp": "2019-10-15T22:33:27.000Z" + "SpotPrice": "0.116900", + "Timestamp": "2024-05-16T08:32:31.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119100", + "Timestamp": "2024-05-16T08:32:31.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.467700", - "Timestamp": "2019-10-15T22:33:27.000Z" + "SpotPrice": "0.113200", + "Timestamp": "2024-05-16T08:32:31.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115400", + "Timestamp": "2024-05-16T08:32:31.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.367700", - "Timestamp": "2019-10-15T22:33:27.000Z" + "SpotPrice": "0.056900", + "Timestamp": "2024-05-16T08:32:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059100", + "Timestamp": "2024-05-16T08:32:31.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.260800", - "Timestamp": "2019-10-15T22:33:26.000Z" + "SpotPrice": "0.281900", + "Timestamp": "2024-05-16T08:32:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.230800", - "Timestamp": "2019-10-15T22:33:26.000Z" + "SpotPrice": "0.276900", + "Timestamp": "2024-05-16T08:32:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T22:33:26.000Z" + "SpotPrice": "0.151900", + "Timestamp": "2024-05-16T08:32:31.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.146300", - "Timestamp": "2019-10-15T22:33:25.000Z" + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T08:32:30.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.186300", - "Timestamp": "2019-10-15T22:33:25.000Z" + "SpotPrice": "0.102200", + "Timestamp": "2024-05-16T08:32:30.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.086300", - "Timestamp": "2019-10-15T22:33:25.000Z" + "SpotPrice": "0.045900", + "Timestamp": "2024-05-16T08:32:30.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.562500", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.670100", - "Timestamp": "2019-10-15T22:33:23.000Z" + "SpotPrice": "0.597000", + "Timestamp": "2024-05-16T08:32:29.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.640100", - "Timestamp": "2019-10-15T22:33:23.000Z" + "SpotPrice": "0.592000", + "Timestamp": "2024-05-16T08:32:29.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.540100", - "Timestamp": "2019-10-15T22:33:23.000Z" + "SpotPrice": "0.467000", + "Timestamp": "2024-05-16T08:32:29.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.770500", - "Timestamp": "2019-10-15T22:33:22.000Z" + "SpotPrice": "0.634300", + "Timestamp": "2024-05-16T08:32:29.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.740500", - "Timestamp": "2019-10-15T22:33:22.000Z" + "SpotPrice": "0.604300", + "Timestamp": "2024-05-16T08:32:29.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.640500", - "Timestamp": "2019-10-15T22:33:22.000Z" + "SpotPrice": "0.504300", + "Timestamp": "2024-05-16T08:32:29.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.672200", - "Timestamp": "2019-10-15T22:32:58.000Z" + "SpotPrice": "0.412200", + "Timestamp": "2024-05-16T08:32:28.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7g.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.642200", - "Timestamp": "2019-10-15T22:32:58.000Z" + "SpotPrice": "0.407200", + "Timestamp": "2024-05-16T08:32:28.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.542200", - "Timestamp": "2019-10-15T22:32:58.000Z" + "SpotPrice": "0.282200", + "Timestamp": "2024-05-16T08:32:28.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.756800", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.873200", - "Timestamp": "2019-10-15T22:26:03.000Z" + "SpotPrice": "1.223200", + "Timestamp": "2024-05-16T08:32:27.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.843200", - "Timestamp": "2019-10-15T22:26:03.000Z" + "SpotPrice": "1.218200", + "Timestamp": "2024-05-16T08:32:27.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.743200", - "Timestamp": "2019-10-15T22:26:03.000Z" + "SpotPrice": "1.093200", + "Timestamp": "2024-05-16T08:32:27.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.296200", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.559100", - "Timestamp": "2019-10-15T22:25:49.000Z" + "SpotPrice": "0.546300", + "Timestamp": "2024-05-16T08:32:25.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.529100", - "Timestamp": "2019-10-15T22:25:49.000Z" + "SpotPrice": "0.541300", + "Timestamp": "2024-05-16T08:32:25.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.429100", - "Timestamp": "2019-10-15T22:25:49.000Z" + "SpotPrice": "0.416300", + "Timestamp": "2024-05-16T08:32:25.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.866100", - "Timestamp": "2019-10-15T22:25:48.000Z" + "SpotPrice": "0.174400", + "Timestamp": "2024-05-16T08:32:25.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.836100", - "Timestamp": "2019-10-15T22:25:48.000Z" + "SpotPrice": "0.170400", + "Timestamp": "2024-05-16T08:32:25.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.736100", - "Timestamp": "2019-10-15T22:25:48.000Z" + "SpotPrice": "0.114400", + "Timestamp": "2024-05-16T08:32:25.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.279000", - "Timestamp": "2019-10-15T22:25:25.000Z" + "SpotPrice": "1.424700", + "Timestamp": "2024-05-16T08:32:25.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.448100", + "Timestamp": "2024-05-16T08:32:25.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.249000", - "Timestamp": "2019-10-15T22:25:25.000Z" + "SpotPrice": "1.419700", + "Timestamp": "2024-05-16T08:32:25.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.443100", + "Timestamp": "2024-05-16T08:32:25.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.149000", - "Timestamp": "2019-10-15T22:25:25.000Z" + "SpotPrice": "1.294700", + "Timestamp": "2024-05-16T08:32:25.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.318100", + "Timestamp": "2024-05-16T08:32:25.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.576200", - "Timestamp": "2019-10-15T22:25:19.000Z" + "SpotPrice": "4.614600", + "Timestamp": "2024-05-16T08:32:25.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m4.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.532900", - "Timestamp": "2019-10-15T22:25:19.000Z" + "SpotPrice": "0.170000", + "Timestamp": "2024-05-16T08:32:24.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m4.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.502900", - "Timestamp": "2019-10-15T22:25:19.000Z" + "SpotPrice": "0.210000", + "Timestamp": "2024-05-16T08:32:24.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m4.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.402900", - "Timestamp": "2019-10-15T22:25:19.000Z" + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T08:32:24.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.004000", - "Timestamp": "2019-10-15T22:25:08.000Z" + "SpotPrice": "5.865700", + "Timestamp": "2024-05-16T08:32:22.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.974000", - "Timestamp": "2019-10-15T22:25:08.000Z" + "SpotPrice": "5.860700", + "Timestamp": "2024-05-16T08:32:22.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.874000", - "Timestamp": "2019-10-15T22:25:08.000Z" + "SpotPrice": "5.735700", + "Timestamp": "2024-05-16T08:32:22.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf2.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.788500", - "Timestamp": "2019-10-15T22:25:03.000Z" + "SpotPrice": "5.663700", + "Timestamp": "2024-05-16T08:32:22.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf2.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.758500", - "Timestamp": "2019-10-15T22:25:03.000Z" + "SpotPrice": "5.633700", + "Timestamp": "2024-05-16T08:32:22.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf2.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.658500", - "Timestamp": "2019-10-15T22:25:03.000Z" + "SpotPrice": "5.533700", + "Timestamp": "2024-05-16T08:32:22.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "p4d.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.170900", - "Timestamp": "2019-10-15T22:24:56.000Z" + "SpotPrice": "14.551500", + "Timestamp": "2024-05-16T08:32:21.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "p4d.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.140900", - "Timestamp": "2019-10-15T22:24:56.000Z" + "SpotPrice": "14.546500", + "Timestamp": "2024-05-16T08:32:21.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "p4d.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.040900", - "Timestamp": "2019-10-15T22:24:56.000Z" + "SpotPrice": "14.421500", + "Timestamp": "2024-05-16T08:32:21.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.583200", + "Timestamp": "2024-05-16T08:32:21.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.281100", - "Timestamp": "2019-10-15T22:24:47.000Z" + "SpotPrice": "3.067300", + "Timestamp": "2024-05-16T08:32:21.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.251100", - "Timestamp": "2019-10-15T22:24:47.000Z" + "SpotPrice": "3.062300", + "Timestamp": "2024-05-16T08:32:21.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.151100", - "Timestamp": "2019-10-15T22:24:47.000Z" + "SpotPrice": "2.937300", + "Timestamp": "2024-05-16T08:32:21.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.091300", + "Timestamp": "2024-05-16T08:32:20.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.168700", - "Timestamp": "2019-10-15T22:24:43.000Z" + "SpotPrice": "0.138200", + "Timestamp": "2024-05-16T08:32:18.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.208700", - "Timestamp": "2019-10-15T22:24:43.000Z" + "SpotPrice": "0.134500", + "Timestamp": "2024-05-16T08:32:18.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.108700", - "Timestamp": "2019-10-15T22:24:43.000Z" + "SpotPrice": "0.078200", + "Timestamp": "2024-05-16T08:32:18.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "a1.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.263500", - "Timestamp": "2019-10-15T22:20:56.000Z" + "SpotPrice": "0.525300", + "Timestamp": "2024-05-16T08:32:17.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "a1.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.233500", - "Timestamp": "2019-10-15T22:20:56.000Z" + "SpotPrice": "0.520300", + "Timestamp": "2024-05-16T08:32:17.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "a1.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.133500", - "Timestamp": "2019-10-15T22:20:56.000Z" + "SpotPrice": "0.395300", + "Timestamp": "2024-05-16T08:32:17.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "10.288000", - "Timestamp": "2019-10-15T22:20:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.840400", + "Timestamp": "2024-05-16T08:32:15.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "10.288000", - "Timestamp": "2019-10-15T22:20:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.810400", + "Timestamp": "2024-05-16T08:32:15.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "10.288000", - "Timestamp": "2019-10-15T22:20:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.710400", + "Timestamp": "2024-05-16T08:32:15.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5n.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c4.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.752600", - "Timestamp": "2019-10-15T22:20:26.000Z" + "SpotPrice": "0.888600", + "Timestamp": "2024-05-16T08:32:14.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5n.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c4.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.722600", - "Timestamp": "2019-10-15T22:20:26.000Z" + "SpotPrice": "0.858600", + "Timestamp": "2024-05-16T08:32:14.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5n.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c4.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.622600", - "Timestamp": "2019-10-15T22:20:26.000Z" - }, - { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.961400", - "Timestamp": "2019-10-15T22:17:41.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.961400", - "Timestamp": "2019-10-15T22:17:41.000Z" + "SpotPrice": "0.758600", + "Timestamp": "2024-05-16T08:32:14.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.961400", - "Timestamp": "2019-10-15T22:17:41.000Z" + "SpotPrice": "3.132800", + "Timestamp": "2024-05-16T08:32:13.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d2.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.961400", - "Timestamp": "2019-10-15T22:17:41.000Z" + "SpotPrice": "0.762000", + "Timestamp": "2024-05-16T08:32:12.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "g4dn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.702900", - "Timestamp": "2019-10-15T22:17:23.000Z" + "SpotPrice": "0.716700", + "Timestamp": "2024-05-16T08:32:11.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "g4dn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.672900", - "Timestamp": "2019-10-15T22:17:23.000Z" + "SpotPrice": "0.711700", + "Timestamp": "2024-05-16T08:32:11.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "g4dn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.572900", - "Timestamp": "2019-10-15T22:17:23.000Z" + "SpotPrice": "0.586700", + "Timestamp": "2024-05-16T08:32:11.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.335600", - "Timestamp": "2019-10-15T22:17:03.000Z" + "SpotPrice": "0.133300", + "Timestamp": "2024-05-16T08:32:11.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6g.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.305600", - "Timestamp": "2019-10-15T22:17:03.000Z" + "SpotPrice": "0.129600", + "Timestamp": "2024-05-16T08:32:11.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.205600", - "Timestamp": "2019-10-15T22:17:03.000Z" + "SpotPrice": "0.073300", + "Timestamp": "2024-05-16T08:32:11.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.483700", - "Timestamp": "2019-10-15T22:16:42.000Z" + "SpotPrice": "0.957500", + "Timestamp": "2024-05-16T08:18:40.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.453700", - "Timestamp": "2019-10-15T22:16:42.000Z" + "SpotPrice": "0.952500", + "Timestamp": "2024-05-16T08:18:40.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.353700", - "Timestamp": "2019-10-15T22:16:42.000Z" + "SpotPrice": "0.827500", + "Timestamp": "2024-05-16T08:18:40.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.675400", - "Timestamp": "2019-10-15T22:16:34.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.459800", + "Timestamp": "2024-05-16T08:18:39.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.675400", - "Timestamp": "2019-10-15T22:16:34.000Z" + "SpotPrice": "2.739000", + "Timestamp": "2024-05-16T08:18:39.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.675400", - "Timestamp": "2019-10-15T22:16:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.734000", + "Timestamp": "2024-05-16T08:18:39.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.609000", + "Timestamp": "2024-05-16T08:18:39.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5zn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.675400", - "Timestamp": "2019-10-15T22:16:34.000Z" + "SpotPrice": "0.236100", + "Timestamp": "2024-05-16T08:18:38.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5zn.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.645400", - "Timestamp": "2019-10-15T22:16:34.000Z" + "SpotPrice": "0.232400", + "Timestamp": "2024-05-16T08:18:38.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.645400", - "Timestamp": "2019-10-15T22:16:34.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176100", + "Timestamp": "2024-05-16T08:18:38.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.645400", - "Timestamp": "2019-10-15T22:16:34.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.730900", + "Timestamp": "2024-05-16T08:18:37.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.645400", - "Timestamp": "2019-10-15T22:16:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.258000", + "Timestamp": "2024-05-16T08:18:36.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.545400", - "Timestamp": "2019-10-15T22:16:34.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.104700", + "Timestamp": "2024-05-16T08:18:33.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.545400", - "Timestamp": "2019-10-15T22:16:34.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.629200", + "Timestamp": "2024-05-16T08:18:32.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.545400", - "Timestamp": "2019-10-15T22:16:34.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.674700", + "Timestamp": "2024-05-16T08:18:29.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.545400", - "Timestamp": "2019-10-15T22:16:34.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.628300", + "Timestamp": "2024-05-16T08:18:29.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "p2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.352200", - "Timestamp": "2019-10-15T22:16:33.000Z" - }, - { - "AvailabilityZone": "us-west-2a", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.392200", - "Timestamp": "2019-10-15T22:16:33.000Z" + "SpotPrice": "1.623300", + "Timestamp": "2024-05-16T08:18:29.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.292200", - "Timestamp": "2019-10-15T22:16:33.000Z" - }, - { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.269600", - "Timestamp": "2019-10-15T22:16:28.000Z" + "SpotPrice": "1.498300", + "Timestamp": "2024-05-16T08:18:29.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.239600", - "Timestamp": "2019-10-15T22:16:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.427000", + "Timestamp": "2024-05-16T08:18:29.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.139600", - "Timestamp": "2019-10-15T22:16:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.144000", + "Timestamp": "2024-05-16T08:18:28.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.115300", - "Timestamp": "2019-10-15T22:16:26.000Z" + "SpotPrice": "0.397600", + "Timestamp": "2024-05-16T08:18:27.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.155300", - "Timestamp": "2019-10-15T22:16:26.000Z" + "SpotPrice": "0.367600", + "Timestamp": "2024-05-16T08:18:27.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.055300", - "Timestamp": "2019-10-15T22:16:26.000Z" + "SpotPrice": "0.267600", + "Timestamp": "2024-05-16T08:18:27.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.837800", + "Timestamp": "2024-05-16T08:18:27.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.282900", - "Timestamp": "2019-10-15T22:16:17.000Z" + "SpotPrice": "2.577700", + "Timestamp": "2024-05-16T08:18:26.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.113200", + "Timestamp": "2024-05-16T08:18:26.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.252900", - "Timestamp": "2019-10-15T22:16:17.000Z" + "SpotPrice": "2.572700", + "Timestamp": "2024-05-16T08:18:26.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.152900", - "Timestamp": "2019-10-15T22:16:17.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.108200", + "Timestamp": "2024-05-16T08:18:26.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.large", - "ProductDescription": "Windows", - "SpotPrice": "0.127400", - "Timestamp": "2019-10-15T22:14:36.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.447700", + "Timestamp": "2024-05-16T08:18:26.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095400", - "Timestamp": "2019-10-15T22:09:58.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.983200", + "Timestamp": "2024-05-16T08:18:26.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095400", - "Timestamp": "2019-10-15T22:09:58.000Z" + "SpotPrice": "1.397100", + "Timestamp": "2024-05-16T08:18:25.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095400", - "Timestamp": "2019-10-15T22:09:58.000Z" + "SpotPrice": "1.233600", + "Timestamp": "2024-05-16T08:18:25.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135400", - "Timestamp": "2019-10-15T22:09:58.000Z" + "SpotPrice": "1.392100", + "Timestamp": "2024-05-16T08:18:25.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135400", - "Timestamp": "2019-10-15T22:09:58.000Z" + "SpotPrice": "1.228600", + "Timestamp": "2024-05-16T08:18:25.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135400", - "Timestamp": "2019-10-15T22:09:58.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.267100", + "Timestamp": "2024-05-16T08:18:25.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035400", - "Timestamp": "2019-10-15T22:09:58.000Z" + "SpotPrice": "1.103600", + "Timestamp": "2024-05-16T08:18:25.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035400", - "Timestamp": "2019-10-15T22:09:58.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.606000", + "Timestamp": "2024-05-16T08:18:24.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.509500", + "Timestamp": "2024-05-16T08:18:23.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.313200", + "Timestamp": "2024-05-16T08:18:23.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "p2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.283200", + "Timestamp": "2024-05-16T08:18:23.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "p2.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035400", - "Timestamp": "2019-10-15T22:09:58.000Z" + "SpotPrice": "3.183200", + "Timestamp": "2024-05-16T08:18:23.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.019300", - "Timestamp": "2019-10-15T22:09:56.000Z" + "SpotPrice": "8.705100", + "Timestamp": "2024-05-16T08:18:22.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.127400", - "Timestamp": "2019-10-15T22:09:56.000Z" + "SpotPrice": "0.286300", + "Timestamp": "2024-05-16T08:18:22.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "p2.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.127400", - "Timestamp": "2019-10-15T22:09:56.000Z" + "SpotPrice": "4.336100", + "Timestamp": "2024-05-16T08:18:22.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "z1d.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.127400", - "Timestamp": "2019-10-15T22:09:56.000Z" + "SpotPrice": "3.797900", + "Timestamp": "2024-05-16T08:18:20.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.308500", - "Timestamp": "2019-10-15T22:08:57.000Z" + "SpotPrice": "3.806100", + "Timestamp": "2024-05-16T08:18:20.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.441100", - "Timestamp": "2019-10-15T22:08:55.000Z" + "SpotPrice": "0.312300", + "Timestamp": "2024-05-16T08:18:20.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.411100", - "Timestamp": "2019-10-15T22:08:55.000Z" + "SpotPrice": "0.307300", + "Timestamp": "2024-05-16T08:18:20.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.311100", - "Timestamp": "2019-10-15T22:08:55.000Z" + "SpotPrice": "0.182300", + "Timestamp": "2024-05-16T08:18:20.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.138200", - "Timestamp": "2019-10-15T22:08:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.502700", + "Timestamp": "2024-05-16T08:18:20.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.178200", - "Timestamp": "2019-10-15T22:08:52.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.560600", + "Timestamp": "2024-05-16T08:18:19.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.078200", - "Timestamp": "2019-10-15T22:08:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.349600", + "Timestamp": "2024-05-16T08:18:19.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.277100", - "Timestamp": "2019-10-15T22:08:38.000Z" + "SpotPrice": "1.993100", + "Timestamp": "2024-05-16T08:18:19.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.247100", - "Timestamp": "2019-10-15T22:08:38.000Z" + "SpotPrice": "1.963100", + "Timestamp": "2024-05-16T08:18:19.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.147100", - "Timestamp": "2019-10-15T22:08:38.000Z" + "SpotPrice": "1.863100", + "Timestamp": "2024-05-16T08:18:19.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.136000", - "Timestamp": "2019-10-15T22:08:22.000Z" + "SpotPrice": "0.406600", + "Timestamp": "2024-05-16T08:18:17.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i2.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.176000", - "Timestamp": "2019-10-15T22:08:22.000Z" + "SpotPrice": "0.446600", + "Timestamp": "2024-05-16T08:18:17.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i2.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.076000", - "Timestamp": "2019-10-15T22:08:22.000Z" + "SpotPrice": "0.346600", + "Timestamp": "2024-05-16T08:18:17.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.872500", - "Timestamp": "2019-10-15T22:08:07.000Z" + "SpotPrice": "8.843200", + "Timestamp": "2024-05-16T08:18:17.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.842500", - "Timestamp": "2019-10-15T22:08:07.000Z" + "SpotPrice": "8.838200", + "Timestamp": "2024-05-16T08:18:17.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.742500", - "Timestamp": "2019-10-15T22:08:07.000Z" + "SpotPrice": "8.713200", + "Timestamp": "2024-05-16T08:18:17.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5dn.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r3.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.038600", - "Timestamp": "2019-10-15T22:08:05.000Z" + "SpotPrice": "1.147600", + "Timestamp": "2024-05-16T08:18:16.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5dn.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.038600", - "Timestamp": "2019-10-15T22:08:05.000Z" + "SpotPrice": "0.377000", + "Timestamp": "2024-05-16T08:18:16.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.large", "ProductDescription": "Windows", - "SpotPrice": "6.038600", - "Timestamp": "2019-10-15T22:08:05.000Z" + "SpotPrice": "0.143100", + "Timestamp": "2024-05-16T08:18:15.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.106800", + "Timestamp": "2024-05-16T08:18:15.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2gd.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.232100", - "Timestamp": "2019-10-15T22:07:59.000Z" + "SpotPrice": "0.094000", + "Timestamp": "2024-05-16T08:18:15.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2gd.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.202100", - "Timestamp": "2019-10-15T22:07:59.000Z" + "SpotPrice": "0.065000", + "Timestamp": "2024-05-16T08:18:15.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2gd.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.102100", - "Timestamp": "2019-10-15T22:07:59.000Z" + "SpotPrice": "0.034000", + "Timestamp": "2024-05-16T08:18:15.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.475800", - "Timestamp": "2019-10-15T22:07:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.504400", + "Timestamp": "2024-05-16T08:18:15.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.445800", - "Timestamp": "2019-10-15T22:07:56.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.088100", + "Timestamp": "2024-05-16T08:18:15.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.345800", - "Timestamp": "2019-10-15T22:07:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.600700", + "Timestamp": "2024-05-16T08:18:13.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.290700", - "Timestamp": "2019-10-15T22:07:54.000Z" + "SpotPrice": "7.458900", + "Timestamp": "2024-05-16T08:18:13.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5dn.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "h1.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.752600", - "Timestamp": "2019-10-15T22:07:42.000Z" + "SpotPrice": "0.441900", + "Timestamp": "2024-05-16T08:18:12.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.752600", - "Timestamp": "2019-10-15T22:07:42.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "h1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.411900", + "Timestamp": "2024-05-16T08:18:12.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "h1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.311900", + "Timestamp": "2024-05-16T08:18:12.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.752600", - "Timestamp": "2019-10-15T22:07:42.000Z" + "SpotPrice": "4.356900", + "Timestamp": "2024-05-16T08:18:12.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5dn.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.722600", - "Timestamp": "2019-10-15T22:07:42.000Z" + "SpotPrice": "4.351900", + "Timestamp": "2024-05-16T08:18:12.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.722600", - "Timestamp": "2019-10-15T22:07:42.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.226900", + "Timestamp": "2024-05-16T08:18:12.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.722600", - "Timestamp": "2019-10-15T22:07:42.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.119200", + "Timestamp": "2024-05-16T08:18:12.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.622600", - "Timestamp": "2019-10-15T22:07:42.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T08:18:12.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.622600", - "Timestamp": "2019-10-15T22:07:42.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098400", + "Timestamp": "2024-05-16T08:18:12.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.622600", - "Timestamp": "2019-10-15T22:07:42.000Z" + "SpotPrice": "0.042100", + "Timestamp": "2024-05-16T08:18:12.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i-flex.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.263300", - "Timestamp": "2019-10-15T22:07:19.000Z" + "SpotPrice": "0.501600", + "Timestamp": "2024-05-16T08:18:11.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.263300", - "Timestamp": "2019-10-15T22:07:19.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.496600", + "Timestamp": "2024-05-16T08:18:11.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.263300", - "Timestamp": "2019-10-15T22:07:19.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.371600", + "Timestamp": "2024-05-16T08:18:11.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.233300", - "Timestamp": "2019-10-15T22:07:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.847500", + "Timestamp": "2024-05-16T08:18:11.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.233300", - "Timestamp": "2019-10-15T22:07:19.000Z" + "SpotPrice": "0.842500", + "Timestamp": "2024-05-16T08:18:11.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.233300", - "Timestamp": "2019-10-15T22:07:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.717500", + "Timestamp": "2024-05-16T08:18:11.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.133300", - "Timestamp": "2019-10-15T22:07:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.826000", + "Timestamp": "2024-05-16T08:18:11.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.133300", - "Timestamp": "2019-10-15T22:07:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.821000", + "Timestamp": "2024-05-16T08:18:11.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.133300", - "Timestamp": "2019-10-15T22:07:19.000Z" + "SpotPrice": "0.696000", + "Timestamp": "2024-05-16T08:18:11.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c3.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.077300", - "Timestamp": "2019-10-15T22:06:43.000Z" + "SpotPrice": "2.098800", + "Timestamp": "2024-05-16T08:18:10.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.077300", - "Timestamp": "2019-10-15T22:06:43.000Z" + "SpotPrice": "12.714900", + "Timestamp": "2024-05-16T08:18:09.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t2.large", "ProductDescription": "Windows", - "SpotPrice": "4.077300", - "Timestamp": "2019-10-15T22:06:43.000Z" + "SpotPrice": "0.066200", + "Timestamp": "2024-05-16T08:18:09.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.077300", - "Timestamp": "2019-10-15T22:06:43.000Z" + "SpotPrice": "0.727100", + "Timestamp": "2024-05-16T08:18:08.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.263300", - "Timestamp": "2019-10-15T22:06:08.000Z" + "SpotPrice": "1.544600", + "Timestamp": "2024-05-16T08:18:07.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.263300", - "Timestamp": "2019-10-15T22:06:08.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.539600", + "Timestamp": "2024-05-16T08:18:07.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.263300", - "Timestamp": "2019-10-15T22:06:08.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.414600", + "Timestamp": "2024-05-16T08:18:07.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Windows", + "SpotPrice": "5.522700", + "Timestamp": "2024-05-16T08:18:07.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "im4gn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.263300", - "Timestamp": "2019-10-15T22:06:08.000Z" + "SpotPrice": "0.131700", + "Timestamp": "2024-05-16T08:18:07.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "im4gn.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.233300", - "Timestamp": "2019-10-15T22:06:08.000Z" + "SpotPrice": "0.128000", + "Timestamp": "2024-05-16T08:18:07.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.233300", - "Timestamp": "2019-10-15T22:06:08.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071700", + "Timestamp": "2024-05-16T08:18:07.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.233300", - "Timestamp": "2019-10-15T22:06:08.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.178600", + "Timestamp": "2024-05-16T08:18:07.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.233300", - "Timestamp": "2019-10-15T22:06:08.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.053700", + "Timestamp": "2024-05-16T08:18:07.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.133300", - "Timestamp": "2019-10-15T22:06:08.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.175200", + "Timestamp": "2024-05-16T08:18:07.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.133300", - "Timestamp": "2019-10-15T22:06:08.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.161800", + "Timestamp": "2024-05-16T08:18:06.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.133300", - "Timestamp": "2019-10-15T22:06:08.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.070200", + "Timestamp": "2024-05-16T08:18:06.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.133300", - "Timestamp": "2019-10-15T22:06:08.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.685600", + "Timestamp": "2024-05-16T08:18:06.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.547200", - "Timestamp": "2019-10-15T22:04:59.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.680600", + "Timestamp": "2024-05-16T08:18:06.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.547200", - "Timestamp": "2019-10-15T22:04:59.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.555600", + "Timestamp": "2024-05-16T08:18:06.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "z1d.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.547200", - "Timestamp": "2019-10-15T22:04:59.000Z" + "SpotPrice": "9.171900", + "Timestamp": "2024-05-16T08:18:04.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "r4.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.871000", - "Timestamp": "2019-10-15T22:04:47.000Z" + "SpotPrice": "0.574400", + "Timestamp": "2024-05-16T08:18:04.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.871000", - "Timestamp": "2019-10-15T22:04:47.000Z" + "SpotPrice": "0.355700", + "Timestamp": "2024-05-16T08:18:04.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.871000", - "Timestamp": "2019-10-15T22:04:47.000Z" + "SpotPrice": "0.320100", + "Timestamp": "2024-05-16T08:18:04.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.469200", - "Timestamp": "2019-10-15T22:04:40.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.136300", + "Timestamp": "2024-05-16T08:18:04.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "z1d.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.469200", - "Timestamp": "2019-10-15T22:04:40.000Z" + "SpotPrice": "1.491700", + "Timestamp": "2024-05-16T08:18:04.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.439200", - "Timestamp": "2019-10-15T22:04:40.000Z" - }, - { - "AvailabilityZone": "us-west-2a", - "InstanceType": "z1d.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.439200", - "Timestamp": "2019-10-15T22:04:40.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.339200", - "Timestamp": "2019-10-15T22:04:40.000Z" + "SpotPrice": "1.486700", + "Timestamp": "2024-05-16T08:18:04.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "z1d.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.339200", - "Timestamp": "2019-10-15T22:04:40.000Z" + "SpotPrice": "1.361700", + "Timestamp": "2024-05-16T08:18:04.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.088100", - "Timestamp": "2019-10-15T22:00:35.000Z" + "SpotPrice": "1.562900", + "Timestamp": "2024-05-16T08:18:04.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5a.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.128100", - "Timestamp": "2019-10-15T22:00:35.000Z" + "SpotPrice": "1.557900", + "Timestamp": "2024-05-16T08:18:04.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.028100", - "Timestamp": "2019-10-15T22:00:35.000Z" + "SpotPrice": "1.432900", + "Timestamp": "2024-05-16T08:18:04.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.899300", - "Timestamp": "2019-10-15T22:00:11.000Z" + "SpotPrice": "2.313600", + "Timestamp": "2024-05-16T08:18:03.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.683700", - "Timestamp": "2019-10-15T21:59:52.000Z" + "SpotPrice": "2.100900", + "Timestamp": "2024-05-16T08:18:03.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5a.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.653700", - "Timestamp": "2019-10-15T21:59:52.000Z" + "SpotPrice": "2.095900", + "Timestamp": "2024-05-16T08:18:03.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.553700", - "Timestamp": "2019-10-15T21:59:52.000Z" + "SpotPrice": "1.970900", + "Timestamp": "2024-05-16T08:18:03.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.487900", - "Timestamp": "2019-10-15T21:59:35.000Z" + "SpotPrice": "1.197300", + "Timestamp": "2024-05-16T08:18:03.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.457900", - "Timestamp": "2019-10-15T21:59:35.000Z" + "SpotPrice": "1.167300", + "Timestamp": "2024-05-16T08:18:03.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.357900", - "Timestamp": "2019-10-15T21:59:35.000Z" + "SpotPrice": "1.067300", + "Timestamp": "2024-05-16T08:18:03.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.025800", - "Timestamp": "2019-10-15T21:55:58.000Z" + "SpotPrice": "6.287400", + "Timestamp": "2024-05-16T08:18:03.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.511600", + "Timestamp": "2024-05-16T08:18:03.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.211800", - "Timestamp": "2019-10-15T21:55:49.000Z" + "SpotPrice": "0.107900", + "Timestamp": "2024-05-16T08:18:02.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T08:18:02.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.181800", - "Timestamp": "2019-10-15T21:55:49.000Z" + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T08:18:02.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-16T08:18:02.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.081800", - "Timestamp": "2019-10-15T21:55:49.000Z" + "SpotPrice": "0.047900", + "Timestamp": "2024-05-16T08:18:02.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045400", + "Timestamp": "2024-05-16T08:18:02.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.124600", - "Timestamp": "2019-10-15T21:52:28.000Z" + "SpotPrice": "1.059500", + "Timestamp": "2024-05-16T08:18:02.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gn.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.164600", - "Timestamp": "2019-10-15T21:52:28.000Z" + "SpotPrice": "1.054500", + "Timestamp": "2024-05-16T08:18:02.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.064600", - "Timestamp": "2019-10-15T21:52:28.000Z" - }, - { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.537600", - "Timestamp": "2019-10-15T21:51:59.000Z" + "SpotPrice": "0.929500", + "Timestamp": "2024-05-16T08:18:02.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.450500", - "Timestamp": "2019-10-15T21:51:56.000Z" + "SpotPrice": "4.039100", + "Timestamp": "2024-05-16T08:18:02.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.979900", - "Timestamp": "2019-10-15T21:51:28.000Z" + "SpotPrice": "2.290200", + "Timestamp": "2024-05-16T08:18:02.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.949900", - "Timestamp": "2019-10-15T21:51:28.000Z" + "SpotPrice": "2.285200", + "Timestamp": "2024-05-16T08:18:02.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.849900", - "Timestamp": "2019-10-15T21:51:28.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.312000", - "Timestamp": "2019-10-15T21:50:15.000Z" + "SpotPrice": "2.160200", + "Timestamp": "2024-05-16T08:18:02.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.312000", - "Timestamp": "2019-10-15T21:50:15.000Z" + "SpotPrice": "4.132200", + "Timestamp": "2024-05-16T08:18:02.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.312000", - "Timestamp": "2019-10-15T21:50:15.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.325000", - "Timestamp": "2019-10-15T21:49:35.000Z" + "SpotPrice": "0.323500", + "Timestamp": "2024-05-16T08:18:02.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.325000", - "Timestamp": "2019-10-15T21:49:35.000Z" + "SpotPrice": "4.665000", + "Timestamp": "2024-05-16T08:18:01.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.325000", - "Timestamp": "2019-10-15T21:49:35.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.660000", + "Timestamp": "2024-05-16T08:18:01.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.295000", - "Timestamp": "2019-10-15T21:49:35.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.535000", + "Timestamp": "2024-05-16T08:18:01.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.295000", - "Timestamp": "2019-10-15T21:49:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314700", + "Timestamp": "2024-05-16T08:18:01.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.295000", - "Timestamp": "2019-10-15T21:49:35.000Z" + "SpotPrice": "0.284700", + "Timestamp": "2024-05-16T08:18:01.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.195000", - "Timestamp": "2019-10-15T21:49:35.000Z" + "SpotPrice": "0.184700", + "Timestamp": "2024-05-16T08:18:01.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.195000", - "Timestamp": "2019-10-15T21:49:35.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.690100", + "Timestamp": "2024-05-16T08:18:01.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.195000", - "Timestamp": "2019-10-15T21:49:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.209300", + "Timestamp": "2024-05-16T08:18:01.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091500", - "Timestamp": "2019-10-15T21:47:40.000Z" + "SpotPrice": "1.393500", + "Timestamp": "2024-05-16T08:18:00.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.131500", - "Timestamp": "2019-10-15T21:47:40.000Z" + "SpotPrice": "1.388500", + "Timestamp": "2024-05-16T08:18:00.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031500", - "Timestamp": "2019-10-15T21:47:40.000Z" - }, - { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-15T21:46:53.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-15T21:46:53.000Z" + "SpotPrice": "1.263500", + "Timestamp": "2024-05-16T08:18:00.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-15T21:46:53.000Z" + "SpotPrice": "0.719000", + "Timestamp": "2024-05-16T08:18:00.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093800", - "Timestamp": "2019-10-15T21:46:26.000Z" + "SpotPrice": "1.070600", + "Timestamp": "2024-05-16T08:18:00.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133800", - "Timestamp": "2019-10-15T21:46:26.000Z" + "SpotPrice": "1.065600", + "Timestamp": "2024-05-16T08:18:00.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033800", - "Timestamp": "2019-10-15T21:46:26.000Z" + "SpotPrice": "0.940600", + "Timestamp": "2024-05-16T08:18:00.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.144500", + "Timestamp": "2024-05-16T08:17:59.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093800", - "Timestamp": "2019-10-15T21:46:26.000Z" + "SpotPrice": "0.259700", + "Timestamp": "2024-05-16T08:17:59.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133800", - "Timestamp": "2019-10-15T21:46:26.000Z" + "SpotPrice": "0.229700", + "Timestamp": "2024-05-16T08:17:59.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033800", - "Timestamp": "2019-10-15T21:46:26.000Z" + "SpotPrice": "0.129700", + "Timestamp": "2024-05-16T08:17:59.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.069500", + "Timestamp": "2024-05-16T08:17:59.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061700", - "Timestamp": "2019-10-15T21:44:32.000Z" + "SpotPrice": "3.841700", + "Timestamp": "2024-05-16T08:17:59.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.101700", - "Timestamp": "2019-10-15T21:44:32.000Z" + "SpotPrice": "3.836700", + "Timestamp": "2024-05-16T08:17:59.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001700", - "Timestamp": "2019-10-15T21:44:32.000Z" + "SpotPrice": "3.711700", + "Timestamp": "2024-05-16T08:17:59.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.9xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.576200", - "Timestamp": "2019-10-15T21:43:52.000Z" + "SpotPrice": "0.971400", + "Timestamp": "2024-05-16T08:17:59.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.9xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.546200", - "Timestamp": "2019-10-15T21:43:52.000Z" + "SpotPrice": "0.966400", + "Timestamp": "2024-05-16T08:17:59.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.9xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.446200", - "Timestamp": "2019-10-15T21:43:52.000Z" + "SpotPrice": "0.841400", + "Timestamp": "2024-05-16T08:17:59.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.052900", + "Timestamp": "2024-05-16T08:17:59.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.037600", + "Timestamp": "2024-05-16T08:17:59.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.497300", - "Timestamp": "2019-10-15T21:43:46.000Z" + "SpotPrice": "0.331400", + "Timestamp": "2024-05-16T08:17:58.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.467300", - "Timestamp": "2019-10-15T21:43:46.000Z" + "SpotPrice": "0.326400", + "Timestamp": "2024-05-16T08:17:58.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.367300", - "Timestamp": "2019-10-15T21:43:46.000Z" + "SpotPrice": "0.201400", + "Timestamp": "2024-05-16T08:17:58.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.265200", - "Timestamp": "2019-10-15T21:43:21.000Z" + "SpotPrice": "1.297800", + "Timestamp": "2024-05-16T08:17:58.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.235200", - "Timestamp": "2019-10-15T21:43:21.000Z" + "SpotPrice": "1.292800", + "Timestamp": "2024-05-16T08:17:58.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.135200", - "Timestamp": "2019-10-15T21:43:21.000Z" + "SpotPrice": "1.167800", + "Timestamp": "2024-05-16T08:17:58.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.211800", - "Timestamp": "2019-10-15T21:39:49.000Z" + "SpotPrice": "1.670900", + "Timestamp": "2024-05-16T08:17:58.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.181800", - "Timestamp": "2019-10-15T21:39:49.000Z" + "SpotPrice": "1.665900", + "Timestamp": "2024-05-16T08:17:58.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7gd.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.081800", - "Timestamp": "2019-10-15T21:39:49.000Z" + "SpotPrice": "1.540900", + "Timestamp": "2024-05-16T08:17:58.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "h1.16xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "d2.xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.264000", - "Timestamp": "2019-10-15T21:39:39.000Z" + "SpotPrice": "0.404400", + "Timestamp": "2024-05-16T08:17:57.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "h1.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.450000", - "Timestamp": "2019-10-15T21:39:39.000Z" + "SpotPrice": "1.741700", + "Timestamp": "2024-05-16T08:17:56.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "h1.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.420000", - "Timestamp": "2019-10-15T21:39:39.000Z" + "SpotPrice": "1.736700", + "Timestamp": "2024-05-16T08:17:56.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "h1.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.320000", - "Timestamp": "2019-10-15T21:39:39.000Z" + "SpotPrice": "1.611700", + "Timestamp": "2024-05-16T08:17:56.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.105100", - "Timestamp": "2019-10-15T21:38:56.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.105100", - "Timestamp": "2019-10-15T21:38:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.263700", + "Timestamp": "2024-05-16T08:17:56.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.105100", - "Timestamp": "2019-10-15T21:38:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.605900", + "Timestamp": "2024-05-16T08:17:56.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.105100", - "Timestamp": "2019-10-15T21:38:56.000Z" + "SpotPrice": "4.448800", + "Timestamp": "2024-05-16T08:17:56.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.145100", - "Timestamp": "2019-10-15T21:38:56.000Z" + "SpotPrice": "4.443800", + "Timestamp": "2024-05-16T08:17:56.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3a.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.145100", - "Timestamp": "2019-10-15T21:38:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.318800", + "Timestamp": "2024-05-16T08:17:56.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.145100", - "Timestamp": "2019-10-15T21:38:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.532700", + "Timestamp": "2024-05-16T08:17:56.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.145100", - "Timestamp": "2019-10-15T21:38:56.000Z" + "SpotPrice": "0.527700", + "Timestamp": "2024-05-16T08:17:56.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.045100", - "Timestamp": "2019-10-15T21:38:56.000Z" + "SpotPrice": "0.402700", + "Timestamp": "2024-05-16T08:17:56.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.045100", - "Timestamp": "2019-10-15T21:38:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.074500", + "Timestamp": "2024-05-16T08:17:56.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.045100", - "Timestamp": "2019-10-15T21:38:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.069500", + "Timestamp": "2024-05-16T08:17:56.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.045100", - "Timestamp": "2019-10-15T21:38:56.000Z" + "SpotPrice": "0.944500", + "Timestamp": "2024-05-16T08:17:56.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.118700", - "Timestamp": "2019-10-15T21:38:56.000Z" + "SpotPrice": "5.665900", + "Timestamp": "2024-05-16T08:17:56.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.118700", - "Timestamp": "2019-10-15T21:38:56.000Z" + "SpotPrice": "4.364000", + "Timestamp": "2024-05-16T08:17:55.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.118700", - "Timestamp": "2019-10-15T21:38:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.412800", + "Timestamp": "2024-05-16T08:17:55.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.118700", - "Timestamp": "2019-10-15T21:38:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.388000", + "Timestamp": "2024-05-16T08:17:55.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.285800", - "Timestamp": "2019-10-15T21:34:48.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.407800", + "Timestamp": "2024-05-16T08:17:55.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.255800", - "Timestamp": "2019-10-15T21:34:48.000Z" + "SpotPrice": "0.383000", + "Timestamp": "2024-05-16T08:17:55.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.155800", - "Timestamp": "2019-10-15T21:34:48.000Z" + "SpotPrice": "0.282800", + "Timestamp": "2024-05-16T08:17:55.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.291000", - "Timestamp": "2019-10-15T21:34:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.258000", + "Timestamp": "2024-05-16T08:17:55.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.261000", - "Timestamp": "2019-10-15T21:34:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.160800", + "Timestamp": "2024-05-16T08:17:55.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.569100", + "Timestamp": "2024-05-16T08:17:55.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.564100", + "Timestamp": "2024-05-16T08:17:55.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.161000", - "Timestamp": "2019-10-15T21:34:39.000Z" + "SpotPrice": "1.439100", + "Timestamp": "2024-05-16T08:17:55.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.265200", - "Timestamp": "2019-10-15T21:34:27.000Z" + "SpotPrice": "2.393700", + "Timestamp": "2024-05-16T08:17:55.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.265200", - "Timestamp": "2019-10-15T21:34:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.388700", + "Timestamp": "2024-05-16T08:17:55.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.263700", + "Timestamp": "2024-05-16T08:17:55.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.265200", - "Timestamp": "2019-10-15T21:34:27.000Z" + "SpotPrice": "3.222800", + "Timestamp": "2024-05-16T08:17:54.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.235200", - "Timestamp": "2019-10-15T21:34:27.000Z" + "SpotPrice": "3.217800", + "Timestamp": "2024-05-16T08:17:54.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.235200", - "Timestamp": "2019-10-15T21:34:27.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.092800", + "Timestamp": "2024-05-16T08:17:54.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.888100", + "Timestamp": "2024-05-16T08:17:54.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.235200", - "Timestamp": "2019-10-15T21:34:27.000Z" + "SpotPrice": "4.883100", + "Timestamp": "2024-05-16T08:17:54.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.135200", - "Timestamp": "2019-10-15T21:34:27.000Z" + "SpotPrice": "4.758100", + "Timestamp": "2024-05-16T08:17:54.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.135200", - "Timestamp": "2019-10-15T21:34:27.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.727500", + "Timestamp": "2024-05-16T08:17:53.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.722500", + "Timestamp": "2024-05-16T08:17:53.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.135200", - "Timestamp": "2019-10-15T21:34:27.000Z" + "SpotPrice": "0.597500", + "Timestamp": "2024-05-16T08:17:53.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.503200", - "Timestamp": "2019-10-15T21:34:12.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.055100", + "Timestamp": "2024-05-16T08:17:52.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.503200", - "Timestamp": "2019-10-15T21:34:12.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.050100", + "Timestamp": "2024-05-16T08:17:52.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.925100", + "Timestamp": "2024-05-16T08:17:52.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.503200", - "Timestamp": "2019-10-15T21:34:12.000Z" + "SpotPrice": "9.136300", + "Timestamp": "2024-05-16T08:17:52.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.503200", - "Timestamp": "2019-10-15T21:34:12.000Z" + "SpotPrice": "5.217000", + "Timestamp": "2024-05-16T08:17:52.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.752600", - "Timestamp": "2019-10-15T21:33:23.000Z" + "SpotPrice": "0.193600", + "Timestamp": "2024-05-16T08:17:52.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.752600", - "Timestamp": "2019-10-15T21:33:23.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.189900", + "Timestamp": "2024-05-16T08:17:52.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.752600", - "Timestamp": "2019-10-15T21:33:23.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133600", + "Timestamp": "2024-05-16T08:17:52.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.752600", - "Timestamp": "2019-10-15T21:33:23.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.461800", + "Timestamp": "2024-05-16T08:17:51.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.722600", - "Timestamp": "2019-10-15T21:33:23.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.268900", + "Timestamp": "2024-05-16T08:17:51.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.722600", - "Timestamp": "2019-10-15T21:33:23.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.108300", + "Timestamp": "2024-05-16T08:17:51.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.722600", - "Timestamp": "2019-10-15T21:33:23.000Z" + "SpotPrice": "3.263900", + "Timestamp": "2024-05-16T08:17:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.722600", - "Timestamp": "2019-10-15T21:33:23.000Z" + "SpotPrice": "3.103300", + "Timestamp": "2024-05-16T08:17:51.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.622600", - "Timestamp": "2019-10-15T21:33:23.000Z" + "SpotPrice": "3.138900", + "Timestamp": "2024-05-16T08:17:51.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.622600", - "Timestamp": "2019-10-15T21:33:23.000Z" + "SpotPrice": "2.978300", + "Timestamp": "2024-05-16T08:17:51.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.622600", - "Timestamp": "2019-10-15T21:33:23.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.745000", + "Timestamp": "2024-05-16T08:17:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.740000", + "Timestamp": "2024-05-16T08:17:51.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.622600", - "Timestamp": "2019-10-15T21:33:23.000Z" + "SpotPrice": "0.615000", + "Timestamp": "2024-05-16T08:17:51.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.large", "ProductDescription": "Windows", - "SpotPrice": "6.038600", - "Timestamp": "2019-10-15T21:32:58.000Z" + "SpotPrice": "0.161200", + "Timestamp": "2024-05-16T08:17:51.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.038600", - "Timestamp": "2019-10-15T21:32:58.000Z" + "SpotPrice": "2.726600", + "Timestamp": "2024-05-16T08:17:51.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.038600", - "Timestamp": "2019-10-15T21:32:58.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133900", + "Timestamp": "2024-05-16T08:17:50.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.038600", - "Timestamp": "2019-10-15T21:32:58.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129900", + "Timestamp": "2024-05-16T08:17:50.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.057900", - "Timestamp": "2019-10-15T21:30:13.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073900", + "Timestamp": "2024-05-16T08:17:50.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.057900", - "Timestamp": "2019-10-15T21:30:13.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.554200", + "Timestamp": "2024-05-16T08:17:50.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.057900", - "Timestamp": "2019-10-15T21:30:13.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.549200", + "Timestamp": "2024-05-16T08:17:50.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.122700", - "Timestamp": "2019-10-15T21:28:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.424200", + "Timestamp": "2024-05-16T08:17:50.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.122700", - "Timestamp": "2019-10-15T21:28:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.022700", + "Timestamp": "2024-05-16T08:17:50.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.122700", - "Timestamp": "2019-10-15T21:28:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.017700", + "Timestamp": "2024-05-16T08:17:50.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.235500", - "Timestamp": "2019-10-15T21:28:31.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.892700", + "Timestamp": "2024-05-16T08:17:50.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.235500", - "Timestamp": "2019-10-15T21:28:31.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.206500", + "Timestamp": "2024-05-16T08:17:50.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.235500", - "Timestamp": "2019-10-15T21:28:31.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.201500", + "Timestamp": "2024-05-16T08:17:50.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c1.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.372000", - "Timestamp": "2019-10-15T21:28:03.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.076500", + "Timestamp": "2024-05-16T08:17:50.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.372000", - "Timestamp": "2019-10-15T21:28:03.000Z" + "SpotPrice": "2.224200", + "Timestamp": "2024-05-16T08:17:50.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.372000", - "Timestamp": "2019-10-15T21:28:03.000Z" + "SpotPrice": "1.035900", + "Timestamp": "2024-05-16T08:17:49.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.536800", - "Timestamp": "2019-10-15T21:27:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.064000", + "Timestamp": "2024-05-16T08:17:49.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.536800", - "Timestamp": "2019-10-15T21:27:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.026900", + "Timestamp": "2024-05-16T08:17:49.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.536800", - "Timestamp": "2019-10-15T21:27:55.000Z" + "SpotPrice": "1.635700", + "Timestamp": "2024-05-16T08:17:49.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.506800", - "Timestamp": "2019-10-15T21:27:55.000Z" + "SpotPrice": "1.630700", + "Timestamp": "2024-05-16T08:17:49.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.506800", - "Timestamp": "2019-10-15T21:27:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.505700", + "Timestamp": "2024-05-16T08:17:49.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.506800", - "Timestamp": "2019-10-15T21:27:55.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.615100", + "Timestamp": "2024-05-16T08:17:49.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.406800", - "Timestamp": "2019-10-15T21:27:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.513500", + "Timestamp": "2024-05-16T08:17:49.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.406800", - "Timestamp": "2019-10-15T21:27:55.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.418300", + "Timestamp": "2024-05-16T08:17:48.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.413300", + "Timestamp": "2024-05-16T08:17:48.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.406800", - "Timestamp": "2019-10-15T21:27:55.000Z" + "SpotPrice": "3.288300", + "Timestamp": "2024-05-16T08:17:48.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.709500", - "Timestamp": "2019-10-15T21:27:54.000Z" + "SpotPrice": "5.412500", + "Timestamp": "2024-05-16T08:17:48.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.679500", - "Timestamp": "2019-10-15T21:27:54.000Z" + "SpotPrice": "5.407500", + "Timestamp": "2024-05-16T08:17:48.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.579500", - "Timestamp": "2019-10-15T21:27:54.000Z" + "SpotPrice": "5.282500", + "Timestamp": "2024-05-16T08:17:48.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.123300", + "Timestamp": "2024-05-16T08:17:48.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.182000", - "Timestamp": "2019-10-15T21:27:15.000Z" + "SpotPrice": "0.137700", + "Timestamp": "2024-05-16T08:17:48.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.152000", - "Timestamp": "2019-10-15T21:27:15.000Z" + "SpotPrice": "0.134000", + "Timestamp": "2024-05-16T08:17:48.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.052000", - "Timestamp": "2019-10-15T21:27:15.000Z" + "SpotPrice": "0.077700", + "Timestamp": "2024-05-16T08:17:48.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.257000", + "Timestamp": "2024-05-16T08:17:47.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "im4gn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.420100", - "Timestamp": "2019-10-15T21:27:10.000Z" + "SpotPrice": "1.259000", + "Timestamp": "2024-05-16T08:17:47.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "im4gn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.390100", - "Timestamp": "2019-10-15T21:27:10.000Z" + "SpotPrice": "1.254000", + "Timestamp": "2024-05-16T08:17:47.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "im4gn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.290100", - "Timestamp": "2019-10-15T21:27:10.000Z" + "SpotPrice": "1.129000", + "Timestamp": "2024-05-16T08:17:47.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.530600", - "Timestamp": "2019-10-15T21:26:54.000Z" + "SpotPrice": "1.750900", + "Timestamp": "2024-05-16T08:17:47.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.500600", - "Timestamp": "2019-10-15T21:26:54.000Z" + "SpotPrice": "1.745900", + "Timestamp": "2024-05-16T08:17:47.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.400600", - "Timestamp": "2019-10-15T21:26:54.000Z" + "SpotPrice": "1.620900", + "Timestamp": "2024-05-16T08:17:47.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.675400", - "Timestamp": "2019-10-15T21:26:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.136700", + "Timestamp": "2024-05-16T08:17:47.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.675400", - "Timestamp": "2019-10-15T21:26:41.000Z" + "SpotPrice": "0.855200", + "Timestamp": "2024-05-16T08:17:47.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5n.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.675400", - "Timestamp": "2019-10-15T21:26:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.850200", + "Timestamp": "2024-05-16T08:17:47.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.645400", - "Timestamp": "2019-10-15T21:26:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.725200", + "Timestamp": "2024-05-16T08:17:47.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.645400", - "Timestamp": "2019-10-15T21:26:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.274100", + "Timestamp": "2024-05-16T08:17:46.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5n.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.645400", - "Timestamp": "2019-10-15T21:26:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.134200", + "Timestamp": "2024-05-16T08:17:46.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.545400", - "Timestamp": "2019-10-15T21:26:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078500", + "Timestamp": "2024-05-16T08:17:46.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.545400", - "Timestamp": "2019-10-15T21:26:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074800", + "Timestamp": "2024-05-16T08:17:46.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5n.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.545400", - "Timestamp": "2019-10-15T21:26:41.000Z" + "SpotPrice": "0.018500", + "Timestamp": "2024-05-16T08:17:46.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.127400", - "Timestamp": "2019-10-15T21:26:29.000Z" + "SpotPrice": "3.727700", + "Timestamp": "2024-05-16T08:17:46.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.127400", - "Timestamp": "2019-10-15T21:26:29.000Z" + "SpotPrice": "0.582900", + "Timestamp": "2024-05-16T08:17:46.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.127400", - "Timestamp": "2019-10-15T21:26:29.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.998900", + "Timestamp": "2024-05-16T08:17:46.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.968900", + "Timestamp": "2024-05-16T08:17:46.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.868900", + "Timestamp": "2024-05-16T08:17:46.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127000", - "Timestamp": "2019-10-15T21:26:28.000Z" + "SpotPrice": "5.043200", + "Timestamp": "2024-05-16T08:17:46.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.167000", - "Timestamp": "2019-10-15T21:26:28.000Z" + "SpotPrice": "5.038200", + "Timestamp": "2024-05-16T08:17:46.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067000", - "Timestamp": "2019-10-15T21:26:28.000Z" + "SpotPrice": "4.913200", + "Timestamp": "2024-05-16T08:17:46.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.425800", - "Timestamp": "2019-10-15T21:26:27.000Z" + "SpotPrice": "2.608200", + "Timestamp": "2024-05-16T08:17:46.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.395800", - "Timestamp": "2019-10-15T21:26:27.000Z" + "SpotPrice": "2.603200", + "Timestamp": "2024-05-16T08:17:46.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.295800", - "Timestamp": "2019-10-15T21:26:27.000Z" + "SpotPrice": "2.478200", + "Timestamp": "2024-05-16T08:17:46.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125300", - "Timestamp": "2019-10-15T21:26:19.000Z" + "SpotPrice": "0.439000", + "Timestamp": "2024-05-16T08:17:45.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.165300", - "Timestamp": "2019-10-15T21:26:19.000Z" + "SpotPrice": "0.434000", + "Timestamp": "2024-05-16T08:17:45.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065300", - "Timestamp": "2019-10-15T21:26:19.000Z" + "SpotPrice": "0.309000", + "Timestamp": "2024-05-16T08:17:45.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.496800", - "Timestamp": "2019-10-15T21:26:04.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.595300", + "Timestamp": "2024-05-16T08:17:45.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.496800", - "Timestamp": "2019-10-15T21:26:04.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.590300", + "Timestamp": "2024-05-16T08:17:45.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.496800", - "Timestamp": "2019-10-15T21:26:04.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.465300", + "Timestamp": "2024-05-16T08:17:45.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.277600", - "Timestamp": "2019-10-15T21:26:01.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.199400", + "Timestamp": "2024-05-16T08:17:45.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.277600", - "Timestamp": "2019-10-15T21:26:01.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.195700", + "Timestamp": "2024-05-16T08:17:45.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.277600", - "Timestamp": "2019-10-15T21:26:01.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139400", + "Timestamp": "2024-05-16T08:17:45.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.277600", - "Timestamp": "2019-10-15T21:26:01.000Z" + "SpotPrice": "0.258000", + "Timestamp": "2024-05-16T08:17:45.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.metal", - "ProductDescription": "Windows", - "SpotPrice": "4.857400", - "Timestamp": "2019-10-15T21:25:34.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.395600", + "Timestamp": "2024-05-16T08:17:44.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.metal", - "ProductDescription": "Windows", - "SpotPrice": "4.857400", - "Timestamp": "2019-10-15T21:25:34.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.390600", + "Timestamp": "2024-05-16T08:17:44.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5n.metal", - "ProductDescription": "Windows", - "SpotPrice": "4.857400", - "Timestamp": "2019-10-15T21:25:34.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.265600", + "Timestamp": "2024-05-16T08:17:44.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.413300", - "Timestamp": "2019-10-15T21:24:57.000Z" + "SpotPrice": "0.211700", + "Timestamp": "2024-05-16T08:17:44.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.383300", - "Timestamp": "2019-10-15T21:24:57.000Z" + "SpotPrice": "0.207700", + "Timestamp": "2024-05-16T08:17:44.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.283300", - "Timestamp": "2019-10-15T21:24:57.000Z" + "SpotPrice": "0.151700", + "Timestamp": "2024-05-16T08:17:44.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c4.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.290000", - "Timestamp": "2019-10-15T21:24:54.000Z" + "SpotPrice": "0.332900", + "Timestamp": "2024-05-16T08:17:44.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c4.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.260000", - "Timestamp": "2019-10-15T21:24:54.000Z" + "SpotPrice": "0.302900", + "Timestamp": "2024-05-16T08:17:44.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c4.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.160000", - "Timestamp": "2019-10-15T21:24:54.000Z" + "SpotPrice": "0.202900", + "Timestamp": "2024-05-16T08:17:44.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.993600", - "Timestamp": "2019-10-15T21:24:07.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.382700", + "Timestamp": "2024-05-16T08:17:44.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.993600", - "Timestamp": "2019-10-15T21:24:07.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.377700", + "Timestamp": "2024-05-16T08:17:44.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.993600", - "Timestamp": "2019-10-15T21:24:07.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.252700", + "Timestamp": "2024-05-16T08:17:44.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095400", - "Timestamp": "2019-10-15T21:24:07.000Z" + "SpotPrice": "1.074100", + "Timestamp": "2024-05-16T08:17:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095400", - "Timestamp": "2019-10-15T21:24:07.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.069100", + "Timestamp": "2024-05-16T08:17:43.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.944100", + "Timestamp": "2024-05-16T08:17:43.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.272100", + "Timestamp": "2024-05-16T08:17:43.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095400", - "Timestamp": "2019-10-15T21:24:07.000Z" + "SpotPrice": "1.744700", + "Timestamp": "2024-05-16T08:17:42.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135400", - "Timestamp": "2019-10-15T21:24:07.000Z" + "SpotPrice": "1.739700", + "Timestamp": "2024-05-16T08:17:42.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135400", - "Timestamp": "2019-10-15T21:24:07.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.614700", + "Timestamp": "2024-05-16T08:17:42.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079600", + "Timestamp": "2024-05-16T08:17:41.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135400", - "Timestamp": "2019-10-15T21:24:07.000Z" + "SpotPrice": "0.050600", + "Timestamp": "2024-05-16T08:17:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035400", - "Timestamp": "2019-10-15T21:24:07.000Z" + "SpotPrice": "0.019600", + "Timestamp": "2024-05-16T08:17:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035400", - "Timestamp": "2019-10-15T21:24:07.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.372200", + "Timestamp": "2024-05-16T08:17:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.367200", + "Timestamp": "2024-05-16T08:17:41.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035400", - "Timestamp": "2019-10-15T21:24:07.000Z" + "SpotPrice": "2.242200", + "Timestamp": "2024-05-16T08:17:41.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.752600", - "Timestamp": "2019-10-15T21:23:50.000Z" + "SpotPrice": "1.880100", + "Timestamp": "2024-05-16T08:17:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.752600", - "Timestamp": "2019-10-15T21:23:50.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.875100", + "Timestamp": "2024-05-16T08:17:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.752600", - "Timestamp": "2019-10-15T21:23:50.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.750100", + "Timestamp": "2024-05-16T08:17:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.752600", - "Timestamp": "2019-10-15T21:23:50.000Z" + "SpotPrice": "1.908900", + "Timestamp": "2024-05-16T08:17:41.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.722600", - "Timestamp": "2019-10-15T21:23:50.000Z" + "SpotPrice": "1.903900", + "Timestamp": "2024-05-16T08:17:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.722600", - "Timestamp": "2019-10-15T21:23:50.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.778900", + "Timestamp": "2024-05-16T08:17:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.722600", - "Timestamp": "2019-10-15T21:23:50.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.058600", + "Timestamp": "2024-05-16T08:17:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.722600", - "Timestamp": "2019-10-15T21:23:50.000Z" + "SpotPrice": "2.053600", + "Timestamp": "2024-05-16T08:17:41.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.622600", - "Timestamp": "2019-10-15T21:23:50.000Z" + "SpotPrice": "1.928600", + "Timestamp": "2024-05-16T08:17:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.622600", - "Timestamp": "2019-10-15T21:23:50.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T08:17:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.622600", - "Timestamp": "2019-10-15T21:23:50.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103400", + "Timestamp": "2024-05-16T08:17:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.622600", - "Timestamp": "2019-10-15T21:23:50.000Z" + "SpotPrice": "0.047100", + "Timestamp": "2024-05-16T08:17:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.509700", - "Timestamp": "2019-10-15T21:23:38.000Z" + "SpotPrice": "2.571000", + "Timestamp": "2024-05-16T08:17:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.509700", - "Timestamp": "2019-10-15T21:23:38.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.823000", + "Timestamp": "2024-05-16T08:17:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.509700", - "Timestamp": "2019-10-15T21:23:38.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.818000", + "Timestamp": "2024-05-16T08:17:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-15T21:23:23.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.693000", + "Timestamp": "2024-05-16T08:17:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "is4gen.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-15T21:23:23.000Z" + "SpotPrice": "1.326500", + "Timestamp": "2024-05-16T08:17:40.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.321500", + "Timestamp": "2024-05-16T08:17:40.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.196500", + "Timestamp": "2024-05-16T08:17:40.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "inf1.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-15T21:23:23.000Z" + "SpotPrice": "2.160100", + "Timestamp": "2024-05-16T08:17:40.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "inf1.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-15T21:23:23.000Z" + "SpotPrice": "2.155100", + "Timestamp": "2024-05-16T08:17:40.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-15T21:23:23.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.030100", + "Timestamp": "2024-05-16T08:17:40.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.583200", + "Timestamp": "2024-05-16T08:17:40.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-15T21:23:23.000Z" + "SpotPrice": "0.553200", + "Timestamp": "2024-05-16T08:17:40.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-15T21:23:23.000Z" + "SpotPrice": "0.453200", + "Timestamp": "2024-05-16T08:17:40.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-15T21:23:23.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.098200", + "Timestamp": "2024-05-16T08:17:40.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.093200", + "Timestamp": "2024-05-16T08:17:40.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-15T21:23:23.000Z" + "SpotPrice": "0.968200", + "Timestamp": "2024-05-16T08:17:40.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.038600", - "Timestamp": "2019-10-15T21:23:17.000Z" + "SpotPrice": "2.071900", + "Timestamp": "2024-05-16T08:17:40.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.038600", - "Timestamp": "2019-10-15T21:23:17.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.195000", + "Timestamp": "2024-05-16T08:17:39.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.038600", - "Timestamp": "2019-10-15T21:23:17.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.190000", + "Timestamp": "2024-05-16T08:17:39.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.065000", + "Timestamp": "2024-05-16T08:17:39.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.038600", - "Timestamp": "2019-10-15T21:23:17.000Z" + "SpotPrice": "0.287500", + "Timestamp": "2024-05-16T08:17:38.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.696600", - "Timestamp": "2019-10-15T21:23:04.000Z" + "SpotPrice": "2.635200", + "Timestamp": "2024-05-16T08:17:38.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.696600", - "Timestamp": "2019-10-15T21:23:04.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.630200", + "Timestamp": "2024-05-16T08:17:38.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.696600", - "Timestamp": "2019-10-15T21:23:04.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.505200", + "Timestamp": "2024-05-16T08:17:38.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.696600", - "Timestamp": "2019-10-15T21:23:04.000Z" + "SpotPrice": "2.493700", + "Timestamp": "2024-05-16T08:17:37.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.666600", - "Timestamp": "2019-10-15T21:23:04.000Z" + "SpotPrice": "2.488700", + "Timestamp": "2024-05-16T08:17:37.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.666600", - "Timestamp": "2019-10-15T21:23:04.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.363700", + "Timestamp": "2024-05-16T08:17:37.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.666600", - "Timestamp": "2019-10-15T21:23:04.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.083300", + "Timestamp": "2024-05-16T08:17:37.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.432200", + "Timestamp": "2024-05-16T08:17:37.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.666600", - "Timestamp": "2019-10-15T21:23:04.000Z" + "SpotPrice": "4.427200", + "Timestamp": "2024-05-16T08:17:37.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.566600", - "Timestamp": "2019-10-15T21:23:04.000Z" + "SpotPrice": "4.302200", + "Timestamp": "2024-05-16T08:17:37.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.566600", - "Timestamp": "2019-10-15T21:23:04.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.892400", + "Timestamp": "2024-05-16T08:17:37.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.566600", - "Timestamp": "2019-10-15T21:23:04.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.903100", + "Timestamp": "2024-05-16T08:17:37.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.566600", - "Timestamp": "2019-10-15T21:23:04.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "15.462100", + "Timestamp": "2024-05-16T08:17:37.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.211800", - "Timestamp": "2019-10-15T21:22:59.000Z" + "SpotPrice": "0.783000", + "Timestamp": "2024-05-16T08:17:37.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.211800", - "Timestamp": "2019-10-15T21:22:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.778000", + "Timestamp": "2024-05-16T08:17:37.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.211800", - "Timestamp": "2019-10-15T21:22:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.653000", + "Timestamp": "2024-05-16T08:17:37.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.211800", - "Timestamp": "2019-10-15T21:22:59.000Z" + "SpotPrice": "3.551900", + "Timestamp": "2024-05-16T08:17:36.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.181800", - "Timestamp": "2019-10-15T21:22:59.000Z" + "SpotPrice": "3.546900", + "Timestamp": "2024-05-16T08:17:36.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.181800", - "Timestamp": "2019-10-15T21:22:59.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.421900", + "Timestamp": "2024-05-16T08:17:36.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.181800", - "Timestamp": "2019-10-15T21:22:59.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.568600", + "Timestamp": "2024-05-16T08:17:36.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.181800", - "Timestamp": "2019-10-15T21:22:59.000Z" + "SpotPrice": "1.563600", + "Timestamp": "2024-05-16T08:17:36.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.081800", - "Timestamp": "2019-10-15T21:22:59.000Z" + "SpotPrice": "1.438600", + "Timestamp": "2024-05-16T08:17:36.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.081800", - "Timestamp": "2019-10-15T21:22:59.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.016100", + "Timestamp": "2024-05-16T08:17:36.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.081800", - "Timestamp": "2019-10-15T21:22:59.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.011100", + "Timestamp": "2024-05-16T08:17:36.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.081800", - "Timestamp": "2019-10-15T21:22:59.000Z" + "SpotPrice": "2.886100", + "Timestamp": "2024-05-16T08:17:36.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.115900", - "Timestamp": "2019-10-15T21:22:59.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.535100", + "Timestamp": "2024-05-16T08:17:36.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.115900", - "Timestamp": "2019-10-15T21:22:59.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.505100", + "Timestamp": "2024-05-16T08:17:36.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.115900", - "Timestamp": "2019-10-15T21:22:59.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.405100", + "Timestamp": "2024-05-16T08:17:36.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.038600", - "Timestamp": "2019-10-15T21:22:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.674800", + "Timestamp": "2024-05-16T08:17:36.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.038600", - "Timestamp": "2019-10-15T21:22:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.669800", + "Timestamp": "2024-05-16T08:17:36.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.038600", - "Timestamp": "2019-10-15T21:22:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.544800", + "Timestamp": "2024-05-16T08:17:36.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.038600", - "Timestamp": "2019-10-15T21:22:57.000Z" + "SpotPrice": "0.348900", + "Timestamp": "2024-05-16T08:17:36.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.025800", - "Timestamp": "2019-10-15T21:22:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.523700", + "Timestamp": "2024-05-16T08:17:35.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.025800", - "Timestamp": "2019-10-15T21:22:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.518700", + "Timestamp": "2024-05-16T08:17:35.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.025800", - "Timestamp": "2019-10-15T21:22:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.393700", + "Timestamp": "2024-05-16T08:17:35.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.025800", - "Timestamp": "2019-10-15T21:22:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.399700", + "Timestamp": "2024-05-16T08:17:35.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "z1d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.147800", - "Timestamp": "2019-10-15T21:22:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.369700", + "Timestamp": "2024-05-16T08:17:35.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "z1d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.147800", - "Timestamp": "2019-10-15T21:22:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.269700", + "Timestamp": "2024-05-16T08:17:35.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "z1d.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m4.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.147800", - "Timestamp": "2019-10-15T21:22:40.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092100", - "Timestamp": "2019-10-15T21:22:32.000Z" + "SpotPrice": "0.260200", + "Timestamp": "2024-05-16T08:17:34.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092100", - "Timestamp": "2019-10-15T21:22:32.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.616800", + "Timestamp": "2024-05-16T08:17:34.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092100", - "Timestamp": "2019-10-15T21:22:32.000Z" + "SpotPrice": "0.424300", + "Timestamp": "2024-05-16T08:17:34.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132100", - "Timestamp": "2019-10-15T21:22:32.000Z" + "SpotPrice": "0.419300", + "Timestamp": "2024-05-16T08:17:34.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132100", - "Timestamp": "2019-10-15T21:22:32.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.294300", + "Timestamp": "2024-05-16T08:17:34.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132100", - "Timestamp": "2019-10-15T21:22:32.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.781900", + "Timestamp": "2024-05-16T08:17:34.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032100", - "Timestamp": "2019-10-15T21:22:32.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.141900", + "Timestamp": "2024-05-16T08:17:34.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032100", - "Timestamp": "2019-10-15T21:22:32.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.136900", + "Timestamp": "2024-05-16T08:17:34.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032100", - "Timestamp": "2019-10-15T21:22:32.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "z1d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.115800", - "Timestamp": "2019-10-15T21:22:09.000Z" + "SpotPrice": "1.011900", + "Timestamp": "2024-05-16T08:17:34.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "z1d.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.115800", - "Timestamp": "2019-10-15T21:22:09.000Z" + "SpotPrice": "0.448800", + "Timestamp": "2024-05-16T08:17:34.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "z1d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.115800", - "Timestamp": "2019-10-15T21:22:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.443800", + "Timestamp": "2024-05-16T08:17:34.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "z1d.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.155800", - "Timestamp": "2019-10-15T21:22:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.318800", + "Timestamp": "2024-05-16T08:17:34.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "z1d.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.155800", - "Timestamp": "2019-10-15T21:22:09.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.170900", + "Timestamp": "2024-05-16T08:17:34.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "z1d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.155800", - "Timestamp": "2019-10-15T21:22:09.000Z" + "SpotPrice": "1.165900", + "Timestamp": "2024-05-16T08:17:34.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "z1d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.055800", - "Timestamp": "2019-10-15T21:22:09.000Z" + "SpotPrice": "1.040900", + "Timestamp": "2024-05-16T08:17:34.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "z1d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.055800", - "Timestamp": "2019-10-15T21:22:09.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.375400", + "Timestamp": "2024-05-16T08:17:34.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "z1d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.055800", - "Timestamp": "2019-10-15T21:22:09.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.371700", + "Timestamp": "2024-05-16T08:17:34.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3.metal", - "ProductDescription": "Windows", - "SpotPrice": "4.441600", - "Timestamp": "2019-10-15T21:22:07.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.315400", + "Timestamp": "2024-05-16T08:17:34.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.large", "ProductDescription": "Windows", - "SpotPrice": "4.441600", - "Timestamp": "2019-10-15T21:22:07.000Z" + "SpotPrice": "0.137200", + "Timestamp": "2024-05-16T08:17:33.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.441600", - "Timestamp": "2019-10-15T21:22:07.000Z" + "SpotPrice": "0.400400", + "Timestamp": "2024-05-16T08:17:33.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.123700", - "Timestamp": "2019-10-15T21:21:20.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.335400", + "Timestamp": "2024-05-16T08:17:32.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.123700", - "Timestamp": "2019-10-15T21:21:20.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.330400", + "Timestamp": "2024-05-16T08:17:32.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.123700", - "Timestamp": "2019-10-15T21:21:20.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.205400", + "Timestamp": "2024-05-16T08:17:32.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.123700", - "Timestamp": "2019-10-15T21:21:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.426200", + "Timestamp": "2024-05-16T08:17:32.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.211800", - "Timestamp": "2019-10-15T21:21:11.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.421200", + "Timestamp": "2024-05-16T08:17:32.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.211800", - "Timestamp": "2019-10-15T21:21:11.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.296200", + "Timestamp": "2024-05-16T08:17:32.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c3.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.211800", - "Timestamp": "2019-10-15T21:21:11.000Z" + "SpotPrice": "0.117400", + "Timestamp": "2024-05-16T08:17:32.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5dn.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c3.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.181800", - "Timestamp": "2019-10-15T21:21:11.000Z" + "SpotPrice": "0.157400", + "Timestamp": "2024-05-16T08:17:32.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.181800", - "Timestamp": "2019-10-15T21:21:11.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057400", + "Timestamp": "2024-05-16T08:17:32.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.181800", - "Timestamp": "2019-10-15T21:21:11.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.673600", + "Timestamp": "2024-05-16T08:17:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.081800", - "Timestamp": "2019-10-15T21:21:11.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.320300", + "Timestamp": "2024-05-16T08:17:31.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.081800", - "Timestamp": "2019-10-15T21:21:11.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.290300", + "Timestamp": "2024-05-16T08:17:31.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r3.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.081800", - "Timestamp": "2019-10-15T21:21:11.000Z" - }, - { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.211800", - "Timestamp": "2019-10-15T21:21:02.000Z" + "SpotPrice": "1.190300", + "Timestamp": "2024-05-16T08:17:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.211800", - "Timestamp": "2019-10-15T21:21:02.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.102500", + "Timestamp": "2024-05-16T08:17:31.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.211800", - "Timestamp": "2019-10-15T21:21:02.000Z" + "SpotPrice": "0.152900", + "Timestamp": "2024-05-16T08:17:31.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.211800", - "Timestamp": "2019-10-15T21:21:02.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148900", + "Timestamp": "2024-05-16T08:17:31.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.181800", - "Timestamp": "2019-10-15T21:21:02.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092900", + "Timestamp": "2024-05-16T08:17:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.181800", - "Timestamp": "2019-10-15T21:21:02.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.533500", + "Timestamp": "2024-05-16T08:17:31.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.181800", - "Timestamp": "2019-10-15T21:21:02.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.698000", + "Timestamp": "2024-05-16T08:17:31.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.181800", - "Timestamp": "2019-10-15T21:21:02.000Z" + "SpotPrice": "1.693000", + "Timestamp": "2024-05-16T08:17:31.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.081800", - "Timestamp": "2019-10-15T21:21:02.000Z" + "SpotPrice": "1.568000", + "Timestamp": "2024-05-16T08:17:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.081800", - "Timestamp": "2019-10-15T21:21:02.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.164700", + "Timestamp": "2024-05-16T08:17:31.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.081800", - "Timestamp": "2019-10-15T21:21:02.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.159700", + "Timestamp": "2024-05-16T08:17:31.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.081800", - "Timestamp": "2019-10-15T21:21:02.000Z" + "SpotPrice": "1.034700", + "Timestamp": "2024-05-16T08:17:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.6xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.943600", - "Timestamp": "2019-10-15T21:20:58.000Z" + "SpotPrice": "0.506100", + "Timestamp": "2024-05-16T08:17:30.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.943600", - "Timestamp": "2019-10-15T21:20:58.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.476100", + "Timestamp": "2024-05-16T08:17:30.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.943600", - "Timestamp": "2019-10-15T21:20:58.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.376100", + "Timestamp": "2024-05-16T08:17:30.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.913600", - "Timestamp": "2019-10-15T21:20:58.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103100", + "Timestamp": "2024-05-16T08:17:30.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.6xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.913600", - "Timestamp": "2019-10-15T21:20:58.000Z" + "SpotPrice": "0.099400", + "Timestamp": "2024-05-16T08:17:30.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.913600", - "Timestamp": "2019-10-15T21:20:58.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043100", + "Timestamp": "2024-05-16T08:17:30.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.813600", - "Timestamp": "2019-10-15T21:20:58.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.549400", + "Timestamp": "2024-05-16T08:17:30.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.813600", - "Timestamp": "2019-10-15T21:20:58.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.544400", + "Timestamp": "2024-05-16T08:17:30.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.6xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.813600", - "Timestamp": "2019-10-15T21:20:58.000Z" + "SpotPrice": "0.419400", + "Timestamp": "2024-05-16T08:17:30.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5dn.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.large", "ProductDescription": "Windows", - "SpotPrice": "4.025800", - "Timestamp": "2019-10-15T21:20:55.000Z" + "SpotPrice": "0.140700", + "Timestamp": "2024-05-16T08:17:29.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5dn.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.025800", - "Timestamp": "2019-10-15T21:20:55.000Z" + "SpotPrice": "4.403900", + "Timestamp": "2024-05-16T08:17:27.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.metal", "ProductDescription": "Windows", - "SpotPrice": "4.025800", - "Timestamp": "2019-10-15T21:20:55.000Z" + "SpotPrice": "9.414800", + "Timestamp": "2024-05-16T08:17:26.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m1.small", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.064400", - "Timestamp": "2019-10-15T21:20:53.000Z" + "SpotPrice": "1.414700", + "Timestamp": "2024-05-16T08:17:26.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m1.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.064400", - "Timestamp": "2019-10-15T21:20:53.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.409700", + "Timestamp": "2024-05-16T08:17:26.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m1.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.064400", - "Timestamp": "2019-10-15T21:20:53.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.284700", + "Timestamp": "2024-05-16T08:17:26.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m1.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.034400", - "Timestamp": "2019-10-15T21:20:53.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.511300", + "Timestamp": "2024-05-16T08:17:25.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m1.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.034400", - "Timestamp": "2019-10-15T21:20:53.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099300", + "Timestamp": "2024-05-16T08:17:25.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m1.small", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.034400", - "Timestamp": "2019-10-15T21:20:53.000Z" + "SpotPrice": "0.095600", + "Timestamp": "2024-05-16T08:17:25.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m1.small", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.004400", - "Timestamp": "2019-10-15T21:20:53.000Z" + "SpotPrice": "0.039300", + "Timestamp": "2024-05-16T08:17:25.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m1.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.004400", - "Timestamp": "2019-10-15T21:20:53.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.756100", + "Timestamp": "2024-05-16T08:17:25.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m1.small", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.751100", + "Timestamp": "2024-05-16T08:17:25.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.004400", - "Timestamp": "2019-10-15T21:20:53.000Z" + "SpotPrice": "0.626100", + "Timestamp": "2024-05-16T08:17:25.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.110100", - "Timestamp": "2019-10-15T21:20:49.000Z" + "SpotPrice": "0.960300", + "Timestamp": "2024-05-16T08:17:25.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.955300", + "Timestamp": "2024-05-16T08:17:25.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.830300", + "Timestamp": "2024-05-16T08:17:25.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.110100", - "Timestamp": "2019-10-15T21:20:49.000Z" + "SpotPrice": "0.375900", + "Timestamp": "2024-05-16T08:17:25.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.110100", - "Timestamp": "2019-10-15T21:20:49.000Z" + "SpotPrice": "0.387300", + "Timestamp": "2024-05-16T08:17:25.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.150100", - "Timestamp": "2019-10-15T21:20:49.000Z" + "SpotPrice": "0.370900", + "Timestamp": "2024-05-16T08:17:25.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.150100", - "Timestamp": "2019-10-15T21:20:49.000Z" + "SpotPrice": "0.382300", + "Timestamp": "2024-05-16T08:17:25.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.150100", - "Timestamp": "2019-10-15T21:20:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.245900", + "Timestamp": "2024-05-16T08:17:25.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.050100", - "Timestamp": "2019-10-15T21:20:49.000Z" + "SpotPrice": "0.257300", + "Timestamp": "2024-05-16T08:17:25.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.313000", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.308000", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.050100", - "Timestamp": "2019-10-15T21:20:49.000Z" + "SpotPrice": "4.183000", + "Timestamp": "2024-05-16T08:17:24.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144800", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140800", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.050100", - "Timestamp": "2019-10-15T21:20:49.000Z" + "SpotPrice": "0.084800", + "Timestamp": "2024-05-16T08:17:24.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.025800", - "Timestamp": "2019-10-15T21:20:48.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.245200", + "Timestamp": "2024-05-16T08:17:24.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.025800", - "Timestamp": "2019-10-15T21:20:48.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.240200", + "Timestamp": "2024-05-16T08:17:24.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.025800", - "Timestamp": "2019-10-15T21:20:48.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.115200", + "Timestamp": "2024-05-16T08:17:24.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.025800", - "Timestamp": "2019-10-15T21:20:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120400", + "Timestamp": "2024-05-16T08:17:23.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m1.small", - "ProductDescription": "Windows", - "SpotPrice": "0.035400", - "Timestamp": "2019-10-15T21:20:37.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116700", + "Timestamp": "2024-05-16T08:17:23.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m1.small", - "ProductDescription": "Windows", - "SpotPrice": "0.035400", - "Timestamp": "2019-10-15T21:20:37.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060400", + "Timestamp": "2024-05-16T08:17:23.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m1.small", - "ProductDescription": "Windows", - "SpotPrice": "0.035400", - "Timestamp": "2019-10-15T21:20:37.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.329800", + "Timestamp": "2024-05-16T08:17:22.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.917600", - "Timestamp": "2019-10-15T21:20:16.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324800", + "Timestamp": "2024-05-16T08:17:22.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.917600", - "Timestamp": "2019-10-15T21:20:16.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199800", + "Timestamp": "2024-05-16T08:17:22.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.6xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.917600", - "Timestamp": "2019-10-15T21:20:16.000Z" + "SpotPrice": "4.208800", + "Timestamp": "2024-05-16T08:17:22.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.393000", - "Timestamp": "2019-10-15T21:18:47.000Z" + "SpotPrice": "0.269000", + "Timestamp": "2024-05-16T08:17:22.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.363000", - "Timestamp": "2019-10-15T21:18:47.000Z" + "SpotPrice": "0.265000", + "Timestamp": "2024-05-16T08:17:22.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.263000", - "Timestamp": "2019-10-15T21:18:47.000Z" + "SpotPrice": "0.209000", + "Timestamp": "2024-05-16T08:17:22.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.472000", - "Timestamp": "2019-10-15T21:18:46.000Z" + "SpotPrice": "0.490900", + "Timestamp": "2024-05-16T08:17:22.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.442000", - "Timestamp": "2019-10-15T21:18:46.000Z" + "SpotPrice": "0.485900", + "Timestamp": "2024-05-16T08:17:22.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.342000", - "Timestamp": "2019-10-15T21:18:46.000Z" + "SpotPrice": "0.360900", + "Timestamp": "2024-05-16T08:17:22.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.594100", + "Timestamp": "2024-05-16T08:17:21.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.605100", + "Timestamp": "2024-05-16T08:17:21.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.187200", - "Timestamp": "2019-10-15T21:18:43.000Z" + "SpotPrice": "0.553500", + "Timestamp": "2024-05-16T08:17:21.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.227200", - "Timestamp": "2019-10-15T21:18:43.000Z" + "SpotPrice": "0.548500", + "Timestamp": "2024-05-16T08:17:21.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.127200", - "Timestamp": "2019-10-15T21:18:43.000Z" + "SpotPrice": "0.423500", + "Timestamp": "2024-05-16T08:17:21.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.832100", - "Timestamp": "2019-10-15T21:18:41.000Z" + "SpotPrice": "0.346200", + "Timestamp": "2024-05-16T08:17:21.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.802100", - "Timestamp": "2019-10-15T21:18:41.000Z" + "SpotPrice": "0.341200", + "Timestamp": "2024-05-16T08:17:21.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.702100", - "Timestamp": "2019-10-15T21:18:41.000Z" + "SpotPrice": "0.216200", + "Timestamp": "2024-05-16T08:17:21.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.732900", - "Timestamp": "2019-10-15T21:18:24.000Z" + "SpotPrice": "0.104100", + "Timestamp": "2024-05-16T08:17:20.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.702900", - "Timestamp": "2019-10-15T21:18:24.000Z" + "SpotPrice": "0.100400", + "Timestamp": "2024-05-16T08:17:20.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.602900", - "Timestamp": "2019-10-15T21:18:24.000Z" + "SpotPrice": "0.044100", + "Timestamp": "2024-05-16T08:17:20.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.138100", - "Timestamp": "2019-10-15T21:18:16.000Z" + "SpotPrice": "0.410900", + "Timestamp": "2024-05-16T08:17:19.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.178100", - "Timestamp": "2019-10-15T21:18:16.000Z" + "SpotPrice": "0.405900", + "Timestamp": "2024-05-16T08:17:19.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.078100", - "Timestamp": "2019-10-15T21:18:16.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.341800", - "Timestamp": "2019-10-15T21:18:07.000Z" + "SpotPrice": "0.280900", + "Timestamp": "2024-05-16T08:17:19.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g4dn.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iezn.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.341800", - "Timestamp": "2019-10-15T21:18:07.000Z" + "SpotPrice": "6.035900", + "Timestamp": "2024-05-16T08:17:18.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g4dn.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.341800", - "Timestamp": "2019-10-15T21:18:07.000Z" + "SpotPrice": "4.031100", + "Timestamp": "2024-05-16T08:17:16.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.144900", - "Timestamp": "2019-10-15T21:18:07.000Z" + "SpotPrice": "0.365500", + "Timestamp": "2024-05-16T08:17:16.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.184900", - "Timestamp": "2019-10-15T21:18:07.000Z" + "SpotPrice": "0.360500", + "Timestamp": "2024-05-16T08:17:16.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.084900", - "Timestamp": "2019-10-15T21:18:07.000Z" + "SpotPrice": "0.235500", + "Timestamp": "2024-05-16T08:17:16.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094500", - "Timestamp": "2019-10-15T21:18:04.000Z" + "SpotPrice": "2.115500", + "Timestamp": "2024-05-16T08:17:14.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134500", - "Timestamp": "2019-10-15T21:18:04.000Z" + "SpotPrice": "2.110500", + "Timestamp": "2024-05-16T08:17:14.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034500", - "Timestamp": "2019-10-15T21:18:04.000Z" + "SpotPrice": "1.985500", + "Timestamp": "2024-05-16T08:17:14.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.274500", - "Timestamp": "2019-10-15T21:17:57.000Z" + "SpotPrice": "0.119500", + "Timestamp": "2024-05-16T08:17:14.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.244500", - "Timestamp": "2019-10-15T21:17:57.000Z" + "SpotPrice": "0.115500", + "Timestamp": "2024-05-16T08:17:14.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.144500", - "Timestamp": "2019-10-15T21:17:57.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t2.small", - "ProductDescription": "Windows", - "SpotPrice": "0.015900", - "Timestamp": "2019-10-15T21:16:55.000Z" - }, - { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t2.small", - "ProductDescription": "Windows", - "SpotPrice": "0.015900", - "Timestamp": "2019-10-15T21:16:55.000Z" - }, - { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t2.small", - "ProductDescription": "Windows", - "SpotPrice": "0.015900", - "Timestamp": "2019-10-15T21:16:55.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t2.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066900", - "Timestamp": "2019-10-15T21:16:49.000Z" + "SpotPrice": "0.059500", + "Timestamp": "2024-05-16T08:17:14.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066900", - "Timestamp": "2019-10-15T21:16:49.000Z" + "SpotPrice": "0.085700", + "Timestamp": "2024-05-16T08:17:13.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066900", - "Timestamp": "2019-10-15T21:16:49.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t2.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.036900", - "Timestamp": "2019-10-15T21:16:49.000Z" + "SpotPrice": "0.082700", + "Timestamp": "2024-05-16T08:17:13.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.036900", - "Timestamp": "2019-10-15T21:16:49.000Z" + "SpotPrice": "0.056700", + "Timestamp": "2024-05-16T08:17:13.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.036900", - "Timestamp": "2019-10-15T21:16:49.000Z" + "SpotPrice": "0.053700", + "Timestamp": "2024-05-16T08:17:13.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006900", - "Timestamp": "2019-10-15T21:16:49.000Z" + "SpotPrice": "0.025700", + "Timestamp": "2024-05-16T08:17:13.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006900", - "Timestamp": "2019-10-15T21:16:49.000Z" + "SpotPrice": "0.022700", + "Timestamp": "2024-05-16T08:17:13.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t2.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006900", - "Timestamp": "2019-10-15T21:16:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067700", + "Timestamp": "2024-05-16T08:03:57.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.217800", - "Timestamp": "2019-10-15T21:16:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039000", + "Timestamp": "2024-05-16T08:03:57.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.217800", - "Timestamp": "2019-10-15T21:16:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007700", + "Timestamp": "2024-05-16T08:03:57.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g4dn.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iezn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.217800", - "Timestamp": "2019-10-15T21:16:48.000Z" + "SpotPrice": "1.747100", + "Timestamp": "2024-05-16T08:03:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g4dn.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iezn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.257800", - "Timestamp": "2019-10-15T21:16:48.000Z" + "SpotPrice": "1.742100", + "Timestamp": "2024-05-16T08:03:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.257800", - "Timestamp": "2019-10-15T21:16:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.617100", + "Timestamp": "2024-05-16T08:03:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.257800", - "Timestamp": "2019-10-15T21:16:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.856200", + "Timestamp": "2024-05-16T08:03:39.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.157800", - "Timestamp": "2019-10-15T21:16:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.851200", + "Timestamp": "2024-05-16T08:03:39.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g4dn.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.18xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.157800", - "Timestamp": "2019-10-15T21:16:48.000Z" + "SpotPrice": "1.726200", + "Timestamp": "2024-05-16T08:03:39.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.157800", - "Timestamp": "2019-10-15T21:16:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.204800", + "Timestamp": "2024-05-16T08:03:38.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.498000", - "Timestamp": "2019-10-15T21:16:38.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.201100", + "Timestamp": "2024-05-16T08:03:38.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.498000", - "Timestamp": "2019-10-15T21:16:38.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144800", + "Timestamp": "2024-05-16T08:03:38.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.498000", - "Timestamp": "2019-10-15T21:16:38.000Z" + "SpotPrice": "2.933300", + "Timestamp": "2024-05-16T08:03:37.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.468000", - "Timestamp": "2019-10-15T21:16:38.000Z" + "SpotPrice": "2.928300", + "Timestamp": "2024-05-16T08:03:37.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.468000", - "Timestamp": "2019-10-15T21:16:38.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.803300", + "Timestamp": "2024-05-16T08:03:37.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.045200", + "Timestamp": "2024-05-16T08:03:37.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.468000", - "Timestamp": "2019-10-15T21:16:38.000Z" + "SpotPrice": "2.040200", + "Timestamp": "2024-05-16T08:03:37.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.368000", - "Timestamp": "2019-10-15T21:16:38.000Z" + "SpotPrice": "1.915200", + "Timestamp": "2024-05-16T08:03:37.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.368000", - "Timestamp": "2019-10-15T21:16:38.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.204200", + "Timestamp": "2024-05-16T08:03:36.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.368000", - "Timestamp": "2019-10-15T21:16:38.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.200200", + "Timestamp": "2024-05-16T08:03:36.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.496800", - "Timestamp": "2019-10-15T21:16:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144200", + "Timestamp": "2024-05-16T08:03:36.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3en.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.496800", - "Timestamp": "2019-10-15T21:16:19.000Z" + "SpotPrice": "0.391600", + "Timestamp": "2024-05-16T08:03:32.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.496800", - "Timestamp": "2019-10-15T21:16:19.000Z" + "SpotPrice": "5.139500", + "Timestamp": "2024-05-16T08:03:32.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.312000", - "Timestamp": "2019-10-15T21:15:38.000Z" + "SpotPrice": "12.747700", + "Timestamp": "2024-05-16T08:03:31.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g3s.xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.312000", - "Timestamp": "2019-10-15T21:15:38.000Z" + "SpotPrice": "0.497600", + "Timestamp": "2024-05-16T08:03:31.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "g4dn.metal", "ProductDescription": "Windows", - "SpotPrice": "4.312000", - "Timestamp": "2019-10-15T21:15:38.000Z" + "SpotPrice": "7.446500", + "Timestamp": "2024-05-16T08:03:30.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m2.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "f1.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.084500", - "Timestamp": "2019-10-15T21:11:49.000Z" + "SpotPrice": "5.665400", + "Timestamp": "2024-05-16T08:03:30.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.084500", - "Timestamp": "2019-10-15T21:11:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "f1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.635400", + "Timestamp": "2024-05-16T08:03:30.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.084500", - "Timestamp": "2019-10-15T21:11:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "f1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.535400", + "Timestamp": "2024-05-16T08:03:30.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.124500", - "Timestamp": "2019-10-15T21:11:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.591400", + "Timestamp": "2024-05-16T08:03:29.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.124500", - "Timestamp": "2019-10-15T21:11:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.960700", + "Timestamp": "2024-05-16T08:03:29.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m2.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.124500", - "Timestamp": "2019-10-15T21:11:49.000Z" + "SpotPrice": "4.955700", + "Timestamp": "2024-05-16T08:03:29.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m2.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.024500", - "Timestamp": "2019-10-15T21:11:49.000Z" + "SpotPrice": "4.830700", + "Timestamp": "2024-05-16T08:03:29.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.024500", - "Timestamp": "2019-10-15T21:11:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-16T08:03:29.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.024500", - "Timestamp": "2019-10-15T21:11:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136500", + "Timestamp": "2024-05-16T08:03:29.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.025800", - "Timestamp": "2019-10-15T21:11:36.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036500", + "Timestamp": "2024-05-16T08:03:29.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.019300", - "Timestamp": "2019-10-15T21:11:28.000Z" + "SpotPrice": "3.427500", + "Timestamp": "2024-05-16T08:03:29.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.019300", - "Timestamp": "2019-10-15T21:11:28.000Z" + "SpotPrice": "4.290800", + "Timestamp": "2024-05-16T08:03:29.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.019300", - "Timestamp": "2019-10-15T21:11:28.000Z" + "SpotPrice": "10.603200", + "Timestamp": "2024-05-16T08:03:29.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.591200", - "Timestamp": "2019-10-15T21:11:28.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.285300", + "Timestamp": "2024-05-16T08:03:28.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.591200", - "Timestamp": "2019-10-15T21:11:28.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.280300", + "Timestamp": "2024-05-16T08:03:28.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "z1d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.155300", + "Timestamp": "2024-05-16T08:03:28.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "x1.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.591200", - "Timestamp": "2019-10-15T21:11:28.000Z" + "SpotPrice": "11.611700", + "Timestamp": "2024-05-16T08:03:28.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.353200", - "Timestamp": "2019-10-15T21:11:17.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.925100", + "Timestamp": "2024-05-16T08:03:27.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.353200", - "Timestamp": "2019-10-15T21:11:17.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.202200", + "Timestamp": "2024-05-16T08:03:26.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "z1d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.353200", - "Timestamp": "2019-10-15T21:11:17.000Z" + "SpotPrice": "5.716100", + "Timestamp": "2024-05-16T08:03:26.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "z1d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.323200", - "Timestamp": "2019-10-15T21:11:17.000Z" + "SpotPrice": "5.711100", + "Timestamp": "2024-05-16T08:03:26.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.323200", - "Timestamp": "2019-10-15T21:11:17.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.586100", + "Timestamp": "2024-05-16T08:03:26.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "z1d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.374800", + "Timestamp": "2024-05-16T08:03:26.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.323200", - "Timestamp": "2019-10-15T21:11:17.000Z" + "SpotPrice": "2.369800", + "Timestamp": "2024-05-16T08:03:26.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "z1d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.223200", - "Timestamp": "2019-10-15T21:11:17.000Z" + "SpotPrice": "2.244800", + "Timestamp": "2024-05-16T08:03:26.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.223200", - "Timestamp": "2019-10-15T21:11:17.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.987500", + "Timestamp": "2024-05-16T08:03:25.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.223200", - "Timestamp": "2019-10-15T21:11:17.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.267200", + "Timestamp": "2024-05-16T08:03:24.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "z1d.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "p2.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.469200", - "Timestamp": "2019-10-15T21:11:15.000Z" + "SpotPrice": "6.030700", + "Timestamp": "2024-05-16T08:03:24.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "z1d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.469200", - "Timestamp": "2019-10-15T21:11:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "p2.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.000700", + "Timestamp": "2024-05-16T08:03:24.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "z1d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.469200", - "Timestamp": "2019-10-15T21:11:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.900700", + "Timestamp": "2024-05-16T08:03:24.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "z1d.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.439200", - "Timestamp": "2019-10-15T21:11:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119300", + "Timestamp": "2024-05-16T08:03:23.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "z1d.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.439200", - "Timestamp": "2019-10-15T21:11:15.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127500", + "Timestamp": "2024-05-16T08:03:23.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "z1d.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.439200", - "Timestamp": "2019-10-15T21:11:15.000Z" + "SpotPrice": "0.115600", + "Timestamp": "2024-05-16T08:03:23.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "z1d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.339200", - "Timestamp": "2019-10-15T21:11:15.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123800", + "Timestamp": "2024-05-16T08:03:23.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "z1d.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.339200", - "Timestamp": "2019-10-15T21:11:15.000Z" + "SpotPrice": "0.059300", + "Timestamp": "2024-05-16T08:03:23.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "z1d.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.339200", - "Timestamp": "2019-10-15T21:11:15.000Z" - }, - { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.254800", - "Timestamp": "2019-10-15T21:11:11.000Z" + "SpotPrice": "0.067500", + "Timestamp": "2024-05-16T08:03:23.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.254800", - "Timestamp": "2019-10-15T21:11:11.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-16T08:03:23.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.254800", - "Timestamp": "2019-10-15T21:11:11.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095100", + "Timestamp": "2024-05-16T08:03:23.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.254800", - "Timestamp": "2019-10-15T21:11:11.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038800", + "Timestamp": "2024-05-16T08:03:23.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-15T21:10:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.816000", + "Timestamp": "2024-05-16T08:03:23.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-15T21:10:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.786000", + "Timestamp": "2024-05-16T08:03:23.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-15T21:10:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.686000", + "Timestamp": "2024-05-16T08:03:23.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-15T21:10:56.000Z" + "SpotPrice": "0.264300", + "Timestamp": "2024-05-16T08:03:23.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.696600", - "Timestamp": "2019-10-15T21:10:56.000Z" + "SpotPrice": "2.166200", + "Timestamp": "2024-05-16T08:03:23.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.666600", - "Timestamp": "2019-10-15T21:10:56.000Z" + "SpotPrice": "2.136200", + "Timestamp": "2024-05-16T08:03:23.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.566600", - "Timestamp": "2019-10-15T21:10:56.000Z" - }, - { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.038600", - "Timestamp": "2019-10-15T21:10:54.000Z" + "SpotPrice": "2.036200", + "Timestamp": "2024-05-16T08:03:23.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.038600", - "Timestamp": "2019-10-15T21:10:54.000Z" + "SpotPrice": "0.272200", + "Timestamp": "2024-05-16T08:03:23.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "p2.xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.038600", - "Timestamp": "2019-10-15T21:10:54.000Z" + "SpotPrice": "0.542300", + "Timestamp": "2024-05-16T08:03:22.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.038600", - "Timestamp": "2019-10-15T21:10:54.000Z" + "SpotPrice": "2.461900", + "Timestamp": "2024-05-16T08:03:21.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.497800", - "Timestamp": "2019-10-15T21:10:54.000Z" + "SpotPrice": "2.459400", + "Timestamp": "2024-05-16T08:03:21.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.497800", - "Timestamp": "2019-10-15T21:10:54.000Z" + "SpotPrice": "2.495900", + "Timestamp": "2024-05-16T08:03:21.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.497800", - "Timestamp": "2019-10-15T21:10:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.510900", + "Timestamp": "2024-05-16T08:03:21.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.497800", - "Timestamp": "2019-10-15T21:10:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.505900", + "Timestamp": "2024-05-16T08:03:21.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.752500", - "Timestamp": "2019-10-15T21:10:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.380900", + "Timestamp": "2024-05-16T08:03:21.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5zn.metal", "ProductDescription": "Windows", - "SpotPrice": "0.752500", - "Timestamp": "2019-10-15T21:10:41.000Z" + "SpotPrice": "3.815200", + "Timestamp": "2024-05-16T08:03:20.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5zn.metal", "ProductDescription": "Windows", - "SpotPrice": "0.752500", - "Timestamp": "2019-10-15T21:10:41.000Z" + "SpotPrice": "3.755400", + "Timestamp": "2024-05-16T08:03:20.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m3.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090700", - "Timestamp": "2019-10-15T21:10:39.000Z" + "SpotPrice": "0.586900", + "Timestamp": "2024-05-16T08:03:20.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090700", - "Timestamp": "2019-10-15T21:10:39.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.556900", + "Timestamp": "2024-05-16T08:03:20.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090700", - "Timestamp": "2019-10-15T21:10:39.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.456900", + "Timestamp": "2024-05-16T08:03:20.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.130700", - "Timestamp": "2019-10-15T21:10:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.102500", + "Timestamp": "2024-05-16T08:03:19.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.130700", - "Timestamp": "2019-10-15T21:10:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.077600", + "Timestamp": "2024-05-16T08:03:19.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.130700", - "Timestamp": "2019-10-15T21:10:39.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.306200", + "Timestamp": "2024-05-16T08:03:18.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030700", - "Timestamp": "2019-10-15T21:10:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.198000", + "Timestamp": "2024-05-16T08:03:17.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030700", - "Timestamp": "2019-10-15T21:10:39.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.405800", + "Timestamp": "2024-05-16T08:03:16.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030700", - "Timestamp": "2019-10-15T21:10:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.731900", + "Timestamp": "2024-05-16T08:03:16.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g3.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T21:10:28.000Z" + "SpotPrice": "2.061900", + "Timestamp": "2024-05-16T08:03:15.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g3.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.167600", - "Timestamp": "2019-10-15T21:10:28.000Z" + "SpotPrice": "2.031900", + "Timestamp": "2024-05-16T08:03:15.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g3.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067600", - "Timestamp": "2019-10-15T21:10:28.000Z" + "SpotPrice": "1.931900", + "Timestamp": "2024-05-16T08:03:15.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "z1d.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.547200", - "Timestamp": "2019-10-15T21:10:27.000Z" + "SpotPrice": "0.283100", + "Timestamp": "2024-05-16T08:03:15.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "z1d.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.547200", - "Timestamp": "2019-10-15T21:10:27.000Z" + "SpotPrice": "7.466500", + "Timestamp": "2024-05-16T08:03:15.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "z1d.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.547200", - "Timestamp": "2019-10-15T21:10:27.000Z" + "SpotPrice": "4.128100", + "Timestamp": "2024-05-16T08:03:14.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.048000", - "Timestamp": "2019-10-15T21:10:26.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.140400", + "Timestamp": "2024-05-16T08:03:14.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.048000", - "Timestamp": "2019-10-15T21:10:26.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.112300", + "Timestamp": "2024-05-16T08:03:13.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.048000", - "Timestamp": "2019-10-15T21:10:26.000Z" + "SpotPrice": "1.479200", + "Timestamp": "2024-05-16T08:03:13.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.018000", - "Timestamp": "2019-10-15T21:10:26.000Z" + "SpotPrice": "1.474200", + "Timestamp": "2024-05-16T08:03:13.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "p3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.018000", - "Timestamp": "2019-10-15T21:10:26.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.349200", + "Timestamp": "2024-05-16T08:03:13.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "p3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.018000", - "Timestamp": "2019-10-15T21:10:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.656600", + "Timestamp": "2024-05-16T08:03:12.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.918000", - "Timestamp": "2019-10-15T21:10:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.290200", + "Timestamp": "2024-05-16T08:03:12.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.918000", - "Timestamp": "2019-10-15T21:10:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.285200", + "Timestamp": "2024-05-16T08:03:12.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.918000", - "Timestamp": "2019-10-15T21:10:26.000Z" + "SpotPrice": "1.160200", + "Timestamp": "2024-05-16T08:03:12.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.metal", "ProductDescription": "Windows", - "SpotPrice": "0.375900", - "Timestamp": "2019-10-15T21:10:20.000Z" + "SpotPrice": "9.398300", + "Timestamp": "2024-05-16T08:03:11.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.375900", - "Timestamp": "2019-10-15T21:10:20.000Z" + "SpotPrice": "5.080100", + "Timestamp": "2024-05-16T08:03:11.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.375900", - "Timestamp": "2019-10-15T21:10:20.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.530300", + "Timestamp": "2024-05-16T08:03:11.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.641500", - "Timestamp": "2019-10-15T21:10:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.525300", + "Timestamp": "2024-05-16T08:03:11.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.641500", - "Timestamp": "2019-10-15T21:10:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.400300", + "Timestamp": "2024-05-16T08:03:11.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.641500", - "Timestamp": "2019-10-15T21:10:19.000Z" + "SpotPrice": "1.092900", + "Timestamp": "2024-05-16T08:03:11.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gn.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.611500", - "Timestamp": "2019-10-15T21:10:19.000Z" + "SpotPrice": "1.087900", + "Timestamp": "2024-05-16T08:03:11.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.611500", - "Timestamp": "2019-10-15T21:10:19.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.962900", + "Timestamp": "2024-05-16T08:03:11.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.611500", - "Timestamp": "2019-10-15T21:10:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.974000", + "Timestamp": "2024-05-16T08:03:10.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.511500", - "Timestamp": "2019-10-15T21:10:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.983100", + "Timestamp": "2024-05-16T08:03:10.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.511500", - "Timestamp": "2019-10-15T21:10:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.978100", + "Timestamp": "2024-05-16T08:03:10.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "z1d.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.511500", - "Timestamp": "2019-10-15T21:10:19.000Z" + "SpotPrice": "1.853100", + "Timestamp": "2024-05-16T08:03:10.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.124200", - "Timestamp": "2019-10-15T21:10:17.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.069900", + "Timestamp": "2024-05-16T08:03:08.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.124200", - "Timestamp": "2019-10-15T21:10:17.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.064900", + "Timestamp": "2024-05-16T08:03:08.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.124200", - "Timestamp": "2019-10-15T21:10:17.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.939900", + "Timestamp": "2024-05-16T08:03:08.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "h1.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.132000", - "Timestamp": "2019-10-15T21:10:04.000Z" + "SpotPrice": "2.163800", + "Timestamp": "2024-05-16T08:03:08.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "h1.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.132000", - "Timestamp": "2019-10-15T21:10:04.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "h1.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.790000", - "Timestamp": "2019-10-15T21:10:04.000Z" + "SpotPrice": "11.940700", + "Timestamp": "2024-05-16T08:03:08.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "h1.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "vt1.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.790000", - "Timestamp": "2019-10-15T21:10:04.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "h1.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.760000", - "Timestamp": "2019-10-15T21:10:04.000Z" + "SpotPrice": "2.352300", + "Timestamp": "2024-05-16T08:03:08.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "h1.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "vt1.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.760000", - "Timestamp": "2019-10-15T21:10:04.000Z" + "SpotPrice": "2.322300", + "Timestamp": "2024-05-16T08:03:08.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "h1.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "vt1.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.660000", - "Timestamp": "2019-10-15T21:10:04.000Z" + "SpotPrice": "2.222300", + "Timestamp": "2024-05-16T08:03:08.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "h1.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.660000", - "Timestamp": "2019-10-15T21:10:04.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.798800", + "Timestamp": "2024-05-16T08:03:08.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.251600", - "Timestamp": "2019-10-15T21:10:02.000Z" + "SpotPrice": "1.172100", + "Timestamp": "2024-05-16T08:03:06.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.251600", - "Timestamp": "2019-10-15T21:10:02.000Z" + "SpotPrice": "3.509600", + "Timestamp": "2024-05-16T08:03:05.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.251600", - "Timestamp": "2019-10-15T21:10:02.000Z" + "SpotPrice": "3.539200", + "Timestamp": "2024-05-16T08:03:05.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "h1.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.251600", - "Timestamp": "2019-10-15T21:10:02.000Z" + "SpotPrice": "1.369600", + "Timestamp": "2024-05-16T08:03:03.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.509700", - "Timestamp": "2019-10-15T21:10:02.000Z" + "SpotPrice": "4.875100", + "Timestamp": "2024-05-16T08:03:03.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.892000", - "Timestamp": "2019-10-15T21:10:02.000Z" + "SpotPrice": "4.215300", + "Timestamp": "2024-05-16T08:03:03.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.large", "ProductDescription": "Windows", - "SpotPrice": "0.892000", - "Timestamp": "2019-10-15T21:10:02.000Z" + "SpotPrice": "0.125100", + "Timestamp": "2024-05-16T08:03:03.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.211800", - "Timestamp": "2019-10-15T21:10:01.000Z" + "SpotPrice": "2.029100", + "Timestamp": "2024-05-16T08:03:02.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.181800", - "Timestamp": "2019-10-15T21:10:01.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.891000", + "Timestamp": "2024-05-16T08:03:02.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.081800", - "Timestamp": "2019-10-15T21:10:01.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.024100", + "Timestamp": "2024-05-16T08:03:02.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.254800", - "Timestamp": "2019-10-15T21:10:01.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.886000", + "Timestamp": "2024-05-16T08:03:02.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.254800", - "Timestamp": "2019-10-15T21:10:01.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.899100", + "Timestamp": "2024-05-16T08:03:02.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.254800", - "Timestamp": "2019-10-15T21:10:01.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.761000", + "Timestamp": "2024-05-16T08:03:02.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.654000", - "Timestamp": "2019-10-15T21:09:57.000Z" + "SpotPrice": "2.370200", + "Timestamp": "2024-05-16T08:03:02.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.654000", - "Timestamp": "2019-10-15T21:09:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.365200", + "Timestamp": "2024-05-16T08:03:02.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.654000", - "Timestamp": "2019-10-15T21:09:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.240200", + "Timestamp": "2024-05-16T08:03:02.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.624000", - "Timestamp": "2019-10-15T21:09:57.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.971000", + "Timestamp": "2024-05-16T08:03:02.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.624000", - "Timestamp": "2019-10-15T21:09:57.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127800", + "Timestamp": "2024-05-16T08:03:02.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.624000", - "Timestamp": "2019-10-15T21:09:57.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.524000", - "Timestamp": "2019-10-15T21:09:57.000Z" + "SpotPrice": "0.123800", + "Timestamp": "2024-05-16T08:03:02.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.524000", - "Timestamp": "2019-10-15T21:09:57.000Z" + "SpotPrice": "0.067800", + "Timestamp": "2024-05-16T08:03:02.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.524000", - "Timestamp": "2019-10-15T21:09:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.147400", + "Timestamp": "2024-05-16T08:03:02.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3en.6xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092500", - "Timestamp": "2019-10-15T21:09:56.000Z" + "SpotPrice": "1.932500", + "Timestamp": "2024-05-16T08:03:02.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3en.6xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132500", - "Timestamp": "2019-10-15T21:09:56.000Z" + "SpotPrice": "1.927500", + "Timestamp": "2024-05-16T08:03:02.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3en.6xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032500", - "Timestamp": "2019-10-15T21:09:56.000Z" + "SpotPrice": "1.802500", + "Timestamp": "2024-05-16T08:03:02.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.257800", + "Timestamp": "2024-05-16T08:03:01.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.703100", - "Timestamp": "2019-10-15T21:09:56.000Z" + "SpotPrice": "4.553700", + "Timestamp": "2024-05-16T08:03:01.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.673100", - "Timestamp": "2019-10-15T21:09:56.000Z" + "SpotPrice": "4.548700", + "Timestamp": "2024-05-16T08:03:01.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.573100", - "Timestamp": "2019-10-15T21:09:56.000Z" + "SpotPrice": "4.423700", + "Timestamp": "2024-05-16T08:03:01.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062800", - "Timestamp": "2019-10-15T21:09:54.000Z" + "SpotPrice": "2.926800", + "Timestamp": "2024-05-16T08:03:01.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3a.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062800", - "Timestamp": "2019-10-15T21:09:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.921800", + "Timestamp": "2024-05-16T08:03:01.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3a.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062800", - "Timestamp": "2019-10-15T21:09:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.796800", + "Timestamp": "2024-05-16T08:03:01.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3a.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062800", - "Timestamp": "2019-10-15T21:09:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.683000", + "Timestamp": "2024-05-16T08:03:01.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3a.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.102800", - "Timestamp": "2019-10-15T21:09:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.714300", + "Timestamp": "2024-05-16T08:03:01.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3a.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.102800", - "Timestamp": "2019-10-15T21:09:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.215200", + "Timestamp": "2024-05-16T08:03:00.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3a.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.102800", - "Timestamp": "2019-10-15T21:09:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.325300", + "Timestamp": "2024-05-16T08:03:00.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.089900", + "Timestamp": "2024-05-16T08:02:59.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.102800", - "Timestamp": "2019-10-15T21:09:54.000Z" + "SpotPrice": "2.084900", + "Timestamp": "2024-05-16T08:02:59.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002800", - "Timestamp": "2019-10-15T21:09:54.000Z" + "SpotPrice": "1.959900", + "Timestamp": "2024-05-16T08:02:59.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002800", - "Timestamp": "2019-10-15T21:09:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.188500", + "Timestamp": "2024-05-16T08:02:59.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002800", - "Timestamp": "2019-10-15T21:09:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.183500", + "Timestamp": "2024-05-16T08:02:59.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-1a", + "InstanceType": "z1d.6xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002800", - "Timestamp": "2019-10-15T21:09:54.000Z" + "SpotPrice": "1.058500", + "Timestamp": "2024-05-16T08:02:59.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.286000", - "Timestamp": "2019-10-15T21:09:48.000Z" + "SpotPrice": "1.093600", + "Timestamp": "2024-05-16T08:02:59.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.286000", - "Timestamp": "2019-10-15T21:09:48.000Z" + "SpotPrice": "1.094800", + "Timestamp": "2024-05-16T08:02:59.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.286000", - "Timestamp": "2019-10-15T21:09:48.000Z" + "SpotPrice": "2.082300", + "Timestamp": "2024-05-16T08:02:59.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m2.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t2.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.124500", - "Timestamp": "2019-10-15T21:09:39.000Z" + "SpotPrice": "0.226500", + "Timestamp": "2024-05-16T08:02:58.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m2.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.124500", - "Timestamp": "2019-10-15T21:09:39.000Z" + "SpotPrice": "6.577700", + "Timestamp": "2024-05-16T08:02:58.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m2.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.metal-48xl", "ProductDescription": "Windows", - "SpotPrice": "0.124500", - "Timestamp": "2019-10-15T21:09:39.000Z" + "SpotPrice": "11.876800", + "Timestamp": "2024-05-16T08:02:58.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.128200", - "Timestamp": "2019-10-15T21:09:36.000Z" + "SpotPrice": "0.308400", + "Timestamp": "2024-05-16T08:02:58.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.168200", - "Timestamp": "2019-10-15T21:09:36.000Z" + "SpotPrice": "0.303400", + "Timestamp": "2024-05-16T08:02:58.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.068200", - "Timestamp": "2019-10-15T21:09:36.000Z" + "SpotPrice": "0.178400", + "Timestamp": "2024-05-16T08:02:58.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T21:09:29.000Z" + "SpotPrice": "2.155300", + "Timestamp": "2024-05-16T08:02:58.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4g.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.170800", - "Timestamp": "2019-10-15T21:09:29.000Z" + "SpotPrice": "2.150300", + "Timestamp": "2024-05-16T08:02:58.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.070800", - "Timestamp": "2019-10-15T21:09:29.000Z" + "SpotPrice": "2.025300", + "Timestamp": "2024-05-16T08:02:58.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.099800", - "Timestamp": "2019-10-15T21:09:26.000Z" + "SpotPrice": "0.784800", + "Timestamp": "2024-05-16T08:02:58.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gd.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.139800", - "Timestamp": "2019-10-15T21:09:26.000Z" + "SpotPrice": "0.779800", + "Timestamp": "2024-05-16T08:02:58.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.039800", - "Timestamp": "2019-10-15T21:09:26.000Z" + "SpotPrice": "0.654800", + "Timestamp": "2024-05-16T08:02:58.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.241400", - "Timestamp": "2019-10-15T21:09:20.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.374500", + "Timestamp": "2024-05-16T08:02:58.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.241400", - "Timestamp": "2019-10-15T21:09:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.197500", + "Timestamp": "2024-05-16T08:02:58.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.241400", - "Timestamp": "2019-10-15T21:09:20.000Z" + "SpotPrice": "1.571500", + "Timestamp": "2024-05-16T08:02:57.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.211400", - "Timestamp": "2019-10-15T21:09:20.000Z" + "SpotPrice": "1.566500", + "Timestamp": "2024-05-16T08:02:57.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.211400", - "Timestamp": "2019-10-15T21:09:20.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.441500", + "Timestamp": "2024-05-16T08:02:57.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.211400", - "Timestamp": "2019-10-15T21:09:20.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.515200", + "Timestamp": "2024-05-16T08:02:57.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.111400", - "Timestamp": "2019-10-15T21:09:20.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.510200", + "Timestamp": "2024-05-16T08:02:57.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.111400", - "Timestamp": "2019-10-15T21:09:20.000Z" + "SpotPrice": "1.385200", + "Timestamp": "2024-05-16T08:02:57.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.111400", - "Timestamp": "2019-10-15T21:09:20.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.225300", + "Timestamp": "2024-05-16T08:02:57.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m4.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.315900", - "Timestamp": "2019-10-15T21:09:10.000Z" + "SpotPrice": "1.614800", + "Timestamp": "2024-05-16T08:02:56.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.315900", - "Timestamp": "2019-10-15T21:09:10.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.584800", + "Timestamp": "2024-05-16T08:02:56.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.315900", - "Timestamp": "2019-10-15T21:09:10.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.484800", + "Timestamp": "2024-05-16T08:02:56.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.355900", - "Timestamp": "2019-10-15T21:09:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.517400", + "Timestamp": "2024-05-16T08:02:56.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.355900", - "Timestamp": "2019-10-15T21:09:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.483100", + "Timestamp": "2024-05-16T08:02:56.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.355900", - "Timestamp": "2019-10-15T21:09:10.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.697100", + "Timestamp": "2024-05-16T08:02:55.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.255900", - "Timestamp": "2019-10-15T21:09:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.301000", + "Timestamp": "2024-05-16T08:02:55.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.255900", - "Timestamp": "2019-10-15T21:09:10.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.626300", + "Timestamp": "2024-05-16T08:02:55.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.255900", - "Timestamp": "2019-10-15T21:09:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.237500", + "Timestamp": "2024-05-16T08:02:55.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.271700", - "Timestamp": "2019-10-15T21:09:08.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.233500", + "Timestamp": "2024-05-16T08:02:55.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.271700", - "Timestamp": "2019-10-15T21:09:08.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177500", + "Timestamp": "2024-05-16T08:02:55.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.271700", - "Timestamp": "2019-10-15T21:09:08.000Z" + "SpotPrice": "1.707300", + "Timestamp": "2024-05-16T08:02:55.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.241700", - "Timestamp": "2019-10-15T21:09:08.000Z" + "SpotPrice": "1.702300", + "Timestamp": "2024-05-16T08:02:55.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.241700", - "Timestamp": "2019-10-15T21:09:08.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.577300", + "Timestamp": "2024-05-16T08:02:55.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.241700", - "Timestamp": "2019-10-15T21:09:08.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.798700", + "Timestamp": "2024-05-16T08:02:55.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.141700", - "Timestamp": "2019-10-15T21:09:08.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.793700", + "Timestamp": "2024-05-16T08:02:55.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.141700", - "Timestamp": "2019-10-15T21:09:08.000Z" + "SpotPrice": "0.668700", + "Timestamp": "2024-05-16T08:02:55.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.141700", - "Timestamp": "2019-10-15T21:09:08.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.298400", + "Timestamp": "2024-05-16T08:02:54.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.173400", - "Timestamp": "2019-10-15T21:08:50.000Z" + "SpotPrice": "8.909800", + "Timestamp": "2024-05-16T08:02:54.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.173400", - "Timestamp": "2019-10-15T21:08:50.000Z" + "SpotPrice": "0.151400", + "Timestamp": "2024-05-16T08:02:54.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.173400", - "Timestamp": "2019-10-15T21:08:50.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.268600", + "Timestamp": "2024-05-16T08:02:54.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.077300", - "Timestamp": "2019-10-15T21:08:22.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.263600", + "Timestamp": "2024-05-16T08:02:54.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.077300", - "Timestamp": "2019-10-15T21:08:22.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.138600", + "Timestamp": "2024-05-16T08:02:54.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.large", "ProductDescription": "Windows", - "SpotPrice": "4.077300", - "Timestamp": "2019-10-15T21:08:22.000Z" + "SpotPrice": "0.149000", + "Timestamp": "2024-05-16T08:02:53.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "a1.medium", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.068300", - "Timestamp": "2019-10-15T21:08:17.000Z" + "SpotPrice": "2.599600", + "Timestamp": "2024-05-16T08:02:53.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "a1.medium", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.108300", - "Timestamp": "2019-10-15T21:08:17.000Z" + "SpotPrice": "2.594600", + "Timestamp": "2024-05-16T08:02:53.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "a1.medium", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.008300", - "Timestamp": "2019-10-15T21:08:17.000Z" + "SpotPrice": "2.469600", + "Timestamp": "2024-05-16T08:02:53.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.263300", - "Timestamp": "2019-10-15T21:08:16.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.939700", + "Timestamp": "2024-05-16T08:02:53.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.263300", - "Timestamp": "2019-10-15T21:08:16.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.663500", + "Timestamp": "2024-05-16T08:02:53.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.263300", - "Timestamp": "2019-10-15T21:08:16.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.529200", + "Timestamp": "2024-05-16T08:02:53.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.233300", - "Timestamp": "2019-10-15T21:08:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.290100", + "Timestamp": "2024-05-16T08:02:53.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.233300", - "Timestamp": "2019-10-15T21:08:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.435300", + "Timestamp": "2024-05-16T08:02:53.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i2.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.233300", - "Timestamp": "2019-10-15T21:08:16.000Z" + "SpotPrice": "1.405300", + "Timestamp": "2024-05-16T08:02:53.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5dn.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i2.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.133300", - "Timestamp": "2019-10-15T21:08:16.000Z" + "SpotPrice": "1.305300", + "Timestamp": "2024-05-16T08:02:53.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.133300", - "Timestamp": "2019-10-15T21:08:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.697600", + "Timestamp": "2024-05-16T08:02:53.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.692600", + "Timestamp": "2024-05-16T08:02:53.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.133300", - "Timestamp": "2019-10-15T21:08:16.000Z" + "SpotPrice": "1.567600", + "Timestamp": "2024-05-16T08:02:53.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-15T21:08:02.000Z" + "SpotPrice": "4.644000", + "Timestamp": "2024-05-16T08:02:53.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095400", - "Timestamp": "2019-10-15T21:08:00.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.489300", + "Timestamp": "2024-05-16T08:02:53.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095400", - "Timestamp": "2019-10-15T21:08:00.000Z" + "SpotPrice": "1.966800", + "Timestamp": "2024-05-16T08:02:52.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095400", - "Timestamp": "2019-10-15T21:08:00.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.936800", + "Timestamp": "2024-05-16T08:02:52.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135400", - "Timestamp": "2019-10-15T21:08:00.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.836800", + "Timestamp": "2024-05-16T08:02:52.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5n.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135400", - "Timestamp": "2019-10-15T21:08:00.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.884000", + "Timestamp": "2024-05-16T08:02:52.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6gd.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135400", - "Timestamp": "2019-10-15T21:08:00.000Z" + "SpotPrice": "0.879000", + "Timestamp": "2024-05-16T08:02:52.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035400", - "Timestamp": "2019-10-15T21:08:00.000Z" + "SpotPrice": "0.754000", + "Timestamp": "2024-05-16T08:02:52.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5n.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035400", - "Timestamp": "2019-10-15T21:08:00.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.912500", + "Timestamp": "2024-05-16T08:02:52.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035400", - "Timestamp": "2019-10-15T21:08:00.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.907500", + "Timestamp": "2024-05-16T08:02:52.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.127400", - "Timestamp": "2019-10-15T21:07:53.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.782500", + "Timestamp": "2024-05-16T08:02:52.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.127400", - "Timestamp": "2019-10-15T21:07:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.634200", + "Timestamp": "2024-05-16T08:02:52.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.127400", - "Timestamp": "2019-10-15T21:07:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.629200", + "Timestamp": "2024-05-16T08:02:52.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.503200", - "Timestamp": "2019-10-15T21:07:33.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.504200", + "Timestamp": "2024-05-16T08:02:52.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.large", "ProductDescription": "Windows", - "SpotPrice": "0.503200", - "Timestamp": "2019-10-15T21:07:33.000Z" + "SpotPrice": "0.132600", + "Timestamp": "2024-05-16T08:02:52.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.503200", - "Timestamp": "2019-10-15T21:07:33.000Z" + "SpotPrice": "1.054100", + "Timestamp": "2024-05-16T08:02:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.503200", - "Timestamp": "2019-10-15T21:07:33.000Z" + "SpotPrice": "3.301800", + "Timestamp": "2024-05-16T08:02:51.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "is4gen.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.265200", - "Timestamp": "2019-10-15T21:07:25.000Z" + "SpotPrice": "0.739500", + "Timestamp": "2024-05-16T08:02:50.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "is4gen.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.235200", - "Timestamp": "2019-10-15T21:07:25.000Z" + "SpotPrice": "0.734500", + "Timestamp": "2024-05-16T08:02:50.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "is4gen.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.135200", - "Timestamp": "2019-10-15T21:07:25.000Z" - }, - { - "AvailabilityZone": "us-west-2d", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.650000", - "Timestamp": "2019-10-15T21:07:20.000Z" + "SpotPrice": "0.609500", + "Timestamp": "2024-05-16T08:02:50.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.10xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.786000", - "Timestamp": "2019-10-15T21:07:20.000Z" + "SpotPrice": "1.075400", + "Timestamp": "2024-05-16T08:02:50.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.786000", - "Timestamp": "2019-10-15T21:07:20.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.045400", + "Timestamp": "2024-05-16T08:02:50.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.786000", - "Timestamp": "2019-10-15T21:07:20.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.945400", + "Timestamp": "2024-05-16T08:02:50.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "d2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "5.620000", - "Timestamp": "2019-10-15T21:07:20.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.682400", + "Timestamp": "2024-05-16T08:02:50.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.756000", - "Timestamp": "2019-10-15T21:07:20.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.809000", + "Timestamp": "2024-05-16T08:02:50.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.756000", - "Timestamp": "2019-10-15T21:07:20.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.954100", + "Timestamp": "2024-05-16T08:02:50.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.756000", - "Timestamp": "2019-10-15T21:07:20.000Z" + "SpotPrice": "3.949100", + "Timestamp": "2024-05-16T08:02:50.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.520000", - "Timestamp": "2019-10-15T21:07:20.000Z" + "SpotPrice": "3.824100", + "Timestamp": "2024-05-16T08:02:50.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.656000", - "Timestamp": "2019-10-15T21:07:20.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.025700", + "Timestamp": "2024-05-16T08:02:50.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.656000", - "Timestamp": "2019-10-15T21:07:20.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.020700", + "Timestamp": "2024-05-16T08:02:50.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.656000", - "Timestamp": "2019-10-15T21:07:20.000Z" + "SpotPrice": "0.895700", + "Timestamp": "2024-05-16T08:02:50.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.400400", - "Timestamp": "2019-10-15T21:07:10.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.180500", + "Timestamp": "2024-05-16T08:02:50.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.400400", - "Timestamp": "2019-10-15T21:07:10.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "m3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.181900", + "Timestamp": "2024-05-16T08:02:50.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5n.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.400400", - "Timestamp": "2019-10-15T21:07:10.000Z" + "SpotPrice": "3.403600", + "Timestamp": "2024-05-16T08:02:49.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.370400", - "Timestamp": "2019-10-15T21:07:10.000Z" + "SpotPrice": "3.398600", + "Timestamp": "2024-05-16T08:02:49.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.370400", - "Timestamp": "2019-10-15T21:07:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.273600", + "Timestamp": "2024-05-16T08:02:49.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.370400", - "Timestamp": "2019-10-15T21:07:10.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.433000", + "Timestamp": "2024-05-16T08:02:49.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.270400", - "Timestamp": "2019-10-15T21:07:10.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.428000", + "Timestamp": "2024-05-16T08:02:49.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.270400", - "Timestamp": "2019-10-15T21:07:10.000Z" + "SpotPrice": "2.303000", + "Timestamp": "2024-05-16T08:02:49.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.270400", - "Timestamp": "2019-10-15T21:07:10.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129700", + "Timestamp": "2024-05-16T08:02:49.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.509700", - "Timestamp": "2019-10-15T21:07:08.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126000", + "Timestamp": "2024-05-16T08:02:49.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.509700", - "Timestamp": "2019-10-15T21:07:08.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069700", + "Timestamp": "2024-05-16T08:02:49.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.509700", - "Timestamp": "2019-10-15T21:07:08.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "c3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154100", + "Timestamp": "2024-05-16T08:02:49.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.355600", - "Timestamp": "2019-10-15T21:07:07.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "c3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.194100", + "Timestamp": "2024-05-16T08:02:49.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.355600", - "Timestamp": "2019-10-15T21:07:07.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "c3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094100", + "Timestamp": "2024-05-16T08:02:49.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.355600", - "Timestamp": "2019-10-15T21:07:07.000Z" + "SpotPrice": "1.802300", + "Timestamp": "2024-05-16T08:02:47.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.325600", - "Timestamp": "2019-10-15T21:07:07.000Z" + "SpotPrice": "1.797300", + "Timestamp": "2024-05-16T08:02:47.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.325600", - "Timestamp": "2019-10-15T21:07:07.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.672300", + "Timestamp": "2024-05-16T08:02:47.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.325600", - "Timestamp": "2019-10-15T21:07:07.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "trn1n.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "10.138400", + "Timestamp": "2024-05-16T08:02:47.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.225600", - "Timestamp": "2019-10-15T21:07:07.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "trn1n.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "10.108400", + "Timestamp": "2024-05-16T08:02:47.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "trn1n.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.225600", - "Timestamp": "2019-10-15T21:07:07.000Z" + "SpotPrice": "10.008400", + "Timestamp": "2024-05-16T08:02:47.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.225600", - "Timestamp": "2019-10-15T21:07:07.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.948200", + "Timestamp": "2024-05-16T08:02:47.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.038600", - "Timestamp": "2019-10-15T21:07:05.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.943200", + "Timestamp": "2024-05-16T08:02:47.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.038600", - "Timestamp": "2019-10-15T21:07:05.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.818200", + "Timestamp": "2024-05-16T08:02:47.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.038600", - "Timestamp": "2019-10-15T21:07:05.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131200", + "Timestamp": "2024-05-16T08:02:47.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.038600", - "Timestamp": "2019-10-15T21:07:05.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127500", + "Timestamp": "2024-05-16T08:02:47.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.012900", - "Timestamp": "2019-10-15T21:07:03.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071200", + "Timestamp": "2024-05-16T08:02:47.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.012900", - "Timestamp": "2019-10-15T21:07:03.000Z" + "SpotPrice": "1.216800", + "Timestamp": "2024-05-16T08:02:46.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.012900", - "Timestamp": "2019-10-15T21:07:03.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.953300", + "Timestamp": "2024-05-16T08:02:45.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.012900", - "Timestamp": "2019-10-15T21:07:03.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.923300", + "Timestamp": "2024-05-16T08:02:45.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.198000", - "Timestamp": "2019-10-15T21:07:02.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.823300", + "Timestamp": "2024-05-16T08:02:45.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.334000", - "Timestamp": "2019-10-15T21:07:02.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.717500", + "Timestamp": "2024-05-16T08:02:45.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.334000", - "Timestamp": "2019-10-15T21:07:02.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.178200", + "Timestamp": "2024-05-16T08:02:45.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.334000", - "Timestamp": "2019-10-15T21:07:02.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.687500", + "Timestamp": "2024-05-16T08:02:45.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.006400", - "Timestamp": "2019-10-15T21:07:01.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.148200", + "Timestamp": "2024-05-16T08:02:45.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.006400", - "Timestamp": "2019-10-15T21:07:01.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.587500", + "Timestamp": "2024-05-16T08:02:45.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.006400", - "Timestamp": "2019-10-15T21:07:01.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.048200", + "Timestamp": "2024-05-16T08:02:45.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.593600", - "Timestamp": "2019-10-15T21:07:00.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116800", + "Timestamp": "2024-05-16T08:02:45.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.593600", - "Timestamp": "2019-10-15T21:07:00.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087800", + "Timestamp": "2024-05-16T08:02:45.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.593600", - "Timestamp": "2019-10-15T21:07:00.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056800", + "Timestamp": "2024-05-16T08:02:45.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "f1.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.090000", - "Timestamp": "2019-10-15T21:07:00.000Z" + "SpotPrice": "0.151400", + "Timestamp": "2024-05-16T08:02:45.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "f1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.090000", - "Timestamp": "2019-10-15T21:07:00.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147700", + "Timestamp": "2024-05-16T08:02:45.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "f1.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091400", + "Timestamp": "2024-05-16T08:02:45.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.090000", - "Timestamp": "2019-10-15T21:07:00.000Z" + "SpotPrice": "0.299300", + "Timestamp": "2024-05-16T08:02:44.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "f1.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "4.060000", - "Timestamp": "2019-10-15T21:07:00.000Z" + "SpotPrice": "0.294300", + "Timestamp": "2024-05-16T08:02:44.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "f1.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "4.060000", - "Timestamp": "2019-10-15T21:07:00.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169300", + "Timestamp": "2024-05-16T08:02:44.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "f1.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.668400", + "Timestamp": "2024-05-16T08:02:44.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "4.060000", - "Timestamp": "2019-10-15T21:07:00.000Z" + "SpotPrice": "2.663400", + "Timestamp": "2024-05-16T08:02:44.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "f1.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.960000", - "Timestamp": "2019-10-15T21:07:00.000Z" + "SpotPrice": "2.538400", + "Timestamp": "2024-05-16T08:02:44.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "f1.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.960000", - "Timestamp": "2019-10-15T21:07:00.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.597600", + "Timestamp": "2024-05-16T08:02:44.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "f1.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.592600", + "Timestamp": "2024-05-16T08:02:44.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.960000", - "Timestamp": "2019-10-15T21:07:00.000Z" + "SpotPrice": "0.467600", + "Timestamp": "2024-05-16T08:02:44.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.483900", - "Timestamp": "2019-10-15T21:06:59.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.913400", + "Timestamp": "2024-05-16T08:02:44.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.483900", - "Timestamp": "2019-10-15T21:06:59.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.908400", + "Timestamp": "2024-05-16T08:02:44.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.483900", - "Timestamp": "2019-10-15T21:06:59.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.783400", + "Timestamp": "2024-05-16T08:02:44.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.023300", - "Timestamp": "2019-10-15T21:06:58.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.378000", + "Timestamp": "2024-05-16T08:02:44.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.023300", - "Timestamp": "2019-10-15T21:06:58.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.373000", + "Timestamp": "2024-05-16T08:02:44.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.023300", - "Timestamp": "2019-10-15T21:06:58.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.248000", + "Timestamp": "2024-05-16T08:02:44.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.248400", - "Timestamp": "2019-10-15T21:06:58.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.119500", + "Timestamp": "2024-05-16T08:02:44.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.248400", - "Timestamp": "2019-10-15T21:06:58.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.114500", + "Timestamp": "2024-05-16T08:02:44.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.248400", - "Timestamp": "2019-10-15T21:06:58.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.989500", + "Timestamp": "2024-05-16T08:02:44.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.019400", - "Timestamp": "2019-10-15T21:06:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.740100", + "Timestamp": "2024-05-16T08:02:44.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.019400", - "Timestamp": "2019-10-15T21:06:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.735100", + "Timestamp": "2024-05-16T08:02:44.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.019400", - "Timestamp": "2019-10-15T21:06:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.610100", + "Timestamp": "2024-05-16T08:02:44.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.235500", - "Timestamp": "2019-10-15T21:06:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.324200", + "Timestamp": "2024-05-16T08:02:44.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.235500", - "Timestamp": "2019-10-15T21:06:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.319200", + "Timestamp": "2024-05-16T08:02:44.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.235500", - "Timestamp": "2019-10-15T21:06:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.194200", + "Timestamp": "2024-05-16T08:02:44.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t2.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.031900", - "Timestamp": "2019-10-15T21:06:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.945900", + "Timestamp": "2024-05-16T08:02:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t2.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.031900", - "Timestamp": "2019-10-15T21:06:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.940900", + "Timestamp": "2024-05-16T08:02:43.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t2.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.031900", - "Timestamp": "2019-10-15T21:06:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.815900", + "Timestamp": "2024-05-16T08:02:43.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.993600", - "Timestamp": "2019-10-15T21:06:44.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.338800", + "Timestamp": "2024-05-16T08:02:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.993600", - "Timestamp": "2019-10-15T21:06:44.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.333400", + "Timestamp": "2024-05-16T08:02:43.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.993600", - "Timestamp": "2019-10-15T21:06:44.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.333800", + "Timestamp": "2024-05-16T08:02:43.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.981300", - "Timestamp": "2019-10-15T21:06:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.328400", + "Timestamp": "2024-05-16T08:02:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.981300", - "Timestamp": "2019-10-15T21:06:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.208800", + "Timestamp": "2024-05-16T08:02:43.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.981300", - "Timestamp": "2019-10-15T21:06:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.203400", + "Timestamp": "2024-05-16T08:02:43.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.503200", - "Timestamp": "2019-10-15T21:06:34.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.981000", + "Timestamp": "2024-05-16T08:02:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.503200", - "Timestamp": "2019-10-15T21:06:34.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.976000", + "Timestamp": "2024-05-16T08:02:43.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.503200", - "Timestamp": "2019-10-15T21:06:34.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.851000", + "Timestamp": "2024-05-16T08:02:43.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.271700", - "Timestamp": "2019-10-15T21:06:31.000Z" + "SpotPrice": "0.900400", + "Timestamp": "2024-05-16T08:02:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.271700", - "Timestamp": "2019-10-15T21:06:31.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.895400", + "Timestamp": "2024-05-16T08:02:43.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.770400", + "Timestamp": "2024-05-16T08:02:43.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.271700", - "Timestamp": "2019-10-15T21:06:31.000Z" + "SpotPrice": "0.140000", + "Timestamp": "2024-05-16T08:02:43.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.241700", - "Timestamp": "2019-10-15T21:06:31.000Z" + "SpotPrice": "0.136300", + "Timestamp": "2024-05-16T08:02:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.241700", - "Timestamp": "2019-10-15T21:06:31.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080000", + "Timestamp": "2024-05-16T08:02:43.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.356500", + "Timestamp": "2024-05-16T08:02:43.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.241700", - "Timestamp": "2019-10-15T21:06:31.000Z" + "SpotPrice": "0.326500", + "Timestamp": "2024-05-16T08:02:43.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.141700", - "Timestamp": "2019-10-15T21:06:31.000Z" + "SpotPrice": "0.226500", + "Timestamp": "2024-05-16T08:02:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.141700", - "Timestamp": "2019-10-15T21:06:31.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.473600", + "Timestamp": "2024-05-16T08:02:43.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.468600", + "Timestamp": "2024-05-16T08:02:43.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.141700", - "Timestamp": "2019-10-15T21:06:31.000Z" + "SpotPrice": "0.343600", + "Timestamp": "2024-05-16T08:02:43.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.696600", - "Timestamp": "2019-10-15T21:06:29.000Z" + "SpotPrice": "0.861100", + "Timestamp": "2024-05-16T08:02:42.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.696600", - "Timestamp": "2019-10-15T21:06:29.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.856100", + "Timestamp": "2024-05-16T08:02:42.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.696600", - "Timestamp": "2019-10-15T21:06:29.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.731100", + "Timestamp": "2024-05-16T08:02:42.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.696600", - "Timestamp": "2019-10-15T21:06:29.000Z" + "SpotPrice": "0.672100", + "Timestamp": "2024-05-16T08:02:42.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.666600", - "Timestamp": "2019-10-15T21:06:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.705500", + "Timestamp": "2024-05-16T08:02:42.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.666600", - "Timestamp": "2019-10-15T21:06:29.000Z" + "SpotPrice": "0.667100", + "Timestamp": "2024-05-16T08:02:42.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.666600", - "Timestamp": "2019-10-15T21:06:29.000Z" + "SpotPrice": "0.700500", + "Timestamp": "2024-05-16T08:02:42.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.666600", - "Timestamp": "2019-10-15T21:06:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.542100", + "Timestamp": "2024-05-16T08:02:42.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.566600", - "Timestamp": "2019-10-15T21:06:29.000Z" + "SpotPrice": "0.575500", + "Timestamp": "2024-05-16T08:02:42.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.566600", - "Timestamp": "2019-10-15T21:06:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.821800", + "Timestamp": "2024-05-16T08:02:42.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.566600", - "Timestamp": "2019-10-15T21:06:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.791800", + "Timestamp": "2024-05-16T08:02:42.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "inf2.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.566600", - "Timestamp": "2019-10-15T21:06:29.000Z" + "SpotPrice": "2.691800", + "Timestamp": "2024-05-16T08:02:42.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.303600", - "Timestamp": "2019-10-15T21:06:27.000Z" + "SpotPrice": "3.707800", + "Timestamp": "2024-05-16T08:02:42.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.303600", - "Timestamp": "2019-10-15T21:06:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.702800", + "Timestamp": "2024-05-16T08:02:42.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.577800", + "Timestamp": "2024-05-16T08:02:42.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.303600", - "Timestamp": "2019-10-15T21:06:27.000Z" + "SpotPrice": "0.452200", + "Timestamp": "2024-05-16T08:02:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.273600", - "Timestamp": "2019-10-15T21:06:27.000Z" + "SpotPrice": "0.447200", + "Timestamp": "2024-05-16T08:02:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.273600", - "Timestamp": "2019-10-15T21:06:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.322200", + "Timestamp": "2024-05-16T08:02:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.273600", - "Timestamp": "2019-10-15T21:06:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.254900", + "Timestamp": "2024-05-16T08:02:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.173600", - "Timestamp": "2019-10-15T21:06:27.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.016100", + "Timestamp": "2024-05-16T08:02:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.173600", - "Timestamp": "2019-10-15T21:06:27.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.011100", + "Timestamp": "2024-05-16T08:02:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4dn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.173600", - "Timestamp": "2019-10-15T21:06:27.000Z" + "SpotPrice": "3.886100", + "Timestamp": "2024-05-16T08:02:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r4.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.073900", - "Timestamp": "2019-10-15T21:06:11.000Z" + "SpotPrice": "1.094000", + "Timestamp": "2024-05-16T08:02:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.073900", - "Timestamp": "2019-10-15T21:06:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.064000", + "Timestamp": "2024-05-16T08:02:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.073900", - "Timestamp": "2019-10-15T21:06:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.964000", + "Timestamp": "2024-05-16T08:02:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t2.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.113900", - "Timestamp": "2019-10-15T21:06:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.837700", + "Timestamp": "2024-05-16T08:02:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.113900", - "Timestamp": "2019-10-15T21:06:11.000Z" + "SpotPrice": "1.807700", + "Timestamp": "2024-05-16T08:02:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t2.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.113900", - "Timestamp": "2019-10-15T21:06:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.707700", + "Timestamp": "2024-05-16T08:02:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t2.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.013900", - "Timestamp": "2019-10-15T21:06:11.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.288300", + "Timestamp": "2024-05-16T08:02:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t2.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.013900", - "Timestamp": "2019-10-15T21:06:11.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.283300", + "Timestamp": "2024-05-16T08:02:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.013900", - "Timestamp": "2019-10-15T21:06:11.000Z" + "SpotPrice": "0.158300", + "Timestamp": "2024-05-16T08:02:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.265200", - "Timestamp": "2019-10-15T21:06:10.000Z" + "SpotPrice": "2.642300", + "Timestamp": "2024-05-16T08:02:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.265200", - "Timestamp": "2019-10-15T21:06:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.612300", + "Timestamp": "2024-05-16T08:02:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.265200", - "Timestamp": "2019-10-15T21:06:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.512300", + "Timestamp": "2024-05-16T08:02:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.235200", - "Timestamp": "2019-10-15T21:06:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.177600", + "Timestamp": "2024-05-16T08:02:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.235200", - "Timestamp": "2019-10-15T21:06:10.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.621500", + "Timestamp": "2024-05-16T08:02:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.235200", - "Timestamp": "2019-10-15T21:06:10.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.129400", + "Timestamp": "2024-05-16T08:02:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.135200", - "Timestamp": "2019-10-15T21:06:10.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.196700", + "Timestamp": "2024-05-16T08:02:40.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.135200", - "Timestamp": "2019-10-15T21:06:10.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.191700", + "Timestamp": "2024-05-16T08:02:40.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5n.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.135200", - "Timestamp": "2019-10-15T21:06:10.000Z" + "SpotPrice": "1.066700", + "Timestamp": "2024-05-16T08:02:40.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c1.medium", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.073000", - "Timestamp": "2019-10-15T21:06:01.000Z" + "SpotPrice": "3.892700", + "Timestamp": "2024-05-16T08:02:40.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c1.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.073000", - "Timestamp": "2019-10-15T21:06:01.000Z" + "SpotPrice": "3.882300", + "Timestamp": "2024-05-16T08:02:40.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c1.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.073000", - "Timestamp": "2019-10-15T21:06:01.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.887700", + "Timestamp": "2024-05-16T08:02:40.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c1.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.113000", - "Timestamp": "2019-10-15T21:06:01.000Z" + "SpotPrice": "3.877300", + "Timestamp": "2024-05-16T08:02:40.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c1.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.113000", - "Timestamp": "2019-10-15T21:06:01.000Z" - }, - { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c1.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.113000", - "Timestamp": "2019-10-15T21:06:01.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c1.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.013000", - "Timestamp": "2019-10-15T21:06:01.000Z" - }, - { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c1.medium", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.013000", - "Timestamp": "2019-10-15T21:06:01.000Z" + "SpotPrice": "3.762700", + "Timestamp": "2024-05-16T08:02:40.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c1.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.013000", - "Timestamp": "2019-10-15T21:06:01.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.381600", - "Timestamp": "2019-10-15T21:05:56.000Z" + "SpotPrice": "3.752300", + "Timestamp": "2024-05-16T08:02:40.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.381600", - "Timestamp": "2019-10-15T21:05:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301200", + "Timestamp": "2024-05-16T08:02:40.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.381600", - "Timestamp": "2019-10-15T21:05:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296200", + "Timestamp": "2024-05-16T08:02:40.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c1.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-15T21:05:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171200", + "Timestamp": "2024-05-16T08:02:40.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c1.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-15T21:05:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.783800", + "Timestamp": "2024-05-16T08:02:39.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c1.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-15T21:05:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.778800", + "Timestamp": "2024-05-16T08:02:39.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.496800", - "Timestamp": "2019-10-15T21:05:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.653800", + "Timestamp": "2024-05-16T08:02:39.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.496800", - "Timestamp": "2019-10-15T21:05:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.025500", + "Timestamp": "2024-05-16T08:02:39.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.496800", - "Timestamp": "2019-10-15T21:05:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.995500", + "Timestamp": "2024-05-16T08:02:39.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.097200", - "Timestamp": "2019-10-15T21:03:45.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.895500", + "Timestamp": "2024-05-16T08:02:39.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g4dn.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.097200", - "Timestamp": "2019-10-15T21:03:45.000Z" + "SpotPrice": "3.542500", + "Timestamp": "2024-05-16T08:02:39.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g4dn.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.097200", - "Timestamp": "2019-10-15T21:03:45.000Z" + "SpotPrice": "0.261000", + "Timestamp": "2024-05-16T08:02:38.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5dn.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.503200", - "Timestamp": "2019-10-15T21:03:14.000Z" + "SpotPrice": "0.262600", + "Timestamp": "2024-05-16T08:02:38.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T21:02:21.000Z" + "SpotPrice": "0.463500", + "Timestamp": "2024-05-16T08:02:38.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.167600", - "Timestamp": "2019-10-15T21:02:21.000Z" + "SpotPrice": "0.458500", + "Timestamp": "2024-05-16T08:02:38.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067600", - "Timestamp": "2019-10-15T21:02:21.000Z" + "SpotPrice": "0.333500", + "Timestamp": "2024-05-16T08:02:38.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.479400", - "Timestamp": "2019-10-15T21:01:58.000Z" + "SpotPrice": "0.588100", + "Timestamp": "2024-05-16T08:02:38.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.449400", - "Timestamp": "2019-10-15T21:01:58.000Z" + "SpotPrice": "0.583100", + "Timestamp": "2024-05-16T08:02:38.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.349400", - "Timestamp": "2019-10-15T21:01:58.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "11.277000", - "Timestamp": "2019-10-15T21:01:54.000Z" + "SpotPrice": "0.458100", + "Timestamp": "2024-05-16T08:02:38.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "p3.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "11.247000", - "Timestamp": "2019-10-15T21:01:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.272000", + "Timestamp": "2024-05-16T08:02:38.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "11.147000", - "Timestamp": "2019-10-15T21:01:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.400000", + "Timestamp": "2024-05-16T08:02:38.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t2.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.462100", - "Timestamp": "2019-10-15T21:01:52.000Z" + "SpotPrice": "0.296400", + "Timestamp": "2024-05-16T08:02:37.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t2.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.432100", - "Timestamp": "2019-10-15T21:01:52.000Z" + "SpotPrice": "0.266400", + "Timestamp": "2024-05-16T08:02:37.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t2.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.332100", - "Timestamp": "2019-10-15T21:01:52.000Z" - }, - { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.476700", - "Timestamp": "2019-10-15T21:01:34.000Z" - }, - { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g3.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.446700", - "Timestamp": "2019-10-15T21:01:34.000Z" + "SpotPrice": "0.166400", + "Timestamp": "2024-05-16T08:02:37.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.346700", - "Timestamp": "2019-10-15T21:01:34.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.216200", + "Timestamp": "2024-05-16T08:02:37.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.655400", - "Timestamp": "2019-10-15T21:01:32.000Z" + "SpotPrice": "0.081400", + "Timestamp": "2024-05-16T08:02:37.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.625400", - "Timestamp": "2019-10-15T21:01:32.000Z" + "SpotPrice": "0.077700", + "Timestamp": "2024-05-16T08:02:37.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.525400", - "Timestamp": "2019-10-15T21:01:32.000Z" + "SpotPrice": "0.021400", + "Timestamp": "2024-05-16T08:02:37.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5n.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092200", - "Timestamp": "2019-10-15T20:55:49.000Z" + "SpotPrice": "0.835500", + "Timestamp": "2024-05-16T08:02:36.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5n.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132200", - "Timestamp": "2019-10-15T20:55:49.000Z" + "SpotPrice": "0.830500", + "Timestamp": "2024-05-16T08:02:36.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5n.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032200", - "Timestamp": "2019-10-15T20:55:49.000Z" + "SpotPrice": "0.705500", + "Timestamp": "2024-05-16T08:02:36.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m3.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g3.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.156700", - "Timestamp": "2019-10-15T20:54:54.000Z" + "SpotPrice": "4.817300", + "Timestamp": "2024-05-16T08:02:36.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "7.721300", - "Timestamp": "2019-10-15T20:53:59.000Z" + "SpotPrice": "16.211000", + "Timestamp": "2024-05-16T08:02:36.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.416600", - "Timestamp": "2019-10-15T20:53:43.000Z" + "SpotPrice": "1.145200", + "Timestamp": "2024-05-16T08:02:36.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.386600", - "Timestamp": "2019-10-15T20:53:43.000Z" + "SpotPrice": "1.140200", + "Timestamp": "2024-05-16T08:02:36.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.286600", - "Timestamp": "2019-10-15T20:53:43.000Z" + "SpotPrice": "1.015200", + "Timestamp": "2024-05-16T08:02:36.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "10.727700", - "Timestamp": "2019-10-15T20:53:33.000Z" + "SpotPrice": "1.531200", + "Timestamp": "2024-05-16T08:02:35.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "10.697700", - "Timestamp": "2019-10-15T20:53:33.000Z" + "SpotPrice": "1.526200", + "Timestamp": "2024-05-16T08:02:35.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "10.597700", - "Timestamp": "2019-10-15T20:53:33.000Z" + "SpotPrice": "1.401200", + "Timestamp": "2024-05-16T08:02:35.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.276900", - "Timestamp": "2019-10-15T20:53:30.000Z" + "SpotPrice": "0.139500", + "Timestamp": "2024-05-16T08:02:35.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.246900", - "Timestamp": "2019-10-15T20:53:30.000Z" + "SpotPrice": "0.135500", + "Timestamp": "2024-05-16T08:02:35.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.146900", - "Timestamp": "2019-10-15T20:53:30.000Z" + "SpotPrice": "0.079500", + "Timestamp": "2024-05-16T08:02:35.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.476100", - "Timestamp": "2019-10-15T20:53:04.000Z" + "SpotPrice": "0.117800", + "Timestamp": "2024-05-16T08:02:35.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.446100", - "Timestamp": "2019-10-15T20:53:04.000Z" + "SpotPrice": "0.114100", + "Timestamp": "2024-05-16T08:02:35.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.346100", - "Timestamp": "2019-10-15T20:53:04.000Z" + "SpotPrice": "0.057800", + "Timestamp": "2024-05-16T08:02:35.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.719600", + "Timestamp": "2024-05-16T08:02:35.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.461600", - "Timestamp": "2019-10-15T20:53:00.000Z" + "SpotPrice": "0.213100", + "Timestamp": "2024-05-16T08:02:34.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.431600", - "Timestamp": "2019-10-15T20:53:00.000Z" + "SpotPrice": "0.209100", + "Timestamp": "2024-05-16T08:02:34.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.331600", - "Timestamp": "2019-10-15T20:53:00.000Z" + "SpotPrice": "0.153100", + "Timestamp": "2024-05-16T08:02:34.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.090400", - "Timestamp": "2019-10-15T20:52:57.000Z" + "SpotPrice": "4.789300", + "Timestamp": "2024-05-16T08:02:34.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.995000", - "Timestamp": "2019-10-15T20:52:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.784300", + "Timestamp": "2024-05-16T08:02:34.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.060400", - "Timestamp": "2019-10-15T20:52:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.659300", + "Timestamp": "2024-05-16T08:02:34.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.965000", - "Timestamp": "2019-10-15T20:52:57.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.791600", + "Timestamp": "2024-05-16T08:02:33.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.960400", - "Timestamp": "2019-10-15T20:52:57.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.786600", + "Timestamp": "2024-05-16T08:02:33.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.865000", - "Timestamp": "2019-10-15T20:52:57.000Z" + "SpotPrice": "5.661600", + "Timestamp": "2024-05-16T08:02:33.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091300", - "Timestamp": "2019-10-15T20:52:55.000Z" + "SpotPrice": "1.248100", + "Timestamp": "2024-05-16T08:02:33.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7g.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.131300", - "Timestamp": "2019-10-15T20:52:55.000Z" + "SpotPrice": "1.243100", + "Timestamp": "2024-05-16T08:02:33.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031300", - "Timestamp": "2019-10-15T20:52:55.000Z" + "SpotPrice": "1.118100", + "Timestamp": "2024-05-16T08:02:33.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.655700", - "Timestamp": "2019-10-15T20:52:51.000Z" + "SpotPrice": "2.781500", + "Timestamp": "2024-05-16T08:02:33.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.625700", - "Timestamp": "2019-10-15T20:52:51.000Z" + "SpotPrice": "2.776500", + "Timestamp": "2024-05-16T08:02:33.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.525700", - "Timestamp": "2019-10-15T20:52:51.000Z" + "SpotPrice": "2.651500", + "Timestamp": "2024-05-16T08:02:33.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.322100", + "Timestamp": "2024-05-16T08:02:32.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.9xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.277900", - "Timestamp": "2019-10-15T20:52:47.000Z" + "SpotPrice": "0.950800", + "Timestamp": "2024-05-16T08:02:32.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.9xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.247900", - "Timestamp": "2019-10-15T20:52:47.000Z" + "SpotPrice": "0.920800", + "Timestamp": "2024-05-16T08:02:32.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.9xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.147900", - "Timestamp": "2019-10-15T20:52:47.000Z" + "SpotPrice": "0.820800", + "Timestamp": "2024-05-16T08:02:32.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.871500", - "Timestamp": "2019-10-15T20:45:26.000Z" + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T08:02:32.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.841500", - "Timestamp": "2019-10-15T20:45:26.000Z" + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T08:02:32.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.741500", - "Timestamp": "2019-10-15T20:45:26.000Z" + "SpotPrice": "0.050800", + "Timestamp": "2024-05-16T08:02:32.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m4.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.389400", - "Timestamp": "2019-10-15T20:45:09.000Z" + "SpotPrice": "0.490300", + "Timestamp": "2024-05-16T08:02:31.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m4.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.359400", - "Timestamp": "2019-10-15T20:45:09.000Z" + "SpotPrice": "0.460300", + "Timestamp": "2024-05-16T08:02:31.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m4.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.259400", - "Timestamp": "2019-10-15T20:45:09.000Z" + "SpotPrice": "0.360300", + "Timestamp": "2024-05-16T08:02:31.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.569700", - "Timestamp": "2019-10-15T20:44:51.000Z" + "SpotPrice": "4.947300", + "Timestamp": "2024-05-16T08:02:31.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.539700", - "Timestamp": "2019-10-15T20:44:51.000Z" + "SpotPrice": "4.942300", + "Timestamp": "2024-05-16T08:02:31.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.439700", - "Timestamp": "2019-10-15T20:44:51.000Z" + "SpotPrice": "4.817300", + "Timestamp": "2024-05-16T08:02:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.356500", - "Timestamp": "2019-10-15T20:44:39.000Z" + "SpotPrice": "0.308400", + "Timestamp": "2024-05-16T08:02:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.133800", - "Timestamp": "2019-10-15T20:44:30.000Z" + "SpotPrice": "0.170300", + "Timestamp": "2024-05-16T08:02:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.173800", - "Timestamp": "2019-10-15T20:44:30.000Z" + "SpotPrice": "0.166600", + "Timestamp": "2024-05-16T08:02:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.073800", - "Timestamp": "2019-10-15T20:44:30.000Z" - }, - { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.474000", - "Timestamp": "2019-10-15T20:37:00.000Z" - }, - { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.444000", - "Timestamp": "2019-10-15T20:37:00.000Z" + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T08:02:31.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.344000", - "Timestamp": "2019-10-15T20:37:00.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.192300", + "Timestamp": "2024-05-16T08:02:30.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.455200", - "Timestamp": "2019-10-15T20:36:55.000Z" + "SpotPrice": "0.180000", + "Timestamp": "2024-05-16T08:02:30.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m3.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.425200", - "Timestamp": "2019-10-15T20:36:55.000Z" + "SpotPrice": "0.220000", + "Timestamp": "2024-05-16T08:02:30.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m3.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.325200", - "Timestamp": "2019-10-15T20:36:55.000Z" + "SpotPrice": "0.120000", + "Timestamp": "2024-05-16T08:02:30.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.262700", + "Timestamp": "2024-05-16T08:02:29.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.274500", - "Timestamp": "2019-10-15T20:36:43.000Z" + "SpotPrice": "0.734300", + "Timestamp": "2024-05-16T08:02:29.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.244500", - "Timestamp": "2019-10-15T20:36:43.000Z" + "SpotPrice": "0.729300", + "Timestamp": "2024-05-16T08:02:29.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.144500", - "Timestamp": "2019-10-15T20:36:43.000Z" + "SpotPrice": "0.604300", + "Timestamp": "2024-05-16T08:02:29.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.large", "ProductDescription": "Windows", - "SpotPrice": "1.352000", - "Timestamp": "2019-10-15T20:36:28.000Z" + "SpotPrice": "0.158000", + "Timestamp": "2024-05-16T08:02:29.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.230400", - "Timestamp": "2019-10-15T20:36:14.000Z" + "SpotPrice": "0.168700", + "Timestamp": "2024-05-16T08:02:27.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gn.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.200400", - "Timestamp": "2019-10-15T20:36:14.000Z" + "SpotPrice": "0.165000", + "Timestamp": "2024-05-16T08:02:27.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.100400", - "Timestamp": "2019-10-15T20:36:14.000Z" + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T08:02:27.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "z1d.6xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.489300", - "Timestamp": "2019-10-15T20:36:13.000Z" + "SpotPrice": "1.059500", + "Timestamp": "2024-05-16T08:02:25.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.187100", + "Timestamp": "2024-05-16T08:02:25.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "z1d.6xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.459300", - "Timestamp": "2019-10-15T20:36:13.000Z" + "SpotPrice": "1.054500", + "Timestamp": "2024-05-16T08:02:25.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.182100", + "Timestamp": "2024-05-16T08:02:25.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "z1d.6xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.359300", - "Timestamp": "2019-10-15T20:36:13.000Z" + "SpotPrice": "0.929500", + "Timestamp": "2024-05-16T08:02:25.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.178500", - "Timestamp": "2019-10-15T20:36:07.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.057100", + "Timestamp": "2024-05-16T08:02:25.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r4.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.941300", - "Timestamp": "2019-10-15T20:33:04.000Z" + "SpotPrice": "0.118000", + "Timestamp": "2024-05-16T08:02:25.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r4.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.911300", - "Timestamp": "2019-10-15T20:33:04.000Z" + "SpotPrice": "0.158000", + "Timestamp": "2024-05-16T08:02:25.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r4.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.811300", - "Timestamp": "2019-10-15T20:33:04.000Z" + "SpotPrice": "0.058000", + "Timestamp": "2024-05-16T08:02:25.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.437200", - "Timestamp": "2019-10-15T20:28:20.000Z" + "SpotPrice": "0.549300", + "Timestamp": "2024-05-16T08:02:25.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.407200", - "Timestamp": "2019-10-15T20:28:20.000Z" + "SpotPrice": "0.519300", + "Timestamp": "2024-05-16T08:02:25.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.307200", - "Timestamp": "2019-10-15T20:28:20.000Z" + "SpotPrice": "0.419300", + "Timestamp": "2024-05-16T08:02:25.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.618900", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.249900", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.285100", - "Timestamp": "2019-10-15T20:28:10.000Z" + "SpotPrice": "4.625800", + "Timestamp": "2024-05-16T08:02:24.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.255100", - "Timestamp": "2019-10-15T20:28:10.000Z" + "SpotPrice": "4.620800", + "Timestamp": "2024-05-16T08:02:24.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.155100", - "Timestamp": "2019-10-15T20:28:10.000Z" + "SpotPrice": "4.495800", + "Timestamp": "2024-05-16T08:02:24.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i2.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.061300", - "Timestamp": "2019-10-15T20:28:08.000Z" + "SpotPrice": "0.858300", + "Timestamp": "2024-05-16T08:02:23.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i2.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.031300", - "Timestamp": "2019-10-15T20:28:08.000Z" + "SpotPrice": "0.828300", + "Timestamp": "2024-05-16T08:02:23.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i2.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.931300", - "Timestamp": "2019-10-15T20:28:08.000Z" + "SpotPrice": "0.728300", + "Timestamp": "2024-05-16T08:02:23.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.152200", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.721900", - "Timestamp": "2019-10-15T20:28:07.000Z" + "SpotPrice": "2.111800", + "Timestamp": "2024-05-16T08:02:22.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.691900", - "Timestamp": "2019-10-15T20:28:07.000Z" + "SpotPrice": "2.106800", + "Timestamp": "2024-05-16T08:02:22.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.591900", - "Timestamp": "2019-10-15T20:28:07.000Z" + "SpotPrice": "1.981800", + "Timestamp": "2024-05-16T08:02:22.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5n.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.012900", - "Timestamp": "2019-10-15T20:25:36.000Z" + "SpotPrice": "8.360100", + "Timestamp": "2024-05-16T08:02:20.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5dn.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.265200", - "Timestamp": "2019-10-15T20:20:12.000Z" + "SpotPrice": "0.118500", + "Timestamp": "2024-05-16T08:02:20.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5dn.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.235200", - "Timestamp": "2019-10-15T20:20:12.000Z" + "SpotPrice": "0.114500", + "Timestamp": "2024-05-16T08:02:20.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5dn.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.135200", - "Timestamp": "2019-10-15T20:20:12.000Z" + "SpotPrice": "0.058500", + "Timestamp": "2024-05-16T08:02:20.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122500", - "Timestamp": "2019-10-15T20:19:47.000Z" + "SpotPrice": "0.127500", + "Timestamp": "2024-05-16T08:02:13.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.162500", - "Timestamp": "2019-10-15T20:19:47.000Z" + "SpotPrice": "0.123500", + "Timestamp": "2024-05-16T08:02:13.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062500", - "Timestamp": "2019-10-15T20:19:47.000Z" + "SpotPrice": "0.067500", + "Timestamp": "2024-05-16T08:02:13.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.104400", + "Timestamp": "2024-05-16T08:02:13.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "inf1.6xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.163500", - "Timestamp": "2019-10-15T20:19:38.000Z" + "SpotPrice": "0.650500", + "Timestamp": "2024-05-16T07:48:40.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "inf1.6xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.203500", - "Timestamp": "2019-10-15T20:19:38.000Z" + "SpotPrice": "0.645500", + "Timestamp": "2024-05-16T07:48:40.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "inf1.6xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.103500", - "Timestamp": "2019-10-15T20:19:38.000Z" + "SpotPrice": "0.520500", + "Timestamp": "2024-05-16T07:48:40.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.128100", - "Timestamp": "2019-10-15T20:19:24.000Z" + "SpotPrice": "0.157100", + "Timestamp": "2024-05-16T07:48:39.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.168100", - "Timestamp": "2019-10-15T20:19:24.000Z" + "SpotPrice": "0.153400", + "Timestamp": "2024-05-16T07:48:39.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.068100", - "Timestamp": "2019-10-15T20:19:24.000Z" + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T07:48:39.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.469900", - "Timestamp": "2019-10-15T20:19:24.000Z" + "SpotPrice": "2.394600", + "Timestamp": "2024-05-16T07:48:38.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.439900", - "Timestamp": "2019-10-15T20:19:24.000Z" + "SpotPrice": "2.389600", + "Timestamp": "2024-05-16T07:48:38.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.339900", - "Timestamp": "2019-10-15T20:19:24.000Z" + "SpotPrice": "2.264600", + "Timestamp": "2024-05-16T07:48:38.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.251500", - "Timestamp": "2019-10-15T20:17:46.000Z" + "SpotPrice": "4.732000", + "Timestamp": "2024-05-16T07:48:37.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.251500", - "Timestamp": "2019-10-15T20:17:46.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.603500", + "Timestamp": "2024-05-16T07:48:37.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.251500", - "Timestamp": "2019-10-15T20:17:46.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.573500", + "Timestamp": "2024-05-16T07:48:37.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.069700", - "Timestamp": "2019-10-15T20:17:18.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.473500", + "Timestamp": "2024-05-16T07:48:37.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.069700", - "Timestamp": "2019-10-15T20:17:18.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.282000", + "Timestamp": "2024-05-16T07:48:36.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.069700", - "Timestamp": "2019-10-15T20:17:18.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.277000", + "Timestamp": "2024-05-16T07:48:36.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.750000", - "Timestamp": "2019-10-15T20:16:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.152000", + "Timestamp": "2024-05-16T07:48:36.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-15T20:16:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.299800", + "Timestamp": "2024-05-16T07:48:36.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-15T20:16:41.000Z" + "SpotPrice": "1.591700", + "Timestamp": "2024-05-16T07:48:35.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-15T20:16:41.000Z" + "SpotPrice": "0.877200", + "Timestamp": "2024-05-16T07:48:35.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.790000", - "Timestamp": "2019-10-15T20:16:41.000Z" + "SpotPrice": "1.586700", + "Timestamp": "2024-05-16T07:48:35.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.307000", - "Timestamp": "2019-10-15T20:16:41.000Z" + "SpotPrice": "0.872200", + "Timestamp": "2024-05-16T07:48:35.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "d2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.307000", - "Timestamp": "2019-10-15T20:16:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.461700", + "Timestamp": "2024-05-16T07:48:35.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.747200", + "Timestamp": "2024-05-16T07:48:35.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.872200", + "Timestamp": "2024-05-16T07:48:30.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.307000", - "Timestamp": "2019-10-15T20:16:41.000Z" + "SpotPrice": "2.867200", + "Timestamp": "2024-05-16T07:48:30.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.690000", - "Timestamp": "2019-10-15T20:16:41.000Z" + "SpotPrice": "2.742200", + "Timestamp": "2024-05-16T07:48:30.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.207000", - "Timestamp": "2019-10-15T20:16:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "f1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "8.201200", + "Timestamp": "2024-05-16T07:48:30.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.207000", - "Timestamp": "2019-10-15T20:16:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "f1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "8.171200", + "Timestamp": "2024-05-16T07:48:30.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "f1.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.207000", - "Timestamp": "2019-10-15T20:16:41.000Z" + "SpotPrice": "8.071200", + "Timestamp": "2024-05-16T07:48:30.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "9.889400", - "Timestamp": "2019-10-15T20:16:16.000Z" + "SpotPrice": "3.315700", + "Timestamp": "2024-05-16T07:48:29.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "9.889400", - "Timestamp": "2019-10-15T20:16:16.000Z" + "SpotPrice": "3.434100", + "Timestamp": "2024-05-16T07:48:29.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5zn.6xlarge", "ProductDescription": "Windows", - "SpotPrice": "9.889400", - "Timestamp": "2019-10-15T20:16:16.000Z" + "SpotPrice": "1.953500", + "Timestamp": "2024-05-16T07:48:28.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.131400", - "Timestamp": "2019-10-15T20:15:57.000Z" + "SpotPrice": "0.195200", + "Timestamp": "2024-05-16T07:48:28.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.131400", - "Timestamp": "2019-10-15T20:15:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.191500", + "Timestamp": "2024-05-16T07:48:28.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.135200", + "Timestamp": "2024-05-16T07:48:28.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.472800", + "Timestamp": "2024-05-16T07:48:28.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i-flex.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.131400", - "Timestamp": "2019-10-15T20:15:57.000Z" + "SpotPrice": "0.483000", + "Timestamp": "2024-05-16T07:48:27.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i-flex.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "4.101400", - "Timestamp": "2019-10-15T20:15:57.000Z" + "SpotPrice": "0.478000", + "Timestamp": "2024-05-16T07:48:27.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1.32xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "4.101400", - "Timestamp": "2019-10-15T20:15:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.353000", + "Timestamp": "2024-05-16T07:48:27.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.997900", + "Timestamp": "2024-05-16T07:48:27.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.metal-48xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "4.101400", - "Timestamp": "2019-10-15T20:15:57.000Z" + "SpotPrice": "3.992900", + "Timestamp": "2024-05-16T07:48:27.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.001400", - "Timestamp": "2019-10-15T20:15:57.000Z" + "SpotPrice": "3.867900", + "Timestamp": "2024-05-16T07:48:27.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.001400", - "Timestamp": "2019-10-15T20:15:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.342600", + "Timestamp": "2024-05-16T07:48:27.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.337600", + "Timestamp": "2024-05-16T07:48:27.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.001400", - "Timestamp": "2019-10-15T20:15:57.000Z" + "SpotPrice": "4.212600", + "Timestamp": "2024-05-16T07:48:27.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.085100", - "Timestamp": "2019-10-15T20:15:39.000Z" + "SpotPrice": "4.360400", + "Timestamp": "2024-05-16T07:48:27.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.085100", - "Timestamp": "2019-10-15T20:15:39.000Z" + "SpotPrice": "4.963500", + "Timestamp": "2024-05-16T07:48:27.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.125100", - "Timestamp": "2019-10-15T20:15:39.000Z" + "SpotPrice": "4.355400", + "Timestamp": "2024-05-16T07:48:27.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.125100", - "Timestamp": "2019-10-15T20:15:39.000Z" + "SpotPrice": "4.958500", + "Timestamp": "2024-05-16T07:48:27.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.025100", - "Timestamp": "2019-10-15T20:15:39.000Z" + "SpotPrice": "4.230400", + "Timestamp": "2024-05-16T07:48:27.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.025100", - "Timestamp": "2019-10-15T20:15:39.000Z" + "SpotPrice": "4.833500", + "Timestamp": "2024-05-16T07:48:27.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.18xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.757200", - "Timestamp": "2019-10-15T20:15:37.000Z" + "SpotPrice": "1.911300", + "Timestamp": "2024-05-16T07:48:27.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.757200", - "Timestamp": "2019-10-15T20:15:37.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.906300", + "Timestamp": "2024-05-16T07:48:27.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.781300", + "Timestamp": "2024-05-16T07:48:27.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "d2.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.757200", - "Timestamp": "2019-10-15T20:15:37.000Z" + "SpotPrice": "1.271000", + "Timestamp": "2024-05-16T07:48:23.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "d2.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.727200", - "Timestamp": "2019-10-15T20:15:37.000Z" + "SpotPrice": "1.241000", + "Timestamp": "2024-05-16T07:48:23.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.727200", - "Timestamp": "2019-10-15T20:15:37.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.141000", + "Timestamp": "2024-05-16T07:48:23.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.727200", - "Timestamp": "2019-10-15T20:15:37.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.355000", + "Timestamp": "2024-05-16T07:48:23.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.627200", - "Timestamp": "2019-10-15T20:15:37.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.258200", + "Timestamp": "2024-05-16T07:48:21.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.627200", - "Timestamp": "2019-10-15T20:15:37.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.228200", + "Timestamp": "2024-05-16T07:48:21.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "inf2.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.627200", - "Timestamp": "2019-10-15T20:15:37.000Z" + "SpotPrice": "5.128200", + "Timestamp": "2024-05-16T07:48:21.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.18xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.835200", - "Timestamp": "2019-10-15T20:15:32.000Z" + "SpotPrice": "4.704700", + "Timestamp": "2024-05-16T07:48:21.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.835200", - "Timestamp": "2019-10-15T20:15:32.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.732100", + "Timestamp": "2024-05-16T07:48:20.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.835200", - "Timestamp": "2019-10-15T20:15:32.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.727100", + "Timestamp": "2024-05-16T07:48:20.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.052700", - "Timestamp": "2019-10-15T20:14:45.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.602100", + "Timestamp": "2024-05-16T07:48:20.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.052700", - "Timestamp": "2019-10-15T20:14:45.000Z" + "SpotPrice": "3.820700", + "Timestamp": "2024-05-16T07:48:20.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.052700", - "Timestamp": "2019-10-15T20:14:45.000Z" + "SpotPrice": "4.610800", + "Timestamp": "2024-05-16T07:48:19.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.052700", - "Timestamp": "2019-10-15T20:14:45.000Z" + "SpotPrice": "7.244400", + "Timestamp": "2024-05-16T07:48:18.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.821000", - "Timestamp": "2019-10-15T20:14:28.000Z" + "SpotPrice": "9.279500", + "Timestamp": "2024-05-16T07:48:16.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.338000", - "Timestamp": "2019-10-15T20:14:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.971100", + "Timestamp": "2024-05-16T07:48:16.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.338000", - "Timestamp": "2019-10-15T20:14:28.000Z" - }, - { - "AvailabilityZone": "us-west-2b", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.338000", - "Timestamp": "2019-10-15T20:14:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.966100", + "Timestamp": "2024-05-16T07:48:16.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-15T20:14:12.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.841100", + "Timestamp": "2024-05-16T07:48:16.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-15T20:14:12.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.608200", + "Timestamp": "2024-05-16T07:48:16.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-15T20:14:12.000Z" + "SpotPrice": "0.292500", + "Timestamp": "2024-05-16T07:48:15.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.106700", - "Timestamp": "2019-10-15T20:14:12.000Z" + "SpotPrice": "0.287500", + "Timestamp": "2024-05-16T07:48:15.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m3.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.106700", - "Timestamp": "2019-10-15T20:14:12.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162500", + "Timestamp": "2024-05-16T07:48:15.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m3.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.106700", - "Timestamp": "2019-10-15T20:14:12.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.908000", + "Timestamp": "2024-05-16T07:48:14.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006700", - "Timestamp": "2019-10-15T20:14:12.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.751200", + "Timestamp": "2024-05-16T07:48:14.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006700", - "Timestamp": "2019-10-15T20:14:12.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.746200", + "Timestamp": "2024-05-16T07:48:14.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006700", - "Timestamp": "2019-10-15T20:14:12.000Z" + "SpotPrice": "0.621200", + "Timestamp": "2024-05-16T07:48:14.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1e.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.794500", - "Timestamp": "2019-10-15T20:11:26.000Z" + "SpotPrice": "11.081600", + "Timestamp": "2024-05-16T07:48:13.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1e.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.764500", - "Timestamp": "2019-10-15T20:11:26.000Z" + "SpotPrice": "11.051600", + "Timestamp": "2024-05-16T07:48:13.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1e.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.664500", - "Timestamp": "2019-10-15T20:11:26.000Z" + "SpotPrice": "10.951600", + "Timestamp": "2024-05-16T07:48:13.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.115900", - "Timestamp": "2019-10-15T20:11:12.000Z" + "SpotPrice": "7.398700", + "Timestamp": "2024-05-16T07:48:12.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "10.704000", - "Timestamp": "2019-10-15T20:11:12.000Z" + "SpotPrice": "7.168200", + "Timestamp": "2024-05-16T07:48:12.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "10.704000", - "Timestamp": "2019-10-15T20:11:12.000Z" + "SpotPrice": "6.856400", + "Timestamp": "2024-05-16T07:48:12.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m4.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "10.704000", - "Timestamp": "2019-10-15T20:11:12.000Z" + "SpotPrice": "4.562900", + "Timestamp": "2024-05-16T07:48:11.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.420800", - "Timestamp": "2019-10-15T20:11:04.000Z" + "SpotPrice": "1.546900", + "Timestamp": "2024-05-16T07:48:11.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.390800", - "Timestamp": "2019-10-15T20:11:04.000Z" + "SpotPrice": "1.541900", + "Timestamp": "2024-05-16T07:48:11.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.290800", - "Timestamp": "2019-10-15T20:11:04.000Z" + "SpotPrice": "1.416900", + "Timestamp": "2024-05-16T07:48:11.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.829900", - "Timestamp": "2019-10-15T20:11:03.000Z" + "SpotPrice": "1.140200", + "Timestamp": "2024-05-16T07:48:11.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "6.418000", - "Timestamp": "2019-10-15T20:11:03.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.135200", + "Timestamp": "2024-05-16T07:48:11.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "6.418000", - "Timestamp": "2019-10-15T20:11:03.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.010200", + "Timestamp": "2024-05-16T07:48:11.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "6.418000", - "Timestamp": "2019-10-15T20:11:03.000Z" + "SpotPrice": "0.323200", + "Timestamp": "2024-05-16T07:48:11.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.799900", - "Timestamp": "2019-10-15T20:11:03.000Z" + "SpotPrice": "0.318200", + "Timestamp": "2024-05-16T07:48:11.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "6.388000", - "Timestamp": "2019-10-15T20:11:03.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.193200", + "Timestamp": "2024-05-16T07:48:11.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "6.388000", - "Timestamp": "2019-10-15T20:11:03.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440800", + "Timestamp": "2024-05-16T07:48:11.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.946900", + "Timestamp": "2024-05-16T07:48:10.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "6.388000", - "Timestamp": "2019-10-15T20:11:03.000Z" + "SpotPrice": "0.941900", + "Timestamp": "2024-05-16T07:48:10.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.699900", - "Timestamp": "2019-10-15T20:11:03.000Z" + "SpotPrice": "0.816900", + "Timestamp": "2024-05-16T07:48:10.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "6.288000", - "Timestamp": "2019-10-15T20:11:03.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.491200", + "Timestamp": "2024-05-16T07:48:09.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "6.288000", - "Timestamp": "2019-10-15T20:11:03.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.461200", + "Timestamp": "2024-05-16T07:48:09.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1e.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "6.288000", - "Timestamp": "2019-10-15T20:11:03.000Z" + "SpotPrice": "1.361200", + "Timestamp": "2024-05-16T07:48:09.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.447500", - "Timestamp": "2019-10-15T20:10:59.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.559600", + "Timestamp": "2024-05-16T07:48:09.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.417500", - "Timestamp": "2019-10-15T20:10:59.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.586100", + "Timestamp": "2024-05-16T07:48:08.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.317500", - "Timestamp": "2019-10-15T20:10:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.168200", + "Timestamp": "2024-05-16T07:48:08.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.038600", - "Timestamp": "2019-10-15T20:08:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.064100", + "Timestamp": "2024-05-16T07:48:08.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093800", - "Timestamp": "2019-10-15T20:08:22.000Z" + "SpotPrice": "2.152100", + "Timestamp": "2024-05-16T07:48:08.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133800", - "Timestamp": "2019-10-15T20:08:22.000Z" + "SpotPrice": "2.059100", + "Timestamp": "2024-05-16T07:48:08.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.147100", + "Timestamp": "2024-05-16T07:48:08.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033800", - "Timestamp": "2019-10-15T20:08:22.000Z" + "SpotPrice": "1.934100", + "Timestamp": "2024-05-16T07:48:08.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.752600", - "Timestamp": "2019-10-15T20:07:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.022100", + "Timestamp": "2024-05-16T07:48:08.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.722600", - "Timestamp": "2019-10-15T20:07:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.886800", + "Timestamp": "2024-05-16T07:48:08.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.622600", - "Timestamp": "2019-10-15T20:07:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.350800", + "Timestamp": "2024-05-16T07:48:08.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.286300", - "Timestamp": "2019-10-15T20:03:24.000Z" + "SpotPrice": "4.224600", + "Timestamp": "2024-05-16T07:48:07.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iezn.6xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.436200", - "Timestamp": "2019-10-15T20:02:48.000Z" + "SpotPrice": "3.013100", + "Timestamp": "2024-05-16T07:48:06.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.880800", + "Timestamp": "2024-05-16T07:48:06.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.465300", - "Timestamp": "2019-10-15T20:02:41.000Z" + "SpotPrice": "1.698500", + "Timestamp": "2024-05-16T07:48:06.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.435300", - "Timestamp": "2019-10-15T20:02:41.000Z" + "SpotPrice": "1.693500", + "Timestamp": "2024-05-16T07:48:06.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.335300", - "Timestamp": "2019-10-15T20:02:41.000Z" + "SpotPrice": "1.568500", + "Timestamp": "2024-05-16T07:48:06.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4ad.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.829900", - "Timestamp": "2019-10-15T20:02:15.000Z" + "SpotPrice": "0.591800", + "Timestamp": "2024-05-16T07:48:06.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4ad.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.799900", - "Timestamp": "2019-10-15T20:02:15.000Z" + "SpotPrice": "0.586800", + "Timestamp": "2024-05-16T07:48:06.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4ad.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.699900", - "Timestamp": "2019-10-15T20:02:15.000Z" + "SpotPrice": "0.461800", + "Timestamp": "2024-05-16T07:48:06.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.866200", - "Timestamp": "2019-10-15T19:55:01.000Z" + "SpotPrice": "1.134600", + "Timestamp": "2024-05-16T07:48:06.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.178600", + "Timestamp": "2024-05-16T07:48:06.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.357700", - "Timestamp": "2019-10-15T19:54:35.000Z" + "SpotPrice": "0.555700", + "Timestamp": "2024-05-16T07:48:05.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.397700", - "Timestamp": "2019-10-15T19:54:35.000Z" + "SpotPrice": "0.550700", + "Timestamp": "2024-05-16T07:48:05.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.297700", - "Timestamp": "2019-10-15T19:54:35.000Z" + "SpotPrice": "0.425700", + "Timestamp": "2024-05-16T07:48:05.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.746500", + "Timestamp": "2024-05-16T07:48:05.000Z" + }, + { + "AvailabilityZone": "us-east-1e", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.289300", + "Timestamp": "2024-05-16T07:48:05.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.166500", - "Timestamp": "2019-10-15T19:54:23.000Z" + "SpotPrice": "3.657100", + "Timestamp": "2024-05-16T07:48:04.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.136500", - "Timestamp": "2019-10-15T19:54:23.000Z" + "SpotPrice": "3.652100", + "Timestamp": "2024-05-16T07:48:04.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.036500", - "Timestamp": "2019-10-15T19:54:23.000Z" + "SpotPrice": "3.527100", + "Timestamp": "2024-05-16T07:48:04.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.235800", - "Timestamp": "2019-10-15T19:51:59.000Z" + "SpotPrice": "3.465900", + "Timestamp": "2024-05-16T07:48:04.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.600200", + "Timestamp": "2024-05-16T07:48:04.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.421800", - "Timestamp": "2019-10-15T19:51:30.000Z" + "SpotPrice": "1.067600", + "Timestamp": "2024-05-16T07:48:03.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.391800", - "Timestamp": "2019-10-15T19:51:30.000Z" + "SpotPrice": "1.062600", + "Timestamp": "2024-05-16T07:48:03.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.291800", - "Timestamp": "2019-10-15T19:51:30.000Z" + "SpotPrice": "0.937600", + "Timestamp": "2024-05-16T07:48:03.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.394800", + "Timestamp": "2024-05-16T07:48:03.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.369200", - "Timestamp": "2019-10-15T19:46:39.000Z" + "SpotPrice": "5.405500", + "Timestamp": "2024-05-16T07:48:03.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.409200", - "Timestamp": "2019-10-15T19:46:39.000Z" + "SpotPrice": "5.400500", + "Timestamp": "2024-05-16T07:48:03.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.309200", - "Timestamp": "2019-10-15T19:46:39.000Z" + "SpotPrice": "5.275500", + "Timestamp": "2024-05-16T07:48:03.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "15.589800", + "Timestamp": "2024-05-16T07:48:02.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.3xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.725900", - "Timestamp": "2019-10-15T19:46:24.000Z" + "SpotPrice": "0.769900", + "Timestamp": "2024-05-16T07:48:01.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.3xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.695900", - "Timestamp": "2019-10-15T19:46:24.000Z" + "SpotPrice": "0.764900", + "Timestamp": "2024-05-16T07:48:01.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.3xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.595900", - "Timestamp": "2019-10-15T19:46:24.000Z" + "SpotPrice": "0.639900", + "Timestamp": "2024-05-16T07:48:01.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5zn.6xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.673300", - "Timestamp": "2019-10-15T19:46:14.000Z" + "SpotPrice": "1.222900", + "Timestamp": "2024-05-16T07:48:01.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5zn.6xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.643300", - "Timestamp": "2019-10-15T19:46:14.000Z" + "SpotPrice": "1.217900", + "Timestamp": "2024-05-16T07:48:01.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5zn.6xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.543300", - "Timestamp": "2019-10-15T19:46:14.000Z" + "SpotPrice": "1.092900", + "Timestamp": "2024-05-16T07:48:01.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.344400", - "Timestamp": "2019-10-15T19:45:56.000Z" + "SpotPrice": "0.485200", + "Timestamp": "2024-05-16T07:48:00.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.314400", - "Timestamp": "2019-10-15T19:45:56.000Z" + "SpotPrice": "0.480200", + "Timestamp": "2024-05-16T07:48:00.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.214400", - "Timestamp": "2019-10-15T19:45:56.000Z" + "SpotPrice": "0.355200", + "Timestamp": "2024-05-16T07:48:00.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.128600", - "Timestamp": "2019-10-15T19:45:53.000Z" + "SpotPrice": "0.477200", + "Timestamp": "2024-05-16T07:48:00.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m4.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.168600", - "Timestamp": "2019-10-15T19:45:53.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.539500", + "Timestamp": "2024-05-16T07:48:00.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.068600", - "Timestamp": "2019-10-15T19:45:53.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.472200", + "Timestamp": "2024-05-16T07:48:00.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094700", - "Timestamp": "2019-10-15T19:45:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.534500", + "Timestamp": "2024-05-16T07:48:00.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5d.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134700", - "Timestamp": "2019-10-15T19:45:51.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.347200", + "Timestamp": "2024-05-16T07:48:00.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034700", - "Timestamp": "2019-10-15T19:45:51.000Z" + "SpotPrice": "0.409500", + "Timestamp": "2024-05-16T07:48:00.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.861200", + "Timestamp": "2024-05-16T07:48:00.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.266600", - "Timestamp": "2019-10-15T19:38:22.000Z" + "SpotPrice": "1.722400", + "Timestamp": "2024-05-16T07:48:00.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.236600", - "Timestamp": "2019-10-15T19:38:22.000Z" + "SpotPrice": "1.717400", + "Timestamp": "2024-05-16T07:48:00.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.136600", - "Timestamp": "2019-10-15T19:38:22.000Z" + "SpotPrice": "1.592400", + "Timestamp": "2024-05-16T07:48:00.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.343900", - "Timestamp": "2019-10-15T19:37:48.000Z" + "SpotPrice": "0.673200", + "Timestamp": "2024-05-16T07:48:00.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.324100", - "Timestamp": "2019-10-15T19:37:41.000Z" + "SpotPrice": "0.891400", + "Timestamp": "2024-05-16T07:48:00.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.457200", - "Timestamp": "2019-10-15T19:37:33.000Z" + "SpotPrice": "0.366400", + "Timestamp": "2024-05-16T07:47:59.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7gd.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.427200", - "Timestamp": "2019-10-15T19:37:33.000Z" + "SpotPrice": "0.361400", + "Timestamp": "2024-05-16T07:47:59.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.327200", - "Timestamp": "2019-10-15T19:37:33.000Z" + "SpotPrice": "0.236400", + "Timestamp": "2024-05-16T07:47:59.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.131900", - "Timestamp": "2019-10-15T19:37:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.084300", + "Timestamp": "2024-05-16T07:47:59.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c4.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.171900", - "Timestamp": "2019-10-15T19:37:29.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.331600", + "Timestamp": "2024-05-16T07:47:59.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.071900", - "Timestamp": "2019-10-15T19:37:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.041400", + "Timestamp": "2024-05-16T07:47:59.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.094100", + "Timestamp": "2024-05-16T07:47:59.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6gd.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.320100", - "Timestamp": "2019-10-15T19:37:21.000Z" + "SpotPrice": "1.742600", + "Timestamp": "2024-05-16T07:47:59.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6gd.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.290100", - "Timestamp": "2019-10-15T19:37:21.000Z" + "SpotPrice": "1.737600", + "Timestamp": "2024-05-16T07:47:59.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.190100", - "Timestamp": "2019-10-15T19:37:21.000Z" + "SpotPrice": "1.612600", + "Timestamp": "2024-05-16T07:47:59.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "g4dn.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.218000", - "Timestamp": "2019-10-15T19:30:08.000Z" + "SpotPrice": "3.742600", + "Timestamp": "2024-05-16T07:47:58.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.599400", + "Timestamp": "2024-05-16T07:47:58.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132900", - "Timestamp": "2019-10-15T19:29:55.000Z" + "SpotPrice": "0.231400", + "Timestamp": "2024-05-16T07:47:58.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172900", - "Timestamp": "2019-10-15T19:29:55.000Z" + "SpotPrice": "0.227700", + "Timestamp": "2024-05-16T07:47:58.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072900", - "Timestamp": "2019-10-15T19:29:55.000Z" + "SpotPrice": "0.171400", + "Timestamp": "2024-05-16T07:47:58.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.165000", - "Timestamp": "2019-10-15T19:29:41.000Z" + "SpotPrice": "3.883200", + "Timestamp": "2024-05-16T07:47:58.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.205000", - "Timestamp": "2019-10-15T19:29:41.000Z" + "SpotPrice": "3.878200", + "Timestamp": "2024-05-16T07:47:58.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.105000", - "Timestamp": "2019-10-15T19:29:41.000Z" + "SpotPrice": "3.753200", + "Timestamp": "2024-05-16T07:47:58.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.554100", + "Timestamp": "2024-05-16T07:47:57.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.986200", - "Timestamp": "2019-10-15T19:29:41.000Z" + "SpotPrice": "1.039400", + "Timestamp": "2024-05-16T07:47:57.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.956200", - "Timestamp": "2019-10-15T19:29:41.000Z" + "SpotPrice": "1.034400", + "Timestamp": "2024-05-16T07:47:57.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.856200", - "Timestamp": "2019-10-15T19:29:41.000Z" + "SpotPrice": "0.909400", + "Timestamp": "2024-05-16T07:47:57.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.235700", + "Timestamp": "2024-05-16T07:47:57.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.166900", - "Timestamp": "2019-10-15T19:29:38.000Z" + "SpotPrice": "2.403800", + "Timestamp": "2024-05-16T07:47:57.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.136900", - "Timestamp": "2019-10-15T19:29:38.000Z" + "SpotPrice": "2.398800", + "Timestamp": "2024-05-16T07:47:57.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.036900", - "Timestamp": "2019-10-15T19:29:38.000Z" + "SpotPrice": "2.273800", + "Timestamp": "2024-05-16T07:47:57.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.702900", - "Timestamp": "2019-10-15T19:29:38.000Z" + "SpotPrice": "1.677900", + "Timestamp": "2024-05-16T07:47:57.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.672900", - "Timestamp": "2019-10-15T19:29:38.000Z" + "SpotPrice": "1.672900", + "Timestamp": "2024-05-16T07:47:57.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.572900", - "Timestamp": "2019-10-15T19:29:38.000Z" + "SpotPrice": "1.547900", + "Timestamp": "2024-05-16T07:47:57.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.142700", - "Timestamp": "2019-10-15T19:29:15.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.009600", + "Timestamp": "2024-05-16T07:47:57.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.182700", - "Timestamp": "2019-10-15T19:29:15.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.101400", + "Timestamp": "2024-05-16T07:47:56.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.082700", - "Timestamp": "2019-10-15T19:29:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.164000", + "Timestamp": "2024-05-16T07:47:56.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5n.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.696600", - "Timestamp": "2019-10-15T19:27:50.000Z" + "SpotPrice": "1.258600", + "Timestamp": "2024-05-16T07:47:56.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5n.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.666600", - "Timestamp": "2019-10-15T19:27:50.000Z" + "SpotPrice": "1.253600", + "Timestamp": "2024-05-16T07:47:56.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5n.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.566600", - "Timestamp": "2019-10-15T19:27:50.000Z" + "SpotPrice": "1.128600", + "Timestamp": "2024-05-16T07:47:56.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.643800", - "Timestamp": "2019-10-15T19:21:37.000Z" + "SpotPrice": "0.278000", + "Timestamp": "2024-05-16T07:47:56.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.271700", - "Timestamp": "2019-10-15T19:21:22.000Z" + "SpotPrice": "0.872800", + "Timestamp": "2024-05-16T07:47:56.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.241700", - "Timestamp": "2019-10-15T19:21:22.000Z" + "SpotPrice": "0.867800", + "Timestamp": "2024-05-16T07:47:56.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.141700", - "Timestamp": "2019-10-15T19:21:22.000Z" + "SpotPrice": "0.742800", + "Timestamp": "2024-05-16T07:47:56.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.metal-32xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.311400", - "Timestamp": "2019-10-15T19:21:16.000Z" + "SpotPrice": "5.234300", + "Timestamp": "2024-05-16T07:47:56.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.metal-32xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.281400", - "Timestamp": "2019-10-15T19:21:16.000Z" + "SpotPrice": "5.229300", + "Timestamp": "2024-05-16T07:47:56.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.metal-32xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.181400", - "Timestamp": "2019-10-15T19:21:16.000Z" + "SpotPrice": "5.104300", + "Timestamp": "2024-05-16T07:47:56.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.218500", - "Timestamp": "2019-10-15T19:21:07.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.937200", + "Timestamp": "2024-05-16T07:47:55.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.811000", - "Timestamp": "2019-10-15T19:21:07.000Z" + "SpotPrice": "1.062000", + "Timestamp": "2024-05-16T07:47:55.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.781000", - "Timestamp": "2019-10-15T19:21:07.000Z" + "SpotPrice": "0.932200", + "Timestamp": "2024-05-16T07:47:55.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.681000", - "Timestamp": "2019-10-15T19:21:07.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.057000", + "Timestamp": "2024-05-16T07:47:55.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.891300", - "Timestamp": "2019-10-15T19:21:01.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.807200", + "Timestamp": "2024-05-16T07:47:55.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.861300", - "Timestamp": "2019-10-15T19:21:01.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.932000", + "Timestamp": "2024-05-16T07:47:55.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.761300", - "Timestamp": "2019-10-15T19:21:01.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.152000", + "Timestamp": "2024-05-16T07:47:55.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.277700", - "Timestamp": "2019-10-15T19:20:52.000Z" + "SpotPrice": "0.735800", + "Timestamp": "2024-05-16T07:47:54.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.247700", - "Timestamp": "2019-10-15T19:20:52.000Z" + "SpotPrice": "0.730800", + "Timestamp": "2024-05-16T07:47:54.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.147700", - "Timestamp": "2019-10-15T19:20:52.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.008000", - "Timestamp": "2019-10-15T19:16:11.000Z" + "SpotPrice": "0.605800", + "Timestamp": "2024-05-16T07:47:54.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.008000", - "Timestamp": "2019-10-15T19:16:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.188700", + "Timestamp": "2024-05-16T07:47:54.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.008000", - "Timestamp": "2019-10-15T19:16:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.183700", + "Timestamp": "2024-05-16T07:47:54.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.176000", - "Timestamp": "2019-10-15T19:15:12.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.058700", + "Timestamp": "2024-05-16T07:47:54.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r3.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.176000", - "Timestamp": "2019-10-15T19:15:12.000Z" + "SpotPrice": "0.466200", + "Timestamp": "2024-05-16T07:47:54.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r3.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.176000", - "Timestamp": "2019-10-15T19:15:12.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.146000", - "Timestamp": "2019-10-15T19:15:12.000Z" + "SpotPrice": "0.476800", + "Timestamp": "2024-05-16T07:47:54.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r3.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.146000", - "Timestamp": "2019-10-15T19:15:12.000Z" + "SpotPrice": "0.436200", + "Timestamp": "2024-05-16T07:47:54.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r3.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.146000", - "Timestamp": "2019-10-15T19:15:12.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.046000", - "Timestamp": "2019-10-15T19:15:12.000Z" + "SpotPrice": "0.446800", + "Timestamp": "2024-05-16T07:47:54.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r3.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.046000", - "Timestamp": "2019-10-15T19:15:12.000Z" + "SpotPrice": "0.336200", + "Timestamp": "2024-05-16T07:47:54.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r3.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.046000", - "Timestamp": "2019-10-15T19:15:12.000Z" - }, - { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.473600", - "Timestamp": "2019-10-15T19:14:59.000Z" + "SpotPrice": "0.346800", + "Timestamp": "2024-05-16T07:47:54.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1e.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3en.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.473600", - "Timestamp": "2019-10-15T19:14:59.000Z" - }, - { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.131600", - "Timestamp": "2019-10-15T19:13:59.000Z" + "SpotPrice": "3.833300", + "Timestamp": "2024-05-16T07:47:54.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1e.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.131600", - "Timestamp": "2019-10-15T19:13:59.000Z" + "SpotPrice": "0.133900", + "Timestamp": "2024-05-16T07:47:54.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1e.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.101600", - "Timestamp": "2019-10-15T19:13:59.000Z" + "SpotPrice": "0.130200", + "Timestamp": "2024-05-16T07:47:54.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.101600", - "Timestamp": "2019-10-15T19:13:59.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073900", + "Timestamp": "2024-05-16T07:47:54.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.001600", - "Timestamp": "2019-10-15T19:13:59.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.large", + "ProductDescription": "Windows", + "SpotPrice": "0.168800", + "Timestamp": "2024-05-16T07:47:54.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.001600", - "Timestamp": "2019-10-15T19:13:59.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.148100", + "Timestamp": "2024-05-16T07:47:53.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.721800", - "Timestamp": "2019-10-15T19:13:24.000Z" + "SpotPrice": "3.654700", + "Timestamp": "2024-05-16T07:47:53.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.691800", - "Timestamp": "2019-10-15T19:13:24.000Z" + "SpotPrice": "3.649700", + "Timestamp": "2024-05-16T07:47:53.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.591800", - "Timestamp": "2019-10-15T19:13:24.000Z" + "SpotPrice": "3.524700", + "Timestamp": "2024-05-16T07:47:53.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.156500", + "Timestamp": "2024-05-16T07:47:53.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "i2.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.403600", - "Timestamp": "2019-10-15T19:13:22.000Z" + "SpotPrice": "1.433200", + "Timestamp": "2024-05-16T07:47:53.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i2.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.373600", - "Timestamp": "2019-10-15T19:13:22.000Z" + "SpotPrice": "1.403200", + "Timestamp": "2024-05-16T07:47:53.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i2.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.273600", - "Timestamp": "2019-10-15T19:13:22.000Z" + "SpotPrice": "1.303200", + "Timestamp": "2024-05-16T07:47:53.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.128000", - "Timestamp": "2019-10-15T19:13:18.000Z" + "SpotPrice": "3.294800", + "Timestamp": "2024-05-16T07:47:52.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.168000", - "Timestamp": "2019-10-15T19:13:18.000Z" + "SpotPrice": "3.289800", + "Timestamp": "2024-05-16T07:47:52.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.068000", - "Timestamp": "2019-10-15T19:13:18.000Z" + "SpotPrice": "3.164800", + "Timestamp": "2024-05-16T07:47:52.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.106500", - "Timestamp": "2019-10-15T19:12:56.000Z" + "SpotPrice": "5.167700", + "Timestamp": "2024-05-16T07:47:52.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.146500", - "Timestamp": "2019-10-15T19:12:56.000Z" + "SpotPrice": "5.162700", + "Timestamp": "2024-05-16T07:47:52.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.046500", - "Timestamp": "2019-10-15T19:12:56.000Z" + "SpotPrice": "5.037700", + "Timestamp": "2024-05-16T07:47:52.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.170000", - "Timestamp": "2019-10-15T19:12:54.000Z" + "SpotPrice": "3.191000", + "Timestamp": "2024-05-16T07:47:51.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.043900", + "Timestamp": "2024-05-16T07:47:51.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.730700", - "Timestamp": "2019-10-15T19:12:48.000Z" + "SpotPrice": "3.520100", + "Timestamp": "2024-05-16T07:47:51.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.700700", - "Timestamp": "2019-10-15T19:12:48.000Z" + "SpotPrice": "3.515100", + "Timestamp": "2024-05-16T07:47:51.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.600700", - "Timestamp": "2019-10-15T19:12:48.000Z" + "SpotPrice": "3.390100", + "Timestamp": "2024-05-16T07:47:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.577300", + "Timestamp": "2024-05-16T07:47:51.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.677300", - "Timestamp": "2019-10-15T19:12:34.000Z" + "SpotPrice": "0.519000", + "Timestamp": "2024-05-16T07:47:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.647300", - "Timestamp": "2019-10-15T19:12:34.000Z" + "SpotPrice": "0.514000", + "Timestamp": "2024-05-16T07:47:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.547300", - "Timestamp": "2019-10-15T19:12:34.000Z" + "SpotPrice": "0.389000", + "Timestamp": "2024-05-16T07:47:51.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.445700", - "Timestamp": "2019-10-15T19:12:26.000Z" + "SpotPrice": "0.541400", + "Timestamp": "2024-05-16T07:47:50.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.415700", - "Timestamp": "2019-10-15T19:12:26.000Z" + "SpotPrice": "0.536400", + "Timestamp": "2024-05-16T07:47:50.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.315700", - "Timestamp": "2019-10-15T19:12:26.000Z" + "SpotPrice": "0.411400", + "Timestamp": "2024-05-16T07:47:50.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.773600", - "Timestamp": "2019-10-15T19:09:18.000Z" + "SpotPrice": "2.790900", + "Timestamp": "2024-05-16T07:47:50.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.773600", - "Timestamp": "2019-10-15T19:09:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.011200", + "Timestamp": "2024-05-16T07:47:50.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.773600", - "Timestamp": "2019-10-15T19:09:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.006200", + "Timestamp": "2024-05-16T07:47:50.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.881200", + "Timestamp": "2024-05-16T07:47:50.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.799600", - "Timestamp": "2019-10-15T19:09:06.000Z" + "SpotPrice": "1.367200", + "Timestamp": "2024-05-16T07:47:50.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.769600", - "Timestamp": "2019-10-15T19:09:06.000Z" + "SpotPrice": "1.362200", + "Timestamp": "2024-05-16T07:47:50.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.669600", - "Timestamp": "2019-10-15T19:09:06.000Z" + "SpotPrice": "1.237200", + "Timestamp": "2024-05-16T07:47:50.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.661600", + "Timestamp": "2024-05-16T07:47:50.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3en.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.102500", - "Timestamp": "2019-10-15T19:04:52.000Z" + "SpotPrice": "2.589100", + "Timestamp": "2024-05-16T07:47:49.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3en.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.072500", - "Timestamp": "2019-10-15T19:04:52.000Z" + "SpotPrice": "2.584100", + "Timestamp": "2024-05-16T07:47:49.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3en.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.972500", - "Timestamp": "2019-10-15T19:04:52.000Z" + "SpotPrice": "2.459100", + "Timestamp": "2024-05-16T07:47:49.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.285200", - "Timestamp": "2019-10-15T19:04:40.000Z" + "SpotPrice": "2.359800", + "Timestamp": "2024-05-16T07:47:49.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t2.large", "ProductDescription": "Windows", - "SpotPrice": "4.025800", - "Timestamp": "2019-10-15T19:04:38.000Z" + "SpotPrice": "0.069500", + "Timestamp": "2024-05-16T07:47:49.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "p5.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.171000", - "Timestamp": "2019-10-15T19:04:08.000Z" + "SpotPrice": "58.066800", + "Timestamp": "2024-05-16T07:47:48.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "p5.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.211000", - "Timestamp": "2019-10-15T19:04:08.000Z" + "SpotPrice": "58.061800", + "Timestamp": "2024-05-16T07:47:48.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "p5.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.111000", - "Timestamp": "2019-10-15T19:04:08.000Z" + "SpotPrice": "57.936800", + "Timestamp": "2024-05-16T07:47:48.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.276000", - "Timestamp": "2019-10-15T19:03:53.000Z" + "SpotPrice": "0.189000", + "Timestamp": "2024-05-16T07:47:47.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.246000", - "Timestamp": "2019-10-15T19:03:53.000Z" + "SpotPrice": "0.185000", + "Timestamp": "2024-05-16T07:47:47.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.146000", - "Timestamp": "2019-10-15T19:03:53.000Z" + "SpotPrice": "0.129000", + "Timestamp": "2024-05-16T07:47:47.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.251600", - "Timestamp": "2019-10-15T18:57:59.000Z" + "SpotPrice": "0.255100", + "Timestamp": "2024-05-16T07:47:47.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.332500", - "Timestamp": "2019-10-15T18:56:33.000Z" + "SpotPrice": "1.556300", + "Timestamp": "2024-05-16T07:47:47.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.630000", + "Timestamp": "2024-05-16T07:47:47.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.372500", - "Timestamp": "2019-10-15T18:56:33.000Z" + "SpotPrice": "1.551300", + "Timestamp": "2024-05-16T07:47:47.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.625000", + "Timestamp": "2024-05-16T07:47:47.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.272500", - "Timestamp": "2019-10-15T18:56:33.000Z" + "SpotPrice": "1.426300", + "Timestamp": "2024-05-16T07:47:47.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.500000", + "Timestamp": "2024-05-16T07:47:47.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.333100", + "Timestamp": "2024-05-16T07:47:46.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.131500", - "Timestamp": "2019-10-15T18:56:33.000Z" + "SpotPrice": "0.450100", + "Timestamp": "2024-05-16T07:47:45.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.171500", - "Timestamp": "2019-10-15T18:56:33.000Z" + "SpotPrice": "0.445100", + "Timestamp": "2024-05-16T07:47:45.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.071500", - "Timestamp": "2019-10-15T18:56:33.000Z" + "SpotPrice": "0.320100", + "Timestamp": "2024-05-16T07:47:45.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.133300", - "Timestamp": "2019-10-15T18:55:59.000Z" + "SpotPrice": "0.101500", + "Timestamp": "2024-05-16T07:47:44.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.173300", - "Timestamp": "2019-10-15T18:55:59.000Z" + "SpotPrice": "0.097500", + "Timestamp": "2024-05-16T07:47:44.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.073300", - "Timestamp": "2019-10-15T18:55:59.000Z" + "SpotPrice": "0.041500", + "Timestamp": "2024-05-16T07:47:44.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.090100", - "Timestamp": "2019-10-15T18:55:57.000Z" + "SpotPrice": "0.535800", + "Timestamp": "2024-05-16T07:47:44.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.060100", - "Timestamp": "2019-10-15T18:55:57.000Z" + "SpotPrice": "0.530800", + "Timestamp": "2024-05-16T07:47:44.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.960100", - "Timestamp": "2019-10-15T18:55:57.000Z" - }, - { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.145600", - "Timestamp": "2019-10-15T18:55:56.000Z" + "SpotPrice": "0.405800", + "Timestamp": "2024-05-16T07:47:44.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.263300", - "Timestamp": "2019-10-15T18:55:50.000Z" + "SpotPrice": "0.083700", + "Timestamp": "2024-05-16T07:47:44.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.233300", - "Timestamp": "2019-10-15T18:55:50.000Z" + "SpotPrice": "0.054700", + "Timestamp": "2024-05-16T07:47:44.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.133300", - "Timestamp": "2019-10-15T18:55:50.000Z" + "SpotPrice": "0.023700", + "Timestamp": "2024-05-16T07:47:44.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.285700", - "Timestamp": "2019-10-15T18:55:33.000Z" + "SpotPrice": "2.053800", + "Timestamp": "2024-05-16T07:47:44.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.295000", - "Timestamp": "2019-10-15T18:55:33.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.023800", + "Timestamp": "2024-05-16T07:47:44.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.255700", - "Timestamp": "2019-10-15T18:55:33.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.923800", + "Timestamp": "2024-05-16T07:47:44.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.265000", - "Timestamp": "2019-10-15T18:55:33.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.523700", + "Timestamp": "2024-05-16T07:47:44.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.155700", - "Timestamp": "2019-10-15T18:55:33.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.240400", + "Timestamp": "2024-05-16T07:47:44.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.235400", + "Timestamp": "2024-05-16T07:47:44.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.165000", - "Timestamp": "2019-10-15T18:55:33.000Z" + "SpotPrice": "1.110400", + "Timestamp": "2024-05-16T07:47:44.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5dn.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.979900", - "Timestamp": "2019-10-15T18:51:22.000Z" + "SpotPrice": "3.333700", + "Timestamp": "2024-05-16T07:47:43.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5dn.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.949900", - "Timestamp": "2019-10-15T18:51:22.000Z" + "SpotPrice": "3.328700", + "Timestamp": "2024-05-16T07:47:43.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5dn.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.849900", - "Timestamp": "2019-10-15T18:51:22.000Z" + "SpotPrice": "3.203700", + "Timestamp": "2024-05-16T07:47:43.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.254800", - "Timestamp": "2019-10-15T18:49:20.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T07:47:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.446000", - "Timestamp": "2019-10-15T18:49:20.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T07:47:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042900", + "Timestamp": "2024-05-16T07:47:43.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1e.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.941300", - "Timestamp": "2019-10-15T18:48:50.000Z" + "SpotPrice": "5.652000", + "Timestamp": "2024-05-16T07:47:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1e.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.911300", - "Timestamp": "2019-10-15T18:48:50.000Z" + "SpotPrice": "5.622000", + "Timestamp": "2024-05-16T07:47:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1e.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.811300", - "Timestamp": "2019-10-15T18:48:50.000Z" + "SpotPrice": "5.522000", + "Timestamp": "2024-05-16T07:47:43.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.288300", - "Timestamp": "2019-10-15T18:48:23.000Z" + "SpotPrice": "1.072200", + "Timestamp": "2024-05-16T07:47:43.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.732900", - "Timestamp": "2019-10-15T18:48:14.000Z" + "SpotPrice": "1.113400", + "Timestamp": "2024-05-16T07:47:43.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.165700", - "Timestamp": "2019-10-15T18:47:55.000Z" + "SpotPrice": "0.125100", + "Timestamp": "2024-05-16T07:47:42.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.135700", - "Timestamp": "2019-10-15T18:47:55.000Z" + "SpotPrice": "0.121400", + "Timestamp": "2024-05-16T07:47:42.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.035700", - "Timestamp": "2019-10-15T18:47:55.000Z" - }, - { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m1.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.279600", - "Timestamp": "2019-10-15T18:47:49.000Z" + "SpotPrice": "0.065100", + "Timestamp": "2024-05-16T07:47:42.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.358800", - "Timestamp": "2019-10-15T18:47:40.000Z" + "SpotPrice": "4.991200", + "Timestamp": "2024-05-16T07:47:42.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.398800", - "Timestamp": "2019-10-15T18:47:40.000Z" + "SpotPrice": "4.986200", + "Timestamp": "2024-05-16T07:47:42.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.298800", - "Timestamp": "2019-10-15T18:47:40.000Z" + "SpotPrice": "4.861200", + "Timestamp": "2024-05-16T07:47:42.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.314000", + "Timestamp": "2024-05-16T07:47:41.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092600", - "Timestamp": "2019-10-15T18:47:39.000Z" + "SpotPrice": "0.446300", + "Timestamp": "2024-05-16T07:47:41.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132600", - "Timestamp": "2019-10-15T18:47:39.000Z" + "SpotPrice": "0.441300", + "Timestamp": "2024-05-16T07:47:41.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032600", - "Timestamp": "2019-10-15T18:47:39.000Z" + "SpotPrice": "0.316300", + "Timestamp": "2024-05-16T07:47:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.471700", - "Timestamp": "2019-10-15T18:47:23.000Z" + "SpotPrice": "0.145000", + "Timestamp": "2024-05-16T07:47:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.441700", - "Timestamp": "2019-10-15T18:47:23.000Z" + "SpotPrice": "0.141300", + "Timestamp": "2024-05-16T07:47:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.341700", - "Timestamp": "2019-10-15T18:47:23.000Z" + "SpotPrice": "0.085000", + "Timestamp": "2024-05-16T07:47:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "im4gn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.696600", - "Timestamp": "2019-10-15T18:44:23.000Z" + "SpotPrice": "1.420200", + "Timestamp": "2024-05-16T07:47:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "im4gn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.666600", - "Timestamp": "2019-10-15T18:44:23.000Z" + "SpotPrice": "1.415200", + "Timestamp": "2024-05-16T07:47:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "im4gn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.566600", - "Timestamp": "2019-10-15T18:44:23.000Z" + "SpotPrice": "1.290200", + "Timestamp": "2024-05-16T07:47:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5dn.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "im4gn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.265200", - "Timestamp": "2019-10-15T18:41:14.000Z" + "SpotPrice": "0.438600", + "Timestamp": "2024-05-16T07:47:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5dn.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "im4gn.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.235200", - "Timestamp": "2019-10-15T18:41:14.000Z" + "SpotPrice": "0.433600", + "Timestamp": "2024-05-16T07:47:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5dn.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "im4gn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.135200", - "Timestamp": "2019-10-15T18:41:14.000Z" - }, - { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095400", - "Timestamp": "2019-10-15T18:40:27.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095400", - "Timestamp": "2019-10-15T18:40:27.000Z" + "SpotPrice": "0.308600", + "Timestamp": "2024-05-16T07:47:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095400", - "Timestamp": "2019-10-15T18:40:27.000Z" + "SpotPrice": "2.890400", + "Timestamp": "2024-05-16T07:47:40.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095400", - "Timestamp": "2019-10-15T18:40:27.000Z" + "SpotPrice": "2.750900", + "Timestamp": "2024-05-16T07:47:40.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135400", - "Timestamp": "2019-10-15T18:40:27.000Z" + "SpotPrice": "2.885400", + "Timestamp": "2024-05-16T07:47:40.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135400", - "Timestamp": "2019-10-15T18:40:27.000Z" + "SpotPrice": "2.745900", + "Timestamp": "2024-05-16T07:47:40.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135400", - "Timestamp": "2019-10-15T18:40:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.760400", + "Timestamp": "2024-05-16T07:47:40.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5a.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135400", - "Timestamp": "2019-10-15T18:40:27.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.620900", + "Timestamp": "2024-05-16T07:47:40.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035400", - "Timestamp": "2019-10-15T18:40:27.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.193900", + "Timestamp": "2024-05-16T07:47:40.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035400", - "Timestamp": "2019-10-15T18:40:27.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.420500", + "Timestamp": "2024-05-16T07:47:40.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035400", - "Timestamp": "2019-10-15T18:40:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.702500", + "Timestamp": "2024-05-16T07:47:40.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035400", - "Timestamp": "2019-10-15T18:40:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.697500", + "Timestamp": "2024-05-16T07:47:40.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.127400", - "Timestamp": "2019-10-15T18:40:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.572500", + "Timestamp": "2024-05-16T07:47:40.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.127400", - "Timestamp": "2019-10-15T18:40:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.930400", + "Timestamp": "2024-05-16T07:47:40.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.127400", - "Timestamp": "2019-10-15T18:40:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.925400", + "Timestamp": "2024-05-16T07:47:40.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.127400", - "Timestamp": "2019-10-15T18:40:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.800400", + "Timestamp": "2024-05-16T07:47:40.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.475700", - "Timestamp": "2019-10-15T18:39:53.000Z" + "SpotPrice": "0.129600", + "Timestamp": "2024-05-16T07:47:39.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.445700", - "Timestamp": "2019-10-15T18:39:53.000Z" + "SpotPrice": "0.125600", + "Timestamp": "2024-05-16T07:47:39.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.345700", - "Timestamp": "2019-10-15T18:39:53.000Z" + "SpotPrice": "0.069600", + "Timestamp": "2024-05-16T07:47:39.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Windows", + "SpotPrice": "5.171900", + "Timestamp": "2024-05-16T07:47:39.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.430500", - "Timestamp": "2019-10-15T18:39:46.000Z" + "SpotPrice": "1.565300", + "Timestamp": "2024-05-16T07:47:39.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.400500", - "Timestamp": "2019-10-15T18:39:46.000Z" + "SpotPrice": "1.560300", + "Timestamp": "2024-05-16T07:47:39.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.300500", - "Timestamp": "2019-10-15T18:39:46.000Z" + "SpotPrice": "1.435300", + "Timestamp": "2024-05-16T07:47:39.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.202000", - "Timestamp": "2019-10-15T18:39:38.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.288700", + "Timestamp": "2024-05-16T07:47:39.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.149600", - "Timestamp": "2019-10-15T18:39:38.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.501400", + "Timestamp": "2024-05-16T07:47:39.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.242000", - "Timestamp": "2019-10-15T18:39:38.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128900", + "Timestamp": "2024-05-16T07:47:38.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.458900", + "Timestamp": "2024-05-16T07:47:38.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.189600", - "Timestamp": "2019-10-15T18:39:38.000Z" + "SpotPrice": "2.453900", + "Timestamp": "2024-05-16T07:47:38.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.142000", - "Timestamp": "2019-10-15T18:39:38.000Z" + "SpotPrice": "2.328900", + "Timestamp": "2024-05-16T07:47:38.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.089600", - "Timestamp": "2019-10-15T18:39:38.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.259700", + "Timestamp": "2024-05-16T07:47:38.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.562300", - "Timestamp": "2019-10-15T18:39:36.000Z" + "SpotPrice": "0.328100", + "Timestamp": "2024-05-16T07:47:36.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.532300", - "Timestamp": "2019-10-15T18:39:36.000Z" + "SpotPrice": "0.323100", + "Timestamp": "2024-05-16T07:47:36.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.432300", - "Timestamp": "2019-10-15T18:39:36.000Z" + "SpotPrice": "0.198100", + "Timestamp": "2024-05-16T07:47:36.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.478800", - "Timestamp": "2019-10-15T18:39:29.000Z" + "SpotPrice": "0.166800", + "Timestamp": "2024-05-16T07:47:36.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.448800", - "Timestamp": "2019-10-15T18:39:29.000Z" + "SpotPrice": "0.163100", + "Timestamp": "2024-05-16T07:47:36.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.348800", - "Timestamp": "2019-10-15T18:39:29.000Z" + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T07:47:36.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i-flex.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.271300", - "Timestamp": "2019-10-15T18:39:21.000Z" + "SpotPrice": "0.358900", + "Timestamp": "2024-05-16T07:47:36.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i-flex.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.241300", - "Timestamp": "2019-10-15T18:39:21.000Z" + "SpotPrice": "0.353900", + "Timestamp": "2024-05-16T07:47:36.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i-flex.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.141300", - "Timestamp": "2019-10-15T18:39:21.000Z" + "SpotPrice": "0.228900", + "Timestamp": "2024-05-16T07:47:36.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.757600", - "Timestamp": "2019-10-15T18:39:19.000Z" + "SpotPrice": "1.693900", + "Timestamp": "2024-05-16T07:47:35.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.727600", - "Timestamp": "2019-10-15T18:39:19.000Z" + "SpotPrice": "1.688900", + "Timestamp": "2024-05-16T07:47:35.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.627600", - "Timestamp": "2019-10-15T18:39:19.000Z" + "SpotPrice": "1.563900", + "Timestamp": "2024-05-16T07:47:35.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.3xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.254800", - "Timestamp": "2019-10-15T18:38:09.000Z" + "SpotPrice": "1.079000", + "Timestamp": "2024-05-16T07:47:35.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "a1.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.263500", - "Timestamp": "2019-10-15T18:37:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.027700", + "Timestamp": "2024-05-16T07:47:35.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "a1.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.233500", - "Timestamp": "2019-10-15T18:37:55.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.289600", + "Timestamp": "2024-05-16T07:47:35.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "a1.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.133500", - "Timestamp": "2019-10-15T18:37:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299500", + "Timestamp": "2024-05-16T07:47:35.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.979900", - "Timestamp": "2019-10-15T18:37:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.284600", + "Timestamp": "2024-05-16T07:47:35.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.949900", - "Timestamp": "2019-10-15T18:37:47.000Z" + "SpotPrice": "0.294500", + "Timestamp": "2024-05-16T07:47:35.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.849900", - "Timestamp": "2019-10-15T18:37:47.000Z" + "SpotPrice": "0.159600", + "Timestamp": "2024-05-16T07:47:35.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.065500", - "Timestamp": "2019-10-15T18:31:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169500", + "Timestamp": "2024-05-16T07:47:35.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.476000", - "Timestamp": "2019-10-15T18:30:35.000Z" + "SpotPrice": "0.135300", + "Timestamp": "2024-05-16T07:47:34.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139200", + "Timestamp": "2024-05-16T07:47:34.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7g.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.446000", - "Timestamp": "2019-10-15T18:30:35.000Z" + "SpotPrice": "0.131600", + "Timestamp": "2024-05-16T07:47:34.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.346000", - "Timestamp": "2019-10-15T18:30:35.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135500", + "Timestamp": "2024-05-16T07:47:34.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.220800", - "Timestamp": "2019-10-15T18:17:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075300", + "Timestamp": "2024-05-16T07:47:34.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.220800", - "Timestamp": "2019-10-15T18:17:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079200", + "Timestamp": "2024-05-16T07:47:34.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.220800", - "Timestamp": "2019-10-15T18:17:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.282500", + "Timestamp": "2024-05-16T07:47:33.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.220800", - "Timestamp": "2019-10-15T18:17:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.277500", + "Timestamp": "2024-05-16T07:47:33.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "p3dn.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "9.493600", - "Timestamp": "2019-10-15T18:17:31.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.152500", + "Timestamp": "2024-05-16T07:47:33.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "p3dn.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "9.493600", - "Timestamp": "2019-10-15T18:17:31.000Z" + "SpotPrice": "4.788100", + "Timestamp": "2024-05-16T07:47:33.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "p3dn.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "9.463600", - "Timestamp": "2019-10-15T18:17:31.000Z" + "SpotPrice": "4.783100", + "Timestamp": "2024-05-16T07:47:33.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "p3dn.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "9.463600", - "Timestamp": "2019-10-15T18:17:31.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.658100", + "Timestamp": "2024-05-16T07:47:33.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "p3dn.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "9.363600", - "Timestamp": "2019-10-15T18:17:31.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.773500", + "Timestamp": "2024-05-16T07:47:33.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "p3dn.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.768500", + "Timestamp": "2024-05-16T07:47:33.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "9.363600", - "Timestamp": "2019-10-15T18:17:31.000Z" + "SpotPrice": "0.643500", + "Timestamp": "2024-05-16T07:47:33.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.775900", - "Timestamp": "2019-10-15T18:17:27.000Z" + "SpotPrice": "1.186700", + "Timestamp": "2024-05-16T07:47:32.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.745900", - "Timestamp": "2019-10-15T18:17:27.000Z" + "SpotPrice": "1.181700", + "Timestamp": "2024-05-16T07:47:32.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.645900", - "Timestamp": "2019-10-15T18:17:27.000Z" + "SpotPrice": "1.056700", + "Timestamp": "2024-05-16T07:47:32.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "p3dn.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "13.779600", - "Timestamp": "2019-10-15T18:17:00.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278100", + "Timestamp": "2024-05-16T07:47:32.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "p3dn.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "13.779600", - "Timestamp": "2019-10-15T18:17:00.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273100", + "Timestamp": "2024-05-16T07:47:32.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.117900", - "Timestamp": "2019-10-15T18:16:59.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148100", + "Timestamp": "2024-05-16T07:47:32.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.012900", - "Timestamp": "2019-10-15T18:16:30.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.209400", + "Timestamp": "2024-05-16T07:47:32.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.012900", - "Timestamp": "2019-10-15T18:16:30.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.205400", + "Timestamp": "2024-05-16T07:47:32.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.012900", - "Timestamp": "2019-10-15T18:16:30.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149400", + "Timestamp": "2024-05-16T07:47:32.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.012900", - "Timestamp": "2019-10-15T18:16:30.000Z" + "SpotPrice": "4.484500", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m4.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.670900", - "Timestamp": "2019-10-15T18:16:19.000Z" + "SpotPrice": "0.513500", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.670900", - "Timestamp": "2019-10-15T18:16:19.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.483500", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.670900", - "Timestamp": "2019-10-15T18:16:19.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.383500", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2b", + "AvailabilityZone": "us-east-1f", "InstanceType": "m5d.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.670900", - "Timestamp": "2019-10-15T18:16:19.000Z" + "SpotPrice": "1.039700", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2d", + "AvailabilityZone": "us-east-1f", "InstanceType": "m5d.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.640900", - "Timestamp": "2019-10-15T18:16:19.000Z" + "SpotPrice": "1.009700", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2c", + "AvailabilityZone": "us-east-1f", "InstanceType": "m5d.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.640900", - "Timestamp": "2019-10-15T18:16:19.000Z" + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.909700", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.640900", - "Timestamp": "2019-10-15T18:16:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.682900", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.640900", - "Timestamp": "2019-10-15T18:16:19.000Z" + "SpotPrice": "1.677900", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.540900", - "Timestamp": "2019-10-15T18:16:19.000Z" + "SpotPrice": "1.552900", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.540900", - "Timestamp": "2019-10-15T18:16:19.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.289300", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.540900", - "Timestamp": "2019-10-15T18:16:19.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.259300", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "t2.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.540900", - "Timestamp": "2019-10-15T18:16:19.000Z" - }, - { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.050200", - "Timestamp": "2019-10-15T18:15:20.000Z" + "SpotPrice": "0.159300", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2c", + "AvailabilityZone": "us-east-1a", "InstanceType": "t3a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.050200", - "Timestamp": "2019-10-15T18:15:20.000Z" + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2a", + "AvailabilityZone": "us-east-1a", "InstanceType": "t3a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.050200", - "Timestamp": "2019-10-15T18:15:20.000Z" + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092200", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2b", + "AvailabilityZone": "us-east-1a", "InstanceType": "t3a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.050200", - "Timestamp": "2019-10-15T18:15:20.000Z" + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035900", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3a.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.082600", - "Timestamp": "2019-10-15T18:15:11.000Z" + "SpotPrice": "0.266300", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.082600", - "Timestamp": "2019-10-15T18:15:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262600", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.082600", - "Timestamp": "2019-10-15T18:15:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.206300", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.082600", - "Timestamp": "2019-10-15T18:15:11.000Z" + "SpotPrice": "1.945500", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.122600", - "Timestamp": "2019-10-15T18:15:11.000Z" + "SpotPrice": "1.940500", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3a.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.122600", - "Timestamp": "2019-10-15T18:15:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.815500", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3a.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.122600", - "Timestamp": "2019-10-15T18:15:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130900", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3a.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.122600", - "Timestamp": "2019-10-15T18:15:11.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150300", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.022600", - "Timestamp": "2019-10-15T18:15:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126900", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.022600", - "Timestamp": "2019-10-15T18:15:11.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146300", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.022600", - "Timestamp": "2019-10-15T18:15:11.000Z" + "SpotPrice": "0.070900", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3a.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.022600", - "Timestamp": "2019-10-15T18:15:11.000Z" + "SpotPrice": "0.090300", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "inf1.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.099300", - "Timestamp": "2019-10-15T18:14:57.000Z" + "SpotPrice": "0.301900", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "inf1.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.139300", - "Timestamp": "2019-10-15T18:14:57.000Z" + "SpotPrice": "0.296900", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "inf1.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.039300", - "Timestamp": "2019-10-15T18:14:57.000Z" + "SpotPrice": "0.171900", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.077900", - "Timestamp": "2019-10-15T18:14:51.000Z" + "SpotPrice": "0.263800", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "4.047900", - "Timestamp": "2019-10-15T18:14:51.000Z" + "SpotPrice": "0.259800", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.947900", - "Timestamp": "2019-10-15T18:14:51.000Z" + "SpotPrice": "0.203800", + "Timestamp": "2024-05-16T07:47:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.039800", + "Timestamp": "2024-05-16T07:47:31.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r4.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.453000", - "Timestamp": "2019-10-15T18:14:48.000Z" + "SpotPrice": "0.691400", + "Timestamp": "2024-05-16T07:47:30.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r4.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.423000", - "Timestamp": "2019-10-15T18:14:48.000Z" + "SpotPrice": "0.661400", + "Timestamp": "2024-05-16T07:47:30.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r4.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.323000", - "Timestamp": "2019-10-15T18:14:48.000Z" + "SpotPrice": "0.561400", + "Timestamp": "2024-05-16T07:47:30.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094100", - "Timestamp": "2019-10-15T18:14:39.000Z" + "SpotPrice": "0.485200", + "Timestamp": "2024-05-16T07:47:30.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134100", - "Timestamp": "2019-10-15T18:14:39.000Z" + "SpotPrice": "0.455200", + "Timestamp": "2024-05-16T07:47:30.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034100", - "Timestamp": "2019-10-15T18:14:39.000Z" + "SpotPrice": "0.355200", + "Timestamp": "2024-05-16T07:47:30.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.107700", - "Timestamp": "2019-10-15T18:14:22.000Z" + "SpotPrice": "0.488300", + "Timestamp": "2024-05-16T07:47:30.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.147700", - "Timestamp": "2019-10-15T18:14:22.000Z" + "SpotPrice": "0.483300", + "Timestamp": "2024-05-16T07:47:30.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.047700", - "Timestamp": "2019-10-15T18:14:22.000Z" + "SpotPrice": "0.358300", + "Timestamp": "2024-05-16T07:47:30.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.534000", + "Timestamp": "2024-05-16T07:47:30.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "t2.micro", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.706100", - "Timestamp": "2019-10-15T18:14:15.000Z" + "SpotPrice": "0.064700", + "Timestamp": "2024-05-16T07:47:30.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t2.micro", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.676100", - "Timestamp": "2019-10-15T18:14:15.000Z" + "SpotPrice": "0.004700", + "Timestamp": "2024-05-16T07:47:30.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t2.micro", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.576100", - "Timestamp": "2019-10-15T18:14:15.000Z" + "SpotPrice": "0.004700", + "Timestamp": "2024-05-16T07:47:30.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.542700", - "Timestamp": "2019-10-15T18:14:10.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.637700", + "Timestamp": "2024-05-16T07:47:30.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.512700", - "Timestamp": "2019-10-15T18:14:10.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.047200", + "Timestamp": "2024-05-16T07:47:30.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.412700", - "Timestamp": "2019-10-15T18:14:10.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.542800", + "Timestamp": "2024-05-16T07:47:29.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.878800", - "Timestamp": "2019-10-15T18:13:11.000Z" + "SpotPrice": "0.485200", + "Timestamp": "2024-05-16T07:47:28.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.878800", - "Timestamp": "2019-10-15T18:13:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.480200", + "Timestamp": "2024-05-16T07:47:28.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.355200", + "Timestamp": "2024-05-16T07:47:28.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.878800", - "Timestamp": "2019-10-15T18:13:11.000Z" + "SpotPrice": "1.415300", + "Timestamp": "2024-05-16T07:47:28.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.848800", - "Timestamp": "2019-10-15T18:13:11.000Z" + "SpotPrice": "1.410300", + "Timestamp": "2024-05-16T07:47:28.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.848800", - "Timestamp": "2019-10-15T18:13:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.285300", + "Timestamp": "2024-05-16T07:47:28.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.848800", - "Timestamp": "2019-10-15T18:13:11.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.970400", + "Timestamp": "2024-05-16T07:47:27.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.748800", - "Timestamp": "2019-10-15T18:13:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129600", + "Timestamp": "2024-05-16T07:47:27.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.748800", - "Timestamp": "2019-10-15T18:13:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125900", + "Timestamp": "2024-05-16T07:47:27.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.748800", - "Timestamp": "2019-10-15T18:13:11.000Z" + "SpotPrice": "0.069600", + "Timestamp": "2024-05-16T07:47:27.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "z1d.3xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.464800", - "Timestamp": "2019-10-15T18:12:18.000Z" + "SpotPrice": "2.408800", + "Timestamp": "2024-05-16T07:47:27.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.464800", - "Timestamp": "2019-10-15T18:12:18.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.403800", + "Timestamp": "2024-05-16T07:47:27.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.434800", - "Timestamp": "2019-10-15T18:12:18.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.278800", + "Timestamp": "2024-05-16T07:47:27.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "z1d.3xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151900", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.434800", - "Timestamp": "2019-10-15T18:12:18.000Z" + "SpotPrice": "0.148200", + "Timestamp": "2024-05-16T07:47:26.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "z1d.3xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.334800", - "Timestamp": "2019-10-15T18:12:18.000Z" + "SpotPrice": "0.091900", + "Timestamp": "2024-05-16T07:47:26.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "z1d.3xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.520400", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.515400", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.334800", - "Timestamp": "2019-10-15T18:12:18.000Z" + "SpotPrice": "0.390400", + "Timestamp": "2024-05-16T07:47:26.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.886800", - "Timestamp": "2019-10-15T18:12:07.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.506500", + "Timestamp": "2024-05-16T07:47:26.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.886800", - "Timestamp": "2019-10-15T18:12:07.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.501500", + "Timestamp": "2024-05-16T07:47:26.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.886800", - "Timestamp": "2019-10-15T18:12:07.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.376500", + "Timestamp": "2024-05-16T07:47:26.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.012900", - "Timestamp": "2019-10-15T18:11:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.443800", + "Timestamp": "2024-05-16T07:47:26.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4dn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.290300", - "Timestamp": "2019-10-15T18:06:02.000Z" + "SpotPrice": "0.438000", + "Timestamp": "2024-05-16T07:47:26.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.260300", - "Timestamp": "2019-10-15T18:06:02.000Z" + "SpotPrice": "0.438800", + "Timestamp": "2024-05-16T07:47:26.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.433000", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.160300", - "Timestamp": "2019-10-15T18:06:02.000Z" + "SpotPrice": "0.313800", + "Timestamp": "2024-05-16T07:47:26.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.308000", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-15T18:05:49.000Z" + "SpotPrice": "0.583600", + "Timestamp": "2024-05-16T07:47:25.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172700", - "Timestamp": "2019-10-15T18:05:49.000Z" + "SpotPrice": "0.578600", + "Timestamp": "2024-05-16T07:47:25.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072700", - "Timestamp": "2019-10-15T18:05:49.000Z" + "SpotPrice": "0.453600", + "Timestamp": "2024-05-16T07:47:25.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.xlarge", "ProductDescription": "Windows", - "SpotPrice": "8.341800", - "Timestamp": "2019-10-15T18:05:49.000Z" + "SpotPrice": "0.301000", + "Timestamp": "2024-05-16T07:47:25.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2idn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101500", - "Timestamp": "2019-10-15T18:05:47.000Z" + "SpotPrice": "4.398200", + "Timestamp": "2024-05-16T07:47:25.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2idn.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.141500", - "Timestamp": "2019-10-15T18:05:47.000Z" + "SpotPrice": "4.393200", + "Timestamp": "2024-05-16T07:47:25.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2idn.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041500", - "Timestamp": "2019-10-15T18:05:47.000Z" + "SpotPrice": "4.268200", + "Timestamp": "2024-05-16T07:47:25.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.280200", - "Timestamp": "2019-10-15T18:05:36.000Z" + "SpotPrice": "0.108600", + "Timestamp": "2024-05-16T07:47:24.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.250200", - "Timestamp": "2019-10-15T18:05:36.000Z" + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T07:47:24.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.150200", - "Timestamp": "2019-10-15T18:05:36.000Z" + "SpotPrice": "0.048600", + "Timestamp": "2024-05-16T07:47:24.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094700", - "Timestamp": "2019-10-15T17:57:02.000Z" + "SpotPrice": "3.632500", + "Timestamp": "2024-05-16T07:47:24.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134700", - "Timestamp": "2019-10-15T17:57:02.000Z" + "SpotPrice": "3.627500", + "Timestamp": "2024-05-16T07:47:24.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034700", - "Timestamp": "2019-10-15T17:57:02.000Z" + "SpotPrice": "3.502500", + "Timestamp": "2024-05-16T07:47:24.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "z1d.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.469200", - "Timestamp": "2019-10-15T17:53:39.000Z" + "SpotPrice": "0.590500", + "Timestamp": "2024-05-16T07:47:24.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "z1d.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.562900", + "Timestamp": "2024-05-16T07:47:24.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.439200", - "Timestamp": "2019-10-15T17:53:39.000Z" + "SpotPrice": "0.585500", + "Timestamp": "2024-05-16T07:47:24.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "z1d.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.557900", + "Timestamp": "2024-05-16T07:47:24.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.339200", - "Timestamp": "2019-10-15T17:53:39.000Z" + "SpotPrice": "0.460500", + "Timestamp": "2024-05-16T07:47:24.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.432900", + "Timestamp": "2024-05-16T07:47:24.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129100", - "Timestamp": "2019-10-15T17:50:37.000Z" + "SpotPrice": "1.820300", + "Timestamp": "2024-05-16T07:47:24.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.169100", - "Timestamp": "2019-10-15T17:50:37.000Z" + "SpotPrice": "1.815300", + "Timestamp": "2024-05-16T07:47:24.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069100", - "Timestamp": "2019-10-15T17:50:37.000Z" + "SpotPrice": "1.690300", + "Timestamp": "2024-05-16T07:47:24.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "p2.xlarge", "ProductDescription": "Windows", - "SpotPrice": "7.893900", - "Timestamp": "2019-10-15T17:49:29.000Z" + "SpotPrice": "0.509600", + "Timestamp": "2024-05-16T07:47:22.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5n.9xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.326400", - "Timestamp": "2019-10-15T17:49:14.000Z" + "SpotPrice": "1.017500", + "Timestamp": "2024-05-16T07:47:21.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5n.9xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.296400", - "Timestamp": "2019-10-15T17:49:14.000Z" + "SpotPrice": "1.012500", + "Timestamp": "2024-05-16T07:47:21.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5n.9xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.196400", - "Timestamp": "2019-10-15T17:49:14.000Z" + "SpotPrice": "0.887500", + "Timestamp": "2024-05-16T07:47:21.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.302700", + "Timestamp": "2024-05-16T07:47:21.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.982900", - "Timestamp": "2019-10-15T17:49:07.000Z" + "SpotPrice": "0.319100", + "Timestamp": "2024-05-16T07:47:21.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.952900", - "Timestamp": "2019-10-15T17:49:07.000Z" + "SpotPrice": "0.314100", + "Timestamp": "2024-05-16T07:47:21.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.852900", - "Timestamp": "2019-10-15T17:49:07.000Z" + "SpotPrice": "0.189100", + "Timestamp": "2024-05-16T07:47:21.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.507400", - "Timestamp": "2019-10-15T17:40:42.000Z" + "SpotPrice": "1.170800", + "Timestamp": "2024-05-16T07:47:20.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.477400", - "Timestamp": "2019-10-15T17:40:42.000Z" + "SpotPrice": "1.165800", + "Timestamp": "2024-05-16T07:47:20.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.377400", - "Timestamp": "2019-10-15T17:40:42.000Z" + "SpotPrice": "1.040800", + "Timestamp": "2024-05-16T07:47:20.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.494100", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.417400", + "Timestamp": "2024-05-16T07:47:16.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.135300", + "Timestamp": "2024-05-16T07:47:16.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.856100", - "Timestamp": "2019-10-15T17:40:42.000Z" + "SpotPrice": "0.934700", + "Timestamp": "2024-05-16T07:47:15.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.826100", - "Timestamp": "2019-10-15T17:40:42.000Z" + "SpotPrice": "0.929700", + "Timestamp": "2024-05-16T07:47:15.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.726100", - "Timestamp": "2019-10-15T17:40:42.000Z" + "SpotPrice": "0.804700", + "Timestamp": "2024-05-16T07:47:15.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.261500", - "Timestamp": "2019-10-15T17:40:21.000Z" + "SpotPrice": "1.886100", + "Timestamp": "2024-05-16T07:47:15.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.231500", - "Timestamp": "2019-10-15T17:40:21.000Z" + "SpotPrice": "1.856100", + "Timestamp": "2024-05-16T07:47:15.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.131500", - "Timestamp": "2019-10-15T17:40:21.000Z" + "SpotPrice": "1.756100", + "Timestamp": "2024-05-16T07:47:15.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "i2.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.729300", - "Timestamp": "2019-10-15T17:40:17.000Z" + "SpotPrice": "0.749000", + "Timestamp": "2024-05-16T07:47:15.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "i2.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.699300", - "Timestamp": "2019-10-15T17:40:17.000Z" + "SpotPrice": "0.719000", + "Timestamp": "2024-05-16T07:47:15.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "i2.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.599300", - "Timestamp": "2019-10-15T17:40:17.000Z" + "SpotPrice": "0.619000", + "Timestamp": "2024-05-16T07:47:15.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T17:38:56.000Z" + "SpotPrice": "0.162700", + "Timestamp": "2024-05-16T07:47:14.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T17:38:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159000", + "Timestamp": "2024-05-16T07:47:14.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102700", + "Timestamp": "2024-05-16T07:47:14.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T17:38:56.000Z" + "SpotPrice": "0.079200", + "Timestamp": "2024-05-16T07:47:14.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.170800", - "Timestamp": "2019-10-15T17:38:56.000Z" + "SpotPrice": "0.075500", + "Timestamp": "2024-05-16T07:47:14.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.170800", - "Timestamp": "2019-10-15T17:38:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019200", + "Timestamp": "2024-05-16T07:47:14.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.170800", - "Timestamp": "2019-10-15T17:38:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.673800", + "Timestamp": "2024-05-16T07:47:14.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.070800", - "Timestamp": "2019-10-15T17:38:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.668800", + "Timestamp": "2024-05-16T07:47:14.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.070800", - "Timestamp": "2019-10-15T17:38:56.000Z" + "SpotPrice": "0.543800", + "Timestamp": "2024-05-16T07:47:14.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.070800", - "Timestamp": "2019-10-15T17:38:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.289100", + "Timestamp": "2024-05-16T07:47:14.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.254800", - "Timestamp": "2019-10-15T17:38:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.284100", + "Timestamp": "2024-05-16T07:47:14.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.254800", - "Timestamp": "2019-10-15T17:38:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159100", + "Timestamp": "2024-05-16T07:47:14.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4dn.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.254800", - "Timestamp": "2019-10-15T17:38:56.000Z" + "SpotPrice": "4.790600", + "Timestamp": "2024-05-16T07:47:14.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5dn.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.115900", - "Timestamp": "2019-10-15T17:36:35.000Z" + "SpotPrice": "0.319900", + "Timestamp": "2024-05-16T07:47:13.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.941300", - "Timestamp": "2019-10-15T17:33:49.000Z" + "SpotPrice": "0.138900", + "Timestamp": "2024-05-16T07:47:13.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.911300", - "Timestamp": "2019-10-15T17:33:49.000Z" + "SpotPrice": "0.135200", + "Timestamp": "2024-05-16T07:47:13.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.811300", - "Timestamp": "2019-10-15T17:33:49.000Z" + "SpotPrice": "0.078900", + "Timestamp": "2024-05-16T07:47:13.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "r4.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.481600", - "Timestamp": "2019-10-15T17:32:58.000Z" + "SpotPrice": "0.265300", + "Timestamp": "2024-05-16T07:47:13.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "r4.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.451600", - "Timestamp": "2019-10-15T17:32:58.000Z" + "SpotPrice": "0.235300", + "Timestamp": "2024-05-16T07:47:13.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "r4.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.351600", - "Timestamp": "2019-10-15T17:32:58.000Z" + "SpotPrice": "0.135300", + "Timestamp": "2024-05-16T07:47:13.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.164500", - "Timestamp": "2019-10-15T17:32:55.000Z" + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T07:47:12.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.204500", - "Timestamp": "2019-10-15T17:32:55.000Z" + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T07:47:12.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.104500", - "Timestamp": "2019-10-15T17:32:55.000Z" + "SpotPrice": "0.045200", + "Timestamp": "2024-05-16T07:47:12.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "6.115900", - "Timestamp": "2019-10-15T17:28:37.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.843400", + "Timestamp": "2024-05-16T07:47:11.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "6.115900", - "Timestamp": "2019-10-15T17:28:37.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.838400", + "Timestamp": "2024-05-16T07:47:11.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "6.115900", - "Timestamp": "2019-10-15T17:28:37.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.713400", + "Timestamp": "2024-05-16T07:47:11.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.829900", - "Timestamp": "2019-10-15T17:27:37.000Z" + "SpotPrice": "0.077900", + "Timestamp": "2024-05-16T07:33:28.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.829900", - "Timestamp": "2019-10-15T17:27:37.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.048900", + "Timestamp": "2024-05-16T07:33:28.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.829900", - "Timestamp": "2019-10-15T17:27:37.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017900", + "Timestamp": "2024-05-16T07:33:28.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.799900", - "Timestamp": "2019-10-15T17:27:37.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.510500", + "Timestamp": "2024-05-16T07:33:24.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.799900", - "Timestamp": "2019-10-15T17:27:37.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.544300", + "Timestamp": "2024-05-16T07:33:19.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.799900", - "Timestamp": "2019-10-15T17:27:37.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.460500", + "Timestamp": "2024-05-16T07:33:15.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.699900", - "Timestamp": "2019-10-15T17:27:37.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.455500", + "Timestamp": "2024-05-16T07:33:15.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.699900", - "Timestamp": "2019-10-15T17:27:37.000Z" + "SpotPrice": "3.330500", + "Timestamp": "2024-05-16T07:33:15.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.699900", - "Timestamp": "2019-10-15T17:27:37.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "16.312400", + "Timestamp": "2024-05-16T07:33:13.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.630400", - "Timestamp": "2019-10-15T17:27:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.890500", + "Timestamp": "2024-05-16T07:33:11.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.630400", - "Timestamp": "2019-10-15T17:27:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.121000", + "Timestamp": "2024-05-16T07:33:10.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.600400", - "Timestamp": "2019-10-15T17:27:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.623200", + "Timestamp": "2024-05-16T07:33:09.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1e.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.600400", - "Timestamp": "2019-10-15T17:27:35.000Z" + "SpotPrice": "2.618200", + "Timestamp": "2024-05-16T07:33:09.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1e.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.500400", - "Timestamp": "2019-10-15T17:27:35.000Z" + "SpotPrice": "2.493200", + "Timestamp": "2024-05-16T07:33:09.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.500400", - "Timestamp": "2019-10-15T17:27:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.831800", + "Timestamp": "2024-05-16T07:33:09.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.125700", - "Timestamp": "2019-10-15T17:27:28.000Z" + "SpotPrice": "3.859900", + "Timestamp": "2024-05-16T07:33:08.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.125700", - "Timestamp": "2019-10-15T17:27:28.000Z" + "SpotPrice": "3.307100", + "Timestamp": "2024-05-16T07:33:08.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.125700", - "Timestamp": "2019-10-15T17:27:28.000Z" + "SpotPrice": "3.299100", + "Timestamp": "2024-05-16T07:33:08.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "a1.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.076700", - "Timestamp": "2019-10-15T17:27:17.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.230500", + "Timestamp": "2024-05-16T07:33:08.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "a1.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.076700", - "Timestamp": "2019-10-15T17:27:17.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.166000", + "Timestamp": "2024-05-16T07:33:08.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "a1.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.116700", - "Timestamp": "2019-10-15T17:27:17.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.243100", + "Timestamp": "2024-05-16T07:33:07.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "a1.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.116700", - "Timestamp": "2019-10-15T17:27:17.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.174600", + "Timestamp": "2024-05-16T07:33:07.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "a1.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.016700", - "Timestamp": "2019-10-15T17:27:17.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.169600", + "Timestamp": "2024-05-16T07:33:07.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "a1.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.016700", - "Timestamp": "2019-10-15T17:27:17.000Z" + "SpotPrice": "3.044600", + "Timestamp": "2024-05-16T07:33:07.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1e.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.868400", - "Timestamp": "2019-10-15T17:27:01.000Z" + "SpotPrice": "6.959900", + "Timestamp": "2024-05-16T07:33:07.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1e.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.868400", - "Timestamp": "2019-10-15T17:27:01.000Z" + "SpotPrice": "1.211500", + "Timestamp": "2024-05-16T07:33:07.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247400", - "Timestamp": "2019-10-15T17:26:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.947500", + "Timestamp": "2024-05-16T07:33:06.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247400", - "Timestamp": "2019-10-15T17:26:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.942500", + "Timestamp": "2024-05-16T07:33:06.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247400", - "Timestamp": "2019-10-15T17:26:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.817500", + "Timestamp": "2024-05-16T07:33:06.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.247400", - "Timestamp": "2019-10-15T17:26:41.000Z" + "SpotPrice": "4.247500", + "Timestamp": "2024-05-16T07:33:06.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095400", - "Timestamp": "2019-10-15T17:26:34.000Z" + "SpotPrice": "0.241400", + "Timestamp": "2024-05-16T07:33:06.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5ad.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.191000", - "Timestamp": "2019-10-15T17:26:34.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.237700", + "Timestamp": "2024-05-16T07:33:06.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181400", + "Timestamp": "2024-05-16T07:33:06.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.191000", - "Timestamp": "2019-10-15T17:26:34.000Z" + "SpotPrice": "1.338200", + "Timestamp": "2024-05-16T07:33:06.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135400", - "Timestamp": "2019-10-15T17:26:34.000Z" + "SpotPrice": "1.333200", + "Timestamp": "2024-05-16T07:33:06.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5ad.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.231000", - "Timestamp": "2019-10-15T17:26:34.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.208200", + "Timestamp": "2024-05-16T07:33:06.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.781300", + "Timestamp": "2024-05-16T07:33:05.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.881800", + "Timestamp": "2024-05-16T07:33:04.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.231000", - "Timestamp": "2019-10-15T17:26:34.000Z" + "SpotPrice": "1.851800", + "Timestamp": "2024-05-16T07:33:04.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035400", - "Timestamp": "2019-10-15T17:26:34.000Z" + "SpotPrice": "1.751800", + "Timestamp": "2024-05-16T07:33:04.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5ad.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.131000", - "Timestamp": "2019-10-15T17:26:34.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.472200", + "Timestamp": "2024-05-16T07:33:04.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5ad.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.131000", - "Timestamp": "2019-10-15T17:26:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.330300", + "Timestamp": "2024-05-16T07:33:04.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066300", - "Timestamp": "2019-10-15T17:26:28.000Z" + "SpotPrice": "2.249000", + "Timestamp": "2024-05-16T07:33:04.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066300", - "Timestamp": "2019-10-15T17:26:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.244000", + "Timestamp": "2024-05-16T07:33:04.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066300", - "Timestamp": "2019-10-15T17:26:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.119000", + "Timestamp": "2024-05-16T07:33:04.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c1.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066300", - "Timestamp": "2019-10-15T17:26:28.000Z" + "SpotPrice": "0.341200", + "Timestamp": "2024-05-16T07:33:03.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c1.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.106300", - "Timestamp": "2019-10-15T17:26:28.000Z" + "SpotPrice": "0.311200", + "Timestamp": "2024-05-16T07:33:03.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.106300", - "Timestamp": "2019-10-15T17:26:28.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.211200", + "Timestamp": "2024-05-16T07:33:03.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.106300", - "Timestamp": "2019-10-15T17:26:28.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118500", + "Timestamp": "2024-05-16T07:33:03.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.106300", - "Timestamp": "2019-10-15T17:26:28.000Z" + "SpotPrice": "0.114800", + "Timestamp": "2024-05-16T07:33:03.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006300", - "Timestamp": "2019-10-15T17:26:28.000Z" + "SpotPrice": "0.058500", + "Timestamp": "2024-05-16T07:33:03.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006300", - "Timestamp": "2019-10-15T17:26:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.517700", + "Timestamp": "2024-05-16T07:33:03.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006300", - "Timestamp": "2019-10-15T17:26:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.313100", + "Timestamp": "2024-05-16T07:33:02.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006300", - "Timestamp": "2019-10-15T17:26:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.628700", + "Timestamp": "2024-05-16T07:33:02.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.127400", - "Timestamp": "2019-10-15T17:26:07.000Z" + "SpotPrice": "4.146200", + "Timestamp": "2024-05-16T07:33:02.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.223000", - "Timestamp": "2019-10-15T17:26:07.000Z" + "SpotPrice": "3.695400", + "Timestamp": "2024-05-16T07:33:02.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093700", - "Timestamp": "2019-10-15T17:25:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.375600", + "Timestamp": "2024-05-16T07:33:02.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093700", - "Timestamp": "2019-10-15T17:25:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.314200", + "Timestamp": "2024-05-16T07:33:01.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "inf1.6xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093700", - "Timestamp": "2019-10-15T17:25:49.000Z" + "SpotPrice": "0.702200", + "Timestamp": "2024-05-16T07:33:01.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "inf1.6xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133700", - "Timestamp": "2019-10-15T17:25:49.000Z" + "SpotPrice": "0.697200", + "Timestamp": "2024-05-16T07:33:01.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r4.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133700", - "Timestamp": "2019-10-15T17:25:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.572200", + "Timestamp": "2024-05-16T07:33:01.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r4.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133700", - "Timestamp": "2019-10-15T17:25:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.813900", + "Timestamp": "2024-05-16T07:33:01.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033700", - "Timestamp": "2019-10-15T17:25:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.102100", + "Timestamp": "2024-05-16T07:33:01.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033700", - "Timestamp": "2019-10-15T17:25:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.097100", + "Timestamp": "2024-05-16T07:33:01.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033700", - "Timestamp": "2019-10-15T17:25:49.000Z" + "SpotPrice": "0.972100", + "Timestamp": "2024-05-16T07:33:01.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3.small", - "ProductDescription": "Windows", - "SpotPrice": "0.024700", - "Timestamp": "2019-10-15T17:25:46.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136700", + "Timestamp": "2024-05-16T07:33:01.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3.small", - "ProductDescription": "Windows", - "SpotPrice": "0.024700", - "Timestamp": "2019-10-15T17:25:46.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133000", + "Timestamp": "2024-05-16T07:33:01.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3.small", - "ProductDescription": "Windows", - "SpotPrice": "0.024700", - "Timestamp": "2019-10-15T17:25:46.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076700", + "Timestamp": "2024-05-16T07:33:01.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.metal", "ProductDescription": "Windows", - "SpotPrice": "0.024700", - "Timestamp": "2019-10-15T17:25:46.000Z" + "SpotPrice": "9.994200", + "Timestamp": "2024-05-16T07:33:00.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.230200", - "Timestamp": "2019-10-15T17:25:38.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.230200", - "Timestamp": "2019-10-15T17:25:38.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.352300", + "Timestamp": "2024-05-16T07:33:00.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.230200", - "Timestamp": "2019-10-15T17:25:38.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.856400", + "Timestamp": "2024-05-16T07:33:00.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.230200", - "Timestamp": "2019-10-15T17:25:38.000Z" + "SpotPrice": "4.691700", + "Timestamp": "2024-05-16T07:32:59.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.200200", - "Timestamp": "2019-10-15T17:25:38.000Z" + "SpotPrice": "4.686700", + "Timestamp": "2024-05-16T07:32:59.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.200200", - "Timestamp": "2019-10-15T17:25:38.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.561700", + "Timestamp": "2024-05-16T07:32:59.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.200200", - "Timestamp": "2019-10-15T17:25:38.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.294100", + "Timestamp": "2024-05-16T07:32:59.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.200200", - "Timestamp": "2019-10-15T17:25:38.000Z" + "SpotPrice": "2.264100", + "Timestamp": "2024-05-16T07:32:59.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.100200", - "Timestamp": "2019-10-15T17:25:38.000Z" + "SpotPrice": "2.164100", + "Timestamp": "2024-05-16T07:32:59.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.100200", - "Timestamp": "2019-10-15T17:25:38.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.358300", + "Timestamp": "2024-05-16T07:32:58.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.100200", - "Timestamp": "2019-10-15T17:25:38.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.353300", + "Timestamp": "2024-05-16T07:32:58.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.metal-24xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.100200", - "Timestamp": "2019-10-15T17:25:38.000Z" + "SpotPrice": "2.228300", + "Timestamp": "2024-05-16T07:32:58.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.478200", - "Timestamp": "2019-10-15T17:24:02.000Z" + "SpotPrice": "0.230100", + "Timestamp": "2024-05-16T07:32:56.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.448200", - "Timestamp": "2019-10-15T17:24:02.000Z" + "SpotPrice": "0.226400", + "Timestamp": "2024-05-16T07:32:56.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.348200", - "Timestamp": "2019-10-15T17:24:02.000Z" + "SpotPrice": "0.170100", + "Timestamp": "2024-05-16T07:32:56.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-15T17:23:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.842300", + "Timestamp": "2024-05-16T07:32:56.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135500", - "Timestamp": "2019-10-15T17:15:53.000Z" + "SpotPrice": "0.862000", + "Timestamp": "2024-05-16T07:32:56.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175500", - "Timestamp": "2019-10-15T17:15:53.000Z" + "SpotPrice": "0.837300", + "Timestamp": "2024-05-16T07:32:56.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.857000", + "Timestamp": "2024-05-16T07:32:56.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075500", - "Timestamp": "2019-10-15T17:15:53.000Z" + "SpotPrice": "0.712300", + "Timestamp": "2024-05-16T07:32:56.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.254800", - "Timestamp": "2019-10-15T17:15:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.732000", + "Timestamp": "2024-05-16T07:32:56.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.254800", - "Timestamp": "2019-10-15T17:15:40.000Z" + "SpotPrice": "0.550300", + "Timestamp": "2024-05-16T07:32:56.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.metal", "ProductDescription": "Windows", - "SpotPrice": "0.254800", - "Timestamp": "2019-10-15T17:15:40.000Z" + "SpotPrice": "13.445200", + "Timestamp": "2024-05-16T07:32:55.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.163800", - "Timestamp": "2019-10-15T17:15:30.000Z" + "SpotPrice": "0.514200", + "Timestamp": "2024-05-16T07:32:55.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.752600", - "Timestamp": "2019-10-15T17:14:56.000Z" + "SpotPrice": "1.115600", + "Timestamp": "2024-05-16T07:32:55.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.722600", - "Timestamp": "2019-10-15T17:14:56.000Z" + "SpotPrice": "1.110600", + "Timestamp": "2024-05-16T07:32:55.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.622600", - "Timestamp": "2019-10-15T17:14:56.000Z" + "SpotPrice": "0.985600", + "Timestamp": "2024-05-16T07:32:55.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.502900", - "Timestamp": "2019-10-15T17:11:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.933600", + "Timestamp": "2024-05-16T07:32:54.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.502900", - "Timestamp": "2019-10-15T17:11:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.928600", + "Timestamp": "2024-05-16T07:32:54.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.502900", - "Timestamp": "2019-10-15T17:11:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.803600", + "Timestamp": "2024-05-16T07:32:54.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.490600", - "Timestamp": "2019-10-15T17:11:05.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.083700", + "Timestamp": "2024-05-16T07:32:54.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.490600", - "Timestamp": "2019-10-15T17:11:05.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.078700", + "Timestamp": "2024-05-16T07:32:54.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.490600", - "Timestamp": "2019-10-15T17:11:05.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.953700", + "Timestamp": "2024-05-16T07:32:54.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1e.32xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "8.136400", - "Timestamp": "2019-10-15T17:10:59.000Z" + "SpotPrice": "2.396200", + "Timestamp": "2024-05-16T07:32:54.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1e.32xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.391200", + "Timestamp": "2024-05-16T07:32:54.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.266200", + "Timestamp": "2024-05-16T07:32:54.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "8.136400", - "Timestamp": "2019-10-15T17:10:59.000Z" + "SpotPrice": "0.148200", + "Timestamp": "2024-05-16T07:32:54.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1e.32xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "8.106400", - "Timestamp": "2019-10-15T17:10:59.000Z" + "SpotPrice": "0.144500", + "Timestamp": "2024-05-16T07:32:54.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1e.32xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088200", + "Timestamp": "2024-05-16T07:32:54.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.837700", + "Timestamp": "2024-05-16T07:32:54.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7gd.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "8.106400", - "Timestamp": "2019-10-15T17:10:59.000Z" + "SpotPrice": "0.832700", + "Timestamp": "2024-05-16T07:32:54.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1e.32xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "8.006400", - "Timestamp": "2019-10-15T17:10:59.000Z" + "SpotPrice": "0.707700", + "Timestamp": "2024-05-16T07:32:54.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "8.006400", - "Timestamp": "2019-10-15T17:10:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.185200", + "Timestamp": "2024-05-16T07:32:54.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.038600", - "Timestamp": "2019-10-15T17:10:55.000Z" + "SpotPrice": "9.334500", + "Timestamp": "2024-05-16T07:32:54.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.038600", - "Timestamp": "2019-10-15T17:10:55.000Z" + "SpotPrice": "8.736200", + "Timestamp": "2024-05-16T07:32:54.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "9.360000", - "Timestamp": "2019-10-15T17:10:55.000Z" + "SpotPrice": "2.527500", + "Timestamp": "2024-05-16T07:32:53.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "9.360000", - "Timestamp": "2019-10-15T17:10:55.000Z" + "SpotPrice": "2.481200", + "Timestamp": "2024-05-16T07:32:53.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.115900", - "Timestamp": "2019-10-15T17:10:54.000Z" + "SpotPrice": "0.666700", + "Timestamp": "2024-05-16T07:32:53.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.115900", - "Timestamp": "2019-10-15T17:10:54.000Z" + "SpotPrice": "4.356500", + "Timestamp": "2024-05-16T07:32:53.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.115900", - "Timestamp": "2019-10-15T17:10:54.000Z" + "SpotPrice": "6.561300", + "Timestamp": "2024-05-16T07:32:53.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.115900", - "Timestamp": "2019-10-15T17:10:54.000Z" + "SpotPrice": "9.466300", + "Timestamp": "2024-05-16T07:32:52.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.829900", - "Timestamp": "2019-10-15T17:10:20.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.459300", + "Timestamp": "2024-05-16T07:32:52.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2idn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.829900", - "Timestamp": "2019-10-15T17:10:20.000Z" + "SpotPrice": "4.096500", + "Timestamp": "2024-05-16T07:32:52.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2idn.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.799900", - "Timestamp": "2019-10-15T17:10:20.000Z" + "SpotPrice": "4.091500", + "Timestamp": "2024-05-16T07:32:52.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.966500", + "Timestamp": "2024-05-16T07:32:52.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.973900", + "Timestamp": "2024-05-16T07:32:50.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7gd.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.799900", - "Timestamp": "2019-10-15T17:10:20.000Z" + "SpotPrice": "0.968900", + "Timestamp": "2024-05-16T07:32:50.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.699900", - "Timestamp": "2019-10-15T17:10:20.000Z" + "SpotPrice": "0.843900", + "Timestamp": "2024-05-16T07:32:50.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.699900", - "Timestamp": "2019-10-15T17:10:20.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.198100", + "Timestamp": "2024-05-16T07:32:50.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Windows", - "SpotPrice": "13.894400", - "Timestamp": "2019-10-15T17:10:18.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.293200", + "Timestamp": "2024-05-16T07:32:50.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Windows", - "SpotPrice": "13.894400", - "Timestamp": "2019-10-15T17:10:18.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.193100", + "Timestamp": "2024-05-16T07:32:50.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.491200", - "Timestamp": "2019-10-15T17:10:17.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.288200", + "Timestamp": "2024-05-16T07:32:50.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.491200", - "Timestamp": "2019-10-15T17:10:17.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.068100", + "Timestamp": "2024-05-16T07:32:50.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g4dn.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.163200", + "Timestamp": "2024-05-16T07:32:50.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "a1.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.491200", - "Timestamp": "2019-10-15T17:10:17.000Z" + "SpotPrice": "0.116900", + "Timestamp": "2024-05-16T07:32:49.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g4dn.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "a1.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.461200", - "Timestamp": "2019-10-15T17:10:17.000Z" + "SpotPrice": "0.113200", + "Timestamp": "2024-05-16T07:32:49.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.461200", - "Timestamp": "2019-10-15T17:10:17.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "a1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056900", + "Timestamp": "2024-05-16T07:32:49.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g4dn.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.495400", + "Timestamp": "2024-05-16T07:32:49.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.461200", - "Timestamp": "2019-10-15T17:10:17.000Z" + "SpotPrice": "0.490400", + "Timestamp": "2024-05-16T07:32:49.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g4dn.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.361200", - "Timestamp": "2019-10-15T17:10:17.000Z" + "SpotPrice": "0.365400", + "Timestamp": "2024-05-16T07:32:49.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.361200", - "Timestamp": "2019-10-15T17:10:17.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.909800", + "Timestamp": "2024-05-16T07:32:49.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g4dn.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.904800", + "Timestamp": "2024-05-16T07:32:49.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.361200", - "Timestamp": "2019-10-15T17:10:17.000Z" + "SpotPrice": "1.779800", + "Timestamp": "2024-05-16T07:32:49.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-15T17:10:06.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.832400", + "Timestamp": "2024-05-16T07:32:49.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-15T17:10:06.000Z" + "SpotPrice": "0.376400", + "Timestamp": "2024-05-16T07:32:49.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-15T17:10:06.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.371400", + "Timestamp": "2024-05-16T07:32:49.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.246400", + "Timestamp": "2024-05-16T07:32:49.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "p2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-15T17:10:06.000Z" + "SpotPrice": "0.529300", + "Timestamp": "2024-05-16T07:32:48.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "p2.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-15T17:10:06.000Z" + "SpotPrice": "0.569300", + "Timestamp": "2024-05-16T07:32:48.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-15T17:10:06.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "p2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.469300", + "Timestamp": "2024-05-16T07:32:48.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-15T17:10:06.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.945500", + "Timestamp": "2024-05-16T07:32:48.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-15T17:10:06.000Z" + "SpotPrice": "0.940500", + "Timestamp": "2024-05-16T07:32:48.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-15T17:10:06.000Z" + "SpotPrice": "0.815500", + "Timestamp": "2024-05-16T07:32:48.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-15T17:10:06.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.286400", + "Timestamp": "2024-05-16T07:32:47.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-15T17:10:06.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.282400", + "Timestamp": "2024-05-16T07:32:47.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3en.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-15T17:10:06.000Z" + "SpotPrice": "0.226400", + "Timestamp": "2024-05-16T07:32:47.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.019300", - "Timestamp": "2019-10-15T17:09:56.000Z" + "SpotPrice": "3.710800", + "Timestamp": "2024-05-16T07:32:46.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i2.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.680000", - "Timestamp": "2019-10-15T17:09:56.000Z" + "SpotPrice": "4.949200", + "Timestamp": "2024-05-16T07:32:46.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.680000", - "Timestamp": "2019-10-15T17:09:56.000Z" + "SpotPrice": "4.443900", + "Timestamp": "2024-05-16T07:32:46.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.941300", - "Timestamp": "2019-10-15T17:09:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.573300", + "Timestamp": "2024-05-16T07:32:46.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.941300", - "Timestamp": "2019-10-15T17:09:55.000Z" + "SpotPrice": "1.432500", + "Timestamp": "2024-05-16T07:32:45.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.602000", - "Timestamp": "2019-10-15T17:09:55.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.427500", + "Timestamp": "2024-05-16T07:32:45.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.302500", + "Timestamp": "2024-05-16T07:32:45.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.602000", - "Timestamp": "2019-10-15T17:09:55.000Z" + "SpotPrice": "2.084900", + "Timestamp": "2024-05-16T07:32:45.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.911300", - "Timestamp": "2019-10-15T17:09:55.000Z" + "SpotPrice": "2.079900", + "Timestamp": "2024-05-16T07:32:45.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.911300", - "Timestamp": "2019-10-15T17:09:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.954900", + "Timestamp": "2024-05-16T07:32:45.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.572000", - "Timestamp": "2019-10-15T17:09:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.643200", + "Timestamp": "2024-05-16T07:32:45.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130700", + "Timestamp": "2024-05-16T07:32:45.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.572000", - "Timestamp": "2019-10-15T17:09:55.000Z" + "SpotPrice": "0.127000", + "Timestamp": "2024-05-16T07:32:45.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.811300", - "Timestamp": "2019-10-15T17:09:55.000Z" + "SpotPrice": "0.070700", + "Timestamp": "2024-05-16T07:32:45.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.811300", - "Timestamp": "2019-10-15T17:09:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.944700", + "Timestamp": "2024-05-16T07:32:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.472000", - "Timestamp": "2019-10-15T17:09:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.939700", + "Timestamp": "2024-05-16T07:32:43.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.472000", - "Timestamp": "2019-10-15T17:09:55.000Z" + "SpotPrice": "1.814700", + "Timestamp": "2024-05-16T07:32:43.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.752600", - "Timestamp": "2019-10-15T17:09:55.000Z" + "SpotPrice": "0.943600", + "Timestamp": "2024-05-16T07:32:43.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.752600", - "Timestamp": "2019-10-15T17:09:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.938600", + "Timestamp": "2024-05-16T07:32:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.074000", - "Timestamp": "2019-10-15T17:09:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.813600", + "Timestamp": "2024-05-16T07:32:43.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.290200", + "Timestamp": "2024-05-16T07:32:43.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.509700", + "Timestamp": "2024-05-16T07:32:42.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.074000", - "Timestamp": "2019-10-15T17:09:55.000Z" + "SpotPrice": "0.175900", + "Timestamp": "2024-05-16T07:32:42.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m2.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.722600", - "Timestamp": "2019-10-15T17:09:55.000Z" + "SpotPrice": "0.215900", + "Timestamp": "2024-05-16T07:32:42.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.722600", - "Timestamp": "2019-10-15T17:09:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115900", + "Timestamp": "2024-05-16T07:32:42.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "5.044000", - "Timestamp": "2019-10-15T17:09:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.667900", + "Timestamp": "2024-05-16T07:32:42.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "5.044000", - "Timestamp": "2019-10-15T17:09:55.000Z" + "SpotPrice": "0.662900", + "Timestamp": "2024-05-16T07:32:42.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.622600", - "Timestamp": "2019-10-15T17:09:55.000Z" + "SpotPrice": "0.537900", + "Timestamp": "2024-05-16T07:32:42.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.622600", - "Timestamp": "2019-10-15T17:09:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.545500", + "Timestamp": "2024-05-16T07:32:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.944000", - "Timestamp": "2019-10-15T17:09:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.540500", + "Timestamp": "2024-05-16T07:32:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.944000", - "Timestamp": "2019-10-15T17:09:55.000Z" + "SpotPrice": "0.415500", + "Timestamp": "2024-05-16T07:32:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.290000", - "Timestamp": "2019-10-15T17:09:52.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.150900", + "Timestamp": "2024-05-16T07:32:40.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.290000", - "Timestamp": "2019-10-15T17:09:52.000Z" + "SpotPrice": "1.067200", + "Timestamp": "2024-05-16T07:32:39.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.260000", - "Timestamp": "2019-10-15T17:09:52.000Z" + "SpotPrice": "1.037200", + "Timestamp": "2024-05-16T07:32:39.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.937200", + "Timestamp": "2024-05-16T07:32:39.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.470900", + "Timestamp": "2024-05-16T07:32:39.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.260000", - "Timestamp": "2019-10-15T17:09:52.000Z" + "SpotPrice": "3.465900", + "Timestamp": "2024-05-16T07:32:39.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.160000", - "Timestamp": "2019-10-15T17:09:52.000Z" + "SpotPrice": "3.340900", + "Timestamp": "2024-05-16T07:32:39.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.113800", + "Timestamp": "2024-05-16T07:32:39.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.083800", + "Timestamp": "2024-05-16T07:32:39.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "g3.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.160000", - "Timestamp": "2019-10-15T17:09:52.000Z" + "SpotPrice": "0.983800", + "Timestamp": "2024-05-16T07:32:39.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.441600", - "Timestamp": "2019-10-15T17:09:45.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.473500", + "Timestamp": "2024-05-16T07:32:38.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.441600", - "Timestamp": "2019-10-15T17:09:45.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.443500", + "Timestamp": "2024-05-16T07:32:38.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.441600", - "Timestamp": "2019-10-15T17:09:45.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.343500", + "Timestamp": "2024-05-16T07:32:38.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.441600", - "Timestamp": "2019-10-15T17:09:45.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.204400", + "Timestamp": "2024-05-16T07:32:38.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.632000", - "Timestamp": "2019-10-15T17:09:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.200700", + "Timestamp": "2024-05-16T07:32:38.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.632000", - "Timestamp": "2019-10-15T17:09:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144400", + "Timestamp": "2024-05-16T07:32:38.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iezn.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.632000", - "Timestamp": "2019-10-15T17:09:41.000Z" + "SpotPrice": "2.057600", + "Timestamp": "2024-05-16T07:32:38.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iezn.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.006200", - "Timestamp": "2019-10-15T17:09:39.000Z" + "SpotPrice": "2.066600", + "Timestamp": "2024-05-16T07:32:38.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006200", - "Timestamp": "2019-10-15T17:09:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120600", + "Timestamp": "2024-05-16T07:32:38.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006200", - "Timestamp": "2019-10-15T17:09:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T07:32:38.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006200", - "Timestamp": "2019-10-15T17:09:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060600", + "Timestamp": "2024-05-16T07:32:38.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.251600", - "Timestamp": "2019-10-15T17:09:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.328200", + "Timestamp": "2024-05-16T07:32:37.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.251600", - "Timestamp": "2019-10-15T17:09:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323200", + "Timestamp": "2024-05-16T07:32:37.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.251600", - "Timestamp": "2019-10-15T17:09:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.198200", + "Timestamp": "2024-05-16T07:32:37.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.251600", - "Timestamp": "2019-10-15T17:09:35.000Z" + "SpotPrice": "5.417500", + "Timestamp": "2024-05-16T07:32:37.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1e.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.130800", - "Timestamp": "2019-10-15T17:09:30.000Z" + "SpotPrice": "0.097400", + "Timestamp": "2024-05-16T07:32:37.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.130800", - "Timestamp": "2019-10-15T17:09:30.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093700", + "Timestamp": "2024-05-16T07:32:37.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.100800", - "Timestamp": "2019-10-15T17:09:30.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037400", + "Timestamp": "2024-05-16T07:32:37.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1e.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.187000", + "Timestamp": "2024-05-16T07:32:37.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7g.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.100800", - "Timestamp": "2019-10-15T17:09:30.000Z" + "SpotPrice": "1.182000", + "Timestamp": "2024-05-16T07:32:37.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1e.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.000800", - "Timestamp": "2019-10-15T17:09:30.000Z" + "SpotPrice": "1.057000", + "Timestamp": "2024-05-16T07:32:37.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.000800", - "Timestamp": "2019-10-15T17:09:30.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.884000", + "Timestamp": "2024-05-16T07:32:37.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.736800", - "Timestamp": "2019-10-15T17:09:29.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.879000", + "Timestamp": "2024-05-16T07:32:37.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.736800", - "Timestamp": "2019-10-15T17:09:29.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.754000", + "Timestamp": "2024-05-16T07:32:37.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.006400", - "Timestamp": "2019-10-15T17:09:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-16T07:32:37.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.006400", - "Timestamp": "2019-10-15T17:09:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152600", + "Timestamp": "2024-05-16T07:32:37.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.006400", - "Timestamp": "2019-10-15T17:09:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052600", + "Timestamp": "2024-05-16T07:32:37.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.9xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.006400", - "Timestamp": "2019-10-15T17:09:15.000Z" + "SpotPrice": "2.417500", + "Timestamp": "2024-05-16T07:32:36.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t4g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.696600", - "Timestamp": "2019-10-15T17:08:49.000Z" + "SpotPrice": "0.093100", + "Timestamp": "2024-05-16T07:32:36.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t4g.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.666600", - "Timestamp": "2019-10-15T17:08:49.000Z" + "SpotPrice": "0.089400", + "Timestamp": "2024-05-16T07:32:36.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t4g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.566600", - "Timestamp": "2019-10-15T17:08:49.000Z" - }, - { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5n.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.038600", - "Timestamp": "2019-10-15T17:08:36.000Z" + "SpotPrice": "0.033100", + "Timestamp": "2024-05-16T07:32:36.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012300", - "Timestamp": "2019-10-15T17:08:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.959700", + "Timestamp": "2024-05-16T07:32:36.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012300", - "Timestamp": "2019-10-15T17:08:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.954700", + "Timestamp": "2024-05-16T07:32:36.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012300", - "Timestamp": "2019-10-15T17:08:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.829700", + "Timestamp": "2024-05-16T07:32:36.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.012300", - "Timestamp": "2019-10-15T17:08:25.000Z" + "SpotPrice": "0.525500", + "Timestamp": "2024-05-16T07:32:36.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061600", - "Timestamp": "2019-10-15T17:08:19.000Z" + "SpotPrice": "1.736700", + "Timestamp": "2024-05-16T07:32:36.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061600", - "Timestamp": "2019-10-15T17:08:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.731700", + "Timestamp": "2024-05-16T07:32:36.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061600", - "Timestamp": "2019-10-15T17:08:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.606700", + "Timestamp": "2024-05-16T07:32:36.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-1e", + "InstanceType": "m3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061600", - "Timestamp": "2019-10-15T17:08:19.000Z" + "SpotPrice": "0.203600", + "Timestamp": "2024-05-16T07:32:35.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-1e", + "InstanceType": "m3.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.101600", - "Timestamp": "2019-10-15T17:08:19.000Z" + "SpotPrice": "0.243600", + "Timestamp": "2024-05-16T07:32:35.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3.nano", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.101600", - "Timestamp": "2019-10-15T17:08:19.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "m3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143600", + "Timestamp": "2024-05-16T07:32:35.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3.nano", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.101600", - "Timestamp": "2019-10-15T17:08:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.382500", + "Timestamp": "2024-05-16T07:32:35.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1e.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.101600", - "Timestamp": "2019-10-15T17:08:19.000Z" + "SpotPrice": "0.378500", + "Timestamp": "2024-05-16T07:32:35.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1e.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001600", - "Timestamp": "2019-10-15T17:08:19.000Z" + "SpotPrice": "0.322500", + "Timestamp": "2024-05-16T07:32:35.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001600", - "Timestamp": "2019-10-15T17:08:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.813800", + "Timestamp": "2024-05-16T07:32:35.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001600", - "Timestamp": "2019-10-15T17:08:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.808800", + "Timestamp": "2024-05-16T07:32:35.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001600", - "Timestamp": "2019-10-15T17:08:19.000Z" + "SpotPrice": "2.683800", + "Timestamp": "2024-05-16T07:32:35.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5dn.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.413300", - "Timestamp": "2019-10-15T17:07:49.000Z" + "SpotPrice": "2.359300", + "Timestamp": "2024-05-16T07:32:35.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.354300", + "Timestamp": "2024-05-16T07:32:35.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.229300", + "Timestamp": "2024-05-16T07:32:35.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.413300", - "Timestamp": "2019-10-15T17:07:49.000Z" + "SpotPrice": "0.136600", + "Timestamp": "2024-05-16T07:32:35.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5dn.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.383300", - "Timestamp": "2019-10-15T17:07:49.000Z" + "SpotPrice": "0.132900", + "Timestamp": "2024-05-16T07:32:35.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076600", + "Timestamp": "2024-05-16T07:32:35.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.346100", + "Timestamp": "2024-05-16T07:32:35.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.383300", - "Timestamp": "2019-10-15T17:07:49.000Z" + "SpotPrice": "0.341100", + "Timestamp": "2024-05-16T07:32:35.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5dn.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.283300", - "Timestamp": "2019-10-15T17:07:49.000Z" + "SpotPrice": "0.216100", + "Timestamp": "2024-05-16T07:32:35.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.283300", - "Timestamp": "2019-10-15T17:07:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Windows", + "SpotPrice": "10.000900", + "Timestamp": "2024-05-16T07:32:34.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t1.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062000", - "Timestamp": "2019-10-15T17:07:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.343900", + "Timestamp": "2024-05-16T07:32:34.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t1.micro", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062000", - "Timestamp": "2019-10-15T17:07:40.000Z" + "SpotPrice": "0.177000", + "Timestamp": "2024-05-16T07:32:34.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t1.micro", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173300", + "Timestamp": "2024-05-16T07:32:34.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.117000", + "Timestamp": "2024-05-16T07:32:34.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i-flex.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062000", - "Timestamp": "2019-10-15T17:07:40.000Z" + "SpotPrice": "0.995800", + "Timestamp": "2024-05-16T07:32:33.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t1.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-15T17:07:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.877600", + "Timestamp": "2024-05-16T07:32:33.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t1.micro", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i-flex.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-15T17:07:40.000Z" + "SpotPrice": "0.990800", + "Timestamp": "2024-05-16T07:32:33.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t1.micro", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i-flex.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-15T17:07:40.000Z" + "SpotPrice": "0.872600", + "Timestamp": "2024-05-16T07:32:33.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t1.micro", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i-flex.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T17:07:40.000Z" + "SpotPrice": "0.865800", + "Timestamp": "2024-05-16T07:32:33.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t1.micro", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i-flex.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T17:07:40.000Z" + "SpotPrice": "0.747600", + "Timestamp": "2024-05-16T07:32:33.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t1.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T17:07:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.075600", + "Timestamp": "2024-05-16T07:32:33.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.510000", - "Timestamp": "2019-10-15T17:07:33.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.070600", + "Timestamp": "2024-05-16T07:32:33.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.544000", - "Timestamp": "2019-10-15T17:07:33.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.945600", + "Timestamp": "2024-05-16T07:32:33.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.544000", - "Timestamp": "2019-10-15T17:07:33.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.143000", + "Timestamp": "2024-05-16T07:32:33.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.544000", - "Timestamp": "2019-10-15T17:07:33.000Z" + "SpotPrice": "1.821700", + "Timestamp": "2024-05-16T07:32:32.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.480000", - "Timestamp": "2019-10-15T17:07:33.000Z" + "SpotPrice": "1.816700", + "Timestamp": "2024-05-16T07:32:32.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.514000", - "Timestamp": "2019-10-15T17:07:33.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.691700", + "Timestamp": "2024-05-16T07:32:32.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.514000", - "Timestamp": "2019-10-15T17:07:33.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.266000", + "Timestamp": "2024-05-16T07:32:32.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.514000", - "Timestamp": "2019-10-15T17:07:33.000Z" + "SpotPrice": "1.261000", + "Timestamp": "2024-05-16T07:32:32.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.380000", - "Timestamp": "2019-10-15T17:07:33.000Z" + "SpotPrice": "1.136000", + "Timestamp": "2024-05-16T07:32:32.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.414000", - "Timestamp": "2019-10-15T17:07:33.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.688600", + "Timestamp": "2024-05-16T07:32:32.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.414000", - "Timestamp": "2019-10-15T17:07:33.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.995900", + "Timestamp": "2024-05-16T07:32:32.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.414000", - "Timestamp": "2019-10-15T17:07:33.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.990900", + "Timestamp": "2024-05-16T07:32:32.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.019300", - "Timestamp": "2019-10-15T17:07:30.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.865900", + "Timestamp": "2024-05-16T07:32:32.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.019300", - "Timestamp": "2019-10-15T17:07:30.000Z" + "SpotPrice": "1.122000", + "Timestamp": "2024-05-16T07:32:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.157100", - "Timestamp": "2019-10-15T17:07:19.000Z" + "SpotPrice": "12.410900", + "Timestamp": "2024-05-16T07:32:30.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.245300", - "Timestamp": "2019-10-15T17:07:18.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.986400", + "Timestamp": "2024-05-16T07:32:30.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.245300", - "Timestamp": "2019-10-15T17:07:18.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.981400", + "Timestamp": "2024-05-16T07:32:30.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.245300", - "Timestamp": "2019-10-15T17:07:18.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.856400", + "Timestamp": "2024-05-16T07:32:30.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120100", - "Timestamp": "2019-10-15T17:07:17.000Z" + "SpotPrice": "1.470500", + "Timestamp": "2024-05-16T07:32:30.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.160100", - "Timestamp": "2019-10-15T17:07:17.000Z" + "SpotPrice": "1.465500", + "Timestamp": "2024-05-16T07:32:30.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060100", - "Timestamp": "2019-10-15T17:07:17.000Z" + "SpotPrice": "1.340500", + "Timestamp": "2024-05-16T07:32:30.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t1.micro", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T17:07:15.000Z" + "SpotPrice": "0.260500", + "Timestamp": "2024-05-16T07:32:30.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t1.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T17:07:15.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.900400", + "Timestamp": "2024-05-16T07:32:29.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t1.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T17:07:15.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.895400", + "Timestamp": "2024-05-16T07:32:29.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.019300", - "Timestamp": "2019-10-15T17:07:13.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.770400", + "Timestamp": "2024-05-16T07:32:29.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.784000", - "Timestamp": "2019-10-15T17:07:13.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.622400", + "Timestamp": "2024-05-16T07:32:29.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.784000", - "Timestamp": "2019-10-15T17:07:13.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.617400", + "Timestamp": "2024-05-16T07:32:29.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.496800", - "Timestamp": "2019-10-15T17:07:11.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.492400", + "Timestamp": "2024-05-16T07:32:29.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.496800", - "Timestamp": "2019-10-15T17:07:11.000Z" + "SpotPrice": "0.569600", + "Timestamp": "2024-05-16T07:32:29.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.large", "ProductDescription": "Windows", - "SpotPrice": "0.496800", - "Timestamp": "2019-10-15T17:07:11.000Z" + "SpotPrice": "0.140900", + "Timestamp": "2024-05-16T07:32:28.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.large", "ProductDescription": "Windows", - "SpotPrice": "0.496800", - "Timestamp": "2019-10-15T17:07:11.000Z" + "SpotPrice": "0.141500", + "Timestamp": "2024-05-16T07:32:28.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.413300", - "Timestamp": "2019-10-15T17:07:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.530600", + "Timestamp": "2024-05-16T07:32:27.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.178000", - "Timestamp": "2019-10-15T17:07:11.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.462400", + "Timestamp": "2024-05-16T07:32:27.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.178000", - "Timestamp": "2019-10-15T17:07:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.172500", + "Timestamp": "2024-05-16T07:32:27.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.178000", - "Timestamp": "2019-10-15T17:07:11.000Z" - }, - { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.383300", - "Timestamp": "2019-10-15T17:07:11.000Z" + "SpotPrice": "5.540500", + "Timestamp": "2024-05-16T07:32:27.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.148000", - "Timestamp": "2019-10-15T17:07:11.000Z" + "SpotPrice": "5.535500", + "Timestamp": "2024-05-16T07:32:27.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.148000", - "Timestamp": "2019-10-15T17:07:11.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.410500", + "Timestamp": "2024-05-16T07:32:27.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.148000", - "Timestamp": "2019-10-15T17:07:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.065000", + "Timestamp": "2024-05-16T07:32:26.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.283300", - "Timestamp": "2019-10-15T17:07:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.280900", + "Timestamp": "2024-05-16T07:32:26.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.048000", - "Timestamp": "2019-10-15T17:07:11.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.312300", + "Timestamp": "2024-05-16T07:32:26.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.048000", - "Timestamp": "2019-10-15T17:07:11.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.310000", + "Timestamp": "2024-05-16T07:32:25.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.048000", - "Timestamp": "2019-10-15T17:07:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.495600", + "Timestamp": "2024-05-16T07:32:25.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m4.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.147100", - "Timestamp": "2019-10-15T17:07:04.000Z" + "SpotPrice": "0.156100", + "Timestamp": "2024-05-16T07:32:25.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m4.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.187100", - "Timestamp": "2019-10-15T17:07:04.000Z" + "SpotPrice": "0.196100", + "Timestamp": "2024-05-16T07:32:25.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m4.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.087100", - "Timestamp": "2019-10-15T17:07:04.000Z" + "SpotPrice": "0.096100", + "Timestamp": "2024-05-16T07:32:25.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "m4.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T17:06:58.000Z" + "SpotPrice": "1.598500", + "Timestamp": "2024-05-16T07:32:24.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "m4.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.167600", - "Timestamp": "2019-10-15T17:06:58.000Z" + "SpotPrice": "1.568500", + "Timestamp": "2024-05-16T07:32:24.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "m4.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067600", - "Timestamp": "2019-10-15T17:06:58.000Z" + "SpotPrice": "1.468500", + "Timestamp": "2024-05-16T07:32:24.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063100", - "Timestamp": "2019-10-15T17:06:57.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.338500", + "Timestamp": "2024-05-16T07:32:23.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d2.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063100", - "Timestamp": "2019-10-15T17:06:57.000Z" + "SpotPrice": "1.348500", + "Timestamp": "2024-05-16T07:32:23.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063100", - "Timestamp": "2019-10-15T17:06:57.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.318500", + "Timestamp": "2024-05-16T07:32:23.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063100", - "Timestamp": "2019-10-15T17:06:57.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.218500", + "Timestamp": "2024-05-16T07:32:23.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.103100", - "Timestamp": "2019-10-15T17:06:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.239300", + "Timestamp": "2024-05-16T07:32:23.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.103100", - "Timestamp": "2019-10-15T17:06:57.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.381000", + "Timestamp": "2024-05-16T07:32:23.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.103100", - "Timestamp": "2019-10-15T17:06:57.000Z" + "SpotPrice": "1.234300", + "Timestamp": "2024-05-16T07:32:23.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7gd.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.103100", - "Timestamp": "2019-10-15T17:06:57.000Z" + "SpotPrice": "1.376000", + "Timestamp": "2024-05-16T07:32:23.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003100", - "Timestamp": "2019-10-15T17:06:57.000Z" + "SpotPrice": "1.109300", + "Timestamp": "2024-05-16T07:32:23.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003100", - "Timestamp": "2019-10-15T17:06:57.000Z" + "SpotPrice": "1.251000", + "Timestamp": "2024-05-16T07:32:23.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003100", - "Timestamp": "2019-10-15T17:06:57.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.269700", + "Timestamp": "2024-05-16T07:32:22.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.554900", + "Timestamp": "2024-05-16T07:32:22.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.549900", + "Timestamp": "2024-05-16T07:32:22.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003100", - "Timestamp": "2019-10-15T17:06:57.000Z" + "SpotPrice": "0.424900", + "Timestamp": "2024-05-16T07:32:22.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.601000", - "Timestamp": "2019-10-15T17:06:56.000Z" + "SpotPrice": "0.264600", + "Timestamp": "2024-05-16T07:32:22.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.metal", "ProductDescription": "Windows", - "SpotPrice": "0.635000", - "Timestamp": "2019-10-15T17:06:56.000Z" + "SpotPrice": "4.949700", + "Timestamp": "2024-05-16T07:32:22.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.635000", - "Timestamp": "2019-10-15T17:06:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.736600", + "Timestamp": "2024-05-16T07:32:21.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.635000", - "Timestamp": "2019-10-15T17:06:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.731600", + "Timestamp": "2024-05-16T07:32:21.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.237400", - "Timestamp": "2019-10-15T17:06:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.606600", + "Timestamp": "2024-05-16T07:32:21.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.237400", - "Timestamp": "2019-10-15T17:06:54.000Z" + "SpotPrice": "4.176100", + "Timestamp": "2024-05-16T07:32:21.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.237400", - "Timestamp": "2019-10-15T17:06:54.000Z" + "SpotPrice": "3.340900", + "Timestamp": "2024-05-16T07:32:20.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.237400", - "Timestamp": "2019-10-15T17:06:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.321400", + "Timestamp": "2024-05-16T07:32:20.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.508500", - "Timestamp": "2019-10-15T17:06:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.316400", + "Timestamp": "2024-05-16T07:32:20.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.191400", + "Timestamp": "2024-05-16T07:32:20.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.metal", "ProductDescription": "Windows", - "SpotPrice": "0.508500", - "Timestamp": "2019-10-15T17:06:51.000Z" + "SpotPrice": "6.378300", + "Timestamp": "2024-05-16T07:32:20.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.large", "ProductDescription": "Windows", - "SpotPrice": "0.508500", - "Timestamp": "2019-10-15T17:06:51.000Z" + "SpotPrice": "0.152400", + "Timestamp": "2024-05-16T07:32:20.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.220200", - "Timestamp": "2019-10-15T17:06:28.000Z" + "SpotPrice": "1.251900", + "Timestamp": "2024-05-16T07:32:20.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.220200", - "Timestamp": "2019-10-15T17:06:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.221900", + "Timestamp": "2024-05-16T07:32:20.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.220200", - "Timestamp": "2019-10-15T17:06:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.121900", + "Timestamp": "2024-05-16T07:32:20.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.220200", - "Timestamp": "2019-10-15T17:06:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "12.606800", + "Timestamp": "2024-05-16T07:32:20.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.190200", - "Timestamp": "2019-10-15T17:06:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.915900", + "Timestamp": "2024-05-16T07:32:20.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.190200", - "Timestamp": "2019-10-15T17:06:28.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.971400", + "Timestamp": "2024-05-16T07:32:20.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.190200", - "Timestamp": "2019-10-15T17:06:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.375000", + "Timestamp": "2024-05-16T07:32:19.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.190200", - "Timestamp": "2019-10-15T17:06:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.377400", + "Timestamp": "2024-05-16T07:32:19.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.090200", - "Timestamp": "2019-10-15T17:06:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.370000", + "Timestamp": "2024-05-16T07:32:19.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.090200", - "Timestamp": "2019-10-15T17:06:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372400", + "Timestamp": "2024-05-16T07:32:19.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.090200", - "Timestamp": "2019-10-15T17:06:28.000Z" + "SpotPrice": "0.245000", + "Timestamp": "2024-05-16T07:32:19.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5n.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.090200", - "Timestamp": "2019-10-15T17:06:28.000Z" + "SpotPrice": "0.247400", + "Timestamp": "2024-05-16T07:32:19.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.121300", - "Timestamp": "2019-10-15T17:06:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.546700", + "Timestamp": "2024-05-16T07:32:19.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.121300", - "Timestamp": "2019-10-15T17:06:22.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.296700", + "Timestamp": "2024-05-16T07:32:18.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.161300", - "Timestamp": "2019-10-15T17:06:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.296600", + "Timestamp": "2024-05-16T07:32:18.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.161300", - "Timestamp": "2019-10-15T17:06:22.000Z" + "SpotPrice": "4.291600", + "Timestamp": "2024-05-16T07:32:18.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.061300", - "Timestamp": "2019-10-15T17:06:22.000Z" + "SpotPrice": "4.166600", + "Timestamp": "2024-05-16T07:32:18.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.061300", - "Timestamp": "2019-10-15T17:06:22.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.091600", + "Timestamp": "2024-05-16T07:32:16.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.670900", - "Timestamp": "2019-10-15T16:57:05.000Z" + "SpotPrice": "0.145200", + "Timestamp": "2024-05-16T07:32:16.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.640900", - "Timestamp": "2019-10-15T16:57:05.000Z" + "SpotPrice": "0.141500", + "Timestamp": "2024-05-16T07:32:16.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.540900", - "Timestamp": "2019-10-15T16:57:05.000Z" + "SpotPrice": "0.085200", + "Timestamp": "2024-05-16T07:32:16.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.252700", - "Timestamp": "2019-10-15T16:51:00.000Z" + "SpotPrice": "0.518500", + "Timestamp": "2024-05-16T07:32:16.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.222700", - "Timestamp": "2019-10-15T16:51:00.000Z" + "SpotPrice": "0.513500", + "Timestamp": "2024-05-16T07:32:16.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.122700", - "Timestamp": "2019-10-15T16:51:00.000Z" + "SpotPrice": "0.388500", + "Timestamp": "2024-05-16T07:32:16.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.833700", + "Timestamp": "2024-05-16T07:32:15.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.279700", - "Timestamp": "2019-10-15T16:50:37.000Z" + "SpotPrice": "0.697100", + "Timestamp": "2024-05-16T07:32:14.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.249700", - "Timestamp": "2019-10-15T16:50:37.000Z" + "SpotPrice": "0.667100", + "Timestamp": "2024-05-16T07:32:14.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.149700", - "Timestamp": "2019-10-15T16:50:37.000Z" + "SpotPrice": "0.567100", + "Timestamp": "2024-05-16T07:32:14.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.128200", - "Timestamp": "2019-10-15T16:41:53.000Z" + "SpotPrice": "0.551500", + "Timestamp": "2024-05-16T07:32:14.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.168200", - "Timestamp": "2019-10-15T16:41:53.000Z" + "SpotPrice": "0.546500", + "Timestamp": "2024-05-16T07:32:14.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.068200", - "Timestamp": "2019-10-15T16:41:53.000Z" + "SpotPrice": "0.421500", + "Timestamp": "2024-05-16T07:32:14.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5dn.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T16:38:55.000Z" + "SpotPrice": "0.748500", + "Timestamp": "2024-05-16T07:32:14.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T16:38:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.743500", + "Timestamp": "2024-05-16T07:32:14.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T16:38:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.618500", + "Timestamp": "2024-05-16T07:32:14.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.167600", - "Timestamp": "2019-10-15T16:38:55.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.074700", + "Timestamp": "2024-05-16T07:32:14.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.167600", - "Timestamp": "2019-10-15T16:38:55.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.483600", + "Timestamp": "2024-05-16T07:32:14.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.167600", - "Timestamp": "2019-10-15T16:38:55.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067600", - "Timestamp": "2019-10-15T16:38:55.000Z" + "SpotPrice": "0.478600", + "Timestamp": "2024-05-16T07:32:14.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5dn.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067600", - "Timestamp": "2019-10-15T16:38:55.000Z" + "SpotPrice": "0.353600", + "Timestamp": "2024-05-16T07:32:14.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067600", - "Timestamp": "2019-10-15T16:38:55.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "13.797100", + "Timestamp": "2024-05-16T07:32:14.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5dn.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.251600", - "Timestamp": "2019-10-15T16:38:55.000Z" + "SpotPrice": "0.522100", + "Timestamp": "2024-05-16T07:32:14.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5dn.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.251600", - "Timestamp": "2019-10-15T16:38:55.000Z" + "SpotPrice": "4.404500", + "Timestamp": "2024-05-16T07:32:14.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "r3.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.251600", - "Timestamp": "2019-10-15T16:38:55.000Z" + "SpotPrice": "1.985000", + "Timestamp": "2024-05-16T07:32:14.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.265200", - "Timestamp": "2019-10-15T16:35:13.000Z" + "SpotPrice": "0.115100", + "Timestamp": "2024-05-16T07:32:13.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.235200", - "Timestamp": "2019-10-15T16:35:13.000Z" + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T07:32:13.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.135200", - "Timestamp": "2019-10-15T16:35:13.000Z" + "SpotPrice": "0.055100", + "Timestamp": "2024-05-16T07:32:13.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.12xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "c4.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.979900", - "Timestamp": "2019-10-15T16:30:27.000Z" + "SpotPrice": "0.922200", + "Timestamp": "2024-05-16T07:32:13.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.12xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "c4.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.949900", - "Timestamp": "2019-10-15T16:30:27.000Z" + "SpotPrice": "0.892200", + "Timestamp": "2024-05-16T07:32:13.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.12xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "c4.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.849900", - "Timestamp": "2019-10-15T16:30:27.000Z" + "SpotPrice": "0.792200", + "Timestamp": "2024-05-16T07:32:13.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2idn.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.019300", - "Timestamp": "2019-10-15T16:26:53.000Z" + "SpotPrice": "5.435800", + "Timestamp": "2024-05-16T07:32:13.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.294800", - "Timestamp": "2019-10-15T16:25:58.000Z" + "SpotPrice": "0.262300", + "Timestamp": "2024-05-16T07:32:13.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.264800", - "Timestamp": "2019-10-15T16:25:58.000Z" + "SpotPrice": "0.257300", + "Timestamp": "2024-05-16T07:32:13.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.164800", - "Timestamp": "2019-10-15T16:25:58.000Z" - }, - { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.077300", - "Timestamp": "2019-10-15T16:17:31.000Z" + "SpotPrice": "0.132300", + "Timestamp": "2024-05-16T07:32:13.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.077300", - "Timestamp": "2019-10-15T16:17:31.000Z" + "SpotPrice": "2.553600", + "Timestamp": "2024-05-16T07:32:12.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.077300", - "Timestamp": "2019-10-15T16:17:31.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.659300", + "Timestamp": "2024-05-16T07:32:12.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.077300", - "Timestamp": "2019-10-15T16:17:31.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.654300", + "Timestamp": "2024-05-16T07:32:12.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-15T16:16:59.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.529300", + "Timestamp": "2024-05-16T07:32:12.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.124200", - "Timestamp": "2019-10-15T16:16:47.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5zn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144100", + "Timestamp": "2024-05-16T07:32:12.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.124200", - "Timestamp": "2019-10-15T16:16:47.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5zn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140400", + "Timestamp": "2024-05-16T07:32:12.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.124200", - "Timestamp": "2019-10-15T16:16:47.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084100", + "Timestamp": "2024-05-16T07:32:12.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.096700", - "Timestamp": "2019-10-15T16:16:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.884800", + "Timestamp": "2024-05-16T07:32:12.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.096700", - "Timestamp": "2019-10-15T16:16:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.879800", + "Timestamp": "2024-05-16T07:32:12.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.096700", - "Timestamp": "2019-10-15T16:16:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.754800", + "Timestamp": "2024-05-16T07:32:12.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.263300", - "Timestamp": "2019-10-15T16:16:36.000Z" + "SpotPrice": "0.222400", + "Timestamp": "2024-05-16T07:32:12.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.263300", - "Timestamp": "2019-10-15T16:16:36.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262400", + "Timestamp": "2024-05-16T07:32:12.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.263300", - "Timestamp": "2019-10-15T16:16:36.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162400", + "Timestamp": "2024-05-16T07:32:12.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.263300", - "Timestamp": "2019-10-15T16:16:36.000Z" + "SpotPrice": "0.099900", + "Timestamp": "2024-05-16T07:32:12.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.233300", - "Timestamp": "2019-10-15T16:16:36.000Z" + "SpotPrice": "0.095900", + "Timestamp": "2024-05-16T07:32:12.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.233300", - "Timestamp": "2019-10-15T16:16:36.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039900", + "Timestamp": "2024-05-16T07:32:12.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.233300", - "Timestamp": "2019-10-15T16:16:36.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.307900", + "Timestamp": "2024-05-16T07:32:11.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.233300", - "Timestamp": "2019-10-15T16:16:36.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.800700", + "Timestamp": "2024-05-16T07:32:11.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.133300", - "Timestamp": "2019-10-15T16:16:36.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.795700", + "Timestamp": "2024-05-16T07:32:11.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.133300", - "Timestamp": "2019-10-15T16:16:36.000Z" + "SpotPrice": "0.670700", + "Timestamp": "2024-05-16T07:32:11.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.133300", - "Timestamp": "2019-10-15T16:16:36.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.521600", + "Timestamp": "2024-05-16T07:32:07.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.133300", - "Timestamp": "2019-10-15T16:16:36.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.491600", + "Timestamp": "2024-05-16T07:32:07.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127800", - "Timestamp": "2019-10-15T16:16:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.391600", + "Timestamp": "2024-05-16T07:32:07.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127800", - "Timestamp": "2019-10-15T16:16:35.000Z" + "SpotPrice": "1.112000", + "Timestamp": "2024-05-16T07:32:05.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127800", - "Timestamp": "2019-10-15T16:16:35.000Z" + "SpotPrice": "1.099800", + "Timestamp": "2024-05-16T07:32:05.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.167800", - "Timestamp": "2019-10-15T16:16:35.000Z" + "SpotPrice": "1.082000", + "Timestamp": "2024-05-16T07:32:05.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.167800", - "Timestamp": "2019-10-15T16:16:35.000Z" + "SpotPrice": "1.069800", + "Timestamp": "2024-05-16T07:32:05.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.167800", - "Timestamp": "2019-10-15T16:16:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.982000", + "Timestamp": "2024-05-16T07:32:05.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067800", - "Timestamp": "2019-10-15T16:16:35.000Z" + "SpotPrice": "0.969800", + "Timestamp": "2024-05-16T07:32:05.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067800", - "Timestamp": "2019-10-15T16:16:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129600", + "Timestamp": "2024-05-16T07:32:05.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067800", - "Timestamp": "2019-10-15T16:16:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125600", + "Timestamp": "2024-05-16T07:32:05.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095000", - "Timestamp": "2019-10-15T16:15:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069600", + "Timestamp": "2024-05-16T07:32:05.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095000", - "Timestamp": "2019-10-15T16:15:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.713200", + "Timestamp": "2024-05-16T07:32:05.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095000", - "Timestamp": "2019-10-15T16:15:41.000Z" + "SpotPrice": "1.912900", + "Timestamp": "2024-05-16T07:32:05.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135000", - "Timestamp": "2019-10-15T16:15:41.000Z" + "SpotPrice": "1.907900", + "Timestamp": "2024-05-16T07:32:05.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m1.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135000", - "Timestamp": "2019-10-15T16:15:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.782900", + "Timestamp": "2024-05-16T07:32:05.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m1.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135000", - "Timestamp": "2019-10-15T16:15:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.311000", + "Timestamp": "2024-05-16T07:32:03.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m1.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035000", - "Timestamp": "2019-10-15T16:15:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.306000", + "Timestamp": "2024-05-16T07:32:03.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035000", - "Timestamp": "2019-10-15T16:15:41.000Z" + "SpotPrice": "1.181000", + "Timestamp": "2024-05-16T07:32:03.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m1.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035000", - "Timestamp": "2019-10-15T16:15:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.583800", + "Timestamp": "2024-05-16T07:32:03.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.115700", - "Timestamp": "2019-10-15T16:15:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.553800", + "Timestamp": "2024-05-16T07:32:03.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.115700", - "Timestamp": "2019-10-15T16:15:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.453800", + "Timestamp": "2024-05-16T07:32:03.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c1.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.115700", - "Timestamp": "2019-10-15T16:15:29.000Z" + "SpotPrice": "0.368100", + "Timestamp": "2024-05-16T07:32:03.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c1.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.155700", - "Timestamp": "2019-10-15T16:15:29.000Z" + "SpotPrice": "0.338100", + "Timestamp": "2024-05-16T07:32:03.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.155700", - "Timestamp": "2019-10-15T16:15:29.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.238100", + "Timestamp": "2024-05-16T07:32:03.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.155700", - "Timestamp": "2019-10-15T16:15:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.125000", + "Timestamp": "2024-05-16T07:32:03.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.055700", - "Timestamp": "2019-10-15T16:15:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.120000", + "Timestamp": "2024-05-16T07:32:03.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.055700", - "Timestamp": "2019-10-15T16:15:29.000Z" + "SpotPrice": "0.995000", + "Timestamp": "2024-05-16T07:32:03.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.055700", - "Timestamp": "2019-10-15T16:15:29.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.633100", + "Timestamp": "2024-05-16T07:32:02.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092200", - "Timestamp": "2019-10-15T16:13:10.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.628100", + "Timestamp": "2024-05-16T07:32:02.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092200", - "Timestamp": "2019-10-15T16:13:10.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.503100", + "Timestamp": "2024-05-16T07:32:02.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t2.small", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092200", - "Timestamp": "2019-10-15T16:13:10.000Z" + "SpotPrice": "0.071100", + "Timestamp": "2024-05-16T07:32:02.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t2.small", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132200", - "Timestamp": "2019-10-15T16:13:10.000Z" + "SpotPrice": "0.041100", + "Timestamp": "2024-05-16T07:32:02.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m4.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132200", - "Timestamp": "2019-10-15T16:13:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011100", + "Timestamp": "2024-05-16T07:32:02.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.279200", + "Timestamp": "2024-05-16T07:32:02.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132200", - "Timestamp": "2019-10-15T16:13:10.000Z" + "SpotPrice": "0.274200", + "Timestamp": "2024-05-16T07:32:02.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032200", - "Timestamp": "2019-10-15T16:13:10.000Z" + "SpotPrice": "0.149200", + "Timestamp": "2024-05-16T07:32:02.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032200", - "Timestamp": "2019-10-15T16:13:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.475200", + "Timestamp": "2024-05-16T07:32:02.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.470200", + "Timestamp": "2024-05-16T07:32:02.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032200", - "Timestamp": "2019-10-15T16:13:10.000Z" + "SpotPrice": "1.345200", + "Timestamp": "2024-05-16T07:32:02.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.533000", - "Timestamp": "2019-10-15T16:10:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.392300", + "Timestamp": "2024-05-16T07:32:01.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.533000", - "Timestamp": "2019-10-15T16:10:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.362300", + "Timestamp": "2024-05-16T07:32:01.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.295000", - "Timestamp": "2019-10-15T16:10:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.262300", + "Timestamp": "2024-05-16T07:32:01.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "h1.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.295000", - "Timestamp": "2019-10-15T16:10:56.000Z" + "SpotPrice": "0.420200", + "Timestamp": "2024-05-16T07:32:01.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "h1.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.265000", - "Timestamp": "2019-10-15T16:10:56.000Z" + "SpotPrice": "0.415200", + "Timestamp": "2024-05-16T07:32:01.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "h1.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.265000", - "Timestamp": "2019-10-15T16:10:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.290200", + "Timestamp": "2024-05-16T07:32:01.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.165000", - "Timestamp": "2019-10-15T16:10:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.473900", + "Timestamp": "2024-05-16T07:32:01.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.165000", - "Timestamp": "2019-10-15T16:10:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.468900", + "Timestamp": "2024-05-16T07:32:01.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.156800", - "Timestamp": "2019-10-15T16:09:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.343900", + "Timestamp": "2024-05-16T07:32:01.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.997100", - "Timestamp": "2019-10-15T16:08:53.000Z" + "SpotPrice": "0.754700", + "Timestamp": "2024-05-16T07:32:00.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.967100", - "Timestamp": "2019-10-15T16:08:53.000Z" + "SpotPrice": "0.724700", + "Timestamp": "2024-05-16T07:32:00.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.867100", - "Timestamp": "2019-10-15T16:08:53.000Z" + "SpotPrice": "0.624700", + "Timestamp": "2024-05-16T07:32:00.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.9xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.138700", - "Timestamp": "2019-10-15T15:51:35.000Z" + "SpotPrice": "0.827300", + "Timestamp": "2024-05-16T07:32:00.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.9xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.178700", - "Timestamp": "2019-10-15T15:51:35.000Z" + "SpotPrice": "0.797300", + "Timestamp": "2024-05-16T07:32:00.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.9xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.078700", - "Timestamp": "2019-10-15T15:51:35.000Z" + "SpotPrice": "0.697300", + "Timestamp": "2024-05-16T07:32:00.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.077300", - "Timestamp": "2019-10-15T15:50:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.378100", + "Timestamp": "2024-05-16T07:32:00.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.115900", - "Timestamp": "2019-10-15T15:50:00.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.373100", + "Timestamp": "2024-05-16T07:32:00.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.235500", - "Timestamp": "2019-10-15T15:43:00.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.248100", + "Timestamp": "2024-05-16T07:32:00.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.235500", - "Timestamp": "2019-10-15T15:43:00.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.295600", + "Timestamp": "2024-05-16T07:32:00.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.235500", - "Timestamp": "2019-10-15T15:43:00.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.291600", + "Timestamp": "2024-05-16T07:32:00.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.235500", - "Timestamp": "2019-10-15T15:43:00.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235600", + "Timestamp": "2024-05-16T07:32:00.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.019300", - "Timestamp": "2019-10-15T15:26:00.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146500", + "Timestamp": "2024-05-16T07:32:00.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.025800", - "Timestamp": "2019-10-15T15:19:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142500", + "Timestamp": "2024-05-16T07:32:00.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086500", + "Timestamp": "2024-05-16T07:32:00.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.211800", - "Timestamp": "2019-10-15T15:18:50.000Z" + "SpotPrice": "0.154400", + "Timestamp": "2024-05-16T07:31:55.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.181800", - "Timestamp": "2019-10-15T15:18:50.000Z" + "SpotPrice": "0.150400", + "Timestamp": "2024-05-16T07:31:55.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.081800", - "Timestamp": "2019-10-15T15:18:50.000Z" + "SpotPrice": "0.094400", + "Timestamp": "2024-05-16T07:31:55.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.005800", - "Timestamp": "2019-10-15T15:18:50.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.863900", + "Timestamp": "2024-05-16T07:31:54.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.005800", - "Timestamp": "2019-10-15T15:18:50.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.858900", + "Timestamp": "2024-05-16T07:31:54.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.005800", - "Timestamp": "2019-10-15T15:18:50.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.733900", + "Timestamp": "2024-05-16T07:31:54.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.019300", - "Timestamp": "2019-10-15T15:18:38.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.479000", + "Timestamp": "2024-05-16T07:31:54.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.019300", - "Timestamp": "2019-10-15T15:18:38.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.449000", + "Timestamp": "2024-05-16T07:31:54.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.019300", - "Timestamp": "2019-10-15T15:18:38.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.349000", + "Timestamp": "2024-05-16T07:31:54.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3.micro", "ProductDescription": "Windows", - "SpotPrice": "3.019300", - "Timestamp": "2019-10-15T15:18:38.000Z" + "SpotPrice": "0.013700", + "Timestamp": "2024-05-16T07:29:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c3.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.112200", - "Timestamp": "2019-10-15T15:17:15.000Z" + "SpotPrice": "4.784000", + "Timestamp": "2024-05-16T07:18:36.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c3.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.112200", - "Timestamp": "2019-10-15T15:17:15.000Z" + "SpotPrice": "3.332300", + "Timestamp": "2024-05-16T07:18:28.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.112200", - "Timestamp": "2019-10-15T15:17:15.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.229400", + "Timestamp": "2024-05-16T07:18:27.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.011600", - "Timestamp": "2019-10-15T15:16:34.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269400", + "Timestamp": "2024-05-16T07:18:27.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.011600", - "Timestamp": "2019-10-15T15:16:34.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169400", + "Timestamp": "2024-05-16T07:18:27.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.111700", + "Timestamp": "2024-05-16T07:18:26.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.106700", + "Timestamp": "2024-05-16T07:18:26.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.981700", + "Timestamp": "2024-05-16T07:18:26.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.011600", - "Timestamp": "2019-10-15T15:16:34.000Z" + "SpotPrice": "4.097600", + "Timestamp": "2024-05-16T07:18:26.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.941300", - "Timestamp": "2019-10-15T15:16:14.000Z" + "SpotPrice": "1.816500", + "Timestamp": "2024-05-16T07:18:23.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.911300", - "Timestamp": "2019-10-15T15:16:14.000Z" + "SpotPrice": "1.811500", + "Timestamp": "2024-05-16T07:18:23.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.811300", - "Timestamp": "2019-10-15T15:16:14.000Z" + "SpotPrice": "1.686500", + "Timestamp": "2024-05-16T07:18:23.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089200", - "Timestamp": "2019-10-15T15:12:50.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.272400", + "Timestamp": "2024-05-16T07:18:22.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089200", - "Timestamp": "2019-10-15T15:12:50.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.582200", + "Timestamp": "2024-05-16T07:18:21.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c3.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089200", - "Timestamp": "2019-10-15T15:12:50.000Z" + "SpotPrice": "1.327600", + "Timestamp": "2024-05-16T07:18:20.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c3.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.129200", - "Timestamp": "2019-10-15T15:12:50.000Z" + "SpotPrice": "1.322600", + "Timestamp": "2024-05-16T07:18:20.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.129200", - "Timestamp": "2019-10-15T15:12:50.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.197600", + "Timestamp": "2024-05-16T07:18:20.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.129200", - "Timestamp": "2019-10-15T15:12:50.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.510800", + "Timestamp": "2024-05-16T07:18:18.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029200", - "Timestamp": "2019-10-15T15:12:50.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.537500", + "Timestamp": "2024-05-16T07:18:18.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029200", - "Timestamp": "2019-10-15T15:12:50.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.532500", + "Timestamp": "2024-05-16T07:18:18.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c3.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029200", - "Timestamp": "2019-10-15T15:12:50.000Z" + "SpotPrice": "1.407500", + "Timestamp": "2024-05-16T07:18:18.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.109000", - "Timestamp": "2019-10-15T15:11:42.000Z" + "SpotPrice": "4.302500", + "Timestamp": "2024-05-16T07:18:17.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.109000", - "Timestamp": "2019-10-15T15:11:42.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.297500", + "Timestamp": "2024-05-16T07:18:17.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.109000", - "Timestamp": "2019-10-15T15:11:42.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.172500", + "Timestamp": "2024-05-16T07:18:17.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.149000", - "Timestamp": "2019-10-15T15:11:42.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.559000", + "Timestamp": "2024-05-16T07:18:17.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.149000", - "Timestamp": "2019-10-15T15:11:42.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "8.353200", + "Timestamp": "2024-05-16T07:18:16.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.149000", - "Timestamp": "2019-10-15T15:11:42.000Z" + "SpotPrice": "8.348200", + "Timestamp": "2024-05-16T07:18:16.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.049000", - "Timestamp": "2019-10-15T15:11:42.000Z" + "SpotPrice": "8.223200", + "Timestamp": "2024-05-16T07:18:16.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.049000", - "Timestamp": "2019-10-15T15:11:42.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.013100", + "Timestamp": "2024-05-16T07:18:15.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.983100", + "Timestamp": "2024-05-16T07:18:15.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.049000", - "Timestamp": "2019-10-15T15:11:42.000Z" + "SpotPrice": "1.883100", + "Timestamp": "2024-05-16T07:18:15.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.249000", - "Timestamp": "2019-10-15T15:11:07.000Z" + "SpotPrice": "0.284200", + "Timestamp": "2024-05-16T07:18:13.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.249000", - "Timestamp": "2019-10-15T15:11:07.000Z" + "SpotPrice": "10.066800", + "Timestamp": "2024-05-16T07:18:12.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.249000", - "Timestamp": "2019-10-15T15:11:07.000Z" + "SpotPrice": "5.073700", + "Timestamp": "2024-05-16T07:18:11.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093800", - "Timestamp": "2019-10-15T15:10:28.000Z" + "SpotPrice": "0.231100", + "Timestamp": "2024-05-16T07:18:11.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133800", - "Timestamp": "2019-10-15T15:10:28.000Z" + "SpotPrice": "0.227400", + "Timestamp": "2024-05-16T07:18:11.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033800", - "Timestamp": "2019-10-15T15:10:28.000Z" + "SpotPrice": "0.171100", + "Timestamp": "2024-05-16T07:18:11.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.112200", - "Timestamp": "2019-10-15T15:10:16.000Z" + "SpotPrice": "3.530400", + "Timestamp": "2024-05-16T07:18:11.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.152200", - "Timestamp": "2019-10-15T15:10:16.000Z" + "SpotPrice": "3.525400", + "Timestamp": "2024-05-16T07:18:11.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.052200", - "Timestamp": "2019-10-15T15:10:16.000Z" + "SpotPrice": "3.400400", + "Timestamp": "2024-05-16T07:18:11.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T15:09:56.000Z" + "SpotPrice": "5.329600", + "Timestamp": "2024-05-16T07:18:10.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.322000", - "Timestamp": "2019-10-15T15:09:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.324600", + "Timestamp": "2024-05-16T07:18:10.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.322000", - "Timestamp": "2019-10-15T15:09:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.199600", + "Timestamp": "2024-05-16T07:18:10.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.170800", - "Timestamp": "2019-10-15T15:09:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.275300", + "Timestamp": "2024-05-16T07:18:10.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.362000", - "Timestamp": "2019-10-15T15:09:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.602900", + "Timestamp": "2024-05-16T07:18:09.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.362000", - "Timestamp": "2019-10-15T15:09:56.000Z" + "SpotPrice": "0.597900", + "Timestamp": "2024-05-16T07:18:09.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.070800", - "Timestamp": "2019-10-15T15:09:56.000Z" + "SpotPrice": "0.472900", + "Timestamp": "2024-05-16T07:18:09.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.262000", - "Timestamp": "2019-10-15T15:09:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.651400", + "Timestamp": "2024-05-16T07:18:09.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.646400", + "Timestamp": "2024-05-16T07:18:09.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.262000", - "Timestamp": "2019-10-15T15:09:56.000Z" + "SpotPrice": "1.521400", + "Timestamp": "2024-05-16T07:18:09.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.248500", - "Timestamp": "2019-10-15T15:02:23.000Z" + "SpotPrice": "1.337200", + "Timestamp": "2024-05-16T07:18:09.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.218500", - "Timestamp": "2019-10-15T15:02:23.000Z" + "SpotPrice": "1.332200", + "Timestamp": "2024-05-16T07:18:09.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.118500", - "Timestamp": "2019-10-15T15:02:23.000Z" + "SpotPrice": "1.207200", + "Timestamp": "2024-05-16T07:18:09.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.259100", - "Timestamp": "2019-10-15T15:01:33.000Z" + "SpotPrice": "10.740900", + "Timestamp": "2024-05-16T07:18:09.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.229100", - "Timestamp": "2019-10-15T15:01:33.000Z" + "SpotPrice": "10.735900", + "Timestamp": "2024-05-16T07:18:09.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.129100", - "Timestamp": "2019-10-15T15:01:33.000Z" - }, - { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.025800", - "Timestamp": "2019-10-15T14:57:42.000Z" - }, - { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.057900", - "Timestamp": "2019-10-15T14:57:21.000Z" + "SpotPrice": "10.610900", + "Timestamp": "2024-05-16T07:18:09.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.275000", - "Timestamp": "2019-10-15T14:53:03.000Z" + "SpotPrice": "1.873500", + "Timestamp": "2024-05-16T07:18:08.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.245000", - "Timestamp": "2019-10-15T14:53:03.000Z" + "SpotPrice": "1.868500", + "Timestamp": "2024-05-16T07:18:08.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.145000", - "Timestamp": "2019-10-15T14:53:03.000Z" + "SpotPrice": "1.743500", + "Timestamp": "2024-05-16T07:18:08.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.829900", - "Timestamp": "2019-10-15T14:52:12.000Z" + "SpotPrice": "3.965400", + "Timestamp": "2024-05-16T07:18:08.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.799900", - "Timestamp": "2019-10-15T14:52:12.000Z" + "SpotPrice": "3.960400", + "Timestamp": "2024-05-16T07:18:08.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.699900", - "Timestamp": "2019-10-15T14:52:12.000Z" + "SpotPrice": "3.835400", + "Timestamp": "2024-05-16T07:18:08.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.265600", + "Timestamp": "2024-05-16T07:18:07.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096900", - "Timestamp": "2019-10-15T14:45:33.000Z" + "SpotPrice": "2.734800", + "Timestamp": "2024-05-16T07:18:07.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136900", - "Timestamp": "2019-10-15T14:45:33.000Z" + "SpotPrice": "2.729800", + "Timestamp": "2024-05-16T07:18:07.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036900", - "Timestamp": "2019-10-15T14:45:33.000Z" + "SpotPrice": "2.604800", + "Timestamp": "2024-05-16T07:18:07.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.549300", - "Timestamp": "2019-10-15T14:40:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.996700", + "Timestamp": "2024-05-16T07:18:07.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.549300", - "Timestamp": "2019-10-15T14:40:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.991700", + "Timestamp": "2024-05-16T07:18:07.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.866700", + "Timestamp": "2024-05-16T07:18:07.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.metal", "ProductDescription": "Windows", - "SpotPrice": "5.549300", - "Timestamp": "2019-10-15T14:40:27.000Z" + "SpotPrice": "5.977000", + "Timestamp": "2024-05-16T07:18:07.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.281300", - "Timestamp": "2019-10-15T14:36:47.000Z" + "SpotPrice": "0.283500", + "Timestamp": "2024-05-16T07:18:05.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.685400", - "Timestamp": "2019-10-15T14:20:18.000Z" + "SpotPrice": "2.581600", + "Timestamp": "2024-05-16T07:18:05.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125300", - "Timestamp": "2019-10-15T14:19:43.000Z" + "SpotPrice": "2.121300", + "Timestamp": "2024-05-16T07:18:04.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.165300", - "Timestamp": "2019-10-15T14:19:43.000Z" + "SpotPrice": "2.116300", + "Timestamp": "2024-05-16T07:18:04.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065300", - "Timestamp": "2019-10-15T14:19:43.000Z" + "SpotPrice": "1.991300", + "Timestamp": "2024-05-16T07:18:04.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "i3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.138800", - "Timestamp": "2019-10-15T14:18:59.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.971300", + "Timestamp": "2024-05-16T07:18:03.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.138800", - "Timestamp": "2019-10-15T14:18:59.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.941300", + "Timestamp": "2024-05-16T07:18:03.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.138800", - "Timestamp": "2019-10-15T14:18:59.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.841300", + "Timestamp": "2024-05-16T07:18:03.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.large", "ProductDescription": "Windows", - "SpotPrice": "0.138800", - "Timestamp": "2019-10-15T14:18:59.000Z" + "SpotPrice": "0.134800", + "Timestamp": "2024-05-16T07:18:03.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5dn.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093800", - "Timestamp": "2019-10-15T14:18:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.290100", + "Timestamp": "2024-05-16T07:18:02.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5dn.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093800", - "Timestamp": "2019-10-15T14:18:48.000Z" + "SpotPrice": "3.056800", + "Timestamp": "2024-05-16T07:18:02.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093800", - "Timestamp": "2019-10-15T14:18:48.000Z" + "SpotPrice": "3.248400", + "Timestamp": "2024-05-16T07:18:02.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5dn.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133800", - "Timestamp": "2019-10-15T14:18:48.000Z" - }, - { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5dn.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133800", - "Timestamp": "2019-10-15T14:18:48.000Z" + "SpotPrice": "3.051800", + "Timestamp": "2024-05-16T07:18:02.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133800", - "Timestamp": "2019-10-15T14:18:48.000Z" + "SpotPrice": "3.243400", + "Timestamp": "2024-05-16T07:18:02.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5dn.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033800", - "Timestamp": "2019-10-15T14:18:48.000Z" + "SpotPrice": "2.926800", + "Timestamp": "2024-05-16T07:18:02.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5dn.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033800", - "Timestamp": "2019-10-15T14:18:48.000Z" + "SpotPrice": "3.118400", + "Timestamp": "2024-05-16T07:18:02.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033800", - "Timestamp": "2019-10-15T14:18:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.535700", + "Timestamp": "2024-05-16T07:18:02.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.006400", - "Timestamp": "2019-10-15T14:17:20.000Z" + "SpotPrice": "6.595800", + "Timestamp": "2024-05-16T07:18:02.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.006400", - "Timestamp": "2019-10-15T14:17:20.000Z" + "SpotPrice": "6.525300", + "Timestamp": "2024-05-16T07:18:01.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.006400", - "Timestamp": "2019-10-15T14:17:20.000Z" + "SpotPrice": "2.003500", + "Timestamp": "2024-05-16T07:18:01.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.006400", - "Timestamp": "2019-10-15T14:17:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.660500", + "Timestamp": "2024-05-16T07:18:01.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-15T14:16:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.655500", + "Timestamp": "2024-05-16T07:18:01.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-15T14:16:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.530500", + "Timestamp": "2024-05-16T07:18:01.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-15T14:16:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.578800", + "Timestamp": "2024-05-16T07:18:00.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-15T14:16:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.573800", + "Timestamp": "2024-05-16T07:18:00.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.448800", + "Timestamp": "2024-05-16T07:18:00.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093800", - "Timestamp": "2019-10-15T14:16:46.000Z" + "SpotPrice": "0.353700", + "Timestamp": "2024-05-16T07:18:00.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gn.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133800", - "Timestamp": "2019-10-15T14:16:46.000Z" + "SpotPrice": "0.348700", + "Timestamp": "2024-05-16T07:18:00.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033800", - "Timestamp": "2019-10-15T14:16:46.000Z" + "SpotPrice": "0.223700", + "Timestamp": "2024-05-16T07:18:00.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "i3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.106800", - "Timestamp": "2019-10-15T14:16:34.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.485500", + "Timestamp": "2024-05-16T07:18:00.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.208700", + "Timestamp": "2024-05-16T07:18:00.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4ad.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.106800", - "Timestamp": "2019-10-15T14:16:34.000Z" + "SpotPrice": "1.703700", + "Timestamp": "2024-05-16T07:17:59.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.698700", + "Timestamp": "2024-05-16T07:17:59.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.573700", + "Timestamp": "2024-05-16T07:17:59.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.106800", - "Timestamp": "2019-10-15T14:16:34.000Z" + "SpotPrice": "1.269800", + "Timestamp": "2024-05-16T07:17:59.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.106800", - "Timestamp": "2019-10-15T14:16:34.000Z" + "SpotPrice": "1.420000", + "Timestamp": "2024-05-16T07:17:59.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "i3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.146800", - "Timestamp": "2019-10-15T14:16:34.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.504800", + "Timestamp": "2024-05-16T07:17:59.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gn.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.146800", - "Timestamp": "2019-10-15T14:16:34.000Z" + "SpotPrice": "1.264800", + "Timestamp": "2024-05-16T07:17:59.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gn.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.146800", - "Timestamp": "2019-10-15T14:16:34.000Z" + "SpotPrice": "1.415000", + "Timestamp": "2024-05-16T07:17:59.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gn.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.146800", - "Timestamp": "2019-10-15T14:16:34.000Z" + "SpotPrice": "1.499800", + "Timestamp": "2024-05-16T07:17:59.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.046800", - "Timestamp": "2019-10-15T14:16:34.000Z" + "SpotPrice": "1.139800", + "Timestamp": "2024-05-16T07:17:59.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.046800", - "Timestamp": "2019-10-15T14:16:34.000Z" + "SpotPrice": "1.290000", + "Timestamp": "2024-05-16T07:17:59.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.046800", - "Timestamp": "2019-10-15T14:16:34.000Z" + "SpotPrice": "1.374800", + "Timestamp": "2024-05-16T07:17:59.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.046800", - "Timestamp": "2019-10-15T14:16:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.212200", + "Timestamp": "2024-05-16T07:17:59.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087900", - "Timestamp": "2019-10-15T14:14:33.000Z" + "SpotPrice": "1.172700", + "Timestamp": "2024-05-16T07:17:59.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.127900", - "Timestamp": "2019-10-15T14:14:33.000Z" + "SpotPrice": "1.167700", + "Timestamp": "2024-05-16T07:17:59.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027900", - "Timestamp": "2019-10-15T14:14:33.000Z" + "SpotPrice": "1.042700", + "Timestamp": "2024-05-16T07:17:59.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.036800", + "Timestamp": "2024-05-16T07:17:58.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.689500", + "Timestamp": "2024-05-16T07:17:57.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "trn1.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.400400", - "Timestamp": "2019-10-15T14:14:14.000Z" + "SpotPrice": "8.242900", + "Timestamp": "2024-05-16T07:17:57.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "trn1.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.370400", - "Timestamp": "2019-10-15T14:14:14.000Z" + "SpotPrice": "8.212900", + "Timestamp": "2024-05-16T07:17:57.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "trn1.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.270400", - "Timestamp": "2019-10-15T14:14:14.000Z" + "SpotPrice": "8.112900", + "Timestamp": "2024-05-16T07:17:57.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.124500", - "Timestamp": "2019-10-15T14:13:43.000Z" + "SpotPrice": "1.449900", + "Timestamp": "2024-05-16T07:17:55.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.164500", - "Timestamp": "2019-10-15T14:13:43.000Z" + "SpotPrice": "1.444900", + "Timestamp": "2024-05-16T07:17:55.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.064500", - "Timestamp": "2019-10-15T14:13:43.000Z" + "SpotPrice": "1.319900", + "Timestamp": "2024-05-16T07:17:55.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.338000", - "Timestamp": "2019-10-15T14:12:10.000Z" + "SpotPrice": "0.111900", + "Timestamp": "2024-05-16T07:17:55.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.308000", - "Timestamp": "2019-10-15T14:12:10.000Z" + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T07:17:55.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.208000", - "Timestamp": "2019-10-15T14:12:10.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5dn.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-15T14:10:30.000Z" - }, - { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5dn.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-15T14:10:30.000Z" + "SpotPrice": "0.051900", + "Timestamp": "2024-05-16T07:17:55.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-15T14:10:30.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.957400", + "Timestamp": "2024-05-16T07:17:54.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.993600", - "Timestamp": "2019-10-15T14:10:21.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.952400", + "Timestamp": "2024-05-16T07:17:54.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.993600", - "Timestamp": "2019-10-15T14:10:21.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.827400", + "Timestamp": "2024-05-16T07:17:54.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.993600", - "Timestamp": "2019-10-15T14:10:21.000Z" + "SpotPrice": "0.275300", + "Timestamp": "2024-05-16T07:17:54.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c4.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.993600", - "Timestamp": "2019-10-15T14:10:21.000Z" + "SpotPrice": "0.536500", + "Timestamp": "2024-05-16T07:17:53.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.387600", - "Timestamp": "2019-10-15T14:09:54.000Z" + "SpotPrice": "2.307600", + "Timestamp": "2024-05-16T07:17:53.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.357600", - "Timestamp": "2019-10-15T14:09:54.000Z" + "SpotPrice": "2.302600", + "Timestamp": "2024-05-16T07:17:53.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.257600", - "Timestamp": "2019-10-15T14:09:54.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.435600", - "Timestamp": "2019-10-15T14:08:38.000Z" - }, - { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.435600", - "Timestamp": "2019-10-15T14:08:38.000Z" + "SpotPrice": "2.177600", + "Timestamp": "2024-05-16T07:17:53.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.435600", - "Timestamp": "2019-10-15T14:08:38.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.405600", - "Timestamp": "2019-10-15T14:08:38.000Z" - }, - { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.405600", - "Timestamp": "2019-10-15T14:08:38.000Z" + "SpotPrice": "0.254500", + "Timestamp": "2024-05-16T07:17:53.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.405600", - "Timestamp": "2019-10-15T14:08:38.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.305600", - "Timestamp": "2019-10-15T14:08:38.000Z" - }, - { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.305600", - "Timestamp": "2019-10-15T14:08:38.000Z" + "SpotPrice": "0.250500", + "Timestamp": "2024-05-16T07:17:53.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.305600", - "Timestamp": "2019-10-15T14:08:38.000Z" + "SpotPrice": "0.194500", + "Timestamp": "2024-05-16T07:17:53.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i-flex.xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.249600", - "Timestamp": "2019-10-15T14:08:16.000Z" + "SpotPrice": "0.250100", + "Timestamp": "2024-05-16T07:17:52.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.249600", - "Timestamp": "2019-10-15T14:08:16.000Z" + "SpotPrice": "3.060800", + "Timestamp": "2024-05-16T07:17:52.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.249600", - "Timestamp": "2019-10-15T14:08:16.000Z" + "SpotPrice": "1.690100", + "Timestamp": "2024-05-16T07:17:51.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092200", - "Timestamp": "2019-10-15T13:42:31.000Z" + "SpotPrice": "2.153500", + "Timestamp": "2024-05-16T07:17:51.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2gd.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132200", - "Timestamp": "2019-10-15T13:42:31.000Z" + "SpotPrice": "2.148500", + "Timestamp": "2024-05-16T07:17:51.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032200", - "Timestamp": "2019-10-15T13:42:31.000Z" + "SpotPrice": "2.023500", + "Timestamp": "2024-05-16T07:17:51.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5n.18xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.019300", - "Timestamp": "2019-10-15T13:40:54.000Z" + "SpotPrice": "5.007200", + "Timestamp": "2024-05-16T07:17:51.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "z1d.metal", "ProductDescription": "Windows", - "SpotPrice": "0.538400", - "Timestamp": "2019-10-15T13:38:28.000Z" + "SpotPrice": "3.903600", + "Timestamp": "2024-05-16T07:17:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267900", - "Timestamp": "2019-10-15T13:30:23.000Z" + "SpotPrice": "2.509700", + "Timestamp": "2024-05-16T07:17:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.237900", - "Timestamp": "2019-10-15T13:30:23.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.564200", + "Timestamp": "2024-05-16T07:17:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.137900", - "Timestamp": "2019-10-15T13:30:23.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.504700", + "Timestamp": "2024-05-16T07:17:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.237200", - "Timestamp": "2019-10-15T13:30:23.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.559200", + "Timestamp": "2024-05-16T07:17:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c1.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.207200", - "Timestamp": "2019-10-15T13:30:23.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.379700", + "Timestamp": "2024-05-16T07:17:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.107200", - "Timestamp": "2019-10-15T13:30:23.000Z" + "SpotPrice": "2.434200", + "Timestamp": "2024-05-16T07:17:51.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5dn.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.829900", - "Timestamp": "2019-10-15T13:25:18.000Z" + "SpotPrice": "1.416700", + "Timestamp": "2024-05-16T07:17:51.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5dn.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.799900", - "Timestamp": "2019-10-15T13:25:18.000Z" + "SpotPrice": "1.411700", + "Timestamp": "2024-05-16T07:17:51.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5dn.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.699900", - "Timestamp": "2019-10-15T13:25:18.000Z" + "SpotPrice": "1.286700", + "Timestamp": "2024-05-16T07:17:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.211800", - "Timestamp": "2019-10-15T13:24:18.000Z" + "SpotPrice": "2.282400", + "Timestamp": "2024-05-16T07:17:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.181800", - "Timestamp": "2019-10-15T13:24:18.000Z" + "SpotPrice": "2.252400", + "Timestamp": "2024-05-16T07:17:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.081800", - "Timestamp": "2019-10-15T13:24:18.000Z" + "SpotPrice": "2.152400", + "Timestamp": "2024-05-16T07:17:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "z1d.3xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.464800", - "Timestamp": "2019-10-15T13:21:52.000Z" + "SpotPrice": "5.366100", + "Timestamp": "2024-05-16T07:17:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "z1d.3xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.434800", - "Timestamp": "2019-10-15T13:21:52.000Z" + "SpotPrice": "5.361100", + "Timestamp": "2024-05-16T07:17:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "z1d.3xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.334800", - "Timestamp": "2019-10-15T13:21:52.000Z" + "SpotPrice": "5.236100", + "Timestamp": "2024-05-16T07:17:51.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.981100", - "Timestamp": "2019-10-15T13:21:19.000Z" - }, - { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.951100", - "Timestamp": "2019-10-15T13:21:19.000Z" - }, - { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.851100", - "Timestamp": "2019-10-15T13:21:19.000Z" - }, - { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.254800", - "Timestamp": "2019-10-15T13:19:20.000Z" + "SpotPrice": "7.682800", + "Timestamp": "2024-05-16T07:17:50.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "c3.large", "ProductDescription": "Windows", - "SpotPrice": "0.897600", - "Timestamp": "2019-10-15T13:16:39.000Z" + "SpotPrice": "0.146400", + "Timestamp": "2024-05-16T07:17:50.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r4.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.897600", - "Timestamp": "2019-10-15T13:16:39.000Z" + "SpotPrice": "2.303900", + "Timestamp": "2024-05-16T07:17:50.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.897600", - "Timestamp": "2019-10-15T13:16:39.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "f1.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.120000", - "Timestamp": "2019-10-15T13:16:37.000Z" + "SpotPrice": "13.898600", + "Timestamp": "2024-05-16T07:17:50.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "f1.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.120000", - "Timestamp": "2019-10-15T13:16:37.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.168900", + "Timestamp": "2024-05-16T07:17:49.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "f1.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.120000", - "Timestamp": "2019-10-15T13:16:37.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "f1.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.090000", - "Timestamp": "2019-10-15T13:16:37.000Z" - }, - { - "AvailabilityZone": "us-west-2a", - "InstanceType": "f1.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.090000", - "Timestamp": "2019-10-15T13:16:37.000Z" + "SpotPrice": "1.203800", + "Timestamp": "2024-05-16T07:17:49.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "f1.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4g.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.090000", - "Timestamp": "2019-10-15T13:16:37.000Z" + "SpotPrice": "1.198800", + "Timestamp": "2024-05-16T07:17:49.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "f1.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.990000", - "Timestamp": "2019-10-15T13:16:37.000Z" + "SpotPrice": "1.073800", + "Timestamp": "2024-05-16T07:17:49.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "f1.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.990000", - "Timestamp": "2019-10-15T13:16:37.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.040400", + "Timestamp": "2024-05-16T07:17:49.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "f1.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.990000", - "Timestamp": "2019-10-15T13:16:37.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.836000", + "Timestamp": "2024-05-16T07:17:49.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.363600", - "Timestamp": "2019-10-15T13:16:23.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.358600", + "Timestamp": "2024-05-16T07:17:48.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.363600", - "Timestamp": "2019-10-15T13:16:23.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.014800", + "Timestamp": "2024-05-16T07:17:48.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d2.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.363600", - "Timestamp": "2019-10-15T13:16:23.000Z" + "SpotPrice": "2.438200", + "Timestamp": "2024-05-16T07:17:48.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c3.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.333600", - "Timestamp": "2019-10-15T13:16:23.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.475800", + "Timestamp": "2024-05-16T07:17:48.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d2.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.333600", - "Timestamp": "2019-10-15T13:16:23.000Z" + "SpotPrice": "2.408200", + "Timestamp": "2024-05-16T07:17:48.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d2.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.333600", - "Timestamp": "2019-10-15T13:16:23.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.233600", - "Timestamp": "2019-10-15T13:16:23.000Z" + "SpotPrice": "2.445800", + "Timestamp": "2024-05-16T07:17:48.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d2.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.233600", - "Timestamp": "2019-10-15T13:16:23.000Z" + "SpotPrice": "2.308200", + "Timestamp": "2024-05-16T07:17:48.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d2.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.233600", - "Timestamp": "2019-10-15T13:16:23.000Z" + "SpotPrice": "2.345800", + "Timestamp": "2024-05-16T07:17:48.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.128900", - "Timestamp": "2019-10-15T13:13:21.000Z" + "SpotPrice": "0.292800", + "Timestamp": "2024-05-16T07:17:48.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gn.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.168900", - "Timestamp": "2019-10-15T13:13:21.000Z" + "SpotPrice": "0.287800", + "Timestamp": "2024-05-16T07:17:48.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.068900", - "Timestamp": "2019-10-15T13:13:21.000Z" + "SpotPrice": "0.162800", + "Timestamp": "2024-05-16T07:17:48.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3.micro", "ProductDescription": "Windows", - "SpotPrice": "0.503200", - "Timestamp": "2019-10-15T13:13:10.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "a1.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.263500", - "Timestamp": "2019-10-15T13:11:43.000Z" + "SpotPrice": "0.014300", + "Timestamp": "2024-05-16T07:17:48.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "a1.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.263500", - "Timestamp": "2019-10-15T13:11:43.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "a1.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.233500", - "Timestamp": "2019-10-15T13:11:43.000Z" + "SpotPrice": "1.954800", + "Timestamp": "2024-05-16T07:17:48.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "a1.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.233500", - "Timestamp": "2019-10-15T13:11:43.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "a1.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.133500", - "Timestamp": "2019-10-15T13:11:43.000Z" + "SpotPrice": "1.949800", + "Timestamp": "2024-05-16T07:17:48.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "a1.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.133500", - "Timestamp": "2019-10-15T13:11:43.000Z" + "SpotPrice": "1.824800", + "Timestamp": "2024-05-16T07:17:48.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.251600", - "Timestamp": "2019-10-15T13:10:37.000Z" + "SpotPrice": "1.216800", + "Timestamp": "2024-05-16T07:17:46.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.251600", - "Timestamp": "2019-10-15T13:10:37.000Z" + "SpotPrice": "0.277900", + "Timestamp": "2024-05-16T07:17:46.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.251600", - "Timestamp": "2019-10-15T13:10:37.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T07:17:46.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.993600", - "Timestamp": "2019-10-15T13:10:19.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T07:17:46.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.993600", - "Timestamp": "2019-10-15T13:10:19.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050000", + "Timestamp": "2024-05-16T07:17:46.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.993600", - "Timestamp": "2019-10-15T13:10:19.000Z" + "SpotPrice": "4.525800", + "Timestamp": "2024-05-16T07:17:45.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T13:09:57.000Z" + "SpotPrice": "2.367200", + "Timestamp": "2024-05-16T07:17:45.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T13:09:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.362200", + "Timestamp": "2024-05-16T07:17:45.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T13:09:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.237200", + "Timestamp": "2024-05-16T07:17:45.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.167600", - "Timestamp": "2019-10-15T13:09:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.164400", + "Timestamp": "2024-05-16T07:17:44.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.167600", - "Timestamp": "2019-10-15T13:09:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.734500", + "Timestamp": "2024-05-16T07:17:44.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5n.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.167600", - "Timestamp": "2019-10-15T13:09:57.000Z" + "SpotPrice": "3.729500", + "Timestamp": "2024-05-16T07:17:44.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067600", - "Timestamp": "2019-10-15T13:09:57.000Z" + "SpotPrice": "3.604500", + "Timestamp": "2024-05-16T07:17:44.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067600", - "Timestamp": "2019-10-15T13:09:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.401400", + "Timestamp": "2024-05-16T07:17:44.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067600", - "Timestamp": "2019-10-15T13:09:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.687900", + "Timestamp": "2024-05-16T07:17:44.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.224400", - "Timestamp": "2019-10-15T13:08:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.180300", + "Timestamp": "2024-05-16T07:17:44.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.224400", - "Timestamp": "2019-10-15T13:08:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.150300", + "Timestamp": "2024-05-16T07:17:44.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.224400", - "Timestamp": "2019-10-15T13:08:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.050300", + "Timestamp": "2024-05-16T07:17:44.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.265200", - "Timestamp": "2019-10-15T13:05:47.000Z" + "SpotPrice": "1.302600", + "Timestamp": "2024-05-16T07:17:44.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.235200", - "Timestamp": "2019-10-15T13:05:47.000Z" + "SpotPrice": "1.297600", + "Timestamp": "2024-05-16T07:17:44.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.135200", - "Timestamp": "2019-10-15T13:05:47.000Z" - }, - { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.115900", - "Timestamp": "2019-10-15T12:54:59.000Z" + "SpotPrice": "1.172600", + "Timestamp": "2024-05-16T07:17:44.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.709500", - "Timestamp": "2019-10-15T12:49:18.000Z" + "SpotPrice": "1.584600", + "Timestamp": "2024-05-16T07:17:43.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.679500", - "Timestamp": "2019-10-15T12:49:18.000Z" + "SpotPrice": "1.579600", + "Timestamp": "2024-05-16T07:17:43.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.579500", - "Timestamp": "2019-10-15T12:49:18.000Z" + "SpotPrice": "1.454600", + "Timestamp": "2024-05-16T07:17:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.272700", - "Timestamp": "2019-10-15T12:48:37.000Z" + "SpotPrice": "2.638100", + "Timestamp": "2024-05-16T07:17:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.242700", - "Timestamp": "2019-10-15T12:48:37.000Z" + "SpotPrice": "2.633100", + "Timestamp": "2024-05-16T07:17:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.142700", - "Timestamp": "2019-10-15T12:48:37.000Z" + "SpotPrice": "2.508100", + "Timestamp": "2024-05-16T07:17:43.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5n.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m4.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.211800", - "Timestamp": "2019-10-15T12:22:53.000Z" + "SpotPrice": "0.510400", + "Timestamp": "2024-05-16T07:17:43.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5n.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m4.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.181800", - "Timestamp": "2019-10-15T12:22:53.000Z" + "SpotPrice": "0.480400", + "Timestamp": "2024-05-16T07:17:43.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5n.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m4.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.081800", - "Timestamp": "2019-10-15T12:22:53.000Z" + "SpotPrice": "0.380400", + "Timestamp": "2024-05-16T07:17:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.413300", - "Timestamp": "2019-10-15T12:22:15.000Z" + "SpotPrice": "0.331300", + "Timestamp": "2024-05-16T07:17:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.383300", - "Timestamp": "2019-10-15T12:22:15.000Z" + "SpotPrice": "0.326300", + "Timestamp": "2024-05-16T07:17:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.283300", - "Timestamp": "2019-10-15T12:22:15.000Z" + "SpotPrice": "0.201300", + "Timestamp": "2024-05-16T07:17:43.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.077300", - "Timestamp": "2019-10-15T12:18:23.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.646200", + "Timestamp": "2024-05-16T07:17:43.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.077300", - "Timestamp": "2019-10-15T12:18:23.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.616200", + "Timestamp": "2024-05-16T07:17:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.077300", - "Timestamp": "2019-10-15T12:18:23.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.516200", + "Timestamp": "2024-05-16T07:17:43.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.077300", - "Timestamp": "2019-10-15T12:18:23.000Z" + "SpotPrice": "11.094700", + "Timestamp": "2024-05-16T07:17:42.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.504000", - "Timestamp": "2019-10-15T12:17:32.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122600", + "Timestamp": "2024-05-16T07:17:42.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.504000", - "Timestamp": "2019-10-15T12:17:32.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118600", + "Timestamp": "2024-05-16T07:17:42.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.504000", - "Timestamp": "2019-10-15T12:17:32.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062600", + "Timestamp": "2024-05-16T07:17:42.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.752600", - "Timestamp": "2019-10-15T12:17:10.000Z" + "SpotPrice": "2.311800", + "Timestamp": "2024-05-16T07:17:42.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.722600", - "Timestamp": "2019-10-15T12:17:10.000Z" + "SpotPrice": "2.306800", + "Timestamp": "2024-05-16T07:17:42.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.622600", - "Timestamp": "2019-10-15T12:17:10.000Z" + "SpotPrice": "2.181800", + "Timestamp": "2024-05-16T07:17:42.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3a.micro", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.263300", - "Timestamp": "2019-10-15T12:16:58.000Z" + "SpotPrice": "0.064600", + "Timestamp": "2024-05-16T07:17:42.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.263300", - "Timestamp": "2019-10-15T12:16:58.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004600", + "Timestamp": "2024-05-16T07:17:42.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.263300", - "Timestamp": "2019-10-15T12:16:58.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004600", + "Timestamp": "2024-05-16T07:17:42.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.263300", - "Timestamp": "2019-10-15T12:16:58.000Z" + "SpotPrice": "0.119200", + "Timestamp": "2024-05-16T07:17:42.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.233300", - "Timestamp": "2019-10-15T12:16:58.000Z" + "SpotPrice": "0.115200", + "Timestamp": "2024-05-16T07:17:42.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.233300", - "Timestamp": "2019-10-15T12:16:58.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059200", + "Timestamp": "2024-05-16T07:17:42.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.233300", - "Timestamp": "2019-10-15T12:16:58.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.104500", + "Timestamp": "2024-05-16T07:17:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.233300", - "Timestamp": "2019-10-15T12:16:58.000Z" + "SpotPrice": "3.099500", + "Timestamp": "2024-05-16T07:17:41.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.133300", - "Timestamp": "2019-10-15T12:16:58.000Z" + "SpotPrice": "2.974500", + "Timestamp": "2024-05-16T07:17:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.133300", - "Timestamp": "2019-10-15T12:16:58.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.904800", + "Timestamp": "2024-05-16T07:17:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.133300", - "Timestamp": "2019-10-15T12:16:58.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.874800", + "Timestamp": "2024-05-16T07:17:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "inf2.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.133300", - "Timestamp": "2019-10-15T12:16:58.000Z" + "SpotPrice": "2.774800", + "Timestamp": "2024-05-16T07:17:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.153000", - "Timestamp": "2019-10-15T12:16:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.149000", + "Timestamp": "2024-05-16T07:17:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.153000", - "Timestamp": "2019-10-15T12:16:54.000Z" + "SpotPrice": "1.688000", + "Timestamp": "2024-05-16T07:17:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.153000", - "Timestamp": "2019-10-15T12:16:54.000Z" + "SpotPrice": "1.886800", + "Timestamp": "2024-05-16T07:17:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.123000", - "Timestamp": "2019-10-15T12:16:54.000Z" + "SpotPrice": "1.683000", + "Timestamp": "2024-05-16T07:17:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.123000", - "Timestamp": "2019-10-15T12:16:54.000Z" + "SpotPrice": "1.881800", + "Timestamp": "2024-05-16T07:17:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.123000", - "Timestamp": "2019-10-15T12:16:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.558000", + "Timestamp": "2024-05-16T07:17:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.023000", - "Timestamp": "2019-10-15T12:16:54.000Z" + "SpotPrice": "1.756800", + "Timestamp": "2024-05-16T07:17:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.023000", - "Timestamp": "2019-10-15T12:16:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.332000", + "Timestamp": "2024-05-16T07:17:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.310900", + "Timestamp": "2024-05-16T07:17:41.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.496600", + "Timestamp": "2024-05-16T07:17:41.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.491600", + "Timestamp": "2024-05-16T07:17:41.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.023000", - "Timestamp": "2019-10-15T12:16:54.000Z" + "SpotPrice": "1.366600", + "Timestamp": "2024-05-16T07:17:41.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.3xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.038600", - "Timestamp": "2019-10-15T12:15:59.000Z" + "SpotPrice": "0.954900", + "Timestamp": "2024-05-16T07:17:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.038600", - "Timestamp": "2019-10-15T12:15:59.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.393600", + "Timestamp": "2024-05-16T07:17:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.038600", - "Timestamp": "2019-10-15T12:15:59.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.388600", + "Timestamp": "2024-05-16T07:17:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.038600", - "Timestamp": "2019-10-15T12:15:59.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.263600", + "Timestamp": "2024-05-16T07:17:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5n.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.038600", - "Timestamp": "2019-10-15T12:14:55.000Z" + "SpotPrice": "0.608000", + "Timestamp": "2024-05-16T07:17:40.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.078000", - "Timestamp": "2019-10-15T12:14:27.000Z" + "SpotPrice": "12.583400", + "Timestamp": "2024-05-16T07:17:40.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.078000", - "Timestamp": "2019-10-15T12:14:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.856500", + "Timestamp": "2024-05-16T07:17:40.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.078000", - "Timestamp": "2019-10-15T12:14:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.851500", + "Timestamp": "2024-05-16T07:17:40.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.471000", - "Timestamp": "2019-10-15T12:10:02.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.726500", + "Timestamp": "2024-05-16T07:17:40.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.471000", - "Timestamp": "2019-10-15T12:10:02.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.394600", + "Timestamp": "2024-05-16T07:17:40.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.471000", - "Timestamp": "2019-10-15T12:10:02.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.389600", + "Timestamp": "2024-05-16T07:17:40.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.248400", - "Timestamp": "2019-10-15T12:07:16.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.264600", + "Timestamp": "2024-05-16T07:17:40.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.248400", - "Timestamp": "2019-10-15T12:07:16.000Z" + "SpotPrice": "2.561000", + "Timestamp": "2024-05-16T07:17:39.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.248400", - "Timestamp": "2019-10-15T12:07:16.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.264300", + "Timestamp": "2024-05-16T07:17:38.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.057900", - "Timestamp": "2019-10-15T11:46:30.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.259300", + "Timestamp": "2024-05-16T07:17:38.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T07:17:38.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.057900", - "Timestamp": "2019-10-15T11:46:30.000Z" + "SpotPrice": "1.155700", + "Timestamp": "2024-05-16T07:17:38.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "a1.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.metal-16xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.074700", - "Timestamp": "2019-10-15T11:41:21.000Z" + "SpotPrice": "3.207900", + "Timestamp": "2024-05-16T07:17:38.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "a1.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.metal-16xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.114700", - "Timestamp": "2019-10-15T11:41:21.000Z" + "SpotPrice": "3.202900", + "Timestamp": "2024-05-16T07:17:38.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "a1.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.metal-16xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.014700", - "Timestamp": "2019-10-15T11:41:21.000Z" + "SpotPrice": "3.077900", + "Timestamp": "2024-05-16T07:17:38.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.140200", - "Timestamp": "2019-10-15T11:41:20.000Z" + "SpotPrice": "2.777100", + "Timestamp": "2024-05-16T07:17:37.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.180200", - "Timestamp": "2019-10-15T11:41:20.000Z" + "SpotPrice": "2.772100", + "Timestamp": "2024-05-16T07:17:37.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.080200", - "Timestamp": "2019-10-15T11:41:20.000Z" + "SpotPrice": "2.647100", + "Timestamp": "2024-05-16T07:17:37.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.115900", - "Timestamp": "2019-10-15T11:38:10.000Z" + "SpotPrice": "4.835300", + "Timestamp": "2024-05-16T07:17:37.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m3.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.156700", - "Timestamp": "2019-10-15T11:34:42.000Z" + "SpotPrice": "6.049400", + "Timestamp": "2024-05-16T07:17:37.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.124200", - "Timestamp": "2019-10-15T11:18:57.000Z" + "SpotPrice": "4.913300", + "Timestamp": "2024-05-16T07:17:36.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.124200", - "Timestamp": "2019-10-15T11:18:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.336700", + "Timestamp": "2024-05-16T07:17:36.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.124200", - "Timestamp": "2019-10-15T11:18:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.331700", + "Timestamp": "2024-05-16T07:17:36.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.124200", - "Timestamp": "2019-10-15T11:18:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.206700", + "Timestamp": "2024-05-16T07:17:36.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "11.164200", + "Timestamp": "2024-05-16T07:17:36.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "11.159200", + "Timestamp": "2024-05-16T07:17:36.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "11.034200", + "Timestamp": "2024-05-16T07:17:36.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.057900", - "Timestamp": "2019-10-15T11:07:36.000Z" + "SpotPrice": "7.812200", + "Timestamp": "2024-05-16T07:17:35.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.057900", - "Timestamp": "2019-10-15T11:07:36.000Z" + "SpotPrice": "0.255500", + "Timestamp": "2024-05-16T07:17:35.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "c4.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.057900", - "Timestamp": "2019-10-15T11:07:36.000Z" + "SpotPrice": "2.224100", + "Timestamp": "2024-05-16T07:17:35.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c4.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.639200", - "Timestamp": "2019-10-15T11:07:25.000Z" + "SpotPrice": "2.146900", + "Timestamp": "2024-05-16T07:17:35.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.639200", - "Timestamp": "2019-10-15T11:07:25.000Z" + "SpotPrice": "0.528500", + "Timestamp": "2024-05-16T07:17:34.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.639200", - "Timestamp": "2019-10-15T11:07:25.000Z" + "SpotPrice": "1.430600", + "Timestamp": "2024-05-16T07:17:34.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.401200", - "Timestamp": "2019-10-15T11:07:08.000Z" + "SpotPrice": "3.711600", + "Timestamp": "2024-05-16T07:17:34.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.401200", - "Timestamp": "2019-10-15T11:07:08.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.706600", + "Timestamp": "2024-05-16T07:17:34.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.581600", + "Timestamp": "2024-05-16T07:17:34.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iezn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.401200", - "Timestamp": "2019-10-15T11:07:08.000Z" + "SpotPrice": "1.560700", + "Timestamp": "2024-05-16T07:17:33.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.371200", - "Timestamp": "2019-10-15T11:07:08.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.678400", + "Timestamp": "2024-05-16T07:17:33.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iezn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.371200", - "Timestamp": "2019-10-15T11:07:08.000Z" + "SpotPrice": "1.555700", + "Timestamp": "2024-05-16T07:17:33.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.371200", - "Timestamp": "2019-10-15T11:07:08.000Z" + "SpotPrice": "1.673400", + "Timestamp": "2024-05-16T07:17:33.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iezn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.271200", - "Timestamp": "2019-10-15T11:07:08.000Z" + "SpotPrice": "1.430700", + "Timestamp": "2024-05-16T07:17:33.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.271200", - "Timestamp": "2019-10-15T11:07:08.000Z" + "SpotPrice": "1.548400", + "Timestamp": "2024-05-16T07:17:33.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.271200", - "Timestamp": "2019-10-15T11:07:08.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.349200", + "Timestamp": "2024-05-16T07:17:33.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.176400", - "Timestamp": "2019-10-15T10:43:18.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.344200", + "Timestamp": "2024-05-16T07:17:33.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219200", + "Timestamp": "2024-05-16T07:17:33.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.262400", - "Timestamp": "2019-10-15T10:33:56.000Z" + "SpotPrice": "0.867300", + "Timestamp": "2024-05-16T07:17:33.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gd.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.232400", - "Timestamp": "2019-10-15T10:33:56.000Z" + "SpotPrice": "0.862300", + "Timestamp": "2024-05-16T07:17:33.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.132400", - "Timestamp": "2019-10-15T10:33:56.000Z" + "SpotPrice": "0.737300", + "Timestamp": "2024-05-16T07:17:33.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.055800", - "Timestamp": "2019-10-15T10:17:32.000Z" + "SpotPrice": "0.623900", + "Timestamp": "2024-05-16T07:17:33.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t2.large", - "ProductDescription": "Windows", - "SpotPrice": "0.055800", - "Timestamp": "2019-10-15T10:17:32.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.996300", + "Timestamp": "2024-05-16T07:17:32.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t2.large", - "ProductDescription": "Windows", - "SpotPrice": "0.055800", - "Timestamp": "2019-10-15T10:17:32.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.991300", + "Timestamp": "2024-05-16T07:17:32.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t2.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087800", - "Timestamp": "2019-10-15T10:17:13.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.866300", + "Timestamp": "2024-05-16T07:17:32.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087800", - "Timestamp": "2019-10-15T10:17:13.000Z" + "SpotPrice": "0.535800", + "Timestamp": "2024-05-16T07:17:32.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t2.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087800", - "Timestamp": "2019-10-15T10:17:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.530800", + "Timestamp": "2024-05-16T07:17:32.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t2.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.127800", - "Timestamp": "2019-10-15T10:17:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.405800", + "Timestamp": "2024-05-16T07:17:32.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t2.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.127800", - "Timestamp": "2019-10-15T10:17:13.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.531500", + "Timestamp": "2024-05-16T07:17:32.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.199000", + "Timestamp": "2024-05-16T07:17:31.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.127800", - "Timestamp": "2019-10-15T10:17:13.000Z" + "SpotPrice": "0.195000", + "Timestamp": "2024-05-16T07:17:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027800", - "Timestamp": "2019-10-15T10:17:13.000Z" + "SpotPrice": "0.139000", + "Timestamp": "2024-05-16T07:17:31.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t2.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027800", - "Timestamp": "2019-10-15T10:17:13.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.630300", + "Timestamp": "2024-05-16T07:17:31.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t2.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027800", - "Timestamp": "2019-10-15T10:17:13.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.625300", + "Timestamp": "2024-05-16T07:17:31.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.012900", - "Timestamp": "2019-10-15T10:16:59.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.500300", + "Timestamp": "2024-05-16T07:17:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.012900", - "Timestamp": "2019-10-15T10:16:59.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362500", + "Timestamp": "2024-05-16T07:17:31.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.012900", - "Timestamp": "2019-10-15T10:16:59.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.332500", + "Timestamp": "2024-05-16T07:17:31.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.012900", - "Timestamp": "2019-10-15T10:16:59.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.232500", + "Timestamp": "2024-05-16T07:17:31.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "g3s.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.670900", - "Timestamp": "2019-10-15T10:16:44.000Z" + "SpotPrice": "0.475800", + "Timestamp": "2024-05-16T07:17:30.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "g3s.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.640900", - "Timestamp": "2019-10-15T10:16:44.000Z" + "SpotPrice": "0.471800", + "Timestamp": "2024-05-16T07:17:30.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "g3s.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.540900", - "Timestamp": "2019-10-15T10:16:44.000Z" + "SpotPrice": "0.415800", + "Timestamp": "2024-05-16T07:17:30.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.9xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.384400", - "Timestamp": "2019-10-15T10:16:04.000Z" + "SpotPrice": "0.809200", + "Timestamp": "2024-05-16T07:17:30.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.384400", - "Timestamp": "2019-10-15T10:16:04.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.779200", + "Timestamp": "2024-05-16T07:17:30.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.384400", - "Timestamp": "2019-10-15T10:16:04.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.679200", + "Timestamp": "2024-05-16T07:17:30.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.354400", - "Timestamp": "2019-10-15T10:16:04.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.347600", + "Timestamp": "2024-05-16T07:17:30.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.354400", - "Timestamp": "2019-10-15T10:16:04.000Z" + "SpotPrice": "0.342600", + "Timestamp": "2024-05-16T07:17:30.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.354400", - "Timestamp": "2019-10-15T10:16:04.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.217600", + "Timestamp": "2024-05-16T07:17:30.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.254400", - "Timestamp": "2019-10-15T10:16:04.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148700", + "Timestamp": "2024-05-16T07:17:30.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.254400", - "Timestamp": "2019-10-15T10:16:04.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144700", + "Timestamp": "2024-05-16T07:17:30.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.254400", - "Timestamp": "2019-10-15T10:16:04.000Z" + "SpotPrice": "0.088700", + "Timestamp": "2024-05-16T07:17:30.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.252600", - "Timestamp": "2019-10-15T10:15:21.000Z" + "SpotPrice": "0.710400", + "Timestamp": "2024-05-16T07:17:30.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7gd.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.252600", - "Timestamp": "2019-10-15T10:15:21.000Z" + "SpotPrice": "0.627500", + "Timestamp": "2024-05-16T07:17:30.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.222600", - "Timestamp": "2019-10-15T10:15:21.000Z" + "SpotPrice": "0.705400", + "Timestamp": "2024-05-16T07:17:30.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7gd.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.222600", - "Timestamp": "2019-10-15T10:15:21.000Z" + "SpotPrice": "0.622500", + "Timestamp": "2024-05-16T07:17:30.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.122600", - "Timestamp": "2019-10-15T10:15:21.000Z" + "SpotPrice": "0.580400", + "Timestamp": "2024-05-16T07:17:30.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.122600", - "Timestamp": "2019-10-15T10:15:21.000Z" + "SpotPrice": "0.497500", + "Timestamp": "2024-05-16T07:17:30.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "h1.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.450000", - "Timestamp": "2019-10-15T10:15:03.000Z" + "SpotPrice": "0.819400", + "Timestamp": "2024-05-16T07:17:29.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "h1.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.420000", - "Timestamp": "2019-10-15T10:15:03.000Z" + "SpotPrice": "0.814400", + "Timestamp": "2024-05-16T07:17:29.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "h1.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.320000", - "Timestamp": "2019-10-15T10:15:03.000Z" + "SpotPrice": "0.689400", + "Timestamp": "2024-05-16T07:17:29.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "h1.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.264000", - "Timestamp": "2019-10-15T10:15:01.000Z" + "SpotPrice": "0.263500", + "Timestamp": "2024-05-16T07:17:29.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.metal", - "ProductDescription": "Windows", - "SpotPrice": "7.670400", - "Timestamp": "2019-10-15T10:14:31.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.898400", + "Timestamp": "2024-05-16T07:17:29.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.metal", - "ProductDescription": "Windows", - "SpotPrice": "7.670400", - "Timestamp": "2019-10-15T10:14:31.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.893400", + "Timestamp": "2024-05-16T07:17:29.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.metal", - "ProductDescription": "Windows", - "SpotPrice": "7.670400", - "Timestamp": "2019-10-15T10:14:31.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.768400", + "Timestamp": "2024-05-16T07:17:29.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5dn.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.127400", - "Timestamp": "2019-10-15T10:14:30.000Z" + "SpotPrice": "3.275100", + "Timestamp": "2024-05-16T07:17:29.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m1.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.077500", - "Timestamp": "2019-10-15T10:10:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.356700", + "Timestamp": "2024-05-16T07:17:29.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m1.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.077500", - "Timestamp": "2019-10-15T10:10:25.000Z" + "SpotPrice": "0.315300", + "Timestamp": "2024-05-16T07:17:29.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m1.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.077500", - "Timestamp": "2019-10-15T10:10:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.310300", + "Timestamp": "2024-05-16T07:17:29.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m1.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.117500", - "Timestamp": "2019-10-15T10:10:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.185300", + "Timestamp": "2024-05-16T07:17:29.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m1.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.117500", - "Timestamp": "2019-10-15T10:10:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.795300", + "Timestamp": "2024-05-16T07:17:29.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m1.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.117500", - "Timestamp": "2019-10-15T10:10:25.000Z" + "SpotPrice": "2.790300", + "Timestamp": "2024-05-16T07:17:29.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m1.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.017500", - "Timestamp": "2019-10-15T10:10:25.000Z" + "SpotPrice": "2.665300", + "Timestamp": "2024-05-16T07:17:29.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m1.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.017500", - "Timestamp": "2019-10-15T10:10:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.283500", + "Timestamp": "2024-05-16T07:17:29.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m1.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.278500", + "Timestamp": "2024-05-16T07:17:29.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.017500", - "Timestamp": "2019-10-15T10:10:25.000Z" + "SpotPrice": "1.153500", + "Timestamp": "2024-05-16T07:17:29.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.072500", - "Timestamp": "2019-10-15T10:10:03.000Z" + "SpotPrice": "1.709400", + "Timestamp": "2024-05-16T07:17:28.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.072500", - "Timestamp": "2019-10-15T10:10:03.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.704400", + "Timestamp": "2024-05-16T07:17:28.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.072500", - "Timestamp": "2019-10-15T10:10:03.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.579400", + "Timestamp": "2024-05-16T07:17:28.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.072500", - "Timestamp": "2019-10-15T10:10:03.000Z" + "SpotPrice": "6.355500", + "Timestamp": "2024-05-16T07:17:27.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.112500", - "Timestamp": "2019-10-15T10:10:03.000Z" + "SpotPrice": "6.350500", + "Timestamp": "2024-05-16T07:17:27.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.112500", - "Timestamp": "2019-10-15T10:10:03.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.225500", + "Timestamp": "2024-05-16T07:17:27.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.112500", - "Timestamp": "2019-10-15T10:10:03.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.495200", + "Timestamp": "2024-05-16T07:17:27.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115900", + "Timestamp": "2024-05-16T07:17:27.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7gd.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.112500", - "Timestamp": "2019-10-15T10:10:03.000Z" + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T07:17:27.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.012500", - "Timestamp": "2019-10-15T10:10:03.000Z" + "SpotPrice": "0.055900", + "Timestamp": "2024-05-16T07:17:27.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.012500", - "Timestamp": "2019-10-15T10:10:03.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.546500", + "Timestamp": "2024-05-16T07:17:27.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.012500", - "Timestamp": "2019-10-15T10:10:03.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.541500", + "Timestamp": "2024-05-16T07:17:27.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.012500", - "Timestamp": "2019-10-15T10:10:03.000Z" + "SpotPrice": "1.416500", + "Timestamp": "2024-05-16T07:17:27.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m1.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.141500", - "Timestamp": "2019-10-15T10:09:46.000Z" + "SpotPrice": "2.280500", + "Timestamp": "2024-05-16T07:17:27.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m1.large", - "ProductDescription": "Windows", - "SpotPrice": "0.141500", - "Timestamp": "2019-10-15T10:09:46.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.885500", + "Timestamp": "2024-05-16T07:17:27.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m1.large", - "ProductDescription": "Windows", - "SpotPrice": "0.141500", - "Timestamp": "2019-10-15T10:09:46.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.880500", + "Timestamp": "2024-05-16T07:17:27.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.030900", - "Timestamp": "2019-10-15T10:09:38.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.755500", + "Timestamp": "2024-05-16T07:17:27.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.030900", - "Timestamp": "2019-10-15T10:09:38.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.081100", + "Timestamp": "2024-05-16T07:17:27.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.030900", - "Timestamp": "2019-10-15T10:09:38.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.051100", + "Timestamp": "2024-05-16T07:17:27.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.030900", - "Timestamp": "2019-10-15T10:09:38.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.951100", + "Timestamp": "2024-05-16T07:17:27.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093800", - "Timestamp": "2019-10-15T10:09:33.000Z" + "SpotPrice": "0.124100", + "Timestamp": "2024-05-16T07:17:26.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133800", - "Timestamp": "2019-10-15T10:09:33.000Z" + "SpotPrice": "0.164100", + "Timestamp": "2024-05-16T07:17:26.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033800", - "Timestamp": "2019-10-15T10:09:33.000Z" - }, - { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-15T10:09:27.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-15T10:09:27.000Z" + "SpotPrice": "0.064100", + "Timestamp": "2024-05-16T07:17:26.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-15T10:09:27.000Z" + "SpotPrice": "0.283100", + "Timestamp": "2024-05-16T07:17:26.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-15T10:09:27.000Z" + "SpotPrice": "0.571700", + "Timestamp": "2024-05-16T07:17:25.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095400", - "Timestamp": "2019-10-15T10:05:57.000Z" + "SpotPrice": "2.772100", + "Timestamp": "2024-05-16T07:17:25.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135400", - "Timestamp": "2019-10-15T10:05:57.000Z" + "SpotPrice": "2.767100", + "Timestamp": "2024-05-16T07:17:25.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035400", - "Timestamp": "2019-10-15T10:05:57.000Z" + "SpotPrice": "2.642100", + "Timestamp": "2024-05-16T07:17:25.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123000", - "Timestamp": "2019-10-15T09:52:44.000Z" + "SpotPrice": "0.133200", + "Timestamp": "2024-05-16T07:17:25.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3a.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.163000", - "Timestamp": "2019-10-15T09:52:44.000Z" + "SpotPrice": "0.129500", + "Timestamp": "2024-05-16T07:17:25.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063000", - "Timestamp": "2019-10-15T09:52:44.000Z" + "SpotPrice": "0.073200", + "Timestamp": "2024-05-16T07:17:25.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.262200", - "Timestamp": "2019-10-15T09:52:26.000Z" + "SpotPrice": "0.826000", + "Timestamp": "2024-05-16T07:17:25.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.232200", - "Timestamp": "2019-10-15T09:52:26.000Z" + "SpotPrice": "0.821000", + "Timestamp": "2024-05-16T07:17:25.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.132200", - "Timestamp": "2019-10-15T09:52:26.000Z" + "SpotPrice": "0.696000", + "Timestamp": "2024-05-16T07:17:25.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095000", - "Timestamp": "2019-10-15T09:27:23.000Z" + "SpotPrice": "0.436100", + "Timestamp": "2024-05-16T07:17:25.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135000", - "Timestamp": "2019-10-15T09:27:23.000Z" + "SpotPrice": "0.431100", + "Timestamp": "2024-05-16T07:17:25.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035000", - "Timestamp": "2019-10-15T09:27:23.000Z" + "SpotPrice": "0.306100", + "Timestamp": "2024-05-16T07:17:25.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3a.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.065600", - "Timestamp": "2019-10-15T09:17:37.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3a.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.065600", - "Timestamp": "2019-10-15T09:17:37.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.183500", + "Timestamp": "2024-05-16T07:17:25.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.065600", - "Timestamp": "2019-10-15T09:17:37.000Z" + "SpotPrice": "1.349100", + "Timestamp": "2024-05-16T07:17:25.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-1e", + "InstanceType": "i3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.065600", - "Timestamp": "2019-10-15T09:17:37.000Z" - }, - { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3a.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.105600", - "Timestamp": "2019-10-15T09:17:37.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3a.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.105600", - "Timestamp": "2019-10-15T09:17:37.000Z" + "SpotPrice": "1.208400", + "Timestamp": "2024-05-16T07:17:25.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.105600", - "Timestamp": "2019-10-15T09:17:37.000Z" + "SpotPrice": "1.319100", + "Timestamp": "2024-05-16T07:17:25.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-1e", + "InstanceType": "i3.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.105600", - "Timestamp": "2019-10-15T09:17:37.000Z" + "SpotPrice": "1.178400", + "Timestamp": "2024-05-16T07:17:25.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.005600", - "Timestamp": "2019-10-15T09:17:37.000Z" + "SpotPrice": "1.219100", + "Timestamp": "2024-05-16T07:17:25.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-1e", + "InstanceType": "i3.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.005600", - "Timestamp": "2019-10-15T09:17:37.000Z" + "SpotPrice": "1.078400", + "Timestamp": "2024-05-16T07:17:25.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3a.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.005600", - "Timestamp": "2019-10-15T09:17:37.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.213900", + "Timestamp": "2024-05-16T07:17:25.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3a.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.005600", - "Timestamp": "2019-10-15T09:17:37.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.210200", + "Timestamp": "2024-05-16T07:17:25.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.110400", - "Timestamp": "2019-10-15T09:16:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.153900", + "Timestamp": "2024-05-16T07:17:25.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.110400", - "Timestamp": "2019-10-15T09:16:15.000Z" + "SpotPrice": "0.557600", + "Timestamp": "2024-05-16T07:17:25.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.110400", - "Timestamp": "2019-10-15T09:16:15.000Z" + "SpotPrice": "0.249800", + "Timestamp": "2024-05-16T07:17:24.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "m4.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.110400", - "Timestamp": "2019-10-15T09:16:15.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.195600", - "Timestamp": "2019-10-15T09:16:13.000Z" + "SpotPrice": "4.445700", + "Timestamp": "2024-05-16T07:17:24.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.195600", - "Timestamp": "2019-10-15T09:16:13.000Z" + "SpotPrice": "0.333500", + "Timestamp": "2024-05-16T07:17:24.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.195600", - "Timestamp": "2019-10-15T09:16:13.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.235600", - "Timestamp": "2019-10-15T09:16:13.000Z" + "SpotPrice": "0.325000", + "Timestamp": "2024-05-16T07:17:24.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.235600", - "Timestamp": "2019-10-15T09:16:13.000Z" + "SpotPrice": "0.328500", + "Timestamp": "2024-05-16T07:17:24.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.235600", - "Timestamp": "2019-10-15T09:16:13.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T09:16:13.000Z" + "SpotPrice": "0.320000", + "Timestamp": "2024-05-16T07:17:24.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T09:16:13.000Z" + "SpotPrice": "0.203500", + "Timestamp": "2024-05-16T07:17:24.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T09:16:13.000Z" + "SpotPrice": "0.195000", + "Timestamp": "2024-05-16T07:17:24.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m1.medium", "ProductDescription": "Windows", - "SpotPrice": "0.024000", - "Timestamp": "2019-10-15T09:16:02.000Z" + "SpotPrice": "0.095300", + "Timestamp": "2024-05-16T07:17:23.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.024000", - "Timestamp": "2019-10-15T09:16:02.000Z" + "SpotPrice": "2.501400", + "Timestamp": "2024-05-16T07:17:23.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3a.small", - "ProductDescription": "Windows", - "SpotPrice": "0.024000", - "Timestamp": "2019-10-15T09:16:02.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.122200", + "Timestamp": "2024-05-16T07:17:21.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3a.small", - "ProductDescription": "Windows", - "SpotPrice": "0.024000", - "Timestamp": "2019-10-15T09:16:02.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.117200", + "Timestamp": "2024-05-16T07:17:21.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.319600", - "Timestamp": "2019-10-15T09:15:57.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.992200", + "Timestamp": "2024-05-16T07:17:21.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.319600", - "Timestamp": "2019-10-15T09:15:57.000Z" + "SpotPrice": "2.088400", + "Timestamp": "2024-05-16T07:17:21.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.319600", - "Timestamp": "2019-10-15T09:15:57.000Z" + "SpotPrice": "0.584300", + "Timestamp": "2024-05-16T07:17:20.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.504400", - "Timestamp": "2019-10-15T09:15:55.000Z" + "SpotPrice": "3.569900", + "Timestamp": "2024-05-16T07:17:19.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.474400", - "Timestamp": "2019-10-15T09:15:55.000Z" + "SpotPrice": "3.564900", + "Timestamp": "2024-05-16T07:17:19.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.374400", - "Timestamp": "2019-10-15T09:15:55.000Z" + "SpotPrice": "3.439900", + "Timestamp": "2024-05-16T07:17:19.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.211800", - "Timestamp": "2019-10-15T09:10:01.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.319400", + "Timestamp": "2024-05-16T07:17:17.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.211800", - "Timestamp": "2019-10-15T09:10:01.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.378000", + "Timestamp": "2024-05-16T07:17:17.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.181800", - "Timestamp": "2019-10-15T09:10:01.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.192300", + "Timestamp": "2024-05-16T07:17:16.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.181800", - "Timestamp": "2019-10-15T09:10:01.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.048900", + "Timestamp": "2024-05-16T07:17:16.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.081800", - "Timestamp": "2019-10-15T09:10:01.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149100", + "Timestamp": "2024-05-16T07:17:16.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.081800", - "Timestamp": "2019-10-15T09:10:01.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147400", + "Timestamp": "2024-05-16T07:17:16.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.497800", - "Timestamp": "2019-10-15T09:09:53.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145400", + "Timestamp": "2024-05-16T07:17:16.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.497800", - "Timestamp": "2019-10-15T09:09:53.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143700", + "Timestamp": "2024-05-16T07:17:16.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.497800", - "Timestamp": "2019-10-15T09:09:53.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089100", + "Timestamp": "2024-05-16T07:17:16.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.471000", - "Timestamp": "2019-10-15T09:07:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087400", + "Timestamp": "2024-05-16T07:17:16.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.471000", - "Timestamp": "2019-10-15T09:07:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078900", + "Timestamp": "2024-05-16T07:17:15.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.471000", - "Timestamp": "2019-10-15T09:07:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075200", + "Timestamp": "2024-05-16T07:17:15.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.471000", - "Timestamp": "2019-10-15T09:07:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018900", + "Timestamp": "2024-05-16T07:17:15.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.413300", - "Timestamp": "2019-10-15T09:01:14.000Z" + "SpotPrice": "0.875300", + "Timestamp": "2024-05-16T07:17:15.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.383300", - "Timestamp": "2019-10-15T09:01:14.000Z" + "SpotPrice": "0.870300", + "Timestamp": "2024-05-16T07:17:15.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.283300", - "Timestamp": "2019-10-15T09:01:14.000Z" + "SpotPrice": "0.745300", + "Timestamp": "2024-05-16T07:17:15.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.503200", - "Timestamp": "2019-10-15T08:46:33.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172100", + "Timestamp": "2024-05-16T07:17:14.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.503200", - "Timestamp": "2019-10-15T08:46:33.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168400", + "Timestamp": "2024-05-16T07:17:14.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.503200", - "Timestamp": "2019-10-15T08:46:33.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T07:17:14.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.503200", - "Timestamp": "2019-10-15T08:46:33.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.258700", + "Timestamp": "2024-05-16T07:17:14.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.077300", - "Timestamp": "2019-10-15T08:27:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.253700", + "Timestamp": "2024-05-16T07:17:14.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.254800", - "Timestamp": "2019-10-15T08:19:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128700", + "Timestamp": "2024-05-16T07:17:14.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.130700", - "Timestamp": "2019-10-15T08:19:07.000Z" + "SpotPrice": "0.599000", + "Timestamp": "2024-05-16T07:17:14.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.130700", - "Timestamp": "2019-10-15T08:19:07.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.594000", + "Timestamp": "2024-05-16T07:17:14.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.130700", - "Timestamp": "2019-10-15T08:19:07.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.469000", + "Timestamp": "2024-05-16T07:17:14.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.100700", - "Timestamp": "2019-10-15T08:19:07.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.287800", + "Timestamp": "2024-05-16T07:17:13.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.100700", - "Timestamp": "2019-10-15T08:19:07.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.390400", + "Timestamp": "2024-05-16T07:17:12.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5n.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.100700", - "Timestamp": "2019-10-15T08:19:07.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.000700", - "Timestamp": "2019-10-15T08:19:07.000Z" + "SpotPrice": "0.385400", + "Timestamp": "2024-05-16T07:17:12.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5n.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.000700", - "Timestamp": "2019-10-15T08:19:07.000Z" + "SpotPrice": "0.260400", + "Timestamp": "2024-05-16T07:17:12.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.000700", - "Timestamp": "2019-10-15T08:19:07.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146400", + "Timestamp": "2024-05-16T07:17:11.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.941300", - "Timestamp": "2019-10-15T08:18:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142700", + "Timestamp": "2024-05-16T07:17:11.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.941300", - "Timestamp": "2019-10-15T08:18:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086400", + "Timestamp": "2024-05-16T07:17:11.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.941300", - "Timestamp": "2019-10-15T08:18:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.769200", + "Timestamp": "2024-05-16T07:17:11.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.941300", - "Timestamp": "2019-10-15T08:18:48.000Z" + "SpotPrice": "0.106500", + "Timestamp": "2024-05-16T07:17:11.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.911300", - "Timestamp": "2019-10-15T08:18:48.000Z" + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T07:17:11.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.911300", - "Timestamp": "2019-10-15T08:18:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046500", + "Timestamp": "2024-05-16T07:17:11.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.911300", - "Timestamp": "2019-10-15T08:18:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.644000", + "Timestamp": "2024-05-16T07:17:11.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.3xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.911300", - "Timestamp": "2019-10-15T08:18:48.000Z" + "SpotPrice": "0.639000", + "Timestamp": "2024-05-16T07:17:11.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.3xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.811300", - "Timestamp": "2019-10-15T08:18:48.000Z" + "SpotPrice": "0.514000", + "Timestamp": "2024-05-16T07:17:11.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.811300", - "Timestamp": "2019-10-15T08:18:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.467100", + "Timestamp": "2024-05-16T07:17:11.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.811300", - "Timestamp": "2019-10-15T08:18:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.437100", + "Timestamp": "2024-05-16T07:17:11.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.18xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.811300", - "Timestamp": "2019-10-15T08:18:48.000Z" + "SpotPrice": "1.337100", + "Timestamp": "2024-05-16T07:17:11.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.289000", - "Timestamp": "2019-10-15T08:18:36.000Z" - }, - { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.289000", - "Timestamp": "2019-10-15T08:18:36.000Z" + "SpotPrice": "0.606500", + "Timestamp": "2024-05-16T07:17:11.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.259000", - "Timestamp": "2019-10-15T08:18:36.000Z" + "SpotPrice": "0.601500", + "Timestamp": "2024-05-16T07:17:11.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.259000", - "Timestamp": "2019-10-15T08:18:36.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.476500", + "Timestamp": "2024-05-16T07:17:11.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.159000", - "Timestamp": "2019-10-15T08:18:36.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.536500", + "Timestamp": "2024-05-16T07:17:10.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.159000", - "Timestamp": "2019-10-15T08:18:36.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.028200", + "Timestamp": "2024-05-16T07:17:10.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.941300", - "Timestamp": "2019-10-15T08:17:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.006900", + "Timestamp": "2024-05-16T07:04:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.941300", - "Timestamp": "2019-10-15T08:17:35.000Z" + "SpotPrice": "5.212100", + "Timestamp": "2024-05-16T07:03:29.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.941300", - "Timestamp": "2019-10-15T08:17:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.207100", + "Timestamp": "2024-05-16T07:03:29.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.941300", - "Timestamp": "2019-10-15T08:17:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.082100", + "Timestamp": "2024-05-16T07:03:29.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.911300", - "Timestamp": "2019-10-15T08:17:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.265800", + "Timestamp": "2024-05-16T07:03:29.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.911300", - "Timestamp": "2019-10-15T08:17:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.382600", + "Timestamp": "2024-05-16T07:03:28.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.911300", - "Timestamp": "2019-10-15T08:17:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.334000", + "Timestamp": "2024-05-16T07:03:26.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.911300", - "Timestamp": "2019-10-15T08:17:35.000Z" + "SpotPrice": "4.329000", + "Timestamp": "2024-05-16T07:03:26.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.811300", - "Timestamp": "2019-10-15T08:17:35.000Z" + "SpotPrice": "4.204000", + "Timestamp": "2024-05-16T07:03:26.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.811300", - "Timestamp": "2019-10-15T08:17:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.732800", + "Timestamp": "2024-05-16T07:03:26.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.811300", - "Timestamp": "2019-10-15T08:17:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.727800", + "Timestamp": "2024-05-16T07:03:26.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.811300", - "Timestamp": "2019-10-15T08:17:35.000Z" - }, - { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.248400", - "Timestamp": "2019-10-15T08:17:10.000Z" + "SpotPrice": "3.602800", + "Timestamp": "2024-05-16T07:03:26.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m1.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.248400", - "Timestamp": "2019-10-15T08:17:10.000Z" + "SpotPrice": "0.362800", + "Timestamp": "2024-05-16T07:03:26.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.248400", - "Timestamp": "2019-10-15T08:17:10.000Z" + "SpotPrice": "2.455000", + "Timestamp": "2024-05-16T07:03:20.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.18xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.248400", - "Timestamp": "2019-10-15T08:17:10.000Z" + "SpotPrice": "5.031400", + "Timestamp": "2024-05-16T07:03:20.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.944700", - "Timestamp": "2019-10-15T08:16:59.000Z" + "SpotPrice": "6.679400", + "Timestamp": "2024-05-16T07:03:20.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r4.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.944700", - "Timestamp": "2019-10-15T08:16:59.000Z" + "SpotPrice": "4.589800", + "Timestamp": "2024-05-16T07:03:19.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.944700", - "Timestamp": "2019-10-15T08:16:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.447600", + "Timestamp": "2024-05-16T07:03:16.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.019300", - "Timestamp": "2019-10-15T08:16:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iezn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.442600", + "Timestamp": "2024-05-16T07:03:16.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.019300", - "Timestamp": "2019-10-15T08:16:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.317600", + "Timestamp": "2024-05-16T07:03:16.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.metal", "ProductDescription": "Windows", - "SpotPrice": "3.019300", - "Timestamp": "2019-10-15T08:16:43.000Z" + "SpotPrice": "6.400800", + "Timestamp": "2024-05-16T07:03:16.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.019300", - "Timestamp": "2019-10-15T08:16:43.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "8.058800", + "Timestamp": "2024-05-16T07:03:16.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.019300", - "Timestamp": "2019-10-15T08:16:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "8.053800", + "Timestamp": "2024-05-16T07:03:16.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.019300", - "Timestamp": "2019-10-15T08:16:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.928800", + "Timestamp": "2024-05-16T07:03:16.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.019300", - "Timestamp": "2019-10-15T08:16:11.000Z" + "SpotPrice": "13.056800", + "Timestamp": "2024-05-16T07:03:16.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.019300", - "Timestamp": "2019-10-15T08:16:11.000Z" + "SpotPrice": "1.064100", + "Timestamp": "2024-05-16T07:03:16.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m1.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.metal-48xl", "ProductDescription": "Windows", - "SpotPrice": "0.070700", - "Timestamp": "2019-10-15T08:16:11.000Z" + "SpotPrice": "15.951500", + "Timestamp": "2024-05-16T07:03:13.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m1.medium", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.metal", "ProductDescription": "Windows", - "SpotPrice": "0.070700", - "Timestamp": "2019-10-15T08:16:11.000Z" + "SpotPrice": "7.044800", + "Timestamp": "2024-05-16T07:03:13.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m1.medium", + "AvailabilityZone": "us-east-1c", + "InstanceType": "p3dn.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.070700", - "Timestamp": "2019-10-15T08:16:11.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m1.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.068700", - "Timestamp": "2019-10-15T08:16:11.000Z" + "SpotPrice": "16.825700", + "Timestamp": "2024-05-16T07:03:12.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m1.medium", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.068700", - "Timestamp": "2019-10-15T08:16:11.000Z" + "SpotPrice": "2.059200", + "Timestamp": "2024-05-16T07:03:12.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m1.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.068700", - "Timestamp": "2019-10-15T08:16:11.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m1.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.108700", - "Timestamp": "2019-10-15T08:16:11.000Z" + "SpotPrice": "2.176500", + "Timestamp": "2024-05-16T07:03:12.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m1.medium", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.108700", - "Timestamp": "2019-10-15T08:16:11.000Z" + "SpotPrice": "2.054200", + "Timestamp": "2024-05-16T07:03:12.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m1.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.108700", - "Timestamp": "2019-10-15T08:16:11.000Z" + "SpotPrice": "2.171500", + "Timestamp": "2024-05-16T07:03:12.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m1.medium", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.008700", - "Timestamp": "2019-10-15T08:16:11.000Z" + "SpotPrice": "1.929200", + "Timestamp": "2024-05-16T07:03:12.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m1.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.008700", - "Timestamp": "2019-10-15T08:16:11.000Z" + "SpotPrice": "2.046500", + "Timestamp": "2024-05-16T07:03:12.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m1.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.008700", - "Timestamp": "2019-10-15T08:16:11.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.466600", + "Timestamp": "2024-05-16T07:03:12.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4ad.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.471000", - "Timestamp": "2019-10-15T08:15:04.000Z" + "SpotPrice": "2.179600", + "Timestamp": "2024-05-16T07:03:12.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.471000", - "Timestamp": "2019-10-15T08:15:04.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.214800", + "Timestamp": "2024-05-16T07:03:11.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.471000", - "Timestamp": "2019-10-15T08:15:04.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.209800", + "Timestamp": "2024-05-16T07:03:11.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.171600", - "Timestamp": "2019-10-15T08:07:13.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.084800", + "Timestamp": "2024-05-16T07:03:11.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.171600", - "Timestamp": "2019-10-15T08:07:13.000Z" + "SpotPrice": "0.120400", + "Timestamp": "2024-05-16T07:03:11.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-16T07:03:11.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060400", + "Timestamp": "2024-05-16T07:03:11.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.955600", + "Timestamp": "2024-05-16T07:03:11.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.361800", + "Timestamp": "2024-05-16T07:03:11.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440000", + "Timestamp": "2024-05-16T07:03:10.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.171600", - "Timestamp": "2019-10-15T08:07:13.000Z" + "SpotPrice": "1.187600", + "Timestamp": "2024-05-16T07:03:08.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.211600", - "Timestamp": "2019-10-15T08:07:13.000Z" + "SpotPrice": "1.182600", + "Timestamp": "2024-05-16T07:03:08.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "z1d.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.211600", - "Timestamp": "2019-10-15T08:07:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.057600", + "Timestamp": "2024-05-16T07:03:08.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.040300", + "Timestamp": "2024-05-16T07:03:07.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.853100", + "Timestamp": "2024-05-16T07:03:07.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.211600", - "Timestamp": "2019-10-15T08:07:13.000Z" + "SpotPrice": "2.848100", + "Timestamp": "2024-05-16T07:03:07.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.111600", - "Timestamp": "2019-10-15T08:07:13.000Z" + "SpotPrice": "2.723100", + "Timestamp": "2024-05-16T07:03:07.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.111600", - "Timestamp": "2019-10-15T08:07:13.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.538200", + "Timestamp": "2024-05-16T07:03:07.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.247000", + "Timestamp": "2024-05-16T07:03:06.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.242000", + "Timestamp": "2024-05-16T07:03:06.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.111600", - "Timestamp": "2019-10-15T08:07:13.000Z" + "SpotPrice": "4.117000", + "Timestamp": "2024-05-16T07:03:06.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.295600", - "Timestamp": "2019-10-15T08:06:38.000Z" + "SpotPrice": "3.918800", + "Timestamp": "2024-05-16T07:03:05.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.295600", - "Timestamp": "2019-10-15T08:06:38.000Z" + "SpotPrice": "4.647800", + "Timestamp": "2024-05-16T07:03:05.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1e.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.295600", - "Timestamp": "2019-10-15T08:06:38.000Z" + "SpotPrice": "3.831100", + "Timestamp": "2024-05-16T07:03:05.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5dn.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.302400", + "Timestamp": "2024-05-16T07:03:04.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.641600", + "Timestamp": "2024-05-16T07:03:04.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "im4gn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095400", - "Timestamp": "2019-10-15T07:27:25.000Z" + "SpotPrice": "2.418000", + "Timestamp": "2024-05-16T07:03:04.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5dn.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "im4gn.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135400", - "Timestamp": "2019-10-15T07:27:25.000Z" + "SpotPrice": "2.413000", + "Timestamp": "2024-05-16T07:03:04.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5dn.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "im4gn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035400", - "Timestamp": "2019-10-15T07:27:25.000Z" + "SpotPrice": "2.288000", + "Timestamp": "2024-05-16T07:03:04.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.670900", - "Timestamp": "2019-10-15T07:18:15.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.469200", + "Timestamp": "2024-05-16T07:03:03.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.670900", - "Timestamp": "2019-10-15T07:18:15.000Z" + "SpotPrice": "5.147200", + "Timestamp": "2024-05-16T07:03:02.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.670900", - "Timestamp": "2019-10-15T07:18:15.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.142200", + "Timestamp": "2024-05-16T07:03:02.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.670900", - "Timestamp": "2019-10-15T07:18:15.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.017200", + "Timestamp": "2024-05-16T07:03:02.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.640900", - "Timestamp": "2019-10-15T07:18:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.300800", + "Timestamp": "2024-05-16T07:03:02.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.640900", - "Timestamp": "2019-10-15T07:18:15.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.520200", + "Timestamp": "2024-05-16T07:03:02.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.640900", - "Timestamp": "2019-10-15T07:18:15.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.800700", + "Timestamp": "2024-05-16T07:03:01.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.640900", - "Timestamp": "2019-10-15T07:18:15.000Z" + "SpotPrice": "1.795700", + "Timestamp": "2024-05-16T07:03:01.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.540900", - "Timestamp": "2019-10-15T07:18:15.000Z" + "SpotPrice": "1.670700", + "Timestamp": "2024-05-16T07:03:01.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.540900", - "Timestamp": "2019-10-15T07:18:15.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.409000", + "Timestamp": "2024-05-16T07:03:01.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.540900", - "Timestamp": "2019-10-15T07:18:15.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.804500", + "Timestamp": "2024-05-16T07:03:00.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.784800", + "Timestamp": "2024-05-16T07:02:59.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.779800", + "Timestamp": "2024-05-16T07:02:59.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4ad.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.540900", - "Timestamp": "2019-10-15T07:18:15.000Z" + "SpotPrice": "1.654800", + "Timestamp": "2024-05-16T07:02:59.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061500", - "Timestamp": "2019-10-15T07:13:00.000Z" + "SpotPrice": "1.266300", + "Timestamp": "2024-05-16T07:02:59.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gn.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.101500", - "Timestamp": "2019-10-15T07:13:00.000Z" + "SpotPrice": "1.261300", + "Timestamp": "2024-05-16T07:02:59.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001500", - "Timestamp": "2019-10-15T07:13:00.000Z" + "SpotPrice": "1.136300", + "Timestamp": "2024-05-16T07:02:59.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.006400", - "Timestamp": "2019-10-15T07:09:10.000Z" + "SpotPrice": "1.198700", + "Timestamp": "2024-05-16T07:02:59.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.006400", - "Timestamp": "2019-10-15T07:09:10.000Z" + "SpotPrice": "1.128000", + "Timestamp": "2024-05-16T07:02:59.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.560000", - "Timestamp": "2019-10-15T07:09:10.000Z" + "SpotPrice": "1.350400", + "Timestamp": "2024-05-16T07:02:58.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.560000", - "Timestamp": "2019-10-15T07:09:10.000Z" + "SpotPrice": "7.301500", + "Timestamp": "2024-05-16T07:02:58.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2gd.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.400400", - "Timestamp": "2019-10-15T07:08:20.000Z" + "SpotPrice": "0.092900", + "Timestamp": "2024-05-16T07:02:58.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.400400", - "Timestamp": "2019-10-15T07:08:20.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.063900", + "Timestamp": "2024-05-16T07:02:58.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.954000", - "Timestamp": "2019-10-15T07:08:20.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032900", + "Timestamp": "2024-05-16T07:02:58.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.954000", - "Timestamp": "2019-10-15T07:08:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.868100", + "Timestamp": "2024-05-16T07:02:58.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.370400", - "Timestamp": "2019-10-15T07:08:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.550000", + "Timestamp": "2024-05-16T07:02:58.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.metal-24xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.370400", - "Timestamp": "2019-10-15T07:08:20.000Z" + "SpotPrice": "3.545000", + "Timestamp": "2024-05-16T07:02:58.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.924000", - "Timestamp": "2019-10-15T07:08:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.420000", + "Timestamp": "2024-05-16T07:02:58.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.924000", - "Timestamp": "2019-10-15T07:08:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.140500", + "Timestamp": "2024-05-16T07:02:57.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.270400", - "Timestamp": "2019-10-15T07:08:20.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.577100", + "Timestamp": "2024-05-16T07:02:57.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.270400", - "Timestamp": "2019-10-15T07:08:20.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.285400", + "Timestamp": "2024-05-16T07:02:56.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.824000", - "Timestamp": "2019-10-15T07:08:20.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.280400", + "Timestamp": "2024-05-16T07:02:56.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.824000", - "Timestamp": "2019-10-15T07:08:20.000Z" + "SpotPrice": "4.155400", + "Timestamp": "2024-05-16T07:02:56.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.829900", - "Timestamp": "2019-10-15T06:53:10.000Z" + "SpotPrice": "1.597200", + "Timestamp": "2024-05-16T07:02:56.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.799900", - "Timestamp": "2019-10-15T06:53:10.000Z" + "SpotPrice": "1.592200", + "Timestamp": "2024-05-16T07:02:56.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.699900", - "Timestamp": "2019-10-15T06:53:10.000Z" + "SpotPrice": "1.467200", + "Timestamp": "2024-05-16T07:02:56.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2idn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.258800", - "Timestamp": "2019-10-15T06:51:17.000Z" + "SpotPrice": "3.003600", + "Timestamp": "2024-05-16T07:02:56.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2idn.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.228800", - "Timestamp": "2019-10-15T06:51:17.000Z" + "SpotPrice": "2.998600", + "Timestamp": "2024-05-16T07:02:56.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2idn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.128800", - "Timestamp": "2019-10-15T06:51:17.000Z" + "SpotPrice": "2.873600", + "Timestamp": "2024-05-16T07:02:56.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.012900", - "Timestamp": "2019-10-15T06:49:27.000Z" + "SpotPrice": "8.028900", + "Timestamp": "2024-05-16T07:02:55.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.019300", - "Timestamp": "2019-10-15T06:40:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.478700", + "Timestamp": "2024-05-16T07:02:55.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.156700", - "Timestamp": "2019-10-15T06:32:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473700", + "Timestamp": "2024-05-16T07:02:55.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.124200", - "Timestamp": "2019-10-15T06:17:46.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.348700", + "Timestamp": "2024-05-16T07:02:55.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.124200", - "Timestamp": "2019-10-15T06:17:46.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.597300", + "Timestamp": "2024-05-16T07:02:55.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.124200", - "Timestamp": "2019-10-15T06:17:46.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.592300", + "Timestamp": "2024-05-16T07:02:55.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092200", - "Timestamp": "2019-10-15T06:17:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.467300", + "Timestamp": "2024-05-16T07:02:55.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092200", - "Timestamp": "2019-10-15T06:17:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.392400", + "Timestamp": "2024-05-16T07:02:55.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132200", - "Timestamp": "2019-10-15T06:17:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T07:02:54.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132200", - "Timestamp": "2019-10-15T06:17:43.000Z" + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T07:02:54.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5n.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032200", - "Timestamp": "2019-10-15T06:17:43.000Z" + "SpotPrice": "0.050500", + "Timestamp": "2024-05-16T07:02:54.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5n.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032200", - "Timestamp": "2019-10-15T06:17:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.619700", + "Timestamp": "2024-05-16T07:02:54.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.902700", - "Timestamp": "2019-10-15T06:16:13.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.259100", + "Timestamp": "2024-05-16T07:02:54.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "p2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.902700", - "Timestamp": "2019-10-15T06:16:13.000Z" + "SpotPrice": "0.488900", + "Timestamp": "2024-05-16T07:02:54.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.902700", - "Timestamp": "2019-10-15T06:16:13.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.528900", + "Timestamp": "2024-05-16T07:02:54.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "p2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.428900", + "Timestamp": "2024-05-16T07:02:54.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.902700", - "Timestamp": "2019-10-15T06:16:13.000Z" + "SpotPrice": "2.020400", + "Timestamp": "2024-05-16T07:02:53.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.872700", - "Timestamp": "2019-10-15T06:16:13.000Z" + "SpotPrice": "1.990400", + "Timestamp": "2024-05-16T07:02:53.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.872700", - "Timestamp": "2019-10-15T06:16:13.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.890400", + "Timestamp": "2024-05-16T07:02:53.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.872700", - "Timestamp": "2019-10-15T06:16:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118000", + "Timestamp": "2024-05-16T07:02:53.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m3.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.872700", - "Timestamp": "2019-10-15T06:16:13.000Z" + "SpotPrice": "0.158000", + "Timestamp": "2024-05-16T07:02:53.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m3.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.772700", - "Timestamp": "2019-10-15T06:16:13.000Z" + "SpotPrice": "0.058000", + "Timestamp": "2024-05-16T07:02:53.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.772700", - "Timestamp": "2019-10-15T06:16:13.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.542900", + "Timestamp": "2024-05-16T07:02:53.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.772700", - "Timestamp": "2019-10-15T06:16:13.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.537900", + "Timestamp": "2024-05-16T07:02:53.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.772700", - "Timestamp": "2019-10-15T06:16:13.000Z" + "SpotPrice": "0.412900", + "Timestamp": "2024-05-16T07:02:53.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.555200", - "Timestamp": "2019-10-15T06:16:11.000Z" + "SpotPrice": "0.261700", + "Timestamp": "2024-05-16T07:02:53.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.555200", - "Timestamp": "2019-10-15T06:16:11.000Z" + "SpotPrice": "4.420700", + "Timestamp": "2024-05-16T07:02:53.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.555200", - "Timestamp": "2019-10-15T06:16:11.000Z" + "SpotPrice": "4.363000", + "Timestamp": "2024-05-16T07:02:52.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.6xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.555200", - "Timestamp": "2019-10-15T06:16:11.000Z" + "SpotPrice": "2.098400", + "Timestamp": "2024-05-16T07:02:52.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.6xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.980700", - "Timestamp": "2019-10-15T06:15:46.000Z" + "SpotPrice": "2.076400", + "Timestamp": "2024-05-16T07:02:52.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3.xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.980700", - "Timestamp": "2019-10-15T06:15:46.000Z" + "SpotPrice": "0.390900", + "Timestamp": "2024-05-16T07:02:52.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.980700", - "Timestamp": "2019-10-15T06:15:46.000Z" + "SpotPrice": "4.332300", + "Timestamp": "2024-05-16T07:02:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.980700", - "Timestamp": "2019-10-15T06:15:46.000Z" + "SpotPrice": "1.709400", + "Timestamp": "2024-05-16T07:02:51.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.413300", - "Timestamp": "2019-10-15T06:15:33.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.190700", + "Timestamp": "2024-05-16T07:02:51.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.413300", - "Timestamp": "2019-10-15T06:15:33.000Z" - }, - { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.383300", - "Timestamp": "2019-10-15T06:15:33.000Z" + "SpotPrice": "0.392300", + "Timestamp": "2024-05-16T07:02:51.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.383300", - "Timestamp": "2019-10-15T06:15:33.000Z" + "SpotPrice": "0.388600", + "Timestamp": "2024-05-16T07:02:51.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.283300", - "Timestamp": "2019-10-15T06:15:33.000Z" + "SpotPrice": "0.332300", + "Timestamp": "2024-05-16T07:02:51.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.283300", - "Timestamp": "2019-10-15T06:15:33.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.163300", + "Timestamp": "2024-05-16T07:02:51.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.019300", - "Timestamp": "2019-10-15T06:15:16.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.875700", + "Timestamp": "2024-05-16T07:02:51.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.019300", - "Timestamp": "2019-10-15T06:15:16.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.845700", + "Timestamp": "2024-05-16T07:02:51.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.019300", - "Timestamp": "2019-10-15T06:15:16.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.745700", + "Timestamp": "2024-05-16T07:02:51.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r4.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.019300", - "Timestamp": "2019-10-15T06:15:16.000Z" + "SpotPrice": "2.384100", + "Timestamp": "2024-05-16T07:02:50.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.317200", - "Timestamp": "2019-10-15T06:13:50.000Z" + "SpotPrice": "1.308500", + "Timestamp": "2024-05-16T07:02:49.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.287200", - "Timestamp": "2019-10-15T06:13:50.000Z" + "SpotPrice": "1.303500", + "Timestamp": "2024-05-16T07:02:49.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.187200", - "Timestamp": "2019-10-15T06:13:50.000Z" + "SpotPrice": "1.178500", + "Timestamp": "2024-05-16T07:02:49.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.400400", - "Timestamp": "2019-10-15T06:11:14.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.060600", + "Timestamp": "2024-05-16T07:02:49.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.400400", - "Timestamp": "2019-10-15T06:11:14.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "h1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.189500", + "Timestamp": "2024-05-16T07:02:49.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.400400", - "Timestamp": "2019-10-15T06:11:14.000Z" + "SpotPrice": "0.594900", + "Timestamp": "2024-05-16T07:02:49.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5dn.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.370400", - "Timestamp": "2019-10-15T06:11:14.000Z" + "SpotPrice": "0.589900", + "Timestamp": "2024-05-16T07:02:49.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.370400", - "Timestamp": "2019-10-15T06:11:14.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.464900", + "Timestamp": "2024-05-16T07:02:49.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.370400", - "Timestamp": "2019-10-15T06:11:14.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.662200", + "Timestamp": "2024-05-16T07:02:48.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.270400", - "Timestamp": "2019-10-15T06:11:14.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.657200", + "Timestamp": "2024-05-16T07:02:48.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5dn.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.270400", - "Timestamp": "2019-10-15T06:11:14.000Z" + "SpotPrice": "0.532200", + "Timestamp": "2024-05-16T07:02:48.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.270400", - "Timestamp": "2019-10-15T06:11:14.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.186200", + "Timestamp": "2024-05-16T07:02:46.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.829900", - "Timestamp": "2019-10-15T06:10:43.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.181200", + "Timestamp": "2024-05-16T07:02:46.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.829900", - "Timestamp": "2019-10-15T06:10:43.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.056200", + "Timestamp": "2024-05-16T07:02:46.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.799900", - "Timestamp": "2019-10-15T06:10:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118700", + "Timestamp": "2024-05-16T07:02:45.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.799900", - "Timestamp": "2019-10-15T06:10:43.000Z" + "SpotPrice": "0.115000", + "Timestamp": "2024-05-16T07:02:45.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.699900", - "Timestamp": "2019-10-15T06:10:43.000Z" + "SpotPrice": "0.058700", + "Timestamp": "2024-05-16T07:02:45.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.699900", - "Timestamp": "2019-10-15T06:10:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.357000", + "Timestamp": "2024-05-16T07:02:45.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.115900", - "Timestamp": "2019-10-15T06:10:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.352000", + "Timestamp": "2024-05-16T07:02:45.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.115900", - "Timestamp": "2019-10-15T06:10:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.227000", + "Timestamp": "2024-05-16T07:02:45.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.115900", - "Timestamp": "2019-10-15T06:10:43.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.279700", + "Timestamp": "2024-05-16T07:02:45.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.006400", - "Timestamp": "2019-10-15T06:09:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319700", + "Timestamp": "2024-05-16T07:02:45.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.006400", - "Timestamp": "2019-10-15T06:09:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219700", + "Timestamp": "2024-05-16T07:02:45.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.006400", - "Timestamp": "2019-10-15T06:09:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.453100", + "Timestamp": "2024-05-16T07:02:44.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.947200", - "Timestamp": "2019-10-15T06:07:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.423100", + "Timestamp": "2024-05-16T07:02:44.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.947200", - "Timestamp": "2019-10-15T06:07:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.323100", + "Timestamp": "2024-05-16T07:02:44.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.133200", - "Timestamp": "2019-10-15T06:06:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "14.002500", + "Timestamp": "2024-05-16T07:02:44.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1e.16xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "i3.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.133200", - "Timestamp": "2019-10-15T06:06:49.000Z" + "SpotPrice": "0.124400", + "Timestamp": "2024-05-16T07:02:44.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1e.16xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "i3.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "4.103200", - "Timestamp": "2019-10-15T06:06:49.000Z" + "SpotPrice": "0.164400", + "Timestamp": "2024-05-16T07:02:44.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "4.103200", - "Timestamp": "2019-10-15T06:06:49.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064400", + "Timestamp": "2024-05-16T07:02:44.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.003200", - "Timestamp": "2019-10-15T06:06:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.309600", + "Timestamp": "2024-05-16T07:02:43.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.003200", - "Timestamp": "2019-10-15T06:06:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.304600", + "Timestamp": "2024-05-16T07:02:43.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.115900", - "Timestamp": "2019-10-15T05:49:37.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.179600", + "Timestamp": "2024-05-16T07:02:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T05:39:57.000Z" + "SpotPrice": "2.074800", + "Timestamp": "2024-05-16T07:02:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.170800", - "Timestamp": "2019-10-15T05:39:57.000Z" + "SpotPrice": "2.069800", + "Timestamp": "2024-05-16T07:02:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.070800", - "Timestamp": "2019-10-15T05:39:57.000Z" + "SpotPrice": "1.944800", + "Timestamp": "2024-05-16T07:02:43.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.044300", + "Timestamp": "2024-05-16T07:02:43.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.133400", - "Timestamp": "2019-10-15T05:38:55.000Z" + "SpotPrice": "1.999700", + "Timestamp": "2024-05-16T07:02:42.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gn.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.173400", - "Timestamp": "2019-10-15T05:38:55.000Z" + "SpotPrice": "1.994700", + "Timestamp": "2024-05-16T07:02:42.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.073400", - "Timestamp": "2019-10-15T05:38:55.000Z" + "SpotPrice": "1.869700", + "Timestamp": "2024-05-16T07:02:42.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.077300", - "Timestamp": "2019-10-15T05:24:18.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.814000", - "Timestamp": "2019-10-15T05:17:57.000Z" + "SpotPrice": "0.265900", + "Timestamp": "2024-05-16T07:02:42.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.814000", - "Timestamp": "2019-10-15T05:17:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.149800", + "Timestamp": "2024-05-16T07:02:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.814000", - "Timestamp": "2019-10-15T05:17:57.000Z" + "SpotPrice": "5.083700", + "Timestamp": "2024-05-16T07:02:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.784000", - "Timestamp": "2019-10-15T05:17:57.000Z" + "SpotPrice": "5.078700", + "Timestamp": "2024-05-16T07:02:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.784000", - "Timestamp": "2019-10-15T05:17:57.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.953700", + "Timestamp": "2024-05-16T07:02:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.784000", - "Timestamp": "2019-10-15T05:17:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.487300", + "Timestamp": "2024-05-16T07:02:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.684000", - "Timestamp": "2019-10-15T05:17:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.482300", + "Timestamp": "2024-05-16T07:02:41.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.684000", - "Timestamp": "2019-10-15T05:17:57.000Z" + "SpotPrice": "1.357300", + "Timestamp": "2024-05-16T07:02:41.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.684000", - "Timestamp": "2019-10-15T05:17:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.077100", + "Timestamp": "2024-05-16T07:02:41.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5zn.3xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.156000", - "Timestamp": "2019-10-15T05:17:26.000Z" + "SpotPrice": "0.968200", + "Timestamp": "2024-05-16T07:02:40.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.156000", - "Timestamp": "2019-10-15T05:17:26.000Z" + "SpotPrice": "0.524000", + "Timestamp": "2024-05-16T07:02:40.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.156000", - "Timestamp": "2019-10-15T05:17:26.000Z" + "SpotPrice": "1.170600", + "Timestamp": "2024-05-16T07:02:40.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "im4gn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129000", - "Timestamp": "2019-10-15T05:16:12.000Z" + "SpotPrice": "0.426200", + "Timestamp": "2024-05-16T07:02:40.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "im4gn.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.169000", - "Timestamp": "2019-10-15T05:16:12.000Z" + "SpotPrice": "0.421200", + "Timestamp": "2024-05-16T07:02:40.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "im4gn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069000", - "Timestamp": "2019-10-15T05:16:12.000Z" + "SpotPrice": "0.296200", + "Timestamp": "2024-05-16T07:02:40.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.153600", + "Timestamp": "2024-05-16T07:02:40.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.211800", - "Timestamp": "2019-10-15T05:15:58.000Z" + "SpotPrice": "0.762000", + "Timestamp": "2024-05-16T07:02:39.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4g.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.181800", - "Timestamp": "2019-10-15T05:15:58.000Z" + "SpotPrice": "0.757000", + "Timestamp": "2024-05-16T07:02:39.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.081800", - "Timestamp": "2019-10-15T05:15:58.000Z" + "SpotPrice": "0.632000", + "Timestamp": "2024-05-16T07:02:39.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.450000", - "Timestamp": "2019-10-15T05:15:51.000Z" + "SpotPrice": "1.465700", + "Timestamp": "2024-05-16T07:02:39.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.450000", - "Timestamp": "2019-10-15T05:15:51.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.460700", + "Timestamp": "2024-05-16T07:02:39.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.335700", + "Timestamp": "2024-05-16T07:02:39.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.450000", - "Timestamp": "2019-10-15T05:15:51.000Z" + "SpotPrice": "2.222400", + "Timestamp": "2024-05-16T07:02:39.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "4.420000", - "Timestamp": "2019-10-15T05:15:51.000Z" + "SpotPrice": "2.217400", + "Timestamp": "2024-05-16T07:02:39.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "p2.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "4.420000", - "Timestamp": "2019-10-15T05:15:51.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.092400", + "Timestamp": "2024-05-16T07:02:39.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Windows", + "SpotPrice": "4.965400", + "Timestamp": "2024-05-16T07:02:39.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.372700", + "Timestamp": "2024-05-16T07:02:38.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "4.420000", - "Timestamp": "2019-10-15T05:15:51.000Z" + "SpotPrice": "1.367700", + "Timestamp": "2024-05-16T07:02:38.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.320000", - "Timestamp": "2019-10-15T05:15:51.000Z" + "SpotPrice": "1.242700", + "Timestamp": "2024-05-16T07:02:38.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.320000", - "Timestamp": "2019-10-15T05:15:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.677800", + "Timestamp": "2024-05-16T07:02:38.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.672800", + "Timestamp": "2024-05-16T07:02:38.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.metal-16xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.320000", - "Timestamp": "2019-10-15T05:15:51.000Z" + "SpotPrice": "2.547800", + "Timestamp": "2024-05-16T07:02:38.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "7.264000", - "Timestamp": "2019-10-15T05:15:29.000Z" + "SpotPrice": "2.502700", + "Timestamp": "2024-05-16T07:02:38.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "7.264000", - "Timestamp": "2019-10-15T05:15:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.774200", + "Timestamp": "2024-05-16T07:02:37.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "7.264000", - "Timestamp": "2019-10-15T05:15:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.769200", + "Timestamp": "2024-05-16T07:02:37.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.400400", - "Timestamp": "2019-10-15T05:11:04.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.644200", + "Timestamp": "2024-05-16T07:02:37.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.400400", - "Timestamp": "2019-10-15T05:11:04.000Z" + "SpotPrice": "2.062500", + "Timestamp": "2024-05-16T07:02:37.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.400400", - "Timestamp": "2019-10-15T05:11:04.000Z" + "SpotPrice": "1.792700", + "Timestamp": "2024-05-16T07:02:37.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.370400", - "Timestamp": "2019-10-15T05:11:04.000Z" + "SpotPrice": "2.057500", + "Timestamp": "2024-05-16T07:02:37.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.370400", - "Timestamp": "2019-10-15T05:11:04.000Z" + "SpotPrice": "1.787700", + "Timestamp": "2024-05-16T07:02:37.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.370400", - "Timestamp": "2019-10-15T05:11:04.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.932500", + "Timestamp": "2024-05-16T07:02:37.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.270400", - "Timestamp": "2019-10-15T05:11:04.000Z" + "SpotPrice": "1.662700", + "Timestamp": "2024-05-16T07:02:37.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.270400", - "Timestamp": "2019-10-15T05:11:04.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.741900", + "Timestamp": "2024-05-16T07:02:37.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.711900", + "Timestamp": "2024-05-16T07:02:37.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r3.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.270400", - "Timestamp": "2019-10-15T05:11:04.000Z" + "SpotPrice": "0.611900", + "Timestamp": "2024-05-16T07:02:37.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.006400", - "Timestamp": "2019-10-15T05:10:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.837900", + "Timestamp": "2024-05-16T07:02:37.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.006400", - "Timestamp": "2019-10-15T05:10:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.832900", + "Timestamp": "2024-05-16T07:02:37.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.006400", - "Timestamp": "2019-10-15T05:10:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.707900", + "Timestamp": "2024-05-16T07:02:37.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5n.9xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.006400", - "Timestamp": "2019-10-15T05:10:53.000Z" + "SpotPrice": "2.499800", + "Timestamp": "2024-05-16T07:02:35.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.990600", - "Timestamp": "2019-10-15T05:08:38.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-16T07:02:35.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.990600", - "Timestamp": "2019-10-15T05:08:38.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108900", + "Timestamp": "2024-05-16T07:02:35.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052600", + "Timestamp": "2024-05-16T07:02:35.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.571600", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.566600", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.441600", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164100", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160400", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104100", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.990600", - "Timestamp": "2019-10-15T05:08:38.000Z" + "SpotPrice": "0.685100", + "Timestamp": "2024-05-16T07:02:34.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "h1.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c4.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.066000", - "Timestamp": "2019-10-15T05:08:07.000Z" + "SpotPrice": "0.533200", + "Timestamp": "2024-05-16T07:02:34.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "h1.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c3.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.066000", - "Timestamp": "2019-10-15T05:08:07.000Z" + "SpotPrice": "2.022300", + "Timestamp": "2024-05-16T07:02:34.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "h1.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.460000", - "Timestamp": "2019-10-15T05:08:07.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.320800", + "Timestamp": "2024-05-16T07:02:34.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "h1.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.460000", - "Timestamp": "2019-10-15T05:08:07.000Z" + "SpotPrice": "0.500700", + "Timestamp": "2024-05-16T07:02:33.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "h1.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.430000", - "Timestamp": "2019-10-15T05:08:07.000Z" + "SpotPrice": "0.495700", + "Timestamp": "2024-05-16T07:02:33.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "h1.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.370700", + "Timestamp": "2024-05-16T07:02:33.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137900", + "Timestamp": "2024-05-16T07:02:33.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2gd.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.430000", - "Timestamp": "2019-10-15T05:08:07.000Z" + "SpotPrice": "0.134200", + "Timestamp": "2024-05-16T07:02:33.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "h1.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.330000", - "Timestamp": "2019-10-15T05:08:07.000Z" + "SpotPrice": "0.077900", + "Timestamp": "2024-05-16T07:02:33.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "h1.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.391200", + "Timestamp": "2024-05-16T07:02:33.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.361200", + "Timestamp": "2024-05-16T07:02:33.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.18xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.330000", - "Timestamp": "2019-10-15T05:08:07.000Z" + "SpotPrice": "1.261200", + "Timestamp": "2024-05-16T07:02:33.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.979900", - "Timestamp": "2019-10-15T04:57:10.000Z" + "SpotPrice": "1.193300", + "Timestamp": "2024-05-16T07:02:33.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.949900", - "Timestamp": "2019-10-15T04:57:10.000Z" + "SpotPrice": "1.188300", + "Timestamp": "2024-05-16T07:02:33.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.849900", - "Timestamp": "2019-10-15T04:57:10.000Z" + "SpotPrice": "1.063300", + "Timestamp": "2024-05-16T07:02:33.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.038600", - "Timestamp": "2019-10-15T04:51:13.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120100", + "Timestamp": "2024-05-16T07:02:33.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.057900", - "Timestamp": "2019-10-15T04:47:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116100", + "Timestamp": "2024-05-16T07:02:33.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060100", + "Timestamp": "2024-05-16T07:02:33.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.979900", - "Timestamp": "2019-10-15T04:41:57.000Z" + "SpotPrice": "2.663200", + "Timestamp": "2024-05-16T07:02:32.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.949900", - "Timestamp": "2019-10-15T04:41:57.000Z" + "SpotPrice": "2.658200", + "Timestamp": "2024-05-16T07:02:32.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.849900", - "Timestamp": "2019-10-15T04:41:57.000Z" + "SpotPrice": "2.533200", + "Timestamp": "2024-05-16T07:02:32.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "is4gen.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095400", - "Timestamp": "2019-10-15T04:23:59.000Z" + "SpotPrice": "0.322300", + "Timestamp": "2024-05-16T07:02:32.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "is4gen.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135400", - "Timestamp": "2019-10-15T04:23:59.000Z" + "SpotPrice": "0.318600", + "Timestamp": "2024-05-16T07:02:32.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "is4gen.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035400", - "Timestamp": "2019-10-15T04:23:59.000Z" + "SpotPrice": "0.262300", + "Timestamp": "2024-05-16T07:02:32.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.large", "ProductDescription": "Windows", - "SpotPrice": "0.509700", - "Timestamp": "2019-10-15T04:22:14.000Z" + "SpotPrice": "0.134100", + "Timestamp": "2024-05-16T07:02:32.000Z" }, { - "AvailabilityZone": "us-west-2a", + "AvailabilityZone": "us-east-1d", "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.509700", - "Timestamp": "2019-10-15T04:22:14.000Z" + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.471700", + "Timestamp": "2024-05-16T07:02:32.000Z" }, { - "AvailabilityZone": "us-west-2b", + "AvailabilityZone": "us-east-1d", "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.509700", - "Timestamp": "2019-10-15T04:22:14.000Z" + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.466700", + "Timestamp": "2024-05-16T07:02:32.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.979900", - "Timestamp": "2019-10-15T04:19:32.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.341700", + "Timestamp": "2024-05-16T07:02:32.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.979900", - "Timestamp": "2019-10-15T04:19:32.000Z" + "SpotPrice": "2.523000", + "Timestamp": "2024-05-16T07:02:32.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.979900", - "Timestamp": "2019-10-15T04:19:32.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.518000", + "Timestamp": "2024-05-16T07:02:32.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.393000", + "Timestamp": "2024-05-16T07:02:32.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.979900", - "Timestamp": "2019-10-15T04:19:32.000Z" + "SpotPrice": "0.326900", + "Timestamp": "2024-05-16T07:02:31.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gn.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.949900", - "Timestamp": "2019-10-15T04:19:32.000Z" + "SpotPrice": "0.321900", + "Timestamp": "2024-05-16T07:02:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.949900", - "Timestamp": "2019-10-15T04:19:32.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196900", + "Timestamp": "2024-05-16T07:02:31.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.949900", - "Timestamp": "2019-10-15T04:19:32.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.220600", + "Timestamp": "2024-05-16T07:02:31.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.949900", - "Timestamp": "2019-10-15T04:19:32.000Z" + "SpotPrice": "0.216900", + "Timestamp": "2024-05-16T07:02:31.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.849900", - "Timestamp": "2019-10-15T04:19:32.000Z" + "SpotPrice": "0.160600", + "Timestamp": "2024-05-16T07:02:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.849900", - "Timestamp": "2019-10-15T04:19:32.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.298500", + "Timestamp": "2024-05-16T07:02:31.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.849900", - "Timestamp": "2019-10-15T04:19:32.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.293500", + "Timestamp": "2024-05-16T07:02:31.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.849900", - "Timestamp": "2019-10-15T04:19:32.000Z" + "SpotPrice": "1.168500", + "Timestamp": "2024-05-16T07:02:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.354000", - "Timestamp": "2019-10-15T04:17:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.206900", + "Timestamp": "2024-05-16T07:02:31.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.354000", - "Timestamp": "2019-10-15T04:17:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.176900", + "Timestamp": "2024-05-16T07:02:31.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.354000", - "Timestamp": "2019-10-15T04:17:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.076900", + "Timestamp": "2024-05-16T07:02:31.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.057900", - "Timestamp": "2019-10-15T04:16:44.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140300", + "Timestamp": "2024-05-16T07:02:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.057900", - "Timestamp": "2019-10-15T04:16:44.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136600", + "Timestamp": "2024-05-16T07:02:31.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.057900", - "Timestamp": "2019-10-15T04:16:44.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080300", + "Timestamp": "2024-05-16T07:02:31.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.057900", - "Timestamp": "2019-10-15T04:16:44.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.976600", + "Timestamp": "2024-05-16T07:02:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.019300", - "Timestamp": "2019-10-15T04:16:28.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.971600", + "Timestamp": "2024-05-16T07:02:31.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.503200", - "Timestamp": "2019-10-15T04:16:08.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.846600", + "Timestamp": "2024-05-16T07:02:31.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.503200", - "Timestamp": "2019-10-15T04:16:08.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144100", + "Timestamp": "2024-05-16T07:02:31.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.503200", - "Timestamp": "2019-10-15T04:16:08.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140400", + "Timestamp": "2024-05-16T07:02:31.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.503200", - "Timestamp": "2019-10-15T04:16:08.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084100", + "Timestamp": "2024-05-16T07:02:31.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.509700", - "Timestamp": "2019-10-15T04:12:00.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T07:02:30.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.509700", - "Timestamp": "2019-10-15T04:12:00.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T07:02:30.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.509700", - "Timestamp": "2019-10-15T04:12:00.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047700", + "Timestamp": "2024-05-16T07:02:30.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4ad.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.509700", - "Timestamp": "2019-10-15T04:12:00.000Z" + "SpotPrice": "0.340300", + "Timestamp": "2024-05-16T07:02:30.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.271700", - "Timestamp": "2019-10-15T04:11:02.000Z" + "SpotPrice": "0.220700", + "Timestamp": "2024-05-16T07:02:30.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.241700", - "Timestamp": "2019-10-15T04:11:02.000Z" + "SpotPrice": "0.217000", + "Timestamp": "2024-05-16T07:02:30.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.141700", - "Timestamp": "2019-10-15T04:11:02.000Z" + "SpotPrice": "0.160700", + "Timestamp": "2024-05-16T07:02:30.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.251600", - "Timestamp": "2019-10-15T04:09:51.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100500", + "Timestamp": "2024-05-16T07:02:30.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.251600", - "Timestamp": "2019-10-15T04:09:51.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096800", + "Timestamp": "2024-05-16T07:02:30.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.251600", - "Timestamp": "2019-10-15T04:09:51.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040500", + "Timestamp": "2024-05-16T07:02:30.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.251600", - "Timestamp": "2019-10-15T04:09:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.838200", + "Timestamp": "2024-05-16T07:02:30.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t2.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.008100", - "Timestamp": "2019-10-15T04:09:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.833200", + "Timestamp": "2024-05-16T07:02:30.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t2.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.008100", - "Timestamp": "2019-10-15T04:09:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.708200", + "Timestamp": "2024-05-16T07:02:30.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t2.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.008100", - "Timestamp": "2019-10-15T04:09:43.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.953800", + "Timestamp": "2024-05-16T07:02:30.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t2.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063500", - "Timestamp": "2019-10-15T04:09:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.948800", + "Timestamp": "2024-05-16T07:02:30.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t2.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063500", - "Timestamp": "2019-10-15T04:09:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.823800", + "Timestamp": "2024-05-16T07:02:30.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063500", - "Timestamp": "2019-10-15T04:09:41.000Z" + "SpotPrice": "0.082600", + "Timestamp": "2024-05-16T07:02:29.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.013500", - "Timestamp": "2019-10-15T04:09:41.000Z" + "SpotPrice": "0.053600", + "Timestamp": "2024-05-16T07:02:29.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t2.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.013500", - "Timestamp": "2019-10-15T04:09:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022600", + "Timestamp": "2024-05-16T07:02:29.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-1b", + "InstanceType": "f1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.376600", + "Timestamp": "2024-05-16T07:02:29.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "f1.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.013500", - "Timestamp": "2019-10-15T04:09:41.000Z" + "SpotPrice": "5.346600", + "Timestamp": "2024-05-16T07:02:29.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-1b", + "InstanceType": "f1.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003500", - "Timestamp": "2019-10-15T04:09:41.000Z" + "SpotPrice": "5.246600", + "Timestamp": "2024-05-16T07:02:29.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.413900", + "Timestamp": "2024-05-16T07:02:29.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.408900", + "Timestamp": "2024-05-16T07:02:29.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003500", - "Timestamp": "2019-10-15T04:09:41.000Z" + "SpotPrice": "3.283900", + "Timestamp": "2024-05-16T07:02:29.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123600", + "Timestamp": "2024-05-16T07:02:29.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119900", + "Timestamp": "2024-05-16T07:02:29.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003500", - "Timestamp": "2019-10-15T04:09:41.000Z" + "SpotPrice": "0.063600", + "Timestamp": "2024-05-16T07:02:29.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.012900", - "Timestamp": "2019-10-15T04:08:35.000Z" + "SpotPrice": "3.311600", + "Timestamp": "2024-05-16T07:02:29.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.large", - "ProductDescription": "Windows", - "SpotPrice": "0.159800", - "Timestamp": "2019-10-15T04:05:57.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100100", + "Timestamp": "2024-05-16T07:02:29.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.large", - "ProductDescription": "Windows", - "SpotPrice": "0.159800", - "Timestamp": "2019-10-15T04:05:57.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096400", + "Timestamp": "2024-05-16T07:02:29.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.large", - "ProductDescription": "Windows", - "SpotPrice": "0.159800", - "Timestamp": "2019-10-15T04:05:57.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040100", + "Timestamp": "2024-05-16T07:02:29.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5n.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.670900", - "Timestamp": "2019-10-15T04:02:56.000Z" + "SpotPrice": "0.524900", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5n.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.640900", - "Timestamp": "2019-10-15T04:02:56.000Z" + "SpotPrice": "0.519900", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5n.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.540900", - "Timestamp": "2019-10-15T04:02:56.000Z" + "SpotPrice": "0.394900", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5dn.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.18xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.057900", - "Timestamp": "2019-10-15T03:41:15.000Z" + "SpotPrice": "4.589300", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T03:35:24.000Z" + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.170800", - "Timestamp": "2019-10-15T03:35:24.000Z" + "SpotPrice": "0.099800", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.070800", - "Timestamp": "2019-10-15T03:35:24.000Z" + "SpotPrice": "0.043500", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.829900", - "Timestamp": "2019-10-15T03:34:56.000Z" + "SpotPrice": "0.097300", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.799900", - "Timestamp": "2019-10-15T03:34:56.000Z" + "SpotPrice": "0.093600", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.699900", - "Timestamp": "2019-10-15T03:34:56.000Z" + "SpotPrice": "0.037300", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.941300", - "Timestamp": "2019-10-15T03:31:53.000Z" + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.911300", - "Timestamp": "2019-10-15T03:31:53.000Z" + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.811300", - "Timestamp": "2019-10-15T03:31:53.000Z" + "SpotPrice": "0.049400", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T03:17:12.000Z" + "SpotPrice": "0.515200", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.266000", - "Timestamp": "2019-10-15T03:17:12.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.510200", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.266000", - "Timestamp": "2019-10-15T03:17:12.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.385200", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.167600", - "Timestamp": "2019-10-15T03:17:12.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148600", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.306000", - "Timestamp": "2019-10-15T03:17:12.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159800", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.306000", - "Timestamp": "2019-10-15T03:17:12.000Z" + "SpotPrice": "0.144600", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067600", - "Timestamp": "2019-10-15T03:17:12.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155800", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.206000", - "Timestamp": "2019-10-15T03:17:12.000Z" + "SpotPrice": "0.088600", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.206000", - "Timestamp": "2019-10-15T03:17:12.000Z" + "SpotPrice": "0.099800", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.251600", - "Timestamp": "2019-10-15T03:15:59.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.370000", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.390000", - "Timestamp": "2019-10-15T03:15:59.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.365000", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.390000", - "Timestamp": "2019-10-15T03:15:59.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.240000", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.246800", - "Timestamp": "2019-10-15T03:10:23.000Z" + "SpotPrice": "0.383700", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.216800", - "Timestamp": "2019-10-15T03:10:23.000Z" + "SpotPrice": "0.378700", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.116800", - "Timestamp": "2019-10-15T03:10:23.000Z" + "SpotPrice": "0.253700", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.248400", - "Timestamp": "2019-10-15T03:10:12.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.012100", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.248400", - "Timestamp": "2019-10-15T03:10:12.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.007100", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.248400", - "Timestamp": "2019-10-15T03:10:12.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.882100", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.448800", - "Timestamp": "2019-10-15T03:09:32.000Z" + "SpotPrice": "7.179100", + "Timestamp": "2024-05-16T07:02:27.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.448800", - "Timestamp": "2019-10-15T03:09:32.000Z" + "SpotPrice": "2.504800", + "Timestamp": "2024-05-16T07:02:27.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.448800", - "Timestamp": "2019-10-15T03:09:32.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079300", + "Timestamp": "2024-05-16T07:02:26.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.115900", - "Timestamp": "2019-10-15T03:07:36.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075600", + "Timestamp": "2024-05-16T07:02:26.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019300", + "Timestamp": "2024-05-16T07:02:26.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.263300", - "Timestamp": "2019-10-15T02:53:17.000Z" + "SpotPrice": "0.756700", + "Timestamp": "2024-05-16T07:02:25.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.233300", - "Timestamp": "2019-10-15T02:53:17.000Z" + "SpotPrice": "0.751700", + "Timestamp": "2024-05-16T07:02:25.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.133300", - "Timestamp": "2019-10-15T02:53:17.000Z" + "SpotPrice": "0.626700", + "Timestamp": "2024-05-16T07:02:25.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.503200", - "Timestamp": "2019-10-15T02:45:51.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.611800", + "Timestamp": "2024-05-16T07:02:25.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.038600", - "Timestamp": "2019-10-15T02:34:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.606800", + "Timestamp": "2024-05-16T07:02:25.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.481800", + "Timestamp": "2024-05-16T07:02:25.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094500", - "Timestamp": "2019-10-15T02:24:15.000Z" + "SpotPrice": "0.891300", + "Timestamp": "2024-05-16T07:02:24.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134500", - "Timestamp": "2019-10-15T02:24:15.000Z" + "SpotPrice": "0.886300", + "Timestamp": "2024-05-16T07:02:24.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034500", - "Timestamp": "2019-10-15T02:24:15.000Z" + "SpotPrice": "0.761300", + "Timestamp": "2024-05-16T07:02:24.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "p2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.454000", - "Timestamp": "2019-10-15T02:19:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.987100", + "Timestamp": "2024-05-16T07:02:24.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "p2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.454000", - "Timestamp": "2019-10-15T02:19:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.982100", + "Timestamp": "2024-05-16T07:02:24.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "p2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.454000", - "Timestamp": "2019-10-15T02:19:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.857100", + "Timestamp": "2024-05-16T07:02:24.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.910000", - "Timestamp": "2019-10-15T02:19:39.000Z" + "SpotPrice": "0.139800", + "Timestamp": "2024-05-16T07:02:23.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.910000", - "Timestamp": "2019-10-15T02:19:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136100", + "Timestamp": "2024-05-16T07:02:23.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.910000", - "Timestamp": "2019-10-15T02:19:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079800", + "Timestamp": "2024-05-16T07:02:23.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.880000", - "Timestamp": "2019-10-15T02:19:39.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.553400", + "Timestamp": "2024-05-16T07:02:23.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.880000", - "Timestamp": "2019-10-15T02:19:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.071800", + "Timestamp": "2024-05-16T07:02:23.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "p2.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.880000", - "Timestamp": "2019-10-15T02:19:39.000Z" + "SpotPrice": "6.041800", + "Timestamp": "2024-05-16T07:02:23.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "p2.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.780000", - "Timestamp": "2019-10-15T02:19:39.000Z" + "SpotPrice": "5.941800", + "Timestamp": "2024-05-16T07:02:23.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.780000", - "Timestamp": "2019-10-15T02:19:39.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.148600", + "Timestamp": "2024-05-16T07:02:23.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.143600", + "Timestamp": "2024-05-16T07:02:23.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.780000", - "Timestamp": "2019-10-15T02:19:39.000Z" + "SpotPrice": "3.018600", + "Timestamp": "2024-05-16T07:02:23.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.795200", - "Timestamp": "2019-10-15T02:18:28.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.543700", + "Timestamp": "2024-05-16T07:02:21.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.795200", - "Timestamp": "2019-10-15T02:18:28.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.538700", + "Timestamp": "2024-05-16T07:02:21.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.795200", - "Timestamp": "2019-10-15T02:18:28.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.413700", + "Timestamp": "2024-05-16T07:02:21.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.409000", - "Timestamp": "2019-10-15T02:18:05.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "13.995000", + "Timestamp": "2024-05-16T07:02:20.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.409000", - "Timestamp": "2019-10-15T02:18:05.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "13.990000", + "Timestamp": "2024-05-16T07:02:20.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.409000", - "Timestamp": "2019-10-15T02:18:05.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "13.865000", + "Timestamp": "2024-05-16T07:02:20.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.597200", - "Timestamp": "2019-10-15T02:17:46.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.800000", + "Timestamp": "2024-05-16T07:02:20.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.597200", - "Timestamp": "2019-10-15T02:17:46.000Z" + "SpotPrice": "0.316100", + "Timestamp": "2024-05-16T07:02:19.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.597200", - "Timestamp": "2019-10-15T02:17:46.000Z" + "SpotPrice": "0.328300", + "Timestamp": "2024-05-16T07:02:19.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.567200", - "Timestamp": "2019-10-15T02:17:46.000Z" + "SpotPrice": "0.311100", + "Timestamp": "2024-05-16T07:02:19.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.567200", - "Timestamp": "2019-10-15T02:17:46.000Z" + "SpotPrice": "0.323300", + "Timestamp": "2024-05-16T07:02:19.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.567200", - "Timestamp": "2019-10-15T02:17:46.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186100", + "Timestamp": "2024-05-16T07:02:19.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.467200", - "Timestamp": "2019-10-15T02:17:46.000Z" + "SpotPrice": "0.198300", + "Timestamp": "2024-05-16T07:02:19.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.467200", - "Timestamp": "2019-10-15T02:17:46.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.281600", + "Timestamp": "2024-05-16T07:02:19.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.467200", - "Timestamp": "2019-10-15T02:17:46.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.276600", + "Timestamp": "2024-05-16T07:02:19.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.058000", - "Timestamp": "2019-10-15T02:17:39.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.151600", + "Timestamp": "2024-05-16T07:02:19.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.058000", - "Timestamp": "2019-10-15T02:17:39.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.640700", + "Timestamp": "2024-05-16T07:02:18.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.058000", - "Timestamp": "2019-10-15T02:17:39.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.635700", + "Timestamp": "2024-05-16T07:02:18.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "f1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.625000", - "Timestamp": "2019-10-15T02:16:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.510700", + "Timestamp": "2024-05-16T07:02:18.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "f1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.625000", - "Timestamp": "2019-10-15T02:16:59.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.504800", + "Timestamp": "2024-05-16T07:02:18.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "f1.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.625000", - "Timestamp": "2019-10-15T02:16:59.000Z" + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T07:02:17.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "f1.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.595000", - "Timestamp": "2019-10-15T02:16:59.000Z" + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T07:02:17.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "f1.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.595000", - "Timestamp": "2019-10-15T02:16:59.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047400", + "Timestamp": "2024-05-16T07:02:17.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "f1.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.060000", + "Timestamp": "2024-05-16T07:02:16.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iezn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.595000", - "Timestamp": "2019-10-15T02:16:59.000Z" + "SpotPrice": "3.055000", + "Timestamp": "2024-05-16T07:02:16.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "f1.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iezn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.495000", - "Timestamp": "2019-10-15T02:16:59.000Z" + "SpotPrice": "2.930000", + "Timestamp": "2024-05-16T07:02:16.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "f1.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.495000", - "Timestamp": "2019-10-15T02:16:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.155300", + "Timestamp": "2024-05-16T07:02:16.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "f1.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.495000", - "Timestamp": "2019-10-15T02:16:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.150300", + "Timestamp": "2024-05-16T07:02:16.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.062000", - "Timestamp": "2019-10-15T02:16:47.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.025300", + "Timestamp": "2024-05-16T07:02:16.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.130000", - "Timestamp": "2019-10-15T02:16:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T07:02:14.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.130000", - "Timestamp": "2019-10-15T02:16:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146300", + "Timestamp": "2024-05-16T07:02:14.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.130000", - "Timestamp": "2019-10-15T02:16:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046300", + "Timestamp": "2024-05-16T07:02:14.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.890000", - "Timestamp": "2019-10-15T02:16:47.000Z" + "SpotPrice": "0.279600", + "Timestamp": "2024-05-16T07:02:14.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.958000", - "Timestamp": "2019-10-15T02:16:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.274600", + "Timestamp": "2024-05-16T07:02:14.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.958000", - "Timestamp": "2019-10-15T02:16:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149600", + "Timestamp": "2024-05-16T07:02:14.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.958000", - "Timestamp": "2019-10-15T02:16:47.000Z" + "SpotPrice": "0.197600", + "Timestamp": "2024-05-16T07:02:14.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.860000", - "Timestamp": "2019-10-15T02:16:47.000Z" + "SpotPrice": "0.193900", + "Timestamp": "2024-05-16T07:02:14.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.928000", - "Timestamp": "2019-10-15T02:16:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137600", + "Timestamp": "2024-05-16T07:02:14.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.928000", - "Timestamp": "2019-10-15T02:16:47.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.255200", + "Timestamp": "2024-05-16T07:02:14.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.928000", - "Timestamp": "2019-10-15T02:16:47.000Z" + "SpotPrice": "0.251200", + "Timestamp": "2024-05-16T07:02:14.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.760000", - "Timestamp": "2019-10-15T02:16:47.000Z" + "SpotPrice": "0.195200", + "Timestamp": "2024-05-16T07:02:14.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.828000", - "Timestamp": "2019-10-15T02:16:47.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "9.836300", + "Timestamp": "2024-05-16T07:02:13.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.828000", - "Timestamp": "2019-10-15T02:16:47.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "9.806300", + "Timestamp": "2024-05-16T07:02:13.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1e.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.828000", - "Timestamp": "2019-10-15T02:16:47.000Z" + "SpotPrice": "9.706300", + "Timestamp": "2024-05-16T07:02:13.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.802000", - "Timestamp": "2019-10-15T02:16:29.000Z" + "SpotPrice": "1.154300", + "Timestamp": "2024-05-16T07:02:12.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.802000", - "Timestamp": "2019-10-15T02:16:29.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.149300", + "Timestamp": "2024-05-16T07:02:12.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "p3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.772000", - "Timestamp": "2019-10-15T02:16:29.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.024300", + "Timestamp": "2024-05-16T07:02:12.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "p3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.772000", - "Timestamp": "2019-10-15T02:16:29.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136200", + "Timestamp": "2024-05-16T07:02:12.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.672000", - "Timestamp": "2019-10-15T02:16:29.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132500", + "Timestamp": "2024-05-16T07:02:12.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.672000", - "Timestamp": "2019-10-15T02:16:29.000Z" + "SpotPrice": "0.076200", + "Timestamp": "2024-05-16T07:02:12.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.961400", - "Timestamp": "2019-10-15T02:16:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.670000", + "Timestamp": "2024-05-16T07:02:12.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.961400", - "Timestamp": "2019-10-15T02:16:10.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.690500", + "Timestamp": "2024-05-16T07:02:12.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.961400", - "Timestamp": "2019-10-15T02:16:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.665000", + "Timestamp": "2024-05-16T07:02:12.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.961400", - "Timestamp": "2019-10-15T02:16:10.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.685500", + "Timestamp": "2024-05-16T07:02:12.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.144000", - "Timestamp": "2019-10-15T02:15:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.540000", + "Timestamp": "2024-05-16T07:02:12.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.144000", - "Timestamp": "2019-10-15T02:15:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.560500", + "Timestamp": "2024-05-16T07:02:12.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.144000", - "Timestamp": "2019-10-15T02:15:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.424000", + "Timestamp": "2024-05-16T07:02:11.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.434200", - "Timestamp": "2019-10-15T02:15:53.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.407600", + "Timestamp": "2024-05-16T07:02:11.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.434200", - "Timestamp": "2019-10-15T02:15:53.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.419000", + "Timestamp": "2024-05-16T07:02:11.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.675400", - "Timestamp": "2019-10-15T02:15:27.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.402600", + "Timestamp": "2024-05-16T07:02:11.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.675400", - "Timestamp": "2019-10-15T02:15:27.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.294000", + "Timestamp": "2024-05-16T07:02:11.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.675400", - "Timestamp": "2019-10-15T02:15:27.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.277600", + "Timestamp": "2024-05-16T07:02:11.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r4.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.675400", - "Timestamp": "2019-10-15T02:15:27.000Z" + "SpotPrice": "0.256200", + "Timestamp": "2024-05-16T07:02:11.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r4.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.645400", - "Timestamp": "2019-10-15T02:15:27.000Z" + "SpotPrice": "0.226200", + "Timestamp": "2024-05-16T07:02:11.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.645400", - "Timestamp": "2019-10-15T02:15:27.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126200", + "Timestamp": "2024-05-16T07:02:11.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.645400", - "Timestamp": "2019-10-15T02:15:27.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.780000", + "Timestamp": "2024-05-16T07:02:11.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.939800", + "Timestamp": "2024-05-16T06:48:40.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.206000", + "Timestamp": "2024-05-16T06:48:40.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.643900", + "Timestamp": "2024-05-16T06:48:30.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.645400", - "Timestamp": "2019-10-15T02:15:27.000Z" + "SpotPrice": "3.638900", + "Timestamp": "2024-05-16T06:48:30.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.545400", - "Timestamp": "2019-10-15T02:15:27.000Z" + "SpotPrice": "3.513900", + "Timestamp": "2024-05-16T06:48:30.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "c5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.545400", - "Timestamp": "2019-10-15T02:15:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.637300", + "Timestamp": "2024-05-16T06:48:28.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.545400", - "Timestamp": "2019-10-15T02:15:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "13.280400", + "Timestamp": "2024-05-16T06:48:28.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "c5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.545400", - "Timestamp": "2019-10-15T02:15:27.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.538300", + "Timestamp": "2024-05-16T06:48:28.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.006900", + "Timestamp": "2024-05-16T06:48:28.000Z" + }, + { + "AvailabilityZone": "us-east-1e", + "InstanceType": "d2.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.310200", - "Timestamp": "2019-10-15T02:15:11.000Z" + "SpotPrice": "0.703300", + "Timestamp": "2024-05-16T06:48:26.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d2.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.310200", - "Timestamp": "2019-10-15T02:15:11.000Z" + "SpotPrice": "0.649100", + "Timestamp": "2024-05-16T06:48:26.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "d2.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.350200", - "Timestamp": "2019-10-15T02:15:11.000Z" + "SpotPrice": "0.673300", + "Timestamp": "2024-05-16T06:48:26.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d2.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.350200", - "Timestamp": "2019-10-15T02:15:11.000Z" + "SpotPrice": "0.619100", + "Timestamp": "2024-05-16T06:48:26.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "d2.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.250200", - "Timestamp": "2019-10-15T02:15:11.000Z" + "SpotPrice": "0.573300", + "Timestamp": "2024-05-16T06:48:26.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d2.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.250200", - "Timestamp": "2019-10-15T02:15:11.000Z" + "SpotPrice": "0.519100", + "Timestamp": "2024-05-16T06:48:26.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.509700", - "Timestamp": "2019-10-15T02:11:21.000Z" + "SpotPrice": "4.978600", + "Timestamp": "2024-05-16T06:48:25.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.509700", - "Timestamp": "2019-10-15T02:11:21.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.515900", + "Timestamp": "2024-05-16T06:48:25.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.509700", - "Timestamp": "2019-10-15T02:11:21.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.510900", + "Timestamp": "2024-05-16T06:48:25.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.271700", - "Timestamp": "2019-10-15T02:11:20.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.385900", + "Timestamp": "2024-05-16T06:48:25.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "p2.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.271700", - "Timestamp": "2019-10-15T02:11:20.000Z" + "SpotPrice": "13.515700", + "Timestamp": "2024-05-16T06:48:23.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.271700", - "Timestamp": "2019-10-15T02:11:20.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "p2.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "13.485700", + "Timestamp": "2024-05-16T06:48:23.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.241700", - "Timestamp": "2019-10-15T02:11:20.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "13.385700", + "Timestamp": "2024-05-16T06:48:23.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.241700", - "Timestamp": "2019-10-15T02:11:20.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.515100", + "Timestamp": "2024-05-16T06:48:21.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.241700", - "Timestamp": "2019-10-15T02:11:20.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.757700", + "Timestamp": "2024-05-16T06:48:20.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.141700", - "Timestamp": "2019-10-15T02:11:20.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.752700", + "Timestamp": "2024-05-16T06:48:20.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.141700", - "Timestamp": "2019-10-15T02:11:20.000Z" + "SpotPrice": "0.627700", + "Timestamp": "2024-05-16T06:48:20.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.141700", - "Timestamp": "2019-10-15T02:11:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.538200", + "Timestamp": "2024-05-16T06:48:20.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "inf1.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.228000", - "Timestamp": "2019-10-15T02:10:34.000Z" + "SpotPrice": "0.160900", + "Timestamp": "2024-05-16T06:48:19.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "inf1.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.228000", - "Timestamp": "2019-10-15T02:10:34.000Z" + "SpotPrice": "0.165000", + "Timestamp": "2024-05-16T06:48:19.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "inf1.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.198000", - "Timestamp": "2019-10-15T02:10:34.000Z" + "SpotPrice": "0.156900", + "Timestamp": "2024-05-16T06:48:19.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "inf1.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.198000", - "Timestamp": "2019-10-15T02:10:34.000Z" + "SpotPrice": "0.161000", + "Timestamp": "2024-05-16T06:48:19.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "inf1.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.098000", - "Timestamp": "2019-10-15T02:10:34.000Z" + "SpotPrice": "0.100900", + "Timestamp": "2024-05-16T06:48:19.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "inf1.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.098000", - "Timestamp": "2019-10-15T02:10:34.000Z" + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T06:48:19.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.498000", - "Timestamp": "2019-10-15T02:10:04.000Z" + "SpotPrice": "2.545400", + "Timestamp": "2024-05-16T06:48:18.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.498000", - "Timestamp": "2019-10-15T02:10:04.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.445600", + "Timestamp": "2024-05-16T06:48:18.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.498000", - "Timestamp": "2019-10-15T02:10:04.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.440600", + "Timestamp": "2024-05-16T06:48:18.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.019300", - "Timestamp": "2019-10-15T02:07:19.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.315600", + "Timestamp": "2024-05-16T06:48:18.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.413300", - "Timestamp": "2019-10-15T02:07:19.000Z" + "SpotPrice": "1.038900", + "Timestamp": "2024-05-16T06:48:16.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.383300", - "Timestamp": "2019-10-15T02:07:19.000Z" + "SpotPrice": "1.033900", + "Timestamp": "2024-05-16T06:48:16.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.283300", - "Timestamp": "2019-10-15T02:07:19.000Z" + "SpotPrice": "0.908900", + "Timestamp": "2024-05-16T06:48:16.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.384400", - "Timestamp": "2019-10-15T01:59:07.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.187900", + "Timestamp": "2024-05-16T06:48:16.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.384400", - "Timestamp": "2019-10-15T01:59:07.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.029500", + "Timestamp": "2024-05-16T06:48:14.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.384400", - "Timestamp": "2019-10-15T01:59:07.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.065200", + "Timestamp": "2024-05-16T06:48:14.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.354400", - "Timestamp": "2019-10-15T01:59:07.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.924600", + "Timestamp": "2024-05-16T06:48:14.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.354400", - "Timestamp": "2019-10-15T01:59:07.000Z" + "SpotPrice": "1.919600", + "Timestamp": "2024-05-16T06:48:14.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.354400", - "Timestamp": "2019-10-15T01:59:07.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.794600", + "Timestamp": "2024-05-16T06:48:14.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.254400", - "Timestamp": "2019-10-15T01:59:07.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.809500", + "Timestamp": "2024-05-16T06:48:13.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.254400", - "Timestamp": "2019-10-15T01:59:07.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.804500", + "Timestamp": "2024-05-16T06:48:13.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.254400", - "Timestamp": "2019-10-15T01:59:07.000Z" + "SpotPrice": "2.679500", + "Timestamp": "2024-05-16T06:48:13.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d2.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.019300", - "Timestamp": "2019-10-15T01:46:27.000Z" + "SpotPrice": "1.315200", + "Timestamp": "2024-05-16T06:48:13.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "r5dn.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1e.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.127400", - "Timestamp": "2019-10-15T01:43:26.000Z" + "SpotPrice": "16.600500", + "Timestamp": "2024-05-16T06:48:12.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2idn.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.038600", - "Timestamp": "2019-10-15T01:38:28.000Z" + "SpotPrice": "11.447100", + "Timestamp": "2024-05-16T06:48:12.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.941300", - "Timestamp": "2019-10-15T01:35:40.000Z" + "SpotPrice": "0.997000", + "Timestamp": "2024-05-16T06:48:12.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.911300", - "Timestamp": "2019-10-15T01:35:40.000Z" + "SpotPrice": "0.992000", + "Timestamp": "2024-05-16T06:48:12.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.811300", - "Timestamp": "2019-10-15T01:35:40.000Z" + "SpotPrice": "0.867000", + "Timestamp": "2024-05-16T06:48:12.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m2.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.019300", - "Timestamp": "2019-10-15T01:31:40.000Z" + "SpotPrice": "0.708200", + "Timestamp": "2024-05-16T06:48:12.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4ad.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.025800", - "Timestamp": "2019-10-15T01:23:22.000Z" + "SpotPrice": "1.108400", + "Timestamp": "2024-05-16T06:48:11.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.057900", - "Timestamp": "2019-10-15T01:18:09.000Z" + "SpotPrice": "7.002500", + "Timestamp": "2024-05-16T06:48:11.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.large", "ProductDescription": "Windows", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-15T01:16:39.000Z" + "SpotPrice": "0.179500", + "Timestamp": "2024-05-16T06:48:09.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-15T01:16:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.575800", + "Timestamp": "2024-05-16T06:48:09.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-15T01:16:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.570800", + "Timestamp": "2024-05-16T06:48:09.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.445800", + "Timestamp": "2024-05-16T06:48:09.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-15T01:16:39.000Z" + "SpotPrice": "3.008400", + "Timestamp": "2024-05-16T06:48:09.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "a1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093400", - "Timestamp": "2019-10-15T01:15:43.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.556400", + "Timestamp": "2024-05-16T06:48:08.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "a1.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093400", - "Timestamp": "2019-10-15T01:15:43.000Z" + "SpotPrice": "0.180400", + "Timestamp": "2024-05-16T06:48:08.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "a1.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m3.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133400", - "Timestamp": "2019-10-15T01:15:43.000Z" + "SpotPrice": "0.220400", + "Timestamp": "2024-05-16T06:48:08.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "a1.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133400", - "Timestamp": "2019-10-15T01:15:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120400", + "Timestamp": "2024-05-16T06:48:08.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "a1.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033400", - "Timestamp": "2019-10-15T01:15:43.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.098900", + "Timestamp": "2024-05-16T06:48:07.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "a1.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033400", - "Timestamp": "2019-10-15T01:15:43.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.278000", + "Timestamp": "2024-05-16T06:48:07.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.279100", + "Timestamp": "2024-05-16T06:48:07.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093800", - "Timestamp": "2019-10-15T01:13:37.000Z" + "SpotPrice": "3.056800", + "Timestamp": "2024-05-16T06:48:07.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133800", - "Timestamp": "2019-10-15T01:13:37.000Z" + "SpotPrice": "3.051800", + "Timestamp": "2024-05-16T06:48:07.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033800", - "Timestamp": "2019-10-15T01:13:37.000Z" + "SpotPrice": "2.926800", + "Timestamp": "2024-05-16T06:48:07.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.561100", + "Timestamp": "2024-05-16T06:48:07.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.183700", + "Timestamp": "2024-05-16T06:48:06.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093800", - "Timestamp": "2019-10-15T00:57:52.000Z" + "SpotPrice": "2.360900", + "Timestamp": "2024-05-16T06:48:06.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133800", - "Timestamp": "2019-10-15T00:57:52.000Z" + "SpotPrice": "2.355900", + "Timestamp": "2024-05-16T06:48:06.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033800", - "Timestamp": "2019-10-15T00:57:52.000Z" + "SpotPrice": "2.230900", + "Timestamp": "2024-05-16T06:48:06.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.670900", - "Timestamp": "2019-10-15T00:48:22.000Z" + "SpotPrice": "2.459200", + "Timestamp": "2024-05-16T06:48:06.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.640900", - "Timestamp": "2019-10-15T00:48:22.000Z" + "SpotPrice": "2.454200", + "Timestamp": "2024-05-16T06:48:06.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.540900", - "Timestamp": "2019-10-15T00:48:22.000Z" + "SpotPrice": "2.329200", + "Timestamp": "2024-05-16T06:48:06.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gd.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.829900", - "Timestamp": "2019-10-15T00:45:17.000Z" + "SpotPrice": "0.079800", + "Timestamp": "2024-05-16T06:48:06.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gd.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.799900", - "Timestamp": "2019-10-15T00:45:17.000Z" + "SpotPrice": "0.076100", + "Timestamp": "2024-05-16T06:48:06.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "r5dn.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gd.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.699900", - "Timestamp": "2019-10-15T00:45:17.000Z" + "SpotPrice": "0.019800", + "Timestamp": "2024-05-16T06:48:06.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.068400", + "Timestamp": "2024-05-16T06:48:06.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.046200", + "Timestamp": "2024-05-16T06:48:05.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.248600", - "Timestamp": "2019-10-15T00:40:44.000Z" + "SpotPrice": "0.360700", + "Timestamp": "2024-05-16T06:48:05.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.218600", - "Timestamp": "2019-10-15T00:40:44.000Z" + "SpotPrice": "0.355700", + "Timestamp": "2024-05-16T06:48:05.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.118600", - "Timestamp": "2019-10-15T00:40:44.000Z" + "SpotPrice": "0.230700", + "Timestamp": "2024-05-16T06:48:05.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.670900", - "Timestamp": "2019-10-15T00:23:54.000Z" + "SpotPrice": "4.182400", + "Timestamp": "2024-05-16T06:48:04.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.640900", - "Timestamp": "2019-10-15T00:23:54.000Z" + "SpotPrice": "4.177400", + "Timestamp": "2024-05-16T06:48:04.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "m5n.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.540900", - "Timestamp": "2019-10-15T00:23:54.000Z" + "SpotPrice": "4.052400", + "Timestamp": "2024-05-16T06:48:04.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.large", "ProductDescription": "Windows", - "SpotPrice": "3.019300", - "Timestamp": "2019-10-15T00:22:57.000Z" + "SpotPrice": "0.128500", + "Timestamp": "2024-05-16T06:48:03.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.782800", - "Timestamp": "2019-10-15T00:17:03.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.576600", + "Timestamp": "2024-05-16T06:48:03.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.782800", - "Timestamp": "2019-10-15T00:17:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.973400", + "Timestamp": "2024-05-16T06:48:01.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "h1.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.782800", - "Timestamp": "2019-10-15T00:17:03.000Z" + "SpotPrice": "0.742400", + "Timestamp": "2024-05-16T06:48:00.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "h1.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.752800", - "Timestamp": "2019-10-15T00:17:03.000Z" + "SpotPrice": "0.712400", + "Timestamp": "2024-05-16T06:48:00.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.752800", - "Timestamp": "2019-10-15T00:17:03.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.612400", + "Timestamp": "2024-05-16T06:48:00.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.752800", - "Timestamp": "2019-10-15T00:17:03.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.288600", + "Timestamp": "2024-05-16T06:47:59.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.652800", - "Timestamp": "2019-10-15T00:17:03.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.999300", + "Timestamp": "2024-05-16T06:47:59.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.652800", - "Timestamp": "2019-10-15T00:17:03.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.642100", + "Timestamp": "2024-05-16T06:47:59.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.489700", + "Timestamp": "2024-05-16T06:47:58.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.484700", + "Timestamp": "2024-05-16T06:47:58.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.652800", - "Timestamp": "2019-10-15T00:17:03.000Z" + "SpotPrice": "0.359700", + "Timestamp": "2024-05-16T06:47:58.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.124800", - "Timestamp": "2019-10-15T00:16:08.000Z" + "SpotPrice": "1.140400", + "Timestamp": "2024-05-16T06:47:58.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.metal", "ProductDescription": "Windows", - "SpotPrice": "2.124800", - "Timestamp": "2019-10-15T00:16:08.000Z" + "SpotPrice": "4.935700", + "Timestamp": "2024-05-16T06:47:58.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.124800", - "Timestamp": "2019-10-15T00:16:08.000Z" + "SpotPrice": "6.581000", + "Timestamp": "2024-05-16T06:47:57.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.418000", + "Timestamp": "2024-05-16T06:47:57.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T00:14:22.000Z" + "SpotPrice": "0.855000", + "Timestamp": "2024-05-16T06:47:57.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.170800", - "Timestamp": "2019-10-15T00:14:22.000Z" + "SpotPrice": "0.850000", + "Timestamp": "2024-05-16T06:47:57.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.070800", - "Timestamp": "2019-10-15T00:14:22.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "a1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.196700", - "Timestamp": "2019-10-15T00:10:39.000Z" + "SpotPrice": "0.725000", + "Timestamp": "2024-05-16T06:47:57.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "a1.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2idn.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.196700", - "Timestamp": "2019-10-15T00:10:39.000Z" - }, - { - "AvailabilityZone": "us-west-2c", - "InstanceType": "a1.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.166700", - "Timestamp": "2019-10-15T00:10:39.000Z" + "SpotPrice": "5.434300", + "Timestamp": "2024-05-16T06:47:57.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "a1.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2idn.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.166700", - "Timestamp": "2019-10-15T00:10:39.000Z" + "SpotPrice": "5.429300", + "Timestamp": "2024-05-16T06:47:57.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "a1.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2idn.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-15T00:10:39.000Z" + "SpotPrice": "5.304300", + "Timestamp": "2024-05-16T06:47:57.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "a1.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-15T00:10:39.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.265400", + "Timestamp": "2024-05-16T06:47:56.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.029700", - "Timestamp": "2019-10-15T00:07:33.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143100", + "Timestamp": "2024-05-16T06:47:56.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.029700", - "Timestamp": "2019-10-15T00:07:33.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139400", + "Timestamp": "2024-05-16T06:47:56.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.029700", - "Timestamp": "2019-10-15T00:07:33.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083100", + "Timestamp": "2024-05-16T06:47:56.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3a.medium", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.metal", "ProductDescription": "Windows", - "SpotPrice": "0.029700", - "Timestamp": "2019-10-15T00:07:33.000Z" + "SpotPrice": "9.030200", + "Timestamp": "2024-05-16T06:47:56.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3a.medium", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-15T00:06:53.000Z" + "SpotPrice": "3.565200", + "Timestamp": "2024-05-16T06:47:55.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-15T00:06:53.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.560200", + "Timestamp": "2024-05-16T06:47:55.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-15T00:06:53.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.435200", + "Timestamp": "2024-05-16T06:47:55.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-15T00:06:53.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.263500", + "Timestamp": "2024-05-16T06:47:55.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3a.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.111300", - "Timestamp": "2019-10-15T00:06:53.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.173700", + "Timestamp": "2024-05-16T06:47:55.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3a.medium", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.111300", - "Timestamp": "2019-10-15T00:06:53.000Z" + "SpotPrice": "3.168700", + "Timestamp": "2024-05-16T06:47:55.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3a.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.111300", - "Timestamp": "2019-10-15T00:06:53.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.043700", + "Timestamp": "2024-05-16T06:47:55.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3a.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.111300", - "Timestamp": "2019-10-15T00:06:53.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.784400", + "Timestamp": "2024-05-16T06:47:55.000Z" }, { - "AvailabilityZone": "us-west-2d", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.011300", - "Timestamp": "2019-10-15T00:06:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.624200", + "Timestamp": "2024-05-16T06:47:54.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.011300", - "Timestamp": "2019-10-15T00:06:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.007700", + "Timestamp": "2024-05-16T06:47:53.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.011300", - "Timestamp": "2019-10-15T00:06:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.002700", + "Timestamp": "2024-05-16T06:47:53.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "t3a.medium", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.011300", - "Timestamp": "2019-10-15T00:06:53.000Z" + "SpotPrice": "2.877700", + "Timestamp": "2024-05-16T06:47:53.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.941300", - "Timestamp": "2019-10-15T00:05:57.000Z" + "SpotPrice": "2.248300", + "Timestamp": "2024-05-16T06:47:53.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4g.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.911300", - "Timestamp": "2019-10-15T00:05:57.000Z" + "SpotPrice": "2.243300", + "Timestamp": "2024-05-16T06:47:53.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.811300", - "Timestamp": "2019-10-15T00:05:57.000Z" + "SpotPrice": "2.118300", + "Timestamp": "2024-05-16T06:47:53.000Z" }, { - "AvailabilityZone": "us-west-2c", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.958800", - "Timestamp": "2019-10-14T21:28:10.000Z" + "SpotPrice": "9.321800", + "Timestamp": "2024-05-16T06:47:53.000Z" }, { - "AvailabilityZone": "us-west-2a", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.958800", - "Timestamp": "2019-10-14T21:28:10.000Z" + "SpotPrice": "0.528800", + "Timestamp": "2024-05-16T06:47:52.000Z" }, { - "AvailabilityZone": "us-west-2b", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.958800", - "Timestamp": "2019-10-14T21:28:10.000Z" - }, - { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5n.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.088900", - "Timestamp": "2019-10-16T02:37:13.000Z" + "SpotPrice": "0.535300", + "Timestamp": "2024-05-16T06:47:52.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5n.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.088900", - "Timestamp": "2019-10-16T02:37:13.000Z" + "SpotPrice": "2.954800", + "Timestamp": "2024-05-16T06:47:52.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5n.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.028900", - "Timestamp": "2019-10-16T02:37:13.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.949800", + "Timestamp": "2024-05-16T06:47:52.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5n.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.028900", - "Timestamp": "2019-10-16T02:37:13.000Z" + "SpotPrice": "2.824800", + "Timestamp": "2024-05-16T06:47:52.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.184900", - "Timestamp": "2019-10-16T02:37:10.000Z" + "SpotPrice": "4.484700", + "Timestamp": "2024-05-16T06:47:52.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.184900", - "Timestamp": "2019-10-16T02:37:10.000Z" - }, - { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.252900", - "Timestamp": "2019-10-16T02:37:01.000Z" + "SpotPrice": "0.521200", + "Timestamp": "2024-05-16T06:47:52.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "p3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.252900", - "Timestamp": "2019-10-16T02:37:01.000Z" + "SpotPrice": "5.776300", + "Timestamp": "2024-05-16T06:47:51.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.122900", - "Timestamp": "2019-10-16T02:37:01.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.746300", + "Timestamp": "2024-05-16T06:47:51.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "p3.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.122900", - "Timestamp": "2019-10-16T02:37:01.000Z" + "SpotPrice": "5.646300", + "Timestamp": "2024-05-16T06:47:51.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "is4gen.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.230200", - "Timestamp": "2019-10-16T02:36:54.000Z" + "SpotPrice": "0.194800", + "Timestamp": "2024-05-16T06:47:51.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.230200", - "Timestamp": "2019-10-16T02:36:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.191100", + "Timestamp": "2024-05-16T06:47:51.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "is4gen.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.100200", - "Timestamp": "2019-10-16T02:36:54.000Z" + "SpotPrice": "0.134800", + "Timestamp": "2024-05-16T06:47:51.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.100200", - "Timestamp": "2019-10-16T02:36:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-16T06:47:51.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247400", - "Timestamp": "2019-10-16T02:36:53.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102400", + "Timestamp": "2024-05-16T06:47:51.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247400", - "Timestamp": "2019-10-16T02:36:53.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046100", + "Timestamp": "2024-05-16T06:47:51.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.120900", - "Timestamp": "2019-10-16T02:36:27.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.236300", + "Timestamp": "2024-05-16T06:47:51.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.120900", - "Timestamp": "2019-10-16T02:36:27.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.231300", + "Timestamp": "2024-05-16T06:47:51.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5ad.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091800", - "Timestamp": "2019-10-16T02:05:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.106300", + "Timestamp": "2024-05-16T06:47:51.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.136400", + "Timestamp": "2024-05-16T06:47:50.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091800", - "Timestamp": "2019-10-16T02:05:39.000Z" + "SpotPrice": "0.998300", + "Timestamp": "2024-05-16T06:47:50.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5ad.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031800", - "Timestamp": "2019-10-16T02:05:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.993300", + "Timestamp": "2024-05-16T06:47:50.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031800", - "Timestamp": "2019-10-16T02:05:39.000Z" + "SpotPrice": "0.868300", + "Timestamp": "2024-05-16T06:47:50.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.large", "ProductDescription": "Windows", - "SpotPrice": "0.123800", - "Timestamp": "2019-10-16T02:05:24.000Z" + "SpotPrice": "0.155500", + "Timestamp": "2024-05-16T06:47:50.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.large", "ProductDescription": "Windows", - "SpotPrice": "0.123800", - "Timestamp": "2019-10-16T02:05:24.000Z" + "SpotPrice": "0.158400", + "Timestamp": "2024-05-16T06:47:50.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "z1d.6xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.495200", - "Timestamp": "2019-10-16T02:05:07.000Z" + "SpotPrice": "1.990800", + "Timestamp": "2024-05-16T06:47:50.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "m4.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.495200", - "Timestamp": "2019-10-16T02:05:07.000Z" + "SpotPrice": "0.267500", + "Timestamp": "2024-05-16T06:47:49.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.257200", - "Timestamp": "2019-10-16T02:04:48.000Z" + "SpotPrice": "3.522700", + "Timestamp": "2024-05-16T06:47:49.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.257200", - "Timestamp": "2019-10-16T02:04:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.517700", + "Timestamp": "2024-05-16T06:47:49.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.127200", - "Timestamp": "2019-10-16T02:04:48.000Z" + "SpotPrice": "3.392700", + "Timestamp": "2024-05-16T06:47:49.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.127200", - "Timestamp": "2019-10-16T02:04:48.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.261600", + "Timestamp": "2024-05-16T06:47:49.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r4.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.495200", - "Timestamp": "2019-10-16T01:41:46.000Z" + "SpotPrice": "2.368100", + "Timestamp": "2024-05-16T06:47:49.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.metal", "ProductDescription": "Windows", - "SpotPrice": "0.495200", - "Timestamp": "2019-10-16T01:41:46.000Z" + "SpotPrice": "8.915000", + "Timestamp": "2024-05-16T06:47:49.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.257200", - "Timestamp": "2019-10-16T01:40:49.000Z" + "SpotPrice": "0.402600", + "Timestamp": "2024-05-16T06:47:49.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.397600", + "Timestamp": "2024-05-16T06:47:49.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.127200", - "Timestamp": "2019-10-16T01:40:49.000Z" + "SpotPrice": "0.272600", + "Timestamp": "2024-05-16T06:47:49.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.587100", - "Timestamp": "2019-10-16T01:36:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.134400", + "Timestamp": "2024-05-16T06:47:49.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "im4gn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.587100", - "Timestamp": "2019-10-16T01:36:51.000Z" + "SpotPrice": "0.749800", + "Timestamp": "2024-05-16T06:47:48.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.457100", - "Timestamp": "2019-10-16T01:36:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.744800", + "Timestamp": "2024-05-16T06:47:48.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "im4gn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.457100", - "Timestamp": "2019-10-16T01:36:51.000Z" + "SpotPrice": "0.619800", + "Timestamp": "2024-05-16T06:47:48.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.873100", - "Timestamp": "2019-10-16T01:36:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068900", + "Timestamp": "2024-05-16T06:47:48.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.873100", - "Timestamp": "2019-10-16T01:36:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039900", + "Timestamp": "2024-05-16T06:47:48.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.978300", - "Timestamp": "2019-10-16T00:37:09.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008900", + "Timestamp": "2024-05-16T06:47:48.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.978300", - "Timestamp": "2019-10-16T00:37:09.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.529000", + "Timestamp": "2024-05-16T06:47:47.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.372300", - "Timestamp": "2019-10-16T00:36:14.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.524000", + "Timestamp": "2024-05-16T06:47:47.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.399000", + "Timestamp": "2024-05-16T06:47:47.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.372300", - "Timestamp": "2019-10-16T00:36:14.000Z" + "SpotPrice": "2.000700", + "Timestamp": "2024-05-16T06:47:47.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.242300", - "Timestamp": "2019-10-16T00:36:14.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.995700", + "Timestamp": "2024-05-16T06:47:47.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.242300", - "Timestamp": "2019-10-16T00:36:14.000Z" + "SpotPrice": "1.870700", + "Timestamp": "2024-05-16T06:47:47.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.120900", - "Timestamp": "2019-10-16T00:19:58.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124000", + "Timestamp": "2024-05-16T06:47:47.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.120900", - "Timestamp": "2019-10-16T00:19:58.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095000", + "Timestamp": "2024-05-16T06:47:47.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.088900", - "Timestamp": "2019-10-16T00:19:58.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064000", + "Timestamp": "2024-05-16T06:47:47.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1e.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.088900", - "Timestamp": "2019-10-16T00:19:58.000Z" + "SpotPrice": "0.415600", + "Timestamp": "2024-05-16T06:47:47.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.028900", - "Timestamp": "2019-10-16T00:19:58.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.411600", + "Timestamp": "2024-05-16T06:47:47.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1e.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.028900", - "Timestamp": "2019-10-16T00:19:58.000Z" + "SpotPrice": "0.355600", + "Timestamp": "2024-05-16T06:47:47.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.967300", - "Timestamp": "2019-10-16T00:19:44.000Z" + "SpotPrice": "1.151900", + "Timestamp": "2024-05-16T06:47:46.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "m4.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.967300", - "Timestamp": "2019-10-16T00:19:44.000Z" - }, - { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.361300", - "Timestamp": "2019-10-16T00:19:44.000Z" + "SpotPrice": "0.546700", + "Timestamp": "2024-05-16T06:47:45.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.361300", - "Timestamp": "2019-10-16T00:19:44.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.546000", + "Timestamp": "2024-05-16T06:47:45.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.231300", - "Timestamp": "2019-10-16T00:19:44.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "14.176700", + "Timestamp": "2024-05-16T06:47:44.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.231300", - "Timestamp": "2019-10-16T00:19:44.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "14.162100", + "Timestamp": "2024-05-16T06:47:44.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.168300", - "Timestamp": "2019-10-16T00:12:31.000Z" + "SpotPrice": "1.025100", + "Timestamp": "2024-05-16T06:47:44.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.108300", - "Timestamp": "2019-10-16T00:12:31.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.020100", + "Timestamp": "2024-05-16T06:47:44.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.147600", - "Timestamp": "2019-10-16T00:05:34.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.895100", + "Timestamp": "2024-05-16T06:47:44.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.147600", - "Timestamp": "2019-10-16T00:05:34.000Z" + "SpotPrice": "0.835500", + "Timestamp": "2024-05-16T06:47:44.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.017600", - "Timestamp": "2019-10-16T00:05:34.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.830500", + "Timestamp": "2024-05-16T06:47:44.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.017600", - "Timestamp": "2019-10-16T00:05:34.000Z" + "SpotPrice": "0.705500", + "Timestamp": "2024-05-16T06:47:44.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.570500", - "Timestamp": "2019-10-16T00:05:33.000Z" + "SpotPrice": "0.081400", + "Timestamp": "2024-05-16T06:47:44.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.570500", - "Timestamp": "2019-10-16T00:05:33.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077700", + "Timestamp": "2024-05-16T06:47:44.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.440500", - "Timestamp": "2019-10-16T00:05:33.000Z" + "SpotPrice": "0.021400", + "Timestamp": "2024-05-16T06:47:44.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.440500", - "Timestamp": "2019-10-16T00:05:33.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080800", + "Timestamp": "2024-05-16T06:47:43.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247600", - "Timestamp": "2019-10-16T00:05:32.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.051800", + "Timestamp": "2024-05-16T06:47:43.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247600", - "Timestamp": "2019-10-16T00:05:32.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020800", + "Timestamp": "2024-05-16T06:47:43.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.metal", "ProductDescription": "Windows", - "SpotPrice": "3.961600", - "Timestamp": "2019-10-16T00:05:07.000Z" + "SpotPrice": "7.180000", + "Timestamp": "2024-05-16T06:47:43.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.961600", - "Timestamp": "2019-10-16T00:05:07.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062500", + "Timestamp": "2024-05-16T06:47:43.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.096500", - "Timestamp": "2019-10-16T00:04:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-16T06:47:43.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.096500", - "Timestamp": "2019-10-16T00:04:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-16T06:47:43.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.672000", - "Timestamp": "2019-10-16T00:04:57.000Z" + "SpotPrice": "3.764800", + "Timestamp": "2024-05-16T06:47:43.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.759800", + "Timestamp": "2024-05-16T06:47:43.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.542000", - "Timestamp": "2019-10-16T00:04:57.000Z" + "SpotPrice": "3.634800", + "Timestamp": "2024-05-16T06:47:43.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "gr6.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123600", - "Timestamp": "2019-10-16T00:04:41.000Z" + "SpotPrice": "0.447400", + "Timestamp": "2024-05-16T06:47:43.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "gr6.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123600", - "Timestamp": "2019-10-16T00:04:41.000Z" + "SpotPrice": "0.466200", + "Timestamp": "2024-05-16T06:47:43.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-16T00:04:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.417400", + "Timestamp": "2024-05-16T06:47:43.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.436200", + "Timestamp": "2024-05-16T06:47:43.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "gr6.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-16T00:04:41.000Z" + "SpotPrice": "0.317400", + "Timestamp": "2024-05-16T06:47:43.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.240100", - "Timestamp": "2019-10-15T23:37:22.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.336200", + "Timestamp": "2024-05-16T06:47:43.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d2.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.240100", - "Timestamp": "2019-10-15T23:37:22.000Z" + "SpotPrice": "1.239800", + "Timestamp": "2024-05-16T06:47:42.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.110100", - "Timestamp": "2019-10-15T23:37:22.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.209800", + "Timestamp": "2024-05-16T06:47:42.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d2.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.110100", - "Timestamp": "2019-10-15T23:37:22.000Z" + "SpotPrice": "1.109800", + "Timestamp": "2024-05-16T06:47:42.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.metal", "ProductDescription": "Windows", - "SpotPrice": "0.478100", - "Timestamp": "2019-10-15T23:37:19.000Z" + "SpotPrice": "7.327700", + "Timestamp": "2024-05-16T06:47:42.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.478100", - "Timestamp": "2019-10-15T23:37:19.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.841500", + "Timestamp": "2024-05-16T06:47:41.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.176400", - "Timestamp": "2019-10-15T23:05:46.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.836500", + "Timestamp": "2024-05-16T06:47:41.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.176400", - "Timestamp": "2019-10-15T23:05:46.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.711500", + "Timestamp": "2024-05-16T06:47:41.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.957700", - "Timestamp": "2019-10-15T23:05:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.266000", + "Timestamp": "2024-05-16T06:47:41.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.957700", - "Timestamp": "2019-10-15T23:05:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.261000", + "Timestamp": "2024-05-16T06:47:41.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.615700", - "Timestamp": "2019-10-15T23:05:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.136000", + "Timestamp": "2024-05-16T06:47:41.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.615700", - "Timestamp": "2019-10-15T23:05:28.000Z" + "SpotPrice": "1.662200", + "Timestamp": "2024-05-16T06:47:40.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.485700", - "Timestamp": "2019-10-15T23:05:28.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.657200", + "Timestamp": "2024-05-16T06:47:40.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.485700", - "Timestamp": "2019-10-15T23:05:28.000Z" + "SpotPrice": "1.532200", + "Timestamp": "2024-05-16T06:47:40.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.650400", - "Timestamp": "2019-10-15T23:05:24.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.538600", + "Timestamp": "2024-05-16T06:47:40.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "inf1.6xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.650400", - "Timestamp": "2019-10-15T23:05:24.000Z" + "SpotPrice": "0.677900", + "Timestamp": "2024-05-16T06:47:40.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.520400", - "Timestamp": "2019-10-15T23:05:24.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.672900", + "Timestamp": "2024-05-16T06:47:40.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "inf1.6xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.520400", - "Timestamp": "2019-10-15T23:05:24.000Z" - }, - { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123600", - "Timestamp": "2019-10-15T23:05:03.000Z" + "SpotPrice": "0.547900", + "Timestamp": "2024-05-16T06:47:40.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123600", - "Timestamp": "2019-10-15T23:05:03.000Z" + "SpotPrice": "1.965700", + "Timestamp": "2024-05-16T06:47:40.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-15T23:05:03.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.960700", + "Timestamp": "2024-05-16T06:47:40.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-15T23:05:03.000Z" + "SpotPrice": "1.835700", + "Timestamp": "2024-05-16T06:47:40.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.893200", - "Timestamp": "2019-10-15T22:37:06.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.697600", + "Timestamp": "2024-05-16T06:47:39.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.893200", - "Timestamp": "2019-10-15T22:37:06.000Z" + "SpotPrice": "0.485300", + "Timestamp": "2024-05-16T06:47:39.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.763200", - "Timestamp": "2019-10-15T22:37:06.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.480300", + "Timestamp": "2024-05-16T06:47:39.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.763200", - "Timestamp": "2019-10-15T22:37:06.000Z" - }, - { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.971200", - "Timestamp": "2019-10-15T22:36:07.000Z" + "SpotPrice": "0.355300", + "Timestamp": "2024-05-16T06:47:39.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.971200", - "Timestamp": "2019-10-15T22:36:07.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.967600", + "Timestamp": "2024-05-16T06:47:39.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.956600", - "Timestamp": "2019-10-15T22:20:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.962600", + "Timestamp": "2024-05-16T06:47:39.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.956600", - "Timestamp": "2019-10-15T22:20:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.837600", + "Timestamp": "2024-05-16T06:47:39.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.990400", - "Timestamp": "2019-10-15T22:05:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.057000", + "Timestamp": "2024-05-16T06:47:39.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.990400", - "Timestamp": "2019-10-15T22:05:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.027000", + "Timestamp": "2024-05-16T06:47:39.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.384400", - "Timestamp": "2019-10-15T22:05:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.927000", + "Timestamp": "2024-05-16T06:47:39.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.384400", - "Timestamp": "2019-10-15T22:05:49.000Z" + "SpotPrice": "2.439600", + "Timestamp": "2024-05-16T06:47:39.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.254400", - "Timestamp": "2019-10-15T22:05:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.434600", + "Timestamp": "2024-05-16T06:47:39.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.254400", - "Timestamp": "2019-10-15T22:05:49.000Z" + "SpotPrice": "2.309600", + "Timestamp": "2024-05-16T06:47:39.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.873100", - "Timestamp": "2019-10-15T22:05:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.483400", + "Timestamp": "2024-05-16T06:47:38.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.873100", - "Timestamp": "2019-10-15T22:05:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.478400", + "Timestamp": "2024-05-16T06:47:38.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.587100", - "Timestamp": "2019-10-15T22:05:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.353400", + "Timestamp": "2024-05-16T06:47:38.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.587100", - "Timestamp": "2019-10-15T22:05:49.000Z" + "SpotPrice": "0.978300", + "Timestamp": "2024-05-16T06:47:38.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.457100", - "Timestamp": "2019-10-15T22:05:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.973300", + "Timestamp": "2024-05-16T06:47:38.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.457100", - "Timestamp": "2019-10-15T22:05:49.000Z" + "SpotPrice": "0.848300", + "Timestamp": "2024-05-16T06:47:38.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.metal-16xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.287700", - "Timestamp": "2019-10-15T22:05:34.000Z" + "SpotPrice": "2.476800", + "Timestamp": "2024-05-16T06:47:38.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.287700", - "Timestamp": "2019-10-15T22:05:34.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.471800", + "Timestamp": "2024-05-16T06:47:38.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.metal-16xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.227700", - "Timestamp": "2019-10-15T22:05:34.000Z" + "SpotPrice": "2.346800", + "Timestamp": "2024-05-16T06:47:38.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.227700", - "Timestamp": "2019-10-15T22:05:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.829400", + "Timestamp": "2024-05-16T06:47:38.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.411700", - "Timestamp": "2019-10-15T22:05:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.824400", + "Timestamp": "2024-05-16T06:47:38.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.411700", - "Timestamp": "2019-10-15T22:05:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.699400", + "Timestamp": "2024-05-16T06:47:38.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.073900", - "Timestamp": "2019-10-15T21:57:15.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.267600", + "Timestamp": "2024-05-16T06:47:37.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.073900", - "Timestamp": "2019-10-15T21:57:15.000Z" + "SpotPrice": "4.578900", + "Timestamp": "2024-05-16T06:47:36.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.013900", - "Timestamp": "2019-10-15T21:57:15.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.573900", + "Timestamp": "2024-05-16T06:47:36.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.013900", - "Timestamp": "2019-10-15T21:57:15.000Z" + "SpotPrice": "4.448900", + "Timestamp": "2024-05-16T06:47:36.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.032300", - "Timestamp": "2019-10-15T21:57:15.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.909300", + "Timestamp": "2024-05-16T06:47:36.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.032300", - "Timestamp": "2019-10-15T21:57:15.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.904300", + "Timestamp": "2024-05-16T06:47:36.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.101400", - "Timestamp": "2019-10-15T21:56:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.779300", + "Timestamp": "2024-05-16T06:47:36.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.101400", - "Timestamp": "2019-10-15T21:56:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.955200", + "Timestamp": "2024-05-16T06:47:36.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.971400", - "Timestamp": "2019-10-15T21:56:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.748700", + "Timestamp": "2024-05-16T06:47:36.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.971400", - "Timestamp": "2019-10-15T21:56:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.397600", + "Timestamp": "2024-05-16T06:47:35.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.915400", - "Timestamp": "2019-10-15T21:56:54.000Z" + "SpotPrice": "1.101900", + "Timestamp": "2024-05-16T06:47:35.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.915400", - "Timestamp": "2019-10-15T21:56:54.000Z" + "SpotPrice": "0.259700", + "Timestamp": "2024-05-16T06:47:35.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.117800", - "Timestamp": "2019-10-15T21:56:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.527300", + "Timestamp": "2024-05-16T06:47:35.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.117800", - "Timestamp": "2019-10-15T21:56:41.000Z" + "SpotPrice": "0.093100", + "Timestamp": "2024-05-16T06:47:35.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.057800", - "Timestamp": "2019-10-15T21:56:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089400", + "Timestamp": "2024-05-16T06:47:35.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.057800", - "Timestamp": "2019-10-15T21:56:41.000Z" - }, - { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.241800", - "Timestamp": "2019-10-15T21:56:41.000Z" + "SpotPrice": "0.033100", + "Timestamp": "2024-05-16T06:47:35.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.metal-32xl", "ProductDescription": "Windows", - "SpotPrice": "0.241800", - "Timestamp": "2019-10-15T21:56:41.000Z" + "SpotPrice": "9.459200", + "Timestamp": "2024-05-16T06:47:34.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.531600", - "Timestamp": "2019-10-15T21:37:11.000Z" + "SpotPrice": "0.791400", + "Timestamp": "2024-05-16T06:47:34.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.531600", - "Timestamp": "2019-10-15T21:37:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.786400", + "Timestamp": "2024-05-16T06:47:34.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.401600", - "Timestamp": "2019-10-15T21:37:11.000Z" + "SpotPrice": "0.661400", + "Timestamp": "2024-05-16T06:47:34.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.401600", - "Timestamp": "2019-10-15T21:37:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.484100", + "Timestamp": "2024-05-16T06:47:33.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows", - "SpotPrice": "10.289600", - "Timestamp": "2019-10-15T21:36:50.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.447200", + "Timestamp": "2024-05-16T06:47:33.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows", - "SpotPrice": "10.289600", - "Timestamp": "2019-10-15T21:36:50.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.479100", + "Timestamp": "2024-05-16T06:47:33.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.656500", - "Timestamp": "2019-10-15T21:32:33.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.442200", + "Timestamp": "2024-05-16T06:47:33.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.656500", - "Timestamp": "2019-10-15T21:32:33.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.354100", + "Timestamp": "2024-05-16T06:47:33.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.526500", - "Timestamp": "2019-10-15T21:32:33.000Z" + "SpotPrice": "2.317200", + "Timestamp": "2024-05-16T06:47:33.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.526500", - "Timestamp": "2019-10-15T21:32:33.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.962000", + "Timestamp": "2024-05-16T06:47:33.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.942500", - "Timestamp": "2019-10-15T21:32:24.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.957000", + "Timestamp": "2024-05-16T06:47:33.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.942500", - "Timestamp": "2019-10-15T21:32:24.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.832000", + "Timestamp": "2024-05-16T06:47:33.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.257800", - "Timestamp": "2019-10-15T21:18:36.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.158800", + "Timestamp": "2024-05-16T06:47:33.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.257800", - "Timestamp": "2019-10-15T21:18:36.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.128800", + "Timestamp": "2024-05-16T06:47:33.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.240600", - "Timestamp": "2019-10-15T21:18:36.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.028800", + "Timestamp": "2024-05-16T06:47:33.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.240600", - "Timestamp": "2019-10-15T21:18:36.000Z" + "SpotPrice": "0.161900", + "Timestamp": "2024-05-16T06:47:33.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.110600", - "Timestamp": "2019-10-15T21:18:36.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158200", + "Timestamp": "2024-05-16T06:47:33.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.110600", - "Timestamp": "2019-10-15T21:18:36.000Z" + "SpotPrice": "0.101900", + "Timestamp": "2024-05-16T06:47:33.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.781200", - "Timestamp": "2019-10-15T21:18:34.000Z" + "SpotPrice": "2.009700", + "Timestamp": "2024-05-16T06:47:33.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.781200", - "Timestamp": "2019-10-15T21:18:34.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.004700", + "Timestamp": "2024-05-16T06:47:33.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.651200", - "Timestamp": "2019-10-15T21:18:34.000Z" + "SpotPrice": "1.879700", + "Timestamp": "2024-05-16T06:47:33.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.651200", - "Timestamp": "2019-10-15T21:18:34.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.758400", + "Timestamp": "2024-05-16T06:47:32.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.595200", - "Timestamp": "2019-10-15T21:18:34.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.753400", + "Timestamp": "2024-05-16T06:47:32.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.595200", - "Timestamp": "2019-10-15T21:18:34.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.628400", + "Timestamp": "2024-05-16T06:47:32.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.144800", - "Timestamp": "2019-10-15T21:18:25.000Z" + "SpotPrice": "2.309800", + "Timestamp": "2024-05-16T06:47:31.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.144800", - "Timestamp": "2019-10-15T21:18:25.000Z" + "SpotPrice": "5.150200", + "Timestamp": "2024-05-16T06:47:31.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.330800", - "Timestamp": "2019-10-15T21:18:25.000Z" + "SpotPrice": "0.150100", + "Timestamp": "2024-05-16T06:47:31.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.330800", - "Timestamp": "2019-10-15T21:18:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146400", + "Timestamp": "2024-05-16T06:47:31.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.200800", - "Timestamp": "2019-10-15T21:18:25.000Z" + "SpotPrice": "0.090100", + "Timestamp": "2024-05-16T06:47:31.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.200800", - "Timestamp": "2019-10-15T21:18:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.117200", + "Timestamp": "2024-05-16T06:47:31.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.18xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.638800", - "Timestamp": "2019-10-15T21:18:23.000Z" + "SpotPrice": "1.642700", + "Timestamp": "2024-05-16T06:47:31.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.638800", - "Timestamp": "2019-10-15T21:18:23.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.612700", + "Timestamp": "2024-05-16T06:47:31.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.18xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.508800", - "Timestamp": "2019-10-15T21:18:23.000Z" + "SpotPrice": "1.512700", + "Timestamp": "2024-05-16T06:47:31.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.508800", - "Timestamp": "2019-10-15T21:18:23.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.985300", + "Timestamp": "2024-05-16T06:47:31.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.980800", - "Timestamp": "2019-10-15T21:18:22.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.980300", + "Timestamp": "2024-05-16T06:47:31.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.980800", - "Timestamp": "2019-10-15T21:18:22.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.855300", + "Timestamp": "2024-05-16T06:47:31.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.075400", - "Timestamp": "2019-10-15T21:18:11.000Z" + "SpotPrice": "0.450200", + "Timestamp": "2024-05-16T06:47:31.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.075400", - "Timestamp": "2019-10-15T21:18:11.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.445200", + "Timestamp": "2024-05-16T06:47:31.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t2.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.015400", - "Timestamp": "2019-10-15T21:18:11.000Z" - }, - { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.015400", - "Timestamp": "2019-10-15T21:18:11.000Z" - }, - { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t2.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.033400", - "Timestamp": "2019-10-15T21:18:11.000Z" + "SpotPrice": "0.320200", + "Timestamp": "2024-05-16T06:47:31.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-1e", + "InstanceType": "t2.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.033400", - "Timestamp": "2019-10-15T21:18:11.000Z" - }, - { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.072500", - "Timestamp": "2019-10-15T21:16:03.000Z" + "SpotPrice": "0.129700", + "Timestamp": "2024-05-16T06:47:31.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3a.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.072500", - "Timestamp": "2019-10-15T21:16:03.000Z" + "SpotPrice": "0.318200", + "Timestamp": "2024-05-16T06:47:30.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.012500", - "Timestamp": "2019-10-15T21:16:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.288200", + "Timestamp": "2024-05-16T06:47:30.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3a.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.012500", - "Timestamp": "2019-10-15T21:16:03.000Z" + "SpotPrice": "0.188200", + "Timestamp": "2024-05-16T06:47:30.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.030900", - "Timestamp": "2019-10-15T21:16:03.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.610700", + "Timestamp": "2024-05-16T06:47:30.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.030900", - "Timestamp": "2019-10-15T21:16:03.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.605700", + "Timestamp": "2024-05-16T06:47:30.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.829200", - "Timestamp": "2019-10-15T21:15:59.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.480700", + "Timestamp": "2024-05-16T06:47:30.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.829200", - "Timestamp": "2019-10-15T21:15:59.000Z" + "SpotPrice": "0.111100", + "Timestamp": "2024-05-16T06:47:30.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.699200", - "Timestamp": "2019-10-15T21:15:59.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T06:47:30.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.699200", - "Timestamp": "2019-10-15T21:15:59.000Z" + "SpotPrice": "0.051100", + "Timestamp": "2024-05-16T06:47:30.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.643200", - "Timestamp": "2019-10-15T21:15:59.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063900", + "Timestamp": "2024-05-16T06:47:30.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.643200", - "Timestamp": "2019-10-15T21:15:59.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003900", + "Timestamp": "2024-05-16T06:47:30.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.646800", - "Timestamp": "2019-10-15T21:15:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003900", + "Timestamp": "2024-05-16T06:47:30.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.646800", - "Timestamp": "2019-10-15T21:15:54.000Z" + "SpotPrice": "2.106400", + "Timestamp": "2024-05-16T06:47:29.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.metal-48xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.040800", - "Timestamp": "2019-10-15T21:15:54.000Z" + "SpotPrice": "2.353500", + "Timestamp": "2024-05-16T06:47:29.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.040800", - "Timestamp": "2019-10-15T21:15:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.348500", + "Timestamp": "2024-05-16T06:47:29.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.910800", - "Timestamp": "2019-10-15T21:15:54.000Z" + "SpotPrice": "2.223500", + "Timestamp": "2024-05-16T06:47:29.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.910800", - "Timestamp": "2019-10-15T21:15:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.520900", + "Timestamp": "2024-05-16T06:47:28.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.241800", - "Timestamp": "2019-10-15T21:15:52.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.490900", + "Timestamp": "2024-05-16T06:47:28.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.241800", - "Timestamp": "2019-10-15T21:15:52.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.390900", + "Timestamp": "2024-05-16T06:47:28.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.117800", - "Timestamp": "2019-10-15T21:15:52.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.134800", + "Timestamp": "2024-05-16T06:47:28.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.117800", - "Timestamp": "2019-10-15T21:15:52.000Z" + "SpotPrice": "0.137700", + "Timestamp": "2024-05-16T06:47:26.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.057800", - "Timestamp": "2019-10-15T21:15:52.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134000", + "Timestamp": "2024-05-16T06:47:26.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.057800", - "Timestamp": "2019-10-15T21:15:52.000Z" - }, - { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.372800", - "Timestamp": "2019-10-15T21:15:52.000Z" + "SpotPrice": "0.077700", + "Timestamp": "2024-05-16T06:47:26.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.372800", - "Timestamp": "2019-10-15T21:15:52.000Z" + "SpotPrice": "3.904800", + "Timestamp": "2024-05-16T06:47:25.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.242800", - "Timestamp": "2019-10-15T21:15:52.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.899800", + "Timestamp": "2024-05-16T06:47:25.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.242800", - "Timestamp": "2019-10-15T21:15:52.000Z" + "SpotPrice": "3.774800", + "Timestamp": "2024-05-16T06:47:25.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.large", "ProductDescription": "Windows", - "SpotPrice": "0.978800", - "Timestamp": "2019-10-15T21:15:51.000Z" + "SpotPrice": "0.132400", + "Timestamp": "2024-05-16T06:47:25.000Z" }, { - "AvailabilityZone": "ca-central-1a", + "AvailabilityZone": "us-east-1f", "InstanceType": "m5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.978800", - "Timestamp": "2019-10-15T21:15:51.000Z" - }, - { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t2.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067700", - "Timestamp": "2019-10-15T21:15:45.000Z" - }, - { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t2.small", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067700", - "Timestamp": "2019-10-15T21:15:45.000Z" + "SpotPrice": "0.613500", + "Timestamp": "2024-05-16T06:47:25.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t2.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007700", - "Timestamp": "2019-10-15T21:15:45.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.583500", + "Timestamp": "2024-05-16T06:47:25.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007700", - "Timestamp": "2019-10-15T21:15:45.000Z" + "SpotPrice": "0.483500", + "Timestamp": "2024-05-16T06:47:25.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.016900", - "Timestamp": "2019-10-15T21:15:45.000Z" + "SpotPrice": "0.313300", + "Timestamp": "2024-05-16T06:47:24.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.016900", - "Timestamp": "2019-10-15T21:15:45.000Z" + "SpotPrice": "0.307300", + "Timestamp": "2024-05-16T06:47:24.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120700", - "Timestamp": "2019-10-15T21:15:42.000Z" + "SpotPrice": "0.656600", + "Timestamp": "2024-05-16T06:47:23.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120700", - "Timestamp": "2019-10-15T21:15:42.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.651600", + "Timestamp": "2024-05-16T06:47:23.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060700", - "Timestamp": "2019-10-15T21:15:42.000Z" + "SpotPrice": "0.526600", + "Timestamp": "2024-05-16T06:47:23.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060700", - "Timestamp": "2019-10-15T21:15:42.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.233600", + "Timestamp": "2024-05-16T06:47:22.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2idn.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.244700", - "Timestamp": "2019-10-15T21:15:42.000Z" + "SpotPrice": "8.600100", + "Timestamp": "2024-05-16T06:47:22.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.244700", - "Timestamp": "2019-10-15T21:15:42.000Z" + "SpotPrice": "4.087800", + "Timestamp": "2024-05-16T06:47:21.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.957700", - "Timestamp": "2019-10-15T21:15:34.000Z" + "SpotPrice": "1.002000", + "Timestamp": "2024-05-16T06:47:21.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.metal", "ProductDescription": "Windows", - "SpotPrice": "1.957700", - "Timestamp": "2019-10-15T21:15:34.000Z" + "SpotPrice": "12.496400", + "Timestamp": "2024-05-16T06:47:19.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.615700", - "Timestamp": "2019-10-15T21:15:34.000Z" + "SpotPrice": "0.435800", + "Timestamp": "2024-05-16T06:47:18.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.615700", - "Timestamp": "2019-10-15T21:15:34.000Z" - }, - { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.485700", - "Timestamp": "2019-10-15T21:15:34.000Z" + "SpotPrice": "0.434500", + "Timestamp": "2024-05-16T06:47:18.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.485700", - "Timestamp": "2019-10-15T21:15:34.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.430800", + "Timestamp": "2024-05-16T06:47:18.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.913200", - "Timestamp": "2019-10-15T21:15:34.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.429500", + "Timestamp": "2024-05-16T06:47:18.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.913200", - "Timestamp": "2019-10-15T21:15:34.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.305800", + "Timestamp": "2024-05-16T06:47:18.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.099200", - "Timestamp": "2019-10-15T21:15:34.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.304500", + "Timestamp": "2024-05-16T06:47:18.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "m4.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.099200", - "Timestamp": "2019-10-15T21:15:34.000Z" + "SpotPrice": "0.312600", + "Timestamp": "2024-05-16T06:47:18.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.969200", - "Timestamp": "2019-10-15T21:15:34.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.282600", + "Timestamp": "2024-05-16T06:47:18.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "m4.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.969200", - "Timestamp": "2019-10-15T21:15:34.000Z" - }, - { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.587100", - "Timestamp": "2019-10-15T21:10:45.000Z" + "SpotPrice": "0.182600", + "Timestamp": "2024-05-16T06:47:18.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "t2.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.587100", - "Timestamp": "2019-10-15T21:10:45.000Z" + "SpotPrice": "0.082300", + "Timestamp": "2024-05-16T06:47:18.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.457100", - "Timestamp": "2019-10-15T21:10:45.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122300", + "Timestamp": "2024-05-16T06:47:18.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "t2.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.457100", - "Timestamp": "2019-10-15T21:10:45.000Z" - }, - { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.170800", - "Timestamp": "2019-10-15T21:10:03.000Z" + "SpotPrice": "0.022300", + "Timestamp": "2024-05-16T06:47:18.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.170800", - "Timestamp": "2019-10-15T21:10:03.000Z" + "SpotPrice": "4.429800", + "Timestamp": "2024-05-16T06:47:17.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.040800", - "Timestamp": "2019-10-15T21:10:03.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.424800", + "Timestamp": "2024-05-16T06:47:17.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.040800", - "Timestamp": "2019-10-15T21:10:03.000Z" + "SpotPrice": "4.299800", + "Timestamp": "2024-05-16T06:47:17.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.873100", - "Timestamp": "2019-10-15T21:09:59.000Z" + "SpotPrice": "4.329000", + "Timestamp": "2024-05-16T06:47:16.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.873100", - "Timestamp": "2019-10-15T21:09:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.379800", + "Timestamp": "2024-05-16T06:47:16.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.823400", - "Timestamp": "2019-10-15T21:09:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.374800", + "Timestamp": "2024-05-16T06:47:16.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.823400", - "Timestamp": "2019-10-15T21:09:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.249800", + "Timestamp": "2024-05-16T06:47:16.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.251400", - "Timestamp": "2019-10-15T21:09:20.000Z" + "SpotPrice": "0.784500", + "Timestamp": "2024-05-16T06:47:15.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.251400", - "Timestamp": "2019-10-15T21:09:20.000Z" + "SpotPrice": "0.834600", + "Timestamp": "2024-05-16T06:47:15.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.121400", - "Timestamp": "2019-10-15T21:09:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.754500", + "Timestamp": "2024-05-16T06:47:15.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.804600", + "Timestamp": "2024-05-16T06:47:15.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.121400", - "Timestamp": "2019-10-15T21:09:20.000Z" + "SpotPrice": "0.654500", + "Timestamp": "2024-05-16T06:47:15.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.352800", - "Timestamp": "2019-10-15T21:09:14.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.704600", + "Timestamp": "2024-05-16T06:47:15.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.352800", - "Timestamp": "2019-10-15T21:09:14.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142600", + "Timestamp": "2024-05-16T06:47:14.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.489400", - "Timestamp": "2019-10-15T21:07:44.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138900", + "Timestamp": "2024-05-16T06:47:14.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.489400", - "Timestamp": "2019-10-15T21:07:44.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082600", + "Timestamp": "2024-05-16T06:47:14.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.244700", - "Timestamp": "2019-10-15T21:07:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136400", + "Timestamp": "2024-05-16T06:47:14.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.244700", - "Timestamp": "2019-10-15T21:07:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132700", + "Timestamp": "2024-05-16T06:47:14.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120700", - "Timestamp": "2019-10-15T21:07:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076400", + "Timestamp": "2024-05-16T06:47:14.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c1.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120700", - "Timestamp": "2019-10-15T21:07:39.000Z" + "SpotPrice": "0.119000", + "Timestamp": "2024-05-16T06:47:14.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060700", - "Timestamp": "2019-10-15T21:07:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159000", + "Timestamp": "2024-05-16T06:47:14.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c1.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060700", - "Timestamp": "2019-10-15T21:07:39.000Z" + "SpotPrice": "0.059000", + "Timestamp": "2024-05-16T06:47:14.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.483600", - "Timestamp": "2019-10-15T21:05:38.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.866400", + "Timestamp": "2024-05-16T06:47:13.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.483600", - "Timestamp": "2019-10-15T21:05:38.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.861400", + "Timestamp": "2024-05-16T06:47:13.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.245600", - "Timestamp": "2019-10-15T21:04:52.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.736400", + "Timestamp": "2024-05-16T06:47:13.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.245600", - "Timestamp": "2019-10-15T21:04:52.000Z" + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T06:47:13.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.115600", - "Timestamp": "2019-10-15T21:04:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101400", + "Timestamp": "2024-05-16T06:47:13.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.115600", - "Timestamp": "2019-10-15T21:04:52.000Z" + "SpotPrice": "0.045400", + "Timestamp": "2024-05-16T06:47:13.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "c4.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.542800", - "Timestamp": "2019-10-15T20:46:58.000Z" + "SpotPrice": "0.506700", + "Timestamp": "2024-05-16T06:47:12.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c4.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.542800", - "Timestamp": "2019-10-15T20:46:58.000Z" + "SpotPrice": "0.486800", + "Timestamp": "2024-05-16T06:47:12.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.476700", + "Timestamp": "2024-05-16T06:47:12.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.456800", + "Timestamp": "2024-05-16T06:47:12.000Z" + }, + { + "AvailabilityZone": "us-east-1e", + "InstanceType": "c4.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.412800", - "Timestamp": "2019-10-15T20:46:58.000Z" + "SpotPrice": "0.376700", + "Timestamp": "2024-05-16T06:47:12.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c4.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.412800", - "Timestamp": "2019-10-15T20:46:58.000Z" + "SpotPrice": "0.356800", + "Timestamp": "2024-05-16T06:47:12.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.148800", - "Timestamp": "2019-10-15T20:46:57.000Z" + "SpotPrice": "6.768100", + "Timestamp": "2024-05-16T06:47:12.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.148800", - "Timestamp": "2019-10-15T20:46:57.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T06:47:11.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.160800", - "Timestamp": "2019-10-15T20:46:44.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T06:47:11.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.160800", - "Timestamp": "2019-10-15T20:46:44.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042900", + "Timestamp": "2024-05-16T06:47:11.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.554800", - "Timestamp": "2019-10-15T20:46:44.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.896100", + "Timestamp": "2024-05-16T06:47:10.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t2.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.554800", - "Timestamp": "2019-10-15T20:46:44.000Z" + "SpotPrice": "0.101100", + "Timestamp": "2024-05-16T06:47:10.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.424800", - "Timestamp": "2019-10-15T20:46:44.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141100", + "Timestamp": "2024-05-16T06:47:10.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t2.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.424800", - "Timestamp": "2019-10-15T20:46:44.000Z" + "SpotPrice": "0.041100", + "Timestamp": "2024-05-16T06:47:10.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.121400", - "Timestamp": "2019-10-15T20:46:43.000Z" + "SpotPrice": "0.161500", + "Timestamp": "2024-05-16T06:33:14.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.121400", - "Timestamp": "2019-10-15T20:46:43.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157800", + "Timestamp": "2024-05-16T06:33:14.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.061400", - "Timestamp": "2019-10-15T20:46:43.000Z" + "SpotPrice": "0.101500", + "Timestamp": "2024-05-16T06:33:14.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.061400", - "Timestamp": "2019-10-15T20:46:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.882500", + "Timestamp": "2024-05-16T06:33:12.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.102400", - "Timestamp": "2019-10-15T20:46:42.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.877500", + "Timestamp": "2024-05-16T06:33:12.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.102400", - "Timestamp": "2019-10-15T20:46:42.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.752500", + "Timestamp": "2024-05-16T06:33:12.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.008400", - "Timestamp": "2019-10-15T20:46:27.000Z" + "SpotPrice": "0.565300", + "Timestamp": "2024-05-16T06:33:12.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2idn.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.008400", - "Timestamp": "2019-10-15T20:46:27.000Z" + "SpotPrice": "11.484600", + "Timestamp": "2024-05-16T06:33:12.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t2.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063800", - "Timestamp": "2019-10-15T20:46:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.239800", + "Timestamp": "2024-05-16T06:33:12.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-1b", + "InstanceType": "is4gen.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063800", - "Timestamp": "2019-10-15T20:46:27.000Z" + "SpotPrice": "1.980700", + "Timestamp": "2024-05-16T06:33:11.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t2.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003800", - "Timestamp": "2019-10-15T20:46:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.975700", + "Timestamp": "2024-05-16T06:33:11.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-1b", + "InstanceType": "is4gen.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003800", - "Timestamp": "2019-10-15T20:46:27.000Z" + "SpotPrice": "1.850700", + "Timestamp": "2024-05-16T06:33:11.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c4.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.489400", - "Timestamp": "2019-10-15T20:40:58.000Z" + "SpotPrice": "2.154800", + "Timestamp": "2024-05-16T06:33:10.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i-flex.large", "ProductDescription": "Windows", - "SpotPrice": "0.489400", - "Timestamp": "2019-10-15T20:40:58.000Z" + "SpotPrice": "0.128700", + "Timestamp": "2024-05-16T06:33:09.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.251400", - "Timestamp": "2019-10-15T20:40:02.000Z" + "SpotPrice": "0.361500", + "Timestamp": "2024-05-16T06:33:09.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.251400", - "Timestamp": "2019-10-15T20:40:02.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.356500", + "Timestamp": "2024-05-16T06:33:09.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.121400", - "Timestamp": "2019-10-15T20:40:02.000Z" + "SpotPrice": "0.231500", + "Timestamp": "2024-05-16T06:33:09.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.121400", - "Timestamp": "2019-10-15T20:40:02.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.239700", + "Timestamp": "2024-05-16T06:33:07.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.858500", - "Timestamp": "2019-10-15T20:36:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.114000", + "Timestamp": "2024-05-16T06:33:06.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.6xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.858500", - "Timestamp": "2019-10-15T20:36:40.000Z" + "SpotPrice": "2.487100", + "Timestamp": "2024-05-16T06:33:06.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.728500", - "Timestamp": "2019-10-15T20:36:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.482100", + "Timestamp": "2024-05-16T06:33:06.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.6xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.728500", - "Timestamp": "2019-10-15T20:36:40.000Z" + "SpotPrice": "2.357100", + "Timestamp": "2024-05-16T06:33:06.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.936500", - "Timestamp": "2019-10-15T20:36:25.000Z" + "SpotPrice": "0.519700", + "Timestamp": "2024-05-16T06:33:05.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.936500", - "Timestamp": "2019-10-15T20:36:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.760200", + "Timestamp": "2024-05-16T06:33:04.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.350400", - "Timestamp": "2019-10-15T20:34:01.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.755200", + "Timestamp": "2024-05-16T06:33:04.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.220400", - "Timestamp": "2019-10-15T20:34:01.000Z" + "SpotPrice": "3.630200", + "Timestamp": "2024-05-16T06:33:04.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.961600", - "Timestamp": "2019-10-15T20:05:26.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.998800", + "Timestamp": "2024-05-16T06:33:04.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.961600", - "Timestamp": "2019-10-15T20:05:26.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.993800", + "Timestamp": "2024-05-16T06:33:04.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.147600", - "Timestamp": "2019-10-15T20:05:13.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.868800", + "Timestamp": "2024-05-16T06:33:04.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.592900", + "Timestamp": "2024-05-16T06:33:03.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.147600", - "Timestamp": "2019-10-15T20:05:13.000Z" + "SpotPrice": "3.426300", + "Timestamp": "2024-05-16T06:33:03.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.017600", - "Timestamp": "2019-10-15T20:05:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.421300", + "Timestamp": "2024-05-16T06:33:03.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.017600", - "Timestamp": "2019-10-15T20:05:13.000Z" + "SpotPrice": "3.296300", + "Timestamp": "2024-05-16T06:33:03.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.377800", - "Timestamp": "2019-10-15T19:46:59.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127400", + "Timestamp": "2024-05-16T06:33:02.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.139800", - "Timestamp": "2019-10-15T19:46:59.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123700", + "Timestamp": "2024-05-16T06:33:02.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.009800", - "Timestamp": "2019-10-15T19:46:59.000Z" + "SpotPrice": "0.067400", + "Timestamp": "2024-05-16T06:33:02.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090400", - "Timestamp": "2019-10-15T19:46:43.000Z" + "SpotPrice": "0.123200", + "Timestamp": "2024-05-16T06:33:00.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090400", - "Timestamp": "2019-10-15T19:46:43.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119500", + "Timestamp": "2024-05-16T06:33:00.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030400", - "Timestamp": "2019-10-15T19:46:43.000Z" + "SpotPrice": "0.063200", + "Timestamp": "2024-05-16T06:33:00.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030400", - "Timestamp": "2019-10-15T19:46:43.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152500", + "Timestamp": "2024-05-16T06:32:59.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.122400", - "Timestamp": "2019-10-15T19:46:43.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148800", + "Timestamp": "2024-05-16T06:32:59.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.122400", - "Timestamp": "2019-10-15T19:46:43.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092500", + "Timestamp": "2024-05-16T06:32:59.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.483600", - "Timestamp": "2019-10-15T19:46:28.000Z" + "SpotPrice": "0.886100", + "Timestamp": "2024-05-16T06:32:59.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.483600", - "Timestamp": "2019-10-15T19:46:28.000Z" + "SpotPrice": "0.508800", + "Timestamp": "2024-05-16T06:32:58.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.245600", - "Timestamp": "2019-10-15T19:46:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.287600", + "Timestamp": "2024-05-16T06:32:57.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.245600", - "Timestamp": "2019-10-15T19:46:28.000Z" + "SpotPrice": "0.432200", + "Timestamp": "2024-05-16T06:32:56.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.115600", - "Timestamp": "2019-10-15T19:46:28.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.427200", + "Timestamp": "2024-05-16T06:32:56.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.115600", - "Timestamp": "2019-10-15T19:46:28.000Z" + "SpotPrice": "0.302200", + "Timestamp": "2024-05-16T06:32:56.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.511200", - "Timestamp": "2019-10-15T19:36:42.000Z" + "SpotPrice": "1.212600", + "Timestamp": "2024-05-16T06:32:56.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.372800", - "Timestamp": "2019-10-15T19:36:26.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.392900", + "Timestamp": "2024-05-16T06:32:56.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t4g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.372800", - "Timestamp": "2019-10-15T19:36:26.000Z" + "SpotPrice": "0.269800", + "Timestamp": "2024-05-16T06:32:56.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.242800", - "Timestamp": "2019-10-15T19:36:26.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.264800", + "Timestamp": "2024-05-16T06:32:56.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t4g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.242800", - "Timestamp": "2019-10-15T19:36:26.000Z" + "SpotPrice": "0.139800", + "Timestamp": "2024-05-16T06:32:56.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.978800", - "Timestamp": "2019-10-15T19:36:11.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.540800", + "Timestamp": "2024-05-16T06:32:55.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.978800", - "Timestamp": "2019-10-15T19:36:11.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.510800", + "Timestamp": "2024-05-16T06:32:55.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "11.022400", - "Timestamp": "2019-10-15T19:35:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.410800", + "Timestamp": "2024-05-16T06:32:55.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "8.208400", - "Timestamp": "2019-10-15T19:35:59.000Z" + "SpotPrice": "2.166400", + "Timestamp": "2024-05-16T06:32:55.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.136400", + "Timestamp": "2024-05-16T06:32:55.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "8.078400", - "Timestamp": "2019-10-15T19:35:59.000Z" + "SpotPrice": "2.036400", + "Timestamp": "2024-05-16T06:32:55.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.685300", - "Timestamp": "2019-10-15T18:54:42.000Z" + "SpotPrice": "3.196200", + "Timestamp": "2024-05-16T06:32:54.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.191200", + "Timestamp": "2024-05-16T06:32:54.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.555300", - "Timestamp": "2019-10-15T18:54:42.000Z" + "SpotPrice": "3.066200", + "Timestamp": "2024-05-16T06:32:54.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.088900", - "Timestamp": "2019-10-15T18:36:17.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.166100", + "Timestamp": "2024-05-16T06:32:54.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.088900", - "Timestamp": "2019-10-15T18:36:17.000Z" + "SpotPrice": "0.162800", + "Timestamp": "2024-05-16T06:32:53.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.028900", - "Timestamp": "2019-10-15T18:36:17.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158800", + "Timestamp": "2024-05-16T06:32:53.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.028900", - "Timestamp": "2019-10-15T18:36:17.000Z" + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T06:32:53.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.120900", - "Timestamp": "2019-10-15T18:36:14.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.486700", + "Timestamp": "2024-05-16T06:32:52.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.120900", - "Timestamp": "2019-10-15T18:36:14.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.481700", + "Timestamp": "2024-05-16T06:32:52.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.990400", - "Timestamp": "2019-10-15T18:31:13.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.356700", + "Timestamp": "2024-05-16T06:32:52.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.990400", - "Timestamp": "2019-10-15T18:31:13.000Z" + "SpotPrice": "0.985200", + "Timestamp": "2024-05-16T06:32:52.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.951600", - "Timestamp": "2019-10-15T18:31:01.000Z" + "SpotPrice": "1.679000", + "Timestamp": "2024-05-16T06:32:52.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.951600", - "Timestamp": "2019-10-15T18:31:01.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.674000", + "Timestamp": "2024-05-16T06:32:52.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.821600", - "Timestamp": "2019-10-15T18:31:01.000Z" + "SpotPrice": "1.549000", + "Timestamp": "2024-05-16T06:32:52.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.821600", - "Timestamp": "2019-10-15T18:31:01.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.783500", + "Timestamp": "2024-05-16T06:32:52.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.055100", - "Timestamp": "2019-10-15T18:30:57.000Z" + "SpotPrice": "2.397900", + "Timestamp": "2024-05-16T06:32:51.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.055100", - "Timestamp": "2019-10-15T18:30:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.392900", + "Timestamp": "2024-05-16T06:32:51.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.925100", - "Timestamp": "2019-10-15T18:30:57.000Z" + "SpotPrice": "2.267900", + "Timestamp": "2024-05-16T06:32:51.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.073600", + "Timestamp": "2024-05-16T06:32:51.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.068600", + "Timestamp": "2024-05-16T06:32:51.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.925100", - "Timestamp": "2019-10-15T18:30:57.000Z" + "SpotPrice": "0.943600", + "Timestamp": "2024-05-16T06:32:51.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.869100", - "Timestamp": "2019-10-15T18:30:52.000Z" + "SpotPrice": "4.159300", + "Timestamp": "2024-05-16T06:32:51.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.large", "ProductDescription": "Windows", - "SpotPrice": "3.869100", - "Timestamp": "2019-10-15T18:30:52.000Z" + "SpotPrice": "0.159200", + "Timestamp": "2024-05-16T06:32:51.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.384400", - "Timestamp": "2019-10-15T18:30:48.000Z" + "SpotPrice": "0.287100", + "Timestamp": "2024-05-16T06:32:51.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.384400", - "Timestamp": "2019-10-15T18:30:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.282100", + "Timestamp": "2024-05-16T06:32:51.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.254400", - "Timestamp": "2019-10-15T18:30:48.000Z" + "SpotPrice": "0.157100", + "Timestamp": "2024-05-16T06:32:51.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.254400", - "Timestamp": "2019-10-15T18:30:48.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.154500", + "Timestamp": "2024-05-16T06:32:50.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "z1d.6xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.241800", - "Timestamp": "2019-10-15T18:30:42.000Z" + "SpotPrice": "2.084800", + "Timestamp": "2024-05-16T06:32:50.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.241800", - "Timestamp": "2019-10-15T18:30:42.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.081900", + "Timestamp": "2024-05-16T06:32:49.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.477600", - "Timestamp": "2019-10-15T18:30:36.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.076900", + "Timestamp": "2024-05-16T06:32:49.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.477600", - "Timestamp": "2019-10-15T18:30:36.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.951900", + "Timestamp": "2024-05-16T06:32:49.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.942500", - "Timestamp": "2019-10-15T18:30:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.402800", + "Timestamp": "2024-05-16T06:32:49.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.942500", - "Timestamp": "2019-10-15T18:30:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.397800", + "Timestamp": "2024-05-16T06:32:49.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.656500", - "Timestamp": "2019-10-15T18:30:27.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.272800", + "Timestamp": "2024-05-16T06:32:49.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.324300", + "Timestamp": "2024-05-16T06:32:49.000Z" + }, + { + "AvailabilityZone": "us-east-1e", + "InstanceType": "f1.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.656500", - "Timestamp": "2019-10-15T18:30:27.000Z" + "SpotPrice": "1.678000", + "Timestamp": "2024-05-16T06:32:48.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.526500", - "Timestamp": "2019-10-15T18:30:27.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "f1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.648000", + "Timestamp": "2024-05-16T06:32:48.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-1e", + "InstanceType": "f1.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.526500", - "Timestamp": "2019-10-15T18:30:27.000Z" + "SpotPrice": "1.548000", + "Timestamp": "2024-05-16T06:32:48.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.117800", - "Timestamp": "2019-10-15T18:30:17.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.163000", + "Timestamp": "2024-05-16T06:32:48.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2idn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.117800", - "Timestamp": "2019-10-15T18:30:17.000Z" + "SpotPrice": "2.792000", + "Timestamp": "2024-05-16T06:32:48.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.057800", - "Timestamp": "2019-10-15T18:30:17.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.787000", + "Timestamp": "2024-05-16T06:32:48.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2idn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.057800", - "Timestamp": "2019-10-15T18:30:17.000Z" + "SpotPrice": "2.662000", + "Timestamp": "2024-05-16T06:32:48.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.971200", - "Timestamp": "2019-10-15T17:46:29.000Z" + "SpotPrice": "0.755600", + "Timestamp": "2024-05-16T06:32:47.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.971200", - "Timestamp": "2019-10-15T17:46:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.075400", + "Timestamp": "2024-05-16T06:32:47.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.070400", + "Timestamp": "2024-05-16T06:32:47.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.945400", + "Timestamp": "2024-05-16T06:32:47.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.893200", - "Timestamp": "2019-10-15T17:46:29.000Z" + "SpotPrice": "0.261900", + "Timestamp": "2024-05-16T06:32:46.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.893200", - "Timestamp": "2019-10-15T17:46:29.000Z" + "SpotPrice": "0.271700", + "Timestamp": "2024-05-16T06:32:46.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.763200", - "Timestamp": "2019-10-15T17:46:29.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258900", + "Timestamp": "2024-05-16T06:32:46.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.763200", - "Timestamp": "2019-10-15T17:46:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268700", + "Timestamp": "2024-05-16T06:32:46.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.167600", - "Timestamp": "2019-10-15T17:42:38.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.201900", + "Timestamp": "2024-05-16T06:32:46.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.107600", - "Timestamp": "2019-10-15T17:42:38.000Z" + "SpotPrice": "0.211700", + "Timestamp": "2024-05-16T06:32:46.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.517700", - "Timestamp": "2019-10-15T17:36:26.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.083900", + "Timestamp": "2024-05-16T06:32:46.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2idn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.517700", - "Timestamp": "2019-10-15T17:36:26.000Z" + "SpotPrice": "5.150700", + "Timestamp": "2024-05-16T06:32:46.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.387700", - "Timestamp": "2019-10-15T17:36:26.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.145700", + "Timestamp": "2024-05-16T06:32:46.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2idn.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.387700", - "Timestamp": "2019-10-15T17:36:26.000Z" + "SpotPrice": "5.020700", + "Timestamp": "2024-05-16T06:32:46.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.163200", - "Timestamp": "2019-10-15T17:36:12.000Z" + "SpotPrice": "0.378800", + "Timestamp": "2024-05-16T06:32:45.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.373800", + "Timestamp": "2024-05-16T06:32:45.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.103200", - "Timestamp": "2019-10-15T17:36:12.000Z" + "SpotPrice": "0.248800", + "Timestamp": "2024-05-16T06:32:45.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.287200", - "Timestamp": "2019-10-15T17:35:44.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.519300", + "Timestamp": "2024-05-16T06:32:45.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.287200", - "Timestamp": "2019-10-15T17:35:44.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.514300", + "Timestamp": "2024-05-16T06:32:45.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.803700", - "Timestamp": "2019-10-15T17:35:43.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.389300", + "Timestamp": "2024-05-16T06:32:45.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.803700", - "Timestamp": "2019-10-15T17:35:43.000Z" + "SpotPrice": "4.563300", + "Timestamp": "2024-05-16T06:32:44.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.858500", - "Timestamp": "2019-10-15T17:33:20.000Z" + "SpotPrice": "1.468000", + "Timestamp": "2024-05-16T06:32:44.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.858500", - "Timestamp": "2019-10-15T17:33:20.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.463000", + "Timestamp": "2024-05-16T06:32:44.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.728500", - "Timestamp": "2019-10-15T17:33:20.000Z" + "SpotPrice": "1.338000", + "Timestamp": "2024-05-16T06:32:44.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.728500", - "Timestamp": "2019-10-15T17:33:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.387100", + "Timestamp": "2024-05-16T06:32:43.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.936500", - "Timestamp": "2019-10-15T17:33:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.382100", + "Timestamp": "2024-05-16T06:32:43.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.936500", - "Timestamp": "2019-10-15T17:33:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.257100", + "Timestamp": "2024-05-16T06:32:43.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4ad.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.942500", - "Timestamp": "2019-10-15T17:23:41.000Z" + "SpotPrice": "0.596700", + "Timestamp": "2024-05-16T06:32:43.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.942500", - "Timestamp": "2019-10-15T17:23:41.000Z" + "SpotPrice": "2.300600", + "Timestamp": "2024-05-16T06:32:42.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.656500", - "Timestamp": "2019-10-15T17:23:41.000Z" + "SpotPrice": "1.171400", + "Timestamp": "2024-05-16T06:32:42.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.656500", - "Timestamp": "2019-10-15T17:23:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.166400", + "Timestamp": "2024-05-16T06:32:42.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.526500", - "Timestamp": "2019-10-15T17:23:41.000Z" + "SpotPrice": "1.041400", + "Timestamp": "2024-05-16T06:32:42.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.526500", - "Timestamp": "2019-10-15T17:23:41.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.162200", + "Timestamp": "2024-05-16T06:32:42.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "d2.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.257200", - "Timestamp": "2019-10-15T17:23:40.000Z" + "SpotPrice": "1.234400", + "Timestamp": "2024-05-16T06:32:41.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.257200", - "Timestamp": "2019-10-15T17:23:40.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.204400", + "Timestamp": "2024-05-16T06:32:41.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "d2.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.127200", - "Timestamp": "2019-10-15T17:23:40.000Z" + "SpotPrice": "1.104400", + "Timestamp": "2024-05-16T06:32:41.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.127200", - "Timestamp": "2019-10-15T17:23:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.513900", + "Timestamp": "2024-05-16T06:32:41.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.495200", - "Timestamp": "2019-10-15T17:23:40.000Z" + "SpotPrice": "2.444800", + "Timestamp": "2024-05-16T06:32:41.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.495200", - "Timestamp": "2019-10-15T17:23:40.000Z" + "SpotPrice": "0.320200", + "Timestamp": "2024-05-16T06:32:40.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.220500", + "Timestamp": "2024-05-16T06:32:40.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.215500", + "Timestamp": "2024-05-16T06:32:40.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.090500", + "Timestamp": "2024-05-16T06:32:40.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.915400", - "Timestamp": "2019-10-15T17:23:32.000Z" + "SpotPrice": "0.316900", + "Timestamp": "2024-05-16T06:32:39.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x1.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.915400", - "Timestamp": "2019-10-15T17:23:32.000Z" + "SpotPrice": "5.658300", + "Timestamp": "2024-05-16T06:32:39.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.101400", - "Timestamp": "2019-10-15T17:23:32.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.548800", + "Timestamp": "2024-05-16T06:32:39.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.101400", - "Timestamp": "2019-10-15T17:23:32.000Z" + "SpotPrice": "1.847800", + "Timestamp": "2024-05-16T06:32:38.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.971400", - "Timestamp": "2019-10-15T17:23:32.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.842800", + "Timestamp": "2024-05-16T06:32:38.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.971400", - "Timestamp": "2019-10-15T17:23:32.000Z" + "SpotPrice": "1.717800", + "Timestamp": "2024-05-16T06:32:38.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.858500", - "Timestamp": "2019-10-15T17:23:30.000Z" + "SpotPrice": "0.536400", + "Timestamp": "2024-05-16T06:32:38.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.858500", - "Timestamp": "2019-10-15T17:23:30.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.531400", + "Timestamp": "2024-05-16T06:32:38.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.728500", - "Timestamp": "2019-10-15T17:23:30.000Z" + "SpotPrice": "0.406400", + "Timestamp": "2024-05-16T06:32:38.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.250900", + "Timestamp": "2024-05-16T06:32:37.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.245900", + "Timestamp": "2024-05-16T06:32:37.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.6xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.728500", - "Timestamp": "2019-10-15T17:23:30.000Z" + "SpotPrice": "1.120900", + "Timestamp": "2024-05-16T06:32:37.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.936500", - "Timestamp": "2019-10-15T17:23:30.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094600", + "Timestamp": "2024-05-16T06:32:37.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.936500", - "Timestamp": "2019-10-15T17:23:30.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134600", + "Timestamp": "2024-05-16T06:32:37.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.244700", - "Timestamp": "2019-10-15T17:23:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034600", + "Timestamp": "2024-05-16T06:32:37.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.244700", - "Timestamp": "2019-10-15T17:23:26.000Z" + "SpotPrice": "0.279600", + "Timestamp": "2024-05-16T06:32:37.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120700", - "Timestamp": "2019-10-15T17:23:26.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.703800", + "Timestamp": "2024-05-16T06:32:36.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120700", - "Timestamp": "2019-10-15T17:23:26.000Z" + "SpotPrice": "0.143700", + "Timestamp": "2024-05-16T06:32:36.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060700", - "Timestamp": "2019-10-15T17:23:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183700", + "Timestamp": "2024-05-16T06:32:36.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t2.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060700", - "Timestamp": "2019-10-15T17:23:26.000Z" + "SpotPrice": "0.083700", + "Timestamp": "2024-05-16T06:32:36.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123600", - "Timestamp": "2019-10-15T17:23:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.127000", + "Timestamp": "2024-05-16T06:32:36.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123600", - "Timestamp": "2019-10-15T17:23:25.000Z" + "SpotPrice": "2.193800", + "Timestamp": "2024-05-16T06:32:36.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-15T17:23:25.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.163800", + "Timestamp": "2024-05-16T06:32:36.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-15T17:23:25.000Z" + "SpotPrice": "2.063800", + "Timestamp": "2024-05-16T06:32:36.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.247600", - "Timestamp": "2019-10-15T17:23:25.000Z" + "SpotPrice": "2.132400", + "Timestamp": "2024-05-16T06:32:34.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.large", "ProductDescription": "Windows", - "SpotPrice": "0.247600", - "Timestamp": "2019-10-15T17:23:25.000Z" - }, - { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.350300", - "Timestamp": "2019-10-15T17:23:24.000Z" + "SpotPrice": "0.132500", + "Timestamp": "2024-05-16T06:32:31.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.350300", - "Timestamp": "2019-10-15T17:23:24.000Z" + "SpotPrice": "0.132300", + "Timestamp": "2024-05-16T06:32:31.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.220300", - "Timestamp": "2019-10-15T17:23:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128600", + "Timestamp": "2024-05-16T06:32:31.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.220300", - "Timestamp": "2019-10-15T17:23:24.000Z" - }, - { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.956300", - "Timestamp": "2019-10-15T17:23:24.000Z" + "SpotPrice": "0.072300", + "Timestamp": "2024-05-16T06:32:31.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.956300", - "Timestamp": "2019-10-15T17:23:24.000Z" - }, - { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090400", - "Timestamp": "2019-10-15T17:23:16.000Z" + "SpotPrice": "5.141800", + "Timestamp": "2024-05-16T06:32:31.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090400", - "Timestamp": "2019-10-15T17:23:16.000Z" + "SpotPrice": "0.481700", + "Timestamp": "2024-05-16T06:32:31.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030400", - "Timestamp": "2019-10-15T17:23:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.476700", + "Timestamp": "2024-05-16T06:32:31.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030400", - "Timestamp": "2019-10-15T17:23:16.000Z" + "SpotPrice": "0.351700", + "Timestamp": "2024-05-16T06:32:31.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.metal", "ProductDescription": "Windows", - "SpotPrice": "0.122400", - "Timestamp": "2019-10-15T17:23:16.000Z" + "SpotPrice": "8.450500", + "Timestamp": "2024-05-16T06:32:30.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.122400", - "Timestamp": "2019-10-15T17:23:16.000Z" - }, - { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061700", - "Timestamp": "2019-10-15T17:23:15.000Z" + "SpotPrice": "4.561400", + "Timestamp": "2024-05-16T06:32:30.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061700", - "Timestamp": "2019-10-15T17:23:15.000Z" + "SpotPrice": "3.007200", + "Timestamp": "2024-05-16T06:32:30.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001700", - "Timestamp": "2019-10-15T17:23:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.002200", + "Timestamp": "2024-05-16T06:32:30.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001700", - "Timestamp": "2019-10-15T17:23:15.000Z" + "SpotPrice": "2.877200", + "Timestamp": "2024-05-16T06:32:30.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.metal", "ProductDescription": "Windows", - "SpotPrice": "0.006300", - "Timestamp": "2019-10-15T17:23:15.000Z" + "SpotPrice": "9.227900", + "Timestamp": "2024-05-16T06:32:30.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.metal", "ProductDescription": "Windows", - "SpotPrice": "0.006300", - "Timestamp": "2019-10-15T17:23:15.000Z" + "SpotPrice": "9.952800", + "Timestamp": "2024-05-16T06:32:30.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.614600", - "Timestamp": "2019-10-15T17:08:45.000Z" + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T06:32:30.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.614600", - "Timestamp": "2019-10-15T17:08:45.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121700", + "Timestamp": "2024-05-16T06:32:30.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.484600", - "Timestamp": "2019-10-15T17:08:45.000Z" + "SpotPrice": "0.065400", + "Timestamp": "2024-05-16T06:32:30.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.484600", - "Timestamp": "2019-10-15T17:08:45.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.475300", + "Timestamp": "2024-05-16T06:32:28.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.585400", - "Timestamp": "2019-10-15T17:08:04.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.470300", + "Timestamp": "2024-05-16T06:32:28.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.345300", + "Timestamp": "2024-05-16T06:32:28.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.585400", - "Timestamp": "2019-10-15T17:08:04.000Z" + "SpotPrice": "0.943500", + "Timestamp": "2024-05-16T06:32:28.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.455400", - "Timestamp": "2019-10-15T17:08:04.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.938500", + "Timestamp": "2024-05-16T06:32:28.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.455400", - "Timestamp": "2019-10-15T17:08:04.000Z" + "SpotPrice": "0.813500", + "Timestamp": "2024-05-16T06:32:28.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.128900", - "Timestamp": "2019-10-15T17:04:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.120600", + "Timestamp": "2024-05-16T06:32:27.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.128900", - "Timestamp": "2019-10-15T17:04:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.115600", + "Timestamp": "2024-05-16T06:32:27.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.115300", - "Timestamp": "2019-10-15T17:04:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.990600", + "Timestamp": "2024-05-16T06:32:27.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.115300", - "Timestamp": "2019-10-15T17:04:55.000Z" + "SpotPrice": "0.391400", + "Timestamp": "2024-05-16T06:32:27.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.055300", - "Timestamp": "2019-10-15T17:04:55.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.386400", + "Timestamp": "2024-05-16T06:32:27.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.055300", - "Timestamp": "2019-10-15T17:04:55.000Z" + "SpotPrice": "0.261400", + "Timestamp": "2024-05-16T06:32:27.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c4.large", "ProductDescription": "Windows", - "SpotPrice": "0.247600", - "Timestamp": "2019-10-15T17:04:40.000Z" + "SpotPrice": "0.133300", + "Timestamp": "2024-05-16T06:32:27.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "z1d.3xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.247600", - "Timestamp": "2019-10-15T17:04:40.000Z" + "SpotPrice": "1.009500", + "Timestamp": "2024-05-16T06:32:27.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123600", - "Timestamp": "2019-10-15T17:04:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.503900", + "Timestamp": "2024-05-16T06:32:27.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123600", - "Timestamp": "2019-10-15T17:04:40.000Z" + "SpotPrice": "0.298700", + "Timestamp": "2024-05-16T06:32:26.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-15T17:04:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293700", + "Timestamp": "2024-05-16T06:32:26.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-15T17:04:40.000Z" + "SpotPrice": "0.168700", + "Timestamp": "2024-05-16T06:32:26.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091800", - "Timestamp": "2019-10-15T16:41:48.000Z" + "SpotPrice": "3.946100", + "Timestamp": "2024-05-16T06:32:26.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091800", - "Timestamp": "2019-10-15T16:41:48.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.941100", + "Timestamp": "2024-05-16T06:32:26.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031800", - "Timestamp": "2019-10-15T16:41:48.000Z" + "SpotPrice": "3.816100", + "Timestamp": "2024-05-16T06:32:26.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031800", - "Timestamp": "2019-10-15T16:41:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133900", + "Timestamp": "2024-05-16T06:32:26.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123800", - "Timestamp": "2019-10-15T16:41:34.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130200", + "Timestamp": "2024-05-16T06:32:26.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123800", - "Timestamp": "2019-10-15T16:41:34.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073900", + "Timestamp": "2024-05-16T06:32:26.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.942500", - "Timestamp": "2019-10-15T16:35:58.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.684600", + "Timestamp": "2024-05-16T06:32:26.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.942500", - "Timestamp": "2019-10-15T16:35:58.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.679600", + "Timestamp": "2024-05-16T06:32:26.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.656500", - "Timestamp": "2019-10-15T16:35:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.554600", + "Timestamp": "2024-05-16T06:32:26.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.656500", - "Timestamp": "2019-10-15T16:35:56.000Z" + "SpotPrice": "0.334900", + "Timestamp": "2024-05-16T06:32:26.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.526500", - "Timestamp": "2019-10-15T16:35:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.329900", + "Timestamp": "2024-05-16T06:32:26.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.526500", - "Timestamp": "2019-10-15T16:35:56.000Z" - }, - { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.122400", - "Timestamp": "2019-10-15T16:34:31.000Z" + "SpotPrice": "0.204900", + "Timestamp": "2024-05-16T06:32:26.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.122400", - "Timestamp": "2019-10-15T16:34:31.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.054000", + "Timestamp": "2024-05-16T06:32:25.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090400", - "Timestamp": "2019-10-15T16:33:44.000Z" + "SpotPrice": "1.010600", + "Timestamp": "2024-05-16T06:32:25.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5ad.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090400", - "Timestamp": "2019-10-15T16:33:44.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.049000", + "Timestamp": "2024-05-16T06:32:25.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5ad.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030400", - "Timestamp": "2019-10-15T16:33:44.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.005600", + "Timestamp": "2024-05-16T06:32:25.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "g4dn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030400", - "Timestamp": "2019-10-15T16:33:44.000Z" + "SpotPrice": "0.924000", + "Timestamp": "2024-05-16T06:32:25.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.170800", - "Timestamp": "2019-10-15T16:33:43.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.880600", + "Timestamp": "2024-05-16T06:32:25.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.170800", - "Timestamp": "2019-10-15T16:33:43.000Z" + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T06:32:25.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.040800", - "Timestamp": "2019-10-15T16:33:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101900", + "Timestamp": "2024-05-16T06:32:25.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.040800", - "Timestamp": "2019-10-15T16:33:43.000Z" + "SpotPrice": "0.045900", + "Timestamp": "2024-05-16T06:32:25.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.352800", - "Timestamp": "2019-10-15T16:33:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.845800", + "Timestamp": "2024-05-16T06:32:25.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.352800", - "Timestamp": "2019-10-15T16:33:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.840800", + "Timestamp": "2024-05-16T06:32:25.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3.small", - "ProductDescription": "Windows", - "SpotPrice": "0.025300", - "Timestamp": "2019-10-15T16:04:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.715800", + "Timestamp": "2024-05-16T06:32:25.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.025300", - "Timestamp": "2019-10-15T16:04:55.000Z" - }, - { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066900", - "Timestamp": "2019-10-15T16:04:55.000Z" + "SpotPrice": "2.288400", + "Timestamp": "2024-05-16T06:32:25.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066900", - "Timestamp": "2019-10-15T16:04:55.000Z" + "SpotPrice": "0.333500", + "Timestamp": "2024-05-16T06:32:25.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006900", - "Timestamp": "2019-10-15T16:04:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.328500", + "Timestamp": "2024-05-16T06:32:25.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006900", - "Timestamp": "2019-10-15T16:04:55.000Z" + "SpotPrice": "0.203500", + "Timestamp": "2024-05-16T06:32:25.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r3.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.012700", - "Timestamp": "2019-10-15T16:04:41.000Z" + "SpotPrice": "0.394700", + "Timestamp": "2024-05-16T06:32:25.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.012700", - "Timestamp": "2019-10-15T16:04:41.000Z" + "SpotPrice": "4.434100", + "Timestamp": "2024-05-16T06:32:24.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063500", - "Timestamp": "2019-10-15T16:04:41.000Z" + "SpotPrice": "2.958200", + "Timestamp": "2024-05-16T06:32:22.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063500", - "Timestamp": "2019-10-15T16:04:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.953200", + "Timestamp": "2024-05-16T06:32:22.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003500", - "Timestamp": "2019-10-15T16:04:41.000Z" + "SpotPrice": "2.828200", + "Timestamp": "2024-05-16T06:32:22.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003500", - "Timestamp": "2019-10-15T16:04:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.557600", + "Timestamp": "2024-05-16T06:32:22.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.361300", - "Timestamp": "2019-10-15T16:04:40.000Z" + "SpotPrice": "1.007800", + "Timestamp": "2024-05-16T06:32:22.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.361300", - "Timestamp": "2019-10-15T16:04:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.002800", + "Timestamp": "2024-05-16T06:32:22.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.231300", - "Timestamp": "2019-10-15T16:04:40.000Z" + "SpotPrice": "0.877800", + "Timestamp": "2024-05-16T06:32:22.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.231300", - "Timestamp": "2019-10-15T16:04:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.465400", + "Timestamp": "2024-05-16T06:32:22.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.967300", - "Timestamp": "2019-10-15T16:04:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.460400", + "Timestamp": "2024-05-16T06:32:22.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.967300", - "Timestamp": "2019-10-15T16:04:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.335400", + "Timestamp": "2024-05-16T06:32:22.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.251400", - "Timestamp": "2019-10-15T16:04:27.000Z" + "SpotPrice": "0.303600", + "Timestamp": "2024-05-16T06:32:22.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.251400", - "Timestamp": "2019-10-15T16:04:27.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298600", + "Timestamp": "2024-05-16T06:32:22.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.121400", - "Timestamp": "2019-10-15T16:04:27.000Z" + "SpotPrice": "0.173600", + "Timestamp": "2024-05-16T06:32:22.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.121400", - "Timestamp": "2019-10-15T16:04:27.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.555400", + "Timestamp": "2024-05-16T06:32:21.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.489400", - "Timestamp": "2019-10-15T16:04:27.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.130100", + "Timestamp": "2024-05-16T06:32:21.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.489400", - "Timestamp": "2019-10-15T16:04:27.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "p2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.100100", + "Timestamp": "2024-05-16T06:32:21.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.110100", - "Timestamp": "2019-10-15T15:40:43.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.000100", + "Timestamp": "2024-05-16T06:32:21.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.110100", - "Timestamp": "2019-10-15T15:40:43.000Z" + "SpotPrice": "0.301200", + "Timestamp": "2024-05-16T06:32:21.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.050100", - "Timestamp": "2019-10-15T15:40:43.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296200", + "Timestamp": "2024-05-16T06:32:21.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.050100", - "Timestamp": "2019-10-15T15:40:43.000Z" + "SpotPrice": "0.171200", + "Timestamp": "2024-05-16T06:32:21.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.123700", - "Timestamp": "2019-10-15T15:40:26.000Z" - }, + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.540700", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.123700", - "Timestamp": "2019-10-15T15:40:26.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.535700", + "Timestamp": "2024-05-16T06:32:21.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090400", - "Timestamp": "2019-10-15T15:36:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.410700", + "Timestamp": "2024-05-16T06:32:21.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090400", - "Timestamp": "2019-10-15T15:36:15.000Z" + "SpotPrice": "0.772800", + "Timestamp": "2024-05-16T06:32:19.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030400", - "Timestamp": "2019-10-15T15:36:15.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.767800", + "Timestamp": "2024-05-16T06:32:19.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030400", - "Timestamp": "2019-10-15T15:36:15.000Z" + "SpotPrice": "0.642800", + "Timestamp": "2024-05-16T06:32:19.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.361300", - "Timestamp": "2019-10-15T15:36:09.000Z" + "SpotPrice": "0.280100", + "Timestamp": "2024-05-16T06:32:19.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.361300", - "Timestamp": "2019-10-15T15:36:09.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.275100", + "Timestamp": "2024-05-16T06:32:19.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.231300", - "Timestamp": "2019-10-15T15:36:09.000Z" + "SpotPrice": "0.150100", + "Timestamp": "2024-05-16T06:32:19.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.231300", - "Timestamp": "2019-10-15T15:36:09.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.780500", + "Timestamp": "2024-05-16T06:32:19.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.967300", - "Timestamp": "2019-10-15T15:35:57.000Z" + "SpotPrice": "0.522500", + "Timestamp": "2024-05-16T06:32:18.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.967300", - "Timestamp": "2019-10-15T15:35:57.000Z" + "SpotPrice": "3.114500", + "Timestamp": "2024-05-16T06:32:18.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.122400", - "Timestamp": "2019-10-15T15:35:46.000Z" + "SpotPrice": "2.213800", + "Timestamp": "2024-05-16T06:32:18.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.122400", - "Timestamp": "2019-10-15T15:35:46.000Z" + "SpotPrice": "7.685700", + "Timestamp": "2024-05-16T06:32:17.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.147600", - "Timestamp": "2019-10-15T15:34:09.000Z" + "SpotPrice": "1.329800", + "Timestamp": "2024-05-16T06:32:17.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.147600", - "Timestamp": "2019-10-15T15:34:09.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.324800", + "Timestamp": "2024-05-16T06:32:17.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.017600", - "Timestamp": "2019-10-15T15:34:09.000Z" + "SpotPrice": "1.199800", + "Timestamp": "2024-05-16T06:32:17.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.017600", - "Timestamp": "2019-10-15T15:34:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101500", + "Timestamp": "2024-05-16T06:32:17.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.961600", - "Timestamp": "2019-10-15T15:33:45.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097800", + "Timestamp": "2024-05-16T06:32:17.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.961600", - "Timestamp": "2019-10-15T15:33:45.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041500", + "Timestamp": "2024-05-16T06:32:17.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061600", - "Timestamp": "2019-10-15T15:04:27.000Z" + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T06:32:17.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3a.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061600", - "Timestamp": "2019-10-15T15:04:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T06:32:17.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001600", - "Timestamp": "2019-10-15T15:04:27.000Z" + "SpotPrice": "0.044900", + "Timestamp": "2024-05-16T06:32:17.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3a.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001600", - "Timestamp": "2019-10-15T15:04:27.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.863800", + "Timestamp": "2024-05-16T06:32:16.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006200", - "Timestamp": "2019-10-15T15:04:27.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.858800", + "Timestamp": "2024-05-16T06:32:16.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006200", - "Timestamp": "2019-10-15T15:04:27.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.733800", + "Timestamp": "2024-05-16T06:32:16.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.117800", - "Timestamp": "2019-10-15T14:35:59.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.035100", + "Timestamp": "2024-05-16T06:32:16.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.metal-48xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.117800", - "Timestamp": "2019-10-15T14:35:59.000Z" + "SpotPrice": "4.309400", + "Timestamp": "2024-05-16T06:32:15.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.057800", - "Timestamp": "2019-10-15T14:35:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.304400", + "Timestamp": "2024-05-16T06:32:15.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.057800", - "Timestamp": "2019-10-15T14:35:59.000Z" - }, - { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.241800", - "Timestamp": "2019-10-15T14:35:48.000Z" + "SpotPrice": "4.179400", + "Timestamp": "2024-05-16T06:32:15.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.241800", - "Timestamp": "2019-10-15T14:35:48.000Z" - }, - { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.823900", - "Timestamp": "2019-10-15T14:25:38.000Z" + "SpotPrice": "0.567700", + "Timestamp": "2024-05-16T06:32:15.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.823900", - "Timestamp": "2019-10-15T14:25:38.000Z" + "SpotPrice": "0.330400", + "Timestamp": "2024-05-16T06:32:15.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.693900", - "Timestamp": "2019-10-15T14:25:38.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325400", + "Timestamp": "2024-05-16T06:32:15.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.693900", - "Timestamp": "2019-10-15T14:25:38.000Z" - }, - { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.967300", - "Timestamp": "2019-10-15T14:04:55.000Z" + "SpotPrice": "0.200400", + "Timestamp": "2024-05-16T06:32:15.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r3.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.967300", - "Timestamp": "2019-10-15T14:04:55.000Z" + "SpotPrice": "1.170800", + "Timestamp": "2024-05-16T06:32:15.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.361300", - "Timestamp": "2019-10-15T14:04:55.000Z" + "SpotPrice": "0.810300", + "Timestamp": "2024-05-16T06:32:15.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.361300", - "Timestamp": "2019-10-15T14:04:55.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.805300", + "Timestamp": "2024-05-16T06:32:15.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.231300", - "Timestamp": "2019-10-15T14:04:55.000Z" + "SpotPrice": "0.680300", + "Timestamp": "2024-05-16T06:32:15.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.231300", - "Timestamp": "2019-10-15T14:04:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.353400", + "Timestamp": "2024-05-16T06:32:15.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.176400", - "Timestamp": "2019-10-15T14:04:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.259800", + "Timestamp": "2024-05-16T06:32:13.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.176400", - "Timestamp": "2019-10-15T14:04:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.254800", + "Timestamp": "2024-05-16T06:32:13.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.650400", - "Timestamp": "2019-10-15T14:04:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129800", + "Timestamp": "2024-05-16T06:32:13.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.650400", - "Timestamp": "2019-10-15T14:04:41.000Z" + "SpotPrice": "0.328300", + "Timestamp": "2024-05-16T06:32:13.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.520400", - "Timestamp": "2019-10-15T14:04:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323300", + "Timestamp": "2024-05-16T06:32:13.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.520400", - "Timestamp": "2019-10-15T14:04:41.000Z" + "SpotPrice": "0.198300", + "Timestamp": "2024-05-16T06:32:13.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c4.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.352800", - "Timestamp": "2019-10-15T14:04:40.000Z" + "SpotPrice": "1.061100", + "Timestamp": "2024-05-16T06:32:13.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.352800", - "Timestamp": "2019-10-15T14:04:40.000Z" - }, - { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.170800", - "Timestamp": "2019-10-15T14:04:40.000Z" + "SpotPrice": "2.240500", + "Timestamp": "2024-05-16T06:32:13.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1e.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.170800", - "Timestamp": "2019-10-15T14:04:40.000Z" + "SpotPrice": "10.836700", + "Timestamp": "2024-05-16T06:32:12.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.040800", - "Timestamp": "2019-10-15T14:04:40.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "10.806700", + "Timestamp": "2024-05-16T06:32:12.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1e.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.040800", - "Timestamp": "2019-10-15T14:04:40.000Z" + "SpotPrice": "10.706700", + "Timestamp": "2024-05-16T06:32:12.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.873100", - "Timestamp": "2019-10-15T14:04:26.000Z" + "SpotPrice": "3.775900", + "Timestamp": "2024-05-16T06:32:12.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.873100", - "Timestamp": "2019-10-15T14:04:26.000Z" - }, - { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.587100", - "Timestamp": "2019-10-15T14:04:26.000Z" + "SpotPrice": "3.947900", + "Timestamp": "2024-05-16T06:32:11.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.587100", - "Timestamp": "2019-10-15T14:04:26.000Z" + "SpotPrice": "0.189100", + "Timestamp": "2024-05-16T06:32:11.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.457100", - "Timestamp": "2019-10-15T14:04:26.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185100", + "Timestamp": "2024-05-16T06:32:11.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.457100", - "Timestamp": "2019-10-15T14:04:26.000Z" - }, - { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.990400", - "Timestamp": "2019-10-15T13:36:21.000Z" + "SpotPrice": "0.129100", + "Timestamp": "2024-05-16T06:32:11.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.990400", - "Timestamp": "2019-10-15T13:36:21.000Z" + "SpotPrice": "3.123400", + "Timestamp": "2024-05-16T06:32:11.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.244700", - "Timestamp": "2019-10-15T13:36:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.310200", + "Timestamp": "2024-05-16T06:32:11.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.244700", - "Timestamp": "2019-10-15T13:36:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.305200", + "Timestamp": "2024-05-16T06:32:11.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3a.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063100", - "Timestamp": "2019-10-15T13:36:00.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180200", + "Timestamp": "2024-05-16T06:32:11.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063100", - "Timestamp": "2019-10-15T13:36:00.000Z" + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T06:32:11.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003100", - "Timestamp": "2019-10-15T13:36:00.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100400", + "Timestamp": "2024-05-16T06:32:11.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003100", - "Timestamp": "2019-10-15T13:36:00.000Z" - }, - { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.384400", - "Timestamp": "2019-10-15T13:35:44.000Z" + "SpotPrice": "0.044400", + "Timestamp": "2024-05-16T06:32:11.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.384400", - "Timestamp": "2019-10-15T13:35:44.000Z" + "SpotPrice": "10.495400", + "Timestamp": "2024-05-16T06:32:08.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.254400", - "Timestamp": "2019-10-15T13:35:44.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "10.490400", + "Timestamp": "2024-05-16T06:32:08.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.254400", - "Timestamp": "2019-10-15T13:35:44.000Z" + "SpotPrice": "10.365400", + "Timestamp": "2024-05-16T06:32:08.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120700", - "Timestamp": "2019-10-15T13:35:41.000Z" + "SpotPrice": "1.547300", + "Timestamp": "2024-05-16T06:32:06.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120700", - "Timestamp": "2019-10-15T13:35:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.517300", + "Timestamp": "2024-05-16T06:32:06.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060700", - "Timestamp": "2019-10-15T13:35:41.000Z" + "SpotPrice": "1.417300", + "Timestamp": "2024-05-16T06:32:06.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060700", - "Timestamp": "2019-10-15T13:35:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.399900", + "Timestamp": "2024-05-16T06:32:06.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012300", - "Timestamp": "2019-10-15T13:35:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.394900", + "Timestamp": "2024-05-16T06:32:06.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012300", - "Timestamp": "2019-10-15T13:35:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.269900", + "Timestamp": "2024-05-16T06:32:06.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.893200", - "Timestamp": "2019-10-15T13:05:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.500700", + "Timestamp": "2024-05-16T06:32:05.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.893200", - "Timestamp": "2019-10-15T13:05:25.000Z" + "SpotPrice": "2.244300", + "Timestamp": "2024-05-16T06:32:04.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.763200", - "Timestamp": "2019-10-15T13:05:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.214300", + "Timestamp": "2024-05-16T06:32:04.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.763200", - "Timestamp": "2019-10-15T13:05:25.000Z" + "SpotPrice": "2.114300", + "Timestamp": "2024-05-16T06:32:04.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.large", "ProductDescription": "Windows", - "SpotPrice": "2.971200", - "Timestamp": "2019-10-15T13:05:25.000Z" + "SpotPrice": "0.135000", + "Timestamp": "2024-05-16T06:32:03.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.971200", - "Timestamp": "2019-10-15T13:05:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.921000", + "Timestamp": "2024-05-16T06:32:03.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.955600", - "Timestamp": "2019-10-15T13:04:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.916000", + "Timestamp": "2024-05-16T06:32:03.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.791000", + "Timestamp": "2024-05-16T06:32:03.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.955600", - "Timestamp": "2019-10-15T13:04:54.000Z" + "SpotPrice": "1.506500", + "Timestamp": "2024-05-16T06:32:03.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.825600", - "Timestamp": "2019-10-15T13:04:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.501500", + "Timestamp": "2024-05-16T06:32:03.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.825600", - "Timestamp": "2019-10-15T13:04:54.000Z" + "SpotPrice": "1.376500", + "Timestamp": "2024-05-16T06:32:03.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "r4.large", "ProductDescription": "Windows", - "SpotPrice": "2.297600", - "Timestamp": "2019-10-15T13:04:54.000Z" + "SpotPrice": "0.149300", + "Timestamp": "2024-05-16T06:32:02.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.297600", - "Timestamp": "2019-10-15T13:04:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163000", + "Timestamp": "2024-05-16T06:32:01.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.101400", - "Timestamp": "2019-10-15T12:41:37.000Z" + "SpotPrice": "0.174100", + "Timestamp": "2024-05-16T06:32:01.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.101400", - "Timestamp": "2019-10-15T12:41:37.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159300", + "Timestamp": "2024-05-16T06:32:01.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170400", + "Timestamp": "2024-05-16T06:32:01.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.971400", - "Timestamp": "2019-10-15T12:41:37.000Z" + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T06:32:01.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.971400", - "Timestamp": "2019-10-15T12:41:37.000Z" + "SpotPrice": "0.114100", + "Timestamp": "2024-05-16T06:32:01.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.915400", - "Timestamp": "2019-10-15T12:40:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064500", + "Timestamp": "2024-05-16T06:32:01.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.915400", - "Timestamp": "2019-10-15T12:40:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004500", + "Timestamp": "2024-05-16T06:32:01.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.803700", - "Timestamp": "2019-10-15T12:37:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004500", + "Timestamp": "2024-05-16T06:32:01.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.803700", - "Timestamp": "2019-10-15T12:37:11.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156700", + "Timestamp": "2024-05-16T06:32:01.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "i3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.143600", - "Timestamp": "2019-10-15T12:36:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152700", + "Timestamp": "2024-05-16T06:32:01.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "i3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.143600", - "Timestamp": "2019-10-15T12:36:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096700", + "Timestamp": "2024-05-16T06:32:01.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.111600", - "Timestamp": "2019-10-15T12:36:15.000Z" + "SpotPrice": "0.197400", + "Timestamp": "2024-05-16T06:32:01.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.111600", - "Timestamp": "2019-10-15T12:36:15.000Z" + "SpotPrice": "0.230600", + "Timestamp": "2024-05-16T06:32:01.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "i3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.051600", - "Timestamp": "2019-10-15T12:36:15.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193400", + "Timestamp": "2024-05-16T06:32:01.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.226600", + "Timestamp": "2024-05-16T06:32:01.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.051600", - "Timestamp": "2019-10-15T12:36:15.000Z" + "SpotPrice": "0.137400", + "Timestamp": "2024-05-16T06:32:01.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120600", - "Timestamp": "2019-10-15T12:36:07.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170600", + "Timestamp": "2024-05-16T06:32:01.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120600", - "Timestamp": "2019-10-15T12:36:07.000Z" + "SpotPrice": "0.842100", + "Timestamp": "2024-05-16T06:32:01.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060600", - "Timestamp": "2019-10-15T12:36:07.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.812100", + "Timestamp": "2024-05-16T06:32:01.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060600", - "Timestamp": "2019-10-15T12:36:07.000Z" + "SpotPrice": "0.712100", + "Timestamp": "2024-05-16T06:32:01.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.244600", - "Timestamp": "2019-10-15T12:36:00.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160700", + "Timestamp": "2024-05-16T06:32:00.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.244600", - "Timestamp": "2019-10-15T12:36:00.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.200700", + "Timestamp": "2024-05-16T06:32:00.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.517700", - "Timestamp": "2019-10-15T12:35:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100700", + "Timestamp": "2024-05-16T06:32:00.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.517700", - "Timestamp": "2019-10-15T12:35:57.000Z" + "SpotPrice": "0.295000", + "Timestamp": "2024-05-16T06:32:00.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.387700", - "Timestamp": "2019-10-15T12:35:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265000", + "Timestamp": "2024-05-16T06:32:00.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.387700", - "Timestamp": "2019-10-15T12:35:57.000Z" + "SpotPrice": "0.165000", + "Timestamp": "2024-05-16T06:32:00.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.587100", - "Timestamp": "2019-10-15T12:05:25.000Z" + "SpotPrice": "0.559000", + "Timestamp": "2024-05-16T06:32:00.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.587100", - "Timestamp": "2019-10-15T12:05:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.554000", + "Timestamp": "2024-05-16T06:32:00.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.457100", - "Timestamp": "2019-10-15T12:05:25.000Z" + "SpotPrice": "0.429000", + "Timestamp": "2024-05-16T06:32:00.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.457100", - "Timestamp": "2019-10-15T12:05:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095100", + "Timestamp": "2024-05-16T06:32:00.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.873100", - "Timestamp": "2019-10-15T12:05:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091400", + "Timestamp": "2024-05-16T06:32:00.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.873100", - "Timestamp": "2019-10-15T12:05:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035100", + "Timestamp": "2024-05-16T06:32:00.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.321600", - "Timestamp": "2019-10-15T12:04:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131200", + "Timestamp": "2024-05-16T06:31:59.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.321600", - "Timestamp": "2019-10-15T12:04:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127500", + "Timestamp": "2024-05-16T06:31:59.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.055300", - "Timestamp": "2019-10-15T12:04:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071200", + "Timestamp": "2024-05-16T06:31:59.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.055300", - "Timestamp": "2019-10-15T12:04:41.000Z" + "SpotPrice": "0.281000", + "Timestamp": "2024-05-16T06:31:59.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6gd.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.979600", - "Timestamp": "2019-10-15T12:04:41.000Z" + "SpotPrice": "0.171700", + "Timestamp": "2024-05-16T06:31:58.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.979600", - "Timestamp": "2019-10-15T12:04:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168000", + "Timestamp": "2024-05-16T06:31:58.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.849600", - "Timestamp": "2019-10-15T12:04:41.000Z" + "SpotPrice": "0.111700", + "Timestamp": "2024-05-16T06:31:58.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.849600", - "Timestamp": "2019-10-15T12:04:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115000", + "Timestamp": "2024-05-16T06:31:55.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087700", - "Timestamp": "2019-10-15T12:04:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155000", + "Timestamp": "2024-05-16T06:31:55.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055000", + "Timestamp": "2024-05-16T06:31:55.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.6xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087700", - "Timestamp": "2019-10-15T12:04:40.000Z" + "SpotPrice": "1.131800", + "Timestamp": "2024-05-16T06:31:55.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027700", - "Timestamp": "2019-10-15T12:04:40.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.126800", + "Timestamp": "2024-05-16T06:31:55.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.6xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027700", - "Timestamp": "2019-10-15T12:04:40.000Z" + "SpotPrice": "1.001800", + "Timestamp": "2024-05-16T06:31:55.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087500", - "Timestamp": "2019-10-15T11:04:56.000Z" + "SpotPrice": "0.226900", + "Timestamp": "2024-05-16T06:31:54.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087500", - "Timestamp": "2019-10-15T11:04:56.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.222900", + "Timestamp": "2024-05-16T06:31:54.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027500", - "Timestamp": "2019-10-15T11:04:56.000Z" + "SpotPrice": "0.166900", + "Timestamp": "2024-05-16T06:31:54.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027500", - "Timestamp": "2019-10-15T11:04:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128000", + "Timestamp": "2024-05-16T06:31:54.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.119500", - "Timestamp": "2019-10-15T11:04:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168000", + "Timestamp": "2024-05-16T06:31:54.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.119500", - "Timestamp": "2019-10-15T11:04:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068000", + "Timestamp": "2024-05-16T06:31:54.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3.micro", "ProductDescription": "Windows", - "SpotPrice": "0.483600", - "Timestamp": "2019-10-15T11:04:55.000Z" + "SpotPrice": "0.014100", + "Timestamp": "2024-05-16T06:20:26.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t1.micro", "ProductDescription": "Windows", - "SpotPrice": "0.483600", - "Timestamp": "2019-10-15T11:04:55.000Z" + "SpotPrice": "0.012100", + "Timestamp": "2024-05-16T06:19:54.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t2.micro", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.245600", - "Timestamp": "2019-10-15T11:04:55.000Z" + "SpotPrice": "0.065300", + "Timestamp": "2024-05-16T06:18:47.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.245600", - "Timestamp": "2019-10-15T11:04:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.005300", + "Timestamp": "2024-05-16T06:18:47.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t2.micro", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.115600", - "Timestamp": "2019-10-15T11:04:55.000Z" + "SpotPrice": "0.005300", + "Timestamp": "2024-05-16T06:18:47.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.223100", + "Timestamp": "2024-05-16T06:18:29.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.218100", + "Timestamp": "2024-05-16T06:18:29.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.115600", - "Timestamp": "2019-10-15T11:04:55.000Z" + "SpotPrice": "5.093100", + "Timestamp": "2024-05-16T06:18:29.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091800", - "Timestamp": "2019-10-15T11:04:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.615400", + "Timestamp": "2024-05-16T06:18:28.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.693500", + "Timestamp": "2024-05-16T06:18:25.000Z" + }, + { + "AvailabilityZone": "us-east-1e", + "InstanceType": "r3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.385400", + "Timestamp": "2024-05-16T06:18:24.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091800", - "Timestamp": "2019-10-15T11:04:40.000Z" + "SpotPrice": "1.372900", + "Timestamp": "2024-05-16T06:18:21.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031800", - "Timestamp": "2019-10-15T11:04:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.342900", + "Timestamp": "2024-05-16T06:18:21.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031800", - "Timestamp": "2019-10-15T11:04:40.000Z" + "SpotPrice": "1.242900", + "Timestamp": "2024-05-16T06:18:21.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "p2.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.123800", - "Timestamp": "2019-10-15T11:04:40.000Z" + "SpotPrice": "4.272600", + "Timestamp": "2024-05-16T06:18:20.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.123800", - "Timestamp": "2019-10-15T11:04:40.000Z" + "SpotPrice": "6.899100", + "Timestamp": "2024-05-16T06:18:19.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.120900", - "Timestamp": "2019-10-15T10:39:58.000Z" + "SpotPrice": "5.993000", + "Timestamp": "2024-05-16T06:18:18.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.120900", - "Timestamp": "2019-10-15T10:39:58.000Z" + "SpotPrice": "3.257900", + "Timestamp": "2024-05-16T06:18:16.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4ad.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.088900", - "Timestamp": "2019-10-15T10:39:07.000Z" + "SpotPrice": "0.400000", + "Timestamp": "2024-05-16T06:18:16.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.395000", + "Timestamp": "2024-05-16T06:18:16.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4ad.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.028900", - "Timestamp": "2019-10-15T10:39:07.000Z" + "SpotPrice": "0.270000", + "Timestamp": "2024-05-16T06:18:16.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.638800", - "Timestamp": "2019-10-15T10:36:00.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.967400", + "Timestamp": "2024-05-16T06:18:15.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.638800", - "Timestamp": "2019-10-15T10:36:00.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.551500", + "Timestamp": "2024-05-16T06:18:15.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.508800", - "Timestamp": "2019-10-15T10:36:00.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.112500", + "Timestamp": "2024-05-16T06:18:15.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.508800", - "Timestamp": "2019-10-15T10:36:00.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.542200", + "Timestamp": "2024-05-16T06:18:15.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5n.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d2.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.699700", - "Timestamp": "2019-10-15T10:35:44.000Z" + "SpotPrice": "1.383200", + "Timestamp": "2024-05-16T06:18:12.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5n.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.699700", - "Timestamp": "2019-10-15T10:35:44.000Z" + "SpotPrice": "0.554600", + "Timestamp": "2024-05-16T06:18:12.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4ad.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.980800", - "Timestamp": "2019-10-15T10:35:41.000Z" + "SpotPrice": "2.232000", + "Timestamp": "2024-05-16T06:18:12.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.980800", - "Timestamp": "2019-10-15T10:35:41.000Z" + "SpotPrice": "3.017700", + "Timestamp": "2024-05-16T06:18:08.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5n.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.517700", - "Timestamp": "2019-10-15T10:35:38.000Z" + "SpotPrice": "0.307700", + "Timestamp": "2024-05-16T06:18:08.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5n.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.517700", - "Timestamp": "2019-10-15T10:35:38.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302700", + "Timestamp": "2024-05-16T06:18:08.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5n.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.387700", - "Timestamp": "2019-10-15T10:35:38.000Z" + "SpotPrice": "0.177700", + "Timestamp": "2024-05-16T06:18:08.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5n.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.387700", - "Timestamp": "2019-10-15T10:35:38.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.053800", + "Timestamp": "2024-05-16T06:18:08.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.metal-24xl", "ProductDescription": "Windows", - "SpotPrice": "0.495200", - "Timestamp": "2019-10-15T10:04:26.000Z" + "SpotPrice": "6.282100", + "Timestamp": "2024-05-16T06:18:07.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.495200", - "Timestamp": "2019-10-15T10:04:26.000Z" + "SpotPrice": "0.556400", + "Timestamp": "2024-05-16T06:18:06.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.257200", - "Timestamp": "2019-10-15T10:04:26.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.164300", + "Timestamp": "2024-05-16T06:18:06.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.257200", - "Timestamp": "2019-10-15T10:04:26.000Z" + "SpotPrice": "2.241600", + "Timestamp": "2024-05-16T06:18:05.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.127200", - "Timestamp": "2019-10-15T10:04:26.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.236600", + "Timestamp": "2024-05-16T06:18:05.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.127200", - "Timestamp": "2019-10-15T10:04:26.000Z" + "SpotPrice": "2.111600", + "Timestamp": "2024-05-16T06:18:05.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.967300", - "Timestamp": "2019-10-15T09:05:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.346800", + "Timestamp": "2024-05-16T06:18:05.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.967300", - "Timestamp": "2019-10-15T09:05:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.386800", + "Timestamp": "2024-05-16T06:18:05.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.361300", - "Timestamp": "2019-10-15T09:05:24.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.286800", + "Timestamp": "2024-05-16T06:18:05.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.132500", + "Timestamp": "2024-05-16T06:18:04.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i-flex.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.361300", - "Timestamp": "2019-10-15T09:05:24.000Z" + "SpotPrice": "0.788600", + "Timestamp": "2024-05-16T06:18:04.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.231300", - "Timestamp": "2019-10-15T09:05:24.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.783600", + "Timestamp": "2024-05-16T06:18:04.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i-flex.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.231300", - "Timestamp": "2019-10-15T09:05:24.000Z" + "SpotPrice": "0.658600", + "Timestamp": "2024-05-16T06:18:04.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r4.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066300", - "Timestamp": "2019-10-15T09:04:40.000Z" + "SpotPrice": "1.916500", + "Timestamp": "2024-05-16T06:18:04.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3a.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066300", - "Timestamp": "2019-10-15T09:04:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.886500", + "Timestamp": "2024-05-16T06:18:04.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r4.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006300", - "Timestamp": "2019-10-15T09:04:40.000Z" + "SpotPrice": "1.786500", + "Timestamp": "2024-05-16T06:18:04.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3a.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006300", - "Timestamp": "2019-10-15T09:04:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.833700", + "Timestamp": "2024-05-16T06:18:03.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.024700", - "Timestamp": "2019-10-15T09:04:40.000Z" + "SpotPrice": "1.042000", + "Timestamp": "2024-05-16T06:18:02.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.large", "ProductDescription": "Windows", - "SpotPrice": "0.024700", - "Timestamp": "2019-10-15T09:04:40.000Z" + "SpotPrice": "0.144900", + "Timestamp": "2024-05-16T06:18:01.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.562000", + "Timestamp": "2024-05-16T06:18:01.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.557000", + "Timestamp": "2024-05-16T06:18:01.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.432000", + "Timestamp": "2024-05-16T06:18:01.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.483600", - "Timestamp": "2019-10-15T09:04:40.000Z" + "SpotPrice": "14.361600", + "Timestamp": "2024-05-16T06:18:01.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.483600", - "Timestamp": "2019-10-15T09:04:40.000Z" + "SpotPrice": "9.567700", + "Timestamp": "2024-05-16T06:18:01.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1e.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.245600", - "Timestamp": "2019-10-15T09:04:40.000Z" + "SpotPrice": "0.380100", + "Timestamp": "2024-05-16T06:18:00.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.245600", - "Timestamp": "2019-10-15T09:04:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.376100", + "Timestamp": "2024-05-16T06:18:00.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1e.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.115600", - "Timestamp": "2019-10-15T09:04:40.000Z" + "SpotPrice": "0.320100", + "Timestamp": "2024-05-16T06:18:00.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.433300", + "Timestamp": "2024-05-16T06:17:59.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.428300", + "Timestamp": "2024-05-16T06:17:59.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.115600", - "Timestamp": "2019-10-15T09:04:40.000Z" + "SpotPrice": "2.303300", + "Timestamp": "2024-05-16T06:17:59.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089300", - "Timestamp": "2019-10-15T08:56:52.000Z" + "SpotPrice": "4.758100", + "Timestamp": "2024-05-16T06:17:59.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.753100", + "Timestamp": "2024-05-16T06:17:59.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029300", - "Timestamp": "2019-10-15T08:56:52.000Z" + "SpotPrice": "4.628100", + "Timestamp": "2024-05-16T06:17:59.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.971200", - "Timestamp": "2019-10-15T08:42:08.000Z" + "SpotPrice": "3.539400", + "Timestamp": "2024-05-16T06:17:59.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.971200", - "Timestamp": "2019-10-15T08:42:08.000Z" + "SpotPrice": "0.730700", + "Timestamp": "2024-05-16T06:17:59.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.893200", - "Timestamp": "2019-10-15T08:40:41.000Z" + "SpotPrice": "2.733700", + "Timestamp": "2024-05-16T06:17:58.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.893200", - "Timestamp": "2019-10-15T08:40:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.728700", + "Timestamp": "2024-05-16T06:17:58.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.763200", - "Timestamp": "2019-10-15T08:40:41.000Z" + "SpotPrice": "2.603700", + "Timestamp": "2024-05-16T06:17:58.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.763200", - "Timestamp": "2019-10-15T08:40:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.262200", + "Timestamp": "2024-05-16T06:17:57.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.873100", - "Timestamp": "2019-10-15T08:37:19.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.731300", + "Timestamp": "2024-05-16T06:17:57.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.726300", + "Timestamp": "2024-05-16T06:17:57.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.601300", + "Timestamp": "2024-05-16T06:17:57.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.873100", - "Timestamp": "2019-10-15T08:37:19.000Z" + "SpotPrice": "2.088800", + "Timestamp": "2024-05-16T06:17:57.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.587100", - "Timestamp": "2019-10-15T08:36:58.000Z" + "SpotPrice": "0.198000", + "Timestamp": "2024-05-16T06:17:57.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.587100", - "Timestamp": "2019-10-15T08:36:58.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.238000", + "Timestamp": "2024-05-16T06:17:57.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r3.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.457100", - "Timestamp": "2019-10-15T08:36:58.000Z" + "SpotPrice": "0.138000", + "Timestamp": "2024-05-16T06:17:57.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.457100", - "Timestamp": "2019-10-15T08:36:58.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.315700", + "Timestamp": "2024-05-16T06:17:57.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.901900", - "Timestamp": "2019-10-15T08:35:43.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.310700", + "Timestamp": "2024-05-16T06:17:57.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.185700", + "Timestamp": "2024-05-16T06:17:57.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.901900", - "Timestamp": "2019-10-15T08:35:43.000Z" + "SpotPrice": "1.287400", + "Timestamp": "2024-05-16T06:17:56.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.122300", - "Timestamp": "2019-10-15T08:34:14.000Z" + "SpotPrice": "2.322700", + "Timestamp": "2024-05-16T06:17:56.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.metal-24xl", "ProductDescription": "Windows", - "SpotPrice": "0.122300", - "Timestamp": "2019-10-15T08:34:14.000Z" + "SpotPrice": "6.980500", + "Timestamp": "2024-05-16T06:17:55.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090300", - "Timestamp": "2019-10-15T08:33:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.620000", + "Timestamp": "2024-05-16T06:17:55.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090300", - "Timestamp": "2019-10-15T08:33:09.000Z" + "SpotPrice": "0.228300", + "Timestamp": "2024-05-16T06:17:55.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030300", - "Timestamp": "2019-10-15T08:33:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.224600", + "Timestamp": "2024-05-16T06:17:55.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030300", - "Timestamp": "2019-10-15T08:33:09.000Z" - }, - { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.587100", - "Timestamp": "2019-10-15T08:12:53.000Z" + "SpotPrice": "0.168300", + "Timestamp": "2024-05-16T06:17:55.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.metal-24xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.587100", - "Timestamp": "2019-10-15T08:12:53.000Z" + "SpotPrice": "2.518400", + "Timestamp": "2024-05-16T06:17:54.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.457100", - "Timestamp": "2019-10-15T08:12:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.513400", + "Timestamp": "2024-05-16T06:17:54.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.metal-24xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.457100", - "Timestamp": "2019-10-15T08:12:53.000Z" + "SpotPrice": "2.388400", + "Timestamp": "2024-05-16T06:17:54.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.251100", - "Timestamp": "2019-10-15T08:04:54.000Z" + "SpotPrice": "0.553900", + "Timestamp": "2024-05-16T06:17:54.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.251100", - "Timestamp": "2019-10-15T08:04:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.548900", + "Timestamp": "2024-05-16T06:17:54.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.121100", - "Timestamp": "2019-10-15T08:04:54.000Z" + "SpotPrice": "0.423900", + "Timestamp": "2024-05-16T06:17:54.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.121100", - "Timestamp": "2019-10-15T08:04:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.849800", + "Timestamp": "2024-05-16T06:17:54.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.489100", - "Timestamp": "2019-10-15T08:04:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.844800", + "Timestamp": "2024-05-16T06:17:54.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.489100", - "Timestamp": "2019-10-15T08:04:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.719800", + "Timestamp": "2024-05-16T06:17:54.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3a.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.085100", - "Timestamp": "2019-10-15T08:04:26.000Z" + "SpotPrice": "2.970500", + "Timestamp": "2024-05-16T06:17:53.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.085100", - "Timestamp": "2019-10-15T08:04:26.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.965500", + "Timestamp": "2024-05-16T06:17:53.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3a.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.025100", - "Timestamp": "2019-10-15T08:04:26.000Z" + "SpotPrice": "2.840500", + "Timestamp": "2024-05-16T06:17:53.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.025100", - "Timestamp": "2019-10-15T08:04:26.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.312900", + "Timestamp": "2024-05-16T06:17:53.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.052700", - "Timestamp": "2019-10-15T08:04:26.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.307900", + "Timestamp": "2024-05-16T06:17:53.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.052700", - "Timestamp": "2019-10-15T08:04:26.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.182900", + "Timestamp": "2024-05-16T06:17:53.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.257800", - "Timestamp": "2019-10-15T07:49:37.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.large", + "ProductDescription": "Windows", + "SpotPrice": "0.166400", + "Timestamp": "2024-05-16T06:17:53.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.127800", - "Timestamp": "2019-10-15T07:49:37.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.165700", + "Timestamp": "2024-05-16T06:17:52.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.418200", - "Timestamp": "2019-10-15T07:41:43.000Z" + "SpotPrice": "0.654000", + "Timestamp": "2024-05-16T06:17:52.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.418200", - "Timestamp": "2019-10-15T07:41:43.000Z" + "SpotPrice": "4.230000", + "Timestamp": "2024-05-16T06:17:51.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5n.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.708200", - "Timestamp": "2019-10-15T07:41:34.000Z" + "SpotPrice": "2.021400", + "Timestamp": "2024-05-16T06:17:50.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.708200", - "Timestamp": "2019-10-15T07:41:34.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.016400", + "Timestamp": "2024-05-16T06:17:50.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5n.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.578200", - "Timestamp": "2019-10-15T07:41:34.000Z" + "SpotPrice": "1.891400", + "Timestamp": "2024-05-16T06:17:50.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.578200", - "Timestamp": "2019-10-15T07:41:34.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.131800", + "Timestamp": "2024-05-16T06:17:50.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.medium", "ProductDescription": "Windows", - "SpotPrice": "0.058700", - "Timestamp": "2019-10-15T07:35:57.000Z" + "SpotPrice": "0.058500", + "Timestamp": "2024-05-16T06:17:50.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.058700", - "Timestamp": "2019-10-15T07:35:57.000Z" + "SpotPrice": "8.424600", + "Timestamp": "2024-05-16T06:17:49.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.120900", - "Timestamp": "2019-10-15T07:35:39.000Z" + "SpotPrice": "3.011300", + "Timestamp": "2024-05-16T06:17:49.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.6xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.120900", - "Timestamp": "2019-10-15T07:35:39.000Z" + "SpotPrice": "2.074500", + "Timestamp": "2024-05-16T06:17:49.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.088900", - "Timestamp": "2019-10-15T07:35:35.000Z" + "SpotPrice": "0.342600", + "Timestamp": "2024-05-16T06:17:49.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.088900", - "Timestamp": "2019-10-15T07:35:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.337600", + "Timestamp": "2024-05-16T06:17:49.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.028900", - "Timestamp": "2019-10-15T07:35:35.000Z" + "SpotPrice": "0.212600", + "Timestamp": "2024-05-16T06:17:49.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.003100", + "Timestamp": "2024-05-16T06:17:48.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.998100", + "Timestamp": "2024-05-16T06:17:48.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4ad.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.028900", - "Timestamp": "2019-10-15T07:35:35.000Z" + "SpotPrice": "0.873100", + "Timestamp": "2024-05-16T06:17:48.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090700", - "Timestamp": "2019-10-15T07:35:33.000Z" + "SpotPrice": "0.892000", + "Timestamp": "2024-05-16T06:17:47.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090700", - "Timestamp": "2019-10-15T07:35:33.000Z" + "SpotPrice": "0.876400", + "Timestamp": "2024-05-16T06:17:47.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.887000", + "Timestamp": "2024-05-16T06:17:47.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.871400", + "Timestamp": "2024-05-16T06:17:47.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030700", - "Timestamp": "2019-10-15T07:35:33.000Z" + "SpotPrice": "0.762000", + "Timestamp": "2024-05-16T06:17:47.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030700", - "Timestamp": "2019-10-15T07:35:33.000Z" + "SpotPrice": "0.746400", + "Timestamp": "2024-05-16T06:17:47.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.574400", - "Timestamp": "2019-10-15T07:33:55.000Z" + "SpotPrice": "3.462700", + "Timestamp": "2024-05-16T06:17:47.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.10xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.574400", - "Timestamp": "2019-10-15T07:33:55.000Z" + "SpotPrice": "2.642400", + "Timestamp": "2024-05-16T06:17:47.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.336400", - "Timestamp": "2019-10-15T07:33:10.000Z" + "SpotPrice": "1.378900", + "Timestamp": "2024-05-16T06:17:46.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.373900", + "Timestamp": "2024-05-16T06:17:46.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.206400", - "Timestamp": "2019-10-15T07:33:10.000Z" + "SpotPrice": "1.248900", + "Timestamp": "2024-05-16T06:17:46.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091800", - "Timestamp": "2019-10-15T07:04:55.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.542600", + "Timestamp": "2024-05-16T06:17:46.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091800", - "Timestamp": "2019-10-15T07:04:55.000Z" + "SpotPrice": "0.128700", + "Timestamp": "2024-05-16T06:17:46.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031800", - "Timestamp": "2019-10-15T07:04:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125000", + "Timestamp": "2024-05-16T06:17:46.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031800", - "Timestamp": "2019-10-15T07:04:55.000Z" + "SpotPrice": "0.068700", + "Timestamp": "2024-05-16T06:17:46.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.large", "ProductDescription": "Windows", - "SpotPrice": "0.123800", - "Timestamp": "2019-10-15T07:04:55.000Z" + "SpotPrice": "0.143400", + "Timestamp": "2024-05-16T06:17:45.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123800", - "Timestamp": "2019-10-15T07:04:55.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.177400", + "Timestamp": "2024-05-16T06:17:44.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.980800", - "Timestamp": "2019-10-15T07:04:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.172400", + "Timestamp": "2024-05-16T06:17:44.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.980800", - "Timestamp": "2019-10-15T07:04:41.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.047400", + "Timestamp": "2024-05-16T06:17:44.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.638800", - "Timestamp": "2019-10-15T07:04:40.000Z" + "SpotPrice": "0.432800", + "Timestamp": "2024-05-16T06:17:44.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.638800", - "Timestamp": "2019-10-15T07:04:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.427800", + "Timestamp": "2024-05-16T06:17:44.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.508800", - "Timestamp": "2019-10-15T07:04:40.000Z" + "SpotPrice": "0.302800", + "Timestamp": "2024-05-16T06:17:44.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.508800", - "Timestamp": "2019-10-15T07:04:40.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.812700", + "Timestamp": "2024-05-16T06:17:44.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.873100", - "Timestamp": "2019-10-15T06:36:30.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.782700", + "Timestamp": "2024-05-16T06:17:44.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.873100", - "Timestamp": "2019-10-15T06:36:30.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.682700", + "Timestamp": "2024-05-16T06:17:44.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.957700", - "Timestamp": "2019-10-15T06:36:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.466100", + "Timestamp": "2024-05-16T06:17:44.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.957700", - "Timestamp": "2019-10-15T06:36:15.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.461100", + "Timestamp": "2024-05-16T06:17:44.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.615700", - "Timestamp": "2019-10-15T06:36:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.336100", + "Timestamp": "2024-05-16T06:17:44.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.615700", - "Timestamp": "2019-10-15T06:36:09.000Z" + "SpotPrice": "0.106500", + "Timestamp": "2024-05-16T06:17:44.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.485700", - "Timestamp": "2019-10-15T06:36:09.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T06:17:44.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.485700", - "Timestamp": "2019-10-15T06:36:09.000Z" + "SpotPrice": "0.046500", + "Timestamp": "2024-05-16T06:17:44.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "i3.large", "ProductDescription": "Windows", - "SpotPrice": "0.978800", - "Timestamp": "2019-10-15T05:40:42.000Z" + "SpotPrice": "0.155700", + "Timestamp": "2024-05-16T06:17:44.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091700", + "Timestamp": "2024-05-16T06:17:43.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088000", + "Timestamp": "2024-05-16T06:17:43.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031700", + "Timestamp": "2024-05-16T06:17:43.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.978800", - "Timestamp": "2019-10-15T05:40:42.000Z" + "SpotPrice": "0.304700", + "Timestamp": "2024-05-16T06:17:43.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "r4.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.372800", - "Timestamp": "2019-10-15T05:40:42.000Z" + "SpotPrice": "1.085900", + "Timestamp": "2024-05-16T06:17:43.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.372800", - "Timestamp": "2019-10-15T05:40:42.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.055900", + "Timestamp": "2024-05-16T06:17:43.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "r4.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.242800", - "Timestamp": "2019-10-15T05:40:42.000Z" + "SpotPrice": "0.955900", + "Timestamp": "2024-05-16T06:17:43.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.242800", - "Timestamp": "2019-10-15T05:40:42.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.477500", + "Timestamp": "2024-05-16T06:17:42.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.942500", - "Timestamp": "2019-10-15T05:04:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.472500", + "Timestamp": "2024-05-16T06:17:42.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.942500", - "Timestamp": "2019-10-15T05:04:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.347500", + "Timestamp": "2024-05-16T06:17:42.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.656500", - "Timestamp": "2019-10-15T05:04:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.149800", + "Timestamp": "2024-05-16T06:17:42.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.656500", - "Timestamp": "2019-10-15T05:04:54.000Z" + "SpotPrice": "1.174900", + "Timestamp": "2024-05-16T06:17:42.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.526500", - "Timestamp": "2019-10-15T05:04:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.169900", + "Timestamp": "2024-05-16T06:17:42.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.526500", - "Timestamp": "2019-10-15T05:04:54.000Z" + "SpotPrice": "1.044900", + "Timestamp": "2024-05-16T06:17:42.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.251400", - "Timestamp": "2019-10-15T04:37:02.000Z" + "SpotPrice": "1.200300", + "Timestamp": "2024-05-16T06:17:42.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.251400", - "Timestamp": "2019-10-15T04:37:02.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.195300", + "Timestamp": "2024-05-16T06:17:42.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.121400", - "Timestamp": "2019-10-15T04:37:02.000Z" + "SpotPrice": "1.070300", + "Timestamp": "2024-05-16T06:17:42.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.121400", - "Timestamp": "2019-10-15T04:37:02.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.727500", + "Timestamp": "2024-05-16T06:17:42.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.239100", - "Timestamp": "2019-10-15T04:36:50.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.447000", + "Timestamp": "2024-05-16T06:17:41.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.239100", - "Timestamp": "2019-10-15T04:36:50.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.417000", + "Timestamp": "2024-05-16T06:17:41.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.115100", - "Timestamp": "2019-10-15T04:36:47.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.317000", + "Timestamp": "2024-05-16T06:17:41.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m3.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.115100", - "Timestamp": "2019-10-15T04:36:47.000Z" + "SpotPrice": "0.088000", + "Timestamp": "2024-05-16T06:17:41.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.055100", - "Timestamp": "2019-10-15T04:36:47.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128000", + "Timestamp": "2024-05-16T06:17:41.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m3.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.055100", - "Timestamp": "2019-10-15T04:36:47.000Z" + "SpotPrice": "0.028000", + "Timestamp": "2024-05-16T06:17:41.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.489400", - "Timestamp": "2019-10-15T04:35:43.000Z" + "SpotPrice": "3.349300", + "Timestamp": "2024-05-16T06:17:40.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.489400", - "Timestamp": "2019-10-15T04:35:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.800500", + "Timestamp": "2024-05-16T06:17:40.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.656500", - "Timestamp": "2019-10-15T04:04:26.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.795500", + "Timestamp": "2024-05-16T06:17:40.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.670500", + "Timestamp": "2024-05-16T06:17:40.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.656500", - "Timestamp": "2019-10-15T04:04:26.000Z" + "SpotPrice": "0.134100", + "Timestamp": "2024-05-16T06:17:39.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.526500", - "Timestamp": "2019-10-15T04:04:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130400", + "Timestamp": "2024-05-16T06:17:39.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.526500", - "Timestamp": "2019-10-15T04:04:26.000Z" + "SpotPrice": "0.074100", + "Timestamp": "2024-05-16T06:17:39.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.942500", - "Timestamp": "2019-10-15T04:04:26.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.400900", + "Timestamp": "2024-05-16T06:17:39.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.942500", - "Timestamp": "2019-10-15T04:04:26.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.395900", + "Timestamp": "2024-05-16T06:17:39.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.384400", - "Timestamp": "2019-10-15T03:37:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.270900", + "Timestamp": "2024-05-16T06:17:39.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.384400", - "Timestamp": "2019-10-15T03:37:54.000Z" + "SpotPrice": "5.032800", + "Timestamp": "2024-05-16T06:17:39.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.254400", - "Timestamp": "2019-10-15T03:37:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.027800", + "Timestamp": "2024-05-16T06:17:39.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.254400", - "Timestamp": "2019-10-15T03:37:54.000Z" + "SpotPrice": "4.902800", + "Timestamp": "2024-05-16T06:17:39.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.990400", - "Timestamp": "2019-10-15T03:37:27.000Z" + "SpotPrice": "5.568800", + "Timestamp": "2024-05-16T06:17:39.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.990400", - "Timestamp": "2019-10-15T03:37:27.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.803000", + "Timestamp": "2024-05-16T06:17:38.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.978800", - "Timestamp": "2019-10-15T03:05:24.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.798000", + "Timestamp": "2024-05-16T06:17:38.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.978800", - "Timestamp": "2019-10-15T03:05:24.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.673000", + "Timestamp": "2024-05-16T06:17:38.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.372800", - "Timestamp": "2019-10-15T03:05:24.000Z" + "SpotPrice": "0.434900", + "Timestamp": "2024-05-16T06:17:37.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.372800", - "Timestamp": "2019-10-15T03:05:24.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.429900", + "Timestamp": "2024-05-16T06:17:37.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.242800", - "Timestamp": "2019-10-15T03:05:24.000Z" + "SpotPrice": "0.304900", + "Timestamp": "2024-05-16T06:17:37.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.242800", - "Timestamp": "2019-10-15T03:05:24.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.060300", + "Timestamp": "2024-05-16T06:17:37.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.176400", - "Timestamp": "2019-10-15T03:04:54.000Z" + "SpotPrice": "1.929300", + "Timestamp": "2024-05-16T06:17:37.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.176400", - "Timestamp": "2019-10-15T03:04:54.000Z" + "SpotPrice": "2.355700", + "Timestamp": "2024-05-16T06:17:37.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.650400", - "Timestamp": "2019-10-15T03:04:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.141000", + "Timestamp": "2024-05-16T06:17:37.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gd.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.650400", - "Timestamp": "2019-10-15T03:04:54.000Z" + "SpotPrice": "0.132900", + "Timestamp": "2024-05-16T06:17:36.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.520400", - "Timestamp": "2019-10-15T03:04:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129200", + "Timestamp": "2024-05-16T06:17:36.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.520400", - "Timestamp": "2019-10-15T03:04:54.000Z" + "SpotPrice": "0.072900", + "Timestamp": "2024-05-16T06:17:36.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.6xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.858500", - "Timestamp": "2019-10-15T03:04:40.000Z" + "SpotPrice": "1.568300", + "Timestamp": "2024-05-16T06:17:36.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.858500", - "Timestamp": "2019-10-15T03:04:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.563300", + "Timestamp": "2024-05-16T06:17:36.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.6xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.728500", - "Timestamp": "2019-10-15T03:04:40.000Z" + "SpotPrice": "1.438300", + "Timestamp": "2024-05-16T06:17:36.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.471700", + "Timestamp": "2024-05-16T06:17:36.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.466700", + "Timestamp": "2024-05-16T06:17:36.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.728500", - "Timestamp": "2019-10-15T03:04:40.000Z" + "SpotPrice": "0.341700", + "Timestamp": "2024-05-16T06:17:36.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.936500", - "Timestamp": "2019-10-15T03:04:40.000Z" + "SpotPrice": "0.517200", + "Timestamp": "2024-05-16T06:17:36.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.936500", - "Timestamp": "2019-10-15T03:04:40.000Z" + "SpotPrice": "2.287300", + "Timestamp": "2024-05-16T06:17:36.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.230200", - "Timestamp": "2019-10-15T02:36:27.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.250000", + "Timestamp": "2024-05-16T06:17:36.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.877000", + "Timestamp": "2024-05-16T06:17:35.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.230200", - "Timestamp": "2019-10-15T02:36:27.000Z" + "SpotPrice": "0.837800", + "Timestamp": "2024-05-16T06:17:35.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.100200", - "Timestamp": "2019-10-15T02:36:27.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.832800", + "Timestamp": "2024-05-16T06:17:35.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.100200", - "Timestamp": "2019-10-15T02:36:27.000Z" + "SpotPrice": "0.707800", + "Timestamp": "2024-05-16T06:17:35.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.252900", - "Timestamp": "2019-10-15T02:36:27.000Z" + "SpotPrice": "0.592200", + "Timestamp": "2024-05-16T06:17:35.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.252900", - "Timestamp": "2019-10-15T02:36:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.587200", + "Timestamp": "2024-05-16T06:17:35.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.122900", - "Timestamp": "2019-10-15T02:36:27.000Z" + "SpotPrice": "0.462200", + "Timestamp": "2024-05-16T06:17:35.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.122900", - "Timestamp": "2019-10-15T02:36:27.000Z" - }, - { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5n.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.088900", - "Timestamp": "2019-10-15T02:36:16.000Z" + "SpotPrice": "0.148800", + "Timestamp": "2024-05-16T06:17:35.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5n.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.088900", - "Timestamp": "2019-10-15T02:36:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145100", + "Timestamp": "2024-05-16T06:17:35.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5n.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.028900", - "Timestamp": "2019-10-15T02:36:16.000Z" + "SpotPrice": "0.088800", + "Timestamp": "2024-05-16T06:17:35.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5n.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.028900", - "Timestamp": "2019-10-15T02:36:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.773200", + "Timestamp": "2024-05-16T06:17:34.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247400", - "Timestamp": "2019-10-15T02:36:11.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128600", + "Timestamp": "2024-05-16T06:17:34.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247400", - "Timestamp": "2019-10-15T02:36:11.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124900", + "Timestamp": "2024-05-16T06:17:34.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.184900", - "Timestamp": "2019-10-15T02:36:10.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068600", + "Timestamp": "2024-05-16T06:17:34.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.184900", - "Timestamp": "2019-10-15T02:36:10.000Z" + "SpotPrice": "1.111200", + "Timestamp": "2024-05-16T06:17:32.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.120900", - "Timestamp": "2019-10-15T02:35:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.459300", + "Timestamp": "2024-05-16T06:17:31.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.120900", - "Timestamp": "2019-10-15T02:35:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.429300", + "Timestamp": "2024-05-16T06:17:31.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5ad.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091800", - "Timestamp": "2019-10-15T02:04:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.329300", + "Timestamp": "2024-05-16T06:17:31.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091800", - "Timestamp": "2019-10-15T02:04:40.000Z" + "SpotPrice": "0.172100", + "Timestamp": "2024-05-16T06:17:31.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5ad.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031800", - "Timestamp": "2019-10-15T02:04:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168400", + "Timestamp": "2024-05-16T06:17:31.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031800", - "Timestamp": "2019-10-15T02:04:40.000Z" - }, - { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123800", - "Timestamp": "2019-10-15T02:04:40.000Z" + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T06:17:31.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.123800", - "Timestamp": "2019-10-15T02:04:40.000Z" + "SpotPrice": "10.936000", + "Timestamp": "2024-05-16T06:17:30.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.495200", - "Timestamp": "2019-10-15T02:04:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.560600", + "Timestamp": "2024-05-16T06:17:30.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.495200", - "Timestamp": "2019-10-15T02:04:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.555600", + "Timestamp": "2024-05-16T06:17:30.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.257200", - "Timestamp": "2019-10-15T02:04:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.430600", + "Timestamp": "2024-05-16T06:17:30.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.257200", - "Timestamp": "2019-10-15T02:04:40.000Z" + "SpotPrice": "0.936700", + "Timestamp": "2024-05-16T06:17:30.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.127200", - "Timestamp": "2019-10-15T02:04:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.931700", + "Timestamp": "2024-05-16T06:17:30.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.127200", - "Timestamp": "2019-10-15T02:04:40.000Z" + "SpotPrice": "0.806700", + "Timestamp": "2024-05-16T06:17:30.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.large", "ProductDescription": "Windows", - "SpotPrice": "0.495200", - "Timestamp": "2019-10-15T01:41:34.000Z" + "SpotPrice": "0.139400", + "Timestamp": "2024-05-16T06:17:30.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.495200", - "Timestamp": "2019-10-15T01:41:34.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.646900", + "Timestamp": "2024-05-16T06:17:30.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.257200", - "Timestamp": "2019-10-15T01:40:34.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.641900", + "Timestamp": "2024-05-16T06:17:30.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.127200", - "Timestamp": "2019-10-15T01:40:34.000Z" + "SpotPrice": "3.516900", + "Timestamp": "2024-05-16T06:17:30.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.978300", - "Timestamp": "2019-10-15T00:36:26.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.364500", + "Timestamp": "2024-05-16T06:17:30.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.978300", - "Timestamp": "2019-10-15T00:36:26.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.359500", + "Timestamp": "2024-05-16T06:17:30.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.372300", - "Timestamp": "2019-10-15T00:35:44.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.234500", + "Timestamp": "2024-05-16T06:17:30.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "f1.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.372300", - "Timestamp": "2019-10-15T00:35:44.000Z" + "SpotPrice": "7.802200", + "Timestamp": "2024-05-16T06:17:28.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.242300", - "Timestamp": "2019-10-15T00:35:44.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "f1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.772200", + "Timestamp": "2024-05-16T06:17:28.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "f1.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.242300", - "Timestamp": "2019-10-15T00:35:44.000Z" + "SpotPrice": "7.672200", + "Timestamp": "2024-05-16T06:17:28.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.096500", - "Timestamp": "2019-10-15T00:04:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.217000", + "Timestamp": "2024-05-16T06:17:28.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.096500", - "Timestamp": "2019-10-15T00:04:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.213300", + "Timestamp": "2024-05-16T06:17:28.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.570500", - "Timestamp": "2019-10-15T00:04:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157000", + "Timestamp": "2024-05-16T06:17:28.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.090700", + "Timestamp": "2024-05-16T06:17:28.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.570500", - "Timestamp": "2019-10-15T00:04:55.000Z" + "SpotPrice": "0.450800", + "Timestamp": "2024-05-16T06:17:28.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.440500", - "Timestamp": "2019-10-15T00:04:55.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.445800", + "Timestamp": "2024-05-16T06:17:28.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.440500", - "Timestamp": "2019-10-15T00:04:55.000Z" + "SpotPrice": "0.320800", + "Timestamp": "2024-05-16T06:17:28.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.961600", - "Timestamp": "2019-10-15T00:04:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.072800", + "Timestamp": "2024-05-16T06:17:28.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.961600", - "Timestamp": "2019-10-15T00:04:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.067800", + "Timestamp": "2024-05-16T06:17:28.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.147600", - "Timestamp": "2019-10-15T00:04:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.942800", + "Timestamp": "2024-05-16T06:17:28.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.147600", - "Timestamp": "2019-10-15T00:04:54.000Z" + "SpotPrice": "0.517900", + "Timestamp": "2024-05-16T06:17:27.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.017600", - "Timestamp": "2019-10-15T00:04:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.512900", + "Timestamp": "2024-05-16T06:17:27.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.017600", - "Timestamp": "2019-10-15T00:04:54.000Z" - }, - { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123600", - "Timestamp": "2019-10-15T00:04:40.000Z" + "SpotPrice": "0.387900", + "Timestamp": "2024-05-16T06:17:27.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123600", - "Timestamp": "2019-10-15T00:04:40.000Z" + "SpotPrice": "0.575100", + "Timestamp": "2024-05-16T06:17:26.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-15T00:04:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.545100", + "Timestamp": "2024-05-16T06:17:26.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-15T00:04:40.000Z" + "SpotPrice": "0.445100", + "Timestamp": "2024-05-16T06:17:26.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247600", - "Timestamp": "2019-10-15T00:04:40.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.460300", + "Timestamp": "2024-05-16T06:17:25.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247600", - "Timestamp": "2019-10-15T00:04:40.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.474700", + "Timestamp": "2024-05-16T06:17:25.000Z" }, { - "AvailabilityZone": "ca-central-1b", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247600", - "Timestamp": "2019-10-14T23:04:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.455300", + "Timestamp": "2024-05-16T06:17:25.000Z" }, { - "AvailabilityZone": "ca-central-1a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247600", - "Timestamp": "2019-10-14T23:04:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.469700", + "Timestamp": "2024-05-16T06:17:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.113100", - "Timestamp": "2019-10-16T02:57:17.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.330300", + "Timestamp": "2024-05-16T06:17:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.113100", - "Timestamp": "2019-10-16T02:57:17.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.344700", + "Timestamp": "2024-05-16T06:17:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125200", - "Timestamp": "2019-10-16T02:57:01.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.205000", + "Timestamp": "2024-05-16T06:17:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125200", - "Timestamp": "2019-10-16T02:57:01.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.175000", + "Timestamp": "2024-05-16T06:17:25.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125200", - "Timestamp": "2019-10-16T02:57:01.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.075000", + "Timestamp": "2024-05-16T06:17:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.455000", - "Timestamp": "2019-10-16T02:56:27.000Z" + "SpotPrice": "0.880200", + "Timestamp": "2024-05-16T06:17:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.425000", - "Timestamp": "2019-10-16T02:56:27.000Z" + "SpotPrice": "0.875200", + "Timestamp": "2024-05-16T06:17:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.325000", - "Timestamp": "2019-10-16T02:56:27.000Z" + "SpotPrice": "0.750200", + "Timestamp": "2024-05-16T06:17:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093200", - "Timestamp": "2019-10-16T02:56:25.000Z" + "SpotPrice": "0.328000", + "Timestamp": "2024-05-16T06:17:23.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093200", - "Timestamp": "2019-10-16T02:56:25.000Z" + "SpotPrice": "0.337700", + "Timestamp": "2024-05-16T06:17:23.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133200", - "Timestamp": "2019-10-16T02:56:25.000Z" + "SpotPrice": "0.298000", + "Timestamp": "2024-05-16T06:17:23.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133200", - "Timestamp": "2019-10-16T02:56:25.000Z" + "SpotPrice": "0.307700", + "Timestamp": "2024-05-16T06:17:23.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033200", - "Timestamp": "2019-10-16T02:56:25.000Z" + "SpotPrice": "0.198000", + "Timestamp": "2024-05-16T06:17:23.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033200", - "Timestamp": "2019-10-16T02:56:25.000Z" + "SpotPrice": "0.207700", + "Timestamp": "2024-05-16T06:17:23.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.312700", - "Timestamp": "2019-10-16T02:56:14.000Z" + "SpotPrice": "1.441700", + "Timestamp": "2024-05-16T06:17:22.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.282700", - "Timestamp": "2019-10-16T02:56:14.000Z" + "SpotPrice": "1.436700", + "Timestamp": "2024-05-16T06:17:22.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.182700", - "Timestamp": "2019-10-16T02:56:14.000Z" + "SpotPrice": "1.311700", + "Timestamp": "2024-05-16T06:17:22.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "p2.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.098300", - "Timestamp": "2019-10-16T02:55:57.000Z" + "SpotPrice": "5.998500", + "Timestamp": "2024-05-16T06:17:22.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "p2.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.138300", - "Timestamp": "2019-10-16T02:55:57.000Z" + "SpotPrice": "5.968500", + "Timestamp": "2024-05-16T06:17:22.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "p2.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.038300", - "Timestamp": "2019-10-16T02:55:57.000Z" + "SpotPrice": "5.868500", + "Timestamp": "2024-05-16T06:17:22.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090100", - "Timestamp": "2019-10-16T02:55:01.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.391600", + "Timestamp": "2024-05-16T06:17:20.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090100", - "Timestamp": "2019-10-16T02:55:01.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.028400", + "Timestamp": "2024-05-16T06:17:20.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.130100", - "Timestamp": "2019-10-16T02:55:01.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.467100", + "Timestamp": "2024-05-16T06:17:19.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c3.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.130100", - "Timestamp": "2019-10-16T02:55:01.000Z" + "SpotPrice": "1.462100", + "Timestamp": "2024-05-16T06:17:19.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c3.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030100", - "Timestamp": "2019-10-16T02:55:01.000Z" + "SpotPrice": "1.337100", + "Timestamp": "2024-05-16T06:17:19.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030100", - "Timestamp": "2019-10-16T02:55:01.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.972300", + "Timestamp": "2024-05-16T06:17:19.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.005300", - "Timestamp": "2019-10-16T02:53:22.000Z" + "SpotPrice": "0.266100", + "Timestamp": "2024-05-16T06:17:19.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.975300", - "Timestamp": "2019-10-16T02:53:22.000Z" + "SpotPrice": "0.263100", + "Timestamp": "2024-05-16T06:17:19.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.875300", - "Timestamp": "2019-10-16T02:53:22.000Z" + "SpotPrice": "0.206100", + "Timestamp": "2024-05-16T06:17:19.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.083300", - "Timestamp": "2019-10-16T02:52:59.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.486700", + "Timestamp": "2024-05-16T06:17:19.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.083300", - "Timestamp": "2019-10-16T02:52:59.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.481700", + "Timestamp": "2024-05-16T06:17:19.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.083300", - "Timestamp": "2019-10-16T02:52:59.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.356700", + "Timestamp": "2024-05-16T06:17:19.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.083300", - "Timestamp": "2019-10-16T02:52:38.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.214700", + "Timestamp": "2024-05-16T06:17:17.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.480000", - "Timestamp": "2019-10-16T02:52:38.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.210700", + "Timestamp": "2024-05-16T06:17:17.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.275900", - "Timestamp": "2019-10-16T02:52:31.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.154700", + "Timestamp": "2024-05-16T06:17:17.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.275900", - "Timestamp": "2019-10-16T02:52:31.000Z" + "SpotPrice": "1.570800", + "Timestamp": "2024-05-16T06:17:16.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.245900", - "Timestamp": "2019-10-16T02:52:31.000Z" + "SpotPrice": "1.565800", + "Timestamp": "2024-05-16T06:17:16.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.245900", - "Timestamp": "2019-10-16T02:52:31.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.440800", + "Timestamp": "2024-05-16T06:17:16.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.145900", - "Timestamp": "2019-10-16T02:52:31.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.565900", + "Timestamp": "2024-05-16T06:17:16.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.145900", - "Timestamp": "2019-10-16T02:52:31.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.435200", + "Timestamp": "2024-05-16T06:17:16.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126700", - "Timestamp": "2019-10-16T02:51:58.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.430200", + "Timestamp": "2024-05-16T06:17:16.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126700", - "Timestamp": "2019-10-16T02:51:58.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.305200", + "Timestamp": "2024-05-16T06:17:16.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.126700", - "Timestamp": "2019-10-16T02:51:58.000Z" + "SpotPrice": "1.221500", + "Timestamp": "2024-05-16T06:17:15.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.005300", - "Timestamp": "2019-10-16T02:51:49.000Z" + "SpotPrice": "0.124800", + "Timestamp": "2024-05-16T06:17:15.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.402000", - "Timestamp": "2019-10-16T02:51:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120800", + "Timestamp": "2024-05-16T06:17:15.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.975300", - "Timestamp": "2019-10-16T02:51:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064800", + "Timestamp": "2024-05-16T06:17:15.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "4.372000", - "Timestamp": "2019-10-16T02:51:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106200", + "Timestamp": "2024-05-16T06:17:15.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.875300", - "Timestamp": "2019-10-16T02:51:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T06:17:15.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.272000", - "Timestamp": "2019-10-16T02:51:49.000Z" + "SpotPrice": "0.046200", + "Timestamp": "2024-05-16T06:17:15.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061600", - "Timestamp": "2019-10-16T02:51:49.000Z" + "SpotPrice": "0.826100", + "Timestamp": "2024-05-16T06:17:15.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3a.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061600", - "Timestamp": "2019-10-16T02:51:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.821100", + "Timestamp": "2024-05-16T06:17:15.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3a.nano", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.101600", - "Timestamp": "2019-10-16T02:51:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.696100", + "Timestamp": "2024-05-16T06:17:15.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3a.nano", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.101600", - "Timestamp": "2019-10-16T02:51:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307500", + "Timestamp": "2024-05-16T06:17:14.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3a.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001600", - "Timestamp": "2019-10-16T02:51:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302500", + "Timestamp": "2024-05-16T06:17:14.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001600", - "Timestamp": "2019-10-16T02:51:49.000Z" + "SpotPrice": "0.177500", + "Timestamp": "2024-05-16T06:17:14.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006200", - "Timestamp": "2019-10-16T02:51:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.849600", + "Timestamp": "2024-05-16T06:17:14.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006200", - "Timestamp": "2019-10-16T02:51:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.844600", + "Timestamp": "2024-05-16T06:17:14.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.513900", - "Timestamp": "2019-10-16T02:51:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.719600", + "Timestamp": "2024-05-16T06:17:14.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.513900", - "Timestamp": "2019-10-16T02:51:43.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127000", + "Timestamp": "2024-05-16T06:17:13.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094700", - "Timestamp": "2019-10-16T02:51:38.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123300", + "Timestamp": "2024-05-16T06:17:13.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094700", - "Timestamp": "2019-10-16T02:51:38.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067000", + "Timestamp": "2024-05-16T06:17:13.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094700", - "Timestamp": "2019-10-16T02:51:38.000Z" + "SpotPrice": "0.108000", + "Timestamp": "2024-05-16T06:17:13.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134700", - "Timestamp": "2019-10-16T02:51:38.000Z" + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T06:17:13.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134700", - "Timestamp": "2019-10-16T02:51:38.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048000", + "Timestamp": "2024-05-16T06:17:13.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.557800", + "Timestamp": "2024-05-16T06:17:12.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134700", - "Timestamp": "2019-10-16T02:51:38.000Z" + "SpotPrice": "1.552800", + "Timestamp": "2024-05-16T06:17:12.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034700", - "Timestamp": "2019-10-16T02:51:38.000Z" + "SpotPrice": "1.427800", + "Timestamp": "2024-05-16T06:17:12.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034700", - "Timestamp": "2019-10-16T02:51:38.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142600", + "Timestamp": "2024-05-16T06:17:12.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138900", + "Timestamp": "2024-05-16T06:17:12.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034700", - "Timestamp": "2019-10-16T02:51:38.000Z" + "SpotPrice": "0.082600", + "Timestamp": "2024-05-16T06:17:12.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096500", - "Timestamp": "2019-10-16T02:51:35.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.479600", + "Timestamp": "2024-05-16T06:17:11.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.631100", + "Timestamp": "2024-05-16T06:17:11.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097100", - "Timestamp": "2019-10-16T02:51:35.000Z" + "SpotPrice": "0.309500", + "Timestamp": "2024-05-16T06:17:11.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136500", - "Timestamp": "2019-10-16T02:51:35.000Z" + "SpotPrice": "0.304500", + "Timestamp": "2024-05-16T06:17:11.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.179500", + "Timestamp": "2024-05-16T06:17:11.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.831600", + "Timestamp": "2024-05-16T06:17:11.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c4.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137100", - "Timestamp": "2019-10-16T02:51:35.000Z" + "SpotPrice": "0.801600", + "Timestamp": "2024-05-16T06:17:11.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c4.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036500", - "Timestamp": "2019-10-16T02:51:35.000Z" + "SpotPrice": "0.701600", + "Timestamp": "2024-05-16T06:17:11.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.647500", + "Timestamp": "2024-05-16T06:17:07.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.881300", + "Timestamp": "2024-05-16T06:17:00.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.851300", + "Timestamp": "2024-05-16T06:17:00.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037100", - "Timestamp": "2019-10-16T02:51:35.000Z" + "SpotPrice": "0.751300", + "Timestamp": "2024-05-16T06:17:00.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.micro", "ProductDescription": "Windows", - "SpotPrice": "0.128500", - "Timestamp": "2019-10-16T02:51:35.000Z" + "SpotPrice": "0.012900", + "Timestamp": "2024-05-16T06:03:55.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.6xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.130200", - "Timestamp": "2019-10-16T02:51:35.000Z" + "SpotPrice": "1.952200", + "Timestamp": "2024-05-16T06:03:27.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.6xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.289500", - "Timestamp": "2019-10-16T02:47:44.000Z" + "SpotPrice": "1.876100", + "Timestamp": "2024-05-16T06:03:27.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m1.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.293800", - "Timestamp": "2019-10-16T02:47:43.000Z" + "SpotPrice": "0.210200", + "Timestamp": "2024-05-16T06:03:26.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m1.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.263800", - "Timestamp": "2019-10-16T02:47:43.000Z" + "SpotPrice": "0.250200", + "Timestamp": "2024-05-16T06:03:26.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m1.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.163800", - "Timestamp": "2019-10-16T02:47:43.000Z" + "SpotPrice": "0.150200", + "Timestamp": "2024-05-16T06:03:26.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.289100", - "Timestamp": "2019-10-16T02:47:35.000Z" + "SpotPrice": "0.468900", + "Timestamp": "2024-05-16T06:03:26.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2gd.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.259100", - "Timestamp": "2019-10-16T02:47:35.000Z" + "SpotPrice": "0.463900", + "Timestamp": "2024-05-16T06:03:26.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.159100", - "Timestamp": "2019-10-16T02:47:35.000Z" + "SpotPrice": "0.338900", + "Timestamp": "2024-05-16T06:03:26.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.377200", + "Timestamp": "2024-05-16T06:03:25.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.313400", + "Timestamp": "2024-05-16T06:03:23.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.163000", - "Timestamp": "2019-10-16T02:39:28.000Z" + "SpotPrice": "0.219700", + "Timestamp": "2024-05-16T06:03:23.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.203000", - "Timestamp": "2019-10-16T02:39:28.000Z" + "SpotPrice": "0.214700", + "Timestamp": "2024-05-16T06:03:23.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.103000", - "Timestamp": "2019-10-16T02:39:28.000Z" + "SpotPrice": "0.089700", + "Timestamp": "2024-05-16T06:03:23.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.099000", - "Timestamp": "2019-10-16T02:39:11.000Z" + "SpotPrice": "1.891800", + "Timestamp": "2024-05-16T06:03:22.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.139000", - "Timestamp": "2019-10-16T02:39:11.000Z" + "SpotPrice": "1.886800", + "Timestamp": "2024-05-16T06:03:22.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.039000", - "Timestamp": "2019-10-16T02:39:11.000Z" + "SpotPrice": "1.761800", + "Timestamp": "2024-05-16T06:03:22.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.173000", - "Timestamp": "2019-10-16T02:22:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.627700", + "Timestamp": "2024-05-16T06:03:22.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.213000", - "Timestamp": "2019-10-16T02:22:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.501300", + "Timestamp": "2024-05-16T06:03:21.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.113000", - "Timestamp": "2019-10-16T02:22:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.988300", + "Timestamp": "2024-05-16T06:03:20.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.metal", "ProductDescription": "Windows", - "SpotPrice": "0.288500", - "Timestamp": "2019-10-16T02:22:44.000Z" + "SpotPrice": "3.798800", + "Timestamp": "2024-05-16T06:03:19.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.158400", - "Timestamp": "2019-10-16T02:22:29.000Z" + "SpotPrice": "2.699900", + "Timestamp": "2024-05-16T06:03:19.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.198400", - "Timestamp": "2019-10-16T02:22:29.000Z" + "SpotPrice": "2.694900", + "Timestamp": "2024-05-16T06:03:19.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2gd.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.098400", - "Timestamp": "2019-10-16T02:22:29.000Z" + "SpotPrice": "2.569900", + "Timestamp": "2024-05-16T06:03:19.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.069100", - "Timestamp": "2019-10-16T02:15:05.000Z" + "SpotPrice": "1.014400", + "Timestamp": "2024-05-16T06:03:15.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.300700", - "Timestamp": "2019-10-16T02:14:30.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.264900", + "Timestamp": "2024-05-16T06:03:15.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.270700", - "Timestamp": "2019-10-16T02:14:30.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.546800", + "Timestamp": "2024-05-16T06:03:14.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.170700", - "Timestamp": "2019-10-16T02:14:30.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.152900", + "Timestamp": "2024-05-16T06:03:12.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.metal", "ProductDescription": "Windows", - "SpotPrice": "1.470600", - "Timestamp": "2019-10-16T02:14:29.000Z" + "SpotPrice": "10.133500", + "Timestamp": "2024-05-16T06:03:12.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.287100", - "Timestamp": "2019-10-16T02:14:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.566900", + "Timestamp": "2024-05-16T06:03:12.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.257100", - "Timestamp": "2019-10-16T02:14:19.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.374000", + "Timestamp": "2024-05-16T06:03:11.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.157100", - "Timestamp": "2019-10-16T02:14:19.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.570400", + "Timestamp": "2024-05-16T06:03:11.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.733500", - "Timestamp": "2019-10-16T02:14:15.000Z" + "SpotPrice": "3.072800", + "Timestamp": "2024-05-16T06:03:10.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.703500", - "Timestamp": "2019-10-16T02:14:15.000Z" + "SpotPrice": "3.067800", + "Timestamp": "2024-05-16T06:03:10.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.603500", - "Timestamp": "2019-10-16T02:14:15.000Z" + "SpotPrice": "2.942800", + "Timestamp": "2024-05-16T06:03:10.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.430800", + "Timestamp": "2024-05-16T06:03:10.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.128000", - "Timestamp": "2019-10-16T02:14:05.000Z" + "SpotPrice": "1.157800", + "Timestamp": "2024-05-16T06:03:10.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.168000", - "Timestamp": "2019-10-16T02:14:05.000Z" + "SpotPrice": "1.152800", + "Timestamp": "2024-05-16T06:03:10.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.068000", - "Timestamp": "2019-10-16T02:14:05.000Z" + "SpotPrice": "1.027800", + "Timestamp": "2024-05-16T06:03:10.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5dn.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129600", - "Timestamp": "2019-10-16T02:11:57.000Z" + "SpotPrice": "0.516400", + "Timestamp": "2024-05-16T06:03:09.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5dn.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.169600", - "Timestamp": "2019-10-16T02:11:57.000Z" + "SpotPrice": "0.511400", + "Timestamp": "2024-05-16T06:03:09.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5dn.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069600", - "Timestamp": "2019-10-16T02:11:57.000Z" + "SpotPrice": "0.386400", + "Timestamp": "2024-05-16T06:03:09.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.906600", - "Timestamp": "2019-10-16T02:06:17.000Z" + "SpotPrice": "2.007100", + "Timestamp": "2024-05-16T06:03:08.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.876600", - "Timestamp": "2019-10-16T02:06:17.000Z" + "SpotPrice": "2.002100", + "Timestamp": "2024-05-16T06:03:08.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.776600", - "Timestamp": "2019-10-16T02:06:17.000Z" + "SpotPrice": "1.877100", + "Timestamp": "2024-05-16T06:03:08.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.281900", - "Timestamp": "2019-10-16T02:06:07.000Z" - }, + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.163600", + "Timestamp": "2024-05-16T06:03:08.000Z" + }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.006200", + "Timestamp": "2024-05-16T06:03:07.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.140100", + "Timestamp": "2024-05-16T06:03:07.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.243900", + "Timestamp": "2024-05-16T06:03:05.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.251900", - "Timestamp": "2019-10-16T02:06:07.000Z" + "SpotPrice": "4.238900", + "Timestamp": "2024-05-16T06:03:05.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.151900", - "Timestamp": "2019-10-16T02:06:07.000Z" + "SpotPrice": "4.113900", + "Timestamp": "2024-05-16T06:03:05.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.131300", - "Timestamp": "2019-10-16T02:05:54.000Z" + "SpotPrice": "0.478200", + "Timestamp": "2024-05-16T06:03:05.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.171300", - "Timestamp": "2019-10-16T02:05:54.000Z" + "SpotPrice": "0.473200", + "Timestamp": "2024-05-16T06:03:05.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-16T02:05:54.000Z" + "SpotPrice": "0.348200", + "Timestamp": "2024-05-16T06:03:05.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097900", - "Timestamp": "2019-10-16T02:05:52.000Z" + "SpotPrice": "0.687600", + "Timestamp": "2024-05-16T06:03:05.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.674900", + "Timestamp": "2024-05-16T06:03:05.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7g.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137900", - "Timestamp": "2019-10-16T02:05:52.000Z" + "SpotPrice": "0.682600", + "Timestamp": "2024-05-16T06:03:05.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.669900", + "Timestamp": "2024-05-16T06:03:05.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037900", - "Timestamp": "2019-10-16T02:05:52.000Z" + "SpotPrice": "0.557600", + "Timestamp": "2024-05-16T06:03:05.000Z" }, { - "AvailabilityZone": "eu-central-1a", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.544900", + "Timestamp": "2024-05-16T06:03:05.000Z" + }, + { + "AvailabilityZone": "us-east-1d", "InstanceType": "r5ad.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "8.961900", - "Timestamp": "2019-10-16T01:57:52.000Z" + "SpotPrice": "6.879900", + "Timestamp": "2024-05-16T06:03:05.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.042600", - "Timestamp": "2019-10-16T01:57:51.000Z" + "SpotPrice": "4.120500", + "Timestamp": "2024-05-16T06:03:04.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.136400", - "Timestamp": "2019-10-16T01:57:38.000Z" + "SpotPrice": "2.369700", + "Timestamp": "2024-05-16T06:03:02.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.176400", - "Timestamp": "2019-10-16T01:57:38.000Z" + "SpotPrice": "2.364700", + "Timestamp": "2024-05-16T06:03:02.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.076400", - "Timestamp": "2019-10-16T01:57:38.000Z" + "SpotPrice": "2.239700", + "Timestamp": "2024-05-16T06:03:02.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i2.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.467300", - "Timestamp": "2019-10-16T01:57:33.000Z" + "SpotPrice": "4.547900", + "Timestamp": "2024-05-16T06:03:02.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i2.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.437300", - "Timestamp": "2019-10-16T01:57:33.000Z" + "SpotPrice": "4.517900", + "Timestamp": "2024-05-16T06:03:02.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i2.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.337300", - "Timestamp": "2019-10-16T01:57:33.000Z" + "SpotPrice": "4.417900", + "Timestamp": "2024-05-16T06:03:02.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "15.256800", + "Timestamp": "2024-05-16T06:03:01.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.238800", + "Timestamp": "2024-05-16T06:03:01.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.972300", + "Timestamp": "2024-05-16T06:03:00.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "h1.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.145400", - "Timestamp": "2019-10-16T01:57:22.000Z" + "SpotPrice": "0.875600", + "Timestamp": "2024-05-16T06:02:59.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "h1.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.185400", - "Timestamp": "2019-10-16T01:57:22.000Z" + "SpotPrice": "0.845600", + "Timestamp": "2024-05-16T06:02:59.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "h1.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.085400", - "Timestamp": "2019-10-16T01:57:22.000Z" + "SpotPrice": "0.745600", + "Timestamp": "2024-05-16T06:02:59.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.820600", - "Timestamp": "2019-10-16T01:57:15.000Z" + "SpotPrice": "0.120400", + "Timestamp": "2024-05-16T06:02:59.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "4.790600", - "Timestamp": "2019-10-16T01:57:15.000Z" + "SpotPrice": "0.116700", + "Timestamp": "2024-05-16T06:02:59.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.690600", - "Timestamp": "2019-10-16T01:57:15.000Z" + "SpotPrice": "0.060400", + "Timestamp": "2024-05-16T06:02:59.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.125200", - "Timestamp": "2019-10-16T01:53:08.000Z" + "SpotPrice": "0.302700", + "Timestamp": "2024-05-16T06:02:59.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.125200", - "Timestamp": "2019-10-16T01:53:08.000Z" + "SpotPrice": "1.248300", + "Timestamp": "2024-05-16T06:02:58.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.125200", - "Timestamp": "2019-10-16T01:53:08.000Z" + "SpotPrice": "10.241100", + "Timestamp": "2024-05-16T06:02:57.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.500600", - "Timestamp": "2019-10-16T01:52:48.000Z" + "SpotPrice": "10.262800", + "Timestamp": "2024-05-16T06:02:57.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.500600", - "Timestamp": "2019-10-16T01:52:48.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.771700", + "Timestamp": "2024-05-16T06:02:57.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.500600", - "Timestamp": "2019-10-16T01:52:48.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.741700", + "Timestamp": "2024-05-16T06:02:57.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "a1.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.077200", - "Timestamp": "2019-10-16T01:52:43.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.641700", + "Timestamp": "2024-05-16T06:02:57.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "a1.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.077200", - "Timestamp": "2019-10-16T01:52:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.116000", + "Timestamp": "2024-05-16T06:02:56.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "a1.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.117200", - "Timestamp": "2019-10-16T01:52:43.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.666000", + "Timestamp": "2024-05-16T06:02:56.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "a1.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.117200", - "Timestamp": "2019-10-16T01:52:43.000Z" + "SpotPrice": "1.661000", + "Timestamp": "2024-05-16T06:02:56.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "a1.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.017200", - "Timestamp": "2019-10-16T01:52:43.000Z" + "SpotPrice": "1.536000", + "Timestamp": "2024-05-16T06:02:56.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "a1.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.017200", - "Timestamp": "2019-10-16T01:52:43.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.707800", + "Timestamp": "2024-05-16T06:02:55.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-16T01:52:28.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.702800", + "Timestamp": "2024-05-16T06:02:55.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-16T01:52:28.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.577800", + "Timestamp": "2024-05-16T06:02:55.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-16T01:52:28.000Z" + "SpotPrice": "3.111700", + "Timestamp": "2024-05-16T06:02:55.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.103600", - "Timestamp": "2019-10-16T01:52:28.000Z" + "SpotPrice": "3.106700", + "Timestamp": "2024-05-16T06:02:55.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.103600", - "Timestamp": "2019-10-16T01:52:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.981700", + "Timestamp": "2024-05-16T06:02:55.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t3.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.103600", - "Timestamp": "2019-10-16T01:52:28.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5zn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.155400", + "Timestamp": "2024-05-16T06:02:55.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003600", - "Timestamp": "2019-10-16T01:52:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.337800", + "Timestamp": "2024-05-16T06:02:55.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003600", - "Timestamp": "2019-10-16T01:52:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.332800", + "Timestamp": "2024-05-16T06:02:55.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003600", - "Timestamp": "2019-10-16T01:52:28.000Z" + "SpotPrice": "1.207800", + "Timestamp": "2024-05-16T06:02:55.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.726800", - "Timestamp": "2019-10-16T01:52:17.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.066800", + "Timestamp": "2024-05-16T06:02:55.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.726800", - "Timestamp": "2019-10-16T01:52:17.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.696800", - "Timestamp": "2019-10-16T01:52:17.000Z" + "SpotPrice": "0.262800", + "Timestamp": "2024-05-16T06:02:54.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.696800", - "Timestamp": "2019-10-16T01:52:17.000Z" + "SpotPrice": "0.258800", + "Timestamp": "2024-05-16T06:02:54.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.596800", - "Timestamp": "2019-10-16T01:52:17.000Z" + "SpotPrice": "0.202800", + "Timestamp": "2024-05-16T06:02:54.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.596800", - "Timestamp": "2019-10-16T01:52:17.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.384300", + "Timestamp": "2024-05-16T06:02:54.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012800", - "Timestamp": "2019-10-16T01:52:03.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.379300", + "Timestamp": "2024-05-16T06:02:54.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012800", - "Timestamp": "2019-10-16T01:52:03.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.254300", + "Timestamp": "2024-05-16T06:02:54.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.012800", - "Timestamp": "2019-10-16T01:52:03.000Z" + "SpotPrice": "3.301100", + "Timestamp": "2024-05-16T06:02:53.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.115800", - "Timestamp": "2019-10-16T01:52:00.000Z" + "SpotPrice": "0.124500", + "Timestamp": "2024-05-16T06:02:53.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.115800", - "Timestamp": "2019-10-16T01:52:00.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120800", + "Timestamp": "2024-05-16T06:02:53.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064500", + "Timestamp": "2024-05-16T06:02:53.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.115800", - "Timestamp": "2019-10-16T01:52:00.000Z" + "SpotPrice": "1.349500", + "Timestamp": "2024-05-16T06:02:51.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.155800", - "Timestamp": "2019-10-16T01:52:00.000Z" + "SpotPrice": "1.344500", + "Timestamp": "2024-05-16T06:02:51.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.155800", - "Timestamp": "2019-10-16T01:52:00.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.219500", + "Timestamp": "2024-05-16T06:02:51.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.483800", + "Timestamp": "2024-05-16T06:02:51.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.155800", - "Timestamp": "2019-10-16T01:52:00.000Z" + "SpotPrice": "1.478800", + "Timestamp": "2024-05-16T06:02:51.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.055800", - "Timestamp": "2019-10-16T01:52:00.000Z" + "SpotPrice": "1.353800", + "Timestamp": "2024-05-16T06:02:51.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.055800", - "Timestamp": "2019-10-16T01:52:00.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125900", + "Timestamp": "2024-05-16T06:02:51.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.055800", - "Timestamp": "2019-10-16T01:52:00.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121900", + "Timestamp": "2024-05-16T06:02:51.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.507200", - "Timestamp": "2019-10-16T01:51:55.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065900", + "Timestamp": "2024-05-16T06:02:51.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5n.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "is4gen.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.269200", - "Timestamp": "2019-10-16T01:51:53.000Z" + "SpotPrice": "0.201200", + "Timestamp": "2024-05-16T06:02:51.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5n.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "is4gen.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.239200", - "Timestamp": "2019-10-16T01:51:53.000Z" + "SpotPrice": "0.197500", + "Timestamp": "2024-05-16T06:02:51.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5n.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "is4gen.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.139200", - "Timestamp": "2019-10-16T01:51:53.000Z" + "SpotPrice": "0.141200", + "Timestamp": "2024-05-16T06:02:51.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.087000", - "Timestamp": "2019-10-16T01:51:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.945700", + "Timestamp": "2024-05-16T06:02:51.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.087000", - "Timestamp": "2019-10-16T01:51:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.915700", + "Timestamp": "2024-05-16T06:02:51.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.087000", - "Timestamp": "2019-10-16T01:51:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.815700", + "Timestamp": "2024-05-16T06:02:51.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.801000", - "Timestamp": "2019-10-16T01:51:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.100900", + "Timestamp": "2024-05-16T06:02:50.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.801000", - "Timestamp": "2019-10-16T01:51:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.130600", + "Timestamp": "2024-05-16T06:02:50.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.801000", - "Timestamp": "2019-10-16T01:51:49.000Z" + "SpotPrice": "4.371200", + "Timestamp": "2024-05-16T06:02:49.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.771000", - "Timestamp": "2019-10-16T01:51:49.000Z" + "SpotPrice": "4.366200", + "Timestamp": "2024-05-16T06:02:49.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.771000", - "Timestamp": "2019-10-16T01:51:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.241200", + "Timestamp": "2024-05-16T06:02:49.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.771000", - "Timestamp": "2019-10-16T01:51:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.159000", + "Timestamp": "2024-05-16T06:02:49.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.671000", - "Timestamp": "2019-10-16T01:51:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.154000", + "Timestamp": "2024-05-16T06:02:49.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.671000", - "Timestamp": "2019-10-16T01:51:49.000Z" + "SpotPrice": "1.029000", + "Timestamp": "2024-05-16T06:02:49.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.671000", - "Timestamp": "2019-10-16T01:51:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.100100", + "Timestamp": "2024-05-16T06:02:49.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097600", - "Timestamp": "2019-10-16T01:51:48.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.301600", + "Timestamp": "2024-05-16T06:02:49.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.100400", - "Timestamp": "2019-10-16T01:51:48.000Z" + "SpotPrice": "1.493400", + "Timestamp": "2024-05-16T06:02:49.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.099100", - "Timestamp": "2019-10-16T01:51:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.488400", + "Timestamp": "2024-05-16T06:02:49.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137600", - "Timestamp": "2019-10-16T01:51:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.363400", + "Timestamp": "2024-05-16T06:02:49.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.140400", - "Timestamp": "2019-10-16T01:51:48.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.337600", + "Timestamp": "2024-05-16T06:02:49.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.139100", - "Timestamp": "2019-10-16T01:51:48.000Z" + "SpotPrice": "0.332600", + "Timestamp": "2024-05-16T06:02:49.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037600", - "Timestamp": "2019-10-16T01:51:48.000Z" + "SpotPrice": "0.207600", + "Timestamp": "2024-05-16T06:02:49.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.040400", - "Timestamp": "2019-10-16T01:51:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.540100", + "Timestamp": "2024-05-16T06:02:48.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.535100", + "Timestamp": "2024-05-16T06:02:48.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.039100", - "Timestamp": "2019-10-16T01:51:48.000Z" + "SpotPrice": "1.410100", + "Timestamp": "2024-05-16T06:02:48.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.126800", - "Timestamp": "2019-10-16T01:51:48.000Z" + "SpotPrice": "3.921900", + "Timestamp": "2024-05-16T06:02:48.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "h1.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.126800", - "Timestamp": "2019-10-16T01:51:48.000Z" + "SpotPrice": "5.790900", + "Timestamp": "2024-05-16T06:02:48.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.126800", - "Timestamp": "2019-10-16T01:51:48.000Z" + "SpotPrice": "7.067000", + "Timestamp": "2024-05-16T06:02:48.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.252800", - "Timestamp": "2019-10-16T01:51:42.000Z" + "SpotPrice": "7.035000", + "Timestamp": "2024-05-16T06:02:48.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.252800", - "Timestamp": "2019-10-16T01:51:42.000Z" + "SpotPrice": "0.257900", + "Timestamp": "2024-05-16T06:02:48.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.252800", - "Timestamp": "2019-10-16T01:51:42.000Z" + "SpotPrice": "0.992500", + "Timestamp": "2024-05-16T06:02:47.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.147800", - "Timestamp": "2019-10-16T01:51:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.380200", + "Timestamp": "2024-05-16T06:02:47.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.147800", - "Timestamp": "2019-10-16T01:51:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.375200", + "Timestamp": "2024-05-16T06:02:47.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.147800", - "Timestamp": "2019-10-16T01:51:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.250200", + "Timestamp": "2024-05-16T06:02:47.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152000", + "Timestamp": "2024-05-16T06:02:47.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148000", + "Timestamp": "2024-05-16T06:02:47.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092000", + "Timestamp": "2024-05-16T06:02:47.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.779600", - "Timestamp": "2019-10-16T01:49:24.000Z" + "SpotPrice": "2.101000", + "Timestamp": "2024-05-16T06:02:46.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.456800", - "Timestamp": "2019-10-16T01:49:24.000Z" + "SpotPrice": "1.551700", + "Timestamp": "2024-05-16T06:02:46.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "4.426800", - "Timestamp": "2019-10-16T01:49:24.000Z" + "SpotPrice": "1.546700", + "Timestamp": "2024-05-16T06:02:46.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.326800", - "Timestamp": "2019-10-16T01:49:24.000Z" + "SpotPrice": "1.421700", + "Timestamp": "2024-05-16T06:02:46.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.714100", + "Timestamp": "2024-05-16T06:02:45.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.271200", - "Timestamp": "2019-10-16T01:49:05.000Z" + "SpotPrice": "0.175100", + "Timestamp": "2024-05-16T06:02:45.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.241200", - "Timestamp": "2019-10-16T01:49:05.000Z" + "SpotPrice": "0.171400", + "Timestamp": "2024-05-16T06:02:45.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.141200", - "Timestamp": "2019-10-16T01:49:05.000Z" + "SpotPrice": "0.115100", + "Timestamp": "2024-05-16T06:02:45.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.688400", - "Timestamp": "2019-10-16T01:41:15.000Z" + "SpotPrice": "0.208000", + "Timestamp": "2024-05-16T06:02:44.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "4.658400", - "Timestamp": "2019-10-16T01:41:15.000Z" + "SpotPrice": "0.204300", + "Timestamp": "2024-05-16T06:02:44.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.558400", - "Timestamp": "2019-10-16T01:41:15.000Z" + "SpotPrice": "0.148000", + "Timestamp": "2024-05-16T06:02:44.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.320400", - "Timestamp": "2019-10-16T01:41:06.000Z" + "SpotPrice": "1.540000", + "Timestamp": "2024-05-16T06:02:44.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gn.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.290400", - "Timestamp": "2019-10-16T01:41:06.000Z" + "SpotPrice": "1.535000", + "Timestamp": "2024-05-16T06:02:44.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7gn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.190400", - "Timestamp": "2019-10-16T01:41:06.000Z" + "SpotPrice": "1.410000", + "Timestamp": "2024-05-16T06:02:44.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.225800", + "Timestamp": "2024-05-16T06:02:43.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.177100", - "Timestamp": "2019-10-16T01:40:54.000Z" + "SpotPrice": "1.387300", + "Timestamp": "2024-05-16T06:02:43.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.217100", - "Timestamp": "2019-10-16T01:40:54.000Z" + "SpotPrice": "1.382300", + "Timestamp": "2024-05-16T06:02:43.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.117100", - "Timestamp": "2019-10-16T01:40:54.000Z" + "SpotPrice": "1.257300", + "Timestamp": "2024-05-16T06:02:43.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.400700", - "Timestamp": "2019-10-16T01:40:44.000Z" + "SpotPrice": "1.337200", + "Timestamp": "2024-05-16T06:02:43.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.370700", - "Timestamp": "2019-10-16T01:40:44.000Z" + "SpotPrice": "1.332200", + "Timestamp": "2024-05-16T06:02:43.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.270700", - "Timestamp": "2019-10-16T01:40:44.000Z" + "SpotPrice": "1.207200", + "Timestamp": "2024-05-16T06:02:43.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.626400", - "Timestamp": "2019-10-16T01:40:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.600600", + "Timestamp": "2024-05-16T06:02:42.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.165800", - "Timestamp": "2019-10-16T01:40:37.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.595600", + "Timestamp": "2024-05-16T06:02:42.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.470600", + "Timestamp": "2024-05-16T06:02:42.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.186500", - "Timestamp": "2019-10-16T01:32:55.000Z" + "SpotPrice": "1.035500", + "Timestamp": "2024-05-16T06:02:42.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.090000", - "Timestamp": "2019-10-16T01:32:37.000Z" + "SpotPrice": "1.394400", + "Timestamp": "2024-05-16T06:02:42.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "5.060000", - "Timestamp": "2019-10-16T01:32:37.000Z" + "SpotPrice": "1.389400", + "Timestamp": "2024-05-16T06:02:42.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.960000", - "Timestamp": "2019-10-16T01:32:37.000Z" + "SpotPrice": "1.264400", + "Timestamp": "2024-05-16T06:02:42.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.043500", - "Timestamp": "2019-10-16T01:32:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.158200", + "Timestamp": "2024-05-16T06:02:42.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.043500", - "Timestamp": "2019-10-16T01:32:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.153200", + "Timestamp": "2024-05-16T06:02:42.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.043500", - "Timestamp": "2019-10-16T01:32:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.028200", + "Timestamp": "2024-05-16T06:02:42.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.005300", - "Timestamp": "2019-10-16T01:30:51.000Z" + "SpotPrice": "3.245800", + "Timestamp": "2024-05-16T06:02:42.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.975300", - "Timestamp": "2019-10-16T01:30:51.000Z" + "SpotPrice": "3.240800", + "Timestamp": "2024-05-16T06:02:42.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.875300", - "Timestamp": "2019-10-16T01:30:51.000Z" + "SpotPrice": "3.115800", + "Timestamp": "2024-05-16T06:02:42.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r4.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.008600", - "Timestamp": "2019-10-16T01:24:21.000Z" + "SpotPrice": "1.158800", + "Timestamp": "2024-05-16T06:02:41.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.136500", - "Timestamp": "2019-10-16T01:24:10.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.166100", + "Timestamp": "2024-05-16T06:02:41.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.176500", - "Timestamp": "2019-10-16T01:24:10.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.786800", + "Timestamp": "2024-05-16T06:02:41.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.076500", - "Timestamp": "2019-10-16T01:24:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.799100", + "Timestamp": "2024-05-16T06:02:41.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.474000", + "Timestamp": "2024-05-16T06:02:41.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.394900", - "Timestamp": "2019-10-16T01:24:09.000Z" + "SpotPrice": "1.050800", + "Timestamp": "2024-05-16T06:02:40.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.364900", - "Timestamp": "2019-10-16T01:24:09.000Z" + "SpotPrice": "1.045800", + "Timestamp": "2024-05-16T06:02:40.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.264900", - "Timestamp": "2019-10-16T01:24:09.000Z" + "SpotPrice": "0.920800", + "Timestamp": "2024-05-16T06:02:40.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.165300", - "Timestamp": "2019-10-16T01:23:54.000Z" + "SpotPrice": "0.242600", + "Timestamp": "2024-05-16T06:02:40.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5g.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.205300", - "Timestamp": "2019-10-16T01:23:54.000Z" + "SpotPrice": "0.238900", + "Timestamp": "2024-05-16T06:02:40.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.105300", - "Timestamp": "2019-10-16T01:23:54.000Z" + "SpotPrice": "0.182600", + "Timestamp": "2024-05-16T06:02:40.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.860400", - "Timestamp": "2019-10-16T01:23:51.000Z" + "SpotPrice": "3.571600", + "Timestamp": "2024-05-16T06:02:40.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.830400", - "Timestamp": "2019-10-16T01:23:51.000Z" + "SpotPrice": "3.566600", + "Timestamp": "2024-05-16T06:02:40.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.730400", - "Timestamp": "2019-10-16T01:23:51.000Z" + "SpotPrice": "3.441600", + "Timestamp": "2024-05-16T06:02:40.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.large", "ProductDescription": "Windows", - "SpotPrice": "4.074900", - "Timestamp": "2019-10-16T01:16:05.000Z" + "SpotPrice": "0.060600", + "Timestamp": "2024-05-16T06:02:39.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.439700", - "Timestamp": "2019-10-16T01:15:39.000Z" + "SpotPrice": "1.799600", + "Timestamp": "2024-05-16T06:02:39.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.409700", - "Timestamp": "2019-10-16T01:15:39.000Z" + "SpotPrice": "1.794600", + "Timestamp": "2024-05-16T06:02:39.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.309700", - "Timestamp": "2019-10-16T01:15:39.000Z" + "SpotPrice": "1.669600", + "Timestamp": "2024-05-16T06:02:39.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.102100", - "Timestamp": "2019-10-16T01:07:50.000Z" + "SpotPrice": "0.176500", + "Timestamp": "2024-05-16T06:02:39.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.142100", - "Timestamp": "2019-10-16T01:07:50.000Z" + "SpotPrice": "0.172500", + "Timestamp": "2024-05-16T06:02:39.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.042100", - "Timestamp": "2019-10-16T01:07:50.000Z" + "SpotPrice": "0.116500", + "Timestamp": "2024-05-16T06:02:39.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127000", - "Timestamp": "2019-10-16T01:07:46.000Z" + "SpotPrice": "0.243100", + "Timestamp": "2024-05-16T06:02:39.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.167000", - "Timestamp": "2019-10-16T01:07:46.000Z" + "SpotPrice": "0.239100", + "Timestamp": "2024-05-16T06:02:39.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067000", - "Timestamp": "2019-10-16T01:07:46.000Z" + "SpotPrice": "0.183100", + "Timestamp": "2024-05-16T06:02:39.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.270500", - "Timestamp": "2019-10-16T01:07:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.003200", + "Timestamp": "2024-05-16T06:02:38.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.150900", - "Timestamp": "2019-10-16T01:07:34.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.998200", + "Timestamp": "2024-05-16T06:02:38.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.428100", - "Timestamp": "2019-10-16T01:07:26.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.873200", + "Timestamp": "2024-05-16T06:02:38.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.182900", - "Timestamp": "2019-10-16T00:59:37.000Z" + "SpotPrice": "0.166400", + "Timestamp": "2024-05-16T06:02:38.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m2.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.222900", - "Timestamp": "2019-10-16T00:59:37.000Z" + "SpotPrice": "0.206400", + "Timestamp": "2024-05-16T06:02:38.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m2.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.122900", - "Timestamp": "2019-10-16T00:59:37.000Z" + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T06:02:38.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.302600", - "Timestamp": "2019-10-16T00:58:34.000Z" + "SpotPrice": "0.133000", + "Timestamp": "2024-05-16T06:02:37.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.272600", - "Timestamp": "2019-10-16T00:58:34.000Z" + "SpotPrice": "0.129300", + "Timestamp": "2024-05-16T06:02:37.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.172600", - "Timestamp": "2019-10-16T00:58:34.000Z" + "SpotPrice": "0.073000", + "Timestamp": "2024-05-16T06:02:37.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.128500", - "Timestamp": "2019-10-16T00:58:33.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.801000", - "Timestamp": "2019-10-16T00:57:55.000Z" + "SpotPrice": "8.164200", + "Timestamp": "2024-05-16T06:02:37.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.801000", - "Timestamp": "2019-10-16T00:57:55.000Z" + "SpotPrice": "0.932000", + "Timestamp": "2024-05-16T06:02:37.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.801000", - "Timestamp": "2019-10-16T00:57:55.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.927000", + "Timestamp": "2024-05-16T06:02:37.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.771000", - "Timestamp": "2019-10-16T00:57:55.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.802000", + "Timestamp": "2024-05-16T06:02:37.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.771000", - "Timestamp": "2019-10-16T00:57:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.705400", + "Timestamp": "2024-05-16T06:02:36.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.771000", - "Timestamp": "2019-10-16T00:57:55.000Z" + "SpotPrice": "6.700400", + "Timestamp": "2024-05-16T06:02:36.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.671000", - "Timestamp": "2019-10-16T00:57:55.000Z" + "SpotPrice": "6.575400", + "Timestamp": "2024-05-16T06:02:36.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.671000", - "Timestamp": "2019-10-16T00:57:55.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.016400", + "Timestamp": "2024-05-16T06:02:34.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.671000", - "Timestamp": "2019-10-16T00:57:55.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.011400", + "Timestamp": "2024-05-16T06:02:34.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.557500", - "Timestamp": "2019-10-16T00:57:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.886400", + "Timestamp": "2024-05-16T06:02:34.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "inf1.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.557500", - "Timestamp": "2019-10-16T00:57:49.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g3.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.527500", - "Timestamp": "2019-10-16T00:57:49.000Z" + "SpotPrice": "0.311300", + "Timestamp": "2024-05-16T06:02:34.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "inf1.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.527500", - "Timestamp": "2019-10-16T00:57:49.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.427500", - "Timestamp": "2019-10-16T00:57:49.000Z" + "SpotPrice": "0.306300", + "Timestamp": "2024-05-16T06:02:34.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "inf1.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.427500", - "Timestamp": "2019-10-16T00:57:49.000Z" + "SpotPrice": "0.181300", + "Timestamp": "2024-05-16T06:02:34.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.087000", - "Timestamp": "2019-10-16T00:57:38.000Z" + "SpotPrice": "2.707000", + "Timestamp": "2024-05-16T06:02:33.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.087000", - "Timestamp": "2019-10-16T00:57:38.000Z" + "SpotPrice": "2.688000", + "Timestamp": "2024-05-16T06:02:33.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.087000", - "Timestamp": "2019-10-16T00:57:38.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.662800", + "Timestamp": "2024-05-16T06:02:33.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.163500", - "Timestamp": "2019-10-16T00:56:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.632800", + "Timestamp": "2024-05-16T06:02:33.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.163500", - "Timestamp": "2019-10-16T00:56:26.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.532800", + "Timestamp": "2024-05-16T06:02:33.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.965500", - "Timestamp": "2019-10-16T00:55:10.000Z" + "SpotPrice": "0.098900", + "Timestamp": "2024-05-16T06:02:33.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.965500", - "Timestamp": "2019-10-16T00:55:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095200", + "Timestamp": "2024-05-16T06:02:33.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.935500", - "Timestamp": "2019-10-16T00:55:10.000Z" - }, - { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.935500", - "Timestamp": "2019-10-16T00:55:10.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.835500", - "Timestamp": "2019-10-16T00:55:10.000Z" - }, - { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.835500", - "Timestamp": "2019-10-16T00:55:10.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129500", - "Timestamp": "2019-10-16T00:53:45.000Z" - }, - { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129500", - "Timestamp": "2019-10-16T00:53:45.000Z" + "SpotPrice": "0.038900", + "Timestamp": "2024-05-16T06:02:33.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129500", - "Timestamp": "2019-10-16T00:53:45.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.169500", - "Timestamp": "2019-10-16T00:53:45.000Z" - }, - { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.169500", - "Timestamp": "2019-10-16T00:53:45.000Z" + "SpotPrice": "0.136400", + "Timestamp": "2024-05-16T06:02:33.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.169500", - "Timestamp": "2019-10-16T00:53:45.000Z" + "SpotPrice": "0.132700", + "Timestamp": "2024-05-16T06:02:33.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069500", - "Timestamp": "2019-10-16T00:53:45.000Z" + "SpotPrice": "0.076400", + "Timestamp": "2024-05-16T06:02:33.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069500", - "Timestamp": "2019-10-16T00:53:45.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.509400", + "Timestamp": "2024-05-16T06:02:33.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069500", - "Timestamp": "2019-10-16T00:53:45.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.479400", + "Timestamp": "2024-05-16T06:02:33.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.545600", - "Timestamp": "2019-10-16T00:53:17.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.379400", + "Timestamp": "2024-05-16T06:02:33.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1e.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "8.545600", - "Timestamp": "2019-10-16T00:53:17.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.880600", - "Timestamp": "2019-10-16T00:53:09.000Z" - }, - { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.880600", - "Timestamp": "2019-10-16T00:53:09.000Z" + "SpotPrice": "0.149500", + "Timestamp": "2024-05-16T06:02:33.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "inf1.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.880600", - "Timestamp": "2019-10-16T00:53:09.000Z" + "SpotPrice": "2.501500", + "Timestamp": "2024-05-16T06:02:32.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "inf1.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.850600", - "Timestamp": "2019-10-16T00:53:09.000Z" + "SpotPrice": "2.496500", + "Timestamp": "2024-05-16T06:02:32.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.850600", - "Timestamp": "2019-10-16T00:53:09.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.371500", + "Timestamp": "2024-05-16T06:02:32.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.850600", - "Timestamp": "2019-10-16T00:53:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.044100", + "Timestamp": "2024-05-16T06:02:32.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.750600", - "Timestamp": "2019-10-16T00:53:09.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129900", + "Timestamp": "2024-05-16T06:02:32.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.750600", - "Timestamp": "2019-10-16T00:53:09.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126200", + "Timestamp": "2024-05-16T06:02:32.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.750600", - "Timestamp": "2019-10-16T00:53:09.000Z" + "SpotPrice": "0.069900", + "Timestamp": "2024-05-16T06:02:32.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.111000", - "Timestamp": "2019-10-16T00:52:25.000Z" + "SpotPrice": "1.026200", + "Timestamp": "2024-05-16T06:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.111000", - "Timestamp": "2019-10-16T00:52:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152300", + "Timestamp": "2024-05-16T06:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.111000", - "Timestamp": "2019-10-16T00:52:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192300", + "Timestamp": "2024-05-16T06:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.731600", - "Timestamp": "2019-10-16T00:52:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092300", + "Timestamp": "2024-05-16T06:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1e.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.9xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.731600", - "Timestamp": "2019-10-16T00:52:25.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "5.701600", - "Timestamp": "2019-10-16T00:52:25.000Z" + "SpotPrice": "1.001600", + "Timestamp": "2024-05-16T06:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1e.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.9xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "5.701600", - "Timestamp": "2019-10-16T00:52:25.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.601600", - "Timestamp": "2019-10-16T00:52:25.000Z" + "SpotPrice": "0.971600", + "Timestamp": "2024-05-16T06:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1e.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.9xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.601600", - "Timestamp": "2019-10-16T00:52:25.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.297000", - "Timestamp": "2019-10-16T00:52:21.000Z" + "SpotPrice": "0.871600", + "Timestamp": "2024-05-16T06:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.297000", - "Timestamp": "2019-10-16T00:52:21.000Z" + "SpotPrice": "1.106800", + "Timestamp": "2024-05-16T06:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.297000", - "Timestamp": "2019-10-16T00:52:21.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.267000", - "Timestamp": "2019-10-16T00:52:21.000Z" + "SpotPrice": "1.015500", + "Timestamp": "2024-05-16T06:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.267000", - "Timestamp": "2019-10-16T00:52:21.000Z" + "SpotPrice": "1.101800", + "Timestamp": "2024-05-16T06:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.267000", - "Timestamp": "2019-10-16T00:52:21.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.167000", - "Timestamp": "2019-10-16T00:52:21.000Z" + "SpotPrice": "1.010500", + "Timestamp": "2024-05-16T06:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.167000", - "Timestamp": "2019-10-16T00:52:21.000Z" + "SpotPrice": "0.976800", + "Timestamp": "2024-05-16T06:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.167000", - "Timestamp": "2019-10-16T00:52:21.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.297000", - "Timestamp": "2019-10-16T00:52:12.000Z" - }, - { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.297000", - "Timestamp": "2019-10-16T00:52:12.000Z" + "SpotPrice": "0.885500", + "Timestamp": "2024-05-16T06:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.metal-24xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.297000", - "Timestamp": "2019-10-16T00:52:12.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.267000", - "Timestamp": "2019-10-16T00:52:12.000Z" - }, - { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.267000", - "Timestamp": "2019-10-16T00:52:12.000Z" + "SpotPrice": "2.086300", + "Timestamp": "2024-05-16T06:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.metal-24xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.267000", - "Timestamp": "2019-10-16T00:52:12.000Z" + "SpotPrice": "2.081300", + "Timestamp": "2024-05-16T06:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.metal-24xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.167000", - "Timestamp": "2019-10-16T00:52:12.000Z" + "SpotPrice": "1.956300", + "Timestamp": "2024-05-16T06:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.167000", - "Timestamp": "2019-10-16T00:52:12.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.387100", + "Timestamp": "2024-05-16T06:02:30.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.167000", - "Timestamp": "2019-10-16T00:52:12.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.357100", + "Timestamp": "2024-05-16T06:02:30.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.560600", - "Timestamp": "2019-10-16T00:52:05.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.257100", + "Timestamp": "2024-05-16T06:02:30.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.560600", - "Timestamp": "2019-10-16T00:52:05.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.530600", - "Timestamp": "2019-10-16T00:52:05.000Z" + "SpotPrice": "0.586000", + "Timestamp": "2024-05-16T06:02:30.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.530600", - "Timestamp": "2019-10-16T00:52:05.000Z" + "SpotPrice": "0.581000", + "Timestamp": "2024-05-16T06:02:30.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.430600", - "Timestamp": "2019-10-16T00:52:05.000Z" + "SpotPrice": "0.456000", + "Timestamp": "2024-05-16T06:02:30.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.430600", - "Timestamp": "2019-10-16T00:52:05.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.675100", + "Timestamp": "2024-05-16T06:02:30.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.583000", - "Timestamp": "2019-10-16T00:51:58.000Z" + "SpotPrice": "12.712500", + "Timestamp": "2024-05-16T06:02:29.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.583000", - "Timestamp": "2019-10-16T00:51:58.000Z" + "SpotPrice": "1.280900", + "Timestamp": "2024-05-16T06:02:28.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.583000", - "Timestamp": "2019-10-16T00:51:58.000Z" + "SpotPrice": "0.547300", + "Timestamp": "2024-05-16T06:02:28.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.18xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.392600", - "Timestamp": "2019-10-16T00:51:56.000Z" + "SpotPrice": "4.665400", + "Timestamp": "2024-05-16T06:02:28.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.large", "ProductDescription": "Windows", - "SpotPrice": "3.392600", - "Timestamp": "2019-10-16T00:51:56.000Z" + "SpotPrice": "0.130300", + "Timestamp": "2024-05-16T06:02:27.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.069000", - "Timestamp": "2019-10-16T00:51:49.000Z" + "SpotPrice": "2.361500", + "Timestamp": "2024-05-16T06:02:26.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.073900", - "Timestamp": "2019-10-16T00:51:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.572600", + "Timestamp": "2024-05-16T06:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.071100", - "Timestamp": "2019-10-16T00:51:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.567600", + "Timestamp": "2024-05-16T06:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.190900", - "Timestamp": "2019-10-16T00:51:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.442600", + "Timestamp": "2024-05-16T06:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.190900", - "Timestamp": "2019-10-16T00:51:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.520900", + "Timestamp": "2024-05-16T06:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.190900", - "Timestamp": "2019-10-16T00:51:49.000Z" + "SpotPrice": "0.117400", + "Timestamp": "2024-05-16T06:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.160900", - "Timestamp": "2019-10-16T00:51:49.000Z" + "SpotPrice": "0.157400", + "Timestamp": "2024-05-16T06:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.160900", - "Timestamp": "2019-10-16T00:51:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057400", + "Timestamp": "2024-05-16T06:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m4.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.160900", - "Timestamp": "2019-10-16T00:51:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104100", + "Timestamp": "2024-05-16T06:02:24.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.060900", - "Timestamp": "2019-10-16T00:51:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100400", + "Timestamp": "2024-05-16T06:02:24.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.060900", - "Timestamp": "2019-10-16T00:51:49.000Z" + "SpotPrice": "0.044100", + "Timestamp": "2024-05-16T06:02:24.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.060900", - "Timestamp": "2019-10-16T00:51:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.179000", + "Timestamp": "2024-05-16T06:02:23.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.102300", - "Timestamp": "2019-10-16T00:51:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.175300", + "Timestamp": "2024-05-16T06:02:23.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096500", - "Timestamp": "2019-10-16T00:51:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119000", + "Timestamp": "2024-05-16T06:02:23.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096500", - "Timestamp": "2019-10-16T00:51:48.000Z" + "SpotPrice": "2.692000", + "Timestamp": "2024-05-16T06:02:23.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.142300", - "Timestamp": "2019-10-16T00:51:48.000Z" + "SpotPrice": "2.687000", + "Timestamp": "2024-05-16T06:02:23.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136500", - "Timestamp": "2019-10-16T00:51:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.562000", + "Timestamp": "2024-05-16T06:02:23.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136500", - "Timestamp": "2019-10-16T00:51:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.758100", + "Timestamp": "2024-05-16T06:02:23.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.042300", - "Timestamp": "2019-10-16T00:51:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.753100", + "Timestamp": "2024-05-16T06:02:23.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036500", - "Timestamp": "2019-10-16T00:51:48.000Z" + "SpotPrice": "2.628100", + "Timestamp": "2024-05-16T06:02:23.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036500", - "Timestamp": "2019-10-16T00:51:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.246300", + "Timestamp": "2024-05-16T06:02:23.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.128500", - "Timestamp": "2019-10-16T00:51:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.241300", + "Timestamp": "2024-05-16T06:02:23.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.128500", - "Timestamp": "2019-10-16T00:51:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.116300", + "Timestamp": "2024-05-16T06:02:23.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.128500", - "Timestamp": "2019-10-16T00:51:48.000Z" + "SpotPrice": "0.270200", + "Timestamp": "2024-05-16T06:02:23.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.022800", - "Timestamp": "2019-10-16T00:51:35.000Z" + "SpotPrice": "0.623400", + "Timestamp": "2024-05-16T06:02:22.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.022800", - "Timestamp": "2019-10-16T00:51:35.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.618400", + "Timestamp": "2024-05-16T06:02:22.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.022800", - "Timestamp": "2019-10-16T00:51:35.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.493400", + "Timestamp": "2024-05-16T06:02:22.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.992800", - "Timestamp": "2019-10-16T00:51:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.459300", + "Timestamp": "2024-05-16T06:02:22.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g3s.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.992800", - "Timestamp": "2019-10-16T00:51:35.000Z" + "SpotPrice": "0.455300", + "Timestamp": "2024-05-16T06:02:22.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.992800", - "Timestamp": "2019-10-16T00:51:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.399300", + "Timestamp": "2024-05-16T06:02:22.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.892800", - "Timestamp": "2019-10-16T00:51:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164600", + "Timestamp": "2024-05-16T06:02:22.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.892800", - "Timestamp": "2019-10-16T00:51:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160900", + "Timestamp": "2024-05-16T06:02:22.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.892800", - "Timestamp": "2019-10-16T00:51:35.000Z" + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T06:02:22.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m1.medium", "ProductDescription": "Windows", - "SpotPrice": "2.364800", - "Timestamp": "2019-10-16T00:51:35.000Z" + "SpotPrice": "0.095700", + "Timestamp": "2024-05-16T06:02:22.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.364800", - "Timestamp": "2019-10-16T00:51:35.000Z" + "SpotPrice": "2.473900", + "Timestamp": "2024-05-16T06:02:22.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.364800", - "Timestamp": "2019-10-16T00:51:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.778500", + "Timestamp": "2024-05-16T06:02:20.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.319000", - "Timestamp": "2019-10-16T00:51:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.773500", + "Timestamp": "2024-05-16T06:02:20.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.432500", - "Timestamp": "2019-10-16T00:51:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.648500", + "Timestamp": "2024-05-16T06:02:20.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.319000", - "Timestamp": "2019-10-16T00:51:35.000Z" + "SpotPrice": "4.159300", + "Timestamp": "2024-05-16T06:02:20.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.195000", - "Timestamp": "2019-10-16T00:51:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.661100", + "Timestamp": "2024-05-16T06:02:20.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.304300", - "Timestamp": "2019-10-16T00:51:35.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.925300", + "Timestamp": "2024-05-16T06:02:20.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.195000", - "Timestamp": "2019-10-16T00:51:35.000Z" + "SpotPrice": "0.271300", + "Timestamp": "2024-05-16T06:02:20.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.235000", - "Timestamp": "2019-10-16T00:51:35.000Z" + "SpotPrice": "0.266300", + "Timestamp": "2024-05-16T06:02:20.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "z1d.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.344300", - "Timestamp": "2019-10-16T00:51:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141300", + "Timestamp": "2024-05-16T06:02:20.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "z1d.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.235000", - "Timestamp": "2019-10-16T00:51:35.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.278300", + "Timestamp": "2024-05-16T06:02:19.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.135000", - "Timestamp": "2019-10-16T00:51:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.931100", + "Timestamp": "2024-05-16T06:02:19.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.244300", - "Timestamp": "2019-10-16T00:51:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.926100", + "Timestamp": "2024-05-16T06:02:19.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.135000", - "Timestamp": "2019-10-16T00:51:35.000Z" + "SpotPrice": "3.801100", + "Timestamp": "2024-05-16T06:02:19.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.141200", - "Timestamp": "2019-10-16T00:51:19.000Z" + "SpotPrice": "0.247100", + "Timestamp": "2024-05-16T06:02:19.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.181200", - "Timestamp": "2019-10-16T00:51:19.000Z" + "SpotPrice": "0.244100", + "Timestamp": "2024-05-16T06:02:19.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.081200", - "Timestamp": "2019-10-16T00:51:19.000Z" + "SpotPrice": "0.187100", + "Timestamp": "2024-05-16T06:02:19.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.346300", - "Timestamp": "2019-10-16T00:51:02.000Z" + "SpotPrice": "0.571900", + "Timestamp": "2024-05-16T06:02:17.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.253500", - "Timestamp": "2019-10-16T00:51:01.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314900", + "Timestamp": "2024-05-16T06:02:16.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.253500", - "Timestamp": "2019-10-16T00:51:01.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.309900", + "Timestamp": "2024-05-16T06:02:16.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184900", + "Timestamp": "2024-05-16T06:02:16.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.253500", - "Timestamp": "2019-10-16T00:51:01.000Z" + "SpotPrice": "2.122300", + "Timestamp": "2024-05-16T06:02:15.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iezn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.760300", - "Timestamp": "2019-10-16T00:50:54.000Z" + "SpotPrice": "2.984200", + "Timestamp": "2024-05-16T06:02:15.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iezn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.730300", - "Timestamp": "2019-10-16T00:50:54.000Z" + "SpotPrice": "2.979200", + "Timestamp": "2024-05-16T06:02:15.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iezn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.630300", - "Timestamp": "2019-10-16T00:50:54.000Z" + "SpotPrice": "2.854200", + "Timestamp": "2024-05-16T06:02:15.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.259400", - "Timestamp": "2019-10-16T00:50:43.000Z" + "SpotPrice": "0.346600", + "Timestamp": "2024-05-16T06:02:14.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7gd.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.229400", - "Timestamp": "2019-10-16T00:50:43.000Z" + "SpotPrice": "0.341600", + "Timestamp": "2024-05-16T06:02:14.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.129400", - "Timestamp": "2019-10-16T00:50:43.000Z" + "SpotPrice": "0.216600", + "Timestamp": "2024-05-16T06:02:14.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t2.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.736300", - "Timestamp": "2019-10-16T00:50:32.000Z" + "SpotPrice": "0.081200", + "Timestamp": "2024-05-16T06:02:14.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t2.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.706300", - "Timestamp": "2019-10-16T00:50:32.000Z" + "SpotPrice": "0.121200", + "Timestamp": "2024-05-16T06:02:14.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t2.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.606300", - "Timestamp": "2019-10-16T00:50:32.000Z" - }, - { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "9.048000", - "Timestamp": "2019-10-16T00:42:59.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.423800", - "Timestamp": "2019-10-16T00:42:55.000Z" + "SpotPrice": "0.021200", + "Timestamp": "2024-05-16T06:02:14.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.497200", - "Timestamp": "2019-10-16T00:42:30.000Z" + "SpotPrice": "0.283000", + "Timestamp": "2024-05-16T06:02:14.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.467200", - "Timestamp": "2019-10-16T00:42:30.000Z" + "SpotPrice": "0.278000", + "Timestamp": "2024-05-16T06:02:14.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.367200", - "Timestamp": "2019-10-16T00:42:30.000Z" + "SpotPrice": "0.153000", + "Timestamp": "2024-05-16T06:02:14.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "i3.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.133800", - "Timestamp": "2019-10-16T00:42:11.000Z" + "SpotPrice": "0.684400", + "Timestamp": "2024-05-16T06:02:13.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "i3.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.173800", - "Timestamp": "2019-10-16T00:42:11.000Z" + "SpotPrice": "0.654400", + "Timestamp": "2024-05-16T06:02:13.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "i3.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.073800", - "Timestamp": "2019-10-16T00:42:11.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.128700", - "Timestamp": "2019-10-16T00:34:24.000Z" + "SpotPrice": "0.554400", + "Timestamp": "2024-05-16T06:02:13.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.556100", - "Timestamp": "2019-10-16T00:33:50.000Z" + "SpotPrice": "0.102000", + "Timestamp": "2024-05-16T06:02:13.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.526100", - "Timestamp": "2019-10-16T00:33:50.000Z" + "SpotPrice": "0.098300", + "Timestamp": "2024-05-16T06:02:13.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.426100", - "Timestamp": "2019-10-16T00:33:50.000Z" - }, - { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.614900", - "Timestamp": "2019-10-16T00:26:20.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.861800", - "Timestamp": "2019-10-16T00:25:59.000Z" + "SpotPrice": "0.042000", + "Timestamp": "2024-05-16T06:02:13.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.278300", - "Timestamp": "2019-10-16T00:25:47.000Z" + "SpotPrice": "0.971000", + "Timestamp": "2024-05-16T06:02:13.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.248300", - "Timestamp": "2019-10-16T00:25:47.000Z" + "SpotPrice": "0.966000", + "Timestamp": "2024-05-16T06:02:13.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.148300", - "Timestamp": "2019-10-16T00:25:47.000Z" + "SpotPrice": "0.841000", + "Timestamp": "2024-05-16T06:02:13.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.335400", - "Timestamp": "2019-10-16T00:25:45.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m4.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.500400", - "Timestamp": "2019-10-16T00:25:32.000Z" + "SpotPrice": "0.345000", + "Timestamp": "2024-05-16T06:02:13.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m4.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.470400", - "Timestamp": "2019-10-16T00:25:32.000Z" + "SpotPrice": "0.315000", + "Timestamp": "2024-05-16T06:02:13.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m4.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.370400", - "Timestamp": "2019-10-16T00:25:32.000Z" + "SpotPrice": "0.215000", + "Timestamp": "2024-05-16T06:02:13.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.148700", - "Timestamp": "2019-10-16T00:25:31.000Z" + "SpotPrice": "6.559200", + "Timestamp": "2024-05-16T06:02:11.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c4.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.274300", - "Timestamp": "2019-10-16T00:25:30.000Z" + "SpotPrice": "0.857500", + "Timestamp": "2024-05-16T06:02:10.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c4.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.244300", - "Timestamp": "2019-10-16T00:25:30.000Z" + "SpotPrice": "0.827500", + "Timestamp": "2024-05-16T06:02:10.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c4.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.144300", - "Timestamp": "2019-10-16T00:25:30.000Z" + "SpotPrice": "0.727500", + "Timestamp": "2024-05-16T06:02:10.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "inf2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.338300", - "Timestamp": "2019-10-16T00:17:53.000Z" + "SpotPrice": "0.381500", + "Timestamp": "2024-05-16T06:02:10.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "inf2.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.308300", - "Timestamp": "2019-10-16T00:17:53.000Z" + "SpotPrice": "0.421500", + "Timestamp": "2024-05-16T06:02:10.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "inf2.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.208300", - "Timestamp": "2019-10-16T00:17:53.000Z" + "SpotPrice": "0.321500", + "Timestamp": "2024-05-16T06:02:10.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.637900", - "Timestamp": "2019-10-16T00:17:30.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.829400", + "Timestamp": "2024-05-16T06:02:06.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.530000", - "Timestamp": "2019-10-16T00:14:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.824400", + "Timestamp": "2024-05-16T06:02:06.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.530000", - "Timestamp": "2019-10-16T00:14:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.699400", + "Timestamp": "2024-05-16T06:02:06.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "10.944000", - "Timestamp": "2019-10-16T00:14:52.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.441600", + "Timestamp": "2024-05-16T06:02:05.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.253600", - "Timestamp": "2019-10-16T00:13:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.436600", + "Timestamp": "2024-05-16T06:02:05.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.311600", + "Timestamp": "2024-05-16T06:02:05.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.186800", - "Timestamp": "2019-10-16T00:09:01.000Z" + "SpotPrice": "2.034000", + "Timestamp": "2024-05-16T05:48:20.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.226800", - "Timestamp": "2019-10-16T00:09:01.000Z" + "SpotPrice": "2.029000", + "Timestamp": "2024-05-16T05:48:20.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.126800", - "Timestamp": "2019-10-16T00:09:01.000Z" + "SpotPrice": "1.904000", + "Timestamp": "2024-05-16T05:48:20.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.507700", - "Timestamp": "2019-10-16T00:08:54.000Z" + "SpotPrice": "2.129700", + "Timestamp": "2024-05-16T05:48:12.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.256900", - "Timestamp": "2019-10-16T00:07:11.000Z" + "SpotPrice": "7.171800", + "Timestamp": "2024-05-16T05:48:10.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.149000", - "Timestamp": "2019-10-16T00:00:58.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.077900", + "Timestamp": "2024-05-16T05:48:08.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5d.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.189000", - "Timestamp": "2019-10-16T00:00:58.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.664600", + "Timestamp": "2024-05-16T05:48:07.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.089000", - "Timestamp": "2019-10-16T00:00:58.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.272800", + "Timestamp": "2024-05-16T05:48:07.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.099400", - "Timestamp": "2019-10-16T00:00:48.000Z" + "SpotPrice": "3.775000", + "Timestamp": "2024-05-16T05:48:05.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.139400", - "Timestamp": "2019-10-16T00:00:48.000Z" + "SpotPrice": "3.770000", + "Timestamp": "2024-05-16T05:48:05.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.039400", - "Timestamp": "2019-10-16T00:00:48.000Z" + "SpotPrice": "3.645000", + "Timestamp": "2024-05-16T05:48:05.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.600900", - "Timestamp": "2019-10-16T00:00:30.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.132800", + "Timestamp": "2024-05-16T05:48:03.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "5.570900", - "Timestamp": "2019-10-16T00:00:30.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.272500", + "Timestamp": "2024-05-16T05:48:02.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.470900", - "Timestamp": "2019-10-16T00:00:30.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.143400", + "Timestamp": "2024-05-16T05:48:01.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120100", - "Timestamp": "2019-10-16T00:00:25.000Z" + "SpotPrice": "4.270200", + "Timestamp": "2024-05-16T05:47:59.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120100", - "Timestamp": "2019-10-16T00:00:25.000Z" + "SpotPrice": "4.182700", + "Timestamp": "2024-05-16T05:47:59.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.160100", - "Timestamp": "2019-10-16T00:00:25.000Z" + "SpotPrice": "4.265200", + "Timestamp": "2024-05-16T05:47:59.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.160100", - "Timestamp": "2019-10-16T00:00:25.000Z" + "SpotPrice": "4.177700", + "Timestamp": "2024-05-16T05:47:59.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060100", - "Timestamp": "2019-10-16T00:00:25.000Z" + "SpotPrice": "4.140200", + "Timestamp": "2024-05-16T05:47:59.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060100", - "Timestamp": "2019-10-16T00:00:25.000Z" + "SpotPrice": "4.052700", + "Timestamp": "2024-05-16T05:47:59.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.215900", - "Timestamp": "2019-10-16T00:00:19.000Z" + "SpotPrice": "0.601600", + "Timestamp": "2024-05-16T05:47:59.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.185900", - "Timestamp": "2019-10-16T00:00:19.000Z" + "SpotPrice": "0.596600", + "Timestamp": "2024-05-16T05:47:59.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.085900", - "Timestamp": "2019-10-16T00:00:19.000Z" + "SpotPrice": "0.471600", + "Timestamp": "2024-05-16T05:47:59.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.226100", - "Timestamp": "2019-10-16T00:00:06.000Z" + "SpotPrice": "4.055400", + "Timestamp": "2024-05-16T05:47:59.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3a.micro", "ProductDescription": "Windows", - "SpotPrice": "0.226100", - "Timestamp": "2019-10-16T00:00:06.000Z" + "SpotPrice": "0.013200", + "Timestamp": "2024-05-16T05:47:58.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.246100", + "Timestamp": "2024-05-16T05:47:56.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2idn.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.392000", - "Timestamp": "2019-10-16T00:00:04.000Z" + "SpotPrice": "5.481700", + "Timestamp": "2024-05-16T05:47:56.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2idn.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.362000", - "Timestamp": "2019-10-16T00:00:04.000Z" + "SpotPrice": "5.476700", + "Timestamp": "2024-05-16T05:47:56.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2idn.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.262000", - "Timestamp": "2019-10-16T00:00:04.000Z" + "SpotPrice": "5.351700", + "Timestamp": "2024-05-16T05:47:56.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t2.micro", "ProductDescription": "Windows", - "SpotPrice": "0.256900", - "Timestamp": "2019-10-15T23:59:55.000Z" + "SpotPrice": "0.009700", + "Timestamp": "2024-05-16T05:47:55.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.large", "ProductDescription": "Windows", - "SpotPrice": "0.256900", - "Timestamp": "2019-10-15T23:59:55.000Z" + "SpotPrice": "0.158100", + "Timestamp": "2024-05-16T05:47:55.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.295600", - "Timestamp": "2019-10-15T23:58:30.000Z" + "SpotPrice": "10.910400", + "Timestamp": "2024-05-16T05:47:54.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.295600", - "Timestamp": "2019-10-15T23:58:30.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.672400", + "Timestamp": "2024-05-16T05:47:54.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.295600", - "Timestamp": "2019-10-15T23:58:30.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.667400", + "Timestamp": "2024-05-16T05:47:54.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.542400", + "Timestamp": "2024-05-16T05:47:54.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132900", - "Timestamp": "2019-10-15T23:58:29.000Z" + "SpotPrice": "0.133100", + "Timestamp": "2024-05-16T05:47:54.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172900", - "Timestamp": "2019-10-15T23:58:29.000Z" + "SpotPrice": "0.129400", + "Timestamp": "2024-05-16T05:47:54.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072900", - "Timestamp": "2019-10-15T23:58:29.000Z" + "SpotPrice": "0.073100", + "Timestamp": "2024-05-16T05:47:54.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.171600", - "Timestamp": "2019-10-15T23:58:10.000Z" + "SpotPrice": "0.808600", + "Timestamp": "2024-05-16T05:47:54.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.211600", - "Timestamp": "2019-10-15T23:58:10.000Z" + "SpotPrice": "0.803600", + "Timestamp": "2024-05-16T05:47:54.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.111600", - "Timestamp": "2019-10-15T23:58:10.000Z" + "SpotPrice": "0.678600", + "Timestamp": "2024-05-16T05:47:54.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.258600", - "Timestamp": "2019-10-15T23:53:18.000Z" + "SpotPrice": "1.581700", + "Timestamp": "2024-05-16T05:47:54.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.258600", - "Timestamp": "2019-10-15T23:53:18.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.576700", + "Timestamp": "2024-05-16T05:47:54.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.451700", + "Timestamp": "2024-05-16T05:47:54.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i-flex.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.258600", - "Timestamp": "2019-10-15T23:53:18.000Z" + "SpotPrice": "0.162600", + "Timestamp": "2024-05-16T05:47:53.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i-flex.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.228600", - "Timestamp": "2019-10-15T23:53:18.000Z" + "SpotPrice": "0.158900", + "Timestamp": "2024-05-16T05:47:53.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.228600", - "Timestamp": "2019-10-15T23:53:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-16T05:47:53.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.137700", + "Timestamp": "2024-05-16T05:47:53.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.509800", + "Timestamp": "2024-05-16T05:47:52.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.228600", - "Timestamp": "2019-10-15T23:53:18.000Z" + "SpotPrice": "0.504800", + "Timestamp": "2024-05-16T05:47:52.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.128600", - "Timestamp": "2019-10-15T23:53:18.000Z" + "SpotPrice": "0.379800", + "Timestamp": "2024-05-16T05:47:52.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.128600", - "Timestamp": "2019-10-15T23:53:18.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.465800", + "Timestamp": "2024-05-16T05:47:52.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.019300", + "Timestamp": "2024-05-16T05:47:51.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.989300", + "Timestamp": "2024-05-16T05:47:51.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.128600", - "Timestamp": "2019-10-15T23:53:18.000Z" + "SpotPrice": "1.889300", + "Timestamp": "2024-05-16T05:47:51.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.190600", - "Timestamp": "2019-10-15T23:53:09.000Z" + "SpotPrice": "4.910000", + "Timestamp": "2024-05-16T05:47:51.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.metal-48xl", "ProductDescription": "Windows", - "SpotPrice": "0.190600", - "Timestamp": "2019-10-15T23:53:09.000Z" + "SpotPrice": "12.736500", + "Timestamp": "2024-05-16T05:47:50.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.190600", - "Timestamp": "2019-10-15T23:53:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.465100", + "Timestamp": "2024-05-16T05:47:50.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "z1d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.287100", - "Timestamp": "2019-10-15T23:52:50.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.460100", + "Timestamp": "2024-05-16T05:47:50.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.335100", + "Timestamp": "2024-05-16T05:47:50.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.100400", - "Timestamp": "2019-10-15T23:52:18.000Z" + "SpotPrice": "0.084800", + "Timestamp": "2024-05-16T05:47:49.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.140400", - "Timestamp": "2019-10-15T23:52:18.000Z" + "SpotPrice": "0.081100", + "Timestamp": "2024-05-16T05:47:49.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.040400", - "Timestamp": "2019-10-15T23:52:18.000Z" + "SpotPrice": "0.024800", + "Timestamp": "2024-05-16T05:47:49.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.731700", - "Timestamp": "2019-10-15T23:52:18.000Z" + "SpotPrice": "1.235500", + "Timestamp": "2024-05-16T05:47:48.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.701700", - "Timestamp": "2019-10-15T23:52:18.000Z" + "SpotPrice": "1.230500", + "Timestamp": "2024-05-16T05:47:48.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.601700", - "Timestamp": "2019-10-15T23:52:18.000Z" + "SpotPrice": "1.105500", + "Timestamp": "2024-05-16T05:47:48.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5dn.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.128500", - "Timestamp": "2019-10-15T23:52:08.000Z" + "SpotPrice": "12.764700", + "Timestamp": "2024-05-16T05:47:48.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.128500", - "Timestamp": "2019-10-15T23:52:08.000Z" + "SpotPrice": "2.467300", + "Timestamp": "2024-05-16T05:47:48.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5dn.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096500", - "Timestamp": "2019-10-15T23:52:07.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.057800", + "Timestamp": "2024-05-16T05:47:48.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m4.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096500", - "Timestamp": "2019-10-15T23:52:07.000Z" + "SpotPrice": "1.614400", + "Timestamp": "2024-05-16T05:47:47.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5dn.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m4.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136500", - "Timestamp": "2019-10-15T23:52:07.000Z" + "SpotPrice": "1.584400", + "Timestamp": "2024-05-16T05:47:47.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136500", - "Timestamp": "2019-10-15T23:52:07.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.484400", + "Timestamp": "2024-05-16T05:47:47.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5dn.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036500", - "Timestamp": "2019-10-15T23:52:07.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.003600", + "Timestamp": "2024-05-16T05:47:47.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.759400", + "Timestamp": "2024-05-16T05:47:47.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.754400", + "Timestamp": "2024-05-16T05:47:47.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036500", - "Timestamp": "2019-10-15T23:52:07.000Z" + "SpotPrice": "0.629400", + "Timestamp": "2024-05-16T05:47:47.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.457800", - "Timestamp": "2019-10-15T23:52:01.000Z" + "SpotPrice": "1.123700", + "Timestamp": "2024-05-16T05:47:47.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.118700", + "Timestamp": "2024-05-16T05:47:47.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.993700", + "Timestamp": "2024-05-16T05:47:47.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.457800", - "Timestamp": "2019-10-15T23:52:01.000Z" + "SpotPrice": "4.083500", + "Timestamp": "2024-05-16T05:47:47.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.497800", - "Timestamp": "2019-10-15T23:52:01.000Z" + "SpotPrice": "4.078500", + "Timestamp": "2024-05-16T05:47:47.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.953500", + "Timestamp": "2024-05-16T05:47:47.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.037500", + "Timestamp": "2024-05-16T05:47:47.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.610400", + "Timestamp": "2024-05-16T05:47:47.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.497800", - "Timestamp": "2019-10-15T23:52:01.000Z" + "SpotPrice": "1.605400", + "Timestamp": "2024-05-16T05:47:47.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6gd.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.397800", - "Timestamp": "2019-10-15T23:52:01.000Z" + "SpotPrice": "1.480400", + "Timestamp": "2024-05-16T05:47:47.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "p2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.397800", - "Timestamp": "2019-10-15T23:52:01.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.648800", + "Timestamp": "2024-05-16T05:47:46.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.026100", + "Timestamp": "2024-05-16T05:47:46.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.352700", - "Timestamp": "2019-10-15T23:51:58.000Z" + "SpotPrice": "0.890500", + "Timestamp": "2024-05-16T05:47:46.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c3.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.322700", - "Timestamp": "2019-10-15T23:51:58.000Z" + "SpotPrice": "0.860500", + "Timestamp": "2024-05-16T05:47:46.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c3.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.222700", - "Timestamp": "2019-10-15T23:51:58.000Z" + "SpotPrice": "0.760500", + "Timestamp": "2024-05-16T05:47:46.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.581800", - "Timestamp": "2019-10-15T23:51:58.000Z" + "SpotPrice": "1.138000", + "Timestamp": "2024-05-16T05:47:45.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.581800", - "Timestamp": "2019-10-15T23:51:58.000Z" + "SpotPrice": "0.657900", + "Timestamp": "2024-05-16T05:47:45.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.279900", - "Timestamp": "2019-10-15T23:51:50.000Z" + "SpotPrice": "3.347000", + "Timestamp": "2024-05-16T05:47:44.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.249900", - "Timestamp": "2019-10-15T23:51:50.000Z" + "SpotPrice": "3.342000", + "Timestamp": "2024-05-16T05:47:44.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.149900", - "Timestamp": "2019-10-15T23:51:50.000Z" + "SpotPrice": "3.217000", + "Timestamp": "2024-05-16T05:47:44.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r4.large", "ProductDescription": "Windows", - "SpotPrice": "2.027700", - "Timestamp": "2019-10-15T23:51:50.000Z" + "SpotPrice": "0.152200", + "Timestamp": "2024-05-16T05:47:44.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.metal-48xl", "ProductDescription": "Windows", - "SpotPrice": "2.027700", - "Timestamp": "2019-10-15T23:51:50.000Z" + "SpotPrice": "17.076000", + "Timestamp": "2024-05-16T05:47:43.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.metal-48xl", "ProductDescription": "Windows", - "SpotPrice": "2.027700", - "Timestamp": "2019-10-15T23:51:50.000Z" + "SpotPrice": "12.888700", + "Timestamp": "2024-05-16T05:47:43.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.685700", - "Timestamp": "2019-10-15T23:51:50.000Z" + "SpotPrice": "1.756300", + "Timestamp": "2024-05-16T05:47:43.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.685700", - "Timestamp": "2019-10-15T23:51:50.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.751300", + "Timestamp": "2024-05-16T05:47:43.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.685700", - "Timestamp": "2019-10-15T23:51:50.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.626300", + "Timestamp": "2024-05-16T05:47:43.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.655700", - "Timestamp": "2019-10-15T23:51:50.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.648500", + "Timestamp": "2024-05-16T05:47:43.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.655700", - "Timestamp": "2019-10-15T23:51:50.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.475700", + "Timestamp": "2024-05-16T05:47:43.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.655700", - "Timestamp": "2019-10-15T23:51:50.000Z" + "SpotPrice": "0.470700", + "Timestamp": "2024-05-16T05:47:43.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.555700", - "Timestamp": "2019-10-15T23:51:50.000Z" + "SpotPrice": "0.345700", + "Timestamp": "2024-05-16T05:47:43.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.555700", - "Timestamp": "2019-10-15T23:51:50.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.913800", + "Timestamp": "2024-05-16T05:47:42.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.908800", + "Timestamp": "2024-05-16T05:47:42.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.555700", - "Timestamp": "2019-10-15T23:51:50.000Z" + "SpotPrice": "0.783800", + "Timestamp": "2024-05-16T05:47:42.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.931100", - "Timestamp": "2019-10-15T23:51:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.138000", + "Timestamp": "2024-05-16T05:47:42.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.931100", - "Timestamp": "2019-10-15T23:51:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.175900", + "Timestamp": "2024-05-16T05:47:42.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.931100", - "Timestamp": "2019-10-15T23:51:49.000Z" + "SpotPrice": "3.290000", + "Timestamp": "2024-05-16T05:47:41.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.901100", - "Timestamp": "2019-10-15T23:51:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.321700", + "Timestamp": "2024-05-16T05:47:41.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.901100", - "Timestamp": "2019-10-15T23:51:49.000Z" + "SpotPrice": "3.285000", + "Timestamp": "2024-05-16T05:47:41.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.901100", - "Timestamp": "2019-10-15T23:51:49.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.801100", - "Timestamp": "2019-10-15T23:51:49.000Z" + "SpotPrice": "3.316700", + "Timestamp": "2024-05-16T05:47:41.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.801100", - "Timestamp": "2019-10-15T23:51:49.000Z" + "SpotPrice": "3.160000", + "Timestamp": "2024-05-16T05:47:41.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.801100", - "Timestamp": "2019-10-15T23:51:49.000Z" + "SpotPrice": "3.191700", + "Timestamp": "2024-05-16T05:47:41.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.107000", - "Timestamp": "2019-10-15T23:51:48.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.439100", + "Timestamp": "2024-05-16T05:47:41.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.745100", - "Timestamp": "2019-10-15T23:51:44.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.434100", + "Timestamp": "2024-05-16T05:47:41.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.745100", - "Timestamp": "2019-10-15T23:51:44.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.309100", + "Timestamp": "2024-05-16T05:47:41.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.745100", - "Timestamp": "2019-10-15T23:51:44.000Z" + "SpotPrice": "1.128400", + "Timestamp": "2024-05-16T05:47:40.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iezn.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.131500", - "Timestamp": "2019-10-15T23:51:35.000Z" + "SpotPrice": "1.055900", + "Timestamp": "2024-05-16T05:47:40.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.131500", - "Timestamp": "2019-10-15T23:51:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.740000", + "Timestamp": "2024-05-16T05:47:39.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.131500", - "Timestamp": "2019-10-15T23:51:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.735000", + "Timestamp": "2024-05-16T05:47:39.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.117900", - "Timestamp": "2019-10-15T23:51:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.610000", + "Timestamp": "2024-05-16T05:47:39.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.117900", - "Timestamp": "2019-10-15T23:51:35.000Z" + "SpotPrice": "2.856800", + "Timestamp": "2024-05-16T05:47:39.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.117900", - "Timestamp": "2019-10-15T23:51:35.000Z" + "SpotPrice": "2.821500", + "Timestamp": "2024-05-16T05:47:39.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.157900", - "Timestamp": "2019-10-15T23:51:35.000Z" + "SpotPrice": "2.851800", + "Timestamp": "2024-05-16T05:47:39.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.157900", - "Timestamp": "2019-10-15T23:51:35.000Z" + "SpotPrice": "2.816500", + "Timestamp": "2024-05-16T05:47:39.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.157900", - "Timestamp": "2019-10-15T23:51:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.726800", + "Timestamp": "2024-05-16T05:47:39.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.057900", - "Timestamp": "2019-10-15T23:51:35.000Z" + "SpotPrice": "2.691500", + "Timestamp": "2024-05-16T05:47:39.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.057900", - "Timestamp": "2019-10-15T23:51:35.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132200", + "Timestamp": "2024-05-16T05:47:38.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.057900", - "Timestamp": "2019-10-15T23:51:35.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128500", + "Timestamp": "2024-05-16T05:47:38.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.001200", - "Timestamp": "2019-10-15T23:50:50.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072200", + "Timestamp": "2024-05-16T05:47:38.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.001200", - "Timestamp": "2019-10-15T23:50:50.000Z" + "SpotPrice": "12.513400", + "Timestamp": "2024-05-16T05:47:38.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.395200", - "Timestamp": "2019-10-15T23:50:50.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.267800", + "Timestamp": "2024-05-16T05:47:37.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.398300", - "Timestamp": "2019-10-15T23:50:50.000Z" + "SpotPrice": "0.972600", + "Timestamp": "2024-05-16T05:47:37.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.365200", - "Timestamp": "2019-10-15T23:50:50.000Z" + "SpotPrice": "0.967600", + "Timestamp": "2024-05-16T05:47:37.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.368300", - "Timestamp": "2019-10-15T23:50:50.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.842600", + "Timestamp": "2024-05-16T05:47:37.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.265200", - "Timestamp": "2019-10-15T23:50:50.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099700", + "Timestamp": "2024-05-16T05:47:36.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.268300", - "Timestamp": "2019-10-15T23:50:50.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T05:47:36.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.256600", - "Timestamp": "2019-10-15T23:43:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039700", + "Timestamp": "2024-05-16T05:47:36.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.372000", - "Timestamp": "2019-10-15T23:43:48.000Z" + "SpotPrice": "8.165100", + "Timestamp": "2024-05-16T05:47:36.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.290300", - "Timestamp": "2019-10-15T23:43:34.000Z" + "SpotPrice": "0.531000", + "Timestamp": "2024-05-16T05:47:36.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.260300", - "Timestamp": "2019-10-15T23:43:34.000Z" + "SpotPrice": "0.526000", + "Timestamp": "2024-05-16T05:47:36.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.160300", - "Timestamp": "2019-10-15T23:43:34.000Z" + "SpotPrice": "0.401000", + "Timestamp": "2024-05-16T05:47:36.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.869700", - "Timestamp": "2019-10-15T23:43:34.000Z" + "SpotPrice": "2.939800", + "Timestamp": "2024-05-16T05:47:36.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.839700", - "Timestamp": "2019-10-15T23:43:34.000Z" + "SpotPrice": "2.934800", + "Timestamp": "2024-05-16T05:47:36.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.739700", - "Timestamp": "2019-10-15T23:43:34.000Z" + "SpotPrice": "2.809800", + "Timestamp": "2024-05-16T05:47:36.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5dn.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.892700", + "Timestamp": "2024-05-16T05:47:35.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2gd.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.269200", - "Timestamp": "2019-10-15T23:40:18.000Z" + "SpotPrice": "0.840200", + "Timestamp": "2024-05-16T05:47:35.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5dn.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2gd.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.239200", - "Timestamp": "2019-10-15T23:40:18.000Z" + "SpotPrice": "0.835200", + "Timestamp": "2024-05-16T05:47:35.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5dn.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.139200", - "Timestamp": "2019-10-15T23:40:18.000Z" + "SpotPrice": "0.710200", + "Timestamp": "2024-05-16T05:47:35.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.098200", - "Timestamp": "2019-10-15T23:35:59.000Z" + "SpotPrice": "6.693600", + "Timestamp": "2024-05-16T05:47:34.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.138200", - "Timestamp": "2019-10-15T23:35:59.000Z" + "SpotPrice": "6.688600", + "Timestamp": "2024-05-16T05:47:34.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.038200", - "Timestamp": "2019-10-15T23:35:59.000Z" + "SpotPrice": "6.563600", + "Timestamp": "2024-05-16T05:47:34.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.metal-32xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.140400", - "Timestamp": "2019-10-15T23:35:38.000Z" + "SpotPrice": "5.834700", + "Timestamp": "2024-05-16T05:47:33.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.metal-32xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.180400", - "Timestamp": "2019-10-15T23:35:38.000Z" + "SpotPrice": "5.829700", + "Timestamp": "2024-05-16T05:47:33.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.metal-32xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.080400", - "Timestamp": "2019-10-15T23:35:38.000Z" - }, - { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.546800", - "Timestamp": "2019-10-15T23:35:37.000Z" + "SpotPrice": "5.704700", + "Timestamp": "2024-05-16T05:47:33.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.398400", - "Timestamp": "2019-10-15T23:35:32.000Z" + "SpotPrice": "0.497700", + "Timestamp": "2024-05-16T05:47:33.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5g.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.368400", - "Timestamp": "2019-10-15T23:35:32.000Z" + "SpotPrice": "0.492700", + "Timestamp": "2024-05-16T05:47:33.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.268400", - "Timestamp": "2019-10-15T23:35:32.000Z" - }, - { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.271400", - "Timestamp": "2019-10-15T23:35:24.000Z" + "SpotPrice": "0.367700", + "Timestamp": "2024-05-16T05:47:33.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6gd.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.100400", - "Timestamp": "2019-10-15T23:35:07.000Z" + "SpotPrice": "0.080700", + "Timestamp": "2024-05-16T05:47:33.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6gd.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.140400", - "Timestamp": "2019-10-15T23:35:07.000Z" + "SpotPrice": "0.051700", + "Timestamp": "2024-05-16T05:47:33.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6gd.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.040400", - "Timestamp": "2019-10-15T23:35:07.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.507200", - "Timestamp": "2019-10-15T23:29:14.000Z" + "SpotPrice": "0.020700", + "Timestamp": "2024-05-16T05:47:33.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.large", "ProductDescription": "Windows", - "SpotPrice": "0.507200", - "Timestamp": "2019-10-15T23:29:14.000Z" + "SpotPrice": "0.140900", + "Timestamp": "2024-05-16T05:47:33.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.large", "ProductDescription": "Windows", - "SpotPrice": "0.507200", - "Timestamp": "2019-10-15T23:29:14.000Z" + "SpotPrice": "0.135000", + "Timestamp": "2024-05-16T05:47:32.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.285700", - "Timestamp": "2019-10-15T23:27:29.000Z" + "SpotPrice": "0.126900", + "Timestamp": "2024-05-16T05:47:31.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.255700", - "Timestamp": "2019-10-15T23:27:29.000Z" + "SpotPrice": "0.166900", + "Timestamp": "2024-05-16T05:47:31.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.155700", - "Timestamp": "2019-10-15T23:27:29.000Z" + "SpotPrice": "0.066900", + "Timestamp": "2024-05-16T05:47:31.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.597000", - "Timestamp": "2019-10-15T23:27:00.000Z" + "SpotPrice": "0.180400", + "Timestamp": "2024-05-16T05:47:30.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.567000", - "Timestamp": "2019-10-15T23:27:00.000Z" + "SpotPrice": "0.176700", + "Timestamp": "2024-05-16T05:47:30.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.467000", - "Timestamp": "2019-10-15T23:27:00.000Z" + "SpotPrice": "0.120400", + "Timestamp": "2024-05-16T05:47:30.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.420200", - "Timestamp": "2019-10-15T23:26:39.000Z" + "SpotPrice": "1.198600", + "Timestamp": "2024-05-16T05:47:30.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.390200", - "Timestamp": "2019-10-15T23:26:39.000Z" + "SpotPrice": "1.193600", + "Timestamp": "2024-05-16T05:47:30.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.290200", - "Timestamp": "2019-10-15T23:26:39.000Z" + "SpotPrice": "1.068600", + "Timestamp": "2024-05-16T05:47:30.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.655600", - "Timestamp": "2019-10-15T23:26:38.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.958500", + "Timestamp": "2024-05-16T05:47:29.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i-flex.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132900", - "Timestamp": "2019-10-15T23:20:29.000Z" + "SpotPrice": "1.213000", + "Timestamp": "2024-05-16T05:47:29.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i-flex.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172900", - "Timestamp": "2019-10-15T23:20:29.000Z" + "SpotPrice": "0.953500", + "Timestamp": "2024-05-16T05:47:29.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072900", - "Timestamp": "2019-10-15T23:20:29.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.645600", - "Timestamp": "2019-10-15T23:19:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.208000", + "Timestamp": "2024-05-16T05:47:29.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c4.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.615600", - "Timestamp": "2019-10-15T23:19:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.828500", + "Timestamp": "2024-05-16T05:47:29.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i-flex.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.515600", - "Timestamp": "2019-10-15T23:19:29.000Z" + "SpotPrice": "1.083000", + "Timestamp": "2024-05-16T05:47:29.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.153000", - "Timestamp": "2019-10-15T23:18:57.000Z" + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T05:47:29.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.193000", - "Timestamp": "2019-10-15T23:18:57.000Z" + "SpotPrice": "0.112900", + "Timestamp": "2024-05-16T05:47:29.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-15T23:18:57.000Z" + "SpotPrice": "0.056600", + "Timestamp": "2024-05-16T05:47:29.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.551100", + "Timestamp": "2024-05-16T05:47:27.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4ad.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132200", - "Timestamp": "2019-10-15T23:18:48.000Z" + "SpotPrice": "0.586700", + "Timestamp": "2024-05-16T05:47:27.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4ad.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172200", - "Timestamp": "2019-10-15T23:18:48.000Z" + "SpotPrice": "0.581700", + "Timestamp": "2024-05-16T05:47:27.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4ad.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072200", - "Timestamp": "2019-10-15T23:18:48.000Z" + "SpotPrice": "0.456700", + "Timestamp": "2024-05-16T05:47:27.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.254400", - "Timestamp": "2019-10-15T23:18:33.000Z" + "SpotPrice": "2.992800", + "Timestamp": "2024-05-16T05:47:27.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.294400", - "Timestamp": "2019-10-15T23:18:33.000Z" + "SpotPrice": "2.987800", + "Timestamp": "2024-05-16T05:47:27.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.194400", - "Timestamp": "2019-10-15T23:18:33.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.511900", - "Timestamp": "2019-10-15T23:10:53.000Z" + "SpotPrice": "2.862800", + "Timestamp": "2024-05-16T05:47:27.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.210800", - "Timestamp": "2019-10-15T23:10:33.000Z" + "SpotPrice": "3.368700", + "Timestamp": "2024-05-16T05:47:27.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5n.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.296800", - "Timestamp": "2019-10-15T23:10:29.000Z" + "SpotPrice": "0.579500", + "Timestamp": "2024-05-16T05:47:27.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5n.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.336800", - "Timestamp": "2019-10-15T23:10:29.000Z" + "SpotPrice": "0.574500", + "Timestamp": "2024-05-16T05:47:27.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5n.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.236800", - "Timestamp": "2019-10-15T23:10:29.000Z" + "SpotPrice": "0.449500", + "Timestamp": "2024-05-16T05:47:27.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.343300", - "Timestamp": "2019-10-15T23:10:24.000Z" + "SpotPrice": "0.320100", + "Timestamp": "2024-05-16T05:47:27.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.313300", - "Timestamp": "2019-10-15T23:10:24.000Z" + "SpotPrice": "0.315100", + "Timestamp": "2024-05-16T05:47:27.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.213300", - "Timestamp": "2019-10-15T23:10:24.000Z" - }, - { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.965500", - "Timestamp": "2019-10-15T23:06:01.000Z" + "SpotPrice": "0.190100", + "Timestamp": "2024-05-16T05:47:27.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "d2.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.965500", - "Timestamp": "2019-10-15T23:06:01.000Z" - }, - { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.935500", - "Timestamp": "2019-10-15T23:06:01.000Z" + "SpotPrice": "1.182500", + "Timestamp": "2024-05-16T05:47:26.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "d2.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.935500", - "Timestamp": "2019-10-15T23:06:01.000Z" - }, - { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.835500", - "Timestamp": "2019-10-15T23:06:01.000Z" + "SpotPrice": "1.152500", + "Timestamp": "2024-05-16T05:47:26.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "d2.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.835500", - "Timestamp": "2019-10-15T23:06:01.000Z" + "SpotPrice": "1.052500", + "Timestamp": "2024-05-16T05:47:26.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4ad.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.198700", - "Timestamp": "2019-10-15T23:02:40.000Z" + "SpotPrice": "4.416800", + "Timestamp": "2024-05-16T05:47:26.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.175200", - "Timestamp": "2019-10-15T23:02:28.000Z" + "SpotPrice": "0.210000", + "Timestamp": "2024-05-16T05:47:25.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.215200", - "Timestamp": "2019-10-15T23:02:28.000Z" + "SpotPrice": "0.206300", + "Timestamp": "2024-05-16T05:47:25.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.115200", - "Timestamp": "2019-10-15T23:02:28.000Z" + "SpotPrice": "0.150000", + "Timestamp": "2024-05-16T05:47:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c4.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.262900", - "Timestamp": "2019-10-15T23:02:06.000Z" + "SpotPrice": "0.348500", + "Timestamp": "2024-05-16T05:47:24.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c4.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.232900", - "Timestamp": "2019-10-15T23:02:06.000Z" + "SpotPrice": "0.318500", + "Timestamp": "2024-05-16T05:47:24.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c4.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.132900", - "Timestamp": "2019-10-15T23:02:06.000Z" + "SpotPrice": "0.218500", + "Timestamp": "2024-05-16T05:47:24.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097100", - "Timestamp": "2019-10-15T23:01:33.000Z" + "SpotPrice": "0.167300", + "Timestamp": "2024-05-16T05:47:24.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137100", - "Timestamp": "2019-10-15T23:01:33.000Z" + "SpotPrice": "0.163600", + "Timestamp": "2024-05-16T05:47:24.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037100", - "Timestamp": "2019-10-15T23:01:33.000Z" + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T05:47:24.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.283500", + "Timestamp": "2024-05-16T05:47:24.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.322100", + "Timestamp": "2024-05-16T05:47:24.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.142700", - "Timestamp": "2019-10-15T23:01:33.000Z" + "SpotPrice": "1.040300", + "Timestamp": "2024-05-16T05:47:24.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4g.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.182700", - "Timestamp": "2019-10-15T23:01:33.000Z" + "SpotPrice": "1.035300", + "Timestamp": "2024-05-16T05:47:24.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.082700", - "Timestamp": "2019-10-15T23:01:33.000Z" + "SpotPrice": "0.910300", + "Timestamp": "2024-05-16T05:47:24.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.020200", - "Timestamp": "2019-10-15T22:54:03.000Z" + "SpotPrice": "0.602000", + "Timestamp": "2024-05-16T05:47:24.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.990200", - "Timestamp": "2019-10-15T22:54:03.000Z" + "SpotPrice": "0.597000", + "Timestamp": "2024-05-16T05:47:24.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.890200", - "Timestamp": "2019-10-15T22:54:03.000Z" + "SpotPrice": "0.472000", + "Timestamp": "2024-05-16T05:47:24.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5n.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.571400", + "Timestamp": "2024-05-16T05:47:23.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095200", - "Timestamp": "2019-10-15T22:54:02.000Z" + "SpotPrice": "0.977600", + "Timestamp": "2024-05-16T05:47:23.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5n.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135200", - "Timestamp": "2019-10-15T22:54:02.000Z" + "SpotPrice": "0.972600", + "Timestamp": "2024-05-16T05:47:23.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5n.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035200", - "Timestamp": "2019-10-15T22:54:02.000Z" + "SpotPrice": "0.847600", + "Timestamp": "2024-05-16T05:47:23.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.447600", + "Timestamp": "2024-05-16T05:47:23.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091800", - "Timestamp": "2019-10-15T22:54:00.000Z" + "SpotPrice": "0.448900", + "Timestamp": "2024-05-16T05:47:23.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.131800", - "Timestamp": "2019-10-15T22:54:00.000Z" + "SpotPrice": "0.443900", + "Timestamp": "2024-05-16T05:47:23.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031800", - "Timestamp": "2019-10-15T22:54:00.000Z" + "SpotPrice": "0.318900", + "Timestamp": "2024-05-16T05:47:23.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "p2.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.396100", - "Timestamp": "2019-10-15T22:53:49.000Z" + "SpotPrice": "7.812600", + "Timestamp": "2024-05-16T05:47:22.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "p2.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.366100", - "Timestamp": "2019-10-15T22:53:49.000Z" + "SpotPrice": "7.782600", + "Timestamp": "2024-05-16T05:47:22.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "p2.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.266100", - "Timestamp": "2019-10-15T22:53:49.000Z" + "SpotPrice": "7.682600", + "Timestamp": "2024-05-16T05:47:22.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.250900", - "Timestamp": "2019-10-15T22:52:38.000Z" + "SpotPrice": "6.707600", + "Timestamp": "2024-05-16T05:47:21.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "m3.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.250900", - "Timestamp": "2019-10-15T22:52:38.000Z" + "SpotPrice": "0.716100", + "Timestamp": "2024-05-16T05:47:20.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.505600", - "Timestamp": "2019-10-15T22:52:36.000Z" + "SpotPrice": "8.688900", + "Timestamp": "2024-05-16T05:47:20.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.505600", - "Timestamp": "2019-10-15T22:52:36.000Z" + "SpotPrice": "3.430900", + "Timestamp": "2024-05-16T05:47:19.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.233700", - "Timestamp": "2019-10-15T22:52:12.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.757500", + "Timestamp": "2024-05-16T05:47:19.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.100800", + "Timestamp": "2024-05-16T05:47:19.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.019800", + "Timestamp": "2024-05-16T05:47:19.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.436800", + "Timestamp": "2024-05-16T05:47:18.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m3.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.233700", - "Timestamp": "2019-10-15T22:52:12.000Z" + "SpotPrice": "0.119800", + "Timestamp": "2024-05-16T05:47:17.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m3.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.203700", - "Timestamp": "2019-10-15T22:52:12.000Z" + "SpotPrice": "0.159800", + "Timestamp": "2024-05-16T05:47:17.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059800", + "Timestamp": "2024-05-16T05:47:17.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.212700", + "Timestamp": "2024-05-16T05:47:16.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.metal-48xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.203700", - "Timestamp": "2019-10-15T22:52:12.000Z" + "SpotPrice": "6.207700", + "Timestamp": "2024-05-16T05:47:16.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.103700", - "Timestamp": "2019-10-15T22:52:12.000Z" + "SpotPrice": "6.082700", + "Timestamp": "2024-05-16T05:47:16.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.103700", - "Timestamp": "2019-10-15T22:52:12.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.534100", + "Timestamp": "2024-05-16T05:47:16.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.323600", - "Timestamp": "2019-10-15T22:52:03.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.155100", + "Timestamp": "2024-05-16T05:47:16.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.323600", - "Timestamp": "2019-10-15T22:52:03.000Z" + "SpotPrice": "0.176100", + "Timestamp": "2024-05-16T05:47:15.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.293600", - "Timestamp": "2019-10-15T22:52:03.000Z" + "SpotPrice": "0.172400", + "Timestamp": "2024-05-16T05:47:15.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116100", + "Timestamp": "2024-05-16T05:47:15.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105500", + "Timestamp": "2024-05-16T05:47:14.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i-flex.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.293600", - "Timestamp": "2019-10-15T22:52:03.000Z" + "SpotPrice": "0.101800", + "Timestamp": "2024-05-16T05:47:14.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i-flex.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.193600", - "Timestamp": "2019-10-15T22:52:03.000Z" + "SpotPrice": "0.045500", + "Timestamp": "2024-05-16T05:47:14.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.193600", - "Timestamp": "2019-10-15T22:52:03.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.217800", + "Timestamp": "2024-05-16T05:47:14.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.055500", - "Timestamp": "2019-10-15T22:51:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.214100", + "Timestamp": "2024-05-16T05:47:14.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157800", + "Timestamp": "2024-05-16T05:47:14.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.055500", - "Timestamp": "2019-10-15T22:51:57.000Z" + "SpotPrice": "5.028100", + "Timestamp": "2024-05-16T05:47:14.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.055500", - "Timestamp": "2019-10-15T22:51:57.000Z" + "SpotPrice": "4.512800", + "Timestamp": "2024-05-16T05:47:14.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.713500", - "Timestamp": "2019-10-15T22:51:54.000Z" + "SpotPrice": "0.293900", + "Timestamp": "2024-05-16T05:47:14.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.713500", - "Timestamp": "2019-10-15T22:51:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.288900", + "Timestamp": "2024-05-16T05:47:14.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.163900", + "Timestamp": "2024-05-16T05:47:14.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.713500", - "Timestamp": "2019-10-15T22:51:54.000Z" + "SpotPrice": "0.274900", + "Timestamp": "2024-05-16T05:47:13.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.683500", - "Timestamp": "2019-10-15T22:51:54.000Z" + "SpotPrice": "0.269900", + "Timestamp": "2024-05-16T05:47:13.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.683500", - "Timestamp": "2019-10-15T22:51:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144900", + "Timestamp": "2024-05-16T05:47:13.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.856200", + "Timestamp": "2024-05-16T05:47:13.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c4.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.683500", - "Timestamp": "2019-10-15T22:51:54.000Z" + "SpotPrice": "0.826200", + "Timestamp": "2024-05-16T05:47:13.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c4.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.583500", - "Timestamp": "2019-10-15T22:51:54.000Z" + "SpotPrice": "0.726200", + "Timestamp": "2024-05-16T05:47:13.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.583500", - "Timestamp": "2019-10-15T22:51:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119100", + "Timestamp": "2024-05-16T05:47:13.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159100", + "Timestamp": "2024-05-16T05:47:13.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c1.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.583500", - "Timestamp": "2019-10-15T22:51:54.000Z" + "SpotPrice": "0.059100", + "Timestamp": "2024-05-16T05:47:13.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.361600", - "Timestamp": "2019-10-15T22:51:52.000Z" + "SpotPrice": "0.108800", + "Timestamp": "2024-05-16T05:47:13.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.361600", - "Timestamp": "2019-10-15T22:51:52.000Z" + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T05:47:13.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.331600", - "Timestamp": "2019-10-15T22:51:52.000Z" + "SpotPrice": "0.105100", + "Timestamp": "2024-05-16T05:47:13.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.331600", - "Timestamp": "2019-10-15T22:51:52.000Z" + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T05:47:13.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.231600", - "Timestamp": "2019-10-15T22:51:52.000Z" + "SpotPrice": "0.048800", + "Timestamp": "2024-05-16T05:47:13.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.231600", - "Timestamp": "2019-10-15T22:51:52.000Z" + "SpotPrice": "0.045800", + "Timestamp": "2024-05-16T05:47:13.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.244000", - "Timestamp": "2019-10-15T22:51:49.000Z" + "SpotPrice": "0.226600", + "Timestamp": "2024-05-16T05:47:11.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.609100", - "Timestamp": "2019-10-15T22:51:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266600", + "Timestamp": "2024-05-16T05:47:11.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.482000", - "Timestamp": "2019-10-15T22:51:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.166600", + "Timestamp": "2024-05-16T05:47:11.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.214000", - "Timestamp": "2019-10-15T22:51:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.308200", + "Timestamp": "2024-05-16T05:47:11.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.579100", - "Timestamp": "2019-10-15T22:51:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.134500", + "Timestamp": "2024-05-16T05:47:10.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360700", + "Timestamp": "2024-05-16T05:47:10.000Z" + }, + { + "AvailabilityZone": "us-east-1e", + "InstanceType": "c3.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "4.452000", - "Timestamp": "2019-10-15T22:51:49.000Z" + "SpotPrice": "0.330700", + "Timestamp": "2024-05-16T05:47:10.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "c3.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.114000", - "Timestamp": "2019-10-15T22:51:49.000Z" + "SpotPrice": "0.230700", + "Timestamp": "2024-05-16T05:47:10.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.479100", - "Timestamp": "2019-10-15T22:51:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.957700", + "Timestamp": "2024-05-16T05:47:05.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.927700", + "Timestamp": "2024-05-16T05:47:05.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.9xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.352000", - "Timestamp": "2019-10-15T22:51:49.000Z" + "SpotPrice": "0.827700", + "Timestamp": "2024-05-16T05:47:05.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.029000", - "Timestamp": "2019-10-15T22:51:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110900", + "Timestamp": "2024-05-16T05:47:04.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.029000", - "Timestamp": "2019-10-15T22:51:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-16T05:47:04.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.029000", - "Timestamp": "2019-10-15T22:51:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050900", + "Timestamp": "2024-05-16T05:47:04.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.058000", - "Timestamp": "2019-10-15T22:51:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.473200", + "Timestamp": "2024-05-16T05:47:04.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.427900", - "Timestamp": "2019-10-15T22:51:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.468200", + "Timestamp": "2024-05-16T05:47:04.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "7.296000", - "Timestamp": "2019-10-15T22:51:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.343200", + "Timestamp": "2024-05-16T05:47:04.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.687000", - "Timestamp": "2019-10-15T22:51:49.000Z" + "SpotPrice": "0.169100", + "Timestamp": "2024-05-16T05:47:03.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.687000", - "Timestamp": "2019-10-15T22:51:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165100", + "Timestamp": "2024-05-16T05:47:03.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109100", + "Timestamp": "2024-05-16T05:47:03.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.687000", - "Timestamp": "2019-10-15T22:51:49.000Z" + "SpotPrice": "0.095700", + "Timestamp": "2024-05-16T05:47:02.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.657000", - "Timestamp": "2019-10-15T22:51:49.000Z" + "SpotPrice": "0.092000", + "Timestamp": "2024-05-16T05:47:02.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.657000", - "Timestamp": "2019-10-15T22:51:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035700", + "Timestamp": "2024-05-16T05:47:02.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.469300", + "Timestamp": "2024-05-16T05:47:02.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "im4gn.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.657000", - "Timestamp": "2019-10-15T22:51:49.000Z" + "SpotPrice": "2.464300", + "Timestamp": "2024-05-16T05:47:02.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "im4gn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.557000", - "Timestamp": "2019-10-15T22:51:49.000Z" + "SpotPrice": "2.339300", + "Timestamp": "2024-05-16T05:47:02.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.557000", - "Timestamp": "2019-10-15T22:51:49.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147900", + "Timestamp": "2024-05-16T05:47:01.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.187900", + "Timestamp": "2024-05-16T05:47:01.000Z" + }, + { + "AvailabilityZone": "us-east-1e", + "InstanceType": "c4.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.557000", - "Timestamp": "2019-10-15T22:51:49.000Z" + "SpotPrice": "0.087900", + "Timestamp": "2024-05-16T05:47:01.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.365600", - "Timestamp": "2019-10-15T22:51:43.000Z" + "SpotPrice": "8.099100", + "Timestamp": "2024-05-16T05:47:00.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.365600", - "Timestamp": "2019-10-15T22:51:43.000Z" + "SpotPrice": "7.428800", + "Timestamp": "2024-05-16T05:47:00.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.576400", - "Timestamp": "2019-10-15T22:51:19.000Z" + "SpotPrice": "2.676700", + "Timestamp": "2024-05-16T05:47:00.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.576400", - "Timestamp": "2019-10-15T22:51:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.671700", + "Timestamp": "2024-05-16T05:47:00.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.576400", - "Timestamp": "2019-10-15T22:51:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.546700", + "Timestamp": "2024-05-16T05:47:00.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.546400", - "Timestamp": "2019-10-15T22:51:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.474700", + "Timestamp": "2024-05-16T05:46:56.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.546400", - "Timestamp": "2019-10-15T22:51:19.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.110300", + "Timestamp": "2024-05-16T05:33:40.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.095300", + "Timestamp": "2024-05-16T05:33:40.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.635400", + "Timestamp": "2024-05-16T05:33:29.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4g.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.546400", - "Timestamp": "2019-10-15T22:51:19.000Z" + "SpotPrice": "0.630400", + "Timestamp": "2024-05-16T05:33:29.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.446400", - "Timestamp": "2019-10-15T22:51:19.000Z" + "SpotPrice": "0.505400", + "Timestamp": "2024-05-16T05:33:29.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.446400", - "Timestamp": "2019-10-15T22:51:19.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.227500", + "Timestamp": "2024-05-16T05:33:25.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.446400", - "Timestamp": "2019-10-15T22:51:19.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267500", + "Timestamp": "2024-05-16T05:33:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.182400", - "Timestamp": "2019-10-15T22:51:19.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167500", + "Timestamp": "2024-05-16T05:33:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.182400", - "Timestamp": "2019-10-15T22:51:19.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.007300", + "Timestamp": "2024-05-16T05:33:25.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.182400", - "Timestamp": "2019-10-15T22:51:19.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.002300", + "Timestamp": "2024-05-16T05:33:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.043500", - "Timestamp": "2019-10-15T22:50:50.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.877300", + "Timestamp": "2024-05-16T05:33:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.043500", - "Timestamp": "2019-10-15T22:50:50.000Z" + "SpotPrice": "4.139800", + "Timestamp": "2024-05-16T05:33:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.965500", - "Timestamp": "2019-10-15T22:50:50.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "16.190700", + "Timestamp": "2024-05-16T05:33:20.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.965500", - "Timestamp": "2019-10-15T22:50:50.000Z" + "SpotPrice": "1.751200", + "Timestamp": "2024-05-16T05:33:20.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.935500", - "Timestamp": "2019-10-15T22:50:50.000Z" + "SpotPrice": "1.746200", + "Timestamp": "2024-05-16T05:33:20.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.935500", - "Timestamp": "2019-10-15T22:50:50.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.621200", + "Timestamp": "2024-05-16T05:33:20.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.835500", - "Timestamp": "2019-10-15T22:50:50.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.648200", + "Timestamp": "2024-05-16T05:33:20.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.835500", - "Timestamp": "2019-10-15T22:50:50.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.618200", + "Timestamp": "2024-05-16T05:33:20.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.043500", - "Timestamp": "2019-10-15T22:47:23.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.518200", + "Timestamp": "2024-05-16T05:33:20.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097100", - "Timestamp": "2019-10-15T22:45:58.000Z" + "SpotPrice": "4.100000", + "Timestamp": "2024-05-16T05:33:20.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137100", - "Timestamp": "2019-10-15T22:45:58.000Z" + "SpotPrice": "4.095000", + "Timestamp": "2024-05-16T05:33:20.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037100", - "Timestamp": "2019-10-15T22:45:58.000Z" + "SpotPrice": "3.970000", + "Timestamp": "2024-05-16T05:33:20.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3en.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.825200", - "Timestamp": "2019-10-15T22:45:54.000Z" + "SpotPrice": "1.630500", + "Timestamp": "2024-05-16T05:33:20.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.424500", - "Timestamp": "2019-10-15T22:45:17.000Z" + "SpotPrice": "2.522300", + "Timestamp": "2024-05-16T05:33:18.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.394500", - "Timestamp": "2019-10-15T22:45:17.000Z" + "SpotPrice": "2.517300", + "Timestamp": "2024-05-16T05:33:18.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2gd.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.294500", - "Timestamp": "2019-10-15T22:45:17.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.828300", - "Timestamp": "2019-10-15T22:36:59.000Z" + "SpotPrice": "2.392300", + "Timestamp": "2024-05-16T05:33:18.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.metal-48xl", "ProductDescription": "Windows", - "SpotPrice": "0.257200", - "Timestamp": "2019-10-15T22:36:57.000Z" + "SpotPrice": "10.936800", + "Timestamp": "2024-05-16T05:33:18.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.metal-48xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.910800", - "Timestamp": "2019-10-15T22:36:51.000Z" + "SpotPrice": "4.555600", + "Timestamp": "2024-05-16T05:33:17.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.metal-48xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.880800", - "Timestamp": "2019-10-15T22:36:51.000Z" + "SpotPrice": "4.550600", + "Timestamp": "2024-05-16T05:33:17.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.780800", - "Timestamp": "2019-10-15T22:36:51.000Z" + "SpotPrice": "4.425600", + "Timestamp": "2024-05-16T05:33:17.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "13.400000", + "Timestamp": "2024-05-16T05:33:16.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.137800", - "Timestamp": "2019-10-15T22:29:05.000Z" + "SpotPrice": "1.595000", + "Timestamp": "2024-05-16T05:33:14.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.177800", - "Timestamp": "2019-10-15T22:29:05.000Z" + "SpotPrice": "1.590000", + "Timestamp": "2024-05-16T05:33:14.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.077800", - "Timestamp": "2019-10-15T22:29:05.000Z" + "SpotPrice": "1.465000", + "Timestamp": "2024-05-16T05:33:14.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.228000", + "Timestamp": "2024-05-16T05:33:12.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.130200", - "Timestamp": "2019-10-15T22:29:02.000Z" + "SpotPrice": "3.927900", + "Timestamp": "2024-05-16T05:33:11.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.170200", - "Timestamp": "2019-10-15T22:29:02.000Z" + "SpotPrice": "3.922900", + "Timestamp": "2024-05-16T05:33:11.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.070200", - "Timestamp": "2019-10-15T22:29:02.000Z" + "SpotPrice": "3.797900", + "Timestamp": "2024-05-16T05:33:11.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.440300", - "Timestamp": "2019-10-15T22:29:01.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.466300", + "Timestamp": "2024-05-16T05:33:11.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.410300", - "Timestamp": "2019-10-15T22:29:01.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.240400", + "Timestamp": "2024-05-16T05:33:11.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.310300", - "Timestamp": "2019-10-15T22:29:01.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.775900", + "Timestamp": "2024-05-16T05:33:11.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.884200", - "Timestamp": "2019-10-15T22:28:51.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.359800", + "Timestamp": "2024-05-16T05:33:11.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.854200", - "Timestamp": "2019-10-15T22:28:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.337300", + "Timestamp": "2024-05-16T05:33:11.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.754200", - "Timestamp": "2019-10-15T22:28:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.828300", + "Timestamp": "2024-05-16T05:33:10.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.729600", - "Timestamp": "2019-10-15T22:28:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.406400", + "Timestamp": "2024-05-16T05:33:10.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.9xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.699600", - "Timestamp": "2019-10-15T22:28:51.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.131700", + "Timestamp": "2024-05-16T05:33:08.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.599600", - "Timestamp": "2019-10-15T22:28:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.780500", + "Timestamp": "2024-05-16T05:33:07.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.061000", - "Timestamp": "2019-10-15T22:28:31.000Z" + "SpotPrice": "3.738100", + "Timestamp": "2024-05-16T05:33:07.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.031000", - "Timestamp": "2019-10-15T22:28:31.000Z" + "SpotPrice": "3.733100", + "Timestamp": "2024-05-16T05:33:07.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.931000", - "Timestamp": "2019-10-15T22:28:31.000Z" + "SpotPrice": "3.608100", + "Timestamp": "2024-05-16T05:33:07.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.large", "ProductDescription": "Windows", - "SpotPrice": "5.781100", - "Timestamp": "2019-10-15T22:20:59.000Z" + "SpotPrice": "0.135100", + "Timestamp": "2024-05-16T05:33:07.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.970700", - "Timestamp": "2019-10-15T22:20:29.000Z" + "SpotPrice": "1.153500", + "Timestamp": "2024-05-16T05:33:07.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g3.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.940700", - "Timestamp": "2019-10-15T22:20:29.000Z" + "SpotPrice": "1.123500", + "Timestamp": "2024-05-16T05:33:07.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g3.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.840700", - "Timestamp": "2019-10-15T22:20:29.000Z" + "SpotPrice": "1.023500", + "Timestamp": "2024-05-16T05:33:07.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.400200", - "Timestamp": "2019-10-15T22:20:29.000Z" + "SpotPrice": "2.476700", + "Timestamp": "2024-05-16T05:33:06.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.370200", - "Timestamp": "2019-10-15T22:20:29.000Z" + "SpotPrice": "2.471700", + "Timestamp": "2024-05-16T05:33:06.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.270200", - "Timestamp": "2019-10-15T22:20:29.000Z" + "SpotPrice": "2.346700", + "Timestamp": "2024-05-16T05:33:06.000Z" }, { - "AvailabilityZone": "eu-central-1a", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.554000", + "Timestamp": "2024-05-16T05:33:06.000Z" + }, + { + "AvailabilityZone": "us-east-1f", "InstanceType": "r5ad.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.372600", - "Timestamp": "2019-10-15T22:20:15.000Z" + "SpotPrice": "0.282700", + "Timestamp": "2024-05-16T05:33:05.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.185100", + "Timestamp": "2024-05-16T05:33:04.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.301000", + "Timestamp": "2024-05-16T05:33:04.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.141100", - "Timestamp": "2019-10-15T22:20:05.000Z" + "SpotPrice": "0.126800", + "Timestamp": "2024-05-16T05:33:02.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.181100", - "Timestamp": "2019-10-15T22:20:05.000Z" + "SpotPrice": "0.122800", + "Timestamp": "2024-05-16T05:33:02.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.081100", - "Timestamp": "2019-10-15T22:20:05.000Z" + "SpotPrice": "0.066800", + "Timestamp": "2024-05-16T05:33:02.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.927600", - "Timestamp": "2019-10-15T22:12:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.127400", + "Timestamp": "2024-05-16T05:33:02.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.897600", - "Timestamp": "2019-10-15T22:12:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.572900", + "Timestamp": "2024-05-16T05:33:02.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.797600", - "Timestamp": "2019-10-15T22:12:09.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.320400", + "Timestamp": "2024-05-16T05:33:01.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.118700", - "Timestamp": "2019-10-15T22:11:58.000Z" + "SpotPrice": "2.080900", + "Timestamp": "2024-05-16T05:33:01.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.158700", - "Timestamp": "2019-10-15T22:11:58.000Z" + "SpotPrice": "2.075900", + "Timestamp": "2024-05-16T05:33:01.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.058700", - "Timestamp": "2019-10-15T22:11:58.000Z" + "SpotPrice": "1.950900", + "Timestamp": "2024-05-16T05:33:01.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.297600", - "Timestamp": "2019-10-15T22:11:47.000Z" + "SpotPrice": "0.504700", + "Timestamp": "2024-05-16T05:33:00.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.267600", - "Timestamp": "2019-10-15T22:11:47.000Z" + "SpotPrice": "0.499700", + "Timestamp": "2024-05-16T05:33:00.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.167600", - "Timestamp": "2019-10-15T22:11:47.000Z" + "SpotPrice": "0.374700", + "Timestamp": "2024-05-16T05:33:00.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "z1d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.large", "ProductDescription": "Windows", - "SpotPrice": "0.638000", - "Timestamp": "2019-10-15T22:08:38.000Z" + "SpotPrice": "0.150900", + "Timestamp": "2024-05-16T05:32:59.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1e.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.402700", - "Timestamp": "2019-10-15T22:03:14.000Z" + "SpotPrice": "0.770100", + "Timestamp": "2024-05-16T05:32:59.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1e.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.313000", - "Timestamp": "2019-10-15T22:03:14.000Z" + "SpotPrice": "0.841000", + "Timestamp": "2024-05-16T05:32:59.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1e.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.372700", - "Timestamp": "2019-10-15T22:03:14.000Z" + "SpotPrice": "0.740100", + "Timestamp": "2024-05-16T05:32:59.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1e.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.283000", - "Timestamp": "2019-10-15T22:03:14.000Z" + "SpotPrice": "0.811000", + "Timestamp": "2024-05-16T05:32:59.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1e.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.272700", - "Timestamp": "2019-10-15T22:03:14.000Z" + "SpotPrice": "0.640100", + "Timestamp": "2024-05-16T05:32:59.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1e.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.183000", - "Timestamp": "2019-10-15T22:03:14.000Z" + "SpotPrice": "0.711000", + "Timestamp": "2024-05-16T05:32:59.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.18xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.293600", - "Timestamp": "2019-10-15T22:03:14.000Z" + "SpotPrice": "1.511300", + "Timestamp": "2024-05-16T05:32:57.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.18xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.263600", - "Timestamp": "2019-10-15T22:03:14.000Z" + "SpotPrice": "1.481300", + "Timestamp": "2024-05-16T05:32:57.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.18xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.163600", - "Timestamp": "2019-10-15T22:03:14.000Z" + "SpotPrice": "1.381300", + "Timestamp": "2024-05-16T05:32:57.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.778400", + "Timestamp": "2024-05-16T05:32:57.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.732900", - "Timestamp": "2019-10-15T22:03:10.000Z" + "SpotPrice": "0.535000", + "Timestamp": "2024-05-16T05:32:57.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.702900", - "Timestamp": "2019-10-15T22:03:10.000Z" + "SpotPrice": "0.530000", + "Timestamp": "2024-05-16T05:32:57.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.602900", - "Timestamp": "2019-10-15T22:03:10.000Z" + "SpotPrice": "0.405000", + "Timestamp": "2024-05-16T05:32:57.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.755900", - "Timestamp": "2019-10-15T21:55:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.239100", + "Timestamp": "2024-05-16T05:32:56.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.035200", - "Timestamp": "2019-10-15T21:55:19.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.234100", + "Timestamp": "2024-05-16T05:32:56.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.109100", + "Timestamp": "2024-05-16T05:32:56.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "trn1.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132800", - "Timestamp": "2019-10-15T21:55:18.000Z" + "SpotPrice": "9.525500", + "Timestamp": "2024-05-16T05:32:56.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "trn1.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172800", - "Timestamp": "2019-10-15T21:55:18.000Z" + "SpotPrice": "9.495500", + "Timestamp": "2024-05-16T05:32:56.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "trn1.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072800", - "Timestamp": "2019-10-15T21:55:18.000Z" + "SpotPrice": "9.395500", + "Timestamp": "2024-05-16T05:32:56.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2gd.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.388400", - "Timestamp": "2019-10-15T21:55:17.000Z" + "SpotPrice": "0.217700", + "Timestamp": "2024-05-16T05:32:56.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2gd.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.358400", - "Timestamp": "2019-10-15T21:55:17.000Z" + "SpotPrice": "0.214000", + "Timestamp": "2024-05-16T05:32:56.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.258400", - "Timestamp": "2019-10-15T21:55:17.000Z" + "SpotPrice": "0.157700", + "Timestamp": "2024-05-16T05:32:56.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.large", "ProductDescription": "Windows", - "SpotPrice": "8.246300", - "Timestamp": "2019-10-15T21:54:54.000Z" + "SpotPrice": "0.140400", + "Timestamp": "2024-05-16T05:32:55.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.xlarge", "ProductDescription": "Windows", - "SpotPrice": "9.300300", - "Timestamp": "2019-10-15T21:54:50.000Z" + "SpotPrice": "0.380000", + "Timestamp": "2024-05-16T05:32:55.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.metal", "ProductDescription": "Windows", - "SpotPrice": "0.130200", - "Timestamp": "2019-10-15T21:54:50.000Z" + "SpotPrice": "7.222600", + "Timestamp": "2024-05-16T05:32:53.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.large", "ProductDescription": "Windows", - "SpotPrice": "6.087000", - "Timestamp": "2019-10-15T21:54:20.000Z" + "SpotPrice": "0.157300", + "Timestamp": "2024-05-16T05:32:53.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.large", "ProductDescription": "Windows", - "SpotPrice": "6.087000", - "Timestamp": "2019-10-15T21:54:20.000Z" + "SpotPrice": "0.160600", + "Timestamp": "2024-05-16T05:32:53.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.087000", - "Timestamp": "2019-10-15T21:54:20.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127800", + "Timestamp": "2024-05-16T05:32:53.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123800", + "Timestamp": "2024-05-16T05:32:53.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067800", + "Timestamp": "2024-05-16T05:32:53.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.043500", - "Timestamp": "2019-10-15T21:53:49.000Z" + "SpotPrice": "8.084100", + "Timestamp": "2024-05-16T05:32:52.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.large", "ProductDescription": "Windows", - "SpotPrice": "3.043500", - "Timestamp": "2019-10-15T21:53:49.000Z" + "SpotPrice": "0.134100", + "Timestamp": "2024-05-16T05:32:52.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.801000", - "Timestamp": "2019-10-15T21:53:42.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.619100", + "Timestamp": "2024-05-16T05:32:51.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.801000", - "Timestamp": "2019-10-15T21:53:42.000Z" + "SpotPrice": "0.417700", + "Timestamp": "2024-05-16T05:32:51.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.801000", - "Timestamp": "2019-10-15T21:53:42.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.771000", - "Timestamp": "2019-10-15T21:53:42.000Z" - }, - { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.771000", - "Timestamp": "2019-10-15T21:53:42.000Z" + "SpotPrice": "0.412700", + "Timestamp": "2024-05-16T05:32:51.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.771000", - "Timestamp": "2019-10-15T21:53:42.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.287700", + "Timestamp": "2024-05-16T05:32:51.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.671000", - "Timestamp": "2019-10-15T21:53:42.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.652000", + "Timestamp": "2024-05-16T05:32:51.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.671000", - "Timestamp": "2019-10-15T21:53:42.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.622000", + "Timestamp": "2024-05-16T05:32:51.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i2.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.671000", - "Timestamp": "2019-10-15T21:53:42.000Z" + "SpotPrice": "1.522000", + "Timestamp": "2024-05-16T05:32:51.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.513900", - "Timestamp": "2019-10-15T21:52:39.000Z" + "SpotPrice": "1.075200", + "Timestamp": "2024-05-16T05:32:51.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.513900", - "Timestamp": "2019-10-15T21:52:39.000Z" + "SpotPrice": "6.141400", + "Timestamp": "2024-05-16T05:32:50.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.513900", - "Timestamp": "2019-10-15T21:52:39.000Z" + "SpotPrice": "6.296400", + "Timestamp": "2024-05-16T05:32:50.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.421800", - "Timestamp": "2019-10-15T21:52:16.000Z" + "SpotPrice": "0.165900", + "Timestamp": "2024-05-16T05:32:50.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.421800", - "Timestamp": "2019-10-15T21:52:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162200", + "Timestamp": "2024-05-16T05:32:50.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.421800", - "Timestamp": "2019-10-15T21:52:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T05:32:50.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.391800", - "Timestamp": "2019-10-15T21:52:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.266900", + "Timestamp": "2024-05-16T05:32:50.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.391800", - "Timestamp": "2019-10-15T21:52:16.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.586300", + "Timestamp": "2024-05-16T05:32:49.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.391800", - "Timestamp": "2019-10-15T21:52:16.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.152700", + "Timestamp": "2024-05-16T05:32:49.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.291800", - "Timestamp": "2019-10-15T21:52:16.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.121400", + "Timestamp": "2024-05-16T05:32:48.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.291800", - "Timestamp": "2019-10-15T21:52:16.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.116400", + "Timestamp": "2024-05-16T05:32:48.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gd.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.291800", - "Timestamp": "2019-10-15T21:52:16.000Z" + "SpotPrice": "0.991400", + "Timestamp": "2024-05-16T05:32:48.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.027800", - "Timestamp": "2019-10-15T21:52:11.000Z" + "SpotPrice": "7.948400", + "Timestamp": "2024-05-16T05:32:48.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.027800", - "Timestamp": "2019-10-15T21:52:11.000Z" + "SpotPrice": "6.577700", + "Timestamp": "2024-05-16T05:32:47.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.027800", - "Timestamp": "2019-10-15T21:52:11.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.606400", - "Timestamp": "2019-10-15T21:51:49.000Z" + "SpotPrice": "2.025400", + "Timestamp": "2024-05-16T05:32:46.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.606400", - "Timestamp": "2019-10-15T21:51:49.000Z" + "SpotPrice": "4.255000", + "Timestamp": "2024-05-16T05:32:46.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.606400", - "Timestamp": "2019-10-15T21:51:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.250000", + "Timestamp": "2024-05-16T05:32:46.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.576400", - "Timestamp": "2019-10-15T21:51:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.125000", + "Timestamp": "2024-05-16T05:32:46.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.576400", - "Timestamp": "2019-10-15T21:51:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.281300", + "Timestamp": "2024-05-16T05:32:45.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.576400", - "Timestamp": "2019-10-15T21:51:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.151600", + "Timestamp": "2024-05-16T05:32:44.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.476400", - "Timestamp": "2019-10-15T21:51:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.483800", + "Timestamp": "2024-05-16T05:32:43.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.476400", - "Timestamp": "2019-10-15T21:51:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.478800", + "Timestamp": "2024-05-16T05:32:43.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.476400", - "Timestamp": "2019-10-15T21:51:49.000Z" + "SpotPrice": "1.353800", + "Timestamp": "2024-05-16T05:32:43.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "z1d.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127500", - "Timestamp": "2019-10-15T21:51:49.000Z" + "SpotPrice": "1.885000", + "Timestamp": "2024-05-16T05:32:43.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "z1d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.256900", - "Timestamp": "2019-10-15T21:51:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.880000", + "Timestamp": "2024-05-16T05:32:43.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "z1d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127500", - "Timestamp": "2019-10-15T21:51:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.755000", + "Timestamp": "2024-05-16T05:32:43.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "z1d.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.167500", - "Timestamp": "2019-10-15T21:51:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.694200", + "Timestamp": "2024-05-16T05:32:43.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "z1d.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.296900", - "Timestamp": "2019-10-15T21:51:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.234700", + "Timestamp": "2024-05-16T05:32:42.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "z1d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "a1.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.167500", - "Timestamp": "2019-10-15T21:51:49.000Z" + "SpotPrice": "0.229700", + "Timestamp": "2024-05-16T05:32:42.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "z1d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "a1.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067500", - "Timestamp": "2019-10-15T21:51:49.000Z" + "SpotPrice": "0.104700", + "Timestamp": "2024-05-16T05:32:42.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "z1d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.196900", - "Timestamp": "2019-10-15T21:51:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.419900", + "Timestamp": "2024-05-16T05:32:42.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "z1d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067500", - "Timestamp": "2019-10-15T21:51:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.499400", + "Timestamp": "2024-05-16T05:32:42.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.697400", - "Timestamp": "2019-10-15T21:51:49.000Z" + "SpotPrice": "6.438400", + "Timestamp": "2024-05-16T05:32:42.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.697400", - "Timestamp": "2019-10-15T21:51:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.227300", + "Timestamp": "2024-05-16T05:32:42.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.697400", - "Timestamp": "2019-10-15T21:51:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267300", + "Timestamp": "2024-05-16T05:32:42.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "z1d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.159500", - "Timestamp": "2019-10-15T21:51:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167300", + "Timestamp": "2024-05-16T05:32:42.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "z1d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.159500", - "Timestamp": "2019-10-15T21:51:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148700", + "Timestamp": "2024-05-16T05:32:42.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.001200", - "Timestamp": "2019-10-15T21:51:43.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145000", + "Timestamp": "2024-05-16T05:32:42.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.001200", - "Timestamp": "2019-10-15T21:51:43.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088700", + "Timestamp": "2024-05-16T05:32:42.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m1.small", "ProductDescription": "Windows", - "SpotPrice": "1.001200", - "Timestamp": "2019-10-15T21:51:43.000Z" + "SpotPrice": "0.048600", + "Timestamp": "2024-05-16T05:32:42.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.395200", - "Timestamp": "2019-10-15T21:51:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.226000", + "Timestamp": "2024-05-16T05:32:42.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.395200", - "Timestamp": "2019-10-15T21:51:39.000Z" + "SpotPrice": "3.677000", + "Timestamp": "2024-05-16T05:32:41.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.395200", - "Timestamp": "2019-10-15T21:51:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.672000", + "Timestamp": "2024-05-16T05:32:41.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m4.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.365200", - "Timestamp": "2019-10-15T21:51:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.547000", + "Timestamp": "2024-05-16T05:32:41.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.365200", - "Timestamp": "2019-10-15T21:51:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.199400", + "Timestamp": "2024-05-16T05:32:41.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.365200", - "Timestamp": "2019-10-15T21:51:39.000Z" + "SpotPrice": "2.194400", + "Timestamp": "2024-05-16T05:32:41.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.265200", - "Timestamp": "2019-10-15T21:51:39.000Z" + "SpotPrice": "2.069400", + "Timestamp": "2024-05-16T05:32:41.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.265200", - "Timestamp": "2019-10-15T21:51:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.132400", + "Timestamp": "2024-05-16T05:32:41.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.265200", - "Timestamp": "2019-10-15T21:51:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.102400", + "Timestamp": "2024-05-16T05:32:41.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5dn.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126800", - "Timestamp": "2019-10-15T21:51:19.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.002400", + "Timestamp": "2024-05-16T05:32:41.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5dn.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.126800", - "Timestamp": "2019-10-15T21:51:19.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5dn.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094800", - "Timestamp": "2019-10-15T21:51:18.000Z" + "SpotPrice": "12.847400", + "Timestamp": "2024-05-16T05:32:41.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5dn.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094800", - "Timestamp": "2019-10-15T21:51:18.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5dn.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134800", - "Timestamp": "2019-10-15T21:51:18.000Z" + "SpotPrice": "0.529200", + "Timestamp": "2024-05-16T05:32:40.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5dn.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134800", - "Timestamp": "2019-10-15T21:51:18.000Z" + "SpotPrice": "0.524200", + "Timestamp": "2024-05-16T05:32:40.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5dn.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034800", - "Timestamp": "2019-10-15T21:51:18.000Z" - }, - { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5dn.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034800", - "Timestamp": "2019-10-15T21:51:18.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.542900", - "Timestamp": "2019-10-15T21:47:36.000Z" + "SpotPrice": "0.399200", + "Timestamp": "2024-05-16T05:32:40.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.128400", - "Timestamp": "2019-10-15T21:47:23.000Z" + "SpotPrice": "3.299700", + "Timestamp": "2024-05-16T05:32:40.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.304300", - "Timestamp": "2019-10-15T21:47:15.000Z" + "SpotPrice": "0.342600", + "Timestamp": "2024-05-16T05:32:40.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.344300", - "Timestamp": "2019-10-15T21:47:15.000Z" + "SpotPrice": "0.337600", + "Timestamp": "2024-05-16T05:32:40.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.244300", - "Timestamp": "2019-10-15T21:47:15.000Z" + "SpotPrice": "0.212600", + "Timestamp": "2024-05-16T05:32:40.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097600", - "Timestamp": "2019-10-15T21:46:56.000Z" + "SpotPrice": "4.773400", + "Timestamp": "2024-05-16T05:32:40.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137600", - "Timestamp": "2019-10-15T21:46:56.000Z" + "SpotPrice": "4.768400", + "Timestamp": "2024-05-16T05:32:40.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037600", - "Timestamp": "2019-10-15T21:46:56.000Z" + "SpotPrice": "4.643400", + "Timestamp": "2024-05-16T05:32:40.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.166200", - "Timestamp": "2019-10-15T21:46:51.000Z" + "SpotPrice": "0.608800", + "Timestamp": "2024-05-16T05:32:39.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.206200", - "Timestamp": "2019-10-15T21:46:51.000Z" + "SpotPrice": "0.603800", + "Timestamp": "2024-05-16T05:32:39.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.106200", - "Timestamp": "2019-10-15T21:46:51.000Z" + "SpotPrice": "0.478800", + "Timestamp": "2024-05-16T05:32:39.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.415700", + "Timestamp": "2024-05-16T05:32:39.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.154600", + "Timestamp": "2024-05-16T05:32:39.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.158900", - "Timestamp": "2019-10-15T21:46:41.000Z" + "SpotPrice": "0.890200", + "Timestamp": "2024-05-16T05:32:38.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.198900", - "Timestamp": "2019-10-15T21:46:41.000Z" + "SpotPrice": "0.885200", + "Timestamp": "2024-05-16T05:32:38.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.098900", - "Timestamp": "2019-10-15T21:46:41.000Z" + "SpotPrice": "0.760200", + "Timestamp": "2024-05-16T05:32:38.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126800", - "Timestamp": "2019-10-15T21:46:30.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.328700", + "Timestamp": "2024-05-16T05:32:38.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.933000", - "Timestamp": "2019-10-15T21:39:09.000Z" + "SpotPrice": "0.407500", + "Timestamp": "2024-05-16T05:32:38.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.903000", - "Timestamp": "2019-10-15T21:39:09.000Z" + "SpotPrice": "0.323700", + "Timestamp": "2024-05-16T05:32:38.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.402500", + "Timestamp": "2024-05-16T05:32:38.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.803000", - "Timestamp": "2019-10-15T21:39:09.000Z" + "SpotPrice": "0.198700", + "Timestamp": "2024-05-16T05:32:38.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.583000", - "Timestamp": "2019-10-15T21:38:52.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.277500", + "Timestamp": "2024-05-16T05:32:38.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d2.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.583000", - "Timestamp": "2019-10-15T21:38:52.000Z" + "SpotPrice": "0.720200", + "Timestamp": "2024-05-16T05:32:38.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.583000", - "Timestamp": "2019-10-15T21:38:52.000Z" + "SpotPrice": "12.602300", + "Timestamp": "2024-05-16T05:32:37.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.297000", - "Timestamp": "2019-10-15T21:38:36.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.146600", + "Timestamp": "2024-05-16T05:32:37.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.297000", - "Timestamp": "2019-10-15T21:38:36.000Z" + "SpotPrice": "1.341000", + "Timestamp": "2024-05-16T05:32:37.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.297000", - "Timestamp": "2019-10-15T21:38:36.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.336000", + "Timestamp": "2024-05-16T05:32:37.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.267000", - "Timestamp": "2019-10-15T21:38:36.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.211000", + "Timestamp": "2024-05-16T05:32:37.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.267000", - "Timestamp": "2019-10-15T21:38:36.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.881400", + "Timestamp": "2024-05-16T05:32:34.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.267000", - "Timestamp": "2019-10-15T21:38:36.000Z" + "SpotPrice": "2.876400", + "Timestamp": "2024-05-16T05:32:34.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.167000", - "Timestamp": "2019-10-15T21:38:36.000Z" + "SpotPrice": "2.751400", + "Timestamp": "2024-05-16T05:32:34.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.167000", - "Timestamp": "2019-10-15T21:38:36.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.803800", + "Timestamp": "2024-05-16T05:32:33.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.167000", - "Timestamp": "2019-10-15T21:38:36.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.773800", + "Timestamp": "2024-05-16T05:32:33.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.055500", - "Timestamp": "2019-10-15T21:38:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.673800", + "Timestamp": "2024-05-16T05:32:33.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.055500", - "Timestamp": "2019-10-15T21:38:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.468000", + "Timestamp": "2024-05-16T05:32:31.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.055500", - "Timestamp": "2019-10-15T21:38:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.438000", + "Timestamp": "2024-05-16T05:32:31.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.713500", - "Timestamp": "2019-10-15T21:37:27.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.338000", + "Timestamp": "2024-05-16T05:32:31.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.9xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.713500", - "Timestamp": "2019-10-15T21:37:27.000Z" + "SpotPrice": "0.919400", + "Timestamp": "2024-05-16T05:32:30.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.713500", - "Timestamp": "2019-10-15T21:37:27.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.889400", + "Timestamp": "2024-05-16T05:32:30.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.683500", - "Timestamp": "2019-10-15T21:37:27.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.789400", + "Timestamp": "2024-05-16T05:32:30.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.683500", - "Timestamp": "2019-10-15T21:37:27.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.302900", + "Timestamp": "2024-05-16T05:32:30.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.683500", - "Timestamp": "2019-10-15T21:37:27.000Z" + "SpotPrice": "0.297900", + "Timestamp": "2024-05-16T05:32:30.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.583500", - "Timestamp": "2019-10-15T21:37:27.000Z" + "SpotPrice": "0.172900", + "Timestamp": "2024-05-16T05:32:30.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.583500", - "Timestamp": "2019-10-15T21:37:27.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.150900", + "Timestamp": "2024-05-16T05:32:28.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.145900", + "Timestamp": "2024-05-16T05:32:28.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.583500", - "Timestamp": "2019-10-15T21:37:27.000Z" + "SpotPrice": "1.020900", + "Timestamp": "2024-05-16T05:32:28.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.017200", - "Timestamp": "2019-10-15T21:35:51.000Z" + "SpotPrice": "1.253600", + "Timestamp": "2024-05-16T05:32:28.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.large", "ProductDescription": "Windows", - "SpotPrice": "0.017200", - "Timestamp": "2019-10-15T21:35:51.000Z" + "SpotPrice": "0.130300", + "Timestamp": "2024-05-16T05:32:26.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.324000", + "Timestamp": "2024-05-16T05:32:26.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.319000", + "Timestamp": "2024-05-16T05:32:26.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.194000", + "Timestamp": "2024-05-16T05:32:26.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.017200", - "Timestamp": "2019-10-15T21:35:51.000Z" + "SpotPrice": "11.412300", + "Timestamp": "2024-05-16T05:32:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.068000", - "Timestamp": "2019-10-15T21:35:24.000Z" + "SpotPrice": "1.442500", + "Timestamp": "2024-05-16T05:32:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.068000", - "Timestamp": "2019-10-15T21:35:24.000Z" + "SpotPrice": "1.554000", + "Timestamp": "2024-05-16T05:32:25.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.068000", - "Timestamp": "2019-10-15T21:35:24.000Z" + "SpotPrice": "1.528500", + "Timestamp": "2024-05-16T05:32:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.038000", - "Timestamp": "2019-10-15T21:35:24.000Z" + "SpotPrice": "1.437500", + "Timestamp": "2024-05-16T05:32:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.038000", - "Timestamp": "2019-10-15T21:35:24.000Z" + "SpotPrice": "1.549000", + "Timestamp": "2024-05-16T05:32:25.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.038000", - "Timestamp": "2019-10-15T21:35:24.000Z" + "SpotPrice": "1.523500", + "Timestamp": "2024-05-16T05:32:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.008000", - "Timestamp": "2019-10-15T21:35:24.000Z" + "SpotPrice": "1.312500", + "Timestamp": "2024-05-16T05:32:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.008000", - "Timestamp": "2019-10-15T21:35:24.000Z" + "SpotPrice": "1.424000", + "Timestamp": "2024-05-16T05:32:25.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.008000", - "Timestamp": "2019-10-15T21:35:24.000Z" + "SpotPrice": "1.398500", + "Timestamp": "2024-05-16T05:32:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.965500", - "Timestamp": "2019-10-15T21:35:13.000Z" + "SpotPrice": "0.436200", + "Timestamp": "2024-05-16T05:32:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.935500", - "Timestamp": "2019-10-15T21:35:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.450600", + "Timestamp": "2024-05-16T05:32:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.835500", - "Timestamp": "2019-10-15T21:35:13.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.406200", + "Timestamp": "2024-05-16T05:32:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127200", - "Timestamp": "2019-10-15T21:33:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.420600", + "Timestamp": "2024-05-16T05:32:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5d.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.167200", - "Timestamp": "2019-10-15T21:33:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.306200", + "Timestamp": "2024-05-16T05:32:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067200", - "Timestamp": "2019-10-15T21:33:54.000Z" + "SpotPrice": "0.320600", + "Timestamp": "2024-05-16T05:32:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.098200", - "Timestamp": "2019-10-15T21:30:29.000Z" + "SpotPrice": "0.692500", + "Timestamp": "2024-05-16T05:32:24.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.138200", - "Timestamp": "2019-10-15T21:30:29.000Z" + "SpotPrice": "0.687500", + "Timestamp": "2024-05-16T05:32:24.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.038200", - "Timestamp": "2019-10-15T21:30:29.000Z" + "SpotPrice": "0.562500", + "Timestamp": "2024-05-16T05:32:24.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.173300", - "Timestamp": "2019-10-15T21:30:23.000Z" + "SpotPrice": "0.178000", + "Timestamp": "2024-05-16T05:32:24.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.213300", - "Timestamp": "2019-10-15T21:30:23.000Z" + "SpotPrice": "0.174000", + "Timestamp": "2024-05-16T05:32:24.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.113300", - "Timestamp": "2019-10-15T21:30:23.000Z" + "SpotPrice": "0.118000", + "Timestamp": "2024-05-16T05:32:24.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.069500", + "Timestamp": "2024-05-16T05:32:24.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.367100", - "Timestamp": "2019-10-15T21:29:59.000Z" + "SpotPrice": "0.366000", + "Timestamp": "2024-05-16T05:32:24.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6g.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.337100", - "Timestamp": "2019-10-15T21:29:59.000Z" + "SpotPrice": "0.361000", + "Timestamp": "2024-05-16T05:32:24.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.237100", - "Timestamp": "2019-10-15T21:29:59.000Z" + "SpotPrice": "0.236000", + "Timestamp": "2024-05-16T05:32:24.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.331600", - "Timestamp": "2019-10-15T21:29:56.000Z" + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T05:32:24.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.301600", - "Timestamp": "2019-10-15T21:29:56.000Z" + "SpotPrice": "0.100900", + "Timestamp": "2024-05-16T05:32:24.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.201600", - "Timestamp": "2019-10-15T21:29:56.000Z" + "SpotPrice": "0.044600", + "Timestamp": "2024-05-16T05:32:24.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.687000", - "Timestamp": "2019-10-15T21:29:16.000Z" + "SpotPrice": "4.759200", + "Timestamp": "2024-05-16T05:32:22.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.657000", - "Timestamp": "2019-10-15T21:29:16.000Z" + "SpotPrice": "4.754200", + "Timestamp": "2024-05-16T05:32:22.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.557000", - "Timestamp": "2019-10-15T21:29:16.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.001200", - "Timestamp": "2019-10-15T21:25:51.000Z" + "SpotPrice": "4.629200", + "Timestamp": "2024-05-16T05:32:22.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.001200", - "Timestamp": "2019-10-15T21:25:51.000Z" - }, - { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.001200", - "Timestamp": "2019-10-15T21:25:51.000Z" + "SpotPrice": "4.588800", + "Timestamp": "2024-05-16T05:32:22.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127800", - "Timestamp": "2019-10-15T21:25:24.000Z" + "SpotPrice": "1.919800", + "Timestamp": "2024-05-16T05:32:22.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.167800", - "Timestamp": "2019-10-15T21:25:24.000Z" + "SpotPrice": "1.914800", + "Timestamp": "2024-05-16T05:32:22.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067800", - "Timestamp": "2019-10-15T21:25:24.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.256900", - "Timestamp": "2019-10-15T21:24:55.000Z" + "SpotPrice": "1.789800", + "Timestamp": "2024-05-16T05:32:22.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.256900", - "Timestamp": "2019-10-15T21:24:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.190800", + "Timestamp": "2024-05-16T05:32:22.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.256900", - "Timestamp": "2019-10-15T21:24:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.160800", + "Timestamp": "2024-05-16T05:32:22.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.421800", - "Timestamp": "2019-10-15T21:24:42.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.060800", + "Timestamp": "2024-05-16T05:32:22.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.421800", - "Timestamp": "2019-10-15T21:24:42.000Z" - }, - { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.391800", - "Timestamp": "2019-10-15T21:24:42.000Z" + "SpotPrice": "2.702400", + "Timestamp": "2024-05-16T05:32:22.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.391800", - "Timestamp": "2019-10-15T21:24:42.000Z" + "SpotPrice": "2.697400", + "Timestamp": "2024-05-16T05:32:22.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6id.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.291800", - "Timestamp": "2019-10-15T21:24:42.000Z" + "SpotPrice": "2.572400", + "Timestamp": "2024-05-16T05:32:22.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.291800", - "Timestamp": "2019-10-15T21:24:42.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.096300", + "Timestamp": "2024-05-16T05:32:21.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.133900", - "Timestamp": "2019-10-15T21:24:39.000Z" + "SpotPrice": "0.592200", + "Timestamp": "2024-05-16T05:32:21.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.173900", - "Timestamp": "2019-10-15T21:24:39.000Z" + "SpotPrice": "0.587200", + "Timestamp": "2024-05-16T05:32:21.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.073900", - "Timestamp": "2019-10-15T21:24:39.000Z" + "SpotPrice": "0.462200", + "Timestamp": "2024-05-16T05:32:21.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.027800", - "Timestamp": "2019-10-15T21:23:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123600", + "Timestamp": "2024-05-16T05:32:21.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.027800", - "Timestamp": "2019-10-15T21:23:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119900", + "Timestamp": "2024-05-16T05:32:21.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.027800", - "Timestamp": "2019-10-15T21:23:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063600", + "Timestamp": "2024-05-16T05:32:21.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c4.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.399000", - "Timestamp": "2019-10-15T21:22:29.000Z" + "SpotPrice": "0.333000", + "Timestamp": "2024-05-16T05:32:19.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c4.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.369000", - "Timestamp": "2019-10-15T21:22:29.000Z" + "SpotPrice": "0.303000", + "Timestamp": "2024-05-16T05:32:19.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c4.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.269000", - "Timestamp": "2019-10-15T21:22:29.000Z" + "SpotPrice": "0.203000", + "Timestamp": "2024-05-16T05:32:19.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097800", - "Timestamp": "2019-10-15T21:22:27.000Z" + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T05:32:18.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137800", - "Timestamp": "2019-10-15T21:22:27.000Z" + "SpotPrice": "0.103100", + "Timestamp": "2024-05-16T05:32:18.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037800", - "Timestamp": "2019-10-15T21:22:27.000Z" + "SpotPrice": "0.046800", + "Timestamp": "2024-05-16T05:32:18.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.071100", - "Timestamp": "2019-10-15T21:22:07.000Z" + "SpotPrice": "6.926800", + "Timestamp": "2024-05-16T05:32:18.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5n.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.3xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095000", - "Timestamp": "2019-10-15T21:21:57.000Z" + "SpotPrice": "0.688000", + "Timestamp": "2024-05-16T05:32:17.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5n.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.3xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135000", - "Timestamp": "2019-10-15T21:21:57.000Z" + "SpotPrice": "0.683000", + "Timestamp": "2024-05-16T05:32:17.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5n.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.3xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035000", - "Timestamp": "2019-10-15T21:21:57.000Z" - }, - { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.114900", - "Timestamp": "2019-10-15T21:21:51.000Z" + "SpotPrice": "0.558000", + "Timestamp": "2024-05-16T05:32:17.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c4.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.288700", - "Timestamp": "2019-10-15T21:21:49.000Z" + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T05:32:17.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c4.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.258700", - "Timestamp": "2019-10-15T21:21:49.000Z" + "SpotPrice": "0.150500", + "Timestamp": "2024-05-16T05:32:17.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c4.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.158700", - "Timestamp": "2019-10-15T21:21:49.000Z" + "SpotPrice": "0.050500", + "Timestamp": "2024-05-16T05:32:17.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126900", - "Timestamp": "2019-10-15T21:21:36.000Z" + "SpotPrice": "0.299900", + "Timestamp": "2024-05-16T05:32:17.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.166900", - "Timestamp": "2019-10-15T21:21:36.000Z" + "SpotPrice": "0.269900", + "Timestamp": "2024-05-16T05:32:17.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066900", - "Timestamp": "2019-10-15T21:21:36.000Z" + "SpotPrice": "0.169900", + "Timestamp": "2024-05-16T05:32:17.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.295200", - "Timestamp": "2019-10-15T21:21:34.000Z" + "SpotPrice": "0.190100", + "Timestamp": "2024-05-16T05:32:17.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.265200", - "Timestamp": "2019-10-15T21:21:34.000Z" + "SpotPrice": "0.186100", + "Timestamp": "2024-05-16T05:32:17.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.165200", - "Timestamp": "2019-10-15T21:21:34.000Z" + "SpotPrice": "0.130100", + "Timestamp": "2024-05-16T05:32:17.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5dn.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.083300", - "Timestamp": "2019-10-15T21:19:56.000Z" + "SpotPrice": "6.435300", + "Timestamp": "2024-05-16T05:32:16.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.024900", - "Timestamp": "2019-10-15T21:17:14.000Z" + "SpotPrice": "3.136800", + "Timestamp": "2024-05-16T05:32:15.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.024900", - "Timestamp": "2019-10-15T21:17:14.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3a.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066500", - "Timestamp": "2019-10-15T21:15:15.000Z" + "SpotPrice": "1.167700", + "Timestamp": "2024-05-16T05:32:15.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066500", - "Timestamp": "2019-10-15T21:15:15.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3a.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.106500", - "Timestamp": "2019-10-15T21:15:15.000Z" + "SpotPrice": "0.118000", + "Timestamp": "2024-05-16T05:32:14.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.106500", - "Timestamp": "2019-10-15T21:15:15.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3a.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006500", - "Timestamp": "2019-10-15T21:15:15.000Z" + "SpotPrice": "0.114000", + "Timestamp": "2024-05-16T05:32:14.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006500", - "Timestamp": "2019-10-15T21:15:15.000Z" + "SpotPrice": "0.058000", + "Timestamp": "2024-05-16T05:32:14.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.253600", - "Timestamp": "2019-10-15T21:14:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.665400", + "Timestamp": "2024-05-16T05:32:14.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.253600", - "Timestamp": "2019-10-15T21:14:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.660400", + "Timestamp": "2024-05-16T05:32:14.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.253600", - "Timestamp": "2019-10-15T21:14:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.535400", + "Timestamp": "2024-05-16T05:32:14.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.099100", - "Timestamp": "2019-10-15T21:14:00.000Z" + "SpotPrice": "0.933400", + "Timestamp": "2024-05-16T05:32:13.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.139100", - "Timestamp": "2019-10-15T21:14:00.000Z" + "SpotPrice": "0.928400", + "Timestamp": "2024-05-16T05:32:13.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.039100", - "Timestamp": "2019-10-15T21:14:00.000Z" + "SpotPrice": "0.803400", + "Timestamp": "2024-05-16T05:32:13.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094800", - "Timestamp": "2019-10-15T21:13:59.000Z" + "SpotPrice": "1.368000", + "Timestamp": "2024-05-16T05:32:13.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134800", - "Timestamp": "2019-10-15T21:13:59.000Z" + "SpotPrice": "1.363000", + "Timestamp": "2024-05-16T05:32:13.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034800", - "Timestamp": "2019-10-15T21:13:59.000Z" + "SpotPrice": "1.238000", + "Timestamp": "2024-05-16T05:32:13.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.735200", - "Timestamp": "2019-10-15T21:13:48.000Z" + "SpotPrice": "0.755500", + "Timestamp": "2024-05-16T05:32:12.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6g.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.705200", - "Timestamp": "2019-10-15T21:13:48.000Z" + "SpotPrice": "0.750500", + "Timestamp": "2024-05-16T05:32:12.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.605200", - "Timestamp": "2019-10-15T21:13:48.000Z" + "SpotPrice": "0.625500", + "Timestamp": "2024-05-16T05:32:12.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.275300", - "Timestamp": "2019-10-15T21:13:46.000Z" + "SpotPrice": "0.499400", + "Timestamp": "2024-05-16T05:32:12.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.245300", - "Timestamp": "2019-10-15T21:13:46.000Z" + "SpotPrice": "0.494400", + "Timestamp": "2024-05-16T05:32:12.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.145300", - "Timestamp": "2019-10-15T21:13:46.000Z" + "SpotPrice": "0.369400", + "Timestamp": "2024-05-16T05:32:12.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.978500", - "Timestamp": "2019-10-15T21:13:25.000Z" + "SpotPrice": "0.453000", + "Timestamp": "2024-05-16T05:32:11.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.948500", - "Timestamp": "2019-10-15T21:13:25.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.524900", + "Timestamp": "2024-05-16T05:32:11.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.848500", - "Timestamp": "2019-10-15T21:13:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.448000", + "Timestamp": "2024-05-16T05:32:11.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.099300", - "Timestamp": "2019-10-15T21:13:21.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.519900", + "Timestamp": "2024-05-16T05:32:11.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.139300", - "Timestamp": "2019-10-15T21:13:21.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.323000", + "Timestamp": "2024-05-16T05:32:11.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m3.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.039300", - "Timestamp": "2019-10-15T21:13:21.000Z" + "SpotPrice": "0.394900", + "Timestamp": "2024-05-16T05:32:11.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096500", - "Timestamp": "2019-10-15T21:12:58.000Z" + "SpotPrice": "0.295200", + "Timestamp": "2024-05-16T05:32:11.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136500", - "Timestamp": "2019-10-15T21:12:58.000Z" + "SpotPrice": "0.290200", + "Timestamp": "2024-05-16T05:32:11.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036500", - "Timestamp": "2019-10-15T21:12:58.000Z" + "SpotPrice": "0.165200", + "Timestamp": "2024-05-16T05:32:11.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.809200", - "Timestamp": "2019-10-15T21:12:54.000Z" + "SpotPrice": "3.058100", + "Timestamp": "2024-05-16T05:18:30.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.809200", - "Timestamp": "2019-10-15T21:12:54.000Z" + "SpotPrice": "3.437800", + "Timestamp": "2024-05-16T05:18:26.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.large", "ProductDescription": "Windows", - "SpotPrice": "4.152000", - "Timestamp": "2019-10-15T21:12:49.000Z" + "SpotPrice": "0.128600", + "Timestamp": "2024-05-16T05:18:26.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.152000", - "Timestamp": "2019-10-15T21:12:49.000Z" + "SpotPrice": "3.164000", + "Timestamp": "2024-05-16T05:18:26.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.152000", - "Timestamp": "2019-10-15T21:12:49.000Z" + "SpotPrice": "4.934400", + "Timestamp": "2024-05-16T05:18:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.611200", - "Timestamp": "2019-10-15T21:12:35.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.829300", + "Timestamp": "2024-05-16T05:18:18.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.611200", - "Timestamp": "2019-10-15T21:12:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.431700", + "Timestamp": "2024-05-16T05:18:17.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.581200", - "Timestamp": "2019-10-15T21:12:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.044700", + "Timestamp": "2024-05-16T05:18:17.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.160200", + "Timestamp": "2024-05-16T05:18:16.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.581200", - "Timestamp": "2019-10-15T21:12:35.000Z" + "SpotPrice": "1.155200", + "Timestamp": "2024-05-16T05:18:16.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.481200", - "Timestamp": "2019-10-15T21:12:35.000Z" + "SpotPrice": "1.030200", + "Timestamp": "2024-05-16T05:18:16.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.481200", - "Timestamp": "2019-10-15T21:12:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.111800", + "Timestamp": "2024-05-16T05:18:15.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "d2.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.056600", - "Timestamp": "2019-10-15T21:11:59.000Z" + "SpotPrice": "1.405500", + "Timestamp": "2024-05-16T05:18:11.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1e.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.056600", - "Timestamp": "2019-10-15T21:11:59.000Z" + "SpotPrice": "17.019500", + "Timestamp": "2024-05-16T05:18:11.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1e.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.056600", - "Timestamp": "2019-10-15T21:11:59.000Z" + "SpotPrice": "17.249800", + "Timestamp": "2024-05-16T05:18:11.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.241500", - "Timestamp": "2019-10-15T21:11:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.415600", + "Timestamp": "2024-05-16T05:18:10.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.241500", - "Timestamp": "2019-10-15T21:11:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.607400", + "Timestamp": "2024-05-16T05:18:08.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4ad.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.241500", - "Timestamp": "2019-10-15T21:11:49.000Z" + "SpotPrice": "0.233300", + "Timestamp": "2024-05-16T05:18:08.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4ad.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.211500", - "Timestamp": "2019-10-15T21:11:49.000Z" + "SpotPrice": "0.229600", + "Timestamp": "2024-05-16T05:18:08.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.211500", - "Timestamp": "2019-10-15T21:11:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.173300", + "Timestamp": "2024-05-16T05:18:08.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.211500", - "Timestamp": "2019-10-15T21:11:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.869500", + "Timestamp": "2024-05-16T05:18:07.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.111500", - "Timestamp": "2019-10-15T21:11:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.864500", + "Timestamp": "2024-05-16T05:18:07.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.111500", - "Timestamp": "2019-10-15T21:11:49.000Z" + "SpotPrice": "1.739500", + "Timestamp": "2024-05-16T05:18:07.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.111500", - "Timestamp": "2019-10-15T21:11:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.148600", + "Timestamp": "2024-05-16T05:18:07.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.014500", - "Timestamp": "2019-10-15T21:11:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166500", + "Timestamp": "2024-05-16T05:18:05.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.014500", - "Timestamp": "2019-10-15T21:11:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.206500", + "Timestamp": "2024-05-16T05:18:05.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.014500", - "Timestamp": "2019-10-15T21:11:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-16T05:18:05.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.111000", - "Timestamp": "2019-10-15T21:11:30.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.749700", + "Timestamp": "2024-05-16T05:18:04.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.111000", - "Timestamp": "2019-10-15T21:11:30.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.744700", + "Timestamp": "2024-05-16T05:18:04.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.111000", - "Timestamp": "2019-10-15T21:11:30.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.619700", + "Timestamp": "2024-05-16T05:18:04.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r4.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.914000", - "Timestamp": "2019-10-15T21:11:29.000Z" + "SpotPrice": "0.583900", + "Timestamp": "2024-05-16T05:18:02.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.914000", - "Timestamp": "2019-10-15T21:11:29.000Z" + "SpotPrice": "0.259900", + "Timestamp": "2024-05-16T05:18:02.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.914000", - "Timestamp": "2019-10-15T21:11:29.000Z" + "SpotPrice": "2.437400", + "Timestamp": "2024-05-16T05:18:02.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i2.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.297000", - "Timestamp": "2019-10-15T21:10:57.000Z" + "SpotPrice": "2.784700", + "Timestamp": "2024-05-16T05:18:01.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.297000", - "Timestamp": "2019-10-15T21:10:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.754700", + "Timestamp": "2024-05-16T05:18:01.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.654700", + "Timestamp": "2024-05-16T05:18:01.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.297000", - "Timestamp": "2019-10-15T21:10:57.000Z" + "SpotPrice": "0.095700", + "Timestamp": "2024-05-16T05:18:01.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.267000", - "Timestamp": "2019-10-15T21:10:57.000Z" + "SpotPrice": "0.092000", + "Timestamp": "2024-05-16T05:18:01.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.267000", - "Timestamp": "2019-10-15T21:10:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035700", + "Timestamp": "2024-05-16T05:18:01.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.267000", - "Timestamp": "2019-10-15T21:10:57.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.659500", + "Timestamp": "2024-05-16T05:18:01.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.167000", - "Timestamp": "2019-10-15T21:10:57.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.478700", + "Timestamp": "2024-05-16T05:18:00.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.167000", - "Timestamp": "2019-10-15T21:10:57.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.448700", + "Timestamp": "2024-05-16T05:18:00.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "r3.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.167000", - "Timestamp": "2019-10-15T21:10:57.000Z" + "SpotPrice": "1.348700", + "Timestamp": "2024-05-16T05:18:00.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.074000", - "Timestamp": "2019-10-15T21:10:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.700400", + "Timestamp": "2024-05-16T05:18:00.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.074000", - "Timestamp": "2019-10-15T21:10:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.346800", + "Timestamp": "2024-05-16T05:18:00.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.074000", - "Timestamp": "2019-10-15T21:10:49.000Z" + "SpotPrice": "0.223300", + "Timestamp": "2024-05-16T05:17:59.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.044000", - "Timestamp": "2019-10-15T21:10:49.000Z" + "SpotPrice": "0.219300", + "Timestamp": "2024-05-16T05:17:59.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.044000", - "Timestamp": "2019-10-15T21:10:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.163300", + "Timestamp": "2024-05-16T05:17:59.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.044000", - "Timestamp": "2019-10-15T21:10:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.071400", + "Timestamp": "2024-05-16T05:17:59.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.944000", - "Timestamp": "2019-10-15T21:10:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.041400", + "Timestamp": "2024-05-16T05:17:59.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.944000", - "Timestamp": "2019-10-15T21:10:49.000Z" + "SpotPrice": "1.941400", + "Timestamp": "2024-05-16T05:17:59.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.944000", - "Timestamp": "2019-10-15T21:10:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.343100", + "Timestamp": "2024-05-16T05:17:58.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t2.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.034100", - "Timestamp": "2019-10-15T21:10:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.313100", + "Timestamp": "2024-05-16T05:17:58.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t2.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.034100", - "Timestamp": "2019-10-15T21:10:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.213100", + "Timestamp": "2024-05-16T05:17:58.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t2.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.034100", - "Timestamp": "2019-10-15T21:10:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.508900", + "Timestamp": "2024-05-16T05:17:57.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.940000", - "Timestamp": "2019-10-15T21:10:35.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.503900", + "Timestamp": "2024-05-16T05:17:57.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.940000", - "Timestamp": "2019-10-15T21:10:35.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.378900", + "Timestamp": "2024-05-16T05:17:57.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.940000", - "Timestamp": "2019-10-15T21:10:35.000Z" + "SpotPrice": "3.155100", + "Timestamp": "2024-05-16T05:17:57.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.910000", - "Timestamp": "2019-10-15T21:10:35.000Z" + "SpotPrice": "3.150100", + "Timestamp": "2024-05-16T05:17:57.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.910000", - "Timestamp": "2019-10-15T21:10:35.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.025100", + "Timestamp": "2024-05-16T05:17:57.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.910000", - "Timestamp": "2019-10-15T21:10:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.203200", + "Timestamp": "2024-05-16T05:17:56.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.810000", - "Timestamp": "2019-10-15T21:10:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.198200", + "Timestamp": "2024-05-16T05:17:56.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.810000", - "Timestamp": "2019-10-15T21:10:35.000Z" + "SpotPrice": "1.073200", + "Timestamp": "2024-05-16T05:17:56.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.810000", - "Timestamp": "2019-10-15T21:10:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.796400", + "Timestamp": "2024-05-16T05:17:56.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.988600", - "Timestamp": "2019-10-15T21:10:08.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.678100", + "Timestamp": "2024-05-16T05:17:56.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.988600", - "Timestamp": "2019-10-15T21:10:08.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.673100", + "Timestamp": "2024-05-16T05:17:56.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.988600", - "Timestamp": "2019-10-15T21:10:08.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.548100", + "Timestamp": "2024-05-16T05:17:56.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.382600", - "Timestamp": "2019-10-15T21:09:51.000Z" + "SpotPrice": "1.940200", + "Timestamp": "2024-05-16T05:17:56.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.352600", - "Timestamp": "2019-10-15T21:09:51.000Z" + "SpotPrice": "1.935200", + "Timestamp": "2024-05-16T05:17:56.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.252600", - "Timestamp": "2019-10-15T21:09:51.000Z" + "SpotPrice": "1.810200", + "Timestamp": "2024-05-16T05:17:56.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.256300", - "Timestamp": "2019-10-15T21:09:51.000Z" + "SpotPrice": "2.318900", + "Timestamp": "2024-05-16T05:17:56.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.256300", - "Timestamp": "2019-10-15T21:09:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.313900", + "Timestamp": "2024-05-16T05:17:56.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.226300", - "Timestamp": "2019-10-15T21:09:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.188900", + "Timestamp": "2024-05-16T05:17:56.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.226300", - "Timestamp": "2019-10-15T21:09:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.807100", + "Timestamp": "2024-05-16T05:17:55.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.126300", - "Timestamp": "2019-10-15T21:09:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.802100", + "Timestamp": "2024-05-16T05:17:55.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.126300", - "Timestamp": "2019-10-15T21:09:51.000Z" + "SpotPrice": "0.677100", + "Timestamp": "2024-05-16T05:17:55.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096500", - "Timestamp": "2019-10-15T21:09:41.000Z" + "SpotPrice": "1.449600", + "Timestamp": "2024-05-16T05:17:53.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136500", - "Timestamp": "2019-10-15T21:09:41.000Z" + "SpotPrice": "1.444600", + "Timestamp": "2024-05-16T05:17:53.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036500", - "Timestamp": "2019-10-15T21:09:41.000Z" + "SpotPrice": "1.319600", + "Timestamp": "2024-05-16T05:17:53.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.076100", - "Timestamp": "2019-10-15T21:09:21.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.127700", + "Timestamp": "2024-05-16T05:17:53.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.076100", - "Timestamp": "2019-10-15T21:09:21.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.725400", + "Timestamp": "2024-05-16T05:17:53.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.metal-48xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.076100", - "Timestamp": "2019-10-15T21:09:21.000Z" + "SpotPrice": "5.924200", + "Timestamp": "2024-05-16T05:17:53.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.metal-48xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.116100", - "Timestamp": "2019-10-15T21:09:21.000Z" + "SpotPrice": "5.919200", + "Timestamp": "2024-05-16T05:17:53.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t2.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.116100", - "Timestamp": "2019-10-15T21:09:21.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.794200", + "Timestamp": "2024-05-16T05:17:53.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t2.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.116100", - "Timestamp": "2019-10-15T21:09:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.853300", + "Timestamp": "2024-05-16T05:17:52.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t2.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.016100", - "Timestamp": "2019-10-15T21:09:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.848300", + "Timestamp": "2024-05-16T05:17:52.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.016100", - "Timestamp": "2019-10-15T21:09:21.000Z" + "SpotPrice": "1.723300", + "Timestamp": "2024-05-16T05:17:52.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t2.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.016100", - "Timestamp": "2019-10-15T21:09:21.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.608900", + "Timestamp": "2024-05-16T05:17:52.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.128500", - "Timestamp": "2019-10-15T21:08:54.000Z" + "SpotPrice": "7.547900", + "Timestamp": "2024-05-16T05:17:51.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.272300", - "Timestamp": "2019-10-15T21:05:12.000Z" + "SpotPrice": "0.167400", + "Timestamp": "2024-05-16T05:17:51.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.242300", - "Timestamp": "2019-10-15T21:05:12.000Z" + "SpotPrice": "0.163700", + "Timestamp": "2024-05-16T05:17:51.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.142300", - "Timestamp": "2019-10-15T21:05:12.000Z" + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T05:17:51.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3en.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.069000", - "Timestamp": "2019-10-15T21:05:07.000Z" + "SpotPrice": "5.589000", + "Timestamp": "2024-05-16T05:17:51.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123400", - "Timestamp": "2019-10-15T21:04:51.000Z" + "SpotPrice": "5.121700", + "Timestamp": "2024-05-16T05:17:51.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.163400", - "Timestamp": "2019-10-15T21:04:51.000Z" + "SpotPrice": "5.091700", + "Timestamp": "2024-05-16T05:17:51.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063400", - "Timestamp": "2019-10-15T21:04:51.000Z" + "SpotPrice": "4.991700", + "Timestamp": "2024-05-16T05:17:51.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.099100", - "Timestamp": "2019-10-15T21:04:41.000Z" + "SpotPrice": "0.102200", + "Timestamp": "2024-05-16T05:17:50.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.139100", - "Timestamp": "2019-10-15T21:04:41.000Z" + "SpotPrice": "0.098500", + "Timestamp": "2024-05-16T05:17:50.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.039100", - "Timestamp": "2019-10-15T21:04:41.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.256900", - "Timestamp": "2019-10-15T21:03:47.000Z" + "SpotPrice": "0.042200", + "Timestamp": "2024-05-16T05:17:50.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.880600", - "Timestamp": "2019-10-15T21:02:56.000Z" + "SpotPrice": "0.490900", + "Timestamp": "2024-05-16T05:17:49.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.850600", - "Timestamp": "2019-10-15T21:02:56.000Z" + "SpotPrice": "0.485900", + "Timestamp": "2024-05-16T05:17:49.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.750600", - "Timestamp": "2019-10-15T21:02:56.000Z" + "SpotPrice": "0.360900", + "Timestamp": "2024-05-16T05:17:49.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.large", "ProductDescription": "Windows", - "SpotPrice": "0.012400", - "Timestamp": "2019-10-15T20:58:28.000Z" + "SpotPrice": "0.137500", + "Timestamp": "2024-05-16T05:17:49.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.012400", - "Timestamp": "2019-10-15T20:58:28.000Z" + "SpotPrice": "0.286200", + "Timestamp": "2024-05-16T05:17:49.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.254800", - "Timestamp": "2019-10-15T20:57:32.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092500", + "Timestamp": "2024-05-16T05:17:49.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.254800", - "Timestamp": "2019-10-15T20:57:32.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088800", + "Timestamp": "2024-05-16T05:17:49.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.254800", - "Timestamp": "2019-10-15T20:57:32.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032500", + "Timestamp": "2024-05-16T05:17:49.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063200", - "Timestamp": "2019-10-15T20:57:11.000Z" + "SpotPrice": "2.543400", + "Timestamp": "2024-05-16T05:17:48.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3a.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063200", - "Timestamp": "2019-10-15T20:57:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.538400", + "Timestamp": "2024-05-16T05:17:48.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3a.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.103200", - "Timestamp": "2019-10-15T20:57:11.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.413400", + "Timestamp": "2024-05-16T05:17:48.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3a.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.103200", - "Timestamp": "2019-10-15T20:57:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.044300", + "Timestamp": "2024-05-16T05:17:47.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003200", - "Timestamp": "2019-10-15T20:57:11.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.039300", + "Timestamp": "2024-05-16T05:17:47.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003200", - "Timestamp": "2019-10-15T20:57:11.000Z" + "SpotPrice": "2.914300", + "Timestamp": "2024-05-16T05:17:47.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.687000", - "Timestamp": "2019-10-15T20:57:05.000Z" + "SpotPrice": "1.527800", + "Timestamp": "2024-05-16T05:17:47.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.687000", - "Timestamp": "2019-10-15T20:57:05.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.522800", + "Timestamp": "2024-05-16T05:17:47.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.687000", - "Timestamp": "2019-10-15T20:57:05.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.397800", + "Timestamp": "2024-05-16T05:17:47.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.657000", - "Timestamp": "2019-10-15T20:57:05.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.263300", + "Timestamp": "2024-05-16T05:17:47.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.657000", - "Timestamp": "2019-10-15T20:57:05.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.953500", + "Timestamp": "2024-05-16T05:17:47.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.657000", - "Timestamp": "2019-10-15T20:57:05.000Z" + "SpotPrice": "0.948500", + "Timestamp": "2024-05-16T05:17:47.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.557000", - "Timestamp": "2019-10-15T20:57:05.000Z" + "SpotPrice": "0.823500", + "Timestamp": "2024-05-16T05:17:47.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.557000", - "Timestamp": "2019-10-15T20:57:05.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.774500", + "Timestamp": "2024-05-16T05:17:46.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.557000", - "Timestamp": "2019-10-15T20:57:05.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.323600", + "Timestamp": "2024-05-16T05:17:46.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.029000", - "Timestamp": "2019-10-15T20:56:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.318600", + "Timestamp": "2024-05-16T05:17:46.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.029000", - "Timestamp": "2019-10-15T20:56:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.193600", + "Timestamp": "2024-05-16T05:17:46.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.029000", - "Timestamp": "2019-10-15T20:56:35.000Z" + "SpotPrice": "1.123200", + "Timestamp": "2024-05-16T05:17:45.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.082800", - "Timestamp": "2019-10-15T20:55:54.000Z" + "SpotPrice": "0.083000", + "Timestamp": "2024-05-16T05:17:44.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.082800", - "Timestamp": "2019-10-15T20:55:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079300", + "Timestamp": "2024-05-16T05:17:44.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.082800", - "Timestamp": "2019-10-15T20:55:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023000", + "Timestamp": "2024-05-16T05:17:44.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.052800", - "Timestamp": "2019-10-15T20:55:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.220500", + "Timestamp": "2024-05-16T05:17:44.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.052800", - "Timestamp": "2019-10-15T20:55:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.648900", + "Timestamp": "2024-05-16T05:17:43.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.879000", + "Timestamp": "2024-05-16T05:17:43.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.052800", - "Timestamp": "2019-10-15T20:55:54.000Z" + "SpotPrice": "0.874000", + "Timestamp": "2024-05-16T05:17:43.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.952800", - "Timestamp": "2019-10-15T20:55:54.000Z" + "SpotPrice": "0.749000", + "Timestamp": "2024-05-16T05:17:43.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.952800", - "Timestamp": "2019-10-15T20:55:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.732400", + "Timestamp": "2024-05-16T05:17:41.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.952800", - "Timestamp": "2019-10-15T20:55:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.200000", + "Timestamp": "2024-05-16T05:17:41.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132900", - "Timestamp": "2019-10-15T20:54:52.000Z" + "SpotPrice": "4.253000", + "Timestamp": "2024-05-16T05:17:41.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172900", - "Timestamp": "2019-10-15T20:54:52.000Z" + "SpotPrice": "4.248000", + "Timestamp": "2024-05-16T05:17:41.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072900", - "Timestamp": "2019-10-15T20:54:52.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.005300", - "Timestamp": "2019-10-15T20:52:56.000Z" + "SpotPrice": "4.123000", + "Timestamp": "2024-05-16T05:17:41.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.005300", - "Timestamp": "2019-10-15T20:52:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.153700", + "Timestamp": "2024-05-16T05:17:41.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.005300", - "Timestamp": "2019-10-15T20:52:56.000Z" + "SpotPrice": "1.533700", + "Timestamp": "2024-05-16T05:17:41.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.975300", - "Timestamp": "2019-10-15T20:52:56.000Z" + "SpotPrice": "1.528700", + "Timestamp": "2024-05-16T05:17:41.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.975300", - "Timestamp": "2019-10-15T20:52:56.000Z" - }, - { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.975300", - "Timestamp": "2019-10-15T20:52:56.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.875300", - "Timestamp": "2019-10-15T20:52:56.000Z" - }, - { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.875300", - "Timestamp": "2019-10-15T20:52:56.000Z" - }, - { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.875300", - "Timestamp": "2019-10-15T20:52:56.000Z" + "SpotPrice": "1.403700", + "Timestamp": "2024-05-16T05:17:41.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.250300", - "Timestamp": "2019-10-15T20:52:48.000Z" + "SpotPrice": "3.196100", + "Timestamp": "2024-05-16T05:17:41.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.metal", "ProductDescription": "Windows", - "SpotPrice": "0.250300", - "Timestamp": "2019-10-15T20:52:48.000Z" + "SpotPrice": "9.104000", + "Timestamp": "2024-05-16T05:17:40.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126300", - "Timestamp": "2019-10-15T20:52:36.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.631800", + "Timestamp": "2024-05-16T05:17:40.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126300", - "Timestamp": "2019-10-15T20:52:36.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5n.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.166300", - "Timestamp": "2019-10-15T20:52:36.000Z" + "SpotPrice": "2.123400", + "Timestamp": "2024-05-16T05:17:40.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.166300", - "Timestamp": "2019-10-15T20:52:36.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066300", - "Timestamp": "2019-10-15T20:52:36.000Z" + "SpotPrice": "2.118400", + "Timestamp": "2024-05-16T05:17:40.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066300", - "Timestamp": "2019-10-15T20:52:36.000Z" + "SpotPrice": "1.993400", + "Timestamp": "2024-05-16T05:17:40.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.880600", - "Timestamp": "2019-10-15T20:52:29.000Z" + "SpotPrice": "0.558800", + "Timestamp": "2024-05-16T05:17:40.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.880600", - "Timestamp": "2019-10-15T20:52:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.555100", + "Timestamp": "2024-05-16T05:17:40.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.850600", - "Timestamp": "2019-10-15T20:52:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.498800", + "Timestamp": "2024-05-16T05:17:40.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.850600", - "Timestamp": "2019-10-15T20:52:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.186400", + "Timestamp": "2024-05-16T05:17:39.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.750600", - "Timestamp": "2019-10-15T20:52:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.182700", + "Timestamp": "2024-05-16T05:17:39.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6id.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.750600", - "Timestamp": "2019-10-15T20:52:29.000Z" + "SpotPrice": "0.126400", + "Timestamp": "2024-05-16T05:17:39.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067900", - "Timestamp": "2019-10-15T20:52:20.000Z" + "SpotPrice": "0.212200", + "Timestamp": "2024-05-16T05:17:39.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.107900", - "Timestamp": "2019-10-15T20:52:20.000Z" + "SpotPrice": "0.208500", + "Timestamp": "2024-05-16T05:17:39.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007900", - "Timestamp": "2019-10-15T20:52:20.000Z" + "SpotPrice": "0.152200", + "Timestamp": "2024-05-16T05:17:39.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.166600", - "Timestamp": "2019-10-15T20:52:15.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.118800", + "Timestamp": "2024-05-16T05:17:39.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.166600", - "Timestamp": "2019-10-15T20:52:15.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.113800", + "Timestamp": "2024-05-16T05:17:39.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.083300", - "Timestamp": "2019-10-15T20:51:56.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.988800", + "Timestamp": "2024-05-16T05:17:39.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.083300", - "Timestamp": "2019-10-15T20:51:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-16T05:17:39.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.083300", - "Timestamp": "2019-10-15T20:51:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098000", + "Timestamp": "2024-05-16T05:17:39.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.512300", - "Timestamp": "2019-10-15T20:51:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041700", + "Timestamp": "2024-05-16T05:17:39.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.512300", - "Timestamp": "2019-10-15T20:51:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.151400", + "Timestamp": "2024-05-16T05:17:39.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.275900", - "Timestamp": "2019-10-15T20:51:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.146400", + "Timestamp": "2024-05-16T05:17:39.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.277800", - "Timestamp": "2019-10-15T20:51:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.021400", + "Timestamp": "2024-05-16T05:17:39.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.245900", - "Timestamp": "2019-10-15T20:51:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.844000", + "Timestamp": "2024-05-16T05:17:38.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.247800", - "Timestamp": "2019-10-15T20:51:49.000Z" + "SpotPrice": "1.839000", + "Timestamp": "2024-05-16T05:17:38.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.145900", - "Timestamp": "2019-10-15T20:51:49.000Z" + "SpotPrice": "1.714000", + "Timestamp": "2024-05-16T05:17:38.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.147800", - "Timestamp": "2019-10-15T20:51:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093800", + "Timestamp": "2024-05-16T05:17:38.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.513900", - "Timestamp": "2019-10-15T20:51:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090100", + "Timestamp": "2024-05-16T05:17:38.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.513900", - "Timestamp": "2019-10-15T20:51:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033800", + "Timestamp": "2024-05-16T05:17:38.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "d2.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.513900", - "Timestamp": "2019-10-15T20:51:49.000Z" + "SpotPrice": "3.478700", + "Timestamp": "2024-05-16T05:17:38.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.058000", - "Timestamp": "2019-10-15T20:51:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.819600", + "Timestamp": "2024-05-16T05:17:37.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.058000", - "Timestamp": "2019-10-15T20:51:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.814600", + "Timestamp": "2024-05-16T05:17:37.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.058000", - "Timestamp": "2019-10-15T20:51:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.689600", + "Timestamp": "2024-05-16T05:17:37.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.244000", - "Timestamp": "2019-10-15T20:51:35.000Z" + "SpotPrice": "0.864200", + "Timestamp": "2024-05-16T05:17:37.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.244000", - "Timestamp": "2019-10-15T20:51:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.834200", + "Timestamp": "2024-05-16T05:17:37.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.734200", + "Timestamp": "2024-05-16T05:17:37.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r4.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.244000", - "Timestamp": "2019-10-15T20:51:35.000Z" + "SpotPrice": "0.400400", + "Timestamp": "2024-05-16T05:17:37.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r4.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.214000", - "Timestamp": "2019-10-15T20:51:35.000Z" + "SpotPrice": "0.370400", + "Timestamp": "2024-05-16T05:17:37.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.214000", - "Timestamp": "2019-10-15T20:51:35.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.270400", + "Timestamp": "2024-05-16T05:17:37.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.214000", - "Timestamp": "2019-10-15T20:51:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.328500", + "Timestamp": "2024-05-16T05:17:36.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.114000", - "Timestamp": "2019-10-15T20:51:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.593100", + "Timestamp": "2024-05-16T05:17:35.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.114000", - "Timestamp": "2019-10-15T20:51:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.588100", + "Timestamp": "2024-05-16T05:17:35.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.114000", - "Timestamp": "2019-10-15T20:51:35.000Z" + "SpotPrice": "1.463100", + "Timestamp": "2024-05-16T05:17:35.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3en.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "8.304000", - "Timestamp": "2019-10-15T20:51:35.000Z" + "SpotPrice": "4.840100", + "Timestamp": "2024-05-16T05:17:35.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3en.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i2.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "8.304000", - "Timestamp": "2019-10-15T20:51:35.000Z" + "SpotPrice": "1.832200", + "Timestamp": "2024-05-16T05:17:34.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3en.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "8.304000", - "Timestamp": "2019-10-15T20:51:35.000Z" + "SpotPrice": "0.293000", + "Timestamp": "2024-05-16T05:17:34.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3en.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.018000", - "Timestamp": "2019-10-15T20:51:34.000Z" + "SpotPrice": "0.150600", + "Timestamp": "2024-05-16T05:17:34.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3en.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.018000", - "Timestamp": "2019-10-15T20:51:34.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146900", + "Timestamp": "2024-05-16T05:17:34.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3en.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.018000", - "Timestamp": "2019-10-15T20:51:34.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090600", + "Timestamp": "2024-05-16T05:17:34.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3en.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.988000", - "Timestamp": "2019-10-15T20:51:34.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.285200", + "Timestamp": "2024-05-16T05:17:33.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3en.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7g.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.988000", - "Timestamp": "2019-10-15T20:51:34.000Z" + "SpotPrice": "1.280200", + "Timestamp": "2024-05-16T05:17:33.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3en.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.988000", - "Timestamp": "2019-10-15T20:51:34.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.155200", + "Timestamp": "2024-05-16T05:17:33.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3en.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.888000", - "Timestamp": "2019-10-15T20:51:34.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.210000", + "Timestamp": "2024-05-16T05:17:32.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3en.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.888000", - "Timestamp": "2019-10-15T20:51:34.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.206300", + "Timestamp": "2024-05-16T05:17:32.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3en.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.888000", - "Timestamp": "2019-10-15T20:51:34.000Z" + "SpotPrice": "0.150000", + "Timestamp": "2024-05-16T05:17:32.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.840000", - "Timestamp": "2019-10-15T20:51:20.000Z" + "SpotPrice": "0.147100", + "Timestamp": "2024-05-16T05:17:31.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.840000", - "Timestamp": "2019-10-15T20:51:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143100", + "Timestamp": "2024-05-16T05:17:31.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g3.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.810000", - "Timestamp": "2019-10-15T20:51:20.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087100", + "Timestamp": "2024-05-16T05:17:31.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.810000", - "Timestamp": "2019-10-15T20:51:20.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314000", + "Timestamp": "2024-05-16T05:17:31.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.710000", - "Timestamp": "2019-10-15T20:51:20.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.284000", + "Timestamp": "2024-05-16T05:17:31.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.710000", - "Timestamp": "2019-10-15T20:51:20.000Z" + "SpotPrice": "0.184000", + "Timestamp": "2024-05-16T05:17:31.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.654000", - "Timestamp": "2019-10-15T20:51:20.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.701700", + "Timestamp": "2024-05-16T05:17:31.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.654000", - "Timestamp": "2019-10-15T20:51:20.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.696700", + "Timestamp": "2024-05-16T05:17:31.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.246700", - "Timestamp": "2019-10-15T20:48:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.571700", + "Timestamp": "2024-05-16T05:17:31.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-15T20:48:49.000Z" + "SpotPrice": "0.279200", + "Timestamp": "2024-05-16T05:17:30.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.237000", - "Timestamp": "2019-10-15T20:48:49.000Z" + "SpotPrice": "0.274200", + "Timestamp": "2024-05-16T05:17:30.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.137000", - "Timestamp": "2019-10-15T20:48:49.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.633200", - "Timestamp": "2019-10-15T20:48:37.000Z" + "SpotPrice": "0.149200", + "Timestamp": "2024-05-16T05:17:30.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.300800", - "Timestamp": "2019-10-15T20:48:29.000Z" + "SpotPrice": "2.928800", + "Timestamp": "2024-05-16T05:17:30.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.270800", - "Timestamp": "2019-10-15T20:48:29.000Z" + "SpotPrice": "2.923800", + "Timestamp": "2024-05-16T05:17:30.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.170800", - "Timestamp": "2019-10-15T20:48:29.000Z" + "SpotPrice": "2.798800", + "Timestamp": "2024-05-16T05:17:30.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.019000", + "Timestamp": "2024-05-16T05:17:29.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.698800", - "Timestamp": "2019-10-15T20:48:19.000Z" + "SpotPrice": "1.996800", + "Timestamp": "2024-05-16T05:17:28.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.668800", - "Timestamp": "2019-10-15T20:48:19.000Z" + "SpotPrice": "1.991800", + "Timestamp": "2024-05-16T05:17:28.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.568800", - "Timestamp": "2019-10-15T20:48:19.000Z" + "SpotPrice": "1.866800", + "Timestamp": "2024-05-16T05:17:28.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.136300", - "Timestamp": "2019-10-15T20:48:16.000Z" + "SpotPrice": "1.756600", + "Timestamp": "2024-05-16T05:17:27.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.176300", - "Timestamp": "2019-10-15T20:48:16.000Z" + "SpotPrice": "1.751600", + "Timestamp": "2024-05-16T05:17:27.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.076300", - "Timestamp": "2019-10-15T20:48:16.000Z" + "SpotPrice": "1.626600", + "Timestamp": "2024-05-16T05:17:27.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.166600", - "Timestamp": "2019-10-15T20:47:48.000Z" + "SpotPrice": "2.479600", + "Timestamp": "2024-05-16T05:17:26.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.432500", - "Timestamp": "2019-10-15T20:40:36.000Z" + "SpotPrice": "4.381600", + "Timestamp": "2024-05-16T05:17:24.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.323900", + "Timestamp": "2024-05-16T05:17:24.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m4.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.124300", - "Timestamp": "2019-10-15T20:40:04.000Z" + "SpotPrice": "0.325900", + "Timestamp": "2024-05-16T05:17:22.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m4.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.164300", - "Timestamp": "2019-10-15T20:40:04.000Z" + "SpotPrice": "0.295900", + "Timestamp": "2024-05-16T05:17:22.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m4.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.064300", - "Timestamp": "2019-10-15T20:40:04.000Z" + "SpotPrice": "0.195900", + "Timestamp": "2024-05-16T05:17:22.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.707200", + "Timestamp": "2024-05-16T05:17:20.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.411400", - "Timestamp": "2019-10-15T20:39:53.000Z" + "SpotPrice": "3.787100", + "Timestamp": "2024-05-16T05:17:18.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.381400", - "Timestamp": "2019-10-15T20:39:53.000Z" + "SpotPrice": "3.782100", + "Timestamp": "2024-05-16T05:17:18.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.281400", - "Timestamp": "2019-10-15T20:39:53.000Z" + "SpotPrice": "3.657100", + "Timestamp": "2024-05-16T05:17:18.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.133200", - "Timestamp": "2019-10-15T20:39:52.000Z" + "SpotPrice": "1.314400", + "Timestamp": "2024-05-16T05:17:18.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.173200", - "Timestamp": "2019-10-15T20:39:52.000Z" + "SpotPrice": "1.309400", + "Timestamp": "2024-05-16T05:17:18.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.073200", - "Timestamp": "2019-10-15T20:39:52.000Z" + "SpotPrice": "1.184400", + "Timestamp": "2024-05-16T05:17:18.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.metal", "ProductDescription": "Windows", - "SpotPrice": "0.288400", - "Timestamp": "2019-10-15T20:39:42.000Z" + "SpotPrice": "12.408400", + "Timestamp": "2024-05-16T05:17:18.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5dn.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.051100", + "Timestamp": "2024-05-16T05:17:17.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.091900", + "Timestamp": "2024-05-16T05:17:14.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.297000", - "Timestamp": "2019-10-15T20:39:22.000Z" + "SpotPrice": "0.371500", + "Timestamp": "2024-05-16T05:17:14.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5dn.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.267000", - "Timestamp": "2019-10-15T20:39:22.000Z" + "SpotPrice": "0.366500", + "Timestamp": "2024-05-16T05:17:14.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5dn.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.167000", - "Timestamp": "2019-10-15T20:39:22.000Z" + "SpotPrice": "0.241500", + "Timestamp": "2024-05-16T05:17:14.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.286900", - "Timestamp": "2019-10-15T20:31:48.000Z" + "SpotPrice": "0.167700", + "Timestamp": "2024-05-16T05:17:14.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.256900", - "Timestamp": "2019-10-15T20:31:48.000Z" + "SpotPrice": "0.163700", + "Timestamp": "2024-05-16T05:17:14.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.156900", - "Timestamp": "2019-10-15T20:31:48.000Z" + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T05:17:14.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.389100", - "Timestamp": "2019-10-15T20:31:33.000Z" + "SpotPrice": "0.136000", + "Timestamp": "2024-05-16T05:17:14.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.359100", - "Timestamp": "2019-10-15T20:31:33.000Z" + "SpotPrice": "0.132300", + "Timestamp": "2024-05-16T05:17:14.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.259100", - "Timestamp": "2019-10-15T20:31:33.000Z" + "SpotPrice": "0.076000", + "Timestamp": "2024-05-16T05:17:14.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.244000", - "Timestamp": "2019-10-15T20:24:37.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.340900", + "Timestamp": "2024-05-16T05:03:29.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.214000", - "Timestamp": "2019-10-15T20:24:37.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.515000", + "Timestamp": "2024-05-16T05:03:26.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.114000", - "Timestamp": "2019-10-15T20:24:37.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.080900", + "Timestamp": "2024-05-16T05:03:24.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3en.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.049100", - "Timestamp": "2019-10-15T20:23:19.000Z" + "SpotPrice": "1.607600", + "Timestamp": "2024-05-16T05:03:20.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.073900", - "Timestamp": "2019-10-15T20:23:07.000Z" + "SpotPrice": "5.953800", + "Timestamp": "2024-05-16T05:03:17.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.581500", - "Timestamp": "2019-10-15T20:16:21.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.160800", + "Timestamp": "2024-05-16T05:03:11.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g4dn.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.581500", - "Timestamp": "2019-10-15T20:16:21.000Z" + "SpotPrice": "0.799500", + "Timestamp": "2024-05-16T05:03:09.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g4dn.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.551500", - "Timestamp": "2019-10-15T20:16:21.000Z" + "SpotPrice": "0.794500", + "Timestamp": "2024-05-16T05:03:09.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.551500", - "Timestamp": "2019-10-15T20:16:21.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.669500", + "Timestamp": "2024-05-16T05:03:09.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.451500", - "Timestamp": "2019-10-15T20:16:21.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.262700", + "Timestamp": "2024-05-16T05:03:08.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.451500", - "Timestamp": "2019-10-15T20:16:21.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135200", + "Timestamp": "2024-05-16T05:03:08.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.187500", - "Timestamp": "2019-10-15T20:15:40.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131200", + "Timestamp": "2024-05-16T05:03:08.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g4dn.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075200", + "Timestamp": "2024-05-16T05:03:08.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.187500", - "Timestamp": "2019-10-15T20:15:40.000Z" + "SpotPrice": "3.068800", + "Timestamp": "2024-05-16T05:03:08.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.087100", - "Timestamp": "2019-10-15T20:15:35.000Z" + "SpotPrice": "1.380400", + "Timestamp": "2024-05-16T05:03:07.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "5.057100", - "Timestamp": "2019-10-15T20:15:35.000Z" + "SpotPrice": "1.375400", + "Timestamp": "2024-05-16T05:03:07.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.957100", - "Timestamp": "2019-10-15T20:15:35.000Z" + "SpotPrice": "1.250400", + "Timestamp": "2024-05-16T05:03:07.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.109900", + "Timestamp": "2024-05-16T05:03:07.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.759500", - "Timestamp": "2019-10-15T20:15:34.000Z" + "SpotPrice": "4.378800", + "Timestamp": "2024-05-16T05:03:06.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "4.729500", - "Timestamp": "2019-10-15T20:15:34.000Z" + "SpotPrice": "4.373800", + "Timestamp": "2024-05-16T05:03:06.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.629500", - "Timestamp": "2019-10-15T20:15:34.000Z" + "SpotPrice": "4.248800", + "Timestamp": "2024-05-16T05:03:06.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.925700", - "Timestamp": "2019-10-15T20:15:22.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.531200", + "Timestamp": "2024-05-16T05:03:05.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.925700", - "Timestamp": "2019-10-15T20:15:22.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.515800", + "Timestamp": "2024-05-16T05:03:05.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.135800", + "Timestamp": "2024-05-16T05:03:05.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.925700", - "Timestamp": "2019-10-15T20:15:22.000Z" + "SpotPrice": "1.886000", + "Timestamp": "2024-05-16T05:03:03.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.895700", - "Timestamp": "2019-10-15T20:15:22.000Z" + "SpotPrice": "1.881000", + "Timestamp": "2024-05-16T05:03:03.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.895700", - "Timestamp": "2019-10-15T20:15:22.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.756000", + "Timestamp": "2024-05-16T05:03:03.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.572900", + "Timestamp": "2024-05-16T05:03:03.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.895700", - "Timestamp": "2019-10-15T20:15:22.000Z" + "SpotPrice": "0.567900", + "Timestamp": "2024-05-16T05:03:03.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.795700", - "Timestamp": "2019-10-15T20:15:22.000Z" + "SpotPrice": "0.442900", + "Timestamp": "2024-05-16T05:03:03.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.795700", - "Timestamp": "2019-10-15T20:15:22.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.272300", + "Timestamp": "2024-05-16T05:03:03.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.795700", - "Timestamp": "2019-10-15T20:15:22.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.428000", + "Timestamp": "2024-05-16T05:03:02.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.166500", - "Timestamp": "2019-10-15T20:15:22.000Z" + "SpotPrice": "3.660100", + "Timestamp": "2024-05-16T05:03:02.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.206500", - "Timestamp": "2019-10-15T20:15:22.000Z" + "SpotPrice": "3.655100", + "Timestamp": "2024-05-16T05:03:02.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.106500", - "Timestamp": "2019-10-15T20:15:22.000Z" + "SpotPrice": "3.530100", + "Timestamp": "2024-05-16T05:03:02.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.171600", - "Timestamp": "2019-10-15T20:15:17.000Z" + "SpotPrice": "0.879300", + "Timestamp": "2024-05-16T05:03:00.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.141600", - "Timestamp": "2019-10-15T20:15:17.000Z" + "SpotPrice": "0.874300", + "Timestamp": "2024-05-16T05:03:00.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.041600", - "Timestamp": "2019-10-15T20:15:17.000Z" + "SpotPrice": "0.749300", + "Timestamp": "2024-05-16T05:03:00.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.453800", - "Timestamp": "2019-10-15T20:15:07.000Z" + "SpotPrice": "0.902800", + "Timestamp": "2024-05-16T05:03:00.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c3.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.423800", - "Timestamp": "2019-10-15T20:15:07.000Z" + "SpotPrice": "0.872800", + "Timestamp": "2024-05-16T05:03:00.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c3.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.323800", - "Timestamp": "2019-10-15T20:15:07.000Z" + "SpotPrice": "0.772800", + "Timestamp": "2024-05-16T05:03:00.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.189000", - "Timestamp": "2019-10-15T20:14:53.000Z" + "SpotPrice": "1.058200", + "Timestamp": "2024-05-16T05:02:59.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.large", "ProductDescription": "Windows", - "SpotPrice": "1.476700", - "Timestamp": "2019-10-15T20:14:51.000Z" + "SpotPrice": "0.164900", + "Timestamp": "2024-05-16T05:02:59.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.003700", - "Timestamp": "2019-10-15T20:14:38.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.936300", + "Timestamp": "2024-05-16T05:02:59.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.003700", - "Timestamp": "2019-10-15T20:14:38.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.931300", + "Timestamp": "2024-05-16T05:02:59.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.003700", - "Timestamp": "2019-10-15T20:14:38.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.806300", + "Timestamp": "2024-05-16T05:02:59.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.074400", - "Timestamp": "2019-10-15T20:13:05.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.630000", + "Timestamp": "2024-05-16T05:02:57.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.074400", - "Timestamp": "2019-10-15T20:13:05.000Z" + "SpotPrice": "1.273500", + "Timestamp": "2024-05-16T05:02:57.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.074400", - "Timestamp": "2019-10-15T20:13:05.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.114400", - "Timestamp": "2019-10-15T20:13:05.000Z" + "SpotPrice": "1.239300", + "Timestamp": "2024-05-16T05:02:57.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.114400", - "Timestamp": "2019-10-15T20:13:05.000Z" + "SpotPrice": "1.268500", + "Timestamp": "2024-05-16T05:02:57.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.114400", - "Timestamp": "2019-10-15T20:13:05.000Z" + "SpotPrice": "1.234300", + "Timestamp": "2024-05-16T05:02:57.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.014400", - "Timestamp": "2019-10-15T20:13:05.000Z" + "SpotPrice": "1.143500", + "Timestamp": "2024-05-16T05:02:57.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.014400", - "Timestamp": "2019-10-15T20:13:05.000Z" + "SpotPrice": "1.109300", + "Timestamp": "2024-05-16T05:02:57.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.014400", - "Timestamp": "2019-10-15T20:13:05.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.182100", + "Timestamp": "2024-05-16T05:02:57.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.032800", - "Timestamp": "2019-10-15T20:12:21.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.702600", + "Timestamp": "2024-05-16T05:02:57.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.032800", - "Timestamp": "2019-10-15T20:12:21.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.697600", + "Timestamp": "2024-05-16T05:02:57.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.032800", - "Timestamp": "2019-10-15T20:12:21.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.572600", + "Timestamp": "2024-05-16T05:02:57.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.287300", - "Timestamp": "2019-10-15T20:06:42.000Z" + "SpotPrice": "6.660600", + "Timestamp": "2024-05-16T05:02:57.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.136200", - "Timestamp": "2019-10-15T20:06:21.000Z" + "SpotPrice": "3.617700", + "Timestamp": "2024-05-16T05:02:57.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.176200", - "Timestamp": "2019-10-15T20:06:21.000Z" + "SpotPrice": "3.612700", + "Timestamp": "2024-05-16T05:02:57.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.076200", - "Timestamp": "2019-10-15T20:06:21.000Z" + "SpotPrice": "3.487700", + "Timestamp": "2024-05-16T05:02:57.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.957200", - "Timestamp": "2019-10-15T20:06:12.000Z" + "SpotPrice": "0.261300", + "Timestamp": "2024-05-16T05:02:56.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5g.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "4.927200", - "Timestamp": "2019-10-15T20:06:12.000Z" + "SpotPrice": "0.257600", + "Timestamp": "2024-05-16T05:02:56.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.827200", - "Timestamp": "2019-10-15T20:06:12.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.314400", - "Timestamp": "2019-10-15T19:58:24.000Z" + "SpotPrice": "0.201300", + "Timestamp": "2024-05-16T05:02:56.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.large", "ProductDescription": "Windows", - "SpotPrice": "0.253600", - "Timestamp": "2019-10-15T19:57:35.000Z" + "SpotPrice": "0.134900", + "Timestamp": "2024-05-16T05:02:55.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.253600", - "Timestamp": "2019-10-15T19:57:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.253800", + "Timestamp": "2024-05-16T05:02:55.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.253600", - "Timestamp": "2019-10-15T19:57:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.248800", + "Timestamp": "2024-05-16T05:02:55.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.058000", - "Timestamp": "2019-10-15T19:53:24.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.123800", + "Timestamp": "2024-05-16T05:02:55.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5n.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m1.small", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.244000", - "Timestamp": "2019-10-15T19:52:55.000Z" + "SpotPrice": "0.079000", + "Timestamp": "2024-05-16T05:02:54.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5n.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m1.small", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.214000", - "Timestamp": "2019-10-15T19:52:55.000Z" + "SpotPrice": "0.049000", + "Timestamp": "2024-05-16T05:02:54.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5n.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m1.small", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.114000", - "Timestamp": "2019-10-15T19:52:55.000Z" + "SpotPrice": "0.019000", + "Timestamp": "2024-05-16T05:02:54.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123600", - "Timestamp": "2019-10-15T19:52:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.072900", + "Timestamp": "2024-05-16T05:02:53.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123600", - "Timestamp": "2019-10-15T19:52:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.879800", + "Timestamp": "2024-05-16T05:02:53.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123600", - "Timestamp": "2019-10-15T19:52:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.042900", + "Timestamp": "2024-05-16T05:02:53.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.190900", - "Timestamp": "2019-10-15T19:52:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.849800", + "Timestamp": "2024-05-16T05:02:53.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.190900", - "Timestamp": "2019-10-15T19:52:29.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.942900", + "Timestamp": "2024-05-16T05:02:53.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.749800", + "Timestamp": "2024-05-16T05:02:53.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i-flex.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.190900", - "Timestamp": "2019-10-15T19:52:29.000Z" + "SpotPrice": "0.643900", + "Timestamp": "2024-05-16T05:02:53.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i-flex.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.160900", - "Timestamp": "2019-10-15T19:52:29.000Z" + "SpotPrice": "0.638900", + "Timestamp": "2024-05-16T05:02:53.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.160900", - "Timestamp": "2019-10-15T19:52:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.513900", + "Timestamp": "2024-05-16T05:02:53.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m4.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.160900", - "Timestamp": "2019-10-15T19:52:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.174300", + "Timestamp": "2024-05-16T05:02:53.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.060900", - "Timestamp": "2019-10-15T19:52:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.635100", + "Timestamp": "2024-05-16T05:02:52.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.060900", - "Timestamp": "2019-10-15T19:52:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.630100", + "Timestamp": "2024-05-16T05:02:52.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.060900", - "Timestamp": "2019-10-15T19:52:29.000Z" + "SpotPrice": "1.505100", + "Timestamp": "2024-05-16T05:02:52.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.085900", - "Timestamp": "2019-10-15T19:52:03.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.998100", + "Timestamp": "2024-05-16T05:02:52.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.085900", - "Timestamp": "2019-10-15T19:52:03.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3a.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.125900", - "Timestamp": "2019-10-15T19:52:03.000Z" + "SpotPrice": "4.075100", + "Timestamp": "2024-05-16T05:02:52.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.125900", - "Timestamp": "2019-10-15T19:52:03.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.025900", - "Timestamp": "2019-10-15T19:52:03.000Z" + "SpotPrice": "4.070100", + "Timestamp": "2024-05-16T05:02:52.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.025900", - "Timestamp": "2019-10-15T19:52:03.000Z" + "SpotPrice": "3.945100", + "Timestamp": "2024-05-16T05:02:52.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3a.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.053500", - "Timestamp": "2019-10-15T19:52:00.000Z" + "SpotPrice": "4.376400", + "Timestamp": "2024-05-16T05:02:51.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3a.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.large", "ProductDescription": "Windows", - "SpotPrice": "0.053500", - "Timestamp": "2019-10-15T19:52:00.000Z" + "SpotPrice": "0.141400", + "Timestamp": "2024-05-16T05:02:51.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4ad.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091600", - "Timestamp": "2019-10-15T19:51:57.000Z" + "SpotPrice": "0.421000", + "Timestamp": "2024-05-16T05:02:51.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091600", - "Timestamp": "2019-10-15T19:51:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.416000", + "Timestamp": "2024-05-16T05:02:51.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091600", - "Timestamp": "2019-10-15T19:51:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.291000", + "Timestamp": "2024-05-16T05:02:51.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c4.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.131600", - "Timestamp": "2019-10-15T19:51:57.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.531100", + "Timestamp": "2024-05-16T05:02:50.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c4.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.131600", - "Timestamp": "2019-10-15T19:51:57.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.371300", + "Timestamp": "2024-05-16T05:02:50.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.131600", - "Timestamp": "2019-10-15T19:51:57.000Z" + "SpotPrice": "3.366300", + "Timestamp": "2024-05-16T05:02:50.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031600", - "Timestamp": "2019-10-15T19:51:57.000Z" + "SpotPrice": "3.241300", + "Timestamp": "2024-05-16T05:02:50.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031600", - "Timestamp": "2019-10-15T19:51:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.755400", + "Timestamp": "2024-05-16T05:02:50.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031600", - "Timestamp": "2019-10-15T19:51:57.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.750400", + "Timestamp": "2024-05-16T05:02:50.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.965500", - "Timestamp": "2019-10-15T19:51:47.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.625400", + "Timestamp": "2024-05-16T05:02:50.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.043500", - "Timestamp": "2019-10-15T19:51:47.000Z" + "SpotPrice": "1.041100", + "Timestamp": "2024-05-16T05:02:50.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.854200", - "Timestamp": "2019-10-15T19:51:47.000Z" + "SpotPrice": "1.992600", + "Timestamp": "2024-05-16T05:02:50.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.965500", - "Timestamp": "2019-10-15T19:51:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.987600", + "Timestamp": "2024-05-16T05:02:50.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.824200", - "Timestamp": "2019-10-15T19:51:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.862600", + "Timestamp": "2024-05-16T05:02:50.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.935500", - "Timestamp": "2019-10-15T19:51:47.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.817300", + "Timestamp": "2024-05-16T05:02:49.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.724200", - "Timestamp": "2019-10-15T19:51:47.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.252800", + "Timestamp": "2024-05-16T05:02:49.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119100", + "Timestamp": "2024-05-16T05:02:47.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115400", + "Timestamp": "2024-05-16T05:02:47.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.835500", - "Timestamp": "2019-10-15T19:51:47.000Z" + "SpotPrice": "0.059100", + "Timestamp": "2024-05-16T05:02:47.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.302200", - "Timestamp": "2019-10-15T19:50:22.000Z" + "SpotPrice": "4.875700", + "Timestamp": "2024-05-16T05:02:46.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.294900", - "Timestamp": "2019-10-15T19:50:22.000Z" + "SpotPrice": "4.945100", + "Timestamp": "2024-05-16T05:02:46.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.272200", - "Timestamp": "2019-10-15T19:50:22.000Z" + "SpotPrice": "4.870700", + "Timestamp": "2024-05-16T05:02:46.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.264900", - "Timestamp": "2019-10-15T19:50:22.000Z" + "SpotPrice": "4.940100", + "Timestamp": "2024-05-16T05:02:46.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.172200", - "Timestamp": "2019-10-15T19:50:22.000Z" + "SpotPrice": "4.745700", + "Timestamp": "2024-05-16T05:02:46.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.164900", - "Timestamp": "2019-10-15T19:50:22.000Z" + "SpotPrice": "4.815100", + "Timestamp": "2024-05-16T05:02:46.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.733700", - "Timestamp": "2019-10-15T19:50:14.000Z" + "SpotPrice": "0.839400", + "Timestamp": "2024-05-16T05:02:46.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.703700", - "Timestamp": "2019-10-15T19:50:14.000Z" + "SpotPrice": "0.834400", + "Timestamp": "2024-05-16T05:02:46.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.603700", - "Timestamp": "2019-10-15T19:50:14.000Z" + "SpotPrice": "0.709400", + "Timestamp": "2024-05-16T05:02:46.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.282500", - "Timestamp": "2019-10-15T19:49:48.000Z" + "SpotPrice": "0.171300", + "Timestamp": "2024-05-16T05:02:46.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.252500", - "Timestamp": "2019-10-15T19:49:48.000Z" + "SpotPrice": "0.167300", + "Timestamp": "2024-05-16T05:02:46.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.152500", - "Timestamp": "2019-10-15T19:49:48.000Z" + "SpotPrice": "0.111300", + "Timestamp": "2024-05-16T05:02:46.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m1.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.898100", - "Timestamp": "2019-10-15T19:49:36.000Z" + "SpotPrice": "0.134600", + "Timestamp": "2024-05-16T05:02:46.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m1.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.868100", - "Timestamp": "2019-10-15T19:49:36.000Z" + "SpotPrice": "0.174600", + "Timestamp": "2024-05-16T05:02:46.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m1.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.768100", - "Timestamp": "2019-10-15T19:49:36.000Z" + "SpotPrice": "0.074600", + "Timestamp": "2024-05-16T05:02:46.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095700", - "Timestamp": "2019-10-15T19:49:28.000Z" + "SpotPrice": "5.914900", + "Timestamp": "2024-05-16T05:02:45.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135700", - "Timestamp": "2019-10-15T19:49:28.000Z" + "SpotPrice": "5.909900", + "Timestamp": "2024-05-16T05:02:45.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035700", - "Timestamp": "2019-10-15T19:49:28.000Z" + "SpotPrice": "5.784900", + "Timestamp": "2024-05-16T05:02:45.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.055900", + "Timestamp": "2024-05-16T05:02:45.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.186900", - "Timestamp": "2019-10-15T19:42:06.000Z" + "SpotPrice": "2.340100", + "Timestamp": "2024-05-16T05:02:44.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.226900", - "Timestamp": "2019-10-15T19:42:06.000Z" + "SpotPrice": "2.335100", + "Timestamp": "2024-05-16T05:02:44.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.126900", - "Timestamp": "2019-10-15T19:42:06.000Z" + "SpotPrice": "2.210100", + "Timestamp": "2024-05-16T05:02:44.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.300200", + "Timestamp": "2024-05-16T05:02:43.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.411900", - "Timestamp": "2019-10-15T19:41:33.000Z" + "SpotPrice": "2.413600", + "Timestamp": "2024-05-16T05:02:43.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "4.381900", - "Timestamp": "2019-10-15T19:41:33.000Z" + "SpotPrice": "2.408600", + "Timestamp": "2024-05-16T05:02:43.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.281900", - "Timestamp": "2019-10-15T19:41:33.000Z" + "SpotPrice": "2.283600", + "Timestamp": "2024-05-16T05:02:43.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.426700", - "Timestamp": "2019-10-15T19:41:33.000Z" + "SpotPrice": "0.840300", + "Timestamp": "2024-05-16T05:02:42.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.396700", - "Timestamp": "2019-10-15T19:41:33.000Z" + "SpotPrice": "0.835300", + "Timestamp": "2024-05-16T05:02:42.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.296700", - "Timestamp": "2019-10-15T19:41:33.000Z" + "SpotPrice": "0.710300", + "Timestamp": "2024-05-16T05:02:42.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096600", - "Timestamp": "2019-10-15T19:41:27.000Z" + "SpotPrice": "0.121200", + "Timestamp": "2024-05-16T05:02:42.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136600", - "Timestamp": "2019-10-15T19:41:27.000Z" + "SpotPrice": "0.117500", + "Timestamp": "2024-05-16T05:02:42.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036600", - "Timestamp": "2019-10-15T19:41:27.000Z" + "SpotPrice": "0.061200", + "Timestamp": "2024-05-16T05:02:42.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.440000", - "Timestamp": "2019-10-15T19:41:04.000Z" + "SpotPrice": "0.784800", + "Timestamp": "2024-05-16T05:02:41.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.410000", - "Timestamp": "2019-10-15T19:41:04.000Z" + "SpotPrice": "0.779800", + "Timestamp": "2024-05-16T05:02:41.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.310000", - "Timestamp": "2019-10-15T19:41:04.000Z" + "SpotPrice": "0.654800", + "Timestamp": "2024-05-16T05:02:41.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g3.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.837000", - "Timestamp": "2019-10-15T19:33:22.000Z" + "SpotPrice": "1.206600", + "Timestamp": "2024-05-16T05:02:41.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.102300", - "Timestamp": "2019-10-15T19:33:13.000Z" + "SpotPrice": "3.241400", + "Timestamp": "2024-05-16T05:02:41.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.142300", - "Timestamp": "2019-10-15T19:33:13.000Z" + "SpotPrice": "3.236400", + "Timestamp": "2024-05-16T05:02:41.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.042300", - "Timestamp": "2019-10-15T19:33:13.000Z" + "SpotPrice": "3.111400", + "Timestamp": "2024-05-16T05:02:41.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.596400", + "Timestamp": "2024-05-16T05:02:40.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.383600", + "Timestamp": "2024-05-16T05:02:40.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.813900", + "Timestamp": "2024-05-16T05:02:40.000Z" + }, + { + "AvailabilityZone": "us-east-1e", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.136300", + "Timestamp": "2024-05-16T05:02:39.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.803500", - "Timestamp": "2019-10-15T19:33:12.000Z" + "SpotPrice": "2.297600", + "Timestamp": "2024-05-16T05:02:39.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "4.773500", - "Timestamp": "2019-10-15T19:33:12.000Z" + "SpotPrice": "2.292600", + "Timestamp": "2024-05-16T05:02:39.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.673500", - "Timestamp": "2019-10-15T19:33:12.000Z" + "SpotPrice": "2.167600", + "Timestamp": "2024-05-16T05:02:39.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.274500", - "Timestamp": "2019-10-15T19:25:15.000Z" + "SpotPrice": "3.924200", + "Timestamp": "2024-05-16T05:02:39.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.244500", - "Timestamp": "2019-10-15T19:25:15.000Z" + "SpotPrice": "3.919200", + "Timestamp": "2024-05-16T05:02:39.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.144500", - "Timestamp": "2019-10-15T19:25:15.000Z" + "SpotPrice": "3.794200", + "Timestamp": "2024-05-16T05:02:39.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.152200", + "Timestamp": "2024-05-16T05:02:39.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "im4gn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.376300", - "Timestamp": "2019-10-15T19:24:55.000Z" + "SpotPrice": "0.427500", + "Timestamp": "2024-05-16T05:02:38.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "im4gn.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.346300", - "Timestamp": "2019-10-15T19:24:55.000Z" + "SpotPrice": "0.422500", + "Timestamp": "2024-05-16T05:02:38.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "im4gn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.246300", - "Timestamp": "2019-10-15T19:24:55.000Z" + "SpotPrice": "0.297500", + "Timestamp": "2024-05-16T05:02:38.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "9.078800", - "Timestamp": "2019-10-15T19:24:49.000Z" + "SpotPrice": "12.262300", + "Timestamp": "2024-05-16T05:02:37.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.large", "ProductDescription": "Windows", - "SpotPrice": "0.128600", - "Timestamp": "2019-10-15T19:16:23.000Z" + "SpotPrice": "0.147700", + "Timestamp": "2024-05-16T05:02:36.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.large", "ProductDescription": "Windows", - "SpotPrice": "3.675000", - "Timestamp": "2019-10-15T19:15:00.000Z" + "SpotPrice": "0.148400", + "Timestamp": "2024-05-16T05:02:36.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096800", - "Timestamp": "2019-10-15T19:08:23.000Z" + "SpotPrice": "0.568700", + "Timestamp": "2024-05-16T05:02:35.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136800", - "Timestamp": "2019-10-15T19:08:23.000Z" + "SpotPrice": "0.563700", + "Timestamp": "2024-05-16T05:02:35.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036800", - "Timestamp": "2019-10-15T19:08:23.000Z" - }, - { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.145100", - "Timestamp": "2019-10-15T19:08:04.000Z" - }, - { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.185100", - "Timestamp": "2019-10-15T19:08:04.000Z" + "SpotPrice": "0.438700", + "Timestamp": "2024-05-16T05:02:35.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.085100", - "Timestamp": "2019-10-15T19:08:04.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.542700", + "Timestamp": "2024-05-16T05:02:35.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.9xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.482200", - "Timestamp": "2019-10-15T19:08:00.000Z" + "SpotPrice": "2.389400", + "Timestamp": "2024-05-16T05:02:34.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.320100", - "Timestamp": "2019-10-15T19:07:50.000Z" + "SpotPrice": "13.859700", + "Timestamp": "2024-05-16T05:02:34.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.290100", - "Timestamp": "2019-10-15T19:07:50.000Z" + "SpotPrice": "13.854700", + "Timestamp": "2024-05-16T05:02:34.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iedn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.190100", - "Timestamp": "2019-10-15T19:07:50.000Z" + "SpotPrice": "13.729700", + "Timestamp": "2024-05-16T05:02:34.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.259200", - "Timestamp": "2019-10-15T18:59:56.000Z" + "SpotPrice": "0.433700", + "Timestamp": "2024-05-16T05:02:33.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.229200", - "Timestamp": "2019-10-15T18:59:56.000Z" + "SpotPrice": "0.428700", + "Timestamp": "2024-05-16T05:02:33.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.129200", - "Timestamp": "2019-10-15T18:59:56.000Z" + "SpotPrice": "0.303700", + "Timestamp": "2024-05-16T05:02:33.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094800", - "Timestamp": "2019-10-15T18:59:42.000Z" + "SpotPrice": "0.382100", + "Timestamp": "2024-05-16T05:02:33.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134800", - "Timestamp": "2019-10-15T18:59:42.000Z" + "SpotPrice": "0.377100", + "Timestamp": "2024-05-16T05:02:33.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034800", - "Timestamp": "2019-10-15T18:59:42.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126800", - "Timestamp": "2019-10-15T18:59:09.000Z" + "SpotPrice": "0.252100", + "Timestamp": "2024-05-16T05:02:33.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126800", - "Timestamp": "2019-10-15T18:59:09.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.390300", + "Timestamp": "2024-05-16T05:02:32.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126800", - "Timestamp": "2019-10-15T18:59:09.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.385300", + "Timestamp": "2024-05-16T05:02:32.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.111000", - "Timestamp": "2019-10-15T18:58:46.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.260300", + "Timestamp": "2024-05-16T05:02:32.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.111000", - "Timestamp": "2019-10-15T18:58:46.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085600", + "Timestamp": "2024-05-16T05:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.111000", - "Timestamp": "2019-10-15T18:58:46.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.081900", + "Timestamp": "2024-05-16T05:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.297000", - "Timestamp": "2019-10-15T18:57:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025600", + "Timestamp": "2024-05-16T05:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.297000", - "Timestamp": "2019-10-15T18:57:41.000Z" + "SpotPrice": "0.142200", + "Timestamp": "2024-05-16T05:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.297000", - "Timestamp": "2019-10-15T18:57:41.000Z" + "SpotPrice": "0.150400", + "Timestamp": "2024-05-16T05:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gn.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.267000", - "Timestamp": "2019-10-15T18:57:41.000Z" + "SpotPrice": "0.138500", + "Timestamp": "2024-05-16T05:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gn.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.267000", - "Timestamp": "2019-10-15T18:57:41.000Z" + "SpotPrice": "0.146700", + "Timestamp": "2024-05-16T05:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.267000", - "Timestamp": "2019-10-15T18:57:41.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082200", + "Timestamp": "2024-05-16T05:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.167000", - "Timestamp": "2019-10-15T18:57:41.000Z" + "SpotPrice": "0.090400", + "Timestamp": "2024-05-16T05:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.167000", - "Timestamp": "2019-10-15T18:57:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.510900", + "Timestamp": "2024-05-16T05:02:30.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.505900", + "Timestamp": "2024-05-16T05:02:30.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.167000", - "Timestamp": "2019-10-15T18:57:41.000Z" + "SpotPrice": "0.380900", + "Timestamp": "2024-05-16T05:02:30.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.022800", - "Timestamp": "2019-10-15T18:52:23.000Z" + "SpotPrice": "1.987500", + "Timestamp": "2024-05-16T05:02:30.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.022800", - "Timestamp": "2019-10-15T18:52:23.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.982500", + "Timestamp": "2024-05-16T05:02:30.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.022800", - "Timestamp": "2019-10-15T18:52:23.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.857500", + "Timestamp": "2024-05-16T05:02:30.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.992800", - "Timestamp": "2019-10-15T18:52:23.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.038300", + "Timestamp": "2024-05-16T05:02:30.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.992800", - "Timestamp": "2019-10-15T18:52:23.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.016600", + "Timestamp": "2024-05-16T05:02:27.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.992800", - "Timestamp": "2019-10-15T18:52:23.000Z" + "SpotPrice": "2.011600", + "Timestamp": "2024-05-16T05:02:27.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7gd.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.892800", - "Timestamp": "2019-10-15T18:52:23.000Z" + "SpotPrice": "1.886600", + "Timestamp": "2024-05-16T05:02:27.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.892800", - "Timestamp": "2019-10-15T18:52:23.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.080800", + "Timestamp": "2024-05-16T05:02:27.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.892800", - "Timestamp": "2019-10-15T18:52:23.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.075800", + "Timestamp": "2024-05-16T05:02:27.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.364800", - "Timestamp": "2019-10-15T18:51:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.950800", + "Timestamp": "2024-05-16T05:02:27.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3.large", "ProductDescription": "Windows", - "SpotPrice": "2.364800", - "Timestamp": "2019-10-15T18:51:56.000Z" + "SpotPrice": "0.159500", + "Timestamp": "2024-05-16T05:02:27.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.364800", - "Timestamp": "2019-10-15T18:51:56.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t2.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.064000", - "Timestamp": "2019-10-15T18:51:48.000Z" + "SpotPrice": "2.495000", + "Timestamp": "2024-05-16T05:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d2.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.064000", - "Timestamp": "2019-10-15T18:51:48.000Z" + "SpotPrice": "0.707500", + "Timestamp": "2024-05-16T05:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-1a", + "InstanceType": "d2.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.064000", - "Timestamp": "2019-10-15T18:51:48.000Z" + "SpotPrice": "0.638600", + "Timestamp": "2024-05-16T05:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d2.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.014000", - "Timestamp": "2019-10-15T18:51:48.000Z" + "SpotPrice": "0.677500", + "Timestamp": "2024-05-16T05:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-1a", + "InstanceType": "d2.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.014000", - "Timestamp": "2019-10-15T18:51:48.000Z" + "SpotPrice": "0.608600", + "Timestamp": "2024-05-16T05:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t2.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.014000", - "Timestamp": "2019-10-15T18:51:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.577500", + "Timestamp": "2024-05-16T05:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-1a", + "InstanceType": "d2.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.004000", - "Timestamp": "2019-10-15T18:51:48.000Z" + "SpotPrice": "0.508600", + "Timestamp": "2024-05-16T05:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t2.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.004000", - "Timestamp": "2019-10-15T18:51:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.790700", + "Timestamp": "2024-05-16T05:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.785700", + "Timestamp": "2024-05-16T05:02:25.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.004000", - "Timestamp": "2019-10-15T18:51:48.000Z" + "SpotPrice": "0.660700", + "Timestamp": "2024-05-16T05:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t2.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.008600", - "Timestamp": "2019-10-15T18:51:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162800", + "Timestamp": "2024-05-16T05:02:24.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t2.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.008600", - "Timestamp": "2019-10-15T18:51:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.202800", + "Timestamp": "2024-05-16T05:02:24.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T05:02:24.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.008600", - "Timestamp": "2019-10-15T18:51:48.000Z" + "SpotPrice": "0.299100", + "Timestamp": "2024-05-16T05:02:24.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.153000", - "Timestamp": "2019-10-15T18:51:31.000Z" + "SpotPrice": "4.348100", + "Timestamp": "2024-05-16T05:02:24.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090200", - "Timestamp": "2019-10-15T18:51:18.000Z" + "SpotPrice": "0.416700", + "Timestamp": "2024-05-16T05:02:22.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i2.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.130200", - "Timestamp": "2019-10-15T18:51:18.000Z" + "SpotPrice": "0.456700", + "Timestamp": "2024-05-16T05:02:22.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i2.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030200", - "Timestamp": "2019-10-15T18:51:18.000Z" + "SpotPrice": "0.356700", + "Timestamp": "2024-05-16T05:02:22.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t4g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.985000", - "Timestamp": "2019-10-15T18:51:17.000Z" + "SpotPrice": "0.075900", + "Timestamp": "2024-05-16T05:02:22.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.985000", - "Timestamp": "2019-10-15T18:51:17.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.072200", + "Timestamp": "2024-05-16T05:02:22.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.955000", - "Timestamp": "2019-10-15T18:51:17.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015900", + "Timestamp": "2024-05-16T05:02:22.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.955000", - "Timestamp": "2019-10-15T18:51:17.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.519800", + "Timestamp": "2024-05-16T05:02:21.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.855000", - "Timestamp": "2019-10-15T18:51:17.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147000", + "Timestamp": "2024-05-16T05:02:20.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143000", + "Timestamp": "2024-05-16T05:02:20.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.855000", - "Timestamp": "2019-10-15T18:51:17.000Z" + "SpotPrice": "0.087000", + "Timestamp": "2024-05-16T05:02:20.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.327000", - "Timestamp": "2019-10-15T18:50:58.000Z" + "SpotPrice": "6.850800", + "Timestamp": "2024-05-16T05:02:20.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.327000", - "Timestamp": "2019-10-15T18:50:58.000Z" + "SpotPrice": "1.011700", + "Timestamp": "2024-05-16T05:02:20.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.340800", - "Timestamp": "2019-10-15T18:43:38.000Z" + "SpotPrice": "1.046600", + "Timestamp": "2024-05-16T05:02:20.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.394800", - "Timestamp": "2019-10-15T18:43:38.000Z" + "SpotPrice": "1.566900", + "Timestamp": "2024-05-16T05:02:20.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.364800", - "Timestamp": "2019-10-15T18:43:38.000Z" + "SpotPrice": "1.561900", + "Timestamp": "2024-05-16T05:02:20.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.264800", - "Timestamp": "2019-10-15T18:43:38.000Z" + "SpotPrice": "1.436900", + "Timestamp": "2024-05-16T05:02:20.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "p2.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.623900", - "Timestamp": "2019-10-15T18:43:18.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.508100", - "Timestamp": "2019-10-15T18:43:13.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.478100", - "Timestamp": "2019-10-15T18:43:13.000Z" + "SpotPrice": "0.526500", + "Timestamp": "2024-05-16T05:02:19.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.378100", - "Timestamp": "2019-10-15T18:43:13.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.452500", + "Timestamp": "2024-05-16T05:02:19.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "8.896800", - "Timestamp": "2019-10-15T18:42:54.000Z" + "SpotPrice": "3.371400", + "Timestamp": "2024-05-16T05:02:19.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.400900", - "Timestamp": "2019-10-15T18:42:41.000Z" + "SpotPrice": "1.578800", + "Timestamp": "2024-05-16T05:02:18.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.370900", - "Timestamp": "2019-10-15T18:42:41.000Z" + "SpotPrice": "1.573800", + "Timestamp": "2024-05-16T05:02:18.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.270900", - "Timestamp": "2019-10-15T18:42:41.000Z" + "SpotPrice": "1.448800", + "Timestamp": "2024-05-16T05:02:18.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.898000", - "Timestamp": "2019-10-15T18:37:19.000Z" + "SpotPrice": "1.784700", + "Timestamp": "2024-05-16T05:02:18.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.868000", - "Timestamp": "2019-10-15T18:37:19.000Z" + "SpotPrice": "1.754700", + "Timestamp": "2024-05-16T05:02:18.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.768000", - "Timestamp": "2019-10-15T18:37:19.000Z" + "SpotPrice": "1.654700", + "Timestamp": "2024-05-16T05:02:18.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "14.014100", + "Timestamp": "2024-05-16T05:02:18.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.metal-48xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.271100", - "Timestamp": "2019-10-15T18:35:23.000Z" + "SpotPrice": "3.732500", + "Timestamp": "2024-05-16T05:02:17.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.metal-48xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.241100", - "Timestamp": "2019-10-15T18:35:23.000Z" + "SpotPrice": "3.727500", + "Timestamp": "2024-05-16T05:02:17.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.141100", - "Timestamp": "2019-10-15T18:35:23.000Z" + "SpotPrice": "3.602500", + "Timestamp": "2024-05-16T05:02:17.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129600", - "Timestamp": "2019-10-15T18:32:22.000Z" + "SpotPrice": "2.249100", + "Timestamp": "2024-05-16T05:02:16.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.169600", - "Timestamp": "2019-10-15T18:32:22.000Z" + "SpotPrice": "2.244100", + "Timestamp": "2024-05-16T05:02:16.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069600", - "Timestamp": "2019-10-15T18:32:22.000Z" + "SpotPrice": "2.119100", + "Timestamp": "2024-05-16T05:02:16.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.476900", + "Timestamp": "2024-05-16T05:02:15.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.816500", - "Timestamp": "2019-10-15T18:26:57.000Z" + "SpotPrice": "1.775400", + "Timestamp": "2024-05-16T05:02:15.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.786500", - "Timestamp": "2019-10-15T18:26:57.000Z" + "SpotPrice": "1.770400", + "Timestamp": "2024-05-16T05:02:15.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.686500", - "Timestamp": "2019-10-15T18:26:57.000Z" + "SpotPrice": "1.645400", + "Timestamp": "2024-05-16T05:02:15.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.510400", - "Timestamp": "2019-10-15T18:26:30.000Z" + "SpotPrice": "0.363600", + "Timestamp": "2024-05-16T05:02:14.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.480400", - "Timestamp": "2019-10-15T18:26:30.000Z" + "SpotPrice": "0.358600", + "Timestamp": "2024-05-16T05:02:14.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.380400", - "Timestamp": "2019-10-15T18:26:30.000Z" + "SpotPrice": "0.233600", + "Timestamp": "2024-05-16T05:02:14.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.533200", + "Timestamp": "2024-05-16T05:02:14.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "t2.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.183300", - "Timestamp": "2019-10-15T18:18:27.000Z" + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T05:02:13.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t2.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.223300", - "Timestamp": "2019-10-15T18:18:27.000Z" + "SpotPrice": "0.150300", + "Timestamp": "2024-05-16T05:02:13.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t2.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.123300", - "Timestamp": "2019-10-15T18:18:27.000Z" + "SpotPrice": "0.050300", + "Timestamp": "2024-05-16T05:02:13.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.340700", - "Timestamp": "2019-10-15T18:17:43.000Z" + "SpotPrice": "4.064700", + "Timestamp": "2024-05-16T05:02:13.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.411600", - "Timestamp": "2019-10-15T18:17:35.000Z" + "SpotPrice": "0.104300", + "Timestamp": "2024-05-16T05:02:13.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.381600", - "Timestamp": "2019-10-15T18:17:35.000Z" + "SpotPrice": "0.100600", + "Timestamp": "2024-05-16T05:02:13.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.281600", - "Timestamp": "2019-10-15T18:17:35.000Z" + "SpotPrice": "0.044300", + "Timestamp": "2024-05-16T05:02:13.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c4.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.410100", - "Timestamp": "2019-10-15T18:14:23.000Z" + "SpotPrice": "0.482000", + "Timestamp": "2024-05-16T05:02:13.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c4.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.410100", - "Timestamp": "2019-10-15T18:14:23.000Z" + "SpotPrice": "0.495300", + "Timestamp": "2024-05-16T05:02:13.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c4.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.450100", - "Timestamp": "2019-10-15T18:14:23.000Z" + "SpotPrice": "0.452000", + "Timestamp": "2024-05-16T05:02:13.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c4.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.450100", - "Timestamp": "2019-10-15T18:14:23.000Z" + "SpotPrice": "0.465300", + "Timestamp": "2024-05-16T05:02:13.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c4.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.350100", - "Timestamp": "2019-10-15T18:14:23.000Z" + "SpotPrice": "0.352000", + "Timestamp": "2024-05-16T05:02:13.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c4.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.350100", - "Timestamp": "2019-10-15T18:14:23.000Z" + "SpotPrice": "0.365300", + "Timestamp": "2024-05-16T05:02:13.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.099600", - "Timestamp": "2019-10-15T18:10:06.000Z" + "SpotPrice": "0.101800", + "Timestamp": "2024-05-16T05:02:13.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.139600", - "Timestamp": "2019-10-15T18:10:06.000Z" + "SpotPrice": "0.098100", + "Timestamp": "2024-05-16T05:02:13.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.039600", - "Timestamp": "2019-10-15T18:10:06.000Z" - }, - { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.682800", - "Timestamp": "2019-10-15T18:09:32.000Z" - }, - { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "5.652800", - "Timestamp": "2019-10-15T18:09:32.000Z" + "SpotPrice": "0.041800", + "Timestamp": "2024-05-16T05:02:13.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.552800", - "Timestamp": "2019-10-15T18:09:32.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.290500", + "Timestamp": "2024-05-16T05:02:12.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "9.924300", - "Timestamp": "2019-10-15T18:01:14.000Z" + "SpotPrice": "4.776800", + "Timestamp": "2024-05-16T05:02:11.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m4.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.259800", - "Timestamp": "2019-10-15T18:01:09.000Z" + "SpotPrice": "0.339600", + "Timestamp": "2024-05-16T05:02:11.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m4.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.229800", - "Timestamp": "2019-10-15T18:01:09.000Z" + "SpotPrice": "0.309600", + "Timestamp": "2024-05-16T05:02:11.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m4.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.129800", - "Timestamp": "2019-10-15T18:01:09.000Z" + "SpotPrice": "0.209600", + "Timestamp": "2024-05-16T05:02:11.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5dn.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.880600", - "Timestamp": "2019-10-15T17:59:58.000Z" + "SpotPrice": "0.577900", + "Timestamp": "2024-05-16T05:02:01.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5dn.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.850600", - "Timestamp": "2019-10-15T17:59:58.000Z" + "SpotPrice": "0.572900", + "Timestamp": "2024-05-16T05:02:01.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5dn.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.750600", - "Timestamp": "2019-10-15T17:59:58.000Z" + "SpotPrice": "0.447900", + "Timestamp": "2024-05-16T05:02:01.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t2.micro", "ProductDescription": "Windows", - "SpotPrice": "0.253600", - "Timestamp": "2019-10-15T17:59:22.000Z" + "SpotPrice": "0.009800", + "Timestamp": "2024-05-16T04:48:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.253600", - "Timestamp": "2019-10-15T17:59:22.000Z" + "SpotPrice": "2.698200", + "Timestamp": "2024-05-16T04:48:21.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.073000", - "Timestamp": "2019-10-15T17:58:42.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.708400", + "Timestamp": "2024-05-16T04:48:18.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3a.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.590900", + "Timestamp": "2024-05-16T04:48:15.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.metal-48xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.073000", - "Timestamp": "2019-10-15T17:58:42.000Z" + "SpotPrice": "5.791400", + "Timestamp": "2024-05-16T04:48:12.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3a.medium", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.metal-48xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.113000", - "Timestamp": "2019-10-15T17:58:42.000Z" + "SpotPrice": "5.786400", + "Timestamp": "2024-05-16T04:48:12.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3a.medium", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.661400", + "Timestamp": "2024-05-16T04:48:12.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.973700", + "Timestamp": "2024-05-16T04:48:11.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.113000", - "Timestamp": "2019-10-15T17:58:42.000Z" + "SpotPrice": "0.968700", + "Timestamp": "2024-05-16T04:48:11.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3a.medium", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.013000", - "Timestamp": "2019-10-15T17:58:42.000Z" + "SpotPrice": "0.843700", + "Timestamp": "2024-05-16T04:48:11.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3a.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.478800", + "Timestamp": "2024-05-16T04:48:09.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.473800", + "Timestamp": "2024-05-16T04:48:09.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.013000", - "Timestamp": "2019-10-15T17:58:42.000Z" + "SpotPrice": "1.348800", + "Timestamp": "2024-05-16T04:48:09.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i2.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.128500", - "Timestamp": "2019-10-15T17:58:26.000Z" + "SpotPrice": "0.454200", + "Timestamp": "2024-05-16T04:48:09.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.128500", - "Timestamp": "2019-10-15T17:58:26.000Z" + "SpotPrice": "0.412900", + "Timestamp": "2024-05-16T04:48:08.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.metal", "ProductDescription": "Windows", - "SpotPrice": "0.128500", - "Timestamp": "2019-10-15T17:58:26.000Z" + "SpotPrice": "12.212600", + "Timestamp": "2024-05-16T04:48:08.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096500", - "Timestamp": "2019-10-15T17:58:02.000Z" + "SpotPrice": "1.437000", + "Timestamp": "2024-05-16T04:48:07.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096500", - "Timestamp": "2019-10-15T17:58:02.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.432000", + "Timestamp": "2024-05-16T04:48:07.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136500", - "Timestamp": "2019-10-15T17:58:02.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.307000", + "Timestamp": "2024-05-16T04:48:07.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136500", - "Timestamp": "2019-10-15T17:58:02.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090600", + "Timestamp": "2024-05-16T04:48:07.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036500", - "Timestamp": "2019-10-15T17:58:02.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.061600", + "Timestamp": "2024-05-16T04:48:07.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6gd.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036500", - "Timestamp": "2019-10-15T17:58:02.000Z" + "SpotPrice": "0.030600", + "Timestamp": "2024-05-16T04:48:07.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.055500", - "Timestamp": "2019-10-15T17:57:49.000Z" + "SpotPrice": "5.215800", + "Timestamp": "2024-05-16T04:48:06.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.055500", - "Timestamp": "2019-10-15T17:57:49.000Z" + "SpotPrice": "9.945500", + "Timestamp": "2024-05-16T04:48:06.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.031400", - "Timestamp": "2019-10-15T17:57:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108300", + "Timestamp": "2024-05-16T04:48:06.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.031400", - "Timestamp": "2019-10-15T17:57:27.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T04:48:06.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.713500", - "Timestamp": "2019-10-15T17:57:18.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048300", + "Timestamp": "2024-05-16T04:48:06.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.713500", - "Timestamp": "2019-10-15T17:57:18.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.135200", + "Timestamp": "2024-05-16T04:48:05.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.683500", - "Timestamp": "2019-10-15T17:57:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.382700", + "Timestamp": "2024-05-16T04:48:03.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.683500", - "Timestamp": "2019-10-15T17:57:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.302700", + "Timestamp": "2024-05-16T04:48:02.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.583500", - "Timestamp": "2019-10-15T17:57:18.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.302800", + "Timestamp": "2024-05-16T04:48:02.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.583500", - "Timestamp": "2019-10-15T17:57:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.567000", + "Timestamp": "2024-05-16T04:48:01.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7gd.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.341400", - "Timestamp": "2019-10-15T17:56:22.000Z" + "SpotPrice": "0.881700", + "Timestamp": "2024-05-16T04:48:00.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.341400", - "Timestamp": "2019-10-15T17:56:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.876700", + "Timestamp": "2024-05-16T04:48:00.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g3s.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.381400", - "Timestamp": "2019-10-15T17:56:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.751700", + "Timestamp": "2024-05-16T04:48:00.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g3s.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.381400", - "Timestamp": "2019-10-15T17:56:22.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.056700", + "Timestamp": "2024-05-16T04:48:00.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.281400", - "Timestamp": "2019-10-15T17:56:22.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.051700", + "Timestamp": "2024-05-16T04:48:00.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.281400", - "Timestamp": "2019-10-15T17:56:22.000Z" + "SpotPrice": "0.926700", + "Timestamp": "2024-05-16T04:48:00.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.465400", - "Timestamp": "2019-10-15T17:55:56.000Z" + "SpotPrice": "10.220800", + "Timestamp": "2024-05-16T04:47:56.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.465400", - "Timestamp": "2019-10-15T17:55:56.000Z" + "SpotPrice": "3.666400", + "Timestamp": "2024-05-16T04:47:56.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.408500", - "Timestamp": "2019-10-15T17:53:19.000Z" + "SpotPrice": "0.696300", + "Timestamp": "2024-05-16T04:47:56.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.408500", - "Timestamp": "2019-10-15T17:53:19.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.691300", + "Timestamp": "2024-05-16T04:47:56.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.408500", - "Timestamp": "2019-10-15T17:53:19.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.566300", + "Timestamp": "2024-05-16T04:47:56.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.378500", - "Timestamp": "2019-10-15T17:53:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.162800", + "Timestamp": "2024-05-16T04:47:55.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.378500", - "Timestamp": "2019-10-15T17:53:19.000Z" + "SpotPrice": "2.157800", + "Timestamp": "2024-05-16T04:47:55.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.378500", - "Timestamp": "2019-10-15T17:53:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.032800", + "Timestamp": "2024-05-16T04:47:55.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.278500", - "Timestamp": "2019-10-15T17:53:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.525000", + "Timestamp": "2024-05-16T04:47:54.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.278500", - "Timestamp": "2019-10-15T17:53:19.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.520000", + "Timestamp": "2024-05-16T04:47:54.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.278500", - "Timestamp": "2019-10-15T17:53:19.000Z" + "SpotPrice": "0.395000", + "Timestamp": "2024-05-16T04:47:54.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.029000", - "Timestamp": "2019-10-15T17:53:16.000Z" + "SpotPrice": "0.255100", + "Timestamp": "2024-05-16T04:47:54.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.large", "ProductDescription": "Windows", - "SpotPrice": "2.029000", - "Timestamp": "2019-10-15T17:53:16.000Z" + "SpotPrice": "0.139100", + "Timestamp": "2024-05-16T04:47:51.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.6xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.014500", - "Timestamp": "2019-10-15T17:52:56.000Z" + "SpotPrice": "2.198300", + "Timestamp": "2024-05-16T04:47:50.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.014500", - "Timestamp": "2019-10-15T17:52:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.315800", + "Timestamp": "2024-05-16T04:47:50.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.014500", - "Timestamp": "2019-10-15T17:52:56.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.310800", + "Timestamp": "2024-05-16T04:47:50.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.828000", - "Timestamp": "2019-10-15T17:52:52.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.185800", + "Timestamp": "2024-05-16T04:47:50.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.828000", - "Timestamp": "2019-10-15T17:52:52.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.704200", + "Timestamp": "2024-05-16T04:47:50.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.828000", - "Timestamp": "2019-10-15T17:52:52.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.699200", + "Timestamp": "2024-05-16T04:47:50.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.687000", - "Timestamp": "2019-10-15T17:52:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.574200", + "Timestamp": "2024-05-16T04:47:50.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.687000", - "Timestamp": "2019-10-15T17:52:49.000Z" + "SpotPrice": "0.648200", + "Timestamp": "2024-05-16T04:47:49.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.657000", - "Timestamp": "2019-10-15T17:52:49.000Z" + "SpotPrice": "0.643200", + "Timestamp": "2024-05-16T04:47:49.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.657000", - "Timestamp": "2019-10-15T17:52:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.518200", + "Timestamp": "2024-05-16T04:47:49.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.557000", - "Timestamp": "2019-10-15T17:52:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.126800", + "Timestamp": "2024-05-16T04:47:49.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158900", + "Timestamp": "2024-05-16T04:47:49.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154900", + "Timestamp": "2024-05-16T04:47:49.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "inf1.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.557000", - "Timestamp": "2019-10-15T17:52:49.000Z" + "SpotPrice": "0.098900", + "Timestamp": "2024-05-16T04:47:49.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.244000", - "Timestamp": "2019-10-15T17:52:30.000Z" + "SpotPrice": "0.167500", + "Timestamp": "2024-05-16T04:47:48.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.458000", - "Timestamp": "2019-10-15T17:52:30.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163800", + "Timestamp": "2024-05-16T04:47:48.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T04:47:48.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.643700", + "Timestamp": "2024-05-16T04:47:47.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "im4gn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.244000", - "Timestamp": "2019-10-15T17:52:30.000Z" + "SpotPrice": "0.734800", + "Timestamp": "2024-05-16T04:47:47.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "im4gn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.214000", - "Timestamp": "2019-10-15T17:52:30.000Z" + "SpotPrice": "0.729800", + "Timestamp": "2024-05-16T04:47:47.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.428000", - "Timestamp": "2019-10-15T17:52:30.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.604800", + "Timestamp": "2024-05-16T04:47:47.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.368800", + "Timestamp": "2024-05-16T04:47:47.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.214000", - "Timestamp": "2019-10-15T17:52:30.000Z" + "SpotPrice": "3.338800", + "Timestamp": "2024-05-16T04:47:47.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x1.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.114000", - "Timestamp": "2019-10-15T17:52:30.000Z" + "SpotPrice": "3.238800", + "Timestamp": "2024-05-16T04:47:47.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.328000", - "Timestamp": "2019-10-15T17:52:30.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.515500", + "Timestamp": "2024-05-16T04:47:47.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "f1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.485500", + "Timestamp": "2024-05-16T04:47:47.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "f1.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.114000", - "Timestamp": "2019-10-15T17:52:30.000Z" + "SpotPrice": "1.385500", + "Timestamp": "2024-05-16T04:47:47.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "a1.medium", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.068600", - "Timestamp": "2019-10-15T17:52:24.000Z" + "SpotPrice": "0.485100", + "Timestamp": "2024-05-16T04:47:47.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "a1.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.068600", - "Timestamp": "2019-10-15T17:52:24.000Z" + "SpotPrice": "0.482800", + "Timestamp": "2024-05-16T04:47:47.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "a1.medium", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.108600", - "Timestamp": "2019-10-15T17:52:24.000Z" + "SpotPrice": "0.480100", + "Timestamp": "2024-05-16T04:47:47.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "a1.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.108600", - "Timestamp": "2019-10-15T17:52:24.000Z" + "SpotPrice": "0.477800", + "Timestamp": "2024-05-16T04:47:47.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "a1.medium", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.008600", - "Timestamp": "2019-10-15T17:52:24.000Z" + "SpotPrice": "0.355100", + "Timestamp": "2024-05-16T04:47:47.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "a1.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.008600", - "Timestamp": "2019-10-15T17:52:24.000Z" + "SpotPrice": "0.352800", + "Timestamp": "2024-05-16T04:47:47.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "z1d.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.750000", - "Timestamp": "2019-10-15T17:52:19.000Z" + "SpotPrice": "0.078900", + "Timestamp": "2024-05-16T04:47:46.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.750000", - "Timestamp": "2019-10-15T17:52:19.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075200", + "Timestamp": "2024-05-16T04:47:46.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.750000", - "Timestamp": "2019-10-15T17:52:19.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018900", + "Timestamp": "2024-05-16T04:47:46.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.720000", - "Timestamp": "2019-10-15T17:52:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.522200", + "Timestamp": "2024-05-16T04:47:46.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.720000", - "Timestamp": "2019-10-15T17:52:19.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.032500", + "Timestamp": "2024-05-16T04:47:46.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "z1d.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.720000", - "Timestamp": "2019-10-15T17:52:19.000Z" + "SpotPrice": "2.027500", + "Timestamp": "2024-05-16T04:47:46.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "z1d.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.620000", - "Timestamp": "2019-10-15T17:52:19.000Z" + "SpotPrice": "1.902500", + "Timestamp": "2024-05-16T04:47:46.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.620000", - "Timestamp": "2019-10-15T17:52:19.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.749400", + "Timestamp": "2024-05-16T04:47:45.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "z1d.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.744400", + "Timestamp": "2024-05-16T04:47:45.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.620000", - "Timestamp": "2019-10-15T17:52:19.000Z" + "SpotPrice": "0.619400", + "Timestamp": "2024-05-16T04:47:45.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.058000", - "Timestamp": "2019-10-15T17:51:53.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.570400", + "Timestamp": "2024-05-16T04:47:44.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.272000", - "Timestamp": "2019-10-15T17:51:53.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.540400", + "Timestamp": "2024-05-16T04:47:44.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.058000", - "Timestamp": "2019-10-15T17:51:53.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.440400", + "Timestamp": "2024-05-16T04:47:44.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3en.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.018000", - "Timestamp": "2019-10-15T17:51:51.000Z" + "SpotPrice": "0.463800", + "Timestamp": "2024-05-16T04:47:43.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.018000", - "Timestamp": "2019-10-15T17:51:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.458800", + "Timestamp": "2024-05-16T04:47:43.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.018000", - "Timestamp": "2019-10-15T17:51:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.333800", + "Timestamp": "2024-05-16T04:47:43.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.988000", - "Timestamp": "2019-10-15T17:51:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.326800", + "Timestamp": "2024-05-16T04:47:43.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.988000", - "Timestamp": "2019-10-15T17:51:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.247400", + "Timestamp": "2024-05-16T04:47:43.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3en.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.988000", - "Timestamp": "2019-10-15T17:51:51.000Z" + "SpotPrice": "0.243700", + "Timestamp": "2024-05-16T04:47:43.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3en.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.888000", - "Timestamp": "2019-10-15T17:51:51.000Z" + "SpotPrice": "0.187400", + "Timestamp": "2024-05-16T04:47:43.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.888000", - "Timestamp": "2019-10-15T17:51:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.766900", + "Timestamp": "2024-05-16T04:47:42.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3en.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.761900", + "Timestamp": "2024-05-16T04:47:42.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.888000", - "Timestamp": "2019-10-15T17:51:51.000Z" + "SpotPrice": "1.636900", + "Timestamp": "2024-05-16T04:47:42.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.530000", - "Timestamp": "2019-10-15T17:51:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.260000", + "Timestamp": "2024-05-16T04:47:42.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.530000", - "Timestamp": "2019-10-15T17:51:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.255000", + "Timestamp": "2024-05-16T04:47:42.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.530000", - "Timestamp": "2019-10-15T17:51:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.130000", + "Timestamp": "2024-05-16T04:47:42.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c3.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.244000", - "Timestamp": "2019-10-15T17:51:49.000Z" + "SpotPrice": "0.363000", + "Timestamp": "2024-05-16T04:47:42.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.244000", - "Timestamp": "2019-10-15T17:51:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.333000", + "Timestamp": "2024-05-16T04:47:42.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.233000", + "Timestamp": "2024-05-16T04:47:42.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.244000", - "Timestamp": "2019-10-15T17:51:49.000Z" + "SpotPrice": "1.612400", + "Timestamp": "2024-05-16T04:47:41.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.214000", - "Timestamp": "2019-10-15T17:51:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.771700", + "Timestamp": "2024-05-16T04:47:41.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.214000", - "Timestamp": "2019-10-15T17:51:49.000Z" + "SpotPrice": "1.607400", + "Timestamp": "2024-05-16T04:47:41.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.214000", - "Timestamp": "2019-10-15T17:51:49.000Z" + "SpotPrice": "1.766700", + "Timestamp": "2024-05-16T04:47:41.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.114000", - "Timestamp": "2019-10-15T17:51:49.000Z" + "SpotPrice": "1.482400", + "Timestamp": "2024-05-16T04:47:41.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.114000", - "Timestamp": "2019-10-15T17:51:49.000Z" + "SpotPrice": "1.641700", + "Timestamp": "2024-05-16T04:47:41.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.114000", - "Timestamp": "2019-10-15T17:51:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127000", + "Timestamp": "2024-05-16T04:47:41.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.616000", - "Timestamp": "2019-10-15T17:51:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123300", + "Timestamp": "2024-05-16T04:47:41.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.616000", - "Timestamp": "2019-10-15T17:51:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067000", + "Timestamp": "2024-05-16T04:47:41.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.616000", - "Timestamp": "2019-10-15T17:51:48.000Z" + "SpotPrice": "0.718100", + "Timestamp": "2024-05-16T04:47:40.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.586000", - "Timestamp": "2019-10-15T17:51:48.000Z" + "SpotPrice": "0.713100", + "Timestamp": "2024-05-16T04:47:40.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.586000", - "Timestamp": "2019-10-15T17:51:48.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.588100", + "Timestamp": "2024-05-16T04:47:40.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.586000", - "Timestamp": "2019-10-15T17:51:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.121000", + "Timestamp": "2024-05-16T04:47:40.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.486000", - "Timestamp": "2019-10-15T17:51:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.724900", + "Timestamp": "2024-05-16T04:47:40.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.486000", - "Timestamp": "2019-10-15T17:51:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.719900", + "Timestamp": "2024-05-16T04:47:40.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.486000", - "Timestamp": "2019-10-15T17:51:48.000Z" + "SpotPrice": "3.594900", + "Timestamp": "2024-05-16T04:47:40.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.038000", - "Timestamp": "2019-10-15T17:51:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124000", + "Timestamp": "2024-05-16T04:47:38.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.038000", - "Timestamp": "2019-10-15T17:51:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164000", + "Timestamp": "2024-05-16T04:47:38.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.038000", - "Timestamp": "2019-10-15T17:51:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064000", + "Timestamp": "2024-05-16T04:47:38.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3en.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d2.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "8.304000", - "Timestamp": "2019-10-15T17:51:43.000Z" + "SpotPrice": "2.712500", + "Timestamp": "2024-05-16T04:47:38.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.304000", - "Timestamp": "2019-10-15T17:51:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.506000", + "Timestamp": "2024-05-16T04:47:38.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.304000", - "Timestamp": "2019-10-15T17:51:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.476000", + "Timestamp": "2024-05-16T04:47:38.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.864000", - "Timestamp": "2019-10-15T17:51:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.376000", + "Timestamp": "2024-05-16T04:47:38.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5n.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.014500", - "Timestamp": "2019-10-15T17:51:35.000Z" + "SpotPrice": "0.261400", + "Timestamp": "2024-05-16T04:47:37.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.258000", - "Timestamp": "2019-10-15T17:51:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.300000", + "Timestamp": "2024-05-16T04:47:35.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5n.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.6xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.408500", - "Timestamp": "2019-10-15T17:51:35.000Z" + "SpotPrice": "1.130100", + "Timestamp": "2024-05-16T04:47:35.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.6xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.228000", - "Timestamp": "2019-10-15T17:51:35.000Z" + "SpotPrice": "1.125100", + "Timestamp": "2024-05-16T04:47:35.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.378500", - "Timestamp": "2019-10-15T17:51:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.000100", + "Timestamp": "2024-05-16T04:47:35.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.128000", - "Timestamp": "2019-10-15T17:51:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.544700", + "Timestamp": "2024-05-16T04:47:35.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.278500", - "Timestamp": "2019-10-15T17:51:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.539700", + "Timestamp": "2024-05-16T04:47:35.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.780900", - "Timestamp": "2019-10-15T17:44:57.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.414700", + "Timestamp": "2024-05-16T04:47:35.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.141500", - "Timestamp": "2019-10-15T17:44:54.000Z" + "SpotPrice": "0.504200", + "Timestamp": "2024-05-16T04:47:34.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.181500", - "Timestamp": "2019-10-15T17:44:54.000Z" + "SpotPrice": "0.499200", + "Timestamp": "2024-05-16T04:47:34.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.081500", - "Timestamp": "2019-10-15T17:44:54.000Z" + "SpotPrice": "0.374200", + "Timestamp": "2024-05-16T04:47:34.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.862700", + "Timestamp": "2024-05-16T04:47:34.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.761400", - "Timestamp": "2019-10-15T17:44:30.000Z" + "SpotPrice": "1.473500", + "Timestamp": "2024-05-16T04:47:33.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.731400", - "Timestamp": "2019-10-15T17:44:30.000Z" + "SpotPrice": "1.468500", + "Timestamp": "2024-05-16T04:47:33.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.631400", - "Timestamp": "2019-10-15T17:44:30.000Z" + "SpotPrice": "1.343500", + "Timestamp": "2024-05-16T04:47:33.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m2.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.263700", - "Timestamp": "2019-10-15T17:36:14.000Z" + "SpotPrice": "0.621800", + "Timestamp": "2024-05-16T04:47:32.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m2.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.233700", - "Timestamp": "2019-10-15T17:36:14.000Z" + "SpotPrice": "0.591800", + "Timestamp": "2024-05-16T04:47:32.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m2.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.133700", - "Timestamp": "2019-10-15T17:36:14.000Z" + "SpotPrice": "0.491800", + "Timestamp": "2024-05-16T04:47:32.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.717600", - "Timestamp": "2019-10-15T17:20:41.000Z" + "SpotPrice": "3.254900", + "Timestamp": "2024-05-16T04:47:29.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "4.687600", - "Timestamp": "2019-10-15T17:20:41.000Z" + "SpotPrice": "3.249900", + "Timestamp": "2024-05-16T04:47:29.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.587600", - "Timestamp": "2019-10-15T17:20:41.000Z" + "SpotPrice": "3.124900", + "Timestamp": "2024-05-16T04:47:29.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.059600", - "Timestamp": "2019-10-15T17:19:57.000Z" + "SpotPrice": "10.837000", + "Timestamp": "2024-05-16T04:47:29.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.059600", - "Timestamp": "2019-10-15T17:19:57.000Z" + "SpotPrice": "3.425000", + "Timestamp": "2024-05-16T04:47:27.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.692000", - "Timestamp": "2019-10-15T17:19:50.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119200", + "Timestamp": "2024-05-16T04:47:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.692000", - "Timestamp": "2019-10-15T17:19:50.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159200", + "Timestamp": "2024-05-16T04:47:25.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.692000", - "Timestamp": "2019-10-15T17:19:50.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059200", + "Timestamp": "2024-05-16T04:47:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.454000", - "Timestamp": "2019-10-15T17:19:50.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.268200", + "Timestamp": "2024-05-16T04:47:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t4g.nano", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.454000", - "Timestamp": "2019-10-15T17:19:50.000Z" + "SpotPrice": "0.062700", + "Timestamp": "2024-05-16T04:47:25.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.454000", - "Timestamp": "2019-10-15T17:19:50.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002700", + "Timestamp": "2024-05-16T04:47:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.424000", - "Timestamp": "2019-10-15T17:19:50.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002700", + "Timestamp": "2024-05-16T04:47:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.424000", - "Timestamp": "2019-10-15T17:19:50.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.186300", + "Timestamp": "2024-05-16T04:47:25.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "z1d.6xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.424000", - "Timestamp": "2019-10-15T17:19:50.000Z" + "SpotPrice": "1.181300", + "Timestamp": "2024-05-16T04:47:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "z1d.6xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.324000", - "Timestamp": "2019-10-15T17:19:50.000Z" + "SpotPrice": "1.056300", + "Timestamp": "2024-05-16T04:47:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.324000", - "Timestamp": "2019-10-15T17:19:50.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.281900", + "Timestamp": "2024-05-16T04:47:25.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.251900", + "Timestamp": "2024-05-16T04:47:25.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.324000", - "Timestamp": "2019-10-15T17:19:50.000Z" + "SpotPrice": "1.151900", + "Timestamp": "2024-05-16T04:47:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "gr6.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092200", - "Timestamp": "2019-10-15T17:19:42.000Z" + "SpotPrice": "0.335800", + "Timestamp": "2024-05-16T04:47:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t2.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092200", - "Timestamp": "2019-10-15T17:19:42.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.305800", + "Timestamp": "2024-05-16T04:47:25.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t2.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092200", - "Timestamp": "2019-10-15T17:19:42.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.205800", + "Timestamp": "2024-05-16T04:47:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t2.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132200", - "Timestamp": "2019-10-15T17:19:42.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.543300", + "Timestamp": "2024-05-16T04:47:24.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t2.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132200", - "Timestamp": "2019-10-15T17:19:42.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.540900", + "Timestamp": "2024-05-16T04:47:24.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6gd.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132200", - "Timestamp": "2019-10-15T17:19:42.000Z" + "SpotPrice": "0.535900", + "Timestamp": "2024-05-16T04:47:24.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032200", - "Timestamp": "2019-10-15T17:19:42.000Z" + "SpotPrice": "0.410900", + "Timestamp": "2024-05-16T04:47:24.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t2.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032200", - "Timestamp": "2019-10-15T17:19:42.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.257800", + "Timestamp": "2024-05-16T04:47:23.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.908300", + "Timestamp": "2024-05-16T04:47:23.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.903300", + "Timestamp": "2024-05-16T04:47:23.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032200", - "Timestamp": "2019-10-15T17:19:42.000Z" + "SpotPrice": "4.778300", + "Timestamp": "2024-05-16T04:47:23.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t2.large", - "ProductDescription": "Windows", - "SpotPrice": "0.060200", - "Timestamp": "2019-10-15T17:19:42.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111300", + "Timestamp": "2024-05-16T04:47:22.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t2.large", - "ProductDescription": "Windows", - "SpotPrice": "0.060200", - "Timestamp": "2019-10-15T17:19:42.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T04:47:22.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051300", + "Timestamp": "2024-05-16T04:47:22.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5ad.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.060200", - "Timestamp": "2019-10-15T17:19:42.000Z" + "SpotPrice": "2.335200", + "Timestamp": "2024-05-16T04:47:22.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.297000", - "Timestamp": "2019-10-15T17:18:37.000Z" + "SpotPrice": "0.992500", + "Timestamp": "2024-05-16T04:47:21.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.267000", - "Timestamp": "2019-10-15T17:18:37.000Z" + "SpotPrice": "0.987500", + "Timestamp": "2024-05-16T04:47:21.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.167000", - "Timestamp": "2019-10-15T17:18:37.000Z" + "SpotPrice": "0.862500", + "Timestamp": "2024-05-16T04:47:21.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5dn.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.795100", + "Timestamp": "2024-05-16T04:47:20.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "p3.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.408500", - "Timestamp": "2019-10-15T17:13:05.000Z" + "SpotPrice": "8.997300", + "Timestamp": "2024-05-16T04:47:20.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5dn.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "p3.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.378500", - "Timestamp": "2019-10-15T17:13:05.000Z" + "SpotPrice": "8.967300", + "Timestamp": "2024-05-16T04:47:20.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5dn.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "p3.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.278500", - "Timestamp": "2019-10-15T17:13:05.000Z" + "SpotPrice": "8.867300", + "Timestamp": "2024-05-16T04:47:20.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.264100", - "Timestamp": "2019-10-15T17:11:49.000Z" + "SpotPrice": "1.059100", + "Timestamp": "2024-05-16T04:47:20.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.234100", - "Timestamp": "2019-10-15T17:11:49.000Z" + "SpotPrice": "1.029100", + "Timestamp": "2024-05-16T04:47:20.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.134100", - "Timestamp": "2019-10-15T17:11:49.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.534100", - "Timestamp": "2019-10-15T17:11:41.000Z" + "SpotPrice": "0.929100", + "Timestamp": "2024-05-16T04:47:20.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.metal", "ProductDescription": "Windows", - "SpotPrice": "0.534100", - "Timestamp": "2019-10-15T17:11:41.000Z" + "SpotPrice": "6.486300", + "Timestamp": "2024-05-16T04:47:20.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.213000", - "Timestamp": "2019-10-15T17:11:18.000Z" + "SpotPrice": "0.798800", + "Timestamp": "2024-05-16T04:47:20.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.253000", - "Timestamp": "2019-10-15T17:11:18.000Z" + "SpotPrice": "0.793800", + "Timestamp": "2024-05-16T04:47:20.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.153000", - "Timestamp": "2019-10-15T17:11:18.000Z" + "SpotPrice": "0.668800", + "Timestamp": "2024-05-16T04:47:20.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.070900", - "Timestamp": "2019-10-15T17:10:20.000Z" + "SpotPrice": "8.023900", + "Timestamp": "2024-05-16T04:47:18.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.metal", "ProductDescription": "Windows", - "SpotPrice": "0.070900", - "Timestamp": "2019-10-15T17:10:20.000Z" + "SpotPrice": "6.320300", + "Timestamp": "2024-05-16T04:47:17.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.metal", "ProductDescription": "Windows", - "SpotPrice": "0.513900", - "Timestamp": "2019-10-15T17:09:52.000Z" + "SpotPrice": "12.492600", + "Timestamp": "2024-05-16T04:47:17.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.513900", - "Timestamp": "2019-10-15T17:09:52.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.312900", + "Timestamp": "2024-05-16T04:47:16.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.513900", - "Timestamp": "2019-10-15T17:09:52.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.307900", + "Timestamp": "2024-05-16T04:47:16.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "z1d.metal", - "ProductDescription": "Windows", - "SpotPrice": "3.828000", - "Timestamp": "2019-10-15T17:09:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.182900", + "Timestamp": "2024-05-16T04:47:16.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "z1d.metal", - "ProductDescription": "Windows", - "SpotPrice": "3.828000", - "Timestamp": "2019-10-15T17:09:51.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.911700", + "Timestamp": "2024-05-16T04:47:15.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "z1d.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.906700", + "Timestamp": "2024-05-16T04:47:15.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.781700", + "Timestamp": "2024-05-16T04:47:15.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.828000", - "Timestamp": "2019-10-15T17:09:51.000Z" + "SpotPrice": "0.567600", + "Timestamp": "2024-05-16T04:47:15.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "z1d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.750000", - "Timestamp": "2019-10-15T17:09:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.567400", + "Timestamp": "2024-05-16T04:47:15.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "z1d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.750000", - "Timestamp": "2019-10-15T17:09:13.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.073300", + "Timestamp": "2024-05-16T04:47:14.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "z1d.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "z1d.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.750000", - "Timestamp": "2019-10-15T17:09:13.000Z" + "SpotPrice": "0.439900", + "Timestamp": "2024-05-16T04:47:05.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "z1d.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "z1d.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.720000", - "Timestamp": "2019-10-15T17:09:13.000Z" + "SpotPrice": "0.434900", + "Timestamp": "2024-05-16T04:47:05.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "z1d.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.720000", - "Timestamp": "2019-10-15T17:09:13.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.309900", + "Timestamp": "2024-05-16T04:47:05.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "z1d.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.119200", + "Timestamp": "2024-05-16T04:47:04.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.720000", - "Timestamp": "2019-10-15T17:09:13.000Z" + "SpotPrice": "2.089200", + "Timestamp": "2024-05-16T04:47:04.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "z1d.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.620000", - "Timestamp": "2019-10-15T17:09:13.000Z" + "SpotPrice": "1.989200", + "Timestamp": "2024-05-16T04:47:04.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "z1d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.620000", - "Timestamp": "2019-10-15T17:09:13.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.366100", + "Timestamp": "2024-05-16T04:47:03.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "z1d.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.336100", + "Timestamp": "2024-05-16T04:47:03.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m3.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.620000", - "Timestamp": "2019-10-15T17:09:13.000Z" + "SpotPrice": "0.236100", + "Timestamp": "2024-05-16T04:47:03.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.metal-48xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.726800", - "Timestamp": "2019-10-15T17:08:03.000Z" + "SpotPrice": "5.678600", + "Timestamp": "2024-05-16T04:35:12.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.metal-48xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.696800", - "Timestamp": "2019-10-15T17:08:03.000Z" + "SpotPrice": "5.673600", + "Timestamp": "2024-05-16T04:35:12.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.596800", - "Timestamp": "2019-10-15T17:08:03.000Z" + "SpotPrice": "5.548600", + "Timestamp": "2024-05-16T04:35:12.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.metal", "ProductDescription": "Windows", - "SpotPrice": "2.252800", - "Timestamp": "2019-10-15T17:07:55.000Z" + "SpotPrice": "6.320000", + "Timestamp": "2024-05-16T04:35:05.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.252800", - "Timestamp": "2019-10-15T17:07:55.000Z" + "SpotPrice": "1.081900", + "Timestamp": "2024-05-16T04:35:02.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "12.119200", - "Timestamp": "2019-10-15T17:07:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.358800", + "Timestamp": "2024-05-16T04:34:59.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.353800", + "Timestamp": "2024-05-16T04:34:59.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.228800", + "Timestamp": "2024-05-16T04:34:59.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "12.119200", - "Timestamp": "2019-10-15T17:07:52.000Z" + "SpotPrice": "6.857300", + "Timestamp": "2024-05-16T04:34:56.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "9.305200", - "Timestamp": "2019-10-15T17:07:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.257600", + "Timestamp": "2024-05-16T04:34:50.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "z1d.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "9.305200", - "Timestamp": "2019-10-15T17:07:52.000Z" + "SpotPrice": "1.988400", + "Timestamp": "2024-05-16T04:34:49.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "z1d.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "9.275200", - "Timestamp": "2019-10-15T17:07:52.000Z" + "SpotPrice": "1.983400", + "Timestamp": "2024-05-16T04:34:49.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "p3.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "9.275200", - "Timestamp": "2019-10-15T17:07:52.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.858400", + "Timestamp": "2024-05-16T04:34:49.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "9.175200", - "Timestamp": "2019-10-15T17:07:52.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128700", + "Timestamp": "2024-05-16T04:34:48.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "9.175200", - "Timestamp": "2019-10-15T17:07:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.279600", + "Timestamp": "2024-05-16T04:34:47.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067900", - "Timestamp": "2019-10-15T17:07:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.217400", + "Timestamp": "2024-05-16T04:34:47.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067900", - "Timestamp": "2019-10-15T17:07:49.000Z" + "SpotPrice": "3.552000", + "Timestamp": "2024-05-16T04:34:42.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.107900", - "Timestamp": "2019-10-15T17:07:49.000Z" + "SpotPrice": "3.547000", + "Timestamp": "2024-05-16T04:34:42.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m3.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.107900", - "Timestamp": "2019-10-15T17:07:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.422000", + "Timestamp": "2024-05-16T04:34:42.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007900", - "Timestamp": "2019-10-15T17:07:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.565200", + "Timestamp": "2024-05-16T04:34:42.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.560200", + "Timestamp": "2024-05-16T04:34:42.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007900", - "Timestamp": "2019-10-15T17:07:49.000Z" + "SpotPrice": "1.435200", + "Timestamp": "2024-05-16T04:34:42.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.446600", - "Timestamp": "2019-10-15T17:02:53.000Z" + "SpotPrice": "0.096600", + "Timestamp": "2024-05-16T04:34:41.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.416600", - "Timestamp": "2019-10-15T17:02:53.000Z" + "SpotPrice": "0.067600", + "Timestamp": "2024-05-16T04:34:41.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.316600", - "Timestamp": "2019-10-15T17:02:53.000Z" + "SpotPrice": "0.036600", + "Timestamp": "2024-05-16T04:34:41.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.244000", - "Timestamp": "2019-10-15T16:58:50.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128300", + "Timestamp": "2024-05-16T04:34:41.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "6.658000", - "Timestamp": "2019-10-15T16:58:50.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.341200", + "Timestamp": "2024-05-16T04:34:41.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.214000", - "Timestamp": "2019-10-15T16:58:50.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.148500", + "Timestamp": "2024-05-16T04:34:40.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "6.628000", - "Timestamp": "2019-10-15T16:58:50.000Z" + "SpotPrice": "1.143500", + "Timestamp": "2024-05-16T04:34:40.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.114000", - "Timestamp": "2019-10-15T16:58:50.000Z" + "SpotPrice": "1.018500", + "Timestamp": "2024-05-16T04:34:40.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "6.528000", - "Timestamp": "2019-10-15T16:58:50.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.338100", + "Timestamp": "2024-05-16T04:34:39.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.256900", - "Timestamp": "2019-10-15T16:58:38.000Z" + "SpotPrice": "3.390800", + "Timestamp": "2024-05-16T04:34:39.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.256900", - "Timestamp": "2019-10-15T16:58:38.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.430100", + "Timestamp": "2024-05-16T04:34:38.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.256900", - "Timestamp": "2019-10-15T16:58:38.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.425100", + "Timestamp": "2024-05-16T04:34:38.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "10.738000", - "Timestamp": "2019-10-15T16:58:36.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.300100", + "Timestamp": "2024-05-16T04:34:38.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "10.738000", - "Timestamp": "2019-10-15T16:58:36.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.868500", + "Timestamp": "2024-05-16T04:34:38.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "p2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "10.708000", - "Timestamp": "2019-10-15T16:58:36.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.984700", + "Timestamp": "2024-05-16T04:34:37.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "10.708000", - "Timestamp": "2019-10-15T16:58:36.000Z" + "SpotPrice": "1.979700", + "Timestamp": "2024-05-16T04:34:37.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "12.080000", - "Timestamp": "2019-10-15T16:58:36.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.854700", + "Timestamp": "2024-05-16T04:34:37.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "12.080000", - "Timestamp": "2019-10-15T16:58:36.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.451700", + "Timestamp": "2024-05-16T04:34:37.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "10.608000", - "Timestamp": "2019-10-15T16:58:36.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.446700", + "Timestamp": "2024-05-16T04:34:37.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "10.608000", - "Timestamp": "2019-10-15T16:58:36.000Z" + "SpotPrice": "0.321700", + "Timestamp": "2024-05-16T04:34:37.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.250300", - "Timestamp": "2019-10-15T16:57:32.000Z" + "SpotPrice": "6.700500", + "Timestamp": "2024-05-16T04:34:36.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.250300", - "Timestamp": "2019-10-15T16:57:32.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136200", + "Timestamp": "2024-05-16T04:34:36.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.250300", - "Timestamp": "2019-10-15T16:57:32.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132500", + "Timestamp": "2024-05-16T04:34:36.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.245800", - "Timestamp": "2019-10-15T16:57:28.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076200", + "Timestamp": "2024-05-16T04:34:36.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.245800", - "Timestamp": "2019-10-15T16:57:28.000Z" + "SpotPrice": "0.141700", + "Timestamp": "2024-05-16T04:34:36.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.245800", - "Timestamp": "2019-10-15T16:57:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181700", + "Timestamp": "2024-05-16T04:34:36.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.215800", - "Timestamp": "2019-10-15T16:57:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081700", + "Timestamp": "2024-05-16T04:34:36.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.215800", - "Timestamp": "2019-10-15T16:57:28.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.476400", + "Timestamp": "2024-05-16T04:34:35.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082000", + "Timestamp": "2024-05-16T04:34:35.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gd.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.215800", - "Timestamp": "2019-10-15T16:57:28.000Z" + "SpotPrice": "0.078300", + "Timestamp": "2024-05-16T04:34:35.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gd.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.115800", - "Timestamp": "2019-10-15T16:57:28.000Z" + "SpotPrice": "0.022000", + "Timestamp": "2024-05-16T04:34:35.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.115800", - "Timestamp": "2019-10-15T16:57:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132700", + "Timestamp": "2024-05-16T04:34:35.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172700", + "Timestamp": "2024-05-16T04:34:35.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m1.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.115800", - "Timestamp": "2019-10-15T16:57:28.000Z" + "SpotPrice": "0.072700", + "Timestamp": "2024-05-16T04:34:35.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.metal", "ProductDescription": "Windows", - "SpotPrice": "0.263000", - "Timestamp": "2019-10-15T16:56:28.000Z" + "SpotPrice": "8.388200", + "Timestamp": "2024-05-16T04:34:34.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.263000", - "Timestamp": "2019-10-15T16:56:28.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132300", + "Timestamp": "2024-05-16T04:34:33.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.263000", - "Timestamp": "2019-10-15T16:56:28.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128300", + "Timestamp": "2024-05-16T04:34:33.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.301100", - "Timestamp": "2019-10-15T16:55:03.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072300", + "Timestamp": "2024-05-16T04:34:33.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3en.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.278700", - "Timestamp": "2019-10-15T16:54:39.000Z" + "SpotPrice": "1.299700", + "Timestamp": "2024-05-16T04:34:30.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3en.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.248700", - "Timestamp": "2019-10-15T16:54:39.000Z" + "SpotPrice": "1.294700", + "Timestamp": "2024-05-16T04:34:30.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3en.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.148700", - "Timestamp": "2019-10-15T16:54:39.000Z" + "SpotPrice": "1.169700", + "Timestamp": "2024-05-16T04:34:30.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.494300", - "Timestamp": "2019-10-15T16:52:29.000Z" + "SpotPrice": "0.282700", + "Timestamp": "2024-05-16T04:34:30.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.494300", - "Timestamp": "2019-10-15T16:52:29.000Z" + "SpotPrice": "12.770500", + "Timestamp": "2024-05-16T04:34:27.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.metal", "ProductDescription": "Windows", - "SpotPrice": "0.494300", - "Timestamp": "2019-10-15T16:52:29.000Z" + "SpotPrice": "7.738400", + "Timestamp": "2024-05-16T04:34:27.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096500", - "Timestamp": "2019-10-15T16:52:04.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.676500", + "Timestamp": "2024-05-16T04:34:26.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096500", - "Timestamp": "2019-10-15T16:52:04.000Z" - }, - { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136500", - "Timestamp": "2019-10-15T16:52:04.000Z" + "SpotPrice": "0.085200", + "Timestamp": "2024-05-16T04:34:26.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136500", - "Timestamp": "2019-10-15T16:52:04.000Z" + "SpotPrice": "0.081500", + "Timestamp": "2024-05-16T04:34:26.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036500", - "Timestamp": "2019-10-15T16:52:04.000Z" + "SpotPrice": "0.025200", + "Timestamp": "2024-05-16T04:34:26.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036500", - "Timestamp": "2019-10-15T16:52:04.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.297600", + "Timestamp": "2024-05-16T04:34:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129600", - "Timestamp": "2019-10-15T16:51:49.000Z" + "SpotPrice": "3.747300", + "Timestamp": "2024-05-16T04:34:24.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129600", - "Timestamp": "2019-10-15T16:51:49.000Z" + "SpotPrice": "3.780400", + "Timestamp": "2024-05-16T04:34:24.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.169600", - "Timestamp": "2019-10-15T16:51:49.000Z" + "SpotPrice": "3.742300", + "Timestamp": "2024-05-16T04:34:24.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.169600", - "Timestamp": "2019-10-15T16:51:49.000Z" + "SpotPrice": "3.775400", + "Timestamp": "2024-05-16T04:34:24.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069600", - "Timestamp": "2019-10-15T16:51:49.000Z" + "SpotPrice": "3.617300", + "Timestamp": "2024-05-16T04:34:24.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069600", - "Timestamp": "2019-10-15T16:51:49.000Z" + "SpotPrice": "3.650400", + "Timestamp": "2024-05-16T04:34:24.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.253600", - "Timestamp": "2019-10-15T16:51:49.000Z" + "SpotPrice": "0.306500", + "Timestamp": "2024-05-16T04:34:24.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.253600", - "Timestamp": "2019-10-15T16:51:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.839700", + "Timestamp": "2024-05-16T04:34:23.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.957000", - "Timestamp": "2019-10-15T16:51:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.834700", + "Timestamp": "2024-05-16T04:34:23.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.957000", - "Timestamp": "2019-10-15T16:51:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.709700", + "Timestamp": "2024-05-16T04:34:23.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.957000", - "Timestamp": "2019-10-15T16:51:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.850400", + "Timestamp": "2024-05-16T04:34:22.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.535000", - "Timestamp": "2019-10-15T16:51:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.845400", + "Timestamp": "2024-05-16T04:34:22.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.535000", - "Timestamp": "2019-10-15T16:51:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.720400", + "Timestamp": "2024-05-16T04:34:22.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "z1d.3xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.535000", - "Timestamp": "2019-10-15T16:51:35.000Z" + "SpotPrice": "0.388100", + "Timestamp": "2024-05-16T04:34:22.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "z1d.3xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.505000", - "Timestamp": "2019-10-15T16:51:35.000Z" + "SpotPrice": "0.383100", + "Timestamp": "2024-05-16T04:34:22.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.505000", - "Timestamp": "2019-10-15T16:51:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.258100", + "Timestamp": "2024-05-16T04:34:22.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "z1d.3xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.017500", + "Timestamp": "2024-05-16T04:34:22.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.552100", + "Timestamp": "2024-05-16T04:34:21.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.505000", - "Timestamp": "2019-10-15T16:51:35.000Z" + "SpotPrice": "1.547100", + "Timestamp": "2024-05-16T04:34:21.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "z1d.3xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.405000", - "Timestamp": "2019-10-15T16:51:35.000Z" + "SpotPrice": "1.422100", + "Timestamp": "2024-05-16T04:34:21.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.405000", - "Timestamp": "2019-10-15T16:51:35.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.824400", + "Timestamp": "2024-05-16T04:34:21.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.405000", - "Timestamp": "2019-10-15T16:51:35.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.819400", + "Timestamp": "2024-05-16T04:34:21.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.128500", - "Timestamp": "2019-10-15T16:51:23.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.694400", + "Timestamp": "2024-05-16T04:34:21.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.128500", - "Timestamp": "2019-10-15T16:51:23.000Z" + "SpotPrice": "2.138400", + "Timestamp": "2024-05-16T04:34:20.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.128500", - "Timestamp": "2019-10-15T16:51:23.000Z" + "SpotPrice": "8.906200", + "Timestamp": "2024-05-16T04:34:18.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.130600", - "Timestamp": "2019-10-15T16:46:34.000Z" + "SpotPrice": "3.014000", + "Timestamp": "2024-05-16T04:34:18.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.170600", - "Timestamp": "2019-10-15T16:46:34.000Z" + "SpotPrice": "3.009000", + "Timestamp": "2024-05-16T04:34:18.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.070600", - "Timestamp": "2019-10-15T16:46:34.000Z" + "SpotPrice": "2.884000", + "Timestamp": "2024-05-16T04:34:18.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094400", - "Timestamp": "2019-10-15T16:37:31.000Z" + "SpotPrice": "0.189300", + "Timestamp": "2024-05-16T04:34:17.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134400", - "Timestamp": "2019-10-15T16:37:31.000Z" + "SpotPrice": "0.185600", + "Timestamp": "2024-05-16T04:34:17.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034400", - "Timestamp": "2019-10-15T16:37:31.000Z" + "SpotPrice": "0.129300", + "Timestamp": "2024-05-16T04:34:17.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.411900", - "Timestamp": "2019-10-15T16:37:18.000Z" - }, - { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.381900", - "Timestamp": "2019-10-15T16:37:18.000Z" + "SpotPrice": "1.591800", + "Timestamp": "2024-05-16T04:34:16.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.281900", - "Timestamp": "2019-10-15T16:37:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.602000", + "Timestamp": "2024-05-16T04:34:16.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.157600", - "Timestamp": "2019-10-15T16:16:04.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.586800", + "Timestamp": "2024-05-16T04:34:16.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.415300", - "Timestamp": "2019-10-15T16:12:24.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.597000", + "Timestamp": "2024-05-16T04:34:16.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.385300", - "Timestamp": "2019-10-15T16:12:24.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.461800", + "Timestamp": "2024-05-16T04:34:16.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.285300", - "Timestamp": "2019-10-15T16:12:24.000Z" + "SpotPrice": "1.472000", + "Timestamp": "2024-05-16T04:34:16.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.269200", - "Timestamp": "2019-10-15T15:58:49.000Z" + "SpotPrice": "0.917000", + "Timestamp": "2024-05-16T04:34:16.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.239200", - "Timestamp": "2019-10-15T15:58:49.000Z" + "SpotPrice": "0.912000", + "Timestamp": "2024-05-16T04:34:16.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.139200", - "Timestamp": "2019-10-15T15:58:49.000Z" + "SpotPrice": "0.787000", + "Timestamp": "2024-05-16T04:34:16.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "i3.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.252800", - "Timestamp": "2019-10-15T15:58:37.000Z" + "SpotPrice": "2.472000", + "Timestamp": "2024-05-16T04:34:16.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.252800", - "Timestamp": "2019-10-15T15:58:37.000Z" + "SpotPrice": "0.278100", + "Timestamp": "2024-05-16T04:34:16.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.252800", - "Timestamp": "2019-10-15T15:58:37.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.189300", + "Timestamp": "2024-05-16T04:34:15.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.346000", - "Timestamp": "2019-10-15T15:57:51.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.184300", + "Timestamp": "2024-05-16T04:34:15.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.346000", - "Timestamp": "2019-10-15T15:57:51.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.059300", + "Timestamp": "2024-05-16T04:34:15.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.346000", - "Timestamp": "2019-10-15T15:57:51.000Z" + "SpotPrice": "4.445200", + "Timestamp": "2024-05-16T04:34:15.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.507200", - "Timestamp": "2019-10-15T15:57:51.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.262700", + "Timestamp": "2024-05-16T04:34:15.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.507200", - "Timestamp": "2019-10-15T15:57:51.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232700", + "Timestamp": "2024-05-16T04:34:15.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.507200", - "Timestamp": "2019-10-15T15:57:51.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.132700", + "Timestamp": "2024-05-16T04:34:15.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.892600", - "Timestamp": "2019-10-15T15:57:42.000Z" + "SpotPrice": "0.617200", + "Timestamp": "2024-05-16T04:34:15.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.892600", - "Timestamp": "2019-10-15T15:57:42.000Z" + "SpotPrice": "0.278700", + "Timestamp": "2024-05-16T04:34:14.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.025600", - "Timestamp": "2019-10-15T15:57:34.000Z" + "SpotPrice": "1.033100", + "Timestamp": "2024-05-16T04:34:14.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3.small", - "ProductDescription": "Windows", - "SpotPrice": "0.025600", - "Timestamp": "2019-10-15T15:57:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T04:34:13.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t3.small", - "ProductDescription": "Windows", - "SpotPrice": "0.025600", - "Timestamp": "2019-10-15T15:57:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T04:34:13.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067200", - "Timestamp": "2019-10-15T15:57:33.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047700", + "Timestamp": "2024-05-16T04:34:13.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067200", - "Timestamp": "2019-10-15T15:57:33.000Z" + "SpotPrice": "3.669800", + "Timestamp": "2024-05-16T04:34:13.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.107200", - "Timestamp": "2019-10-15T15:57:33.000Z" + "SpotPrice": "3.664800", + "Timestamp": "2024-05-16T04:34:13.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t3.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.107200", - "Timestamp": "2019-10-15T15:57:33.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.539800", + "Timestamp": "2024-05-16T04:34:13.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007200", - "Timestamp": "2019-10-15T15:57:33.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.504700", + "Timestamp": "2024-05-16T04:34:13.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007200", - "Timestamp": "2019-10-15T15:57:33.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.993700", + "Timestamp": "2024-05-16T04:34:13.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.726800", - "Timestamp": "2019-10-15T15:57:04.000Z" + "SpotPrice": "0.102300", + "Timestamp": "2024-05-16T04:34:12.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.696800", - "Timestamp": "2019-10-15T15:57:04.000Z" + "SpotPrice": "0.098300", + "Timestamp": "2024-05-16T04:34:12.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.596800", - "Timestamp": "2019-10-15T15:57:04.000Z" + "SpotPrice": "0.042300", + "Timestamp": "2024-05-16T04:34:12.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.924500", + "Timestamp": "2024-05-16T04:34:12.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.394600", - "Timestamp": "2019-10-15T15:56:53.000Z" + "SpotPrice": "0.147300", + "Timestamp": "2024-05-16T04:34:11.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.364600", - "Timestamp": "2019-10-15T15:56:53.000Z" + "SpotPrice": "0.143600", + "Timestamp": "2024-05-16T04:34:11.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.264600", - "Timestamp": "2019-10-15T15:56:53.000Z" + "SpotPrice": "0.087300", + "Timestamp": "2024-05-16T04:34:11.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.222000", - "Timestamp": "2019-10-15T15:56:29.000Z" - }, - { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.222000", - "Timestamp": "2019-10-15T15:56:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.859000", + "Timestamp": "2024-05-16T04:34:11.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.222000", - "Timestamp": "2019-10-15T15:56:29.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.003100", + "Timestamp": "2024-05-16T04:34:09.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3en.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.262000", - "Timestamp": "2019-10-15T15:56:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.667700", + "Timestamp": "2024-05-16T04:34:09.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3en.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.262000", - "Timestamp": "2019-10-15T15:56:29.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.203400", + "Timestamp": "2024-05-16T04:34:08.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2gd.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.262000", - "Timestamp": "2019-10-15T15:56:29.000Z" + "SpotPrice": "0.199700", + "Timestamp": "2024-05-16T04:34:08.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.162000", - "Timestamp": "2019-10-15T15:56:29.000Z" + "SpotPrice": "0.143400", + "Timestamp": "2024-05-16T04:34:08.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.162000", - "Timestamp": "2019-10-15T15:56:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.134700", + "Timestamp": "2024-05-16T04:34:08.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.129700", + "Timestamp": "2024-05-16T04:34:08.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.162000", - "Timestamp": "2019-10-15T15:56:29.000Z" + "SpotPrice": "1.004700", + "Timestamp": "2024-05-16T04:34:08.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.650300", - "Timestamp": "2019-10-15T15:55:34.000Z" + "SpotPrice": "0.149400", + "Timestamp": "2024-05-16T04:34:06.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.620300", - "Timestamp": "2019-10-15T15:55:34.000Z" + "SpotPrice": "0.145700", + "Timestamp": "2024-05-16T04:34:06.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.520300", - "Timestamp": "2019-10-15T15:55:34.000Z" + "SpotPrice": "0.089400", + "Timestamp": "2024-05-16T04:34:06.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.915600", - "Timestamp": "2019-10-15T15:52:33.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.846800", + "Timestamp": "2024-05-16T04:34:06.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.915600", - "Timestamp": "2019-10-15T15:52:33.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.996100", + "Timestamp": "2024-05-16T04:34:06.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.915600", - "Timestamp": "2019-10-15T15:52:33.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.885600", - "Timestamp": "2019-10-15T15:52:33.000Z" + "SpotPrice": "0.097900", + "Timestamp": "2024-05-16T04:34:05.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.885600", - "Timestamp": "2019-10-15T15:52:33.000Z" + "SpotPrice": "0.094200", + "Timestamp": "2024-05-16T04:34:05.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.885600", - "Timestamp": "2019-10-15T15:52:33.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037900", + "Timestamp": "2024-05-16T04:34:05.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.785600", - "Timestamp": "2019-10-15T15:52:33.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134400", + "Timestamp": "2024-05-16T04:34:02.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.785600", - "Timestamp": "2019-10-15T15:52:33.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130400", + "Timestamp": "2024-05-16T04:34:02.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.785600", - "Timestamp": "2019-10-15T15:52:33.000Z" + "SpotPrice": "0.074400", + "Timestamp": "2024-05-16T04:34:02.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.793100", - "Timestamp": "2019-10-15T15:52:22.000Z" + "SpotPrice": "1.024900", + "Timestamp": "2024-05-16T04:34:02.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.793100", - "Timestamp": "2019-10-15T15:52:22.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.019900", + "Timestamp": "2024-05-16T04:34:02.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.793100", - "Timestamp": "2019-10-15T15:52:22.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.894900", + "Timestamp": "2024-05-16T04:34:02.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m4.10xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.763100", - "Timestamp": "2019-10-15T15:52:22.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.518300", + "Timestamp": "2024-05-16T04:34:02.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.763100", - "Timestamp": "2019-10-15T15:52:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129300", + "Timestamp": "2024-05-16T04:34:01.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.763100", - "Timestamp": "2019-10-15T15:52:22.000Z" + "SpotPrice": "0.125600", + "Timestamp": "2024-05-16T04:34:01.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.663100", - "Timestamp": "2019-10-15T15:52:22.000Z" + "SpotPrice": "0.069300", + "Timestamp": "2024-05-16T04:34:01.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.663100", - "Timestamp": "2019-10-15T15:52:22.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119000", + "Timestamp": "2024-05-16T04:34:00.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.663100", - "Timestamp": "2019-10-15T15:52:22.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115300", + "Timestamp": "2024-05-16T04:34:00.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.metal", - "ProductDescription": "Windows", - "SpotPrice": "4.729600", - "Timestamp": "2019-10-15T15:51:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059000", + "Timestamp": "2024-05-16T04:34:00.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.3xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.729600", - "Timestamp": "2019-10-15T15:51:56.000Z" + "SpotPrice": "1.059800", + "Timestamp": "2024-05-16T04:34:00.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.metal", - "ProductDescription": "Windows", - "SpotPrice": "4.729600", - "Timestamp": "2019-10-15T15:51:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.347000", + "Timestamp": "2024-05-16T04:34:00.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.503100", - "Timestamp": "2019-10-15T15:51:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.342000", + "Timestamp": "2024-05-16T04:34:00.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.503100", - "Timestamp": "2019-10-15T15:51:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.217000", + "Timestamp": "2024-05-16T04:34:00.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.503100", - "Timestamp": "2019-10-15T15:51:55.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.390500", + "Timestamp": "2024-05-16T04:33:59.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.319000", - "Timestamp": "2019-10-15T15:51:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.387400", + "Timestamp": "2024-05-16T04:33:59.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.319000", - "Timestamp": "2019-10-15T15:51:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.385500", + "Timestamp": "2024-05-16T04:33:59.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.195000", - "Timestamp": "2019-10-15T15:51:31.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.382400", + "Timestamp": "2024-05-16T04:33:59.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.195000", - "Timestamp": "2019-10-15T15:51:31.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.260500", + "Timestamp": "2024-05-16T04:33:59.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "z1d.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.235000", - "Timestamp": "2019-10-15T15:51:31.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.257400", + "Timestamp": "2024-05-16T04:33:59.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "z1d.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.235000", - "Timestamp": "2019-10-15T15:51:31.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.263800", + "Timestamp": "2024-05-16T04:33:59.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.135000", - "Timestamp": "2019-10-15T15:51:31.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258800", + "Timestamp": "2024-05-16T04:33:59.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.135000", - "Timestamp": "2019-10-15T15:51:31.000Z" + "SpotPrice": "0.133800", + "Timestamp": "2024-05-16T04:33:59.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.650000", - "Timestamp": "2019-10-15T15:50:49.000Z" + "SpotPrice": "0.672300", + "Timestamp": "2024-05-16T04:33:57.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.650000", - "Timestamp": "2019-10-15T15:50:49.000Z" + "SpotPrice": "1.153900", + "Timestamp": "2024-05-16T04:33:56.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.412000", - "Timestamp": "2019-10-15T15:50:49.000Z" + "SpotPrice": "0.443600", + "Timestamp": "2024-05-16T04:33:55.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.412000", - "Timestamp": "2019-10-15T15:50:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.413600", + "Timestamp": "2024-05-16T04:33:55.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.382000", - "Timestamp": "2019-10-15T15:50:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.313600", + "Timestamp": "2024-05-16T04:33:55.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171300", + "Timestamp": "2024-05-16T04:33:55.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.382000", - "Timestamp": "2019-10-15T15:50:49.000Z" + "SpotPrice": "0.167300", + "Timestamp": "2024-05-16T04:33:55.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.282000", - "Timestamp": "2019-10-15T15:50:49.000Z" + "SpotPrice": "0.111300", + "Timestamp": "2024-05-16T04:33:55.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.282000", - "Timestamp": "2019-10-15T15:50:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.296900", + "Timestamp": "2024-05-16T04:33:54.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.396700", - "Timestamp": "2019-10-15T15:47:36.000Z" + "SpotPrice": "0.998800", + "Timestamp": "2024-05-16T04:33:54.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.366700", - "Timestamp": "2019-10-15T15:47:36.000Z" + "SpotPrice": "0.968800", + "Timestamp": "2024-05-16T04:33:54.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.266700", - "Timestamp": "2019-10-15T15:47:36.000Z" + "SpotPrice": "0.868800", + "Timestamp": "2024-05-16T04:33:54.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "a1.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267500", - "Timestamp": "2019-10-15T15:46:56.000Z" + "SpotPrice": "1.446600", + "Timestamp": "2024-05-16T04:33:53.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "a1.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.237500", - "Timestamp": "2019-10-15T15:46:56.000Z" + "SpotPrice": "1.441600", + "Timestamp": "2024-05-16T04:33:53.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "a1.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.137500", - "Timestamp": "2019-10-15T15:46:56.000Z" + "SpotPrice": "1.316600", + "Timestamp": "2024-05-16T04:33:53.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.256900", - "Timestamp": "2019-10-15T15:41:38.000Z" + "SpotPrice": "10.808800", + "Timestamp": "2024-05-16T04:33:53.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.005300", - "Timestamp": "2019-10-15T15:38:05.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.259200", + "Timestamp": "2024-05-16T04:33:52.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.975300", - "Timestamp": "2019-10-15T15:38:05.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.323700", + "Timestamp": "2024-05-16T04:33:52.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.875300", - "Timestamp": "2019-10-15T15:38:05.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.287500", + "Timestamp": "2024-05-16T04:33:49.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.593900", + "Timestamp": "2024-05-16T04:33:47.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.754800", + "Timestamp": "2024-05-16T04:33:47.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.131000", - "Timestamp": "2019-10-15T15:31:06.000Z" + "SpotPrice": "2.693300", + "Timestamp": "2024-05-16T04:33:47.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.171000", - "Timestamp": "2019-10-15T15:31:06.000Z" + "SpotPrice": "2.688300", + "Timestamp": "2024-05-16T04:33:47.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.071000", - "Timestamp": "2019-10-15T15:31:06.000Z" + "SpotPrice": "2.563300", + "Timestamp": "2024-05-16T04:33:47.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5dn.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.111000", - "Timestamp": "2019-10-15T15:20:17.000Z" + "SpotPrice": "6.839000", + "Timestamp": "2024-05-16T04:33:47.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.610600", + "Timestamp": "2024-05-16T04:33:45.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c4.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132900", - "Timestamp": "2019-10-15T15:16:18.000Z" + "SpotPrice": "0.117500", + "Timestamp": "2024-05-16T04:33:44.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c4.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172900", - "Timestamp": "2019-10-15T15:16:18.000Z" + "SpotPrice": "0.157500", + "Timestamp": "2024-05-16T04:33:44.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c4.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072900", - "Timestamp": "2019-10-15T15:16:18.000Z" + "SpotPrice": "0.057500", + "Timestamp": "2024-05-16T04:33:44.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "a1.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267500", - "Timestamp": "2019-10-15T15:12:55.000Z" + "SpotPrice": "1.920800", + "Timestamp": "2024-05-16T04:33:43.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "a1.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.237500", - "Timestamp": "2019-10-15T15:12:55.000Z" + "SpotPrice": "1.915800", + "Timestamp": "2024-05-16T04:33:43.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "a1.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.137500", - "Timestamp": "2019-10-15T15:12:55.000Z" + "SpotPrice": "1.790800", + "Timestamp": "2024-05-16T04:33:43.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.695600", + "Timestamp": "2024-05-16T04:33:43.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090000", - "Timestamp": "2019-10-15T15:08:12.000Z" + "SpotPrice": "0.425800", + "Timestamp": "2024-05-16T04:33:42.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.130000", - "Timestamp": "2019-10-15T15:08:12.000Z" + "SpotPrice": "0.420800", + "Timestamp": "2024-05-16T04:33:42.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030000", - "Timestamp": "2019-10-15T15:08:12.000Z" + "SpotPrice": "0.295800", + "Timestamp": "2024-05-16T04:33:42.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "a1.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094400", - "Timestamp": "2019-10-15T15:01:53.000Z" + "SpotPrice": "1.027200", + "Timestamp": "2024-05-16T04:33:41.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "a1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094400", - "Timestamp": "2019-10-15T15:01:53.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.997200", + "Timestamp": "2024-05-16T04:33:41.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "a1.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134400", - "Timestamp": "2019-10-15T15:01:53.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.897200", + "Timestamp": "2024-05-16T04:33:41.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "a1.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134400", - "Timestamp": "2019-10-15T15:01:53.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.456400", + "Timestamp": "2024-05-16T04:33:41.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "a1.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034400", - "Timestamp": "2019-10-15T15:01:53.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.451400", + "Timestamp": "2024-05-16T04:33:41.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "a1.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034400", - "Timestamp": "2019-10-15T15:01:53.000Z" + "SpotPrice": "0.326400", + "Timestamp": "2024-05-16T04:33:41.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.576000", - "Timestamp": "2019-10-15T14:59:22.000Z" + "SpotPrice": "3.137000", + "Timestamp": "2024-05-16T04:33:41.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.762000", - "Timestamp": "2019-10-15T14:58:22.000Z" + "SpotPrice": "0.356300", + "Timestamp": "2024-05-16T04:33:41.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.732000", - "Timestamp": "2019-10-15T14:58:22.000Z" + "SpotPrice": "0.351300", + "Timestamp": "2024-05-16T04:33:41.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.632000", - "Timestamp": "2019-10-15T14:58:22.000Z" + "SpotPrice": "0.226300", + "Timestamp": "2024-05-16T04:33:41.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.383500", - "Timestamp": "2019-10-15T14:57:47.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.199700", + "Timestamp": "2024-05-16T04:33:40.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c4.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.353500", - "Timestamp": "2019-10-15T14:57:47.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.624400", + "Timestamp": "2024-05-16T04:18:26.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.253500", - "Timestamp": "2019-10-15T14:57:47.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.190100", + "Timestamp": "2024-05-16T04:18:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.514900", - "Timestamp": "2019-10-15T14:53:39.000Z" + "SpotPrice": "8.793200", + "Timestamp": "2024-05-16T04:18:19.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6in.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.514900", - "Timestamp": "2019-10-15T14:53:39.000Z" + "SpotPrice": "0.609100", + "Timestamp": "2024-05-16T04:18:18.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.635200", - "Timestamp": "2019-10-15T14:52:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.006200", + "Timestamp": "2024-05-16T04:18:18.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.635200", - "Timestamp": "2019-10-15T14:52:55.000Z" + "SpotPrice": "2.664200", + "Timestamp": "2024-05-16T04:18:18.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.605200", - "Timestamp": "2019-10-15T14:52:55.000Z" + "SpotPrice": "2.659200", + "Timestamp": "2024-05-16T04:18:18.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.605200", - "Timestamp": "2019-10-15T14:52:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.534200", + "Timestamp": "2024-05-16T04:18:18.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.505200", - "Timestamp": "2019-10-15T14:52:55.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.232900", + "Timestamp": "2024-05-16T04:18:16.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.505200", - "Timestamp": "2019-10-15T14:52:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.621600", + "Timestamp": "2024-05-16T04:18:14.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.656600", + "Timestamp": "2024-05-16T04:18:10.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.576200", + "Timestamp": "2024-05-16T04:18:10.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3en.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096500", - "Timestamp": "2019-10-15T14:52:40.000Z" + "SpotPrice": "4.028400", + "Timestamp": "2024-05-16T04:18:08.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3en.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136500", - "Timestamp": "2019-10-15T14:52:40.000Z" + "SpotPrice": "4.023400", + "Timestamp": "2024-05-16T04:18:08.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3en.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036500", - "Timestamp": "2019-10-15T14:52:40.000Z" + "SpotPrice": "3.898400", + "Timestamp": "2024-05-16T04:18:08.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.276900", - "Timestamp": "2019-10-15T14:52:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.977200", + "Timestamp": "2024-05-16T04:18:07.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.276900", - "Timestamp": "2019-10-15T14:52:39.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "p3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.246900", - "Timestamp": "2019-10-15T14:52:39.000Z" + "SpotPrice": "0.130000", + "Timestamp": "2024-05-16T04:18:07.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.246900", - "Timestamp": "2019-10-15T14:52:39.000Z" + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T04:18:07.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.146900", - "Timestamp": "2019-10-15T14:52:39.000Z" + "SpotPrice": "0.070000", + "Timestamp": "2024-05-16T04:18:07.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.146900", - "Timestamp": "2019-10-15T14:52:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.172800", + "Timestamp": "2024-05-16T04:18:07.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.161200", - "Timestamp": "2019-10-15T14:52:37.000Z" + "SpotPrice": "6.289200", + "Timestamp": "2024-05-16T04:18:06.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2idn.metal", "ProductDescription": "Windows", - "SpotPrice": "2.161200", - "Timestamp": "2019-10-15T14:52:37.000Z" + "SpotPrice": "11.770700", + "Timestamp": "2024-05-16T04:18:06.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.metal-24xl", "ProductDescription": "Windows", - "SpotPrice": "2.161200", - "Timestamp": "2019-10-15T14:52:37.000Z" + "SpotPrice": "6.212800", + "Timestamp": "2024-05-16T04:18:05.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.141000", - "Timestamp": "2019-10-15T14:51:50.000Z" + "SpotPrice": "0.088600", + "Timestamp": "2024-05-16T04:18:05.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3en.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.141000", - "Timestamp": "2019-10-15T14:51:50.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.059600", + "Timestamp": "2024-05-16T04:18:05.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3en.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.141000", - "Timestamp": "2019-10-15T14:51:50.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028600", + "Timestamp": "2024-05-16T04:18:05.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3en.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.181000", - "Timestamp": "2019-10-15T14:51:50.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.109000", + "Timestamp": "2024-05-16T04:18:05.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3en.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.181000", - "Timestamp": "2019-10-15T14:51:50.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.587500", + "Timestamp": "2024-05-16T04:18:05.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.181000", - "Timestamp": "2019-10-15T14:51:50.000Z" + "SpotPrice": "0.583800", + "Timestamp": "2024-05-16T04:18:05.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g5.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.081000", - "Timestamp": "2019-10-15T14:51:50.000Z" + "SpotPrice": "0.527500", + "Timestamp": "2024-05-16T04:18:05.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3en.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.081000", - "Timestamp": "2019-10-15T14:51:50.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.877300", + "Timestamp": "2024-05-16T04:18:04.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3en.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.081000", - "Timestamp": "2019-10-15T14:51:50.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.917400", + "Timestamp": "2024-05-16T04:18:04.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2iezn.6xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.128500", - "Timestamp": "2019-10-15T14:51:47.000Z" + "SpotPrice": "3.122600", + "Timestamp": "2024-05-16T04:18:04.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.173000", - "Timestamp": "2019-10-15T14:51:39.000Z" + "SpotPrice": "0.287900", + "Timestamp": "2024-05-16T04:18:03.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.618600", + "Timestamp": "2024-05-16T04:18:03.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.613600", + "Timestamp": "2024-05-16T04:18:03.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.488600", + "Timestamp": "2024-05-16T04:18:03.000Z" + }, + { + "AvailabilityZone": "us-east-1e", + "InstanceType": "c3.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.173000", - "Timestamp": "2019-10-15T14:51:39.000Z" + "SpotPrice": "2.002500", + "Timestamp": "2024-05-16T04:18:01.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.173000", - "Timestamp": "2019-10-15T14:51:39.000Z" + "SpotPrice": "2.507700", + "Timestamp": "2024-05-16T04:18:01.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.310600", + "Timestamp": "2024-05-16T04:18:01.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c1.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.244000", - "Timestamp": "2019-10-15T14:35:34.000Z" + "SpotPrice": "0.380100", + "Timestamp": "2024-05-16T04:18:00.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c1.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.214000", - "Timestamp": "2019-10-15T14:35:34.000Z" + "SpotPrice": "0.350100", + "Timestamp": "2024-05-16T04:18:00.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c1.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.114000", - "Timestamp": "2019-10-15T14:35:34.000Z" + "SpotPrice": "0.250100", + "Timestamp": "2024-05-16T04:18:00.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.175000", + "Timestamp": "2024-05-16T04:18:00.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.170000", + "Timestamp": "2024-05-16T04:18:00.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.045000", + "Timestamp": "2024-05-16T04:18:00.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.678000", - "Timestamp": "2019-10-15T14:32:32.000Z" + "SpotPrice": "6.551000", + "Timestamp": "2024-05-16T04:17:59.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5dn.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.005300", - "Timestamp": "2019-10-15T14:23:18.000Z" + "SpotPrice": "4.811400", + "Timestamp": "2024-05-16T04:17:58.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5dn.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.975300", - "Timestamp": "2019-10-15T14:23:18.000Z" + "SpotPrice": "4.806400", + "Timestamp": "2024-05-16T04:17:58.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5dn.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.875300", - "Timestamp": "2019-10-15T14:23:18.000Z" + "SpotPrice": "4.681400", + "Timestamp": "2024-05-16T04:17:58.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.medium", "ProductDescription": "Windows", - "SpotPrice": "4.576000", - "Timestamp": "2019-10-15T14:15:22.000Z" + "SpotPrice": "0.077500", + "Timestamp": "2024-05-16T04:17:58.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3.large", "ProductDescription": "Windows", - "SpotPrice": "3.043500", - "Timestamp": "2019-10-15T14:15:21.000Z" + "SpotPrice": "0.063500", + "Timestamp": "2024-05-16T04:17:56.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.704000", - "Timestamp": "2019-10-15T14:15:21.000Z" + "SpotPrice": "0.580600", + "Timestamp": "2024-05-16T04:17:56.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.large", "ProductDescription": "Windows", - "SpotPrice": "3.043500", - "Timestamp": "2019-10-15T14:15:21.000Z" + "SpotPrice": "0.142100", + "Timestamp": "2024-05-16T04:17:54.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.metal", "ProductDescription": "Windows", - "SpotPrice": "0.430600", - "Timestamp": "2019-10-15T14:07:51.000Z" + "SpotPrice": "9.388200", + "Timestamp": "2024-05-16T04:17:54.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5dn.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t2.small", "ProductDescription": "Windows", - "SpotPrice": "1.027800", - "Timestamp": "2019-10-15T14:05:07.000Z" + "SpotPrice": "0.019900", + "Timestamp": "2024-05-16T04:17:53.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.155400", - "Timestamp": "2019-10-15T14:02:15.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.580600", + "Timestamp": "2024-05-16T04:17:53.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5a.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.195400", - "Timestamp": "2019-10-15T14:02:15.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.499200", + "Timestamp": "2024-05-16T04:17:53.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.095400", - "Timestamp": "2019-10-15T14:02:15.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.317100", + "Timestamp": "2024-05-16T04:17:52.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5dn.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.132000", + "Timestamp": "2024-05-16T04:17:52.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.244000", - "Timestamp": "2019-10-15T14:00:50.000Z" + "SpotPrice": "0.864400", + "Timestamp": "2024-05-16T04:17:50.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5dn.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.214000", - "Timestamp": "2019-10-15T14:00:50.000Z" + "SpotPrice": "0.859400", + "Timestamp": "2024-05-16T04:17:50.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5dn.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.114000", - "Timestamp": "2019-10-15T14:00:50.000Z" + "SpotPrice": "0.734400", + "Timestamp": "2024-05-16T04:17:50.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1e.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.6xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.272800", - "Timestamp": "2019-10-15T13:56:50.000Z" + "SpotPrice": "2.125100", + "Timestamp": "2024-05-16T04:17:50.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1e.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3.xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.272800", - "Timestamp": "2019-10-15T13:56:50.000Z" + "SpotPrice": "0.375700", + "Timestamp": "2024-05-16T04:17:50.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.930800", - "Timestamp": "2019-10-15T13:56:20.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.156700", + "Timestamp": "2024-05-16T04:17:49.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.930800", - "Timestamp": "2019-10-15T13:56:20.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.124100", + "Timestamp": "2024-05-16T04:17:49.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.900800", - "Timestamp": "2019-10-15T13:56:20.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.756900", + "Timestamp": "2024-05-16T04:17:47.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1e.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.900800", - "Timestamp": "2019-10-15T13:56:20.000Z" + "SpotPrice": "0.751900", + "Timestamp": "2024-05-16T04:17:47.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1e.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.800800", - "Timestamp": "2019-10-15T13:56:20.000Z" + "SpotPrice": "0.626900", + "Timestamp": "2024-05-16T04:17:47.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1e.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099300", + "Timestamp": "2024-05-16T04:17:47.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095600", + "Timestamp": "2024-05-16T04:17:47.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gn.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.800800", - "Timestamp": "2019-10-15T13:56:20.000Z" + "SpotPrice": "0.039300", + "Timestamp": "2024-05-16T04:17:47.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.192000", - "Timestamp": "2019-10-15T13:52:56.000Z" + "SpotPrice": "13.152600", + "Timestamp": "2024-05-16T04:17:47.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.288000", - "Timestamp": "2019-10-15T13:52:56.000Z" + "SpotPrice": "0.284900", + "Timestamp": "2024-05-16T04:17:47.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.850000", - "Timestamp": "2019-10-15T13:52:56.000Z" + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T04:17:46.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.946000", - "Timestamp": "2019-10-15T13:52:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092300", + "Timestamp": "2024-05-16T04:17:46.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.820000", - "Timestamp": "2019-10-15T13:52:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036000", + "Timestamp": "2024-05-16T04:17:46.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.916000", - "Timestamp": "2019-10-15T13:52:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.533700", + "Timestamp": "2024-05-16T04:17:46.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.720000", - "Timestamp": "2019-10-15T13:52:56.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.528700", + "Timestamp": "2024-05-16T04:17:46.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.816000", - "Timestamp": "2019-10-15T13:52:56.000Z" + "SpotPrice": "0.403700", + "Timestamp": "2024-05-16T04:17:46.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.965500", - "Timestamp": "2019-10-15T13:52:28.000Z" + "SpotPrice": "0.144700", + "Timestamp": "2024-05-16T04:17:46.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.626000", - "Timestamp": "2019-10-15T13:52:28.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140700", + "Timestamp": "2024-05-16T04:17:46.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084700", + "Timestamp": "2024-05-16T04:17:46.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.965500", - "Timestamp": "2019-10-15T13:52:28.000Z" + "SpotPrice": "0.112500", + "Timestamp": "2024-05-16T04:17:46.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.935500", - "Timestamp": "2019-10-15T13:52:28.000Z" + "SpotPrice": "0.108500", + "Timestamp": "2024-05-16T04:17:46.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.596000", - "Timestamp": "2019-10-15T13:52:28.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052500", + "Timestamp": "2024-05-16T04:17:46.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.935500", - "Timestamp": "2019-10-15T13:52:28.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.141900", + "Timestamp": "2024-05-16T04:17:46.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.835500", - "Timestamp": "2019-10-15T13:52:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.000200", + "Timestamp": "2024-05-16T04:17:45.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.496000", - "Timestamp": "2019-10-15T13:52:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.995200", + "Timestamp": "2024-05-16T04:17:45.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.835500", - "Timestamp": "2019-10-15T13:52:28.000Z" + "SpotPrice": "0.870200", + "Timestamp": "2024-05-16T04:17:45.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.124300", - "Timestamp": "2019-10-15T13:52:28.000Z" + "SpotPrice": "0.406700", + "Timestamp": "2024-05-16T04:17:45.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.124300", - "Timestamp": "2019-10-15T13:52:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.376700", + "Timestamp": "2024-05-16T04:17:45.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.124300", - "Timestamp": "2019-10-15T13:52:28.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.276700", + "Timestamp": "2024-05-16T04:17:45.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.164300", - "Timestamp": "2019-10-15T13:52:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.612800", + "Timestamp": "2024-05-16T04:17:45.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.164300", - "Timestamp": "2019-10-15T13:52:28.000Z" + "SpotPrice": "0.607800", + "Timestamp": "2024-05-16T04:17:45.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.164300", - "Timestamp": "2019-10-15T13:52:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.482800", + "Timestamp": "2024-05-16T04:17:45.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.064300", - "Timestamp": "2019-10-15T13:52:28.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.235400", + "Timestamp": "2024-05-16T04:17:45.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.064300", - "Timestamp": "2019-10-15T13:52:28.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.230400", + "Timestamp": "2024-05-16T04:17:45.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.064300", - "Timestamp": "2019-10-15T13:52:28.000Z" + "SpotPrice": "4.105400", + "Timestamp": "2024-05-16T04:17:45.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.269200", - "Timestamp": "2019-10-15T13:51:48.000Z" + "SpotPrice": "1.538800", + "Timestamp": "2024-05-16T04:17:44.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.239200", - "Timestamp": "2019-10-15T13:51:48.000Z" + "SpotPrice": "1.533800", + "Timestamp": "2024-05-16T04:17:44.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.139200", - "Timestamp": "2019-10-15T13:51:48.000Z" + "SpotPrice": "1.408800", + "Timestamp": "2024-05-16T04:17:44.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.507200", - "Timestamp": "2019-10-15T13:51:48.000Z" + "SpotPrice": "1.177700", + "Timestamp": "2024-05-16T04:17:43.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "11.333200", - "Timestamp": "2019-10-15T13:51:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.540300", + "Timestamp": "2024-05-16T04:17:43.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1e.32xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.294300", + "Timestamp": "2024-05-16T04:17:42.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "11.333200", - "Timestamp": "2019-10-15T13:51:48.000Z" + "SpotPrice": "1.631400", + "Timestamp": "2024-05-16T04:17:41.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1e.32xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "11.303200", - "Timestamp": "2019-10-15T13:51:48.000Z" + "SpotPrice": "1.626400", + "Timestamp": "2024-05-16T04:17:41.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1e.32xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.501400", + "Timestamp": "2024-05-16T04:17:41.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094900", + "Timestamp": "2024-05-16T04:17:41.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2gd.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "11.303200", - "Timestamp": "2019-10-15T13:51:48.000Z" + "SpotPrice": "0.065900", + "Timestamp": "2024-05-16T04:17:41.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1e.32xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2gd.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "11.203200", - "Timestamp": "2019-10-15T13:51:48.000Z" + "SpotPrice": "0.034900", + "Timestamp": "2024-05-16T04:17:41.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1e.32xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.512000", + "Timestamp": "2024-05-16T04:17:41.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.507000", + "Timestamp": "2024-05-16T04:17:41.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6in.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "11.203200", - "Timestamp": "2019-10-15T13:51:48.000Z" + "SpotPrice": "0.382000", + "Timestamp": "2024-05-16T04:17:41.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m2.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.105300", - "Timestamp": "2019-10-15T13:51:43.000Z" + "SpotPrice": "0.196100", + "Timestamp": "2024-05-16T04:17:40.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.105300", - "Timestamp": "2019-10-15T13:51:43.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.511900", + "Timestamp": "2024-05-16T04:17:40.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.105300", - "Timestamp": "2019-10-15T13:51:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.430600", + "Timestamp": "2024-05-16T04:17:40.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Windows", - "SpotPrice": "17.091200", - "Timestamp": "2019-10-15T13:51:42.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.506900", + "Timestamp": "2024-05-16T04:17:40.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Windows", - "SpotPrice": "17.091200", - "Timestamp": "2019-10-15T13:51:42.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.425600", + "Timestamp": "2024-05-16T04:17:40.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.150300", - "Timestamp": "2019-10-15T13:50:50.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.381900", + "Timestamp": "2024-05-16T04:17:40.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.027800", - "Timestamp": "2019-10-15T13:49:07.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.300600", + "Timestamp": "2024-05-16T04:17:40.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5dn.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.408500", - "Timestamp": "2019-10-15T13:28:03.000Z" + "SpotPrice": "2.232200", + "Timestamp": "2024-05-16T04:17:38.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5dn.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.378500", - "Timestamp": "2019-10-15T13:28:03.000Z" + "SpotPrice": "2.227200", + "Timestamp": "2024-05-16T04:17:38.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5dn.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.278500", - "Timestamp": "2019-10-15T13:28:03.000Z" + "SpotPrice": "2.102200", + "Timestamp": "2024-05-16T04:17:38.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.962100", + "Timestamp": "2024-05-16T04:17:38.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.148900", - "Timestamp": "2019-10-15T13:17:26.000Z" + "SpotPrice": "1.330200", + "Timestamp": "2024-05-16T04:17:37.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5g.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.188900", - "Timestamp": "2019-10-15T13:17:26.000Z" + "SpotPrice": "1.325200", + "Timestamp": "2024-05-16T04:17:37.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.088900", - "Timestamp": "2019-10-15T13:17:26.000Z" + "SpotPrice": "1.200200", + "Timestamp": "2024-05-16T04:17:37.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5n.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.302100", + "Timestamp": "2024-05-16T04:17:36.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.801000", - "Timestamp": "2019-10-15T13:05:19.000Z" + "SpotPrice": "5.191500", + "Timestamp": "2024-05-16T04:17:35.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5n.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.771000", - "Timestamp": "2019-10-15T13:05:19.000Z" + "SpotPrice": "5.186500", + "Timestamp": "2024-05-16T04:17:35.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5n.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.671000", - "Timestamp": "2019-10-15T13:05:19.000Z" + "SpotPrice": "5.061500", + "Timestamp": "2024-05-16T04:17:35.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096600", - "Timestamp": "2019-10-15T13:03:29.000Z" + "SpotPrice": "0.184200", + "Timestamp": "2024-05-16T04:17:35.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136600", - "Timestamp": "2019-10-15T13:03:29.000Z" + "SpotPrice": "0.180200", + "Timestamp": "2024-05-16T04:17:35.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036600", - "Timestamp": "2019-10-15T13:03:29.000Z" + "SpotPrice": "0.124200", + "Timestamp": "2024-05-16T04:17:35.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.500600", - "Timestamp": "2019-10-15T13:02:10.000Z" + "SpotPrice": "15.197800", + "Timestamp": "2024-05-16T04:17:33.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6id.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.500600", - "Timestamp": "2019-10-15T13:02:10.000Z" + "SpotPrice": "2.209300", + "Timestamp": "2024-05-16T04:17:32.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.262600", - "Timestamp": "2019-10-15T13:01:10.000Z" + "SpotPrice": "1.608000", + "Timestamp": "2024-05-16T04:17:32.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.262600", - "Timestamp": "2019-10-15T13:01:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.603000", + "Timestamp": "2024-05-16T04:17:32.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.232600", - "Timestamp": "2019-10-15T13:01:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.478000", + "Timestamp": "2024-05-16T04:17:32.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.232600", - "Timestamp": "2019-10-15T13:01:10.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.325700", + "Timestamp": "2024-05-16T04:17:31.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.132600", - "Timestamp": "2019-10-15T13:01:10.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.295700", + "Timestamp": "2024-05-16T04:17:31.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c3.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.132600", - "Timestamp": "2019-10-15T13:01:10.000Z" + "SpotPrice": "0.195700", + "Timestamp": "2024-05-16T04:17:31.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.506900", - "Timestamp": "2019-10-15T12:59:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307000", + "Timestamp": "2024-05-16T04:17:31.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.506900", - "Timestamp": "2019-10-15T12:59:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.277000", + "Timestamp": "2024-05-16T04:17:31.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.506900", - "Timestamp": "2019-10-15T12:59:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177000", + "Timestamp": "2024-05-16T04:17:31.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125200", - "Timestamp": "2019-10-15T12:57:26.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092000", + "Timestamp": "2024-05-16T04:17:30.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125200", - "Timestamp": "2019-10-15T12:57:26.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088300", + "Timestamp": "2024-05-16T04:17:30.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125200", - "Timestamp": "2019-10-15T12:57:26.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032000", + "Timestamp": "2024-05-16T04:17:30.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5dn.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m4.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.087000", - "Timestamp": "2019-10-15T12:52:40.000Z" + "SpotPrice": "1.074200", + "Timestamp": "2024-05-16T04:17:30.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.087000", - "Timestamp": "2019-10-15T12:52:40.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149000", + "Timestamp": "2024-05-16T04:17:30.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.801000", - "Timestamp": "2019-10-15T12:52:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145000", + "Timestamp": "2024-05-16T04:17:30.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.801000", - "Timestamp": "2019-10-15T12:52:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089000", + "Timestamp": "2024-05-16T04:17:30.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.771000", - "Timestamp": "2019-10-15T12:52:16.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.337500", + "Timestamp": "2024-05-16T04:17:30.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5dn.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.771000", - "Timestamp": "2019-10-15T12:52:16.000Z" + "SpotPrice": "0.332500", + "Timestamp": "2024-05-16T04:17:30.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5dn.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.671000", - "Timestamp": "2019-10-15T12:52:16.000Z" + "SpotPrice": "0.207500", + "Timestamp": "2024-05-16T04:17:30.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.671000", - "Timestamp": "2019-10-15T12:52:16.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.288000", + "Timestamp": "2024-05-16T04:17:29.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.083300", - "Timestamp": "2019-10-15T12:50:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301900", + "Timestamp": "2024-05-16T04:17:28.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.007400", - "Timestamp": "2019-10-15T12:41:50.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296900", + "Timestamp": "2024-05-16T04:17:28.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.007400", - "Timestamp": "2019-10-15T12:41:50.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171900", + "Timestamp": "2024-05-16T04:17:28.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.007400", - "Timestamp": "2019-10-15T12:41:50.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.725400", + "Timestamp": "2024-05-16T04:17:27.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.029000", - "Timestamp": "2019-10-15T12:02:30.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.695400", + "Timestamp": "2024-05-16T04:17:27.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.111800", - "Timestamp": "2019-10-15T12:00:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.595400", + "Timestamp": "2024-05-16T04:17:27.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.111800", - "Timestamp": "2019-10-15T12:00:41.000Z" + "SpotPrice": "2.585300", + "Timestamp": "2024-05-16T04:17:27.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.151800", - "Timestamp": "2019-10-15T12:00:41.000Z" + "SpotPrice": "2.580300", + "Timestamp": "2024-05-16T04:17:27.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.455300", + "Timestamp": "2024-05-16T04:17:27.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.302800", + "Timestamp": "2024-05-16T04:17:25.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.151800", - "Timestamp": "2019-10-15T12:00:41.000Z" + "SpotPrice": "0.297800", + "Timestamp": "2024-05-16T04:17:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.051800", - "Timestamp": "2019-10-15T12:00:41.000Z" + "SpotPrice": "0.172800", + "Timestamp": "2024-05-16T04:17:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.051800", - "Timestamp": "2019-10-15T12:00:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170900", + "Timestamp": "2024-05-16T04:17:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.111000", - "Timestamp": "2019-10-15T12:00:16.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167200", + "Timestamp": "2024-05-16T04:17:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.125400", - "Timestamp": "2019-10-15T12:00:06.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110900", + "Timestamp": "2024-05-16T04:17:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.125400", - "Timestamp": "2019-10-15T12:00:06.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.214800", + "Timestamp": "2024-05-16T04:17:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.423900", - "Timestamp": "2019-10-15T11:59:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.211100", + "Timestamp": "2024-05-16T04:17:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.423900", - "Timestamp": "2019-10-15T11:59:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.154800", + "Timestamp": "2024-05-16T04:17:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.500600", - "Timestamp": "2019-10-15T11:57:05.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122300", + "Timestamp": "2024-05-16T04:17:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.500600", - "Timestamp": "2019-10-15T11:57:05.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162300", + "Timestamp": "2024-05-16T04:17:25.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.500600", - "Timestamp": "2019-10-15T11:57:05.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062300", + "Timestamp": "2024-05-16T04:17:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.262600", - "Timestamp": "2019-10-15T11:57:02.000Z" + "SpotPrice": "0.825400", + "Timestamp": "2024-05-16T04:17:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.232600", - "Timestamp": "2019-10-15T11:57:02.000Z" + "SpotPrice": "0.820400", + "Timestamp": "2024-05-16T04:17:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.132600", - "Timestamp": "2019-10-15T11:57:02.000Z" + "SpotPrice": "0.695400", + "Timestamp": "2024-05-16T04:17:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.363900", - "Timestamp": "2019-10-15T11:56:33.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.271700", + "Timestamp": "2024-05-16T04:17:23.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.363900", - "Timestamp": "2019-10-15T11:56:33.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.403900", - "Timestamp": "2019-10-15T11:56:33.000Z" + "SpotPrice": "1.559200", + "Timestamp": "2024-05-16T04:17:23.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.403900", - "Timestamp": "2019-10-15T11:56:33.000Z" + "SpotPrice": "1.554200", + "Timestamp": "2024-05-16T04:17:23.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.303900", - "Timestamp": "2019-10-15T11:56:33.000Z" + "SpotPrice": "1.429200", + "Timestamp": "2024-05-16T04:17:23.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.303900", - "Timestamp": "2019-10-15T11:56:33.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.311800", + "Timestamp": "2024-05-16T04:17:22.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m3.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092200", - "Timestamp": "2019-10-15T11:53:53.000Z" + "SpotPrice": "0.173100", + "Timestamp": "2024-05-16T04:17:18.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m3.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c3.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132200", - "Timestamp": "2019-10-15T11:53:53.000Z" + "SpotPrice": "0.213100", + "Timestamp": "2024-05-16T04:17:18.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m3.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c3.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032200", - "Timestamp": "2019-10-15T11:53:53.000Z" + "SpotPrice": "0.113100", + "Timestamp": "2024-05-16T04:17:18.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.087000", - "Timestamp": "2019-10-15T11:51:48.000Z" + "SpotPrice": "4.255700", + "Timestamp": "2024-05-16T04:17:18.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "9.408000", - "Timestamp": "2019-10-15T11:51:48.000Z" + "SpotPrice": "8.942600", + "Timestamp": "2024-05-16T04:17:18.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.087000", - "Timestamp": "2019-10-15T11:51:48.000Z" + "SpotPrice": "0.805100", + "Timestamp": "2024-05-16T04:17:17.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.122000", - "Timestamp": "2019-10-15T11:51:47.000Z" + "SpotPrice": "0.479100", + "Timestamp": "2024-05-16T04:17:16.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.474100", + "Timestamp": "2024-05-16T04:17:16.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.349100", + "Timestamp": "2024-05-16T04:17:16.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.801000", - "Timestamp": "2019-10-15T11:51:47.000Z" + "SpotPrice": "0.489600", + "Timestamp": "2024-05-16T04:17:16.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "5.092000", - "Timestamp": "2019-10-15T11:51:47.000Z" + "SpotPrice": "0.484600", + "Timestamp": "2024-05-16T04:17:16.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.359600", + "Timestamp": "2024-05-16T04:17:16.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.139800", + "Timestamp": "2024-05-16T04:17:14.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.463200", + "Timestamp": "2024-05-16T04:17:13.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.771000", - "Timestamp": "2019-10-15T11:51:47.000Z" + "SpotPrice": "0.458200", + "Timestamp": "2024-05-16T04:17:13.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.992000", - "Timestamp": "2019-10-15T11:51:47.000Z" + "SpotPrice": "0.333200", + "Timestamp": "2024-05-16T04:17:13.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.671000", - "Timestamp": "2019-10-15T11:51:47.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.903800", + "Timestamp": "2024-05-16T04:17:13.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.298200", - "Timestamp": "2019-10-15T11:51:34.000Z" + "SpotPrice": "0.351000", + "Timestamp": "2024-05-16T04:17:12.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.298200", - "Timestamp": "2019-10-15T11:51:34.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.346000", + "Timestamp": "2024-05-16T04:17:12.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.221000", + "Timestamp": "2024-05-16T04:17:12.000Z" + }, + { + "AvailabilityZone": "us-east-1e", + "InstanceType": "t2.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.298200", - "Timestamp": "2019-10-15T11:51:34.000Z" + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T04:17:12.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "t2.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.338200", - "Timestamp": "2019-10-15T11:51:34.000Z" + "SpotPrice": "0.147400", + "Timestamp": "2024-05-16T04:17:12.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.338200", - "Timestamp": "2019-10-15T11:51:34.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047400", + "Timestamp": "2024-05-16T04:17:12.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064900", + "Timestamp": "2024-05-16T04:05:19.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "t2.micro", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.338200", - "Timestamp": "2019-10-15T11:51:34.000Z" + "SpotPrice": "0.004900", + "Timestamp": "2024-05-16T04:05:19.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t2.micro", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.238200", - "Timestamp": "2019-10-15T11:51:34.000Z" + "SpotPrice": "0.004900", + "Timestamp": "2024-05-16T04:05:19.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.238200", - "Timestamp": "2019-10-15T11:51:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.383600", + "Timestamp": "2024-05-16T04:03:24.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.238200", - "Timestamp": "2019-10-15T11:51:34.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.282000", + "Timestamp": "2024-05-16T04:03:22.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "p2.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.369200", - "Timestamp": "2019-10-15T11:51:34.000Z" + "SpotPrice": "4.230100", + "Timestamp": "2024-05-16T04:03:18.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.18xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.369200", - "Timestamp": "2019-10-15T11:51:34.000Z" + "SpotPrice": "4.761400", + "Timestamp": "2024-05-16T04:03:18.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.369200", - "Timestamp": "2019-10-15T11:51:34.000Z" + "SpotPrice": "8.248800", + "Timestamp": "2024-05-16T04:03:16.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.metal-48xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.687000", - "Timestamp": "2019-10-15T11:45:37.000Z" + "SpotPrice": "6.667900", + "Timestamp": "2024-05-16T04:03:11.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.metal-48xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.657000", - "Timestamp": "2019-10-15T11:45:37.000Z" + "SpotPrice": "6.662900", + "Timestamp": "2024-05-16T04:03:11.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.557000", - "Timestamp": "2019-10-15T11:45:37.000Z" + "SpotPrice": "6.537900", + "Timestamp": "2024-05-16T04:03:11.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.272700", - "Timestamp": "2019-10-15T11:45:37.000Z" + "SpotPrice": "1.132600", + "Timestamp": "2024-05-16T04:03:10.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6g.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.242700", - "Timestamp": "2019-10-15T11:45:37.000Z" + "SpotPrice": "1.127600", + "Timestamp": "2024-05-16T04:03:10.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.142700", - "Timestamp": "2019-10-15T11:45:37.000Z" + "SpotPrice": "1.002600", + "Timestamp": "2024-05-16T04:03:10.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5dn.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.934300", + "Timestamp": "2024-05-16T04:03:09.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.073600", + "Timestamp": "2024-05-16T04:03:06.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.282800", + "Timestamp": "2024-05-16T04:03:06.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.421800", - "Timestamp": "2019-10-15T11:27:39.000Z" + "SpotPrice": "0.579600", + "Timestamp": "2024-05-16T04:03:06.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5dn.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.391800", - "Timestamp": "2019-10-15T11:27:39.000Z" + "SpotPrice": "0.575900", + "Timestamp": "2024-05-16T04:03:06.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5dn.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.291800", - "Timestamp": "2019-10-15T11:27:39.000Z" + "SpotPrice": "0.519600", + "Timestamp": "2024-05-16T04:03:06.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.275900", - "Timestamp": "2019-10-15T11:11:54.000Z" + "SpotPrice": "3.769600", + "Timestamp": "2024-05-16T04:03:06.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.245900", - "Timestamp": "2019-10-15T11:11:54.000Z" + "SpotPrice": "3.764600", + "Timestamp": "2024-05-16T04:03:06.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.145900", - "Timestamp": "2019-10-15T11:11:54.000Z" + "SpotPrice": "3.639600", + "Timestamp": "2024-05-16T04:03:06.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.256900", - "Timestamp": "2019-10-15T11:11:45.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.296900", + "Timestamp": "2024-05-16T04:03:04.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126800", - "Timestamp": "2019-10-15T10:53:17.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.291900", + "Timestamp": "2024-05-16T04:03:04.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126800", - "Timestamp": "2019-10-15T10:53:17.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.166900", + "Timestamp": "2024-05-16T04:03:04.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.126800", - "Timestamp": "2019-10-15T10:53:17.000Z" + "SpotPrice": "0.289100", + "Timestamp": "2024-05-16T04:03:04.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.395200", - "Timestamp": "2019-10-15T10:52:42.000Z" + "SpotPrice": "1.049500", + "Timestamp": "2024-05-16T04:03:02.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7gd.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.365200", - "Timestamp": "2019-10-15T10:52:42.000Z" + "SpotPrice": "1.044500", + "Timestamp": "2024-05-16T04:03:02.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.265200", - "Timestamp": "2019-10-15T10:52:42.000Z" + "SpotPrice": "0.919500", + "Timestamp": "2024-05-16T04:03:02.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5dn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.001200", - "Timestamp": "2019-10-15T10:51:54.000Z" + "SpotPrice": "0.326000", + "Timestamp": "2024-05-16T04:03:02.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.001200", - "Timestamp": "2019-10-15T10:51:54.000Z" + "SpotPrice": "2.099300", + "Timestamp": "2024-05-16T04:03:02.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.001200", - "Timestamp": "2019-10-15T10:51:54.000Z" + "SpotPrice": "1.129500", + "Timestamp": "2024-05-16T04:03:01.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.830200", - "Timestamp": "2019-10-15T10:51:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.647100", + "Timestamp": "2024-05-16T04:03:00.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1e.2xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "i2.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.830200", - "Timestamp": "2019-10-15T10:51:49.000Z" + "SpotPrice": "2.950100", + "Timestamp": "2024-05-16T04:03:00.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1e.2xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "i2.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.800200", - "Timestamp": "2019-10-15T10:51:49.000Z" + "SpotPrice": "2.920100", + "Timestamp": "2024-05-16T04:03:00.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.800200", - "Timestamp": "2019-10-15T10:51:49.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.820100", + "Timestamp": "2024-05-16T04:03:00.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.700200", - "Timestamp": "2019-10-15T10:51:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.402600", + "Timestamp": "2024-05-16T04:03:00.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.700200", - "Timestamp": "2019-10-15T10:51:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.398600", + "Timestamp": "2024-05-16T04:03:00.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.068200", - "Timestamp": "2019-10-15T10:51:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.342600", + "Timestamp": "2024-05-16T04:03:00.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1e.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.068200", - "Timestamp": "2019-10-15T10:51:49.000Z" + "SpotPrice": "9.527600", + "Timestamp": "2024-05-16T04:02:59.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g4dn.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.257400", - "Timestamp": "2019-10-15T10:51:48.000Z" + "SpotPrice": "0.664800", + "Timestamp": "2024-05-16T04:02:59.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.257400", - "Timestamp": "2019-10-15T10:51:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.659800", + "Timestamp": "2024-05-16T04:02:59.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.297400", - "Timestamp": "2019-10-15T10:51:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.534800", + "Timestamp": "2024-05-16T04:02:59.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.297400", - "Timestamp": "2019-10-15T10:51:48.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.127600", + "Timestamp": "2024-05-16T04:02:59.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.197400", - "Timestamp": "2019-10-15T10:51:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.553900", + "Timestamp": "2024-05-16T04:02:58.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.197400", - "Timestamp": "2019-10-15T10:51:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.242000", + "Timestamp": "2024-05-16T04:02:58.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g4dn.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.381400", - "Timestamp": "2019-10-15T10:51:48.000Z" + "SpotPrice": "0.300100", + "Timestamp": "2024-05-16T04:02:58.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g4dn.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.metal", "ProductDescription": "Windows", - "SpotPrice": "0.381400", - "Timestamp": "2019-10-15T10:51:48.000Z" + "SpotPrice": "10.337600", + "Timestamp": "2024-05-16T04:02:56.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i4i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.540400", - "Timestamp": "2019-10-15T10:38:55.000Z" + "SpotPrice": "1.291600", + "Timestamp": "2024-05-16T04:02:56.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5dn.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.058000", - "Timestamp": "2019-10-15T10:31:19.000Z" + "SpotPrice": "1.301000", + "Timestamp": "2024-05-16T04:02:56.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.189500", - "Timestamp": "2019-10-15T10:14:00.000Z" + "SpotPrice": "1.184700", + "Timestamp": "2024-05-16T04:02:55.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6g.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.229500", - "Timestamp": "2019-10-15T10:14:00.000Z" + "SpotPrice": "1.179700", + "Timestamp": "2024-05-16T04:02:55.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.129500", - "Timestamp": "2019-10-15T10:14:00.000Z" + "SpotPrice": "1.054700", + "Timestamp": "2024-05-16T04:02:55.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.006200", - "Timestamp": "2019-10-15T10:05:42.000Z" + "SpotPrice": "0.280400", + "Timestamp": "2024-05-16T04:02:55.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.large", "ProductDescription": "Windows", - "SpotPrice": "0.006200", - "Timestamp": "2019-10-15T10:05:42.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132900", - "Timestamp": "2019-10-15T10:05:28.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172900", - "Timestamp": "2019-10-15T10:05:28.000Z" + "SpotPrice": "0.161300", + "Timestamp": "2024-05-16T04:02:51.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072900", - "Timestamp": "2019-10-15T10:05:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.large", + "ProductDescription": "Windows", + "SpotPrice": "0.168100", + "Timestamp": "2024-05-16T04:02:51.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.262600", - "Timestamp": "2019-10-15T09:52:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.482900", + "Timestamp": "2024-05-16T04:02:51.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.262600", - "Timestamp": "2019-10-15T09:52:52.000Z" + "SpotPrice": "2.149100", + "Timestamp": "2024-05-16T04:02:51.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.262600", - "Timestamp": "2019-10-15T09:52:52.000Z" + "SpotPrice": "2.252700", + "Timestamp": "2024-05-16T04:02:51.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.232600", - "Timestamp": "2019-10-15T09:52:52.000Z" + "SpotPrice": "2.119100", + "Timestamp": "2024-05-16T04:02:51.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.232600", - "Timestamp": "2019-10-15T09:52:52.000Z" + "SpotPrice": "2.222700", + "Timestamp": "2024-05-16T04:02:51.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.232600", - "Timestamp": "2019-10-15T09:52:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.019100", + "Timestamp": "2024-05-16T04:02:51.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.132600", - "Timestamp": "2019-10-15T09:52:52.000Z" + "SpotPrice": "2.122700", + "Timestamp": "2024-05-16T04:02:51.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.132600", - "Timestamp": "2019-10-15T09:52:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.761800", + "Timestamp": "2024-05-16T04:02:50.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.132600", - "Timestamp": "2019-10-15T09:52:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.756800", + "Timestamp": "2024-05-16T04:02:50.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.500600", - "Timestamp": "2019-10-15T09:52:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.631800", + "Timestamp": "2024-05-16T04:02:50.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.large", "ProductDescription": "Windows", - "SpotPrice": "0.500600", - "Timestamp": "2019-10-15T09:52:29.000Z" + "SpotPrice": "0.143800", + "Timestamp": "2024-05-16T04:02:50.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.500600", - "Timestamp": "2019-10-15T09:52:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.057000", + "Timestamp": "2024-05-16T04:02:49.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.013900", - "Timestamp": "2019-10-15T09:52:18.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.052000", + "Timestamp": "2024-05-16T04:02:49.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.013900", - "Timestamp": "2019-10-15T09:52:18.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.927000", + "Timestamp": "2024-05-16T04:02:49.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.013900", - "Timestamp": "2019-10-15T09:52:18.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.550200", + "Timestamp": "2024-05-16T04:02:49.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.350600", - "Timestamp": "2019-10-15T09:51:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.545200", + "Timestamp": "2024-05-16T04:02:49.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.350600", - "Timestamp": "2019-10-15T09:51:56.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.420200", + "Timestamp": "2024-05-16T04:02:49.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.536600", - "Timestamp": "2019-10-15T09:51:56.000Z" + "SpotPrice": "0.124500", + "Timestamp": "2024-05-16T04:02:48.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120500", + "Timestamp": "2024-05-16T04:02:48.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064500", + "Timestamp": "2024-05-16T04:02:48.000Z" + }, + { + "AvailabilityZone": "us-east-1e", + "InstanceType": "t2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.536600", - "Timestamp": "2019-10-15T09:51:56.000Z" + "SpotPrice": "0.135700", + "Timestamp": "2024-05-16T04:02:47.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142400", + "Timestamp": "2024-05-16T04:02:47.000Z" + }, + { + "AvailabilityZone": "us-east-1e", + "InstanceType": "t2.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.506600", - "Timestamp": "2019-10-15T09:51:56.000Z" + "SpotPrice": "0.175700", + "Timestamp": "2024-05-16T04:02:47.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t2.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.506600", - "Timestamp": "2019-10-15T09:51:56.000Z" + "SpotPrice": "0.182400", + "Timestamp": "2024-05-16T04:02:47.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "t2.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.406600", - "Timestamp": "2019-10-15T09:51:56.000Z" + "SpotPrice": "0.075700", + "Timestamp": "2024-05-16T04:02:47.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t2.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.406600", - "Timestamp": "2019-10-15T09:51:56.000Z" + "SpotPrice": "0.082400", + "Timestamp": "2024-05-16T04:02:47.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5dn.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.244300", + "Timestamp": "2024-05-16T04:02:47.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.998400", + "Timestamp": "2024-05-16T04:02:46.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.269200", - "Timestamp": "2019-10-15T09:41:49.000Z" + "SpotPrice": "0.181800", + "Timestamp": "2024-05-16T04:02:46.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5dn.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m2.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.239200", - "Timestamp": "2019-10-15T09:41:49.000Z" + "SpotPrice": "0.221800", + "Timestamp": "2024-05-16T04:02:46.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5dn.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m2.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.139200", - "Timestamp": "2019-10-15T09:41:49.000Z" + "SpotPrice": "0.121800", + "Timestamp": "2024-05-16T04:02:46.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.727100", + "Timestamp": "2024-05-16T04:02:44.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.244000", - "Timestamp": "2019-10-15T09:07:27.000Z" + "SpotPrice": "1.989000", + "Timestamp": "2024-05-16T04:02:44.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.214000", - "Timestamp": "2019-10-15T09:07:27.000Z" + "SpotPrice": "1.984000", + "Timestamp": "2024-05-16T04:02:44.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.114000", - "Timestamp": "2019-10-15T09:07:27.000Z" + "SpotPrice": "1.859000", + "Timestamp": "2024-05-16T04:02:44.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.119200", + "Timestamp": "2024-05-16T04:02:44.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.627500", + "Timestamp": "2024-05-16T04:02:43.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.370600", - "Timestamp": "2019-10-15T08:58:04.000Z" + "SpotPrice": "0.517700", + "Timestamp": "2024-05-16T04:02:43.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.370600", - "Timestamp": "2019-10-15T08:58:04.000Z" + "SpotPrice": "0.542700", + "Timestamp": "2024-05-16T04:02:43.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.340600", - "Timestamp": "2019-10-15T08:58:04.000Z" + "SpotPrice": "0.512700", + "Timestamp": "2024-05-16T04:02:43.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.340600", - "Timestamp": "2019-10-15T08:58:04.000Z" + "SpotPrice": "0.537700", + "Timestamp": "2024-05-16T04:02:43.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.240600", - "Timestamp": "2019-10-15T08:58:04.000Z" + "SpotPrice": "0.387700", + "Timestamp": "2024-05-16T04:02:43.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.240600", - "Timestamp": "2019-10-15T08:58:04.000Z" + "SpotPrice": "0.412700", + "Timestamp": "2024-05-16T04:02:43.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.904600", - "Timestamp": "2019-10-15T08:57:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.596700", + "Timestamp": "2024-05-16T04:02:43.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.904600", - "Timestamp": "2019-10-15T08:57:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.591700", + "Timestamp": "2024-05-16T04:02:43.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.466700", + "Timestamp": "2024-05-16T04:02:43.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.269200", - "Timestamp": "2019-10-15T08:57:18.000Z" + "SpotPrice": "0.154300", + "Timestamp": "2024-05-16T04:02:41.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.239200", - "Timestamp": "2019-10-15T08:57:18.000Z" + "SpotPrice": "0.150300", + "Timestamp": "2024-05-16T04:02:41.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.139200", - "Timestamp": "2019-10-15T08:57:18.000Z" + "SpotPrice": "0.094300", + "Timestamp": "2024-05-16T04:02:41.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.507200", - "Timestamp": "2019-10-15T08:56:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094200", + "Timestamp": "2024-05-16T04:02:41.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.507200", - "Timestamp": "2019-10-15T08:56:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065200", + "Timestamp": "2024-05-16T04:02:41.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.507200", - "Timestamp": "2019-10-15T08:56:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "x2gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034200", + "Timestamp": "2024-05-16T04:02:41.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5n.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129600", - "Timestamp": "2019-10-15T08:53:22.000Z" + "SpotPrice": "0.117100", + "Timestamp": "2024-05-16T04:02:40.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5n.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.169600", - "Timestamp": "2019-10-15T08:53:22.000Z" + "SpotPrice": "0.113400", + "Timestamp": "2024-05-16T04:02:40.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5n.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069600", - "Timestamp": "2019-10-15T08:53:22.000Z" + "SpotPrice": "0.057100", + "Timestamp": "2024-05-16T04:02:40.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.253600", - "Timestamp": "2019-10-15T08:53:20.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.740400", + "Timestamp": "2024-05-16T04:02:40.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.027800", - "Timestamp": "2019-10-15T08:52:44.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.735400", + "Timestamp": "2024-05-16T04:02:40.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.027800", - "Timestamp": "2019-10-15T08:52:44.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.610400", + "Timestamp": "2024-05-16T04:02:40.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.027800", - "Timestamp": "2019-10-15T08:52:44.000Z" + "SpotPrice": "0.145100", + "Timestamp": "2024-05-16T04:02:39.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006400", - "Timestamp": "2019-10-15T08:52:38.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.583400", + "Timestamp": "2024-05-16T04:02:39.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006400", - "Timestamp": "2019-10-15T08:52:38.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.578400", + "Timestamp": "2024-05-16T04:02:39.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-1f", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.453400", + "Timestamp": "2024-05-16T04:02:39.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.large", "ProductDescription": "Windows", - "SpotPrice": "0.006400", - "Timestamp": "2019-10-15T08:52:38.000Z" + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T04:02:37.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.421800", - "Timestamp": "2019-10-15T08:52:31.000Z" + "SpotPrice": "0.795000", + "Timestamp": "2024-05-16T04:02:36.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.421800", - "Timestamp": "2019-10-15T08:52:31.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.790000", + "Timestamp": "2024-05-16T04:02:36.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.421800", - "Timestamp": "2019-10-15T08:52:31.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.665000", + "Timestamp": "2024-05-16T04:02:36.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.391800", - "Timestamp": "2019-10-15T08:52:31.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.010600", + "Timestamp": "2024-05-16T04:02:35.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.391800", - "Timestamp": "2019-10-15T08:52:31.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.068400", + "Timestamp": "2024-05-16T04:02:35.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.391800", - "Timestamp": "2019-10-15T08:52:31.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.136900", + "Timestamp": "2024-05-16T04:02:35.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.291800", - "Timestamp": "2019-10-15T08:52:31.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.342900", + "Timestamp": "2024-05-16T04:02:34.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.291800", - "Timestamp": "2019-10-15T08:52:31.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.909400", + "Timestamp": "2024-05-16T04:02:34.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.904400", + "Timestamp": "2024-05-16T04:02:34.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.291800", - "Timestamp": "2019-10-15T08:52:31.000Z" + "SpotPrice": "1.779400", + "Timestamp": "2024-05-16T04:02:34.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.metal", "ProductDescription": "Windows", - "SpotPrice": "0.126800", - "Timestamp": "2019-10-15T08:52:30.000Z" + "SpotPrice": "15.635200", + "Timestamp": "2024-05-16T04:02:33.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126800", - "Timestamp": "2019-10-15T08:52:30.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.341600", + "Timestamp": "2024-05-16T04:02:33.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126800", - "Timestamp": "2019-10-15T08:52:30.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.336600", + "Timestamp": "2024-05-16T04:02:33.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.732200", - "Timestamp": "2019-10-15T08:52:18.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.211600", + "Timestamp": "2024-05-16T04:02:33.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.732200", - "Timestamp": "2019-10-15T08:52:18.000Z" + "SpotPrice": "2.475000", + "Timestamp": "2024-05-16T04:02:32.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.470000", + "Timestamp": "2024-05-16T04:02:32.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.345000", + "Timestamp": "2024-05-16T04:02:32.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.732200", - "Timestamp": "2019-10-15T08:52:18.000Z" + "SpotPrice": "1.687400", + "Timestamp": "2024-05-16T04:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "5.702200", - "Timestamp": "2019-10-15T08:52:18.000Z" + "SpotPrice": "1.682400", + "Timestamp": "2024-05-16T04:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1.32xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "5.702200", - "Timestamp": "2019-10-15T08:52:18.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.557400", + "Timestamp": "2024-05-16T04:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.562800", + "Timestamp": "2024-05-16T04:02:31.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "5.702200", - "Timestamp": "2019-10-15T08:52:18.000Z" + "SpotPrice": "0.532800", + "Timestamp": "2024-05-16T04:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.602200", - "Timestamp": "2019-10-15T08:52:18.000Z" + "SpotPrice": "0.432800", + "Timestamp": "2024-05-16T04:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.602200", - "Timestamp": "2019-10-15T08:52:18.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.285600", + "Timestamp": "2024-05-16T04:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.280600", + "Timestamp": "2024-05-16T04:02:31.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.602200", - "Timestamp": "2019-10-15T08:52:18.000Z" + "SpotPrice": "0.155600", + "Timestamp": "2024-05-16T04:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "11.490200", - "Timestamp": "2019-10-15T08:52:12.000Z" + "SpotPrice": "0.558700", + "Timestamp": "2024-05-16T04:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "11.490200", - "Timestamp": "2019-10-15T08:52:12.000Z" + "SpotPrice": "0.554200", + "Timestamp": "2024-05-16T04:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows", - "SpotPrice": "11.490200", - "Timestamp": "2019-10-15T08:52:12.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064600", + "Timestamp": "2024-05-16T04:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.076000", - "Timestamp": "2019-10-15T08:52:05.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004600", + "Timestamp": "2024-05-16T04:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.076000", - "Timestamp": "2019-10-15T08:52:05.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004600", + "Timestamp": "2024-05-16T04:02:31.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3en.6xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m4.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.076000", - "Timestamp": "2019-10-15T08:52:05.000Z" + "SpotPrice": "1.090100", + "Timestamp": "2024-05-16T04:02:30.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094800", - "Timestamp": "2019-10-15T08:52:02.000Z" + "SpotPrice": "0.143300", + "Timestamp": "2024-05-16T04:02:29.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139600", + "Timestamp": "2024-05-16T04:02:29.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7iz.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083300", + "Timestamp": "2024-05-16T04:02:29.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094800", - "Timestamp": "2019-10-15T08:52:02.000Z" + "SpotPrice": "1.942700", + "Timestamp": "2024-05-16T04:02:28.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134800", - "Timestamp": "2019-10-15T08:52:02.000Z" + "SpotPrice": "1.912700", + "Timestamp": "2024-05-16T04:02:28.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.812700", + "Timestamp": "2024-05-16T04:02:28.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.304900", + "Timestamp": "2024-05-16T04:02:27.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134800", - "Timestamp": "2019-10-15T08:52:02.000Z" + "SpotPrice": "0.299900", + "Timestamp": "2024-05-16T04:02:27.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034800", - "Timestamp": "2019-10-15T08:52:02.000Z" + "SpotPrice": "0.174900", + "Timestamp": "2024-05-16T04:02:27.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034800", - "Timestamp": "2019-10-15T08:52:02.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.957300", + "Timestamp": "2024-05-16T04:02:27.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.250300", - "Timestamp": "2019-10-15T08:51:57.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.952300", + "Timestamp": "2024-05-16T04:02:27.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.250300", - "Timestamp": "2019-10-15T08:51:57.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.827300", + "Timestamp": "2024-05-16T04:02:27.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.250300", - "Timestamp": "2019-10-15T08:51:57.000Z" + "SpotPrice": "3.450300", + "Timestamp": "2024-05-16T04:02:26.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127800", - "Timestamp": "2019-10-15T08:51:52.000Z" + "SpotPrice": "0.743700", + "Timestamp": "2024-05-16T04:02:26.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.167800", - "Timestamp": "2019-10-15T08:51:52.000Z" + "SpotPrice": "0.738700", + "Timestamp": "2024-05-16T04:02:26.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067800", - "Timestamp": "2019-10-15T08:51:52.000Z" + "SpotPrice": "0.613700", + "Timestamp": "2024-05-16T04:02:26.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5dn.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g4dn.metal", "ProductDescription": "Windows", - "SpotPrice": "0.507200", - "Timestamp": "2019-10-15T08:51:49.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "a1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.198700", - "Timestamp": "2019-10-15T08:51:49.000Z" + "SpotPrice": "7.642300", + "Timestamp": "2024-05-16T04:02:26.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "a1.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.198700", - "Timestamp": "2019-10-15T08:51:49.000Z" + "SpotPrice": "0.435700", + "Timestamp": "2024-05-16T04:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "a1.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.168700", - "Timestamp": "2019-10-15T08:51:49.000Z" + "SpotPrice": "0.430700", + "Timestamp": "2024-05-16T04:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "a1.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.168700", - "Timestamp": "2019-10-15T08:51:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.305700", + "Timestamp": "2024-05-16T04:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "a1.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.068700", - "Timestamp": "2019-10-15T08:51:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.546400", + "Timestamp": "2024-05-16T04:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "a1.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.068700", - "Timestamp": "2019-10-15T08:51:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.541400", + "Timestamp": "2024-05-16T04:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3a.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061600", - "Timestamp": "2019-10-15T08:51:21.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.416400", + "Timestamp": "2024-05-16T04:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061600", - "Timestamp": "2019-10-15T08:51:21.000Z" + "SpotPrice": "1.268100", + "Timestamp": "2024-05-16T04:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.101600", - "Timestamp": "2019-10-15T08:51:21.000Z" + "SpotPrice": "1.263100", + "Timestamp": "2024-05-16T04:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3a.nano", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.101600", - "Timestamp": "2019-10-15T08:51:21.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.138100", + "Timestamp": "2024-05-16T04:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3a.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001600", - "Timestamp": "2019-10-15T08:51:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170700", + "Timestamp": "2024-05-16T04:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3a.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001600", - "Timestamp": "2019-10-15T08:51:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166700", + "Timestamp": "2024-05-16T04:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.058000", - "Timestamp": "2019-10-15T08:50:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T04:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126900", - "Timestamp": "2019-10-15T08:49:45.000Z" + "SpotPrice": "2.844800", + "Timestamp": "2024-05-16T04:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.166900", - "Timestamp": "2019-10-15T08:49:45.000Z" + "SpotPrice": "2.839800", + "Timestamp": "2024-05-16T04:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066900", - "Timestamp": "2019-10-15T08:49:45.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.058000", - "Timestamp": "2019-10-15T08:26:52.000Z" + "SpotPrice": "2.714800", + "Timestamp": "2024-05-16T04:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.421800", - "Timestamp": "2019-10-15T08:22:36.000Z" + "SpotPrice": "0.466700", + "Timestamp": "2024-05-16T04:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.391800", - "Timestamp": "2019-10-15T08:22:36.000Z" + "SpotPrice": "0.461700", + "Timestamp": "2024-05-16T04:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.291800", - "Timestamp": "2019-10-15T08:22:36.000Z" + "SpotPrice": "0.336700", + "Timestamp": "2024-05-16T04:02:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094800", - "Timestamp": "2019-10-15T07:58:36.000Z" + "SpotPrice": "0.171800", + "Timestamp": "2024-05-16T04:02:24.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094800", - "Timestamp": "2019-10-15T07:58:36.000Z" + "SpotPrice": "0.176100", + "Timestamp": "2024-05-16T04:02:24.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134800", - "Timestamp": "2019-10-15T07:58:36.000Z" + "SpotPrice": "0.167800", + "Timestamp": "2024-05-16T04:02:24.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134800", - "Timestamp": "2019-10-15T07:58:36.000Z" + "SpotPrice": "0.172100", + "Timestamp": "2024-05-16T04:02:24.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034800", - "Timestamp": "2019-10-15T07:58:36.000Z" + "SpotPrice": "0.111800", + "Timestamp": "2024-05-16T04:02:24.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034800", - "Timestamp": "2019-10-15T07:58:36.000Z" + "SpotPrice": "0.116100", + "Timestamp": "2024-05-16T04:02:24.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4ad.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.126800", - "Timestamp": "2019-10-15T07:56:55.000Z" + "SpotPrice": "4.437200", + "Timestamp": "2024-05-16T04:02:24.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126800", - "Timestamp": "2019-10-15T07:56:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077000", + "Timestamp": "2024-05-16T04:02:24.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "a1.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267500", - "Timestamp": "2019-10-15T07:56:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073300", + "Timestamp": "2024-05-16T04:02:24.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "a1.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267500", - "Timestamp": "2019-10-15T07:56:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017000", + "Timestamp": "2024-05-16T04:02:24.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "a1.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.237500", - "Timestamp": "2019-10-15T07:56:28.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.543700", + "Timestamp": "2024-05-16T04:02:23.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "a1.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.237500", - "Timestamp": "2019-10-15T07:56:28.000Z" + "SpotPrice": "0.538700", + "Timestamp": "2024-05-16T04:02:23.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "a1.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.137500", - "Timestamp": "2019-10-15T07:56:28.000Z" + "SpotPrice": "0.413700", + "Timestamp": "2024-05-16T04:02:23.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "a1.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.137500", - "Timestamp": "2019-10-15T07:56:28.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.292100", + "Timestamp": "2024-05-16T04:02:22.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.323600", - "Timestamp": "2019-10-15T07:53:52.000Z" + "SpotPrice": "0.159500", + "Timestamp": "2024-05-16T04:02:22.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.293600", - "Timestamp": "2019-10-15T07:53:52.000Z" + "SpotPrice": "0.155500", + "Timestamp": "2024-05-16T04:02:22.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5d.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.193600", - "Timestamp": "2019-10-15T07:53:52.000Z" + "SpotPrice": "0.099500", + "Timestamp": "2024-05-16T04:02:22.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3.small", "ProductDescription": "Windows", - "SpotPrice": "4.505600", - "Timestamp": "2019-10-15T07:53:31.000Z" + "SpotPrice": "0.028400", + "Timestamp": "2024-05-16T04:02:21.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.505600", - "Timestamp": "2019-10-15T07:53:31.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140400", + "Timestamp": "2024-05-16T04:02:19.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.505600", - "Timestamp": "2019-10-15T07:53:31.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136700", + "Timestamp": "2024-05-16T04:02:19.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.166600", - "Timestamp": "2019-10-15T07:51:48.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080400", + "Timestamp": "2024-05-16T04:02:19.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.166600", - "Timestamp": "2019-10-15T07:51:48.000Z" + "SpotPrice": "4.230400", + "Timestamp": "2024-05-16T04:02:18.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.166600", - "Timestamp": "2019-10-15T07:51:48.000Z" + "SpotPrice": "9.130000", + "Timestamp": "2024-05-16T04:02:17.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.880600", - "Timestamp": "2019-10-15T07:51:48.000Z" + "SpotPrice": "0.467700", + "Timestamp": "2024-05-16T04:02:11.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.880600", - "Timestamp": "2019-10-15T07:51:48.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.462700", + "Timestamp": "2024-05-16T04:02:11.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.880600", - "Timestamp": "2019-10-15T07:51:48.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.337700", + "Timestamp": "2024-05-16T04:02:11.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.850600", - "Timestamp": "2019-10-15T07:51:48.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.178100", + "Timestamp": "2024-05-16T04:02:11.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.850600", - "Timestamp": "2019-10-15T07:51:48.000Z" + "SpotPrice": "0.174400", + "Timestamp": "2024-05-16T04:02:11.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.850600", - "Timestamp": "2019-10-15T07:51:48.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118100", + "Timestamp": "2024-05-16T04:02:11.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.750600", - "Timestamp": "2019-10-15T07:51:48.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.780100", + "Timestamp": "2024-05-16T03:48:10.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.750600", - "Timestamp": "2019-10-15T07:51:48.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.382700", + "Timestamp": "2024-05-16T03:48:09.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.750600", - "Timestamp": "2019-10-15T07:51:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.006000", + "Timestamp": "2024-05-16T03:48:07.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.056400", - "Timestamp": "2019-10-15T07:51:48.000Z" + "SpotPrice": "1.457600", + "Timestamp": "2024-05-16T03:48:03.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.056400", - "Timestamp": "2019-10-15T07:51:48.000Z" + "SpotPrice": "1.422800", + "Timestamp": "2024-05-16T03:48:03.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.026400", - "Timestamp": "2019-10-15T07:51:48.000Z" + "SpotPrice": "1.452600", + "Timestamp": "2024-05-16T03:48:03.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.026400", - "Timestamp": "2019-10-15T07:51:48.000Z" + "SpotPrice": "1.417800", + "Timestamp": "2024-05-16T03:48:03.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.926400", - "Timestamp": "2019-10-15T07:51:48.000Z" + "SpotPrice": "1.327600", + "Timestamp": "2024-05-16T03:48:03.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g5.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.926400", - "Timestamp": "2019-10-15T07:51:48.000Z" + "SpotPrice": "1.292800", + "Timestamp": "2024-05-16T03:48:03.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.204400", - "Timestamp": "2019-10-15T07:51:48.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.422600", + "Timestamp": "2024-05-16T03:47:59.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.204400", - "Timestamp": "2019-10-15T07:51:48.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "m3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.392600", + "Timestamp": "2024-05-16T03:47:59.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061800", - "Timestamp": "2019-10-15T07:51:34.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.292600", + "Timestamp": "2024-05-16T03:47:59.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061800", - "Timestamp": "2019-10-15T07:51:34.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.549600", + "Timestamp": "2024-05-16T03:47:58.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061800", - "Timestamp": "2019-10-15T07:51:34.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.981400", + "Timestamp": "2024-05-16T03:47:56.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3.nano", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-15T07:51:34.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.068000", + "Timestamp": "2024-05-16T03:47:55.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3.nano", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-15T07:51:34.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.067400", + "Timestamp": "2024-05-16T03:47:54.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t3.nano", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-15T07:51:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.061100", + "Timestamp": "2024-05-16T03:47:54.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001800", - "Timestamp": "2019-10-15T07:51:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.056100", + "Timestamp": "2024-05-16T03:47:54.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001800", - "Timestamp": "2019-10-15T07:51:34.000Z" + "SpotPrice": "0.931100", + "Timestamp": "2024-05-16T03:47:54.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t3.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001800", - "Timestamp": "2019-10-15T07:51:34.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.400300", + "Timestamp": "2024-05-16T03:47:53.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.496000", - "Timestamp": "2019-10-15T07:51:11.000Z" + "SpotPrice": "3.183400", + "Timestamp": "2024-05-16T03:47:51.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.083300", - "Timestamp": "2019-10-15T07:51:11.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.322600", + "Timestamp": "2024-05-16T03:47:50.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.083300", - "Timestamp": "2019-10-15T07:51:11.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.317600", + "Timestamp": "2024-05-16T03:47:50.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.005300", - "Timestamp": "2019-10-15T07:51:07.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.192600", + "Timestamp": "2024-05-16T03:47:50.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.005300", - "Timestamp": "2019-10-15T07:51:07.000Z" + "SpotPrice": "1.943300", + "Timestamp": "2024-05-16T03:47:49.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.975300", - "Timestamp": "2019-10-15T07:51:07.000Z" + "SpotPrice": "1.938300", + "Timestamp": "2024-05-16T03:47:49.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.975300", - "Timestamp": "2019-10-15T07:51:07.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.813300", + "Timestamp": "2024-05-16T03:47:49.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.875300", - "Timestamp": "2019-10-15T07:51:07.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.478800", + "Timestamp": "2024-05-16T03:47:48.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.473800", + "Timestamp": "2024-05-16T03:47:48.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6in.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.875300", - "Timestamp": "2019-10-15T07:51:07.000Z" + "SpotPrice": "2.348800", + "Timestamp": "2024-05-16T03:47:48.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5dn.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6in.large", "ProductDescription": "Windows", - "SpotPrice": "4.058000", - "Timestamp": "2019-10-15T07:36:18.000Z" + "SpotPrice": "0.161600", + "Timestamp": "2024-05-16T03:47:48.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5n.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.087000", - "Timestamp": "2019-10-15T07:31:37.000Z" + "SpotPrice": "1.057500", + "Timestamp": "2024-05-16T03:47:47.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132900", - "Timestamp": "2019-10-15T07:16:23.000Z" + "SpotPrice": "1.354700", + "Timestamp": "2024-05-16T03:47:47.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172900", - "Timestamp": "2019-10-15T07:16:23.000Z" + "SpotPrice": "1.349700", + "Timestamp": "2024-05-16T03:47:47.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072900", - "Timestamp": "2019-10-15T07:16:23.000Z" + "SpotPrice": "1.224700", + "Timestamp": "2024-05-16T03:47:47.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m3.large", "ProductDescription": "Windows", - "SpotPrice": "6.166600", - "Timestamp": "2019-10-15T07:02:25.000Z" + "SpotPrice": "0.181300", + "Timestamp": "2024-05-16T03:47:47.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r4.large", "ProductDescription": "Windows", - "SpotPrice": "6.166600", - "Timestamp": "2019-10-15T07:02:25.000Z" + "SpotPrice": "0.148500", + "Timestamp": "2024-05-16T03:47:45.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.166600", - "Timestamp": "2019-10-15T07:02:25.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.102000", - "Timestamp": "2019-10-15T06:57:58.000Z" + "SpotPrice": "0.357100", + "Timestamp": "2024-05-16T03:47:44.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.102000", - "Timestamp": "2019-10-15T06:57:58.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.306600", + "Timestamp": "2024-05-16T03:47:42.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3en.6xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.102000", - "Timestamp": "2019-10-15T06:57:58.000Z" + "SpotPrice": "0.102400", + "Timestamp": "2024-05-16T03:47:41.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3en.6xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.072000", - "Timestamp": "2019-10-15T06:57:58.000Z" + "SpotPrice": "0.098700", + "Timestamp": "2024-05-16T03:47:41.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.072000", - "Timestamp": "2019-10-15T06:57:58.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042400", + "Timestamp": "2024-05-16T03:47:41.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.072000", - "Timestamp": "2019-10-15T06:57:58.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.517800", + "Timestamp": "2024-05-16T03:47:41.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.972000", - "Timestamp": "2019-10-15T06:57:58.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.027100", + "Timestamp": "2024-05-16T03:47:41.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.972000", - "Timestamp": "2019-10-15T06:57:58.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.075700", + "Timestamp": "2024-05-16T03:47:40.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.972000", - "Timestamp": "2019-10-15T06:57:58.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.151700", + "Timestamp": "2024-05-16T03:47:40.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5zn.6xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.721400", - "Timestamp": "2019-10-15T06:57:49.000Z" + "SpotPrice": "1.127100", + "Timestamp": "2024-05-16T03:47:40.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.721400", - "Timestamp": "2019-10-15T06:57:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.122100", + "Timestamp": "2024-05-16T03:47:40.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.997100", + "Timestamp": "2024-05-16T03:47:40.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4ad.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.721400", - "Timestamp": "2019-10-15T06:57:49.000Z" + "SpotPrice": "0.553700", + "Timestamp": "2024-05-16T03:47:39.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4ad.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.691400", - "Timestamp": "2019-10-15T06:57:49.000Z" + "SpotPrice": "0.548700", + "Timestamp": "2024-05-16T03:47:39.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.691400", - "Timestamp": "2019-10-15T06:57:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.423700", + "Timestamp": "2024-05-16T03:47:39.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.178200", + "Timestamp": "2024-05-16T03:47:38.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.691400", - "Timestamp": "2019-10-15T06:57:49.000Z" + "SpotPrice": "0.174500", + "Timestamp": "2024-05-16T03:47:38.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.591400", - "Timestamp": "2019-10-15T06:57:49.000Z" + "SpotPrice": "0.118200", + "Timestamp": "2024-05-16T03:47:38.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.591400", - "Timestamp": "2019-10-15T06:57:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.831400", + "Timestamp": "2024-05-16T03:47:37.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.826400", + "Timestamp": "2024-05-16T03:47:37.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iezn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.591400", - "Timestamp": "2019-10-15T06:57:49.000Z" + "SpotPrice": "0.701400", + "Timestamp": "2024-05-16T03:47:37.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.659400", - "Timestamp": "2019-10-15T06:56:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.410400", + "Timestamp": "2024-05-16T03:47:34.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.659400", - "Timestamp": "2019-10-15T06:56:39.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.134900", + "Timestamp": "2024-05-16T03:47:34.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.629400", - "Timestamp": "2019-10-15T06:56:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.206700", + "Timestamp": "2024-05-16T03:47:34.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.629400", - "Timestamp": "2019-10-15T06:56:39.000Z" + "SpotPrice": "0.203000", + "Timestamp": "2024-05-16T03:47:34.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.529400", - "Timestamp": "2019-10-15T06:56:39.000Z" + "SpotPrice": "0.146700", + "Timestamp": "2024-05-16T03:47:34.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.529400", - "Timestamp": "2019-10-15T06:56:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.118300", + "Timestamp": "2024-05-16T03:47:33.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.medium", "ProductDescription": "Windows", - "SpotPrice": "4.505600", - "Timestamp": "2019-10-15T06:56:35.000Z" + "SpotPrice": "0.072900", + "Timestamp": "2024-05-16T03:47:32.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.505600", - "Timestamp": "2019-10-15T06:56:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109100", + "Timestamp": "2024-05-16T03:47:30.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T03:47:30.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049100", + "Timestamp": "2024-05-16T03:47:30.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3en.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.505600", - "Timestamp": "2019-10-15T06:56:35.000Z" + "SpotPrice": "8.872300", + "Timestamp": "2024-05-16T03:47:30.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.323600", - "Timestamp": "2019-10-15T06:56:32.000Z" + "SpotPrice": "0.123000", + "Timestamp": "2024-05-16T03:47:29.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119000", + "Timestamp": "2024-05-16T03:47:29.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063000", + "Timestamp": "2024-05-16T03:47:29.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m2.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.323600", - "Timestamp": "2019-10-15T06:56:32.000Z" + "SpotPrice": "0.271700", + "Timestamp": "2024-05-16T03:47:28.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m2.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.293600", - "Timestamp": "2019-10-15T06:56:32.000Z" + "SpotPrice": "0.311700", + "Timestamp": "2024-05-16T03:47:28.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.211700", + "Timestamp": "2024-05-16T03:47:28.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.218400", + "Timestamp": "2024-05-16T03:47:28.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.293600", - "Timestamp": "2019-10-15T06:56:32.000Z" + "SpotPrice": "0.214400", + "Timestamp": "2024-05-16T03:47:28.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.193600", - "Timestamp": "2019-10-15T06:56:32.000Z" + "SpotPrice": "0.158400", + "Timestamp": "2024-05-16T03:47:28.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.193600", - "Timestamp": "2019-10-15T06:56:32.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.520500", + "Timestamp": "2024-05-16T03:47:28.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.397400", - "Timestamp": "2019-10-15T06:56:21.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.515500", + "Timestamp": "2024-05-16T03:47:28.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.397400", - "Timestamp": "2019-10-15T06:56:21.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.390500", + "Timestamp": "2024-05-16T03:47:28.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5dn.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129600", - "Timestamp": "2019-10-15T06:53:49.000Z" + "SpotPrice": "2.094100", + "Timestamp": "2024-05-16T03:47:28.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5dn.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.169600", - "Timestamp": "2019-10-15T06:53:49.000Z" + "SpotPrice": "2.089100", + "Timestamp": "2024-05-16T03:47:28.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5dn.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7gd.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069600", - "Timestamp": "2019-10-15T06:53:49.000Z" + "SpotPrice": "1.964100", + "Timestamp": "2024-05-16T03:47:28.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.large", "ProductDescription": "Windows", - "SpotPrice": "0.250300", - "Timestamp": "2019-10-15T06:52:55.000Z" + "SpotPrice": "0.136200", + "Timestamp": "2024-05-16T03:47:28.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5n.9xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.250300", - "Timestamp": "2019-10-15T06:52:55.000Z" + "SpotPrice": "2.460500", + "Timestamp": "2024-05-16T03:47:27.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.250300", - "Timestamp": "2019-10-15T06:52:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098200", + "Timestamp": "2024-05-16T03:47:27.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.915600", - "Timestamp": "2019-10-15T06:52:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094500", + "Timestamp": "2024-05-16T03:47:27.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.915600", - "Timestamp": "2019-10-15T06:52:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038200", + "Timestamp": "2024-05-16T03:47:27.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.915600", - "Timestamp": "2019-10-15T06:52:54.000Z" + "SpotPrice": "0.313400", + "Timestamp": "2024-05-16T03:47:26.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.885600", - "Timestamp": "2019-10-15T06:52:54.000Z" + "SpotPrice": "0.308400", + "Timestamp": "2024-05-16T03:47:26.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.885600", - "Timestamp": "2019-10-15T06:52:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.183400", + "Timestamp": "2024-05-16T03:47:26.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134600", + "Timestamp": "2024-05-16T03:47:26.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.885600", - "Timestamp": "2019-10-15T06:52:54.000Z" + "SpotPrice": "0.130900", + "Timestamp": "2024-05-16T03:47:26.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.785600", - "Timestamp": "2019-10-15T06:52:54.000Z" + "SpotPrice": "0.074600", + "Timestamp": "2024-05-16T03:47:26.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.785600", - "Timestamp": "2019-10-15T06:52:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062400", + "Timestamp": "2024-05-16T03:47:25.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002400", + "Timestamp": "2024-05-16T03:47:25.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3.nano", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.785600", - "Timestamp": "2019-10-15T06:52:54.000Z" + "SpotPrice": "0.002400", + "Timestamp": "2024-05-16T03:47:25.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.metal", "ProductDescription": "Windows", - "SpotPrice": "4.729600", - "Timestamp": "2019-10-15T06:52:54.000Z" + "SpotPrice": "4.034400", + "Timestamp": "2024-05-16T03:47:24.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.729600", - "Timestamp": "2019-10-15T06:52:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097600", + "Timestamp": "2024-05-16T03:47:24.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.729600", - "Timestamp": "2019-10-15T06:52:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093900", + "Timestamp": "2024-05-16T03:47:24.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247200", - "Timestamp": "2019-10-15T06:52:23.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037600", + "Timestamp": "2024-05-16T03:47:24.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r3.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.247200", - "Timestamp": "2019-10-15T06:52:23.000Z" + "SpotPrice": "0.402400", + "Timestamp": "2024-05-16T03:47:23.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.247200", - "Timestamp": "2019-10-15T06:52:23.000Z" + "SpotPrice": "0.311200", + "Timestamp": "2024-05-16T03:47:21.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.353200", - "Timestamp": "2019-10-15T06:52:19.000Z" + "SpotPrice": "6.058700", + "Timestamp": "2024-05-16T03:47:20.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.323200", - "Timestamp": "2019-10-15T06:52:19.000Z" + "SpotPrice": "6.053700", + "Timestamp": "2024-05-16T03:47:20.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.223200", - "Timestamp": "2019-10-15T06:52:19.000Z" + "SpotPrice": "5.928700", + "Timestamp": "2024-05-16T03:47:20.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.591200", - "Timestamp": "2019-10-15T06:51:55.000Z" + "SpotPrice": "13.854800", + "Timestamp": "2024-05-16T03:47:18.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.591200", - "Timestamp": "2019-10-15T06:51:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149600", + "Timestamp": "2024-05-16T03:47:17.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.591200", - "Timestamp": "2019-10-15T06:51:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145600", + "Timestamp": "2024-05-16T03:47:17.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123200", - "Timestamp": "2019-10-15T06:51:51.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089600", + "Timestamp": "2024-05-16T03:47:17.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t1.micro", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123200", - "Timestamp": "2019-10-15T06:51:51.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c4.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.163200", - "Timestamp": "2019-10-15T06:51:51.000Z" + "SpotPrice": "0.068700", + "Timestamp": "2024-05-16T03:47:16.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t1.micro", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.163200", - "Timestamp": "2019-10-15T06:51:51.000Z" + "SpotPrice": "0.008700", + "Timestamp": "2024-05-16T03:47:16.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t1.micro", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063200", - "Timestamp": "2019-10-15T06:51:51.000Z" + "SpotPrice": "0.008700", + "Timestamp": "2024-05-16T03:47:16.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063200", - "Timestamp": "2019-10-15T06:51:51.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.591600", + "Timestamp": "2024-05-16T03:47:15.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125200", - "Timestamp": "2019-10-15T06:51:49.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.561600", + "Timestamp": "2024-05-16T03:47:15.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125200", - "Timestamp": "2019-10-15T06:51:49.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.461600", + "Timestamp": "2024-05-16T03:47:15.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.metal", - "ProductDescription": "Windows", - "SpotPrice": "6.007400", - "Timestamp": "2019-10-15T06:51:35.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.605300", + "Timestamp": "2024-05-16T03:47:15.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.metal", - "ProductDescription": "Windows", - "SpotPrice": "6.007400", - "Timestamp": "2019-10-15T06:51:35.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.575300", + "Timestamp": "2024-05-16T03:47:15.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.721400", - "Timestamp": "2019-10-15T06:51:35.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.475300", + "Timestamp": "2024-05-16T03:47:15.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.721400", - "Timestamp": "2019-10-15T06:51:35.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.691400", - "Timestamp": "2019-10-15T06:51:35.000Z" + "SpotPrice": "0.340300", + "Timestamp": "2024-05-16T03:47:15.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.691400", - "Timestamp": "2019-10-15T06:51:35.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.591400", - "Timestamp": "2019-10-15T06:51:35.000Z" + "SpotPrice": "0.335300", + "Timestamp": "2024-05-16T03:47:15.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.591400", - "Timestamp": "2019-10-15T06:51:35.000Z" + "SpotPrice": "0.210300", + "Timestamp": "2024-05-16T03:47:15.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1e.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.530400", - "Timestamp": "2019-10-15T05:58:32.000Z" + "SpotPrice": "0.606400", + "Timestamp": "2024-05-16T03:47:15.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1e.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.530400", - "Timestamp": "2019-10-15T05:58:32.000Z" + "SpotPrice": "0.597400", + "Timestamp": "2024-05-16T03:47:15.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1e.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.500400", - "Timestamp": "2019-10-15T05:58:32.000Z" + "SpotPrice": "0.601400", + "Timestamp": "2024-05-16T03:47:15.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1e.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.500400", - "Timestamp": "2019-10-15T05:58:32.000Z" + "SpotPrice": "0.592400", + "Timestamp": "2024-05-16T03:47:15.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1e.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.400400", - "Timestamp": "2019-10-15T05:58:32.000Z" + "SpotPrice": "0.476400", + "Timestamp": "2024-05-16T03:47:15.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1e.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6id.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.400400", - "Timestamp": "2019-10-15T05:58:32.000Z" + "SpotPrice": "0.467400", + "Timestamp": "2024-05-16T03:47:15.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.136400", - "Timestamp": "2019-10-15T05:57:22.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.334600", + "Timestamp": "2024-05-16T03:47:14.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.136400", - "Timestamp": "2019-10-15T05:57:22.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.329600", + "Timestamp": "2024-05-16T03:47:14.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.583600", - "Timestamp": "2019-10-15T05:53:46.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.204600", + "Timestamp": "2024-05-16T03:47:14.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "p3.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.583600", - "Timestamp": "2019-10-15T05:53:46.000Z" + "SpotPrice": "6.377000", + "Timestamp": "2024-05-16T03:47:14.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "c3.xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.583600", - "Timestamp": "2019-10-15T05:53:46.000Z" + "SpotPrice": "0.265900", + "Timestamp": "2024-05-16T03:47:14.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.035600", - "Timestamp": "2019-10-15T05:53:34.000Z" + "SpotPrice": "0.125600", + "Timestamp": "2024-05-16T03:47:13.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.035600", - "Timestamp": "2019-10-15T05:53:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121900", + "Timestamp": "2024-05-16T03:47:13.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065600", + "Timestamp": "2024-05-16T03:47:13.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.035600", - "Timestamp": "2019-10-15T05:53:34.000Z" + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T03:47:12.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.005600", - "Timestamp": "2019-10-15T05:53:34.000Z" + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T03:47:12.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.005600", - "Timestamp": "2019-10-15T05:53:34.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044900", + "Timestamp": "2024-05-16T03:47:12.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.402100", + "Timestamp": "2024-05-16T03:47:11.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.005600", - "Timestamp": "2019-10-15T05:53:34.000Z" + "SpotPrice": "0.397100", + "Timestamp": "2024-05-16T03:47:11.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.905600", - "Timestamp": "2019-10-15T05:53:34.000Z" + "SpotPrice": "0.272100", + "Timestamp": "2024-05-16T03:47:11.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.905600", - "Timestamp": "2019-10-15T05:53:34.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.488100", + "Timestamp": "2024-05-16T03:47:10.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.483100", + "Timestamp": "2024-05-16T03:47:10.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.905600", - "Timestamp": "2019-10-15T05:53:34.000Z" + "SpotPrice": "0.358100", + "Timestamp": "2024-05-16T03:47:10.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "z1d.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.240000", - "Timestamp": "2019-10-15T05:53:09.000Z" + "SpotPrice": "0.678100", + "Timestamp": "2024-05-16T03:47:08.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "z1d.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.848800", - "Timestamp": "2019-10-15T05:52:49.000Z" + "SpotPrice": "0.686800", + "Timestamp": "2024-05-16T03:47:08.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3en.6xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.848800", - "Timestamp": "2019-10-15T05:52:49.000Z" + "SpotPrice": "2.324000", + "Timestamp": "2024-05-16T03:47:08.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.408500", - "Timestamp": "2019-10-15T05:51:50.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.113300", + "Timestamp": "2024-05-16T03:47:04.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.9xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.408500", - "Timestamp": "2019-10-15T05:51:50.000Z" + "SpotPrice": "0.999400", + "Timestamp": "2024-05-16T03:47:00.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.408500", - "Timestamp": "2019-10-15T05:51:50.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.969400", + "Timestamp": "2024-05-16T03:47:00.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.378500", - "Timestamp": "2019-10-15T05:51:50.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.869400", + "Timestamp": "2024-05-16T03:47:00.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.378500", - "Timestamp": "2019-10-15T05:51:50.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145400", + "Timestamp": "2024-05-16T03:46:54.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6gd.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.378500", - "Timestamp": "2019-10-15T05:51:50.000Z" + "SpotPrice": "0.141700", + "Timestamp": "2024-05-16T03:46:54.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.278500", - "Timestamp": "2019-10-15T05:51:50.000Z" + "SpotPrice": "0.085400", + "Timestamp": "2024-05-16T03:46:54.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.278500", - "Timestamp": "2019-10-15T05:51:50.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.954500", + "Timestamp": "2024-05-16T03:46:54.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.278500", - "Timestamp": "2019-10-15T05:51:50.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.949500", + "Timestamp": "2024-05-16T03:46:54.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.014500", - "Timestamp": "2019-10-15T05:51:50.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.824500", + "Timestamp": "2024-05-16T03:46:54.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.large", "ProductDescription": "Windows", - "SpotPrice": "1.014500", - "Timestamp": "2019-10-15T05:51:50.000Z" + "SpotPrice": "0.144200", + "Timestamp": "2024-05-16T03:33:35.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5n.large", "ProductDescription": "Windows", - "SpotPrice": "1.014500", - "Timestamp": "2019-10-15T05:51:50.000Z" + "SpotPrice": "0.150200", + "Timestamp": "2024-05-16T03:33:28.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.737800", - "Timestamp": "2019-10-15T05:51:43.000Z" + "SpotPrice": "1.057100", + "Timestamp": "2024-05-16T03:33:24.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.737800", - "Timestamp": "2019-10-15T05:51:43.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.052100", + "Timestamp": "2024-05-16T03:33:24.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.707800", - "Timestamp": "2019-10-15T05:51:43.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.927100", + "Timestamp": "2024-05-16T03:33:24.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.872900", + "Timestamp": "2024-05-16T03:33:23.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.707800", - "Timestamp": "2019-10-15T05:51:43.000Z" + "SpotPrice": "0.867900", + "Timestamp": "2024-05-16T03:33:23.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.607800", - "Timestamp": "2019-10-15T05:51:43.000Z" + "SpotPrice": "0.742900", + "Timestamp": "2024-05-16T03:33:23.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.607800", - "Timestamp": "2019-10-15T05:51:43.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.855100", + "Timestamp": "2024-05-16T03:33:23.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "z1d.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.400000", - "Timestamp": "2019-10-15T05:48:31.000Z" + "SpotPrice": "2.658600", + "Timestamp": "2024-05-16T03:33:22.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "z1d.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.370000", - "Timestamp": "2019-10-15T05:48:31.000Z" + "SpotPrice": "2.653600", + "Timestamp": "2024-05-16T03:33:22.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "z1d.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.270000", - "Timestamp": "2019-10-15T05:48:31.000Z" + "SpotPrice": "2.528600", + "Timestamp": "2024-05-16T03:33:22.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5dn.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.507200", - "Timestamp": "2019-10-15T05:30:58.000Z" + "SpotPrice": "0.535000", + "Timestamp": "2024-05-16T03:33:22.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5dn.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.medium", "ProductDescription": "Windows", - "SpotPrice": "1.014500", - "Timestamp": "2019-10-15T05:23:17.000Z" + "SpotPrice": "0.081100", + "Timestamp": "2024-05-16T03:33:21.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.029000", - "Timestamp": "2019-10-15T05:15:45.000Z" + "SpotPrice": "2.502800", + "Timestamp": "2024-05-16T03:33:19.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5dn.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3en.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.166600", - "Timestamp": "2019-10-15T05:10:18.000Z" + "SpotPrice": "1.571400", + "Timestamp": "2024-05-16T03:33:18.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "p2.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.597000", - "Timestamp": "2019-10-15T05:03:22.000Z" + "SpotPrice": "3.350200", + "Timestamp": "2024-05-16T03:33:18.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "p2.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.567000", - "Timestamp": "2019-10-15T05:03:22.000Z" + "SpotPrice": "3.320200", + "Timestamp": "2024-05-16T03:33:18.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "p2.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.467000", - "Timestamp": "2019-10-15T05:03:22.000Z" + "SpotPrice": "3.220200", + "Timestamp": "2024-05-16T03:33:18.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "z1d.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.400000", - "Timestamp": "2019-10-15T04:59:31.000Z" + "SpotPrice": "1.569900", + "Timestamp": "2024-05-16T03:33:17.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.400000", - "Timestamp": "2019-10-15T04:59:31.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.564900", + "Timestamp": "2024-05-16T03:33:17.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.370000", - "Timestamp": "2019-10-15T04:59:31.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.439900", + "Timestamp": "2024-05-16T03:33:17.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.370000", - "Timestamp": "2019-10-15T04:59:31.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.081000", + "Timestamp": "2024-05-16T03:33:17.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.270000", - "Timestamp": "2019-10-15T04:59:31.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.430000", + "Timestamp": "2024-05-16T03:33:15.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.270000", - "Timestamp": "2019-10-15T04:59:31.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.326100", + "Timestamp": "2024-05-16T03:33:14.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.687000", - "Timestamp": "2019-10-15T04:59:17.000Z" + "SpotPrice": "2.385600", + "Timestamp": "2024-05-16T03:33:14.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.657000", - "Timestamp": "2019-10-15T04:59:17.000Z" + "SpotPrice": "2.380600", + "Timestamp": "2024-05-16T03:33:14.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.557000", - "Timestamp": "2019-10-15T04:59:17.000Z" + "SpotPrice": "2.255600", + "Timestamp": "2024-05-16T03:33:14.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "z1d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2idn.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.638000", - "Timestamp": "2019-10-15T04:58:40.000Z" + "SpotPrice": "11.136300", + "Timestamp": "2024-05-16T03:33:10.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "z1d.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "h1.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.638000", - "Timestamp": "2019-10-15T04:58:40.000Z" + "SpotPrice": "0.584400", + "Timestamp": "2024-05-16T03:33:08.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "g4dn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.029000", - "Timestamp": "2019-10-15T04:57:27.000Z" + "SpotPrice": "0.387500", + "Timestamp": "2024-05-16T03:33:07.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5n.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6idn.large", "ProductDescription": "Windows", - "SpotPrice": "4.903400", - "Timestamp": "2019-10-15T04:52:34.000Z" + "SpotPrice": "0.172400", + "Timestamp": "2024-05-16T03:33:06.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5n.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.903400", - "Timestamp": "2019-10-15T04:52:34.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5n.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.721400", - "Timestamp": "2019-10-15T04:51:34.000Z" + "SpotPrice": "3.068300", + "Timestamp": "2024-05-16T03:33:06.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5n.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.721400", - "Timestamp": "2019-10-15T04:51:34.000Z" + "SpotPrice": "4.662500", + "Timestamp": "2024-05-16T03:33:05.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5n.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.691400", - "Timestamp": "2019-10-15T04:51:34.000Z" + "SpotPrice": "4.657500", + "Timestamp": "2024-05-16T03:33:05.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5n.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.691400", - "Timestamp": "2019-10-15T04:51:34.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.532500", + "Timestamp": "2024-05-16T03:33:05.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5n.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.591400", - "Timestamp": "2019-10-15T04:51:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.264100", + "Timestamp": "2024-05-16T03:33:04.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5n.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.591400", - "Timestamp": "2019-10-15T04:51:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.305300", + "Timestamp": "2024-05-16T03:33:04.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.513900", - "Timestamp": "2019-10-15T04:38:50.000Z" + "SpotPrice": "0.686100", + "Timestamp": "2024-05-16T03:33:04.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5dn.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.244000", - "Timestamp": "2019-10-15T04:24:20.000Z" + "SpotPrice": "0.849100", + "Timestamp": "2024-05-16T03:33:02.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5dn.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.214000", - "Timestamp": "2019-10-15T04:24:20.000Z" + "SpotPrice": "0.844100", + "Timestamp": "2024-05-16T03:33:02.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5dn.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.114000", - "Timestamp": "2019-10-15T04:24:20.000Z" - }, - { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.253600", - "Timestamp": "2019-10-15T04:15:55.000Z" + "SpotPrice": "0.719100", + "Timestamp": "2024-05-16T03:33:02.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "11.184000", - "Timestamp": "2019-10-15T03:55:35.000Z" + "SpotPrice": "7.146400", + "Timestamp": "2024-05-16T03:33:02.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "is4gen.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "6.898000", - "Timestamp": "2019-10-15T03:55:13.000Z" + "SpotPrice": "0.112700", + "Timestamp": "2024-05-16T03:33:00.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "is4gen.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "6.868000", - "Timestamp": "2019-10-15T03:55:13.000Z" + "SpotPrice": "0.083700", + "Timestamp": "2024-05-16T03:33:00.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5n.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "is4gen.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "6.768000", - "Timestamp": "2019-10-15T03:55:13.000Z" + "SpotPrice": "0.052700", + "Timestamp": "2024-05-16T03:33:00.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.small", "ProductDescription": "Windows", - "SpotPrice": "0.452300", - "Timestamp": "2019-10-15T03:53:06.000Z" + "SpotPrice": "0.025700", + "Timestamp": "2024-05-16T03:33:00.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.452300", - "Timestamp": "2019-10-15T03:53:06.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.211000", + "Timestamp": "2024-05-16T03:32:59.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.157600", - "Timestamp": "2019-10-15T03:52:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.206000", + "Timestamp": "2024-05-16T03:32:59.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.250300", - "Timestamp": "2019-10-15T03:52:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.081000", + "Timestamp": "2024-05-16T03:32:59.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gd.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.250300", - "Timestamp": "2019-10-15T03:52:34.000Z" + "SpotPrice": "0.079500", + "Timestamp": "2024-05-16T03:32:59.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gd.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.220300", - "Timestamp": "2019-10-15T03:52:34.000Z" + "SpotPrice": "0.075800", + "Timestamp": "2024-05-16T03:32:59.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.220300", - "Timestamp": "2019-10-15T03:52:34.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019500", + "Timestamp": "2024-05-16T03:32:59.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.120300", - "Timestamp": "2019-10-15T03:52:34.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.738600", + "Timestamp": "2024-05-16T03:32:58.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.120300", - "Timestamp": "2019-10-15T03:52:34.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.733600", + "Timestamp": "2024-05-16T03:32:58.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.696300", - "Timestamp": "2019-10-15T03:51:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.608600", + "Timestamp": "2024-05-16T03:32:58.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.696300", - "Timestamp": "2019-10-15T03:51:19.000Z" + "SpotPrice": "0.306700", + "Timestamp": "2024-05-16T03:32:57.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.345300", - "Timestamp": "2019-10-15T03:51:19.000Z" + "SpotPrice": "0.984900", + "Timestamp": "2024-05-16T03:32:55.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.345300", - "Timestamp": "2019-10-15T03:51:19.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.979900", + "Timestamp": "2024-05-16T03:32:55.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.315300", - "Timestamp": "2019-10-15T03:51:19.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.854900", + "Timestamp": "2024-05-16T03:32:55.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122100", + "Timestamp": "2024-05-16T03:32:55.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.315300", - "Timestamp": "2019-10-15T03:51:19.000Z" + "SpotPrice": "0.118400", + "Timestamp": "2024-05-16T03:32:55.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.215300", - "Timestamp": "2019-10-15T03:51:19.000Z" + "SpotPrice": "0.062100", + "Timestamp": "2024-05-16T03:32:55.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.215300", - "Timestamp": "2019-10-15T03:51:19.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.202600", + "Timestamp": "2024-05-16T03:32:54.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "c4.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132900", - "Timestamp": "2019-10-15T03:43:21.000Z" + "SpotPrice": "0.302700", + "Timestamp": "2024-05-16T03:32:54.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "c4.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172900", - "Timestamp": "2019-10-15T03:43:21.000Z" + "SpotPrice": "0.272700", + "Timestamp": "2024-05-16T03:32:54.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "c4.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072900", - "Timestamp": "2019-10-15T03:43:21.000Z" + "SpotPrice": "0.172700", + "Timestamp": "2024-05-16T03:32:54.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.metal-24xl", "ProductDescription": "Windows", - "SpotPrice": "4.055500", - "Timestamp": "2019-10-15T03:26:50.000Z" + "SpotPrice": "6.543800", + "Timestamp": "2024-05-16T03:32:53.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.055500", - "Timestamp": "2019-10-15T03:26:50.000Z" + "SpotPrice": "0.595500", + "Timestamp": "2024-05-16T03:32:52.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.055500", - "Timestamp": "2019-10-15T03:26:50.000Z" + "SpotPrice": "6.464500", + "Timestamp": "2024-05-16T03:32:52.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.995700", + "Timestamp": "2024-05-16T03:32:52.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gn.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094500", - "Timestamp": "2019-10-15T03:23:54.000Z" + "SpotPrice": "0.084800", + "Timestamp": "2024-05-16T03:32:52.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gn.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134500", - "Timestamp": "2019-10-15T03:23:54.000Z" + "SpotPrice": "0.081100", + "Timestamp": "2024-05-16T03:32:52.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gn.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034500", - "Timestamp": "2019-10-15T03:23:54.000Z" + "SpotPrice": "0.024800", + "Timestamp": "2024-05-16T03:32:52.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.126000", + "Timestamp": "2024-05-16T03:32:51.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.140100", + "Timestamp": "2024-05-16T03:32:50.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.036000", + "Timestamp": "2024-05-16T03:32:50.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.762000", - "Timestamp": "2019-10-15T03:19:15.000Z" + "SpotPrice": "0.477200", + "Timestamp": "2024-05-16T03:32:49.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.732000", - "Timestamp": "2019-10-15T03:19:15.000Z" + "SpotPrice": "0.472200", + "Timestamp": "2024-05-16T03:32:49.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.632000", - "Timestamp": "2019-10-15T03:19:15.000Z" + "SpotPrice": "0.347200", + "Timestamp": "2024-05-16T03:32:49.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.014500", - "Timestamp": "2019-10-15T03:09:16.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.750300", + "Timestamp": "2024-05-16T03:32:48.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.113100", - "Timestamp": "2019-10-15T02:57:11.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.745300", + "Timestamp": "2024-05-16T03:32:48.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.113100", - "Timestamp": "2019-10-15T02:57:11.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.620300", + "Timestamp": "2024-05-16T03:32:48.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5d.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.125200", - "Timestamp": "2019-10-15T02:56:36.000Z" + "SpotPrice": "6.557300", + "Timestamp": "2024-05-16T03:32:48.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125200", - "Timestamp": "2019-10-15T02:56:36.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.233900", + "Timestamp": "2024-05-16T03:32:47.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125200", - "Timestamp": "2019-10-15T02:56:36.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.228900", + "Timestamp": "2024-05-16T03:32:47.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093200", - "Timestamp": "2019-10-15T02:56:24.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.103900", + "Timestamp": "2024-05-16T03:32:47.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t4g.micro", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093200", - "Timestamp": "2019-10-15T02:56:24.000Z" + "SpotPrice": "0.064200", + "Timestamp": "2024-05-16T03:32:45.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t4g.micro", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133200", - "Timestamp": "2019-10-15T02:56:24.000Z" + "SpotPrice": "0.004200", + "Timestamp": "2024-05-16T03:32:45.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m4.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133200", - "Timestamp": "2019-10-15T02:56:24.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004200", + "Timestamp": "2024-05-16T03:32:45.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033200", - "Timestamp": "2019-10-15T02:56:24.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078800", + "Timestamp": "2024-05-16T03:32:45.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033200", - "Timestamp": "2019-10-15T02:56:24.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.049800", + "Timestamp": "2024-05-16T03:32:45.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090100", - "Timestamp": "2019-10-15T02:54:59.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018800", + "Timestamp": "2024-05-16T03:32:45.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090100", - "Timestamp": "2019-10-15T02:54:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.259800", + "Timestamp": "2024-05-16T03:32:45.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.130100", - "Timestamp": "2019-10-15T02:54:59.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.263100", + "Timestamp": "2024-05-16T03:32:45.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.130100", - "Timestamp": "2019-10-15T02:54:59.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.126900", + "Timestamp": "2024-05-16T03:32:43.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030100", - "Timestamp": "2019-10-15T02:54:59.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.121900", + "Timestamp": "2024-05-16T03:32:43.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c3.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030100", - "Timestamp": "2019-10-15T02:54:59.000Z" + "SpotPrice": "0.996900", + "Timestamp": "2024-05-16T03:32:43.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.005300", - "Timestamp": "2019-10-15T02:53:05.000Z" + "SpotPrice": "1.452800", + "Timestamp": "2024-05-16T03:32:43.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.975300", - "Timestamp": "2019-10-15T02:53:05.000Z" + "SpotPrice": "1.447800", + "Timestamp": "2024-05-16T03:32:43.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.875300", - "Timestamp": "2019-10-15T02:53:05.000Z" - }, - { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.083300", - "Timestamp": "2019-10-15T02:52:57.000Z" + "SpotPrice": "1.322800", + "Timestamp": "2024-05-16T03:32:43.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.083300", - "Timestamp": "2019-10-15T02:52:57.000Z" + "SpotPrice": "1.036000", + "Timestamp": "2024-05-16T03:32:41.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.083300", - "Timestamp": "2019-10-15T02:52:57.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128800", + "Timestamp": "2024-05-16T03:32:38.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.083300", - "Timestamp": "2019-10-15T02:51:48.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125100", + "Timestamp": "2024-05-16T03:32:38.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.480000", - "Timestamp": "2019-10-15T02:51:48.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-16T03:32:38.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.005300", - "Timestamp": "2019-10-15T02:51:48.000Z" + "SpotPrice": "5.114800", + "Timestamp": "2024-05-16T03:32:37.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.402000", - "Timestamp": "2019-10-15T02:51:48.000Z" + "SpotPrice": "5.033000", + "Timestamp": "2024-05-16T03:32:37.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.975300", - "Timestamp": "2019-10-15T02:51:48.000Z" + "SpotPrice": "5.109800", + "Timestamp": "2024-05-16T03:32:37.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "4.372000", - "Timestamp": "2019-10-15T02:51:48.000Z" + "SpotPrice": "5.028000", + "Timestamp": "2024-05-16T03:32:37.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.875300", - "Timestamp": "2019-10-15T02:51:48.000Z" + "SpotPrice": "4.984800", + "Timestamp": "2024-05-16T03:32:37.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.272000", - "Timestamp": "2019-10-15T02:51:48.000Z" + "SpotPrice": "4.903000", + "Timestamp": "2024-05-16T03:32:37.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094700", - "Timestamp": "2019-10-15T02:51:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.687100", + "Timestamp": "2024-05-16T03:32:37.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094700", - "Timestamp": "2019-10-15T02:51:35.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.539000", + "Timestamp": "2024-05-16T03:32:35.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094700", - "Timestamp": "2019-10-15T02:51:35.000Z" + "SpotPrice": "1.360200", + "Timestamp": "2024-05-16T03:32:35.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134700", - "Timestamp": "2019-10-15T02:51:35.000Z" + "SpotPrice": "1.355200", + "Timestamp": "2024-05-16T03:32:35.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134700", - "Timestamp": "2019-10-15T02:51:35.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.230200", + "Timestamp": "2024-05-16T03:32:35.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m1.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078700", + "Timestamp": "2024-05-16T03:32:35.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m1.small", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134700", - "Timestamp": "2019-10-15T02:51:35.000Z" + "SpotPrice": "0.048700", + "Timestamp": "2024-05-16T03:32:35.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m1.small", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034700", - "Timestamp": "2019-10-15T02:51:35.000Z" + "SpotPrice": "0.018700", + "Timestamp": "2024-05-16T03:32:35.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034700", - "Timestamp": "2019-10-15T02:51:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.448800", + "Timestamp": "2024-05-16T03:32:35.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034700", - "Timestamp": "2019-10-15T02:51:35.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.443800", + "Timestamp": "2024-05-16T03:32:35.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126700", - "Timestamp": "2019-10-15T02:51:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.318800", + "Timestamp": "2024-05-16T03:32:35.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126700", - "Timestamp": "2019-10-15T02:51:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.495100", + "Timestamp": "2024-05-16T03:32:34.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126700", - "Timestamp": "2019-10-15T02:51:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.490100", + "Timestamp": "2024-05-16T03:32:34.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.513900", - "Timestamp": "2019-10-15T02:51:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.365100", + "Timestamp": "2024-05-16T03:32:34.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.513900", - "Timestamp": "2019-10-15T02:51:34.000Z" + "SpotPrice": "6.261400", + "Timestamp": "2024-05-16T03:32:33.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.275900", - "Timestamp": "2019-10-15T02:51:34.000Z" + "SpotPrice": "0.098300", + "Timestamp": "2024-05-16T03:32:32.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.275900", - "Timestamp": "2019-10-15T02:51:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094600", + "Timestamp": "2024-05-16T03:32:32.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.245900", - "Timestamp": "2019-10-15T02:51:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038300", + "Timestamp": "2024-05-16T03:32:32.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107000", + "Timestamp": "2024-05-16T03:32:31.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.245900", - "Timestamp": "2019-10-15T02:51:34.000Z" + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T03:32:31.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.145900", - "Timestamp": "2019-10-15T02:51:34.000Z" + "SpotPrice": "0.047000", + "Timestamp": "2024-05-16T03:32:31.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.145900", - "Timestamp": "2019-10-15T02:51:34.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.561800", + "Timestamp": "2024-05-16T03:32:30.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5dn.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129600", - "Timestamp": "2019-10-15T02:11:00.000Z" + "SpotPrice": "2.823400", + "Timestamp": "2024-05-16T03:32:29.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5dn.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.169600", - "Timestamp": "2019-10-15T02:11:00.000Z" + "SpotPrice": "2.818400", + "Timestamp": "2024-05-16T03:32:29.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5dn.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069600", - "Timestamp": "2019-10-15T02:11:00.000Z" + "SpotPrice": "2.693400", + "Timestamp": "2024-05-16T03:32:29.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6id.large", "ProductDescription": "Windows", - "SpotPrice": "0.125200", - "Timestamp": "2019-10-15T01:52:37.000Z" + "SpotPrice": "0.155100", + "Timestamp": "2024-05-16T03:32:28.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125200", - "Timestamp": "2019-10-15T01:52:37.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.196300", + "Timestamp": "2024-05-16T03:32:24.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125200", - "Timestamp": "2019-10-15T01:52:37.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192600", + "Timestamp": "2024-05-16T03:32:24.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.500600", - "Timestamp": "2019-10-15T01:52:02.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136300", + "Timestamp": "2024-05-16T03:32:24.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.500600", - "Timestamp": "2019-10-15T01:52:02.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.774300", + "Timestamp": "2024-05-16T03:32:21.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.500600", - "Timestamp": "2019-10-15T01:52:02.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.769300", + "Timestamp": "2024-05-16T03:32:21.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012800", - "Timestamp": "2019-10-15T01:51:47.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.644300", + "Timestamp": "2024-05-16T03:32:21.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-1d", + "InstanceType": "p2.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.012800", - "Timestamp": "2019-10-15T01:51:47.000Z" + "SpotPrice": "9.703900", + "Timestamp": "2024-05-16T03:32:20.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t3.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012800", - "Timestamp": "2019-10-15T01:51:47.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.251100", + "Timestamp": "2024-05-16T03:32:18.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-15T01:51:47.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.246100", + "Timestamp": "2024-05-16T03:32:18.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-15T01:51:47.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.121100", + "Timestamp": "2024-05-16T03:32:18.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-1c", + "InstanceType": "p2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.551900", + "Timestamp": "2024-05-16T03:32:18.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "z1d.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-15T01:51:47.000Z" + "SpotPrice": "0.217400", + "Timestamp": "2024-05-16T03:32:15.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-1a", + "InstanceType": "z1d.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.103600", - "Timestamp": "2019-10-15T01:51:47.000Z" + "SpotPrice": "0.213400", + "Timestamp": "2024-05-16T03:32:15.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.103600", - "Timestamp": "2019-10-15T01:51:47.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157400", + "Timestamp": "2024-05-16T03:32:15.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.326500", + "Timestamp": "2024-05-16T03:32:15.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.103600", - "Timestamp": "2019-10-15T01:51:47.000Z" + "SpotPrice": "0.321500", + "Timestamp": "2024-05-16T03:32:15.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003600", - "Timestamp": "2019-10-15T01:51:47.000Z" + "SpotPrice": "0.196500", + "Timestamp": "2024-05-16T03:32:15.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003600", - "Timestamp": "2019-10-15T01:51:47.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t1.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068000", + "Timestamp": "2024-05-16T03:32:13.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003600", - "Timestamp": "2019-10-15T01:51:47.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t1.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.008000", + "Timestamp": "2024-05-16T03:32:13.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "a1.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.077200", - "Timestamp": "2019-10-15T01:51:44.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t1.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008000", + "Timestamp": "2024-05-16T03:32:13.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "a1.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.077200", - "Timestamp": "2019-10-15T01:51:44.000Z" + "SpotPrice": "0.353700", + "Timestamp": "2024-05-16T03:18:30.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "a1.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.117200", - "Timestamp": "2019-10-15T01:51:44.000Z" + "SpotPrice": "0.348700", + "Timestamp": "2024-05-16T03:18:30.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "a1.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.117200", - "Timestamp": "2019-10-15T01:51:44.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.223700", + "Timestamp": "2024-05-16T03:18:30.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "a1.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.017200", - "Timestamp": "2019-10-15T01:51:44.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.727400", + "Timestamp": "2024-05-16T03:18:26.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "a1.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.017200", - "Timestamp": "2019-10-15T01:51:44.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.533100", + "Timestamp": "2024-05-16T03:18:24.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5n.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.507200", - "Timestamp": "2019-10-15T01:51:38.000Z" + "SpotPrice": "4.955800", + "Timestamp": "2024-05-16T03:18:18.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3.large", "ProductDescription": "Windows", - "SpotPrice": "2.252800", - "Timestamp": "2019-10-15T01:51:34.000Z" + "SpotPrice": "0.063200", + "Timestamp": "2024-05-16T03:18:17.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.252800", - "Timestamp": "2019-10-15T01:51:34.000Z" + "SpotPrice": "4.320300", + "Timestamp": "2024-05-16T03:18:14.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "h1.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.252800", - "Timestamp": "2019-10-15T01:51:34.000Z" + "SpotPrice": "0.633700", + "Timestamp": "2024-05-16T03:18:08.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.726800", - "Timestamp": "2019-10-15T01:51:34.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.168400", + "Timestamp": "2024-05-16T03:18:06.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.726800", - "Timestamp": "2019-10-15T01:51:34.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.281300", + "Timestamp": "2024-05-16T03:18:05.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.696800", - "Timestamp": "2019-10-15T01:51:34.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.014700", + "Timestamp": "2024-05-16T03:18:05.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.010100", + "Timestamp": "2024-05-16T03:18:03.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.834900", + "Timestamp": "2024-05-16T03:18:02.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.696800", - "Timestamp": "2019-10-15T01:51:34.000Z" + "SpotPrice": "2.829900", + "Timestamp": "2024-05-16T03:18:02.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.596800", - "Timestamp": "2019-10-15T01:51:34.000Z" + "SpotPrice": "2.704900", + "Timestamp": "2024-05-16T03:18:02.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.515100", + "Timestamp": "2024-05-16T03:18:00.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.510100", + "Timestamp": "2024-05-16T03:18:00.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.596800", - "Timestamp": "2019-10-15T01:51:34.000Z" + "SpotPrice": "0.385100", + "Timestamp": "2024-05-16T03:18:00.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5n.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.269200", - "Timestamp": "2019-10-15T01:51:23.000Z" + "SpotPrice": "0.841700", + "Timestamp": "2024-05-16T03:18:00.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5n.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.239200", - "Timestamp": "2019-10-15T01:51:23.000Z" + "SpotPrice": "0.836700", + "Timestamp": "2024-05-16T03:18:00.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5n.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6in.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.139200", - "Timestamp": "2019-10-15T01:51:23.000Z" + "SpotPrice": "0.711700", + "Timestamp": "2024-05-16T03:18:00.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.115800", - "Timestamp": "2019-10-15T01:51:18.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.298100", + "Timestamp": "2024-05-16T03:17:58.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.115800", - "Timestamp": "2019-10-15T01:51:18.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.786900", + "Timestamp": "2024-05-16T03:17:54.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.metal-24xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.115800", - "Timestamp": "2019-10-15T01:51:18.000Z" + "SpotPrice": "2.477300", + "Timestamp": "2024-05-16T03:17:52.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.metal-24xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.155800", - "Timestamp": "2019-10-15T01:51:18.000Z" + "SpotPrice": "2.472300", + "Timestamp": "2024-05-16T03:17:52.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.155800", - "Timestamp": "2019-10-15T01:51:18.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.347300", + "Timestamp": "2024-05-16T03:17:52.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.636000", + "Timestamp": "2024-05-16T03:17:52.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.536200", + "Timestamp": "2024-05-16T03:17:49.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.155800", - "Timestamp": "2019-10-15T01:51:18.000Z" + "SpotPrice": "0.531200", + "Timestamp": "2024-05-16T03:17:49.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.055800", - "Timestamp": "2019-10-15T01:51:18.000Z" + "SpotPrice": "0.406200", + "Timestamp": "2024-05-16T03:17:49.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.055800", - "Timestamp": "2019-10-15T01:51:18.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.501800", + "Timestamp": "2024-05-16T03:17:49.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.496800", + "Timestamp": "2024-05-16T03:17:49.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.055800", - "Timestamp": "2019-10-15T01:51:18.000Z" + "SpotPrice": "2.371800", + "Timestamp": "2024-05-16T03:17:49.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.147800", - "Timestamp": "2019-10-15T01:51:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.238800", + "Timestamp": "2024-05-16T03:17:49.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.147800", - "Timestamp": "2019-10-15T01:51:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.208800", + "Timestamp": "2024-05-16T03:17:49.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "i3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.147800", - "Timestamp": "2019-10-15T01:51:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.108800", + "Timestamp": "2024-05-16T03:17:49.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.043500", - "Timestamp": "2019-10-15T01:31:37.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.217000", + "Timestamp": "2024-05-16T03:17:49.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.043500", - "Timestamp": "2019-10-15T01:31:37.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.212000", + "Timestamp": "2024-05-16T03:17:49.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.043500", - "Timestamp": "2019-10-15T01:31:37.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.087000", + "Timestamp": "2024-05-16T03:17:49.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.005300", - "Timestamp": "2019-10-15T01:29:56.000Z" + "SpotPrice": "0.497800", + "Timestamp": "2024-05-16T03:17:47.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.975300", - "Timestamp": "2019-10-15T01:29:56.000Z" + "SpotPrice": "0.492800", + "Timestamp": "2024-05-16T03:17:47.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.875300", - "Timestamp": "2019-10-15T01:29:56.000Z" + "SpotPrice": "0.367800", + "Timestamp": "2024-05-16T03:17:47.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.128500", - "Timestamp": "2019-10-15T00:58:18.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128600", + "Timestamp": "2024-05-16T03:17:46.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.087000", - "Timestamp": "2019-10-15T00:57:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124600", + "Timestamp": "2024-05-16T03:17:46.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.087000", - "Timestamp": "2019-10-15T00:57:19.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068600", + "Timestamp": "2024-05-16T03:17:46.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r4.large", "ProductDescription": "Windows", - "SpotPrice": "6.087000", - "Timestamp": "2019-10-15T00:57:19.000Z" + "SpotPrice": "0.154500", + "Timestamp": "2024-05-16T03:17:45.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.801000", - "Timestamp": "2019-10-15T00:57:00.000Z" + "SpotPrice": "0.364300", + "Timestamp": "2024-05-16T03:17:44.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.801000", - "Timestamp": "2019-10-15T00:57:00.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.359300", + "Timestamp": "2024-05-16T03:17:44.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.234300", + "Timestamp": "2024-05-16T03:17:44.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "a1.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.801000", - "Timestamp": "2019-10-15T00:57:00.000Z" + "SpotPrice": "0.087100", + "Timestamp": "2024-05-16T03:17:44.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "a1.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.771000", - "Timestamp": "2019-10-15T00:57:00.000Z" + "SpotPrice": "0.083400", + "Timestamp": "2024-05-16T03:17:44.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.771000", - "Timestamp": "2019-10-15T00:57:00.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "a1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027100", + "Timestamp": "2024-05-16T03:17:44.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.361400", + "Timestamp": "2024-05-16T03:17:44.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.771000", - "Timestamp": "2019-10-15T00:57:00.000Z" + "SpotPrice": "0.356400", + "Timestamp": "2024-05-16T03:17:44.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.671000", - "Timestamp": "2019-10-15T00:57:00.000Z" + "SpotPrice": "0.231400", + "Timestamp": "2024-05-16T03:17:44.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.671000", - "Timestamp": "2019-10-15T00:57:00.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115000", + "Timestamp": "2024-05-16T03:17:44.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.671000", - "Timestamp": "2019-10-15T00:57:00.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111300", + "Timestamp": "2024-05-16T03:17:44.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.557500", - "Timestamp": "2019-10-15T00:56:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055000", + "Timestamp": "2024-05-16T03:17:44.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.557500", - "Timestamp": "2019-10-15T00:56:51.000Z" + "SpotPrice": "0.078600", + "Timestamp": "2024-05-16T03:17:44.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.527500", - "Timestamp": "2019-10-15T00:56:51.000Z" + "SpotPrice": "0.049600", + "Timestamp": "2024-05-16T03:17:44.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g3.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.527500", - "Timestamp": "2019-10-15T00:56:51.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018600", + "Timestamp": "2024-05-16T03:17:44.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.427500", - "Timestamp": "2019-10-15T00:56:51.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.633400", + "Timestamp": "2024-05-16T03:17:43.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.427500", - "Timestamp": "2019-10-15T00:56:51.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.628400", + "Timestamp": "2024-05-16T03:17:43.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.163500", - "Timestamp": "2019-10-15T00:55:26.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.503400", + "Timestamp": "2024-05-16T03:17:43.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.163500", - "Timestamp": "2019-10-15T00:55:26.000Z" + "SpotPrice": "0.265800", + "Timestamp": "2024-05-16T03:17:43.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.965500", - "Timestamp": "2019-10-15T00:55:05.000Z" + "SpotPrice": "1.117500", + "Timestamp": "2024-05-16T03:17:42.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.965500", - "Timestamp": "2019-10-15T00:55:05.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.112500", + "Timestamp": "2024-05-16T03:17:42.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.935500", - "Timestamp": "2019-10-15T00:55:05.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.987500", + "Timestamp": "2024-05-16T03:17:42.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.935500", - "Timestamp": "2019-10-15T00:55:05.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145600", + "Timestamp": "2024-05-16T03:17:41.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.835500", - "Timestamp": "2019-10-15T00:55:05.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141900", + "Timestamp": "2024-05-16T03:17:41.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.835500", - "Timestamp": "2019-10-15T00:55:05.000Z" + "SpotPrice": "0.085600", + "Timestamp": "2024-05-16T03:17:41.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129500", - "Timestamp": "2019-10-15T00:52:50.000Z" + "SpotPrice": "1.387100", + "Timestamp": "2024-05-16T03:17:40.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129500", - "Timestamp": "2019-10-15T00:52:50.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.382100", + "Timestamp": "2024-05-16T03:17:40.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129500", - "Timestamp": "2019-10-15T00:52:50.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.257100", + "Timestamp": "2024-05-16T03:17:40.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.169500", - "Timestamp": "2019-10-15T00:52:50.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.980100", + "Timestamp": "2024-05-16T03:17:37.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.169500", - "Timestamp": "2019-10-15T00:52:50.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.012600", + "Timestamp": "2024-05-16T03:17:36.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "inf2.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.169500", - "Timestamp": "2019-10-15T00:52:50.000Z" + "SpotPrice": "0.982600", + "Timestamp": "2024-05-16T03:17:36.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "inf2.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069500", - "Timestamp": "2019-10-15T00:52:50.000Z" + "SpotPrice": "0.882600", + "Timestamp": "2024-05-16T03:17:36.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069500", - "Timestamp": "2019-10-15T00:52:50.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.870100", + "Timestamp": "2024-05-16T03:17:36.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.865100", + "Timestamp": "2024-05-16T03:17:36.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5n.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069500", - "Timestamp": "2019-10-15T00:52:50.000Z" + "SpotPrice": "0.740100", + "Timestamp": "2024-05-16T03:17:36.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1e.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "8.545600", - "Timestamp": "2019-10-15T00:52:29.000Z" + "SpotPrice": "8.894600", + "Timestamp": "2024-05-16T03:17:36.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1e.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "d2.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "8.545600", - "Timestamp": "2019-10-15T00:52:29.000Z" + "SpotPrice": "2.847700", + "Timestamp": "2024-05-16T03:17:36.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.10xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.880600", - "Timestamp": "2019-10-15T00:52:15.000Z" + "SpotPrice": "1.075800", + "Timestamp": "2024-05-16T03:17:35.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.880600", - "Timestamp": "2019-10-15T00:52:15.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.045800", + "Timestamp": "2024-05-16T03:17:35.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.945800", + "Timestamp": "2024-05-16T03:17:35.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.880600", - "Timestamp": "2019-10-15T00:52:15.000Z" + "SpotPrice": "0.557600", + "Timestamp": "2024-05-16T03:17:33.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.850600", - "Timestamp": "2019-10-15T00:52:15.000Z" + "SpotPrice": "0.552600", + "Timestamp": "2024-05-16T03:17:33.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.850600", - "Timestamp": "2019-10-15T00:52:15.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.427600", + "Timestamp": "2024-05-16T03:17:33.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.331500", + "Timestamp": "2024-05-16T03:17:33.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.850600", - "Timestamp": "2019-10-15T00:52:15.000Z" + "SpotPrice": "0.326500", + "Timestamp": "2024-05-16T03:17:33.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.750600", - "Timestamp": "2019-10-15T00:52:15.000Z" + "SpotPrice": "0.201500", + "Timestamp": "2024-05-16T03:17:33.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.750600", - "Timestamp": "2019-10-15T00:52:15.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.230600", + "Timestamp": "2024-05-16T03:17:31.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.226900", + "Timestamp": "2024-05-16T03:17:31.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4ad.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.750600", - "Timestamp": "2019-10-15T00:52:15.000Z" + "SpotPrice": "0.170600", + "Timestamp": "2024-05-16T03:17:31.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1e.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.041700", + "Timestamp": "2024-05-16T03:17:28.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.731600", - "Timestamp": "2019-10-15T00:52:00.000Z" + "SpotPrice": "0.272000", + "Timestamp": "2024-05-16T03:17:26.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1e.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.731600", - "Timestamp": "2019-10-15T00:52:00.000Z" + "SpotPrice": "0.265100", + "Timestamp": "2024-05-16T03:17:26.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1e.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "5.701600", - "Timestamp": "2019-10-15T00:52:00.000Z" + "SpotPrice": "0.267000", + "Timestamp": "2024-05-16T03:17:26.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1e.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "5.701600", - "Timestamp": "2019-10-15T00:52:00.000Z" + "SpotPrice": "0.260100", + "Timestamp": "2024-05-16T03:17:26.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "x1e.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.601600", - "Timestamp": "2019-10-15T00:52:00.000Z" + "SpotPrice": "0.142000", + "Timestamp": "2024-05-16T03:17:26.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "x1e.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.601600", - "Timestamp": "2019-10-15T00:52:00.000Z" + "SpotPrice": "0.135100", + "Timestamp": "2024-05-16T03:17:26.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.297000", - "Timestamp": "2019-10-15T00:51:49.000Z" + "SpotPrice": "0.111100", + "Timestamp": "2024-05-16T03:17:22.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.297000", - "Timestamp": "2019-10-15T00:51:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T03:17:22.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.297000", - "Timestamp": "2019-10-15T00:51:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051100", + "Timestamp": "2024-05-16T03:17:22.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.267000", - "Timestamp": "2019-10-15T00:51:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.278700", + "Timestamp": "2024-05-16T03:17:22.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.267000", - "Timestamp": "2019-10-15T00:51:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5zn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130600", + "Timestamp": "2024-05-16T03:17:22.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5zn.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.267000", - "Timestamp": "2019-10-15T00:51:49.000Z" + "SpotPrice": "0.126900", + "Timestamp": "2024-05-16T03:17:22.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5zn.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.167000", - "Timestamp": "2019-10-15T00:51:49.000Z" + "SpotPrice": "0.070600", + "Timestamp": "2024-05-16T03:17:22.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.167000", - "Timestamp": "2019-10-15T00:51:49.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.228900", + "Timestamp": "2024-05-16T03:17:21.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.167000", - "Timestamp": "2019-10-15T00:51:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.953300", + "Timestamp": "2024-05-16T03:17:20.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.583000", - "Timestamp": "2019-10-15T00:51:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.948300", + "Timestamp": "2024-05-16T03:17:20.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.583000", - "Timestamp": "2019-10-15T00:51:49.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.823300", + "Timestamp": "2024-05-16T03:17:20.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.583000", - "Timestamp": "2019-10-15T00:51:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.902700", + "Timestamp": "2024-05-16T03:17:18.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.560600", - "Timestamp": "2019-10-15T00:51:47.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.897700", + "Timestamp": "2024-05-16T03:17:18.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.560600", - "Timestamp": "2019-10-15T00:51:47.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.772700", + "Timestamp": "2024-05-16T03:17:18.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.530600", - "Timestamp": "2019-10-15T00:51:47.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113200", + "Timestamp": "2024-05-16T03:17:15.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c4.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.530600", - "Timestamp": "2019-10-15T00:51:47.000Z" + "SpotPrice": "0.153200", + "Timestamp": "2024-05-16T03:17:15.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c4.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.430600", - "Timestamp": "2019-10-15T00:51:47.000Z" + "SpotPrice": "0.053200", + "Timestamp": "2024-05-16T03:17:15.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.430600", - "Timestamp": "2019-10-15T00:51:47.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104100", + "Timestamp": "2024-05-16T03:17:11.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.392600", - "Timestamp": "2019-10-15T00:51:47.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100100", + "Timestamp": "2024-05-16T03:17:11.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.392600", - "Timestamp": "2019-10-15T00:51:47.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044100", + "Timestamp": "2024-05-16T03:17:11.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3a.small", "ProductDescription": "Windows", - "SpotPrice": "4.111000", - "Timestamp": "2019-10-15T00:51:34.000Z" + "SpotPrice": "0.026100", + "Timestamp": "2024-05-16T03:03:39.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.111000", - "Timestamp": "2019-10-15T00:51:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.621200", + "Timestamp": "2024-05-16T03:03:38.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.111000", - "Timestamp": "2019-10-15T00:51:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.616200", + "Timestamp": "2024-05-16T03:03:38.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.297000", - "Timestamp": "2019-10-15T00:51:33.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.491200", + "Timestamp": "2024-05-16T03:03:38.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.297000", - "Timestamp": "2019-10-15T00:51:33.000Z" + "SpotPrice": "1.061200", + "Timestamp": "2024-05-16T03:03:30.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.297000", - "Timestamp": "2019-10-15T00:51:33.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.056200", + "Timestamp": "2024-05-16T03:03:30.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.267000", - "Timestamp": "2019-10-15T00:51:33.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.931200", + "Timestamp": "2024-05-16T03:03:30.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.267000", - "Timestamp": "2019-10-15T00:51:33.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.401400", + "Timestamp": "2024-05-16T03:03:28.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.metal-24xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.267000", - "Timestamp": "2019-10-15T00:51:33.000Z" + "SpotPrice": "2.396400", + "Timestamp": "2024-05-16T03:03:28.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i.metal-24xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.167000", - "Timestamp": "2019-10-15T00:51:33.000Z" + "SpotPrice": "2.271400", + "Timestamp": "2024-05-16T03:03:28.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.167000", - "Timestamp": "2019-10-15T00:51:33.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.038200", + "Timestamp": "2024-05-16T03:03:27.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.605600", + "Timestamp": "2024-05-16T03:03:22.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.575600", + "Timestamp": "2024-05-16T03:03:22.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.167000", - "Timestamp": "2019-10-15T00:51:33.000Z" + "SpotPrice": "2.475600", + "Timestamp": "2024-05-16T03:03:22.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.253500", - "Timestamp": "2019-10-15T00:50:55.000Z" + "SpotPrice": "15.578100", + "Timestamp": "2024-05-16T03:03:19.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5n.large", "ProductDescription": "Windows", - "SpotPrice": "0.253500", - "Timestamp": "2019-10-15T00:50:55.000Z" + "SpotPrice": "0.157700", + "Timestamp": "2024-05-16T03:03:18.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.253500", - "Timestamp": "2019-10-15T00:50:55.000Z" + "SpotPrice": "0.561100", + "Timestamp": "2024-05-16T03:03:17.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.530000", - "Timestamp": "2019-10-15T00:14:39.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.133800", + "Timestamp": "2024-05-16T03:03:10.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.530000", - "Timestamp": "2019-10-15T00:14:39.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.128800", + "Timestamp": "2024-05-16T03:03:10.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "10.944000", - "Timestamp": "2019-10-15T00:14:39.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.003800", + "Timestamp": "2024-05-16T03:03:10.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "m5dn.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6idn.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.253600", - "Timestamp": "2019-10-15T00:13:53.000Z" + "SpotPrice": "3.655300", + "Timestamp": "2024-05-16T03:03:08.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4ad.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.256900", - "Timestamp": "2019-10-15T00:06:47.000Z" + "SpotPrice": "1.111700", + "Timestamp": "2024-05-16T03:03:08.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120100", - "Timestamp": "2019-10-14T23:59:44.000Z" + "SpotPrice": "3.203800", + "Timestamp": "2024-05-16T03:03:08.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120100", - "Timestamp": "2019-10-14T23:59:44.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.198800", + "Timestamp": "2024-05-16T03:03:08.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.160100", - "Timestamp": "2019-10-14T23:59:44.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.073800", + "Timestamp": "2024-05-16T03:03:08.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.160100", - "Timestamp": "2019-10-14T23:59:44.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.724900", + "Timestamp": "2024-05-16T03:03:07.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "c3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060100", - "Timestamp": "2019-10-14T23:59:44.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.719900", + "Timestamp": "2024-05-16T03:03:07.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060100", - "Timestamp": "2019-10-14T23:59:44.000Z" + "SpotPrice": "1.594900", + "Timestamp": "2024-05-16T03:03:07.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.007400", - "Timestamp": "2019-10-08T07:06:07.000Z" + "SpotPrice": "7.262100", + "Timestamp": "2024-05-16T03:03:06.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.721400", - "Timestamp": "2019-10-08T07:06:05.000Z" + "SpotPrice": "3.665800", + "Timestamp": "2024-05-16T03:03:05.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.691400", - "Timestamp": "2019-10-08T07:06:05.000Z" + "SpotPrice": "3.660800", + "Timestamp": "2024-05-16T03:03:05.000Z" }, { - "AvailabilityZone": "eu-central-1c", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5b.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.591400", - "Timestamp": "2019-10-08T07:06:05.000Z" + "SpotPrice": "3.535800", + "Timestamp": "2024-05-16T03:03:05.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "24.160000", - "Timestamp": "2019-08-10T13:43:44.000Z" + "SpotPrice": "0.772200", + "Timestamp": "2024-05-16T03:03:04.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.271300", + "Timestamp": "2024-05-16T03:03:04.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.071600", + "Timestamp": "2024-05-16T03:03:04.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "21.346000", - "Timestamp": "2019-08-10T13:43:44.000Z" + "SpotPrice": "3.255700", + "Timestamp": "2024-05-16T03:03:03.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "21.316000", - "Timestamp": "2019-08-10T13:43:44.000Z" + "SpotPrice": "3.250700", + "Timestamp": "2024-05-16T03:03:03.000Z" }, { - "AvailabilityZone": "eu-central-1b", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "21.216000", - "Timestamp": "2019-08-10T13:43:44.000Z" + "SpotPrice": "3.125700", + "Timestamp": "2024-05-16T03:03:03.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.141200", + "Timestamp": "2024-05-16T03:03:02.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.large", "ProductDescription": "Windows", - "SpotPrice": "24.160000", - "Timestamp": "2019-07-30T06:43:32.000Z" + "SpotPrice": "0.130800", + "Timestamp": "2024-05-16T03:02:59.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.519800", + "Timestamp": "2024-05-16T03:02:59.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7gd.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "21.346000", - "Timestamp": "2019-07-30T06:43:32.000Z" + "SpotPrice": "0.998000", + "Timestamp": "2024-05-16T03:02:59.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7gd.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "21.316000", - "Timestamp": "2019-07-30T06:43:32.000Z" + "SpotPrice": "0.993000", + "Timestamp": "2024-05-16T03:02:59.000Z" }, { - "AvailabilityZone": "eu-central-1a", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "21.216000", - "Timestamp": "2019-07-30T06:43:32.000Z" + "SpotPrice": "0.868000", + "Timestamp": "2024-05-16T03:02:59.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.519200", - "Timestamp": "2019-10-16T02:56:56.000Z" + "SpotPrice": "6.523700", + "Timestamp": "2024-05-16T03:02:58.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.296300", + "Timestamp": "2024-05-16T03:02:58.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.114300", + "Timestamp": "2024-05-16T03:02:57.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.278600", + "Timestamp": "2024-05-16T03:02:54.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128000", + "Timestamp": "2024-05-16T03:02:53.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.400900", + "Timestamp": "2024-05-16T03:02:51.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.612500", + "Timestamp": "2024-05-16T03:02:49.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.289700", - "Timestamp": "2019-10-16T02:52:50.000Z" + "SpotPrice": "1.248900", + "Timestamp": "2024-05-16T03:02:49.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.259700", - "Timestamp": "2019-10-16T02:52:50.000Z" + "SpotPrice": "1.243900", + "Timestamp": "2024-05-16T03:02:49.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.159700", - "Timestamp": "2019-10-16T02:52:50.000Z" + "SpotPrice": "1.118900", + "Timestamp": "2024-05-16T03:02:49.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.872700", - "Timestamp": "2019-10-16T02:52:43.000Z" + "SpotPrice": "0.793500", + "Timestamp": "2024-05-16T03:02:49.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.842700", - "Timestamp": "2019-10-16T02:52:43.000Z" + "SpotPrice": "0.788500", + "Timestamp": "2024-05-16T03:02:49.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5ad.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.742700", - "Timestamp": "2019-10-16T02:52:43.000Z" + "SpotPrice": "0.663500", + "Timestamp": "2024-05-16T03:02:49.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.159500", + "Timestamp": "2024-05-16T03:02:47.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.137500", - "Timestamp": "2019-10-16T02:52:15.000Z" + "SpotPrice": "3.294900", + "Timestamp": "2024-05-16T03:02:46.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.177500", - "Timestamp": "2019-10-16T02:52:15.000Z" + "SpotPrice": "3.289900", + "Timestamp": "2024-05-16T03:02:46.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.077500", - "Timestamp": "2019-10-16T02:52:15.000Z" + "SpotPrice": "3.164900", + "Timestamp": "2024-05-16T03:02:46.000Z" }, { - "AvailabilityZone": "eu-west-1a", + "AvailabilityZone": "us-east-1b", "InstanceType": "z1d.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.386700", - "Timestamp": "2019-10-16T02:52:01.000Z" + "SpotPrice": "0.521900", + "Timestamp": "2024-05-16T03:02:46.000Z" }, { - "AvailabilityZone": "eu-west-1a", + "AvailabilityZone": "us-east-1b", "InstanceType": "z1d.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.356700", - "Timestamp": "2019-10-16T02:52:01.000Z" + "SpotPrice": "0.516900", + "Timestamp": "2024-05-16T03:02:46.000Z" }, { - "AvailabilityZone": "eu-west-1a", + "AvailabilityZone": "us-east-1b", "InstanceType": "z1d.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.256700", - "Timestamp": "2019-10-16T02:52:01.000Z" + "SpotPrice": "0.391900", + "Timestamp": "2024-05-16T03:02:46.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.750400", - "Timestamp": "2019-10-16T02:51:57.000Z" + "SpotPrice": "1.217300", + "Timestamp": "2024-05-16T03:02:45.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.720400", - "Timestamp": "2019-10-16T02:51:57.000Z" + "SpotPrice": "1.187300", + "Timestamp": "2024-05-16T03:02:45.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.620400", - "Timestamp": "2019-10-16T02:51:57.000Z" - }, - { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.259600", - "Timestamp": "2019-10-16T02:45:00.000Z" + "SpotPrice": "1.087300", + "Timestamp": "2024-05-16T03:02:45.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.456500", - "Timestamp": "2019-10-16T02:44:15.000Z" + "SpotPrice": "0.775800", + "Timestamp": "2024-05-16T03:02:44.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.426500", - "Timestamp": "2019-10-16T02:44:15.000Z" + "SpotPrice": "0.770800", + "Timestamp": "2024-05-16T03:02:44.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.326500", - "Timestamp": "2019-10-16T02:44:15.000Z" + "SpotPrice": "0.645800", + "Timestamp": "2024-05-16T03:02:44.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.412200", - "Timestamp": "2019-10-16T02:43:53.000Z" + "SpotPrice": "1.171800", + "Timestamp": "2024-05-16T03:02:44.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7g.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.382200", - "Timestamp": "2019-10-16T02:43:53.000Z" + "SpotPrice": "1.166800", + "Timestamp": "2024-05-16T03:02:44.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.282200", - "Timestamp": "2019-10-16T02:43:53.000Z" + "SpotPrice": "1.041800", + "Timestamp": "2024-05-16T03:02:44.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5ad.large", "ProductDescription": "Windows", - "SpotPrice": "1.038300", - "Timestamp": "2019-10-16T02:42:32.000Z" + "SpotPrice": "0.138200", + "Timestamp": "2024-05-16T03:02:42.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "gr6.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.038300", - "Timestamp": "2019-10-16T02:42:32.000Z" + "SpotPrice": "1.730500", + "Timestamp": "2024-05-16T03:02:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.038300", - "Timestamp": "2019-10-16T02:42:32.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.997700", + "Timestamp": "2024-05-16T03:02:39.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.479700", - "Timestamp": "2019-10-16T02:42:23.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.992700", + "Timestamp": "2024-05-16T03:02:39.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.479700", - "Timestamp": "2019-10-16T02:42:23.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.867700", + "Timestamp": "2024-05-16T03:02:39.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.479700", - "Timestamp": "2019-10-16T02:42:23.000Z" + "SpotPrice": "0.509300", + "Timestamp": "2024-05-16T03:02:37.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.449700", - "Timestamp": "2019-10-16T02:42:23.000Z" + "SpotPrice": "0.504300", + "Timestamp": "2024-05-16T03:02:37.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.449700", - "Timestamp": "2019-10-16T02:42:23.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.379300", + "Timestamp": "2024-05-16T03:02:37.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.449700", - "Timestamp": "2019-10-16T02:42:23.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.631600", + "Timestamp": "2024-05-16T03:02:37.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.349700", - "Timestamp": "2019-10-16T02:42:23.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.144400", + "Timestamp": "2024-05-16T03:02:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.349700", - "Timestamp": "2019-10-16T02:42:23.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.139400", + "Timestamp": "2024-05-16T03:02:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.349700", - "Timestamp": "2019-10-16T02:42:23.000Z" + "SpotPrice": "3.014400", + "Timestamp": "2024-05-16T03:02:36.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.293700", - "Timestamp": "2019-10-16T02:42:04.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271600", + "Timestamp": "2024-05-16T03:02:34.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.293700", - "Timestamp": "2019-10-16T02:42:04.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267600", + "Timestamp": "2024-05-16T03:02:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.293700", - "Timestamp": "2019-10-16T02:42:04.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.211600", + "Timestamp": "2024-05-16T03:02:34.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "h1.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "i2.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.551300", - "Timestamp": "2019-10-16T02:41:55.000Z" + "SpotPrice": "1.797000", + "Timestamp": "2024-05-16T03:02:33.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "h1.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i2.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.551300", - "Timestamp": "2019-10-16T02:41:55.000Z" + "SpotPrice": "1.881200", + "Timestamp": "2024-05-16T03:02:33.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.313300", - "Timestamp": "2019-10-16T02:41:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.250400", + "Timestamp": "2024-05-16T03:02:32.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "h1.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.313300", - "Timestamp": "2019-10-16T02:41:54.000Z" + "SpotPrice": "1.781700", + "Timestamp": "2024-05-16T03:02:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "h1.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.283300", - "Timestamp": "2019-10-16T02:41:54.000Z" + "SpotPrice": "1.776700", + "Timestamp": "2024-05-16T03:02:32.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "h1.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.283300", - "Timestamp": "2019-10-16T02:41:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.651700", + "Timestamp": "2024-05-16T03:02:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.183300", - "Timestamp": "2019-10-16T02:41:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.024300", + "Timestamp": "2024-05-16T03:02:32.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "h1.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.019300", + "Timestamp": "2024-05-16T03:02:32.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.183300", - "Timestamp": "2019-10-16T02:41:54.000Z" + "SpotPrice": "0.894300", + "Timestamp": "2024-05-16T03:02:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.229900", - "Timestamp": "2019-10-16T02:41:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.701400", + "Timestamp": "2024-05-16T03:02:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.229900", - "Timestamp": "2019-10-16T02:41:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.696400", + "Timestamp": "2024-05-16T03:02:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.229900", - "Timestamp": "2019-10-16T02:41:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.571400", + "Timestamp": "2024-05-16T03:02:30.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.943900", - "Timestamp": "2019-10-16T02:41:54.000Z" + "SpotPrice": "0.408300", + "Timestamp": "2024-05-16T03:02:24.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.943900", - "Timestamp": "2019-10-16T02:41:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.403300", + "Timestamp": "2024-05-16T03:02:24.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.278300", + "Timestamp": "2024-05-16T03:02:24.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.943900", - "Timestamp": "2019-10-16T02:41:54.000Z" + "SpotPrice": "0.141400", + "Timestamp": "2024-05-16T03:02:22.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.913900", - "Timestamp": "2019-10-16T02:41:54.000Z" + "SpotPrice": "0.137700", + "Timestamp": "2024-05-16T03:02:22.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.913900", - "Timestamp": "2019-10-16T02:41:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7iz.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081400", + "Timestamp": "2024-05-16T03:02:22.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.707600", + "Timestamp": "2024-05-16T03:02:21.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5g.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.913900", - "Timestamp": "2019-10-16T02:41:54.000Z" + "SpotPrice": "0.702600", + "Timestamp": "2024-05-16T03:02:21.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.813900", - "Timestamp": "2019-10-16T02:41:54.000Z" + "SpotPrice": "0.577600", + "Timestamp": "2024-05-16T03:02:21.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.813900", - "Timestamp": "2019-10-16T02:41:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.586200", + "Timestamp": "2024-05-16T03:02:19.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.813900", - "Timestamp": "2019-10-16T02:41:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.581200", + "Timestamp": "2024-05-16T03:02:19.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "z1d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-16T02:41:52.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.456200", + "Timestamp": "2024-05-16T03:02:19.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "z1d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-16T02:41:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.039200", + "Timestamp": "2024-05-16T03:02:15.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "z1d.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-16T02:41:52.000Z" + "SpotPrice": "0.482300", + "Timestamp": "2024-05-16T03:02:13.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "z1d.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-16T02:41:52.000Z" + "SpotPrice": "0.477300", + "Timestamp": "2024-05-16T03:02:13.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "z1d.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-16T02:41:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.352300", + "Timestamp": "2024-05-16T03:02:13.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "z1d.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-16T02:41:52.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.229800", + "Timestamp": "2024-05-16T03:02:13.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "z1d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-16T02:41:52.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098400", + "Timestamp": "2024-05-16T03:02:11.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "z1d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-16T02:41:52.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094400", + "Timestamp": "2024-05-16T03:02:11.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "z1d.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-16T02:41:52.000Z" + "SpotPrice": "0.038400", + "Timestamp": "2024-05-16T03:02:11.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "h1.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6idn.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.102600", - "Timestamp": "2019-10-16T02:41:39.000Z" + "SpotPrice": "8.254400", + "Timestamp": "2024-05-16T02:48:15.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "h1.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.102600", - "Timestamp": "2019-10-16T02:41:39.000Z" + "SpotPrice": "2.319300", + "Timestamp": "2024-05-16T02:48:10.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "h1.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.496600", - "Timestamp": "2019-10-16T02:41:39.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.142000", + "Timestamp": "2024-05-16T02:48:08.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "h1.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.496600", - "Timestamp": "2019-10-16T02:41:39.000Z" + "SpotPrice": "11.096200", + "Timestamp": "2024-05-16T02:48:05.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "h1.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.466600", - "Timestamp": "2019-10-16T02:41:39.000Z" + "SpotPrice": "11.091200", + "Timestamp": "2024-05-16T02:48:05.000Z" }, { - "AvailabilityZone": "eu-west-1c", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "10.966200", + "Timestamp": "2024-05-16T02:48:05.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.028400", + "Timestamp": "2024-05-16T02:48:05.000Z" + }, + { + "AvailabilityZone": "us-east-1a", "InstanceType": "h1.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.466600", - "Timestamp": "2019-10-16T02:41:39.000Z" + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.745900", + "Timestamp": "2024-05-16T02:47:57.000Z" }, { - "AvailabilityZone": "eu-west-1a", + "AvailabilityZone": "us-east-1a", "InstanceType": "h1.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.366600", - "Timestamp": "2019-10-16T02:41:39.000Z" + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.715900", + "Timestamp": "2024-05-16T02:47:57.000Z" }, { - "AvailabilityZone": "eu-west-1c", + "AvailabilityZone": "us-east-1a", "InstanceType": "h1.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.366600", - "Timestamp": "2019-10-16T02:41:39.000Z" + "SpotPrice": "0.615900", + "Timestamp": "2024-05-16T02:47:57.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.098300", - "Timestamp": "2019-10-16T02:41:38.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.689400", + "Timestamp": "2024-05-16T02:47:56.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.098300", - "Timestamp": "2019-10-16T02:41:38.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.684400", + "Timestamp": "2024-05-16T02:47:56.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.559400", + "Timestamp": "2024-05-16T02:47:56.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i.large", "ProductDescription": "Windows", - "SpotPrice": "4.098300", - "Timestamp": "2019-10-16T02:41:38.000Z" + "SpotPrice": "0.136900", + "Timestamp": "2024-05-16T02:47:54.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.284300", - "Timestamp": "2019-10-16T02:41:38.000Z" + "SpotPrice": "1.126700", + "Timestamp": "2024-05-16T02:47:54.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.284300", - "Timestamp": "2019-10-16T02:41:38.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.121700", + "Timestamp": "2024-05-16T02:47:54.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.284300", - "Timestamp": "2019-10-16T02:41:38.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.996700", + "Timestamp": "2024-05-16T02:47:54.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.254300", - "Timestamp": "2019-10-16T02:41:38.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.757800", + "Timestamp": "2024-05-16T02:47:54.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.254300", - "Timestamp": "2019-10-16T02:41:38.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.444700", + "Timestamp": "2024-05-16T02:47:52.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.254300", - "Timestamp": "2019-10-16T02:41:38.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.272800", + "Timestamp": "2024-05-16T02:47:52.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.154300", - "Timestamp": "2019-10-16T02:41:38.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.372800", + "Timestamp": "2024-05-16T02:47:50.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.154300", - "Timestamp": "2019-10-16T02:41:38.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.367800", + "Timestamp": "2024-05-16T02:47:50.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.154300", - "Timestamp": "2019-10-16T02:41:38.000Z" + "SpotPrice": "3.242800", + "Timestamp": "2024-05-16T02:47:50.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5dn.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.metal-48xl", "ProductDescription": "Windows", - "SpotPrice": "0.256100", - "Timestamp": "2019-10-16T02:40:12.000Z" + "SpotPrice": "12.676700", + "Timestamp": "2024-05-16T02:47:48.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.432300", - "Timestamp": "2019-10-16T02:39:10.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.159900", + "Timestamp": "2024-05-16T02:47:47.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.432300", - "Timestamp": "2019-10-16T02:39:10.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.629100", + "Timestamp": "2024-05-16T02:47:45.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5dn.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.432300", - "Timestamp": "2019-10-16T02:39:10.000Z" + "SpotPrice": "1.993800", + "Timestamp": "2024-05-16T02:47:45.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5dn.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.402300", - "Timestamp": "2019-10-16T02:39:10.000Z" + "SpotPrice": "1.963800", + "Timestamp": "2024-05-16T02:47:45.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.402300", - "Timestamp": "2019-10-16T02:39:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.863800", + "Timestamp": "2024-05-16T02:47:45.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.402300", - "Timestamp": "2019-10-16T02:39:10.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.428600", + "Timestamp": "2024-05-16T02:47:44.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.302300", - "Timestamp": "2019-10-16T02:39:10.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.423600", + "Timestamp": "2024-05-16T02:47:44.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.302300", - "Timestamp": "2019-10-16T02:39:10.000Z" + "SpotPrice": "0.298600", + "Timestamp": "2024-05-16T02:47:44.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.302300", - "Timestamp": "2019-10-16T02:39:10.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.737200", + "Timestamp": "2024-05-16T02:47:44.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.038300", - "Timestamp": "2019-10-16T02:39:10.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.732200", + "Timestamp": "2024-05-16T02:47:44.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.038300", - "Timestamp": "2019-10-16T02:39:10.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.607200", + "Timestamp": "2024-05-16T02:47:44.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5dn.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.038300", - "Timestamp": "2019-10-16T02:39:10.000Z" + "SpotPrice": "2.409400", + "Timestamp": "2024-05-16T02:47:43.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "h1.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.596400", - "Timestamp": "2019-10-16T02:38:49.000Z" + "SpotPrice": "2.333500", + "Timestamp": "2024-05-16T02:47:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "h1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.596400", - "Timestamp": "2019-10-16T02:38:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.328500", + "Timestamp": "2024-05-16T02:47:41.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "h1.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.566400", - "Timestamp": "2019-10-16T02:38:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.203500", + "Timestamp": "2024-05-16T02:47:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "h1.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131400", + "Timestamp": "2024-05-16T02:47:41.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.566400", - "Timestamp": "2019-10-16T02:38:49.000Z" + "SpotPrice": "0.127700", + "Timestamp": "2024-05-16T02:47:41.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "h1.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.466400", - "Timestamp": "2019-10-16T02:38:49.000Z" + "SpotPrice": "0.071400", + "Timestamp": "2024-05-16T02:47:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "h1.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.466400", - "Timestamp": "2019-10-16T02:38:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.733300", + "Timestamp": "2024-05-16T02:47:39.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "h1.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.410400", - "Timestamp": "2019-10-16T02:38:48.000Z" + "SpotPrice": "2.319300", + "Timestamp": "2024-05-16T02:47:39.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "h1.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3.medium", "ProductDescription": "Windows", - "SpotPrice": "4.410400", - "Timestamp": "2019-10-16T02:38:48.000Z" + "SpotPrice": "0.035500", + "Timestamp": "2024-05-16T02:47:37.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf1.6xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.305100", - "Timestamp": "2019-10-16T02:35:59.000Z" + "SpotPrice": "0.688800", + "Timestamp": "2024-05-16T02:47:36.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf1.6xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.275100", - "Timestamp": "2019-10-16T02:35:59.000Z" + "SpotPrice": "0.683800", + "Timestamp": "2024-05-16T02:47:36.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf1.6xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.175100", - "Timestamp": "2019-10-16T02:35:59.000Z" + "SpotPrice": "0.558800", + "Timestamp": "2024-05-16T02:47:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.627500", + "Timestamp": "2024-05-16T02:47:35.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267400", - "Timestamp": "2019-10-16T02:35:39.000Z" + "SpotPrice": "0.163400", + "Timestamp": "2024-05-16T02:47:35.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c3.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.237400", - "Timestamp": "2019-10-16T02:35:39.000Z" + "SpotPrice": "0.203400", + "Timestamp": "2024-05-16T02:47:35.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c3.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.137400", - "Timestamp": "2019-10-16T02:35:39.000Z" + "SpotPrice": "0.103400", + "Timestamp": "2024-05-16T02:47:35.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.284000", + "Timestamp": "2024-05-16T02:47:34.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.878100", + "Timestamp": "2024-05-16T02:47:34.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gd.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135000", - "Timestamp": "2019-10-16T02:35:38.000Z" + "SpotPrice": "1.155200", + "Timestamp": "2024-05-16T02:47:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gd.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175000", - "Timestamp": "2019-10-16T02:35:38.000Z" + "SpotPrice": "1.150200", + "Timestamp": "2024-05-16T02:47:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075000", - "Timestamp": "2019-10-16T02:35:38.000Z" + "SpotPrice": "1.025200", + "Timestamp": "2024-05-16T02:47:34.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.342200", + "Timestamp": "2024-05-16T02:47:31.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.731800", + "Timestamp": "2024-05-16T02:47:31.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.9xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.447200", - "Timestamp": "2019-10-16T02:35:21.000Z" + "SpotPrice": "0.880300", + "Timestamp": "2024-05-16T02:47:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.9xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.417200", - "Timestamp": "2019-10-16T02:35:21.000Z" + "SpotPrice": "0.850300", + "Timestamp": "2024-05-16T02:47:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5.9xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.317200", - "Timestamp": "2019-10-16T02:35:21.000Z" + "SpotPrice": "0.750300", + "Timestamp": "2024-05-16T02:47:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t4g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.348300", - "Timestamp": "2019-10-16T02:35:18.000Z" + "SpotPrice": "0.093600", + "Timestamp": "2024-05-16T02:47:26.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t4g.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.318300", - "Timestamp": "2019-10-16T02:35:18.000Z" + "SpotPrice": "0.089900", + "Timestamp": "2024-05-16T02:47:26.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t4g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.218300", - "Timestamp": "2019-10-16T02:35:18.000Z" + "SpotPrice": "0.033600", + "Timestamp": "2024-05-16T02:47:26.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.995700", - "Timestamp": "2019-10-16T02:32:20.000Z" + "SpotPrice": "1.271800", + "Timestamp": "2024-05-16T02:47:25.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.965700", - "Timestamp": "2019-10-16T02:32:20.000Z" + "SpotPrice": "1.266800", + "Timestamp": "2024-05-16T02:47:25.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.865700", - "Timestamp": "2019-10-16T02:32:20.000Z" + "SpotPrice": "1.141800", + "Timestamp": "2024-05-16T02:47:25.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf2.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.454400", - "Timestamp": "2019-10-16T02:27:52.000Z" + "SpotPrice": "2.576800", + "Timestamp": "2024-05-16T02:47:20.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf2.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.424400", - "Timestamp": "2019-10-16T02:27:52.000Z" + "SpotPrice": "2.546800", + "Timestamp": "2024-05-16T02:47:20.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "inf2.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.324400", - "Timestamp": "2019-10-16T02:27:52.000Z" + "SpotPrice": "2.446800", + "Timestamp": "2024-05-16T02:47:20.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.287200", - "Timestamp": "2019-10-16T02:27:18.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.743900", + "Timestamp": "2024-05-16T02:47:20.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.738900", + "Timestamp": "2024-05-16T02:47:20.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.613900", + "Timestamp": "2024-05-16T02:47:20.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6id.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.287200", - "Timestamp": "2019-10-16T02:27:18.000Z" + "SpotPrice": "0.564500", + "Timestamp": "2024-05-16T02:47:19.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "p2.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.287200", - "Timestamp": "2019-10-16T02:27:18.000Z" + "SpotPrice": "0.559800", + "Timestamp": "2024-05-16T02:47:17.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.429400", - "Timestamp": "2019-10-16T02:27:15.000Z" + "SpotPrice": "1.106400", + "Timestamp": "2024-05-16T02:47:17.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.399400", - "Timestamp": "2019-10-16T02:27:15.000Z" + "SpotPrice": "1.101400", + "Timestamp": "2024-05-16T02:47:17.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.299400", - "Timestamp": "2019-10-16T02:27:15.000Z" + "SpotPrice": "0.976400", + "Timestamp": "2024-05-16T02:47:17.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.339400", - "Timestamp": "2019-10-16T02:26:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.496700", + "Timestamp": "2024-05-16T02:47:07.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.309400", - "Timestamp": "2019-10-16T02:26:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.243900", + "Timestamp": "2024-05-16T02:33:13.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.209400", - "Timestamp": "2019-10-16T02:26:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.075500", + "Timestamp": "2024-05-16T02:33:09.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.129800", - "Timestamp": "2019-10-16T02:26:24.000Z" + "SpotPrice": "4.425700", + "Timestamp": "2024-05-16T02:33:07.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1e", + "InstanceType": "d2.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.129800", - "Timestamp": "2019-10-16T02:26:24.000Z" + "SpotPrice": "0.774800", + "Timestamp": "2024-05-16T02:33:07.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.129800", - "Timestamp": "2019-10-16T02:26:24.000Z" + "SpotPrice": "0.287100", + "Timestamp": "2024-05-16T02:33:05.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097800", - "Timestamp": "2019-10-16T02:25:33.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.134400", + "Timestamp": "2024-05-16T02:33:00.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097800", - "Timestamp": "2019-10-16T02:25:33.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.624400", + "Timestamp": "2024-05-16T02:32:55.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.527400", + "Timestamp": "2024-05-16T02:32:54.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097800", - "Timestamp": "2019-10-16T02:25:33.000Z" + "SpotPrice": "0.136300", + "Timestamp": "2024-05-16T02:32:54.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137800", - "Timestamp": "2019-10-16T02:25:33.000Z" + "SpotPrice": "0.132600", + "Timestamp": "2024-05-16T02:32:54.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137800", - "Timestamp": "2019-10-16T02:25:33.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076300", + "Timestamp": "2024-05-16T02:32:54.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.134400", + "Timestamp": "2024-05-16T02:32:51.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.147200", + "Timestamp": "2024-05-16T02:32:51.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273800", + "Timestamp": "2024-05-16T02:32:50.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gn.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137800", - "Timestamp": "2019-10-16T02:25:33.000Z" + "SpotPrice": "0.268800", + "Timestamp": "2024-05-16T02:32:50.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037800", - "Timestamp": "2019-10-16T02:25:33.000Z" + "SpotPrice": "0.143800", + "Timestamp": "2024-05-16T02:32:50.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037800", - "Timestamp": "2019-10-16T02:25:33.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.229000", + "Timestamp": "2024-05-16T02:32:50.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.225300", + "Timestamp": "2024-05-16T02:32:50.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5dn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037800", - "Timestamp": "2019-10-16T02:25:33.000Z" + "SpotPrice": "0.169000", + "Timestamp": "2024-05-16T02:32:50.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.163200", - "Timestamp": "2019-10-16T02:25:03.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.277100", + "Timestamp": "2024-05-16T02:32:45.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.163200", - "Timestamp": "2019-10-16T02:25:03.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.614300", + "Timestamp": "2024-05-16T02:32:45.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.168600", + "Timestamp": "2024-05-16T02:32:45.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "a1.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.163200", - "Timestamp": "2019-10-16T02:25:03.000Z" + "SpotPrice": "0.237600", + "Timestamp": "2024-05-16T02:32:45.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "a1.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.203200", - "Timestamp": "2019-10-16T02:25:03.000Z" + "SpotPrice": "0.232600", + "Timestamp": "2024-05-16T02:32:45.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.203200", - "Timestamp": "2019-10-16T02:25:03.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T02:32:45.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.563800", + "Timestamp": "2024-05-16T02:32:44.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.332200", + "Timestamp": "2024-05-16T02:32:40.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.098700", + "Timestamp": "2024-05-16T02:32:37.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.203200", - "Timestamp": "2019-10-16T02:25:03.000Z" + "SpotPrice": "2.093700", + "Timestamp": "2024-05-16T02:32:37.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5ad.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.103200", - "Timestamp": "2019-10-16T02:25:03.000Z" + "SpotPrice": "1.968700", + "Timestamp": "2024-05-16T02:32:37.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.103200", - "Timestamp": "2019-10-16T02:25:03.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.570600", + "Timestamp": "2024-05-16T02:32:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.565600", + "Timestamp": "2024-05-16T02:32:36.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "g4ad.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.103200", - "Timestamp": "2019-10-16T02:25:03.000Z" + "SpotPrice": "1.440600", + "Timestamp": "2024-05-16T02:32:36.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "x1e.32xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "15.488000", - "Timestamp": "2019-10-16T02:20:56.000Z" + "SpotPrice": "1.114100", + "Timestamp": "2024-05-16T02:32:34.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "x1e.32xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.203100", + "Timestamp": "2024-05-16T02:32:34.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.199100", + "Timestamp": "2024-05-16T02:32:34.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143100", + "Timestamp": "2024-05-16T02:32:34.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4dn.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "15.488000", - "Timestamp": "2019-10-16T02:20:56.000Z" + "SpotPrice": "2.387300", + "Timestamp": "2024-05-16T02:32:33.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5d.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.153300", - "Timestamp": "2019-10-16T02:15:07.000Z" + "SpotPrice": "6.665900", + "Timestamp": "2024-05-16T02:32:32.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.880100", - "Timestamp": "2019-10-16T02:11:09.000Z" + "SpotPrice": "0.134800", + "Timestamp": "2024-05-16T02:32:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7g.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.850100", - "Timestamp": "2019-10-16T02:11:09.000Z" + "SpotPrice": "0.131100", + "Timestamp": "2024-05-16T02:32:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.750100", - "Timestamp": "2019-10-16T02:11:09.000Z" + "SpotPrice": "0.074800", + "Timestamp": "2024-05-16T02:32:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t4g.small", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.835600", - "Timestamp": "2019-10-16T02:11:07.000Z" + "SpotPrice": "0.068100", + "Timestamp": "2024-05-16T02:32:26.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t4g.small", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.805600", - "Timestamp": "2019-10-16T02:11:07.000Z" + "SpotPrice": "0.039400", + "Timestamp": "2024-05-16T02:32:26.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t4g.small", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.705600", - "Timestamp": "2019-10-16T02:11:07.000Z" + "SpotPrice": "0.008100", + "Timestamp": "2024-05-16T02:32:26.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.583800", + "Timestamp": "2024-05-16T02:32:26.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c3.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.436500", - "Timestamp": "2019-10-16T02:10:49.000Z" + "SpotPrice": "0.511600", + "Timestamp": "2024-05-16T02:32:26.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c3.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.406500", - "Timestamp": "2019-10-16T02:10:49.000Z" + "SpotPrice": "0.481600", + "Timestamp": "2024-05-16T02:32:26.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c3.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.306500", - "Timestamp": "2019-10-16T02:10:49.000Z" + "SpotPrice": "0.381600", + "Timestamp": "2024-05-16T02:32:26.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gd.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.454500", - "Timestamp": "2019-10-16T02:10:31.000Z" + "SpotPrice": "0.449700", + "Timestamp": "2024-05-16T02:32:24.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gd.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.424500", - "Timestamp": "2019-10-16T02:10:31.000Z" + "SpotPrice": "0.444700", + "Timestamp": "2024-05-16T02:32:24.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.324500", - "Timestamp": "2019-10-16T02:10:31.000Z" + "SpotPrice": "0.319700", + "Timestamp": "2024-05-16T02:32:24.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.139000", - "Timestamp": "2019-10-16T02:10:22.000Z" + "SpotPrice": "0.148000", + "Timestamp": "2024-05-16T02:32:24.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.179000", - "Timestamp": "2019-10-16T02:10:22.000Z" + "SpotPrice": "0.144000", + "Timestamp": "2024-05-16T02:32:24.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.079000", - "Timestamp": "2019-10-16T02:10:22.000Z" + "SpotPrice": "0.088000", + "Timestamp": "2024-05-16T02:32:24.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.141200", - "Timestamp": "2019-10-16T02:10:20.000Z" + "SpotPrice": "1.291100", + "Timestamp": "2024-05-16T02:32:24.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.181200", - "Timestamp": "2019-10-16T02:10:20.000Z" + "SpotPrice": "1.286100", + "Timestamp": "2024-05-16T02:32:24.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5ad.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.081200", - "Timestamp": "2019-10-16T02:10:20.000Z" + "SpotPrice": "1.161100", + "Timestamp": "2024-05-16T02:32:24.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.643100", - "Timestamp": "2019-10-16T02:10:12.000Z" + "SpotPrice": "0.301800", + "Timestamp": "2024-05-16T02:32:19.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.613100", - "Timestamp": "2019-10-16T02:10:12.000Z" + "SpotPrice": "0.296800", + "Timestamp": "2024-05-16T02:32:19.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.513100", - "Timestamp": "2019-10-16T02:10:12.000Z" + "SpotPrice": "0.171800", + "Timestamp": "2024-05-16T02:32:19.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094400", - "Timestamp": "2019-10-16T02:05:12.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.266000", + "Timestamp": "2024-05-16T02:32:16.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094400", - "Timestamp": "2019-10-16T02:05:12.000Z" + "SpotPrice": "0.175900", + "Timestamp": "2024-05-16T02:32:16.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094400", - "Timestamp": "2019-10-16T02:05:12.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172200", + "Timestamp": "2024-05-16T02:32:16.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134400", - "Timestamp": "2019-10-16T02:05:12.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115900", + "Timestamp": "2024-05-16T02:32:16.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134400", - "Timestamp": "2019-10-16T02:05:12.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.171300", + "Timestamp": "2024-05-16T02:32:15.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134400", - "Timestamp": "2019-10-16T02:05:12.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.826800", + "Timestamp": "2024-05-16T02:32:15.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034400", - "Timestamp": "2019-10-16T02:05:12.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078600", + "Timestamp": "2024-05-16T02:32:14.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034400", - "Timestamp": "2019-10-16T02:05:12.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074900", + "Timestamp": "2024-05-16T02:32:14.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034400", - "Timestamp": "2019-10-16T02:05:12.000Z" + "SpotPrice": "0.018600", + "Timestamp": "2024-05-16T02:32:14.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "d3.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.126400", - "Timestamp": "2019-10-16T02:04:54.000Z" + "SpotPrice": "3.104800", + "Timestamp": "2024-05-16T02:32:12.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "d2.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.126400", - "Timestamp": "2019-10-16T02:04:54.000Z" + "SpotPrice": "1.388300", + "Timestamp": "2024-05-16T02:32:09.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t2.medium", "ProductDescription": "Windows", - "SpotPrice": "0.126400", - "Timestamp": "2019-10-16T02:04:54.000Z" + "SpotPrice": "0.038800", + "Timestamp": "2024-05-16T02:18:37.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135000", - "Timestamp": "2019-10-16T02:04:42.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.614500", + "Timestamp": "2024-05-16T02:18:25.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135000", - "Timestamp": "2019-10-16T02:04:42.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.310700", + "Timestamp": "2024-05-16T02:18:22.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135000", - "Timestamp": "2019-10-16T02:04:42.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.275100", + "Timestamp": "2024-05-16T02:18:18.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175000", - "Timestamp": "2019-10-16T02:04:42.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.289000", + "Timestamp": "2024-05-16T02:18:16.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175000", - "Timestamp": "2019-10-16T02:04:42.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119600", + "Timestamp": "2024-05-16T02:18:09.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175000", - "Timestamp": "2019-10-16T02:04:42.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075000", - "Timestamp": "2019-10-16T02:04:42.000Z" + "SpotPrice": "0.115900", + "Timestamp": "2024-05-16T02:18:09.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075000", - "Timestamp": "2019-10-16T02:04:42.000Z" + "SpotPrice": "0.059600", + "Timestamp": "2024-05-16T02:18:09.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075000", - "Timestamp": "2019-10-16T02:04:42.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.269900", + "Timestamp": "2024-05-16T02:18:07.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "x1e.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.167000", - "Timestamp": "2019-10-16T02:04:41.000Z" + "SpotPrice": "2.048300", + "Timestamp": "2024-05-16T02:18:00.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.large", "ProductDescription": "Windows", - "SpotPrice": "0.167000", - "Timestamp": "2019-10-16T02:04:41.000Z" + "SpotPrice": "0.159600", + "Timestamp": "2024-05-16T02:17:54.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7a.large", "ProductDescription": "Windows", - "SpotPrice": "0.167000", - "Timestamp": "2019-10-16T02:04:41.000Z" + "SpotPrice": "0.158900", + "Timestamp": "2024-05-16T02:17:53.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i-flex.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.289100", - "Timestamp": "2019-10-16T02:02:12.000Z" + "SpotPrice": "0.107200", + "Timestamp": "2024-05-16T02:17:48.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i-flex.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.259100", - "Timestamp": "2019-10-16T02:02:12.000Z" + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T02:17:48.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7i-flex.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.159100", - "Timestamp": "2019-10-16T02:02:12.000Z" + "SpotPrice": "0.047200", + "Timestamp": "2024-05-16T02:17:48.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.large", "ProductDescription": "Windows", - "SpotPrice": "4.153300", - "Timestamp": "2019-10-16T01:59:07.000Z" + "SpotPrice": "0.131800", + "Timestamp": "2024-05-16T02:17:47.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132900", - "Timestamp": "2019-10-16T01:54:15.000Z" + "SpotPrice": "4.222000", + "Timestamp": "2024-05-16T02:17:45.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172900", - "Timestamp": "2019-10-16T01:54:15.000Z" + "SpotPrice": "4.217000", + "Timestamp": "2024-05-16T02:17:45.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072900", - "Timestamp": "2019-10-16T01:54:15.000Z" + "SpotPrice": "4.092000", + "Timestamp": "2024-05-16T02:17:45.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.283200", - "Timestamp": "2019-10-16T01:53:50.000Z" + "SpotPrice": "0.139600", + "Timestamp": "2024-05-16T02:17:44.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.253200", - "Timestamp": "2019-10-16T01:53:50.000Z" + "SpotPrice": "0.179600", + "Timestamp": "2024-05-16T02:17:44.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i3.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.153200", - "Timestamp": "2019-10-16T01:53:50.000Z" + "SpotPrice": "0.079600", + "Timestamp": "2024-05-16T02:17:44.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t2.micro", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.441800", - "Timestamp": "2019-10-16T01:53:45.000Z" + "SpotPrice": "0.064400", + "Timestamp": "2024-05-16T02:17:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t2.micro", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.411800", - "Timestamp": "2019-10-16T01:53:45.000Z" + "SpotPrice": "0.004400", + "Timestamp": "2024-05-16T02:17:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t2.micro", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.311800", - "Timestamp": "2019-10-16T01:53:45.000Z" + "SpotPrice": "0.004400", + "Timestamp": "2024-05-16T02:17:41.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.129800", - "Timestamp": "2019-10-16T01:49:46.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.527100", + "Timestamp": "2024-05-16T02:17:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.497100", + "Timestamp": "2024-05-16T02:17:34.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.397100", + "Timestamp": "2024-05-16T02:17:34.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5d.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.323600", - "Timestamp": "2019-10-16T01:46:08.000Z" + "SpotPrice": "6.732900", + "Timestamp": "2024-05-16T02:17:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.359300", - "Timestamp": "2019-10-16T01:45:53.000Z" + "SpotPrice": "0.100200", + "Timestamp": "2024-05-16T02:17:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "4.329300", - "Timestamp": "2019-10-16T01:45:53.000Z" + "SpotPrice": "0.096500", + "Timestamp": "2024-05-16T02:17:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.229300", - "Timestamp": "2019-10-16T01:45:53.000Z" + "SpotPrice": "0.040200", + "Timestamp": "2024-05-16T02:17:31.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.407200", - "Timestamp": "2019-10-16T01:45:29.000Z" + "SpotPrice": "0.953200", + "Timestamp": "2024-05-16T02:17:25.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.377200", - "Timestamp": "2019-10-16T01:45:29.000Z" + "SpotPrice": "0.948200", + "Timestamp": "2024-05-16T02:17:25.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5ad.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.277200", - "Timestamp": "2019-10-16T01:45:29.000Z" + "SpotPrice": "0.823200", + "Timestamp": "2024-05-16T02:17:25.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.458100", - "Timestamp": "2019-10-16T01:45:28.000Z" + "SpotPrice": "0.102700", + "Timestamp": "2024-05-16T02:17:24.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.428100", - "Timestamp": "2019-10-16T01:45:28.000Z" + "SpotPrice": "0.099000", + "Timestamp": "2024-05-16T02:17:24.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.328100", - "Timestamp": "2019-10-16T01:45:28.000Z" + "SpotPrice": "0.042700", + "Timestamp": "2024-05-16T02:17:24.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.445500", - "Timestamp": "2019-10-16T01:45:22.000Z" + "SpotPrice": "0.162800", + "Timestamp": "2024-05-16T02:17:24.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.415500", - "Timestamp": "2019-10-16T01:45:22.000Z" + "SpotPrice": "0.202800", + "Timestamp": "2024-05-16T02:17:24.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m4.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.315500", - "Timestamp": "2019-10-16T01:45:22.000Z" + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T02:17:24.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6in.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.049100", - "Timestamp": "2019-10-16T01:43:10.000Z" + "SpotPrice": "3.498100", + "Timestamp": "2024-05-16T02:17:22.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.049100", - "Timestamp": "2019-10-16T01:43:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120900", + "Timestamp": "2024-05-16T02:17:15.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.049100", - "Timestamp": "2019-10-16T01:43:10.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-16T02:17:15.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060900", + "Timestamp": "2024-05-16T02:17:15.000Z" + }, + { + "AvailabilityZone": "us-east-1e", + "InstanceType": "c4.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.351600", - "Timestamp": "2019-10-16T01:42:59.000Z" + "SpotPrice": "0.109300", + "Timestamp": "2024-05-16T02:17:13.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "c4.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.391600", - "Timestamp": "2019-10-16T01:42:59.000Z" + "SpotPrice": "0.149300", + "Timestamp": "2024-05-16T02:17:13.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "c4.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.291600", - "Timestamp": "2019-10-16T01:42:59.000Z" + "SpotPrice": "0.049300", + "Timestamp": "2024-05-16T02:17:13.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.475600", - "Timestamp": "2019-10-16T01:42:58.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074600", + "Timestamp": "2024-05-16T02:17:13.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.475600", - "Timestamp": "2019-10-16T01:42:58.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070900", + "Timestamp": "2024-05-16T02:17:13.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.475600", - "Timestamp": "2019-10-16T01:42:58.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014600", + "Timestamp": "2024-05-16T02:17:13.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.462800", - "Timestamp": "2019-10-16T01:42:54.000Z" + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T02:17:12.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.462800", - "Timestamp": "2019-10-16T01:42:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099000", + "Timestamp": "2024-05-16T02:17:12.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.432800", - "Timestamp": "2019-10-16T01:42:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043000", + "Timestamp": "2024-05-16T02:17:12.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.432800", - "Timestamp": "2019-10-16T01:42:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306000", + "Timestamp": "2024-05-16T02:17:11.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.332800", - "Timestamp": "2019-10-16T01:42:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301000", + "Timestamp": "2024-05-16T02:17:11.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.332800", - "Timestamp": "2019-10-16T01:42:54.000Z" + "SpotPrice": "0.176000", + "Timestamp": "2024-05-16T02:17:11.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.804800", - "Timestamp": "2019-10-16T01:42:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069000", + "Timestamp": "2024-05-16T02:17:04.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.804800", - "Timestamp": "2019-10-16T01:42:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040000", + "Timestamp": "2024-05-16T02:17:04.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.804800", - "Timestamp": "2019-10-16T01:42:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009000", + "Timestamp": "2024-05-16T02:17:04.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125400", - "Timestamp": "2019-10-16T01:42:41.000Z" + "SpotPrice": "0.118300", + "Timestamp": "2024-05-16T02:03:08.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125400", - "Timestamp": "2019-10-16T01:42:41.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T02:03:08.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058300", + "Timestamp": "2024-05-16T02:03:08.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125400", - "Timestamp": "2019-10-16T01:42:41.000Z" + "SpotPrice": "0.141600", + "Timestamp": "2024-05-16T02:02:57.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.165400", - "Timestamp": "2019-10-16T01:42:41.000Z" + "SpotPrice": "0.137900", + "Timestamp": "2024-05-16T02:02:57.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.165400", - "Timestamp": "2019-10-16T01:42:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081600", + "Timestamp": "2024-05-16T02:02:57.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.182000", + "Timestamp": "2024-05-16T02:02:55.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4g.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.165400", - "Timestamp": "2019-10-16T01:42:41.000Z" + "SpotPrice": "0.178300", + "Timestamp": "2024-05-16T02:02:55.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i4g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065400", - "Timestamp": "2019-10-16T01:42:41.000Z" + "SpotPrice": "0.122000", + "Timestamp": "2024-05-16T02:02:55.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065400", - "Timestamp": "2019-10-16T01:42:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083000", + "Timestamp": "2024-05-16T02:02:54.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079300", + "Timestamp": "2024-05-16T02:02:54.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065400", - "Timestamp": "2019-10-16T01:42:41.000Z" + "SpotPrice": "0.023000", + "Timestamp": "2024-05-16T02:02:54.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5n.large", "ProductDescription": "Windows", - "SpotPrice": "1.038300", - "Timestamp": "2019-10-16T01:42:39.000Z" + "SpotPrice": "0.141400", + "Timestamp": "2024-05-16T02:02:48.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.038300", - "Timestamp": "2019-10-16T01:42:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119200", + "Timestamp": "2024-05-16T02:02:41.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.038300", - "Timestamp": "2019-10-16T01:42:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115500", + "Timestamp": "2024-05-16T02:02:41.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.289400", - "Timestamp": "2019-10-16T01:42:36.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059200", + "Timestamp": "2024-05-16T02:02:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.289400", - "Timestamp": "2019-10-16T01:42:36.000Z" + "SpotPrice": "0.254300", + "Timestamp": "2024-05-16T02:02:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.289400", - "Timestamp": "2019-10-16T01:42:36.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.405200", + "Timestamp": "2024-05-16T02:02:25.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.252700", - "Timestamp": "2019-10-16T01:42:14.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.400200", + "Timestamp": "2024-05-16T02:02:25.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.275200", + "Timestamp": "2024-05-16T02:02:25.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5dn.large", "ProductDescription": "Windows", - "SpotPrice": "0.252700", - "Timestamp": "2019-10-16T01:42:14.000Z" + "SpotPrice": "0.150000", + "Timestamp": "2024-05-16T02:02:24.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.252700", - "Timestamp": "2019-10-16T01:42:14.000Z" + "SpotPrice": "0.139500", + "Timestamp": "2024-05-16T02:02:19.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129800", - "Timestamp": "2019-10-16T01:41:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.134400", + "Timestamp": "2024-05-16T02:02:19.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.130400", - "Timestamp": "2019-10-16T01:41:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.280500", + "Timestamp": "2024-05-16T02:02:16.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.130300", - "Timestamp": "2019-10-16T01:41:54.000Z" + "SpotPrice": "0.457600", + "Timestamp": "2024-05-16T02:02:07.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.169800", - "Timestamp": "2019-10-16T01:41:54.000Z" + "SpotPrice": "0.452600", + "Timestamp": "2024-05-16T02:02:07.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.170400", - "Timestamp": "2019-10-16T01:41:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.327600", + "Timestamp": "2024-05-16T02:02:07.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.170300", - "Timestamp": "2019-10-16T01:41:54.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.515900", + "Timestamp": "2024-05-16T02:02:06.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069800", - "Timestamp": "2019-10-16T01:41:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117500", + "Timestamp": "2024-05-16T01:48:22.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.070400", - "Timestamp": "2019-10-16T01:41:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157500", + "Timestamp": "2024-05-16T01:48:22.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c3.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.070300", - "Timestamp": "2019-10-16T01:41:54.000Z" + "SpotPrice": "0.057500", + "Timestamp": "2024-05-16T01:48:22.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6id.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.252700", - "Timestamp": "2019-10-16T01:41:54.000Z" + "SpotPrice": "0.529800", + "Timestamp": "2024-05-16T01:48:18.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.medium", "ProductDescription": "Windows", - "SpotPrice": "0.252700", - "Timestamp": "2019-10-16T01:41:54.000Z" + "SpotPrice": "0.036700", + "Timestamp": "2024-05-16T01:48:17.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.252700", - "Timestamp": "2019-10-16T01:41:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094800", + "Timestamp": "2024-05-16T01:48:07.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "f1.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.219000", - "Timestamp": "2019-10-16T01:41:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091100", + "Timestamp": "2024-05-16T01:48:07.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "f1.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.219000", - "Timestamp": "2019-10-16T01:41:48.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034800", + "Timestamp": "2024-05-16T01:48:07.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "f1.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.019100", + "Timestamp": "2024-05-16T01:47:47.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.219000", - "Timestamp": "2019-10-16T01:41:48.000Z" + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T01:47:46.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "f1.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.189000", - "Timestamp": "2019-10-16T01:41:48.000Z" + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T01:47:46.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "f1.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.189000", - "Timestamp": "2019-10-16T01:41:48.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049400", + "Timestamp": "2024-05-16T01:47:46.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "f1.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.189000", - "Timestamp": "2019-10-16T01:41:48.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.269300", + "Timestamp": "2024-05-16T01:47:44.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "f1.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.089000", - "Timestamp": "2019-10-16T01:41:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081600", + "Timestamp": "2024-05-16T01:47:43.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "f1.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.089000", - "Timestamp": "2019-10-16T01:41:48.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121600", + "Timestamp": "2024-05-16T01:47:43.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "f1.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t2.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.089000", - "Timestamp": "2019-10-16T01:41:48.000Z" + "SpotPrice": "0.021600", + "Timestamp": "2024-05-16T01:47:43.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.548700", - "Timestamp": "2019-10-16T01:41:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.310900", + "Timestamp": "2024-05-16T01:47:43.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.548700", - "Timestamp": "2019-10-16T01:41:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.280900", + "Timestamp": "2024-05-16T01:47:43.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.548700", - "Timestamp": "2019-10-16T01:41:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "g6.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180900", + "Timestamp": "2024-05-16T01:47:43.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.366700", - "Timestamp": "2019-10-16T01:41:38.000Z" + "SpotPrice": "0.111500", + "Timestamp": "2024-05-16T01:47:42.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.366700", - "Timestamp": "2019-10-16T01:41:38.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107800", + "Timestamp": "2024-05-16T01:47:42.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.366700", - "Timestamp": "2019-10-16T01:41:38.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051500", + "Timestamp": "2024-05-16T01:47:42.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.336700", - "Timestamp": "2019-10-16T01:41:38.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.013500", + "Timestamp": "2024-05-16T01:47:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.336700", - "Timestamp": "2019-10-16T01:41:38.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097800", + "Timestamp": "2024-05-16T01:47:33.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.336700", - "Timestamp": "2019-10-16T01:41:38.000Z" + "SpotPrice": "0.094100", + "Timestamp": "2024-05-16T01:47:33.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.236700", - "Timestamp": "2019-10-16T01:41:38.000Z" + "SpotPrice": "0.037800", + "Timestamp": "2024-05-16T01:47:33.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.236700", - "Timestamp": "2019-10-16T01:41:38.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.463600", + "Timestamp": "2024-05-16T01:47:32.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.458600", + "Timestamp": "2024-05-16T01:47:32.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.236700", - "Timestamp": "2019-10-16T01:41:38.000Z" + "SpotPrice": "0.333600", + "Timestamp": "2024-05-16T01:47:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.114900", - "Timestamp": "2019-10-16T01:41:38.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141800", + "Timestamp": "2024-05-16T01:47:27.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.114900", - "Timestamp": "2019-10-16T01:41:38.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137800", + "Timestamp": "2024-05-16T01:47:27.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.256000", - "Timestamp": "2019-10-16T01:41:38.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081800", + "Timestamp": "2024-05-16T01:47:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "a1.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.036900", - "Timestamp": "2019-10-16T01:41:38.000Z" + "SpotPrice": "0.329500", + "Timestamp": "2024-05-16T01:33:35.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.036900", - "Timestamp": "2019-10-16T01:41:38.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "a1.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324500", + "Timestamp": "2024-05-16T01:33:35.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "a1.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199500", + "Timestamp": "2024-05-16T01:33:35.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.178000", - "Timestamp": "2019-10-16T01:41:38.000Z" + "SpotPrice": "0.078900", + "Timestamp": "2024-05-16T01:33:18.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.006900", - "Timestamp": "2019-10-16T01:41:38.000Z" + "SpotPrice": "0.049900", + "Timestamp": "2024-05-16T01:33:18.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.006900", - "Timestamp": "2019-10-16T01:41:38.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018900", + "Timestamp": "2024-05-16T01:33:18.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.148000", - "Timestamp": "2019-10-16T01:41:38.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.144400", + "Timestamp": "2024-05-16T01:32:59.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.906900", - "Timestamp": "2019-10-16T01:41:38.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.488700", + "Timestamp": "2024-05-16T01:32:57.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.906900", - "Timestamp": "2019-10-16T01:41:38.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.458700", + "Timestamp": "2024-05-16T01:32:57.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "c3.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.048000", - "Timestamp": "2019-10-16T01:41:38.000Z" + "SpotPrice": "0.358700", + "Timestamp": "2024-05-16T01:32:57.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.381400", - "Timestamp": "2019-10-16T01:41:00.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5zn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.154900", + "Timestamp": "2024-05-16T01:32:53.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.381400", - "Timestamp": "2019-10-16T01:41:00.000Z" + "SpotPrice": "0.146100", + "Timestamp": "2024-05-16T01:32:42.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142400", + "Timestamp": "2024-05-16T01:32:42.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086100", + "Timestamp": "2024-05-16T01:32:42.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.381400", - "Timestamp": "2019-10-16T01:41:00.000Z" + "SpotPrice": "0.131600", + "Timestamp": "2024-05-16T01:32:30.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6g.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.351400", - "Timestamp": "2019-10-16T01:41:00.000Z" + "SpotPrice": "0.127900", + "Timestamp": "2024-05-16T01:32:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.351400", - "Timestamp": "2019-10-16T01:41:00.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071600", + "Timestamp": "2024-05-16T01:32:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097000", + "Timestamp": "2024-05-16T01:32:27.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7g.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.351400", - "Timestamp": "2019-10-16T01:41:00.000Z" + "SpotPrice": "0.093300", + "Timestamp": "2024-05-16T01:32:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.251400", - "Timestamp": "2019-10-16T01:41:00.000Z" + "SpotPrice": "0.037000", + "Timestamp": "2024-05-16T01:32:27.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.251400", - "Timestamp": "2019-10-16T01:41:00.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.009400", + "Timestamp": "2024-05-16T01:18:45.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.251400", - "Timestamp": "2019-10-16T01:41:00.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.180900", + "Timestamp": "2024-05-16T01:18:17.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.036900", - "Timestamp": "2019-10-16T01:40:58.000Z" + "SpotPrice": "0.106100", + "Timestamp": "2024-05-16T01:18:12.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.006900", - "Timestamp": "2019-10-16T01:40:58.000Z" + "SpotPrice": "0.102400", + "Timestamp": "2024-05-16T01:18:12.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6id.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.906900", - "Timestamp": "2019-10-16T01:40:58.000Z" + "SpotPrice": "0.046100", + "Timestamp": "2024-05-16T01:18:12.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t2.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.619400", - "Timestamp": "2019-10-16T01:40:55.000Z" + "SpotPrice": "0.228500", + "Timestamp": "2024-05-16T01:18:09.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.619400", - "Timestamp": "2019-10-16T01:40:55.000Z" + "SpotPrice": "0.261700", + "Timestamp": "2024-05-16T01:18:08.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.619400", - "Timestamp": "2019-10-16T01:40:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-16T01:17:49.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.236100", - "Timestamp": "2019-10-16T01:39:21.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T01:17:49.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.236100", - "Timestamp": "2019-10-16T01:39:21.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044500", + "Timestamp": "2024-05-16T01:17:49.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g4dn.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m1.small", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.236100", - "Timestamp": "2019-10-16T01:39:21.000Z" + "SpotPrice": "0.078000", + "Timestamp": "2024-05-16T01:17:42.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g4dn.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m1.small", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.276100", - "Timestamp": "2019-10-16T01:39:21.000Z" + "SpotPrice": "0.048000", + "Timestamp": "2024-05-16T01:17:42.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.276100", - "Timestamp": "2019-10-16T01:39:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m1.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018000", + "Timestamp": "2024-05-16T01:17:42.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.276100", - "Timestamp": "2019-10-16T01:39:21.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.069000", + "Timestamp": "2024-05-16T01:17:42.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.176100", - "Timestamp": "2019-10-16T01:39:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133100", + "Timestamp": "2024-05-16T01:17:40.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.176100", - "Timestamp": "2019-10-16T01:39:21.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129400", + "Timestamp": "2024-05-16T01:17:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g4dn.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.176100", - "Timestamp": "2019-10-16T01:39:21.000Z" + "SpotPrice": "0.073100", + "Timestamp": "2024-05-16T01:17:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g4dn.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.360100", - "Timestamp": "2019-10-16T01:38:58.000Z" + "SpotPrice": "0.281200", + "Timestamp": "2024-05-16T01:17:35.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g4dn.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5a.large", "ProductDescription": "Windows", - "SpotPrice": "0.360100", - "Timestamp": "2019-10-16T01:38:58.000Z" + "SpotPrice": "0.129500", + "Timestamp": "2024-05-16T01:17:35.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g4dn.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135800", + "Timestamp": "2024-05-16T01:17:32.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132100", + "Timestamp": "2024-05-16T01:17:32.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "x2gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075800", + "Timestamp": "2024-05-16T01:17:32.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "x2iezn.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.360100", - "Timestamp": "2019-10-16T01:38:58.000Z" + "SpotPrice": "1.008400", + "Timestamp": "2024-05-16T01:17:31.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.608600", - "Timestamp": "2019-10-16T01:37:54.000Z" + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T01:17:31.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.578600", - "Timestamp": "2019-10-16T01:37:54.000Z" + "SpotPrice": "0.093400", + "Timestamp": "2024-05-16T01:17:31.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.478600", - "Timestamp": "2019-10-16T01:37:54.000Z" + "SpotPrice": "0.037100", + "Timestamp": "2024-05-16T01:17:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t4g.nano", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.750400", - "Timestamp": "2019-10-16T01:37:31.000Z" + "SpotPrice": "0.062800", + "Timestamp": "2024-05-16T01:17:11.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t4g.nano", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.720400", - "Timestamp": "2019-10-16T01:37:31.000Z" + "SpotPrice": "0.002800", + "Timestamp": "2024-05-16T01:17:11.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t4g.nano", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.620400", - "Timestamp": "2019-10-16T01:37:31.000Z" + "SpotPrice": "0.002800", + "Timestamp": "2024-05-16T01:17:11.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.820500", - "Timestamp": "2019-10-16T01:37:22.000Z" + "SpotPrice": "0.131300", + "Timestamp": "2024-05-16T01:03:10.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.790500", - "Timestamp": "2019-10-16T01:37:22.000Z" + "SpotPrice": "0.127600", + "Timestamp": "2024-05-16T01:03:10.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.690500", - "Timestamp": "2019-10-16T01:37:22.000Z" + "SpotPrice": "0.071300", + "Timestamp": "2024-05-16T01:03:10.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.741100", - "Timestamp": "2019-10-16T01:36:56.000Z" + "SpotPrice": "0.268100", + "Timestamp": "2024-05-16T01:02:56.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.711100", - "Timestamp": "2019-10-16T01:36:56.000Z" + "SpotPrice": "0.263100", + "Timestamp": "2024-05-16T01:02:56.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.611100", - "Timestamp": "2019-10-16T01:36:56.000Z" - }, - { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.147400", - "Timestamp": "2019-10-16T01:33:06.000Z" + "SpotPrice": "0.138100", + "Timestamp": "2024-05-16T01:02:56.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-16T01:30:02.000Z" + "SpotPrice": "0.094300", + "Timestamp": "2024-05-16T01:02:53.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gd.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175600", - "Timestamp": "2019-10-16T01:30:02.000Z" + "SpotPrice": "0.090600", + "Timestamp": "2024-05-16T01:02:53.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075600", - "Timestamp": "2019-10-16T01:30:02.000Z" + "SpotPrice": "0.034300", + "Timestamp": "2024-05-16T01:02:53.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.688600", + "Timestamp": "2024-05-16T01:02:47.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.314700", + "Timestamp": "2024-05-16T01:02:44.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.489000", - "Timestamp": "2019-10-16T01:29:05.000Z" + "SpotPrice": "0.119000", + "Timestamp": "2024-05-16T01:02:43.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.459000", - "Timestamp": "2019-10-16T01:29:05.000Z" + "SpotPrice": "0.115300", + "Timestamp": "2024-05-16T01:02:43.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.359000", - "Timestamp": "2019-10-16T01:29:05.000Z" + "SpotPrice": "0.059000", + "Timestamp": "2024-05-16T01:02:43.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.small", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.133700", - "Timestamp": "2019-10-16T01:28:42.000Z" + "SpotPrice": "0.069500", + "Timestamp": "2024-05-16T01:02:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.small", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.173700", - "Timestamp": "2019-10-16T01:28:42.000Z" + "SpotPrice": "0.040500", + "Timestamp": "2024-05-16T01:02:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.small", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.073700", - "Timestamp": "2019-10-16T01:28:42.000Z" + "SpotPrice": "0.009500", + "Timestamp": "2024-05-16T01:02:41.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.146500", + "Timestamp": "2024-05-16T01:02:36.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.420400", - "Timestamp": "2019-10-16T01:28:24.000Z" + "SpotPrice": "0.122800", + "Timestamp": "2024-05-16T01:02:25.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.390400", - "Timestamp": "2019-10-16T01:28:24.000Z" + "SpotPrice": "0.119100", + "Timestamp": "2024-05-16T01:02:25.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.290400", - "Timestamp": "2019-10-16T01:28:24.000Z" + "SpotPrice": "0.062800", + "Timestamp": "2024-05-16T01:02:25.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.141000", + "Timestamp": "2024-05-16T01:02:24.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.307600", - "Timestamp": "2019-10-16T01:28:22.000Z" + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T01:02:23.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.277600", - "Timestamp": "2019-10-16T01:28:22.000Z" + "SpotPrice": "0.099700", + "Timestamp": "2024-05-16T01:02:23.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.177600", - "Timestamp": "2019-10-16T01:28:22.000Z" + "SpotPrice": "0.043700", + "Timestamp": "2024-05-16T01:02:23.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5dn.24xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r5a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.147400", - "Timestamp": "2019-10-16T01:24:06.000Z" + "SpotPrice": "0.551600", + "Timestamp": "2024-05-16T01:02:19.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.286700", - "Timestamp": "2019-10-16T01:20:42.000Z" + "SpotPrice": "0.120400", + "Timestamp": "2024-05-16T01:02:15.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7gd.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.256700", - "Timestamp": "2019-10-16T01:20:42.000Z" + "SpotPrice": "0.116700", + "Timestamp": "2024-05-16T01:02:15.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.156700", - "Timestamp": "2019-10-16T01:20:42.000Z" + "SpotPrice": "0.060400", + "Timestamp": "2024-05-16T01:02:15.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c4.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.353400", - "Timestamp": "2019-10-16T01:20:32.000Z" + "SpotPrice": "0.322500", + "Timestamp": "2024-05-16T01:02:13.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c4.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.393400", - "Timestamp": "2019-10-16T01:20:32.000Z" + "SpotPrice": "0.292500", + "Timestamp": "2024-05-16T01:02:13.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c4.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.293400", - "Timestamp": "2019-10-16T01:20:32.000Z" + "SpotPrice": "0.192500", + "Timestamp": "2024-05-16T01:02:13.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t4g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.133100", - "Timestamp": "2019-10-16T01:20:23.000Z" + "SpotPrice": "0.090300", + "Timestamp": "2024-05-16T01:02:11.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t4g.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.173100", - "Timestamp": "2019-10-16T01:20:23.000Z" + "SpotPrice": "0.086600", + "Timestamp": "2024-05-16T01:02:11.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t4g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.073100", - "Timestamp": "2019-10-16T01:20:23.000Z" + "SpotPrice": "0.030300", + "Timestamp": "2024-05-16T01:02:11.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.298700", - "Timestamp": "2019-10-16T01:12:42.000Z" + "SpotPrice": "0.099800", + "Timestamp": "2024-05-16T01:02:11.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.268700", - "Timestamp": "2019-10-16T01:12:42.000Z" + "SpotPrice": "0.095800", + "Timestamp": "2024-05-16T01:02:11.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.168700", - "Timestamp": "2019-10-16T01:12:42.000Z" + "SpotPrice": "0.039800", + "Timestamp": "2024-05-16T01:02:11.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012300", - "Timestamp": "2019-10-16T01:05:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098500", + "Timestamp": "2024-05-16T01:02:10.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012300", - "Timestamp": "2019-10-16T01:05:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094800", + "Timestamp": "2024-05-16T01:02:10.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012300", - "Timestamp": "2019-10-16T01:05:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038500", + "Timestamp": "2024-05-16T01:02:10.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t2.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.997700", - "Timestamp": "2019-10-16T01:05:25.000Z" + "SpotPrice": "0.235800", + "Timestamp": "2024-05-16T01:02:08.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.997700", - "Timestamp": "2019-10-16T01:05:25.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096700", + "Timestamp": "2024-05-16T01:02:06.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093000", + "Timestamp": "2024-05-16T01:02:06.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036700", + "Timestamp": "2024-05-16T01:02:06.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "t2.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.997700", - "Timestamp": "2019-10-16T01:05:25.000Z" + "SpotPrice": "0.122100", + "Timestamp": "2024-05-16T01:02:04.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t4g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.470900", - "Timestamp": "2019-10-16T01:04:17.000Z" + "SpotPrice": "0.077000", + "Timestamp": "2024-05-16T01:02:00.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t4g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.440900", - "Timestamp": "2019-10-16T01:04:17.000Z" + "SpotPrice": "0.073300", + "Timestamp": "2024-05-16T01:02:00.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t4g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.340900", - "Timestamp": "2019-10-16T01:04:17.000Z" + "SpotPrice": "0.017000", + "Timestamp": "2024-05-16T01:02:00.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "a1.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.425500", - "Timestamp": "2019-10-16T01:04:12.000Z" + "SpotPrice": "0.070900", + "Timestamp": "2024-05-16T00:49:03.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "a1.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.395500", - "Timestamp": "2019-10-16T01:04:12.000Z" + "SpotPrice": "0.041900", + "Timestamp": "2024-05-16T00:49:03.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "a1.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.295500", - "Timestamp": "2019-10-16T01:04:12.000Z" + "SpotPrice": "0.010900", + "Timestamp": "2024-05-16T00:49:03.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.498900", - "Timestamp": "2019-10-16T01:04:01.000Z" + "SpotPrice": "1.328800", + "Timestamp": "2024-05-16T00:48:25.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r4.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.498900", - "Timestamp": "2019-10-16T01:04:01.000Z" + "SpotPrice": "0.612700", + "Timestamp": "2024-05-16T00:48:17.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6a.large", "ProductDescription": "Windows", - "SpotPrice": "0.498900", - "Timestamp": "2019-10-16T01:04:01.000Z" + "SpotPrice": "0.138800", + "Timestamp": "2024-05-16T00:48:05.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.026000", + "Timestamp": "2024-05-16T00:48:02.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.288900", + "Timestamp": "2024-05-16T00:47:55.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "a1.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.758000", - "Timestamp": "2019-10-16T01:03:44.000Z" + "SpotPrice": "0.071500", + "Timestamp": "2024-05-16T00:47:51.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "a1.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.728000", - "Timestamp": "2019-10-16T01:03:44.000Z" + "SpotPrice": "0.042500", + "Timestamp": "2024-05-16T00:47:51.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "a1.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.628000", - "Timestamp": "2019-10-16T01:03:44.000Z" + "SpotPrice": "0.011500", + "Timestamp": "2024-05-16T00:47:51.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.311000", - "Timestamp": "2019-10-16T01:03:39.000Z" + "SpotPrice": "0.106200", + "Timestamp": "2024-05-16T00:47:44.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.281000", - "Timestamp": "2019-10-16T01:03:39.000Z" + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T00:47:44.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.181000", - "Timestamp": "2019-10-16T01:03:39.000Z" + "SpotPrice": "0.046200", + "Timestamp": "2024-05-16T00:47:44.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.410000", - "Timestamp": "2019-10-16T01:03:23.000Z" + "SpotPrice": "0.132900", + "Timestamp": "2024-05-16T00:47:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.380000", - "Timestamp": "2019-10-16T01:03:23.000Z" + "SpotPrice": "0.128900", + "Timestamp": "2024-05-16T00:47:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5d.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.280000", - "Timestamp": "2019-10-16T01:03:23.000Z" + "SpotPrice": "0.072900", + "Timestamp": "2024-05-16T00:47:41.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063100", - "Timestamp": "2019-10-16T01:02:58.000Z" + "SpotPrice": "0.380300", + "Timestamp": "2024-05-16T00:47:40.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3a.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063100", - "Timestamp": "2019-10-16T01:02:58.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.375300", + "Timestamp": "2024-05-16T00:47:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3a.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063100", - "Timestamp": "2019-10-16T01:02:58.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.250300", + "Timestamp": "2024-05-16T00:47:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3a.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.103100", - "Timestamp": "2019-10-16T01:02:58.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.195900", + "Timestamp": "2024-05-16T00:47:38.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3a.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.103100", - "Timestamp": "2019-10-16T01:02:58.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136600", + "Timestamp": "2024-05-16T00:47:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.103100", - "Timestamp": "2019-10-16T01:02:58.000Z" + "SpotPrice": "0.132900", + "Timestamp": "2024-05-16T00:47:36.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003100", - "Timestamp": "2019-10-16T01:02:58.000Z" + "SpotPrice": "0.076600", + "Timestamp": "2024-05-16T00:47:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003100", - "Timestamp": "2019-10-16T01:02:58.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.416100", + "Timestamp": "2024-05-16T00:47:24.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003100", - "Timestamp": "2019-10-16T01:02:58.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.411100", + "Timestamp": "2024-05-16T00:47:24.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.259600", - "Timestamp": "2019-10-16T00:58:55.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.286100", + "Timestamp": "2024-05-16T00:47:24.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.139600", - "Timestamp": "2019-10-16T00:55:46.000Z" + "SpotPrice": "0.122700", + "Timestamp": "2024-05-16T00:47:21.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.179600", - "Timestamp": "2019-10-16T00:55:46.000Z" + "SpotPrice": "0.118700", + "Timestamp": "2024-05-16T00:47:21.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5n.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.079600", - "Timestamp": "2019-10-16T00:55:46.000Z" + "SpotPrice": "0.062700", + "Timestamp": "2024-05-16T00:47:21.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t1.micro", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.454000", - "Timestamp": "2019-10-16T00:55:41.000Z" + "SpotPrice": "0.070400", + "Timestamp": "2024-05-16T00:47:19.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t1.micro", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.424000", - "Timestamp": "2019-10-16T00:55:41.000Z" + "SpotPrice": "0.010400", + "Timestamp": "2024-05-16T00:47:19.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.324000", - "Timestamp": "2019-10-16T00:55:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t1.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010400", + "Timestamp": "2024-05-16T00:47:19.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.013900", + "Timestamp": "2024-05-16T00:40:15.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132800", - "Timestamp": "2019-10-16T00:55:29.000Z" + "SpotPrice": "0.128100", + "Timestamp": "2024-05-16T00:32:57.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172800", - "Timestamp": "2019-10-16T00:55:29.000Z" + "SpotPrice": "0.124400", + "Timestamp": "2024-05-16T00:32:57.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072800", - "Timestamp": "2019-10-16T00:55:29.000Z" + "SpotPrice": "0.068100", + "Timestamp": "2024-05-16T00:32:57.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.144900", + "Timestamp": "2024-05-16T00:32:46.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.240400", - "Timestamp": "2019-10-16T00:55:22.000Z" + "SpotPrice": "0.507400", + "Timestamp": "2024-05-16T00:32:45.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.210400", - "Timestamp": "2019-10-16T00:55:22.000Z" + "SpotPrice": "0.502400", + "Timestamp": "2024-05-16T00:32:45.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7iz.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.110400", - "Timestamp": "2019-10-16T00:55:22.000Z" + "SpotPrice": "0.377400", + "Timestamp": "2024-05-16T00:32:45.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.281700", + "Timestamp": "2024-05-16T00:32:44.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.292200", - "Timestamp": "2019-10-16T00:55:06.000Z" + "SpotPrice": "0.167300", + "Timestamp": "2024-05-16T00:32:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.262200", - "Timestamp": "2019-10-16T00:55:06.000Z" + "SpotPrice": "0.163600", + "Timestamp": "2024-05-16T00:32:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.162200", - "Timestamp": "2019-10-16T00:55:06.000Z" + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T00:32:34.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.256800", + "Timestamp": "2024-05-16T00:32:32.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.280600", - "Timestamp": "2019-10-16T00:47:38.000Z" + "SpotPrice": "0.283400", + "Timestamp": "2024-05-16T00:32:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.250600", - "Timestamp": "2019-10-16T00:47:38.000Z" + "SpotPrice": "0.279400", + "Timestamp": "2024-05-16T00:32:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.150600", - "Timestamp": "2019-10-16T00:47:38.000Z" + "SpotPrice": "0.223400", + "Timestamp": "2024-05-16T00:32:32.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.432700", - "Timestamp": "2019-10-16T00:47:23.000Z" + "SpotPrice": "0.080100", + "Timestamp": "2024-05-16T00:32:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.402700", - "Timestamp": "2019-10-16T00:47:23.000Z" + "SpotPrice": "0.051100", + "Timestamp": "2024-05-16T00:32:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.302700", - "Timestamp": "2019-10-16T00:47:23.000Z" + "SpotPrice": "0.020100", + "Timestamp": "2024-05-16T00:32:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.155200", - "Timestamp": "2019-10-16T00:47:22.000Z" + "SpotPrice": "2.103900", + "Timestamp": "2024-05-16T00:32:13.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.195200", - "Timestamp": "2019-10-16T00:47:22.000Z" + "SpotPrice": "2.098900", + "Timestamp": "2024-05-16T00:32:13.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7gd.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.095200", - "Timestamp": "2019-10-16T00:47:22.000Z" + "SpotPrice": "1.973900", + "Timestamp": "2024-05-16T00:32:13.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.070800", + "Timestamp": "2024-05-16T00:19:47.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.289900", - "Timestamp": "2019-10-16T00:47:01.000Z" + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T00:19:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.259900", - "Timestamp": "2019-10-16T00:47:01.000Z" + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T00:19:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.159900", - "Timestamp": "2019-10-16T00:47:01.000Z" + "SpotPrice": "0.047400", + "Timestamp": "2024-05-16T00:19:40.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.434000", + "Timestamp": "2024-05-16T00:19:36.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.723300", - "Timestamp": "2019-10-16T00:46:54.000Z" + "SpotPrice": "0.742600", + "Timestamp": "2024-05-16T00:19:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.693300", - "Timestamp": "2019-10-16T00:46:54.000Z" + "SpotPrice": "0.737600", + "Timestamp": "2024-05-16T00:19:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.593300", - "Timestamp": "2019-10-16T00:46:54.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.339300", - "Timestamp": "2019-10-16T00:43:19.000Z" + "SpotPrice": "0.612600", + "Timestamp": "2024-05-16T00:19:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t2.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.339300", - "Timestamp": "2019-10-16T00:43:19.000Z" + "SpotPrice": "0.286100", + "Timestamp": "2024-05-16T00:19:35.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t2.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.309300", - "Timestamp": "2019-10-16T00:43:19.000Z" + "SpotPrice": "0.256100", + "Timestamp": "2024-05-16T00:19:35.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.309300", - "Timestamp": "2019-10-16T00:43:19.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156100", + "Timestamp": "2024-05-16T00:19:35.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.209300", - "Timestamp": "2019-10-16T00:43:19.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093800", + "Timestamp": "2024-05-16T00:19:24.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.209300", - "Timestamp": "2019-10-16T00:43:19.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090100", + "Timestamp": "2024-05-16T00:19:24.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.153300", - "Timestamp": "2019-10-16T00:42:43.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033800", + "Timestamp": "2024-05-16T00:19:24.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.153300", - "Timestamp": "2019-10-16T00:42:43.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172900", + "Timestamp": "2024-05-16T00:19:23.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.076600", - "Timestamp": "2019-10-16T00:42:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169200", + "Timestamp": "2024-05-16T00:19:23.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.076600", - "Timestamp": "2019-10-16T00:42:34.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112900", + "Timestamp": "2024-05-16T00:19:23.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.076600", - "Timestamp": "2019-10-16T00:42:34.000Z" + "SpotPrice": "0.625800", + "Timestamp": "2024-05-16T00:19:23.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.734600", - "Timestamp": "2019-10-16T00:42:27.000Z" + "SpotPrice": "0.169900", + "Timestamp": "2024-05-16T00:19:19.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.704600", - "Timestamp": "2019-10-16T00:42:27.000Z" + "SpotPrice": "0.209900", + "Timestamp": "2024-05-16T00:19:19.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.604600", - "Timestamp": "2019-10-16T00:42:27.000Z" + "SpotPrice": "0.109900", + "Timestamp": "2024-05-16T00:19:19.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.024600", - "Timestamp": "2019-10-16T00:42:18.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079000", + "Timestamp": "2024-05-16T00:19:13.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.024600", - "Timestamp": "2019-10-16T00:42:18.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075300", + "Timestamp": "2024-05-16T00:19:13.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.024600", - "Timestamp": "2019-10-16T00:42:18.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019000", + "Timestamp": "2024-05-16T00:19:13.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.418600", - "Timestamp": "2019-10-16T00:42:14.000Z" + "SpotPrice": "0.078700", + "Timestamp": "2024-05-16T00:19:07.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.418600", - "Timestamp": "2019-10-16T00:42:14.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.049700", + "Timestamp": "2024-05-16T00:19:07.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.418600", - "Timestamp": "2019-10-16T00:42:14.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018700", + "Timestamp": "2024-05-16T00:19:07.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.388600", - "Timestamp": "2019-10-16T00:42:14.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140800", + "Timestamp": "2024-05-16T00:19:00.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.388600", - "Timestamp": "2019-10-16T00:42:14.000Z" + "SpotPrice": "0.136800", + "Timestamp": "2024-05-16T00:19:00.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.388600", - "Timestamp": "2019-10-16T00:42:14.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080800", + "Timestamp": "2024-05-16T00:19:00.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.288600", - "Timestamp": "2019-10-16T00:42:14.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261000", + "Timestamp": "2024-05-16T00:18:47.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.288600", - "Timestamp": "2019-10-16T00:42:14.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.256000", + "Timestamp": "2024-05-16T00:18:47.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.288600", - "Timestamp": "2019-10-16T00:42:14.000Z" + "SpotPrice": "0.131000", + "Timestamp": "2024-05-16T00:18:47.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3.nano", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097800", - "Timestamp": "2019-10-16T00:42:02.000Z" + "SpotPrice": "0.062300", + "Timestamp": "2024-05-16T00:17:19.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3.nano", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137800", - "Timestamp": "2019-10-16T00:42:02.000Z" + "SpotPrice": "0.002300", + "Timestamp": "2024-05-16T00:17:19.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3.nano", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037800", - "Timestamp": "2019-10-16T00:42:02.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.707100", - "Timestamp": "2019-10-16T00:41:52.000Z" + "SpotPrice": "0.002300", + "Timestamp": "2024-05-16T00:17:19.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.707100", - "Timestamp": "2019-10-16T00:41:52.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.094100", + "Timestamp": "2024-05-16T00:04:04.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.8xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "d2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.707100", - "Timestamp": "2019-10-16T00:41:52.000Z" + "SpotPrice": "0.352100", + "Timestamp": "2024-05-16T00:03:07.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.8xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "d2.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.677100", - "Timestamp": "2019-10-16T00:41:52.000Z" + "SpotPrice": "0.392100", + "Timestamp": "2024-05-16T00:03:07.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.677100", - "Timestamp": "2019-10-16T00:41:52.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.292100", + "Timestamp": "2024-05-16T00:03:07.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.677100", - "Timestamp": "2019-10-16T00:41:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.846700", + "Timestamp": "2024-05-16T00:03:00.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.577100", - "Timestamp": "2019-10-16T00:41:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068500", + "Timestamp": "2024-05-16T00:02:49.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.577100", - "Timestamp": "2019-10-16T00:41:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039500", + "Timestamp": "2024-05-16T00:02:49.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3a.small", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.577100", - "Timestamp": "2019-10-16T00:41:52.000Z" + "SpotPrice": "0.008500", + "Timestamp": "2024-05-16T00:02:49.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.049100", - "Timestamp": "2019-10-16T00:41:52.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076800", + "Timestamp": "2024-05-16T00:02:38.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.049100", - "Timestamp": "2019-10-16T00:41:52.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047800", + "Timestamp": "2024-05-16T00:02:38.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.049100", - "Timestamp": "2019-10-16T00:41:52.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016800", + "Timestamp": "2024-05-16T00:02:38.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.707100", - "Timestamp": "2019-10-16T00:40:53.000Z" + "SpotPrice": "0.512500", + "Timestamp": "2024-05-16T00:02:25.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.707100", - "Timestamp": "2019-10-16T00:40:53.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.482500", + "Timestamp": "2024-05-16T00:02:25.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.382500", + "Timestamp": "2024-05-16T00:02:25.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.707100", - "Timestamp": "2019-10-16T00:40:53.000Z" + "SpotPrice": "1.897300", + "Timestamp": "2024-05-16T00:02:25.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.677100", - "Timestamp": "2019-10-16T00:40:53.000Z" + "SpotPrice": "1.892300", + "Timestamp": "2024-05-16T00:02:25.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.677100", - "Timestamp": "2019-10-16T00:40:53.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.767300", + "Timestamp": "2024-05-16T00:02:25.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.677100", - "Timestamp": "2019-10-16T00:40:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.477100", + "Timestamp": "2024-05-16T00:02:17.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.577100", - "Timestamp": "2019-10-16T00:40:53.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314500", + "Timestamp": "2024-05-16T00:02:01.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.577100", - "Timestamp": "2019-10-16T00:40:53.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.284500", + "Timestamp": "2024-05-16T00:02:01.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.577100", - "Timestamp": "2019-10-16T00:40:53.000Z" + "SpotPrice": "0.184500", + "Timestamp": "2024-05-16T00:02:01.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5n.large", "ProductDescription": "Windows", - "SpotPrice": "2.049100", - "Timestamp": "2019-10-16T00:40:49.000Z" + "SpotPrice": "0.139000", + "Timestamp": "2024-05-15T23:48:15.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c4.large", "ProductDescription": "Windows", - "SpotPrice": "2.049100", - "Timestamp": "2019-10-16T00:40:49.000Z" + "SpotPrice": "0.133800", + "Timestamp": "2024-05-15T23:48:10.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.049100", - "Timestamp": "2019-10-16T00:40:49.000Z" + "SpotPrice": "0.258500", + "Timestamp": "2024-05-15T23:48:04.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.115000", - "Timestamp": "2019-10-16T00:39:31.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.147900", + "Timestamp": "2024-05-15T23:47:57.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.115000", - "Timestamp": "2019-10-16T00:39:31.000Z" + "SpotPrice": "0.176800", + "Timestamp": "2024-05-15T23:47:53.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.115000", - "Timestamp": "2019-10-16T00:39:31.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173100", + "Timestamp": "2024-05-15T23:47:53.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.155000", - "Timestamp": "2019-10-16T00:39:31.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116800", + "Timestamp": "2024-05-15T23:47:53.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.155000", - "Timestamp": "2019-10-16T00:39:31.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-15T23:47:53.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.155000", - "Timestamp": "2019-10-16T00:39:31.000Z" + "SpotPrice": "0.099100", + "Timestamp": "2024-05-15T23:47:53.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.055000", - "Timestamp": "2019-10-16T00:39:31.000Z" + "SpotPrice": "0.042800", + "Timestamp": "2024-05-15T23:47:53.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.055000", - "Timestamp": "2019-10-16T00:39:31.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.137700", + "Timestamp": "2024-05-15T23:47:52.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.936300", + "Timestamp": "2024-05-15T23:47:42.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.931300", + "Timestamp": "2024-05-15T23:47:42.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6idn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.055000", - "Timestamp": "2019-10-16T00:39:31.000Z" + "SpotPrice": "0.806300", + "Timestamp": "2024-05-15T23:47:42.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.486900", - "Timestamp": "2019-10-16T00:39:08.000Z" + "SpotPrice": "0.140900", + "Timestamp": "2024-05-15T23:47:41.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.456900", - "Timestamp": "2019-10-16T00:39:08.000Z" + "SpotPrice": "0.136900", + "Timestamp": "2024-05-15T23:47:41.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "z1d.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.356900", - "Timestamp": "2019-10-16T00:39:08.000Z" + "SpotPrice": "0.080900", + "Timestamp": "2024-05-15T23:47:41.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132200", - "Timestamp": "2019-10-16T00:38:53.000Z" + "SpotPrice": "0.101600", + "Timestamp": "2024-05-15T23:47:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172200", - "Timestamp": "2019-10-16T00:38:53.000Z" + "SpotPrice": "0.097600", + "Timestamp": "2024-05-15T23:47:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072200", - "Timestamp": "2019-10-16T00:38:53.000Z" + "SpotPrice": "0.041600", + "Timestamp": "2024-05-15T23:47:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.nano", "ProductDescription": "Windows", - "SpotPrice": "0.195000", - "Timestamp": "2019-10-16T00:38:50.000Z" + "SpotPrice": "0.006800", + "Timestamp": "2024-05-15T23:34:11.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "g6.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.195000", - "Timestamp": "2019-10-16T00:38:50.000Z" + "SpotPrice": "0.876400", + "Timestamp": "2024-05-15T23:33:02.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.18xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.195000", - "Timestamp": "2019-10-16T00:38:50.000Z" + "SpotPrice": "4.947200", + "Timestamp": "2024-05-15T23:33:00.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.114400", - "Timestamp": "2019-10-16T00:38:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m1.small", + "ProductDescription": "Windows", + "SpotPrice": "0.046400", + "Timestamp": "2024-05-15T23:32:59.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.114400", - "Timestamp": "2019-10-16T00:38:39.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.141100", + "Timestamp": "2024-05-15T23:32:57.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7gd.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.114400", - "Timestamp": "2019-10-16T00:38:39.000Z" + "SpotPrice": "0.093200", + "Timestamp": "2024-05-15T23:32:56.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7gd.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.154400", - "Timestamp": "2019-10-16T00:38:39.000Z" + "SpotPrice": "0.089500", + "Timestamp": "2024-05-15T23:32:56.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.154400", - "Timestamp": "2019-10-16T00:38:39.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033200", + "Timestamp": "2024-05-15T23:32:56.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.203700", + "Timestamp": "2024-05-15T23:32:48.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.154400", - "Timestamp": "2019-10-16T00:38:39.000Z" + "SpotPrice": "0.200000", + "Timestamp": "2024-05-15T23:32:48.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.054400", - "Timestamp": "2019-10-16T00:38:39.000Z" + "SpotPrice": "0.143700", + "Timestamp": "2024-05-15T23:32:48.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.054400", - "Timestamp": "2019-10-16T00:38:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.511000", + "Timestamp": "2024-05-15T23:32:46.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.268200", + "Timestamp": "2024-05-15T23:32:34.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-15T23:32:19.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-15T23:32:19.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.054400", - "Timestamp": "2019-10-16T00:38:39.000Z" + "SpotPrice": "0.045800", + "Timestamp": "2024-05-15T23:32:19.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5n.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.128000", - "Timestamp": "2019-10-16T00:38:39.000Z" + "SpotPrice": "0.275500", + "Timestamp": "2024-05-15T23:32:18.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6i.large", "ProductDescription": "Windows", - "SpotPrice": "0.128000", - "Timestamp": "2019-10-16T00:38:39.000Z" + "SpotPrice": "0.144200", + "Timestamp": "2024-05-15T23:18:09.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5b.large", "ProductDescription": "Windows", - "SpotPrice": "0.128000", - "Timestamp": "2019-10-16T00:38:39.000Z" + "SpotPrice": "0.149700", + "Timestamp": "2024-05-15T23:18:08.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.369200", + "Timestamp": "2024-05-15T23:18:04.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.290000", + "Timestamp": "2024-05-15T23:17:56.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096300", - "Timestamp": "2019-10-16T00:37:06.000Z" + "SpotPrice": "0.878100", + "Timestamp": "2024-05-15T23:17:52.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136300", - "Timestamp": "2019-10-16T00:37:06.000Z" + "SpotPrice": "0.873100", + "Timestamp": "2024-05-15T23:17:52.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036300", - "Timestamp": "2019-10-16T00:37:06.000Z" + "SpotPrice": "0.748100", + "Timestamp": "2024-05-15T23:17:52.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.134600", + "Timestamp": "2024-05-15T23:17:49.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.143000", + "Timestamp": "2024-05-15T23:17:42.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096100", - "Timestamp": "2019-10-16T00:34:54.000Z" + "SpotPrice": "1.364300", + "Timestamp": "2024-05-15T23:17:40.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136100", - "Timestamp": "2019-10-16T00:34:54.000Z" + "SpotPrice": "1.359300", + "Timestamp": "2024-05-15T23:17:40.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5ad.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036100", - "Timestamp": "2019-10-16T00:34:54.000Z" + "SpotPrice": "1.234300", + "Timestamp": "2024-05-15T23:17:40.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.121700", - "Timestamp": "2019-10-16T00:30:32.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t1.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.012200", + "Timestamp": "2024-05-15T23:03:25.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.091700", - "Timestamp": "2019-10-16T00:30:32.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.131900", + "Timestamp": "2024-05-15T23:03:03.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.991700", - "Timestamp": "2019-10-16T00:30:32.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.129600", + "Timestamp": "2024-05-15T23:02:53.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "x1e.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6id.large", "ProductDescription": "Windows", - "SpotPrice": "8.752000", - "Timestamp": "2019-10-16T00:29:59.000Z" + "SpotPrice": "0.146100", + "Timestamp": "2024-05-15T23:02:50.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.181300", - "Timestamp": "2019-10-16T00:29:56.000Z" + "SpotPrice": "0.076300", + "Timestamp": "2024-05-15T23:02:41.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.221300", - "Timestamp": "2019-10-16T00:29:56.000Z" + "SpotPrice": "0.047300", + "Timestamp": "2024-05-15T23:02:41.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.121300", - "Timestamp": "2019-10-16T00:29:56.000Z" + "SpotPrice": "0.016300", + "Timestamp": "2024-05-15T23:02:41.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.142000", - "Timestamp": "2019-10-16T00:22:47.000Z" + "SpotPrice": "0.110900", + "Timestamp": "2024-05-15T23:02:28.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.182000", - "Timestamp": "2019-10-16T00:22:47.000Z" + "SpotPrice": "0.106900", + "Timestamp": "2024-05-15T23:02:28.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5n.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.082000", - "Timestamp": "2019-10-16T00:22:47.000Z" + "SpotPrice": "0.050900", + "Timestamp": "2024-05-15T23:02:28.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.610300", + "Timestamp": "2024-05-15T23:02:23.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3.micro", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.438500", - "Timestamp": "2019-10-16T00:22:26.000Z" + "SpotPrice": "0.064400", + "Timestamp": "2024-05-15T23:02:22.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3.micro", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.408500", - "Timestamp": "2019-10-16T00:22:26.000Z" + "SpotPrice": "0.004400", + "Timestamp": "2024-05-15T23:02:22.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3.micro", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.308500", - "Timestamp": "2019-10-16T00:22:26.000Z" + "SpotPrice": "0.004400", + "Timestamp": "2024-05-15T23:02:22.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.639900", + "Timestamp": "2024-05-15T23:02:22.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i-flex.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135100", - "Timestamp": "2019-10-16T00:22:14.000Z" + "SpotPrice": "0.106900", + "Timestamp": "2024-05-15T23:02:16.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i-flex.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175100", - "Timestamp": "2019-10-16T00:22:14.000Z" + "SpotPrice": "0.103200", + "Timestamp": "2024-05-15T23:02:16.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i-flex.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075100", - "Timestamp": "2019-10-16T00:22:14.000Z" + "SpotPrice": "0.046900", + "Timestamp": "2024-05-15T23:02:16.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.426500", - "Timestamp": "2019-10-16T00:21:53.000Z" + "SpotPrice": "0.571600", + "Timestamp": "2024-05-15T23:02:12.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.396500", - "Timestamp": "2019-10-16T00:21:53.000Z" + "SpotPrice": "0.566600", + "Timestamp": "2024-05-15T23:02:12.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6idn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.296500", - "Timestamp": "2019-10-16T00:21:53.000Z" + "SpotPrice": "0.441600", + "Timestamp": "2024-05-15T23:02:12.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.453400", - "Timestamp": "2019-10-16T00:21:51.000Z" + "SpotPrice": "0.103600", + "Timestamp": "2024-05-15T23:02:11.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.423400", - "Timestamp": "2019-10-16T00:21:51.000Z" + "SpotPrice": "0.099600", + "Timestamp": "2024-05-15T23:02:11.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.323400", - "Timestamp": "2019-10-16T00:21:51.000Z" + "SpotPrice": "0.043600", + "Timestamp": "2024-05-15T23:02:11.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.054700", - "Timestamp": "2019-10-16T00:21:40.000Z" + "SpotPrice": "0.103200", + "Timestamp": "2024-05-15T23:01:56.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.024700", - "Timestamp": "2019-10-16T00:21:40.000Z" + "SpotPrice": "0.099500", + "Timestamp": "2024-05-15T23:01:56.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.924700", - "Timestamp": "2019-10-16T00:21:40.000Z" + "SpotPrice": "0.043200", + "Timestamp": "2024-05-15T23:01:56.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5n.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154700", + "Timestamp": "2024-05-15T22:47:47.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151000", + "Timestamp": "2024-05-15T22:47:47.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094700", + "Timestamp": "2024-05-15T22:47:47.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "z1d.large", "ProductDescription": "Windows", - "SpotPrice": "0.519200", - "Timestamp": "2019-10-16T00:17:55.000Z" + "SpotPrice": "0.167200", + "Timestamp": "2024-05-15T22:47:46.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.260400", - "Timestamp": "2019-10-16T00:14:12.000Z" + "SpotPrice": "0.124000", + "Timestamp": "2024-05-15T22:47:46.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4g.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.300400", - "Timestamp": "2019-10-16T00:14:12.000Z" + "SpotPrice": "0.120300", + "Timestamp": "2024-05-15T22:47:46.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "i4g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.200400", - "Timestamp": "2019-10-16T00:14:12.000Z" + "SpotPrice": "0.064000", + "Timestamp": "2024-05-15T22:47:46.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.716400", - "Timestamp": "2019-10-16T00:13:59.000Z" + "SpotPrice": "0.096200", + "Timestamp": "2024-05-15T22:47:45.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7g.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.686400", - "Timestamp": "2019-10-16T00:13:59.000Z" + "SpotPrice": "0.092500", + "Timestamp": "2024-05-15T22:47:45.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.586400", - "Timestamp": "2019-10-16T00:13:59.000Z" + "SpotPrice": "0.036200", + "Timestamp": "2024-05-15T22:47:45.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.052600", - "Timestamp": "2019-10-16T00:13:40.000Z" + "SpotPrice": "0.078100", + "Timestamp": "2024-05-15T22:47:45.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.022600", - "Timestamp": "2019-10-16T00:13:40.000Z" + "SpotPrice": "0.074400", + "Timestamp": "2024-05-15T22:47:45.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.922600", - "Timestamp": "2019-10-16T00:13:40.000Z" + "SpotPrice": "0.018100", + "Timestamp": "2024-05-15T22:47:45.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.823300", - "Timestamp": "2019-10-16T00:13:17.000Z" + "SpotPrice": "0.141300", + "Timestamp": "2024-05-15T22:47:45.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.793300", - "Timestamp": "2019-10-16T00:13:17.000Z" + "SpotPrice": "0.137600", + "Timestamp": "2024-05-15T22:47:45.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.693300", - "Timestamp": "2019-10-16T00:13:17.000Z" + "SpotPrice": "0.081300", + "Timestamp": "2024-05-15T22:47:45.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096100", - "Timestamp": "2019-10-16T00:12:53.000Z" + "SpotPrice": "0.295800", + "Timestamp": "2024-05-15T22:47:45.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136100", - "Timestamp": "2019-10-16T00:12:53.000Z" + "SpotPrice": "0.265800", + "Timestamp": "2024-05-15T22:47:45.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036100", - "Timestamp": "2019-10-16T00:12:53.000Z" + "SpotPrice": "0.165800", + "Timestamp": "2024-05-15T22:47:45.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6in.large", "ProductDescription": "Windows", - "SpotPrice": "6.229900", - "Timestamp": "2019-10-16T00:09:04.000Z" + "SpotPrice": "0.159600", + "Timestamp": "2024-05-15T22:47:44.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.284300", - "Timestamp": "2019-10-16T00:06:13.000Z" + "SpotPrice": "0.104000", + "Timestamp": "2024-05-15T22:47:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.284300", - "Timestamp": "2019-10-16T00:06:13.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100000", + "Timestamp": "2024-05-15T22:47:41.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044000", + "Timestamp": "2024-05-15T22:47:41.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.18xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.284300", - "Timestamp": "2019-10-16T00:06:13.000Z" + "SpotPrice": "1.613500", + "Timestamp": "2024-05-15T22:47:34.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.18xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.254300", - "Timestamp": "2019-10-16T00:06:13.000Z" + "SpotPrice": "1.583500", + "Timestamp": "2024-05-15T22:47:34.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.254300", - "Timestamp": "2019-10-16T00:06:13.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.483500", + "Timestamp": "2024-05-15T22:47:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.015000", + "Timestamp": "2024-05-15T22:47:31.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.254300", - "Timestamp": "2019-10-16T00:06:13.000Z" + "SpotPrice": "1.010000", + "Timestamp": "2024-05-15T22:47:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.154300", - "Timestamp": "2019-10-16T00:06:13.000Z" + "SpotPrice": "0.885000", + "Timestamp": "2024-05-15T22:47:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.154300", - "Timestamp": "2019-10-16T00:06:13.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.198900", + "Timestamp": "2024-05-15T22:47:31.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-1e", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.238900", + "Timestamp": "2024-05-15T22:47:31.000Z" + }, + { + "AvailabilityZone": "us-east-1e", + "InstanceType": "r3.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.154300", - "Timestamp": "2019-10-16T00:06:13.000Z" + "SpotPrice": "0.138900", + "Timestamp": "2024-05-15T22:47:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149700", + "Timestamp": "2024-05-15T22:47:30.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145700", + "Timestamp": "2024-05-15T22:47:30.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089700", + "Timestamp": "2024-05-15T22:47:30.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.570300", - "Timestamp": "2019-10-16T00:05:47.000Z" + "SpotPrice": "0.500900", + "Timestamp": "2024-05-15T22:47:23.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g6.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.570300", - "Timestamp": "2019-10-16T00:05:47.000Z" + "SpotPrice": "0.469000", + "Timestamp": "2024-05-15T22:47:16.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.570300", - "Timestamp": "2019-10-16T00:05:47.000Z" + "SpotPrice": "2.362400", + "Timestamp": "2024-05-15T22:33:00.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.431000", - "Timestamp": "2019-10-16T00:05:37.000Z" + "SpotPrice": "0.075900", + "Timestamp": "2024-05-15T22:32:59.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.401000", - "Timestamp": "2019-10-16T00:05:37.000Z" + "SpotPrice": "0.046900", + "Timestamp": "2024-05-15T22:32:59.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.301000", - "Timestamp": "2019-10-16T00:05:37.000Z" + "SpotPrice": "0.015900", + "Timestamp": "2024-05-15T22:32:59.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.293700", - "Timestamp": "2019-10-16T00:05:35.000Z" + "SpotPrice": "0.110700", + "Timestamp": "2024-05-15T22:32:57.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.263700", - "Timestamp": "2019-10-16T00:05:35.000Z" + "SpotPrice": "0.107000", + "Timestamp": "2024-05-15T22:32:57.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.163700", - "Timestamp": "2019-10-16T00:05:35.000Z" + "SpotPrice": "0.050700", + "Timestamp": "2024-05-15T22:32:57.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5zn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.036900", - "Timestamp": "2019-10-15T23:57:51.000Z" + "SpotPrice": "0.225400", + "Timestamp": "2024-05-15T22:32:49.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.036900", - "Timestamp": "2019-10-15T23:57:51.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.221700", + "Timestamp": "2024-05-15T22:32:49.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165400", + "Timestamp": "2024-05-15T22:32:49.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.036900", - "Timestamp": "2019-10-15T23:57:51.000Z" + "SpotPrice": "0.118200", + "Timestamp": "2024-05-15T22:32:48.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.006900", - "Timestamp": "2019-10-15T23:57:51.000Z" + "SpotPrice": "0.114200", + "Timestamp": "2024-05-15T22:32:48.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.006900", - "Timestamp": "2019-10-15T23:57:51.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058200", + "Timestamp": "2024-05-15T22:32:48.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.006900", - "Timestamp": "2019-10-15T23:57:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.140600", + "Timestamp": "2024-05-15T22:32:39.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.906900", - "Timestamp": "2019-10-15T23:57:51.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t1.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.011100", + "Timestamp": "2024-05-15T22:32:38.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.906900", - "Timestamp": "2019-10-15T23:57:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092100", + "Timestamp": "2024-05-15T22:32:20.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.906900", - "Timestamp": "2019-10-15T23:57:51.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088400", + "Timestamp": "2024-05-15T22:32:20.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.114900", - "Timestamp": "2019-10-15T23:57:23.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032100", + "Timestamp": "2024-05-15T22:32:20.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.114900", - "Timestamp": "2019-10-15T23:57:23.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-15T22:32:18.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.114900", - "Timestamp": "2019-10-15T23:57:23.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-15T22:32:18.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.075800", - "Timestamp": "2019-10-15T23:57:22.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048600", + "Timestamp": "2024-05-15T22:32:18.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.234500", - "Timestamp": "2019-10-15T23:57:02.000Z" + "SpotPrice": "0.137200", + "Timestamp": "2024-05-15T22:32:16.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.204500", - "Timestamp": "2019-10-15T23:57:02.000Z" + "SpotPrice": "0.133500", + "Timestamp": "2024-05-15T22:32:16.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.104500", - "Timestamp": "2019-10-15T23:57:02.000Z" + "SpotPrice": "0.077200", + "Timestamp": "2024-05-15T22:32:16.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.099300", - "Timestamp": "2019-10-15T23:56:33.000Z" + "SpotPrice": "0.199600", + "Timestamp": "2024-05-15T22:32:11.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.139300", - "Timestamp": "2019-10-15T23:56:33.000Z" + "SpotPrice": "0.239600", + "Timestamp": "2024-05-15T22:32:11.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.039300", - "Timestamp": "2019-10-15T23:56:33.000Z" + "SpotPrice": "0.139600", + "Timestamp": "2024-05-15T22:32:11.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5.large", "ProductDescription": "Windows", - "SpotPrice": "3.073700", - "Timestamp": "2019-10-15T23:52:54.000Z" + "SpotPrice": "0.132400", + "Timestamp": "2024-05-15T22:18:10.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.137700", - "Timestamp": "2019-10-15T23:49:18.000Z" + "AvailabilityZone": "us-east-1e", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.021000", + "Timestamp": "2024-05-15T22:18:04.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c4.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.177700", - "Timestamp": "2019-10-15T23:49:18.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.651600", + "Timestamp": "2024-05-15T22:18:00.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.077700", - "Timestamp": "2019-10-15T23:49:18.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.291900", + "Timestamp": "2024-05-15T22:17:48.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.287600", + "Timestamp": "2024-05-15T22:17:46.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5n.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.772900", - "Timestamp": "2019-10-15T23:48:51.000Z" + "SpotPrice": "0.120100", + "Timestamp": "2024-05-15T22:17:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5n.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.742900", - "Timestamp": "2019-10-15T23:48:51.000Z" + "SpotPrice": "0.116100", + "Timestamp": "2024-05-15T22:17:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5n.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.642900", - "Timestamp": "2019-10-15T23:48:51.000Z" + "SpotPrice": "0.060100", + "Timestamp": "2024-05-15T22:17:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.563400", + "Timestamp": "2024-05-15T22:17:22.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "vt1.3xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.757200", - "Timestamp": "2019-10-15T23:48:41.000Z" + "SpotPrice": "0.450900", + "Timestamp": "2024-05-15T22:17:15.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "vt1.3xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.727200", - "Timestamp": "2019-10-15T23:48:41.000Z" + "SpotPrice": "0.420900", + "Timestamp": "2024-05-15T22:17:15.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "vt1.3xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.627200", - "Timestamp": "2019-10-15T23:48:41.000Z" + "SpotPrice": "0.320900", + "Timestamp": "2024-05-15T22:17:15.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.429700", - "Timestamp": "2019-10-15T23:48:33.000Z" + "SpotPrice": "0.123600", + "Timestamp": "2024-05-15T22:03:33.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.399700", - "Timestamp": "2019-10-15T23:48:33.000Z" + "SpotPrice": "0.119600", + "Timestamp": "2024-05-15T22:03:33.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5dn.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.299700", - "Timestamp": "2019-10-15T23:48:33.000Z" + "SpotPrice": "0.063600", + "Timestamp": "2024-05-15T22:03:33.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m3.medium", "ProductDescription": "Windows", - "SpotPrice": "0.126400", - "Timestamp": "2019-10-15T23:43:31.000Z" + "SpotPrice": "0.093700", + "Timestamp": "2024-05-15T22:03:33.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7a.large", "ProductDescription": "Windows", - "SpotPrice": "0.126400", - "Timestamp": "2019-10-15T23:43:31.000Z" + "SpotPrice": "0.160100", + "Timestamp": "2024-05-15T22:03:21.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.large", "ProductDescription": "Windows", - "SpotPrice": "0.126400", - "Timestamp": "2019-10-15T23:43:31.000Z" - }, - { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "a1.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.272400", - "Timestamp": "2019-10-15T23:42:44.000Z" + "SpotPrice": "0.178900", + "Timestamp": "2024-05-15T22:03:05.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "a1.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.272400", - "Timestamp": "2019-10-15T23:42:44.000Z" - }, - { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "a1.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.242400", - "Timestamp": "2019-10-15T23:42:44.000Z" + "SpotPrice": "0.075300", + "Timestamp": "2024-05-15T22:03:05.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "a1.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.242400", - "Timestamp": "2019-10-15T23:42:44.000Z" + "SpotPrice": "0.046300", + "Timestamp": "2024-05-15T22:03:05.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "a1.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.142400", - "Timestamp": "2019-10-15T23:42:44.000Z" + "SpotPrice": "0.015300", + "Timestamp": "2024-05-15T22:03:05.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "a1.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.142400", - "Timestamp": "2019-10-15T23:42:44.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.504100", + "Timestamp": "2024-05-15T22:02:48.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "f1.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.674500", - "Timestamp": "2019-10-15T23:42:40.000Z" + "SpotPrice": "0.235900", + "Timestamp": "2024-05-15T22:02:43.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "f1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.674500", - "Timestamp": "2019-10-15T23:42:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232200", + "Timestamp": "2024-05-15T22:02:43.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "f1.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175900", + "Timestamp": "2024-05-15T22:02:43.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.674500", - "Timestamp": "2019-10-15T23:42:40.000Z" + "SpotPrice": "0.079500", + "Timestamp": "2024-05-15T22:02:43.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "f1.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.644500", - "Timestamp": "2019-10-15T23:42:40.000Z" + "SpotPrice": "0.050500", + "Timestamp": "2024-05-15T22:02:43.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "f1.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.644500", - "Timestamp": "2019-10-15T23:42:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019500", + "Timestamp": "2024-05-15T22:02:43.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "f1.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.762000", + "Timestamp": "2024-05-15T22:02:35.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1e.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.644500", - "Timestamp": "2019-10-15T23:42:40.000Z" + "SpotPrice": "2.732000", + "Timestamp": "2024-05-15T22:02:35.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "f1.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "x1e.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.544500", - "Timestamp": "2019-10-15T23:42:40.000Z" + "SpotPrice": "2.632000", + "Timestamp": "2024-05-15T22:02:35.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "f1.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.544500", - "Timestamp": "2019-10-15T23:42:40.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112700", + "Timestamp": "2024-05-15T21:48:20.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "f1.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.544500", - "Timestamp": "2019-10-15T23:42:40.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152700", + "Timestamp": "2024-05-15T21:48:20.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.128000", - "Timestamp": "2019-10-15T23:42:23.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052700", + "Timestamp": "2024-05-15T21:48:20.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1d", + "InstanceType": "i3en.3xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.128000", - "Timestamp": "2019-10-15T23:42:23.000Z" + "SpotPrice": "1.067600", + "Timestamp": "2024-05-15T21:48:05.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m5ad.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.128000", - "Timestamp": "2019-10-15T23:42:23.000Z" + "SpotPrice": "0.276600", + "Timestamp": "2024-05-15T21:48:05.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m1.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.422900", - "Timestamp": "2019-10-15T23:41:55.000Z" + "SpotPrice": "0.094800", + "Timestamp": "2024-05-15T21:48:01.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.411400", - "Timestamp": "2019-10-15T23:41:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134800", + "Timestamp": "2024-05-15T21:48:01.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.359000", - "Timestamp": "2019-10-15T23:41:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034800", + "Timestamp": "2024-05-15T21:48:01.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.392900", - "Timestamp": "2019-10-15T23:41:55.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.144900", + "Timestamp": "2024-05-15T21:47:50.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r4.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.381400", - "Timestamp": "2019-10-15T23:41:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.019200", + "Timestamp": "2024-05-15T21:47:38.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r4.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.329000", - "Timestamp": "2019-10-15T23:41:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064700", + "Timestamp": "2024-05-15T21:47:35.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.292900", - "Timestamp": "2019-10-15T23:41:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004700", + "Timestamp": "2024-05-15T21:47:35.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3.micro", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.281400", - "Timestamp": "2019-10-15T23:41:55.000Z" + "SpotPrice": "0.004700", + "Timestamp": "2024-05-15T21:47:35.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.229000", - "Timestamp": "2019-10-15T23:41:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.641600", + "Timestamp": "2024-05-15T21:47:34.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.137200", - "Timestamp": "2019-10-15T23:41:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.636600", + "Timestamp": "2024-05-15T21:47:34.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.139800", - "Timestamp": "2019-10-15T23:41:54.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.511600", + "Timestamp": "2024-05-15T21:47:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "is4gen.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.133600", - "Timestamp": "2019-10-15T23:41:54.000Z" + "SpotPrice": "0.196800", + "Timestamp": "2024-05-15T21:47:33.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "is4gen.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.177200", - "Timestamp": "2019-10-15T23:41:54.000Z" + "SpotPrice": "0.193100", + "Timestamp": "2024-05-15T21:47:33.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.179800", - "Timestamp": "2019-10-15T23:41:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136800", + "Timestamp": "2024-05-15T21:47:33.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064700", + "Timestamp": "2024-05-15T21:47:32.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3.micro", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.173600", - "Timestamp": "2019-10-15T23:41:54.000Z" + "SpotPrice": "0.004700", + "Timestamp": "2024-05-15T21:47:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3.micro", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.077200", - "Timestamp": "2019-10-15T23:41:54.000Z" + "SpotPrice": "0.004700", + "Timestamp": "2024-05-15T21:47:32.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.079800", - "Timestamp": "2019-10-15T23:41:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.150100", + "Timestamp": "2024-05-15T21:47:32.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.073600", - "Timestamp": "2019-10-15T23:41:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.189400", + "Timestamp": "2024-05-15T21:47:26.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.516600", - "Timestamp": "2019-10-15T23:41:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185700", + "Timestamp": "2024-05-15T21:47:26.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.516600", - "Timestamp": "2019-10-15T23:41:54.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129400", + "Timestamp": "2024-05-15T21:47:26.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.516600", - "Timestamp": "2019-10-15T23:41:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083100", + "Timestamp": "2024-05-15T21:47:21.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.256100", - "Timestamp": "2019-10-15T23:41:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.054100", + "Timestamp": "2024-05-15T21:47:21.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.256100", - "Timestamp": "2019-10-15T23:41:54.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023100", + "Timestamp": "2024-05-15T21:47:21.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.256100", - "Timestamp": "2019-10-15T23:41:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.494000", + "Timestamp": "2024-05-15T21:47:18.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.512000", - "Timestamp": "2019-10-15T23:41:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.489000", + "Timestamp": "2024-05-15T21:47:18.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.512000", - "Timestamp": "2019-10-15T23:41:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.364000", + "Timestamp": "2024-05-15T21:47:18.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.512000", - "Timestamp": "2019-10-15T23:41:53.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148700", + "Timestamp": "2024-05-15T21:47:18.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.624000", - "Timestamp": "2019-10-15T23:41:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145000", + "Timestamp": "2024-05-15T21:47:18.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.593600", - "Timestamp": "2019-10-15T23:41:09.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088700", + "Timestamp": "2024-05-15T21:47:18.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c4.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.290400", - "Timestamp": "2019-10-15T23:40:35.000Z" + "SpotPrice": "0.321200", + "Timestamp": "2024-05-15T21:33:17.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c4.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.260400", - "Timestamp": "2019-10-15T23:40:35.000Z" + "SpotPrice": "0.291200", + "Timestamp": "2024-05-15T21:33:17.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c4.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.160400", - "Timestamp": "2019-10-15T23:40:35.000Z" + "SpotPrice": "0.191200", + "Timestamp": "2024-05-15T21:33:17.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.032100", - "Timestamp": "2019-10-15T23:40:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176900", + "Timestamp": "2024-05-15T21:33:10.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.032100", - "Timestamp": "2019-10-15T23:40:35.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173200", + "Timestamp": "2024-05-15T21:33:10.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-15T21:33:10.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.032100", - "Timestamp": "2019-10-15T23:40:35.000Z" + "SpotPrice": "0.293200", + "Timestamp": "2024-05-15T21:33:10.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.275100", - "Timestamp": "2019-10-15T23:39:47.000Z" + "SpotPrice": "0.345800", + "Timestamp": "2024-05-15T21:33:08.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.245100", - "Timestamp": "2019-10-15T23:39:47.000Z" + "SpotPrice": "0.340800", + "Timestamp": "2024-05-15T21:33:08.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.145100", - "Timestamp": "2019-10-15T23:39:47.000Z" + "SpotPrice": "0.215800", + "Timestamp": "2024-05-15T21:33:08.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.098300", - "Timestamp": "2019-10-15T23:39:44.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111700", + "Timestamp": "2024-05-15T21:32:48.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.098300", - "Timestamp": "2019-10-15T23:39:44.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-15T21:32:48.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.098300", - "Timestamp": "2019-10-15T23:39:44.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051700", + "Timestamp": "2024-05-15T21:32:48.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.284300", - "Timestamp": "2019-10-15T23:39:32.000Z" + "SpotPrice": "0.827800", + "Timestamp": "2024-05-15T21:32:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.284300", - "Timestamp": "2019-10-15T23:39:32.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.822800", + "Timestamp": "2024-05-15T21:32:41.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.284300", - "Timestamp": "2019-10-15T23:39:32.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.697800", + "Timestamp": "2024-05-15T21:32:41.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.254300", - "Timestamp": "2019-10-15T23:39:32.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141000", + "Timestamp": "2024-05-15T21:32:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.254300", - "Timestamp": "2019-10-15T23:39:32.000Z" + "SpotPrice": "0.137000", + "Timestamp": "2024-05-15T21:32:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.254300", - "Timestamp": "2019-10-15T23:39:32.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081000", + "Timestamp": "2024-05-15T21:32:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.154300", - "Timestamp": "2019-10-15T23:39:32.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096300", + "Timestamp": "2024-05-15T21:32:11.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.154300", - "Timestamp": "2019-10-15T23:39:32.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-15T21:32:11.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m6a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.154300", - "Timestamp": "2019-10-15T23:39:32.000Z" + "SpotPrice": "0.036300", + "Timestamp": "2024-05-15T21:32:11.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.073700", - "Timestamp": "2019-10-15T23:39:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.034600", + "Timestamp": "2024-05-15T21:17:55.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.073700", - "Timestamp": "2019-10-15T23:39:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.132200", + "Timestamp": "2024-05-15T21:17:42.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.073700", - "Timestamp": "2019-10-15T23:39:29.000Z" + "SpotPrice": "0.104800", + "Timestamp": "2024-05-15T21:17:38.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.113700", - "Timestamp": "2019-10-15T23:39:29.000Z" + "SpotPrice": "0.100800", + "Timestamp": "2024-05-15T21:17:38.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.113700", - "Timestamp": "2019-10-15T23:39:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044800", + "Timestamp": "2024-05-15T21:17:38.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.113700", - "Timestamp": "2019-10-15T23:39:29.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-15T21:17:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.013700", - "Timestamp": "2019-10-15T23:39:29.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101000", + "Timestamp": "2024-05-15T21:17:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.013700", - "Timestamp": "2019-10-15T23:39:29.000Z" + "SpotPrice": "0.045000", + "Timestamp": "2024-05-15T21:17:31.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.013700", - "Timestamp": "2019-10-15T23:39:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065500", + "Timestamp": "2024-05-15T21:11:34.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t1.micro", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t4g.micro", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062000", - "Timestamp": "2019-10-15T23:38:39.000Z" + "SpotPrice": "0.066500", + "Timestamp": "2024-05-15T21:11:34.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t1.micro", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t4g.micro", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062000", - "Timestamp": "2019-10-15T23:38:39.000Z" + "SpotPrice": "0.063900", + "Timestamp": "2024-05-15T21:11:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t1.micro", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t4g.micro", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062000", - "Timestamp": "2019-10-15T23:38:39.000Z" + "SpotPrice": "0.063900", + "Timestamp": "2024-05-15T21:11:34.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t1.micro", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t4g.micro", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-15T23:38:39.000Z" + "SpotPrice": "0.005500", + "Timestamp": "2024-05-15T21:11:34.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t1.micro", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t4g.micro", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-15T23:38:39.000Z" + "SpotPrice": "0.006500", + "Timestamp": "2024-05-15T21:11:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t1.micro", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t4g.micro", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-15T23:38:39.000Z" + "SpotPrice": "0.003900", + "Timestamp": "2024-05-15T21:11:34.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t1.micro", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003900", + "Timestamp": "2024-05-15T21:11:34.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "t4g.micro", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T23:38:39.000Z" + "SpotPrice": "0.005500", + "Timestamp": "2024-05-15T21:11:34.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t1.micro", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t4g.micro", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T23:38:39.000Z" + "SpotPrice": "0.006500", + "Timestamp": "2024-05-15T21:11:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t1.micro", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t4g.micro", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T23:38:39.000Z" + "SpotPrice": "0.003900", + "Timestamp": "2024-05-15T21:11:34.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t1.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T23:38:39.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003900", + "Timestamp": "2024-05-15T21:11:34.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t1.micro", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.medium", "ProductDescription": "Windows", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T23:38:39.000Z" + "SpotPrice": "0.035100", + "Timestamp": "2024-05-15T21:10:56.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t1.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T23:38:39.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092500", + "Timestamp": "2024-05-15T21:08:58.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.259600", - "Timestamp": "2019-10-15T23:33:40.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088800", + "Timestamp": "2024-05-15T21:08:58.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032500", + "Timestamp": "2024-05-15T21:08:58.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.826800", - "Timestamp": "2019-10-15T23:32:40.000Z" + "SpotPrice": "0.126000", + "Timestamp": "2024-05-15T21:03:13.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.796800", - "Timestamp": "2019-10-15T23:32:40.000Z" + "SpotPrice": "0.122000", + "Timestamp": "2024-05-15T21:03:13.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5ad.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.696800", - "Timestamp": "2019-10-15T23:32:40.000Z" + "SpotPrice": "0.066000", + "Timestamp": "2024-05-15T21:03:13.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c3.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.632300", - "Timestamp": "2019-10-15T23:32:37.000Z" + "SpotPrice": "0.116400", + "Timestamp": "2024-05-15T21:02:56.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c3.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.602300", - "Timestamp": "2019-10-15T23:32:37.000Z" + "SpotPrice": "0.156400", + "Timestamp": "2024-05-15T21:02:56.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c3.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.502300", - "Timestamp": "2019-10-15T23:32:37.000Z" + "SpotPrice": "0.056400", + "Timestamp": "2024-05-15T21:02:56.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.062700", + "Timestamp": "2024-05-15T21:02:52.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "c1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.126400", + "Timestamp": "2024-05-15T21:02:43.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.169200", + "Timestamp": "2024-05-15T21:02:42.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3a.nano", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.424400", - "Timestamp": "2019-10-15T23:32:19.000Z" + "SpotPrice": "0.062600", + "Timestamp": "2024-05-15T21:02:11.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3a.nano", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.394400", - "Timestamp": "2019-10-15T23:32:19.000Z" + "SpotPrice": "0.002600", + "Timestamp": "2024-05-15T21:02:11.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3a.nano", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.294400", - "Timestamp": "2019-10-15T23:32:19.000Z" + "SpotPrice": "0.002600", + "Timestamp": "2024-05-15T21:02:11.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7gd.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.433600", - "Timestamp": "2019-10-15T23:32:17.000Z" + "SpotPrice": "0.659200", + "Timestamp": "2024-05-15T20:47:42.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7gd.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.403600", - "Timestamp": "2019-10-15T23:32:17.000Z" + "SpotPrice": "0.654200", + "Timestamp": "2024-05-15T20:47:42.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "r7gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.303600", - "Timestamp": "2019-10-15T23:32:17.000Z" + "SpotPrice": "0.529200", + "Timestamp": "2024-05-15T20:47:42.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.702600", - "Timestamp": "2019-10-15T23:32:01.000Z" + "SpotPrice": "0.077500", + "Timestamp": "2024-05-15T20:47:42.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.672600", - "Timestamp": "2019-10-15T23:32:01.000Z" + "SpotPrice": "0.048500", + "Timestamp": "2024-05-15T20:47:42.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.572600", - "Timestamp": "2019-10-15T23:32:01.000Z" + "SpotPrice": "0.017500", + "Timestamp": "2024-05-15T20:47:42.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.131900", - "Timestamp": "2019-10-15T23:31:38.000Z" + "SpotPrice": "0.275700", + "Timestamp": "2024-05-15T20:47:18.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.171900", - "Timestamp": "2019-10-15T23:31:38.000Z" + "SpotPrice": "0.270700", + "Timestamp": "2024-05-15T20:47:18.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.071900", - "Timestamp": "2019-10-15T23:31:38.000Z" + "SpotPrice": "0.145700", + "Timestamp": "2024-05-15T20:47:18.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i-flex.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.259600", - "Timestamp": "2019-10-15T23:24:40.000Z" + "SpotPrice": "0.260600", + "Timestamp": "2024-05-15T20:47:12.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.843100", - "Timestamp": "2019-10-15T23:23:40.000Z" + "SpotPrice": "0.689100", + "Timestamp": "2024-05-15T20:46:58.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.813100", - "Timestamp": "2019-10-15T23:23:40.000Z" + "SpotPrice": "0.684100", + "Timestamp": "2024-05-15T20:46:58.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.713100", - "Timestamp": "2019-10-15T23:23:40.000Z" + "SpotPrice": "0.559100", + "Timestamp": "2024-05-15T20:46:58.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6in.large", "ProductDescription": "Windows", - "SpotPrice": "3.073700", - "Timestamp": "2019-10-15T23:19:54.000Z" + "SpotPrice": "0.140200", + "Timestamp": "2024-05-15T20:33:24.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "im4gn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.791400", - "Timestamp": "2019-10-15T23:16:01.000Z" + "SpotPrice": "0.130000", + "Timestamp": "2024-05-15T20:33:09.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "im4gn.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.761400", - "Timestamp": "2019-10-15T23:16:01.000Z" + "SpotPrice": "0.126300", + "Timestamp": "2024-05-15T20:33:09.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "im4gn.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.661400", - "Timestamp": "2019-10-15T23:16:01.000Z" + "SpotPrice": "0.070000", + "Timestamp": "2024-05-15T20:33:09.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.550100", + "Timestamp": "2024-05-15T20:33:06.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.522000", + "Timestamp": "2024-05-15T20:32:49.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.935500", + "Timestamp": "2024-05-15T20:32:46.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.341100", + "Timestamp": "2024-05-15T20:32:45.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.149400", + "Timestamp": "2024-05-15T20:32:31.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.038700", + "Timestamp": "2024-05-15T20:32:30.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "t4g.small", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.259700", - "Timestamp": "2019-10-15T23:15:37.000Z" + "SpotPrice": "0.068300", + "Timestamp": "2024-05-15T20:32:25.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t4g.small", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.229700", - "Timestamp": "2019-10-15T23:15:37.000Z" + "SpotPrice": "0.039600", + "Timestamp": "2024-05-15T20:32:25.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t4g.small", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.129700", - "Timestamp": "2019-10-15T23:15:37.000Z" + "SpotPrice": "0.008300", + "Timestamp": "2024-05-15T20:32:25.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.310100", - "Timestamp": "2019-10-15T23:14:54.000Z" + "SpotPrice": "0.082800", + "Timestamp": "2024-05-15T20:18:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.280100", - "Timestamp": "2019-10-15T23:14:54.000Z" + "SpotPrice": "0.079100", + "Timestamp": "2024-05-15T20:18:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.180100", - "Timestamp": "2019-10-15T23:14:54.000Z" + "SpotPrice": "0.022800", + "Timestamp": "2024-05-15T20:18:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.089900", + "Timestamp": "2024-05-15T20:18:13.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.486600", - "Timestamp": "2019-10-15T23:14:45.000Z" + "SpotPrice": "0.081700", + "Timestamp": "2024-05-15T20:18:06.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.456600", - "Timestamp": "2019-10-15T23:14:45.000Z" + "SpotPrice": "0.052700", + "Timestamp": "2024-05-15T20:18:06.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gd.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.356600", - "Timestamp": "2019-10-15T23:14:45.000Z" + "SpotPrice": "0.021700", + "Timestamp": "2024-05-15T20:18:06.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.126500", + "Timestamp": "2024-05-15T20:18:02.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3.small", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.995700", - "Timestamp": "2019-10-15T23:10:41.000Z" + "SpotPrice": "0.068800", + "Timestamp": "2024-05-15T20:17:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3.small", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.965700", - "Timestamp": "2019-10-15T23:10:41.000Z" + "SpotPrice": "0.039800", + "Timestamp": "2024-05-15T20:17:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3.small", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.865700", - "Timestamp": "2019-10-15T23:10:41.000Z" + "SpotPrice": "0.008800", + "Timestamp": "2024-05-15T20:17:41.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.256900", - "Timestamp": "2019-10-15T23:10:16.000Z" + "SpotPrice": "0.090800", + "Timestamp": "2024-05-15T20:17:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6g.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.226900", - "Timestamp": "2019-10-15T23:10:16.000Z" + "SpotPrice": "0.087100", + "Timestamp": "2024-05-15T20:17:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c6g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.126900", - "Timestamp": "2019-10-15T23:10:16.000Z" + "SpotPrice": "0.030800", + "Timestamp": "2024-05-15T20:17:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.281200", - "Timestamp": "2019-10-15T23:08:45.000Z" + "SpotPrice": "0.759800", + "Timestamp": "2024-05-15T20:17:38.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.251200", - "Timestamp": "2019-10-15T23:08:45.000Z" + "SpotPrice": "0.754800", + "Timestamp": "2024-05-15T20:17:38.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "g5.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.151200", - "Timestamp": "2019-10-15T23:08:45.000Z" + "SpotPrice": "0.629800", + "Timestamp": "2024-05-15T20:17:38.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.140400", + "Timestamp": "2024-05-15T20:17:36.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.small", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.736500", - "Timestamp": "2019-10-15T23:07:21.000Z" + "SpotPrice": "0.068900", + "Timestamp": "2024-05-15T20:17:25.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.small", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.706500", - "Timestamp": "2019-10-15T23:07:21.000Z" + "SpotPrice": "0.039900", + "Timestamp": "2024-05-15T20:17:25.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.small", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.606500", - "Timestamp": "2019-10-15T23:07:21.000Z" + "SpotPrice": "0.008900", + "Timestamp": "2024-05-15T20:17:25.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t1.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.008200", + "Timestamp": "2024-05-15T20:03:05.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.136600", - "Timestamp": "2019-10-15T23:06:30.000Z" + "SpotPrice": "0.084300", + "Timestamp": "2024-05-15T20:02:50.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.176600", - "Timestamp": "2019-10-15T23:06:30.000Z" + "SpotPrice": "0.080600", + "Timestamp": "2024-05-15T20:02:50.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.076600", - "Timestamp": "2019-10-15T23:06:30.000Z" + "SpotPrice": "0.024300", + "Timestamp": "2024-05-15T20:02:50.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.metal", - "ProductDescription": "Windows", - "SpotPrice": "8.016000", - "Timestamp": "2019-10-15T23:03:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085200", + "Timestamp": "2024-05-15T20:02:47.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.metal", - "ProductDescription": "Windows", - "SpotPrice": "8.016000", - "Timestamp": "2019-10-15T23:03:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.081500", + "Timestamp": "2024-05-15T20:02:47.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.metal", - "ProductDescription": "Windows", - "SpotPrice": "8.016000", - "Timestamp": "2019-10-15T23:03:25.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025200", + "Timestamp": "2024-05-15T20:02:47.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t4g.nano", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.730000", - "Timestamp": "2019-10-15T23:02:20.000Z" + "SpotPrice": "0.062700", + "Timestamp": "2024-05-15T20:02:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.730000", - "Timestamp": "2019-10-15T23:02:20.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002700", + "Timestamp": "2024-05-15T20:02:31.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002700", + "Timestamp": "2024-05-15T20:02:31.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i-flex.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.730000", - "Timestamp": "2019-10-15T23:02:20.000Z" + "SpotPrice": "0.107500", + "Timestamp": "2024-05-15T20:02:30.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i-flex.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.700000", - "Timestamp": "2019-10-15T23:02:20.000Z" + "SpotPrice": "0.103800", + "Timestamp": "2024-05-15T20:02:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.700000", - "Timestamp": "2019-10-15T23:02:20.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047500", + "Timestamp": "2024-05-15T20:02:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119900", + "Timestamp": "2024-05-15T20:02:29.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6gd.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.700000", - "Timestamp": "2019-10-15T23:02:20.000Z" + "SpotPrice": "0.116200", + "Timestamp": "2024-05-15T20:02:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r6gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.600000", - "Timestamp": "2019-10-15T23:02:20.000Z" + "SpotPrice": "0.059900", + "Timestamp": "2024-05-15T20:02:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.600000", - "Timestamp": "2019-10-15T23:02:20.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.352400", + "Timestamp": "2024-05-15T19:48:03.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084100", + "Timestamp": "2024-05-15T19:47:50.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080400", + "Timestamp": "2024-05-15T19:47:50.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.600000", - "Timestamp": "2019-10-15T23:02:20.000Z" + "SpotPrice": "0.024100", + "Timestamp": "2024-05-15T19:47:50.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m3.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.419900", - "Timestamp": "2019-10-15T22:58:38.000Z" + "SpotPrice": "0.088400", + "Timestamp": "2024-05-15T19:47:33.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m3.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.389900", - "Timestamp": "2019-10-15T22:58:38.000Z" + "SpotPrice": "0.128400", + "Timestamp": "2024-05-15T19:47:33.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m3.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.289900", - "Timestamp": "2019-10-15T22:58:38.000Z" + "SpotPrice": "0.028400", + "Timestamp": "2024-05-15T19:47:33.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t1.micro", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.293100", - "Timestamp": "2019-10-15T22:58:36.000Z" + "SpotPrice": "0.068500", + "Timestamp": "2024-05-15T19:47:18.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t1.micro", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.263100", - "Timestamp": "2019-10-15T22:58:36.000Z" + "SpotPrice": "0.008500", + "Timestamp": "2024-05-15T19:47:18.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t1.micro", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.163100", - "Timestamp": "2019-10-15T22:58:36.000Z" + "SpotPrice": "0.008500", + "Timestamp": "2024-05-15T19:47:18.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.290600", - "Timestamp": "2019-10-15T22:58:07.000Z" + "SpotPrice": "0.098400", + "Timestamp": "2024-05-15T19:32:40.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.260600", - "Timestamp": "2019-10-15T22:58:07.000Z" + "SpotPrice": "0.094700", + "Timestamp": "2024-05-15T19:32:40.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.160600", - "Timestamp": "2019-10-15T22:58:07.000Z" + "SpotPrice": "0.038400", + "Timestamp": "2024-05-15T19:32:40.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t4g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.445400", - "Timestamp": "2019-10-15T22:58:00.000Z" + "SpotPrice": "0.075900", + "Timestamp": "2024-05-15T19:32:33.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t4g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.415400", - "Timestamp": "2019-10-15T22:58:00.000Z" + "SpotPrice": "0.072200", + "Timestamp": "2024-05-15T19:32:33.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t4g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.315400", - "Timestamp": "2019-10-15T22:58:00.000Z" + "SpotPrice": "0.015900", + "Timestamp": "2024-05-15T19:32:33.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5dn.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.611000", + "Timestamp": "2024-05-15T19:18:03.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.991800", + "Timestamp": "2024-05-15T19:04:21.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "m1.small", + "ProductDescription": "Windows", + "SpotPrice": "0.048200", + "Timestamp": "2024-05-15T19:03:54.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.861400", - "Timestamp": "2019-10-15T22:54:05.000Z" + "SpotPrice": "0.211700", + "Timestamp": "2024-05-15T19:03:32.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5dn.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.831400", - "Timestamp": "2019-10-15T22:54:05.000Z" + "SpotPrice": "0.208000", + "Timestamp": "2024-05-15T19:03:32.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5dn.24xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7iz.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.731400", - "Timestamp": "2019-10-15T22:54:05.000Z" + "SpotPrice": "0.151700", + "Timestamp": "2024-05-15T19:03:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m1.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.817300", - "Timestamp": "2019-10-15T22:50:38.000Z" + "SpotPrice": "0.135000", + "Timestamp": "2024-05-15T19:03:09.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m1.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.787300", - "Timestamp": "2019-10-15T22:50:38.000Z" + "SpotPrice": "0.175000", + "Timestamp": "2024-05-15T19:03:09.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m1.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.687300", - "Timestamp": "2019-10-15T22:50:38.000Z" + "SpotPrice": "0.075000", + "Timestamp": "2024-05-15T19:03:09.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i-flex.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.748900", - "Timestamp": "2019-10-15T22:50:28.000Z" + "SpotPrice": "0.105000", + "Timestamp": "2024-05-15T19:02:57.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i-flex.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.718900", - "Timestamp": "2019-10-15T22:50:28.000Z" + "SpotPrice": "0.101300", + "Timestamp": "2024-05-15T19:02:57.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i-flex.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.618900", - "Timestamp": "2019-10-15T22:50:28.000Z" + "SpotPrice": "0.045000", + "Timestamp": "2024-05-15T19:02:57.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.nano", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.239700", - "Timestamp": "2019-10-15T22:50:24.000Z" + "SpotPrice": "0.062300", + "Timestamp": "2024-05-15T19:02:55.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.nano", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.209700", - "Timestamp": "2019-10-15T22:50:24.000Z" + "SpotPrice": "0.002300", + "Timestamp": "2024-05-15T19:02:55.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.nano", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.109700", - "Timestamp": "2019-10-15T22:50:24.000Z" + "SpotPrice": "0.002300", + "Timestamp": "2024-05-15T19:02:55.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.718700", - "Timestamp": "2019-10-15T22:49:59.000Z" + "SpotPrice": "0.808100", + "Timestamp": "2024-05-15T18:48:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.688700", - "Timestamp": "2019-10-15T22:49:59.000Z" + "SpotPrice": "0.803100", + "Timestamp": "2024-05-15T18:48:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.588700", - "Timestamp": "2019-10-15T22:49:59.000Z" + "SpotPrice": "0.678100", + "Timestamp": "2024-05-15T18:48:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i-flex.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097900", - "Timestamp": "2019-10-15T22:49:38.000Z" + "SpotPrice": "0.162300", + "Timestamp": "2024-05-15T18:48:02.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i-flex.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137900", - "Timestamp": "2019-10-15T22:49:38.000Z" + "SpotPrice": "0.158600", + "Timestamp": "2024-05-15T18:48:02.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7i-flex.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037900", - "Timestamp": "2019-10-15T22:49:38.000Z" + "SpotPrice": "0.102300", + "Timestamp": "2024-05-15T18:48:02.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5dn.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.861400", - "Timestamp": "2019-10-15T22:45:05.000Z" + "SpotPrice": "0.118000", + "Timestamp": "2024-05-15T18:48:00.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5dn.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7gd.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.831400", - "Timestamp": "2019-10-15T22:45:05.000Z" + "SpotPrice": "0.114300", + "Timestamp": "2024-05-15T18:48:00.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5dn.24xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "r7gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.731400", - "Timestamp": "2019-10-15T22:45:05.000Z" + "SpotPrice": "0.058000", + "Timestamp": "2024-05-15T18:48:00.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5dn.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.274300", - "Timestamp": "2019-10-15T22:43:41.000Z" + "SpotPrice": "0.124100", + "Timestamp": "2024-05-15T18:47:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.274300", - "Timestamp": "2019-10-15T22:43:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120400", + "Timestamp": "2024-05-15T18:47:41.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5dn.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064100", + "Timestamp": "2024-05-15T18:47:41.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.274300", - "Timestamp": "2019-10-15T22:43:41.000Z" + "SpotPrice": "0.151300", + "Timestamp": "2024-05-15T18:47:41.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5dn.2xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.244300", - "Timestamp": "2019-10-15T22:43:41.000Z" + "SpotPrice": "0.147600", + "Timestamp": "2024-05-15T18:47:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.244300", - "Timestamp": "2019-10-15T22:43:41.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091300", + "Timestamp": "2024-05-15T18:47:41.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5dn.2xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070700", + "Timestamp": "2024-05-15T18:47:37.000Z" + }, + { + "AvailabilityZone": "us-east-1e", + "InstanceType": "t2.small", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.244300", - "Timestamp": "2019-10-15T22:43:41.000Z" + "SpotPrice": "0.040700", + "Timestamp": "2024-05-15T18:47:37.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5dn.2xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "t2.small", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.144300", - "Timestamp": "2019-10-15T22:43:41.000Z" + "SpotPrice": "0.010700", + "Timestamp": "2024-05-15T18:47:37.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.144300", - "Timestamp": "2019-10-15T22:43:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160300", + "Timestamp": "2024-05-15T18:47:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.144300", - "Timestamp": "2019-10-15T22:43:41.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156600", + "Timestamp": "2024-05-15T18:47:34.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.512300", - "Timestamp": "2019-10-15T22:43:39.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-15T18:47:34.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.512300", - "Timestamp": "2019-10-15T22:43:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100500", + "Timestamp": "2024-05-15T18:47:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.512300", - "Timestamp": "2019-10-15T22:43:39.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096800", + "Timestamp": "2024-05-15T18:47:34.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.249400", - "Timestamp": "2019-10-15T22:43:25.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040500", + "Timestamp": "2024-05-15T18:47:34.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6id.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.249400", - "Timestamp": "2019-10-15T22:43:25.000Z" + "SpotPrice": "3.427200", + "Timestamp": "2024-05-15T18:33:56.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t2.medium", "ProductDescription": "Windows", - "SpotPrice": "0.249400", - "Timestamp": "2019-10-15T22:43:25.000Z" + "SpotPrice": "0.037600", + "Timestamp": "2024-05-15T18:33:21.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.707100", - "Timestamp": "2019-10-15T22:43:23.000Z" + "SpotPrice": "0.100500", + "Timestamp": "2024-05-15T18:32:37.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.707100", - "Timestamp": "2019-10-15T22:43:23.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-15T18:32:37.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040500", + "Timestamp": "2024-05-15T18:32:37.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.152300", + "Timestamp": "2024-05-15T18:18:38.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gd.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.707100", - "Timestamp": "2019-10-15T22:43:23.000Z" + "SpotPrice": "0.080200", + "Timestamp": "2024-05-15T18:18:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gd.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.677100", - "Timestamp": "2019-10-15T22:43:23.000Z" + "SpotPrice": "0.051200", + "Timestamp": "2024-05-15T18:18:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.677100", - "Timestamp": "2019-10-15T22:43:23.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020200", + "Timestamp": "2024-05-15T18:18:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079800", + "Timestamp": "2024-05-15T18:17:43.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.677100", - "Timestamp": "2019-10-15T22:43:23.000Z" + "SpotPrice": "0.076100", + "Timestamp": "2024-05-15T18:17:43.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "m7g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.577100", - "Timestamp": "2019-10-15T22:43:23.000Z" + "SpotPrice": "0.019800", + "Timestamp": "2024-05-15T18:17:43.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.577100", - "Timestamp": "2019-10-15T22:43:23.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.068400", + "Timestamp": "2024-05-15T18:04:02.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.577100", - "Timestamp": "2019-10-15T22:43:23.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.137300", + "Timestamp": "2024-05-15T18:03:46.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.340600", - "Timestamp": "2019-10-15T22:42:59.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.150200", + "Timestamp": "2024-05-15T18:03:24.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.340600", - "Timestamp": "2019-10-15T22:42:59.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.813300", + "Timestamp": "2024-05-15T18:02:51.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "17.344000", + "Timestamp": "2024-05-15T17:52:52.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "a1.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.340600", - "Timestamp": "2019-10-15T22:42:59.000Z" + "SpotPrice": "0.071500", + "Timestamp": "2024-05-15T17:49:01.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "a1.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.310600", - "Timestamp": "2019-10-15T22:42:59.000Z" + "SpotPrice": "0.042500", + "Timestamp": "2024-05-15T17:49:01.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.310600", - "Timestamp": "2019-10-15T22:42:59.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "a1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011500", + "Timestamp": "2024-05-15T17:49:01.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080300", + "Timestamp": "2024-05-15T17:47:56.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "t2.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.310600", - "Timestamp": "2019-10-15T22:42:59.000Z" + "SpotPrice": "0.120300", + "Timestamp": "2024-05-15T17:47:56.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t2.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.210600", - "Timestamp": "2019-10-15T22:42:59.000Z" + "SpotPrice": "0.020300", + "Timestamp": "2024-05-15T17:47:56.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.210600", - "Timestamp": "2019-10-15T22:42:59.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138100", + "Timestamp": "2024-05-15T17:47:51.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134400", + "Timestamp": "2024-05-15T17:47:51.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "x2gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.210600", - "Timestamp": "2019-10-15T22:42:59.000Z" + "SpotPrice": "0.078100", + "Timestamp": "2024-05-15T17:47:51.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.970000", - "Timestamp": "2019-10-15T22:42:58.000Z" + "SpotPrice": "0.103500", + "Timestamp": "2024-05-15T17:47:47.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.940000", - "Timestamp": "2019-10-15T22:42:58.000Z" + "SpotPrice": "0.099800", + "Timestamp": "2024-05-15T17:47:47.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.840000", - "Timestamp": "2019-10-15T22:42:58.000Z" + "SpotPrice": "0.043500", + "Timestamp": "2024-05-15T17:47:47.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.275600", - "Timestamp": "2019-10-15T22:42:55.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142600", + "Timestamp": "2024-05-15T17:47:46.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.096000", - "Timestamp": "2019-10-15T22:42:32.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138900", + "Timestamp": "2024-05-15T17:47:46.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "13.350000", - "Timestamp": "2019-10-15T22:42:32.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "r7iz.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082600", + "Timestamp": "2024-05-15T17:47:46.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "4.066000", - "Timestamp": "2019-10-15T22:42:32.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-15T17:47:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "13.320000", - "Timestamp": "2019-10-15T22:42:32.000Z" + "SpotPrice": "0.103700", + "Timestamp": "2024-05-15T17:47:40.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.966000", - "Timestamp": "2019-10-15T22:42:32.000Z" + "SpotPrice": "0.047700", + "Timestamp": "2024-05-15T17:47:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077400", + "Timestamp": "2024-05-15T17:34:09.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073700", + "Timestamp": "2024-05-15T17:34:09.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3a.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "13.220000", - "Timestamp": "2019-10-15T22:42:32.000Z" + "SpotPrice": "0.017400", + "Timestamp": "2024-05-15T17:34:09.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.546500", - "Timestamp": "2019-10-15T22:42:19.000Z" + "SpotPrice": "0.088900", + "Timestamp": "2024-05-15T17:33:31.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.516500", - "Timestamp": "2019-10-15T22:42:19.000Z" + "SpotPrice": "0.059900", + "Timestamp": "2024-05-15T17:33:31.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6gd.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.416500", - "Timestamp": "2019-10-15T22:42:19.000Z" + "SpotPrice": "0.028900", + "Timestamp": "2024-05-15T17:33:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "a1.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.131900", + "Timestamp": "2024-05-15T17:32:43.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.078100", - "Timestamp": "2019-10-15T22:42:15.000Z" + "SpotPrice": "0.098700", + "Timestamp": "2024-05-15T17:32:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "a1.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.118100", - "Timestamp": "2019-10-15T22:42:15.000Z" + "SpotPrice": "0.095000", + "Timestamp": "2024-05-15T17:32:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "a1.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.018100", - "Timestamp": "2019-10-15T22:42:15.000Z" + "SpotPrice": "0.038700", + "Timestamp": "2024-05-15T17:32:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t2.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.250000", - "Timestamp": "2019-10-15T22:42:14.000Z" + "SpotPrice": "0.082300", + "Timestamp": "2024-05-15T17:32:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t2.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.220000", - "Timestamp": "2019-10-15T22:42:14.000Z" + "SpotPrice": "0.122300", + "Timestamp": "2024-05-15T17:32:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t2.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.120000", - "Timestamp": "2019-10-15T22:42:14.000Z" + "SpotPrice": "0.022300", + "Timestamp": "2024-05-15T17:32:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.large", "ProductDescription": "Windows", - "SpotPrice": "5.438000", - "Timestamp": "2019-10-15T22:41:58.000Z" + "SpotPrice": "0.064100", + "Timestamp": "2024-05-15T17:32:13.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.438000", - "Timestamp": "2019-10-15T22:41:58.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084800", + "Timestamp": "2024-05-15T17:18:13.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "14.692000", - "Timestamp": "2019-10-15T22:41:58.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.081100", + "Timestamp": "2024-05-15T17:18:13.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024800", + "Timestamp": "2024-05-15T17:18:13.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "t2.small", "ProductDescription": "Windows", - "SpotPrice": "4.153300", - "Timestamp": "2019-10-15T22:40:00.000Z" + "SpotPrice": "0.019000", + "Timestamp": "2024-05-15T17:17:59.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3a.nano", "ProductDescription": "Windows", - "SpotPrice": "4.153300", - "Timestamp": "2019-10-15T22:40:00.000Z" + "SpotPrice": "0.006800", + "Timestamp": "2024-05-15T17:10:47.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.nano", "ProductDescription": "Windows", - "SpotPrice": "4.153300", - "Timestamp": "2019-10-15T22:40:00.000Z" + "SpotPrice": "0.006600", + "Timestamp": "2024-05-15T17:10:47.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3a.nano", "ProductDescription": "Windows", - "SpotPrice": "0.668000", - "Timestamp": "2019-10-15T22:39:23.000Z" + "SpotPrice": "0.006900", + "Timestamp": "2024-05-15T17:10:47.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3a.nano", "ProductDescription": "Windows", - "SpotPrice": "0.668000", - "Timestamp": "2019-10-15T22:39:23.000Z" + "SpotPrice": "0.006900", + "Timestamp": "2024-05-15T17:10:47.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.nano", "ProductDescription": "Windows", - "SpotPrice": "0.668000", - "Timestamp": "2019-10-15T22:39:23.000Z" + "SpotPrice": "0.006700", + "Timestamp": "2024-05-15T17:10:47.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.nano", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.339300", - "Timestamp": "2019-10-15T22:39:17.000Z" + "SpotPrice": "0.063400", + "Timestamp": "2024-05-15T17:09:49.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3a.nano", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.339300", - "Timestamp": "2019-10-15T22:39:17.000Z" + "SpotPrice": "0.062300", + "Timestamp": "2024-05-15T17:09:49.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3a.nano", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.339300", - "Timestamp": "2019-10-15T22:39:17.000Z" + "SpotPrice": "0.062400", + "Timestamp": "2024-05-15T17:09:49.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062100", + "Timestamp": "2024-05-15T17:09:49.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.nano", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.309300", - "Timestamp": "2019-10-15T22:39:17.000Z" + "SpotPrice": "0.003400", + "Timestamp": "2024-05-15T17:09:49.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3a.nano", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.309300", - "Timestamp": "2019-10-15T22:39:17.000Z" + "SpotPrice": "0.002300", + "Timestamp": "2024-05-15T17:09:49.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3a.nano", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.309300", - "Timestamp": "2019-10-15T22:39:17.000Z" + "SpotPrice": "0.002400", + "Timestamp": "2024-05-15T17:09:49.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.209300", - "Timestamp": "2019-10-15T22:39:17.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002100", + "Timestamp": "2024-05-15T17:09:49.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.nano", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.209300", - "Timestamp": "2019-10-15T22:39:17.000Z" + "SpotPrice": "0.003400", + "Timestamp": "2024-05-15T17:09:49.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3a.nano", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.209300", - "Timestamp": "2019-10-15T22:39:17.000Z" + "SpotPrice": "0.002300", + "Timestamp": "2024-05-15T17:09:49.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.430000", - "Timestamp": "2019-10-15T22:39:14.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002400", + "Timestamp": "2024-05-15T17:09:49.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.430000", - "Timestamp": "2019-10-15T22:39:14.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002100", + "Timestamp": "2024-05-15T17:09:49.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.430000", - "Timestamp": "2019-10-15T22:39:14.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.303800", + "Timestamp": "2024-05-15T17:03:08.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.400000", - "Timestamp": "2019-10-15T22:39:14.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.140800", + "Timestamp": "2024-05-15T17:03:06.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.400000", - "Timestamp": "2019-10-15T22:39:14.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.132500", + "Timestamp": "2024-05-15T16:47:50.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.400000", - "Timestamp": "2019-10-15T22:39:14.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.517800", + "Timestamp": "2024-05-15T16:47:39.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.300000", - "Timestamp": "2019-10-15T22:39:14.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101400", + "Timestamp": "2024-05-15T16:47:11.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.300000", - "Timestamp": "2019-10-15T22:39:14.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097700", + "Timestamp": "2024-05-15T16:47:11.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.300000", - "Timestamp": "2019-10-15T22:39:14.000Z" + "SpotPrice": "0.041400", + "Timestamp": "2024-05-15T16:47:11.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3a.medium", "ProductDescription": "Windows", - "SpotPrice": "3.312000", - "Timestamp": "2019-10-15T22:34:19.000Z" + "SpotPrice": "0.036000", + "Timestamp": "2024-05-15T16:33:07.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gn.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.133200", - "Timestamp": "2019-10-15T22:34:18.000Z" + "SpotPrice": "0.086100", + "Timestamp": "2024-05-15T16:32:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gn.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.173200", - "Timestamp": "2019-10-15T22:34:18.000Z" + "SpotPrice": "0.082400", + "Timestamp": "2024-05-15T16:32:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7gn.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.073200", - "Timestamp": "2019-10-15T22:34:18.000Z" - }, - { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.378300", - "Timestamp": "2019-10-15T22:33:38.000Z" + "SpotPrice": "0.026100", + "Timestamp": "2024-05-15T16:32:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.micro", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.132000", - "Timestamp": "2019-10-15T22:33:36.000Z" + "SpotPrice": "0.064400", + "Timestamp": "2024-05-15T16:22:16.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.micro", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.102000", - "Timestamp": "2019-10-15T22:33:36.000Z" + "SpotPrice": "0.004400", + "Timestamp": "2024-05-15T16:22:16.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.micro", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.002000", - "Timestamp": "2019-10-15T22:33:36.000Z" + "SpotPrice": "0.004400", + "Timestamp": "2024-05-15T16:22:16.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "a1.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.943900", - "Timestamp": "2019-10-15T22:33:28.000Z" + "SpotPrice": "0.117200", + "Timestamp": "2024-05-15T16:18:46.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "a1.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.913900", - "Timestamp": "2019-10-15T22:33:28.000Z" + "SpotPrice": "0.113500", + "Timestamp": "2024-05-15T16:18:46.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "a1.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.813900", - "Timestamp": "2019-10-15T22:33:28.000Z" + "SpotPrice": "0.057200", + "Timestamp": "2024-05-15T16:18:46.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.429400", - "Timestamp": "2019-10-15T22:33:23.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "m5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.144700", + "Timestamp": "2024-05-15T16:18:24.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.399400", - "Timestamp": "2019-10-15T22:33:23.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.143200", + "Timestamp": "2024-05-15T16:18:00.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.299400", - "Timestamp": "2019-10-15T22:33:23.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.156800", + "Timestamp": "2024-05-15T16:17:55.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t1.micro", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.721600", - "Timestamp": "2019-10-15T22:33:22.000Z" + "SpotPrice": "0.068700", + "Timestamp": "2024-05-15T16:17:47.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t1.micro", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.691600", - "Timestamp": "2019-10-15T22:33:22.000Z" + "SpotPrice": "0.008700", + "Timestamp": "2024-05-15T16:17:47.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t1.micro", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.591600", - "Timestamp": "2019-10-15T22:33:22.000Z" - }, - { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.114900", - "Timestamp": "2019-10-15T22:29:56.000Z" + "SpotPrice": "0.008700", + "Timestamp": "2024-05-15T16:17:47.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.286300", - "Timestamp": "2019-10-15T22:25:50.000Z" + "SpotPrice": "0.386800", + "Timestamp": "2024-05-15T16:17:32.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.256300", - "Timestamp": "2019-10-15T22:25:50.000Z" + "SpotPrice": "0.381800", + "Timestamp": "2024-05-15T16:17:32.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "r5.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.156300", - "Timestamp": "2019-10-15T22:25:50.000Z" + "SpotPrice": "0.256800", + "Timestamp": "2024-05-15T16:17:32.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.628600", - "Timestamp": "2019-10-15T22:25:36.000Z" + "SpotPrice": "0.106500", + "Timestamp": "2024-05-15T16:12:56.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.598600", - "Timestamp": "2019-10-15T22:25:36.000Z" + "SpotPrice": "0.102800", + "Timestamp": "2024-05-15T16:12:56.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.498600", - "Timestamp": "2019-10-15T22:25:36.000Z" + "SpotPrice": "0.046500", + "Timestamp": "2024-05-15T16:12:56.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.137700", - "Timestamp": "2019-10-15T22:25:22.000Z" - }, - { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.177700", - "Timestamp": "2019-10-15T22:25:22.000Z" - }, - { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.077700", - "Timestamp": "2019-10-15T22:25:22.000Z" + "SpotPrice": "0.083600", + "Timestamp": "2024-05-15T16:12:55.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.449700", - "Timestamp": "2019-10-15T22:25:01.000Z" + "SpotPrice": "0.071600", + "Timestamp": "2024-05-15T16:12:55.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.419700", - "Timestamp": "2019-10-15T22:25:01.000Z" - }, - { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.319700", - "Timestamp": "2019-10-15T22:25:01.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.316800", - "Timestamp": "2019-10-15T22:24:36.000Z" + "SpotPrice": "0.079900", + "Timestamp": "2024-05-15T16:12:55.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.286800", - "Timestamp": "2019-10-15T22:24:36.000Z" + "SpotPrice": "0.067900", + "Timestamp": "2024-05-15T16:12:55.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "c7a.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.186800", - "Timestamp": "2019-10-15T22:24:36.000Z" + "SpotPrice": "0.023600", + "Timestamp": "2024-05-15T16:12:55.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.098300", - "Timestamp": "2019-10-15T22:19:14.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011600", + "Timestamp": "2024-05-15T16:12:55.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r4.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.138300", - "Timestamp": "2019-10-15T22:19:14.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.129500", + "Timestamp": "2024-05-15T16:06:43.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.038300", - "Timestamp": "2019-10-15T22:19:14.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115700", + "Timestamp": "2024-05-15T16:06:43.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.339300", - "Timestamp": "2019-10-15T22:18:49.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "c7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.064800", + "Timestamp": "2024-05-15T16:06:11.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.309300", - "Timestamp": "2019-10-15T22:18:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "c7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.065000", + "Timestamp": "2024-05-15T16:06:11.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.209300", - "Timestamp": "2019-10-15T22:18:49.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t1.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.012300", + "Timestamp": "2024-05-15T16:03:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "x1e.4xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "t2.micro", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.185900", - "Timestamp": "2019-10-15T22:16:44.000Z" + "SpotPrice": "0.065200", + "Timestamp": "2024-05-15T15:47:43.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "x1e.4xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "t2.micro", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.155900", - "Timestamp": "2019-10-15T22:16:44.000Z" + "SpotPrice": "0.005200", + "Timestamp": "2024-05-15T15:47:43.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "x1e.4xlarge", + "AvailabilityZone": "us-east-1e", + "InstanceType": "t2.micro", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.055900", - "Timestamp": "2019-10-15T22:16:44.000Z" + "SpotPrice": "0.005200", + "Timestamp": "2024-05-15T15:47:43.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.013800", + "Timestamp": "2024-05-15T15:33:10.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "c1.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087900", - "Timestamp": "2019-10-15T22:16:31.000Z" + "SpotPrice": "0.125800", + "Timestamp": "2024-05-15T15:33:09.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c1.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.127900", - "Timestamp": "2019-10-15T22:16:31.000Z" + "SpotPrice": "0.165800", + "Timestamp": "2024-05-15T15:33:09.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c1.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027900", - "Timestamp": "2019-10-15T22:16:31.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.701900", - "Timestamp": "2019-10-15T22:16:26.000Z" + "SpotPrice": "0.065800", + "Timestamp": "2024-05-15T15:33:09.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.671900", - "Timestamp": "2019-10-15T22:16:26.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.138400", + "Timestamp": "2024-05-15T15:18:51.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.571900", - "Timestamp": "2019-10-15T22:16:26.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.027300", + "Timestamp": "2024-05-15T15:18:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "z1d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.386600", - "Timestamp": "2019-10-15T22:08:59.000Z" + "SpotPrice": "0.076600", + "Timestamp": "2024-05-15T15:18:16.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "z1d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.356600", - "Timestamp": "2019-10-15T22:08:59.000Z" + "SpotPrice": "0.047600", + "Timestamp": "2024-05-15T15:18:16.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "z1d.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c7g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.256600", - "Timestamp": "2019-10-15T22:08:59.000Z" + "SpotPrice": "0.016600", + "Timestamp": "2024-05-15T15:18:16.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.394600", + "Timestamp": "2024-05-15T15:18:15.000Z" + }, + { + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gn.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.286400", - "Timestamp": "2019-10-15T22:08:55.000Z" + "SpotPrice": "0.079000", + "Timestamp": "2024-05-15T15:17:57.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gn.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.256400", - "Timestamp": "2019-10-15T22:08:55.000Z" + "SpotPrice": "0.050000", + "Timestamp": "2024-05-15T15:17:57.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "c6gn.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.156400", - "Timestamp": "2019-10-15T22:08:55.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.334000", - "Timestamp": "2019-10-15T22:05:19.000Z" + "SpotPrice": "0.019000", + "Timestamp": "2024-05-15T15:17:57.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.small", "ProductDescription": "Windows", - "SpotPrice": "0.334000", - "Timestamp": "2019-10-15T22:05:19.000Z" + "SpotPrice": "0.027400", + "Timestamp": "2024-05-15T15:03:10.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3.small", "ProductDescription": "Windows", - "SpotPrice": "0.334000", - "Timestamp": "2019-10-15T22:05:19.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.210000", - "Timestamp": "2019-10-15T22:02:37.000Z" - }, - { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.210000", - "Timestamp": "2019-10-15T22:02:37.000Z" + "SpotPrice": "0.027600", + "Timestamp": "2024-05-15T15:02:43.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t4g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.210000", - "Timestamp": "2019-10-15T22:02:37.000Z" + "SpotPrice": "0.123200", + "Timestamp": "2024-05-15T15:02:34.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t4g.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.250000", - "Timestamp": "2019-10-15T22:02:37.000Z" + "SpotPrice": "0.119500", + "Timestamp": "2024-05-15T15:02:34.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.250000", - "Timestamp": "2019-10-15T22:02:37.000Z" + "AvailabilityZone": "us-east-1f", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063200", + "Timestamp": "2024-05-15T15:02:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.250000", - "Timestamp": "2019-10-15T22:02:37.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.009900", + "Timestamp": "2024-05-15T15:02:34.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.150000", - "Timestamp": "2019-10-15T22:02:37.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.132200", + "Timestamp": "2024-05-15T15:02:27.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.150000", - "Timestamp": "2019-10-15T22:02:37.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091700", + "Timestamp": "2024-05-15T14:48:00.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.150000", - "Timestamp": "2019-10-15T22:02:37.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.062700", + "Timestamp": "2024-05-15T14:48:00.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.229600", - "Timestamp": "2019-10-15T22:00:42.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031700", + "Timestamp": "2024-05-15T14:48:00.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.412000", - "Timestamp": "2019-10-15T22:00:18.000Z" + "SpotPrice": "0.112700", + "Timestamp": "2024-05-15T14:47:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.382000", - "Timestamp": "2019-10-15T22:00:18.000Z" + "SpotPrice": "0.108700", + "Timestamp": "2024-05-15T14:47:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c5ad.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.282000", - "Timestamp": "2019-10-15T22:00:18.000Z" + "SpotPrice": "0.052700", + "Timestamp": "2024-05-15T14:47:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.131500", + "Timestamp": "2024-05-15T14:33:53.000Z" + }, + { + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3a.small", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.291200", - "Timestamp": "2019-10-15T22:00:13.000Z" + "SpotPrice": "0.068700", + "Timestamp": "2024-05-15T14:32:44.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3a.small", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.261200", - "Timestamp": "2019-10-15T22:00:13.000Z" + "SpotPrice": "0.039700", + "Timestamp": "2024-05-15T14:32:44.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3a.small", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.161200", - "Timestamp": "2019-10-15T22:00:13.000Z" + "SpotPrice": "0.008700", + "Timestamp": "2024-05-15T14:32:44.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3.small", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.447400", - "Timestamp": "2019-10-15T22:00:06.000Z" + "SpotPrice": "0.068400", + "Timestamp": "2024-05-15T14:32:39.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3.small", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.417400", - "Timestamp": "2019-10-15T22:00:06.000Z" + "SpotPrice": "0.039400", + "Timestamp": "2024-05-15T14:32:39.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "t3.small", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.317400", - "Timestamp": "2019-10-15T22:00:06.000Z" + "SpotPrice": "0.008400", + "Timestamp": "2024-05-15T14:32:39.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3.micro", "ProductDescription": "Windows", - "SpotPrice": "1.184000", - "Timestamp": "2019-10-15T21:59:00.000Z" + "SpotPrice": "0.014100", + "Timestamp": "2024-05-15T14:19:44.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3.nano", "ProductDescription": "Windows", - "SpotPrice": "1.184000", - "Timestamp": "2019-10-15T21:59:00.000Z" + "SpotPrice": "0.007000", + "Timestamp": "2024-05-15T14:19:08.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.184000", - "Timestamp": "2019-10-15T21:59:00.000Z" + "SpotPrice": "0.285000", + "Timestamp": "2024-05-15T14:18:05.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gn.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.012000", - "Timestamp": "2019-10-15T21:58:29.000Z" + "SpotPrice": "0.080200", + "Timestamp": "2024-05-15T14:17:55.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.012000", - "Timestamp": "2019-10-15T21:58:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.051200", + "Timestamp": "2024-05-15T14:17:55.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.012000", - "Timestamp": "2019-10-15T21:58:29.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020200", + "Timestamp": "2024-05-15T14:17:55.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.982000", - "Timestamp": "2019-10-15T21:58:29.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.013600", + "Timestamp": "2024-05-15T14:03:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.982000", - "Timestamp": "2019-10-15T21:58:29.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082400", + "Timestamp": "2024-05-15T14:02:53.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.982000", - "Timestamp": "2019-10-15T21:58:29.000Z" + "SpotPrice": "0.078700", + "Timestamp": "2024-05-15T14:02:53.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m7gd.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.882000", - "Timestamp": "2019-10-15T21:58:29.000Z" + "SpotPrice": "0.022400", + "Timestamp": "2024-05-15T14:02:53.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.882000", - "Timestamp": "2019-10-15T21:58:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148200", + "Timestamp": "2024-05-15T14:02:47.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.882000", - "Timestamp": "2019-10-15T21:58:29.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144200", + "Timestamp": "2024-05-15T14:02:47.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.779000", - "Timestamp": "2019-10-15T21:57:30.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088200", + "Timestamp": "2024-05-15T14:02:47.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.779000", - "Timestamp": "2019-10-15T21:57:30.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125100", + "Timestamp": "2024-05-15T14:02:44.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5n.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.779000", - "Timestamp": "2019-10-15T21:57:30.000Z" + "SpotPrice": "0.079200", + "Timestamp": "2024-05-15T14:02:26.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.metal", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.749000", - "Timestamp": "2019-10-15T21:57:30.000Z" + "SpotPrice": "0.075500", + "Timestamp": "2024-05-15T14:02:26.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.749000", - "Timestamp": "2019-10-15T21:57:30.000Z" + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019200", + "Timestamp": "2024-05-15T14:02:26.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5n.metal", + "AvailabilityZone": "us-east-1e", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.009500", + "Timestamp": "2024-05-15T13:47:29.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076200", + "Timestamp": "2024-05-15T13:32:17.000Z" + }, + { + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.749000", - "Timestamp": "2019-10-15T21:57:30.000Z" + "SpotPrice": "0.072500", + "Timestamp": "2024-05-15T13:32:17.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3a.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.649000", - "Timestamp": "2019-10-15T21:57:30.000Z" + "SpotPrice": "0.016200", + "Timestamp": "2024-05-15T13:32:17.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.649000", - "Timestamp": "2019-10-15T21:57:30.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076700", + "Timestamp": "2024-05-15T13:17:11.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5n.metal", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073000", + "Timestamp": "2024-05-15T13:17:11.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "t3a.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.649000", - "Timestamp": "2019-10-15T21:57:30.000Z" + "SpotPrice": "0.016700", + "Timestamp": "2024-05-15T13:17:11.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3.nano", "ProductDescription": "Windows", - "SpotPrice": "1.024600", - "Timestamp": "2019-10-15T21:56:55.000Z" + "SpotPrice": "0.007000", + "Timestamp": "2024-05-15T13:04:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.024600", - "Timestamp": "2019-10-15T21:56:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064500", + "Timestamp": "2024-05-15T13:02:35.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.024600", - "Timestamp": "2019-10-15T21:56:55.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004500", + "Timestamp": "2024-05-15T13:02:35.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.metal", - "ProductDescription": "Windows", - "SpotPrice": "4.961000", - "Timestamp": "2019-10-15T21:56:40.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004500", + "Timestamp": "2024-05-15T13:02:35.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t3.nano", "ProductDescription": "Windows", - "SpotPrice": "4.961000", - "Timestamp": "2019-10-15T21:56:40.000Z" + "SpotPrice": "0.006900", + "Timestamp": "2024-05-15T12:53:21.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5n.metal", + "AvailabilityZone": "us-east-1f", + "InstanceType": "m4.large", "ProductDescription": "Windows", - "SpotPrice": "4.961000", - "Timestamp": "2019-10-15T21:56:40.000Z" + "SpotPrice": "0.135400", + "Timestamp": "2024-05-15T12:48:16.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5dn.24xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "t3a.large", "ProductDescription": "Windows", - "SpotPrice": "6.147400", - "Timestamp": "2019-10-15T21:56:05.000Z" + "SpotPrice": "0.061300", + "Timestamp": "2024-05-15T12:47:39.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.995700", - "Timestamp": "2019-10-15T21:52:50.000Z" + "SpotPrice": "0.078500", + "Timestamp": "2024-05-15T12:47:16.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.965700", - "Timestamp": "2019-10-15T21:52:50.000Z" + "SpotPrice": "0.049500", + "Timestamp": "2024-05-15T12:47:16.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-1d", + "InstanceType": "m6g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.865700", - "Timestamp": "2019-10-15T21:52:50.000Z" + "SpotPrice": "0.018500", + "Timestamp": "2024-05-15T12:47:16.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t2.micro", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.453100", - "Timestamp": "2019-10-15T21:52:06.000Z" + "SpotPrice": "0.065100", + "Timestamp": "2024-05-15T12:32:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t2.micro", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.423100", - "Timestamp": "2019-10-15T21:52:06.000Z" + "SpotPrice": "0.005100", + "Timestamp": "2024-05-15T12:32:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t2.micro", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.323100", - "Timestamp": "2019-10-15T21:52:06.000Z" + "SpotPrice": "0.005100", + "Timestamp": "2024-05-15T12:32:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t4g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101300", - "Timestamp": "2019-10-15T21:51:40.000Z" + "SpotPrice": "0.095800", + "Timestamp": "2024-05-15T12:32:24.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t4g.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.141300", - "Timestamp": "2019-10-15T21:51:40.000Z" + "SpotPrice": "0.092100", + "Timestamp": "2024-05-15T12:32:24.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-1f", + "InstanceType": "t4g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041300", - "Timestamp": "2019-10-15T21:51:40.000Z" + "SpotPrice": "0.035800", + "Timestamp": "2024-05-15T12:32:24.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.582800", - "Timestamp": "2019-10-15T21:51:38.000Z" + "SpotPrice": "0.079200", + "Timestamp": "2024-05-15T12:19:07.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.552800", - "Timestamp": "2019-10-15T21:51:38.000Z" + "SpotPrice": "0.050200", + "Timestamp": "2024-05-15T12:19:07.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m6gd.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.452800", - "Timestamp": "2019-10-15T21:51:38.000Z" + "SpotPrice": "0.019200", + "Timestamp": "2024-05-15T12:19:07.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t4g.small", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.291300", - "Timestamp": "2019-10-15T21:51:38.000Z" + "SpotPrice": "0.067800", + "Timestamp": "2024-05-15T12:18:40.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t4g.small", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.261300", - "Timestamp": "2019-10-15T21:51:38.000Z" + "SpotPrice": "0.039100", + "Timestamp": "2024-05-15T12:18:40.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "t4g.small", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.161300", - "Timestamp": "2019-10-15T21:51:38.000Z" + "SpotPrice": "0.007800", + "Timestamp": "2024-05-15T12:18:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "m1.small", + "ProductDescription": "Windows", + "SpotPrice": "0.047700", + "Timestamp": "2024-05-15T12:02:20.000Z" + }, + { + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.036900", - "Timestamp": "2019-10-15T21:46:56.000Z" + "SpotPrice": "0.078200", + "Timestamp": "2024-05-15T11:47:55.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.006900", - "Timestamp": "2019-10-15T21:46:56.000Z" + "SpotPrice": "0.074500", + "Timestamp": "2024-05-15T11:47:55.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "m7g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.906900", - "Timestamp": "2019-10-15T21:46:56.000Z" + "SpotPrice": "0.018200", + "Timestamp": "2024-05-15T11:47:55.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.073700", - "Timestamp": "2019-10-15T21:45:53.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062600", + "Timestamp": "2024-05-15T11:32:26.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.263500", - "Timestamp": "2019-10-15T21:43:49.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-15T11:32:26.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-15T11:32:26.000Z" + }, + { + "AvailabilityZone": "us-east-1d", + "InstanceType": "t2.medium", "ProductDescription": "Windows", - "SpotPrice": "0.326100", - "Timestamp": "2019-10-15T21:43:18.000Z" + "SpotPrice": "0.039200", + "Timestamp": "2024-05-15T11:17:38.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.299300", - "Timestamp": "2019-10-15T21:42:53.000Z" + "SpotPrice": "0.263300", + "Timestamp": "2024-05-15T11:17:17.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.269300", - "Timestamp": "2019-10-15T21:42:53.000Z" + "SpotPrice": "0.233300", + "Timestamp": "2024-05-15T11:17:17.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "g6.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.169300", - "Timestamp": "2019-10-15T21:42:53.000Z" + "SpotPrice": "0.133300", + "Timestamp": "2024-05-15T11:17:17.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "h1.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.098300", - "Timestamp": "2019-10-15T21:42:53.000Z" + "SpotPrice": "0.598000", + "Timestamp": "2024-05-08T17:18:07.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "h1.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.138300", - "Timestamp": "2019-10-15T21:42:53.000Z" + "SpotPrice": "0.568000", + "Timestamp": "2024-05-08T17:18:07.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "h1.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.038300", - "Timestamp": "2019-10-15T21:42:53.000Z" + "SpotPrice": "0.468000", + "Timestamp": "2024-05-08T17:18:07.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097800", - "Timestamp": "2019-10-15T21:41:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.807100", + "Timestamp": "2024-05-08T16:17:47.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097800", - "Timestamp": "2019-10-15T21:41:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.388000", + "Timestamp": "2024-05-08T16:03:08.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "h1.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097800", - "Timestamp": "2019-10-15T21:41:54.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137800", - "Timestamp": "2019-10-15T21:41:54.000Z" - }, - { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137800", - "Timestamp": "2019-10-15T21:41:54.000Z" + "SpotPrice": "1.582100", + "Timestamp": "2024-05-08T15:47:46.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "h1.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137800", - "Timestamp": "2019-10-15T21:41:54.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037800", - "Timestamp": "2019-10-15T21:41:54.000Z" + "SpotPrice": "1.552100", + "Timestamp": "2024-05-08T15:47:46.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "h1.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037800", - "Timestamp": "2019-10-15T21:41:54.000Z" + "SpotPrice": "1.452100", + "Timestamp": "2024-05-08T15:47:46.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037800", - "Timestamp": "2019-10-15T21:41:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.743600", + "Timestamp": "2024-05-08T15:17:08.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.129800", - "Timestamp": "2019-10-15T21:41:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "h1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.713600", + "Timestamp": "2024-05-08T15:17:08.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.129800", - "Timestamp": "2019-10-15T21:41:54.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.613600", + "Timestamp": "2024-05-08T15:17:08.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-1b", + "InstanceType": "h1.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.129800", - "Timestamp": "2019-10-15T21:41:54.000Z" + "SpotPrice": "0.706900", + "Timestamp": "2024-05-08T13:03:26.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.metal-48xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.894000", - "Timestamp": "2019-10-15T21:40:52.000Z" + "SpotPrice": "6.133400", + "Timestamp": "2024-04-22T10:02:57.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.894000", - "Timestamp": "2019-10-15T21:40:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.128400", + "Timestamp": "2024-04-22T10:02:57.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.894000", - "Timestamp": "2019-10-15T21:40:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.003400", + "Timestamp": "2024-04-22T10:02:57.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.864000", - "Timestamp": "2019-10-15T21:40:52.000Z" + "AvailabilityZone": "us-east-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "13.242100", + "Timestamp": "2024-04-22T08:48:03.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.864000", - "Timestamp": "2019-10-15T21:40:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "h1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.041300", + "Timestamp": "2024-04-10T19:48:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.864000", - "Timestamp": "2019-10-15T21:40:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "h1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.335700", + "Timestamp": "2024-04-10T17:03:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.764000", - "Timestamp": "2019-10-15T21:40:52.000Z" + "AvailabilityZone": "us-east-1b", + "InstanceType": "h1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.305700", + "Timestamp": "2024-04-10T17:03:27.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-1b", + "InstanceType": "h1.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.764000", - "Timestamp": "2019-10-15T21:40:52.000Z" + "SpotPrice": "2.205700", + "Timestamp": "2024-04-10T17:03:27.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.764000", - "Timestamp": "2019-10-15T21:40:52.000Z" + "AvailabilityZone": "us-east-1c", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.029700", + "Timestamp": "2024-04-03T09:17:50.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i2.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.404800", - "Timestamp": "2019-10-15T21:40:00.000Z" + "SpotPrice": "0.993500", + "Timestamp": "2024-04-03T07:19:10.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i2.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.374800", - "Timestamp": "2019-10-15T21:40:00.000Z" + "SpotPrice": "0.963500", + "Timestamp": "2024-04-03T07:19:10.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-1c", + "InstanceType": "i2.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.274800", - "Timestamp": "2019-10-15T21:40:00.000Z" + "SpotPrice": "0.863500", + "Timestamp": "2024-04-03T07:19:10.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.442000", - "Timestamp": "2019-10-15T21:39:58.000Z" + "SpotPrice": "10.460800", + "Timestamp": "2024-05-16T14:04:22.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.442000", - "Timestamp": "2019-10-15T21:39:58.000Z" + "SpotPrice": "10.460800", + "Timestamp": "2024-05-16T14:04:22.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.442000", - "Timestamp": "2019-10-15T21:39:58.000Z" + "SpotPrice": "10.460800", + "Timestamp": "2024-05-16T14:04:22.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.010800", - "Timestamp": "2019-10-15T21:39:17.000Z" + "SpotPrice": "5.973600", + "Timestamp": "2024-05-16T14:02:37.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.010800", - "Timestamp": "2019-10-15T21:39:17.000Z" + "SpotPrice": "4.055000", + "Timestamp": "2024-05-16T14:02:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.010800", - "Timestamp": "2019-10-15T21:39:17.000Z" + "SpotPrice": "1.860000", + "Timestamp": "2024-05-16T14:02:35.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "9.936000", - "Timestamp": "2019-10-15T21:38:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.949000", + "Timestamp": "2024-05-16T14:02:35.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "9.936000", - "Timestamp": "2019-10-15T21:38:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.944000", + "Timestamp": "2024-05-16T14:02:35.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.147400", - "Timestamp": "2019-10-15T21:38:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.819000", + "Timestamp": "2024-05-16T14:02:35.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.650000", - "Timestamp": "2019-10-15T21:38:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.088100", + "Timestamp": "2024-05-16T14:02:34.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.650000", - "Timestamp": "2019-10-15T21:38:38.000Z" + "SpotPrice": "1.505700", + "Timestamp": "2024-05-16T14:02:33.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.861400", - "Timestamp": "2019-10-15T21:38:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.500700", + "Timestamp": "2024-05-16T14:02:33.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "5.620000", - "Timestamp": "2019-10-15T21:38:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.375700", + "Timestamp": "2024-05-16T14:02:33.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "5.620000", - "Timestamp": "2019-10-15T21:38:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130100", + "Timestamp": "2024-05-16T14:02:32.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.831400", - "Timestamp": "2019-10-15T21:38:38.000Z" + "SpotPrice": "0.126400", + "Timestamp": "2024-05-16T14:02:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.520000", - "Timestamp": "2019-10-15T21:38:38.000Z" + "SpotPrice": "0.070100", + "Timestamp": "2024-05-16T14:02:32.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.520000", - "Timestamp": "2019-10-15T21:38:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.714800", + "Timestamp": "2024-05-16T14:02:32.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.731400", - "Timestamp": "2019-10-15T21:38:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.709800", + "Timestamp": "2024-05-16T14:02:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.432300", - "Timestamp": "2019-10-15T21:36:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.584800", + "Timestamp": "2024-05-16T14:02:32.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.146000", - "Timestamp": "2019-10-15T21:36:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.766500", + "Timestamp": "2024-05-16T14:02:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.402300", - "Timestamp": "2019-10-15T21:36:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.640300", + "Timestamp": "2024-05-16T14:02:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.116000", - "Timestamp": "2019-10-15T21:36:59.000Z" + "SpotPrice": "0.610300", + "Timestamp": "2024-05-16T14:02:30.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.302300", - "Timestamp": "2019-10-15T21:36:59.000Z" - }, - { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.016000", - "Timestamp": "2019-10-15T21:36:59.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.038300", - "Timestamp": "2019-10-15T21:36:52.000Z" + "SpotPrice": "0.510300", + "Timestamp": "2024-05-16T14:02:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.038300", - "Timestamp": "2019-10-15T21:36:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.280900", + "Timestamp": "2024-05-16T14:02:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.752000", - "Timestamp": "2019-10-15T21:36:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.275900", + "Timestamp": "2024-05-16T14:02:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "a1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095600", - "Timestamp": "2019-10-15T21:36:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.150900", + "Timestamp": "2024-05-16T14:02:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "a1.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095600", - "Timestamp": "2019-10-15T21:36:28.000Z" - }, - { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "a1.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T21:36:28.000Z" + "SpotPrice": "1.698600", + "Timestamp": "2024-05-16T14:02:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "a1.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T21:36:28.000Z" + "SpotPrice": "1.693600", + "Timestamp": "2024-05-16T14:02:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "a1.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035600", - "Timestamp": "2019-10-15T21:36:28.000Z" + "SpotPrice": "1.568600", + "Timestamp": "2024-05-16T14:02:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "a1.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035600", - "Timestamp": "2019-10-15T21:36:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215100", + "Timestamp": "2024-05-16T14:02:28.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.530600", - "Timestamp": "2019-10-15T21:35:28.000Z" + "SpotPrice": "3.972700", + "Timestamp": "2024-05-16T14:02:28.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.metal", "ProductDescription": "Windows", - "SpotPrice": "2.530600", - "Timestamp": "2019-10-15T21:35:28.000Z" + "SpotPrice": "5.099500", + "Timestamp": "2024-05-16T14:02:28.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i-flex.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.530600", - "Timestamp": "2019-10-15T21:35:28.000Z" + "SpotPrice": "0.877100", + "Timestamp": "2024-05-16T14:02:28.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126400", - "Timestamp": "2019-10-15T21:35:17.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.877100", + "Timestamp": "2024-05-16T14:02:27.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126400", - "Timestamp": "2019-10-15T21:35:17.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.872100", + "Timestamp": "2024-05-16T14:02:27.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126400", - "Timestamp": "2019-10-15T21:35:17.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.747100", + "Timestamp": "2024-05-16T14:02:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.437200", - "Timestamp": "2019-10-15T21:34:29.000Z" + "SpotPrice": "0.353800", + "Timestamp": "2024-05-16T14:02:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.407200", - "Timestamp": "2019-10-15T21:34:29.000Z" + "SpotPrice": "0.348800", + "Timestamp": "2024-05-16T14:02:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.307200", - "Timestamp": "2019-10-15T21:34:29.000Z" + "SpotPrice": "0.223800", + "Timestamp": "2024-05-16T14:02:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.591900", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094400", - "Timestamp": "2019-10-15T21:34:10.000Z" + "SpotPrice": "0.401200", + "Timestamp": "2024-05-16T14:02:26.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134400", - "Timestamp": "2019-10-15T21:34:10.000Z" + "SpotPrice": "0.396200", + "Timestamp": "2024-05-16T14:02:26.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034400", - "Timestamp": "2019-10-15T21:34:10.000Z" + "SpotPrice": "0.271200", + "Timestamp": "2024-05-16T14:02:26.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "h1.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.380600", - "Timestamp": "2019-10-15T21:33:45.000Z" + "SpotPrice": "0.365100", + "Timestamp": "2024-05-16T14:02:25.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.380600", - "Timestamp": "2019-10-15T21:33:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "h1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.335100", + "Timestamp": "2024-05-16T14:02:25.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "h1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235100", + "Timestamp": "2024-05-16T14:02:25.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.380600", - "Timestamp": "2019-10-15T21:33:45.000Z" + "SpotPrice": "0.624300", + "Timestamp": "2024-05-16T14:02:24.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.350600", - "Timestamp": "2019-10-15T21:33:45.000Z" + "SpotPrice": "0.619300", + "Timestamp": "2024-05-16T14:02:24.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.350600", - "Timestamp": "2019-10-15T21:33:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.494300", + "Timestamp": "2024-05-16T14:02:24.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.091800", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.350600", - "Timestamp": "2019-10-15T21:33:45.000Z" + "SpotPrice": "1.086800", + "Timestamp": "2024-05-16T14:02:23.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.250600", - "Timestamp": "2019-10-15T21:33:45.000Z" + "SpotPrice": "0.961800", + "Timestamp": "2024-05-16T14:02:23.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.250600", - "Timestamp": "2019-10-15T21:33:45.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.483600", + "Timestamp": "2024-05-16T14:02:23.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.478600", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.250600", - "Timestamp": "2019-10-15T21:33:45.000Z" + "SpotPrice": "0.353600", + "Timestamp": "2024-05-16T14:02:23.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.943900", - "Timestamp": "2019-10-15T21:24:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.907000", + "Timestamp": "2024-05-16T14:02:23.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.943900", - "Timestamp": "2019-10-15T21:24:18.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.972000", + "Timestamp": "2024-05-16T14:02:23.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.943900", - "Timestamp": "2019-10-15T21:24:18.000Z" + "SpotPrice": "1.057400", + "Timestamp": "2024-05-16T14:02:23.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.913900", - "Timestamp": "2019-10-15T21:24:18.000Z" + "SpotPrice": "1.052400", + "Timestamp": "2024-05-16T14:02:23.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.913900", - "Timestamp": "2019-10-15T21:24:18.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.927400", + "Timestamp": "2024-05-16T14:02:23.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.913900", - "Timestamp": "2019-10-15T21:24:18.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307400", + "Timestamp": "2024-05-16T14:02:22.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.813900", - "Timestamp": "2019-10-15T21:24:18.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302400", + "Timestamp": "2024-05-16T14:02:22.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.813900", - "Timestamp": "2019-10-15T21:24:18.000Z" + "SpotPrice": "0.177400", + "Timestamp": "2024-05-16T14:02:22.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.813900", - "Timestamp": "2019-10-15T21:24:18.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231700", + "Timestamp": "2024-05-16T14:02:21.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.781200", - "Timestamp": "2019-10-15T21:24:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.012700", + "Timestamp": "2024-05-16T14:02:20.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.781200", - "Timestamp": "2019-10-15T21:24:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.561800", + "Timestamp": "2024-05-16T14:02:19.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "t2.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.781200", - "Timestamp": "2019-10-15T21:24:07.000Z" + "SpotPrice": "0.090900", + "Timestamp": "2024-05-16T14:02:19.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "t2.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.751200", - "Timestamp": "2019-10-15T21:24:07.000Z" + "SpotPrice": "0.130900", + "Timestamp": "2024-05-16T14:02:19.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.751200", - "Timestamp": "2019-10-15T21:24:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030900", + "Timestamp": "2024-05-16T14:02:19.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.815000", + "Timestamp": "2024-05-16T14:02:19.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.9xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.751200", - "Timestamp": "2019-10-15T21:24:07.000Z" + "SpotPrice": "0.785000", + "Timestamp": "2024-05-16T14:02:19.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.9xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.651200", - "Timestamp": "2019-10-15T21:24:07.000Z" + "SpotPrice": "0.685000", + "Timestamp": "2024-05-16T14:02:19.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.651200", - "Timestamp": "2019-10-15T21:24:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156900", + "Timestamp": "2024-05-16T14:02:18.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.651200", - "Timestamp": "2019-10-15T21:24:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153200", + "Timestamp": "2024-05-16T14:02:18.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.779000", - "Timestamp": "2019-10-15T21:23:56.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096900", + "Timestamp": "2024-05-16T14:02:18.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.779000", - "Timestamp": "2019-10-15T21:23:56.000Z" + "SpotPrice": "1.347400", + "Timestamp": "2024-05-16T14:02:18.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.779000", - "Timestamp": "2019-10-15T21:23:56.000Z" + "SpotPrice": "1.318300", + "Timestamp": "2024-05-16T14:02:18.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.749000", - "Timestamp": "2019-10-15T21:23:56.000Z" + "SpotPrice": "1.342400", + "Timestamp": "2024-05-16T14:02:18.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.749000", - "Timestamp": "2019-10-15T21:23:56.000Z" + "SpotPrice": "1.313300", + "Timestamp": "2024-05-16T14:02:18.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.749000", - "Timestamp": "2019-10-15T21:23:56.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.217400", + "Timestamp": "2024-05-16T14:02:18.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.649000", - "Timestamp": "2019-10-15T21:23:56.000Z" + "SpotPrice": "1.188300", + "Timestamp": "2024-05-16T14:02:18.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.649000", - "Timestamp": "2019-10-15T21:23:56.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.899800", + "Timestamp": "2024-05-16T14:02:18.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.225000", + "Timestamp": "2024-05-16T14:02:15.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.220000", + "Timestamp": "2024-05-16T14:02:15.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.649000", - "Timestamp": "2019-10-15T21:23:56.000Z" + "SpotPrice": "0.095000", + "Timestamp": "2024-05-16T14:02:15.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.065000", - "Timestamp": "2019-10-15T21:23:54.000Z" + "SpotPrice": "5.286500", + "Timestamp": "2024-05-16T14:02:13.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.metal", "ProductDescription": "Windows", - "SpotPrice": "6.065000", - "Timestamp": "2019-10-15T21:23:54.000Z" + "SpotPrice": "5.446400", + "Timestamp": "2024-05-16T14:02:12.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.065000", - "Timestamp": "2019-10-15T21:23:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.694700", + "Timestamp": "2024-05-16T14:02:10.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.252700", - "Timestamp": "2019-10-15T21:23:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.689700", + "Timestamp": "2024-05-16T14:02:10.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.252700", - "Timestamp": "2019-10-15T21:23:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.564700", + "Timestamp": "2024-05-16T14:02:10.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.252700", - "Timestamp": "2019-10-15T21:23:52.000Z" + "SpotPrice": "2.551100", + "Timestamp": "2024-05-16T14:02:09.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.229900", - "Timestamp": "2019-10-15T21:23:32.000Z" + "SpotPrice": "10.248200", + "Timestamp": "2024-05-16T14:02:08.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.229900", - "Timestamp": "2019-10-15T21:23:32.000Z" + "SpotPrice": "2.527800", + "Timestamp": "2024-05-16T14:02:06.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.9xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.229900", - "Timestamp": "2019-10-15T21:23:32.000Z" + "SpotPrice": "1.867800", + "Timestamp": "2024-05-16T14:02:06.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.595200", - "Timestamp": "2019-10-15T21:23:00.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.478700", + "Timestamp": "2024-05-16T14:02:05.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.595200", - "Timestamp": "2019-10-15T21:23:00.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473700", + "Timestamp": "2024-05-16T14:02:05.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.348700", + "Timestamp": "2024-05-16T14:02:05.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.197800", + "Timestamp": "2024-05-16T14:02:05.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.192800", + "Timestamp": "2024-05-16T14:02:05.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.067800", + "Timestamp": "2024-05-16T14:02:05.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.595200", - "Timestamp": "2019-10-15T21:23:00.000Z" + "SpotPrice": "0.417900", + "Timestamp": "2024-05-16T14:02:03.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.038300", - "Timestamp": "2019-10-15T21:22:46.000Z" + "SpotPrice": "0.415800", + "Timestamp": "2024-05-16T14:02:03.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5dn.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.943900", - "Timestamp": "2019-10-15T21:21:20.000Z" + "SpotPrice": "0.972800", + "Timestamp": "2024-05-16T14:02:02.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.943900", - "Timestamp": "2019-10-15T21:21:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.967800", + "Timestamp": "2024-05-16T14:02:02.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.943900", - "Timestamp": "2019-10-15T21:21:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.842800", + "Timestamp": "2024-05-16T14:02:02.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.913900", - "Timestamp": "2019-10-15T21:21:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.088400", + "Timestamp": "2024-05-16T14:02:01.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.913900", - "Timestamp": "2019-10-15T21:21:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.149500", + "Timestamp": "2024-05-16T14:02:01.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5dn.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.024000", + "Timestamp": "2024-05-16T14:01:59.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.913900", - "Timestamp": "2019-10-15T21:21:20.000Z" + "SpotPrice": "2.019000", + "Timestamp": "2024-05-16T14:01:59.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5dn.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.813900", - "Timestamp": "2019-10-15T21:21:20.000Z" + "SpotPrice": "1.894000", + "Timestamp": "2024-05-16T14:01:59.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.813900", - "Timestamp": "2019-10-15T21:21:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.853600", + "Timestamp": "2024-05-16T14:01:58.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.813900", - "Timestamp": "2019-10-15T21:21:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.852800", + "Timestamp": "2024-05-16T14:01:58.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.339300", - "Timestamp": "2019-10-15T21:21:15.000Z" + "SpotPrice": "3.460800", + "Timestamp": "2024-05-16T14:01:57.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.309300", - "Timestamp": "2019-10-15T21:21:15.000Z" + "SpotPrice": "3.455800", + "Timestamp": "2024-05-16T14:01:57.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.209300", - "Timestamp": "2019-10-15T21:21:15.000Z" + "SpotPrice": "3.330800", + "Timestamp": "2024-05-16T14:01:57.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "x1e.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.719100", - "Timestamp": "2019-10-15T21:18:42.000Z" + "SpotPrice": "1.730000", + "Timestamp": "2024-05-16T14:01:55.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.815900", + "Timestamp": "2024-05-16T14:01:54.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132100", - "Timestamp": "2019-10-15T21:18:23.000Z" + "SpotPrice": "0.750000", + "Timestamp": "2024-05-16T14:01:53.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172100", - "Timestamp": "2019-10-15T21:18:23.000Z" + "SpotPrice": "0.745000", + "Timestamp": "2024-05-16T14:01:53.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072100", - "Timestamp": "2019-10-15T21:18:23.000Z" + "SpotPrice": "0.620000", + "Timestamp": "2024-05-16T14:01:53.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "z1d.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "d2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122400", - "Timestamp": "2019-10-15T21:16:01.000Z" + "SpotPrice": "0.218700", + "Timestamp": "2024-05-16T14:01:52.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "z1d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122400", - "Timestamp": "2019-10-15T21:16:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258700", + "Timestamp": "2024-05-16T14:01:52.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "z1d.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158700", + "Timestamp": "2024-05-16T14:01:52.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122400", - "Timestamp": "2019-10-15T21:16:01.000Z" + "SpotPrice": "2.272100", + "Timestamp": "2024-05-16T14:01:51.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "z1d.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.162400", - "Timestamp": "2019-10-15T21:16:01.000Z" + "SpotPrice": "2.267100", + "Timestamp": "2024-05-16T14:01:51.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "z1d.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.162400", - "Timestamp": "2019-10-15T21:16:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.142100", + "Timestamp": "2024-05-16T14:01:51.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "z1d.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.162400", - "Timestamp": "2019-10-15T21:16:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.269900", + "Timestamp": "2024-05-16T14:01:51.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "z1d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062400", - "Timestamp": "2019-10-15T21:16:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.239900", + "Timestamp": "2024-05-16T14:01:51.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "z1d.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062400", - "Timestamp": "2019-10-15T21:16:01.000Z" + "SpotPrice": "1.139900", + "Timestamp": "2024-05-16T14:01:51.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "z1d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062400", - "Timestamp": "2019-10-15T21:16:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.249900", + "Timestamp": "2024-05-16T14:01:50.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "z1d.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r3.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.154400", - "Timestamp": "2019-10-15T21:15:58.000Z" + "SpotPrice": "0.805800", + "Timestamp": "2024-05-16T14:01:49.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "z1d.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.154400", - "Timestamp": "2019-10-15T21:15:58.000Z" + "SpotPrice": "8.156000", + "Timestamp": "2024-05-16T14:01:49.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "z1d.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.154400", - "Timestamp": "2019-10-15T21:15:58.000Z" + "SpotPrice": "0.855500", + "Timestamp": "2024-05-16T14:01:48.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.268400", - "Timestamp": "2019-10-15T21:15:26.000Z" + "SpotPrice": "0.227400", + "Timestamp": "2024-05-16T14:01:48.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "d3.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.268400", - "Timestamp": "2019-10-15T21:15:26.000Z" + "SpotPrice": "1.003700", + "Timestamp": "2024-05-16T14:01:48.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.268400", - "Timestamp": "2019-10-15T21:15:26.000Z" + "SpotPrice": "2.806200", + "Timestamp": "2024-05-16T14:01:48.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2idn.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.144400", - "Timestamp": "2019-10-15T21:14:40.000Z" + "SpotPrice": "2.674900", + "Timestamp": "2024-05-16T14:01:47.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.144400", - "Timestamp": "2019-10-15T21:14:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.669900", + "Timestamp": "2024-05-16T14:01:47.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.544900", + "Timestamp": "2024-05-16T14:01:47.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.144400", - "Timestamp": "2019-10-15T21:14:40.000Z" + "SpotPrice": "0.908300", + "Timestamp": "2024-05-16T14:01:46.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.184400", - "Timestamp": "2019-10-15T21:14:40.000Z" + "SpotPrice": "0.903300", + "Timestamp": "2024-05-16T14:01:46.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.184400", - "Timestamp": "2019-10-15T21:14:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.778300", + "Timestamp": "2024-05-16T14:01:46.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.184400", - "Timestamp": "2019-10-15T21:14:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.254800", + "Timestamp": "2024-05-16T14:01:45.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.084400", - "Timestamp": "2019-10-15T21:14:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.250800", + "Timestamp": "2024-05-16T14:01:45.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.084400", - "Timestamp": "2019-10-15T21:14:40.000Z" + "SpotPrice": "0.194800", + "Timestamp": "2024-05-16T14:01:45.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.084400", - "Timestamp": "2019-10-15T21:14:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.801500", + "Timestamp": "2024-05-16T14:01:45.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "h1.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.205200", - "Timestamp": "2019-10-15T21:11:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.796500", + "Timestamp": "2024-05-16T14:01:45.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "h1.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.205200", - "Timestamp": "2019-10-15T21:11:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.671500", + "Timestamp": "2024-05-16T14:01:45.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.120400", - "Timestamp": "2019-10-15T21:11:41.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.217900", + "Timestamp": "2024-05-16T14:01:45.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.120400", - "Timestamp": "2019-10-15T21:11:41.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.212900", + "Timestamp": "2024-05-16T14:01:45.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.120400", - "Timestamp": "2019-10-15T21:11:41.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087900", + "Timestamp": "2024-05-16T14:01:45.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.467400", - "Timestamp": "2019-10-15T21:11:19.000Z" + "SpotPrice": "0.130800", + "Timestamp": "2024-05-16T14:01:44.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.467400", - "Timestamp": "2019-10-15T21:11:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127100", + "Timestamp": "2024-05-16T14:01:44.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070800", + "Timestamp": "2024-05-16T14:01:44.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.467400", - "Timestamp": "2019-10-15T21:11:19.000Z" + "SpotPrice": "0.071200", + "Timestamp": "2024-05-16T14:01:43.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.437400", - "Timestamp": "2019-10-15T21:11:19.000Z" + "SpotPrice": "0.067500", + "Timestamp": "2024-05-16T14:01:43.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.437400", - "Timestamp": "2019-10-15T21:11:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011200", + "Timestamp": "2024-05-16T14:01:43.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.437400", - "Timestamp": "2019-10-15T21:11:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117000", + "Timestamp": "2024-05-16T14:01:43.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.337400", - "Timestamp": "2019-10-15T21:11:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-16T14:01:43.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.337400", - "Timestamp": "2019-10-15T21:11:19.000Z" + "SpotPrice": "0.057000", + "Timestamp": "2024-05-16T14:01:43.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.337400", - "Timestamp": "2019-10-15T21:11:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-16T14:01:43.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.548700", - "Timestamp": "2019-10-15T21:11:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-16T14:01:43.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.548700", - "Timestamp": "2019-10-15T21:11:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056400", + "Timestamp": "2024-05-16T14:01:43.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.548700", - "Timestamp": "2019-10-15T21:11:19.000Z" + "SpotPrice": "0.910900", + "Timestamp": "2024-05-16T14:01:42.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.046500", - "Timestamp": "2019-10-15T21:11:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.341100", + "Timestamp": "2024-05-16T14:01:42.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.046500", - "Timestamp": "2019-10-15T21:11:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.336100", + "Timestamp": "2024-05-16T14:01:42.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.046500", - "Timestamp": "2019-10-15T21:11:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.211100", + "Timestamp": "2024-05-16T14:01:42.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.073400", - "Timestamp": "2019-10-15T21:11:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.226200", + "Timestamp": "2024-05-16T14:01:42.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.073400", - "Timestamp": "2019-10-15T21:11:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.221200", + "Timestamp": "2024-05-16T14:01:42.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.073400", - "Timestamp": "2019-10-15T21:11:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.096200", + "Timestamp": "2024-05-16T14:01:42.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m1.small", - "ProductDescription": "Windows", - "SpotPrice": "0.032700", - "Timestamp": "2019-10-15T21:10:55.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.627200", + "Timestamp": "2024-05-16T14:01:42.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m1.small", - "ProductDescription": "Windows", - "SpotPrice": "0.032700", - "Timestamp": "2019-10-15T21:10:55.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.622200", + "Timestamp": "2024-05-16T14:01:42.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m1.small", - "ProductDescription": "Windows", - "SpotPrice": "0.032700", - "Timestamp": "2019-10-15T21:10:55.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.497200", + "Timestamp": "2024-05-16T14:01:42.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T21:10:54.000Z" + "SpotPrice": "1.941100", + "Timestamp": "2024-05-16T14:01:42.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175600", - "Timestamp": "2019-10-15T21:10:54.000Z" + "SpotPrice": "1.936100", + "Timestamp": "2024-05-16T14:01:42.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075600", - "Timestamp": "2019-10-15T21:10:54.000Z" + "SpotPrice": "1.811100", + "Timestamp": "2024-05-16T14:01:42.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.943900", - "Timestamp": "2019-10-15T21:10:49.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.903000", + "Timestamp": "2024-05-16T14:01:41.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.943900", - "Timestamp": "2019-10-15T21:10:49.000Z" + "SpotPrice": "0.250100", + "Timestamp": "2024-05-16T14:01:41.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.913900", - "Timestamp": "2019-10-15T21:10:49.000Z" + "SpotPrice": "0.245100", + "Timestamp": "2024-05-16T14:01:41.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.913900", - "Timestamp": "2019-10-15T21:10:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120100", + "Timestamp": "2024-05-16T14:01:41.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.813900", - "Timestamp": "2019-10-15T21:10:49.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.008100", + "Timestamp": "2024-05-16T14:01:41.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.978100", + "Timestamp": "2024-05-16T14:01:41.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1e.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.813900", - "Timestamp": "2019-10-15T21:10:49.000Z" + "SpotPrice": "0.878100", + "Timestamp": "2024-05-16T14:01:41.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "h1.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.863200", - "Timestamp": "2019-10-15T21:10:45.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.614100", + "Timestamp": "2024-05-16T14:01:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "h1.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.863200", - "Timestamp": "2019-10-15T21:10:45.000Z" + "SpotPrice": "0.838800", + "Timestamp": "2024-05-16T14:01:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "h1.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.833200", - "Timestamp": "2019-10-15T21:10:45.000Z" + "SpotPrice": "0.833800", + "Timestamp": "2024-05-16T14:01:40.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "h1.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.833200", - "Timestamp": "2019-10-15T21:10:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.708800", + "Timestamp": "2024-05-16T14:01:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "h1.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.733200", - "Timestamp": "2019-10-15T21:10:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.634200", + "Timestamp": "2024-05-16T14:01:40.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "h1.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.629200", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.733200", - "Timestamp": "2019-10-15T21:10:45.000Z" + "SpotPrice": "0.504200", + "Timestamp": "2024-05-16T14:01:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.073700", - "Timestamp": "2019-10-15T21:10:43.000Z" + "SpotPrice": "5.787900", + "Timestamp": "2024-05-16T14:01:40.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.073700", - "Timestamp": "2019-10-15T21:10:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.415100", + "Timestamp": "2024-05-16T14:01:39.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.073700", - "Timestamp": "2019-10-15T21:10:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.410100", + "Timestamp": "2024-05-16T14:01:39.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.259600", - "Timestamp": "2019-10-15T21:10:37.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.285100", + "Timestamp": "2024-05-16T14:01:39.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.metal", "ProductDescription": "Windows", - "SpotPrice": "0.259600", - "Timestamp": "2019-10-15T21:10:37.000Z" + "SpotPrice": "5.324600", + "Timestamp": "2024-05-16T14:01:38.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.metal", "ProductDescription": "Windows", - "SpotPrice": "2.049100", - "Timestamp": "2019-10-15T21:10:37.000Z" + "SpotPrice": "7.458600", + "Timestamp": "2024-05-16T14:01:38.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.large", "ProductDescription": "Windows", - "SpotPrice": "2.049100", - "Timestamp": "2019-10-15T21:10:37.000Z" + "SpotPrice": "0.039400", + "Timestamp": "2024-05-16T14:01:36.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.405000", - "Timestamp": "2019-10-15T21:10:35.000Z" + "SpotPrice": "0.369100", + "Timestamp": "2024-05-16T14:01:35.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.375000", - "Timestamp": "2019-10-15T21:10:35.000Z" + "SpotPrice": "0.364100", + "Timestamp": "2024-05-16T14:01:35.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.275000", - "Timestamp": "2019-10-15T21:10:35.000Z" + "SpotPrice": "0.239100", + "Timestamp": "2024-05-16T14:01:35.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3a.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.052100", - "Timestamp": "2019-10-15T21:10:27.000Z" + "SpotPrice": "0.229500", + "Timestamp": "2024-05-16T14:01:35.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3a.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i2.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.052100", - "Timestamp": "2019-10-15T21:10:27.000Z" + "SpotPrice": "3.312100", + "Timestamp": "2024-05-16T14:01:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3a.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.6xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.052100", - "Timestamp": "2019-10-15T21:10:27.000Z" + "SpotPrice": "1.442400", + "Timestamp": "2024-05-16T14:01:33.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t2.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067500", - "Timestamp": "2019-10-15T21:10:23.000Z" - }, - { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t2.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067500", - "Timestamp": "2019-10-15T21:10:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.033000", + "Timestamp": "2024-05-16T14:01:33.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067500", - "Timestamp": "2019-10-15T21:10:23.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t2.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.037500", - "Timestamp": "2019-10-15T21:10:23.000Z" - }, - { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t2.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.037500", - "Timestamp": "2019-10-15T21:10:23.000Z" + "SpotPrice": "1.519800", + "Timestamp": "2024-05-16T14:01:32.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.037500", - "Timestamp": "2019-10-15T21:10:23.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t2.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007500", - "Timestamp": "2019-10-15T21:10:23.000Z" - }, - { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t2.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007500", - "Timestamp": "2019-10-15T21:10:23.000Z" + "SpotPrice": "1.514800", + "Timestamp": "2024-05-16T14:01:32.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007500", - "Timestamp": "2019-10-15T21:10:23.000Z" + "SpotPrice": "1.389800", + "Timestamp": "2024-05-16T14:01:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.972400", - "Timestamp": "2019-10-15T21:10:23.000Z" - }, - { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.972400", - "Timestamp": "2019-10-15T21:10:23.000Z" - }, - { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.972400", - "Timestamp": "2019-10-15T21:10:23.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.942400", - "Timestamp": "2019-10-15T21:10:23.000Z" + "SpotPrice": "0.658400", + "Timestamp": "2024-05-16T14:01:32.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.942400", - "Timestamp": "2019-10-15T21:10:23.000Z" + "SpotPrice": "0.653400", + "Timestamp": "2024-05-16T14:01:32.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.942400", - "Timestamp": "2019-10-15T21:10:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.528400", + "Timestamp": "2024-05-16T14:01:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.842400", - "Timestamp": "2019-10-15T21:10:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.868400", + "Timestamp": "2024-05-16T14:01:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.842400", - "Timestamp": "2019-10-15T21:10:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.863400", + "Timestamp": "2024-05-16T14:01:31.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "is4gen.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.842400", - "Timestamp": "2019-10-15T21:10:23.000Z" + "SpotPrice": "0.738400", + "Timestamp": "2024-05-16T14:01:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3a.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.084500", - "Timestamp": "2019-10-15T21:10:22.000Z" + "SpotPrice": "0.823600", + "Timestamp": "2024-05-16T14:01:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.084500", - "Timestamp": "2019-10-15T21:10:22.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.818600", + "Timestamp": "2024-05-16T14:01:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.084500", - "Timestamp": "2019-10-15T21:10:22.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.693600", + "Timestamp": "2024-05-16T14:01:30.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3a.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.124500", - "Timestamp": "2019-10-15T21:10:22.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153100", + "Timestamp": "2024-05-16T14:01:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3a.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.124500", - "Timestamp": "2019-10-15T21:10:22.000Z" + "SpotPrice": "0.149400", + "Timestamp": "2024-05-16T14:01:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3a.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.124500", - "Timestamp": "2019-10-15T21:10:22.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093100", + "Timestamp": "2024-05-16T14:01:30.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.024500", - "Timestamp": "2019-10-15T21:10:22.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.528700", + "Timestamp": "2024-05-16T14:01:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.024500", - "Timestamp": "2019-10-15T21:10:22.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.523700", + "Timestamp": "2024-05-16T14:01:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3a.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.024500", - "Timestamp": "2019-10-15T21:10:22.000Z" + "SpotPrice": "1.398700", + "Timestamp": "2024-05-16T14:01:30.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.192500", - "Timestamp": "2019-10-15T21:10:22.000Z" + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T14:01:30.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.162500", - "Timestamp": "2019-10-15T21:10:22.000Z" + "SpotPrice": "0.101700", + "Timestamp": "2024-05-16T14:01:30.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.062500", - "Timestamp": "2019-10-15T21:10:22.000Z" + "SpotPrice": "0.045700", + "Timestamp": "2024-05-16T14:01:30.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m1.small", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.064700", - "Timestamp": "2019-10-15T21:10:16.000Z" + "SpotPrice": "1.165300", + "Timestamp": "2024-05-16T14:01:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m1.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.064700", - "Timestamp": "2019-10-15T21:10:16.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.160300", + "Timestamp": "2024-05-16T14:01:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m1.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.064700", - "Timestamp": "2019-10-15T21:10:16.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.035300", + "Timestamp": "2024-05-16T14:01:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m1.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.034700", - "Timestamp": "2019-10-15T21:10:16.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220300", + "Timestamp": "2024-05-16T14:01:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m1.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.034700", - "Timestamp": "2019-10-15T21:10:16.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.678200", + "Timestamp": "2024-05-16T14:01:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m1.small", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.034700", - "Timestamp": "2019-10-15T21:10:16.000Z" + "SpotPrice": "0.673200", + "Timestamp": "2024-05-16T14:01:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m1.small", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.004700", - "Timestamp": "2019-10-15T21:10:16.000Z" + "SpotPrice": "0.548200", + "Timestamp": "2024-05-16T14:01:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m1.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.004700", - "Timestamp": "2019-10-15T21:10:16.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.123400", + "Timestamp": "2024-05-16T14:01:28.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m1.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.004700", - "Timestamp": "2019-10-15T21:10:16.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.933600", + "Timestamp": "2024-05-16T14:01:28.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.220300", - "Timestamp": "2019-10-15T21:10:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.928600", + "Timestamp": "2024-05-16T14:01:28.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.220300", - "Timestamp": "2019-10-15T21:10:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.803600", + "Timestamp": "2024-05-16T14:01:28.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.large", "ProductDescription": "Windows", - "SpotPrice": "3.220300", - "Timestamp": "2019-10-15T21:10:09.000Z" + "SpotPrice": "0.108500", + "Timestamp": "2024-05-16T14:01:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.142300", - "Timestamp": "2019-10-15T21:10:09.000Z" - }, - { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.142300", - "Timestamp": "2019-10-15T21:10:09.000Z" + "SpotPrice": "1.112000", + "Timestamp": "2024-05-16T14:01:27.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.142300", - "Timestamp": "2019-10-15T21:10:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.107000", + "Timestamp": "2024-05-16T14:01:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.112300", - "Timestamp": "2019-10-15T21:10:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.982000", + "Timestamp": "2024-05-16T14:01:27.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.112300", - "Timestamp": "2019-10-15T21:10:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311200", + "Timestamp": "2024-05-16T14:01:26.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.112300", - "Timestamp": "2019-10-15T21:10:09.000Z" + "SpotPrice": "0.306200", + "Timestamp": "2024-05-16T14:01:26.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.012300", - "Timestamp": "2019-10-15T21:10:09.000Z" + "SpotPrice": "0.181200", + "Timestamp": "2024-05-16T14:01:26.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.012300", - "Timestamp": "2019-10-15T21:10:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.656500", + "Timestamp": "2024-05-16T14:01:26.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.012300", - "Timestamp": "2019-10-15T21:10:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.626500", + "Timestamp": "2024-05-16T14:01:26.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.010800", - "Timestamp": "2019-10-15T21:10:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.526500", + "Timestamp": "2024-05-16T14:01:26.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.metal", "ProductDescription": "Windows", - "SpotPrice": "1.010800", - "Timestamp": "2019-10-15T21:10:09.000Z" + "SpotPrice": "7.271600", + "Timestamp": "2024-05-16T14:01:26.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.010800", - "Timestamp": "2019-10-15T21:10:09.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "h1.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.496600", - "Timestamp": "2019-10-15T21:09:51.000Z" + "SpotPrice": "2.954100", + "Timestamp": "2024-05-16T14:01:25.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "h1.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.496600", - "Timestamp": "2019-10-15T21:09:51.000Z" + "SpotPrice": "0.349300", + "Timestamp": "2024-05-16T14:01:24.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "h1.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.466600", - "Timestamp": "2019-10-15T21:09:51.000Z" + "SpotPrice": "0.319300", + "Timestamp": "2024-05-16T14:01:24.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "h1.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.466600", - "Timestamp": "2019-10-15T21:09:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219300", + "Timestamp": "2024-05-16T14:01:24.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "h1.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.366600", - "Timestamp": "2019-10-15T21:09:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.905800", + "Timestamp": "2024-05-16T14:01:24.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "h1.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.366600", - "Timestamp": "2019-10-15T21:09:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.900800", + "Timestamp": "2024-05-16T14:01:24.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t2.small", - "ProductDescription": "Windows", - "SpotPrice": "0.016500", - "Timestamp": "2019-10-15T21:09:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.775800", + "Timestamp": "2024-05-16T14:01:24.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.016500", - "Timestamp": "2019-10-15T21:09:50.000Z" + "SpotPrice": "3.613200", + "Timestamp": "2024-05-16T14:01:24.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.016500", - "Timestamp": "2019-10-15T21:09:50.000Z" + "SpotPrice": "3.924800", + "Timestamp": "2024-05-16T14:01:23.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m4.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.542800", - "Timestamp": "2019-10-15T21:09:47.000Z" + "SpotPrice": "0.132500", + "Timestamp": "2024-05-16T14:01:22.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m4.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.512800", - "Timestamp": "2019-10-15T21:09:47.000Z" + "SpotPrice": "0.172500", + "Timestamp": "2024-05-16T14:01:22.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m4.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.412800", - "Timestamp": "2019-10-15T21:09:47.000Z" + "SpotPrice": "0.072500", + "Timestamp": "2024-05-16T14:01:22.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p3dn.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2idn.metal", "ProductDescription": "Windows", - "SpotPrice": "14.155100", - "Timestamp": "2019-10-15T21:09:42.000Z" + "SpotPrice": "7.221800", + "Timestamp": "2024-05-16T14:00:24.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p3dn.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2idn.metal", "ProductDescription": "Windows", - "SpotPrice": "14.155100", - "Timestamp": "2019-10-15T21:09:42.000Z" + "SpotPrice": "7.221800", + "Timestamp": "2024-05-16T14:00:24.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.458600", + "Timestamp": "2024-05-16T13:47:40.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.147000", - "Timestamp": "2019-10-15T21:09:38.000Z" + "SpotPrice": "0.794100", + "Timestamp": "2024-05-16T13:47:38.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.187000", - "Timestamp": "2019-10-15T21:09:38.000Z" + "SpotPrice": "0.789100", + "Timestamp": "2024-05-16T13:47:38.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.087000", - "Timestamp": "2019-10-15T21:09:38.000Z" + "SpotPrice": "0.664100", + "Timestamp": "2024-05-16T13:47:38.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.707100", - "Timestamp": "2019-10-15T21:09:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.079500", + "Timestamp": "2024-05-16T13:47:38.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.707100", - "Timestamp": "2019-10-15T21:09:35.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.677100", - "Timestamp": "2019-10-15T21:09:35.000Z" + "SpotPrice": "0.423400", + "Timestamp": "2024-05-16T13:47:37.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.677100", - "Timestamp": "2019-10-15T21:09:35.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.577100", - "Timestamp": "2019-10-15T21:09:35.000Z" + "SpotPrice": "0.418400", + "Timestamp": "2024-05-16T13:47:37.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.577100", - "Timestamp": "2019-10-15T21:09:35.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.229900", - "Timestamp": "2019-10-15T21:09:34.000Z" - }, - { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.229900", - "Timestamp": "2019-10-15T21:09:34.000Z" + "SpotPrice": "0.293400", + "Timestamp": "2024-05-16T13:47:37.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.229900", - "Timestamp": "2019-10-15T21:09:34.000Z" + "SpotPrice": "0.220500", + "Timestamp": "2024-05-16T13:47:36.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.large", "ProductDescription": "Windows", - "SpotPrice": "0.256100", - "Timestamp": "2019-10-15T21:09:27.000Z" + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T13:47:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.256100", - "Timestamp": "2019-10-15T21:09:27.000Z" + "SpotPrice": "0.850600", + "Timestamp": "2024-05-16T13:47:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.256100", - "Timestamp": "2019-10-15T21:09:27.000Z" + "SpotPrice": "0.221500", + "Timestamp": "2024-05-16T13:47:35.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.459100", - "Timestamp": "2019-10-15T21:09:26.000Z" + "SpotPrice": "2.405100", + "Timestamp": "2024-05-16T13:47:35.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.429100", - "Timestamp": "2019-10-15T21:09:26.000Z" + "SpotPrice": "2.400100", + "Timestamp": "2024-05-16T13:47:35.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.329100", - "Timestamp": "2019-10-15T21:09:26.000Z" + "SpotPrice": "2.275100", + "Timestamp": "2024-05-16T13:47:35.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.148800", - "Timestamp": "2019-10-15T21:09:21.000Z" + "SpotPrice": "0.431300", + "Timestamp": "2024-05-16T13:47:35.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.148800", - "Timestamp": "2019-10-15T21:09:21.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.155200", + "Timestamp": "2024-05-16T13:47:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.148800", - "Timestamp": "2019-10-15T21:09:21.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.150200", + "Timestamp": "2024-05-16T13:47:34.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.351500", - "Timestamp": "2019-10-15T21:09:17.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.025200", + "Timestamp": "2024-05-16T13:47:34.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.351500", - "Timestamp": "2019-10-15T21:09:17.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146100", + "Timestamp": "2024-05-16T13:47:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.351500", - "Timestamp": "2019-10-15T21:09:17.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142100", + "Timestamp": "2024-05-16T13:47:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086100", + "Timestamp": "2024-05-16T13:47:34.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.435000", - "Timestamp": "2019-10-15T21:09:11.000Z" + "SpotPrice": "3.783600", + "Timestamp": "2024-05-16T13:47:33.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.405000", - "Timestamp": "2019-10-15T21:09:11.000Z" + "SpotPrice": "3.778600", + "Timestamp": "2024-05-16T13:47:33.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.305000", - "Timestamp": "2019-10-15T21:09:11.000Z" + "SpotPrice": "3.653600", + "Timestamp": "2024-05-16T13:47:33.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.280500", - "Timestamp": "2019-10-15T21:09:10.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.657200", + "Timestamp": "2024-05-16T13:47:33.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.280500", - "Timestamp": "2019-10-15T21:09:10.000Z" + "SpotPrice": "0.111200", + "Timestamp": "2024-05-16T13:47:32.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.280500", - "Timestamp": "2019-10-15T21:09:10.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.320500", - "Timestamp": "2019-10-15T21:09:10.000Z" + "SpotPrice": "0.102700", + "Timestamp": "2024-05-16T13:47:32.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.320500", - "Timestamp": "2019-10-15T21:09:10.000Z" + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T13:47:32.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.320500", - "Timestamp": "2019-10-15T21:09:10.000Z" + "SpotPrice": "0.099000", + "Timestamp": "2024-05-16T13:47:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.220500", - "Timestamp": "2019-10-15T21:09:10.000Z" + "SpotPrice": "0.051200", + "Timestamp": "2024-05-16T13:47:32.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.220500", - "Timestamp": "2019-10-15T21:09:10.000Z" + "SpotPrice": "0.042700", + "Timestamp": "2024-05-16T13:47:32.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.220500", - "Timestamp": "2019-10-15T21:09:10.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.977700", + "Timestamp": "2024-05-16T13:47:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.366700", - "Timestamp": "2019-10-15T21:09:05.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.947700", + "Timestamp": "2024-05-16T13:47:32.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.366700", - "Timestamp": "2019-10-15T21:09:05.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.847700", + "Timestamp": "2024-05-16T13:47:32.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.366700", - "Timestamp": "2019-10-15T21:09:05.000Z" + "SpotPrice": "0.328600", + "Timestamp": "2024-05-16T13:47:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.336700", - "Timestamp": "2019-10-15T21:09:05.000Z" + "SpotPrice": "0.323600", + "Timestamp": "2024-05-16T13:47:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.336700", - "Timestamp": "2019-10-15T21:09:05.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.198600", + "Timestamp": "2024-05-16T13:47:31.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.336700", - "Timestamp": "2019-10-15T21:09:05.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.454900", + "Timestamp": "2024-05-16T13:47:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.236700", - "Timestamp": "2019-10-15T21:09:05.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.969200", + "Timestamp": "2024-05-16T13:47:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.236700", - "Timestamp": "2019-10-15T21:09:05.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.964200", + "Timestamp": "2024-05-16T13:47:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.236700", - "Timestamp": "2019-10-15T21:09:05.000Z" - }, - { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.198000", - "Timestamp": "2019-10-15T21:08:53.000Z" + "SpotPrice": "0.839200", + "Timestamp": "2024-05-16T13:47:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.198000", - "Timestamp": "2019-10-15T21:08:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.793200", + "Timestamp": "2024-05-16T13:47:30.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "h1.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.102600", - "Timestamp": "2019-10-15T21:08:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.788200", + "Timestamp": "2024-05-16T13:47:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "h1.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.102600", - "Timestamp": "2019-10-15T21:08:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.663200", + "Timestamp": "2024-05-16T13:47:30.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.6xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.004000", - "Timestamp": "2019-10-15T21:08:43.000Z" + "SpotPrice": "0.456000", + "Timestamp": "2024-05-16T13:47:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.004000", - "Timestamp": "2019-10-15T21:08:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.910900", + "Timestamp": "2024-05-16T13:47:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.004000", - "Timestamp": "2019-10-15T21:08:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "p2.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.880900", + "Timestamp": "2024-05-16T13:47:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p3dn.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "9.869100", - "Timestamp": "2019-10-15T21:08:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.780900", + "Timestamp": "2024-05-16T13:47:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p3dn.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "9.869100", - "Timestamp": "2019-10-15T21:08:42.000Z" - }, - { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p3dn.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "9.839100", - "Timestamp": "2019-10-15T21:08:42.000Z" + "SpotPrice": "1.584300", + "Timestamp": "2024-05-16T13:47:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p3dn.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "9.839100", - "Timestamp": "2019-10-15T21:08:42.000Z" - }, - { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p3dn.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "9.739100", - "Timestamp": "2019-10-15T21:08:42.000Z" + "SpotPrice": "1.554300", + "Timestamp": "2024-05-16T13:47:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p3dn.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "9.739100", - "Timestamp": "2019-10-15T21:08:42.000Z" + "SpotPrice": "1.454300", + "Timestamp": "2024-05-16T13:47:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.359500", - "Timestamp": "2019-10-15T21:08:37.000Z" + "SpotPrice": "0.478300", + "Timestamp": "2024-05-16T13:47:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.359500", - "Timestamp": "2019-10-15T21:08:37.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.818100", + "Timestamp": "2024-05-16T13:47:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.673000", - "Timestamp": "2019-10-15T21:08:37.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.813100", + "Timestamp": "2024-05-16T13:47:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.856000", - "Timestamp": "2019-10-15T21:08:35.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.688100", + "Timestamp": "2024-05-16T13:47:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.856000", - "Timestamp": "2019-10-15T21:08:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229400", + "Timestamp": "2024-05-16T13:47:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.826000", - "Timestamp": "2019-10-15T21:08:35.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.259700", + "Timestamp": "2024-05-16T13:47:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.826000", - "Timestamp": "2019-10-15T21:08:35.000Z" - }, - { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.726000", - "Timestamp": "2019-10-15T21:08:35.000Z" + "SpotPrice": "0.229700", + "Timestamp": "2024-05-16T13:47:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.726000", - "Timestamp": "2019-10-15T21:08:35.000Z" + "SpotPrice": "0.129700", + "Timestamp": "2024-05-16T13:47:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.6xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf1.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.030000", - "Timestamp": "2019-10-15T21:08:06.000Z" + "SpotPrice": "1.432600", + "Timestamp": "2024-05-16T13:47:28.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.030000", - "Timestamp": "2019-10-15T21:08:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.427600", + "Timestamp": "2024-05-16T13:47:28.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.030000", - "Timestamp": "2019-10-15T21:08:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.302600", + "Timestamp": "2024-05-16T13:47:28.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.000000", - "Timestamp": "2019-10-15T21:08:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.022600", + "Timestamp": "2024-05-16T13:47:28.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.000000", - "Timestamp": "2019-10-15T21:08:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.209300", + "Timestamp": "2024-05-16T13:47:28.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.000000", - "Timestamp": "2019-10-15T21:08:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.150400", + "Timestamp": "2024-05-16T13:47:28.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.900000", - "Timestamp": "2019-10-15T21:08:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.145400", + "Timestamp": "2024-05-16T13:47:28.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.6xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.900000", - "Timestamp": "2019-10-15T21:08:06.000Z" + "SpotPrice": "1.020400", + "Timestamp": "2024-05-16T13:47:28.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.900000", - "Timestamp": "2019-10-15T21:08:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.784000", + "Timestamp": "2024-05-16T13:47:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.133000", - "Timestamp": "2019-10-15T21:07:09.000Z" + "SpotPrice": "0.931600", + "Timestamp": "2024-05-16T13:47:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.173000", - "Timestamp": "2019-10-15T21:07:09.000Z" + "SpotPrice": "0.926600", + "Timestamp": "2024-05-16T13:47:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.073000", - "Timestamp": "2019-10-15T21:07:09.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.010800", - "Timestamp": "2019-10-15T21:04:42.000Z" + "SpotPrice": "0.801600", + "Timestamp": "2024-05-16T13:47:27.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.010800", - "Timestamp": "2019-10-15T21:04:42.000Z" + "SpotPrice": "5.684800", + "Timestamp": "2024-05-16T13:47:26.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.010800", - "Timestamp": "2019-10-15T21:04:42.000Z" + "SpotPrice": "0.943400", + "Timestamp": "2024-05-16T13:47:26.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T21:01:56.000Z" + "SpotPrice": "1.938500", + "Timestamp": "2024-05-16T13:47:26.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175600", - "Timestamp": "2019-10-15T21:01:56.000Z" + "SpotPrice": "1.933500", + "Timestamp": "2024-05-16T13:47:26.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075600", - "Timestamp": "2019-10-15T21:01:56.000Z" + "SpotPrice": "1.808500", + "Timestamp": "2024-05-16T13:47:26.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.448000", - "Timestamp": "2019-10-15T21:01:45.000Z" + "SpotPrice": "1.062900", + "Timestamp": "2024-05-16T13:47:24.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.418000", - "Timestamp": "2019-10-15T21:01:45.000Z" + "SpotPrice": "1.057900", + "Timestamp": "2024-05-16T13:47:24.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.318000", - "Timestamp": "2019-10-15T21:01:45.000Z" + "SpotPrice": "0.932900", + "Timestamp": "2024-05-16T13:47:24.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.137600", - "Timestamp": "2019-10-15T21:01:11.000Z" + "SpotPrice": "1.331200", + "Timestamp": "2024-05-16T13:47:24.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.177600", - "Timestamp": "2019-10-15T21:01:11.000Z" + "SpotPrice": "1.326200", + "Timestamp": "2024-05-16T13:47:24.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.077600", - "Timestamp": "2019-10-15T21:01:11.000Z" + "SpotPrice": "1.201200", + "Timestamp": "2024-05-16T13:47:24.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5dn.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.184100", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132100", - "Timestamp": "2019-10-15T20:56:37.000Z" + "SpotPrice": "0.535500", + "Timestamp": "2024-05-16T13:47:22.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5dn.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172100", - "Timestamp": "2019-10-15T20:56:37.000Z" + "SpotPrice": "0.530500", + "Timestamp": "2024-05-16T13:47:22.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5dn.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072100", - "Timestamp": "2019-10-15T20:56:37.000Z" + "SpotPrice": "0.405500", + "Timestamp": "2024-05-16T13:47:22.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.345500", + "Timestamp": "2024-05-16T13:47:22.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.507300", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.339300", - "Timestamp": "2019-10-15T20:54:49.000Z" + "SpotPrice": "0.537800", + "Timestamp": "2024-05-16T13:47:15.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.309300", - "Timestamp": "2019-10-15T20:54:49.000Z" + "SpotPrice": "0.532800", + "Timestamp": "2024-05-16T13:47:15.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.209300", - "Timestamp": "2019-10-15T20:54:49.000Z" + "SpotPrice": "0.407800", + "Timestamp": "2024-05-16T13:47:15.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.033200", + "Timestamp": "2024-05-16T13:47:15.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.318900", - "Timestamp": "2019-10-15T20:53:35.000Z" + "SpotPrice": "3.040400", + "Timestamp": "2024-05-16T13:47:15.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.288900", - "Timestamp": "2019-10-15T20:53:35.000Z" + "SpotPrice": "3.035400", + "Timestamp": "2024-05-16T13:47:15.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.188900", - "Timestamp": "2019-10-15T20:53:35.000Z" + "SpotPrice": "2.910400", + "Timestamp": "2024-05-16T13:47:15.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.448500", - "Timestamp": "2019-10-15T20:53:07.000Z" + "SpotPrice": "0.334400", + "Timestamp": "2024-05-16T13:47:13.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.418500", - "Timestamp": "2019-10-15T20:53:07.000Z" + "SpotPrice": "0.329400", + "Timestamp": "2024-05-16T13:47:13.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.318500", - "Timestamp": "2019-10-15T20:53:07.000Z" + "SpotPrice": "0.204400", + "Timestamp": "2024-05-16T13:47:13.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107800", + "Timestamp": "2024-05-16T13:47:11.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.750700", - "Timestamp": "2019-10-15T20:53:03.000Z" + "SpotPrice": "1.019800", + "Timestamp": "2024-05-16T13:47:09.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.720700", - "Timestamp": "2019-10-15T20:53:03.000Z" + "SpotPrice": "1.014800", + "Timestamp": "2024-05-16T13:47:09.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.620700", - "Timestamp": "2019-10-15T20:53:03.000Z" + "SpotPrice": "0.889800", + "Timestamp": "2024-05-16T13:47:09.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5dn.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.697900", + "Timestamp": "2024-05-16T13:47:08.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-16T13:47:08.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "inf2.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096100", - "Timestamp": "2019-10-15T20:50:06.000Z" + "SpotPrice": "0.688900", + "Timestamp": "2024-05-16T13:47:08.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5dn.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "inf2.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136100", - "Timestamp": "2019-10-15T20:50:06.000Z" + "SpotPrice": "0.658900", + "Timestamp": "2024-05-16T13:47:08.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5dn.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "inf2.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036100", - "Timestamp": "2019-10-15T20:50:06.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.476100", - "Timestamp": "2019-10-15T20:48:01.000Z" + "SpotPrice": "0.558900", + "Timestamp": "2024-05-16T13:47:08.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.476100", - "Timestamp": "2019-10-15T20:48:01.000Z" + "SpotPrice": "1.020600", + "Timestamp": "2024-05-16T13:47:06.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.large", "ProductDescription": "Windows", - "SpotPrice": "0.476100", - "Timestamp": "2019-10-15T20:48:01.000Z" + "SpotPrice": "0.041400", + "Timestamp": "2024-05-16T13:47:06.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.586800", - "Timestamp": "2019-10-15T20:45:28.000Z" + "SpotPrice": "0.887300", + "Timestamp": "2024-05-16T13:47:05.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.556800", - "Timestamp": "2019-10-15T20:45:28.000Z" + "SpotPrice": "0.882300", + "Timestamp": "2024-05-16T13:47:05.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.456800", - "Timestamp": "2019-10-15T20:45:28.000Z" + "SpotPrice": "0.757300", + "Timestamp": "2024-05-16T13:47:05.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5n.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095000", - "Timestamp": "2019-10-15T20:45:26.000Z" - }, - { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5n.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135000", - "Timestamp": "2019-10-15T20:45:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.480000", + "Timestamp": "2024-05-16T13:47:04.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5n.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035000", - "Timestamp": "2019-10-15T20:45:26.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.756000", + "Timestamp": "2024-05-16T13:47:02.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.352800", - "Timestamp": "2019-10-15T20:45:26.000Z" + "SpotPrice": "0.300800", + "Timestamp": "2024-05-16T13:46:58.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.392800", - "Timestamp": "2019-10-15T20:45:26.000Z" + "SpotPrice": "0.295800", + "Timestamp": "2024-05-16T13:46:58.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.292800", - "Timestamp": "2019-10-15T20:45:26.000Z" + "SpotPrice": "0.170800", + "Timestamp": "2024-05-16T13:46:58.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.443100", - "Timestamp": "2019-10-15T20:45:21.000Z" + "SpotPrice": "0.714200", + "Timestamp": "2024-05-16T13:46:58.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.413100", - "Timestamp": "2019-10-15T20:45:21.000Z" + "SpotPrice": "0.684200", + "Timestamp": "2024-05-16T13:46:58.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.313100", - "Timestamp": "2019-10-15T20:45:21.000Z" + "SpotPrice": "0.584200", + "Timestamp": "2024-05-16T13:46:58.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.543800", - "Timestamp": "2019-10-15T20:44:52.000Z" + "SpotPrice": "10.439900", + "Timestamp": "2024-05-16T13:46:57.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.879500", - "Timestamp": "2019-10-15T20:44:47.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.038800", + "Timestamp": "2024-05-16T13:46:55.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.849500", - "Timestamp": "2019-10-15T20:44:47.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439600", + "Timestamp": "2024-05-16T13:46:54.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.749500", - "Timestamp": "2019-10-15T20:44:47.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.634800", + "Timestamp": "2024-05-16T13:46:51.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.869600", + "Timestamp": "2024-05-16T13:46:49.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.277200", - "Timestamp": "2019-10-15T20:44:44.000Z" + "SpotPrice": "0.710700", + "Timestamp": "2024-05-16T13:46:49.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.247200", - "Timestamp": "2019-10-15T20:44:44.000Z" + "SpotPrice": "0.705700", + "Timestamp": "2024-05-16T13:46:49.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.147200", - "Timestamp": "2019-10-15T20:44:44.000Z" + "SpotPrice": "0.580700", + "Timestamp": "2024-05-16T13:46:49.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.347600", - "Timestamp": "2019-10-15T20:44:24.000Z" + "SpotPrice": "0.542100", + "Timestamp": "2024-05-16T13:46:49.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.317600", - "Timestamp": "2019-10-15T20:44:24.000Z" + "SpotPrice": "0.537100", + "Timestamp": "2024-05-16T13:46:49.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.217600", - "Timestamp": "2019-10-15T20:44:24.000Z" + "SpotPrice": "0.412100", + "Timestamp": "2024-05-16T13:46:49.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.995700", - "Timestamp": "2019-10-15T20:43:39.000Z" + "SpotPrice": "0.312600", + "Timestamp": "2024-05-16T13:46:47.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.965700", - "Timestamp": "2019-10-15T20:43:39.000Z" + "SpotPrice": "0.307600", + "Timestamp": "2024-05-16T13:46:47.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.865700", - "Timestamp": "2019-10-15T20:43:39.000Z" + "SpotPrice": "0.182600", + "Timestamp": "2024-05-16T13:46:47.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.126400", - "Timestamp": "2019-10-15T20:42:21.000Z" + "SpotPrice": "0.447200", + "Timestamp": "2024-05-16T13:46:46.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126400", - "Timestamp": "2019-10-15T20:42:21.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.451700", + "Timestamp": "2024-05-16T13:46:45.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126400", - "Timestamp": "2019-10-15T20:42:21.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.446700", + "Timestamp": "2024-05-16T13:46:45.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094400", - "Timestamp": "2019-10-15T20:41:57.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.321700", + "Timestamp": "2024-05-16T13:46:45.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094700", - "Timestamp": "2019-10-15T20:41:57.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.412500", + "Timestamp": "2024-05-16T13:46:45.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094400", - "Timestamp": "2019-10-15T20:41:57.000Z" + "SpotPrice": "0.094200", + "Timestamp": "2024-05-16T13:46:45.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4g.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134400", - "Timestamp": "2019-10-15T20:41:57.000Z" + "SpotPrice": "0.090500", + "Timestamp": "2024-05-16T13:46:45.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m4.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134700", - "Timestamp": "2019-10-15T20:41:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034200", + "Timestamp": "2024-05-16T13:46:45.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.422000", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134400", - "Timestamp": "2019-10-15T20:41:57.000Z" + "SpotPrice": "0.417000", + "Timestamp": "2024-05-16T13:46:45.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034400", - "Timestamp": "2019-10-15T20:41:57.000Z" + "SpotPrice": "0.292000", + "Timestamp": "2024-05-16T13:46:45.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034700", - "Timestamp": "2019-10-15T20:41:57.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.483300", + "Timestamp": "2024-05-16T13:46:45.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034400", - "Timestamp": "2019-10-15T20:41:57.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.478300", + "Timestamp": "2024-05-16T13:46:45.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t2.large", - "ProductDescription": "Windows", - "SpotPrice": "0.058200", - "Timestamp": "2019-10-15T20:41:11.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.353300", + "Timestamp": "2024-05-16T13:46:45.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.058200", - "Timestamp": "2019-10-15T20:41:11.000Z" + "SpotPrice": "1.946400", + "Timestamp": "2024-05-16T13:46:44.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.058200", - "Timestamp": "2019-10-15T20:41:11.000Z" + "SpotPrice": "0.463700", + "Timestamp": "2024-05-16T13:46:44.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090200", - "Timestamp": "2019-10-15T20:40:36.000Z" + "SpotPrice": "0.656500", + "Timestamp": "2024-05-16T13:46:44.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t2.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090200", - "Timestamp": "2019-10-15T20:40:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.651500", + "Timestamp": "2024-05-16T13:46:44.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t2.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090200", - "Timestamp": "2019-10-15T20:40:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.526500", + "Timestamp": "2024-05-16T13:46:44.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t2.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.130200", - "Timestamp": "2019-10-15T20:40:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.190600", + "Timestamp": "2024-05-16T13:46:44.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.130200", - "Timestamp": "2019-10-15T20:40:36.000Z" + "SpotPrice": "0.186600", + "Timestamp": "2024-05-16T13:46:44.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t2.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.130200", - "Timestamp": "2019-10-15T20:40:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130600", + "Timestamp": "2024-05-16T13:46:44.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t2.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030200", - "Timestamp": "2019-10-15T20:40:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.290500", + "Timestamp": "2024-05-16T13:46:43.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t2.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030200", - "Timestamp": "2019-10-15T20:40:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.285500", + "Timestamp": "2024-05-16T13:46:43.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030200", - "Timestamp": "2019-10-15T20:40:36.000Z" + "SpotPrice": "0.160500", + "Timestamp": "2024-05-16T13:46:43.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.047800", - "Timestamp": "2019-10-15T20:39:36.000Z" + "SpotPrice": "2.707800", + "Timestamp": "2024-05-16T13:46:43.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.047800", - "Timestamp": "2019-10-15T20:39:36.000Z" + "SpotPrice": "0.440600", + "Timestamp": "2024-05-16T13:46:42.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.248700", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.243700", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118700", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.metal", "ProductDescription": "Windows", - "SpotPrice": "2.047800", - "Timestamp": "2019-10-15T20:39:36.000Z" + "SpotPrice": "2.768900", + "Timestamp": "2024-05-16T13:46:42.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.257800", - "Timestamp": "2019-10-15T20:37:08.000Z" + "SpotPrice": "1.048900", + "Timestamp": "2024-05-16T13:46:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.227800", - "Timestamp": "2019-10-15T20:37:08.000Z" + "SpotPrice": "1.043900", + "Timestamp": "2024-05-16T13:46:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.127800", - "Timestamp": "2019-10-15T20:37:08.000Z" + "SpotPrice": "0.918900", + "Timestamp": "2024-05-16T13:46:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.454700", - "Timestamp": "2019-10-15T20:36:36.000Z" + "SpotPrice": "2.150400", + "Timestamp": "2024-05-16T13:46:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.424700", - "Timestamp": "2019-10-15T20:36:36.000Z" + "SpotPrice": "2.120400", + "Timestamp": "2024-05-16T13:46:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.324700", - "Timestamp": "2019-10-15T20:36:36.000Z" + "SpotPrice": "2.020400", + "Timestamp": "2024-05-16T13:46:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4ad.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.639200", - "Timestamp": "2019-10-15T20:36:33.000Z" + "SpotPrice": "0.330000", + "Timestamp": "2024-05-16T13:46:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4ad.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.609200", - "Timestamp": "2019-10-15T20:36:33.000Z" + "SpotPrice": "0.325000", + "Timestamp": "2024-05-16T13:46:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4ad.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.509200", - "Timestamp": "2019-10-15T20:36:33.000Z" + "SpotPrice": "0.200000", + "Timestamp": "2024-05-16T13:46:41.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.054900", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.953700", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.454100", - "Timestamp": "2019-10-15T20:36:03.000Z" + "SpotPrice": "1.570100", + "Timestamp": "2024-05-16T13:46:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.424100", - "Timestamp": "2019-10-15T20:36:03.000Z" + "SpotPrice": "1.565100", + "Timestamp": "2024-05-16T13:46:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.324100", - "Timestamp": "2019-10-15T20:36:03.000Z" + "SpotPrice": "1.440100", + "Timestamp": "2024-05-16T13:46:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.304500", - "Timestamp": "2019-10-15T20:28:50.000Z" + "SpotPrice": "2.628300", + "Timestamp": "2024-05-16T13:46:39.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.144600", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.274500", - "Timestamp": "2019-10-15T20:28:50.000Z" + "SpotPrice": "2.623300", + "Timestamp": "2024-05-16T13:46:39.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.139600", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.174500", - "Timestamp": "2019-10-15T20:28:50.000Z" + "SpotPrice": "2.498300", + "Timestamp": "2024-05-16T13:46:39.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.014600", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.873300", - "Timestamp": "2019-10-15T20:28:20.000Z" + "SpotPrice": "0.270800", + "Timestamp": "2024-05-16T13:46:38.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.843300", - "Timestamp": "2019-10-15T20:28:20.000Z" + "SpotPrice": "0.265800", + "Timestamp": "2024-05-16T13:46:38.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.743300", - "Timestamp": "2019-10-15T20:28:20.000Z" + "SpotPrice": "0.140800", + "Timestamp": "2024-05-16T13:46:38.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132400", - "Timestamp": "2019-10-15T20:28:18.000Z" + "SpotPrice": "1.226400", + "Timestamp": "2024-05-16T13:46:38.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172400", - "Timestamp": "2019-10-15T20:28:18.000Z" + "SpotPrice": "1.196400", + "Timestamp": "2024-05-16T13:46:38.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072400", - "Timestamp": "2019-10-15T20:28:18.000Z" + "SpotPrice": "1.096400", + "Timestamp": "2024-05-16T13:46:38.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.287600", - "Timestamp": "2019-10-15T20:27:53.000Z" + "SpotPrice": "0.088800", + "Timestamp": "2024-05-16T13:46:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6g.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.257600", - "Timestamp": "2019-10-15T20:27:53.000Z" + "SpotPrice": "0.085100", + "Timestamp": "2024-05-16T13:46:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.157600", - "Timestamp": "2019-10-15T20:27:53.000Z" + "SpotPrice": "0.028800", + "Timestamp": "2024-05-16T13:46:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.448400", - "Timestamp": "2019-10-15T20:27:50.000Z" + "SpotPrice": "1.335100", + "Timestamp": "2024-05-16T13:46:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.418400", - "Timestamp": "2019-10-15T20:27:50.000Z" + "SpotPrice": "1.305100", + "Timestamp": "2024-05-16T13:46:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.318400", - "Timestamp": "2019-10-15T20:27:50.000Z" + "SpotPrice": "1.205100", + "Timestamp": "2024-05-16T13:46:36.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5dn.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.128100", - "Timestamp": "2019-10-15T20:23:52.000Z" + "SpotPrice": "0.423300", + "Timestamp": "2024-05-16T13:46:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.270400", - "Timestamp": "2019-10-15T20:23:16.000Z" + "SpotPrice": "1.347300", + "Timestamp": "2024-05-16T13:46:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.240400", - "Timestamp": "2019-10-15T20:23:16.000Z" + "SpotPrice": "1.342300", + "Timestamp": "2024-05-16T13:46:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.140400", - "Timestamp": "2019-10-15T20:23:16.000Z" + "SpotPrice": "1.217300", + "Timestamp": "2024-05-16T13:46:36.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.931500", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.222200", - "Timestamp": "2019-10-15T20:20:31.000Z" + "SpotPrice": "1.696400", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "4.192200", - "Timestamp": "2019-10-15T20:20:31.000Z" + "SpotPrice": "1.691400", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.092200", - "Timestamp": "2019-10-15T20:20:31.000Z" + "SpotPrice": "1.566400", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.820400", - "Timestamp": "2019-10-15T20:19:44.000Z" + "SpotPrice": "0.239800", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.790400", - "Timestamp": "2019-10-15T20:19:44.000Z" + "SpotPrice": "0.234800", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.690400", - "Timestamp": "2019-10-15T20:19:44.000Z" + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-15T20:19:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.243200", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "z1d.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c4.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-15T20:19:24.000Z" + "SpotPrice": "0.140200", + "Timestamp": "2024-05-16T13:46:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-15T20:19:24.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180200", + "Timestamp": "2024-05-16T13:46:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-15T20:19:24.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080200", + "Timestamp": "2024-05-16T13:46:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-15T20:19:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.483000", + "Timestamp": "2024-05-16T13:46:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "z1d.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.391100", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-15T20:19:24.000Z" + "SpotPrice": "3.386100", + "Timestamp": "2024-05-16T13:46:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "z1d.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-15T20:19:24.000Z" + "SpotPrice": "3.261100", + "Timestamp": "2024-05-16T13:46:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-15T20:19:24.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142600", + "Timestamp": "2024-05-16T13:46:28.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-15T20:19:24.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138600", + "Timestamp": "2024-05-16T13:46:28.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.705600", - "Timestamp": "2019-10-15T20:18:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082600", + "Timestamp": "2024-05-16T13:46:28.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "z1d.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "t2.xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.705600", - "Timestamp": "2019-10-15T20:18:40.000Z" + "SpotPrice": "0.068800", + "Timestamp": "2024-05-16T13:46:28.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "z1d.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.705600", - "Timestamp": "2019-10-15T20:18:40.000Z" + "SpotPrice": "0.509300", + "Timestamp": "2024-05-16T13:46:28.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.303800", - "Timestamp": "2019-10-15T20:11:45.000Z" + "SpotPrice": "0.164100", + "Timestamp": "2024-05-16T13:46:27.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.273800", - "Timestamp": "2019-10-15T20:11:45.000Z" + "SpotPrice": "0.160400", + "Timestamp": "2024-05-16T13:46:27.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.173800", - "Timestamp": "2019-10-15T20:11:45.000Z" + "SpotPrice": "0.104100", + "Timestamp": "2024-05-16T13:46:27.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.749300", - "Timestamp": "2019-10-15T20:11:23.000Z" + "SpotPrice": "0.075000", + "Timestamp": "2024-05-16T13:46:27.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.719300", - "Timestamp": "2019-10-15T20:11:23.000Z" + "SpotPrice": "0.071300", + "Timestamp": "2024-05-16T13:46:27.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.619300", - "Timestamp": "2019-10-15T20:11:23.000Z" + "SpotPrice": "0.015000", + "Timestamp": "2024-05-16T13:46:27.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.130400", - "Timestamp": "2019-10-15T20:10:53.000Z" + "SpotPrice": "0.474100", + "Timestamp": "2024-05-16T13:46:27.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.170400", - "Timestamp": "2019-10-15T20:10:53.000Z" + "SpotPrice": "0.469100", + "Timestamp": "2024-05-16T13:46:27.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.070400", - "Timestamp": "2019-10-15T20:10:53.000Z" + "SpotPrice": "0.344100", + "Timestamp": "2024-05-16T13:46:27.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.835700", - "Timestamp": "2019-10-15T20:10:50.000Z" + "SpotPrice": "1.006800", + "Timestamp": "2024-05-16T13:46:23.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.805700", - "Timestamp": "2019-10-15T20:10:50.000Z" + "SpotPrice": "1.001800", + "Timestamp": "2024-05-16T13:46:23.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.705700", - "Timestamp": "2019-10-15T20:10:50.000Z" + "SpotPrice": "0.876800", + "Timestamp": "2024-05-16T13:46:23.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.036900", - "Timestamp": "2019-10-15T20:05:37.000Z" + "SpotPrice": "2.153400", + "Timestamp": "2024-05-16T13:46:23.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.036900", - "Timestamp": "2019-10-15T20:05:37.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.148400", + "Timestamp": "2024-05-16T13:46:23.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.178000", - "Timestamp": "2019-10-15T20:05:37.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.023400", + "Timestamp": "2024-05-16T13:46:23.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.006900", - "Timestamp": "2019-10-15T20:05:37.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.960000", + "Timestamp": "2024-05-16T13:32:39.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.006900", - "Timestamp": "2019-10-15T20:05:37.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.776500", + "Timestamp": "2024-05-16T13:32:39.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.148000", - "Timestamp": "2019-10-15T20:05:37.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.612400", + "Timestamp": "2024-05-16T13:32:38.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.906900", - "Timestamp": "2019-10-15T20:05:37.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.057000", + "Timestamp": "2024-05-16T13:32:37.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.906900", - "Timestamp": "2019-10-15T20:05:37.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.052000", + "Timestamp": "2024-05-16T13:32:37.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.048000", - "Timestamp": "2019-10-15T20:05:37.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.114900", - "Timestamp": "2019-10-15T20:05:21.000Z" + "SpotPrice": "3.927000", + "Timestamp": "2024-05-16T13:32:37.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.114900", - "Timestamp": "2019-10-15T20:05:21.000Z" + "SpotPrice": "2.680600", + "Timestamp": "2024-05-16T13:32:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.256000", - "Timestamp": "2019-10-15T20:05:21.000Z" + "SpotPrice": "1.795900", + "Timestamp": "2024-05-16T13:32:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.339600", - "Timestamp": "2019-10-15T20:03:44.000Z" + "SpotPrice": "3.404700", + "Timestamp": "2024-05-16T13:32:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.309600", - "Timestamp": "2019-10-15T20:03:44.000Z" + "SpotPrice": "3.399700", + "Timestamp": "2024-05-16T13:32:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.209600", - "Timestamp": "2019-10-15T20:03:44.000Z" + "SpotPrice": "3.274700", + "Timestamp": "2024-05-16T13:32:36.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.136600", - "Timestamp": "2019-10-15T20:03:18.000Z" + "SpotPrice": "0.431500", + "Timestamp": "2024-05-16T13:32:34.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.176600", - "Timestamp": "2019-10-15T20:03:18.000Z" + "SpotPrice": "0.426500", + "Timestamp": "2024-05-16T13:32:34.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.076600", - "Timestamp": "2019-10-15T20:03:18.000Z" + "SpotPrice": "0.301500", + "Timestamp": "2024-05-16T13:32:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132100", - "Timestamp": "2019-10-15T20:03:12.000Z" + "SpotPrice": "2.254700", + "Timestamp": "2024-05-16T13:32:33.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172100", - "Timestamp": "2019-10-15T20:03:12.000Z" + "SpotPrice": "2.249700", + "Timestamp": "2024-05-16T13:32:33.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072100", - "Timestamp": "2019-10-15T20:03:12.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.128100", - "Timestamp": "2019-10-15T20:03:08.000Z" + "SpotPrice": "2.124700", + "Timestamp": "2024-05-16T13:32:33.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "d3.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.128100", - "Timestamp": "2019-10-15T20:03:08.000Z" + "SpotPrice": "1.991400", + "Timestamp": "2024-05-16T13:32:33.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.metal-48xl", "ProductDescription": "Windows", - "SpotPrice": "0.128100", - "Timestamp": "2019-10-15T20:03:08.000Z" + "SpotPrice": "12.037500", + "Timestamp": "2024-05-16T13:32:33.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "d3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.288900", - "Timestamp": "2019-10-15T20:03:02.000Z" + "SpotPrice": "0.989100", + "Timestamp": "2024-05-16T13:32:33.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "d3.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.258900", - "Timestamp": "2019-10-15T20:03:02.000Z" + "SpotPrice": "0.984100", + "Timestamp": "2024-05-16T13:32:33.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "d3.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.158900", - "Timestamp": "2019-10-15T20:03:02.000Z" + "SpotPrice": "0.859100", + "Timestamp": "2024-05-16T13:32:33.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.429500", - "Timestamp": "2019-10-15T20:02:27.000Z" + "SpotPrice": "2.964300", + "Timestamp": "2024-05-16T13:32:33.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.399500", - "Timestamp": "2019-10-15T20:02:27.000Z" + "SpotPrice": "2.959300", + "Timestamp": "2024-05-16T13:32:33.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.299500", - "Timestamp": "2019-10-15T20:02:27.000Z" + "SpotPrice": "2.834300", + "Timestamp": "2024-05-16T13:32:33.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.951100", + "Timestamp": "2024-05-16T13:32:32.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.943900", - "Timestamp": "2019-10-15T19:58:32.000Z" + "SpotPrice": "1.621500", + "Timestamp": "2024-05-16T13:32:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.913900", - "Timestamp": "2019-10-15T19:58:32.000Z" + "SpotPrice": "1.616500", + "Timestamp": "2024-05-16T13:32:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.813900", - "Timestamp": "2019-10-15T19:58:32.000Z" + "SpotPrice": "1.491500", + "Timestamp": "2024-05-16T13:32:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.430200", - "Timestamp": "2019-10-15T19:55:24.000Z" + "SpotPrice": "0.913500", + "Timestamp": "2024-05-16T13:32:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.400200", - "Timestamp": "2019-10-15T19:55:24.000Z" + "SpotPrice": "0.908500", + "Timestamp": "2024-05-16T13:32:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.300200", - "Timestamp": "2019-10-15T19:55:24.000Z" + "SpotPrice": "0.783500", + "Timestamp": "2024-05-16T13:32:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.245600", - "Timestamp": "2019-10-15T19:55:14.000Z" + "SpotPrice": "1.022000", + "Timestamp": "2024-05-16T13:32:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c1.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.215600", - "Timestamp": "2019-10-15T19:55:14.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.081100", + "Timestamp": "2024-05-16T13:32:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c1.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.115600", - "Timestamp": "2019-10-15T19:55:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.017000", + "Timestamp": "2024-05-16T13:32:31.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.734900", - "Timestamp": "2019-10-15T19:54:58.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.076100", + "Timestamp": "2024-05-16T13:32:31.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "5.704900", - "Timestamp": "2019-10-15T19:54:58.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.892000", + "Timestamp": "2024-05-16T13:32:31.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "x1e.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.604900", - "Timestamp": "2019-10-15T19:54:58.000Z" + "SpotPrice": "0.951100", + "Timestamp": "2024-05-16T13:32:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.199700", - "Timestamp": "2019-10-15T19:54:27.000Z" + "SpotPrice": "1.102200", + "Timestamp": "2024-05-16T13:32:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g3.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.169700", - "Timestamp": "2019-10-15T19:54:27.000Z" + "SpotPrice": "1.072200", + "Timestamp": "2024-05-16T13:32:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g3.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.069700", - "Timestamp": "2019-10-15T19:54:27.000Z" + "SpotPrice": "0.972200", + "Timestamp": "2024-05-16T13:32:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267500", - "Timestamp": "2019-10-15T19:46:35.000Z" + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T13:32:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.237500", - "Timestamp": "2019-10-15T19:46:35.000Z" + "SpotPrice": "0.092300", + "Timestamp": "2024-05-16T13:32:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.137500", - "Timestamp": "2019-10-15T19:46:35.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.512300", - "Timestamp": "2019-10-15T19:46:27.000Z" - }, - { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.512300", - "Timestamp": "2019-10-15T19:46:27.000Z" - }, - { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.512300", - "Timestamp": "2019-10-15T19:46:27.000Z" + "SpotPrice": "0.036000", + "Timestamp": "2024-05-16T13:32:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.148100", - "Timestamp": "2019-10-15T19:46:23.000Z" + "SpotPrice": "2.169800", + "Timestamp": "2024-05-16T13:32:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.188100", - "Timestamp": "2019-10-15T19:46:23.000Z" + "SpotPrice": "2.164800", + "Timestamp": "2024-05-16T13:32:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.088100", - "Timestamp": "2019-10-15T19:46:23.000Z" + "SpotPrice": "2.039800", + "Timestamp": "2024-05-16T13:32:30.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.073700", - "Timestamp": "2019-10-15T19:45:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.595000", + "Timestamp": "2024-05-16T13:32:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.073700", - "Timestamp": "2019-10-15T19:45:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.590000", + "Timestamp": "2024-05-16T13:32:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.073700", - "Timestamp": "2019-10-15T19:45:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.465000", + "Timestamp": "2024-05-16T13:32:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.995700", - "Timestamp": "2019-10-15T19:44:31.000Z" + "SpotPrice": "1.121100", + "Timestamp": "2024-05-16T13:32:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.995700", - "Timestamp": "2019-10-15T19:44:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.116100", + "Timestamp": "2024-05-16T13:32:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.995700", - "Timestamp": "2019-10-15T19:44:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.991100", + "Timestamp": "2024-05-16T13:32:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.965700", - "Timestamp": "2019-10-15T19:44:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.694200", + "Timestamp": "2024-05-16T13:32:26.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.965700", - "Timestamp": "2019-10-15T19:44:31.000Z" + "SpotPrice": "0.689200", + "Timestamp": "2024-05-16T13:32:26.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.965700", - "Timestamp": "2019-10-15T19:44:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.564200", + "Timestamp": "2024-05-16T13:32:26.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.865700", - "Timestamp": "2019-10-15T19:44:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.700000", + "Timestamp": "2024-05-16T13:32:25.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.865700", - "Timestamp": "2019-10-15T19:44:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.695000", + "Timestamp": "2024-05-16T13:32:25.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.865700", - "Timestamp": "2019-10-15T19:44:31.000Z" + "SpotPrice": "2.570000", + "Timestamp": "2024-05-16T13:32:25.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.128100", - "Timestamp": "2019-10-15T19:42:39.000Z" + "SpotPrice": "0.194100", + "Timestamp": "2024-05-16T13:32:25.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.128100", - "Timestamp": "2019-10-15T19:42:39.000Z" + "SpotPrice": "3.554100", + "Timestamp": "2024-05-16T13:32:25.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.128100", - "Timestamp": "2019-10-15T19:42:39.000Z" + "SpotPrice": "7.903100", + "Timestamp": "2024-05-16T13:32:25.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.095700", - "Timestamp": "2019-10-15T19:42:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.676000", + "Timestamp": "2024-05-16T13:32:24.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.095700", - "Timestamp": "2019-10-15T19:42:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.671000", + "Timestamp": "2024-05-16T13:32:24.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.095700", - "Timestamp": "2019-10-15T19:42:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.546000", + "Timestamp": "2024-05-16T13:32:24.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.339300", - "Timestamp": "2019-10-15T19:42:15.000Z" + "SpotPrice": "0.147200", + "Timestamp": "2024-05-16T13:32:23.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.309300", - "Timestamp": "2019-10-15T19:42:15.000Z" + "SpotPrice": "0.143500", + "Timestamp": "2024-05-16T13:32:23.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.209300", - "Timestamp": "2019-10-15T19:42:15.000Z" + "SpotPrice": "0.087200", + "Timestamp": "2024-05-16T13:32:23.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4ad.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.281700", - "Timestamp": "2019-10-15T19:42:12.000Z" + "SpotPrice": "0.173300", + "Timestamp": "2024-05-16T13:32:23.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4ad.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.281700", - "Timestamp": "2019-10-15T19:42:12.000Z" + "SpotPrice": "0.175700", + "Timestamp": "2024-05-16T13:32:23.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4ad.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.251700", - "Timestamp": "2019-10-15T19:42:12.000Z" + "SpotPrice": "0.169600", + "Timestamp": "2024-05-16T13:32:23.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4ad.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.251700", - "Timestamp": "2019-10-15T19:42:12.000Z" + "SpotPrice": "0.172000", + "Timestamp": "2024-05-16T13:32:23.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4ad.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.151700", - "Timestamp": "2019-10-15T19:42:12.000Z" + "SpotPrice": "0.113300", + "Timestamp": "2024-05-16T13:32:23.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4ad.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.151700", - "Timestamp": "2019-10-15T19:42:12.000Z" + "SpotPrice": "0.115700", + "Timestamp": "2024-05-16T13:32:23.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.318900", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094900", - "Timestamp": "2019-10-15T19:40:41.000Z" + "SpotPrice": "0.787600", + "Timestamp": "2024-05-16T13:32:21.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134900", - "Timestamp": "2019-10-15T19:40:41.000Z" + "SpotPrice": "0.782600", + "Timestamp": "2024-05-16T13:32:21.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034900", - "Timestamp": "2019-10-15T19:40:41.000Z" - }, - { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.566300", - "Timestamp": "2019-10-15T19:37:57.000Z" + "SpotPrice": "0.657600", + "Timestamp": "2024-05-16T13:32:21.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "x1e.32xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4ad.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "15.995000", - "Timestamp": "2019-10-15T19:37:53.000Z" + "SpotPrice": "0.313200", + "Timestamp": "2024-05-16T13:32:21.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "x1e.32xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4ad.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "15.965000", - "Timestamp": "2019-10-15T19:37:53.000Z" + "SpotPrice": "0.308200", + "Timestamp": "2024-05-16T13:32:21.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "x1e.32xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4ad.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "15.865000", - "Timestamp": "2019-10-15T19:37:53.000Z" + "SpotPrice": "0.183200", + "Timestamp": "2024-05-16T13:32:21.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5dn.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.256100", - "Timestamp": "2019-10-15T19:32:08.000Z" + "SpotPrice": "7.509000", + "Timestamp": "2024-05-16T13:32:18.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T19:30:47.000Z" + "SpotPrice": "1.015900", + "Timestamp": "2024-05-16T13:32:16.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175600", - "Timestamp": "2019-10-15T19:30:47.000Z" + "SpotPrice": "0.985900", + "Timestamp": "2024-05-16T13:32:16.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075600", - "Timestamp": "2019-10-15T19:30:47.000Z" + "SpotPrice": "0.885900", + "Timestamp": "2024-05-16T13:32:16.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.283100", - "Timestamp": "2019-10-15T19:30:26.000Z" + "SpotPrice": "4.088600", + "Timestamp": "2024-05-16T13:32:15.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.253100", - "Timestamp": "2019-10-15T19:30:26.000Z" + "SpotPrice": "4.083600", + "Timestamp": "2024-05-16T13:32:15.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.153100", - "Timestamp": "2019-10-15T19:30:26.000Z" + "SpotPrice": "3.958600", + "Timestamp": "2024-05-16T13:32:15.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.280900", - "Timestamp": "2019-10-15T19:30:18.000Z" + "SpotPrice": "0.127100", + "Timestamp": "2024-05-16T13:32:15.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.250900", - "Timestamp": "2019-10-15T19:30:18.000Z" + "SpotPrice": "0.123400", + "Timestamp": "2024-05-16T13:32:15.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.150900", - "Timestamp": "2019-10-15T19:30:18.000Z" + "SpotPrice": "0.067100", + "Timestamp": "2024-05-16T13:32:15.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.283300", + "Timestamp": "2024-05-16T13:32:12.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.716500", - "Timestamp": "2019-10-15T19:29:47.000Z" + "SpotPrice": "0.951400", + "Timestamp": "2024-05-16T13:32:12.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.686500", - "Timestamp": "2019-10-15T19:29:47.000Z" + "SpotPrice": "0.946400", + "Timestamp": "2024-05-16T13:32:12.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.586500", - "Timestamp": "2019-10-15T19:29:47.000Z" + "SpotPrice": "0.821400", + "Timestamp": "2024-05-16T13:32:12.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.710500", + "Timestamp": "2024-05-16T13:32:12.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.124300", - "Timestamp": "2019-10-15T19:29:45.000Z" + "SpotPrice": "3.342200", + "Timestamp": "2024-05-16T13:32:11.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.094300", - "Timestamp": "2019-10-15T19:29:45.000Z" + "SpotPrice": "3.337200", + "Timestamp": "2024-05-16T13:32:11.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.994300", - "Timestamp": "2019-10-15T19:29:45.000Z" + "SpotPrice": "3.212200", + "Timestamp": "2024-05-16T13:32:11.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.255100", - "Timestamp": "2019-10-15T19:29:33.000Z" + "SpotPrice": "0.580100", + "Timestamp": "2024-05-16T13:32:09.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.295100", - "Timestamp": "2019-10-15T19:29:33.000Z" + "SpotPrice": "0.575100", + "Timestamp": "2024-05-16T13:32:09.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.195100", - "Timestamp": "2019-10-15T19:29:33.000Z" + "SpotPrice": "0.450100", + "Timestamp": "2024-05-16T13:32:09.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.441600", - "Timestamp": "2019-10-15T19:29:28.000Z" + "SpotPrice": "0.537000", + "Timestamp": "2024-05-16T13:32:05.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.411600", - "Timestamp": "2019-10-15T19:29:28.000Z" + "SpotPrice": "0.532000", + "Timestamp": "2024-05-16T13:32:05.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.311600", - "Timestamp": "2019-10-15T19:29:28.000Z" + "SpotPrice": "0.407000", + "Timestamp": "2024-05-16T13:32:05.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.274300", - "Timestamp": "2019-10-15T19:27:40.000Z" + "SpotPrice": "1.572300", + "Timestamp": "2024-05-16T13:32:05.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.244300", - "Timestamp": "2019-10-15T19:27:40.000Z" + "SpotPrice": "1.542300", + "Timestamp": "2024-05-16T13:32:05.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.144300", - "Timestamp": "2019-10-15T19:27:40.000Z" + "SpotPrice": "1.442300", + "Timestamp": "2024-05-16T13:32:05.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.6xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.073700", - "Timestamp": "2019-10-15T19:20:45.000Z" + "SpotPrice": "1.521300", + "Timestamp": "2024-05-16T13:32:04.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.252700", - "Timestamp": "2019-10-15T19:17:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.118100", + "Timestamp": "2024-05-16T13:32:04.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.252700", - "Timestamp": "2019-10-15T19:17:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.113100", + "Timestamp": "2024-05-16T13:32:04.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.252700", - "Timestamp": "2019-10-15T19:17:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.988100", + "Timestamp": "2024-05-16T13:32:04.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.133400", - "Timestamp": "2019-10-15T19:16:14.000Z" + "SpotPrice": "0.088900", + "Timestamp": "2024-05-16T13:32:04.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.173400", - "Timestamp": "2019-10-15T19:16:14.000Z" + "SpotPrice": "0.085200", + "Timestamp": "2024-05-16T13:32:04.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.073400", - "Timestamp": "2019-10-15T19:16:14.000Z" + "SpotPrice": "0.028900", + "Timestamp": "2024-05-16T13:32:04.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.505400", - "Timestamp": "2019-10-15T19:16:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.878400", + "Timestamp": "2024-05-16T13:32:02.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.505400", - "Timestamp": "2019-10-15T19:16:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.848400", + "Timestamp": "2024-05-16T13:32:02.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.505400", - "Timestamp": "2019-10-15T19:16:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.748400", + "Timestamp": "2024-05-16T13:32:02.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.585900", - "Timestamp": "2019-10-15T19:14:45.000Z" + "SpotPrice": "0.478500", + "Timestamp": "2024-05-16T13:32:01.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.585900", - "Timestamp": "2019-10-15T19:14:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473500", + "Timestamp": "2024-05-16T13:32:01.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.585900", - "Timestamp": "2019-10-15T19:14:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.348500", + "Timestamp": "2024-05-16T13:32:01.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.555900", - "Timestamp": "2019-10-15T19:14:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.342000", + "Timestamp": "2024-05-16T13:32:01.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.555900", - "Timestamp": "2019-10-15T19:14:45.000Z" + "SpotPrice": "0.337000", + "Timestamp": "2024-05-16T13:32:01.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.555900", - "Timestamp": "2019-10-15T19:14:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212000", + "Timestamp": "2024-05-16T13:32:01.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.455900", - "Timestamp": "2019-10-15T19:14:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.598200", + "Timestamp": "2024-05-16T13:32:00.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.455900", - "Timestamp": "2019-10-15T19:14:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.593200", + "Timestamp": "2024-05-16T13:32:00.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.455900", - "Timestamp": "2019-10-15T19:14:45.000Z" + "SpotPrice": "0.468200", + "Timestamp": "2024-05-16T13:32:00.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.133800", - "Timestamp": "2019-10-15T19:12:37.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.802100", + "Timestamp": "2024-05-16T13:32:00.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135100", - "Timestamp": "2019-10-15T19:12:37.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.937600", + "Timestamp": "2024-05-16T13:31:59.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m4.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.173800", - "Timestamp": "2019-10-15T19:12:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.627500", + "Timestamp": "2024-05-16T13:31:58.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175100", - "Timestamp": "2019-10-15T19:12:37.000Z" - }, - { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.073800", - "Timestamp": "2019-10-15T19:12:37.000Z" + "SpotPrice": "1.622500", + "Timestamp": "2024-05-16T13:31:58.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075100", - "Timestamp": "2019-10-15T19:12:37.000Z" + "SpotPrice": "1.497500", + "Timestamp": "2024-05-16T13:31:58.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.456600", - "Timestamp": "2019-10-15T19:12:33.000Z" + "SpotPrice": "2.880800", + "Timestamp": "2024-05-16T13:31:58.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.426600", - "Timestamp": "2019-10-15T19:12:33.000Z" + "SpotPrice": "2.875800", + "Timestamp": "2024-05-16T13:31:58.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.326600", - "Timestamp": "2019-10-15T19:12:33.000Z" + "SpotPrice": "2.750800", + "Timestamp": "2024-05-16T13:31:58.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.18xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.176300", - "Timestamp": "2019-10-15T19:12:30.000Z" + "SpotPrice": "1.195600", + "Timestamp": "2024-05-16T13:31:58.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.18xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.216300", - "Timestamp": "2019-10-15T19:12:30.000Z" + "SpotPrice": "1.165600", + "Timestamp": "2024-05-16T13:31:58.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.18xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.116300", - "Timestamp": "2019-10-15T19:12:30.000Z" + "SpotPrice": "1.065600", + "Timestamp": "2024-05-16T13:31:58.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132100", - "Timestamp": "2019-10-15T19:12:24.000Z" + "SpotPrice": "1.136600", + "Timestamp": "2024-05-16T13:31:57.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172100", - "Timestamp": "2019-10-15T19:12:24.000Z" + "SpotPrice": "1.131600", + "Timestamp": "2024-05-16T13:31:57.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072100", - "Timestamp": "2019-10-15T19:12:24.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.138900", - "Timestamp": "2019-10-15T19:04:43.000Z" + "SpotPrice": "1.006600", + "Timestamp": "2024-05-16T13:31:57.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.178900", - "Timestamp": "2019-10-15T19:04:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.674500", + "Timestamp": "2024-05-16T13:31:57.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.078900", - "Timestamp": "2019-10-15T19:04:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.529500", + "Timestamp": "2024-05-16T13:31:57.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g3s.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.307500", - "Timestamp": "2019-10-15T19:04:42.000Z" + "SpotPrice": "0.459400", + "Timestamp": "2024-05-16T13:31:57.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g3s.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.277500", - "Timestamp": "2019-10-15T19:04:42.000Z" + "SpotPrice": "0.455400", + "Timestamp": "2024-05-16T13:31:57.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g3s.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.177500", - "Timestamp": "2019-10-15T19:04:42.000Z" + "SpotPrice": "0.399400", + "Timestamp": "2024-05-16T13:31:57.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "d2.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.310400", - "Timestamp": "2019-10-15T19:04:35.000Z" + "SpotPrice": "1.978500", + "Timestamp": "2024-05-16T13:31:56.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "d2.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.280400", - "Timestamp": "2019-10-15T19:04:35.000Z" + "SpotPrice": "1.948500", + "Timestamp": "2024-05-16T13:31:56.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "d2.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.180400", - "Timestamp": "2019-10-15T19:04:35.000Z" + "SpotPrice": "1.848500", + "Timestamp": "2024-05-16T13:31:56.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4ad.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.407300", - "Timestamp": "2019-10-15T19:04:22.000Z" + "SpotPrice": "0.611100", + "Timestamp": "2024-05-16T13:31:54.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4ad.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.377300", - "Timestamp": "2019-10-15T19:04:22.000Z" + "SpotPrice": "0.606100", + "Timestamp": "2024-05-16T13:31:54.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4ad.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.277300", - "Timestamp": "2019-10-15T19:04:22.000Z" + "SpotPrice": "0.481100", + "Timestamp": "2024-05-16T13:31:54.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.139300", - "Timestamp": "2019-10-15T19:04:10.000Z" + "SpotPrice": "3.829400", + "Timestamp": "2024-05-16T13:31:54.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.139300", - "Timestamp": "2019-10-15T19:04:10.000Z" + "SpotPrice": "3.666000", + "Timestamp": "2024-05-16T13:31:54.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.139300", - "Timestamp": "2019-10-15T19:04:10.000Z" + "SpotPrice": "3.635400", + "Timestamp": "2024-05-16T13:31:53.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.597500", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095500", - "Timestamp": "2019-10-15T19:04:09.000Z" + "SpotPrice": "0.092400", + "Timestamp": "2024-05-16T13:31:52.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135500", - "Timestamp": "2019-10-15T19:04:09.000Z" + "SpotPrice": "0.088400", + "Timestamp": "2024-05-16T13:31:52.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035500", - "Timestamp": "2019-10-15T19:04:09.000Z" + "SpotPrice": "0.032400", + "Timestamp": "2024-05-16T13:31:52.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094300", - "Timestamp": "2019-10-15T19:00:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.501300", + "Timestamp": "2024-05-16T13:31:52.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094300", - "Timestamp": "2019-10-15T19:00:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.342000", + "Timestamp": "2024-05-16T13:31:52.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094300", - "Timestamp": "2019-10-15T19:00:46.000Z" + "SpotPrice": "1.568900", + "Timestamp": "2024-05-16T13:31:51.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-15T19:00:46.000Z" + "SpotPrice": "1.563900", + "Timestamp": "2024-05-16T13:31:51.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-15T19:00:46.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.438900", + "Timestamp": "2024-05-16T13:31:51.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.184000", + "Timestamp": "2024-05-16T13:31:50.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-15T19:00:46.000Z" + "SpotPrice": "1.179000", + "Timestamp": "2024-05-16T13:31:50.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034300", - "Timestamp": "2019-10-15T19:00:46.000Z" + "SpotPrice": "1.054000", + "Timestamp": "2024-05-16T13:31:50.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034300", - "Timestamp": "2019-10-15T19:00:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.187300", + "Timestamp": "2024-05-16T13:31:49.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183600", + "Timestamp": "2024-05-16T13:31:49.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "is4gen.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034300", - "Timestamp": "2019-10-15T19:00:46.000Z" + "SpotPrice": "0.127300", + "Timestamp": "2024-05-16T13:31:49.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.683900", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.741800", - "Timestamp": "2019-10-15T18:56:33.000Z" + "SpotPrice": "0.109100", + "Timestamp": "2024-05-16T13:31:45.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.711800", - "Timestamp": "2019-10-15T18:56:33.000Z" + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T13:31:45.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.611800", - "Timestamp": "2019-10-15T18:56:33.000Z" + "SpotPrice": "0.049100", + "Timestamp": "2024-05-16T13:31:45.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.141100", - "Timestamp": "2019-10-15T18:55:54.000Z" + "SpotPrice": "0.138500", + "Timestamp": "2024-05-16T13:31:45.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4g.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.181100", - "Timestamp": "2019-10-15T18:55:54.000Z" + "SpotPrice": "0.134800", + "Timestamp": "2024-05-16T13:31:45.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.081100", - "Timestamp": "2019-10-15T18:55:54.000Z" + "SpotPrice": "0.078500", + "Timestamp": "2024-05-16T13:31:45.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.038300", - "Timestamp": "2019-10-15T18:53:42.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.365000", + "Timestamp": "2024-05-16T13:31:44.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.038300", - "Timestamp": "2019-10-15T18:53:42.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.360000", + "Timestamp": "2024-05-16T13:31:44.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235000", + "Timestamp": "2024-05-16T13:31:44.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "im4gn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.867400", - "Timestamp": "2019-10-15T18:48:15.000Z" + "SpotPrice": "0.291900", + "Timestamp": "2024-05-16T13:31:44.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "im4gn.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.837400", - "Timestamp": "2019-10-15T18:48:15.000Z" + "SpotPrice": "0.286900", + "Timestamp": "2024-05-16T13:31:44.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "im4gn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.737400", - "Timestamp": "2019-10-15T18:48:15.000Z" + "SpotPrice": "0.161900", + "Timestamp": "2024-05-16T13:31:44.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.133700", - "Timestamp": "2019-10-15T18:47:33.000Z" + "SpotPrice": "0.700000", + "Timestamp": "2024-05-16T13:31:43.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.173700", - "Timestamp": "2019-10-15T18:47:33.000Z" + "SpotPrice": "0.695000", + "Timestamp": "2024-05-16T13:31:43.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.073700", - "Timestamp": "2019-10-15T18:47:33.000Z" + "SpotPrice": "0.570000", + "Timestamp": "2024-05-16T13:31:43.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.292100", - "Timestamp": "2019-10-15T18:47:30.000Z" + "SpotPrice": "1.077200", + "Timestamp": "2024-05-16T13:31:43.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.262100", - "Timestamp": "2019-10-15T18:47:30.000Z" + "SpotPrice": "1.072200", + "Timestamp": "2024-05-16T13:31:43.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.162100", - "Timestamp": "2019-10-15T18:47:30.000Z" + "SpotPrice": "0.947200", + "Timestamp": "2024-05-16T13:31:43.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.229900", - "Timestamp": "2019-10-15T18:43:04.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081700", + "Timestamp": "2024-05-16T13:31:42.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.229900", - "Timestamp": "2019-10-15T18:43:04.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078000", + "Timestamp": "2024-05-16T13:31:42.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.229900", - "Timestamp": "2019-10-15T18:43:04.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021700", + "Timestamp": "2024-05-16T13:31:42.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012600", - "Timestamp": "2019-10-15T18:42:17.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.323500", + "Timestamp": "2024-05-16T13:31:42.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012600", - "Timestamp": "2019-10-15T18:42:17.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.318500", + "Timestamp": "2024-05-16T13:31:42.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012600", - "Timestamp": "2019-10-15T18:42:17.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.193500", + "Timestamp": "2024-05-16T13:31:42.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5dn.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.036900", - "Timestamp": "2019-10-15T18:42:03.000Z" + "SpotPrice": "0.137800", + "Timestamp": "2024-05-16T13:31:42.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.036900", - "Timestamp": "2019-10-15T18:42:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133800", + "Timestamp": "2024-05-16T13:31:42.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.036900", - "Timestamp": "2019-10-15T18:42:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077800", + "Timestamp": "2024-05-16T13:31:42.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.006900", - "Timestamp": "2019-10-15T18:42:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.911600", + "Timestamp": "2024-05-16T13:31:42.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.006900", - "Timestamp": "2019-10-15T18:42:03.000Z" + "SpotPrice": "1.906600", + "Timestamp": "2024-05-16T13:31:42.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.006900", - "Timestamp": "2019-10-15T18:42:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.781600", + "Timestamp": "2024-05-16T13:31:42.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.906900", - "Timestamp": "2019-10-15T18:42:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.595500", + "Timestamp": "2024-05-16T13:31:42.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.906900", - "Timestamp": "2019-10-15T18:42:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.590500", + "Timestamp": "2024-05-16T13:31:42.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5dn.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.906900", - "Timestamp": "2019-10-15T18:42:03.000Z" + "SpotPrice": "0.465500", + "Timestamp": "2024-05-16T13:31:42.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.114900", - "Timestamp": "2019-10-15T18:42:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.650400", + "Timestamp": "2024-05-16T13:31:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.114900", - "Timestamp": "2019-10-15T18:42:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.645400", + "Timestamp": "2024-05-16T13:31:41.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.114900", - "Timestamp": "2019-10-15T18:42:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.520400", + "Timestamp": "2024-05-16T13:31:41.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.852800", - "Timestamp": "2019-10-15T18:42:02.000Z" + "SpotPrice": "1.750800", + "Timestamp": "2024-05-16T13:31:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.852800", - "Timestamp": "2019-10-15T18:42:02.000Z" + "SpotPrice": "1.755300", + "Timestamp": "2024-05-16T13:31:41.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.852800", - "Timestamp": "2019-10-15T18:42:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.995500", + "Timestamp": "2024-05-16T13:31:41.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.878800", - "Timestamp": "2019-10-15T18:41:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.990500", + "Timestamp": "2024-05-16T13:31:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.878800", - "Timestamp": "2019-10-15T18:41:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.865500", + "Timestamp": "2024-05-16T13:31:41.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.878800", - "Timestamp": "2019-10-15T18:41:48.000Z" + "SpotPrice": "0.108800", + "Timestamp": "2024-05-16T13:31:41.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.848800", - "Timestamp": "2019-10-15T18:41:48.000Z" + "SpotPrice": "0.105100", + "Timestamp": "2024-05-16T13:31:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.848800", - "Timestamp": "2019-10-15T18:41:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048800", + "Timestamp": "2024-05-16T13:31:41.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.848800", - "Timestamp": "2019-10-15T18:41:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.122100", + "Timestamp": "2024-05-16T13:31:41.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.748800", - "Timestamp": "2019-10-15T18:41:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.117100", + "Timestamp": "2024-05-16T13:31:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.748800", - "Timestamp": "2019-10-15T18:41:48.000Z" + "SpotPrice": "1.992100", + "Timestamp": "2024-05-16T13:31:41.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.748800", - "Timestamp": "2019-10-15T18:41:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.521500", + "Timestamp": "2024-05-16T13:31:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063400", - "Timestamp": "2019-10-15T18:41:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.491500", + "Timestamp": "2024-05-16T13:31:40.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063400", - "Timestamp": "2019-10-15T18:41:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.391500", + "Timestamp": "2024-05-16T13:31:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063400", - "Timestamp": "2019-10-15T18:41:39.000Z" + "SpotPrice": "0.157300", + "Timestamp": "2024-05-16T13:31:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.103400", - "Timestamp": "2019-10-15T18:41:39.000Z" + "SpotPrice": "0.153300", + "Timestamp": "2024-05-16T13:31:40.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.103400", - "Timestamp": "2019-10-15T18:41:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097300", + "Timestamp": "2024-05-16T13:31:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.103400", - "Timestamp": "2019-10-15T18:41:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.332100", + "Timestamp": "2024-05-16T13:31:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003400", - "Timestamp": "2019-10-15T18:41:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302100", + "Timestamp": "2024-05-16T13:31:40.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-2a", + "InstanceType": "gr6.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003400", - "Timestamp": "2019-10-15T18:41:39.000Z" + "SpotPrice": "0.202100", + "Timestamp": "2024-05-16T13:31:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003400", - "Timestamp": "2019-10-15T18:41:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.800400", + "Timestamp": "2024-05-16T13:31:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.926400", - "Timestamp": "2019-10-15T18:41:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.795400", + "Timestamp": "2024-05-16T13:31:40.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.926400", - "Timestamp": "2019-10-15T18:41:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.670400", + "Timestamp": "2024-05-16T13:31:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.926400", - "Timestamp": "2019-10-15T18:41:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T13:31:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.504400", - "Timestamp": "2019-10-15T18:41:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143500", + "Timestamp": "2024-05-16T13:31:40.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.504400", - "Timestamp": "2019-10-15T18:41:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043500", + "Timestamp": "2024-05-16T13:31:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "z1d.3xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.504400", - "Timestamp": "2019-10-15T18:41:39.000Z" + "SpotPrice": "1.702600", + "Timestamp": "2024-05-16T13:31:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "z1d.3xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.474400", - "Timestamp": "2019-10-15T18:41:39.000Z" + "SpotPrice": "1.697600", + "Timestamp": "2024-05-16T13:31:40.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.474400", - "Timestamp": "2019-10-15T18:41:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.572600", + "Timestamp": "2024-05-16T13:31:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.474400", - "Timestamp": "2019-10-15T18:41:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.024400", + "Timestamp": "2024-05-16T13:31:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.374400", - "Timestamp": "2019-10-15T18:41:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.994400", + "Timestamp": "2024-05-16T13:31:40.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "z1d.3xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.374400", - "Timestamp": "2019-10-15T18:41:39.000Z" + "SpotPrice": "0.894400", + "Timestamp": "2024-05-16T13:31:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.374400", - "Timestamp": "2019-10-15T18:41:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.239100", + "Timestamp": "2024-05-16T13:31:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.002000", - "Timestamp": "2019-10-15T18:41:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.234100", + "Timestamp": "2024-05-16T13:31:40.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.002000", - "Timestamp": "2019-10-15T18:41:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109100", + "Timestamp": "2024-05-16T13:31:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.002000", - "Timestamp": "2019-10-15T18:41:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.678200", + "Timestamp": "2024-05-16T13:31:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.580000", - "Timestamp": "2019-10-15T18:40:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.673200", + "Timestamp": "2024-05-16T13:31:40.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.580000", - "Timestamp": "2019-10-15T18:40:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.548200", + "Timestamp": "2024-05-16T13:31:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.580000", - "Timestamp": "2019-10-15T18:40:10.000Z" + "SpotPrice": "0.179900", + "Timestamp": "2024-05-16T13:31:39.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.550000", - "Timestamp": "2019-10-15T18:40:10.000Z" + "SpotPrice": "0.176200", + "Timestamp": "2024-05-16T13:31:39.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.550000", - "Timestamp": "2019-10-15T18:40:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119900", + "Timestamp": "2024-05-16T13:31:39.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.550000", - "Timestamp": "2019-10-15T18:40:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.393400", + "Timestamp": "2024-05-16T13:31:39.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.450000", - "Timestamp": "2019-10-15T18:40:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.288400", + "Timestamp": "2024-05-16T13:31:39.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.450000", - "Timestamp": "2019-10-15T18:40:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.283400", + "Timestamp": "2024-05-16T13:31:39.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.450000", - "Timestamp": "2019-10-15T18:40:10.000Z" + "SpotPrice": "0.158400", + "Timestamp": "2024-05-16T13:31:39.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.429200", - "Timestamp": "2019-10-15T18:39:48.000Z" + "SpotPrice": "1.939900", + "Timestamp": "2024-05-16T13:31:39.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.399200", - "Timestamp": "2019-10-15T18:39:48.000Z" + "SpotPrice": "1.934900", + "Timestamp": "2024-05-16T13:31:39.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.299200", - "Timestamp": "2019-10-15T18:39:48.000Z" + "SpotPrice": "1.809900", + "Timestamp": "2024-05-16T13:31:39.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.470800", - "Timestamp": "2019-10-15T18:39:40.000Z" + "SpotPrice": "1.036800", + "Timestamp": "2024-05-16T13:31:39.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.440800", - "Timestamp": "2019-10-15T18:39:40.000Z" + "SpotPrice": "1.006800", + "Timestamp": "2024-05-16T13:31:39.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.340800", - "Timestamp": "2019-10-15T18:39:40.000Z" + "SpotPrice": "0.906800", + "Timestamp": "2024-05-16T13:31:39.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.098500", - "Timestamp": "2019-10-15T18:39:40.000Z" + "SpotPrice": "2.983100", + "Timestamp": "2024-05-16T13:31:39.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.138500", - "Timestamp": "2019-10-15T18:39:40.000Z" + "SpotPrice": "2.978100", + "Timestamp": "2024-05-16T13:31:39.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.038500", - "Timestamp": "2019-10-15T18:39:40.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.861400", - "Timestamp": "2019-10-15T18:39:09.000Z" + "SpotPrice": "2.853100", + "Timestamp": "2024-05-16T13:31:39.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.861400", - "Timestamp": "2019-10-15T18:39:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.466600", + "Timestamp": "2024-05-16T13:31:39.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.861400", - "Timestamp": "2019-10-15T18:39:09.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.831400", - "Timestamp": "2019-10-15T18:39:09.000Z" - }, - { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.831400", - "Timestamp": "2019-10-15T18:39:09.000Z" + "SpotPrice": "0.352500", + "Timestamp": "2024-05-16T13:31:38.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.831400", - "Timestamp": "2019-10-15T18:39:09.000Z" + "SpotPrice": "0.347500", + "Timestamp": "2024-05-16T13:31:38.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.731400", - "Timestamp": "2019-10-15T18:39:09.000Z" + "SpotPrice": "0.222500", + "Timestamp": "2024-05-16T13:31:38.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.731400", - "Timestamp": "2019-10-15T18:39:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.362000", + "Timestamp": "2024-05-16T13:31:38.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.731400", - "Timestamp": "2019-10-15T18:39:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.357000", + "Timestamp": "2024-05-16T13:31:38.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.147400", - "Timestamp": "2019-10-15T18:39:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.232000", + "Timestamp": "2024-05-16T13:31:38.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.147400", - "Timestamp": "2019-10-15T18:39:09.000Z" + "SpotPrice": "1.774600", + "Timestamp": "2024-05-16T13:31:38.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.147400", - "Timestamp": "2019-10-15T18:39:09.000Z" + "SpotPrice": "0.438900", + "Timestamp": "2024-05-16T13:31:38.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061600", - "Timestamp": "2019-10-15T18:39:03.000Z" + "SpotPrice": "1.188800", + "Timestamp": "2024-05-16T13:31:38.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.101600", - "Timestamp": "2019-10-15T18:39:03.000Z" + "SpotPrice": "1.183800", + "Timestamp": "2024-05-16T13:31:38.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001600", - "Timestamp": "2019-10-15T18:39:03.000Z" - }, - { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.290200", - "Timestamp": "2019-10-15T18:39:03.000Z" + "SpotPrice": "1.058800", + "Timestamp": "2024-05-16T13:31:38.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.260200", - "Timestamp": "2019-10-15T18:39:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.385500", + "Timestamp": "2024-05-16T13:31:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.160200", - "Timestamp": "2019-10-15T18:39:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.873700", + "Timestamp": "2024-05-16T13:31:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.055300", - "Timestamp": "2019-10-15T18:31:07.000Z" + "SpotPrice": "4.451500", + "Timestamp": "2024-05-16T13:31:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.025300", - "Timestamp": "2019-10-15T18:31:07.000Z" + "SpotPrice": "4.446500", + "Timestamp": "2024-05-16T13:31:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.925300", - "Timestamp": "2019-10-15T18:31:07.000Z" + "SpotPrice": "4.321500", + "Timestamp": "2024-05-16T13:31:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.323500", - "Timestamp": "2019-10-15T18:30:51.000Z" + "SpotPrice": "2.586200", + "Timestamp": "2024-05-16T13:31:33.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.130000", - "Timestamp": "2019-10-15T18:22:27.000Z" + "SpotPrice": "0.121500", + "Timestamp": "2024-05-16T13:31:32.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t2.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.170000", - "Timestamp": "2019-10-15T18:22:27.000Z" + "SpotPrice": "0.161500", + "Timestamp": "2024-05-16T13:31:32.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t2.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.070000", - "Timestamp": "2019-10-15T18:22:27.000Z" + "SpotPrice": "0.061500", + "Timestamp": "2024-05-16T13:31:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "is4gen.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.281200", - "Timestamp": "2019-10-15T18:16:00.000Z" + "SpotPrice": "0.079700", + "Timestamp": "2024-05-16T13:31:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "is4gen.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.251200", - "Timestamp": "2019-10-15T18:16:00.000Z" + "SpotPrice": "0.050700", + "Timestamp": "2024-05-16T13:31:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "is4gen.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.151200", - "Timestamp": "2019-10-15T18:16:00.000Z" + "SpotPrice": "0.019700", + "Timestamp": "2024-05-16T13:31:32.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.490200", - "Timestamp": "2019-10-15T18:14:47.000Z" + "SpotPrice": "0.290400", + "Timestamp": "2024-05-16T13:31:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.460200", - "Timestamp": "2019-10-15T18:14:47.000Z" + "SpotPrice": "0.285400", + "Timestamp": "2024-05-16T13:31:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.360200", - "Timestamp": "2019-10-15T18:14:47.000Z" + "SpotPrice": "0.160400", + "Timestamp": "2024-05-16T13:31:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.721500", - "Timestamp": "2019-10-15T18:14:39.000Z" + "SpotPrice": "1.083500", + "Timestamp": "2024-05-16T13:31:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.691500", - "Timestamp": "2019-10-15T18:14:39.000Z" + "SpotPrice": "1.078500", + "Timestamp": "2024-05-16T13:31:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.591500", - "Timestamp": "2019-10-15T18:14:39.000Z" + "SpotPrice": "0.953500", + "Timestamp": "2024-05-16T13:31:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.053100", - "Timestamp": "2019-10-15T18:14:21.000Z" + "SpotPrice": "0.389200", + "Timestamp": "2024-05-16T13:31:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.023100", - "Timestamp": "2019-10-15T18:14:21.000Z" + "SpotPrice": "0.359200", + "Timestamp": "2024-05-16T13:31:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.923100", - "Timestamp": "2019-10-15T18:14:21.000Z" + "SpotPrice": "0.259200", + "Timestamp": "2024-05-16T13:31:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c4.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-15T18:14:21.000Z" + "SpotPrice": "0.134700", + "Timestamp": "2024-05-16T13:31:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c4.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172700", - "Timestamp": "2019-10-15T18:14:21.000Z" + "SpotPrice": "0.174700", + "Timestamp": "2024-05-16T13:31:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c4.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072700", - "Timestamp": "2019-10-15T18:14:21.000Z" + "SpotPrice": "0.074700", + "Timestamp": "2024-05-16T13:31:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.287300", - "Timestamp": "2019-10-15T18:06:37.000Z" + "SpotPrice": "1.948300", + "Timestamp": "2024-05-16T13:31:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.257300", - "Timestamp": "2019-10-15T18:06:37.000Z" + "SpotPrice": "1.918300", + "Timestamp": "2024-05-16T13:31:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.157300", - "Timestamp": "2019-10-15T18:06:37.000Z" + "SpotPrice": "1.818300", + "Timestamp": "2024-05-16T13:31:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.519200", - "Timestamp": "2019-10-15T18:06:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.084800", + "Timestamp": "2024-05-16T13:31:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.519200", - "Timestamp": "2019-10-15T18:06:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.079800", + "Timestamp": "2024-05-16T13:31:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.954800", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.519200", - "Timestamp": "2019-10-15T18:06:10.000Z" + "SpotPrice": "2.664000", + "Timestamp": "2024-05-16T13:31:28.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.954500", - "Timestamp": "2019-10-15T18:06:04.000Z" + "SpotPrice": "0.316100", + "Timestamp": "2024-05-16T13:31:27.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.954500", - "Timestamp": "2019-10-15T18:06:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.286100", + "Timestamp": "2024-05-16T13:31:27.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186100", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.954500", - "Timestamp": "2019-10-15T18:06:04.000Z" + "SpotPrice": "0.567300", + "Timestamp": "2024-05-16T13:31:25.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.924500", - "Timestamp": "2019-10-15T18:06:04.000Z" + "SpotPrice": "0.562300", + "Timestamp": "2024-05-16T13:31:25.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.924500", - "Timestamp": "2019-10-15T18:06:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.437300", + "Timestamp": "2024-05-16T13:31:25.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.715500", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.924500", - "Timestamp": "2019-10-15T18:06:04.000Z" + "SpotPrice": "4.710500", + "Timestamp": "2024-05-16T13:31:25.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.824500", - "Timestamp": "2019-10-15T18:06:04.000Z" + "SpotPrice": "4.585500", + "Timestamp": "2024-05-16T13:31:25.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.824500", - "Timestamp": "2019-10-15T18:06:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.420500", + "Timestamp": "2024-05-16T13:31:25.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.824500", - "Timestamp": "2019-10-15T18:06:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.956600", + "Timestamp": "2024-05-16T13:31:25.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "p2.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.409500", - "Timestamp": "2019-10-15T18:05:56.000Z" + "SpotPrice": "2.269600", + "Timestamp": "2024-05-16T13:31:24.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "p2.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.379500", - "Timestamp": "2019-10-15T18:05:56.000Z" + "SpotPrice": "2.239600", + "Timestamp": "2024-05-16T13:31:24.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "p2.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.279500", - "Timestamp": "2019-10-15T18:05:56.000Z" + "SpotPrice": "2.139600", + "Timestamp": "2024-05-16T13:31:24.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.032500", - "Timestamp": "2019-10-15T18:05:54.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.370000", + "Timestamp": "2024-05-16T13:31:24.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.032500", - "Timestamp": "2019-10-15T18:05:54.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.365000", + "Timestamp": "2024-05-16T13:31:24.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.032500", - "Timestamp": "2019-10-15T18:05:54.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.240000", + "Timestamp": "2024-05-16T13:31:24.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m1.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "p3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.079000", - "Timestamp": "2019-10-15T18:05:16.000Z" + "SpotPrice": "4.961000", + "Timestamp": "2024-05-16T13:31:22.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m1.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.079000", - "Timestamp": "2019-10-15T18:05:16.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.931000", + "Timestamp": "2024-05-16T13:31:22.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m1.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.079000", - "Timestamp": "2019-10-15T18:05:16.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.831000", + "Timestamp": "2024-05-16T13:31:22.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m1.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.119000", - "Timestamp": "2019-10-15T18:05:16.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.330000", + "Timestamp": "2024-05-16T13:17:39.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m1.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.119000", - "Timestamp": "2019-10-15T18:05:16.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.284200", + "Timestamp": "2024-05-16T13:17:39.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m1.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.234300", + "Timestamp": "2024-05-16T13:17:39.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.119000", - "Timestamp": "2019-10-15T18:05:16.000Z" + "SpotPrice": "1.229300", + "Timestamp": "2024-05-16T13:17:39.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m1.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.019000", - "Timestamp": "2019-10-15T18:05:16.000Z" + "SpotPrice": "1.104300", + "Timestamp": "2024-05-16T13:17:39.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m1.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.019000", - "Timestamp": "2019-10-15T18:05:16.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.998500", + "Timestamp": "2024-05-16T13:17:37.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m1.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.993500", + "Timestamp": "2024-05-16T13:17:37.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.019000", - "Timestamp": "2019-10-15T18:05:16.000Z" + "SpotPrice": "2.868500", + "Timestamp": "2024-05-16T13:17:37.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m1.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.128000", - "Timestamp": "2019-10-15T18:04:58.000Z" + "SpotPrice": "2.663400", + "Timestamp": "2024-05-16T13:17:37.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m1.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.metal", "ProductDescription": "Windows", - "SpotPrice": "0.128000", - "Timestamp": "2019-10-15T18:04:58.000Z" + "SpotPrice": "5.465800", + "Timestamp": "2024-05-16T13:17:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m1.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.metal", "ProductDescription": "Windows", - "SpotPrice": "0.128000", - "Timestamp": "2019-10-15T18:04:58.000Z" + "SpotPrice": "5.273500", + "Timestamp": "2024-05-16T13:17:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.995700", - "Timestamp": "2019-10-15T17:57:34.000Z" + "SpotPrice": "1.650500", + "Timestamp": "2024-05-16T13:17:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.965700", - "Timestamp": "2019-10-15T17:57:34.000Z" + "SpotPrice": "1.645500", + "Timestamp": "2024-05-16T13:17:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.865700", - "Timestamp": "2019-10-15T17:57:34.000Z" + "SpotPrice": "1.520500", + "Timestamp": "2024-05-16T13:17:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.995700", - "Timestamp": "2019-10-15T17:56:44.000Z" + "SpotPrice": "0.389400", + "Timestamp": "2024-05-16T13:17:35.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.965700", - "Timestamp": "2019-10-15T17:56:44.000Z" + "SpotPrice": "0.384400", + "Timestamp": "2024-05-16T13:17:35.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.865700", - "Timestamp": "2019-10-15T17:56:44.000Z" + "SpotPrice": "0.259400", + "Timestamp": "2024-05-16T13:17:35.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.260100", + "Timestamp": "2024-05-16T13:17:35.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431900", + "Timestamp": "2024-05-16T13:17:34.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.353600", - "Timestamp": "2019-10-15T17:49:59.000Z" + "SpotPrice": "0.456000", + "Timestamp": "2024-05-16T13:17:33.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.393600", - "Timestamp": "2019-10-15T17:49:59.000Z" + "SpotPrice": "0.451000", + "Timestamp": "2024-05-16T13:17:33.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.293600", - "Timestamp": "2019-10-15T17:49:59.000Z" + "SpotPrice": "0.326000", + "Timestamp": "2024-05-16T13:17:33.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "gr6.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.399900", - "Timestamp": "2019-10-15T17:43:51.000Z" + "SpotPrice": "0.928800", + "Timestamp": "2024-05-16T13:17:33.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.399900", - "Timestamp": "2019-10-15T17:43:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.410600", + "Timestamp": "2024-05-16T13:17:33.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.399900", - "Timestamp": "2019-10-15T17:43:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.405600", + "Timestamp": "2024-05-16T13:17:33.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.440600", - "Timestamp": "2019-10-15T17:42:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.280600", + "Timestamp": "2024-05-16T13:17:33.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.440600", - "Timestamp": "2019-10-15T17:42:46.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.953900", + "Timestamp": "2024-05-16T13:17:32.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.440600", - "Timestamp": "2019-10-15T17:42:46.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.948900", + "Timestamp": "2024-05-16T13:17:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.114900", - "Timestamp": "2019-10-15T17:42:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.823900", + "Timestamp": "2024-05-16T13:17:32.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.114900", - "Timestamp": "2019-10-15T17:42:28.000Z" + "SpotPrice": "5.115600", + "Timestamp": "2024-05-16T13:17:32.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.114900", - "Timestamp": "2019-10-15T17:42:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155800", + "Timestamp": "2024-05-16T13:17:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.240000", - "Timestamp": "2019-10-15T17:42:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.195800", + "Timestamp": "2024-05-16T13:17:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.240000", - "Timestamp": "2019-10-15T17:42:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094800", + "Timestamp": "2024-05-16T13:17:31.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.240000", - "Timestamp": "2019-10-15T17:42:28.000Z" + "SpotPrice": "1.387600", + "Timestamp": "2024-05-16T13:17:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.210000", - "Timestamp": "2019-10-15T17:42:28.000Z" + "SpotPrice": "1.382600", + "Timestamp": "2024-05-16T13:17:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.210000", - "Timestamp": "2019-10-15T17:42:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.257600", + "Timestamp": "2024-05-16T13:17:31.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.210000", - "Timestamp": "2019-10-15T17:42:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.489700", + "Timestamp": "2024-05-16T13:17:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.110000", - "Timestamp": "2019-10-15T17:42:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.484700", + "Timestamp": "2024-05-16T13:17:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.110000", - "Timestamp": "2019-10-15T17:42:28.000Z" + "SpotPrice": "2.359700", + "Timestamp": "2024-05-16T13:17:31.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.110000", - "Timestamp": "2019-10-15T17:42:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.759200", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.154600", - "Timestamp": "2019-10-15T17:42:19.000Z" + "SpotPrice": "1.127600", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.154600", - "Timestamp": "2019-10-15T17:42:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.122600", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.154600", - "Timestamp": "2019-10-15T17:42:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.997600", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.124600", - "Timestamp": "2019-10-15T17:42:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.743200", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.124600", - "Timestamp": "2019-10-15T17:42:19.000Z" + "SpotPrice": "0.738200", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.124600", - "Timestamp": "2019-10-15T17:42:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.613200", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.024600", - "Timestamp": "2019-10-15T17:42:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.653000", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.024600", - "Timestamp": "2019-10-15T17:42:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.648000", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.024600", - "Timestamp": "2019-10-15T17:42:19.000Z" + "SpotPrice": "0.523000", + "Timestamp": "2024-05-16T13:17:30.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.519200", - "Timestamp": "2019-10-15T17:42:13.000Z" + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T13:17:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.519200", - "Timestamp": "2019-10-15T17:42:13.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.620300", + "Timestamp": "2024-05-16T13:17:28.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.519200", - "Timestamp": "2019-10-15T17:42:13.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.615300", + "Timestamp": "2024-05-16T13:17:28.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.390000", - "Timestamp": "2019-10-15T17:42:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.490300", + "Timestamp": "2024-05-16T13:17:28.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.390000", - "Timestamp": "2019-10-15T17:42:04.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.439300", + "Timestamp": "2024-05-16T13:17:28.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.390000", - "Timestamp": "2019-10-15T17:42:04.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.434300", + "Timestamp": "2024-05-16T13:17:28.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.281200", - "Timestamp": "2019-10-15T17:41:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.309300", + "Timestamp": "2024-05-16T13:17:28.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.281200", - "Timestamp": "2019-10-15T17:41:57.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.032800", + "Timestamp": "2024-05-16T13:17:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.251200", - "Timestamp": "2019-10-15T17:41:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.394200", + "Timestamp": "2024-05-16T13:17:27.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.251200", - "Timestamp": "2019-10-15T17:41:57.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.151200", - "Timestamp": "2019-10-15T17:41:57.000Z" + "SpotPrice": "0.389200", + "Timestamp": "2024-05-16T13:17:27.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.151200", - "Timestamp": "2019-10-15T17:41:57.000Z" + "SpotPrice": "0.264200", + "Timestamp": "2024-05-16T13:17:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4ad.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.036900", - "Timestamp": "2019-10-15T17:41:41.000Z" + "SpotPrice": "0.365300", + "Timestamp": "2024-05-16T13:17:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4ad.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.006900", - "Timestamp": "2019-10-15T17:41:41.000Z" + "SpotPrice": "0.360300", + "Timestamp": "2024-05-16T13:17:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4ad.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.906900", - "Timestamp": "2019-10-15T17:41:41.000Z" + "SpotPrice": "0.235300", + "Timestamp": "2024-05-16T13:17:27.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T13:17:27.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.059500", + "Timestamp": "2024-05-16T13:17:27.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.454200", - "Timestamp": "2019-10-15T17:41:34.000Z" + "SpotPrice": "0.242300", + "Timestamp": "2024-05-16T13:17:24.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.424200", - "Timestamp": "2019-10-15T17:41:34.000Z" + "SpotPrice": "0.237300", + "Timestamp": "2024-05-16T13:17:24.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.324200", - "Timestamp": "2019-10-15T17:41:34.000Z" + "SpotPrice": "0.112300", + "Timestamp": "2024-05-16T13:17:24.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.128100", - "Timestamp": "2019-10-15T17:41:14.000Z" + "SpotPrice": "2.253200", + "Timestamp": "2024-05-16T13:17:22.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.286400", - "Timestamp": "2019-10-15T17:41:07.000Z" + "SpotPrice": "1.409000", + "Timestamp": "2024-05-16T13:17:21.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.256400", - "Timestamp": "2019-10-15T17:41:07.000Z" + "SpotPrice": "1.404000", + "Timestamp": "2024-05-16T13:17:21.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.156400", - "Timestamp": "2019-10-15T17:41:07.000Z" + "SpotPrice": "1.279000", + "Timestamp": "2024-05-16T13:17:21.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.008400", - "Timestamp": "2019-10-15T17:39:51.000Z" + "SpotPrice": "0.953700", + "Timestamp": "2024-05-16T13:17:21.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.008400", - "Timestamp": "2019-10-15T17:39:51.000Z" + "SpotPrice": "10.852100", + "Timestamp": "2024-05-16T13:17:20.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.008400", - "Timestamp": "2019-10-15T17:39:51.000Z" + "SpotPrice": "7.224000", + "Timestamp": "2024-05-16T13:17:20.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063800", - "Timestamp": "2019-10-15T17:39:29.000Z" + "SpotPrice": "1.084300", + "Timestamp": "2024-05-16T13:17:20.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t2.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063800", - "Timestamp": "2019-10-15T17:39:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.079300", + "Timestamp": "2024-05-16T13:17:20.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.954300", + "Timestamp": "2024-05-16T13:17:20.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063800", - "Timestamp": "2019-10-15T17:39:29.000Z" + "SpotPrice": "0.130200", + "Timestamp": "2024-05-16T13:17:19.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.013800", - "Timestamp": "2019-10-15T17:39:29.000Z" + "SpotPrice": "0.126500", + "Timestamp": "2024-05-16T13:17:19.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t2.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.013800", - "Timestamp": "2019-10-15T17:39:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070200", + "Timestamp": "2024-05-16T13:17:19.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.663500", + "Timestamp": "2024-05-16T13:17:19.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.013800", - "Timestamp": "2019-10-15T17:39:29.000Z" + "SpotPrice": "0.658500", + "Timestamp": "2024-05-16T13:17:19.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003800", - "Timestamp": "2019-10-15T17:39:29.000Z" + "SpotPrice": "0.533500", + "Timestamp": "2024-05-16T13:17:19.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t2.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003800", - "Timestamp": "2019-10-15T17:39:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.586300", + "Timestamp": "2024-05-16T13:17:18.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t2.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003800", - "Timestamp": "2019-10-15T17:39:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.581300", + "Timestamp": "2024-05-16T13:17:18.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5dn.large", - "ProductDescription": "Windows", - "SpotPrice": "0.128100", - "Timestamp": "2019-10-15T17:37:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.456300", + "Timestamp": "2024-05-16T13:17:18.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.438400", - "Timestamp": "2019-10-15T17:32:17.000Z" + "SpotPrice": "3.868500", + "Timestamp": "2024-05-16T13:17:17.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.408400", - "Timestamp": "2019-10-15T17:32:17.000Z" + "SpotPrice": "3.863500", + "Timestamp": "2024-05-16T13:17:17.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.308400", - "Timestamp": "2019-10-15T17:32:17.000Z" + "SpotPrice": "3.738500", + "Timestamp": "2024-05-16T13:17:17.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.128100", - "Timestamp": "2019-10-15T17:24:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.412900", + "Timestamp": "2024-05-16T13:17:17.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.512300", - "Timestamp": "2019-10-15T17:22:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.382900", + "Timestamp": "2024-05-16T13:17:17.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.548700", - "Timestamp": "2019-10-15T17:22:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.282900", + "Timestamp": "2024-05-16T13:17:17.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.548700", - "Timestamp": "2019-10-15T17:22:09.000Z" + "SpotPrice": "2.756700", + "Timestamp": "2024-05-16T13:17:16.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.548700", - "Timestamp": "2019-10-15T17:22:09.000Z" + "SpotPrice": "4.976000", + "Timestamp": "2024-05-16T13:17:15.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.707100", - "Timestamp": "2019-10-15T17:21:57.000Z" + "SpotPrice": "1.407500", + "Timestamp": "2024-05-16T13:17:14.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.707100", - "Timestamp": "2019-10-15T17:21:57.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.402500", + "Timestamp": "2024-05-16T13:17:14.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.277500", + "Timestamp": "2024-05-16T13:17:14.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.707100", - "Timestamp": "2019-10-15T17:21:57.000Z" + "SpotPrice": "2.306700", + "Timestamp": "2024-05-16T13:17:13.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.677100", - "Timestamp": "2019-10-15T17:21:57.000Z" + "SpotPrice": "2.301700", + "Timestamp": "2024-05-16T13:17:13.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.677100", - "Timestamp": "2019-10-15T17:21:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.176700", + "Timestamp": "2024-05-16T13:17:13.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.039500", + "Timestamp": "2024-05-16T13:17:13.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.677100", - "Timestamp": "2019-10-15T17:21:57.000Z" + "SpotPrice": "2.034500", + "Timestamp": "2024-05-16T13:17:13.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.577100", - "Timestamp": "2019-10-15T17:21:57.000Z" + "SpotPrice": "1.909500", + "Timestamp": "2024-05-16T13:17:13.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.577100", - "Timestamp": "2019-10-15T17:21:57.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.363900", + "Timestamp": "2024-05-16T13:17:10.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.358900", + "Timestamp": "2024-05-16T13:17:10.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.577100", - "Timestamp": "2019-10-15T17:21:57.000Z" + "SpotPrice": "0.233900", + "Timestamp": "2024-05-16T13:17:10.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.049100", - "Timestamp": "2019-10-15T17:21:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.440700", + "Timestamp": "2024-05-16T13:17:10.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.049100", - "Timestamp": "2019-10-15T17:21:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.435700", + "Timestamp": "2024-05-16T13:17:10.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.049100", - "Timestamp": "2019-10-15T17:21:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.310700", + "Timestamp": "2024-05-16T13:17:10.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.366700", - "Timestamp": "2019-10-15T17:21:05.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.694600", + "Timestamp": "2024-05-16T13:17:08.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.366700", - "Timestamp": "2019-10-15T17:21:05.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.744200", + "Timestamp": "2024-05-16T13:17:07.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.366700", - "Timestamp": "2019-10-15T17:21:05.000Z" + "SpotPrice": "1.330800", + "Timestamp": "2024-05-16T13:17:05.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.336700", - "Timestamp": "2019-10-15T17:21:05.000Z" + "SpotPrice": "1.325800", + "Timestamp": "2024-05-16T13:17:05.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.336700", - "Timestamp": "2019-10-15T17:21:05.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.200800", + "Timestamp": "2024-05-16T13:17:05.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.514700", + "Timestamp": "2024-05-16T13:17:04.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.336700", - "Timestamp": "2019-10-15T17:21:05.000Z" + "SpotPrice": "0.509700", + "Timestamp": "2024-05-16T13:17:04.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.236700", - "Timestamp": "2019-10-15T17:21:05.000Z" + "SpotPrice": "0.384700", + "Timestamp": "2024-05-16T13:17:04.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.236700", - "Timestamp": "2019-10-15T17:21:05.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.796400", + "Timestamp": "2024-05-16T13:17:02.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.236700", - "Timestamp": "2019-10-15T17:21:05.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.777700", + "Timestamp": "2024-05-16T13:17:02.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.099200", - "Timestamp": "2019-10-15T17:16:57.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.772700", + "Timestamp": "2024-05-16T13:17:02.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.099200", - "Timestamp": "2019-10-15T17:16:57.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.647700", + "Timestamp": "2024-05-16T13:17:02.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c3.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.099200", - "Timestamp": "2019-10-15T17:16:57.000Z" + "SpotPrice": "0.843800", + "Timestamp": "2024-05-16T13:17:01.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.487100", - "Timestamp": "2019-10-15T17:16:42.000Z" + "SpotPrice": "0.185000", + "Timestamp": "2024-05-16T13:17:00.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.457100", - "Timestamp": "2019-10-15T17:16:42.000Z" + "SpotPrice": "0.181300", + "Timestamp": "2024-05-16T13:17:00.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.357100", - "Timestamp": "2019-10-15T17:16:42.000Z" - }, - { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Windows", - "SpotPrice": "20.853500", - "Timestamp": "2019-10-15T17:15:54.000Z" + "SpotPrice": "0.125000", + "Timestamp": "2024-05-16T13:17:00.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.453100", - "Timestamp": "2019-10-15T17:15:36.000Z" + "SpotPrice": "0.947900", + "Timestamp": "2024-05-16T13:16:59.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.423100", - "Timestamp": "2019-10-15T17:15:36.000Z" + "SpotPrice": "0.917900", + "Timestamp": "2024-05-16T13:16:59.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.323100", - "Timestamp": "2019-10-15T17:15:36.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091200", - "Timestamp": "2019-10-15T17:15:17.000Z" + "SpotPrice": "0.817900", + "Timestamp": "2024-05-16T13:16:59.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091200", - "Timestamp": "2019-10-15T17:15:17.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Windows", + "SpotPrice": "8.586300", + "Timestamp": "2024-05-16T13:16:59.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c3.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091200", - "Timestamp": "2019-10-15T17:15:17.000Z" + "SpotPrice": "1.623700", + "Timestamp": "2024-05-16T13:16:59.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c3.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.131200", - "Timestamp": "2019-10-15T17:15:17.000Z" + "SpotPrice": "1.618700", + "Timestamp": "2024-05-16T13:16:59.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.131200", - "Timestamp": "2019-10-15T17:15:17.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.493700", + "Timestamp": "2024-05-16T13:16:59.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.131200", - "Timestamp": "2019-10-15T17:15:17.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.979800", + "Timestamp": "2024-05-16T13:16:58.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031200", - "Timestamp": "2019-10-15T17:15:17.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.088400", + "Timestamp": "2024-05-16T13:16:57.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031200", - "Timestamp": "2019-10-15T17:15:17.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.083400", + "Timestamp": "2024-05-16T13:16:57.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c3.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031200", - "Timestamp": "2019-10-15T17:15:17.000Z" + "SpotPrice": "1.958400", + "Timestamp": "2024-05-16T13:16:57.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.153300", - "Timestamp": "2019-10-15T17:14:19.000Z" + "SpotPrice": "5.245900", + "Timestamp": "2024-05-16T13:16:56.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.153300", - "Timestamp": "2019-10-15T17:14:19.000Z" + "SpotPrice": "4.133100", + "Timestamp": "2024-05-16T13:16:56.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.153300", - "Timestamp": "2019-10-15T17:14:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.035900", + "Timestamp": "2024-05-16T13:16:56.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.076600", - "Timestamp": "2019-10-15T17:14:15.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.030900", + "Timestamp": "2024-05-16T13:16:56.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.076600", - "Timestamp": "2019-10-15T17:14:15.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.905900", + "Timestamp": "2024-05-16T13:16:56.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.076600", - "Timestamp": "2019-10-15T17:14:15.000Z" + "SpotPrice": "0.451800", + "Timestamp": "2024-05-16T13:16:55.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.008000", - "Timestamp": "2019-10-15T17:13:39.000Z" + "SpotPrice": "0.931000", + "Timestamp": "2024-05-16T13:16:55.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.008000", - "Timestamp": "2019-10-15T17:13:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.073100", + "Timestamp": "2024-05-16T13:16:54.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.008000", - "Timestamp": "2019-10-15T17:13:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.068100", + "Timestamp": "2024-05-16T13:16:54.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.734600", - "Timestamp": "2019-10-15T17:13:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.943100", + "Timestamp": "2024-05-16T13:16:54.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "p3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.734600", - "Timestamp": "2019-10-15T17:13:38.000Z" + "SpotPrice": "4.932000", + "Timestamp": "2024-05-16T13:16:52.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.734600", - "Timestamp": "2019-10-15T17:13:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.902000", + "Timestamp": "2024-05-16T13:16:52.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.704600", - "Timestamp": "2019-10-15T17:13:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.802000", + "Timestamp": "2024-05-16T13:16:52.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.704600", - "Timestamp": "2019-10-15T17:13:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.698900", + "Timestamp": "2024-05-16T13:16:51.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.704600", - "Timestamp": "2019-10-15T17:13:38.000Z" + "SpotPrice": "1.693900", + "Timestamp": "2024-05-16T13:16:51.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.604600", - "Timestamp": "2019-10-15T17:13:38.000Z" + "SpotPrice": "1.568900", + "Timestamp": "2024-05-16T13:16:51.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.604600", - "Timestamp": "2019-10-15T17:13:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.191500", + "Timestamp": "2024-05-16T13:16:51.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.604600", - "Timestamp": "2019-10-15T17:13:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.047200", + "Timestamp": "2024-05-16T13:16:49.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.308800", - "Timestamp": "2019-10-15T17:13:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.042200", + "Timestamp": "2024-05-16T13:16:49.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.308800", - "Timestamp": "2019-10-15T17:13:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.917200", + "Timestamp": "2024-05-16T13:16:49.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.308800", - "Timestamp": "2019-10-15T17:13:31.000Z" + "SpotPrice": "5.132500", + "Timestamp": "2024-05-16T13:16:48.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.128100", - "Timestamp": "2019-10-15T17:13:30.000Z" + "SpotPrice": "0.918600", + "Timestamp": "2024-05-16T13:16:47.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.128100", - "Timestamp": "2019-10-15T17:13:30.000Z" + "SpotPrice": "0.906800", + "Timestamp": "2024-05-16T13:16:47.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.128100", - "Timestamp": "2019-10-15T17:13:30.000Z" + "SpotPrice": "3.563000", + "Timestamp": "2024-05-16T13:16:47.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.183000", - "Timestamp": "2019-10-15T17:13:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.054100", + "Timestamp": "2024-05-16T13:16:47.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.183000", - "Timestamp": "2019-10-15T17:13:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.049100", + "Timestamp": "2024-05-16T13:16:47.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.924100", + "Timestamp": "2024-05-16T13:16:47.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.183000", - "Timestamp": "2019-10-15T17:13:10.000Z" + "SpotPrice": "1.666800", + "Timestamp": "2024-05-16T13:16:47.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.339300", - "Timestamp": "2019-10-15T17:12:47.000Z" + "SpotPrice": "0.092500", + "Timestamp": "2024-05-16T13:16:46.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.339300", - "Timestamp": "2019-10-15T17:12:47.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088500", + "Timestamp": "2024-05-16T13:16:46.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.339300", - "Timestamp": "2019-10-15T17:12:47.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032500", + "Timestamp": "2024-05-16T13:16:46.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.309300", - "Timestamp": "2019-10-15T17:12:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.944600", + "Timestamp": "2024-05-16T13:16:45.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.309300", - "Timestamp": "2019-10-15T17:12:47.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.754500", + "Timestamp": "2024-05-16T13:16:45.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.309300", - "Timestamp": "2019-10-15T17:12:47.000Z" + "SpotPrice": "0.749500", + "Timestamp": "2024-05-16T13:16:45.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.209300", - "Timestamp": "2019-10-15T17:12:47.000Z" + "SpotPrice": "0.624500", + "Timestamp": "2024-05-16T13:16:45.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.209300", - "Timestamp": "2019-10-15T17:12:47.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.718700", + "Timestamp": "2024-05-16T13:16:44.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.713700", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.209300", - "Timestamp": "2019-10-15T17:12:47.000Z" + "SpotPrice": "0.588700", + "Timestamp": "2024-05-16T13:16:44.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.930000", - "Timestamp": "2019-10-15T17:12:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.334400", + "Timestamp": "2024-05-16T13:16:43.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.930000", - "Timestamp": "2019-10-15T17:12:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.765700", + "Timestamp": "2024-05-16T13:16:42.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.930000", - "Timestamp": "2019-10-15T17:12:39.000Z" + "SpotPrice": "0.523900", + "Timestamp": "2024-05-16T13:16:42.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.900000", - "Timestamp": "2019-10-15T17:12:39.000Z" + "SpotPrice": "0.518900", + "Timestamp": "2024-05-16T13:16:42.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.900000", - "Timestamp": "2019-10-15T17:12:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.393900", + "Timestamp": "2024-05-16T13:16:42.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.900000", - "Timestamp": "2019-10-15T17:12:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.495500", + "Timestamp": "2024-05-16T13:16:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.800000", - "Timestamp": "2019-10-15T17:12:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.233800", + "Timestamp": "2024-05-16T13:16:40.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.800000", - "Timestamp": "2019-10-15T17:12:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.263600", + "Timestamp": "2024-05-16T13:16:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.233600", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.800000", - "Timestamp": "2019-10-15T17:12:39.000Z" + "SpotPrice": "3.133600", + "Timestamp": "2024-05-16T13:16:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m4.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.278600", - "Timestamp": "2019-10-15T17:12:31.000Z" + "SpotPrice": "0.842100", + "Timestamp": "2024-05-16T13:16:38.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.278600", - "Timestamp": "2019-10-15T17:12:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123600", + "Timestamp": "2024-05-16T13:16:38.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.278600", - "Timestamp": "2019-10-15T17:12:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119900", + "Timestamp": "2024-05-16T13:16:38.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120500", - "Timestamp": "2019-10-15T17:12:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063600", + "Timestamp": "2024-05-16T13:16:38.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120500", - "Timestamp": "2019-10-15T17:12:06.000Z" + "SpotPrice": "0.246200", + "Timestamp": "2024-05-16T13:16:38.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.241200", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116200", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120500", - "Timestamp": "2019-10-15T17:12:06.000Z" + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T13:16:38.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.160500", - "Timestamp": "2019-10-15T17:12:06.000Z" + "SpotPrice": "0.099800", + "Timestamp": "2024-05-16T13:16:38.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.160500", - "Timestamp": "2019-10-15T17:12:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043800", + "Timestamp": "2024-05-16T13:16:38.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123700", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.160500", - "Timestamp": "2019-10-15T17:12:06.000Z" + "SpotPrice": "0.120000", + "Timestamp": "2024-05-16T13:16:37.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060500", - "Timestamp": "2019-10-15T17:12:06.000Z" + "SpotPrice": "0.063700", + "Timestamp": "2024-05-16T13:16:37.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060500", - "Timestamp": "2019-10-15T17:12:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094700", + "Timestamp": "2024-05-16T13:16:37.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060500", - "Timestamp": "2019-10-15T17:12:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091000", + "Timestamp": "2024-05-16T13:16:37.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.101500", - "Timestamp": "2019-10-15T17:12:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034700", + "Timestamp": "2024-05-16T13:16:37.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.metal-48xl", "ProductDescription": "Windows", - "SpotPrice": "0.101500", - "Timestamp": "2019-10-15T17:12:01.000Z" + "SpotPrice": "13.467500", + "Timestamp": "2024-05-16T13:16:37.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.metal", "ProductDescription": "Windows", - "SpotPrice": "0.101500", - "Timestamp": "2019-10-15T17:12:01.000Z" + "SpotPrice": "5.444300", + "Timestamp": "2024-05-16T13:16:37.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.251000", - "Timestamp": "2019-10-15T17:11:41.000Z" + "SpotPrice": "2.602000", + "Timestamp": "2024-05-16T13:16:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.251000", - "Timestamp": "2019-10-15T17:11:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.597000", + "Timestamp": "2024-05-16T13:16:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.472000", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.18xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.251000", - "Timestamp": "2019-10-15T17:11:41.000Z" + "SpotPrice": "1.311900", + "Timestamp": "2024-05-16T13:16:36.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.18xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.221000", - "Timestamp": "2019-10-15T17:11:41.000Z" + "SpotPrice": "1.281900", + "Timestamp": "2024-05-16T13:16:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.221000", - "Timestamp": "2019-10-15T17:11:41.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.181900", + "Timestamp": "2024-05-16T13:16:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.251400", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089700", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089000", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.221000", - "Timestamp": "2019-10-15T17:11:41.000Z" + "SpotPrice": "0.086000", + "Timestamp": "2024-05-16T13:16:35.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.121000", - "Timestamp": "2019-10-15T17:11:41.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085300", + "Timestamp": "2024-05-16T13:16:35.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.121000", - "Timestamp": "2019-10-15T17:11:41.000Z" + "SpotPrice": "0.029700", + "Timestamp": "2024-05-16T13:16:35.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.121000", - "Timestamp": "2019-10-15T17:11:41.000Z" + "SpotPrice": "0.029000", + "Timestamp": "2024-05-16T13:16:35.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.025200", - "Timestamp": "2019-10-15T17:11:32.000Z" + "SpotPrice": "0.831900", + "Timestamp": "2024-05-16T13:16:35.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m4.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.025200", - "Timestamp": "2019-10-15T17:11:32.000Z" + "SpotPrice": "0.216500", + "Timestamp": "2024-05-16T13:16:35.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3.small", - "ProductDescription": "Windows", - "SpotPrice": "0.025200", - "Timestamp": "2019-10-15T17:11:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174900", + "Timestamp": "2024-05-16T13:16:34.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.184800", - "Timestamp": "2019-10-15T17:11:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170900", + "Timestamp": "2024-05-16T13:16:34.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.184800", - "Timestamp": "2019-10-15T17:11:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114900", + "Timestamp": "2024-05-16T13:16:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.184800", - "Timestamp": "2019-10-15T17:11:03.000Z" + "SpotPrice": "0.301200", + "Timestamp": "2024-05-16T13:16:34.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.224800", - "Timestamp": "2019-10-15T17:11:03.000Z" + "SpotPrice": "0.296200", + "Timestamp": "2024-05-16T13:16:34.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "z1d.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.224800", - "Timestamp": "2019-10-15T17:11:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171200", + "Timestamp": "2024-05-16T13:16:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "z1d.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.224800", - "Timestamp": "2019-10-15T17:11:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.284800", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.124800", - "Timestamp": "2019-10-15T17:11:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.279800", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.124800", - "Timestamp": "2019-10-15T17:11:03.000Z" + "SpotPrice": "1.154800", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.124800", - "Timestamp": "2019-10-15T17:11:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.258700", + "Timestamp": "2024-05-16T13:16:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066800", - "Timestamp": "2019-10-15T17:09:54.000Z" + "SpotPrice": "1.454300", + "Timestamp": "2024-05-16T13:16:32.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066800", - "Timestamp": "2019-10-15T17:09:54.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.449300", + "Timestamp": "2024-05-16T13:16:32.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066800", - "Timestamp": "2019-10-15T17:09:54.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.324300", + "Timestamp": "2024-05-16T13:16:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.106800", - "Timestamp": "2019-10-15T17:09:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.759500", + "Timestamp": "2024-05-16T13:16:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.106800", - "Timestamp": "2019-10-15T17:09:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135300", + "Timestamp": "2024-05-16T13:16:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.106800", - "Timestamp": "2019-10-15T17:09:54.000Z" + "SpotPrice": "0.131300", + "Timestamp": "2024-05-16T13:16:30.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006800", - "Timestamp": "2019-10-15T17:09:54.000Z" + "SpotPrice": "0.075300", + "Timestamp": "2024-05-16T13:16:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006800", - "Timestamp": "2019-10-15T17:09:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169300", + "Timestamp": "2024-05-16T13:16:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006800", - "Timestamp": "2019-10-15T17:09:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165300", + "Timestamp": "2024-05-16T13:16:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096100", - "Timestamp": "2019-10-15T17:08:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-16T13:16:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096100", - "Timestamp": "2019-10-15T17:08:40.000Z" + "SpotPrice": "0.084100", + "Timestamp": "2024-05-16T13:16:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136100", - "Timestamp": "2019-10-15T17:08:40.000Z" - }, - { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gn.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136100", - "Timestamp": "2019-10-15T17:08:40.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036100", - "Timestamp": "2019-10-15T17:08:40.000Z" + "SpotPrice": "0.080400", + "Timestamp": "2024-05-16T13:16:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gn.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036100", - "Timestamp": "2019-10-15T17:08:40.000Z" + "SpotPrice": "0.024100", + "Timestamp": "2024-05-16T13:16:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.229900", - "Timestamp": "2019-10-15T17:08:13.000Z" + "SpotPrice": "2.467400", + "Timestamp": "2024-05-16T13:16:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.012400", - "Timestamp": "2019-10-15T17:07:20.000Z" + "SpotPrice": "1.950400", + "Timestamp": "2024-05-16T13:16:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.982400", - "Timestamp": "2019-10-15T17:07:20.000Z" + "SpotPrice": "1.920400", + "Timestamp": "2024-05-16T13:16:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.882400", - "Timestamp": "2019-10-15T17:07:20.000Z" + "SpotPrice": "1.820400", + "Timestamp": "2024-05-16T13:16:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.797300", - "Timestamp": "2019-10-15T17:07:12.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.562700", + "Timestamp": "2024-05-16T13:16:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.797300", - "Timestamp": "2019-10-15T17:07:12.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.557700", + "Timestamp": "2024-05-16T13:16:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.797300", - "Timestamp": "2019-10-15T17:07:12.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.432700", + "Timestamp": "2024-05-16T13:16:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.379300", - "Timestamp": "2019-10-15T17:06:11.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.628500", + "Timestamp": "2024-05-16T13:16:28.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.379300", - "Timestamp": "2019-10-15T17:06:11.000Z" + "SpotPrice": "0.238900", + "Timestamp": "2024-05-16T13:16:27.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.379300", - "Timestamp": "2019-10-15T17:06:11.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.233900", + "Timestamp": "2024-05-16T13:16:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.349300", - "Timestamp": "2019-10-15T17:06:11.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108900", + "Timestamp": "2024-05-16T13:16:27.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c3.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.349300", - "Timestamp": "2019-10-15T17:06:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087500", + "Timestamp": "2024-05-16T13:16:27.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.349300", - "Timestamp": "2019-10-15T17:06:11.000Z" + "SpotPrice": "0.083800", + "Timestamp": "2024-05-16T13:16:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.249300", - "Timestamp": "2019-10-15T17:06:11.000Z" + "SpotPrice": "0.027500", + "Timestamp": "2024-05-16T13:16:27.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.249300", - "Timestamp": "2019-10-15T17:06:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110400", + "Timestamp": "2024-05-16T13:16:27.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.249300", - "Timestamp": "2019-10-15T17:06:11.000Z" + "SpotPrice": "0.050400", + "Timestamp": "2024-05-16T13:16:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.512300", - "Timestamp": "2019-10-15T17:04:34.000Z" + "SpotPrice": "0.482600", + "Timestamp": "2024-05-16T13:16:27.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "p2.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.512300", - "Timestamp": "2019-10-15T17:04:34.000Z" + "SpotPrice": "3.533900", + "Timestamp": "2024-05-16T13:16:25.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.512300", - "Timestamp": "2019-10-15T17:04:34.000Z" + "SpotPrice": "3.981900", + "Timestamp": "2024-05-16T13:16:23.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.245100", - "Timestamp": "2019-10-15T17:04:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087200", + "Timestamp": "2024-05-16T13:02:54.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.245100", - "Timestamp": "2019-10-15T17:04:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083500", + "Timestamp": "2024-05-16T13:02:54.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.245100", - "Timestamp": "2019-10-15T17:04:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027200", + "Timestamp": "2024-05-16T13:02:54.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.227900", - "Timestamp": "2019-10-15T17:03:54.000Z" + "SpotPrice": "5.991700", + "Timestamp": "2024-05-16T13:02:35.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.227900", - "Timestamp": "2019-10-15T17:03:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.986700", + "Timestamp": "2024-05-16T13:02:35.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.861700", + "Timestamp": "2024-05-16T13:02:35.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.227900", - "Timestamp": "2019-10-15T17:03:54.000Z" + "SpotPrice": "1.535300", + "Timestamp": "2024-05-16T13:02:35.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.197900", - "Timestamp": "2019-10-15T17:03:54.000Z" + "SpotPrice": "1.530300", + "Timestamp": "2024-05-16T13:02:35.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.197900", - "Timestamp": "2019-10-15T17:03:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.405300", + "Timestamp": "2024-05-16T13:02:35.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.453300", + "Timestamp": "2024-05-16T13:02:35.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.568300", + "Timestamp": "2024-05-16T13:02:34.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf2.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.197900", - "Timestamp": "2019-10-15T17:03:54.000Z" + "SpotPrice": "1.538300", + "Timestamp": "2024-05-16T13:02:34.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf2.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.097900", - "Timestamp": "2019-10-15T17:03:54.000Z" + "SpotPrice": "1.438300", + "Timestamp": "2024-05-16T13:02:34.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.097900", - "Timestamp": "2019-10-15T17:03:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070400", + "Timestamp": "2024-05-16T13:02:33.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041400", + "Timestamp": "2024-05-16T13:02:33.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.097900", - "Timestamp": "2019-10-15T17:03:54.000Z" + "SpotPrice": "0.010400", + "Timestamp": "2024-05-16T13:02:33.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129800", - "Timestamp": "2019-10-15T16:56:08.000Z" + "SpotPrice": "1.039600", + "Timestamp": "2024-05-16T13:02:26.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r3.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.169800", - "Timestamp": "2019-10-15T16:56:08.000Z" + "SpotPrice": "1.009600", + "Timestamp": "2024-05-16T13:02:26.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r3.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069800", - "Timestamp": "2019-10-15T16:56:08.000Z" + "SpotPrice": "0.905600", + "Timestamp": "2024-05-16T13:02:26.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r4.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.426200", - "Timestamp": "2019-10-15T16:50:23.000Z" + "SpotPrice": "0.810600", + "Timestamp": "2024-05-16T13:02:25.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r4.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.396200", - "Timestamp": "2019-10-15T16:50:23.000Z" + "SpotPrice": "0.780600", + "Timestamp": "2024-05-16T13:02:25.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r4.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.296200", - "Timestamp": "2019-10-15T16:50:23.000Z" + "SpotPrice": "0.680600", + "Timestamp": "2024-05-16T13:02:25.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.128100", - "Timestamp": "2019-10-15T16:48:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090400", + "Timestamp": "2024-05-16T13:02:25.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5dn.large", - "ProductDescription": "Windows", - "SpotPrice": "0.128100", - "Timestamp": "2019-10-15T16:46:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086700", + "Timestamp": "2024-05-16T13:02:25.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c1.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.074800", - "Timestamp": "2019-10-15T16:43:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030400", + "Timestamp": "2024-05-16T13:02:25.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c1.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.074800", - "Timestamp": "2019-10-15T16:43:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.025300", + "Timestamp": "2024-05-16T13:02:22.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c1.medium", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.074800", - "Timestamp": "2019-10-15T16:43:10.000Z" + "SpotPrice": "1.207500", + "Timestamp": "2024-05-16T13:02:22.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c1.medium", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.114800", - "Timestamp": "2019-10-15T16:43:10.000Z" + "SpotPrice": "1.177500", + "Timestamp": "2024-05-16T13:02:22.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c1.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.114800", - "Timestamp": "2019-10-15T16:43:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.077500", + "Timestamp": "2024-05-16T13:02:22.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c1.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.114800", - "Timestamp": "2019-10-15T16:43:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.484000", + "Timestamp": "2024-05-16T13:02:22.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c1.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.014800", - "Timestamp": "2019-10-15T16:43:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.479000", + "Timestamp": "2024-05-16T13:02:22.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c1.medium", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.014800", - "Timestamp": "2019-10-15T16:43:10.000Z" + "SpotPrice": "0.354000", + "Timestamp": "2024-05-16T13:02:22.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c1.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.014800", - "Timestamp": "2019-10-15T16:43:10.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c1.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.076800", - "Timestamp": "2019-10-15T16:43:10.000Z" - }, - { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c1.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.076800", - "Timestamp": "2019-10-15T16:43:10.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.906300", + "Timestamp": "2024-05-16T13:02:21.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c1.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.076800", - "Timestamp": "2019-10-15T16:43:10.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.901300", + "Timestamp": "2024-05-16T13:02:21.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.625300", - "Timestamp": "2019-10-15T16:41:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.776300", + "Timestamp": "2024-05-16T13:02:21.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.625300", - "Timestamp": "2019-10-15T16:41:54.000Z" + "SpotPrice": "0.452400", + "Timestamp": "2024-05-16T13:02:21.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.large", "ProductDescription": "Windows", - "SpotPrice": "5.625300", - "Timestamp": "2019-10-15T16:41:54.000Z" + "SpotPrice": "0.116000", + "Timestamp": "2024-05-16T13:02:17.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.339300", - "Timestamp": "2019-10-15T16:41:53.000Z" + "SpotPrice": "1.211800", + "Timestamp": "2024-05-16T13:02:17.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.339300", - "Timestamp": "2019-10-15T16:41:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.206800", + "Timestamp": "2024-05-16T13:02:17.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.339300", - "Timestamp": "2019-10-15T16:41:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.081800", + "Timestamp": "2024-05-16T13:02:17.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.309300", - "Timestamp": "2019-10-15T16:41:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219300", + "Timestamp": "2024-05-16T13:02:17.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.309300", - "Timestamp": "2019-10-15T16:41:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.642000", + "Timestamp": "2024-05-16T13:02:15.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.309300", - "Timestamp": "2019-10-15T16:41:53.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.209300", - "Timestamp": "2019-10-15T16:41:53.000Z" + "SpotPrice": "0.637000", + "Timestamp": "2024-05-16T13:02:15.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.209300", - "Timestamp": "2019-10-15T16:41:53.000Z" + "SpotPrice": "0.512000", + "Timestamp": "2024-05-16T13:02:15.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.209300", - "Timestamp": "2019-10-15T16:41:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.394000", + "Timestamp": "2024-05-16T13:02:15.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.024600", - "Timestamp": "2019-10-15T16:41:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.389000", + "Timestamp": "2024-05-16T13:02:15.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.024600", - "Timestamp": "2019-10-15T16:41:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.264000", + "Timestamp": "2024-05-16T13:02:15.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5dn.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.024600", - "Timestamp": "2019-10-15T16:41:53.000Z" + "SpotPrice": "3.634900", + "Timestamp": "2024-05-16T13:02:14.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5dn.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.418600", - "Timestamp": "2019-10-15T16:41:53.000Z" + "SpotPrice": "0.372200", + "Timestamp": "2024-05-16T13:02:13.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.418600", - "Timestamp": "2019-10-15T16:41:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.367200", + "Timestamp": "2024-05-16T13:02:13.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.418600", - "Timestamp": "2019-10-15T16:41:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242200", + "Timestamp": "2024-05-16T13:02:13.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.388600", - "Timestamp": "2019-10-15T16:41:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.772900", + "Timestamp": "2024-05-16T13:02:13.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.388600", - "Timestamp": "2019-10-15T16:41:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.356400", + "Timestamp": "2024-05-16T13:02:11.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5dn.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.388600", - "Timestamp": "2019-10-15T16:41:53.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.288600", - "Timestamp": "2019-10-15T16:41:53.000Z" + "SpotPrice": "1.351400", + "Timestamp": "2024-05-16T13:02:11.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5dn.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.288600", - "Timestamp": "2019-10-15T16:41:53.000Z" + "SpotPrice": "1.226400", + "Timestamp": "2024-05-16T13:02:11.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.288600", - "Timestamp": "2019-10-15T16:41:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.961800", + "Timestamp": "2024-05-16T13:02:11.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.049100", - "Timestamp": "2019-10-15T16:41:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.956800", + "Timestamp": "2024-05-16T13:02:11.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.049100", - "Timestamp": "2019-10-15T16:41:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.831800", + "Timestamp": "2024-05-16T13:02:11.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.049100", - "Timestamp": "2019-10-15T16:41:52.000Z" + "SpotPrice": "1.981100", + "Timestamp": "2024-05-16T13:02:10.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.707100", - "Timestamp": "2019-10-15T16:41:52.000Z" - }, - { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.707100", - "Timestamp": "2019-10-15T16:41:52.000Z" - }, - { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c4.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.707100", - "Timestamp": "2019-10-15T16:41:52.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.677100", - "Timestamp": "2019-10-15T16:41:52.000Z" - }, - { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.677100", - "Timestamp": "2019-10-15T16:41:52.000Z" + "SpotPrice": "0.414000", + "Timestamp": "2024-05-16T13:02:10.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c4.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.677100", - "Timestamp": "2019-10-15T16:41:52.000Z" + "SpotPrice": "0.384000", + "Timestamp": "2024-05-16T13:02:10.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c4.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.577100", - "Timestamp": "2019-10-15T16:41:52.000Z" + "SpotPrice": "0.284000", + "Timestamp": "2024-05-16T13:02:10.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.577100", - "Timestamp": "2019-10-15T16:41:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.842000", + "Timestamp": "2024-05-16T13:02:10.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.577100", - "Timestamp": "2019-10-15T16:41:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.387300", + "Timestamp": "2024-05-16T13:02:09.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.122600", - "Timestamp": "2019-10-15T16:40:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.382300", + "Timestamp": "2024-05-16T13:02:09.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.122600", - "Timestamp": "2019-10-15T16:40:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.257300", + "Timestamp": "2024-05-16T13:02:09.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.122600", - "Timestamp": "2019-10-15T16:40:07.000Z" + "SpotPrice": "3.709400", + "Timestamp": "2024-05-16T13:02:08.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.256100", - "Timestamp": "2019-10-15T16:40:03.000Z" + "SpotPrice": "1.786600", + "Timestamp": "2024-05-16T13:02:08.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.256100", - "Timestamp": "2019-10-15T16:40:03.000Z" + "SpotPrice": "0.470700", + "Timestamp": "2024-05-16T13:02:06.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.256100", - "Timestamp": "2019-10-15T16:40:03.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.109000", - "Timestamp": "2019-10-15T16:39:53.000Z" - }, - { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.109000", - "Timestamp": "2019-10-15T16:39:53.000Z" + "SpotPrice": "0.429400", + "Timestamp": "2024-05-16T13:02:05.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.109000", - "Timestamp": "2019-10-15T16:39:53.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.149000", - "Timestamp": "2019-10-15T16:39:53.000Z" + "SpotPrice": "0.335700", + "Timestamp": "2024-05-16T13:02:03.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.149000", - "Timestamp": "2019-10-15T16:39:53.000Z" + "SpotPrice": "0.330700", + "Timestamp": "2024-05-16T13:02:03.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3a.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.149000", - "Timestamp": "2019-10-15T16:39:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.205700", + "Timestamp": "2024-05-16T13:02:03.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.049000", - "Timestamp": "2019-10-15T16:39:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.762500", + "Timestamp": "2024-05-16T13:02:01.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.049000", - "Timestamp": "2019-10-15T16:39:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.732500", + "Timestamp": "2024-05-16T13:02:01.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.049000", - "Timestamp": "2019-10-15T16:39:53.000Z" + "SpotPrice": "0.632500", + "Timestamp": "2024-05-16T13:02:01.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "trn1.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132100", - "Timestamp": "2019-10-15T16:39:41.000Z" + "SpotPrice": "0.424000", + "Timestamp": "2024-05-16T13:02:01.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132100", - "Timestamp": "2019-10-15T16:39:41.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "trn1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.394000", + "Timestamp": "2024-05-16T13:02:01.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132100", - "Timestamp": "2019-10-15T16:39:41.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "trn1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.294000", + "Timestamp": "2024-05-16T13:02:01.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172100", - "Timestamp": "2019-10-15T16:39:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092500", + "Timestamp": "2024-05-16T13:02:00.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172100", - "Timestamp": "2019-10-15T16:39:41.000Z" + "SpotPrice": "0.088800", + "Timestamp": "2024-05-16T13:02:00.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172100", - "Timestamp": "2019-10-15T16:39:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032500", + "Timestamp": "2024-05-16T13:02:00.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072100", - "Timestamp": "2019-10-15T16:39:41.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.144900", + "Timestamp": "2024-05-16T13:01:58.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072100", - "Timestamp": "2019-10-15T16:39:41.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.139900", + "Timestamp": "2024-05-16T13:01:58.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072100", - "Timestamp": "2019-10-15T16:39:41.000Z" + "SpotPrice": "1.014900", + "Timestamp": "2024-05-16T13:01:58.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.995700", - "Timestamp": "2019-10-15T16:38:41.000Z" + "SpotPrice": "1.738600", + "Timestamp": "2024-05-16T13:01:58.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.965700", - "Timestamp": "2019-10-15T16:38:41.000Z" + "SpotPrice": "1.733600", + "Timestamp": "2024-05-16T13:01:58.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.865700", - "Timestamp": "2019-10-15T16:38:41.000Z" + "SpotPrice": "1.608600", + "Timestamp": "2024-05-16T13:01:58.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.277400", - "Timestamp": "2019-10-15T16:17:23.000Z" + "SpotPrice": "3.298400", + "Timestamp": "2024-05-16T13:01:58.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.247400", - "Timestamp": "2019-10-15T16:17:23.000Z" + "SpotPrice": "3.293400", + "Timestamp": "2024-05-16T13:01:58.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.147400", - "Timestamp": "2019-10-15T16:17:23.000Z" + "SpotPrice": "3.168400", + "Timestamp": "2024-05-16T13:01:58.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122400", - "Timestamp": "2019-10-15T16:08:40.000Z" + "SpotPrice": "1.123400", + "Timestamp": "2024-05-16T13:01:57.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.162400", - "Timestamp": "2019-10-15T16:08:40.000Z" + "SpotPrice": "1.093400", + "Timestamp": "2024-05-16T13:01:57.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062400", - "Timestamp": "2019-10-15T16:08:40.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.432300", - "Timestamp": "2019-10-15T16:05:16.000Z" + "SpotPrice": "0.993400", + "Timestamp": "2024-05-16T13:01:57.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.432300", - "Timestamp": "2019-10-15T16:05:16.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.553400", + "Timestamp": "2024-05-16T13:01:57.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.432300", - "Timestamp": "2019-10-15T16:05:16.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.609500", + "Timestamp": "2024-05-16T13:01:56.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.402300", - "Timestamp": "2019-10-15T16:05:16.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.926000", + "Timestamp": "2024-05-16T13:01:55.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.402300", - "Timestamp": "2019-10-15T16:05:16.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.625100", + "Timestamp": "2024-05-16T13:01:55.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5dn.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.402300", - "Timestamp": "2019-10-15T16:05:16.000Z" + "SpotPrice": "2.620100", + "Timestamp": "2024-05-16T13:01:55.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5dn.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.302300", - "Timestamp": "2019-10-15T16:05:16.000Z" + "SpotPrice": "2.495100", + "Timestamp": "2024-05-16T13:01:55.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.302300", - "Timestamp": "2019-10-15T16:05:16.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.702800", + "Timestamp": "2024-05-16T13:01:54.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.302300", - "Timestamp": "2019-10-15T16:05:16.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.575000", + "Timestamp": "2024-05-16T13:01:54.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.795600", - "Timestamp": "2019-10-15T16:03:35.000Z" + "SpotPrice": "2.786200", + "Timestamp": "2024-05-16T13:01:53.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.795600", - "Timestamp": "2019-10-15T16:03:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.781200", + "Timestamp": "2024-05-16T13:01:53.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.795600", - "Timestamp": "2019-10-15T16:03:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.656200", + "Timestamp": "2024-05-16T13:01:53.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p2.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "4.765600", - "Timestamp": "2019-10-15T16:03:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.675700", + "Timestamp": "2024-05-16T13:01:53.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p2.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "4.765600", - "Timestamp": "2019-10-15T16:03:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.243400", + "Timestamp": "2024-05-16T13:01:52.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.872100", + "Timestamp": "2024-05-16T13:01:49.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "4.765600", - "Timestamp": "2019-10-15T16:03:35.000Z" + "SpotPrice": "0.867100", + "Timestamp": "2024-05-16T13:01:49.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.665600", - "Timestamp": "2019-10-15T16:03:35.000Z" + "SpotPrice": "0.742100", + "Timestamp": "2024-05-16T13:01:49.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.665600", - "Timestamp": "2019-10-15T16:03:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.103700", + "Timestamp": "2024-05-16T13:01:48.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.665600", - "Timestamp": "2019-10-15T16:03:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.098700", + "Timestamp": "2024-05-16T13:01:48.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "7.609600", - "Timestamp": "2019-10-15T16:03:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.973700", + "Timestamp": "2024-05-16T13:01:48.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "7.609600", - "Timestamp": "2019-10-15T16:03:07.000Z" + "SpotPrice": "0.857500", + "Timestamp": "2024-05-16T13:01:47.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "7.609600", - "Timestamp": "2019-10-15T16:03:07.000Z" + "SpotPrice": "0.464000", + "Timestamp": "2024-05-16T13:01:47.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.298800", - "Timestamp": "2019-10-15T15:58:51.000Z" + "SpotPrice": "1.224400", + "Timestamp": "2024-05-16T13:01:46.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.338800", - "Timestamp": "2019-10-15T15:58:51.000Z" + "SpotPrice": "1.194400", + "Timestamp": "2024-05-16T13:01:46.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.238800", - "Timestamp": "2019-10-15T15:58:51.000Z" + "SpotPrice": "1.094400", + "Timestamp": "2024-05-16T13:01:46.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5dn.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096100", - "Timestamp": "2019-10-15T15:56:03.000Z" + "SpotPrice": "1.718200", + "Timestamp": "2024-05-16T13:01:46.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5dn.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136100", - "Timestamp": "2019-10-15T15:56:03.000Z" + "SpotPrice": "1.688200", + "Timestamp": "2024-05-16T13:01:46.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5dn.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036100", - "Timestamp": "2019-10-15T15:56:03.000Z" + "SpotPrice": "1.588200", + "Timestamp": "2024-05-16T13:01:46.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5dn.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132100", - "Timestamp": "2019-10-15T15:55:38.000Z" + "SpotPrice": "0.609800", + "Timestamp": "2024-05-16T13:01:46.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5dn.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172100", - "Timestamp": "2019-10-15T15:55:38.000Z" + "SpotPrice": "0.604800", + "Timestamp": "2024-05-16T13:01:46.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5dn.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072100", - "Timestamp": "2019-10-15T15:55:38.000Z" + "SpotPrice": "0.479800", + "Timestamp": "2024-05-16T13:01:46.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.995700", - "Timestamp": "2019-10-15T15:52:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.451100", + "Timestamp": "2024-05-16T13:01:43.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.965700", - "Timestamp": "2019-10-15T15:52:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229000", + "Timestamp": "2024-05-16T13:01:43.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.865700", - "Timestamp": "2019-10-15T15:52:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.774400", + "Timestamp": "2024-05-16T13:01:42.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.large", "ProductDescription": "Windows", - "SpotPrice": "0.054800", - "Timestamp": "2019-10-15T15:44:26.000Z" + "SpotPrice": "0.133700", + "Timestamp": "2024-05-16T13:01:42.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.054800", - "Timestamp": "2019-10-15T15:44:26.000Z" + "SpotPrice": "5.381000", + "Timestamp": "2024-05-16T13:01:42.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.054800", - "Timestamp": "2019-10-15T15:44:26.000Z" + "SpotPrice": "3.069600", + "Timestamp": "2024-05-16T13:01:42.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.117000", + "Timestamp": "2024-05-16T13:01:41.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.130300", - "Timestamp": "2019-10-15T15:43:53.000Z" + "SpotPrice": "0.622500", + "Timestamp": "2024-05-16T13:01:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.170300", - "Timestamp": "2019-10-15T15:43:53.000Z" + "SpotPrice": "0.617500", + "Timestamp": "2024-05-16T13:01:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.070300", - "Timestamp": "2019-10-15T15:43:53.000Z" + "SpotPrice": "0.492500", + "Timestamp": "2024-05-16T13:01:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.274300", - "Timestamp": "2019-10-15T15:43:19.000Z" + "SpotPrice": "4.040800", + "Timestamp": "2024-05-16T13:01:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.244300", - "Timestamp": "2019-10-15T15:43:19.000Z" + "SpotPrice": "4.035800", + "Timestamp": "2024-05-16T13:01:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.144300", - "Timestamp": "2019-10-15T15:43:19.000Z" + "SpotPrice": "3.910800", + "Timestamp": "2024-05-16T13:01:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.298700", - "Timestamp": "2019-10-15T15:43:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.456100", + "Timestamp": "2024-05-16T13:01:40.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.298700", - "Timestamp": "2019-10-15T15:43:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.941700", + "Timestamp": "2024-05-16T13:01:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.298700", - "Timestamp": "2019-10-15T15:43:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.414600", + "Timestamp": "2024-05-16T13:01:39.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.268700", - "Timestamp": "2019-10-15T15:43:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.319700", + "Timestamp": "2024-05-16T13:01:39.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.268700", - "Timestamp": "2019-10-15T15:43:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.339800", + "Timestamp": "2024-05-16T13:01:39.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.268700", - "Timestamp": "2019-10-15T15:43:03.000Z" + "SpotPrice": "0.334800", + "Timestamp": "2024-05-16T13:01:39.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.168700", - "Timestamp": "2019-10-15T15:43:03.000Z" + "SpotPrice": "0.209800", + "Timestamp": "2024-05-16T13:01:39.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.168700", - "Timestamp": "2019-10-15T15:43:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.342700", + "Timestamp": "2024-05-16T13:01:38.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.168700", - "Timestamp": "2019-10-15T15:43:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.337700", + "Timestamp": "2024-05-16T13:01:38.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.536700", - "Timestamp": "2019-10-15T15:42:55.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212700", + "Timestamp": "2024-05-16T13:01:38.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.536700", - "Timestamp": "2019-10-15T15:42:55.000Z" + "SpotPrice": "7.232100", + "Timestamp": "2024-05-16T13:01:38.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.536700", - "Timestamp": "2019-10-15T15:42:55.000Z" + "SpotPrice": "3.530200", + "Timestamp": "2024-05-16T13:01:38.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "a1.medium", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.068900", - "Timestamp": "2019-10-15T15:42:45.000Z" + "SpotPrice": "0.101000", + "Timestamp": "2024-05-16T13:01:38.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "a1.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.068900", - "Timestamp": "2019-10-15T15:42:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097000", + "Timestamp": "2024-05-16T13:01:38.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "a1.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.108900", - "Timestamp": "2019-10-15T15:42:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041000", + "Timestamp": "2024-05-16T13:01:38.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "a1.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.108900", - "Timestamp": "2019-10-15T15:42:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116000", + "Timestamp": "2024-05-16T13:01:37.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "a1.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.008900", - "Timestamp": "2019-10-15T15:42:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-16T13:01:37.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "a1.medium", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.008900", - "Timestamp": "2019-10-15T15:42:45.000Z" + "SpotPrice": "0.056000", + "Timestamp": "2024-05-16T13:01:37.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096100", - "Timestamp": "2019-10-15T15:42:36.000Z" + "SpotPrice": "0.347000", + "Timestamp": "2024-05-16T13:01:37.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136100", - "Timestamp": "2019-10-15T15:42:36.000Z" + "SpotPrice": "0.342000", + "Timestamp": "2024-05-16T13:01:37.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036100", - "Timestamp": "2019-10-15T15:42:36.000Z" + "SpotPrice": "0.217000", + "Timestamp": "2024-05-16T13:01:37.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.532600", - "Timestamp": "2019-10-15T15:42:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235100", + "Timestamp": "2024-05-16T13:01:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g4dn.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.532600", - "Timestamp": "2019-10-15T15:42:26.000Z" + "SpotPrice": "3.222800", + "Timestamp": "2024-05-16T13:01:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.532600", - "Timestamp": "2019-10-15T15:42:26.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.217800", + "Timestamp": "2024-05-16T13:01:36.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.502600", - "Timestamp": "2019-10-15T15:42:26.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.092800", + "Timestamp": "2024-05-16T13:01:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.502600", - "Timestamp": "2019-10-15T15:42:26.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.491500", + "Timestamp": "2024-05-16T13:01:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.502600", - "Timestamp": "2019-10-15T15:42:26.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.373700", + "Timestamp": "2024-05-16T13:01:35.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.402600", - "Timestamp": "2019-10-15T15:42:26.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.368700", + "Timestamp": "2024-05-16T13:01:35.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g4dn.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.402600", - "Timestamp": "2019-10-15T15:42:26.000Z" + "SpotPrice": "0.243700", + "Timestamp": "2024-05-16T13:01:35.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.402600", - "Timestamp": "2019-10-15T15:42:26.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294500", + "Timestamp": "2024-05-16T13:01:35.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.274400", - "Timestamp": "2019-10-15T15:41:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289500", + "Timestamp": "2024-05-16T13:01:35.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.274400", - "Timestamp": "2019-10-15T15:41:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164500", + "Timestamp": "2024-05-16T13:01:35.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.274400", - "Timestamp": "2019-10-15T15:41:54.000Z" + "SpotPrice": "3.566900", + "Timestamp": "2024-05-16T13:01:35.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.748400", - "Timestamp": "2019-10-15T15:41:54.000Z" + "SpotPrice": "0.111500", + "Timestamp": "2024-05-16T13:01:35.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.718400", - "Timestamp": "2019-10-15T15:41:54.000Z" + "SpotPrice": "0.107800", + "Timestamp": "2024-05-16T13:01:35.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.618400", - "Timestamp": "2019-10-15T15:41:54.000Z" + "SpotPrice": "0.051500", + "Timestamp": "2024-05-16T13:01:35.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.138600", - "Timestamp": "2019-10-15T15:41:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.562500", + "Timestamp": "2024-05-16T13:01:34.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.138600", - "Timestamp": "2019-10-15T15:41:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.557500", + "Timestamp": "2024-05-16T13:01:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g4dn.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.432500", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.138600", - "Timestamp": "2019-10-15T15:41:39.000Z" + "SpotPrice": "0.243600", + "Timestamp": "2024-05-16T13:01:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.407500", - "Timestamp": "2019-10-15T15:41:38.000Z" + "SpotPrice": "1.733500", + "Timestamp": "2024-05-16T13:01:32.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.377500", - "Timestamp": "2019-10-15T15:41:38.000Z" + "SpotPrice": "1.728500", + "Timestamp": "2024-05-16T13:01:32.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.277500", - "Timestamp": "2019-10-15T15:41:38.000Z" + "SpotPrice": "1.603500", + "Timestamp": "2024-05-16T13:01:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.736200", - "Timestamp": "2019-10-15T15:41:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.843500", + "Timestamp": "2024-05-16T13:01:32.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.736200", - "Timestamp": "2019-10-15T15:41:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.838500", + "Timestamp": "2024-05-16T13:01:32.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.736200", - "Timestamp": "2019-10-15T15:41:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.713500", + "Timestamp": "2024-05-16T13:01:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087200", - "Timestamp": "2019-10-15T15:41:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.037300", + "Timestamp": "2024-05-16T13:01:32.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087200", - "Timestamp": "2019-10-15T15:41:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218500", + "Timestamp": "2024-05-16T13:01:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.127200", - "Timestamp": "2019-10-15T15:41:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174800", + "Timestamp": "2024-05-16T13:01:31.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.127200", - "Timestamp": "2019-10-15T15:41:30.000Z" + "SpotPrice": "0.171100", + "Timestamp": "2024-05-16T13:01:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027200", - "Timestamp": "2019-10-15T15:41:30.000Z" + "SpotPrice": "0.114800", + "Timestamp": "2024-05-16T13:01:31.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027200", - "Timestamp": "2019-10-15T15:41:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.572800", + "Timestamp": "2024-05-16T13:01:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.570300", - "Timestamp": "2019-10-15T15:40:05.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.567800", + "Timestamp": "2024-05-16T13:01:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.570300", - "Timestamp": "2019-10-15T15:40:05.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.442800", + "Timestamp": "2024-05-16T13:01:31.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.570300", - "Timestamp": "2019-10-15T15:40:05.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.284300", - "Timestamp": "2019-10-15T15:39:57.000Z" + "SpotPrice": "5.672500", + "Timestamp": "2024-05-16T13:01:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", + "AvailabilityZone": "us-east-2b", "InstanceType": "m5.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.284300", - "Timestamp": "2019-10-15T15:39:57.000Z" + "SpotPrice": "2.207200", + "Timestamp": "2024-05-16T13:01:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", + "AvailabilityZone": "us-east-2a", "InstanceType": "m5.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.284300", - "Timestamp": "2019-10-15T15:39:57.000Z" + "SpotPrice": "2.108400", + "Timestamp": "2024-05-16T13:01:30.000Z" }, { - "AvailabilityZone": "eu-west-1a", + "AvailabilityZone": "us-east-2b", "InstanceType": "m5.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.254300", - "Timestamp": "2019-10-15T15:39:57.000Z" + "SpotPrice": "2.177200", + "Timestamp": "2024-05-16T13:01:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", + "AvailabilityZone": "us-east-2a", "InstanceType": "m5.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.254300", - "Timestamp": "2019-10-15T15:39:57.000Z" + "SpotPrice": "2.078400", + "Timestamp": "2024-05-16T13:01:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", + "AvailabilityZone": "us-east-2b", "InstanceType": "m5.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.254300", - "Timestamp": "2019-10-15T15:39:57.000Z" + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.077200", + "Timestamp": "2024-05-16T13:01:30.000Z" }, { - "AvailabilityZone": "eu-west-1a", + "AvailabilityZone": "us-east-2a", "InstanceType": "m5.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.154300", - "Timestamp": "2019-10-15T15:39:57.000Z" + "SpotPrice": "1.978400", + "Timestamp": "2024-05-16T13:01:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.154300", - "Timestamp": "2019-10-15T15:39:57.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.802400", + "Timestamp": "2024-05-16T13:01:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.154300", - "Timestamp": "2019-10-15T15:39:57.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.797400", + "Timestamp": "2024-05-16T13:01:30.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.316400", - "Timestamp": "2019-10-15T15:38:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.672400", + "Timestamp": "2024-05-16T13:01:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.316400", - "Timestamp": "2019-10-15T15:38:39.000Z" + "SpotPrice": "2.754800", + "Timestamp": "2024-05-16T13:01:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.316400", - "Timestamp": "2019-10-15T15:38:39.000Z" + "SpotPrice": "0.244000", + "Timestamp": "2024-05-16T13:01:30.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.341400", - "Timestamp": "2019-10-15T15:38:38.000Z" + "SpotPrice": "0.866600", + "Timestamp": "2024-05-16T13:01:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.341400", - "Timestamp": "2019-10-15T15:38:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.861600", + "Timestamp": "2024-05-16T13:01:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.341400", - "Timestamp": "2019-10-15T15:38:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.736600", + "Timestamp": "2024-05-16T13:01:30.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.381400", - "Timestamp": "2019-10-15T15:38:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093800", + "Timestamp": "2024-05-16T13:01:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.381400", - "Timestamp": "2019-10-15T15:38:38.000Z" + "SpotPrice": "0.090100", + "Timestamp": "2024-05-16T13:01:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.381400", - "Timestamp": "2019-10-15T15:38:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033800", + "Timestamp": "2024-05-16T13:01:30.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.281400", - "Timestamp": "2019-10-15T15:38:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.874500", + "Timestamp": "2024-05-16T13:01:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.281400", - "Timestamp": "2019-10-15T15:38:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108500", + "Timestamp": "2024-05-16T13:01:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "is4gen.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.281400", - "Timestamp": "2019-10-15T15:38:38.000Z" + "SpotPrice": "0.048500", + "Timestamp": "2024-05-16T13:01:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.968000", - "Timestamp": "2019-10-15T15:36:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135800", + "Timestamp": "2024-05-16T13:01:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.256100", - "Timestamp": "2019-10-15T15:36:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131800", + "Timestamp": "2024-05-16T13:01:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.256100", - "Timestamp": "2019-10-15T15:28:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075800", + "Timestamp": "2024-05-16T13:01:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5dn.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132100", - "Timestamp": "2019-10-15T15:06:37.000Z" + "SpotPrice": "0.517000", + "Timestamp": "2024-05-16T13:01:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5dn.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172100", - "Timestamp": "2019-10-15T15:06:37.000Z" + "SpotPrice": "0.512000", + "Timestamp": "2024-05-16T13:01:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5dn.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072100", - "Timestamp": "2019-10-15T15:06:37.000Z" + "SpotPrice": "0.387000", + "Timestamp": "2024-05-16T13:01:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.284300", - "Timestamp": "2019-10-15T15:05:55.000Z" + "SpotPrice": "0.756200", + "Timestamp": "2024-05-16T13:01:28.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.284300", - "Timestamp": "2019-10-15T15:05:55.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.751200", + "Timestamp": "2024-05-16T13:01:28.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.626200", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.284300", - "Timestamp": "2019-10-15T15:05:55.000Z" + "SpotPrice": "0.144200", + "Timestamp": "2024-05-16T13:01:28.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.254300", - "Timestamp": "2019-10-15T15:05:55.000Z" + "SpotPrice": "0.140500", + "Timestamp": "2024-05-16T13:01:28.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.254300", - "Timestamp": "2019-10-15T15:05:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084200", + "Timestamp": "2024-05-16T13:01:28.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.254300", - "Timestamp": "2019-10-15T15:05:55.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.000200", + "Timestamp": "2024-05-16T13:01:26.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.154300", - "Timestamp": "2019-10-15T15:05:55.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.995200", + "Timestamp": "2024-05-16T13:01:26.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.154300", - "Timestamp": "2019-10-15T15:05:55.000Z" + "SpotPrice": "0.870200", + "Timestamp": "2024-05-16T13:01:26.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.154300", - "Timestamp": "2019-10-15T15:05:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.351400", + "Timestamp": "2024-05-16T13:01:26.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.098300", - "Timestamp": "2019-10-15T15:05:04.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.346400", + "Timestamp": "2024-05-16T13:01:26.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.098300", - "Timestamp": "2019-10-15T15:05:04.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.221400", + "Timestamp": "2024-05-16T13:01:26.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.098300", - "Timestamp": "2019-10-15T15:05:04.000Z" + "SpotPrice": "7.493200", + "Timestamp": "2024-05-16T13:01:26.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5n.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.281200", - "Timestamp": "2019-10-15T14:54:56.000Z" + "SpotPrice": "2.458500", + "Timestamp": "2024-05-16T13:01:25.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5n.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.251200", - "Timestamp": "2019-10-15T14:54:56.000Z" + "SpotPrice": "2.453500", + "Timestamp": "2024-05-16T13:01:25.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5n.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.151200", - "Timestamp": "2019-10-15T14:54:56.000Z" + "SpotPrice": "2.328500", + "Timestamp": "2024-05-16T13:01:25.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.313800", - "Timestamp": "2019-10-15T14:53:46.000Z" + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T13:01:24.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.283800", - "Timestamp": "2019-10-15T14:53:46.000Z" + "SpotPrice": "0.108500", + "Timestamp": "2024-05-16T13:01:24.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.183800", - "Timestamp": "2019-10-15T14:53:46.000Z" + "SpotPrice": "0.052200", + "Timestamp": "2024-05-16T13:01:24.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.366700", - "Timestamp": "2019-10-15T14:42:31.000Z" + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T13:01:24.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.366700", - "Timestamp": "2019-10-15T14:42:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101900", + "Timestamp": "2024-05-16T13:01:24.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.366700", - "Timestamp": "2019-10-15T14:42:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045900", + "Timestamp": "2024-05-16T13:01:24.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.336700", - "Timestamp": "2019-10-15T14:42:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.434600", + "Timestamp": "2024-05-16T13:01:24.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.336700", - "Timestamp": "2019-10-15T14:42:31.000Z" + "SpotPrice": "1.429600", + "Timestamp": "2024-05-16T13:01:24.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.336700", - "Timestamp": "2019-10-15T14:42:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.304600", + "Timestamp": "2024-05-16T13:01:24.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.236700", - "Timestamp": "2019-10-15T14:42:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.516600", + "Timestamp": "2024-05-16T13:01:23.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.236700", - "Timestamp": "2019-10-15T14:42:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.511600", + "Timestamp": "2024-05-16T13:01:23.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.236700", - "Timestamp": "2019-10-15T14:42:31.000Z" + "SpotPrice": "0.386600", + "Timestamp": "2024-05-16T13:01:23.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2idn.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.548700", - "Timestamp": "2019-10-15T14:42:26.000Z" + "SpotPrice": "8.029700", + "Timestamp": "2024-05-16T13:01:15.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.metal-24xl", "ProductDescription": "Windows", - "SpotPrice": "4.548700", - "Timestamp": "2019-10-15T14:42:26.000Z" + "SpotPrice": "5.415800", + "Timestamp": "2024-05-16T13:01:14.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.548700", - "Timestamp": "2019-10-15T14:42:26.000Z" + "SpotPrice": "3.677500", + "Timestamp": "2024-05-16T13:01:12.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.metal-24xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.284300", - "Timestamp": "2019-10-15T14:41:38.000Z" + "SpotPrice": "2.828300", + "Timestamp": "2024-05-16T13:01:11.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.284300", - "Timestamp": "2019-10-15T14:41:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.823300", + "Timestamp": "2024-05-16T13:01:11.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.698300", + "Timestamp": "2024-05-16T13:01:11.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.284300", - "Timestamp": "2019-10-15T14:41:38.000Z" + "SpotPrice": "1.429900", + "Timestamp": "2024-05-16T12:47:39.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.254300", - "Timestamp": "2019-10-15T14:41:38.000Z" + "SpotPrice": "1.424900", + "Timestamp": "2024-05-16T12:47:39.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.254300", - "Timestamp": "2019-10-15T14:41:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.299900", + "Timestamp": "2024-05-16T12:47:39.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.878000", + "Timestamp": "2024-05-16T12:47:39.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.734300", + "Timestamp": "2024-05-16T12:47:36.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.340000", + "Timestamp": "2024-05-16T12:47:36.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.254300", - "Timestamp": "2019-10-15T14:41:38.000Z" + "SpotPrice": "0.335000", + "Timestamp": "2024-05-16T12:47:36.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.154300", - "Timestamp": "2019-10-15T14:41:38.000Z" + "SpotPrice": "0.210000", + "Timestamp": "2024-05-16T12:47:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.154300", - "Timestamp": "2019-10-15T14:41:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.639200", + "Timestamp": "2024-05-16T12:47:35.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.609200", + "Timestamp": "2024-05-16T12:47:35.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.154300", - "Timestamp": "2019-10-15T14:41:38.000Z" + "SpotPrice": "1.509200", + "Timestamp": "2024-05-16T12:47:35.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.098300", - "Timestamp": "2019-10-15T14:41:38.000Z" + "SpotPrice": "0.940300", + "Timestamp": "2024-05-16T12:47:35.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.098300", - "Timestamp": "2019-10-15T14:41:38.000Z" + "SpotPrice": "0.993700", + "Timestamp": "2024-05-16T12:47:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.098300", - "Timestamp": "2019-10-15T14:41:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.502900", + "Timestamp": "2024-05-16T12:47:34.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.084400", - "Timestamp": "2019-10-15T14:39:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.497900", + "Timestamp": "2024-05-16T12:47:34.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.084400", - "Timestamp": "2019-10-15T14:39:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.372900", + "Timestamp": "2024-05-16T12:47:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.084400", - "Timestamp": "2019-10-15T14:39:09.000Z" + "SpotPrice": "0.286200", + "Timestamp": "2024-05-16T12:47:34.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097800", - "Timestamp": "2019-10-15T14:38:02.000Z" + "SpotPrice": "0.181800", + "Timestamp": "2024-05-16T12:47:33.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137800", - "Timestamp": "2019-10-15T14:38:02.000Z" + "SpotPrice": "0.178100", + "Timestamp": "2024-05-16T12:47:33.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037800", - "Timestamp": "2019-10-15T14:38:02.000Z" + "SpotPrice": "0.121800", + "Timestamp": "2024-05-16T12:47:33.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101300", - "Timestamp": "2019-10-15T14:37:12.000Z" + "SpotPrice": "2.198500", + "Timestamp": "2024-05-16T12:47:33.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.141300", - "Timestamp": "2019-10-15T14:37:12.000Z" + "SpotPrice": "2.193500", + "Timestamp": "2024-05-16T12:47:33.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041300", - "Timestamp": "2019-10-15T14:37:12.000Z" + "SpotPrice": "2.068500", + "Timestamp": "2024-05-16T12:47:33.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.414000", - "Timestamp": "2019-10-15T14:19:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.949500", + "Timestamp": "2024-05-16T12:47:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.260900", - "Timestamp": "2019-10-15T14:04:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.944500", + "Timestamp": "2024-05-16T12:47:32.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.260900", - "Timestamp": "2019-10-15T14:04:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.819500", + "Timestamp": "2024-05-16T12:47:32.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.260900", - "Timestamp": "2019-10-15T14:04:58.000Z" + "SpotPrice": "0.800700", + "Timestamp": "2024-05-16T12:47:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.230900", - "Timestamp": "2019-10-15T14:04:58.000Z" + "SpotPrice": "0.795700", + "Timestamp": "2024-05-16T12:47:32.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.230900", - "Timestamp": "2019-10-15T14:04:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.670700", + "Timestamp": "2024-05-16T12:47:32.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.230900", - "Timestamp": "2019-10-15T14:04:58.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090200", + "Timestamp": "2024-05-16T12:47:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.130900", - "Timestamp": "2019-10-15T14:04:58.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086500", + "Timestamp": "2024-05-16T12:47:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.130900", - "Timestamp": "2019-10-15T14:04:58.000Z" + "SpotPrice": "0.030200", + "Timestamp": "2024-05-16T12:47:31.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.130900", - "Timestamp": "2019-10-15T14:04:58.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T12:47:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "x1e.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.530000", - "Timestamp": "2019-10-15T14:04:55.000Z" + "SpotPrice": "1.812000", + "Timestamp": "2024-05-16T12:47:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.530000", - "Timestamp": "2019-10-15T14:04:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.807000", + "Timestamp": "2024-05-16T12:47:31.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.530000", - "Timestamp": "2019-10-15T14:04:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.682000", + "Timestamp": "2024-05-16T12:47:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.500000", - "Timestamp": "2019-10-15T14:04:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.673700", + "Timestamp": "2024-05-16T12:47:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.500000", - "Timestamp": "2019-10-15T14:04:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.369500", + "Timestamp": "2024-05-16T12:47:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "x1e.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.metal-48xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.500000", - "Timestamp": "2019-10-15T14:04:55.000Z" + "SpotPrice": "3.364500", + "Timestamp": "2024-05-16T12:47:30.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "x1e.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.400000", - "Timestamp": "2019-10-15T14:04:55.000Z" + "SpotPrice": "3.239500", + "Timestamp": "2024-05-16T12:47:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.400000", - "Timestamp": "2019-10-15T14:04:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.728400", + "Timestamp": "2024-05-16T12:47:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "x1e.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.698400", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.400000", - "Timestamp": "2019-10-15T14:04:55.000Z" + "SpotPrice": "0.598400", + "Timestamp": "2024-05-16T12:47:30.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.519200", - "Timestamp": "2019-10-15T14:04:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.588100", + "Timestamp": "2024-05-16T12:47:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.519200", - "Timestamp": "2019-10-15T14:04:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.583100", + "Timestamp": "2024-05-16T12:47:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.519200", - "Timestamp": "2019-10-15T14:04:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.458100", + "Timestamp": "2024-05-16T12:47:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.288700", - "Timestamp": "2019-10-15T14:04:23.000Z" + "SpotPrice": "3.680900", + "Timestamp": "2024-05-16T12:47:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.258700", - "Timestamp": "2019-10-15T14:04:23.000Z" + "SpotPrice": "3.675900", + "Timestamp": "2024-05-16T12:47:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.158700", - "Timestamp": "2019-10-15T14:04:23.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.578900", - "Timestamp": "2019-10-15T14:03:38.000Z" + "SpotPrice": "3.550900", + "Timestamp": "2024-05-16T12:47:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.578900", - "Timestamp": "2019-10-15T14:03:38.000Z" + "SpotPrice": "10.724000", + "Timestamp": "2024-05-16T12:47:28.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.578900", - "Timestamp": "2019-10-15T14:03:38.000Z" + "SpotPrice": "10.783800", + "Timestamp": "2024-05-16T12:47:28.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.425600", - "Timestamp": "2019-10-15T14:03:34.000Z" + "SpotPrice": "1.759800", + "Timestamp": "2024-05-16T12:47:28.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.395600", - "Timestamp": "2019-10-15T14:03:34.000Z" + "SpotPrice": "1.754800", + "Timestamp": "2024-05-16T12:47:28.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.295600", - "Timestamp": "2019-10-15T14:03:34.000Z" + "SpotPrice": "1.629800", + "Timestamp": "2024-05-16T12:47:28.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.872000", - "Timestamp": "2019-10-15T14:03:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.114700", + "Timestamp": "2024-05-16T12:47:27.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.872000", - "Timestamp": "2019-10-15T14:03:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.084700", + "Timestamp": "2024-05-16T12:47:27.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.872000", - "Timestamp": "2019-10-15T14:03:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.984700", + "Timestamp": "2024-05-16T12:47:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.073700", - "Timestamp": "2019-10-15T13:56:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.202500", + "Timestamp": "2024-05-16T12:47:26.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.734600", - "Timestamp": "2019-10-15T13:43:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.197500", + "Timestamp": "2024-05-16T12:47:26.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.734600", - "Timestamp": "2019-10-15T13:43:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.072500", + "Timestamp": "2024-05-16T12:47:26.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.3xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.162000", - "Timestamp": "2019-10-15T13:43:14.000Z" + "SpotPrice": "0.499400", + "Timestamp": "2024-05-16T12:47:25.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.3xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.704600", - "Timestamp": "2019-10-15T13:43:14.000Z" + "SpotPrice": "0.494400", + "Timestamp": "2024-05-16T12:47:25.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.704600", - "Timestamp": "2019-10-15T13:43:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.369400", + "Timestamp": "2024-05-16T12:47:25.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.132000", - "Timestamp": "2019-10-15T13:43:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.231000", + "Timestamp": "2024-05-16T12:47:24.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.604600", - "Timestamp": "2019-10-15T13:43:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.201000", + "Timestamp": "2024-05-16T12:47:24.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "t2.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.604600", - "Timestamp": "2019-10-15T13:43:14.000Z" + "SpotPrice": "0.101000", + "Timestamp": "2024-05-16T12:47:24.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.032000", - "Timestamp": "2019-10-15T13:43:14.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.305600", + "Timestamp": "2024-05-16T12:47:24.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.076600", - "Timestamp": "2019-10-15T13:42:58.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070800", + "Timestamp": "2024-05-16T12:47:23.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.076600", - "Timestamp": "2019-10-15T13:42:58.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067100", + "Timestamp": "2024-05-16T12:47:23.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.504000", - "Timestamp": "2019-10-15T13:42:58.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010800", + "Timestamp": "2024-05-16T12:47:23.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.512300", - "Timestamp": "2019-10-15T13:42:53.000Z" + "SpotPrice": "0.214700", + "Timestamp": "2024-05-16T12:47:22.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.512300", - "Timestamp": "2019-10-15T13:42:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.555600", + "Timestamp": "2024-05-16T12:47:21.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.512300", - "Timestamp": "2019-10-15T13:42:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.550600", + "Timestamp": "2024-05-16T12:47:21.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.861400", - "Timestamp": "2019-10-15T13:42:44.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.425600", + "Timestamp": "2024-05-16T12:47:21.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.861400", - "Timestamp": "2019-10-15T13:42:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.132400", + "Timestamp": "2024-05-16T12:47:21.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.861400", - "Timestamp": "2019-10-15T13:42:44.000Z" + "SpotPrice": "0.924200", + "Timestamp": "2024-05-16T12:47:21.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.831400", - "Timestamp": "2019-10-15T13:42:44.000Z" + "SpotPrice": "0.919200", + "Timestamp": "2024-05-16T12:47:21.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.831400", - "Timestamp": "2019-10-15T13:42:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.794200", + "Timestamp": "2024-05-16T12:47:21.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.991900", + "Timestamp": "2024-05-16T12:47:20.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.831400", - "Timestamp": "2019-10-15T13:42:44.000Z" + "SpotPrice": "1.986900", + "Timestamp": "2024-05-16T12:47:20.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.731400", - "Timestamp": "2019-10-15T13:42:44.000Z" + "SpotPrice": "1.861900", + "Timestamp": "2024-05-16T12:47:20.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.731400", - "Timestamp": "2019-10-15T13:42:44.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.431900", + "Timestamp": "2024-05-16T12:47:20.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.426900", + "Timestamp": "2024-05-16T12:47:20.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.731400", - "Timestamp": "2019-10-15T13:42:44.000Z" + "SpotPrice": "0.301900", + "Timestamp": "2024-05-16T12:47:20.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "z1d.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-15T13:42:37.000Z" + "SpotPrice": "1.558900", + "Timestamp": "2024-05-16T12:47:19.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "z1d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-15T13:42:37.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.553900", + "Timestamp": "2024-05-16T12:47:19.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "z1d.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.428900", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.627600", - "Timestamp": "2019-10-15T13:42:37.000Z" + "SpotPrice": "0.913700", + "Timestamp": "2024-05-16T12:47:18.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "z1d.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-15T13:42:37.000Z" + "SpotPrice": "0.908700", + "Timestamp": "2024-05-16T12:47:18.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "z1d.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-15T13:42:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.783700", + "Timestamp": "2024-05-16T12:47:18.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "z1d.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.597600", - "Timestamp": "2019-10-15T13:42:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.427200", + "Timestamp": "2024-05-16T12:47:17.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "z1d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-15T13:42:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.376100", + "Timestamp": "2024-05-16T12:47:16.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "z1d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-15T13:42:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.371100", + "Timestamp": "2024-05-16T12:47:16.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "z1d.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "d3.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.497600", - "Timestamp": "2019-10-15T13:42:37.000Z" + "SpotPrice": "0.246100", + "Timestamp": "2024-05-16T12:47:16.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5dn.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "p3.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.038300", - "Timestamp": "2019-10-15T13:42:12.000Z" + "SpotPrice": "3.420200", + "Timestamp": "2024-05-16T12:47:16.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.038300", - "Timestamp": "2019-10-15T13:42:12.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098400", + "Timestamp": "2024-05-16T12:47:14.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.038300", - "Timestamp": "2019-10-15T13:42:12.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094700", + "Timestamp": "2024-05-16T12:47:14.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "z1d.metal", - "ProductDescription": "Windows", - "SpotPrice": "3.705600", - "Timestamp": "2019-10-15T13:42:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038400", + "Timestamp": "2024-05-16T12:47:14.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "z1d.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.705600", - "Timestamp": "2019-10-15T13:42:08.000Z" + "SpotPrice": "2.471000", + "Timestamp": "2024-05-16T12:47:13.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "z1d.metal", - "ProductDescription": "Windows", - "SpotPrice": "3.705600", - "Timestamp": "2019-10-15T13:42:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.616700", + "Timestamp": "2024-05-16T12:47:12.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.147400", - "Timestamp": "2019-10-15T13:42:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.611700", + "Timestamp": "2024-05-16T12:47:12.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.147400", - "Timestamp": "2019-10-15T13:42:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.486700", + "Timestamp": "2024-05-16T12:47:12.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.147400", - "Timestamp": "2019-10-15T13:42:06.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.494700", + "Timestamp": "2024-05-16T12:47:11.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.781200", - "Timestamp": "2019-10-15T13:42:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.489700", + "Timestamp": "2024-05-16T12:47:11.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.781200", - "Timestamp": "2019-10-15T13:42:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.364700", + "Timestamp": "2024-05-16T12:47:11.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t4g.micro", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.781200", - "Timestamp": "2019-10-15T13:42:04.000Z" + "SpotPrice": "0.062600", + "Timestamp": "2024-05-16T12:47:09.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t4g.micro", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.751200", - "Timestamp": "2019-10-15T13:42:04.000Z" + "SpotPrice": "0.002600", + "Timestamp": "2024-05-16T12:47:09.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.751200", - "Timestamp": "2019-10-15T13:42:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-16T12:47:09.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.751200", - "Timestamp": "2019-10-15T13:42:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.302000", + "Timestamp": "2024-05-16T12:47:09.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.651200", - "Timestamp": "2019-10-15T13:42:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.297000", + "Timestamp": "2024-05-16T12:47:09.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.651200", - "Timestamp": "2019-10-15T13:42:04.000Z" + "SpotPrice": "0.172000", + "Timestamp": "2024-05-16T12:47:09.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.651200", - "Timestamp": "2019-10-15T13:42:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.557000", + "Timestamp": "2024-05-16T12:47:07.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3.metal", - "ProductDescription": "Windows", - "SpotPrice": "4.595200", - "Timestamp": "2019-10-15T13:42:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.552000", + "Timestamp": "2024-05-16T12:47:07.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.metal", - "ProductDescription": "Windows", - "SpotPrice": "4.595200", - "Timestamp": "2019-10-15T13:42:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.427000", + "Timestamp": "2024-05-16T12:47:07.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.large", "ProductDescription": "Windows", - "SpotPrice": "4.595200", - "Timestamp": "2019-10-15T13:42:03.000Z" + "SpotPrice": "0.112300", + "Timestamp": "2024-05-16T12:47:06.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.016000", - "Timestamp": "2019-10-15T13:41:54.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.408300", + "Timestamp": "2024-05-16T12:47:06.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.016000", - "Timestamp": "2019-10-15T13:41:54.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.403300", + "Timestamp": "2024-05-16T12:47:06.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.016000", - "Timestamp": "2019-10-15T13:41:54.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.278300", + "Timestamp": "2024-05-16T12:47:06.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.730000", - "Timestamp": "2019-10-15T13:41:54.000Z" + "SpotPrice": "0.183200", + "Timestamp": "2024-05-16T12:47:06.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.730000", - "Timestamp": "2019-10-15T13:41:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179200", + "Timestamp": "2024-05-16T12:47:06.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123200", + "Timestamp": "2024-05-16T12:47:06.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.3xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.730000", - "Timestamp": "2019-10-15T13:41:54.000Z" + "SpotPrice": "0.666700", + "Timestamp": "2024-05-16T12:47:05.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.3xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.700000", - "Timestamp": "2019-10-15T13:41:54.000Z" + "SpotPrice": "0.661700", + "Timestamp": "2024-05-16T12:47:05.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.700000", - "Timestamp": "2019-10-15T13:41:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.536700", + "Timestamp": "2024-05-16T12:47:05.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092200", + "Timestamp": "2024-05-16T12:47:04.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.700000", - "Timestamp": "2019-10-15T13:41:54.000Z" + "SpotPrice": "0.088200", + "Timestamp": "2024-05-16T12:47:04.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.600000", - "Timestamp": "2019-10-15T13:41:54.000Z" + "SpotPrice": "0.032200", + "Timestamp": "2024-05-16T12:47:04.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.600000", - "Timestamp": "2019-10-15T13:41:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.325700", + "Timestamp": "2024-05-16T12:47:04.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.600000", - "Timestamp": "2019-10-15T13:41:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.320700", + "Timestamp": "2024-05-16T12:47:04.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.147400", - "Timestamp": "2019-10-15T13:41:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195700", + "Timestamp": "2024-05-16T12:47:04.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.metal", "ProductDescription": "Windows", - "SpotPrice": "6.147400", - "Timestamp": "2019-10-15T13:41:53.000Z" + "SpotPrice": "10.469400", + "Timestamp": "2024-05-16T12:47:02.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.147400", - "Timestamp": "2019-10-15T13:41:53.000Z" + "SpotPrice": "2.658500", + "Timestamp": "2024-05-16T12:47:01.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.861400", - "Timestamp": "2019-10-15T13:41:53.000Z" + "SpotPrice": "3.353900", + "Timestamp": "2024-05-16T12:47:01.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.861400", - "Timestamp": "2019-10-15T13:41:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.348900", + "Timestamp": "2024-05-16T12:47:01.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.223900", + "Timestamp": "2024-05-16T12:47:01.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.861400", - "Timestamp": "2019-10-15T13:41:53.000Z" + "SpotPrice": "0.246300", + "Timestamp": "2024-05-16T12:47:00.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.831400", - "Timestamp": "2019-10-15T13:41:53.000Z" + "SpotPrice": "0.241300", + "Timestamp": "2024-05-16T12:47:00.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.831400", - "Timestamp": "2019-10-15T13:41:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116300", + "Timestamp": "2024-05-16T12:47:00.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.831400", - "Timestamp": "2019-10-15T13:41:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.569800", + "Timestamp": "2024-05-16T12:46:58.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.731400", - "Timestamp": "2019-10-15T13:41:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.564800", + "Timestamp": "2024-05-16T12:46:58.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.731400", - "Timestamp": "2019-10-15T13:41:53.000Z" + "SpotPrice": "0.439800", + "Timestamp": "2024-05-16T12:46:58.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.731400", - "Timestamp": "2019-10-15T13:41:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.862300", + "Timestamp": "2024-05-16T12:46:58.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.936000", - "Timestamp": "2019-10-15T13:39:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.592800", + "Timestamp": "2024-05-16T12:46:57.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.936000", - "Timestamp": "2019-10-15T13:39:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.587800", + "Timestamp": "2024-05-16T12:46:57.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "x1e.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.462800", + "Timestamp": "2024-05-16T12:46:57.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.330000", - "Timestamp": "2019-10-15T13:39:37.000Z" + "SpotPrice": "2.461600", + "Timestamp": "2024-05-16T12:46:57.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "x1e.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.330000", - "Timestamp": "2019-10-15T13:39:37.000Z" + "SpotPrice": "2.700100", + "Timestamp": "2024-05-16T12:46:57.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "x1e.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.300000", - "Timestamp": "2019-10-15T13:39:37.000Z" + "SpotPrice": "2.456600", + "Timestamp": "2024-05-16T12:46:57.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "x1e.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.300000", - "Timestamp": "2019-10-15T13:39:37.000Z" + "SpotPrice": "2.695100", + "Timestamp": "2024-05-16T12:46:57.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "x1e.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.200000", - "Timestamp": "2019-10-15T13:39:37.000Z" + "SpotPrice": "2.331600", + "Timestamp": "2024-05-16T12:46:57.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "x1e.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.200000", - "Timestamp": "2019-10-15T13:39:37.000Z" + "SpotPrice": "2.570100", + "Timestamp": "2024-05-16T12:46:57.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.943900", - "Timestamp": "2019-10-15T13:39:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.204100", + "Timestamp": "2024-05-16T12:46:57.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.943900", - "Timestamp": "2019-10-15T13:39:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.118000", + "Timestamp": "2024-05-16T12:46:57.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.943900", - "Timestamp": "2019-10-15T13:39:09.000Z" + "SpotPrice": "0.149900", + "Timestamp": "2024-05-16T12:46:56.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.913900", - "Timestamp": "2019-10-15T13:39:09.000Z" + "SpotPrice": "0.146200", + "Timestamp": "2024-05-16T12:46:56.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.913900", - "Timestamp": "2019-10-15T13:39:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089900", + "Timestamp": "2024-05-16T12:46:56.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.913900", - "Timestamp": "2019-10-15T13:39:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155100", + "Timestamp": "2024-05-16T12:46:56.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.813900", - "Timestamp": "2019-10-15T13:39:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151400", + "Timestamp": "2024-05-16T12:46:56.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.813900", - "Timestamp": "2019-10-15T13:39:09.000Z" + "SpotPrice": "0.095100", + "Timestamp": "2024-05-16T12:46:56.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.813900", - "Timestamp": "2019-10-15T13:39:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.466500", + "Timestamp": "2024-05-16T12:46:51.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.229900", - "Timestamp": "2019-10-15T13:39:09.000Z" + "SpotPrice": "0.269500", + "Timestamp": "2024-05-16T12:46:51.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.metal-48xl", "ProductDescription": "Windows", - "SpotPrice": "6.229900", - "Timestamp": "2019-10-15T13:39:09.000Z" + "SpotPrice": "11.547600", + "Timestamp": "2024-05-16T12:46:50.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.229900", - "Timestamp": "2019-10-15T13:39:09.000Z" + "SpotPrice": "0.437200", + "Timestamp": "2024-05-16T12:46:49.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.628600", - "Timestamp": "2019-10-15T13:38:38.000Z" + "SpotPrice": "0.091200", + "Timestamp": "2024-05-16T12:46:49.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.628600", - "Timestamp": "2019-10-15T13:38:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087500", + "Timestamp": "2024-05-16T12:46:49.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.598600", - "Timestamp": "2019-10-15T13:38:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031200", + "Timestamp": "2024-05-16T12:46:49.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.816500", + "Timestamp": "2024-05-16T12:46:49.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.968700", + "Timestamp": "2024-05-16T12:46:47.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.598600", - "Timestamp": "2019-10-15T13:38:38.000Z" + "SpotPrice": "2.963700", + "Timestamp": "2024-05-16T12:46:47.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.498600", - "Timestamp": "2019-10-15T13:38:38.000Z" + "SpotPrice": "2.838700", + "Timestamp": "2024-05-16T12:46:47.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.498600", - "Timestamp": "2019-10-15T13:38:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.782900", + "Timestamp": "2024-05-16T12:46:47.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.594600", - "Timestamp": "2019-10-15T13:38:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.777900", + "Timestamp": "2024-05-16T12:46:47.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.652900", + "Timestamp": "2024-05-16T12:46:47.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.594600", - "Timestamp": "2019-10-15T13:38:38.000Z" + "SpotPrice": "5.437300", + "Timestamp": "2024-05-16T12:46:47.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.594600", - "Timestamp": "2019-10-15T13:38:38.000Z" + "SpotPrice": "3.550900", + "Timestamp": "2024-05-16T12:46:47.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.512300", - "Timestamp": "2019-10-15T13:36:09.000Z" + "SpotPrice": "2.879500", + "Timestamp": "2024-05-16T12:46:46.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.281200", - "Timestamp": "2019-10-15T13:28:02.000Z" + "SpotPrice": "1.436700", + "Timestamp": "2024-05-16T12:46:45.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.251200", - "Timestamp": "2019-10-15T13:28:02.000Z" + "SpotPrice": "1.431700", + "Timestamp": "2024-05-16T12:46:45.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.151200", - "Timestamp": "2019-10-15T13:28:02.000Z" + "SpotPrice": "1.306700", + "Timestamp": "2024-05-16T12:46:45.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.229900", - "Timestamp": "2019-10-15T13:16:02.000Z" + "SpotPrice": "3.885800", + "Timestamp": "2024-05-16T12:46:45.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.229900", - "Timestamp": "2019-10-15T13:16:02.000Z" + "SpotPrice": "11.900900", + "Timestamp": "2024-05-16T12:46:45.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "10.512000", - "Timestamp": "2019-10-15T13:16:02.000Z" + "SpotPrice": "0.820900", + "Timestamp": "2024-05-16T12:46:45.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.136600", - "Timestamp": "2019-10-15T13:04:37.000Z" + "SpotPrice": "0.397200", + "Timestamp": "2024-05-16T12:46:44.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.176600", - "Timestamp": "2019-10-15T13:04:37.000Z" + "SpotPrice": "0.392200", + "Timestamp": "2024-05-16T12:46:44.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.076600", - "Timestamp": "2019-10-15T13:04:37.000Z" + "SpotPrice": "0.267200", + "Timestamp": "2024-05-16T12:46:44.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006300", - "Timestamp": "2019-10-15T13:04:18.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.928700", + "Timestamp": "2024-05-16T12:46:42.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006300", - "Timestamp": "2019-10-15T13:04:18.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.923700", + "Timestamp": "2024-05-16T12:46:42.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006300", - "Timestamp": "2019-10-15T13:04:18.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.798700", + "Timestamp": "2024-05-16T12:46:42.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.024600", - "Timestamp": "2019-10-15T13:04:05.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.203400", + "Timestamp": "2024-05-16T12:46:42.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.024600", - "Timestamp": "2019-10-15T13:04:05.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.198400", + "Timestamp": "2024-05-16T12:46:42.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.024600", - "Timestamp": "2019-10-15T13:04:05.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.073400", + "Timestamp": "2024-05-16T12:46:42.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.943900", - "Timestamp": "2019-10-15T13:04:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.443900", + "Timestamp": "2024-05-16T12:46:42.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.943900", - "Timestamp": "2019-10-15T13:04:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.752600", + "Timestamp": "2024-05-16T12:46:41.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "6.226000", - "Timestamp": "2019-10-15T13:04:01.000Z" + "SpotPrice": "1.219200", + "Timestamp": "2024-05-16T12:46:41.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.913900", - "Timestamp": "2019-10-15T13:04:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.280700", + "Timestamp": "2024-05-16T12:46:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.913900", - "Timestamp": "2019-10-15T13:04:01.000Z" + "SpotPrice": "1.214200", + "Timestamp": "2024-05-16T12:46:41.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "6.196000", - "Timestamp": "2019-10-15T13:04:01.000Z" + "SpotPrice": "1.275700", + "Timestamp": "2024-05-16T12:46:41.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.813900", - "Timestamp": "2019-10-15T13:04:01.000Z" + "SpotPrice": "1.089200", + "Timestamp": "2024-05-16T12:46:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.813900", - "Timestamp": "2019-10-15T13:04:01.000Z" + "SpotPrice": "1.150700", + "Timestamp": "2024-05-16T12:46:41.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "6.096000", - "Timestamp": "2019-10-15T13:04:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.467600", + "Timestamp": "2024-05-16T12:46:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061700", - "Timestamp": "2019-10-15T13:02:16.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.976700", + "Timestamp": "2024-05-16T12:46:40.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061700", - "Timestamp": "2019-10-15T13:02:16.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.985900", + "Timestamp": "2024-05-16T12:46:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061700", - "Timestamp": "2019-10-15T13:02:16.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.464400", + "Timestamp": "2024-05-16T12:46:39.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3.nano", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.101700", - "Timestamp": "2019-10-15T13:02:16.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.201600", + "Timestamp": "2024-05-16T12:46:38.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3.nano", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.101700", - "Timestamp": "2019-10-15T13:02:16.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.352800", + "Timestamp": "2024-05-16T12:46:38.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3.nano", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.101700", - "Timestamp": "2019-10-15T13:02:16.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.454700", + "Timestamp": "2024-05-16T12:46:37.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001700", - "Timestamp": "2019-10-15T13:02:16.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.451800", + "Timestamp": "2024-05-16T12:46:37.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001700", - "Timestamp": "2019-10-15T13:02:16.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088300", + "Timestamp": "2024-05-16T12:46:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001700", - "Timestamp": "2019-10-15T13:02:16.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088500", + "Timestamp": "2024-05-16T12:46:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132200", - "Timestamp": "2019-10-15T12:57:11.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084600", + "Timestamp": "2024-05-16T12:46:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172200", - "Timestamp": "2019-10-15T12:57:11.000Z" + "SpotPrice": "0.084800", + "Timestamp": "2024-05-16T12:46:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072200", - "Timestamp": "2019-10-15T12:57:11.000Z" + "SpotPrice": "0.028300", + "Timestamp": "2024-05-16T12:46:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094800", - "Timestamp": "2019-10-15T12:48:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028500", + "Timestamp": "2024-05-16T12:46:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134800", - "Timestamp": "2019-10-15T12:48:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.480100", + "Timestamp": "2024-05-16T12:46:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034800", - "Timestamp": "2019-10-15T12:48:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.443200", + "Timestamp": "2024-05-16T12:46:36.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132300", - "Timestamp": "2019-10-15T12:48:07.000Z" + "SpotPrice": "0.133500", + "Timestamp": "2024-05-16T12:46:35.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172300", - "Timestamp": "2019-10-15T12:48:07.000Z" + "SpotPrice": "0.129800", + "Timestamp": "2024-05-16T12:46:35.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072300", - "Timestamp": "2019-10-15T12:48:07.000Z" + "SpotPrice": "0.073500", + "Timestamp": "2024-05-16T12:46:35.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.128100", - "Timestamp": "2019-10-15T12:43:52.000Z" + "SpotPrice": "6.376500", + "Timestamp": "2024-05-16T12:46:35.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i2.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.207000", - "Timestamp": "2019-10-15T12:43:52.000Z" + "SpotPrice": "2.071900", + "Timestamp": "2024-05-16T12:46:33.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.128100", - "Timestamp": "2019-10-15T12:43:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.236700", + "Timestamp": "2024-05-16T12:46:33.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5ad.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096100", - "Timestamp": "2019-10-15T12:42:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.231700", + "Timestamp": "2024-05-16T12:46:33.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5ad.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.175000", - "Timestamp": "2019-10-15T12:42:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.106700", + "Timestamp": "2024-05-16T12:46:33.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096100", - "Timestamp": "2019-10-15T12:42:52.000Z" + "SpotPrice": "2.156400", + "Timestamp": "2024-05-16T12:46:33.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136100", - "Timestamp": "2019-10-15T12:42:52.000Z" + "SpotPrice": "2.151400", + "Timestamp": "2024-05-16T12:46:33.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5ad.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.215000", - "Timestamp": "2019-10-15T12:42:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.026400", + "Timestamp": "2024-05-16T12:46:33.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.834900", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136100", - "Timestamp": "2019-10-15T12:42:52.000Z" + "SpotPrice": "0.829900", + "Timestamp": "2024-05-16T12:46:33.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036100", - "Timestamp": "2019-10-15T12:42:52.000Z" + "SpotPrice": "0.704900", + "Timestamp": "2024-05-16T12:46:33.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5ad.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.115000", - "Timestamp": "2019-10-15T12:42:52.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-16T12:46:31.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092200", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036100", - "Timestamp": "2019-10-15T12:42:52.000Z" + "SpotPrice": "0.035900", + "Timestamp": "2024-05-16T12:46:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5dn.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.metal-24xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.284300", - "Timestamp": "2019-10-15T12:42:36.000Z" + "SpotPrice": "1.522900", + "Timestamp": "2024-05-16T12:46:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.284300", - "Timestamp": "2019-10-15T12:42:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.517900", + "Timestamp": "2024-05-16T12:46:31.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5dn.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.392900", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.284300", - "Timestamp": "2019-10-15T12:42:36.000Z" + "SpotPrice": "0.134500", + "Timestamp": "2024-05-16T12:46:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5dn.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.254300", - "Timestamp": "2019-10-15T12:42:36.000Z" + "SpotPrice": "0.130500", + "Timestamp": "2024-05-16T12:46:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.254300", - "Timestamp": "2019-10-15T12:42:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074500", + "Timestamp": "2024-05-16T12:46:31.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5dn.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.351900", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r3.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.254300", - "Timestamp": "2019-10-15T12:42:36.000Z" + "SpotPrice": "0.321900", + "Timestamp": "2024-05-16T12:46:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5dn.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r3.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.154300", - "Timestamp": "2019-10-15T12:42:36.000Z" + "SpotPrice": "0.220900", + "Timestamp": "2024-05-16T12:46:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.154300", - "Timestamp": "2019-10-15T12:42:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222900", + "Timestamp": "2024-05-16T12:46:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.154300", - "Timestamp": "2019-10-15T12:42:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.889900", + "Timestamp": "2024-05-16T12:46:30.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.098300", - "Timestamp": "2019-10-15T12:42:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.884900", + "Timestamp": "2024-05-16T12:46:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.098300", - "Timestamp": "2019-10-15T12:42:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.759900", + "Timestamp": "2024-05-16T12:46:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5dn.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.098300", - "Timestamp": "2019-10-15T12:42:09.000Z" + "SpotPrice": "0.220900", + "Timestamp": "2024-05-16T12:46:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.438600", - "Timestamp": "2019-10-15T12:41:54.000Z" + "SpotPrice": "0.855400", + "Timestamp": "2024-05-16T12:46:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.438600", - "Timestamp": "2019-10-15T12:41:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.850400", + "Timestamp": "2024-05-16T12:46:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.725400", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.438600", - "Timestamp": "2019-10-15T12:41:54.000Z" + "SpotPrice": "0.654700", + "Timestamp": "2024-05-16T12:46:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.408600", - "Timestamp": "2019-10-15T12:41:54.000Z" + "SpotPrice": "0.649700", + "Timestamp": "2024-05-16T12:46:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.408600", - "Timestamp": "2019-10-15T12:41:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.524700", + "Timestamp": "2024-05-16T12:46:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.408600", - "Timestamp": "2019-10-15T12:41:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121800", + "Timestamp": "2024-05-16T12:46:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.308600", - "Timestamp": "2019-10-15T12:41:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118100", + "Timestamp": "2024-05-16T12:46:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.308600", - "Timestamp": "2019-10-15T12:41:54.000Z" + "SpotPrice": "0.061800", + "Timestamp": "2024-05-16T12:46:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.308600", - "Timestamp": "2019-10-15T12:41:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.737800", + "Timestamp": "2024-05-16T12:46:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.435500", - "Timestamp": "2019-10-15T12:40:23.000Z" + "SpotPrice": "0.127400", + "Timestamp": "2024-05-16T12:46:26.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.405500", - "Timestamp": "2019-10-15T12:40:23.000Z" + "SpotPrice": "0.123700", + "Timestamp": "2024-05-16T12:46:26.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.305500", - "Timestamp": "2019-10-15T12:40:23.000Z" + "SpotPrice": "0.067400", + "Timestamp": "2024-05-16T12:46:26.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "a1.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.940100", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.272400", - "Timestamp": "2019-10-15T12:38:39.000Z" + "SpotPrice": "0.251800", + "Timestamp": "2024-05-16T12:34:06.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "a1.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.272400", - "Timestamp": "2019-10-15T12:38:39.000Z" + "SpotPrice": "0.254500", + "Timestamp": "2024-05-16T12:34:06.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "a1.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.256300", + "Timestamp": "2024-05-16T12:34:06.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.242400", - "Timestamp": "2019-10-15T12:38:39.000Z" + "SpotPrice": "0.246800", + "Timestamp": "2024-05-16T12:34:06.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "a1.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.242400", - "Timestamp": "2019-10-15T12:38:39.000Z" + "SpotPrice": "0.249500", + "Timestamp": "2024-05-16T12:34:06.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "a1.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.251300", + "Timestamp": "2024-05-16T12:34:06.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.142400", - "Timestamp": "2019-10-15T12:38:39.000Z" + "SpotPrice": "0.121800", + "Timestamp": "2024-05-16T12:34:06.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "a1.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.142400", - "Timestamp": "2019-10-15T12:38:39.000Z" + "SpotPrice": "0.124500", + "Timestamp": "2024-05-16T12:34:06.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5dn.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T12:34:06.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.153300", - "Timestamp": "2019-10-15T12:37:20.000Z" + "SpotPrice": "0.843300", + "Timestamp": "2024-05-16T12:33:04.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5dn.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.256100", - "Timestamp": "2019-10-15T12:36:06.000Z" + "SpotPrice": "1.021400", + "Timestamp": "2024-05-16T12:32:54.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.569200", + "Timestamp": "2024-05-16T12:32:54.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "p2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.943900", - "Timestamp": "2019-10-15T12:32:11.000Z" + "SpotPrice": "0.278300", + "Timestamp": "2024-05-16T12:32:48.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "p2.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.913900", - "Timestamp": "2019-10-15T12:32:11.000Z" + "SpotPrice": "0.318300", + "Timestamp": "2024-05-16T12:32:48.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "p2.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.813900", - "Timestamp": "2019-10-15T12:32:11.000Z" + "SpotPrice": "0.218300", + "Timestamp": "2024-05-16T12:32:48.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.133000", - "Timestamp": "2019-10-15T12:31:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.477500", + "Timestamp": "2024-05-16T12:32:47.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.173000", - "Timestamp": "2019-10-15T12:31:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.443700", + "Timestamp": "2024-05-16T12:32:46.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.073000", - "Timestamp": "2019-10-15T12:31:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.896200", + "Timestamp": "2024-05-16T12:32:44.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.886500", + "Timestamp": "2024-05-16T12:32:44.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.433500", - "Timestamp": "2019-10-15T12:23:01.000Z" + "SpotPrice": "2.119300", + "Timestamp": "2024-05-16T12:32:43.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.403500", - "Timestamp": "2019-10-15T12:23:01.000Z" + "SpotPrice": "2.114300", + "Timestamp": "2024-05-16T12:32:43.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.303500", - "Timestamp": "2019-10-15T12:23:01.000Z" + "SpotPrice": "1.989300", + "Timestamp": "2024-05-16T12:32:43.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.758500", - "Timestamp": "2019-10-15T12:15:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.587000", + "Timestamp": "2024-05-16T12:32:43.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.728500", - "Timestamp": "2019-10-15T12:15:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.large", + "ProductDescription": "Windows", + "SpotPrice": "0.132800", + "Timestamp": "2024-05-16T12:32:42.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.628500", - "Timestamp": "2019-10-15T12:15:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.824600", + "Timestamp": "2024-05-16T12:32:41.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1e.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.995700", - "Timestamp": "2019-10-15T12:07:46.000Z" + "SpotPrice": "1.547600", + "Timestamp": "2024-05-16T12:32:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1e.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.965700", - "Timestamp": "2019-10-15T12:07:46.000Z" + "SpotPrice": "1.517600", + "Timestamp": "2024-05-16T12:32:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1e.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.865700", - "Timestamp": "2019-10-15T12:07:46.000Z" + "SpotPrice": "1.417600", + "Timestamp": "2024-05-16T12:32:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "d3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.155100", - "Timestamp": "2019-10-15T12:06:51.000Z" + "SpotPrice": "0.181200", + "Timestamp": "2024-05-16T12:32:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "d3.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.195100", - "Timestamp": "2019-10-15T12:06:51.000Z" + "SpotPrice": "0.178200", + "Timestamp": "2024-05-16T12:32:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "d3.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.095100", - "Timestamp": "2019-10-15T12:06:51.000Z" + "SpotPrice": "0.121200", + "Timestamp": "2024-05-16T12:32:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.274400", - "Timestamp": "2019-10-15T12:05:05.000Z" + "SpotPrice": "1.063400", + "Timestamp": "2024-05-16T12:32:40.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.274400", - "Timestamp": "2019-10-15T12:05:05.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.718900", + "Timestamp": "2024-05-16T12:32:39.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.274400", - "Timestamp": "2019-10-15T12:05:05.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.713900", + "Timestamp": "2024-05-16T12:32:39.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.512300", - "Timestamp": "2019-10-15T12:04:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.588900", + "Timestamp": "2024-05-16T12:32:39.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.073700", - "Timestamp": "2019-10-15T11:59:37.000Z" - }, - { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "a1.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.078300", - "Timestamp": "2019-10-15T11:50:10.000Z" + "SpotPrice": "0.424100", + "Timestamp": "2024-05-16T12:32:39.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "a1.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.118300", - "Timestamp": "2019-10-15T11:50:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.777700", + "Timestamp": "2024-05-16T12:32:39.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "a1.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.018300", - "Timestamp": "2019-10-15T11:50:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.327500", + "Timestamp": "2024-05-16T12:32:39.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.290000", - "Timestamp": "2019-10-15T11:48:56.000Z" + "SpotPrice": "2.153100", + "Timestamp": "2024-05-16T12:32:37.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.330000", - "Timestamp": "2019-10-15T11:48:56.000Z" + "SpotPrice": "2.148100", + "Timestamp": "2024-05-16T12:32:37.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.230000", - "Timestamp": "2019-10-15T11:48:56.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.398600", - "Timestamp": "2019-10-15T11:42:15.000Z" + "SpotPrice": "2.023100", + "Timestamp": "2024-05-16T12:32:37.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.398600", - "Timestamp": "2019-10-15T11:42:15.000Z" + "SpotPrice": "5.653000", + "Timestamp": "2024-05-16T12:32:37.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.398600", - "Timestamp": "2019-10-15T11:42:15.000Z" + "SpotPrice": "5.112900", + "Timestamp": "2024-05-16T12:32:37.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.metal-32xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.861400", - "Timestamp": "2019-10-15T11:42:15.000Z" + "SpotPrice": "4.975700", + "Timestamp": "2024-05-16T12:32:37.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.metal-32xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.831400", - "Timestamp": "2019-10-15T11:42:15.000Z" + "SpotPrice": "4.970700", + "Timestamp": "2024-05-16T12:32:37.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.metal-32xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.731400", - "Timestamp": "2019-10-15T11:42:15.000Z" + "SpotPrice": "4.845700", + "Timestamp": "2024-05-16T12:32:37.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.147400", - "Timestamp": "2019-10-15T11:42:13.000Z" + "SpotPrice": "0.892200", + "Timestamp": "2024-05-16T12:32:37.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.147400", - "Timestamp": "2019-10-15T11:42:13.000Z" + "SpotPrice": "2.585900", + "Timestamp": "2024-05-16T12:32:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.147400", - "Timestamp": "2019-10-15T11:42:13.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.705400", + "Timestamp": "2024-05-16T12:32:36.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.955600", - "Timestamp": "2019-10-15T11:41:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.700400", + "Timestamp": "2024-05-16T12:32:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.955600", - "Timestamp": "2019-10-15T11:41:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.575400", + "Timestamp": "2024-05-16T12:32:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.955600", - "Timestamp": "2019-10-15T11:41:52.000Z" + "SpotPrice": "1.177600", + "Timestamp": "2024-05-16T12:32:36.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.925600", - "Timestamp": "2019-10-15T11:41:52.000Z" + "SpotPrice": "1.172600", + "Timestamp": "2024-05-16T12:32:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.925600", - "Timestamp": "2019-10-15T11:41:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.047600", + "Timestamp": "2024-05-16T12:32:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.607400", + "Timestamp": "2024-05-16T12:32:36.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.925600", - "Timestamp": "2019-10-15T11:41:52.000Z" + "SpotPrice": "5.602400", + "Timestamp": "2024-05-16T12:32:36.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.825600", - "Timestamp": "2019-10-15T11:41:52.000Z" + "SpotPrice": "5.477400", + "Timestamp": "2024-05-16T12:32:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.825600", - "Timestamp": "2019-10-15T11:41:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.083600", + "Timestamp": "2024-05-16T12:32:35.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.078600", + "Timestamp": "2024-05-16T12:32:35.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.825600", - "Timestamp": "2019-10-15T11:41:52.000Z" + "SpotPrice": "0.953600", + "Timestamp": "2024-05-16T12:32:35.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.297600", - "Timestamp": "2019-10-15T11:41:52.000Z" + "SpotPrice": "0.444800", + "Timestamp": "2024-05-16T12:32:35.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.metal", "ProductDescription": "Windows", - "SpotPrice": "2.297600", - "Timestamp": "2019-10-15T11:41:52.000Z" + "SpotPrice": "5.620000", + "Timestamp": "2024-05-16T12:32:35.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "d2.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.297600", - "Timestamp": "2019-10-15T11:41:52.000Z" + "SpotPrice": "1.357700", + "Timestamp": "2024-05-16T12:32:34.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.339300", - "Timestamp": "2019-10-15T11:17:57.000Z" + "SpotPrice": "0.865800", + "Timestamp": "2024-05-16T12:32:34.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.309300", - "Timestamp": "2019-10-15T11:17:57.000Z" + "SpotPrice": "0.860800", + "Timestamp": "2024-05-16T12:32:34.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.209300", - "Timestamp": "2019-10-15T11:17:57.000Z" + "SpotPrice": "0.735800", + "Timestamp": "2024-05-16T12:32:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5n.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.519200", - "Timestamp": "2019-10-15T11:17:55.000Z" + "SpotPrice": "5.492100", + "Timestamp": "2024-05-16T12:32:34.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "8.062000", - "Timestamp": "2019-10-15T11:12:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.994400", + "Timestamp": "2024-05-16T12:32:34.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "8.062000", - "Timestamp": "2019-10-15T11:12:40.000Z" + "SpotPrice": "1.023100", + "Timestamp": "2024-05-16T12:32:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "26.570000", - "Timestamp": "2019-10-15T11:12:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.018100", + "Timestamp": "2024-05-16T12:32:34.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p3.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "8.032000", - "Timestamp": "2019-10-15T11:12:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.893100", + "Timestamp": "2024-05-16T12:32:34.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p3.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "8.032000", - "Timestamp": "2019-10-15T11:12:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.524900", + "Timestamp": "2024-05-16T12:32:33.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "26.540000", - "Timestamp": "2019-10-15T11:12:40.000Z" + "SpotPrice": "0.519900", + "Timestamp": "2024-05-16T12:32:33.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "7.932000", - "Timestamp": "2019-10-15T11:12:40.000Z" + "SpotPrice": "0.394900", + "Timestamp": "2024-05-16T12:32:33.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "7.932000", - "Timestamp": "2019-10-15T11:12:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.623200", + "Timestamp": "2024-05-16T12:32:33.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.618200", + "Timestamp": "2024-05-16T12:32:33.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "26.440000", - "Timestamp": "2019-10-15T11:12:40.000Z" + "SpotPrice": "0.493200", + "Timestamp": "2024-05-16T12:32:33.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.136300", - "Timestamp": "2019-10-15T11:07:55.000Z" + "SpotPrice": "3.579600", + "Timestamp": "2024-05-16T12:32:32.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.176300", - "Timestamp": "2019-10-15T11:07:55.000Z" + "SpotPrice": "3.574600", + "Timestamp": "2024-05-16T12:32:32.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.076300", - "Timestamp": "2019-10-15T11:07:55.000Z" + "SpotPrice": "3.449600", + "Timestamp": "2024-05-16T12:32:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.931800", - "Timestamp": "2019-10-15T11:04:56.000Z" + "SpotPrice": "2.058600", + "Timestamp": "2024-05-16T12:32:32.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.931800", - "Timestamp": "2019-10-15T11:04:56.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.053600", + "Timestamp": "2024-05-16T12:32:32.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.928600", + "Timestamp": "2024-05-16T12:32:32.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.931800", - "Timestamp": "2019-10-15T11:04:56.000Z" + "SpotPrice": "3.331300", + "Timestamp": "2024-05-16T12:32:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "4.901800", - "Timestamp": "2019-10-15T11:04:56.000Z" + "SpotPrice": "3.326300", + "Timestamp": "2024-05-16T12:32:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "x1.32xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "4.901800", - "Timestamp": "2019-10-15T11:04:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.201300", + "Timestamp": "2024-05-16T12:32:31.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.477200", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.272400", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "a1.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "4.901800", - "Timestamp": "2019-10-15T11:04:56.000Z" + "SpotPrice": "0.267400", + "Timestamp": "2024-05-16T12:32:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "a1.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.801800", - "Timestamp": "2019-10-15T11:04:56.000Z" + "SpotPrice": "0.142400", + "Timestamp": "2024-05-16T12:32:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.801800", - "Timestamp": "2019-10-15T11:04:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.710900", + "Timestamp": "2024-05-16T12:32:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.705900", + "Timestamp": "2024-05-16T12:32:30.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.801800", - "Timestamp": "2019-10-15T11:04:56.000Z" + "SpotPrice": "1.580900", + "Timestamp": "2024-05-16T12:32:30.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.xlarge", "ProductDescription": "Windows", - "SpotPrice": "10.689800", - "Timestamp": "2019-10-15T11:03:31.000Z" + "SpotPrice": "0.226200", + "Timestamp": "2024-05-16T12:32:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows", - "SpotPrice": "10.689800", - "Timestamp": "2019-10-15T11:03:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.446800", + "Timestamp": "2024-05-16T12:32:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows", - "SpotPrice": "10.689800", - "Timestamp": "2019-10-15T11:03:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.405100", + "Timestamp": "2024-05-16T12:32:30.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.124700", - "Timestamp": "2019-10-15T10:59:13.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.441800", + "Timestamp": "2024-05-16T12:32:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.124700", - "Timestamp": "2019-10-15T10:59:13.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.400100", + "Timestamp": "2024-05-16T12:32:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.124700", - "Timestamp": "2019-10-15T10:59:13.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.316800", + "Timestamp": "2024-05-16T12:32:30.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.063300", - "Timestamp": "2019-10-15T10:58:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.275100", + "Timestamp": "2024-05-16T12:32:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i-flex.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.063300", - "Timestamp": "2019-10-15T10:58:30.000Z" + "SpotPrice": "1.693400", + "Timestamp": "2024-05-16T12:32:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.063300", - "Timestamp": "2019-10-15T10:58:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.528900", + "Timestamp": "2024-05-16T12:32:28.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "10.876000", - "Timestamp": "2019-10-15T10:58:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.523900", + "Timestamp": "2024-05-16T12:32:28.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "10.876000", - "Timestamp": "2019-10-15T10:58:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.398900", + "Timestamp": "2024-05-16T12:32:28.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "29.384000", - "Timestamp": "2019-10-15T10:58:11.000Z" + "SpotPrice": "2.497400", + "Timestamp": "2024-05-16T12:32:28.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067300", - "Timestamp": "2019-10-15T10:57:04.000Z" + "SpotPrice": "0.261000", + "Timestamp": "2024-05-16T12:32:28.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067300", - "Timestamp": "2019-10-15T10:57:04.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.231000", + "Timestamp": "2024-05-16T12:32:28.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067300", - "Timestamp": "2019-10-15T10:57:04.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131000", + "Timestamp": "2024-05-16T12:32:28.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m3.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.107300", - "Timestamp": "2019-10-15T10:57:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.444900", + "Timestamp": "2024-05-16T12:32:27.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.6xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.107300", - "Timestamp": "2019-10-15T10:57:04.000Z" + "SpotPrice": "1.439900", + "Timestamp": "2024-05-16T12:32:27.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m3.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.107300", - "Timestamp": "2019-10-15T10:57:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.314900", + "Timestamp": "2024-05-16T12:32:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007300", - "Timestamp": "2019-10-15T10:57:04.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.659300", + "Timestamp": "2024-05-16T12:32:27.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007300", - "Timestamp": "2019-10-15T10:57:04.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.654300", + "Timestamp": "2024-05-16T12:32:27.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007300", - "Timestamp": "2019-10-15T10:57:04.000Z" + "SpotPrice": "2.529300", + "Timestamp": "2024-05-16T12:32:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092700", - "Timestamp": "2019-10-15T10:55:10.000Z" + "SpotPrice": "1.187800", + "Timestamp": "2024-05-16T12:32:26.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092700", - "Timestamp": "2019-10-15T10:55:10.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.182800", + "Timestamp": "2024-05-16T12:32:26.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.057800", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092700", - "Timestamp": "2019-10-15T10:55:10.000Z" + "SpotPrice": "1.319900", + "Timestamp": "2024-05-16T12:32:26.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-15T10:55:10.000Z" + "SpotPrice": "1.314900", + "Timestamp": "2024-05-16T12:32:26.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c4.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-15T10:55:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.189900", + "Timestamp": "2024-05-16T12:32:26.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c4.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-15T10:55:10.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.196600", + "Timestamp": "2024-05-16T12:32:25.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032700", - "Timestamp": "2019-10-15T10:55:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.992600", + "Timestamp": "2024-05-16T12:32:25.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032700", - "Timestamp": "2019-10-15T10:55:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.661100", + "Timestamp": "2024-05-16T12:32:24.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.656100", + "Timestamp": "2024-05-16T12:32:24.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032700", - "Timestamp": "2019-10-15T10:55:10.000Z" + "SpotPrice": "1.531100", + "Timestamp": "2024-05-16T12:32:24.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.130300", - "Timestamp": "2019-10-15T10:54:04.000Z" + "SpotPrice": "0.703100", + "Timestamp": "2024-05-16T12:32:23.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.170300", - "Timestamp": "2019-10-15T10:54:04.000Z" + "SpotPrice": "0.698100", + "Timestamp": "2024-05-16T12:32:23.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.070300", - "Timestamp": "2019-10-15T10:54:04.000Z" + "SpotPrice": "0.573100", + "Timestamp": "2024-05-16T12:32:23.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.493000", - "Timestamp": "2019-10-15T10:50:10.000Z" + "SpotPrice": "1.626500", + "Timestamp": "2024-05-16T12:32:23.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.463000", - "Timestamp": "2019-10-15T10:50:10.000Z" + "SpotPrice": "1.621500", + "Timestamp": "2024-05-16T12:32:23.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.363000", - "Timestamp": "2019-10-15T10:50:10.000Z" + "SpotPrice": "1.496500", + "Timestamp": "2024-05-16T12:32:23.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "is4gen.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T10:43:26.000Z" + "SpotPrice": "0.078500", + "Timestamp": "2024-05-16T12:32:22.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "is4gen.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.170800", - "Timestamp": "2019-10-15T10:43:26.000Z" + "SpotPrice": "0.049500", + "Timestamp": "2024-05-16T12:32:22.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "is4gen.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.070800", - "Timestamp": "2019-10-15T10:43:26.000Z" + "SpotPrice": "0.018500", + "Timestamp": "2024-05-16T12:32:22.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.662000", - "Timestamp": "2019-10-15T10:43:18.000Z" + "SpotPrice": "0.227400", + "Timestamp": "2024-05-16T12:32:22.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.662000", - "Timestamp": "2019-10-15T10:43:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.237600", + "Timestamp": "2024-05-16T12:32:21.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.662000", - "Timestamp": "2019-10-15T10:43:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232600", + "Timestamp": "2024-05-16T12:32:21.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.571000", - "Timestamp": "2019-10-15T10:42:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T12:32:21.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.571000", - "Timestamp": "2019-10-15T10:42:54.000Z" + "SpotPrice": "1.121000", + "Timestamp": "2024-05-16T12:32:21.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.116000", + "Timestamp": "2024-05-16T12:32:21.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.991000", + "Timestamp": "2024-05-16T12:32:21.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.3xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.571000", - "Timestamp": "2019-10-15T10:42:54.000Z" + "SpotPrice": "0.494000", + "Timestamp": "2024-05-16T12:32:21.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.3xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.541000", - "Timestamp": "2019-10-15T10:42:54.000Z" + "SpotPrice": "0.489000", + "Timestamp": "2024-05-16T12:32:21.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.541000", - "Timestamp": "2019-10-15T10:42:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.364000", + "Timestamp": "2024-05-16T12:32:21.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.732000", + "Timestamp": "2024-05-16T12:32:19.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.829800", + "Timestamp": "2024-05-16T12:32:19.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075500", + "Timestamp": "2024-05-16T12:32:18.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "t4g.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.541000", - "Timestamp": "2019-10-15T10:42:54.000Z" + "SpotPrice": "0.071800", + "Timestamp": "2024-05-16T12:32:18.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t4g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.441000", - "Timestamp": "2019-10-15T10:42:54.000Z" + "SpotPrice": "0.015500", + "Timestamp": "2024-05-16T12:32:18.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.441000", - "Timestamp": "2019-10-15T10:42:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.309700", + "Timestamp": "2024-05-16T12:32:18.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.441000", - "Timestamp": "2019-10-15T10:42:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.306000", + "Timestamp": "2024-05-16T12:32:18.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.259600", - "Timestamp": "2019-10-15T10:42:22.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.249700", + "Timestamp": "2024-05-16T12:32:18.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.259600", - "Timestamp": "2019-10-15T10:42:22.000Z" + "SpotPrice": "7.299800", + "Timestamp": "2024-05-16T12:32:17.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.259600", - "Timestamp": "2019-10-15T10:42:22.000Z" + "SpotPrice": "7.378400", + "Timestamp": "2024-05-16T12:32:17.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m3.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092700", - "Timestamp": "2019-10-15T10:41:52.000Z" + "SpotPrice": "0.088600", + "Timestamp": "2024-05-16T12:32:16.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092700", - "Timestamp": "2019-10-15T10:41:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084900", + "Timestamp": "2024-05-16T12:32:16.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092700", - "Timestamp": "2019-10-15T10:41:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028600", + "Timestamp": "2024-05-16T12:32:16.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-15T10:41:52.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301400", + "Timestamp": "2024-05-16T12:32:16.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m3.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-15T10:41:52.000Z" + "SpotPrice": "0.296400", + "Timestamp": "2024-05-16T12:32:16.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-15T10:41:52.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171400", + "Timestamp": "2024-05-16T12:32:16.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032700", - "Timestamp": "2019-10-15T10:41:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301400", + "Timestamp": "2024-05-16T12:32:15.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032700", - "Timestamp": "2019-10-15T10:41:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296400", + "Timestamp": "2024-05-16T12:32:15.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m3.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032700", - "Timestamp": "2019-10-15T10:41:52.000Z" + "SpotPrice": "0.171400", + "Timestamp": "2024-05-16T12:32:15.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.144700", - "Timestamp": "2019-10-15T10:41:52.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.310800", + "Timestamp": "2024-05-16T12:32:15.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.144700", - "Timestamp": "2019-10-15T10:41:52.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.305800", + "Timestamp": "2024-05-16T12:32:15.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.144700", - "Timestamp": "2019-10-15T10:41:52.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180800", + "Timestamp": "2024-05-16T12:32:15.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5dn.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.small", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097800", - "Timestamp": "2019-10-15T10:39:24.000Z" + "SpotPrice": "0.067000", + "Timestamp": "2024-05-16T12:32:15.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097800", - "Timestamp": "2019-10-15T10:39:24.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038000", + "Timestamp": "2024-05-16T12:32:15.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5dn.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097800", - "Timestamp": "2019-10-15T10:39:24.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007000", + "Timestamp": "2024-05-16T12:32:15.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5dn.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137800", - "Timestamp": "2019-10-15T10:39:24.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235400", + "Timestamp": "2024-05-16T12:32:15.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137800", - "Timestamp": "2019-10-15T10:39:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136100", + "Timestamp": "2024-05-16T12:32:15.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5dn.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137800", - "Timestamp": "2019-10-15T10:39:24.000Z" + "SpotPrice": "0.132100", + "Timestamp": "2024-05-16T12:32:15.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5dn.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037800", - "Timestamp": "2019-10-15T10:39:24.000Z" + "SpotPrice": "0.076100", + "Timestamp": "2024-05-16T12:32:15.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037800", - "Timestamp": "2019-10-15T10:39:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.466900", + "Timestamp": "2024-05-16T12:32:15.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5dn.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.436900", + "Timestamp": "2024-05-16T12:32:15.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037800", - "Timestamp": "2019-10-15T10:39:24.000Z" + "SpotPrice": "0.336900", + "Timestamp": "2024-05-16T12:32:15.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5dn.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.129800", - "Timestamp": "2019-10-15T10:38:43.000Z" + "SpotPrice": "6.157900", + "Timestamp": "2024-05-16T12:32:13.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "x1.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.129800", - "Timestamp": "2019-10-15T10:38:43.000Z" + "SpotPrice": "3.885100", + "Timestamp": "2024-05-16T12:32:12.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5dn.large", - "ProductDescription": "Windows", - "SpotPrice": "0.129800", - "Timestamp": "2019-10-15T10:38:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176900", + "Timestamp": "2024-05-16T12:32:10.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172900", + "Timestamp": "2024-05-16T12:32:10.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-16T12:32:10.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.519200", - "Timestamp": "2019-10-15T10:32:40.000Z" + "SpotPrice": "3.405700", + "Timestamp": "2024-05-16T12:32:09.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.142100", - "Timestamp": "2019-10-15T10:18:01.000Z" + "SpotPrice": "0.196700", + "Timestamp": "2024-05-16T12:32:07.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.182100", - "Timestamp": "2019-10-15T10:18:01.000Z" + "SpotPrice": "0.192700", + "Timestamp": "2024-05-16T12:32:07.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.082100", - "Timestamp": "2019-10-15T10:18:01.000Z" + "SpotPrice": "0.136700", + "Timestamp": "2024-05-16T12:32:07.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061700", - "Timestamp": "2019-10-15T10:09:29.000Z" + "SpotPrice": "0.718200", + "Timestamp": "2024-05-16T12:32:07.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.101700", - "Timestamp": "2019-10-15T10:09:29.000Z" + "SpotPrice": "0.688200", + "Timestamp": "2024-05-16T12:32:07.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001700", - "Timestamp": "2019-10-15T10:09:29.000Z" + "SpotPrice": "0.588200", + "Timestamp": "2024-05-16T12:32:07.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.890000", - "Timestamp": "2019-10-15T10:08:04.000Z" + "SpotPrice": "0.989400", + "Timestamp": "2024-05-16T12:32:07.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.860000", - "Timestamp": "2019-10-15T10:08:04.000Z" + "SpotPrice": "0.984400", + "Timestamp": "2024-05-16T12:32:07.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.760000", - "Timestamp": "2019-10-15T10:08:04.000Z" + "SpotPrice": "0.859400", + "Timestamp": "2024-05-16T12:32:07.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.632800", - "Timestamp": "2019-10-15T10:06:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.452200", + "Timestamp": "2024-05-16T12:32:06.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.632800", - "Timestamp": "2019-10-15T10:06:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.447200", + "Timestamp": "2024-05-16T12:32:06.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.632800", - "Timestamp": "2019-10-15T10:06:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.322200", + "Timestamp": "2024-05-16T12:32:06.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.692800", - "Timestamp": "2019-10-15T10:05:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.426400", + "Timestamp": "2024-05-16T12:32:05.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.692800", - "Timestamp": "2019-10-15T10:05:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.838500", + "Timestamp": "2024-05-16T12:32:05.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.692800", - "Timestamp": "2019-10-15T10:05:39.000Z" + "SpotPrice": "0.704700", + "Timestamp": "2024-05-16T12:32:05.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.662800", - "Timestamp": "2019-10-15T10:05:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.595200", + "Timestamp": "2024-05-16T12:32:05.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.662800", - "Timestamp": "2019-10-15T10:05:39.000Z" + "SpotPrice": "0.699700", + "Timestamp": "2024-05-16T12:32:05.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.662800", - "Timestamp": "2019-10-15T10:05:39.000Z" + "SpotPrice": "0.590200", + "Timestamp": "2024-05-16T12:32:05.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.562800", - "Timestamp": "2019-10-15T10:05:39.000Z" + "SpotPrice": "0.574700", + "Timestamp": "2024-05-16T12:32:05.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.562800", - "Timestamp": "2019-10-15T10:05:39.000Z" + "SpotPrice": "0.465200", + "Timestamp": "2024-05-16T12:32:05.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.562800", - "Timestamp": "2019-10-15T10:05:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.882800", + "Timestamp": "2024-05-16T12:32:04.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132100", - "Timestamp": "2019-10-15T09:52:49.000Z" + "SpotPrice": "0.794400", + "Timestamp": "2024-05-16T12:32:04.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172100", - "Timestamp": "2019-10-15T09:52:49.000Z" + "SpotPrice": "0.789400", + "Timestamp": "2024-05-16T12:32:04.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072100", - "Timestamp": "2019-10-15T09:52:49.000Z" + "SpotPrice": "0.664400", + "Timestamp": "2024-05-16T12:32:04.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3a.small", - "ProductDescription": "Windows", - "SpotPrice": "0.024500", - "Timestamp": "2019-10-15T09:42:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.843800", + "Timestamp": "2024-05-16T12:32:03.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3a.small", - "ProductDescription": "Windows", - "SpotPrice": "0.024500", - "Timestamp": "2019-10-15T09:42:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.838800", + "Timestamp": "2024-05-16T12:32:03.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3a.small", - "ProductDescription": "Windows", - "SpotPrice": "0.024500", - "Timestamp": "2019-10-15T09:42:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.713800", + "Timestamp": "2024-05-16T12:32:03.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.metal-24xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066100", - "Timestamp": "2019-10-15T09:42:44.000Z" + "SpotPrice": "1.592100", + "Timestamp": "2024-05-16T12:32:01.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3a.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066200", - "Timestamp": "2019-10-15T09:42:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.587100", + "Timestamp": "2024-05-16T12:32:01.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3a.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066100", - "Timestamp": "2019-10-15T09:42:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.462100", + "Timestamp": "2024-05-16T12:32:01.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3a.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.106100", - "Timestamp": "2019-10-15T09:42:44.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.389000", + "Timestamp": "2024-05-16T12:32:00.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.106200", - "Timestamp": "2019-10-15T09:42:44.000Z" + "SpotPrice": "0.359000", + "Timestamp": "2024-05-16T12:32:00.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3a.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.106100", - "Timestamp": "2019-10-15T09:42:44.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.259000", + "Timestamp": "2024-05-16T12:32:00.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3a.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006100", - "Timestamp": "2019-10-15T09:42:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098000", + "Timestamp": "2024-05-16T12:32:00.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3a.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006200", - "Timestamp": "2019-10-15T09:42:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094000", + "Timestamp": "2024-05-16T12:32:00.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006100", - "Timestamp": "2019-10-15T09:42:44.000Z" + "SpotPrice": "0.038000", + "Timestamp": "2024-05-16T12:32:00.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.418600", - "Timestamp": "2019-10-15T09:42:40.000Z" + "SpotPrice": "0.143200", + "Timestamp": "2024-05-16T12:32:00.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.050000", - "Timestamp": "2019-10-15T09:42:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139500", + "Timestamp": "2024-05-16T12:32:00.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083200", + "Timestamp": "2024-05-16T12:32:00.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.418600", - "Timestamp": "2019-10-15T09:42:40.000Z" + "SpotPrice": "0.363500", + "Timestamp": "2024-05-16T12:31:59.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.388600", - "Timestamp": "2019-10-15T09:42:40.000Z" + "SpotPrice": "0.358500", + "Timestamp": "2024-05-16T12:31:59.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.020000", - "Timestamp": "2019-10-15T09:42:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.233500", + "Timestamp": "2024-05-16T12:31:59.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.248500", + "Timestamp": "2024-05-16T12:31:56.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.388600", - "Timestamp": "2019-10-15T09:42:40.000Z" + "SpotPrice": "0.244500", + "Timestamp": "2024-05-16T12:31:56.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.288600", - "Timestamp": "2019-10-15T09:42:40.000Z" + "SpotPrice": "0.188500", + "Timestamp": "2024-05-16T12:31:56.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.920000", - "Timestamp": "2019-10-15T09:42:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.466300", + "Timestamp": "2024-05-16T12:31:56.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.288600", - "Timestamp": "2019-10-15T09:42:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.461300", + "Timestamp": "2024-05-16T12:31:56.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.024600", - "Timestamp": "2019-10-15T09:42:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.336300", + "Timestamp": "2024-05-16T12:31:56.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.656000", - "Timestamp": "2019-10-15T09:42:02.000Z" + "SpotPrice": "0.935100", + "Timestamp": "2024-05-16T12:31:55.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.metal", "ProductDescription": "Windows", - "SpotPrice": "1.024600", - "Timestamp": "2019-10-15T09:42:02.000Z" + "SpotPrice": "10.418500", + "Timestamp": "2024-05-16T12:31:52.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.075000", - "Timestamp": "2019-10-15T09:41:54.000Z" + "SpotPrice": "4.167100", + "Timestamp": "2024-05-16T12:31:50.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.075000", - "Timestamp": "2019-10-15T09:41:54.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.162100", + "Timestamp": "2024-05-16T12:31:50.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.037100", + "Timestamp": "2024-05-16T12:31:50.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "inf1.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.075000", - "Timestamp": "2019-10-15T09:41:54.000Z" + "SpotPrice": "0.283300", + "Timestamp": "2024-05-16T12:31:49.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-2c", + "InstanceType": "inf1.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.115000", - "Timestamp": "2019-10-15T09:41:54.000Z" + "SpotPrice": "0.278300", + "Timestamp": "2024-05-16T12:31:49.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t2.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.115000", - "Timestamp": "2019-10-15T09:41:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.153300", + "Timestamp": "2024-05-16T12:31:49.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.658600", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.115000", - "Timestamp": "2019-10-15T09:41:54.000Z" + "SpotPrice": "2.653600", + "Timestamp": "2024-05-16T12:31:44.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.015000", - "Timestamp": "2019-10-15T09:41:54.000Z" + "SpotPrice": "2.528600", + "Timestamp": "2024-05-16T12:31:44.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t2.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.015000", - "Timestamp": "2019-10-15T09:41:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.272600", + "Timestamp": "2024-05-16T12:31:42.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t2.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.015000", - "Timestamp": "2019-10-15T09:41:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267600", + "Timestamp": "2024-05-16T12:31:42.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t2.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.033000", - "Timestamp": "2019-10-15T09:41:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142600", + "Timestamp": "2024-05-16T12:31:42.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t2.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.033000", - "Timestamp": "2019-10-15T09:41:54.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-16T12:31:38.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t2.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.033000", - "Timestamp": "2019-10-15T09:41:54.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093500", + "Timestamp": "2024-05-16T12:31:38.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.379600", - "Timestamp": "2019-10-15T09:40:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037500", + "Timestamp": "2024-05-16T12:31:38.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "z1d.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.379600", - "Timestamp": "2019-10-15T09:40:56.000Z" + "SpotPrice": "0.101400", + "Timestamp": "2024-05-16T12:31:38.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "z1d.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.349600", - "Timestamp": "2019-10-15T09:40:56.000Z" + "SpotPrice": "0.097400", + "Timestamp": "2024-05-16T12:31:38.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.349600", - "Timestamp": "2019-10-15T09:40:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041400", + "Timestamp": "2024-05-16T12:31:38.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.249600", - "Timestamp": "2019-10-15T09:40:56.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.478400", + "Timestamp": "2024-05-16T12:31:37.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.249600", - "Timestamp": "2019-10-15T09:40:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005300", + "Timestamp": "2024-05-16T12:17:50.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "z1d.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.617600", - "Timestamp": "2019-10-15T09:40:43.000Z" + "SpotPrice": "2.952900", + "Timestamp": "2024-05-16T12:17:50.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "z1d.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.metal", "ProductDescription": "Windows", - "SpotPrice": "0.617600", - "Timestamp": "2019-10-15T09:40:43.000Z" + "SpotPrice": "5.093600", + "Timestamp": "2024-05-16T12:17:48.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "z1d.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.617600", - "Timestamp": "2019-10-15T09:40:43.000Z" + "SpotPrice": "0.521400", + "Timestamp": "2024-05-16T12:17:48.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.360000", - "Timestamp": "2019-10-15T09:38:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.881700", + "Timestamp": "2024-05-16T12:17:46.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.360000", - "Timestamp": "2019-10-15T09:38:38.000Z" + "SpotPrice": "3.687700", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.360000", - "Timestamp": "2019-10-15T09:38:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.682700", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "x1e.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.400000", - "Timestamp": "2019-10-15T09:38:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.557700", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "x1e.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.400000", - "Timestamp": "2019-10-15T09:38:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.174400", + "Timestamp": "2024-05-16T12:17:44.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "x1e.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.400000", - "Timestamp": "2019-10-15T09:38:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121400", + "Timestamp": "2024-05-16T12:17:43.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.300000", - "Timestamp": "2019-10-15T09:38:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117700", + "Timestamp": "2024-05-16T12:17:43.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.300000", - "Timestamp": "2019-10-15T09:38:38.000Z" + "SpotPrice": "0.061400", + "Timestamp": "2024-05-16T12:17:43.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.300000", - "Timestamp": "2019-10-15T09:38:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.544100", + "Timestamp": "2024-05-16T12:17:43.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.484000", - "Timestamp": "2019-10-15T09:38:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.539100", + "Timestamp": "2024-05-16T12:17:43.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.484000", - "Timestamp": "2019-10-15T09:38:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.414100", + "Timestamp": "2024-05-16T12:17:43.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "d2.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.484000", - "Timestamp": "2019-10-15T09:38:38.000Z" + "SpotPrice": "0.396400", + "Timestamp": "2024-05-16T12:17:43.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5n.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.281200", - "Timestamp": "2019-10-15T09:38:08.000Z" + "SpotPrice": "3.827900", + "Timestamp": "2024-05-16T12:17:42.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5n.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.251200", - "Timestamp": "2019-10-15T09:38:08.000Z" + "SpotPrice": "3.822900", + "Timestamp": "2024-05-16T12:17:42.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5n.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.151200", - "Timestamp": "2019-10-15T09:38:08.000Z" + "SpotPrice": "3.697900", + "Timestamp": "2024-05-16T12:17:42.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.432300", - "Timestamp": "2019-10-15T09:28:10.000Z" + "SpotPrice": "0.071600", + "Timestamp": "2024-05-16T12:17:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.402300", - "Timestamp": "2019-10-15T09:28:10.000Z" + "SpotPrice": "0.042600", + "Timestamp": "2024-05-16T12:17:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.302300", - "Timestamp": "2019-10-15T09:28:10.000Z" + "SpotPrice": "0.011600", + "Timestamp": "2024-05-16T12:17:41.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006100", - "Timestamp": "2019-10-15T09:21:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270800", + "Timestamp": "2024-05-16T12:17:40.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006100", - "Timestamp": "2019-10-15T09:21:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265800", + "Timestamp": "2024-05-16T12:17:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006100", - "Timestamp": "2019-10-15T09:21:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140800", + "Timestamp": "2024-05-16T12:17:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.073700", - "Timestamp": "2019-10-15T09:17:41.000Z" + "SpotPrice": "3.950200", + "Timestamp": "2024-05-16T12:17:39.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.284300", - "Timestamp": "2019-10-15T09:14:12.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Windows", + "SpotPrice": "4.255600", + "Timestamp": "2024-05-16T12:17:39.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.810000", - "Timestamp": "2019-10-15T09:14:12.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.254300", - "Timestamp": "2019-10-15T09:14:12.000Z" + "SpotPrice": "1.336800", + "Timestamp": "2024-05-16T12:17:39.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.780000", - "Timestamp": "2019-10-15T09:14:12.000Z" + "SpotPrice": "1.331800", + "Timestamp": "2024-05-16T12:17:39.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.154300", - "Timestamp": "2019-10-15T09:14:12.000Z" + "SpotPrice": "1.206800", + "Timestamp": "2024-05-16T12:17:39.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.680000", - "Timestamp": "2019-10-15T09:14:12.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.461200", + "Timestamp": "2024-05-16T12:17:39.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096100", - "Timestamp": "2019-10-15T09:07:35.000Z" + "SpotPrice": "0.334900", + "Timestamp": "2024-05-16T12:17:38.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136100", - "Timestamp": "2019-10-15T09:07:35.000Z" + "SpotPrice": "0.329900", + "Timestamp": "2024-05-16T12:17:38.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036100", - "Timestamp": "2019-10-15T09:07:35.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.256000", - "Timestamp": "2019-10-15T09:04:49.000Z" - }, - { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.256000", - "Timestamp": "2019-10-15T09:04:49.000Z" + "SpotPrice": "0.204900", + "Timestamp": "2024-05-16T12:17:38.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.256000", - "Timestamp": "2019-10-15T09:04:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.490100", + "Timestamp": "2024-05-16T12:17:38.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.238800", - "Timestamp": "2019-10-15T09:03:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.485100", + "Timestamp": "2024-05-16T12:17:38.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.238800", - "Timestamp": "2019-10-15T09:03:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.360100", + "Timestamp": "2024-05-16T12:17:38.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.238800", - "Timestamp": "2019-10-15T09:03:50.000Z" + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T12:17:38.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.208800", - "Timestamp": "2019-10-15T09:03:50.000Z" + "SpotPrice": "0.100400", + "Timestamp": "2024-05-16T12:17:38.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.208800", - "Timestamp": "2019-10-15T09:03:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044400", + "Timestamp": "2024-05-16T12:17:38.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.208800", - "Timestamp": "2019-10-15T09:03:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.620200", + "Timestamp": "2024-05-16T12:17:38.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.108800", - "Timestamp": "2019-10-15T09:03:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.615200", + "Timestamp": "2024-05-16T12:17:38.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.108800", - "Timestamp": "2019-10-15T09:03:50.000Z" + "SpotPrice": "1.490200", + "Timestamp": "2024-05-16T12:17:38.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.108800", - "Timestamp": "2019-10-15T09:03:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167300", + "Timestamp": "2024-05-16T12:17:37.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.574400", - "Timestamp": "2019-10-15T09:02:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.207300", + "Timestamp": "2024-05-16T12:17:37.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.574400", - "Timestamp": "2019-10-15T09:02:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T12:17:37.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.574400", - "Timestamp": "2019-10-15T09:02:25.000Z" + "SpotPrice": "1.962100", + "Timestamp": "2024-05-16T12:17:37.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096800", - "Timestamp": "2019-10-15T08:54:08.000Z" + "SpotPrice": "0.413900", + "Timestamp": "2024-05-16T12:17:36.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136800", - "Timestamp": "2019-10-15T08:54:08.000Z" + "SpotPrice": "0.408900", + "Timestamp": "2024-05-16T12:17:36.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036800", - "Timestamp": "2019-10-15T08:54:08.000Z" + "SpotPrice": "0.283900", + "Timestamp": "2024-05-16T12:17:36.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t2.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096100", - "Timestamp": "2019-10-15T08:44:33.000Z" + "SpotPrice": "0.094000", + "Timestamp": "2024-05-16T12:17:36.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t2.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136100", - "Timestamp": "2019-10-15T08:44:33.000Z" + "SpotPrice": "0.134000", + "Timestamp": "2024-05-16T12:17:36.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t2.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036100", - "Timestamp": "2019-10-15T08:44:33.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.102200", - "Timestamp": "2019-10-15T08:42:29.000Z" + "SpotPrice": "0.034000", + "Timestamp": "2024-05-16T12:17:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.102200", - "Timestamp": "2019-10-15T08:42:29.000Z" + "SpotPrice": "0.692300", + "Timestamp": "2024-05-16T12:17:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.102200", - "Timestamp": "2019-10-15T08:42:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.687300", + "Timestamp": "2024-05-16T12:17:36.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.142200", - "Timestamp": "2019-10-15T08:42:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.562300", + "Timestamp": "2024-05-16T12:17:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.142200", - "Timestamp": "2019-10-15T08:42:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.267200", + "Timestamp": "2024-05-16T12:17:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.142200", - "Timestamp": "2019-10-15T08:42:29.000Z" + "SpotPrice": "1.262200", + "Timestamp": "2024-05-16T12:17:36.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.042200", - "Timestamp": "2019-10-15T08:42:29.000Z" + "SpotPrice": "1.137200", + "Timestamp": "2024-05-16T12:17:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.042200", - "Timestamp": "2019-10-15T08:42:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073800", + "Timestamp": "2024-05-16T12:17:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.042200", - "Timestamp": "2019-10-15T08:42:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070100", + "Timestamp": "2024-05-16T12:17:36.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m1.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.063500", - "Timestamp": "2019-10-15T08:42:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013800", + "Timestamp": "2024-05-16T12:17:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m1.medium", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.063500", - "Timestamp": "2019-10-15T08:42:28.000Z" + "SpotPrice": "1.656400", + "Timestamp": "2024-05-16T12:17:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m1.medium", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.metal", "ProductDescription": "Windows", - "SpotPrice": "0.063500", - "Timestamp": "2019-10-15T08:42:28.000Z" + "SpotPrice": "5.465600", + "Timestamp": "2024-05-16T12:17:36.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.143600", - "Timestamp": "2019-10-15T08:42:24.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.381900", + "Timestamp": "2024-05-16T12:17:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.143600", - "Timestamp": "2019-10-15T08:42:24.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.376900", + "Timestamp": "2024-05-16T12:17:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.143600", - "Timestamp": "2019-10-15T08:42:24.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.251900", + "Timestamp": "2024-05-16T12:17:36.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.134200", - "Timestamp": "2019-10-15T08:41:56.000Z" + "SpotPrice": "2.713600", + "Timestamp": "2024-05-16T12:17:35.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.134200", - "Timestamp": "2019-10-15T08:41:56.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.996700", + "Timestamp": "2024-05-16T12:17:35.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.134200", - "Timestamp": "2019-10-15T08:41:56.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.991700", + "Timestamp": "2024-05-16T12:17:35.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m1.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.069500", - "Timestamp": "2019-10-15T08:41:56.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.866700", + "Timestamp": "2024-05-16T12:17:35.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m1.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.069500", - "Timestamp": "2019-10-15T08:41:56.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222800", + "Timestamp": "2024-05-16T12:17:35.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m1.medium", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2idn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.069500", - "Timestamp": "2019-10-15T08:41:56.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m1.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.109500", - "Timestamp": "2019-10-15T08:41:56.000Z" + "SpotPrice": "1.871200", + "Timestamp": "2024-05-16T12:17:35.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m1.medium", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2idn.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.109500", - "Timestamp": "2019-10-15T08:41:56.000Z" + "SpotPrice": "1.866200", + "Timestamp": "2024-05-16T12:17:35.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m1.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.109500", - "Timestamp": "2019-10-15T08:41:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.741200", + "Timestamp": "2024-05-16T12:17:35.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m1.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.009500", - "Timestamp": "2019-10-15T08:41:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.778400", + "Timestamp": "2024-05-16T12:17:35.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m1.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.009500", - "Timestamp": "2019-10-15T08:41:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.773400", + "Timestamp": "2024-05-16T12:17:35.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m1.medium", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.009500", - "Timestamp": "2019-10-15T08:41:56.000Z" + "SpotPrice": "3.648400", + "Timestamp": "2024-05-16T12:17:35.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t2.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.505400", - "Timestamp": "2019-10-15T08:41:54.000Z" + "SpotPrice": "0.113700", + "Timestamp": "2024-05-16T12:17:34.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.505400", - "Timestamp": "2019-10-15T08:41:54.000Z" + "SpotPrice": "0.414000", + "Timestamp": "2024-05-16T12:17:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.505400", - "Timestamp": "2019-10-15T08:41:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.726000", + "Timestamp": "2024-05-16T12:17:34.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.111600", - "Timestamp": "2019-10-15T08:41:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.721000", + "Timestamp": "2024-05-16T12:17:34.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.111600", - "Timestamp": "2019-10-15T08:41:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.596000", + "Timestamp": "2024-05-16T12:17:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.111600", - "Timestamp": "2019-10-15T08:41:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.466800", + "Timestamp": "2024-05-16T12:17:34.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.151600", - "Timestamp": "2019-10-15T08:41:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.483500", + "Timestamp": "2024-05-16T12:17:33.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.151600", - "Timestamp": "2019-10-15T08:41:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.687900", + "Timestamp": "2024-05-16T12:17:33.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.151600", - "Timestamp": "2019-10-15T08:41:38.000Z" + "SpotPrice": "0.682900", + "Timestamp": "2024-05-16T12:17:33.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.051600", - "Timestamp": "2019-10-15T08:41:38.000Z" + "SpotPrice": "0.557900", + "Timestamp": "2024-05-16T12:17:33.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.051600", - "Timestamp": "2019-10-15T08:41:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088600", + "Timestamp": "2024-05-16T12:17:33.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084900", + "Timestamp": "2024-05-16T12:17:33.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.051600", - "Timestamp": "2019-10-15T08:41:38.000Z" + "SpotPrice": "0.028600", + "Timestamp": "2024-05-16T12:17:33.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.432300", - "Timestamp": "2019-10-15T08:30:11.000Z" + "SpotPrice": "0.574600", + "Timestamp": "2024-05-16T12:17:33.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.402300", - "Timestamp": "2019-10-15T08:30:11.000Z" + "SpotPrice": "0.569600", + "Timestamp": "2024-05-16T12:17:33.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.302300", - "Timestamp": "2019-10-15T08:30:11.000Z" + "SpotPrice": "0.444600", + "Timestamp": "2024-05-16T12:17:33.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097800", - "Timestamp": "2019-10-15T08:13:14.000Z" + "SpotPrice": "1.239100", + "Timestamp": "2024-05-16T12:17:32.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137800", - "Timestamp": "2019-10-15T08:13:14.000Z" + "SpotPrice": "1.234100", + "Timestamp": "2024-05-16T12:17:32.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037800", - "Timestamp": "2019-10-15T08:13:14.000Z" - }, - { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.099000", - "Timestamp": "2019-10-15T08:06:43.000Z" - }, - { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.099000", - "Timestamp": "2019-10-15T08:06:43.000Z" + "SpotPrice": "1.109100", + "Timestamp": "2024-05-16T12:17:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.024600", - "Timestamp": "2019-10-15T08:05:57.000Z" + "SpotPrice": "5.283500", + "Timestamp": "2024-05-16T12:17:32.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.024600", - "Timestamp": "2019-10-15T08:05:57.000Z" + "SpotPrice": "2.660500", + "Timestamp": "2024-05-16T12:17:32.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.024600", - "Timestamp": "2019-10-15T08:05:57.000Z" + "SpotPrice": "5.208600", + "Timestamp": "2024-05-16T12:17:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.527100", - "Timestamp": "2019-10-15T08:04:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.047000", + "Timestamp": "2024-05-16T12:17:32.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.527100", - "Timestamp": "2019-10-15T08:04:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.042000", + "Timestamp": "2024-05-16T12:17:32.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.527100", - "Timestamp": "2019-10-15T08:04:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.917000", + "Timestamp": "2024-05-16T12:17:32.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061600", - "Timestamp": "2019-10-15T08:01:03.000Z" + "SpotPrice": "3.210500", + "Timestamp": "2024-05-16T12:17:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.101600", - "Timestamp": "2019-10-15T08:01:03.000Z" + "SpotPrice": "3.205500", + "Timestamp": "2024-05-16T12:17:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001600", - "Timestamp": "2019-10-15T08:01:03.000Z" + "SpotPrice": "3.080500", + "Timestamp": "2024-05-16T12:17:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096100", - "Timestamp": "2019-10-15T07:42:58.000Z" + "SpotPrice": "0.710600", + "Timestamp": "2024-05-16T12:17:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136100", - "Timestamp": "2019-10-15T07:42:58.000Z" + "SpotPrice": "0.705600", + "Timestamp": "2024-05-16T12:17:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036100", - "Timestamp": "2019-10-15T07:42:58.000Z" + "SpotPrice": "0.580600", + "Timestamp": "2024-05-16T12:17:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.284300", - "Timestamp": "2019-10-15T07:42:54.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.271300", + "Timestamp": "2024-05-16T12:17:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.284300", - "Timestamp": "2019-10-15T07:42:54.000Z" + "SpotPrice": "3.031800", + "Timestamp": "2024-05-16T12:17:31.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.284300", - "Timestamp": "2019-10-15T07:42:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.026800", + "Timestamp": "2024-05-16T12:17:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.254300", - "Timestamp": "2019-10-15T07:42:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.901800", + "Timestamp": "2024-05-16T12:17:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.254300", - "Timestamp": "2019-10-15T07:42:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157000", + "Timestamp": "2024-05-16T12:17:31.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r3.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.254300", - "Timestamp": "2019-10-15T07:42:54.000Z" + "SpotPrice": "0.197000", + "Timestamp": "2024-05-16T12:17:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r3.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.154300", - "Timestamp": "2019-10-15T07:42:54.000Z" + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T12:17:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.154300", - "Timestamp": "2019-10-15T07:42:54.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.334300", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.154300", - "Timestamp": "2019-10-15T07:42:54.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.304300", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.098300", - "Timestamp": "2019-10-15T07:42:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.203300", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.metal", "ProductDescription": "Windows", - "SpotPrice": "4.098300", - "Timestamp": "2019-10-15T07:42:46.000Z" + "SpotPrice": "7.375000", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.098300", - "Timestamp": "2019-10-15T07:42:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.961000", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c1.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.307200", - "Timestamp": "2019-10-15T07:42:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.956000", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c1.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.307200", - "Timestamp": "2019-10-15T07:42:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.831000", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.307200", - "Timestamp": "2019-10-15T07:42:02.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "f1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.486000", - "Timestamp": "2019-10-15T07:41:38.000Z" + "SpotPrice": "6.116300", + "Timestamp": "2024-05-16T12:17:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "f1.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.486000", - "Timestamp": "2019-10-15T07:41:38.000Z" + "SpotPrice": "0.743800", + "Timestamp": "2024-05-16T12:17:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "f1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.486000", - "Timestamp": "2019-10-15T07:41:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.738800", + "Timestamp": "2024-05-16T12:17:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "f1.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "4.456000", - "Timestamp": "2019-10-15T07:41:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.613800", + "Timestamp": "2024-05-16T12:17:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "f1.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "4.456000", - "Timestamp": "2019-10-15T07:41:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.728200", + "Timestamp": "2024-05-16T12:17:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "f1.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "4.456000", - "Timestamp": "2019-10-15T07:41:38.000Z" + "SpotPrice": "0.723200", + "Timestamp": "2024-05-16T12:17:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "f1.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.356000", - "Timestamp": "2019-10-15T07:41:38.000Z" + "SpotPrice": "0.598200", + "Timestamp": "2024-05-16T12:17:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "f1.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.356000", - "Timestamp": "2019-10-15T07:41:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.878000", + "Timestamp": "2024-05-16T12:17:28.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "f1.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.356000", - "Timestamp": "2019-10-15T07:41:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.873000", + "Timestamp": "2024-05-16T12:17:28.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.930000", - "Timestamp": "2019-10-15T07:40:00.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.748000", + "Timestamp": "2024-05-16T12:17:28.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "x1e.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.930000", - "Timestamp": "2019-10-15T07:40:00.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "4.900000", - "Timestamp": "2019-10-15T07:40:00.000Z" + "SpotPrice": "1.610000", + "Timestamp": "2024-05-16T12:17:28.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "x1e.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "4.900000", - "Timestamp": "2019-10-15T07:40:00.000Z" + "SpotPrice": "1.605000", + "Timestamp": "2024-05-16T12:17:28.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "x1e.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.800000", - "Timestamp": "2019-10-15T07:40:00.000Z" + "SpotPrice": "1.480000", + "Timestamp": "2024-05-16T12:17:28.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.800000", - "Timestamp": "2019-10-15T07:40:00.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.648200", + "Timestamp": "2024-05-16T12:17:28.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "7.744000", - "Timestamp": "2019-10-15T07:39:52.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.643200", + "Timestamp": "2024-05-16T12:17:28.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "7.744000", - "Timestamp": "2019-10-15T07:39:52.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.518200", + "Timestamp": "2024-05-16T12:17:28.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.129800", - "Timestamp": "2019-10-15T07:32:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.665500", + "Timestamp": "2024-05-16T12:17:27.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.259600", - "Timestamp": "2019-10-15T07:31:54.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.635500", + "Timestamp": "2024-05-16T12:17:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.259600", - "Timestamp": "2019-10-15T07:14:54.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.535500", + "Timestamp": "2024-05-16T12:17:27.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.metal-48xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.995700", - "Timestamp": "2019-10-15T07:13:35.000Z" + "SpotPrice": "3.746100", + "Timestamp": "2024-05-16T12:17:27.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.metal-48xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.965700", - "Timestamp": "2019-10-15T07:13:35.000Z" + "SpotPrice": "3.741100", + "Timestamp": "2024-05-16T12:17:27.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.865700", - "Timestamp": "2019-10-15T07:13:35.000Z" + "SpotPrice": "3.616100", + "Timestamp": "2024-05-16T12:17:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5dn.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.861400", - "Timestamp": "2019-10-15T07:10:58.000Z" + "SpotPrice": "0.566900", + "Timestamp": "2024-05-16T12:17:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5dn.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.831400", - "Timestamp": "2019-10-15T07:10:58.000Z" + "SpotPrice": "0.561900", + "Timestamp": "2024-05-16T12:17:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5dn.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.731400", - "Timestamp": "2019-10-15T07:10:58.000Z" + "SpotPrice": "0.436900", + "Timestamp": "2024-05-16T12:17:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.344900", - "Timestamp": "2019-10-15T06:43:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.669000", + "Timestamp": "2024-05-16T12:17:25.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.344900", - "Timestamp": "2019-10-15T06:43:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.664000", + "Timestamp": "2024-05-16T12:17:25.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.344900", - "Timestamp": "2019-10-15T06:43:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.539000", + "Timestamp": "2024-05-16T12:17:25.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122300", - "Timestamp": "2019-10-15T06:42:04.000Z" + "SpotPrice": "0.713100", + "Timestamp": "2024-05-16T12:17:24.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122300", - "Timestamp": "2019-10-15T06:42:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.708100", + "Timestamp": "2024-05-16T12:17:24.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.162300", - "Timestamp": "2019-10-15T06:42:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.583100", + "Timestamp": "2024-05-16T12:17:24.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.162300", - "Timestamp": "2019-10-15T06:42:04.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.063600", + "Timestamp": "2024-05-16T12:17:23.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062300", - "Timestamp": "2019-10-15T06:42:04.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.058600", + "Timestamp": "2024-05-16T12:17:23.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062300", - "Timestamp": "2019-10-15T06:42:04.000Z" + "SpotPrice": "1.933600", + "Timestamp": "2024-05-16T12:17:23.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.199300", - "Timestamp": "2019-10-15T06:41:58.000Z" + "SpotPrice": "3.497800", + "Timestamp": "2024-05-16T12:17:22.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.199300", - "Timestamp": "2019-10-15T06:41:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.699900", + "Timestamp": "2024-05-16T12:17:21.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.199300", - "Timestamp": "2019-10-15T06:41:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.694900", + "Timestamp": "2024-05-16T12:17:21.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.530900", - "Timestamp": "2019-10-15T06:41:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.569900", + "Timestamp": "2024-05-16T12:17:21.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.530900", - "Timestamp": "2019-10-15T06:41:29.000Z" + "SpotPrice": "0.320600", + "Timestamp": "2024-05-16T12:17:21.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.530900", - "Timestamp": "2019-10-15T06:41:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.315600", + "Timestamp": "2024-05-16T12:17:21.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.500900", - "Timestamp": "2019-10-15T06:41:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190600", + "Timestamp": "2024-05-16T12:17:21.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.500900", - "Timestamp": "2019-10-15T06:41:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136600", + "Timestamp": "2024-05-16T12:17:21.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.500900", - "Timestamp": "2019-10-15T06:41:29.000Z" + "SpotPrice": "0.176600", + "Timestamp": "2024-05-16T12:17:21.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.400900", - "Timestamp": "2019-10-15T06:41:29.000Z" + "SpotPrice": "0.076600", + "Timestamp": "2024-05-16T12:17:21.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.400900", - "Timestamp": "2019-10-15T06:41:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.441400", + "Timestamp": "2024-05-16T12:17:21.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.436400", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.3xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.400900", - "Timestamp": "2019-10-15T06:41:29.000Z" + "SpotPrice": "0.311400", + "Timestamp": "2024-05-16T12:17:21.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.010800", - "Timestamp": "2019-10-15T06:40:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.672600", + "Timestamp": "2024-05-16T12:17:21.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.010800", - "Timestamp": "2019-10-15T06:40:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.642600", + "Timestamp": "2024-05-16T12:17:21.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.010800", - "Timestamp": "2019-10-15T06:40:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.542600", + "Timestamp": "2024-05-16T12:17:21.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.268000", - "Timestamp": "2019-10-15T06:32:52.000Z" + "SpotPrice": "0.137700", + "Timestamp": "2024-05-16T12:17:20.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.238000", - "Timestamp": "2019-10-15T06:32:52.000Z" + "SpotPrice": "0.134000", + "Timestamp": "2024-05-16T12:17:20.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.138000", - "Timestamp": "2019-10-15T06:32:52.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.114900", - "Timestamp": "2019-10-15T06:17:07.000Z" + "SpotPrice": "0.077700", + "Timestamp": "2024-05-16T12:17:20.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.293300", - "Timestamp": "2019-10-15T06:15:09.000Z" + "SpotPrice": "0.096300", + "Timestamp": "2024-05-16T12:17:19.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.263300", - "Timestamp": "2019-10-15T06:15:09.000Z" + "SpotPrice": "0.092600", + "Timestamp": "2024-05-16T12:17:19.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.163300", - "Timestamp": "2019-10-15T06:15:09.000Z" + "SpotPrice": "0.036300", + "Timestamp": "2024-05-16T12:17:19.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.128000", - "Timestamp": "2019-10-15T06:05:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.188100", + "Timestamp": "2024-05-16T12:17:18.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.128000", - "Timestamp": "2019-10-15T06:05:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.184100", + "Timestamp": "2024-05-16T12:17:18.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128100", + "Timestamp": "2024-05-16T12:17:18.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.128000", - "Timestamp": "2019-10-15T06:05:32.000Z" + "SpotPrice": "2.751400", + "Timestamp": "2024-05-16T12:17:16.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5dn.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r3.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.153300", - "Timestamp": "2019-10-15T06:05:17.000Z" + "SpotPrice": "1.637100", + "Timestamp": "2024-05-16T12:17:16.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.114400", - "Timestamp": "2019-10-15T06:04:44.000Z" + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T12:17:15.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.114400", - "Timestamp": "2019-10-15T06:04:44.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-16T12:17:15.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.114400", - "Timestamp": "2019-10-15T06:04:44.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042800", + "Timestamp": "2024-05-16T12:17:15.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.154400", - "Timestamp": "2019-10-15T06:04:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.543700", + "Timestamp": "2024-05-16T12:17:15.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.154400", - "Timestamp": "2019-10-15T06:04:44.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.475900", + "Timestamp": "2024-05-16T12:17:15.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.154400", - "Timestamp": "2019-10-15T06:04:44.000Z" + "SpotPrice": "0.513700", + "Timestamp": "2024-05-16T12:17:15.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.054400", - "Timestamp": "2019-10-15T06:04:44.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.445900", + "Timestamp": "2024-05-16T12:17:15.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.054400", - "Timestamp": "2019-10-15T06:04:44.000Z" + "SpotPrice": "0.413700", + "Timestamp": "2024-05-16T12:17:15.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.054400", - "Timestamp": "2019-10-15T06:04:44.000Z" + "SpotPrice": "0.345900", + "Timestamp": "2024-05-16T12:17:15.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i2.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.298800", - "Timestamp": "2019-10-15T06:03:24.000Z" + "SpotPrice": "0.875000", + "Timestamp": "2024-05-16T12:17:14.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.298800", - "Timestamp": "2019-10-15T06:03:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.845000", + "Timestamp": "2024-05-16T12:17:14.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g3s.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.338800", - "Timestamp": "2019-10-15T06:03:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.745000", + "Timestamp": "2024-05-16T12:17:14.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g3s.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.338800", - "Timestamp": "2019-10-15T06:03:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.515800", + "Timestamp": "2024-05-16T12:17:14.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.238800", - "Timestamp": "2019-10-15T06:03:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.510800", + "Timestamp": "2024-05-16T12:17:14.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.238800", - "Timestamp": "2019-10-15T06:03:24.000Z" + "SpotPrice": "3.385800", + "Timestamp": "2024-05-16T12:17:14.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.422800", - "Timestamp": "2019-10-15T06:02:59.000Z" + "SpotPrice": "2.513400", + "Timestamp": "2024-05-16T12:17:13.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.422800", - "Timestamp": "2019-10-15T06:02:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120400", + "Timestamp": "2024-05-16T12:17:12.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.422800", - "Timestamp": "2019-10-15T06:02:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116700", + "Timestamp": "2024-05-16T12:17:12.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.098300", - "Timestamp": "2019-10-15T06:01:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060400", + "Timestamp": "2024-05-16T12:17:12.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.129800", - "Timestamp": "2019-10-15T06:00:05.000Z" + "SpotPrice": "3.132100", + "Timestamp": "2024-05-16T12:17:12.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.519200", - "Timestamp": "2019-10-15T05:48:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.657500", + "Timestamp": "2024-05-16T12:17:11.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.857800", - "Timestamp": "2019-10-15T05:43:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.652500", + "Timestamp": "2024-05-16T12:17:11.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.857800", - "Timestamp": "2019-10-15T05:43:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.527500", + "Timestamp": "2024-05-16T12:17:11.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.857800", - "Timestamp": "2019-10-15T05:43:44.000Z" + "SpotPrice": "2.849200", + "Timestamp": "2024-05-16T12:17:10.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.827800", - "Timestamp": "2019-10-15T05:43:44.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.199000", + "Timestamp": "2024-05-16T12:17:10.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.827800", - "Timestamp": "2019-10-15T05:43:44.000Z" + "SpotPrice": "2.844200", + "Timestamp": "2024-05-16T12:17:10.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.827800", - "Timestamp": "2019-10-15T05:43:44.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.727800", - "Timestamp": "2019-10-15T05:43:44.000Z" + "SpotPrice": "3.194000", + "Timestamp": "2024-05-16T12:17:10.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.727800", - "Timestamp": "2019-10-15T05:43:44.000Z" + "SpotPrice": "2.719200", + "Timestamp": "2024-05-16T12:17:10.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.727800", - "Timestamp": "2019-10-15T05:43:44.000Z" + "SpotPrice": "3.069000", + "Timestamp": "2024-05-16T12:17:10.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.199800", - "Timestamp": "2019-10-15T05:43:15.000Z" + "SpotPrice": "0.260900", + "Timestamp": "2024-05-16T12:17:09.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.199800", - "Timestamp": "2019-10-15T05:43:15.000Z" + "SpotPrice": "0.932100", + "Timestamp": "2024-05-16T12:17:09.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.199800", - "Timestamp": "2019-10-15T05:43:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.270200", + "Timestamp": "2024-05-16T12:17:09.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.730000", - "Timestamp": "2019-10-15T05:42:16.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.265200", + "Timestamp": "2024-05-16T12:17:09.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.730000", - "Timestamp": "2019-10-15T05:42:16.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.140200", + "Timestamp": "2024-05-16T12:17:09.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "x1e.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.730000", - "Timestamp": "2019-10-15T05:42:16.000Z" + "SpotPrice": "0.473000", + "Timestamp": "2024-05-16T12:17:09.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "x1e.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.700000", - "Timestamp": "2019-10-15T05:42:16.000Z" + "SpotPrice": "0.443000", + "Timestamp": "2024-05-16T12:17:09.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.700000", - "Timestamp": "2019-10-15T05:42:16.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.343000", + "Timestamp": "2024-05-16T12:17:09.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.700000", - "Timestamp": "2019-10-15T05:42:16.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.491900", + "Timestamp": "2024-05-16T12:17:08.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.600000", - "Timestamp": "2019-10-15T05:42:16.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088700", + "Timestamp": "2024-05-16T12:17:08.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.600000", - "Timestamp": "2019-10-15T05:42:16.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085000", + "Timestamp": "2024-05-16T12:17:08.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "x1e.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.600000", - "Timestamp": "2019-10-15T05:42:16.000Z" + "SpotPrice": "0.028700", + "Timestamp": "2024-05-16T12:17:08.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.255300", - "Timestamp": "2019-10-15T05:42:14.000Z" + "SpotPrice": "0.258500", + "Timestamp": "2024-05-16T12:17:08.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.255300", - "Timestamp": "2019-10-15T05:42:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.253500", + "Timestamp": "2024-05-16T12:17:08.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128500", + "Timestamp": "2024-05-16T12:17:08.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.255300", - "Timestamp": "2019-10-15T05:42:14.000Z" + "SpotPrice": "0.399900", + "Timestamp": "2024-05-16T12:17:08.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.225300", - "Timestamp": "2019-10-15T05:42:14.000Z" + "SpotPrice": "0.394900", + "Timestamp": "2024-05-16T12:17:08.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.225300", - "Timestamp": "2019-10-15T05:42:14.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.269900", + "Timestamp": "2024-05-16T12:17:08.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.011200", + "Timestamp": "2024-05-16T12:17:08.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.225300", - "Timestamp": "2019-10-15T05:42:14.000Z" + "SpotPrice": "2.006200", + "Timestamp": "2024-05-16T12:17:08.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.125300", - "Timestamp": "2019-10-15T05:42:14.000Z" + "SpotPrice": "1.881200", + "Timestamp": "2024-05-16T12:17:08.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.125300", - "Timestamp": "2019-10-15T05:42:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.640100", + "Timestamp": "2024-05-16T12:17:07.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.635100", + "Timestamp": "2024-05-16T12:17:07.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.125300", - "Timestamp": "2019-10-15T05:42:14.000Z" + "SpotPrice": "2.510100", + "Timestamp": "2024-05-16T12:17:07.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "x1e.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.968000", - "Timestamp": "2019-10-15T05:41:57.000Z" + "SpotPrice": "3.480000", + "Timestamp": "2024-05-16T12:17:06.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "x1e.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.968000", - "Timestamp": "2019-10-15T05:41:57.000Z" + "SpotPrice": "0.869500", + "Timestamp": "2024-05-16T12:17:06.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.968000", - "Timestamp": "2019-10-15T05:41:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.648500", + "Timestamp": "2024-05-16T12:17:06.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.metal", - "ProductDescription": "Windows", - "SpotPrice": "6.065000", - "Timestamp": "2019-10-15T05:41:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.643500", + "Timestamp": "2024-05-16T12:17:06.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.518500", + "Timestamp": "2024-05-16T12:17:06.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.065000", - "Timestamp": "2019-10-15T05:41:53.000Z" + "SpotPrice": "0.427000", + "Timestamp": "2024-05-16T12:17:05.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.476500", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.472800", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.416500", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.259300", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.255300", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199300", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.065000", - "Timestamp": "2019-10-15T05:41:53.000Z" + "SpotPrice": "5.318400", + "Timestamp": "2024-05-16T12:17:03.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.779000", - "Timestamp": "2019-10-15T05:41:53.000Z" + "SpotPrice": "0.138000", + "Timestamp": "2024-05-16T12:17:02.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.779000", - "Timestamp": "2019-10-15T05:41:53.000Z" + "SpotPrice": "0.139600", + "Timestamp": "2024-05-16T12:17:02.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.779000", - "Timestamp": "2019-10-15T05:41:53.000Z" + "SpotPrice": "0.146000", + "Timestamp": "2024-05-16T12:17:02.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.749000", - "Timestamp": "2019-10-15T05:41:53.000Z" + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T12:17:02.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.749000", - "Timestamp": "2019-10-15T05:41:53.000Z" + "SpotPrice": "0.135900", + "Timestamp": "2024-05-16T12:17:02.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.749000", - "Timestamp": "2019-10-15T05:41:53.000Z" + "SpotPrice": "0.142300", + "Timestamp": "2024-05-16T12:17:02.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.649000", - "Timestamp": "2019-10-15T05:41:53.000Z" + "SpotPrice": "0.078000", + "Timestamp": "2024-05-16T12:17:02.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.649000", - "Timestamp": "2019-10-15T05:41:53.000Z" + "SpotPrice": "0.079600", + "Timestamp": "2024-05-16T12:17:02.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.649000", - "Timestamp": "2019-10-15T05:41:53.000Z" + "SpotPrice": "0.086000", + "Timestamp": "2024-05-16T12:17:02.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.265300", - "Timestamp": "2019-10-15T05:41:42.000Z" + "SpotPrice": "0.429000", + "Timestamp": "2024-05-16T12:16:59.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.265300", - "Timestamp": "2019-10-15T05:41:42.000Z" + "SpotPrice": "10.761700", + "Timestamp": "2024-05-16T12:16:58.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "h1.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.265300", - "Timestamp": "2019-10-15T05:41:42.000Z" + "SpotPrice": "2.130800", + "Timestamp": "2024-05-16T12:16:58.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.519200", - "Timestamp": "2019-10-15T05:39:38.000Z" + "SpotPrice": "10.922700", + "Timestamp": "2024-05-16T12:16:57.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.229900", - "Timestamp": "2019-10-15T05:34:59.000Z" + "SpotPrice": "0.868700", + "Timestamp": "2024-05-16T12:16:57.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.098600", - "Timestamp": "2019-10-15T05:31:47.000Z" + "SpotPrice": "0.129900", + "Timestamp": "2024-05-16T12:16:56.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.138600", - "Timestamp": "2019-10-15T05:31:47.000Z" + "SpotPrice": "0.126200", + "Timestamp": "2024-05-16T12:16:56.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.038600", - "Timestamp": "2019-10-15T05:31:47.000Z" + "SpotPrice": "0.069900", + "Timestamp": "2024-05-16T12:16:56.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "trn1.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.137500", - "Timestamp": "2019-10-15T05:29:07.000Z" + "SpotPrice": "3.127200", + "Timestamp": "2024-05-16T12:16:55.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "trn1.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.177500", - "Timestamp": "2019-10-15T05:29:07.000Z" + "SpotPrice": "3.097200", + "Timestamp": "2024-05-16T12:16:55.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "trn1.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.077500", - "Timestamp": "2019-10-15T05:29:07.000Z" + "SpotPrice": "2.997200", + "Timestamp": "2024-05-16T12:16:55.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.073700", - "Timestamp": "2019-10-15T05:16:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.747800", + "Timestamp": "2024-05-16T12:16:54.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.505400", - "Timestamp": "2019-10-15T05:05:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "h1.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.717800", + "Timestamp": "2024-05-16T12:16:54.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.505400", - "Timestamp": "2019-10-15T05:05:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.617800", + "Timestamp": "2024-05-16T12:16:54.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.505400", - "Timestamp": "2019-10-15T05:05:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.333700", + "Timestamp": "2024-05-16T12:16:54.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.256000", - "Timestamp": "2019-10-15T05:04:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.328700", + "Timestamp": "2024-05-16T12:16:54.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.256000", - "Timestamp": "2019-10-15T05:04:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.203700", + "Timestamp": "2024-05-16T12:16:54.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.metal", "ProductDescription": "Windows", - "SpotPrice": "0.256000", - "Timestamp": "2019-10-15T05:04:56.000Z" + "SpotPrice": "4.990700", + "Timestamp": "2024-05-16T12:16:54.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r3.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.748400", - "Timestamp": "2019-10-15T05:04:36.000Z" + "SpotPrice": "0.559900", + "Timestamp": "2024-05-16T12:16:52.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.748400", - "Timestamp": "2019-10-15T05:04:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.529900", + "Timestamp": "2024-05-16T12:16:52.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.718400", - "Timestamp": "2019-10-15T05:04:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.427900", + "Timestamp": "2024-05-16T12:16:52.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.448500", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.718400", - "Timestamp": "2019-10-15T05:04:36.000Z" + "SpotPrice": "0.443500", + "Timestamp": "2024-05-16T12:16:49.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.618400", - "Timestamp": "2019-10-15T05:04:36.000Z" + "SpotPrice": "0.318500", + "Timestamp": "2024-05-16T12:16:49.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176200", + "Timestamp": "2024-05-16T12:16:48.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172200", + "Timestamp": "2024-05-16T12:16:48.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.618400", - "Timestamp": "2019-10-15T05:04:36.000Z" + "SpotPrice": "0.116200", + "Timestamp": "2024-05-16T12:16:48.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.274400", - "Timestamp": "2019-10-15T05:03:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.011500", + "Timestamp": "2024-05-16T12:16:47.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.274400", - "Timestamp": "2019-10-15T05:03:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.006500", + "Timestamp": "2024-05-16T12:16:47.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.274400", - "Timestamp": "2019-10-15T05:03:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.881500", + "Timestamp": "2024-05-16T12:16:47.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "im4gn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.336400", - "Timestamp": "2019-10-15T04:49:32.000Z" + "SpotPrice": "0.787000", + "Timestamp": "2024-05-16T12:16:46.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "im4gn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.306400", - "Timestamp": "2019-10-15T04:49:32.000Z" + "SpotPrice": "0.782000", + "Timestamp": "2024-05-16T12:16:46.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "im4gn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.206400", - "Timestamp": "2019-10-15T04:49:32.000Z" + "SpotPrice": "0.657000", + "Timestamp": "2024-05-16T12:16:46.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.114900", - "Timestamp": "2019-10-15T04:45:07.000Z" + "SpotPrice": "2.872700", + "Timestamp": "2024-05-16T12:16:46.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.582000", - "Timestamp": "2019-10-15T04:42:14.000Z" + "SpotPrice": "0.952900", + "Timestamp": "2024-05-16T12:16:46.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.582000", - "Timestamp": "2019-10-15T04:42:14.000Z" + "SpotPrice": "0.928100", + "Timestamp": "2024-05-16T12:16:46.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.552000", - "Timestamp": "2019-10-15T04:42:14.000Z" + "SpotPrice": "0.947900", + "Timestamp": "2024-05-16T12:16:46.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6g.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.552000", - "Timestamp": "2019-10-15T04:42:14.000Z" + "SpotPrice": "0.923100", + "Timestamp": "2024-05-16T12:16:46.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.452000", - "Timestamp": "2019-10-15T04:42:14.000Z" + "SpotPrice": "0.822900", + "Timestamp": "2024-05-16T12:16:46.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.452000", - "Timestamp": "2019-10-15T04:42:14.000Z" + "SpotPrice": "0.798100", + "Timestamp": "2024-05-16T12:16:46.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.metal", "ProductDescription": "Windows", - "SpotPrice": "4.396000", - "Timestamp": "2019-10-15T04:42:14.000Z" + "SpotPrice": "10.991400", + "Timestamp": "2024-05-16T12:16:45.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.396000", - "Timestamp": "2019-10-15T04:42:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.500500", + "Timestamp": "2024-05-16T12:16:45.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.995700", - "Timestamp": "2019-10-15T04:41:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.495500", + "Timestamp": "2024-05-16T12:16:45.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.995700", - "Timestamp": "2019-10-15T04:41:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.370500", + "Timestamp": "2024-05-16T12:16:45.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2idn.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.995700", - "Timestamp": "2019-10-15T04:41:54.000Z" + "SpotPrice": "3.054300", + "Timestamp": "2024-05-16T12:16:45.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2idn.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.965700", - "Timestamp": "2019-10-15T04:41:54.000Z" + "SpotPrice": "3.049300", + "Timestamp": "2024-05-16T12:16:45.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.965700", - "Timestamp": "2019-10-15T04:41:54.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.924300", + "Timestamp": "2024-05-16T12:16:45.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.965700", - "Timestamp": "2019-10-15T04:41:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091400", + "Timestamp": "2024-05-16T12:16:45.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.865700", - "Timestamp": "2019-10-15T04:41:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087700", + "Timestamp": "2024-05-16T12:16:45.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.865700", - "Timestamp": "2019-10-15T04:41:54.000Z" + "SpotPrice": "0.031400", + "Timestamp": "2024-05-16T12:16:45.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.865700", - "Timestamp": "2019-10-15T04:41:54.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.502400", + "Timestamp": "2024-05-16T12:16:44.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.073700", - "Timestamp": "2019-10-15T04:41:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.350400", + "Timestamp": "2024-05-16T12:16:44.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.073700", - "Timestamp": "2019-10-15T04:41:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.345400", + "Timestamp": "2024-05-16T12:16:44.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.073700", - "Timestamp": "2019-10-15T04:41:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.220400", + "Timestamp": "2024-05-16T12:16:44.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3a.medium", + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf1.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.072200", - "Timestamp": "2019-10-15T04:41:53.000Z" + "SpotPrice": "0.289400", + "Timestamp": "2024-05-16T12:16:44.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.072200", - "Timestamp": "2019-10-15T04:41:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.284400", + "Timestamp": "2024-05-16T12:16:44.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.072200", - "Timestamp": "2019-10-15T04:41:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159400", + "Timestamp": "2024-05-16T12:16:44.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3a.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.112200", - "Timestamp": "2019-10-15T04:41:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.015000", + "Timestamp": "2024-05-16T12:16:42.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3a.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.112200", - "Timestamp": "2019-10-15T04:41:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.895700", + "Timestamp": "2024-05-16T12:16:42.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3a.medium", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.546100", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.112200", - "Timestamp": "2019-10-15T04:41:53.000Z" + "SpotPrice": "1.541100", + "Timestamp": "2024-05-16T12:16:41.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3a.medium", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.012200", - "Timestamp": "2019-10-15T04:41:53.000Z" + "SpotPrice": "1.416100", + "Timestamp": "2024-05-16T12:16:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.012200", - "Timestamp": "2019-10-15T04:41:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.130400", + "Timestamp": "2024-05-16T12:16:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.012200", - "Timestamp": "2019-10-15T04:41:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.619400", + "Timestamp": "2024-05-16T12:16:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.030600", - "Timestamp": "2019-10-15T04:41:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.589400", + "Timestamp": "2024-05-16T12:16:40.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.030600", - "Timestamp": "2019-10-15T04:41:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.489400", + "Timestamp": "2024-05-16T12:16:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3a.medium", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.030600", - "Timestamp": "2019-10-15T04:41:53.000Z" + "SpotPrice": "1.855500", + "Timestamp": "2024-05-16T12:16:39.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T04:41:42.000Z" + "SpotPrice": "0.120200", + "Timestamp": "2024-05-16T12:16:37.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175600", - "Timestamp": "2019-10-15T04:41:42.000Z" + "SpotPrice": "0.116500", + "Timestamp": "2024-05-16T12:16:37.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075600", - "Timestamp": "2019-10-15T04:41:42.000Z" + "SpotPrice": "0.060200", + "Timestamp": "2024-05-16T12:16:37.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.097500", - "Timestamp": "2019-10-15T04:38:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096800", + "Timestamp": "2024-05-16T12:16:37.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.097500", - "Timestamp": "2019-10-15T04:38:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093100", + "Timestamp": "2024-05-16T12:16:37.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.097500", - "Timestamp": "2019-10-15T04:38:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036800", + "Timestamp": "2024-05-16T12:16:37.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m2.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i-flex.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087500", - "Timestamp": "2019-10-15T04:38:38.000Z" + "SpotPrice": "0.291200", + "Timestamp": "2024-05-16T12:16:37.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087500", - "Timestamp": "2019-10-15T04:38:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.286200", + "Timestamp": "2024-05-16T12:16:37.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087500", - "Timestamp": "2019-10-15T04:38:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.161200", + "Timestamp": "2024-05-16T12:16:37.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.127500", - "Timestamp": "2019-10-15T04:38:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.981800", + "Timestamp": "2024-05-16T12:16:37.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m2.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.127500", - "Timestamp": "2019-10-15T04:38:38.000Z" + "SpotPrice": "0.976800", + "Timestamp": "2024-05-16T12:16:37.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.127500", - "Timestamp": "2019-10-15T04:38:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.851800", + "Timestamp": "2024-05-16T12:16:37.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027500", - "Timestamp": "2019-10-15T04:38:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330900", + "Timestamp": "2024-05-16T12:16:37.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027500", - "Timestamp": "2019-10-15T04:38:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325900", + "Timestamp": "2024-05-16T12:16:37.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m2.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027500", - "Timestamp": "2019-10-15T04:38:38.000Z" + "SpotPrice": "0.200900", + "Timestamp": "2024-05-16T12:16:37.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.274300", - "Timestamp": "2019-10-15T04:33:18.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.912800", + "Timestamp": "2024-05-16T12:16:36.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.244300", - "Timestamp": "2019-10-15T04:33:18.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.410500", + "Timestamp": "2024-05-16T12:16:36.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.144300", - "Timestamp": "2019-10-15T04:33:18.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.259500", + "Timestamp": "2024-05-16T12:02:39.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T04:19:23.000Z" + "SpotPrice": "0.148600", + "Timestamp": "2024-05-16T12:02:39.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175600", - "Timestamp": "2019-10-15T04:19:23.000Z" + "SpotPrice": "0.144600", + "Timestamp": "2024-05-16T12:02:39.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075600", - "Timestamp": "2019-10-15T04:19:23.000Z" + "SpotPrice": "0.088600", + "Timestamp": "2024-05-16T12:02:39.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.876800", + "Timestamp": "2024-05-16T12:02:38.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.432300", - "Timestamp": "2019-10-15T04:19:08.000Z" + "SpotPrice": "4.563100", + "Timestamp": "2024-05-16T12:02:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.402300", - "Timestamp": "2019-10-15T04:19:08.000Z" + "SpotPrice": "4.558100", + "Timestamp": "2024-05-16T12:02:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5n.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.302300", - "Timestamp": "2019-10-15T04:19:08.000Z" + "SpotPrice": "4.433100", + "Timestamp": "2024-05-16T12:02:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5dn.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.6xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.339300", - "Timestamp": "2019-10-15T04:16:57.000Z" + "SpotPrice": "0.690000", + "Timestamp": "2024-05-16T12:02:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5dn.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.6xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.309300", - "Timestamp": "2019-10-15T04:16:57.000Z" + "SpotPrice": "0.685000", + "Timestamp": "2024-05-16T12:02:34.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5dn.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.6xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.209300", - "Timestamp": "2019-10-15T04:16:57.000Z" + "SpotPrice": "0.560000", + "Timestamp": "2024-05-16T12:02:34.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "9.730000", - "Timestamp": "2019-10-15T04:14:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.895600", + "Timestamp": "2024-05-16T12:02:32.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "9.730000", - "Timestamp": "2019-10-15T04:14:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.422700", + "Timestamp": "2024-05-16T12:02:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "9.700000", - "Timestamp": "2019-10-15T04:14:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213700", + "Timestamp": "2024-05-16T12:02:32.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "x1e.32xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.261300", + "Timestamp": "2024-05-16T12:02:32.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.metal-48xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "9.700000", - "Timestamp": "2019-10-15T04:14:36.000Z" + "SpotPrice": "5.256300", + "Timestamp": "2024-05-16T12:02:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "x1e.32xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "9.600000", - "Timestamp": "2019-10-15T04:14:36.000Z" + "SpotPrice": "5.131300", + "Timestamp": "2024-05-16T12:02:32.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "9.600000", - "Timestamp": "2019-10-15T04:14:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.553000", + "Timestamp": "2024-05-16T12:02:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.153300", - "Timestamp": "2019-10-15T04:08:56.000Z" + "SpotPrice": "3.564600", + "Timestamp": "2024-05-16T12:02:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097800", - "Timestamp": "2019-10-15T04:05:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.087200", + "Timestamp": "2024-05-16T12:02:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137800", - "Timestamp": "2019-10-15T04:05:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.454200", + "Timestamp": "2024-05-16T12:02:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037800", - "Timestamp": "2019-10-15T04:05:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.737000", + "Timestamp": "2024-05-16T12:02:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.large", "ProductDescription": "Windows", - "SpotPrice": "0.129800", - "Timestamp": "2019-10-15T04:04:07.000Z" + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T12:02:28.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.129800", - "Timestamp": "2019-10-15T04:04:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.482100", + "Timestamp": "2024-05-16T12:02:28.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.129800", - "Timestamp": "2019-10-15T04:04:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.477100", + "Timestamp": "2024-05-16T12:02:28.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.352100", + "Timestamp": "2024-05-16T12:02:28.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T04:02:23.000Z" + "SpotPrice": "0.780900", + "Timestamp": "2024-05-16T12:02:28.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175600", - "Timestamp": "2019-10-15T04:02:23.000Z" + "SpotPrice": "0.775900", + "Timestamp": "2024-05-16T12:02:28.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075600", - "Timestamp": "2019-10-15T04:02:23.000Z" + "SpotPrice": "0.650900", + "Timestamp": "2024-05-16T12:02:28.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.683300", - "Timestamp": "2019-10-15T03:43:11.000Z" + "SpotPrice": "0.418600", + "Timestamp": "2024-05-16T12:02:27.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.683300", - "Timestamp": "2019-10-15T03:43:11.000Z" + "SpotPrice": "5.470000", + "Timestamp": "2024-05-16T12:02:27.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.683300", - "Timestamp": "2019-10-15T03:43:11.000Z" + "SpotPrice": "3.901900", + "Timestamp": "2024-05-16T12:02:27.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097900", - "Timestamp": "2019-10-15T03:43:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.871400", + "Timestamp": "2024-05-16T12:02:27.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097900", - "Timestamp": "2019-10-15T03:43:02.000Z" - }, - { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m1.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137900", - "Timestamp": "2019-10-15T03:43:02.000Z" + "SpotPrice": "0.781000", + "Timestamp": "2024-05-16T12:02:27.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137900", - "Timestamp": "2019-10-15T03:43:02.000Z" + "SpotPrice": "0.776000", + "Timestamp": "2024-05-16T12:02:27.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037900", - "Timestamp": "2019-10-15T03:43:02.000Z" + "SpotPrice": "0.651000", + "Timestamp": "2024-05-16T12:02:27.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m1.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037900", - "Timestamp": "2019-10-15T03:43:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.805600", + "Timestamp": "2024-05-16T12:02:26.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.229300", - "Timestamp": "2019-10-15T03:43:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-16T12:02:25.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.229300", - "Timestamp": "2019-10-15T03:43:02.000Z" + "SpotPrice": "1.158100", + "Timestamp": "2024-05-16T12:02:25.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.199300", - "Timestamp": "2019-10-15T03:43:02.000Z" + "SpotPrice": "1.153100", + "Timestamp": "2024-05-16T12:02:25.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m4.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.199300", - "Timestamp": "2019-10-15T03:43:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.028100", + "Timestamp": "2024-05-16T12:02:25.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.099300", - "Timestamp": "2019-10-15T03:43:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092100", + "Timestamp": "2024-05-16T12:02:25.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.099300", - "Timestamp": "2019-10-15T03:43:02.000Z" + "SpotPrice": "0.032100", + "Timestamp": "2024-05-16T12:02:25.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267400", - "Timestamp": "2019-10-15T03:42:31.000Z" + "SpotPrice": "0.477400", + "Timestamp": "2024-05-16T12:02:24.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.237400", - "Timestamp": "2019-10-15T03:42:31.000Z" + "SpotPrice": "0.472400", + "Timestamp": "2024-05-16T12:02:24.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.137400", - "Timestamp": "2019-10-15T03:42:31.000Z" + "SpotPrice": "0.347400", + "Timestamp": "2024-05-16T12:02:24.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.259600", - "Timestamp": "2019-10-15T03:42:27.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.922900", + "Timestamp": "2024-05-16T12:02:24.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.259600", - "Timestamp": "2019-10-15T03:42:27.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.917900", + "Timestamp": "2024-05-16T12:02:24.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.259600", - "Timestamp": "2019-10-15T03:42:27.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.792900", + "Timestamp": "2024-05-16T12:02:24.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.505400", - "Timestamp": "2019-10-15T03:42:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.317100", + "Timestamp": "2024-05-16T12:02:24.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.505400", - "Timestamp": "2019-10-15T03:42:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.312100", + "Timestamp": "2024-05-16T12:02:24.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.505400", - "Timestamp": "2019-10-15T03:42:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.187100", + "Timestamp": "2024-05-16T12:02:24.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "h1.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.256900", - "Timestamp": "2019-10-15T03:41:59.000Z" + "SpotPrice": "0.594100", + "Timestamp": "2024-05-16T12:02:24.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.256900", - "Timestamp": "2019-10-15T03:41:59.000Z" + "SpotPrice": "0.549000", + "Timestamp": "2024-05-16T12:02:23.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.256900", - "Timestamp": "2019-10-15T03:41:59.000Z" + "SpotPrice": "0.305400", + "Timestamp": "2024-05-16T12:02:22.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.256100", - "Timestamp": "2019-10-15T03:41:52.000Z" + "SpotPrice": "1.981800", + "Timestamp": "2024-05-16T12:02:22.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.256100", - "Timestamp": "2019-10-15T03:41:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.141100", + "Timestamp": "2024-05-16T12:02:20.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.256100", - "Timestamp": "2019-10-15T03:41:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.136100", + "Timestamp": "2024-05-16T12:02:20.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5n.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.011100", + "Timestamp": "2024-05-16T12:02:20.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.153300", - "Timestamp": "2019-10-15T03:21:33.000Z" + "SpotPrice": "11.032100", + "Timestamp": "2024-05-16T12:02:19.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.281200", - "Timestamp": "2019-10-15T03:18:30.000Z" + "SpotPrice": "0.869900", + "Timestamp": "2024-05-16T12:02:19.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.251200", - "Timestamp": "2019-10-15T03:18:30.000Z" + "SpotPrice": "0.864900", + "Timestamp": "2024-05-16T12:02:19.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.151200", - "Timestamp": "2019-10-15T03:18:30.000Z" + "SpotPrice": "0.739900", + "Timestamp": "2024-05-16T12:02:19.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.716400", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.805000", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.943900", - "Timestamp": "2019-10-15T03:13:26.000Z" + "SpotPrice": "0.304300", + "Timestamp": "2024-05-16T12:02:18.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.913900", - "Timestamp": "2019-10-15T03:13:26.000Z" + "SpotPrice": "0.299300", + "Timestamp": "2024-05-16T12:02:18.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5n.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.813900", - "Timestamp": "2019-10-15T03:13:26.000Z" + "SpotPrice": "0.174300", + "Timestamp": "2024-05-16T12:02:18.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5dn.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "a1.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096100", - "Timestamp": "2019-10-15T03:12:25.000Z" + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T12:02:18.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5dn.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "a1.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136100", - "Timestamp": "2019-10-15T03:12:25.000Z" + "SpotPrice": "0.108500", + "Timestamp": "2024-05-16T12:02:18.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5dn.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "a1.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036100", - "Timestamp": "2019-10-15T03:12:25.000Z" + "SpotPrice": "0.052200", + "Timestamp": "2024-05-16T12:02:18.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T12:02:18.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.036900", - "Timestamp": "2019-10-15T03:11:54.000Z" + "SpotPrice": "1.142100", + "Timestamp": "2024-05-16T12:02:18.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.006900", - "Timestamp": "2019-10-15T03:11:54.000Z" + "SpotPrice": "1.137100", + "Timestamp": "2024-05-16T12:02:18.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.906900", - "Timestamp": "2019-10-15T03:11:54.000Z" + "SpotPrice": "1.012100", + "Timestamp": "2024-05-16T12:02:18.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r4.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.252700", - "Timestamp": "2019-10-15T03:04:44.000Z" + "SpotPrice": "0.438100", + "Timestamp": "2024-05-16T12:02:18.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.252700", - "Timestamp": "2019-10-15T03:04:44.000Z" + "SpotPrice": "1.961900", + "Timestamp": "2024-05-16T12:02:16.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.252700", - "Timestamp": "2019-10-15T03:04:44.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.274300", - "Timestamp": "2019-10-15T03:04:36.000Z" + "SpotPrice": "1.926900", + "Timestamp": "2024-05-16T12:02:16.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.274300", - "Timestamp": "2019-10-15T03:04:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.705300", + "Timestamp": "2024-05-16T12:02:16.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.274300", - "Timestamp": "2019-10-15T03:04:36.000Z" + "SpotPrice": "1.117600", + "Timestamp": "2024-05-16T12:02:16.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.244300", - "Timestamp": "2019-10-15T03:04:36.000Z" + "SpotPrice": "1.112600", + "Timestamp": "2024-05-16T12:02:16.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.244300", - "Timestamp": "2019-10-15T03:04:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.987600", + "Timestamp": "2024-05-16T12:02:16.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.244300", - "Timestamp": "2019-10-15T03:04:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.797000", + "Timestamp": "2024-05-16T12:02:16.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.144300", - "Timestamp": "2019-10-15T03:04:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.843800", + "Timestamp": "2024-05-16T12:02:15.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.144300", - "Timestamp": "2019-10-15T03:04:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.838800", + "Timestamp": "2024-05-16T12:02:15.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.144300", - "Timestamp": "2019-10-15T03:04:36.000Z" + "SpotPrice": "0.713800", + "Timestamp": "2024-05-16T12:02:15.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "a1.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.201200", - "Timestamp": "2019-10-15T03:04:29.000Z" + "SpotPrice": "0.398300", + "Timestamp": "2024-05-16T12:02:15.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "a1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.201200", - "Timestamp": "2019-10-15T03:04:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.393300", + "Timestamp": "2024-05-16T12:02:15.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "a1.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.171200", - "Timestamp": "2019-10-15T03:04:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.268300", + "Timestamp": "2024-05-16T12:02:15.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "a1.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.171200", - "Timestamp": "2019-10-15T03:04:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.395800", + "Timestamp": "2024-05-16T12:02:14.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "a1.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.071200", - "Timestamp": "2019-10-15T03:04:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.390800", + "Timestamp": "2024-05-16T12:02:14.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "a1.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.071200", - "Timestamp": "2019-10-15T03:04:29.000Z" + "SpotPrice": "2.265800", + "Timestamp": "2024-05-16T12:02:14.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.804900", - "Timestamp": "2019-10-15T03:04:08.000Z" + "SpotPrice": "0.530800", + "Timestamp": "2024-05-16T12:02:14.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.804900", - "Timestamp": "2019-10-15T03:04:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.525800", + "Timestamp": "2024-05-16T12:02:14.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.804900", - "Timestamp": "2019-10-15T03:04:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.400800", + "Timestamp": "2024-05-16T12:02:14.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.774900", - "Timestamp": "2019-10-15T03:04:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.157600", + "Timestamp": "2024-05-16T12:02:13.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.774900", - "Timestamp": "2019-10-15T03:04:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.065700", + "Timestamp": "2024-05-16T12:02:12.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.774900", - "Timestamp": "2019-10-15T03:04:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.426400", + "Timestamp": "2024-05-16T12:02:11.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.674900", - "Timestamp": "2019-10-15T03:04:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.060500", + "Timestamp": "2024-05-16T12:02:09.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.674900", - "Timestamp": "2019-10-15T03:04:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.433000", + "Timestamp": "2024-05-16T12:02:09.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.674900", - "Timestamp": "2019-10-15T03:04:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.407500", + "Timestamp": "2024-05-16T12:02:08.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.512300", - "Timestamp": "2019-10-15T03:03:56.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.402500", + "Timestamp": "2024-05-16T12:02:08.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.512300", - "Timestamp": "2019-10-15T03:03:56.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.277500", + "Timestamp": "2024-05-16T12:02:08.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.512300", - "Timestamp": "2019-10-15T03:03:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.544100", + "Timestamp": "2024-05-16T12:02:08.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.146900", - "Timestamp": "2019-10-15T03:03:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.514100", + "Timestamp": "2024-05-16T12:02:08.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.146900", - "Timestamp": "2019-10-15T03:03:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.414100", + "Timestamp": "2024-05-16T12:02:08.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.146900", - "Timestamp": "2019-10-15T03:03:54.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.367100", + "Timestamp": "2024-05-16T12:02:08.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.023900", - "Timestamp": "2019-10-15T03:03:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.337100", + "Timestamp": "2024-05-16T12:02:08.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.023900", - "Timestamp": "2019-10-15T03:03:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.237100", + "Timestamp": "2024-05-16T12:02:08.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.023900", - "Timestamp": "2019-10-15T03:03:42.000Z" + "SpotPrice": "1.790000", + "Timestamp": "2024-05-16T12:02:07.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.281700", - "Timestamp": "2019-10-15T03:03:29.000Z" + "SpotPrice": "1.543800", + "Timestamp": "2024-05-16T12:02:07.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.251700", - "Timestamp": "2019-10-15T03:03:29.000Z" + "SpotPrice": "1.538800", + "Timestamp": "2024-05-16T12:02:07.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.151700", - "Timestamp": "2019-10-15T03:03:29.000Z" + "SpotPrice": "1.413800", + "Timestamp": "2024-05-16T12:02:07.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.519200", - "Timestamp": "2019-10-15T02:56:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.652800", + "Timestamp": "2024-05-16T12:02:06.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.259600", - "Timestamp": "2019-10-15T02:44:49.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.647800", + "Timestamp": "2024-05-16T12:02:06.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "h1.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.551300", - "Timestamp": "2019-10-15T02:42:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.522800", + "Timestamp": "2024-05-16T12:02:06.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "h1.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.551300", - "Timestamp": "2019-10-15T02:42:58.000Z" + "SpotPrice": "1.045100", + "Timestamp": "2024-05-16T12:02:05.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "h1.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.9xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.313300", - "Timestamp": "2019-10-15T02:42:57.000Z" + "SpotPrice": "0.839300", + "Timestamp": "2024-05-16T12:02:05.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "h1.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.9xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.313300", - "Timestamp": "2019-10-15T02:42:57.000Z" + "SpotPrice": "0.932800", + "Timestamp": "2024-05-16T12:02:05.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "h1.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.9xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.283300", - "Timestamp": "2019-10-15T02:42:57.000Z" + "SpotPrice": "0.834300", + "Timestamp": "2024-05-16T12:02:05.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "h1.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.9xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.283300", - "Timestamp": "2019-10-15T02:42:57.000Z" + "SpotPrice": "0.927800", + "Timestamp": "2024-05-16T12:02:05.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "h1.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.9xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.183300", - "Timestamp": "2019-10-15T02:42:57.000Z" + "SpotPrice": "0.709300", + "Timestamp": "2024-05-16T12:02:05.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "h1.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.9xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.183300", - "Timestamp": "2019-10-15T02:42:57.000Z" + "SpotPrice": "0.802800", + "Timestamp": "2024-05-16T12:02:05.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.479700", - "Timestamp": "2019-10-15T02:41:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.888200", + "Timestamp": "2024-05-16T12:02:04.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.479700", - "Timestamp": "2019-10-15T02:41:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.831000", + "Timestamp": "2024-05-16T12:02:04.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.479700", - "Timestamp": "2019-10-15T02:41:53.000Z" + "SpotPrice": "0.883100", + "Timestamp": "2024-05-16T12:02:03.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.449700", - "Timestamp": "2019-10-15T02:41:53.000Z" + "SpotPrice": "0.853100", + "Timestamp": "2024-05-16T12:02:03.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.449700", - "Timestamp": "2019-10-15T02:41:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.753100", + "Timestamp": "2024-05-16T12:02:03.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.499800", + "Timestamp": "2024-05-16T12:02:00.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.metal-24xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.449700", - "Timestamp": "2019-10-15T02:41:53.000Z" + "SpotPrice": "1.494800", + "Timestamp": "2024-05-16T12:02:00.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.metal-24xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.349700", - "Timestamp": "2019-10-15T02:41:53.000Z" + "SpotPrice": "1.369800", + "Timestamp": "2024-05-16T12:02:00.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.349700", - "Timestamp": "2019-10-15T02:41:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124900", + "Timestamp": "2024-05-16T12:02:00.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.349700", - "Timestamp": "2019-10-15T02:41:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091900", + "Timestamp": "2024-05-16T12:02:00.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.293700", - "Timestamp": "2019-10-15T02:41:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088200", + "Timestamp": "2024-05-16T12:02:00.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.293700", - "Timestamp": "2019-10-15T02:41:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031900", + "Timestamp": "2024-05-16T12:02:00.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.293700", - "Timestamp": "2019-10-15T02:41:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.461300", + "Timestamp": "2024-05-16T12:01:58.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.038300", - "Timestamp": "2019-10-15T02:41:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.456300", + "Timestamp": "2024-05-16T12:01:58.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.038300", - "Timestamp": "2019-10-15T02:41:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.331300", + "Timestamp": "2024-05-16T12:01:58.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.038300", - "Timestamp": "2019-10-15T02:41:38.000Z" + "SpotPrice": "2.741000", + "Timestamp": "2024-05-16T12:01:57.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5dn.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.256100", - "Timestamp": "2019-10-15T02:39:32.000Z" + "SpotPrice": "5.377100", + "Timestamp": "2024-05-16T12:01:56.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "h1.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.410400", - "Timestamp": "2019-10-15T02:38:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.176400", + "Timestamp": "2024-05-16T12:01:56.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "h1.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.410400", - "Timestamp": "2019-10-15T02:38:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.171400", + "Timestamp": "2024-05-16T12:01:56.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "h1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.596400", - "Timestamp": "2019-10-15T02:38:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.046400", + "Timestamp": "2024-05-16T12:01:56.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "h1.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.metal-48xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.596400", - "Timestamp": "2019-10-15T02:38:38.000Z" + "SpotPrice": "3.510600", + "Timestamp": "2024-05-16T12:01:55.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "h1.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.metal-48xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.566400", - "Timestamp": "2019-10-15T02:38:38.000Z" + "SpotPrice": "3.505600", + "Timestamp": "2024-05-16T12:01:55.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "h1.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.566400", - "Timestamp": "2019-10-15T02:38:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.380600", + "Timestamp": "2024-05-16T12:01:55.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "h1.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.466400", - "Timestamp": "2019-10-15T02:38:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147900", + "Timestamp": "2024-05-16T12:01:55.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "h1.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144200", + "Timestamp": "2024-05-16T12:01:55.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.466400", - "Timestamp": "2019-10-15T02:38:38.000Z" + "SpotPrice": "0.087900", + "Timestamp": "2024-05-16T12:01:55.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.995700", - "Timestamp": "2019-10-15T02:31:32.000Z" + "SpotPrice": "0.266100", + "Timestamp": "2024-05-16T12:01:54.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.965700", - "Timestamp": "2019-10-15T02:31:32.000Z" + "SpotPrice": "0.261100", + "Timestamp": "2024-05-16T12:01:54.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5dn.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.865700", - "Timestamp": "2019-10-15T02:31:32.000Z" + "SpotPrice": "0.136100", + "Timestamp": "2024-05-16T12:01:54.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.287200", - "Timestamp": "2019-10-15T02:26:52.000Z" + "SpotPrice": "0.930000", + "Timestamp": "2024-05-16T12:01:54.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.287200", - "Timestamp": "2019-10-15T02:26:52.000Z" + "SpotPrice": "3.017200", + "Timestamp": "2024-05-16T12:01:53.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.287200", - "Timestamp": "2019-10-15T02:26:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.721600", + "Timestamp": "2024-05-16T12:01:53.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.129800", - "Timestamp": "2019-10-15T02:25:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.716600", + "Timestamp": "2024-05-16T12:01:53.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.591600", + "Timestamp": "2024-05-16T12:01:53.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.large", "ProductDescription": "Windows", - "SpotPrice": "0.129800", - "Timestamp": "2019-10-15T02:25:39.000Z" + "SpotPrice": "0.113500", + "Timestamp": "2024-05-16T12:01:53.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.129800", - "Timestamp": "2019-10-15T02:25:39.000Z" + "SpotPrice": "0.474300", + "Timestamp": "2024-05-16T12:01:51.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097800", - "Timestamp": "2019-10-15T02:25:05.000Z" + "SpotPrice": "1.780800", + "Timestamp": "2024-05-16T12:01:51.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097800", - "Timestamp": "2019-10-15T02:25:05.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.750800", + "Timestamp": "2024-05-16T12:01:51.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097800", - "Timestamp": "2019-10-15T02:25:05.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.650800", + "Timestamp": "2024-05-16T12:01:51.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137800", - "Timestamp": "2019-10-15T02:25:05.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.249400", + "Timestamp": "2024-05-16T12:01:50.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137800", - "Timestamp": "2019-10-15T02:25:05.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.367600", + "Timestamp": "2024-05-16T12:01:49.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.metal-48xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137800", - "Timestamp": "2019-10-15T02:25:05.000Z" + "SpotPrice": "4.362600", + "Timestamp": "2024-05-16T12:01:49.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037800", - "Timestamp": "2019-10-15T02:25:05.000Z" + "SpotPrice": "4.237600", + "Timestamp": "2024-05-16T12:01:49.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037800", - "Timestamp": "2019-10-15T02:25:05.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.432100", + "Timestamp": "2024-05-16T12:01:49.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.427100", + "Timestamp": "2024-05-16T12:01:49.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037800", - "Timestamp": "2019-10-15T02:25:05.000Z" + "SpotPrice": "0.302100", + "Timestamp": "2024-05-16T12:01:49.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.163200", - "Timestamp": "2019-10-15T02:25:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.053100", + "Timestamp": "2024-05-16T12:01:47.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.163200", - "Timestamp": "2019-10-15T02:25:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.241700", + "Timestamp": "2024-05-16T12:01:46.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.163200", - "Timestamp": "2019-10-15T02:25:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.877300", + "Timestamp": "2024-05-16T12:01:46.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.203200", - "Timestamp": "2019-10-15T02:25:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.875500", + "Timestamp": "2024-05-16T12:01:46.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.203200", - "Timestamp": "2019-10-15T02:25:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.651300", + "Timestamp": "2024-05-16T12:01:45.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.203200", - "Timestamp": "2019-10-15T02:25:03.000Z" + "SpotPrice": "0.646300", + "Timestamp": "2024-05-16T12:01:45.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.103200", - "Timestamp": "2019-10-15T02:25:03.000Z" + "SpotPrice": "0.521300", + "Timestamp": "2024-05-16T12:01:45.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.103200", - "Timestamp": "2019-10-15T02:25:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.228000", + "Timestamp": "2024-05-16T12:01:44.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.103200", - "Timestamp": "2019-10-15T02:25:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.315700", + "Timestamp": "2024-05-16T12:01:44.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Windows", - "SpotPrice": "15.488000", - "Timestamp": "2019-10-15T02:20:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.285700", + "Timestamp": "2024-05-16T12:01:44.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Windows", - "SpotPrice": "15.488000", - "Timestamp": "2019-10-15T02:20:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.185700", + "Timestamp": "2024-05-16T12:01:44.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.153300", - "Timestamp": "2019-10-15T02:14:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.702900", + "Timestamp": "2024-05-16T12:01:44.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126400", - "Timestamp": "2019-10-15T02:04:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.672900", + "Timestamp": "2024-05-16T12:01:44.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126400", - "Timestamp": "2019-10-15T02:04:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.572900", + "Timestamp": "2024-05-16T12:01:44.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.126400", - "Timestamp": "2019-10-15T02:04:40.000Z" + "SpotPrice": "1.985200", + "Timestamp": "2024-05-16T12:01:43.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094400", - "Timestamp": "2019-10-15T02:04:19.000Z" + "SpotPrice": "0.139400", + "Timestamp": "2024-05-16T12:01:43.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094400", - "Timestamp": "2019-10-15T02:04:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135700", + "Timestamp": "2024-05-16T12:01:43.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094400", - "Timestamp": "2019-10-15T02:04:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079400", + "Timestamp": "2024-05-16T12:01:43.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134400", - "Timestamp": "2019-10-15T02:04:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.295000", + "Timestamp": "2024-05-16T12:01:42.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134400", - "Timestamp": "2019-10-15T02:04:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.031700", + "Timestamp": "2024-05-16T12:01:42.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134400", - "Timestamp": "2019-10-15T02:04:19.000Z" + "SpotPrice": "1.026700", + "Timestamp": "2024-05-16T12:01:42.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034400", - "Timestamp": "2019-10-15T02:04:19.000Z" + "SpotPrice": "0.901700", + "Timestamp": "2024-05-16T12:01:42.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034400", - "Timestamp": "2019-10-15T02:04:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.118200", + "Timestamp": "2024-05-16T12:01:42.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034400", - "Timestamp": "2019-10-15T02:04:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.904300", + "Timestamp": "2024-05-16T12:01:41.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135000", - "Timestamp": "2019-10-15T02:04:10.000Z" + "SpotPrice": "2.102300", + "Timestamp": "2024-05-16T12:01:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135000", - "Timestamp": "2019-10-15T02:04:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.097300", + "Timestamp": "2024-05-16T12:01:41.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.972300", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135000", - "Timestamp": "2019-10-15T02:04:10.000Z" + "SpotPrice": "0.344500", + "Timestamp": "2024-05-16T12:01:41.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175000", - "Timestamp": "2019-10-15T02:04:10.000Z" + "SpotPrice": "0.339500", + "Timestamp": "2024-05-16T12:01:41.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175000", - "Timestamp": "2019-10-15T02:04:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.214500", + "Timestamp": "2024-05-16T12:01:41.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.417000", + "Timestamp": "2024-05-16T12:01:40.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175000", - "Timestamp": "2019-10-15T02:04:10.000Z" + "SpotPrice": "0.412000", + "Timestamp": "2024-05-16T12:01:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075000", - "Timestamp": "2019-10-15T02:04:10.000Z" + "SpotPrice": "0.287000", + "Timestamp": "2024-05-16T12:01:40.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075000", - "Timestamp": "2019-10-15T02:04:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.015600", + "Timestamp": "2024-05-16T12:01:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075000", - "Timestamp": "2019-10-15T02:04:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.010600", + "Timestamp": "2024-05-16T12:01:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "i3en.large", - "ProductDescription": "Windows", - "SpotPrice": "0.167000", - "Timestamp": "2019-10-15T02:03:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.885600", + "Timestamp": "2024-05-16T12:01:40.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "i3en.large", - "ProductDescription": "Windows", - "SpotPrice": "0.167000", - "Timestamp": "2019-10-15T02:03:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.647600", + "Timestamp": "2024-05-16T12:01:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "i3en.large", - "ProductDescription": "Windows", - "SpotPrice": "0.167000", - "Timestamp": "2019-10-15T02:03:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.642600", + "Timestamp": "2024-05-16T12:01:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.153300", - "Timestamp": "2019-10-15T01:58:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.517600", + "Timestamp": "2024-05-16T12:01:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.129800", - "Timestamp": "2019-10-15T01:49:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094700", + "Timestamp": "2024-05-16T12:01:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.804800", - "Timestamp": "2019-10-15T01:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091000", + "Timestamp": "2024-05-16T12:01:40.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.804800", - "Timestamp": "2019-10-15T01:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034700", + "Timestamp": "2024-05-16T12:01:40.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.804800", - "Timestamp": "2019-10-15T01:42:43.000Z" + "SpotPrice": "0.469000", + "Timestamp": "2024-05-16T12:01:40.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.351600", - "Timestamp": "2019-10-15T01:42:43.000Z" + "SpotPrice": "0.580000", + "Timestamp": "2024-05-16T12:01:39.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.391600", - "Timestamp": "2019-10-15T01:42:43.000Z" + "SpotPrice": "0.575000", + "Timestamp": "2024-05-16T12:01:39.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.291600", - "Timestamp": "2019-10-15T01:42:43.000Z" + "SpotPrice": "0.450000", + "Timestamp": "2024-05-16T12:01:39.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r4.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.462800", - "Timestamp": "2019-10-15T01:42:25.000Z" + "SpotPrice": "0.103200", + "Timestamp": "2024-05-16T12:01:39.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.462800", - "Timestamp": "2019-10-15T01:42:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143200", + "Timestamp": "2024-05-16T12:01:39.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.432800", - "Timestamp": "2019-10-15T01:42:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043200", + "Timestamp": "2024-05-16T12:01:39.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.432800", - "Timestamp": "2019-10-15T01:42:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.830100", + "Timestamp": "2024-05-16T12:01:39.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.332800", - "Timestamp": "2019-10-15T01:42:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.233100", + "Timestamp": "2024-05-16T12:01:39.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.228100", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.332800", - "Timestamp": "2019-10-15T01:42:25.000Z" + "SpotPrice": "1.103100", + "Timestamp": "2024-05-16T12:01:39.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.038300", - "Timestamp": "2019-10-15T01:42:20.000Z" + "SpotPrice": "0.464600", + "Timestamp": "2024-05-16T12:01:38.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.038300", - "Timestamp": "2019-10-15T01:42:20.000Z" + "SpotPrice": "1.780100", + "Timestamp": "2024-05-16T12:01:37.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.038300", - "Timestamp": "2019-10-15T01:42:20.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.369400", + "Timestamp": "2024-05-16T12:01:36.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.049100", - "Timestamp": "2019-10-15T01:42:13.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.364400", + "Timestamp": "2024-05-16T12:01:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.049100", - "Timestamp": "2019-10-15T01:42:13.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.239400", + "Timestamp": "2024-05-16T12:01:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.049100", - "Timestamp": "2019-10-15T01:42:13.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.820200", + "Timestamp": "2024-05-16T12:01:33.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "p2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.475600", - "Timestamp": "2019-10-15T01:42:04.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.815200", + "Timestamp": "2024-05-16T12:01:33.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "p2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.475600", - "Timestamp": "2019-10-15T01:42:04.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.690200", + "Timestamp": "2024-05-16T12:01:33.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.475600", - "Timestamp": "2019-10-15T01:42:04.000Z" + "SpotPrice": "2.859000", + "Timestamp": "2024-05-16T12:01:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125400", - "Timestamp": "2019-10-15T01:41:54.000Z" + "SpotPrice": "0.728600", + "Timestamp": "2024-05-16T12:01:32.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125400", - "Timestamp": "2019-10-15T01:41:54.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.723600", + "Timestamp": "2024-05-16T12:01:32.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.598600", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125400", - "Timestamp": "2019-10-15T01:41:54.000Z" + "SpotPrice": "0.552900", + "Timestamp": "2024-05-16T12:01:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.165400", - "Timestamp": "2019-10-15T01:41:54.000Z" + "SpotPrice": "0.547900", + "Timestamp": "2024-05-16T12:01:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.165400", - "Timestamp": "2019-10-15T01:41:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.422900", + "Timestamp": "2024-05-16T12:01:31.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.336000", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.165400", - "Timestamp": "2019-10-15T01:41:54.000Z" + "SpotPrice": "3.331000", + "Timestamp": "2024-05-16T12:01:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065400", - "Timestamp": "2019-10-15T01:41:54.000Z" + "SpotPrice": "3.206000", + "Timestamp": "2024-05-16T12:01:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065400", - "Timestamp": "2019-10-15T01:41:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.704100", + "Timestamp": "2024-05-16T12:01:31.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065400", - "Timestamp": "2019-10-15T01:41:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.699100", + "Timestamp": "2024-05-16T12:01:31.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.289400", - "Timestamp": "2019-10-15T01:41:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.574100", + "Timestamp": "2024-05-16T12:01:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r4.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.289400", - "Timestamp": "2019-10-15T01:41:54.000Z" + "SpotPrice": "0.221700", + "Timestamp": "2024-05-16T12:01:30.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1e.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.289400", - "Timestamp": "2019-10-15T01:41:54.000Z" + "SpotPrice": "5.155600", + "Timestamp": "2024-05-16T12:01:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.252700", - "Timestamp": "2019-10-15T01:41:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.214300", + "Timestamp": "2024-05-16T12:01:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.252700", - "Timestamp": "2019-10-15T01:41:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.184300", + "Timestamp": "2024-05-16T12:01:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.252700", - "Timestamp": "2019-10-15T01:41:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084300", + "Timestamp": "2024-05-16T12:01:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "f1.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.219000", - "Timestamp": "2019-10-15T01:41:43.000Z" + "SpotPrice": "0.361800", + "Timestamp": "2024-05-16T12:01:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "f1.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.219000", - "Timestamp": "2019-10-15T01:41:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.356800", + "Timestamp": "2024-05-16T12:01:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "f1.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.231800", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i-flex.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.219000", - "Timestamp": "2019-10-15T01:41:43.000Z" + "SpotPrice": "0.136600", + "Timestamp": "2024-05-16T12:01:29.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "f1.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i-flex.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.189000", - "Timestamp": "2019-10-15T01:41:43.000Z" + "SpotPrice": "0.132900", + "Timestamp": "2024-05-16T12:01:29.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "f1.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.189000", - "Timestamp": "2019-10-15T01:41:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076600", + "Timestamp": "2024-05-16T12:01:29.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "f1.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.755500", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.189000", - "Timestamp": "2019-10-15T01:41:43.000Z" + "SpotPrice": "2.750500", + "Timestamp": "2024-05-16T12:01:28.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "f1.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.089000", - "Timestamp": "2019-10-15T01:41:43.000Z" + "SpotPrice": "2.625500", + "Timestamp": "2024-05-16T12:01:28.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "f1.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.089000", - "Timestamp": "2019-10-15T01:41:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.556300", + "Timestamp": "2024-05-16T12:01:28.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "f1.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.089000", - "Timestamp": "2019-10-15T01:41:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.720600", + "Timestamp": "2024-05-16T12:01:28.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.036900", - "Timestamp": "2019-10-15T01:40:58.000Z" + "SpotPrice": "0.097900", + "Timestamp": "2024-05-16T12:01:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.006900", - "Timestamp": "2019-10-15T01:40:58.000Z" + "SpotPrice": "0.093900", + "Timestamp": "2024-05-16T12:01:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5n.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.906900", - "Timestamp": "2019-10-15T01:40:58.000Z" + "SpotPrice": "0.037900", + "Timestamp": "2024-05-16T12:01:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.381400", - "Timestamp": "2019-10-15T01:40:09.000Z" + "SpotPrice": "2.111900", + "Timestamp": "2024-05-16T12:01:27.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.381400", - "Timestamp": "2019-10-15T01:40:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.106900", + "Timestamp": "2024-05-16T12:01:27.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.981900", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.381400", - "Timestamp": "2019-10-15T01:40:09.000Z" + "SpotPrice": "0.634900", + "Timestamp": "2024-05-16T12:01:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.351400", - "Timestamp": "2019-10-15T01:40:09.000Z" + "SpotPrice": "0.629900", + "Timestamp": "2024-05-16T12:01:27.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.351400", - "Timestamp": "2019-10-15T01:40:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.504900", + "Timestamp": "2024-05-16T12:01:27.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354100", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.351400", - "Timestamp": "2019-10-15T01:40:09.000Z" + "SpotPrice": "0.349100", + "Timestamp": "2024-05-16T12:01:25.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.251400", - "Timestamp": "2019-10-15T01:40:09.000Z" + "SpotPrice": "0.224100", + "Timestamp": "2024-05-16T12:01:25.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.251400", - "Timestamp": "2019-10-15T01:40:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.366800", + "Timestamp": "2024-05-16T12:01:24.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.251400", - "Timestamp": "2019-10-15T01:40:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-16T12:01:22.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.619400", - "Timestamp": "2019-10-15T01:39:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093800", + "Timestamp": "2024-05-16T12:01:22.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037500", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.619400", - "Timestamp": "2019-10-15T01:39:59.000Z" + "SpotPrice": "2.667400", + "Timestamp": "2024-05-16T12:01:22.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.large", "ProductDescription": "Windows", - "SpotPrice": "0.619400", - "Timestamp": "2019-10-15T01:39:59.000Z" + "SpotPrice": "0.111700", + "Timestamp": "2024-05-16T11:48:26.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g4dn.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.236100", - "Timestamp": "2019-10-15T01:38:38.000Z" + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T11:47:49.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.236100", - "Timestamp": "2019-10-15T01:38:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T11:47:49.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g4dn.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049500", + "Timestamp": "2024-05-16T11:47:49.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "d3.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.236100", - "Timestamp": "2019-10-15T01:38:38.000Z" + "SpotPrice": "0.626400", + "Timestamp": "2024-05-16T11:47:36.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g4dn.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "d3.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.276100", - "Timestamp": "2019-10-15T01:38:38.000Z" + "SpotPrice": "0.621400", + "Timestamp": "2024-05-16T11:47:36.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.276100", - "Timestamp": "2019-10-15T01:38:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.496400", + "Timestamp": "2024-05-16T11:47:36.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g4dn.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.252300", + "Timestamp": "2024-05-16T11:47:34.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.276100", - "Timestamp": "2019-10-15T01:38:38.000Z" + "SpotPrice": "1.247300", + "Timestamp": "2024-05-16T11:47:34.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g4dn.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.176100", - "Timestamp": "2019-10-15T01:38:38.000Z" + "SpotPrice": "1.122300", + "Timestamp": "2024-05-16T11:47:34.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.176100", - "Timestamp": "2019-10-15T01:38:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078600", + "Timestamp": "2024-05-16T11:47:32.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g4dn.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074900", + "Timestamp": "2024-05-16T11:47:32.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.176100", - "Timestamp": "2019-10-15T01:38:38.000Z" + "SpotPrice": "0.018600", + "Timestamp": "2024-05-16T11:47:32.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.360100", - "Timestamp": "2019-10-15T01:38:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.023600", + "Timestamp": "2024-05-16T11:47:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.360100", - "Timestamp": "2019-10-15T01:38:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.018600", + "Timestamp": "2024-05-16T11:47:31.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.360100", - "Timestamp": "2019-10-15T01:38:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.893600", + "Timestamp": "2024-05-16T11:47:31.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5dn.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "gr6.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.147400", - "Timestamp": "2019-10-15T01:32:54.000Z" + "SpotPrice": "0.926000", + "Timestamp": "2024-05-16T11:47:31.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T01:29:41.000Z" + "SpotPrice": "0.254500", + "Timestamp": "2024-05-16T11:47:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175600", - "Timestamp": "2019-10-15T01:29:41.000Z" + "SpotPrice": "0.249500", + "Timestamp": "2024-05-16T11:47:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5dn.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075600", - "Timestamp": "2019-10-15T01:29:41.000Z" + "SpotPrice": "0.124500", + "Timestamp": "2024-05-16T11:47:30.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.147400", - "Timestamp": "2019-10-15T01:23:54.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.951300", + "Timestamp": "2024-05-16T11:47:28.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012300", - "Timestamp": "2019-10-15T01:05:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.946300", + "Timestamp": "2024-05-16T11:47:28.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012300", - "Timestamp": "2019-10-15T01:05:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.821300", + "Timestamp": "2024-05-16T11:47:28.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012300", - "Timestamp": "2019-10-15T01:05:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.953500", + "Timestamp": "2024-05-16T11:47:27.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.997700", - "Timestamp": "2019-10-15T01:04:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.948500", + "Timestamp": "2024-05-16T11:47:27.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.997700", - "Timestamp": "2019-10-15T01:04:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.823500", + "Timestamp": "2024-05-16T11:47:27.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.997700", - "Timestamp": "2019-10-15T01:04:42.000Z" + "SpotPrice": "5.652300", + "Timestamp": "2024-05-16T11:47:25.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.498900", - "Timestamp": "2019-10-15T01:03:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T11:47:25.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.498900", - "Timestamp": "2019-10-15T01:03:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T11:47:25.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.498900", - "Timestamp": "2019-10-15T01:03:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049400", + "Timestamp": "2024-05-16T11:47:25.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063100", - "Timestamp": "2019-10-15T01:02:10.000Z" + "SpotPrice": "1.694800", + "Timestamp": "2024-05-16T11:47:24.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3a.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063100", - "Timestamp": "2019-10-15T01:02:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.689800", + "Timestamp": "2024-05-16T11:47:24.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3a.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063100", - "Timestamp": "2019-10-15T01:02:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.564800", + "Timestamp": "2024-05-16T11:47:24.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3a.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.103100", - "Timestamp": "2019-10-15T01:02:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.534400", + "Timestamp": "2024-05-16T11:47:20.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3a.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.103100", - "Timestamp": "2019-10-15T01:02:10.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.551500", + "Timestamp": "2024-05-16T11:47:20.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.103100", - "Timestamp": "2019-10-15T01:02:10.000Z" + "SpotPrice": "0.529400", + "Timestamp": "2024-05-16T11:47:20.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003100", - "Timestamp": "2019-10-15T01:02:10.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.546500", + "Timestamp": "2024-05-16T11:47:20.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003100", - "Timestamp": "2019-10-15T01:02:10.000Z" + "SpotPrice": "0.404400", + "Timestamp": "2024-05-16T11:47:20.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003100", - "Timestamp": "2019-10-15T01:02:10.000Z" + "SpotPrice": "0.421500", + "Timestamp": "2024-05-16T11:47:20.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5n.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.metal", "ProductDescription": "Windows", - "SpotPrice": "0.259600", - "Timestamp": "2019-10-15T00:58:51.000Z" + "SpotPrice": "7.953100", + "Timestamp": "2024-05-16T11:47:20.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.339300", - "Timestamp": "2019-10-15T00:42:33.000Z" + "SpotPrice": "0.654900", + "Timestamp": "2024-05-16T11:47:19.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.339300", - "Timestamp": "2019-10-15T00:42:33.000Z" + "SpotPrice": "0.728800", + "Timestamp": "2024-05-16T11:47:19.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.309300", - "Timestamp": "2019-10-15T00:42:33.000Z" + "SpotPrice": "0.649900", + "Timestamp": "2024-05-16T11:47:19.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6g.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.309300", - "Timestamp": "2019-10-15T00:42:33.000Z" + "SpotPrice": "0.723800", + "Timestamp": "2024-05-16T11:47:19.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.209300", - "Timestamp": "2019-10-15T00:42:33.000Z" + "SpotPrice": "0.524900", + "Timestamp": "2024-05-16T11:47:19.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.209300", - "Timestamp": "2019-10-15T00:42:33.000Z" - }, - { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.153300", - "Timestamp": "2019-10-15T00:42:10.000Z" - }, - { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.153300", - "Timestamp": "2019-10-15T00:42:10.000Z" + "SpotPrice": "0.598800", + "Timestamp": "2024-05-16T11:47:19.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097800", - "Timestamp": "2019-10-15T00:42:00.000Z" + "SpotPrice": "1.784200", + "Timestamp": "2024-05-16T11:47:18.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137800", - "Timestamp": "2019-10-15T00:42:00.000Z" + "SpotPrice": "1.754200", + "Timestamp": "2024-05-16T11:47:18.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5n.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037800", - "Timestamp": "2019-10-15T00:42:00.000Z" + "SpotPrice": "1.654200", + "Timestamp": "2024-05-16T11:47:18.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.734600", - "Timestamp": "2019-10-15T00:41:38.000Z" + "SpotPrice": "0.985100", + "Timestamp": "2024-05-16T11:47:18.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.704600", - "Timestamp": "2019-10-15T00:41:38.000Z" + "SpotPrice": "0.955100", + "Timestamp": "2024-05-16T11:47:18.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.604600", - "Timestamp": "2019-10-15T00:41:38.000Z" + "SpotPrice": "0.855100", + "Timestamp": "2024-05-16T11:47:18.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.024600", - "Timestamp": "2019-10-15T00:41:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.894300", + "Timestamp": "2024-05-16T11:47:17.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.024600", - "Timestamp": "2019-10-15T00:41:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.889300", + "Timestamp": "2024-05-16T11:47:17.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.024600", - "Timestamp": "2019-10-15T00:41:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.764300", + "Timestamp": "2024-05-16T11:47:17.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.076600", - "Timestamp": "2019-10-15T00:41:38.000Z" + "SpotPrice": "1.991600", + "Timestamp": "2024-05-16T11:47:16.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.076600", - "Timestamp": "2019-10-15T00:41:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.433400", + "Timestamp": "2024-05-16T11:47:16.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.076600", - "Timestamp": "2019-10-15T00:41:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.428400", + "Timestamp": "2024-05-16T11:47:16.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.418600", - "Timestamp": "2019-10-15T00:41:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.303400", + "Timestamp": "2024-05-16T11:47:16.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.418600", - "Timestamp": "2019-10-15T00:41:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223100", + "Timestamp": "2024-05-16T11:47:12.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "d2.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.418600", - "Timestamp": "2019-10-15T00:41:38.000Z" + "SpotPrice": "0.500400", + "Timestamp": "2024-05-16T11:47:07.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "d2.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.388600", - "Timestamp": "2019-10-15T00:41:38.000Z" + "SpotPrice": "0.470400", + "Timestamp": "2024-05-16T11:47:07.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.388600", - "Timestamp": "2019-10-15T00:41:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.370400", + "Timestamp": "2024-05-16T11:47:07.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.388600", - "Timestamp": "2019-10-15T00:41:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.840000", + "Timestamp": "2024-05-16T11:47:05.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.288600", - "Timestamp": "2019-10-15T00:41:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.835000", + "Timestamp": "2024-05-16T11:47:05.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.288600", - "Timestamp": "2019-10-15T00:41:38.000Z" + "SpotPrice": "2.710000", + "Timestamp": "2024-05-16T11:47:05.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.288600", - "Timestamp": "2019-10-15T00:41:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.474800", + "Timestamp": "2024-05-16T11:47:05.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.707100", - "Timestamp": "2019-10-15T00:40:20.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233200", + "Timestamp": "2024-05-16T11:47:05.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.707100", - "Timestamp": "2019-10-15T00:40:20.000Z" + "SpotPrice": "2.643700", + "Timestamp": "2024-05-16T11:47:04.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.707100", - "Timestamp": "2019-10-15T00:40:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.638700", + "Timestamp": "2024-05-16T11:47:04.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.677100", - "Timestamp": "2019-10-15T00:40:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.513700", + "Timestamp": "2024-05-16T11:47:04.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.677100", - "Timestamp": "2019-10-15T00:40:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.279500", + "Timestamp": "2024-05-16T11:47:04.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.677100", - "Timestamp": "2019-10-15T00:40:20.000Z" + "SpotPrice": "0.274500", + "Timestamp": "2024-05-16T11:47:04.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.577100", - "Timestamp": "2019-10-15T00:40:20.000Z" + "SpotPrice": "0.149500", + "Timestamp": "2024-05-16T11:47:04.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.577100", - "Timestamp": "2019-10-15T00:40:20.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.810400", + "Timestamp": "2024-05-16T11:47:04.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.577100", - "Timestamp": "2019-10-15T00:40:20.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.805400", + "Timestamp": "2024-05-16T11:47:04.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.049100", - "Timestamp": "2019-10-15T00:40:05.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.680400", + "Timestamp": "2024-05-16T11:47:04.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.049100", - "Timestamp": "2019-10-15T00:40:05.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.954100", + "Timestamp": "2024-05-16T11:47:03.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.049100", - "Timestamp": "2019-10-15T00:40:05.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.949100", + "Timestamp": "2024-05-16T11:47:03.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.195000", - "Timestamp": "2019-10-15T00:38:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.824100", + "Timestamp": "2024-05-16T11:47:03.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.metal", "ProductDescription": "Windows", - "SpotPrice": "0.195000", - "Timestamp": "2019-10-15T00:38:39.000Z" + "SpotPrice": "10.320900", + "Timestamp": "2024-05-16T11:47:01.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.metal", "ProductDescription": "Windows", - "SpotPrice": "0.195000", - "Timestamp": "2019-10-15T00:38:39.000Z" + "SpotPrice": "10.423900", + "Timestamp": "2024-05-16T11:47:01.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.115000", - "Timestamp": "2019-10-15T00:38:39.000Z" + "SpotPrice": "0.302700", + "Timestamp": "2024-05-16T11:47:01.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.115000", - "Timestamp": "2019-10-15T00:38:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.297700", + "Timestamp": "2024-05-16T11:47:01.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.115000", - "Timestamp": "2019-10-15T00:38:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172700", + "Timestamp": "2024-05-16T11:47:01.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.155000", - "Timestamp": "2019-10-15T00:38:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.262500", + "Timestamp": "2024-05-16T11:46:57.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.155000", - "Timestamp": "2019-10-15T00:38:39.000Z" + "SpotPrice": "2.257500", + "Timestamp": "2024-05-16T11:46:57.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.155000", - "Timestamp": "2019-10-15T00:38:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.132500", + "Timestamp": "2024-05-16T11:46:57.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.055000", - "Timestamp": "2019-10-15T00:38:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.550900", + "Timestamp": "2024-05-16T11:46:55.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.055000", - "Timestamp": "2019-10-15T00:38:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.545900", + "Timestamp": "2024-05-16T11:46:55.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.055000", - "Timestamp": "2019-10-15T00:38:39.000Z" + "SpotPrice": "0.420900", + "Timestamp": "2024-05-16T11:46:55.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096300", - "Timestamp": "2019-10-15T00:36:27.000Z" + "SpotPrice": "0.171800", + "Timestamp": "2024-05-16T11:46:55.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136300", - "Timestamp": "2019-10-15T00:36:27.000Z" + "SpotPrice": "0.168100", + "Timestamp": "2024-05-16T11:46:55.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036300", - "Timestamp": "2019-10-15T00:36:27.000Z" + "SpotPrice": "0.111800", + "Timestamp": "2024-05-16T11:46:55.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "d2.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096100", - "Timestamp": "2019-10-15T00:34:27.000Z" + "SpotPrice": "1.625100", + "Timestamp": "2024-05-16T11:46:55.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.758700", + "Timestamp": "2024-05-16T11:46:55.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "d2.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136100", - "Timestamp": "2019-10-15T00:34:27.000Z" + "SpotPrice": "1.595100", + "Timestamp": "2024-05-16T11:46:55.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.728700", + "Timestamp": "2024-05-16T11:46:55.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "d2.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036100", - "Timestamp": "2019-10-15T00:34:27.000Z" + "SpotPrice": "1.495100", + "Timestamp": "2024-05-16T11:46:55.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.519200", - "Timestamp": "2019-10-15T00:17:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.628700", + "Timestamp": "2024-05-16T11:46:55.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096100", - "Timestamp": "2019-10-15T00:12:10.000Z" + "SpotPrice": "2.446500", + "Timestamp": "2024-05-16T11:46:54.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136100", - "Timestamp": "2019-10-15T00:12:10.000Z" + "SpotPrice": "2.441500", + "Timestamp": "2024-05-16T11:46:54.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5n.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036100", - "Timestamp": "2019-10-15T00:12:10.000Z" + "SpotPrice": "2.316500", + "Timestamp": "2024-05-16T11:46:54.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.229900", - "Timestamp": "2019-10-15T00:08:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.806000", + "Timestamp": "2024-05-16T11:46:52.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.570300", - "Timestamp": "2019-10-15T00:05:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.801000", + "Timestamp": "2024-05-16T11:46:52.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.570300", - "Timestamp": "2019-10-15T00:05:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.676000", + "Timestamp": "2024-05-16T11:46:52.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.570300", - "Timestamp": "2019-10-15T00:05:40.000Z" + "SpotPrice": "3.633100", + "Timestamp": "2024-05-16T11:46:52.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.284300", - "Timestamp": "2019-10-15T00:05:31.000Z" + "SpotPrice": "0.477700", + "Timestamp": "2024-05-16T11:46:51.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.284300", - "Timestamp": "2019-10-15T00:05:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.472700", + "Timestamp": "2024-05-16T11:46:51.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.347700", + "Timestamp": "2024-05-16T11:46:51.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.867900", + "Timestamp": "2024-05-16T11:46:49.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.284300", - "Timestamp": "2019-10-15T00:05:31.000Z" + "SpotPrice": "0.307500", + "Timestamp": "2024-05-16T11:46:48.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.254300", - "Timestamp": "2019-10-15T00:05:31.000Z" + "SpotPrice": "0.277500", + "Timestamp": "2024-05-16T11:46:48.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.254300", - "Timestamp": "2019-10-15T00:05:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177500", + "Timestamp": "2024-05-16T11:46:48.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116100", + "Timestamp": "2024-05-16T11:46:47.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.036000", + "Timestamp": "2024-05-16T11:46:47.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.224900", + "Timestamp": "2024-05-16T11:46:46.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.254300", - "Timestamp": "2019-10-15T00:05:31.000Z" + "SpotPrice": "1.219900", + "Timestamp": "2024-05-16T11:46:46.000Z" }, { - "AvailabilityZone": "eu-west-1a", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.154300", - "Timestamp": "2019-10-15T00:05:31.000Z" + "SpotPrice": "1.094900", + "Timestamp": "2024-05-16T11:46:46.000Z" }, { - "AvailabilityZone": "eu-west-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.154300", - "Timestamp": "2019-10-15T00:05:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.876900", + "Timestamp": "2024-05-16T11:46:45.000Z" }, { - "AvailabilityZone": "eu-west-1b", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.154300", - "Timestamp": "2019-10-15T00:05:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.580800", + "Timestamp": "2024-05-16T11:46:44.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "7.005700", - "Timestamp": "2019-10-16T02:56:31.000Z" + "SpotPrice": "0.257900", + "Timestamp": "2024-05-16T11:46:42.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.821900", + "Timestamp": "2024-05-16T11:46:42.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "im4gn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.268700", - "Timestamp": "2019-10-16T02:56:12.000Z" + "SpotPrice": "0.143700", + "Timestamp": "2024-05-16T11:46:42.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140000", + "Timestamp": "2024-05-16T11:46:42.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "im4gn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.138700", - "Timestamp": "2019-10-16T02:56:12.000Z" + "SpotPrice": "0.083700", + "Timestamp": "2024-05-16T11:46:42.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226400", + "Timestamp": "2024-05-16T11:46:42.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.766700", - "Timestamp": "2019-10-16T02:48:15.000Z" + "SpotPrice": "0.681600", + "Timestamp": "2024-05-16T11:46:41.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.676600", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.636700", - "Timestamp": "2019-10-16T02:48:15.000Z" + "SpotPrice": "0.551600", + "Timestamp": "2024-05-16T11:46:41.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.184700", - "Timestamp": "2019-10-16T02:39:02.000Z" + "SpotPrice": "5.409900", + "Timestamp": "2024-05-16T11:46:41.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r3.large", "ProductDescription": "Windows", - "SpotPrice": "5.464900", - "Timestamp": "2019-10-16T02:38:06.000Z" + "SpotPrice": "0.148100", + "Timestamp": "2024-05-16T11:46:41.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.464900", - "Timestamp": "2019-10-16T02:38:06.000Z" + "SpotPrice": "0.235400", + "Timestamp": "2024-05-16T11:46:41.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.464900", - "Timestamp": "2019-10-16T02:38:06.000Z" + "SpotPrice": "0.242300", + "Timestamp": "2024-05-16T11:46:41.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.650900", - "Timestamp": "2019-10-16T02:37:27.000Z" + "SpotPrice": "0.782000", + "Timestamp": "2024-05-16T11:46:41.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.650900", - "Timestamp": "2019-10-16T02:37:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.777000", + "Timestamp": "2024-05-16T11:46:41.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.650900", - "Timestamp": "2019-10-16T02:37:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.652000", + "Timestamp": "2024-05-16T11:46:41.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.520900", - "Timestamp": "2019-10-16T02:37:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.236400", + "Timestamp": "2024-05-16T11:46:41.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.520900", - "Timestamp": "2019-10-16T02:37:27.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.779100", + "Timestamp": "2024-05-16T11:46:41.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.520900", - "Timestamp": "2019-10-16T02:37:27.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.749100", + "Timestamp": "2024-05-16T11:46:41.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.235900", - "Timestamp": "2019-10-16T02:37:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.649100", + "Timestamp": "2024-05-16T11:46:41.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.235900", - "Timestamp": "2019-10-16T02:37:19.000Z" + "SpotPrice": "0.635000", + "Timestamp": "2024-05-16T11:46:41.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.235900", - "Timestamp": "2019-10-16T02:37:19.000Z" + "SpotPrice": "0.648300", + "Timestamp": "2024-05-16T11:46:41.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.105900", - "Timestamp": "2019-10-16T02:37:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.630000", + "Timestamp": "2024-05-16T11:46:41.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.105900", - "Timestamp": "2019-10-16T02:37:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.643300", + "Timestamp": "2024-05-16T11:46:41.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.105900", - "Timestamp": "2019-10-16T02:37:19.000Z" + "SpotPrice": "0.505000", + "Timestamp": "2024-05-16T11:46:41.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.049900", - "Timestamp": "2019-10-16T02:37:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.518300", + "Timestamp": "2024-05-16T11:46:41.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.049900", - "Timestamp": "2019-10-16T02:37:19.000Z" + "SpotPrice": "3.048800", + "Timestamp": "2024-05-16T11:46:41.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.049900", - "Timestamp": "2019-10-16T02:37:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.778100", + "Timestamp": "2024-05-16T11:46:41.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.131700", - "Timestamp": "2019-10-16T02:31:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.773100", + "Timestamp": "2024-05-16T11:46:41.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.071700", - "Timestamp": "2019-10-16T02:31:29.000Z" + "SpotPrice": "1.648100", + "Timestamp": "2024-05-16T11:46:41.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.9xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.114800", - "Timestamp": "2019-10-16T02:31:02.000Z" + "SpotPrice": "0.891100", + "Timestamp": "2024-05-16T11:46:40.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.886100", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.9xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.054800", - "Timestamp": "2019-10-16T02:31:02.000Z" + "SpotPrice": "0.761100", + "Timestamp": "2024-05-16T11:46:40.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.978300", - "Timestamp": "2019-10-16T02:30:50.000Z" + "SpotPrice": "2.371900", + "Timestamp": "2024-05-16T11:46:40.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.848300", - "Timestamp": "2019-10-16T02:30:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.366900", + "Timestamp": "2024-05-16T11:46:40.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.959500", - "Timestamp": "2019-10-16T02:25:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.241900", + "Timestamp": "2024-05-16T11:46:40.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.959500", - "Timestamp": "2019-10-16T02:25:39.000Z" + "SpotPrice": "0.946700", + "Timestamp": "2024-05-16T11:46:40.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.959500", - "Timestamp": "2019-10-16T02:25:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.941700", + "Timestamp": "2024-05-16T11:46:40.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.829500", - "Timestamp": "2019-10-16T02:25:39.000Z" + "SpotPrice": "0.816700", + "Timestamp": "2024-05-16T11:46:40.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.829500", - "Timestamp": "2019-10-16T02:25:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.852500", + "Timestamp": "2024-05-16T11:46:39.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.829500", - "Timestamp": "2019-10-16T02:25:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.041100", + "Timestamp": "2024-05-16T11:46:39.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.037500", - "Timestamp": "2019-10-16T02:25:02.000Z" + "SpotPrice": "0.467700", + "Timestamp": "2024-05-16T11:46:39.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.037500", - "Timestamp": "2019-10-16T02:25:02.000Z" + "SpotPrice": "0.471400", + "Timestamp": "2024-05-16T11:46:39.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.metal-16xl", "ProductDescription": "Windows", - "SpotPrice": "3.037500", - "Timestamp": "2019-10-16T02:25:02.000Z" + "SpotPrice": "4.281000", + "Timestamp": "2024-05-16T11:46:39.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.3xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.451700", - "Timestamp": "2019-10-16T02:22:46.000Z" + "SpotPrice": "0.464900", + "Timestamp": "2024-05-16T11:46:39.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.459900", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.3xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.321700", - "Timestamp": "2019-10-16T02:22:46.000Z" + "SpotPrice": "0.334900", + "Timestamp": "2024-05-16T11:46:39.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.902800", - "Timestamp": "2019-10-16T02:14:56.000Z" + "SpotPrice": "0.335600", + "Timestamp": "2024-05-16T11:46:38.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.772800", - "Timestamp": "2019-10-16T02:14:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.330600", + "Timestamp": "2024-05-16T11:46:38.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.251600", - "Timestamp": "2019-10-16T02:14:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.205600", + "Timestamp": "2024-05-16T11:46:38.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.191600", - "Timestamp": "2019-10-16T02:14:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.056000", + "Timestamp": "2024-05-16T11:46:38.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.151400", - "Timestamp": "2019-10-16T02:14:13.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.026000", + "Timestamp": "2024-05-16T11:46:38.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.943100", - "Timestamp": "2019-10-16T02:06:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.926000", + "Timestamp": "2024-05-16T11:46:38.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2idn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.715700", - "Timestamp": "2019-10-16T02:06:14.000Z" + "SpotPrice": "2.431300", + "Timestamp": "2024-05-16T11:46:38.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.585700", - "Timestamp": "2019-10-16T02:06:14.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.426300", + "Timestamp": "2024-05-16T11:46:38.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.915600", - "Timestamp": "2019-10-16T01:49:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.301300", + "Timestamp": "2024-05-16T11:46:38.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.839300", - "Timestamp": "2019-10-16T01:49:08.000Z" + "SpotPrice": "0.088200", + "Timestamp": "2024-05-16T11:46:38.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.785600", - "Timestamp": "2019-10-16T01:49:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084500", + "Timestamp": "2024-05-16T11:46:38.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.709300", - "Timestamp": "2019-10-16T01:49:08.000Z" + "SpotPrice": "0.028200", + "Timestamp": "2024-05-16T11:46:38.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.846000", - "Timestamp": "2019-10-16T01:39:39.000Z" + "SpotPrice": "0.398200", + "Timestamp": "2024-05-16T11:46:38.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.716000", - "Timestamp": "2019-10-16T01:39:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.393200", + "Timestamp": "2024-05-16T11:46:38.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.999700", - "Timestamp": "2019-10-16T01:38:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.268200", + "Timestamp": "2024-05-16T11:46:38.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.999700", - "Timestamp": "2019-10-16T01:38:59.000Z" + "SpotPrice": "3.701500", + "Timestamp": "2024-05-16T11:46:38.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.999700", - "Timestamp": "2019-10-16T01:38:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.255300", + "Timestamp": "2024-05-16T11:46:37.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.185700", - "Timestamp": "2019-10-16T01:38:44.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.250300", + "Timestamp": "2024-05-16T11:46:37.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.185700", - "Timestamp": "2019-10-16T01:38:44.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125300", + "Timestamp": "2024-05-16T11:46:37.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.185700", - "Timestamp": "2019-10-16T01:38:44.000Z" + "SpotPrice": "0.101500", + "Timestamp": "2024-05-16T11:46:37.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.055700", - "Timestamp": "2019-10-16T01:38:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-16T11:46:37.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.055700", - "Timestamp": "2019-10-16T01:38:44.000Z" + "SpotPrice": "0.041500", + "Timestamp": "2024-05-16T11:46:37.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.055700", - "Timestamp": "2019-10-16T01:38:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.712000", + "Timestamp": "2024-05-16T11:46:37.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-16T01:38:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.707000", + "Timestamp": "2024-05-16T11:46:37.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-16T01:38:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.582000", + "Timestamp": "2024-05-16T11:46:37.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-16T01:38:27.000Z" + "SpotPrice": "0.120300", + "Timestamp": "2024-05-16T11:46:37.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066000", - "Timestamp": "2019-10-16T01:38:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T11:46:37.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066000", - "Timestamp": "2019-10-16T01:38:27.000Z" + "SpotPrice": "0.060300", + "Timestamp": "2024-05-16T11:46:37.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066000", - "Timestamp": "2019-10-16T01:38:27.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.483900", + "Timestamp": "2024-05-16T11:46:37.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.250000", - "Timestamp": "2019-10-16T01:38:24.000Z" + "SpotPrice": "0.441000", + "Timestamp": "2024-05-16T11:46:37.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.250000", - "Timestamp": "2019-10-16T01:38:24.000Z" + "SpotPrice": "1.837800", + "Timestamp": "2024-05-16T11:46:36.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.250000", - "Timestamp": "2019-10-16T01:38:24.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.304400", + "Timestamp": "2024-05-16T11:46:36.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.987300", - "Timestamp": "2019-10-16T01:38:05.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.299400", + "Timestamp": "2024-05-16T11:46:36.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.987300", - "Timestamp": "2019-10-16T01:38:05.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.174400", + "Timestamp": "2024-05-16T11:46:36.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.987300", - "Timestamp": "2019-10-16T01:38:05.000Z" + "SpotPrice": "2.603700", + "Timestamp": "2024-05-16T11:46:36.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.381300", - "Timestamp": "2019-10-16T01:37:56.000Z" + "SpotPrice": "0.135700", + "Timestamp": "2024-05-16T11:46:36.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.381300", - "Timestamp": "2019-10-16T01:37:56.000Z" + "SpotPrice": "0.149400", + "Timestamp": "2024-05-16T11:46:36.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.381300", - "Timestamp": "2019-10-16T01:37:56.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131700", + "Timestamp": "2024-05-16T11:46:36.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.251300", - "Timestamp": "2019-10-16T01:37:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145400", + "Timestamp": "2024-05-16T11:46:36.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.251300", - "Timestamp": "2019-10-16T01:37:56.000Z" + "SpotPrice": "0.075700", + "Timestamp": "2024-05-16T11:46:36.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.251300", - "Timestamp": "2019-10-16T01:37:56.000Z" + "SpotPrice": "0.089400", + "Timestamp": "2024-05-16T11:46:36.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "8.660000", - "Timestamp": "2019-10-16T01:37:39.000Z" + "SpotPrice": "0.195600", + "Timestamp": "2024-05-16T11:46:36.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.658800", - "Timestamp": "2019-10-16T01:37:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128100", + "Timestamp": "2024-05-16T11:46:36.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.844800", - "Timestamp": "2019-10-16T01:37:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124400", + "Timestamp": "2024-05-16T11:46:36.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.714800", - "Timestamp": "2019-10-16T01:37:39.000Z" + "SpotPrice": "0.068100", + "Timestamp": "2024-05-16T11:46:36.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.109000", - "Timestamp": "2019-10-16T01:35:32.000Z" + "SpotPrice": "5.385900", + "Timestamp": "2024-05-16T11:46:35.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.871900", - "Timestamp": "2019-10-16T01:35:32.000Z" + "SpotPrice": "5.702700", + "Timestamp": "2024-05-16T11:46:35.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.979000", - "Timestamp": "2019-10-16T01:35:32.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.380900", + "Timestamp": "2024-05-16T11:46:35.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.741900", - "Timestamp": "2019-10-16T01:35:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.697700", + "Timestamp": "2024-05-16T11:46:35.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.290600", - "Timestamp": "2019-10-16T01:32:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.255900", + "Timestamp": "2024-05-16T11:46:35.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.938400", - "Timestamp": "2019-10-16T01:32:41.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.572700", + "Timestamp": "2024-05-16T11:46:35.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.506200", - "Timestamp": "2019-10-16T01:28:54.000Z" + "SpotPrice": "0.229400", + "Timestamp": "2024-05-16T11:46:34.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.257300", - "Timestamp": "2019-10-16T01:24:49.000Z" - }, - { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.127300", - "Timestamp": "2019-10-16T01:24:49.000Z" + "SpotPrice": "0.122600", + "Timestamp": "2024-05-16T11:46:34.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.747900", - "Timestamp": "2019-10-16T01:24:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118900", + "Timestamp": "2024-05-16T11:46:34.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.617900", - "Timestamp": "2019-10-16T01:24:23.000Z" - }, - { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125000", - "Timestamp": "2019-10-16T01:22:46.000Z" + "SpotPrice": "0.062600", + "Timestamp": "2024-05-16T11:46:34.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "d2.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.125000", - "Timestamp": "2019-10-16T01:22:46.000Z" + "SpotPrice": "1.268800", + "Timestamp": "2024-05-16T11:46:34.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.125000", - "Timestamp": "2019-10-16T01:22:46.000Z" + "SpotPrice": "0.431200", + "Timestamp": "2024-05-16T11:46:32.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-16T01:22:12.000Z" + "SpotPrice": "1.839400", + "Timestamp": "2024-05-16T11:46:32.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-16T01:22:12.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.834400", + "Timestamp": "2024-05-16T11:46:32.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-16T01:22:12.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.709400", + "Timestamp": "2024-05-16T11:46:32.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033000", - "Timestamp": "2019-10-16T01:22:12.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.355000", + "Timestamp": "2024-05-16T11:46:32.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033000", - "Timestamp": "2019-10-16T01:22:12.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.350000", + "Timestamp": "2024-05-16T11:46:32.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033000", - "Timestamp": "2019-10-16T01:22:12.000Z" + "SpotPrice": "0.225000", + "Timestamp": "2024-05-16T11:46:32.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.379600", - "Timestamp": "2019-10-16T01:16:18.000Z" + "SpotPrice": "5.293700", + "Timestamp": "2024-05-16T11:46:32.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.002500", - "Timestamp": "2019-10-16T01:15:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.413800", + "Timestamp": "2024-05-16T11:46:31.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.298500", - "Timestamp": "2019-10-16T01:08:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.408800", + "Timestamp": "2024-05-16T11:46:31.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.168500", - "Timestamp": "2019-10-16T01:08:06.000Z" + "SpotPrice": "2.283800", + "Timestamp": "2024-05-16T11:46:31.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.419600", - "Timestamp": "2019-10-16T01:07:49.000Z" + "SpotPrice": "0.088500", + "Timestamp": "2024-05-16T11:46:30.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084800", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.289600", - "Timestamp": "2019-10-16T01:07:49.000Z" + "SpotPrice": "0.028500", + "Timestamp": "2024-05-16T11:46:30.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c4.xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.766500", - "Timestamp": "2019-10-16T00:58:56.000Z" + "SpotPrice": "0.216200", + "Timestamp": "2024-05-16T11:46:30.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090000", - "Timestamp": "2019-10-16T00:45:54.000Z" + "SpotPrice": "0.727500", + "Timestamp": "2024-05-16T11:46:30.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030000", - "Timestamp": "2019-10-16T00:45:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.722500", + "Timestamp": "2024-05-16T11:46:30.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.387100", - "Timestamp": "2019-10-16T00:42:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.597500", + "Timestamp": "2024-05-16T11:46:30.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.031800", - "Timestamp": "2019-10-16T00:42:40.000Z" + "SpotPrice": "0.213200", + "Timestamp": "2024-05-16T11:46:30.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.821500", - "Timestamp": "2019-10-16T00:42:07.000Z" + "SpotPrice": "0.096400", + "Timestamp": "2024-05-16T11:46:29.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092400", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.691500", - "Timestamp": "2019-10-16T00:42:07.000Z" + "SpotPrice": "0.036400", + "Timestamp": "2024-05-16T11:46:29.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.970800", - "Timestamp": "2019-10-16T00:34:32.000Z" + "SpotPrice": "0.488800", + "Timestamp": "2024-05-16T11:46:28.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.840800", - "Timestamp": "2019-10-16T00:34:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.483800", + "Timestamp": "2024-05-16T11:46:28.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.210300", - "Timestamp": "2019-10-16T00:34:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.358800", + "Timestamp": "2024-05-16T11:46:28.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.080300", - "Timestamp": "2019-10-16T00:34:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.597900", + "Timestamp": "2024-05-16T11:46:28.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.417900", - "Timestamp": "2019-10-16T00:33:45.000Z" + "SpotPrice": "0.224100", + "Timestamp": "2024-05-16T11:46:27.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.220400", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.287900", - "Timestamp": "2019-10-16T00:33:45.000Z" + "SpotPrice": "0.164100", + "Timestamp": "2024-05-16T11:46:27.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.721700", - "Timestamp": "2019-10-16T00:26:15.000Z" + "SpotPrice": "0.608700", + "Timestamp": "2024-05-16T11:46:26.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.591700", - "Timestamp": "2019-10-16T00:26:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.603700", + "Timestamp": "2024-05-16T11:46:26.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.256700", - "Timestamp": "2019-10-16T00:24:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.478700", + "Timestamp": "2024-05-16T11:46:26.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.256700", - "Timestamp": "2019-10-16T00:24:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.286700", + "Timestamp": "2024-05-16T11:46:26.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.256700", - "Timestamp": "2019-10-16T00:24:06.000Z" + "SpotPrice": "1.657600", + "Timestamp": "2024-05-16T11:46:25.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.126700", - "Timestamp": "2019-10-16T00:24:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.652600", + "Timestamp": "2024-05-16T11:46:25.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.126700", - "Timestamp": "2019-10-16T00:24:06.000Z" + "SpotPrice": "1.527600", + "Timestamp": "2024-05-16T11:46:25.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.126700", - "Timestamp": "2019-10-16T00:24:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.412700", + "Timestamp": "2024-05-16T11:46:24.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.188700", - "Timestamp": "2019-10-16T00:23:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.407700", + "Timestamp": "2024-05-16T11:46:24.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.188700", - "Timestamp": "2019-10-16T00:23:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.282700", + "Timestamp": "2024-05-16T11:46:24.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.188700", - "Timestamp": "2019-10-16T00:23:58.000Z" + "SpotPrice": "7.889400", + "Timestamp": "2024-05-16T11:46:24.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.261100", - "Timestamp": "2019-10-16T00:23:14.000Z" + "SpotPrice": "0.287300", + "Timestamp": "2024-05-16T11:46:23.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.261100", - "Timestamp": "2019-10-16T00:23:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.282300", + "Timestamp": "2024-05-16T11:46:23.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.131100", - "Timestamp": "2019-10-16T00:23:14.000Z" + "SpotPrice": "0.157300", + "Timestamp": "2024-05-16T11:46:23.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.131100", - "Timestamp": "2019-10-16T00:23:14.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278300", + "Timestamp": "2024-05-16T11:46:22.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.443100", - "Timestamp": "2019-10-16T00:23:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273300", + "Timestamp": "2024-05-16T11:46:22.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.443100", - "Timestamp": "2019-10-16T00:23:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148300", + "Timestamp": "2024-05-16T11:46:22.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.443100", - "Timestamp": "2019-10-16T00:23:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137800", + "Timestamp": "2024-05-16T11:46:22.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.518400", - "Timestamp": "2019-10-16T00:17:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142400", + "Timestamp": "2024-05-16T11:46:22.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.739100", - "Timestamp": "2019-10-16T00:17:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134100", + "Timestamp": "2024-05-16T11:46:22.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.609100", - "Timestamp": "2019-10-16T00:17:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138700", + "Timestamp": "2024-05-16T11:46:22.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.067700", - "Timestamp": "2019-10-16T00:09:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077800", + "Timestamp": "2024-05-16T11:46:22.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.182000", - "Timestamp": "2019-10-16T00:08:52.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082400", + "Timestamp": "2024-05-16T11:46:22.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.423500", - "Timestamp": "2019-10-16T00:08:45.000Z" + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T11:46:22.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092300", + "Timestamp": "2024-05-16T11:46:22.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.293500", - "Timestamp": "2019-10-16T00:08:45.000Z" + "SpotPrice": "0.036000", + "Timestamp": "2024-05-16T11:46:22.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m4.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.740600", - "Timestamp": "2019-10-16T00:01:15.000Z" + "SpotPrice": "0.130800", + "Timestamp": "2024-05-16T11:46:22.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170800", + "Timestamp": "2024-05-16T11:46:22.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m4.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.610600", - "Timestamp": "2019-10-16T00:01:15.000Z" + "SpotPrice": "0.070800", + "Timestamp": "2024-05-16T11:46:22.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.598500", - "Timestamp": "2019-10-16T00:01:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.268600", + "Timestamp": "2024-05-16T11:46:22.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.049900", - "Timestamp": "2019-10-16T00:00:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.263600", + "Timestamp": "2024-05-16T11:46:22.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.550600", - "Timestamp": "2019-10-15T23:53:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.138600", + "Timestamp": "2024-05-16T11:46:22.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.309900", + "Timestamp": "2024-05-16T11:46:20.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.304900", + "Timestamp": "2024-05-16T11:46:20.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.179900", + "Timestamp": "2024-05-16T11:46:20.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.354000", - "Timestamp": "2019-10-15T23:52:51.000Z" + "SpotPrice": "1.738300", + "Timestamp": "2024-05-16T11:46:19.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.049900", - "Timestamp": "2019-10-15T23:52:27.000Z" + "SpotPrice": "0.216300", + "Timestamp": "2024-05-16T11:46:11.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "t2.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.156500", - "Timestamp": "2019-10-15T23:52:04.000Z" + "SpotPrice": "0.076800", + "Timestamp": "2024-05-16T11:32:41.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116800", + "Timestamp": "2024-05-16T11:32:41.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "t2.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.096500", - "Timestamp": "2019-10-15T23:52:04.000Z" + "SpotPrice": "0.016800", + "Timestamp": "2024-05-16T11:32:41.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-16T11:32:33.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "p2.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.084100", - "Timestamp": "2019-10-15T23:51:12.000Z" + "SpotPrice": "1.770700", + "Timestamp": "2024-05-16T11:32:23.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "p2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.740700", + "Timestamp": "2024-05-16T11:32:23.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "p2.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.954100", - "Timestamp": "2019-10-15T23:51:12.000Z" + "SpotPrice": "1.640700", + "Timestamp": "2024-05-16T11:32:23.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.137800", - "Timestamp": "2019-10-15T23:44:10.000Z" + "SpotPrice": "0.704100", + "Timestamp": "2024-05-16T11:32:22.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.699100", + "Timestamp": "2024-05-16T11:32:22.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.077800", - "Timestamp": "2019-10-15T23:44:10.000Z" + "SpotPrice": "0.574100", + "Timestamp": "2024-05-16T11:32:22.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3.small", - "ProductDescription": "Windows", - "SpotPrice": "0.025500", - "Timestamp": "2019-10-15T23:38:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.508700", + "Timestamp": "2024-05-16T11:32:21.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3.small", - "ProductDescription": "Windows", - "SpotPrice": "0.025500", - "Timestamp": "2019-10-15T23:38:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.503700", + "Timestamp": "2024-05-16T11:32:21.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3.small", - "ProductDescription": "Windows", - "SpotPrice": "0.025500", - "Timestamp": "2019-10-15T23:38:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.378700", + "Timestamp": "2024-05-16T11:32:21.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.788900", - "Timestamp": "2019-10-15T23:38:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.480900", + "Timestamp": "2024-05-16T11:32:20.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.788900", - "Timestamp": "2019-10-15T23:38:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.505000", + "Timestamp": "2024-05-16T11:32:20.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "im4gn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.788900", - "Timestamp": "2019-10-15T23:38:19.000Z" + "SpotPrice": "1.061300", + "Timestamp": "2024-05-16T11:32:20.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.658900", - "Timestamp": "2019-10-15T23:38:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.056300", + "Timestamp": "2024-05-16T11:32:20.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "im4gn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.658900", - "Timestamp": "2019-10-15T23:38:19.000Z" + "SpotPrice": "0.931300", + "Timestamp": "2024-05-16T11:32:20.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.658900", - "Timestamp": "2019-10-15T23:38:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.966300", + "Timestamp": "2024-05-16T11:32:16.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067100", - "Timestamp": "2019-10-15T23:38:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.961300", + "Timestamp": "2024-05-16T11:32:16.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067100", - "Timestamp": "2019-10-15T23:38:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.836300", + "Timestamp": "2024-05-16T11:32:16.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067100", - "Timestamp": "2019-10-15T23:38:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.730500", + "Timestamp": "2024-05-16T11:32:15.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007100", - "Timestamp": "2019-10-15T23:38:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.504400", + "Timestamp": "2024-05-16T11:32:14.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007100", - "Timestamp": "2019-10-15T23:38:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.499400", + "Timestamp": "2024-05-16T11:32:14.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007100", - "Timestamp": "2019-10-15T23:38:09.000Z" + "SpotPrice": "3.374400", + "Timestamp": "2024-05-16T11:32:14.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "z1d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T23:38:00.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.248900", + "Timestamp": "2024-05-16T11:32:12.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "z1d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T23:38:00.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.479800", + "Timestamp": "2024-05-16T11:32:09.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "z1d.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "p4d.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T23:38:00.000Z" + "SpotPrice": "6.943400", + "Timestamp": "2024-05-16T11:32:07.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "z1d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066000", - "Timestamp": "2019-10-15T23:38:00.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.938400", + "Timestamp": "2024-05-16T11:32:07.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "z1d.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "p4d.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066000", - "Timestamp": "2019-10-15T23:38:00.000Z" + "SpotPrice": "6.813400", + "Timestamp": "2024-05-16T11:32:07.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "z1d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066000", - "Timestamp": "2019-10-15T23:38:00.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.401400", + "Timestamp": "2024-05-16T11:32:05.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.291600", - "Timestamp": "2019-10-15T23:37:54.000Z" + "SpotPrice": "2.549800", + "Timestamp": "2024-05-16T11:32:05.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.291600", - "Timestamp": "2019-10-15T23:37:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.396400", + "Timestamp": "2024-05-16T11:32:05.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.291600", - "Timestamp": "2019-10-15T23:37:54.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.544800", + "Timestamp": "2024-05-16T11:32:05.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.231600", - "Timestamp": "2019-10-15T23:37:54.000Z" + "SpotPrice": "2.271400", + "Timestamp": "2024-05-16T11:32:05.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.231600", - "Timestamp": "2019-10-15T23:37:54.000Z" + "SpotPrice": "2.419800", + "Timestamp": "2024-05-16T11:32:05.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.231600", - "Timestamp": "2019-10-15T23:37:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170000", + "Timestamp": "2024-05-16T11:32:05.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.415600", - "Timestamp": "2019-10-15T23:37:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166000", + "Timestamp": "2024-05-16T11:32:05.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.415600", - "Timestamp": "2019-10-15T23:37:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T11:32:05.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.415600", - "Timestamp": "2019-10-15T23:37:54.000Z" + "SpotPrice": "0.238400", + "Timestamp": "2024-05-16T11:32:05.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.713500", - "Timestamp": "2019-10-15T23:37:52.000Z" + "SpotPrice": "1.017800", + "Timestamp": "2024-05-16T11:32:03.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.713500", - "Timestamp": "2019-10-15T23:37:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.012800", + "Timestamp": "2024-05-16T11:32:03.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.713500", - "Timestamp": "2019-10-15T23:37:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.887800", + "Timestamp": "2024-05-16T11:32:03.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.583500", - "Timestamp": "2019-10-15T23:37:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.424600", + "Timestamp": "2024-05-16T11:32:01.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.583500", - "Timestamp": "2019-10-15T23:37:52.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.957300", + "Timestamp": "2024-05-16T11:32:00.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.583500", - "Timestamp": "2019-10-15T23:37:52.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.952300", + "Timestamp": "2024-05-16T11:32:00.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "z1d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.158000", - "Timestamp": "2019-10-15T23:37:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.827300", + "Timestamp": "2024-05-16T11:32:00.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "z1d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.158000", - "Timestamp": "2019-10-15T23:37:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.699600", + "Timestamp": "2024-05-16T11:31:59.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "z1d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.158000", - "Timestamp": "2019-10-15T23:37:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.694600", + "Timestamp": "2024-05-16T11:31:59.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.999500", - "Timestamp": "2019-10-15T23:36:46.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.569600", + "Timestamp": "2024-05-16T11:31:59.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.999500", - "Timestamp": "2019-10-15T23:36:46.000Z" + "SpotPrice": "1.789800", + "Timestamp": "2024-05-16T11:31:58.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.large", "ProductDescription": "Windows", - "SpotPrice": "5.999500", - "Timestamp": "2019-10-15T23:36:46.000Z" + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T11:31:57.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.666500", - "Timestamp": "2019-10-15T23:35:40.000Z" + "SpotPrice": "0.525000", + "Timestamp": "2024-05-16T11:31:57.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.700200", - "Timestamp": "2019-10-15T23:35:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.520000", + "Timestamp": "2024-05-16T11:31:57.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.536500", - "Timestamp": "2019-10-15T23:35:40.000Z" + "SpotPrice": "0.395000", + "Timestamp": "2024-05-16T11:31:57.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.570200", - "Timestamp": "2019-10-15T23:35:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.106300", + "Timestamp": "2024-05-16T11:31:54.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.322000", - "Timestamp": "2019-10-15T23:31:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.101300", + "Timestamp": "2024-05-16T11:31:54.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.192000", - "Timestamp": "2019-10-15T23:31:07.000Z" + "SpotPrice": "0.976300", + "Timestamp": "2024-05-16T11:31:54.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094900", - "Timestamp": "2019-10-15T23:27:16.000Z" + "SpotPrice": "0.800400", + "Timestamp": "2024-05-16T11:31:52.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034900", - "Timestamp": "2019-10-15T23:27:16.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.795400", + "Timestamp": "2024-05-16T11:31:52.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5ad.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.154700", - "Timestamp": "2019-10-15T23:19:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.670400", + "Timestamp": "2024-05-16T11:31:52.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5ad.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.094700", - "Timestamp": "2019-10-15T23:19:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217100", + "Timestamp": "2024-05-16T11:31:52.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.516500", - "Timestamp": "2019-10-15T23:18:53.000Z" + "SpotPrice": "0.236600", + "Timestamp": "2024-05-16T11:31:51.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.628400", - "Timestamp": "2019-10-15T23:18:40.000Z" + "SpotPrice": "1.062000", + "Timestamp": "2024-05-16T11:31:50.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.498400", - "Timestamp": "2019-10-15T23:18:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.057000", + "Timestamp": "2024-05-16T11:31:50.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.530000", - "Timestamp": "2019-10-15T23:17:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.932000", + "Timestamp": "2024-05-16T11:31:50.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.530000", - "Timestamp": "2019-10-15T23:17:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.187900", + "Timestamp": "2024-05-16T11:31:49.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.530000", - "Timestamp": "2019-10-15T23:17:33.000Z" + "SpotPrice": "1.044400", + "Timestamp": "2024-05-16T11:31:49.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.400000", - "Timestamp": "2019-10-15T23:17:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.039400", + "Timestamp": "2024-05-16T11:31:49.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.400000", - "Timestamp": "2019-10-15T23:17:33.000Z" + "SpotPrice": "0.914400", + "Timestamp": "2024-05-16T11:31:49.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.400000", - "Timestamp": "2019-10-15T23:17:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.859900", + "Timestamp": "2024-05-16T11:31:46.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.603100", - "Timestamp": "2019-10-15T23:10:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.854900", + "Timestamp": "2024-05-16T11:31:46.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.473100", - "Timestamp": "2019-10-15T23:10:51.000Z" + "SpotPrice": "2.729900", + "Timestamp": "2024-05-16T11:31:46.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4ad.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.387500", - "Timestamp": "2019-10-15T23:10:43.000Z" + "SpotPrice": "0.372500", + "Timestamp": "2024-05-16T11:31:46.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.367500", + "Timestamp": "2024-05-16T11:31:46.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4ad.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.257500", - "Timestamp": "2019-10-15T23:10:43.000Z" + "SpotPrice": "0.242500", + "Timestamp": "2024-05-16T11:31:46.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.255900", - "Timestamp": "2019-10-15T23:10:18.000Z" + "SpotPrice": "1.812900", + "Timestamp": "2024-05-16T11:31:46.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.171800", - "Timestamp": "2019-10-15T23:05:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.311000", + "Timestamp": "2024-05-16T11:31:43.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g3.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.171800", - "Timestamp": "2019-10-15T23:05:51.000Z" + "SpotPrice": "0.537800", + "Timestamp": "2024-05-16T11:31:43.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.171800", - "Timestamp": "2019-10-15T23:05:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.507800", + "Timestamp": "2024-05-16T11:31:43.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g3.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.041800", - "Timestamp": "2019-10-15T23:05:51.000Z" + "SpotPrice": "0.407800", + "Timestamp": "2024-05-16T11:31:43.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.041800", - "Timestamp": "2019-10-15T23:05:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.026900", + "Timestamp": "2024-05-16T11:31:42.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.021900", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.041800", - "Timestamp": "2019-10-15T23:05:51.000Z" + "SpotPrice": "0.896900", + "Timestamp": "2024-05-16T11:31:42.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.962000", - "Timestamp": "2019-10-15T22:57:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.912400", + "Timestamp": "2024-05-16T11:31:40.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.962000", - "Timestamp": "2019-10-15T22:57:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.907400", + "Timestamp": "2024-05-16T11:31:40.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.962000", - "Timestamp": "2019-10-15T22:57:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.782400", + "Timestamp": "2024-05-16T11:31:40.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.610000", - "Timestamp": "2019-10-15T22:57:34.000Z" + "SpotPrice": "0.144100", + "Timestamp": "2024-05-16T11:31:40.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.480000", - "Timestamp": "2019-10-15T22:57:34.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140100", + "Timestamp": "2024-05-16T11:31:40.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.003400", - "Timestamp": "2019-10-15T22:54:13.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084100", + "Timestamp": "2024-05-16T11:31:40.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.660700", - "Timestamp": "2019-10-15T22:54:12.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.740900", + "Timestamp": "2024-05-16T11:31:40.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.126600", - "Timestamp": "2019-10-15T22:45:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.710900", + "Timestamp": "2024-05-16T11:31:40.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.012500", - "Timestamp": "2019-10-15T22:40:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.610900", + "Timestamp": "2024-05-16T11:31:40.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.322000", - "Timestamp": "2019-10-15T22:40:07.000Z" + "SpotPrice": "1.848600", + "Timestamp": "2024-05-16T11:31:39.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.843600", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.192000", - "Timestamp": "2019-10-15T22:40:07.000Z" + "SpotPrice": "1.718600", + "Timestamp": "2024-05-16T11:31:39.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.999800", - "Timestamp": "2019-10-15T22:39:13.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.294100", + "Timestamp": "2024-05-16T11:31:39.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.468400", - "Timestamp": "2019-10-15T22:38:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.264100", + "Timestamp": "2024-05-16T11:31:39.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.468400", - "Timestamp": "2019-10-15T22:38:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.164100", + "Timestamp": "2024-05-16T11:31:39.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.468400", - "Timestamp": "2019-10-15T22:38:38.000Z" + "SpotPrice": "3.908200", + "Timestamp": "2024-05-16T11:31:39.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.758400", - "Timestamp": "2019-10-15T22:38:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.482600", + "Timestamp": "2024-05-16T11:31:39.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "h1.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.758400", - "Timestamp": "2019-10-15T22:38:38.000Z" + "SpotPrice": "0.546700", + "Timestamp": "2024-05-16T11:31:39.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.758400", - "Timestamp": "2019-10-15T22:38:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "h1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.516700", + "Timestamp": "2024-05-16T11:31:39.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "h1.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.628400", - "Timestamp": "2019-10-15T22:38:38.000Z" + "SpotPrice": "0.416700", + "Timestamp": "2024-05-16T11:31:39.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.628400", - "Timestamp": "2019-10-15T22:38:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.325300", + "Timestamp": "2024-05-16T11:31:39.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.628400", - "Timestamp": "2019-10-15T22:38:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.581500", + "Timestamp": "2024-05-16T11:31:38.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.261400", - "Timestamp": "2019-10-15T22:38:09.000Z" + "SpotPrice": "3.454300", + "Timestamp": "2024-05-16T11:31:38.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.406500", - "Timestamp": "2019-10-15T22:37:52.000Z" + "SpotPrice": "0.441400", + "Timestamp": "2024-05-16T11:31:38.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.436400", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.276500", - "Timestamp": "2019-10-15T22:37:52.000Z" + "SpotPrice": "0.311400", + "Timestamp": "2024-05-16T11:31:38.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.657800", - "Timestamp": "2019-10-15T22:37:37.000Z" + "SpotPrice": "0.207700", + "Timestamp": "2024-05-16T11:31:37.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.527800", - "Timestamp": "2019-10-15T22:37:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.204000", + "Timestamp": "2024-05-16T11:31:37.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.253100", - "Timestamp": "2019-10-15T22:37:13.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147700", + "Timestamp": "2024-05-16T11:31:37.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.metal", "ProductDescription": "Windows", - "SpotPrice": "0.450000", - "Timestamp": "2019-10-15T22:37:13.000Z" + "SpotPrice": "5.708700", + "Timestamp": "2024-05-16T11:31:35.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.450000", - "Timestamp": "2019-10-15T22:37:13.000Z" + "SpotPrice": "2.796000", + "Timestamp": "2024-05-16T11:31:35.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129100", - "Timestamp": "2019-10-15T22:37:13.000Z" + "SpotPrice": "0.554100", + "Timestamp": "2024-05-16T11:31:34.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.326000", - "Timestamp": "2019-10-15T22:37:13.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.549100", + "Timestamp": "2024-05-16T11:31:34.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.326000", - "Timestamp": "2019-10-15T22:37:13.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.424100", + "Timestamp": "2024-05-16T11:31:34.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069100", - "Timestamp": "2019-10-15T22:37:13.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.828100", + "Timestamp": "2024-05-16T11:31:34.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.266000", - "Timestamp": "2019-10-15T22:37:13.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.823100", + "Timestamp": "2024-05-16T11:31:34.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.266000", - "Timestamp": "2019-10-15T22:37:13.000Z" + "SpotPrice": "0.698100", + "Timestamp": "2024-05-16T11:31:34.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.656600", - "Timestamp": "2019-10-15T22:36:21.000Z" + "SpotPrice": "1.211600", + "Timestamp": "2024-05-16T11:31:34.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.656600", - "Timestamp": "2019-10-15T22:36:21.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.206600", + "Timestamp": "2024-05-16T11:31:34.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.656600", - "Timestamp": "2019-10-15T22:36:21.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.081600", + "Timestamp": "2024-05-16T11:31:34.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.526600", - "Timestamp": "2019-10-15T22:36:21.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.588800", + "Timestamp": "2024-05-16T11:31:33.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.526600", - "Timestamp": "2019-10-15T22:36:21.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.583800", + "Timestamp": "2024-05-16T11:31:33.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.526600", - "Timestamp": "2019-10-15T22:36:21.000Z" + "SpotPrice": "1.458800", + "Timestamp": "2024-05-16T11:31:33.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.998600", - "Timestamp": "2019-10-15T22:36:21.000Z" + "SpotPrice": "9.691600", + "Timestamp": "2024-05-16T11:31:32.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.998600", - "Timestamp": "2019-10-15T22:36:21.000Z" + "SpotPrice": "0.256100", + "Timestamp": "2024-05-16T11:31:32.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.998600", - "Timestamp": "2019-10-15T22:36:21.000Z" + "SpotPrice": "0.428700", + "Timestamp": "2024-05-16T11:31:32.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.235900", - "Timestamp": "2019-10-15T22:29:27.000Z" + "SpotPrice": "1.395500", + "Timestamp": "2024-05-16T11:31:32.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.105900", - "Timestamp": "2019-10-15T22:29:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.365500", + "Timestamp": "2024-05-16T11:31:32.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.373500", - "Timestamp": "2019-10-15T22:29:17.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.265500", + "Timestamp": "2024-05-16T11:31:32.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.475900", - "Timestamp": "2019-10-15T22:29:09.000Z" + "SpotPrice": "8.179700", + "Timestamp": "2024-05-16T11:31:31.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.200400", - "Timestamp": "2019-10-15T22:28:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.781400", + "Timestamp": "2024-05-16T11:31:31.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.820300", - "Timestamp": "2019-10-15T22:28:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.776400", + "Timestamp": "2024-05-16T11:31:31.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.690300", - "Timestamp": "2019-10-15T22:28:36.000Z" + "SpotPrice": "4.651400", + "Timestamp": "2024-05-16T11:31:31.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.large", "ProductDescription": "Windows", - "SpotPrice": "4.481600", - "Timestamp": "2019-10-15T22:20:09.000Z" + "SpotPrice": "0.122200", + "Timestamp": "2024-05-16T11:31:31.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "is4gen.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.280700", - "Timestamp": "2019-10-15T22:12:26.000Z" + "SpotPrice": "0.837100", + "Timestamp": "2024-05-16T11:31:30.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.150700", - "Timestamp": "2019-10-15T22:12:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.832100", + "Timestamp": "2024-05-16T11:31:30.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.752500", - "Timestamp": "2019-10-15T22:12:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.707100", + "Timestamp": "2024-05-16T11:31:30.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "h1.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.481200", - "Timestamp": "2019-10-15T22:11:52.000Z" + "SpotPrice": "0.941700", + "Timestamp": "2024-05-16T11:31:30.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092200", - "Timestamp": "2019-10-15T22:11:46.000Z" - }, - { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032200", - "Timestamp": "2019-10-15T22:11:46.000Z" + "SpotPrice": "2.609100", + "Timestamp": "2024-05-16T11:31:30.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.716300", - "Timestamp": "2019-10-15T22:11:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.604100", + "Timestamp": "2024-05-16T11:31:30.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.586300", - "Timestamp": "2019-10-15T22:11:43.000Z" + "SpotPrice": "2.479100", + "Timestamp": "2024-05-16T11:31:30.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.348200", - "Timestamp": "2019-10-15T22:04:33.000Z" - }, - { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.218200", - "Timestamp": "2019-10-15T22:04:33.000Z" + "SpotPrice": "0.251200", + "Timestamp": "2024-05-16T11:31:29.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.268100", - "Timestamp": "2019-10-15T22:04:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.246200", + "Timestamp": "2024-05-16T11:31:29.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.138100", - "Timestamp": "2019-10-15T22:04:29.000Z" + "SpotPrice": "0.121200", + "Timestamp": "2024-05-16T11:31:29.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.187200", - "Timestamp": "2019-10-15T21:55:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.553800", + "Timestamp": "2024-05-16T11:31:29.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.257200", - "Timestamp": "2019-10-15T21:55:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.548800", + "Timestamp": "2024-05-16T11:31:29.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.127200", - "Timestamp": "2019-10-15T21:55:49.000Z" + "SpotPrice": "0.423800", + "Timestamp": "2024-05-16T11:31:29.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m4.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.387400", - "Timestamp": "2019-10-15T21:55:09.000Z" + "SpotPrice": "1.074100", + "Timestamp": "2024-05-16T11:31:29.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.257400", - "Timestamp": "2019-10-15T21:55:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.044100", + "Timestamp": "2024-05-16T11:31:29.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.999900", - "Timestamp": "2019-10-15T21:54:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.944100", + "Timestamp": "2024-05-16T11:31:29.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.999900", - "Timestamp": "2019-10-15T21:54:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.749100", + "Timestamp": "2024-05-16T11:31:29.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.999900", - "Timestamp": "2019-10-15T21:54:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.719100", + "Timestamp": "2024-05-16T11:31:29.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.393900", - "Timestamp": "2019-10-15T21:54:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.619100", + "Timestamp": "2024-05-16T11:31:29.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.393900", - "Timestamp": "2019-10-15T21:54:30.000Z" + "SpotPrice": "1.530500", + "Timestamp": "2024-05-16T11:31:28.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.393900", - "Timestamp": "2019-10-15T21:54:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.525500", + "Timestamp": "2024-05-16T11:31:28.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.263900", - "Timestamp": "2019-10-15T21:54:30.000Z" + "SpotPrice": "1.400500", + "Timestamp": "2024-05-16T11:31:28.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.263900", - "Timestamp": "2019-10-15T21:54:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T11:31:28.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130300", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.263900", - "Timestamp": "2019-10-15T21:54:30.000Z" + "SpotPrice": "0.074300", + "Timestamp": "2024-05-16T11:31:28.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.metal", "ProductDescription": "Windows", - "SpotPrice": "4.330000", - "Timestamp": "2019-10-15T21:54:10.000Z" + "SpotPrice": "7.150900", + "Timestamp": "2024-05-16T11:31:28.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.329400", - "Timestamp": "2019-10-15T21:54:10.000Z" + "SpotPrice": "0.946500", + "Timestamp": "2024-05-16T11:31:28.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.988000", - "Timestamp": "2019-10-15T21:54:10.000Z" + "SpotPrice": "1.211400", + "Timestamp": "2024-05-16T11:31:28.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.987400", - "Timestamp": "2019-10-15T21:54:10.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.206400", + "Timestamp": "2024-05-16T11:31:28.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.858000", - "Timestamp": "2019-10-15T21:54:10.000Z" + "SpotPrice": "1.081400", + "Timestamp": "2024-05-16T11:31:28.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.857400", - "Timestamp": "2019-10-15T21:54:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.868300", + "Timestamp": "2024-05-16T11:31:27.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.608800", - "Timestamp": "2019-10-15T21:53:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.863300", + "Timestamp": "2024-05-16T11:31:27.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.608800", - "Timestamp": "2019-10-15T21:53:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.738300", + "Timestamp": "2024-05-16T11:31:27.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "inf1.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.608800", - "Timestamp": "2019-10-15T21:53:36.000Z" + "SpotPrice": "0.272600", + "Timestamp": "2024-05-16T11:31:27.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.478800", - "Timestamp": "2019-10-15T21:53:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267600", + "Timestamp": "2024-05-16T11:31:27.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "inf1.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.478800", - "Timestamp": "2019-10-15T21:53:36.000Z" + "SpotPrice": "0.142600", + "Timestamp": "2024-05-16T11:31:27.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.478800", - "Timestamp": "2019-10-15T21:53:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.910300", + "Timestamp": "2024-05-16T11:31:26.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.610000", - "Timestamp": "2019-10-15T21:53:33.000Z" + "SpotPrice": "2.562300", + "Timestamp": "2024-05-16T11:31:25.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.262000", - "Timestamp": "2019-10-15T21:53:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.557300", + "Timestamp": "2024-05-16T11:31:25.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.480000", - "Timestamp": "2019-10-15T21:53:33.000Z" + "SpotPrice": "2.432300", + "Timestamp": "2024-05-16T11:31:25.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.132000", - "Timestamp": "2019-10-15T21:53:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.216100", + "Timestamp": "2024-05-16T11:31:25.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.848000", - "Timestamp": "2019-10-15T21:53:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.211100", + "Timestamp": "2024-05-16T11:31:25.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.848000", - "Timestamp": "2019-10-15T21:53:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.086100", + "Timestamp": "2024-05-16T11:31:25.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.500000", - "Timestamp": "2019-10-15T21:53:33.000Z" + "SpotPrice": "5.860800", + "Timestamp": "2024-05-16T11:31:25.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.134800", - "Timestamp": "2019-10-15T21:53:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.349700", + "Timestamp": "2024-05-16T11:31:24.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.134800", - "Timestamp": "2019-10-15T21:53:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.344700", + "Timestamp": "2024-05-16T11:31:24.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.134800", - "Timestamp": "2019-10-15T21:53:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219700", + "Timestamp": "2024-05-16T11:31:24.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.203200", - "Timestamp": "2019-10-15T21:53:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.518100", + "Timestamp": "2024-05-16T11:31:24.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.203200", - "Timestamp": "2019-10-15T21:53:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.513100", + "Timestamp": "2024-05-16T11:31:24.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.917200", - "Timestamp": "2019-10-15T21:53:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.388100", + "Timestamp": "2024-05-16T11:31:24.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3en.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.917200", - "Timestamp": "2019-10-15T21:53:32.000Z" + "SpotPrice": "3.392600", + "Timestamp": "2024-05-16T11:31:24.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.787200", - "Timestamp": "2019-10-15T21:53:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.387600", + "Timestamp": "2024-05-16T11:31:24.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3en.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.787200", - "Timestamp": "2019-10-15T21:53:32.000Z" + "SpotPrice": "3.262600", + "Timestamp": "2024-05-16T11:31:24.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.186500", - "Timestamp": "2019-10-15T21:47:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.153700", + "Timestamp": "2024-05-16T11:31:24.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "10.704000", - "Timestamp": "2019-10-15T21:44:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.148700", + "Timestamp": "2024-05-16T11:31:24.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "10.704000", - "Timestamp": "2019-10-15T21:44:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.023700", + "Timestamp": "2024-05-16T11:31:24.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.999500", - "Timestamp": "2019-10-15T21:44:32.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.417100", + "Timestamp": "2024-05-16T11:31:23.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.677200", - "Timestamp": "2019-10-15T21:39:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.387100", + "Timestamp": "2024-05-16T11:31:23.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.547200", - "Timestamp": "2019-10-15T21:39:06.000Z" + "SpotPrice": "0.287100", + "Timestamp": "2024-05-16T11:31:23.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.307900", - "Timestamp": "2019-10-15T21:38:55.000Z" + "SpotPrice": "0.620400", + "Timestamp": "2024-05-16T11:31:23.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.177900", - "Timestamp": "2019-10-15T21:38:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.590400", + "Timestamp": "2024-05-16T11:31:23.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows", - "SpotPrice": "10.929800", - "Timestamp": "2019-10-15T21:37:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.490400", + "Timestamp": "2024-05-16T11:31:23.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows", - "SpotPrice": "10.929800", - "Timestamp": "2019-10-15T21:37:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173600", + "Timestamp": "2024-05-16T11:31:23.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows", - "SpotPrice": "10.929800", - "Timestamp": "2019-10-15T21:37:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169600", + "Timestamp": "2024-05-16T11:31:23.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.593200", - "Timestamp": "2019-10-15T21:37:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113600", + "Timestamp": "2024-05-16T11:31:23.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.593200", - "Timestamp": "2019-10-15T21:37:03.000Z" + "SpotPrice": "0.189500", + "Timestamp": "2024-05-16T11:31:22.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.593200", - "Timestamp": "2019-10-15T21:37:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185500", + "Timestamp": "2024-05-16T11:31:22.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.463200", - "Timestamp": "2019-10-15T21:37:03.000Z" + "SpotPrice": "0.129500", + "Timestamp": "2024-05-16T11:31:22.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.463200", - "Timestamp": "2019-10-15T21:37:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089500", + "Timestamp": "2024-05-16T11:31:22.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.463200", - "Timestamp": "2019-10-15T21:37:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085800", + "Timestamp": "2024-05-16T11:31:22.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.831200", - "Timestamp": "2019-10-15T21:37:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029500", + "Timestamp": "2024-05-16T11:31:22.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.831200", - "Timestamp": "2019-10-15T21:37:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.130300", + "Timestamp": "2024-05-16T11:31:22.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.831200", - "Timestamp": "2019-10-15T21:37:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.100300", + "Timestamp": "2024-05-16T11:31:22.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094600", - "Timestamp": "2019-10-15T21:32:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.000300", + "Timestamp": "2024-05-16T11:31:22.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094600", - "Timestamp": "2019-10-15T21:32:08.000Z" + "SpotPrice": "0.176300", + "Timestamp": "2024-05-16T11:31:21.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094600", - "Timestamp": "2019-10-15T21:32:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.216300", + "Timestamp": "2024-05-16T11:31:21.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034600", - "Timestamp": "2019-10-15T21:32:08.000Z" + "SpotPrice": "0.116300", + "Timestamp": "2024-05-16T11:31:21.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034600", - "Timestamp": "2019-10-15T21:32:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.188500", + "Timestamp": "2024-05-16T11:31:21.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034600", - "Timestamp": "2019-10-15T21:32:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.158500", + "Timestamp": "2024-05-16T11:31:21.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126600", - "Timestamp": "2019-10-15T21:32:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.058500", + "Timestamp": "2024-05-16T11:31:21.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126600", - "Timestamp": "2019-10-15T21:32:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T11:31:20.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126600", - "Timestamp": "2019-10-15T21:32:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150600", + "Timestamp": "2024-05-16T11:31:20.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.161700", - "Timestamp": "2019-10-15T21:30:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050600", + "Timestamp": "2024-05-16T11:31:20.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "d3.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.638100", - "Timestamp": "2019-10-15T21:30:47.000Z" + "SpotPrice": "0.382200", + "Timestamp": "2024-05-16T11:31:15.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.638100", - "Timestamp": "2019-10-15T21:30:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.377200", + "Timestamp": "2024-05-16T11:31:15.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.638100", - "Timestamp": "2019-10-15T21:30:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.252200", + "Timestamp": "2024-05-16T11:31:15.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.508100", - "Timestamp": "2019-10-15T21:30:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360400", + "Timestamp": "2024-05-16T11:31:15.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.508100", - "Timestamp": "2019-10-15T21:30:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.355400", + "Timestamp": "2024-05-16T11:31:15.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.508100", - "Timestamp": "2019-10-15T21:30:47.000Z" + "SpotPrice": "0.230400", + "Timestamp": "2024-05-16T11:31:15.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.256400", - "Timestamp": "2019-10-15T21:30:41.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.596800", + "Timestamp": "2024-05-16T11:31:10.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.126400", - "Timestamp": "2019-10-15T21:30:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.621300", + "Timestamp": "2024-05-16T11:31:10.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r3.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093100", - "Timestamp": "2019-10-15T21:30:05.000Z" - }, - { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033100", - "Timestamp": "2019-10-15T21:30:05.000Z" + "SpotPrice": "0.509200", + "Timestamp": "2024-05-16T11:31:08.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.221500", - "Timestamp": "2019-10-15T21:23:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.479200", + "Timestamp": "2024-05-16T11:31:08.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.221500", - "Timestamp": "2019-10-15T21:23:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.377200", + "Timestamp": "2024-05-16T11:31:08.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.large", "ProductDescription": "Windows", - "SpotPrice": "2.221500", - "Timestamp": "2019-10-15T21:23:19.000Z" - }, - { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.695500", - "Timestamp": "2019-10-15T21:22:33.000Z" + "SpotPrice": "0.118900", + "Timestamp": "2024-05-16T11:31:06.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.695500", - "Timestamp": "2019-10-15T21:22:33.000Z" + "SpotPrice": "0.073600", + "Timestamp": "2024-05-16T11:29:22.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.695500", - "Timestamp": "2019-10-15T21:22:33.000Z" + "SpotPrice": "0.073500", + "Timestamp": "2024-05-16T11:29:22.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.565500", - "Timestamp": "2019-10-15T21:22:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069900", + "Timestamp": "2024-05-16T11:29:22.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.565500", - "Timestamp": "2019-10-15T21:22:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069800", + "Timestamp": "2024-05-16T11:29:22.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.565500", - "Timestamp": "2019-10-15T21:22:33.000Z" - }, - { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.081700", - "Timestamp": "2019-10-15T21:22:13.000Z" + "SpotPrice": "0.013600", + "Timestamp": "2024-05-16T11:29:22.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.951700", - "Timestamp": "2019-10-15T21:22:13.000Z" + "SpotPrice": "0.013500", + "Timestamp": "2024-05-16T11:29:22.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.large", "ProductDescription": "Windows", - "SpotPrice": "0.126800", - "Timestamp": "2019-10-15T21:21:46.000Z" + "SpotPrice": "0.108600", + "Timestamp": "2024-05-16T11:17:38.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.241000", - "Timestamp": "2019-10-15T21:20:51.000Z" + "SpotPrice": "1.977200", + "Timestamp": "2024-05-16T11:17:35.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.114300", - "Timestamp": "2019-10-15T21:20:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.947200", + "Timestamp": "2024-05-16T11:17:35.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.114300", - "Timestamp": "2019-10-15T21:20:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.847200", + "Timestamp": "2024-05-16T11:17:35.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "i3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.181000", - "Timestamp": "2019-10-15T21:20:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140200", + "Timestamp": "2024-05-16T11:17:34.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.054300", - "Timestamp": "2019-10-15T21:20:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136200", + "Timestamp": "2024-05-16T11:17:34.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "inf1.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.054300", - "Timestamp": "2019-10-15T21:20:51.000Z" + "SpotPrice": "0.080200", + "Timestamp": "2024-05-16T11:17:34.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.381300", - "Timestamp": "2019-10-15T21:20:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.482200", + "Timestamp": "2024-05-16T11:17:34.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "is4gen.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.381300", - "Timestamp": "2019-10-15T21:20:40.000Z" + "SpotPrice": "0.517900", + "Timestamp": "2024-05-16T11:17:32.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "is4gen.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.381300", - "Timestamp": "2019-10-15T21:20:40.000Z" + "SpotPrice": "0.513500", + "Timestamp": "2024-05-16T11:17:32.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.251300", - "Timestamp": "2019-10-15T21:20:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.512900", + "Timestamp": "2024-05-16T11:17:32.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.251300", - "Timestamp": "2019-10-15T21:20:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.508500", + "Timestamp": "2024-05-16T11:17:32.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "is4gen.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.251300", - "Timestamp": "2019-10-15T21:20:40.000Z" + "SpotPrice": "0.387900", + "Timestamp": "2024-05-16T11:17:32.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.987300", - "Timestamp": "2019-10-15T21:20:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.383500", + "Timestamp": "2024-05-16T11:17:32.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.987300", - "Timestamp": "2019-10-15T21:20:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.458600", + "Timestamp": "2024-05-16T11:17:32.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.987300", - "Timestamp": "2019-10-15T21:20:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.453600", + "Timestamp": "2024-05-16T11:17:32.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.393900", - "Timestamp": "2019-10-15T21:20:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.328600", + "Timestamp": "2024-05-16T11:17:32.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.393900", - "Timestamp": "2019-10-15T21:20:33.000Z" + "SpotPrice": "5.755600", + "Timestamp": "2024-05-16T11:17:30.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.393900", - "Timestamp": "2019-10-15T21:20:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.750600", + "Timestamp": "2024-05-16T11:17:30.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.263900", - "Timestamp": "2019-10-15T21:20:33.000Z" + "SpotPrice": "5.625600", + "Timestamp": "2024-05-16T11:17:30.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.263900", - "Timestamp": "2019-10-15T21:20:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.506600", + "Timestamp": "2024-05-16T11:17:28.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.263900", - "Timestamp": "2019-10-15T21:20:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T11:17:27.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.999900", - "Timestamp": "2019-10-15T21:20:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T11:17:27.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.999900", - "Timestamp": "2019-10-15T21:20:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050800", + "Timestamp": "2024-05-16T11:17:27.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3.small", "ProductDescription": "Windows", - "SpotPrice": "0.999900", - "Timestamp": "2019-10-15T21:20:33.000Z" + "SpotPrice": "0.021400", + "Timestamp": "2024-05-16T11:17:27.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "p2.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.984200", - "Timestamp": "2019-10-15T21:20:24.000Z" + "SpotPrice": "2.650900", + "Timestamp": "2024-05-16T11:17:27.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.921800", - "Timestamp": "2019-10-15T21:20:24.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "p2.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.620900", + "Timestamp": "2024-05-16T11:17:27.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.921800", - "Timestamp": "2019-10-15T21:20:24.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.520900", + "Timestamp": "2024-05-16T11:17:27.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.854200", - "Timestamp": "2019-10-15T21:20:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.814000", + "Timestamp": "2024-05-16T11:17:27.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.791800", - "Timestamp": "2019-10-15T21:20:24.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062900", + "Timestamp": "2024-05-16T11:17:27.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.791800", - "Timestamp": "2019-10-15T21:20:24.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002900", + "Timestamp": "2024-05-16T11:17:27.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.999800", - "Timestamp": "2019-10-15T21:20:24.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002900", + "Timestamp": "2024-05-16T11:17:27.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.3xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.999800", - "Timestamp": "2019-10-15T21:20:24.000Z" + "SpotPrice": "0.692400", + "Timestamp": "2024-05-16T11:17:26.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.999800", - "Timestamp": "2019-10-15T21:20:24.000Z" + "SpotPrice": "5.607000", + "Timestamp": "2024-05-16T11:17:24.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.244500", - "Timestamp": "2019-10-15T21:20:22.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229600", + "Timestamp": "2024-05-16T11:17:24.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "g4dn.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.244500", - "Timestamp": "2019-10-15T21:20:22.000Z" + "SpotPrice": "0.200000", + "Timestamp": "2024-05-16T11:17:19.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.244500", - "Timestamp": "2019-10-15T21:20:22.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196300", + "Timestamp": "2024-05-16T11:17:19.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "g4dn.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.184500", - "Timestamp": "2019-10-15T21:20:22.000Z" + "SpotPrice": "0.140000", + "Timestamp": "2024-05-16T11:17:19.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.184500", - "Timestamp": "2019-10-15T21:20:22.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.972200", + "Timestamp": "2024-05-16T11:17:19.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.184500", - "Timestamp": "2019-10-15T21:20:22.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.967200", + "Timestamp": "2024-05-16T11:17:19.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061800", - "Timestamp": "2019-10-15T21:20:18.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.842200", + "Timestamp": "2024-05-16T11:17:19.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061800", - "Timestamp": "2019-10-15T21:20:18.000Z" + "SpotPrice": "0.122300", + "Timestamp": "2024-05-16T11:17:18.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061800", - "Timestamp": "2019-10-15T21:20:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118600", + "Timestamp": "2024-05-16T11:17:18.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001800", - "Timestamp": "2019-10-15T21:20:18.000Z" + "SpotPrice": "0.062300", + "Timestamp": "2024-05-16T11:17:18.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001800", - "Timestamp": "2019-10-15T21:20:18.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.068600", + "Timestamp": "2024-05-16T11:17:18.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001800", - "Timestamp": "2019-10-15T21:20:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261400", + "Timestamp": "2024-05-16T11:17:16.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006400", - "Timestamp": "2019-10-15T21:20:17.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.256400", + "Timestamp": "2024-05-16T11:17:16.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006400", - "Timestamp": "2019-10-15T21:20:17.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131400", + "Timestamp": "2024-05-16T11:17:16.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.006400", - "Timestamp": "2019-10-15T21:20:17.000Z" + "SpotPrice": "2.700500", + "Timestamp": "2024-05-16T11:17:16.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "g4dn.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.metal-48xl", "ProductDescription": "Windows", - "SpotPrice": "0.368500", - "Timestamp": "2019-10-15T21:20:15.000Z" + "SpotPrice": "10.879700", + "Timestamp": "2024-05-16T11:17:14.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.368500", - "Timestamp": "2019-10-15T21:20:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.485100", + "Timestamp": "2024-05-16T11:17:13.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.368500", - "Timestamp": "2019-10-15T21:20:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.480100", + "Timestamp": "2024-05-16T11:17:13.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.406500", - "Timestamp": "2019-10-15T21:20:12.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.355100", + "Timestamp": "2024-05-16T11:17:13.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "t4g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.406500", - "Timestamp": "2019-10-15T21:20:12.000Z" + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T11:17:12.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.406500", - "Timestamp": "2019-10-15T21:20:12.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T11:17:12.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "t4g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.276500", - "Timestamp": "2019-10-15T21:20:12.000Z" + "SpotPrice": "0.049500", + "Timestamp": "2024-05-16T11:17:12.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.276500", - "Timestamp": "2019-10-15T21:20:12.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.260500", + "Timestamp": "2024-05-16T11:17:11.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.255500", + "Timestamp": "2024-05-16T11:17:11.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.276500", - "Timestamp": "2019-10-15T21:20:12.000Z" + "SpotPrice": "0.130500", + "Timestamp": "2024-05-16T11:17:11.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.445600", - "Timestamp": "2019-10-15T21:20:11.000Z" + "SpotPrice": "2.323300", + "Timestamp": "2024-05-16T11:17:09.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.445600", - "Timestamp": "2019-10-15T21:20:11.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.318300", + "Timestamp": "2024-05-16T11:17:09.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.315600", - "Timestamp": "2019-10-15T21:20:11.000Z" + "SpotPrice": "2.193300", + "Timestamp": "2024-05-16T11:17:09.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.315600", - "Timestamp": "2019-10-15T21:20:11.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.977200", + "Timestamp": "2024-05-16T11:17:09.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.683600", - "Timestamp": "2019-10-15T21:20:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.947200", + "Timestamp": "2024-05-16T11:17:09.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.683600", - "Timestamp": "2019-10-15T21:20:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.847200", + "Timestamp": "2024-05-16T11:17:09.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.683000", - "Timestamp": "2019-10-15T21:20:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.922300", + "Timestamp": "2024-05-16T11:17:08.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.683000", - "Timestamp": "2019-10-15T21:20:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.797000", + "Timestamp": "2024-05-16T11:17:07.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.683000", - "Timestamp": "2019-10-15T21:20:09.000Z" + "SpotPrice": "2.028400", + "Timestamp": "2024-05-16T11:17:07.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.553000", - "Timestamp": "2019-10-15T21:20:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.023400", + "Timestamp": "2024-05-16T11:17:07.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.553000", - "Timestamp": "2019-10-15T21:20:09.000Z" + "SpotPrice": "1.898400", + "Timestamp": "2024-05-16T11:17:07.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.553000", - "Timestamp": "2019-10-15T21:20:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T11:17:06.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "d2.xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.025000", - "Timestamp": "2019-10-15T21:20:09.000Z" + "SpotPrice": "0.288600", + "Timestamp": "2024-05-16T11:17:04.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.025000", - "Timestamp": "2019-10-15T21:20:09.000Z" + "SpotPrice": "5.549000", + "Timestamp": "2024-05-16T11:17:01.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.metal", "ProductDescription": "Windows", - "SpotPrice": "2.025000", - "Timestamp": "2019-10-15T21:20:09.000Z" + "SpotPrice": "7.443400", + "Timestamp": "2024-05-16T11:17:01.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.683000", - "Timestamp": "2019-10-15T21:20:03.000Z" + "SpotPrice": "0.998200", + "Timestamp": "2024-05-16T11:17:01.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.683000", - "Timestamp": "2019-10-15T21:20:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.993200", + "Timestamp": "2024-05-16T11:17:01.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.683000", - "Timestamp": "2019-10-15T21:20:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.868200", + "Timestamp": "2024-05-16T11:17:01.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.553000", - "Timestamp": "2019-10-15T21:20:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.752400", + "Timestamp": "2024-05-16T11:16:59.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.553000", - "Timestamp": "2019-10-15T21:20:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.747400", + "Timestamp": "2024-05-16T11:16:59.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.553000", - "Timestamp": "2019-10-15T21:20:03.000Z" + "SpotPrice": "0.622400", + "Timestamp": "2024-05-16T11:16:59.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.025000", - "Timestamp": "2019-10-15T21:20:03.000Z" + "SpotPrice": "0.828400", + "Timestamp": "2024-05-16T11:16:59.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.025000", - "Timestamp": "2019-10-15T21:20:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.671900", + "Timestamp": "2024-05-16T11:16:59.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.025000", - "Timestamp": "2019-10-15T21:20:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.666900", + "Timestamp": "2024-05-16T11:16:59.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "z1d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.711900", - "Timestamp": "2019-10-15T21:20:00.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.541900", + "Timestamp": "2024-05-16T11:16:59.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "z1d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.711900", - "Timestamp": "2019-10-15T21:20:00.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Windows", + "SpotPrice": "9.598200", + "Timestamp": "2024-05-16T11:16:58.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "z1d.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.711900", - "Timestamp": "2019-10-15T21:20:00.000Z" + "SpotPrice": "0.185800", + "Timestamp": "2024-05-16T11:16:57.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "z1d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.581900", - "Timestamp": "2019-10-15T21:20:00.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.182100", + "Timestamp": "2024-05-16T11:16:57.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "z1d.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.581900", - "Timestamp": "2019-10-15T21:20:00.000Z" + "SpotPrice": "0.125800", + "Timestamp": "2024-05-16T11:16:57.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "z1d.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.041600", + "Timestamp": "2024-05-16T11:16:54.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.036600", + "Timestamp": "2024-05-16T11:16:54.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.581900", - "Timestamp": "2019-10-15T21:20:00.000Z" + "SpotPrice": "1.911600", + "Timestamp": "2024-05-16T11:16:54.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "z1d.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.789900", - "Timestamp": "2019-10-15T21:20:00.000Z" + "SpotPrice": "0.222900", + "Timestamp": "2024-05-16T11:16:53.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "z1d.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.789900", - "Timestamp": "2019-10-15T21:20:00.000Z" + "SpotPrice": "3.771100", + "Timestamp": "2024-05-16T11:16:52.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "z1d.metal", - "ProductDescription": "Windows", - "SpotPrice": "3.789900", - "Timestamp": "2019-10-15T21:20:00.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123100", + "Timestamp": "2024-05-16T11:16:52.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163100", + "Timestamp": "2024-05-16T11:16:52.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063100", + "Timestamp": "2024-05-16T11:16:52.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.249100", - "Timestamp": "2019-10-15T21:19:41.000Z" + "SpotPrice": "0.233800", + "Timestamp": "2024-05-16T11:16:51.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.large", "ProductDescription": "Windows", - "SpotPrice": "0.249100", - "Timestamp": "2019-10-15T21:19:41.000Z" + "SpotPrice": "0.111900", + "Timestamp": "2024-05-16T11:16:50.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.249100", - "Timestamp": "2019-10-15T21:19:41.000Z" + "SpotPrice": "2.906000", + "Timestamp": "2024-05-16T11:16:50.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.231900", - "Timestamp": "2019-10-15T21:19:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.777100", + "Timestamp": "2024-05-16T11:16:50.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.231900", - "Timestamp": "2019-10-15T21:19:41.000Z" + "SpotPrice": "0.740300", + "Timestamp": "2024-05-16T11:16:49.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.231900", - "Timestamp": "2019-10-15T21:19:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.735300", + "Timestamp": "2024-05-16T11:16:49.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.101900", - "Timestamp": "2019-10-15T21:19:41.000Z" + "SpotPrice": "0.610300", + "Timestamp": "2024-05-16T11:16:49.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.101900", - "Timestamp": "2019-10-15T21:19:41.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T11:16:48.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.101900", - "Timestamp": "2019-10-15T21:19:41.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T11:16:48.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3en.metal", - "ProductDescription": "Windows", - "SpotPrice": "8.203200", - "Timestamp": "2019-10-15T21:19:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045800", + "Timestamp": "2024-05-16T11:16:48.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3en.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "8.203200", - "Timestamp": "2019-10-15T21:19:14.000Z" + "SpotPrice": "1.678300", + "Timestamp": "2024-05-16T11:16:48.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3en.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.917200", - "Timestamp": "2019-10-15T21:19:14.000Z" + "SpotPrice": "1.440100", + "Timestamp": "2024-05-16T11:16:47.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3en.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.917200", - "Timestamp": "2019-10-15T21:19:14.000Z" - }, - { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3en.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.787200", - "Timestamp": "2019-10-15T21:19:14.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.435100", + "Timestamp": "2024-05-16T11:16:47.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3en.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.787200", - "Timestamp": "2019-10-15T21:19:14.000Z" + "SpotPrice": "1.310100", + "Timestamp": "2024-05-16T11:16:47.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.012500", - "Timestamp": "2019-10-15T21:19:12.000Z" + "SpotPrice": "2.534500", + "Timestamp": "2024-05-16T11:16:47.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.012500", - "Timestamp": "2019-10-15T21:19:12.000Z" + "SpotPrice": "2.550400", + "Timestamp": "2024-05-16T11:16:47.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.012500", - "Timestamp": "2019-10-15T21:19:12.000Z" + "SpotPrice": "3.557000", + "Timestamp": "2024-05-16T11:16:46.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "i3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.273000", - "Timestamp": "2019-10-15T21:19:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.714300", + "Timestamp": "2024-05-16T11:16:45.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.146300", - "Timestamp": "2019-10-15T21:19:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.684300", + "Timestamp": "2024-05-16T11:16:45.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.146300", - "Timestamp": "2019-10-15T21:19:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.584300", + "Timestamp": "2024-05-16T11:16:45.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "6.418000", - "Timestamp": "2019-10-15T21:16:14.000Z" + "SpotPrice": "1.778500", + "Timestamp": "2024-05-16T11:16:44.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "6.418000", - "Timestamp": "2019-10-15T21:16:14.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.773500", + "Timestamp": "2024-05-16T11:16:44.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.648500", + "Timestamp": "2024-05-16T11:16:44.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.713500", - "Timestamp": "2019-10-15T21:16:14.000Z" + "SpotPrice": "0.469600", + "Timestamp": "2024-05-16T11:16:43.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "6.288000", - "Timestamp": "2019-10-15T21:16:14.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.439600", + "Timestamp": "2024-05-16T11:16:43.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "6.288000", - "Timestamp": "2019-10-15T21:16:14.000Z" + "SpotPrice": "0.339600", + "Timestamp": "2024-05-16T11:16:43.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.583500", - "Timestamp": "2019-10-15T21:16:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.298000", + "Timestamp": "2024-05-16T11:16:43.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.144000", - "Timestamp": "2019-10-15T21:16:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.293000", + "Timestamp": "2024-05-16T11:16:43.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.144000", - "Timestamp": "2019-10-15T21:16:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.168000", + "Timestamp": "2024-05-16T11:16:43.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.999700", - "Timestamp": "2019-10-15T21:16:10.000Z" + "SpotPrice": "1.759600", + "Timestamp": "2024-05-16T11:16:42.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.330000", - "Timestamp": "2019-10-15T21:16:09.000Z" + "SpotPrice": "0.342400", + "Timestamp": "2024-05-16T11:16:42.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.330000", - "Timestamp": "2019-10-15T21:16:09.000Z" + "SpotPrice": "0.371200", + "Timestamp": "2024-05-16T11:16:42.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.200000", - "Timestamp": "2019-10-15T21:16:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.337400", + "Timestamp": "2024-05-16T11:16:42.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.366200", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.200000", - "Timestamp": "2019-10-15T21:16:09.000Z" + "SpotPrice": "0.212400", + "Timestamp": "2024-05-16T11:16:42.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123400", - "Timestamp": "2019-10-15T21:15:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.241200", + "Timestamp": "2024-05-16T11:16:42.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123400", - "Timestamp": "2019-10-15T21:15:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.810600", + "Timestamp": "2024-05-16T11:16:41.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123400", - "Timestamp": "2019-10-15T21:15:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.805600", + "Timestamp": "2024-05-16T11:16:41.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.191700", - "Timestamp": "2019-10-15T21:15:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.680600", + "Timestamp": "2024-05-16T11:16:41.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.191700", - "Timestamp": "2019-10-15T21:15:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218300", + "Timestamp": "2024-05-16T11:16:41.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.191700", - "Timestamp": "2019-10-15T21:15:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.814100", + "Timestamp": "2024-05-16T11:16:41.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.131700", - "Timestamp": "2019-10-15T21:15:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.316600", + "Timestamp": "2024-05-16T11:16:40.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.131700", - "Timestamp": "2019-10-15T21:15:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.311600", + "Timestamp": "2024-05-16T11:16:40.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.131700", - "Timestamp": "2019-10-15T21:15:49.000Z" + "SpotPrice": "1.186600", + "Timestamp": "2024-05-16T11:16:40.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.3xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.315700", - "Timestamp": "2019-10-15T21:15:48.000Z" + "SpotPrice": "0.737000", + "Timestamp": "2024-05-16T11:16:40.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.315700", - "Timestamp": "2019-10-15T21:15:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.664900", + "Timestamp": "2024-05-16T11:16:39.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.315700", - "Timestamp": "2019-10-15T21:15:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.659900", + "Timestamp": "2024-05-16T11:16:39.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T21:15:42.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.534900", + "Timestamp": "2024-05-16T11:16:39.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T21:15:42.000Z" + "SpotPrice": "1.499300", + "Timestamp": "2024-05-16T11:16:39.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T21:15:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.494300", + "Timestamp": "2024-05-16T11:16:39.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066000", - "Timestamp": "2019-10-15T21:15:42.000Z" + "SpotPrice": "1.369300", + "Timestamp": "2024-05-16T11:16:39.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066000", - "Timestamp": "2019-10-15T21:15:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121800", + "Timestamp": "2024-05-16T11:16:39.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117800", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066000", - "Timestamp": "2019-10-15T21:15:42.000Z" + "SpotPrice": "0.061800", + "Timestamp": "2024-05-16T11:16:39.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.250000", - "Timestamp": "2019-10-15T21:15:42.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.601200", + "Timestamp": "2024-05-16T11:16:39.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.250000", - "Timestamp": "2019-10-15T21:15:42.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.596200", + "Timestamp": "2024-05-16T11:16:39.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.250000", - "Timestamp": "2019-10-15T21:15:42.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.471200", + "Timestamp": "2024-05-16T11:16:39.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129100", - "Timestamp": "2019-10-15T21:15:35.000Z" + "SpotPrice": "1.337000", + "Timestamp": "2024-05-16T11:16:39.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129100", - "Timestamp": "2019-10-15T21:15:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.332000", + "Timestamp": "2024-05-16T11:16:39.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.207000", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129100", - "Timestamp": "2019-10-15T21:15:35.000Z" + "SpotPrice": "0.334800", + "Timestamp": "2024-05-16T11:16:38.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069100", - "Timestamp": "2019-10-15T21:15:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.329800", + "Timestamp": "2024-05-16T11:16:38.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069100", - "Timestamp": "2019-10-15T21:15:35.000Z" + "SpotPrice": "0.204800", + "Timestamp": "2024-05-16T11:16:38.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069100", - "Timestamp": "2019-10-15T21:15:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.359400", + "Timestamp": "2024-05-16T11:16:37.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.924100", - "Timestamp": "2019-10-15T21:15:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.354400", + "Timestamp": "2024-05-16T11:16:37.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.924100", - "Timestamp": "2019-10-15T21:15:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.229400", + "Timestamp": "2024-05-16T11:16:37.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.924100", - "Timestamp": "2019-10-15T21:15:33.000Z" + "SpotPrice": "0.230800", + "Timestamp": "2024-05-16T11:16:35.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.253100", - "Timestamp": "2019-10-15T21:15:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.483400", + "Timestamp": "2024-05-16T11:16:33.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.253100", - "Timestamp": "2019-10-15T21:15:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.478400", + "Timestamp": "2024-05-16T11:16:33.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.253100", - "Timestamp": "2019-10-15T21:15:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.353400", + "Timestamp": "2024-05-16T11:16:33.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i-flex.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091400", - "Timestamp": "2019-10-15T21:15:05.000Z" + "SpotPrice": "0.137600", + "Timestamp": "2024-05-16T11:16:33.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031400", - "Timestamp": "2019-10-15T21:15:05.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133900", + "Timestamp": "2024-05-16T11:16:33.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.443100", - "Timestamp": "2019-10-15T21:14:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077600", + "Timestamp": "2024-05-16T11:16:33.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r3.xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.443100", - "Timestamp": "2019-10-15T21:14:40.000Z" + "SpotPrice": "0.299000", + "Timestamp": "2024-05-16T11:16:32.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.443100", - "Timestamp": "2019-10-15T21:14:40.000Z" + "SpotPrice": "10.592900", + "Timestamp": "2024-05-16T11:16:32.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.261100", - "Timestamp": "2019-10-15T21:14:40.000Z" + "SpotPrice": "3.364700", + "Timestamp": "2024-05-16T11:16:31.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.261100", - "Timestamp": "2019-10-15T21:14:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.359700", + "Timestamp": "2024-05-16T11:16:31.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.261100", - "Timestamp": "2019-10-15T21:14:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.234700", + "Timestamp": "2024-05-16T11:16:31.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.131100", - "Timestamp": "2019-10-15T21:14:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.462000", + "Timestamp": "2024-05-16T11:16:31.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.131100", - "Timestamp": "2019-10-15T21:14:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.457000", + "Timestamp": "2024-05-16T11:16:31.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.131100", - "Timestamp": "2019-10-15T21:14:40.000Z" + "SpotPrice": "0.332000", + "Timestamp": "2024-05-16T11:16:31.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.894800", - "Timestamp": "2019-10-15T21:14:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.416000", + "Timestamp": "2024-05-16T11:16:30.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.894800", - "Timestamp": "2019-10-15T21:14:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.411000", + "Timestamp": "2024-05-16T11:16:30.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.894800", - "Timestamp": "2019-10-15T21:14:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.286000", + "Timestamp": "2024-05-16T11:16:30.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1e.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.920800", - "Timestamp": "2019-10-15T21:14:27.000Z" + "SpotPrice": "0.221500", + "Timestamp": "2024-05-16T11:16:30.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.920800", - "Timestamp": "2019-10-15T21:14:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.217500", + "Timestamp": "2024-05-16T11:16:30.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.920800", - "Timestamp": "2019-10-15T21:14:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.161500", + "Timestamp": "2024-05-16T11:16:30.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.790800", - "Timestamp": "2019-10-15T21:14:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.962000", + "Timestamp": "2024-05-16T11:16:30.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.790800", - "Timestamp": "2019-10-15T21:14:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.957000", + "Timestamp": "2024-05-16T11:16:30.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.790800", - "Timestamp": "2019-10-15T21:14:27.000Z" + "SpotPrice": "0.832000", + "Timestamp": "2024-05-16T11:16:30.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.250000", - "Timestamp": "2019-10-15T21:14:17.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.850300", + "Timestamp": "2024-05-16T11:16:29.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.250000", - "Timestamp": "2019-10-15T21:14:17.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.845300", + "Timestamp": "2024-05-16T11:16:29.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.250000", - "Timestamp": "2019-10-15T21:14:17.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.720300", + "Timestamp": "2024-05-16T11:16:29.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-15T21:13:59.000Z" + "SpotPrice": "1.955500", + "Timestamp": "2024-05-16T11:16:29.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-15T21:13:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.925500", + "Timestamp": "2024-05-16T11:16:29.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-15T21:13:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.825500", + "Timestamp": "2024-05-16T11:16:29.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033000", - "Timestamp": "2019-10-15T21:13:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.477400", + "Timestamp": "2024-05-16T11:16:28.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033000", - "Timestamp": "2019-10-15T21:13:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.447400", + "Timestamp": "2024-05-16T11:16:28.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "gr6.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033000", - "Timestamp": "2019-10-15T21:13:59.000Z" + "SpotPrice": "0.347400", + "Timestamp": "2024-05-16T11:16:28.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.125000", - "Timestamp": "2019-10-15T21:13:59.000Z" + "SpotPrice": "2.709800", + "Timestamp": "2024-05-16T11:16:28.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.125000", - "Timestamp": "2019-10-15T21:13:59.000Z" + "SpotPrice": "2.475200", + "Timestamp": "2024-05-16T11:16:27.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125000", - "Timestamp": "2019-10-15T21:13:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.381800", + "Timestamp": "2024-05-16T11:16:27.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.251900", - "Timestamp": "2019-10-15T21:13:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.376800", + "Timestamp": "2024-05-16T11:16:27.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.191900", - "Timestamp": "2019-10-15T21:13:55.000Z" + "SpotPrice": "0.251800", + "Timestamp": "2024-05-16T11:16:27.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T21:13:32.000Z" + "SpotPrice": "1.196600", + "Timestamp": "2024-05-16T11:16:26.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T21:13:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.191600", + "Timestamp": "2024-05-16T11:16:26.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T21:13:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.066600", + "Timestamp": "2024-05-16T11:16:26.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066000", - "Timestamp": "2019-10-15T21:13:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.479200", + "Timestamp": "2024-05-16T11:16:26.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066000", - "Timestamp": "2019-10-15T21:13:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.474200", + "Timestamp": "2024-05-16T11:16:26.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066000", - "Timestamp": "2019-10-15T21:13:32.000Z" + "SpotPrice": "0.349200", + "Timestamp": "2024-05-16T11:16:26.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.657600", - "Timestamp": "2019-10-15T21:10:24.000Z" + "SpotPrice": "0.280600", + "Timestamp": "2024-05-16T11:16:26.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.657600", - "Timestamp": "2019-10-15T21:10:24.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.275600", + "Timestamp": "2024-05-16T11:16:26.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.527600", - "Timestamp": "2019-10-15T21:10:24.000Z" + "SpotPrice": "0.150600", + "Timestamp": "2024-05-16T11:16:26.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.527600", - "Timestamp": "2019-10-15T21:10:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.850000", + "Timestamp": "2024-05-16T11:16:25.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.999800", - "Timestamp": "2019-10-15T21:10:16.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.292100", + "Timestamp": "2024-05-16T11:16:25.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.999800", - "Timestamp": "2019-10-15T21:10:16.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262100", + "Timestamp": "2024-05-16T11:16:25.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.267900", - "Timestamp": "2019-10-15T21:10:16.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162100", + "Timestamp": "2024-05-16T11:16:25.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.657800", - "Timestamp": "2019-10-15T21:10:16.000Z" + "SpotPrice": "0.355200", + "Timestamp": "2024-05-16T11:16:25.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.657800", - "Timestamp": "2019-10-15T21:10:16.000Z" + "SpotPrice": "0.330300", + "Timestamp": "2024-05-16T11:16:25.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.946800", - "Timestamp": "2019-10-15T21:10:16.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.350200", + "Timestamp": "2024-05-16T11:16:25.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.527800", - "Timestamp": "2019-10-15T21:10:16.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325300", + "Timestamp": "2024-05-16T11:16:25.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.527800", - "Timestamp": "2019-10-15T21:10:16.000Z" + "SpotPrice": "0.225200", + "Timestamp": "2024-05-16T11:16:25.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.816800", - "Timestamp": "2019-10-15T21:10:16.000Z" + "SpotPrice": "0.200300", + "Timestamp": "2024-05-16T11:16:25.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.471600", - "Timestamp": "2019-10-15T21:08:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.230400", + "Timestamp": "2024-05-16T11:16:25.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.471600", - "Timestamp": "2019-10-15T21:08:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.225400", + "Timestamp": "2024-05-16T11:16:25.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.235900", - "Timestamp": "2019-10-15T21:08:12.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.100400", + "Timestamp": "2024-05-16T11:16:25.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.235900", - "Timestamp": "2019-10-15T21:08:12.000Z" + "SpotPrice": "0.564500", + "Timestamp": "2024-05-16T11:16:24.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.105900", - "Timestamp": "2019-10-15T21:08:12.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.559500", + "Timestamp": "2024-05-16T11:16:24.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.105900", - "Timestamp": "2019-10-15T21:08:12.000Z" + "SpotPrice": "0.434500", + "Timestamp": "2024-05-16T11:16:24.000Z" }, { - "AvailabilityZone": "eu-west-2b", + "AvailabilityZone": "us-east-2c", "InstanceType": "r5ad.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.049900", - "Timestamp": "2019-10-15T21:08:12.000Z" - }, - { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.487700", - "Timestamp": "2019-10-15T21:08:06.000Z" + "SpotPrice": "3.517400", + "Timestamp": "2024-05-16T11:16:24.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.487700", - "Timestamp": "2019-10-15T21:08:06.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.884200", + "Timestamp": "2024-05-16T11:16:23.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.487700", - "Timestamp": "2019-10-15T21:08:06.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.879200", + "Timestamp": "2024-05-16T11:16:23.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.130600", - "Timestamp": "2019-10-15T21:07:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.754200", + "Timestamp": "2024-05-16T11:16:23.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.130600", - "Timestamp": "2019-10-15T21:07:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.917700", + "Timestamp": "2024-05-16T11:16:23.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.130600", - "Timestamp": "2019-10-15T21:07:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.912700", + "Timestamp": "2024-05-16T11:16:23.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.117000", - "Timestamp": "2019-10-15T21:07:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.787700", + "Timestamp": "2024-05-16T11:16:23.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.117000", - "Timestamp": "2019-10-15T21:07:53.000Z" + "SpotPrice": "2.258200", + "Timestamp": "2024-05-16T11:16:16.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.117000", - "Timestamp": "2019-10-15T21:07:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.253200", + "Timestamp": "2024-05-16T11:16:16.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.057000", - "Timestamp": "2019-10-15T21:07:53.000Z" + "SpotPrice": "2.128200", + "Timestamp": "2024-05-16T11:16:16.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.057000", - "Timestamp": "2019-10-15T21:07:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417000", + "Timestamp": "2024-05-16T11:16:16.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.057000", - "Timestamp": "2019-10-15T21:07:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.939600", + "Timestamp": "2024-05-16T11:16:14.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.075600", - "Timestamp": "2019-10-15T21:07:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.934600", + "Timestamp": "2024-05-16T11:16:14.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.075600", - "Timestamp": "2019-10-15T21:07:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.809600", + "Timestamp": "2024-05-16T11:16:14.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.075600", - "Timestamp": "2019-10-15T21:07:44.000Z" + "SpotPrice": "0.240400", + "Timestamp": "2024-05-16T11:16:13.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t2.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.015600", - "Timestamp": "2019-10-15T21:07:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.235400", + "Timestamp": "2024-05-16T11:16:13.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.015600", - "Timestamp": "2019-10-15T21:07:44.000Z" + "SpotPrice": "0.110400", + "Timestamp": "2024-05-16T11:16:13.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t2.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.015600", - "Timestamp": "2019-10-15T21:07:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.221800", + "Timestamp": "2024-05-16T11:04:16.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.034000", - "Timestamp": "2019-10-15T21:07:44.000Z" + "SpotPrice": "7.221800", + "Timestamp": "2024-05-16T11:04:16.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.034000", - "Timestamp": "2019-10-15T21:07:44.000Z" + "SpotPrice": "7.221800", + "Timestamp": "2024-05-16T11:04:16.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-2c", + "InstanceType": "t2.large", "ProductDescription": "Windows", - "SpotPrice": "0.034000", - "Timestamp": "2019-10-15T21:07:44.000Z" + "SpotPrice": "0.043100", + "Timestamp": "2024-05-16T11:02:57.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-15T21:07:38.000Z" + "SpotPrice": "3.679400", + "Timestamp": "2024-05-16T11:02:56.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-15T21:07:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.674400", + "Timestamp": "2024-05-16T11:02:56.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.549400", + "Timestamp": "2024-05-16T11:02:56.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "p3.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-15T21:07:38.000Z" + "SpotPrice": "4.873400", + "Timestamp": "2024-05-16T11:02:53.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033000", - "Timestamp": "2019-10-15T21:07:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.843400", + "Timestamp": "2024-05-16T11:02:53.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "p3.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033000", - "Timestamp": "2019-10-15T21:07:38.000Z" + "SpotPrice": "4.743400", + "Timestamp": "2024-05-16T11:02:53.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.122400", + "Timestamp": "2024-05-16T11:02:48.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "p2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.276200", + "Timestamp": "2024-05-16T11:02:47.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.316200", + "Timestamp": "2024-05-16T11:02:47.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "p2.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033000", - "Timestamp": "2019-10-15T21:07:38.000Z" + "SpotPrice": "0.216200", + "Timestamp": "2024-05-16T11:02:47.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.125000", - "Timestamp": "2019-10-15T21:07:38.000Z" + "SpotPrice": "8.002300", + "Timestamp": "2024-05-16T11:02:47.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r3.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.125000", - "Timestamp": "2019-10-15T21:07:38.000Z" + "SpotPrice": "0.470700", + "Timestamp": "2024-05-16T11:02:46.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.medium", "ProductDescription": "Windows", - "SpotPrice": "0.125000", - "Timestamp": "2019-10-15T21:07:38.000Z" + "SpotPrice": "0.055600", + "Timestamp": "2024-05-16T11:02:46.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3a.medium", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.072800", - "Timestamp": "2019-10-15T21:07:38.000Z" + "SpotPrice": "0.246800", + "Timestamp": "2024-05-16T11:02:46.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.072800", - "Timestamp": "2019-10-15T21:07:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.241800", + "Timestamp": "2024-05-16T11:02:46.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.072800", - "Timestamp": "2019-10-15T21:07:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116800", + "Timestamp": "2024-05-16T11:02:46.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.012800", - "Timestamp": "2019-10-15T21:07:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.000300", + "Timestamp": "2024-05-16T11:02:43.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.012800", - "Timestamp": "2019-10-15T21:07:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.995300", + "Timestamp": "2024-05-16T11:02:43.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3a.medium", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.012800", - "Timestamp": "2019-10-15T21:07:38.000Z" + "SpotPrice": "1.870300", + "Timestamp": "2024-05-16T11:02:43.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.031200", - "Timestamp": "2019-10-15T21:07:37.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.565100", + "Timestamp": "2024-05-16T11:02:41.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.031200", - "Timestamp": "2019-10-15T21:07:37.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.560100", + "Timestamp": "2024-05-16T11:02:41.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.031200", - "Timestamp": "2019-10-15T21:07:37.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.435100", + "Timestamp": "2024-05-16T11:02:41.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.249700", - "Timestamp": "2019-10-15T21:07:36.000Z" + "SpotPrice": "2.438600", + "Timestamp": "2024-05-16T11:02:41.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.249700", - "Timestamp": "2019-10-15T21:07:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.433600", + "Timestamp": "2024-05-16T11:02:41.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.249700", - "Timestamp": "2019-10-15T21:07:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.308600", + "Timestamp": "2024-05-16T11:02:41.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.119700", - "Timestamp": "2019-10-15T21:07:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109600", + "Timestamp": "2024-05-16T11:02:40.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.119700", - "Timestamp": "2019-10-15T21:07:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T11:02:40.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.119700", - "Timestamp": "2019-10-15T21:07:36.000Z" + "SpotPrice": "0.049600", + "Timestamp": "2024-05-16T11:02:40.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.884000", - "Timestamp": "2019-10-15T21:07:30.000Z" + "SpotPrice": "0.450700", + "Timestamp": "2024-05-16T11:02:39.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.884000", - "Timestamp": "2019-10-15T21:07:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.445700", + "Timestamp": "2024-05-16T11:02:39.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.884000", - "Timestamp": "2019-10-15T21:07:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.320700", + "Timestamp": "2024-05-16T11:02:39.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.754000", - "Timestamp": "2019-10-15T21:07:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075000", + "Timestamp": "2024-05-16T11:02:39.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.754000", - "Timestamp": "2019-10-15T21:07:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.046000", + "Timestamp": "2024-05-16T11:02:39.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.754000", - "Timestamp": "2019-10-15T21:07:30.000Z" + "SpotPrice": "0.015000", + "Timestamp": "2024-05-16T11:02:39.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.183300", - "Timestamp": "2019-10-15T21:06:25.000Z" + "SpotPrice": "1.678500", + "Timestamp": "2024-05-16T11:02:39.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.183300", - "Timestamp": "2019-10-15T21:06:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.673500", + "Timestamp": "2024-05-16T11:02:39.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.548500", + "Timestamp": "2024-05-16T11:02:39.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.183300", - "Timestamp": "2019-10-15T21:06:25.000Z" + "SpotPrice": "0.562300", + "Timestamp": "2024-05-16T11:02:39.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.053300", - "Timestamp": "2019-10-15T21:06:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.557300", + "Timestamp": "2024-05-16T11:02:39.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.053300", - "Timestamp": "2019-10-15T21:06:25.000Z" + "SpotPrice": "0.432300", + "Timestamp": "2024-05-16T11:02:39.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307900", + "Timestamp": "2024-05-16T11:02:38.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302900", + "Timestamp": "2024-05-16T11:02:38.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.053300", - "Timestamp": "2019-10-15T21:06:25.000Z" + "SpotPrice": "0.177900", + "Timestamp": "2024-05-16T11:02:38.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.997300", - "Timestamp": "2019-10-15T21:06:10.000Z" + "SpotPrice": "1.887500", + "Timestamp": "2024-05-16T11:02:38.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.997300", - "Timestamp": "2019-10-15T21:06:10.000Z" + "SpotPrice": "1.867600", + "Timestamp": "2024-05-16T11:02:38.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.997300", - "Timestamp": "2019-10-15T21:06:10.000Z" + "SpotPrice": "2.807300", + "Timestamp": "2024-05-16T11:02:38.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.980800", - "Timestamp": "2019-10-15T20:57:28.000Z" + "SpotPrice": "0.218600", + "Timestamp": "2024-05-16T11:02:37.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.739000", - "Timestamp": "2019-10-15T20:41:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.739900", + "Timestamp": "2024-05-16T11:02:37.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.609000", - "Timestamp": "2019-10-15T20:41:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.124900", + "Timestamp": "2024-05-16T11:02:37.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "7.027800", - "Timestamp": "2019-10-15T20:40:17.000Z" + "SpotPrice": "5.427900", + "Timestamp": "2024-05-16T11:02:36.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.026000", - "Timestamp": "2019-10-15T20:38:18.000Z" + "SpotPrice": "2.042300", + "Timestamp": "2024-05-16T11:02:35.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.998800", - "Timestamp": "2019-10-15T20:38:18.000Z" + "SpotPrice": "1.948400", + "Timestamp": "2024-05-16T11:02:35.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.998800", - "Timestamp": "2019-10-15T20:38:18.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.037300", + "Timestamp": "2024-05-16T11:02:35.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.896000", - "Timestamp": "2019-10-15T20:38:18.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.943400", + "Timestamp": "2024-05-16T11:02:35.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.868800", - "Timestamp": "2019-10-15T20:38:18.000Z" + "SpotPrice": "1.912300", + "Timestamp": "2024-05-16T11:02:35.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.868800", - "Timestamp": "2019-10-15T20:38:18.000Z" + "SpotPrice": "1.818400", + "Timestamp": "2024-05-16T11:02:35.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.368000", - "Timestamp": "2019-10-15T20:38:18.000Z" + "SpotPrice": "0.255900", + "Timestamp": "2024-05-16T11:02:35.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.340800", - "Timestamp": "2019-10-15T20:38:18.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.174700", + "Timestamp": "2024-05-16T11:02:35.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.340800", - "Timestamp": "2019-10-15T20:38:18.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.169700", + "Timestamp": "2024-05-16T11:02:35.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012400", - "Timestamp": "2019-10-15T20:38:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.044700", + "Timestamp": "2024-05-16T11:02:35.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.012400", - "Timestamp": "2019-10-15T20:38:08.000Z" + "SpotPrice": "0.449800", + "Timestamp": "2024-05-16T11:02:35.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.012400", - "Timestamp": "2019-10-15T20:38:08.000Z" + "SpotPrice": "0.837900", + "Timestamp": "2024-05-16T11:02:34.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.632000", - "Timestamp": "2019-10-15T20:38:02.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.539200", + "Timestamp": "2024-05-16T11:02:34.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.632000", - "Timestamp": "2019-10-15T20:38:02.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.534200", + "Timestamp": "2024-05-16T11:02:34.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.632000", - "Timestamp": "2019-10-15T20:38:02.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.409200", + "Timestamp": "2024-05-16T11:02:34.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-2c", + "InstanceType": "inf1.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063200", - "Timestamp": "2019-10-15T20:37:29.000Z" + "SpotPrice": "0.140300", + "Timestamp": "2024-05-16T11:02:33.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3a.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063200", - "Timestamp": "2019-10-15T20:37:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136300", + "Timestamp": "2024-05-16T11:02:33.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-2c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080300", + "Timestamp": "2024-05-16T11:02:33.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063200", - "Timestamp": "2019-10-15T20:37:29.000Z" + "SpotPrice": "0.151700", + "Timestamp": "2024-05-16T11:02:33.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003200", - "Timestamp": "2019-10-15T20:37:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147700", + "Timestamp": "2024-05-16T11:02:33.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003200", - "Timestamp": "2019-10-15T20:37:29.000Z" + "SpotPrice": "0.091700", + "Timestamp": "2024-05-16T11:02:33.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003200", - "Timestamp": "2019-10-15T20:37:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.356700", + "Timestamp": "2024-05-16T11:02:33.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.394000", - "Timestamp": "2019-10-15T20:37:02.000Z" + "SpotPrice": "0.170100", + "Timestamp": "2024-05-16T11:02:33.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.394000", - "Timestamp": "2019-10-15T20:37:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166100", + "Timestamp": "2024-05-16T11:02:33.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-16T11:02:33.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.355600", + "Timestamp": "2024-05-16T11:02:33.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.012100", + "Timestamp": "2024-05-16T11:02:33.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.394000", - "Timestamp": "2019-10-15T20:37:02.000Z" + "SpotPrice": "1.703600", + "Timestamp": "2024-05-16T11:02:32.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.264000", - "Timestamp": "2019-10-15T20:37:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.698600", + "Timestamp": "2024-05-16T11:02:32.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.264000", - "Timestamp": "2019-10-15T20:37:02.000Z" + "SpotPrice": "1.573600", + "Timestamp": "2024-05-16T11:02:32.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.264000", - "Timestamp": "2019-10-15T20:37:02.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.900800", + "Timestamp": "2024-05-16T11:02:32.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.381300", - "Timestamp": "2019-10-15T20:36:47.000Z" + "SpotPrice": "0.755000", + "Timestamp": "2024-05-16T11:02:32.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.381300", - "Timestamp": "2019-10-15T20:36:47.000Z" + "SpotPrice": "0.878000", + "Timestamp": "2024-05-16T11:02:32.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.381300", - "Timestamp": "2019-10-15T20:36:47.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.750000", + "Timestamp": "2024-05-16T11:02:32.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.251300", - "Timestamp": "2019-10-15T20:36:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.873000", + "Timestamp": "2024-05-16T11:02:32.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.251300", - "Timestamp": "2019-10-15T20:36:47.000Z" + "SpotPrice": "0.625000", + "Timestamp": "2024-05-16T11:02:32.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.251300", - "Timestamp": "2019-10-15T20:36:47.000Z" + "SpotPrice": "0.748000", + "Timestamp": "2024-05-16T11:02:32.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.987300", - "Timestamp": "2019-10-15T20:36:47.000Z" + "SpotPrice": "1.956000", + "Timestamp": "2024-05-16T11:02:32.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.336700", + "Timestamp": "2024-05-16T11:02:32.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.331700", + "Timestamp": "2024-05-16T11:02:32.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.206700", + "Timestamp": "2024-05-16T11:02:32.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.987300", - "Timestamp": "2019-10-15T20:36:47.000Z" + "SpotPrice": "0.875800", + "Timestamp": "2024-05-16T11:02:32.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.987300", - "Timestamp": "2019-10-15T20:36:47.000Z" + "SpotPrice": "2.669800", + "Timestamp": "2024-05-16T11:02:31.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.463400", - "Timestamp": "2019-10-15T20:32:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106700", + "Timestamp": "2024-05-16T11:02:31.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.333400", - "Timestamp": "2019-10-15T20:32:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217400", + "Timestamp": "2024-05-16T11:02:31.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.393300", - "Timestamp": "2019-10-15T20:24:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.180200", + "Timestamp": "2024-05-16T11:02:31.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.393300", - "Timestamp": "2019-10-15T20:24:40.000Z" + "SpotPrice": "0.800500", + "Timestamp": "2024-05-16T11:02:31.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.393300", - "Timestamp": "2019-10-15T20:24:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.795500", + "Timestamp": "2024-05-16T11:02:31.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.263300", - "Timestamp": "2019-10-15T20:24:40.000Z" + "SpotPrice": "0.670500", + "Timestamp": "2024-05-16T11:02:31.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.263300", - "Timestamp": "2019-10-15T20:24:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.149400", + "Timestamp": "2024-05-16T11:02:31.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.144400", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.263300", - "Timestamp": "2019-10-15T20:24:40.000Z" + "SpotPrice": "3.019400", + "Timestamp": "2024-05-16T11:02:31.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.711900", - "Timestamp": "2019-10-15T20:22:45.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.449500", + "Timestamp": "2024-05-16T11:02:31.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.711900", - "Timestamp": "2019-10-15T20:22:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429700", + "Timestamp": "2024-05-16T11:02:30.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "z1d.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.711900", - "Timestamp": "2019-10-15T20:22:45.000Z" + "SpotPrice": "0.397200", + "Timestamp": "2024-05-16T11:02:30.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.581900", - "Timestamp": "2019-10-15T20:22:45.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.392200", + "Timestamp": "2024-05-16T11:02:30.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "z1d.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.581900", - "Timestamp": "2019-10-15T20:22:45.000Z" + "SpotPrice": "0.267200", + "Timestamp": "2024-05-16T11:02:30.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.581900", - "Timestamp": "2019-10-15T20:22:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.186100", + "Timestamp": "2024-05-16T11:02:30.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.789900", - "Timestamp": "2019-10-15T20:22:24.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.399500", + "Timestamp": "2024-05-16T11:02:30.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.789900", - "Timestamp": "2019-10-15T20:22:24.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.394500", + "Timestamp": "2024-05-16T11:02:30.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.789900", - "Timestamp": "2019-10-15T20:22:24.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.269500", + "Timestamp": "2024-05-16T11:02:30.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.301600", - "Timestamp": "2019-10-15T20:15:01.000Z" + "SpotPrice": "0.436500", + "Timestamp": "2024-05-16T11:02:29.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.171600", - "Timestamp": "2019-10-15T20:15:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.458700", + "Timestamp": "2024-05-16T11:02:29.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.921800", - "Timestamp": "2019-10-15T20:03:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.431500", + "Timestamp": "2024-05-16T11:02:29.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.791800", - "Timestamp": "2019-10-15T20:03:57.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.453700", + "Timestamp": "2024-05-16T11:02:29.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.766500", - "Timestamp": "2019-10-15T19:59:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.306500", + "Timestamp": "2024-05-16T11:02:29.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.636500", - "Timestamp": "2019-10-15T19:59:01.000Z" + "SpotPrice": "0.328700", + "Timestamp": "2024-05-16T11:02:29.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "gr6.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.256900", - "Timestamp": "2019-10-15T19:58:48.000Z" + "SpotPrice": "0.469100", + "Timestamp": "2024-05-16T11:02:28.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.439100", + "Timestamp": "2024-05-16T11:02:28.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "gr6.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.196900", - "Timestamp": "2019-10-15T19:58:48.000Z" + "SpotPrice": "0.339100", + "Timestamp": "2024-05-16T11:02:28.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225900", + "Timestamp": "2024-05-16T11:02:27.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.211900", - "Timestamp": "2019-10-15T19:50:38.000Z" + "SpotPrice": "0.304700", + "Timestamp": "2024-05-16T11:02:27.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.299700", + "Timestamp": "2024-05-16T11:02:27.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.081900", - "Timestamp": "2019-10-15T19:50:38.000Z" + "SpotPrice": "0.174700", + "Timestamp": "2024-05-16T11:02:27.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i-flex.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.967000", - "Timestamp": "2019-10-15T19:50:33.000Z" + "SpotPrice": "0.520700", + "Timestamp": "2024-05-16T11:02:26.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.515700", + "Timestamp": "2024-05-16T11:02:26.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i-flex.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.837000", - "Timestamp": "2019-10-15T19:50:33.000Z" + "SpotPrice": "0.390700", + "Timestamp": "2024-05-16T11:02:26.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.134100", - "Timestamp": "2019-10-15T19:49:48.000Z" + "SpotPrice": "0.544800", + "Timestamp": "2024-05-16T11:02:26.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.539800", + "Timestamp": "2024-05-16T11:02:26.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.074100", - "Timestamp": "2019-10-15T19:49:48.000Z" + "SpotPrice": "0.414800", + "Timestamp": "2024-05-16T11:02:26.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.269400", - "Timestamp": "2019-10-15T19:42:25.000Z" + "SpotPrice": "0.176500", + "Timestamp": "2024-05-16T11:02:26.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172500", + "Timestamp": "2024-05-16T11:02:26.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.139400", - "Timestamp": "2019-10-15T19:42:25.000Z" + "SpotPrice": "0.116500", + "Timestamp": "2024-05-16T11:02:26.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.large", "ProductDescription": "Windows", - "SpotPrice": "0.493700", - "Timestamp": "2019-10-15T19:42:13.000Z" + "SpotPrice": "0.111100", + "Timestamp": "2024-05-16T11:02:26.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.493700", - "Timestamp": "2019-10-15T19:42:13.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.270400", + "Timestamp": "2024-05-16T11:02:26.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.493700", - "Timestamp": "2019-10-15T19:42:13.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.265400", + "Timestamp": "2024-05-16T11:02:26.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.471600", - "Timestamp": "2019-10-15T19:41:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.140400", + "Timestamp": "2024-05-16T11:02:26.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.695500", - "Timestamp": "2019-10-15T19:37:55.000Z" + "SpotPrice": "0.577900", + "Timestamp": "2024-05-16T11:02:26.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.695500", - "Timestamp": "2019-10-15T19:37:55.000Z" + "SpotPrice": "0.584700", + "Timestamp": "2024-05-16T11:02:26.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.695500", - "Timestamp": "2019-10-15T19:37:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.572900", + "Timestamp": "2024-05-16T11:02:26.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.565500", - "Timestamp": "2019-10-15T19:37:55.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.579700", + "Timestamp": "2024-05-16T11:02:26.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.565500", - "Timestamp": "2019-10-15T19:37:55.000Z" + "SpotPrice": "0.447900", + "Timestamp": "2024-05-16T11:02:26.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.565500", - "Timestamp": "2019-10-15T19:37:55.000Z" + "SpotPrice": "0.454700", + "Timestamp": "2024-05-16T11:02:26.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.3xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.221500", - "Timestamp": "2019-10-15T19:37:55.000Z" + "SpotPrice": "0.761300", + "Timestamp": "2024-05-16T11:02:26.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.221500", - "Timestamp": "2019-10-15T19:37:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299400", + "Timestamp": "2024-05-16T11:02:26.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.221500", - "Timestamp": "2019-10-15T19:37:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269400", + "Timestamp": "2024-05-16T11:02:26.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.386100", - "Timestamp": "2019-10-15T19:33:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169400", + "Timestamp": "2024-05-16T11:02:26.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.500000", - "Timestamp": "2019-10-15T19:27:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141800", + "Timestamp": "2024-05-16T11:02:26.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.116700", - "Timestamp": "2019-10-15T19:25:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138100", + "Timestamp": "2024-05-16T11:02:26.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.056700", - "Timestamp": "2019-10-15T19:25:42.000Z" + "SpotPrice": "0.081800", + "Timestamp": "2024-05-16T11:02:26.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.854000", - "Timestamp": "2019-10-15T19:23:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.299300", + "Timestamp": "2024-05-16T11:02:25.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.347200", - "Timestamp": "2019-10-15T19:23:30.000Z" + "SpotPrice": "0.187000", + "Timestamp": "2024-05-16T11:02:25.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.724000", - "Timestamp": "2019-10-15T19:23:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.192600", + "Timestamp": "2024-05-16T11:02:25.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.217200", - "Timestamp": "2019-10-15T19:23:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183000", + "Timestamp": "2024-05-16T11:02:25.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.092000", - "Timestamp": "2019-10-15T19:22:12.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.188600", + "Timestamp": "2024-05-16T11:02:25.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.585200", - "Timestamp": "2019-10-15T19:22:12.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127000", + "Timestamp": "2024-05-16T11:02:25.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.585200", - "Timestamp": "2019-10-15T19:22:12.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.132600", + "Timestamp": "2024-05-16T11:02:25.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.074900", - "Timestamp": "2019-10-15T19:11:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136300", + "Timestamp": "2024-05-16T11:02:25.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.074900", - "Timestamp": "2019-10-15T19:11:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132600", + "Timestamp": "2024-05-16T11:02:25.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.074900", - "Timestamp": "2019-10-15T19:11:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076300", + "Timestamp": "2024-05-16T11:02:25.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.101600", - "Timestamp": "2019-10-15T19:10:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.326100", + "Timestamp": "2024-05-16T11:02:25.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.101600", - "Timestamp": "2019-10-15T19:10:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296100", + "Timestamp": "2024-05-16T11:02:25.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.023600", - "Timestamp": "2019-10-15T19:10:17.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195100", + "Timestamp": "2024-05-16T11:02:25.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.023600", - "Timestamp": "2019-10-15T19:10:17.000Z" + "SpotPrice": "2.501300", + "Timestamp": "2024-05-16T11:02:25.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.893600", - "Timestamp": "2019-10-15T19:10:17.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.496300", + "Timestamp": "2024-05-16T11:02:25.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.893600", - "Timestamp": "2019-10-15T19:10:17.000Z" + "SpotPrice": "2.371300", + "Timestamp": "2024-05-16T11:02:25.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5.metal", - "ProductDescription": "Windows", - "SpotPrice": "6.074900", - "Timestamp": "2019-10-15T19:10:17.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T11:02:25.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5.metal", - "ProductDescription": "Windows", - "SpotPrice": "6.074900", - "Timestamp": "2019-10-15T19:10:17.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099800", + "Timestamp": "2024-05-16T11:02:25.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5.metal", - "ProductDescription": "Windows", - "SpotPrice": "6.074900", - "Timestamp": "2019-10-15T19:10:17.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043500", + "Timestamp": "2024-05-16T11:02:25.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.788900", - "Timestamp": "2019-10-15T19:10:16.000Z" + "SpotPrice": "3.947700", + "Timestamp": "2024-05-16T11:02:24.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.788900", - "Timestamp": "2019-10-15T19:10:16.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.942700", + "Timestamp": "2024-05-16T11:02:24.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.788900", - "Timestamp": "2019-10-15T19:10:16.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.817700", + "Timestamp": "2024-05-16T11:02:24.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.658900", - "Timestamp": "2019-10-15T19:10:16.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.244700", + "Timestamp": "2024-05-16T11:02:23.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.658900", - "Timestamp": "2019-10-15T19:10:16.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.239700", + "Timestamp": "2024-05-16T11:02:23.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.658900", - "Timestamp": "2019-10-15T19:10:16.000Z" + "SpotPrice": "0.114700", + "Timestamp": "2024-05-16T11:02:23.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.806800", - "Timestamp": "2019-10-15T19:08:53.000Z" + "SpotPrice": "0.250200", + "Timestamp": "2024-05-16T11:02:23.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.245200", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.676800", - "Timestamp": "2019-10-15T19:08:53.000Z" + "SpotPrice": "0.120200", + "Timestamp": "2024-05-16T11:02:23.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3.micro", "ProductDescription": "Windows", - "SpotPrice": "7.790300", - "Timestamp": "2019-10-15T19:08:25.000Z" + "SpotPrice": "0.011000", + "Timestamp": "2024-05-16T11:02:23.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.779300", - "Timestamp": "2019-10-15T19:08:02.000Z" + "SpotPrice": "0.094000", + "Timestamp": "2024-05-16T11:02:23.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.649300", - "Timestamp": "2019-10-15T19:08:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090300", + "Timestamp": "2024-05-16T11:02:23.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.197500", - "Timestamp": "2019-10-15T18:59:54.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034000", + "Timestamp": "2024-05-16T11:02:23.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.055600", - "Timestamp": "2019-10-15T18:52:22.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.378500", + "Timestamp": "2024-05-16T11:02:23.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.153500", - "Timestamp": "2019-10-15T18:52:12.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.373500", + "Timestamp": "2024-05-16T11:02:23.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.702000", - "Timestamp": "2019-10-15T18:51:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.248500", + "Timestamp": "2024-05-16T11:02:23.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.911500", - "Timestamp": "2019-10-15T18:51:32.000Z" + "SpotPrice": "1.024300", + "Timestamp": "2024-05-16T11:02:22.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.781500", - "Timestamp": "2019-10-15T18:51:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.994300", + "Timestamp": "2024-05-16T11:02:22.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.201500", - "Timestamp": "2019-10-15T18:48:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.894300", + "Timestamp": "2024-05-16T11:02:22.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.982700", - "Timestamp": "2019-10-15T18:48:02.000Z" + "SpotPrice": "4.715800", + "Timestamp": "2024-05-16T11:02:22.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.071500", - "Timestamp": "2019-10-15T18:48:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.710800", + "Timestamp": "2024-05-16T11:02:22.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.852700", - "Timestamp": "2019-10-15T18:48:02.000Z" + "SpotPrice": "4.585800", + "Timestamp": "2024-05-16T11:02:22.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.249800", - "Timestamp": "2019-10-15T18:37:32.000Z" + "SpotPrice": "3.509300", + "Timestamp": "2024-05-16T11:02:21.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.249800", - "Timestamp": "2019-10-15T18:37:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.878400", + "Timestamp": "2024-05-16T11:02:21.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.249800", - "Timestamp": "2019-10-15T18:37:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.873400", + "Timestamp": "2024-05-16T11:02:21.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-15T18:37:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.748400", + "Timestamp": "2024-05-16T11:02:21.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-15T18:37:03.000Z" + "SpotPrice": "0.715800", + "Timestamp": "2024-05-16T11:02:21.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-15T18:37:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.710800", + "Timestamp": "2024-05-16T11:02:21.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065800", - "Timestamp": "2019-10-15T18:37:03.000Z" + "SpotPrice": "0.585800", + "Timestamp": "2024-05-16T11:02:21.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065800", - "Timestamp": "2019-10-15T18:37:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.328600", + "Timestamp": "2024-05-16T11:02:21.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323600", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065800", - "Timestamp": "2019-10-15T18:37:03.000Z" + "SpotPrice": "0.198600", + "Timestamp": "2024-05-16T11:02:21.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.024800", - "Timestamp": "2019-10-15T18:23:11.000Z" + "SpotPrice": "0.217400", + "Timestamp": "2024-05-16T11:02:20.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3a.small", - "ProductDescription": "Windows", - "SpotPrice": "0.024800", - "Timestamp": "2019-10-15T18:23:11.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.719600", + "Timestamp": "2024-05-16T11:02:20.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3a.small", - "ProductDescription": "Windows", - "SpotPrice": "0.024800", - "Timestamp": "2019-10-15T18:23:11.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.714600", + "Timestamp": "2024-05-16T11:02:20.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3a.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066400", - "Timestamp": "2019-10-15T18:22:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.589600", + "Timestamp": "2024-05-16T11:02:20.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3a.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066400", - "Timestamp": "2019-10-15T18:22:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.958100", + "Timestamp": "2024-05-16T11:02:19.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066400", - "Timestamp": "2019-10-15T18:22:27.000Z" + "SpotPrice": "0.476300", + "Timestamp": "2024-05-16T11:02:19.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3a.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006400", - "Timestamp": "2019-10-15T18:22:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.472600", + "Timestamp": "2024-05-16T11:02:19.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006400", - "Timestamp": "2019-10-15T18:22:27.000Z" + "SpotPrice": "0.416300", + "Timestamp": "2024-05-16T11:02:19.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3a.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006400", - "Timestamp": "2019-10-15T18:22:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.394100", + "Timestamp": "2024-05-16T11:02:19.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.646500", - "Timestamp": "2019-10-15T18:18:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.389100", + "Timestamp": "2024-05-16T11:02:19.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.652600", - "Timestamp": "2019-10-15T18:18:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.264100", + "Timestamp": "2024-05-16T11:02:19.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.425900", - "Timestamp": "2019-10-15T18:18:57.000Z" + "SpotPrice": "1.019400", + "Timestamp": "2024-05-16T11:02:19.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.014400", + "Timestamp": "2024-05-16T11:02:19.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.295900", - "Timestamp": "2019-10-15T18:18:57.000Z" + "SpotPrice": "0.889400", + "Timestamp": "2024-05-16T11:02:19.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095400", - "Timestamp": "2019-10-15T18:18:13.000Z" + "SpotPrice": "0.516600", + "Timestamp": "2024-05-16T11:02:19.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.511600", + "Timestamp": "2024-05-16T11:02:19.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035400", - "Timestamp": "2019-10-15T18:18:13.000Z" + "SpotPrice": "0.386600", + "Timestamp": "2024-05-16T11:02:19.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.528600", - "Timestamp": "2019-10-15T18:02:13.000Z" + "SpotPrice": "0.140100", + "Timestamp": "2024-05-16T11:02:18.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136100", + "Timestamp": "2024-05-16T11:02:18.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.398600", - "Timestamp": "2019-10-15T18:02:13.000Z" + "SpotPrice": "0.080100", + "Timestamp": "2024-05-16T11:02:18.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.257400", - "Timestamp": "2019-10-15T18:01:54.000Z" + "SpotPrice": "2.308400", + "Timestamp": "2024-05-16T11:02:17.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.303400", + "Timestamp": "2024-05-16T11:02:17.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.127400", - "Timestamp": "2019-10-15T18:01:54.000Z" + "SpotPrice": "2.178400", + "Timestamp": "2024-05-16T11:02:17.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.750400", - "Timestamp": "2019-10-15T17:53:24.000Z" + "SpotPrice": "1.325400", + "Timestamp": "2024-05-16T11:02:17.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.034000", - "Timestamp": "2019-10-15T17:53:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.320400", + "Timestamp": "2024-05-16T11:02:17.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.620400", - "Timestamp": "2019-10-15T17:53:24.000Z" + "SpotPrice": "1.195400", + "Timestamp": "2024-05-16T11:02:17.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.904000", - "Timestamp": "2019-10-15T17:53:24.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.586400", + "Timestamp": "2024-05-16T11:02:17.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.796400", - "Timestamp": "2019-10-15T17:45:30.000Z" + "SpotPrice": "0.529000", + "Timestamp": "2024-05-16T11:02:17.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.666400", - "Timestamp": "2019-10-15T17:45:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.581400", + "Timestamp": "2024-05-16T11:02:17.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125000", - "Timestamp": "2019-10-15T17:38:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.524000", + "Timestamp": "2024-05-16T11:02:17.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125000", - "Timestamp": "2019-10-15T17:38:11.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.456400", + "Timestamp": "2024-05-16T11:02:17.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5ad.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-15T17:37:42.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.399000", + "Timestamp": "2024-05-16T11:02:17.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5ad.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-15T17:37:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112300", + "Timestamp": "2024-05-16T11:02:17.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5ad.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033000", - "Timestamp": "2019-10-15T17:37:42.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.028900", + "Timestamp": "2024-05-16T11:02:16.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5ad.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033000", - "Timestamp": "2019-10-15T17:37:42.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.023900", + "Timestamp": "2024-05-16T11:02:16.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.342000", - "Timestamp": "2019-10-15T17:37:37.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.898900", + "Timestamp": "2024-05-16T11:02:16.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.342000", - "Timestamp": "2019-10-15T17:37:37.000Z" + "SpotPrice": "0.761900", + "Timestamp": "2024-05-16T11:02:16.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.282000", - "Timestamp": "2019-10-15T17:37:37.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.756900", + "Timestamp": "2024-05-16T11:02:16.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.282000", - "Timestamp": "2019-10-15T17:37:37.000Z" + "SpotPrice": "0.631900", + "Timestamp": "2024-05-16T11:02:16.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.large", "ProductDescription": "Windows", - "SpotPrice": "0.466000", - "Timestamp": "2019-10-15T17:37:25.000Z" + "SpotPrice": "0.115500", + "Timestamp": "2024-05-16T11:02:15.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.466000", - "Timestamp": "2019-10-15T17:37:25.000Z" + "SpotPrice": "2.729400", + "Timestamp": "2024-05-16T11:02:15.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.301900", - "Timestamp": "2019-10-15T17:36:44.000Z" + "SpotPrice": "2.332700", + "Timestamp": "2024-05-16T11:02:15.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.327700", + "Timestamp": "2024-05-16T11:02:15.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.171900", - "Timestamp": "2019-10-15T17:36:44.000Z" + "SpotPrice": "2.202700", + "Timestamp": "2024-05-16T11:02:15.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i2.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.185700", - "Timestamp": "2019-10-15T17:36:42.000Z" + "SpotPrice": "2.445700", + "Timestamp": "2024-05-16T11:02:13.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.415700", + "Timestamp": "2024-05-16T11:02:13.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "i2.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.055700", - "Timestamp": "2019-10-15T17:36:42.000Z" + "SpotPrice": "2.315700", + "Timestamp": "2024-05-16T11:02:13.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t2.large", - "ProductDescription": "Windows", - "SpotPrice": "0.059700", - "Timestamp": "2019-10-15T17:36:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-16T11:02:11.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t2.large", - "ProductDescription": "Windows", - "SpotPrice": "0.059700", - "Timestamp": "2019-10-15T17:36:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T11:02:11.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t2.large", - "ProductDescription": "Windows", - "SpotPrice": "0.059700", - "Timestamp": "2019-10-15T17:36:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046100", + "Timestamp": "2024-05-16T11:02:11.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.268200", - "Timestamp": "2019-10-15T17:36:22.000Z" + "SpotPrice": "0.323000", + "Timestamp": "2024-05-16T11:02:11.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.138200", - "Timestamp": "2019-10-15T17:36:22.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.318000", + "Timestamp": "2024-05-16T11:02:11.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t2.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091700", - "Timestamp": "2019-10-15T17:36:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.193000", + "Timestamp": "2024-05-16T11:02:11.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t2.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091700", - "Timestamp": "2019-10-15T17:36:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.737400", + "Timestamp": "2024-05-16T11:02:10.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091700", - "Timestamp": "2019-10-15T17:36:06.000Z" + "SpotPrice": "0.690900", + "Timestamp": "2024-05-16T11:02:09.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t2.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031700", - "Timestamp": "2019-10-15T17:36:06.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.685900", + "Timestamp": "2024-05-16T11:02:09.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031700", - "Timestamp": "2019-10-15T17:36:06.000Z" + "SpotPrice": "0.560900", + "Timestamp": "2024-05-16T11:02:09.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t2.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031700", - "Timestamp": "2019-10-15T17:36:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.426500", + "Timestamp": "2024-05-16T11:02:09.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.136400", - "Timestamp": "2019-10-15T17:20:27.000Z" + "SpotPrice": "0.575200", + "Timestamp": "2024-05-16T11:02:09.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.076400", - "Timestamp": "2019-10-15T17:20:27.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.570200", + "Timestamp": "2024-05-16T11:02:09.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "7.351200", - "Timestamp": "2019-10-15T17:19:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.445200", + "Timestamp": "2024-05-16T11:02:09.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.244000", - "Timestamp": "2019-10-15T17:14:19.000Z" + "SpotPrice": "1.124400", + "Timestamp": "2024-05-16T11:02:08.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.244000", - "Timestamp": "2019-10-15T17:14:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.119400", + "Timestamp": "2024-05-16T11:02:08.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.244000", - "Timestamp": "2019-10-15T17:14:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.994400", + "Timestamp": "2024-05-16T11:02:08.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.114000", - "Timestamp": "2019-10-15T17:14:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.484100", + "Timestamp": "2024-05-16T11:02:07.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.114000", - "Timestamp": "2019-10-15T17:14:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.810900", + "Timestamp": "2024-05-16T11:02:06.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.114000", - "Timestamp": "2019-10-15T17:14:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.867700", + "Timestamp": "2024-05-16T11:02:05.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.261200", - "Timestamp": "2019-10-15T17:13:57.000Z" + "SpotPrice": "1.740800", + "Timestamp": "2024-05-16T11:02:05.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.261200", - "Timestamp": "2019-10-15T17:13:57.000Z" + "SpotPrice": "0.458200", + "Timestamp": "2024-05-16T11:02:05.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.261200", - "Timestamp": "2019-10-15T17:13:57.000Z" + "SpotPrice": "2.572000", + "Timestamp": "2024-05-16T11:02:05.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T17:13:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.833800", + "Timestamp": "2024-05-16T11:02:04.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T17:13:50.000Z" + "SpotPrice": "0.217300", + "Timestamp": "2024-05-16T11:02:04.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066000", - "Timestamp": "2019-10-15T17:13:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.213600", + "Timestamp": "2024-05-16T11:02:04.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066000", - "Timestamp": "2019-10-15T17:13:50.000Z" + "SpotPrice": "0.157300", + "Timestamp": "2024-05-16T11:02:04.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.metal-24xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.262000", - "Timestamp": "2019-10-15T17:13:48.000Z" + "SpotPrice": "2.837300", + "Timestamp": "2024-05-16T11:02:04.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.262000", - "Timestamp": "2019-10-15T17:13:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.832300", + "Timestamp": "2024-05-16T11:02:04.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.707300", + "Timestamp": "2024-05-16T11:02:04.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.262000", - "Timestamp": "2019-10-15T17:13:48.000Z" + "SpotPrice": "0.152900", + "Timestamp": "2024-05-16T11:02:03.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.132000", - "Timestamp": "2019-10-15T17:13:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149900", + "Timestamp": "2024-05-16T11:02:03.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.132000", - "Timestamp": "2019-10-15T17:13:48.000Z" + "SpotPrice": "0.092900", + "Timestamp": "2024-05-16T11:02:03.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.725400", + "Timestamp": "2024-05-16T11:02:02.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.720400", + "Timestamp": "2024-05-16T11:02:02.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.132000", - "Timestamp": "2019-10-15T17:13:48.000Z" + "SpotPrice": "3.595400", + "Timestamp": "2024-05-16T11:02:02.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.metal-16xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.503100", - "Timestamp": "2019-10-15T17:13:47.000Z" + "SpotPrice": "2.178300", + "Timestamp": "2024-05-16T11:02:01.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.metal-16xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.503100", - "Timestamp": "2019-10-15T17:13:47.000Z" + "SpotPrice": "2.801300", + "Timestamp": "2024-05-16T11:02:01.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.503100", - "Timestamp": "2019-10-15T17:13:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.173300", + "Timestamp": "2024-05-16T11:02:01.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.373100", - "Timestamp": "2019-10-15T17:13:47.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.796300", + "Timestamp": "2024-05-16T11:02:01.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.metal-16xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.373100", - "Timestamp": "2019-10-15T17:13:47.000Z" + "SpotPrice": "2.048300", + "Timestamp": "2024-05-16T11:02:01.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.metal-16xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.373100", - "Timestamp": "2019-10-15T17:13:47.000Z" + "SpotPrice": "2.671300", + "Timestamp": "2024-05-16T11:02:01.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.large", "ProductDescription": "Windows", - "SpotPrice": "3.581100", - "Timestamp": "2019-10-15T17:13:46.000Z" + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T11:02:01.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.581100", - "Timestamp": "2019-10-15T17:13:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094900", + "Timestamp": "2024-05-16T11:01:59.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.581100", - "Timestamp": "2019-10-15T17:13:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091200", + "Timestamp": "2024-05-16T11:01:59.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.500000", - "Timestamp": "2019-10-15T17:13:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034900", + "Timestamp": "2024-05-16T11:01:59.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.metal", "ProductDescription": "Windows", - "SpotPrice": "0.500000", - "Timestamp": "2019-10-15T17:13:40.000Z" + "SpotPrice": "6.976300", + "Timestamp": "2024-05-16T11:01:58.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.500000", - "Timestamp": "2019-10-15T17:13:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.480900", + "Timestamp": "2024-05-16T11:01:58.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.788900", - "Timestamp": "2019-10-15T17:13:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.450900", + "Timestamp": "2024-05-16T11:01:58.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.788900", - "Timestamp": "2019-10-15T17:13:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.350900", + "Timestamp": "2024-05-16T11:01:58.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.899800", + "Timestamp": "2024-05-16T11:01:58.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.788900", - "Timestamp": "2019-10-15T17:13:33.000Z" + "SpotPrice": "0.182700", + "Timestamp": "2024-05-16T11:01:57.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.658900", - "Timestamp": "2019-10-15T17:13:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179000", + "Timestamp": "2024-05-16T11:01:57.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.658900", - "Timestamp": "2019-10-15T17:13:33.000Z" + "SpotPrice": "0.122700", + "Timestamp": "2024-05-16T11:01:57.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.658900", - "Timestamp": "2019-10-15T17:13:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.285900", + "Timestamp": "2024-05-16T11:01:56.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "6.074900", - "Timestamp": "2019-10-15T17:13:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.280900", + "Timestamp": "2024-05-16T11:01:56.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "6.074900", - "Timestamp": "2019-10-15T17:13:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.155900", + "Timestamp": "2024-05-16T11:01:56.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.074900", - "Timestamp": "2019-10-15T17:13:33.000Z" + "SpotPrice": "8.159300", + "Timestamp": "2024-05-16T11:01:55.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.050800", - "Timestamp": "2019-10-15T17:13:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120200", + "Timestamp": "2024-05-16T11:01:54.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.050800", - "Timestamp": "2019-10-15T17:13:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116500", + "Timestamp": "2024-05-16T11:01:54.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.076800", - "Timestamp": "2019-10-15T17:13:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060200", + "Timestamp": "2024-05-16T11:01:54.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3en.6xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.metal-48xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.076800", - "Timestamp": "2019-10-15T17:13:30.000Z" + "SpotPrice": "3.172800", + "Timestamp": "2024-05-16T11:01:53.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.946800", - "Timestamp": "2019-10-15T17:13:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.167800", + "Timestamp": "2024-05-16T11:01:53.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3en.6xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.946800", - "Timestamp": "2019-10-15T17:13:30.000Z" + "SpotPrice": "3.042800", + "Timestamp": "2024-05-16T11:01:53.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.metal", "ProductDescription": "Windows", - "SpotPrice": "0.250000", - "Timestamp": "2019-10-15T17:13:28.000Z" + "SpotPrice": "4.923900", + "Timestamp": "2024-05-16T11:01:53.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.250000", - "Timestamp": "2019-10-15T17:13:28.000Z" + "SpotPrice": "2.097500", + "Timestamp": "2024-05-16T11:01:51.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.523100", - "Timestamp": "2019-10-15T17:11:36.000Z" + "SpotPrice": "2.085600", + "Timestamp": "2024-05-16T11:01:51.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.471700", - "Timestamp": "2019-10-15T17:10:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145000", + "Timestamp": "2024-05-16T11:01:51.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.471700", - "Timestamp": "2019-10-15T17:10:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141000", + "Timestamp": "2024-05-16T11:01:51.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.471700", - "Timestamp": "2019-10-15T17:10:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085000", + "Timestamp": "2024-05-16T11:01:51.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.049900", - "Timestamp": "2019-10-15T17:10:00.000Z" + "SpotPrice": "3.357500", + "Timestamp": "2024-05-16T11:01:50.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.049900", - "Timestamp": "2019-10-15T17:10:00.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.313500", + "Timestamp": "2024-05-16T11:01:48.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.049900", - "Timestamp": "2019-10-15T17:10:00.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.283500", + "Timestamp": "2024-05-16T11:01:48.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.235900", - "Timestamp": "2019-10-15T17:10:00.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.183500", + "Timestamp": "2024-05-16T11:01:48.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2idn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.235900", - "Timestamp": "2019-10-15T17:10:00.000Z" + "SpotPrice": "2.660300", + "Timestamp": "2024-05-16T11:01:46.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.235900", - "Timestamp": "2019-10-15T17:10:00.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.655300", + "Timestamp": "2024-05-16T11:01:46.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2idn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.105900", - "Timestamp": "2019-10-15T17:10:00.000Z" + "SpotPrice": "2.530300", + "Timestamp": "2024-05-16T11:01:46.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.105900", - "Timestamp": "2019-10-15T17:10:00.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.122700", + "Timestamp": "2024-05-16T11:01:46.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.105900", - "Timestamp": "2019-10-15T17:10:00.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.117700", + "Timestamp": "2024-05-16T11:01:46.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.959500", - "Timestamp": "2019-10-15T17:09:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.992700", + "Timestamp": "2024-05-16T11:01:46.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.959500", - "Timestamp": "2019-10-15T17:09:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.079800", + "Timestamp": "2024-05-16T11:01:46.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.959500", - "Timestamp": "2019-10-15T17:09:48.000Z" + "SpotPrice": "0.407000", + "Timestamp": "2024-05-16T11:01:45.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.829500", - "Timestamp": "2019-10-15T17:09:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.402000", + "Timestamp": "2024-05-16T11:01:45.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.829500", - "Timestamp": "2019-10-15T17:09:48.000Z" + "SpotPrice": "0.277000", + "Timestamp": "2024-05-16T11:01:45.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.829500", - "Timestamp": "2019-10-15T17:09:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.026300", + "Timestamp": "2024-05-16T11:01:43.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.037500", - "Timestamp": "2019-10-15T17:09:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.285700", + "Timestamp": "2024-05-16T11:01:42.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.037500", - "Timestamp": "2019-10-15T17:09:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.280700", + "Timestamp": "2024-05-16T11:01:42.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.037500", - "Timestamp": "2019-10-15T17:09:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.155700", + "Timestamp": "2024-05-16T11:01:42.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.185700", - "Timestamp": "2019-10-15T17:09:45.000Z" + "SpotPrice": "0.069600", + "Timestamp": "2024-05-16T11:01:41.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.185700", - "Timestamp": "2019-10-15T17:09:45.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040600", + "Timestamp": "2024-05-16T11:01:41.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.055700", - "Timestamp": "2019-10-15T17:09:45.000Z" + "SpotPrice": "0.009600", + "Timestamp": "2024-05-16T11:01:41.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.055700", - "Timestamp": "2019-10-15T17:09:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.615800", + "Timestamp": "2024-05-16T11:01:40.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.124900", - "Timestamp": "2019-10-15T17:06:04.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.610800", + "Timestamp": "2024-05-16T11:01:40.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.124900", - "Timestamp": "2019-10-15T17:06:04.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.485800", + "Timestamp": "2024-05-16T11:01:40.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.124900", - "Timestamp": "2019-10-15T17:06:04.000Z" + "SpotPrice": "3.145200", + "Timestamp": "2024-05-16T11:01:40.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092900", - "Timestamp": "2019-10-15T17:06:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.131000", + "Timestamp": "2024-05-16T11:01:39.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092900", - "Timestamp": "2019-10-15T17:06:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.467700", + "Timestamp": "2024-05-16T11:01:37.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092900", - "Timestamp": "2019-10-15T17:06:04.000Z" - }, - { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032900", - "Timestamp": "2019-10-15T17:06:04.000Z" + "SpotPrice": "0.259000", + "Timestamp": "2024-05-16T11:01:37.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032900", - "Timestamp": "2019-10-15T17:06:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.229000", + "Timestamp": "2024-05-16T11:01:37.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032900", - "Timestamp": "2019-10-15T17:06:04.000Z" - }, - { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.435300", - "Timestamp": "2019-10-15T17:05:57.000Z" + "SpotPrice": "0.129000", + "Timestamp": "2024-05-16T11:01:37.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.305300", - "Timestamp": "2019-10-15T17:05:57.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.854500", + "Timestamp": "2024-05-16T11:01:36.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.778800", - "Timestamp": "2019-10-15T17:05:54.000Z" + "SpotPrice": "1.923200", + "Timestamp": "2024-05-16T10:47:36.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.metal-48xl", "ProductDescription": "Windows", - "SpotPrice": "5.778800", - "Timestamp": "2019-10-15T17:05:54.000Z" + "SpotPrice": "11.929600", + "Timestamp": "2024-05-16T10:47:36.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.246800", - "Timestamp": "2019-10-15T17:05:45.000Z" + "SpotPrice": "7.027400", + "Timestamp": "2024-05-16T10:47:35.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.246800", - "Timestamp": "2019-10-15T17:05:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.277300", + "Timestamp": "2024-05-16T10:47:34.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.246800", - "Timestamp": "2019-10-15T17:05:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.272300", + "Timestamp": "2024-05-16T10:47:34.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122800", - "Timestamp": "2019-10-15T17:05:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.147300", + "Timestamp": "2024-05-16T10:47:34.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122800", - "Timestamp": "2019-10-15T17:05:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.811200", + "Timestamp": "2024-05-16T10:47:34.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122800", - "Timestamp": "2019-10-15T17:05:45.000Z" + "SpotPrice": "2.014100", + "Timestamp": "2024-05-16T10:47:34.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062800", - "Timestamp": "2019-10-15T17:05:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.009100", + "Timestamp": "2024-05-16T10:47:34.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062800", - "Timestamp": "2019-10-15T17:05:45.000Z" + "SpotPrice": "1.884100", + "Timestamp": "2024-05-16T10:47:34.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062800", - "Timestamp": "2019-10-15T17:05:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.650600", + "Timestamp": "2024-05-16T10:47:33.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3a.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061600", - "Timestamp": "2019-10-15T17:05:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.957400", + "Timestamp": "2024-05-16T10:47:32.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061600", - "Timestamp": "2019-10-15T17:05:27.000Z" + "SpotPrice": "0.740700", + "Timestamp": "2024-05-16T10:47:31.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3a.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061600", - "Timestamp": "2019-10-15T17:05:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.710700", + "Timestamp": "2024-05-16T10:47:31.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001600", - "Timestamp": "2019-10-15T17:05:27.000Z" + "SpotPrice": "0.610700", + "Timestamp": "2024-05-16T10:47:31.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3a.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001600", - "Timestamp": "2019-10-15T17:05:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.564200", + "Timestamp": "2024-05-16T10:47:28.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3a.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001600", - "Timestamp": "2019-10-15T17:05:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.559200", + "Timestamp": "2024-05-16T10:47:28.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006200", - "Timestamp": "2019-10-15T17:05:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.434200", + "Timestamp": "2024-05-16T10:47:28.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006200", - "Timestamp": "2019-10-15T17:05:26.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103900", + "Timestamp": "2024-05-16T10:47:27.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006200", - "Timestamp": "2019-10-15T17:05:26.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143900", + "Timestamp": "2024-05-16T10:47:27.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.500000", - "Timestamp": "2019-10-15T17:01:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043900", + "Timestamp": "2024-05-16T10:47:27.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.3xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.400000", - "Timestamp": "2019-10-15T16:49:47.000Z" + "SpotPrice": "0.684400", + "Timestamp": "2024-05-16T10:47:25.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "gr6.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.262000", - "Timestamp": "2019-10-15T16:46:24.000Z" + "SpotPrice": "0.344900", + "Timestamp": "2024-05-16T10:47:24.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.314900", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "gr6.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.132000", - "Timestamp": "2019-10-15T16:46:24.000Z" + "SpotPrice": "0.214900", + "Timestamp": "2024-05-16T10:47:24.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.444700", - "Timestamp": "2019-10-15T16:38:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.965300", + "Timestamp": "2024-05-16T10:47:23.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.444700", - "Timestamp": "2019-10-15T16:38:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.960300", + "Timestamp": "2024-05-16T10:47:23.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.185700", - "Timestamp": "2019-10-15T16:38:21.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.835300", + "Timestamp": "2024-05-16T10:47:23.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "p2.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.185700", - "Timestamp": "2019-10-15T16:38:21.000Z" + "SpotPrice": "2.024200", + "Timestamp": "2024-05-16T10:47:23.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.055700", - "Timestamp": "2019-10-15T16:38:21.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "p2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.994200", + "Timestamp": "2024-05-16T10:47:23.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "p2.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.055700", - "Timestamp": "2019-10-15T16:38:21.000Z" + "SpotPrice": "1.894200", + "Timestamp": "2024-05-16T10:47:23.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.589600", - "Timestamp": "2019-10-15T16:38:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.693400", + "Timestamp": "2024-05-16T10:47:22.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.206700", - "Timestamp": "2019-10-15T16:38:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.688400", + "Timestamp": "2024-05-16T10:47:22.000Z" }, { - "AvailabilityZone": "eu-west-2a", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.563400", + "Timestamp": "2024-05-16T10:47:22.000Z" + }, + { + "AvailabilityZone": "us-east-2b", "InstanceType": "p3.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.206700", - "Timestamp": "2019-10-15T16:38:03.000Z" + "SpotPrice": "1.132100", + "Timestamp": "2024-05-16T10:47:19.000Z" }, { - "AvailabilityZone": "eu-west-2b", + "AvailabilityZone": "us-east-2b", "InstanceType": "p3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.076700", - "Timestamp": "2019-10-15T16:38:03.000Z" + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.102100", + "Timestamp": "2024-05-16T10:47:19.000Z" }, { - "AvailabilityZone": "eu-west-2a", + "AvailabilityZone": "us-east-2b", "InstanceType": "p3.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.076700", - "Timestamp": "2019-10-15T16:38:03.000Z" - }, - { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.999700", - "Timestamp": "2019-10-15T16:37:49.000Z" + "SpotPrice": "1.002100", + "Timestamp": "2024-05-16T10:47:19.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.999700", - "Timestamp": "2019-10-15T16:37:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.673400", + "Timestamp": "2024-05-16T10:47:18.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.999700", - "Timestamp": "2019-10-15T16:37:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.668400", + "Timestamp": "2024-05-16T10:47:18.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.508200", - "Timestamp": "2019-10-15T16:37:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.543400", + "Timestamp": "2024-05-16T10:47:18.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.508200", - "Timestamp": "2019-10-15T16:37:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.802800", + "Timestamp": "2024-05-16T10:47:17.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.508200", - "Timestamp": "2019-10-15T16:37:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.772800", + "Timestamp": "2024-05-16T10:47:17.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.982200", - "Timestamp": "2019-10-15T16:37:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.672800", + "Timestamp": "2024-05-16T10:47:17.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.982200", - "Timestamp": "2019-10-15T16:37:08.000Z" + "SpotPrice": "1.820500", + "Timestamp": "2024-05-16T10:47:16.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.982200", - "Timestamp": "2019-10-15T16:37:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.815500", + "Timestamp": "2024-05-16T10:47:16.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.852200", - "Timestamp": "2019-10-15T16:37:08.000Z" - }, - { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.852200", - "Timestamp": "2019-10-15T16:37:08.000Z" - }, - { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.852200", - "Timestamp": "2019-10-15T16:37:08.000Z" + "SpotPrice": "1.690500", + "Timestamp": "2024-05-16T10:47:16.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.558700", - "Timestamp": "2019-10-15T16:37:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.098300", + "Timestamp": "2024-05-16T10:47:16.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.558700", - "Timestamp": "2019-10-15T16:37:01.000Z" + "SpotPrice": "0.097900", + "Timestamp": "2024-05-16T10:47:16.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.428700", - "Timestamp": "2019-10-15T16:37:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137900", + "Timestamp": "2024-05-16T10:47:16.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.428700", - "Timestamp": "2019-10-15T16:37:01.000Z" + "SpotPrice": "0.037900", + "Timestamp": "2024-05-16T10:47:16.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "d3.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.164700", - "Timestamp": "2019-10-15T16:36:49.000Z" + "SpotPrice": "0.262300", + "Timestamp": "2024-05-16T10:47:15.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "p3.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.164700", - "Timestamp": "2019-10-15T16:36:49.000Z" + "SpotPrice": "3.395800", + "Timestamp": "2024-05-16T10:47:15.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.608000", - "Timestamp": "2019-10-15T16:36:07.000Z" + "SpotPrice": "5.549000", + "Timestamp": "2024-05-16T10:47:13.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.608000", - "Timestamp": "2019-10-15T16:36:07.000Z" + "SpotPrice": "5.670900", + "Timestamp": "2024-05-16T10:47:13.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.608000", - "Timestamp": "2019-10-15T16:36:07.000Z" + "SpotPrice": "6.051800", + "Timestamp": "2024-05-16T10:47:12.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.900000", - "Timestamp": "2019-10-15T16:29:42.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.513800", + "Timestamp": "2024-05-16T10:47:10.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.900000", - "Timestamp": "2019-10-15T16:29:42.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.508800", + "Timestamp": "2024-05-16T10:47:10.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.900000", - "Timestamp": "2019-10-15T16:29:42.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.383800", + "Timestamp": "2024-05-16T10:47:10.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.055800", - "Timestamp": "2019-10-15T16:22:02.000Z" + "SpotPrice": "0.348900", + "Timestamp": "2024-05-16T10:47:09.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.925800", - "Timestamp": "2019-10-15T16:22:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343900", + "Timestamp": "2024-05-16T10:47:09.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.038700", - "Timestamp": "2019-10-15T16:05:21.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.218900", + "Timestamp": "2024-05-16T10:47:09.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.999700", - "Timestamp": "2019-10-15T16:05:20.000Z" + "SpotPrice": "2.603900", + "Timestamp": "2024-05-16T10:47:09.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c4.large", "ProductDescription": "Windows", - "SpotPrice": "1.536000", - "Timestamp": "2019-10-15T15:46:59.000Z" + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T10:47:09.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.713500", - "Timestamp": "2019-10-15T15:37:59.000Z" + "SpotPrice": "0.503500", + "Timestamp": "2024-05-16T10:47:06.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.713500", - "Timestamp": "2019-10-15T15:37:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.498500", + "Timestamp": "2024-05-16T10:47:06.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.713500", - "Timestamp": "2019-10-15T15:37:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.373500", + "Timestamp": "2024-05-16T10:47:06.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.583500", - "Timestamp": "2019-10-15T15:37:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.135200", + "Timestamp": "2024-05-16T10:47:03.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.583500", - "Timestamp": "2019-10-15T15:37:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.130200", + "Timestamp": "2024-05-16T10:47:03.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.583500", - "Timestamp": "2019-10-15T15:37:59.000Z" + "SpotPrice": "4.005200", + "Timestamp": "2024-05-16T10:47:03.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "gr6.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.999500", - "Timestamp": "2019-10-15T15:37:09.000Z" + "SpotPrice": "1.774300", + "Timestamp": "2024-05-16T10:47:01.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.999500", - "Timestamp": "2019-10-15T15:37:09.000Z" + "SpotPrice": "5.531600", + "Timestamp": "2024-05-16T10:47:00.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.999500", - "Timestamp": "2019-10-15T15:37:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.777500", + "Timestamp": "2024-05-16T10:46:58.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.074900", - "Timestamp": "2019-10-15T15:36:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.772500", + "Timestamp": "2024-05-16T10:46:58.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.074900", - "Timestamp": "2019-10-15T15:36:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.647500", + "Timestamp": "2024-05-16T10:46:58.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.074900", - "Timestamp": "2019-10-15T15:36:59.000Z" - }, - { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.788900", - "Timestamp": "2019-10-15T15:36:06.000Z" + "SpotPrice": "4.972700", + "Timestamp": "2024-05-16T10:46:57.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.658900", - "Timestamp": "2019-10-15T15:36:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.734800", + "Timestamp": "2024-05-16T10:46:53.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.788900", - "Timestamp": "2019-10-15T15:25:05.000Z" + "SpotPrice": "1.313100", + "Timestamp": "2024-05-16T10:46:52.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.788900", - "Timestamp": "2019-10-15T15:25:05.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.308100", + "Timestamp": "2024-05-16T10:46:52.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.658900", - "Timestamp": "2019-10-15T15:25:05.000Z" + "SpotPrice": "1.183100", + "Timestamp": "2024-05-16T10:46:52.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.658900", - "Timestamp": "2019-10-15T15:25:05.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.872400", + "Timestamp": "2024-05-16T10:46:52.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.246800", - "Timestamp": "2019-10-15T15:24:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.648900", + "Timestamp": "2024-05-16T10:46:52.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.246800", - "Timestamp": "2019-10-15T15:24:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.643900", + "Timestamp": "2024-05-16T10:46:52.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.246800", - "Timestamp": "2019-10-15T15:24:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.518900", + "Timestamp": "2024-05-16T10:46:52.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "d2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122800", - "Timestamp": "2019-10-15T15:24:19.000Z" + "SpotPrice": "0.235900", + "Timestamp": "2024-05-16T10:46:51.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062800", - "Timestamp": "2019-10-15T15:24:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.275900", + "Timestamp": "2024-05-16T10:46:51.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.262000", - "Timestamp": "2019-10-15T14:37:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175900", + "Timestamp": "2024-05-16T10:46:51.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.262000", - "Timestamp": "2019-10-15T14:37:34.000Z" + "SpotPrice": "1.671100", + "Timestamp": "2024-05-16T10:46:51.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.132000", - "Timestamp": "2019-10-15T14:37:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.666100", + "Timestamp": "2024-05-16T10:46:51.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.132000", - "Timestamp": "2019-10-15T14:37:34.000Z" + "SpotPrice": "1.541100", + "Timestamp": "2024-05-16T10:46:51.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.metal", "ProductDescription": "Windows", - "SpotPrice": "0.500000", - "Timestamp": "2019-10-15T14:37:24.000Z" + "SpotPrice": "10.413100", + "Timestamp": "2024-05-16T10:46:50.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.500000", - "Timestamp": "2019-10-15T14:37:24.000Z" + "SpotPrice": "7.069300", + "Timestamp": "2024-05-16T10:46:48.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.500000", - "Timestamp": "2019-10-15T14:37:24.000Z" + "SpotPrice": "0.228100", + "Timestamp": "2024-05-16T10:46:48.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r3.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.412900", - "Timestamp": "2019-10-15T13:59:38.000Z" - }, - { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091800", - "Timestamp": "2019-10-15T13:59:30.000Z" + "SpotPrice": "0.810700", + "Timestamp": "2024-05-16T10:46:47.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031800", - "Timestamp": "2019-10-15T13:59:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.820900", + "Timestamp": "2024-05-16T10:46:47.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.393900", - "Timestamp": "2019-10-15T13:44:52.000Z" + "SpotPrice": "2.755900", + "Timestamp": "2024-05-16T10:46:46.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.393900", - "Timestamp": "2019-10-15T13:44:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.750900", + "Timestamp": "2024-05-16T10:46:46.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.263900", - "Timestamp": "2019-10-15T13:44:52.000Z" + "SpotPrice": "2.625900", + "Timestamp": "2024-05-16T10:46:46.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.263900", - "Timestamp": "2019-10-15T13:44:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.605300", + "Timestamp": "2024-05-16T10:46:46.000Z" }, { - "AvailabilityZone": "eu-west-2c", + "AvailabilityZone": "us-east-2c", "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "7.124200", - "Timestamp": "2019-10-15T13:42:55.000Z" + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.600300", + "Timestamp": "2024-05-16T10:46:46.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.999800", - "Timestamp": "2019-10-15T13:36:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.475300", + "Timestamp": "2024-05-16T10:46:46.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.999800", - "Timestamp": "2019-10-15T13:36:39.000Z" + "SpotPrice": "2.735500", + "Timestamp": "2024-05-16T10:46:46.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "im4gn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.921800", - "Timestamp": "2019-10-15T13:36:35.000Z" + "SpotPrice": "0.754900", + "Timestamp": "2024-05-16T10:46:45.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.921800", - "Timestamp": "2019-10-15T13:36:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.749900", + "Timestamp": "2024-05-16T10:46:45.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "im4gn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.791800", - "Timestamp": "2019-10-15T13:36:35.000Z" + "SpotPrice": "0.624900", + "Timestamp": "2024-05-16T10:46:45.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.791800", - "Timestamp": "2019-10-15T13:36:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.853100", + "Timestamp": "2024-05-16T10:46:45.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.257200", - "Timestamp": "2019-10-15T13:34:57.000Z" + "SpotPrice": "1.164300", + "Timestamp": "2024-05-16T10:46:45.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.159300", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.127200", - "Timestamp": "2019-10-15T13:34:57.000Z" + "SpotPrice": "1.034300", + "Timestamp": "2024-05-16T10:46:45.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.657600", - "Timestamp": "2019-10-15T13:33:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.250600", + "Timestamp": "2024-05-16T10:46:45.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.527600", - "Timestamp": "2019-10-15T13:33:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219700", + "Timestamp": "2024-05-16T10:46:44.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "z1d.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.631700", - "Timestamp": "2019-10-15T13:23:26.000Z" + "SpotPrice": "0.457700", + "Timestamp": "2024-05-16T10:46:43.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "z1d.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.631700", - "Timestamp": "2019-10-15T13:23:26.000Z" + "SpotPrice": "0.890900", + "Timestamp": "2024-05-16T10:46:42.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "z1d.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.631700", - "Timestamp": "2019-10-15T13:23:26.000Z" + "SpotPrice": "2.857300", + "Timestamp": "2024-05-16T10:46:42.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.393700", - "Timestamp": "2019-10-15T13:21:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.916300", + "Timestamp": "2024-05-16T10:46:42.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "z1d.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4ad.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.393700", - "Timestamp": "2019-10-15T13:21:33.000Z" + "SpotPrice": "0.298600", + "Timestamp": "2024-05-16T10:46:40.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.393700", - "Timestamp": "2019-10-15T13:21:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293600", + "Timestamp": "2024-05-16T10:46:40.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "z1d.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4ad.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.263700", - "Timestamp": "2019-10-15T13:21:33.000Z" + "SpotPrice": "0.168600", + "Timestamp": "2024-05-16T10:46:40.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.263700", - "Timestamp": "2019-10-15T13:21:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.378800", + "Timestamp": "2024-05-16T10:46:40.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "z1d.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.373800", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.263700", - "Timestamp": "2019-10-15T13:21:33.000Z" + "SpotPrice": "0.248800", + "Timestamp": "2024-05-16T10:46:40.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.051200", - "Timestamp": "2019-10-15T13:09:19.000Z" + "SpotPrice": "0.869300", + "Timestamp": "2024-05-16T10:46:40.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.871700", - "Timestamp": "2019-10-15T12:52:22.000Z" + "SpotPrice": "1.047700", + "Timestamp": "2024-05-16T10:46:40.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.741700", - "Timestamp": "2019-10-15T12:52:22.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.042700", + "Timestamp": "2024-05-16T10:46:40.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.135400", - "Timestamp": "2019-10-15T12:38:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.917700", + "Timestamp": "2024-05-16T10:46:40.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.135400", - "Timestamp": "2019-10-15T12:38:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224400", + "Timestamp": "2024-05-16T10:46:39.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.135400", - "Timestamp": "2019-10-15T12:38:09.000Z" + "SpotPrice": "0.478500", + "Timestamp": "2024-05-16T10:46:39.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.005400", - "Timestamp": "2019-10-15T12:38:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473500", + "Timestamp": "2024-05-16T10:46:39.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.005400", - "Timestamp": "2019-10-15T12:38:09.000Z" + "SpotPrice": "0.348500", + "Timestamp": "2024-05-16T10:46:39.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.005400", - "Timestamp": "2019-10-15T12:38:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.320100", + "Timestamp": "2024-05-16T10:46:37.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.949400", - "Timestamp": "2019-10-15T12:38:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.315100", + "Timestamp": "2024-05-16T10:46:37.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.949400", - "Timestamp": "2019-10-15T12:38:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.190100", + "Timestamp": "2024-05-16T10:46:37.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.949400", - "Timestamp": "2019-10-15T12:38:07.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.405000", + "Timestamp": "2024-05-16T10:46:37.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.025000", - "Timestamp": "2019-10-15T12:37:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.400000", + "Timestamp": "2024-05-16T10:46:37.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.025000", - "Timestamp": "2019-10-15T12:37:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.275000", + "Timestamp": "2024-05-16T10:46:37.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.025000", - "Timestamp": "2019-10-15T12:37:39.000Z" + "SpotPrice": "0.483500", + "Timestamp": "2024-05-16T10:46:36.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.341800", - "Timestamp": "2019-10-15T12:37:22.000Z" + "SpotPrice": "0.232400", + "Timestamp": "2024-05-16T10:46:35.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.341800", - "Timestamp": "2019-10-15T12:37:22.000Z" + "SpotPrice": "2.673300", + "Timestamp": "2024-05-16T10:46:35.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.217800", - "Timestamp": "2019-10-15T12:37:22.000Z" + "SpotPrice": "1.300400", + "Timestamp": "2024-05-16T10:46:34.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.217800", - "Timestamp": "2019-10-15T12:37:22.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.295400", + "Timestamp": "2024-05-16T10:46:34.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.157800", - "Timestamp": "2019-10-15T12:37:22.000Z" + "SpotPrice": "1.170400", + "Timestamp": "2024-05-16T10:46:34.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.157800", - "Timestamp": "2019-10-15T12:37:22.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.551300", + "Timestamp": "2024-05-16T10:46:34.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.683000", - "Timestamp": "2019-10-15T12:37:02.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.546300", + "Timestamp": "2024-05-16T10:46:34.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.683000", - "Timestamp": "2019-10-15T12:37:02.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.421300", + "Timestamp": "2024-05-16T10:46:34.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.683000", - "Timestamp": "2019-10-15T12:37:02.000Z" + "SpotPrice": "1.310500", + "Timestamp": "2024-05-16T10:46:34.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.553000", - "Timestamp": "2019-10-15T12:37:02.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.305500", + "Timestamp": "2024-05-16T10:46:34.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.553000", - "Timestamp": "2019-10-15T12:37:02.000Z" + "SpotPrice": "1.180500", + "Timestamp": "2024-05-16T10:46:34.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.553000", - "Timestamp": "2019-10-15T12:37:02.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.252900", + "Timestamp": "2024-05-16T10:46:33.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.999900", - "Timestamp": "2019-10-15T12:36:58.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.663400", + "Timestamp": "2024-05-16T10:46:33.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.536000", - "Timestamp": "2019-10-15T12:36:58.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.633400", + "Timestamp": "2024-05-16T10:46:33.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.930000", - "Timestamp": "2019-10-15T12:36:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.533400", + "Timestamp": "2024-05-16T10:46:33.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.393900", - "Timestamp": "2019-10-15T12:36:40.000Z" + "SpotPrice": "1.717000", + "Timestamp": "2024-05-16T10:46:33.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.930000", - "Timestamp": "2019-10-15T12:36:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.712000", + "Timestamp": "2024-05-16T10:46:33.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.800000", - "Timestamp": "2019-10-15T12:36:40.000Z" + "SpotPrice": "1.587000", + "Timestamp": "2024-05-16T10:46:33.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.263900", - "Timestamp": "2019-10-15T12:36:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.224600", + "Timestamp": "2024-05-16T10:46:33.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.219600", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.800000", - "Timestamp": "2019-10-15T12:36:40.000Z" + "SpotPrice": "0.094600", + "Timestamp": "2024-05-16T10:46:33.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.073800", - "Timestamp": "2019-10-15T12:36:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.537700", + "Timestamp": "2024-05-16T10:46:32.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.999900", - "Timestamp": "2019-10-15T12:24:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.614100", + "Timestamp": "2024-05-16T10:46:32.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.999900", - "Timestamp": "2019-10-15T12:24:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.532700", + "Timestamp": "2024-05-16T10:46:32.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.999800", - "Timestamp": "2019-10-15T12:23:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.609100", + "Timestamp": "2024-05-16T10:46:32.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.999800", - "Timestamp": "2019-10-15T12:23:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.407700", + "Timestamp": "2024-05-16T10:46:32.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.999800", - "Timestamp": "2019-10-15T12:23:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.484100", + "Timestamp": "2024-05-16T10:46:32.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.657800", - "Timestamp": "2019-10-15T12:23:22.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.574000", + "Timestamp": "2024-05-16T10:46:32.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.657800", - "Timestamp": "2019-10-15T12:23:22.000Z" + "SpotPrice": "1.480100", + "Timestamp": "2024-05-16T10:46:31.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.527800", - "Timestamp": "2019-10-15T12:23:22.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.475100", + "Timestamp": "2024-05-16T10:46:31.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.527800", - "Timestamp": "2019-10-15T12:23:22.000Z" + "SpotPrice": "1.350100", + "Timestamp": "2024-05-16T10:46:31.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.262000", - "Timestamp": "2019-10-15T12:05:39.000Z" + "SpotPrice": "0.353300", + "Timestamp": "2024-05-16T10:46:31.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.132000", - "Timestamp": "2019-10-15T12:05:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.348300", + "Timestamp": "2024-05-16T10:46:31.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.056100", - "Timestamp": "2019-10-15T11:38:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.223300", + "Timestamp": "2024-05-16T10:46:31.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.056100", - "Timestamp": "2019-10-15T11:38:25.000Z" + "SpotPrice": "0.316000", + "Timestamp": "2024-05-16T10:46:31.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.056100", - "Timestamp": "2019-10-15T11:38:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.286000", + "Timestamp": "2024-05-16T10:46:31.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.926100", - "Timestamp": "2019-10-15T11:38:25.000Z" + "SpotPrice": "0.186000", + "Timestamp": "2024-05-16T10:46:31.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.926100", - "Timestamp": "2019-10-15T11:38:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.396900", + "Timestamp": "2024-05-16T10:46:31.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.926100", - "Timestamp": "2019-10-15T11:38:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.013000", + "Timestamp": "2024-05-16T10:46:31.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.406500", - "Timestamp": "2019-10-15T11:38:16.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.323700", + "Timestamp": "2024-05-16T10:46:31.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.406500", - "Timestamp": "2019-10-15T11:38:16.000Z" + "SpotPrice": "2.805800", + "Timestamp": "2024-05-16T10:46:31.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.406500", - "Timestamp": "2019-10-15T11:38:16.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.800800", + "Timestamp": "2024-05-16T10:46:31.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.276500", - "Timestamp": "2019-10-15T11:38:16.000Z" + "SpotPrice": "2.675800", + "Timestamp": "2024-05-16T10:46:31.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.276500", - "Timestamp": "2019-10-15T11:38:16.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.247500", + "Timestamp": "2024-05-16T10:46:31.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.242500", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.276500", - "Timestamp": "2019-10-15T11:38:16.000Z" + "SpotPrice": "1.117500", + "Timestamp": "2024-05-16T10:46:31.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.662100", - "Timestamp": "2019-10-15T11:37:59.000Z" + "SpotPrice": "5.234800", + "Timestamp": "2024-05-16T10:46:31.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.662100", - "Timestamp": "2019-10-15T11:37:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159800", + "Timestamp": "2024-05-16T10:46:30.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156100", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099800", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.662100", - "Timestamp": "2019-10-15T11:37:59.000Z" + "SpotPrice": "0.218500", + "Timestamp": "2024-05-16T10:46:29.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.930000", - "Timestamp": "2019-10-15T11:37:41.000Z" + "SpotPrice": "0.980500", + "Timestamp": "2024-05-16T10:46:29.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.930000", - "Timestamp": "2019-10-15T11:37:41.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.975500", + "Timestamp": "2024-05-16T10:46:29.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.800000", - "Timestamp": "2019-10-15T11:37:41.000Z" + "SpotPrice": "0.850500", + "Timestamp": "2024-05-16T10:46:29.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.800000", - "Timestamp": "2019-10-15T11:37:41.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.595200", + "Timestamp": "2024-05-16T10:46:29.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122800", - "Timestamp": "2019-10-15T11:37:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.501300", + "Timestamp": "2024-05-16T10:46:29.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122800", - "Timestamp": "2019-10-15T11:37:23.000Z" + "SpotPrice": "1.433100", + "Timestamp": "2024-05-16T10:46:28.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122800", - "Timestamp": "2019-10-15T11:37:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.428100", + "Timestamp": "2024-05-16T10:46:28.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062800", - "Timestamp": "2019-10-15T11:37:23.000Z" + "SpotPrice": "1.303100", + "Timestamp": "2024-05-16T10:46:28.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062800", - "Timestamp": "2019-10-15T11:37:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.406900", + "Timestamp": "2024-05-16T10:46:27.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062800", - "Timestamp": "2019-10-15T11:37:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.401900", + "Timestamp": "2024-05-16T10:46:27.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.999800", - "Timestamp": "2019-10-15T11:37:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.276900", + "Timestamp": "2024-05-16T10:46:27.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "t2.medium", "ProductDescription": "Windows", - "SpotPrice": "9.216000", - "Timestamp": "2019-10-15T11:37:17.000Z" + "SpotPrice": "0.026100", + "Timestamp": "2024-05-16T10:46:25.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "9.216000", - "Timestamp": "2019-10-15T11:37:17.000Z" + "SpotPrice": "7.600000", + "Timestamp": "2024-05-16T10:46:25.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.662000", - "Timestamp": "2019-10-15T11:37:15.000Z" + "SpotPrice": "0.245100", + "Timestamp": "2024-05-16T10:46:24.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.662000", - "Timestamp": "2019-10-15T11:37:15.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.240100", + "Timestamp": "2024-05-16T10:46:24.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.662000", - "Timestamp": "2019-10-15T11:37:15.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115100", + "Timestamp": "2024-05-16T10:46:24.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.532000", - "Timestamp": "2019-10-15T11:37:15.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.508200", + "Timestamp": "2024-05-16T10:46:24.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.532000", - "Timestamp": "2019-10-15T11:37:15.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.478200", + "Timestamp": "2024-05-16T10:46:24.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.532000", - "Timestamp": "2019-10-15T11:37:15.000Z" + "SpotPrice": "0.378200", + "Timestamp": "2024-05-16T10:46:24.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.012500", - "Timestamp": "2019-10-15T11:37:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076800", + "Timestamp": "2024-05-16T10:46:23.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.012500", - "Timestamp": "2019-10-15T11:37:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073100", + "Timestamp": "2024-05-16T10:46:23.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.012500", - "Timestamp": "2019-10-15T11:37:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016800", + "Timestamp": "2024-05-16T10:46:23.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.246800", - "Timestamp": "2019-10-15T11:37:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.186700", + "Timestamp": "2024-05-16T10:46:23.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.246800", - "Timestamp": "2019-10-15T11:37:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.181700", + "Timestamp": "2024-05-16T10:46:23.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.246800", - "Timestamp": "2019-10-15T11:37:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.056700", + "Timestamp": "2024-05-16T10:46:23.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.736000", - "Timestamp": "2019-10-15T11:37:00.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.838900", + "Timestamp": "2024-05-16T10:46:23.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.681600", - "Timestamp": "2019-10-15T11:37:00.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.833900", + "Timestamp": "2024-05-16T10:46:23.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.681600", - "Timestamp": "2019-10-15T11:37:00.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.708900", + "Timestamp": "2024-05-16T10:46:23.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.922000", - "Timestamp": "2019-10-15T11:37:00.000Z" + "SpotPrice": "0.078200", + "Timestamp": "2024-05-16T10:46:23.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.867600", - "Timestamp": "2019-10-15T11:37:00.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074500", + "Timestamp": "2024-05-16T10:46:23.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.867600", - "Timestamp": "2019-10-15T11:37:00.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018200", + "Timestamp": "2024-05-16T10:46:23.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.792000", - "Timestamp": "2019-10-15T11:37:00.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077500", + "Timestamp": "2024-05-16T10:46:22.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.737600", - "Timestamp": "2019-10-15T11:37:00.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117500", + "Timestamp": "2024-05-16T10:46:22.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t2.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.737600", - "Timestamp": "2019-10-15T11:37:00.000Z" + "SpotPrice": "0.017500", + "Timestamp": "2024-05-16T10:46:22.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.406500", - "Timestamp": "2019-10-15T11:07:01.000Z" + "SpotPrice": "0.767500", + "Timestamp": "2024-05-16T10:46:22.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.762500", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.276500", - "Timestamp": "2019-10-15T11:07:01.000Z" + "SpotPrice": "0.637500", + "Timestamp": "2024-05-16T10:46:22.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-15T10:37:40.000Z" - }, - { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-15T10:37:40.000Z" - }, - { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-15T10:37:40.000Z" - }, - { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003600", - "Timestamp": "2019-10-15T10:37:40.000Z" + "SpotPrice": "0.571400", + "Timestamp": "2024-05-16T10:46:22.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003600", - "Timestamp": "2019-10-15T10:37:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.566400", + "Timestamp": "2024-05-16T10:46:22.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003600", - "Timestamp": "2019-10-15T10:37:40.000Z" + "SpotPrice": "0.441400", + "Timestamp": "2024-05-16T10:46:22.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012800", - "Timestamp": "2019-10-15T10:37:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135700", + "Timestamp": "2024-05-16T10:46:20.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012800", - "Timestamp": "2019-10-15T10:37:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132000", + "Timestamp": "2024-05-16T10:46:20.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012800", - "Timestamp": "2019-10-15T10:37:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075700", + "Timestamp": "2024-05-16T10:46:20.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.499700", - "Timestamp": "2019-10-15T10:22:37.000Z" + "SpotPrice": "0.933600", + "Timestamp": "2024-05-16T10:46:19.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.499700", - "Timestamp": "2019-10-15T10:22:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122000", + "Timestamp": "2024-05-16T10:46:19.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.499700", - "Timestamp": "2019-10-15T10:22:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118300", + "Timestamp": "2024-05-16T10:46:19.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.261700", - "Timestamp": "2019-10-15T10:22:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062000", + "Timestamp": "2024-05-16T10:46:19.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.261700", - "Timestamp": "2019-10-15T10:22:32.000Z" + "SpotPrice": "0.361400", + "Timestamp": "2024-05-16T10:46:19.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.261700", - "Timestamp": "2019-10-15T10:22:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.356400", + "Timestamp": "2024-05-16T10:46:19.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.131700", - "Timestamp": "2019-10-15T10:22:32.000Z" + "SpotPrice": "0.231400", + "Timestamp": "2024-05-16T10:46:19.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.131700", - "Timestamp": "2019-10-15T10:22:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.898300", + "Timestamp": "2024-05-16T10:46:18.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.131700", - "Timestamp": "2019-10-15T10:22:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.876900", + "Timestamp": "2024-05-16T10:46:13.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094600", - "Timestamp": "2019-10-15T10:17:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.846900", + "Timestamp": "2024-05-16T10:46:13.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1e.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034600", - "Timestamp": "2019-10-15T10:17:36.000Z" + "SpotPrice": "4.746900", + "Timestamp": "2024-05-16T10:46:13.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129100", - "Timestamp": "2019-10-15T10:17:22.000Z" + "SpotPrice": "0.121800", + "Timestamp": "2024-05-16T10:46:10.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129100", - "Timestamp": "2019-10-15T10:17:22.000Z" + "SpotPrice": "0.117400", + "Timestamp": "2024-05-16T10:46:10.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129100", - "Timestamp": "2019-10-15T10:17:22.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118100", + "Timestamp": "2024-05-16T10:46:10.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069100", - "Timestamp": "2019-10-15T10:17:22.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113700", + "Timestamp": "2024-05-16T10:46:10.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069100", - "Timestamp": "2019-10-15T10:17:22.000Z" + "SpotPrice": "0.061800", + "Timestamp": "2024-05-16T10:46:10.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069100", - "Timestamp": "2019-10-15T10:17:22.000Z" - }, - { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.253100", - "Timestamp": "2019-10-15T10:17:22.000Z" + "SpotPrice": "0.057400", + "Timestamp": "2024-05-16T10:46:10.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.253100", - "Timestamp": "2019-10-15T10:17:22.000Z" + "SpotPrice": "0.856400", + "Timestamp": "2024-05-16T10:34:31.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.253100", - "Timestamp": "2019-10-15T10:17:22.000Z" + "SpotPrice": "0.856400", + "Timestamp": "2024-05-16T10:34:31.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.123400", - "Timestamp": "2019-10-15T09:38:47.000Z" + "SpotPrice": "0.856400", + "Timestamp": "2024-05-16T10:34:31.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123400", - "Timestamp": "2019-10-15T09:38:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "a1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096200", + "Timestamp": "2024-05-16T10:33:17.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123400", - "Timestamp": "2019-10-15T09:38:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "a1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092500", + "Timestamp": "2024-05-16T10:33:17.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.657800", - "Timestamp": "2019-10-15T09:38:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "a1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036200", + "Timestamp": "2024-05-16T10:33:17.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.657800", - "Timestamp": "2019-10-15T09:38:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021900", + "Timestamp": "2024-05-16T10:33:05.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.657800", - "Timestamp": "2019-10-15T09:38:23.000Z" + "SpotPrice": "0.354100", + "Timestamp": "2024-05-16T10:32:34.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.527800", - "Timestamp": "2019-10-15T09:38:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349100", + "Timestamp": "2024-05-16T10:32:34.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.527800", - "Timestamp": "2019-10-15T09:38:23.000Z" + "SpotPrice": "0.224100", + "Timestamp": "2024-05-16T10:32:34.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.527800", - "Timestamp": "2019-10-15T09:38:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.624100", + "Timestamp": "2024-05-16T10:32:33.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.268200", - "Timestamp": "2019-10-15T09:38:16.000Z" + "SpotPrice": "1.220900", + "Timestamp": "2024-05-16T10:32:33.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.268200", - "Timestamp": "2019-10-15T09:38:16.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.215900", + "Timestamp": "2024-05-16T10:32:33.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.138200", - "Timestamp": "2019-10-15T09:38:16.000Z" + "SpotPrice": "1.090900", + "Timestamp": "2024-05-16T10:32:33.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.138200", - "Timestamp": "2019-10-15T09:38:16.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.711900", + "Timestamp": "2024-05-16T10:32:31.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091400", - "Timestamp": "2019-10-15T09:38:05.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.460500", + "Timestamp": "2024-05-16T10:32:29.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.359200", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091400", - "Timestamp": "2019-10-15T09:38:05.000Z" + "SpotPrice": "0.307600", + "Timestamp": "2024-05-16T10:32:25.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031400", - "Timestamp": "2019-10-15T09:38:05.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302600", + "Timestamp": "2024-05-16T10:32:25.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031400", - "Timestamp": "2019-10-15T09:38:05.000Z" + "SpotPrice": "0.177600", + "Timestamp": "2024-05-16T10:32:25.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.999800", - "Timestamp": "2019-10-15T09:37:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.932000", + "Timestamp": "2024-05-16T10:32:25.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.999800", - "Timestamp": "2019-10-15T09:37:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.927000", + "Timestamp": "2024-05-16T10:32:25.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.999800", - "Timestamp": "2019-10-15T09:37:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.802000", + "Timestamp": "2024-05-16T10:32:25.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-2c", + "InstanceType": "h1.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067800", - "Timestamp": "2019-10-15T09:37:29.000Z" + "SpotPrice": "0.327100", + "Timestamp": "2024-05-16T10:32:23.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t2.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067800", - "Timestamp": "2019-10-15T09:37:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "h1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.297100", + "Timestamp": "2024-05-16T10:32:23.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-2c", + "InstanceType": "h1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.197100", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067800", - "Timestamp": "2019-10-15T09:37:29.000Z" + "SpotPrice": "3.263000", + "Timestamp": "2024-05-16T10:32:22.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t2.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007800", - "Timestamp": "2019-10-15T09:37:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.258000", + "Timestamp": "2024-05-16T10:32:22.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007800", - "Timestamp": "2019-10-15T09:37:29.000Z" + "SpotPrice": "3.133000", + "Timestamp": "2024-05-16T10:32:22.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t2.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007800", - "Timestamp": "2019-10-15T09:37:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.451500", + "Timestamp": "2024-05-16T10:32:21.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.056100", - "Timestamp": "2019-10-15T09:37:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.446500", + "Timestamp": "2024-05-16T10:32:21.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.056100", - "Timestamp": "2019-10-15T09:37:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.321500", + "Timestamp": "2024-05-16T10:32:21.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.056100", - "Timestamp": "2019-10-15T09:37:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.388200", + "Timestamp": "2024-05-16T10:32:20.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.506200", - "Timestamp": "2019-10-15T09:37:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.383200", + "Timestamp": "2024-05-16T10:32:20.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.506200", - "Timestamp": "2019-10-15T09:37:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.258200", + "Timestamp": "2024-05-16T10:32:20.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.088500", - "Timestamp": "2019-10-15T09:37:01.000Z" + "SpotPrice": "1.190600", + "Timestamp": "2024-05-16T10:32:19.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.088500", - "Timestamp": "2019-10-15T09:37:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.185600", + "Timestamp": "2024-05-16T10:32:19.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.028500", - "Timestamp": "2019-10-15T09:37:01.000Z" + "SpotPrice": "1.060600", + "Timestamp": "2024-05-16T10:32:19.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.028500", - "Timestamp": "2019-10-15T09:37:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.331500", + "Timestamp": "2024-05-16T10:32:17.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.088500", - "Timestamp": "2019-10-15T09:37:01.000Z" + "SpotPrice": "0.767400", + "Timestamp": "2024-05-16T10:32:16.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.028500", - "Timestamp": "2019-10-15T09:37:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.762400", + "Timestamp": "2024-05-16T10:32:16.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t2.small", - "ProductDescription": "Windows", - "SpotPrice": "0.017000", - "Timestamp": "2019-10-15T09:36:58.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.637400", + "Timestamp": "2024-05-16T10:32:16.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r4.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.017000", - "Timestamp": "2019-10-15T09:36:58.000Z" + "SpotPrice": "0.445000", + "Timestamp": "2024-05-16T10:32:16.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t2.small", - "ProductDescription": "Windows", - "SpotPrice": "0.017000", - "Timestamp": "2019-10-15T09:36:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.186100", + "Timestamp": "2024-05-16T10:32:14.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123400", - "Timestamp": "2019-10-15T09:23:52.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.182400", + "Timestamp": "2024-05-16T10:32:14.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063400", - "Timestamp": "2019-10-15T09:23:52.000Z" + "SpotPrice": "0.126100", + "Timestamp": "2024-05-16T10:32:14.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1e.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "7.200000", - "Timestamp": "2019-10-15T09:18:12.000Z" + "SpotPrice": "10.373900", + "Timestamp": "2024-05-16T10:32:14.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "7.200000", - "Timestamp": "2019-10-15T09:18:12.000Z" + "SpotPrice": "1.805000", + "Timestamp": "2024-05-16T10:32:11.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.049900", - "Timestamp": "2019-10-15T09:18:12.000Z" + "SpotPrice": "0.430300", + "Timestamp": "2024-05-16T10:32:09.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.386000", - "Timestamp": "2019-10-15T09:18:12.000Z" + "SpotPrice": "1.693000", + "Timestamp": "2024-05-16T10:32:07.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.386000", - "Timestamp": "2019-10-15T09:18:12.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.688000", + "Timestamp": "2024-05-16T10:32:07.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.235900", - "Timestamp": "2019-10-15T09:18:12.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.563000", + "Timestamp": "2024-05-16T10:32:07.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.256000", - "Timestamp": "2019-10-15T09:18:12.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.875500", + "Timestamp": "2024-05-16T10:32:05.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.256000", - "Timestamp": "2019-10-15T09:18:12.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.397700", + "Timestamp": "2024-05-16T10:32:04.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.392700", + "Timestamp": "2024-05-16T10:32:04.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.105900", - "Timestamp": "2019-10-15T09:18:12.000Z" + "SpotPrice": "0.267700", + "Timestamp": "2024-05-16T10:32:04.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3en.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.138900", - "Timestamp": "2019-10-15T09:18:11.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.329100", + "Timestamp": "2024-05-16T10:32:02.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.138900", - "Timestamp": "2019-10-15T09:18:11.000Z" + "SpotPrice": "2.787400", + "Timestamp": "2024-05-16T10:32:01.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3en.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.078900", - "Timestamp": "2019-10-15T09:18:11.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.782400", + "Timestamp": "2024-05-16T10:32:01.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.078900", - "Timestamp": "2019-10-15T09:18:11.000Z" + "SpotPrice": "2.657400", + "Timestamp": "2024-05-16T10:32:01.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3en.large", - "ProductDescription": "Windows", - "SpotPrice": "0.170900", - "Timestamp": "2019-10-15T09:18:11.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.870100", + "Timestamp": "2024-05-16T10:32:01.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3en.large", - "ProductDescription": "Windows", - "SpotPrice": "0.170900", - "Timestamp": "2019-10-15T09:18:11.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.865100", + "Timestamp": "2024-05-16T10:32:01.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t2.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.064000", - "Timestamp": "2019-10-15T08:38:44.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.740100", + "Timestamp": "2024-05-16T10:32:01.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i-flex.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.064000", - "Timestamp": "2019-10-15T08:38:44.000Z" + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T10:32:00.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t2.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.064000", - "Timestamp": "2019-10-15T08:38:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093400", + "Timestamp": "2024-05-16T10:32:00.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i-flex.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.004000", - "Timestamp": "2019-10-15T08:38:44.000Z" + "SpotPrice": "0.037100", + "Timestamp": "2024-05-16T10:32:00.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t2.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.004000", - "Timestamp": "2019-10-15T08:38:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432600", + "Timestamp": "2024-05-16T10:32:00.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t2.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.004000", - "Timestamp": "2019-10-15T08:38:44.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.497700", + "Timestamp": "2024-05-16T10:31:59.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t2.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.008600", - "Timestamp": "2019-10-15T08:38:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.492700", + "Timestamp": "2024-05-16T10:31:59.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.367700", + "Timestamp": "2024-05-16T10:31:59.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.008600", - "Timestamp": "2019-10-15T08:38:31.000Z" + "SpotPrice": "10.959200", + "Timestamp": "2024-05-16T10:31:57.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.008600", - "Timestamp": "2019-10-15T08:38:31.000Z" + "SpotPrice": "11.083900", + "Timestamp": "2024-05-16T10:31:57.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.194000", - "Timestamp": "2019-10-15T08:38:23.000Z" + "SpotPrice": "1.190500", + "Timestamp": "2024-05-16T10:31:56.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.194000", - "Timestamp": "2019-10-15T08:38:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.185500", + "Timestamp": "2024-05-16T10:31:56.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.064000", - "Timestamp": "2019-10-15T08:38:23.000Z" + "SpotPrice": "1.060500", + "Timestamp": "2024-05-16T10:31:56.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.064000", - "Timestamp": "2019-10-15T08:38:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.705400", + "Timestamp": "2024-05-16T10:31:56.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.959500", - "Timestamp": "2019-10-15T08:38:11.000Z" + "SpotPrice": "1.814400", + "Timestamp": "2024-05-16T10:31:54.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.809400", + "Timestamp": "2024-05-16T10:31:54.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.829500", - "Timestamp": "2019-10-15T08:38:11.000Z" + "SpotPrice": "1.684400", + "Timestamp": "2024-05-16T10:31:54.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.126600", - "Timestamp": "2019-10-15T08:37:36.000Z" + "SpotPrice": "4.137700", + "Timestamp": "2024-05-16T10:31:53.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c4.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.037500", - "Timestamp": "2019-10-15T08:37:11.000Z" + "SpotPrice": "1.721800", + "Timestamp": "2024-05-16T10:31:53.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.800000", - "Timestamp": "2019-10-15T08:37:11.000Z" + "SpotPrice": "1.729100", + "Timestamp": "2024-05-16T10:31:52.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.800000", - "Timestamp": "2019-10-15T08:37:11.000Z" + "SpotPrice": "2.587400", + "Timestamp": "2024-05-16T10:31:52.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.578000", - "Timestamp": "2019-10-15T08:37:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.132300", + "Timestamp": "2024-05-16T10:31:51.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.564400", - "Timestamp": "2019-10-15T08:37:08.000Z" + "SpotPrice": "2.635300", + "Timestamp": "2024-05-16T10:31:50.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.564400", - "Timestamp": "2019-10-15T08:37:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.630300", + "Timestamp": "2024-05-16T10:31:50.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.448000", - "Timestamp": "2019-10-15T08:37:08.000Z" + "SpotPrice": "2.505300", + "Timestamp": "2024-05-16T10:31:50.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.434400", - "Timestamp": "2019-10-15T08:37:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301700", + "Timestamp": "2024-05-16T10:31:49.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.434400", - "Timestamp": "2019-10-15T08:37:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296700", + "Timestamp": "2024-05-16T10:31:49.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.184000", - "Timestamp": "2019-10-15T08:37:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171700", + "Timestamp": "2024-05-16T10:31:49.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.170400", - "Timestamp": "2019-10-15T08:37:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.066900", + "Timestamp": "2024-05-16T10:31:49.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.170400", - "Timestamp": "2019-10-15T08:37:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.061900", + "Timestamp": "2024-05-16T10:31:49.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.493700", - "Timestamp": "2019-10-15T08:18:12.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.936900", + "Timestamp": "2024-05-16T10:31:49.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.493700", - "Timestamp": "2019-10-15T08:18:12.000Z" + "SpotPrice": "0.559500", + "Timestamp": "2024-05-16T10:31:49.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.493700", - "Timestamp": "2019-10-15T08:18:12.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.761900", + "Timestamp": "2024-05-16T10:31:48.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.255700", - "Timestamp": "2019-10-15T08:18:11.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.731900", + "Timestamp": "2024-05-16T10:31:48.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.125700", - "Timestamp": "2019-10-15T08:18:11.000Z" + "SpotPrice": "1.631900", + "Timestamp": "2024-05-16T10:31:48.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122800", - "Timestamp": "2019-10-15T07:59:11.000Z" + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T10:31:48.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062800", - "Timestamp": "2019-10-15T07:59:11.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100700", + "Timestamp": "2024-05-16T10:31:48.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.893800", - "Timestamp": "2019-10-15T07:37:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044400", + "Timestamp": "2024-05-16T10:31:48.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.893800", - "Timestamp": "2019-10-15T07:37:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.269900", + "Timestamp": "2024-05-16T10:31:47.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "is4gen.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.893800", - "Timestamp": "2019-10-15T07:37:25.000Z" - }, - { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.763800", - "Timestamp": "2019-10-15T07:37:25.000Z" + "SpotPrice": "0.145300", + "Timestamp": "2024-05-16T10:31:47.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.763800", - "Timestamp": "2019-10-15T07:37:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141600", + "Timestamp": "2024-05-16T10:31:47.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "is4gen.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.763800", - "Timestamp": "2019-10-15T07:37:25.000Z" + "SpotPrice": "0.085300", + "Timestamp": "2024-05-16T10:31:47.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.235800", - "Timestamp": "2019-10-15T07:37:06.000Z" + "SpotPrice": "0.431700", + "Timestamp": "2024-05-16T10:31:47.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.metal", "ProductDescription": "Windows", - "SpotPrice": "2.235800", - "Timestamp": "2019-10-15T07:37:06.000Z" + "SpotPrice": "5.067400", + "Timestamp": "2024-05-16T10:31:47.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.235800", - "Timestamp": "2019-10-15T07:37:06.000Z" + "SpotPrice": "0.452600", + "Timestamp": "2024-05-16T10:31:47.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.053100", - "Timestamp": "2019-10-15T07:23:11.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.784600", + "Timestamp": "2024-05-16T10:31:46.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.053100", - "Timestamp": "2019-10-15T07:23:11.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.779600", + "Timestamp": "2024-05-16T10:31:46.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.053100", - "Timestamp": "2019-10-15T07:23:11.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.654600", + "Timestamp": "2024-05-16T10:31:46.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.225000", - "Timestamp": "2019-10-15T07:23:04.000Z" + "SpotPrice": "1.739100", + "Timestamp": "2024-05-16T10:31:46.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.225000", - "Timestamp": "2019-10-15T07:23:04.000Z" - }, - { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.193000", - "Timestamp": "2019-10-15T07:21:43.000Z" + "SpotPrice": "1.747700", + "Timestamp": "2024-05-16T10:31:46.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2idn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.193000", - "Timestamp": "2019-10-15T07:21:43.000Z" + "SpotPrice": "2.216300", + "Timestamp": "2024-05-16T10:31:46.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.133000", - "Timestamp": "2019-10-15T07:21:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.211300", + "Timestamp": "2024-05-16T10:31:46.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2idn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.133000", - "Timestamp": "2019-10-15T07:21:43.000Z" + "SpotPrice": "2.086300", + "Timestamp": "2024-05-16T10:31:46.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.085500", - "Timestamp": "2019-10-15T07:18:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221500", + "Timestamp": "2024-05-16T10:31:45.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.085500", - "Timestamp": "2019-10-15T07:18:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211200", + "Timestamp": "2024-05-16T10:31:45.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3a.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.085500", - "Timestamp": "2019-10-15T07:18:43.000Z" - }, - { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.025500", - "Timestamp": "2019-10-15T07:18:43.000Z" + "SpotPrice": "0.995400", + "Timestamp": "2024-05-16T10:31:45.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.025500", - "Timestamp": "2019-10-15T07:18:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.965400", + "Timestamp": "2024-05-16T10:31:45.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3a.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.025500", - "Timestamp": "2019-10-15T07:18:43.000Z" + "SpotPrice": "0.865400", + "Timestamp": "2024-05-16T10:31:45.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123400", - "Timestamp": "2019-10-15T06:38:23.000Z" + "SpotPrice": "0.259400", + "Timestamp": "2024-05-16T10:31:43.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123400", - "Timestamp": "2019-10-15T06:38:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.229400", + "Timestamp": "2024-05-16T10:31:43.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123400", - "Timestamp": "2019-10-15T06:38:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129400", + "Timestamp": "2024-05-16T10:31:43.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063400", - "Timestamp": "2019-10-15T06:38:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.608700", + "Timestamp": "2024-05-16T10:31:43.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063400", - "Timestamp": "2019-10-15T06:38:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.603700", + "Timestamp": "2024-05-16T10:31:43.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063400", - "Timestamp": "2019-10-15T06:38:23.000Z" + "SpotPrice": "0.478700", + "Timestamp": "2024-05-16T10:31:43.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.104400", - "Timestamp": "2019-10-15T06:37:41.000Z" + "SpotPrice": "0.242100", + "Timestamp": "2024-05-16T10:31:43.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.large", "ProductDescription": "Windows", - "SpotPrice": "0.104400", - "Timestamp": "2019-10-15T06:37:41.000Z" + "SpotPrice": "0.110100", + "Timestamp": "2024-05-16T10:31:42.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.104400", - "Timestamp": "2019-10-15T06:37:41.000Z" - }, - { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.525400", - "Timestamp": "2019-10-15T06:36:48.000Z" + "SpotPrice": "2.856300", + "Timestamp": "2024-05-16T10:31:42.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.525400", - "Timestamp": "2019-10-15T06:36:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.451000", + "Timestamp": "2024-05-16T10:31:42.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "z1d.3xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.525400", - "Timestamp": "2019-10-15T06:36:48.000Z" - }, - { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.395400", - "Timestamp": "2019-10-15T06:36:48.000Z" + "SpotPrice": "1.072300", + "Timestamp": "2024-05-16T10:31:40.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.395400", - "Timestamp": "2019-10-15T06:36:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.067300", + "Timestamp": "2024-05-16T10:31:40.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "z1d.3xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.395400", - "Timestamp": "2019-10-15T06:36:48.000Z" + "SpotPrice": "0.942300", + "Timestamp": "2024-05-16T10:31:40.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "z1d.3xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.947400", - "Timestamp": "2019-10-15T06:36:32.000Z" + "SpotPrice": "5.935300", + "Timestamp": "2024-05-16T10:31:40.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "z1d.3xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.947400", - "Timestamp": "2019-10-15T06:36:32.000Z" + "SpotPrice": "0.890100", + "Timestamp": "2024-05-16T10:31:39.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.947400", - "Timestamp": "2019-10-15T06:36:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.981200", + "Timestamp": "2024-05-16T10:31:39.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.074900", - "Timestamp": "2019-10-15T06:18:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.976200", + "Timestamp": "2024-05-16T10:31:39.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.074900", - "Timestamp": "2019-10-15T06:18:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.851200", + "Timestamp": "2024-05-16T10:31:39.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.074900", - "Timestamp": "2019-10-15T06:18:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101100", + "Timestamp": "2024-05-16T10:31:39.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.788900", - "Timestamp": "2019-10-15T06:18:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141100", + "Timestamp": "2024-05-16T10:31:39.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.788900", - "Timestamp": "2019-10-15T06:18:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041100", + "Timestamp": "2024-05-16T10:31:39.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.788900", - "Timestamp": "2019-10-15T06:18:11.000Z" + "SpotPrice": "1.061800", + "Timestamp": "2024-05-16T10:31:39.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.658900", - "Timestamp": "2019-10-15T06:18:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.056800", + "Timestamp": "2024-05-16T10:31:39.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.658900", - "Timestamp": "2019-10-15T06:18:11.000Z" + "SpotPrice": "0.931800", + "Timestamp": "2024-05-16T10:31:39.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.658900", - "Timestamp": "2019-10-15T06:18:11.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.023400", + "Timestamp": "2024-05-16T10:31:38.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.552700", - "Timestamp": "2019-10-15T06:18:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.018400", + "Timestamp": "2024-05-16T10:31:38.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.552700", - "Timestamp": "2019-10-15T06:18:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.893400", + "Timestamp": "2024-05-16T10:31:38.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "g4dn.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.552700", - "Timestamp": "2019-10-15T06:18:10.000Z" + "SpotPrice": "2.996900", + "Timestamp": "2024-05-16T10:31:38.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.422700", - "Timestamp": "2019-10-15T06:18:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.991900", + "Timestamp": "2024-05-16T10:31:38.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "g4dn.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.422700", - "Timestamp": "2019-10-15T06:18:10.000Z" + "SpotPrice": "2.866900", + "Timestamp": "2024-05-16T10:31:38.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "g4dn.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.842200", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.837200", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.422700", - "Timestamp": "2019-10-15T06:18:10.000Z" + "SpotPrice": "2.712200", + "Timestamp": "2024-05-16T10:31:37.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "g4dn.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.158700", - "Timestamp": "2019-10-15T06:18:10.000Z" + "SpotPrice": "3.493200", + "Timestamp": "2024-05-16T10:31:37.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "g4dn.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.158700", - "Timestamp": "2019-10-15T06:18:10.000Z" + "SpotPrice": "2.807900", + "Timestamp": "2024-05-16T10:31:37.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.158700", - "Timestamp": "2019-10-15T06:18:10.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.688600", + "Timestamp": "2024-05-16T10:31:37.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.243800", - "Timestamp": "2019-10-15T06:17:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.658600", + "Timestamp": "2024-05-16T10:31:37.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.243800", - "Timestamp": "2019-10-15T06:17:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.558600", + "Timestamp": "2024-05-16T10:31:37.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128600", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124900", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068600", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.metal", "ProductDescription": "Windows", - "SpotPrice": "0.243800", - "Timestamp": "2019-10-15T06:17:36.000Z" + "SpotPrice": "7.537200", + "Timestamp": "2024-05-16T10:31:36.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.119800", - "Timestamp": "2019-10-15T06:17:36.000Z" + "SpotPrice": "2.017000", + "Timestamp": "2024-05-16T10:31:35.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.119800", - "Timestamp": "2019-10-15T06:17:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.012000", + "Timestamp": "2024-05-16T10:31:35.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.059800", - "Timestamp": "2019-10-15T06:17:36.000Z" + "SpotPrice": "1.887000", + "Timestamp": "2024-05-16T10:31:35.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.059800", - "Timestamp": "2019-10-15T06:17:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.961700", + "Timestamp": "2024-05-16T10:31:35.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.124600", - "Timestamp": "2019-10-15T05:38:11.000Z" + "SpotPrice": "1.851000", + "Timestamp": "2024-05-16T10:31:35.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.large", "ProductDescription": "Windows", - "SpotPrice": "0.124600", - "Timestamp": "2019-10-15T05:38:11.000Z" + "SpotPrice": "0.125800", + "Timestamp": "2024-05-16T10:31:35.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.124600", - "Timestamp": "2019-10-15T05:38:11.000Z" + "SpotPrice": "5.442800", + "Timestamp": "2024-05-16T10:31:35.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "d3.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.111000", - "Timestamp": "2019-10-15T05:37:54.000Z" + "SpotPrice": "0.608800", + "Timestamp": "2024-05-16T10:31:35.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.111000", - "Timestamp": "2019-10-15T05:37:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.603800", + "Timestamp": "2024-05-16T10:31:35.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.478800", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.111000", - "Timestamp": "2019-10-15T05:37:54.000Z" + "SpotPrice": "0.956900", + "Timestamp": "2024-05-16T10:31:34.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.051000", - "Timestamp": "2019-10-15T05:37:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.951900", + "Timestamp": "2024-05-16T10:31:34.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.051000", - "Timestamp": "2019-10-15T05:37:54.000Z" + "SpotPrice": "0.826900", + "Timestamp": "2024-05-16T10:31:34.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.051000", - "Timestamp": "2019-10-15T05:37:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.814100", + "Timestamp": "2024-05-16T10:31:34.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091400", - "Timestamp": "2019-10-15T05:37:50.000Z" + "SpotPrice": "0.339300", + "Timestamp": "2024-05-16T10:31:34.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091400", - "Timestamp": "2019-10-15T05:37:50.000Z" + "SpotPrice": "0.309900", + "Timestamp": "2024-05-16T10:31:34.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091400", - "Timestamp": "2019-10-15T05:37:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334300", + "Timestamp": "2024-05-16T10:31:34.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031400", - "Timestamp": "2019-10-15T05:37:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.304900", + "Timestamp": "2024-05-16T10:31:34.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031400", - "Timestamp": "2019-10-15T05:37:50.000Z" + "SpotPrice": "0.209300", + "Timestamp": "2024-05-16T10:31:34.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031400", - "Timestamp": "2019-10-15T05:37:50.000Z" + "SpotPrice": "0.179900", + "Timestamp": "2024-05-16T10:31:34.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.123400", - "Timestamp": "2019-10-15T05:37:21.000Z" + "SpotPrice": "3.959900", + "Timestamp": "2024-05-16T10:31:34.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123400", - "Timestamp": "2019-10-15T05:37:21.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.749000", + "Timestamp": "2024-05-16T10:31:33.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123400", - "Timestamp": "2019-10-15T05:37:21.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.744000", + "Timestamp": "2024-05-16T10:31:33.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.121900", - "Timestamp": "2019-10-15T05:37:00.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.619000", + "Timestamp": "2024-05-16T10:31:33.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.121900", - "Timestamp": "2019-10-15T05:37:00.000Z" + "SpotPrice": "3.725700", + "Timestamp": "2024-05-16T10:31:33.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.121900", - "Timestamp": "2019-10-15T05:37:00.000Z" - }, - { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089900", - "Timestamp": "2019-10-15T05:36:56.000Z" + "SpotPrice": "6.392100", + "Timestamp": "2024-05-16T10:31:33.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089900", - "Timestamp": "2019-10-15T05:36:56.000Z" + "SpotPrice": "0.983800", + "Timestamp": "2024-05-16T10:31:32.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029900", - "Timestamp": "2019-10-15T05:36:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.978800", + "Timestamp": "2024-05-16T10:31:32.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029900", - "Timestamp": "2019-10-15T05:36:56.000Z" + "SpotPrice": "0.853800", + "Timestamp": "2024-05-16T10:31:32.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "11.557600", - "Timestamp": "2019-10-15T05:36:55.000Z" + "SpotPrice": "1.793200", + "Timestamp": "2024-05-16T10:31:32.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.9xlarge", "ProductDescription": "Windows", - "SpotPrice": "11.557600", - "Timestamp": "2019-10-15T05:36:55.000Z" + "SpotPrice": "1.951600", + "Timestamp": "2024-05-16T10:31:31.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "8.743600", - "Timestamp": "2019-10-15T05:36:55.000Z" + "SpotPrice": "0.393300", + "Timestamp": "2024-05-16T10:31:29.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "8.743600", - "Timestamp": "2019-10-15T05:36:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.388300", + "Timestamp": "2024-05-16T10:31:29.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "8.613600", - "Timestamp": "2019-10-15T05:36:55.000Z" + "SpotPrice": "0.263300", + "Timestamp": "2024-05-16T10:31:29.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "8.613600", - "Timestamp": "2019-10-15T05:36:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360900", + "Timestamp": "2024-05-16T10:31:29.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.074200", - "Timestamp": "2019-10-15T05:18:12.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.355900", + "Timestamp": "2024-05-16T10:31:29.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.074200", - "Timestamp": "2019-10-15T05:18:12.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230900", + "Timestamp": "2024-05-16T10:31:29.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.074200", - "Timestamp": "2019-10-15T05:18:12.000Z" + "SpotPrice": "0.271300", + "Timestamp": "2024-05-16T10:31:29.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.014200", - "Timestamp": "2019-10-15T05:18:12.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.241300", + "Timestamp": "2024-05-16T10:31:29.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.014200", - "Timestamp": "2019-10-15T05:18:12.000Z" + "SpotPrice": "0.141300", + "Timestamp": "2024-05-16T10:31:29.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.014200", - "Timestamp": "2019-10-15T05:18:12.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.622400", + "Timestamp": "2024-05-16T10:31:29.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.032600", - "Timestamp": "2019-10-15T05:18:11.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.617400", + "Timestamp": "2024-05-16T10:31:29.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.032600", - "Timestamp": "2019-10-15T05:18:11.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.492400", + "Timestamp": "2024-05-16T10:31:29.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.032600", - "Timestamp": "2019-10-15T05:18:11.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.010000", + "Timestamp": "2024-05-16T10:31:29.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.422000", - "Timestamp": "2019-10-15T04:37:21.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.005000", + "Timestamp": "2024-05-16T10:31:29.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.168600", - "Timestamp": "2019-10-15T04:37:21.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.880000", + "Timestamp": "2024-05-16T10:31:29.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i2.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.168600", - "Timestamp": "2019-10-15T04:37:21.000Z" + "SpotPrice": "0.914300", + "Timestamp": "2024-05-16T10:31:29.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.362000", - "Timestamp": "2019-10-15T04:37:21.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.884300", + "Timestamp": "2024-05-16T10:31:29.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i2.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.108600", - "Timestamp": "2019-10-15T04:37:21.000Z" + "SpotPrice": "0.784300", + "Timestamp": "2024-05-16T10:31:29.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.677500", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.672500", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.108600", - "Timestamp": "2019-10-15T04:37:21.000Z" + "SpotPrice": "0.547500", + "Timestamp": "2024-05-16T10:31:28.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.638100", - "Timestamp": "2019-10-15T04:37:11.000Z" + "SpotPrice": "1.014900", + "Timestamp": "2024-05-16T10:31:28.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.638100", - "Timestamp": "2019-10-15T04:37:11.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.009900", + "Timestamp": "2024-05-16T10:31:28.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.884900", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m4.10xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.638100", - "Timestamp": "2019-10-15T04:37:11.000Z" + "SpotPrice": "0.701800", + "Timestamp": "2024-05-16T10:31:28.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.508100", - "Timestamp": "2019-10-15T04:37:11.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.671800", + "Timestamp": "2024-05-16T10:31:28.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m4.10xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.508100", - "Timestamp": "2019-10-15T04:37:11.000Z" + "SpotPrice": "0.571800", + "Timestamp": "2024-05-16T10:31:28.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.508100", - "Timestamp": "2019-10-15T04:37:11.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088600", + "Timestamp": "2024-05-16T10:31:28.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.025400", - "Timestamp": "2019-10-15T04:36:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084900", + "Timestamp": "2024-05-16T10:31:28.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.025400", - "Timestamp": "2019-10-15T04:36:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028600", + "Timestamp": "2024-05-16T10:31:28.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.603400", - "Timestamp": "2019-10-15T04:36:53.000Z" + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T10:31:28.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.603400", - "Timestamp": "2019-10-15T04:36:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-16T10:31:28.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.473400", - "Timestamp": "2019-10-15T04:36:53.000Z" + "SpotPrice": "0.042500", + "Timestamp": "2024-05-16T10:31:28.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.341400", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.311400", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r4.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.473400", - "Timestamp": "2019-10-15T04:36:53.000Z" + "SpotPrice": "0.211400", + "Timestamp": "2024-05-16T10:31:28.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.546000", - "Timestamp": "2019-10-15T04:36:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.973100", + "Timestamp": "2024-05-16T10:31:26.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.292600", - "Timestamp": "2019-10-15T04:36:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.968100", + "Timestamp": "2024-05-16T10:31:26.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.292600", - "Timestamp": "2019-10-15T04:36:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.843100", + "Timestamp": "2024-05-16T10:31:26.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.924100", - "Timestamp": "2019-10-15T04:36:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131200", + "Timestamp": "2024-05-16T10:31:26.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.924100", - "Timestamp": "2019-10-15T04:36:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127200", + "Timestamp": "2024-05-16T10:31:26.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.924100", - "Timestamp": "2019-10-15T04:36:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071200", + "Timestamp": "2024-05-16T10:31:26.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094600", - "Timestamp": "2019-10-15T03:38:10.000Z" + "SpotPrice": "2.088500", + "Timestamp": "2024-05-16T10:31:26.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094600", - "Timestamp": "2019-10-15T03:38:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.083500", + "Timestamp": "2024-05-16T10:31:26.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034600", - "Timestamp": "2019-10-15T03:38:10.000Z" + "SpotPrice": "1.958500", + "Timestamp": "2024-05-16T10:31:26.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034600", - "Timestamp": "2019-10-15T03:38:10.000Z" + "SpotPrice": "0.052400", + "Timestamp": "2024-05-16T10:31:26.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126600", - "Timestamp": "2019-10-15T03:37:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.158600", + "Timestamp": "2024-05-16T10:31:26.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126600", - "Timestamp": "2019-10-15T03:37:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.153600", + "Timestamp": "2024-05-16T10:31:26.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126600", - "Timestamp": "2019-10-15T03:37:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.028600", + "Timestamp": "2024-05-16T10:31:26.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.975400", - "Timestamp": "2019-10-15T03:37:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.442600", + "Timestamp": "2024-05-16T10:31:25.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.975400", - "Timestamp": "2019-10-15T03:37:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.437600", + "Timestamp": "2024-05-16T10:31:25.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.975400", - "Timestamp": "2019-10-15T03:37:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.312600", + "Timestamp": "2024-05-16T10:31:25.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r4.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.268200", - "Timestamp": "2019-10-15T03:37:20.000Z" + "SpotPrice": "1.615600", + "Timestamp": "2024-05-16T10:31:24.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r4.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.268200", - "Timestamp": "2019-10-15T03:37:20.000Z" + "SpotPrice": "1.732400", + "Timestamp": "2024-05-16T10:31:24.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.268200", - "Timestamp": "2019-10-15T03:37:20.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.585600", + "Timestamp": "2024-05-16T10:31:24.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.138200", - "Timestamp": "2019-10-15T03:37:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.702400", + "Timestamp": "2024-05-16T10:31:24.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r4.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.138200", - "Timestamp": "2019-10-15T03:37:20.000Z" + "SpotPrice": "1.485600", + "Timestamp": "2024-05-16T10:31:24.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r4.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.138200", - "Timestamp": "2019-10-15T03:37:20.000Z" + "SpotPrice": "1.602400", + "Timestamp": "2024-05-16T10:31:24.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.369400", - "Timestamp": "2019-10-15T03:37:11.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.945400", + "Timestamp": "2024-05-16T10:31:23.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.369400", - "Timestamp": "2019-10-15T03:37:11.000Z" + "SpotPrice": "1.413700", + "Timestamp": "2024-05-16T10:31:23.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.369400", - "Timestamp": "2019-10-15T03:37:11.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.408700", + "Timestamp": "2024-05-16T10:31:23.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.239400", - "Timestamp": "2019-10-15T03:37:11.000Z" + "SpotPrice": "1.283700", + "Timestamp": "2024-05-16T10:31:23.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.239400", - "Timestamp": "2019-10-15T03:37:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.044700", + "Timestamp": "2024-05-16T10:31:22.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.039700", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.239400", - "Timestamp": "2019-10-15T03:37:11.000Z" + "SpotPrice": "0.914700", + "Timestamp": "2024-05-16T10:31:22.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.506200", - "Timestamp": "2019-10-15T03:36:56.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157500", + "Timestamp": "2024-05-16T10:31:21.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.506200", - "Timestamp": "2019-10-15T03:36:56.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153800", + "Timestamp": "2024-05-16T10:31:21.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.506200", - "Timestamp": "2019-10-15T03:36:56.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-16T10:31:21.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.185700", - "Timestamp": "2019-10-15T03:36:53.000Z" + "SpotPrice": "0.089800", + "Timestamp": "2024-05-16T10:31:20.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086100", + "Timestamp": "2024-05-16T10:31:20.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.055700", - "Timestamp": "2019-10-15T03:36:53.000Z" + "SpotPrice": "0.029800", + "Timestamp": "2024-05-16T10:31:20.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.493700", - "Timestamp": "2019-10-15T03:36:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.255400", + "Timestamp": "2024-05-16T10:31:15.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.493700", - "Timestamp": "2019-10-15T03:36:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.225400", + "Timestamp": "2024-05-16T10:31:15.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.493700", - "Timestamp": "2019-10-15T03:36:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T10:31:15.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.255700", - "Timestamp": "2019-10-15T03:36:39.000Z" + "SpotPrice": "0.096500", + "Timestamp": "2024-05-16T10:31:14.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.255700", - "Timestamp": "2019-10-15T03:36:39.000Z" + "SpotPrice": "0.096500", + "Timestamp": "2024-05-16T10:31:14.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.255700", - "Timestamp": "2019-10-15T03:36:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092800", + "Timestamp": "2024-05-16T10:31:14.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092800", + "Timestamp": "2024-05-16T10:31:14.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.125700", - "Timestamp": "2019-10-15T03:36:39.000Z" + "SpotPrice": "0.036500", + "Timestamp": "2024-05-16T10:31:14.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.125700", - "Timestamp": "2019-10-15T03:36:39.000Z" + "SpotPrice": "0.036500", + "Timestamp": "2024-05-16T10:31:14.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.561300", + "Timestamp": "2024-05-16T10:31:11.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.531300", + "Timestamp": "2024-05-16T10:31:11.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.125700", - "Timestamp": "2019-10-15T03:36:39.000Z" + "SpotPrice": "1.431300", + "Timestamp": "2024-05-16T10:31:11.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.400000", - "Timestamp": "2019-10-15T03:32:46.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068300", + "Timestamp": "2024-05-16T10:31:10.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.464900", - "Timestamp": "2019-10-15T02:37:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.064600", + "Timestamp": "2024-05-16T10:31:10.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.464900", - "Timestamp": "2019-10-15T02:37:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008300", + "Timestamp": "2024-05-16T10:31:10.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.464900", - "Timestamp": "2019-10-15T02:37:50.000Z" + "SpotPrice": "5.961400", + "Timestamp": "2024-05-16T10:17:27.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.650900", - "Timestamp": "2019-10-15T02:36:50.000Z" + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T10:17:25.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.650900", - "Timestamp": "2019-10-15T02:36:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101600", + "Timestamp": "2024-05-16T10:17:25.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.650900", - "Timestamp": "2019-10-15T02:36:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045600", + "Timestamp": "2024-05-16T10:17:25.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.520900", - "Timestamp": "2019-10-15T02:36:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.447400", + "Timestamp": "2024-05-16T10:17:25.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.520900", - "Timestamp": "2019-10-15T02:36:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.578900", + "Timestamp": "2024-05-16T10:17:21.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.548900", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.520900", - "Timestamp": "2019-10-15T02:36:50.000Z" + "SpotPrice": "0.448900", + "Timestamp": "2024-05-16T10:17:21.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.049900", - "Timestamp": "2019-10-15T02:36:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.998500", + "Timestamp": "2024-05-16T10:17:20.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.049900", - "Timestamp": "2019-10-15T02:36:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.993500", + "Timestamp": "2024-05-16T10:17:20.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.049900", - "Timestamp": "2019-10-15T02:36:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.868500", + "Timestamp": "2024-05-16T10:17:20.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "im4gn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.235900", - "Timestamp": "2019-10-15T02:36:35.000Z" + "SpotPrice": "0.993500", + "Timestamp": "2024-05-16T10:17:19.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.235900", - "Timestamp": "2019-10-15T02:36:35.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.988500", + "Timestamp": "2024-05-16T10:17:19.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.863500", + "Timestamp": "2024-05-16T10:17:19.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.235900", - "Timestamp": "2019-10-15T02:36:35.000Z" + "SpotPrice": "1.285300", + "Timestamp": "2024-05-16T10:17:14.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.105900", - "Timestamp": "2019-10-15T02:36:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.280300", + "Timestamp": "2024-05-16T10:17:14.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.105900", - "Timestamp": "2019-10-15T02:36:35.000Z" + "SpotPrice": "1.155300", + "Timestamp": "2024-05-16T10:17:14.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.105900", - "Timestamp": "2019-10-15T02:36:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.391600", + "Timestamp": "2024-05-16T10:17:10.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "a1.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.959500", - "Timestamp": "2019-10-15T02:25:12.000Z" + "SpotPrice": "0.234600", + "Timestamp": "2024-05-16T10:17:10.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "a1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.229600", + "Timestamp": "2024-05-16T10:17:10.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T10:17:10.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.959500", - "Timestamp": "2019-10-15T02:25:12.000Z" + "SpotPrice": "0.428500", + "Timestamp": "2024-05-16T10:17:09.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.959500", - "Timestamp": "2019-10-15T02:25:12.000Z" + "SpotPrice": "0.397000", + "Timestamp": "2024-05-16T10:17:09.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.829500", - "Timestamp": "2019-10-15T02:25:12.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.423500", + "Timestamp": "2024-05-16T10:17:09.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.829500", - "Timestamp": "2019-10-15T02:25:12.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.392000", + "Timestamp": "2024-05-16T10:17:09.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.829500", - "Timestamp": "2019-10-15T02:25:12.000Z" + "SpotPrice": "0.298500", + "Timestamp": "2024-05-16T10:17:09.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.037500", - "Timestamp": "2019-10-15T02:24:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.267000", + "Timestamp": "2024-05-16T10:17:09.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.037500", - "Timestamp": "2019-10-15T02:24:09.000Z" + "SpotPrice": "0.485600", + "Timestamp": "2024-05-16T10:17:07.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.metal", "ProductDescription": "Windows", - "SpotPrice": "3.037500", - "Timestamp": "2019-10-15T02:24:09.000Z" + "SpotPrice": "7.090500", + "Timestamp": "2024-05-16T10:17:06.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.846000", - "Timestamp": "2019-10-15T01:39:11.000Z" + "SpotPrice": "0.400000", + "Timestamp": "2024-05-16T10:17:06.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.395000", + "Timestamp": "2024-05-16T10:17:06.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.716000", - "Timestamp": "2019-10-15T01:39:11.000Z" + "SpotPrice": "0.270000", + "Timestamp": "2024-05-16T10:17:06.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "d2.xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.999700", - "Timestamp": "2019-10-15T01:38:28.000Z" + "SpotPrice": "0.320500", + "Timestamp": "2024-05-16T10:17:04.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.large", "ProductDescription": "Windows", - "SpotPrice": "3.999700", - "Timestamp": "2019-10-15T01:38:28.000Z" + "SpotPrice": "0.145000", + "Timestamp": "2024-05-16T10:17:04.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.999700", - "Timestamp": "2019-10-15T01:38:28.000Z" + "SpotPrice": "0.238300", + "Timestamp": "2024-05-16T10:17:04.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.250000", - "Timestamp": "2019-10-15T01:38:22.000Z" + "SpotPrice": "5.234900", + "Timestamp": "2024-05-16T10:17:02.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.250000", - "Timestamp": "2019-10-15T01:38:22.000Z" + "SpotPrice": "0.836700", + "Timestamp": "2024-05-16T10:16:59.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.metal", "ProductDescription": "Windows", - "SpotPrice": "0.250000", - "Timestamp": "2019-10-15T01:38:22.000Z" + "SpotPrice": "7.087000", + "Timestamp": "2024-05-16T10:16:58.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.185700", - "Timestamp": "2019-10-15T01:38:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.409400", + "Timestamp": "2024-05-16T10:16:57.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.185700", - "Timestamp": "2019-10-15T01:38:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226000", + "Timestamp": "2024-05-16T10:16:57.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.185700", - "Timestamp": "2019-10-15T01:38:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.537700", + "Timestamp": "2024-05-16T10:16:56.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.055700", - "Timestamp": "2019-10-15T01:38:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.341400", + "Timestamp": "2024-05-16T10:16:56.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.055700", - "Timestamp": "2019-10-15T01:38:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.336400", + "Timestamp": "2024-05-16T10:16:56.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.055700", - "Timestamp": "2019-10-15T01:38:09.000Z" + "SpotPrice": "1.211400", + "Timestamp": "2024-05-16T10:16:56.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T01:38:03.000Z" + "SpotPrice": "0.251800", + "Timestamp": "2024-05-16T10:16:56.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T01:38:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.246800", + "Timestamp": "2024-05-16T10:16:56.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T01:38:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121800", + "Timestamp": "2024-05-16T10:16:56.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066000", - "Timestamp": "2019-10-15T01:38:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107900", + "Timestamp": "2024-05-16T10:16:55.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066000", - "Timestamp": "2019-10-15T01:38:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.227500", + "Timestamp": "2024-05-16T10:16:55.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066000", - "Timestamp": "2019-10-15T01:38:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.228400", + "Timestamp": "2024-05-16T10:16:55.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.381300", - "Timestamp": "2019-10-15T01:37:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.906700", + "Timestamp": "2024-05-16T10:16:53.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.381300", - "Timestamp": "2019-10-15T01:37:28.000Z" + "SpotPrice": "2.641300", + "Timestamp": "2024-05-16T10:16:51.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.381300", - "Timestamp": "2019-10-15T01:37:28.000Z" + "SpotPrice": "2.698600", + "Timestamp": "2024-05-16T10:16:51.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.251300", - "Timestamp": "2019-10-15T01:37:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.636300", + "Timestamp": "2024-05-16T10:16:51.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.251300", - "Timestamp": "2019-10-15T01:37:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.693600", + "Timestamp": "2024-05-16T10:16:51.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.251300", - "Timestamp": "2019-10-15T01:37:28.000Z" + "SpotPrice": "2.511300", + "Timestamp": "2024-05-16T10:16:51.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.987300", - "Timestamp": "2019-10-15T01:37:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.568600", + "Timestamp": "2024-05-16T10:16:51.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.987300", - "Timestamp": "2019-10-15T01:37:25.000Z" + "SpotPrice": "3.625200", + "Timestamp": "2024-05-16T10:16:51.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.987300", - "Timestamp": "2019-10-15T01:37:25.000Z" + "SpotPrice": "2.768400", + "Timestamp": "2024-05-16T10:16:49.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.844800", - "Timestamp": "2019-10-15T01:37:11.000Z" - }, - { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.714800", - "Timestamp": "2019-10-15T01:37:11.000Z" + "SpotPrice": "0.300300", + "Timestamp": "2024-05-16T10:16:48.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.660000", - "Timestamp": "2019-10-15T01:37:11.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.295300", + "Timestamp": "2024-05-16T10:16:48.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.658800", - "Timestamp": "2019-10-15T01:37:11.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170300", + "Timestamp": "2024-05-16T10:16:48.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.506200", - "Timestamp": "2019-10-15T01:28:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T10:16:47.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-15T01:22:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103600", + "Timestamp": "2024-05-16T10:16:47.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-15T01:22:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047300", + "Timestamp": "2024-05-16T10:16:47.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "is4gen.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-15T01:22:01.000Z" + "SpotPrice": "0.147400", + "Timestamp": "2024-05-16T10:16:47.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033000", - "Timestamp": "2019-10-15T01:22:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143700", + "Timestamp": "2024-05-16T10:16:47.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "is4gen.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033000", - "Timestamp": "2019-10-15T01:22:01.000Z" + "SpotPrice": "0.087400", + "Timestamp": "2024-05-16T10:16:47.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033000", - "Timestamp": "2019-10-15T01:22:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.996200", + "Timestamp": "2024-05-16T10:16:46.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "m5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125000", - "Timestamp": "2019-10-15T01:21:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.484000", + "Timestamp": "2024-05-16T10:16:46.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "m5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125000", - "Timestamp": "2019-10-15T01:21:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.479000", + "Timestamp": "2024-05-16T10:16:46.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "m5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125000", - "Timestamp": "2019-10-15T01:21:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.354000", + "Timestamp": "2024-05-16T10:16:46.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090000", - "Timestamp": "2019-10-15T00:45:53.000Z" + "SpotPrice": "3.162500", + "Timestamp": "2024-05-16T10:16:46.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030000", - "Timestamp": "2019-10-15T00:45:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.157500", + "Timestamp": "2024-05-16T10:16:46.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.188700", - "Timestamp": "2019-10-15T00:23:41.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.032500", + "Timestamp": "2024-05-16T10:16:46.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.188700", - "Timestamp": "2019-10-15T00:23:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.885100", + "Timestamp": "2024-05-16T10:16:45.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.188700", - "Timestamp": "2019-10-15T00:23:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.880100", + "Timestamp": "2024-05-16T10:16:45.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.256700", - "Timestamp": "2019-10-15T00:23:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.755100", + "Timestamp": "2024-05-16T10:16:45.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.256700", - "Timestamp": "2019-10-15T00:23:08.000Z" + "SpotPrice": "1.657400", + "Timestamp": "2024-05-16T10:16:45.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.256700", - "Timestamp": "2019-10-15T00:23:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.652400", + "Timestamp": "2024-05-16T10:16:45.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.126700", - "Timestamp": "2019-10-15T00:23:08.000Z" + "SpotPrice": "1.527400", + "Timestamp": "2024-05-16T10:16:45.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.126700", - "Timestamp": "2019-10-15T00:23:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.393900", + "Timestamp": "2024-05-16T10:16:45.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.126700", - "Timestamp": "2019-10-15T00:23:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.880200", + "Timestamp": "2024-05-16T10:16:45.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.261100", - "Timestamp": "2019-10-15T00:22:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.241400", + "Timestamp": "2024-05-16T10:16:44.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.261100", - "Timestamp": "2019-10-15T00:22:59.000Z" + "SpotPrice": "1.106600", + "Timestamp": "2024-05-16T10:16:44.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.131100", - "Timestamp": "2019-10-15T00:22:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.076600", + "Timestamp": "2024-05-16T10:16:44.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.131100", - "Timestamp": "2019-10-15T00:22:59.000Z" + "SpotPrice": "0.976600", + "Timestamp": "2024-05-16T10:16:44.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.443100", - "Timestamp": "2019-10-15T00:22:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.336600", + "Timestamp": "2024-05-16T10:16:44.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.443100", - "Timestamp": "2019-10-15T00:22:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.331600", + "Timestamp": "2024-05-16T10:16:44.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.443100", - "Timestamp": "2019-10-15T00:22:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.206600", + "Timestamp": "2024-05-16T10:16:44.000Z" }, { - "AvailabilityZone": "eu-west-2b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.999300", - "Timestamp": "2019-10-14T20:24:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.528100", + "Timestamp": "2024-05-16T10:16:43.000Z" }, { - "AvailabilityZone": "eu-west-2a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.999300", - "Timestamp": "2019-10-14T20:24:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.523100", + "Timestamp": "2024-05-16T10:16:43.000Z" }, { - "AvailabilityZone": "eu-west-2c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.999300", - "Timestamp": "2019-10-14T20:24:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.398100", + "Timestamp": "2024-05-16T10:16:43.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.100200", - "Timestamp": "2019-10-16T02:54:15.000Z" + "SpotPrice": "0.526800", + "Timestamp": "2024-05-16T10:16:43.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.040200", - "Timestamp": "2019-10-16T02:54:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.521800", + "Timestamp": "2024-05-16T10:16:43.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.466000", - "Timestamp": "2019-10-16T02:53:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.396800", + "Timestamp": "2024-05-16T10:16:43.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "8.666200", - "Timestamp": "2019-10-16T02:37:36.000Z" + "SpotPrice": "0.503600", + "Timestamp": "2024-05-16T10:16:43.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.868500", - "Timestamp": "2019-10-16T02:37:24.000Z" - }, - { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.738500", - "Timestamp": "2019-10-16T02:37:24.000Z" + "SpotPrice": "0.190400", + "Timestamp": "2024-05-16T10:16:43.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.109700", - "Timestamp": "2019-10-16T02:37:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.186400", + "Timestamp": "2024-05-16T10:16:43.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.590900", - "Timestamp": "2019-10-16T02:21:32.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130400", + "Timestamp": "2024-05-16T10:16:43.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.140000", - "Timestamp": "2019-10-16T02:12:22.000Z" - }, - { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.080000", - "Timestamp": "2019-10-16T02:12:22.000Z" + "SpotPrice": "0.948100", + "Timestamp": "2024-05-16T10:16:42.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.354400", - "Timestamp": "2019-10-16T02:04:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.943100", + "Timestamp": "2024-05-16T10:16:42.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.224400", - "Timestamp": "2019-10-16T02:04:32.000Z" + "SpotPrice": "0.818100", + "Timestamp": "2024-05-16T10:16:42.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.450400", - "Timestamp": "2019-10-16T02:03:58.000Z" - }, - { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.320400", - "Timestamp": "2019-10-16T02:03:58.000Z" + "SpotPrice": "2.259000", + "Timestamp": "2024-05-16T10:16:42.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.870400", - "Timestamp": "2019-10-16T02:02:47.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.254000", + "Timestamp": "2024-05-16T10:16:42.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.870400", - "Timestamp": "2019-10-16T02:02:47.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.129000", + "Timestamp": "2024-05-16T10:16:42.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "im4gn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.584400", - "Timestamp": "2019-10-16T02:02:22.000Z" + "SpotPrice": "0.095700", + "Timestamp": "2024-05-16T10:16:42.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.584400", - "Timestamp": "2019-10-16T02:02:22.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092000", + "Timestamp": "2024-05-16T10:16:42.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "im4gn.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.454400", - "Timestamp": "2019-10-16T02:02:22.000Z" + "SpotPrice": "0.035700", + "Timestamp": "2024-05-16T10:16:42.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.454400", - "Timestamp": "2019-10-16T02:02:22.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.650600", + "Timestamp": "2024-05-16T10:16:41.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.142600", - "Timestamp": "2019-10-16T01:56:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.645600", + "Timestamp": "2024-05-16T10:16:41.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.082600", - "Timestamp": "2019-10-16T01:56:27.000Z" + "SpotPrice": "0.520600", + "Timestamp": "2024-05-16T10:16:41.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.463700", - "Timestamp": "2019-10-16T01:55:56.000Z" + "SpotPrice": "4.242100", + "Timestamp": "2024-05-16T10:16:41.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.217700", - "Timestamp": "2019-10-16T01:47:32.000Z" + "SpotPrice": "1.525300", + "Timestamp": "2024-05-16T10:16:40.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.157700", - "Timestamp": "2019-10-16T01:47:32.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.520300", + "Timestamp": "2024-05-16T10:16:40.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.009700", - "Timestamp": "2019-10-16T01:39:16.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.395300", + "Timestamp": "2024-05-16T10:16:40.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.083300", - "Timestamp": "2019-10-16T01:39:12.000Z" + "SpotPrice": "1.750200", + "Timestamp": "2024-05-16T10:16:40.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.059600", - "Timestamp": "2019-10-16T01:31:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.201500", + "Timestamp": "2024-05-16T10:16:39.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.247200", - "Timestamp": "2019-10-16T01:31:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.196500", + "Timestamp": "2024-05-16T10:16:39.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.187200", - "Timestamp": "2019-10-16T01:31:04.000Z" + "SpotPrice": "1.071500", + "Timestamp": "2024-05-16T10:16:39.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.069900", - "Timestamp": "2019-10-16T01:23:08.000Z" + "SpotPrice": "0.714300", + "Timestamp": "2024-05-16T10:16:39.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.709300", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.009900", - "Timestamp": "2019-10-16T01:23:08.000Z" + "SpotPrice": "0.584300", + "Timestamp": "2024-05-16T10:16:39.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.237900", - "Timestamp": "2019-10-16T01:13:59.000Z" + "SpotPrice": "0.478600", + "Timestamp": "2024-05-16T10:16:38.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.425100", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.100800", - "Timestamp": "2019-10-16T01:13:43.000Z" + "SpotPrice": "0.765900", + "Timestamp": "2024-05-16T10:16:37.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.760900", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.040800", - "Timestamp": "2019-10-16T01:13:43.000Z" + "SpotPrice": "0.635900", + "Timestamp": "2024-05-16T10:16:37.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.255300", - "Timestamp": "2019-10-16T01:06:19.000Z" + "SpotPrice": "0.145400", + "Timestamp": "2024-05-16T10:16:37.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.125300", - "Timestamp": "2019-10-16T01:06:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141700", + "Timestamp": "2024-05-16T10:16:37.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091800", - "Timestamp": "2019-10-16T01:02:17.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085400", + "Timestamp": "2024-05-16T10:16:37.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091800", - "Timestamp": "2019-10-16T01:02:17.000Z" + "SpotPrice": "0.126700", + "Timestamp": "2024-05-16T10:16:37.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031800", - "Timestamp": "2019-10-16T01:02:17.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123000", + "Timestamp": "2024-05-16T10:16:37.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031800", - "Timestamp": "2019-10-16T01:02:17.000Z" + "SpotPrice": "0.066700", + "Timestamp": "2024-05-16T10:16:37.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.005300", - "Timestamp": "2019-10-16T01:02:06.000Z" + "SpotPrice": "6.088100", + "Timestamp": "2024-05-16T10:16:37.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.005300", - "Timestamp": "2019-10-16T01:02:06.000Z" + "SpotPrice": "6.061100", + "Timestamp": "2024-05-16T10:16:37.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.663300", - "Timestamp": "2019-10-16T01:02:05.000Z" + "SpotPrice": "3.349600", + "Timestamp": "2024-05-16T10:16:36.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.663300", - "Timestamp": "2019-10-16T01:02:05.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.344600", + "Timestamp": "2024-05-16T10:16:36.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.533300", - "Timestamp": "2019-10-16T01:02:05.000Z" + "SpotPrice": "3.219600", + "Timestamp": "2024-05-16T10:16:36.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.533300", - "Timestamp": "2019-10-16T01:02:05.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087700", + "Timestamp": "2024-05-16T10:16:36.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123600", - "Timestamp": "2019-10-16T01:02:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084000", + "Timestamp": "2024-05-16T10:16:36.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123600", - "Timestamp": "2019-10-16T01:02:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027700", + "Timestamp": "2024-05-16T10:16:36.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123600", - "Timestamp": "2019-10-16T01:02:03.000Z" + "SpotPrice": "2.160700", + "Timestamp": "2024-05-16T10:16:36.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-16T01:02:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.130700", + "Timestamp": "2024-05-16T10:16:36.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-16T01:02:03.000Z" + "SpotPrice": "2.030700", + "Timestamp": "2024-05-16T10:16:36.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-16T01:02:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.073800", + "Timestamp": "2024-05-16T10:16:35.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123800", - "Timestamp": "2019-10-16T01:02:00.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.667900", + "Timestamp": "2024-05-16T10:16:35.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123800", - "Timestamp": "2019-10-16T01:02:00.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.662900", + "Timestamp": "2024-05-16T10:16:35.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247600", - "Timestamp": "2019-10-16T01:01:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.537900", + "Timestamp": "2024-05-16T10:16:35.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.247600", - "Timestamp": "2019-10-16T01:01:38.000Z" + "SpotPrice": "0.235700", + "Timestamp": "2024-05-16T10:16:35.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.247600", - "Timestamp": "2019-10-16T01:01:38.000Z" + "SpotPrice": "6.986000", + "Timestamp": "2024-05-16T10:16:35.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.477300", - "Timestamp": "2019-10-16T00:57:00.000Z" + "SpotPrice": "3.577900", + "Timestamp": "2024-05-16T10:16:35.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.460600", - "Timestamp": "2019-10-16T00:48:56.000Z" - }, - { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.330600", - "Timestamp": "2019-10-16T00:48:56.000Z" + "SpotPrice": "0.640800", + "Timestamp": "2024-05-16T10:16:34.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.141600", - "Timestamp": "2019-10-16T00:32:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.635800", + "Timestamp": "2024-05-16T10:16:34.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.081600", - "Timestamp": "2019-10-16T00:32:25.000Z" + "SpotPrice": "0.510800", + "Timestamp": "2024-05-16T10:16:34.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.869100", - "Timestamp": "2019-10-16T00:23:54.000Z" + "SpotPrice": "0.960200", + "Timestamp": "2024-05-16T10:16:34.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.739100", - "Timestamp": "2019-10-16T00:23:54.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.955200", + "Timestamp": "2024-05-16T10:16:34.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.254500", - "Timestamp": "2019-10-16T00:16:05.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.830200", + "Timestamp": "2024-05-16T10:16:34.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.124500", - "Timestamp": "2019-10-16T00:16:05.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224200", + "Timestamp": "2024-05-16T10:16:33.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.metal", "ProductDescription": "Windows", - "SpotPrice": "0.247600", - "Timestamp": "2019-10-16T00:02:30.000Z" + "SpotPrice": "5.394800", + "Timestamp": "2024-05-16T10:16:33.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.247600", - "Timestamp": "2019-10-16T00:02:30.000Z" + "SpotPrice": "5.571700", + "Timestamp": "2024-05-16T10:16:33.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063200", - "Timestamp": "2019-10-16T00:02:15.000Z" + "SpotPrice": "0.765100", + "Timestamp": "2024-05-16T10:16:33.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063200", - "Timestamp": "2019-10-16T00:02:15.000Z" + "SpotPrice": "0.823100", + "Timestamp": "2024-05-16T10:16:33.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3a.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063200", - "Timestamp": "2019-10-16T00:02:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.760100", + "Timestamp": "2024-05-16T10:16:33.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003200", - "Timestamp": "2019-10-16T00:02:15.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.818100", + "Timestamp": "2024-05-16T10:16:33.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003200", - "Timestamp": "2019-10-16T00:02:15.000Z" + "SpotPrice": "0.635100", + "Timestamp": "2024-05-16T10:16:33.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003200", - "Timestamp": "2019-10-16T00:02:15.000Z" + "SpotPrice": "0.693100", + "Timestamp": "2024-05-16T10:16:33.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123600", - "Timestamp": "2019-10-16T00:01:39.000Z" + "SpotPrice": "0.167600", + "Timestamp": "2024-05-16T10:16:32.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123600", - "Timestamp": "2019-10-16T00:01:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.207600", + "Timestamp": "2024-05-16T10:16:32.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-16T00:01:39.000Z" + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T10:16:32.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-16T00:01:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.117900", + "Timestamp": "2024-05-16T10:16:32.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012400", - "Timestamp": "2019-10-16T00:01:21.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.503700", + "Timestamp": "2024-05-16T10:16:32.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012400", - "Timestamp": "2019-10-16T00:01:21.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473700", + "Timestamp": "2024-05-16T10:16:32.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012400", - "Timestamp": "2019-10-16T00:01:21.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.373700", + "Timestamp": "2024-05-16T10:16:32.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.10xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092200", - "Timestamp": "2019-10-15T23:58:54.000Z" + "SpotPrice": "0.851600", + "Timestamp": "2024-05-16T10:16:32.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032200", - "Timestamp": "2019-10-15T23:58:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.821600", + "Timestamp": "2024-05-16T10:16:32.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.100900", - "Timestamp": "2019-10-15T23:58:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.721600", + "Timestamp": "2024-05-16T10:16:32.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.237200", - "Timestamp": "2019-10-15T23:50:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324500", + "Timestamp": "2024-05-16T10:16:32.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.959800", - "Timestamp": "2019-10-15T23:44:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319500", + "Timestamp": "2024-05-16T10:16:32.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.959800", - "Timestamp": "2019-10-15T23:44:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194500", + "Timestamp": "2024-05-16T10:16:32.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.959800", - "Timestamp": "2019-10-15T23:44:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.506900", + "Timestamp": "2024-05-16T10:16:32.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.065100", - "Timestamp": "2019-10-15T23:42:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.501900", + "Timestamp": "2024-05-16T10:16:32.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.005100", - "Timestamp": "2019-10-15T23:42:52.000Z" + "SpotPrice": "1.376900", + "Timestamp": "2024-05-16T10:16:32.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.055900", - "Timestamp": "2019-10-15T23:42:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261200", + "Timestamp": "2024-05-16T10:16:32.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094200", - "Timestamp": "2019-10-15T23:34:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.256200", + "Timestamp": "2024-05-16T10:16:32.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034200", - "Timestamp": "2019-10-15T23:34:11.000Z" + "SpotPrice": "0.131200", + "Timestamp": "2024-05-16T10:16:32.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.242700", - "Timestamp": "2019-10-15T23:25:59.000Z" + "SpotPrice": "0.140000", + "Timestamp": "2024-05-16T10:16:31.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136300", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.112700", - "Timestamp": "2019-10-15T23:25:59.000Z" + "SpotPrice": "0.080000", + "Timestamp": "2024-05-16T10:16:31.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.398100", - "Timestamp": "2019-10-15T23:08:38.000Z" + "SpotPrice": "0.140900", + "Timestamp": "2024-05-16T10:16:31.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.268100", - "Timestamp": "2019-10-15T23:08:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137200", + "Timestamp": "2024-05-16T10:16:31.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125300", - "Timestamp": "2019-10-15T23:03:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080900", + "Timestamp": "2024-05-16T10:16:31.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.125300", - "Timestamp": "2019-10-15T23:03:59.000Z" + "SpotPrice": "7.695400", + "Timestamp": "2024-05-16T10:16:31.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.122300", - "Timestamp": "2019-10-15T23:03:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.389700", + "Timestamp": "2024-05-16T10:16:31.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.122300", - "Timestamp": "2019-10-15T23:03:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.384700", + "Timestamp": "2024-05-16T10:16:31.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.122300", - "Timestamp": "2019-10-15T23:03:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.259700", + "Timestamp": "2024-05-16T10:16:31.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090300", - "Timestamp": "2019-10-15T23:03:48.000Z" + "SpotPrice": "0.649300", + "Timestamp": "2024-05-16T10:16:31.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090300", - "Timestamp": "2019-10-15T23:03:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.644300", + "Timestamp": "2024-05-16T10:16:31.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090300", - "Timestamp": "2019-10-15T23:03:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.519300", + "Timestamp": "2024-05-16T10:16:31.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030300", - "Timestamp": "2019-10-15T23:03:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.425700", + "Timestamp": "2024-05-16T10:16:30.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030300", - "Timestamp": "2019-10-15T23:03:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.655500", + "Timestamp": "2024-05-16T10:16:30.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.650500", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030300", - "Timestamp": "2019-10-15T23:03:48.000Z" + "SpotPrice": "0.525500", + "Timestamp": "2024-05-16T10:16:30.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.metal-48xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.384500", - "Timestamp": "2019-10-15T23:02:53.000Z" + "SpotPrice": "3.102800", + "Timestamp": "2024-05-16T10:16:30.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.384500", - "Timestamp": "2019-10-15T23:02:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.097800", + "Timestamp": "2024-05-16T10:16:30.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.254500", - "Timestamp": "2019-10-15T23:02:53.000Z" + "SpotPrice": "2.972800", + "Timestamp": "2024-05-16T10:16:30.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.254500", - "Timestamp": "2019-10-15T23:02:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130000", + "Timestamp": "2024-05-16T10:16:30.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.990500", - "Timestamp": "2019-10-15T23:02:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T10:16:30.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.990500", - "Timestamp": "2019-10-15T23:02:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070000", + "Timestamp": "2024-05-16T10:16:30.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.980000", - "Timestamp": "2019-10-15T23:02:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097400", + "Timestamp": "2024-05-16T10:16:29.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.742000", - "Timestamp": "2019-10-15T23:02:31.000Z" + "SpotPrice": "0.096200", + "Timestamp": "2024-05-16T10:16:29.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.612000", - "Timestamp": "2019-10-15T23:02:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137400", + "Timestamp": "2024-05-16T10:16:29.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.244600", - "Timestamp": "2019-10-15T23:02:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136200", + "Timestamp": "2024-05-16T10:16:29.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.244600", - "Timestamp": "2019-10-15T23:02:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037400", + "Timestamp": "2024-05-16T10:16:29.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.244600", - "Timestamp": "2019-10-15T23:02:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036200", + "Timestamp": "2024-05-16T10:16:29.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120600", - "Timestamp": "2019-10-15T23:02:12.000Z" + "SpotPrice": "2.423700", + "Timestamp": "2024-05-16T10:16:29.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120600", - "Timestamp": "2019-10-15T23:02:12.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.418700", + "Timestamp": "2024-05-16T10:16:29.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060600", - "Timestamp": "2019-10-15T23:02:12.000Z" + "SpotPrice": "2.293700", + "Timestamp": "2024-05-16T10:16:29.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060600", - "Timestamp": "2019-10-15T23:02:12.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.647600", + "Timestamp": "2024-05-16T10:16:28.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.009700", - "Timestamp": "2019-10-15T23:00:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.642600", + "Timestamp": "2024-05-16T10:16:28.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.517600", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.008600", - "Timestamp": "2019-10-15T23:00:47.000Z" + "SpotPrice": "2.383600", + "Timestamp": "2024-05-16T10:16:28.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.878600", - "Timestamp": "2019-10-15T23:00:47.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.378600", + "Timestamp": "2024-05-16T10:16:28.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.019500", - "Timestamp": "2019-10-15T23:00:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.253600", + "Timestamp": "2024-05-16T10:16:28.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.258000", - "Timestamp": "2019-10-15T23:00:38.000Z" + "SpotPrice": "0.115600", + "Timestamp": "2024-05-16T10:16:27.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111900", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.128000", - "Timestamp": "2019-10-15T23:00:38.000Z" + "SpotPrice": "0.055600", + "Timestamp": "2024-05-16T10:16:27.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.121200", - "Timestamp": "2019-10-15T23:00:10.000Z" + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T10:16:27.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.061200", - "Timestamp": "2019-10-15T23:00:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T10:16:27.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3.small", - "ProductDescription": "Windows", - "SpotPrice": "0.039100", - "Timestamp": "2019-10-15T22:51:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046600", + "Timestamp": "2024-05-16T10:16:27.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.metal", "ProductDescription": "Windows", - "SpotPrice": "0.009800", - "Timestamp": "2019-10-15T22:43:48.000Z" + "SpotPrice": "5.092300", + "Timestamp": "2024-05-16T10:16:26.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094100", - "Timestamp": "2019-10-15T22:35:05.000Z" + "SpotPrice": "1.199000", + "Timestamp": "2024-05-16T10:16:26.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034100", - "Timestamp": "2019-10-15T22:35:05.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.194000", + "Timestamp": "2024-05-16T10:16:26.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.376600", - "Timestamp": "2019-10-15T22:34:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.069000", + "Timestamp": "2024-05-16T10:16:26.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.007900", - "Timestamp": "2019-10-15T22:28:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.667900", + "Timestamp": "2024-05-16T10:16:24.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.007900", - "Timestamp": "2019-10-15T22:28:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.662900", + "Timestamp": "2024-05-16T10:16:24.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.007900", - "Timestamp": "2019-10-15T22:28:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.537900", + "Timestamp": "2024-05-16T10:16:24.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.929900", - "Timestamp": "2019-10-15T22:28:34.000Z" + "SpotPrice": "3.555000", + "Timestamp": "2024-05-16T10:16:24.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.929900", - "Timestamp": "2019-10-15T22:28:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.550000", + "Timestamp": "2024-05-16T10:16:24.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.929900", - "Timestamp": "2019-10-15T22:28:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.425000", + "Timestamp": "2024-05-16T10:16:24.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.799900", - "Timestamp": "2019-10-15T22:28:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.481200", + "Timestamp": "2024-05-16T10:16:24.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.799900", - "Timestamp": "2019-10-15T22:28:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.451200", + "Timestamp": "2024-05-16T10:16:24.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.799900", - "Timestamp": "2019-10-15T22:28:34.000Z" + "SpotPrice": "1.351200", + "Timestamp": "2024-05-16T10:16:24.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3a.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.085500", - "Timestamp": "2019-10-15T22:28:32.000Z" + "SpotPrice": "0.129700", + "Timestamp": "2024-05-16T10:16:23.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.085500", - "Timestamp": "2019-10-15T22:28:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126000", + "Timestamp": "2024-05-16T10:16:23.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.085500", - "Timestamp": "2019-10-15T22:28:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069700", + "Timestamp": "2024-05-16T10:16:23.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.025500", - "Timestamp": "2019-10-15T22:28:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.579400", + "Timestamp": "2024-05-16T10:16:23.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.025500", - "Timestamp": "2019-10-15T22:28:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.574400", + "Timestamp": "2024-05-16T10:16:23.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3a.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.025500", - "Timestamp": "2019-10-15T22:28:32.000Z" + "SpotPrice": "0.449400", + "Timestamp": "2024-05-16T10:16:23.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.220800", - "Timestamp": "2019-10-15T22:28:31.000Z" + "SpotPrice": "0.901300", + "Timestamp": "2024-05-16T10:16:20.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.220800", - "Timestamp": "2019-10-15T22:28:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.871300", + "Timestamp": "2024-05-16T10:16:20.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.771300", + "Timestamp": "2024-05-16T10:16:20.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.220800", - "Timestamp": "2019-10-15T22:28:31.000Z" + "SpotPrice": "0.992600", + "Timestamp": "2024-05-16T10:16:18.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.090800", - "Timestamp": "2019-10-15T22:28:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.962600", + "Timestamp": "2024-05-16T10:16:18.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r3.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.090800", - "Timestamp": "2019-10-15T22:28:31.000Z" + "SpotPrice": "0.858600", + "Timestamp": "2024-05-16T10:16:18.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.758900", + "Timestamp": "2024-05-16T10:16:18.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.753900", + "Timestamp": "2024-05-16T10:16:18.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.090800", - "Timestamp": "2019-10-15T22:28:31.000Z" + "SpotPrice": "0.628900", + "Timestamp": "2024-05-16T10:16:18.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.402800", - "Timestamp": "2019-10-15T22:28:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120100", + "Timestamp": "2024-05-16T10:16:17.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.402800", - "Timestamp": "2019-10-15T22:28:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-16T10:16:17.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.402800", - "Timestamp": "2019-10-15T22:28:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060100", + "Timestamp": "2024-05-16T10:16:17.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.053100", - "Timestamp": "2019-10-15T22:28:00.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.337200", + "Timestamp": "2024-05-16T10:16:17.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.053100", - "Timestamp": "2019-10-15T22:28:00.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.332200", + "Timestamp": "2024-05-16T10:16:17.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.053100", - "Timestamp": "2019-10-15T22:28:00.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.207200", + "Timestamp": "2024-05-16T10:16:17.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.893600", - "Timestamp": "2019-10-15T22:27:48.000Z" + "SpotPrice": "0.491000", + "Timestamp": "2024-05-16T10:16:14.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.893600", - "Timestamp": "2019-10-15T22:27:48.000Z" + "SpotPrice": "0.502000", + "Timestamp": "2024-05-16T10:16:14.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.893600", - "Timestamp": "2019-10-15T22:27:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.486000", + "Timestamp": "2024-05-16T10:16:14.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.763600", - "Timestamp": "2019-10-15T22:27:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.497000", + "Timestamp": "2024-05-16T10:16:14.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.763600", - "Timestamp": "2019-10-15T22:27:48.000Z" + "SpotPrice": "0.361000", + "Timestamp": "2024-05-16T10:16:14.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.763600", - "Timestamp": "2019-10-15T22:27:48.000Z" + "SpotPrice": "0.372000", + "Timestamp": "2024-05-16T10:16:14.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.971600", - "Timestamp": "2019-10-15T22:27:48.000Z" + "SpotPrice": "3.000800", + "Timestamp": "2024-05-16T10:16:14.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.971600", - "Timestamp": "2019-10-15T22:27:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.897900", + "Timestamp": "2024-05-16T10:16:13.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.892900", + "Timestamp": "2024-05-16T10:16:13.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.767900", + "Timestamp": "2024-05-16T10:16:13.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.971600", - "Timestamp": "2019-10-15T22:27:48.000Z" + "SpotPrice": "6.028500", + "Timestamp": "2024-05-16T10:16:11.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.268400", - "Timestamp": "2019-10-15T22:27:28.000Z" + "SpotPrice": "2.082800", + "Timestamp": "2024-05-16T10:16:10.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.077800", + "Timestamp": "2024-05-16T10:16:10.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.208400", - "Timestamp": "2019-10-15T22:27:28.000Z" + "SpotPrice": "1.952800", + "Timestamp": "2024-05-16T10:16:10.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.070200", - "Timestamp": "2019-10-15T22:27:23.000Z" + "SpotPrice": "1.052600", + "Timestamp": "2024-05-16T10:16:09.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.047600", + "Timestamp": "2024-05-16T10:16:09.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.010200", - "Timestamp": "2019-10-15T22:27:23.000Z" + "SpotPrice": "0.922600", + "Timestamp": "2024-05-16T10:16:09.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.metal", "ProductDescription": "Windows", - "SpotPrice": "0.238800", - "Timestamp": "2019-10-15T22:26:58.000Z" + "SpotPrice": "8.196300", + "Timestamp": "2024-05-16T10:16:08.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.metal", "ProductDescription": "Windows", - "SpotPrice": "0.109300", - "Timestamp": "2019-10-15T22:26:50.000Z" + "SpotPrice": "8.293500", + "Timestamp": "2024-05-16T10:16:08.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3.small", - "ProductDescription": "Windows", - "SpotPrice": "0.039000", - "Timestamp": "2019-10-15T22:18:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278800", + "Timestamp": "2024-05-16T10:16:08.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273800", + "Timestamp": "2024-05-16T10:16:08.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148800", + "Timestamp": "2024-05-16T10:16:08.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.019500", - "Timestamp": "2019-10-15T22:18:16.000Z" + "SpotPrice": "1.790200", + "Timestamp": "2024-05-16T10:02:37.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.080600", - "Timestamp": "2019-10-15T22:10:54.000Z" + "SpotPrice": "3.176300", + "Timestamp": "2024-05-16T10:02:36.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.171300", + "Timestamp": "2024-05-16T10:02:36.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.020600", - "Timestamp": "2019-10-15T22:10:54.000Z" + "SpotPrice": "3.046300", + "Timestamp": "2024-05-16T10:02:36.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.411000", - "Timestamp": "2019-10-15T22:10:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.538000", + "Timestamp": "2024-05-16T10:02:36.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.201400", - "Timestamp": "2019-10-15T22:08:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.508000", + "Timestamp": "2024-05-16T10:02:36.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.201400", - "Timestamp": "2019-10-15T22:08:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.408000", + "Timestamp": "2024-05-16T10:02:36.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.201400", - "Timestamp": "2019-10-15T22:08:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.327100", + "Timestamp": "2024-05-16T10:02:35.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.870400", - "Timestamp": "2019-10-15T22:03:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.322100", + "Timestamp": "2024-05-16T10:02:35.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.870400", - "Timestamp": "2019-10-15T22:03:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.197100", + "Timestamp": "2024-05-16T10:02:35.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.870400", - "Timestamp": "2019-10-15T22:03:14.000Z" + "SpotPrice": "0.248900", + "Timestamp": "2024-05-16T10:02:35.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.584400", - "Timestamp": "2019-10-15T22:02:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.566100", + "Timestamp": "2024-05-16T10:02:35.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.584400", - "Timestamp": "2019-10-15T22:02:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.388000", + "Timestamp": "2024-05-16T10:02:35.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.584400", - "Timestamp": "2019-10-15T22:02:14.000Z" + "SpotPrice": "0.582300", + "Timestamp": "2024-05-16T10:02:34.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.454400", - "Timestamp": "2019-10-15T22:02:14.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.577300", + "Timestamp": "2024-05-16T10:02:34.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.454400", - "Timestamp": "2019-10-15T22:02:14.000Z" + "SpotPrice": "0.452300", + "Timestamp": "2024-05-16T10:02:34.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.454400", - "Timestamp": "2019-10-15T22:02:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.551300", + "Timestamp": "2024-05-16T10:02:34.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.145800", - "Timestamp": "2019-10-15T22:01:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.546300", + "Timestamp": "2024-05-16T10:02:34.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.145800", - "Timestamp": "2019-10-15T22:01:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.421300", + "Timestamp": "2024-05-16T10:02:34.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.145800", - "Timestamp": "2019-10-15T22:01:50.000Z" + "SpotPrice": "3.382400", + "Timestamp": "2024-05-16T10:02:34.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.015800", - "Timestamp": "2019-10-15T22:01:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.377400", + "Timestamp": "2024-05-16T10:02:34.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.015800", - "Timestamp": "2019-10-15T22:01:50.000Z" + "SpotPrice": "3.252400", + "Timestamp": "2024-05-16T10:02:34.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.015800", - "Timestamp": "2019-10-15T22:01:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.703000", + "Timestamp": "2024-05-16T10:02:33.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.637900", - "Timestamp": "2019-10-15T22:01:46.000Z" + "SpotPrice": "0.095200", + "Timestamp": "2024-05-16T10:02:33.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.637900", - "Timestamp": "2019-10-15T22:01:46.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091500", + "Timestamp": "2024-05-16T10:02:33.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035200", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.340500", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf1.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.637900", - "Timestamp": "2019-10-15T22:01:46.000Z" + "SpotPrice": "0.147200", + "Timestamp": "2024-05-16T10:02:33.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.507900", - "Timestamp": "2019-10-15T22:01:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143200", + "Timestamp": "2024-05-16T10:02:33.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf1.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.507900", - "Timestamp": "2019-10-15T22:01:46.000Z" + "SpotPrice": "0.087200", + "Timestamp": "2024-05-16T10:02:33.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.507900", - "Timestamp": "2019-10-15T22:01:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.472000", + "Timestamp": "2024-05-16T10:02:33.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.979900", - "Timestamp": "2019-10-15T22:01:44.000Z" + "SpotPrice": "1.639600", + "Timestamp": "2024-05-16T10:02:32.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i-flex.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.979900", - "Timestamp": "2019-10-15T22:01:44.000Z" + "SpotPrice": "0.859400", + "Timestamp": "2024-05-16T10:02:31.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "gr6.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.979900", - "Timestamp": "2019-10-15T22:01:44.000Z" + "SpotPrice": "0.931600", + "Timestamp": "2024-05-16T10:02:30.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.456400", - "Timestamp": "2019-10-15T21:54:11.000Z" + "SpotPrice": "1.157800", + "Timestamp": "2024-05-16T10:02:29.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.326400", - "Timestamp": "2019-10-15T21:54:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.152800", + "Timestamp": "2024-05-16T10:02:29.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3.small", - "ProductDescription": "Windows", - "SpotPrice": "0.039100", - "Timestamp": "2019-10-15T21:53:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.027800", + "Timestamp": "2024-05-16T10:02:29.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.657100", - "Timestamp": "2019-10-15T21:53:46.000Z" + "SpotPrice": "1.203400", + "Timestamp": "2024-05-16T10:02:29.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.657100", - "Timestamp": "2019-10-15T21:53:46.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.198400", + "Timestamp": "2024-05-16T10:02:29.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.073400", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.657100", - "Timestamp": "2019-10-15T21:53:46.000Z" + "SpotPrice": "0.778800", + "Timestamp": "2024-05-16T10:02:28.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.527100", - "Timestamp": "2019-10-15T21:53:46.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.773800", + "Timestamp": "2024-05-16T10:02:28.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.527100", - "Timestamp": "2019-10-15T21:53:46.000Z" + "SpotPrice": "0.648800", + "Timestamp": "2024-05-16T10:02:28.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.527100", - "Timestamp": "2019-10-15T21:53:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.140400", + "Timestamp": "2024-05-16T10:02:28.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.943100", - "Timestamp": "2019-10-15T21:53:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.135400", + "Timestamp": "2024-05-16T10:02:28.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.943100", - "Timestamp": "2019-10-15T21:53:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.010400", + "Timestamp": "2024-05-16T10:02:28.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.943100", - "Timestamp": "2019-10-15T21:53:46.000Z" + "SpotPrice": "2.787600", + "Timestamp": "2024-05-16T10:02:27.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.510500", - "Timestamp": "2019-10-15T21:53:46.000Z" + "SpotPrice": "1.618700", + "Timestamp": "2024-05-16T10:02:27.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.613700", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.380500", - "Timestamp": "2019-10-15T21:53:46.000Z" + "SpotPrice": "1.488700", + "Timestamp": "2024-05-16T10:02:27.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.402800", - "Timestamp": "2019-10-15T21:53:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.245400", + "Timestamp": "2024-05-16T10:02:26.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.402800", - "Timestamp": "2019-10-15T21:53:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.215400", + "Timestamp": "2024-05-16T10:02:26.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.402800", - "Timestamp": "2019-10-15T21:53:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.115400", + "Timestamp": "2024-05-16T10:02:26.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.598800", - "Timestamp": "2019-10-15T21:53:16.000Z" + "SpotPrice": "1.239100", + "Timestamp": "2024-05-16T10:02:23.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.598800", - "Timestamp": "2019-10-15T21:53:16.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.234100", + "Timestamp": "2024-05-16T10:02:23.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.468800", - "Timestamp": "2019-10-15T21:53:16.000Z" + "SpotPrice": "1.109100", + "Timestamp": "2024-05-16T10:02:23.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.468800", - "Timestamp": "2019-10-15T21:53:16.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.260900", + "Timestamp": "2024-05-16T10:02:22.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.412800", - "Timestamp": "2019-10-15T21:53:16.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.230900", + "Timestamp": "2024-05-16T10:02:22.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.412800", - "Timestamp": "2019-10-15T21:53:16.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.130900", + "Timestamp": "2024-05-16T10:02:22.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094300", - "Timestamp": "2019-10-15T21:53:15.000Z" + "SpotPrice": "0.297400", + "Timestamp": "2024-05-16T10:02:21.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293700", + "Timestamp": "2024-05-16T10:02:21.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034300", - "Timestamp": "2019-10-15T21:53:15.000Z" + "SpotPrice": "0.237400", + "Timestamp": "2024-05-16T10:02:21.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.220800", - "Timestamp": "2019-10-15T21:53:09.000Z" + "SpotPrice": "0.523500", + "Timestamp": "2024-05-16T10:02:21.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.090800", - "Timestamp": "2019-10-15T21:53:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.518500", + "Timestamp": "2024-05-16T10:02:21.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5ad.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091800", - "Timestamp": "2019-10-15T21:53:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.393500", + "Timestamp": "2024-05-16T10:02:21.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.18xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091800", - "Timestamp": "2019-10-15T21:53:01.000Z" + "SpotPrice": "1.199400", + "Timestamp": "2024-05-16T10:02:20.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5ad.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031800", - "Timestamp": "2019-10-15T21:53:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.169400", + "Timestamp": "2024-05-16T10:02:20.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.18xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031800", - "Timestamp": "2019-10-15T21:53:01.000Z" + "SpotPrice": "1.069400", + "Timestamp": "2024-05-16T10:02:20.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123800", - "Timestamp": "2019-10-15T21:53:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.799800", + "Timestamp": "2024-05-16T10:02:20.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123800", - "Timestamp": "2019-10-15T21:53:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.794800", + "Timestamp": "2024-05-16T10:02:20.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.250700", - "Timestamp": "2019-10-15T21:52:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.669800", + "Timestamp": "2024-05-16T10:02:20.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.250700", - "Timestamp": "2019-10-15T21:52:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.377700", + "Timestamp": "2024-05-16T10:02:17.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.250700", - "Timestamp": "2019-10-15T21:52:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372700", + "Timestamp": "2024-05-16T10:02:17.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126700", - "Timestamp": "2019-10-15T21:52:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.247700", + "Timestamp": "2024-05-16T10:02:17.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126700", - "Timestamp": "2019-10-15T21:52:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.767400", + "Timestamp": "2024-05-16T10:02:17.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126700", - "Timestamp": "2019-10-15T21:52:49.000Z" - }, - { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-15T21:52:49.000Z" + "SpotPrice": "0.711400", + "Timestamp": "2024-05-16T10:02:15.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-15T21:52:49.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.706400", + "Timestamp": "2024-05-16T10:02:15.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-15T21:52:49.000Z" + "SpotPrice": "0.581400", + "Timestamp": "2024-05-16T10:02:15.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123600", - "Timestamp": "2019-10-15T21:49:02.000Z" + "SpotPrice": "0.693100", + "Timestamp": "2024-05-16T10:02:15.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123600", - "Timestamp": "2019-10-15T21:49:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.688100", + "Timestamp": "2024-05-16T10:02:15.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-15T21:49:02.000Z" + "SpotPrice": "0.563100", + "Timestamp": "2024-05-16T10:02:15.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-15T21:49:02.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.458200", + "Timestamp": "2024-05-16T10:02:14.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.109600", - "Timestamp": "2019-10-15T21:45:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.441700", + "Timestamp": "2024-05-16T10:02:14.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.481700", - "Timestamp": "2019-10-15T21:45:12.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g3s.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.454200", + "Timestamp": "2024-05-16T10:02:14.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.065200", - "Timestamp": "2019-10-15T21:45:11.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.437700", + "Timestamp": "2024-05-16T10:02:14.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g3s.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.005200", - "Timestamp": "2019-10-15T21:45:11.000Z" - }, - { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.799500", - "Timestamp": "2019-10-15T21:45:09.000Z" + "SpotPrice": "0.398200", + "Timestamp": "2024-05-16T10:02:14.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g3s.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.669500", - "Timestamp": "2019-10-15T21:45:09.000Z" + "SpotPrice": "0.381700", + "Timestamp": "2024-05-16T10:02:14.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.877300", - "Timestamp": "2019-10-15T21:45:03.000Z" + "SpotPrice": "1.257400", + "Timestamp": "2024-05-16T10:02:14.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.252400", + "Timestamp": "2024-05-16T10:02:14.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.747300", - "Timestamp": "2019-10-15T21:45:03.000Z" + "SpotPrice": "1.127400", + "Timestamp": "2024-05-16T10:02:14.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1e.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.239900", - "Timestamp": "2019-10-15T21:36:42.000Z" + "SpotPrice": "2.821900", + "Timestamp": "2024-05-16T10:02:13.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.109900", - "Timestamp": "2019-10-15T21:36:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.791900", + "Timestamp": "2024-05-16T10:02:13.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.943100", - "Timestamp": "2019-10-15T21:35:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.691900", + "Timestamp": "2024-05-16T10:02:13.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.943100", - "Timestamp": "2019-10-15T21:35:42.000Z" + "SpotPrice": "4.972300", + "Timestamp": "2024-05-16T10:02:12.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.657100", - "Timestamp": "2019-10-15T21:35:42.000Z" + "SpotPrice": "1.287200", + "Timestamp": "2024-05-16T10:02:12.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.657100", - "Timestamp": "2019-10-15T21:35:42.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.282200", + "Timestamp": "2024-05-16T10:02:12.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.527100", - "Timestamp": "2019-10-15T21:35:42.000Z" + "SpotPrice": "1.157200", + "Timestamp": "2024-05-16T10:02:12.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.527100", - "Timestamp": "2019-10-15T21:35:42.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.800900", + "Timestamp": "2024-05-16T10:02:11.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5ad.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093300", - "Timestamp": "2019-10-15T21:34:21.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.110100", + "Timestamp": "2024-05-16T10:02:08.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.213000", - "Timestamp": "2019-10-15T21:34:21.000Z" + "SpotPrice": "2.061600", + "Timestamp": "2024-05-16T10:02:07.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5ad.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033300", - "Timestamp": "2019-10-15T21:34:21.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.056600", + "Timestamp": "2024-05-16T10:02:07.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.153000", - "Timestamp": "2019-10-15T21:34:21.000Z" + "SpotPrice": "1.931600", + "Timestamp": "2024-05-16T10:02:07.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.125300", - "Timestamp": "2019-10-15T21:34:21.000Z" + "SpotPrice": "3.414700", + "Timestamp": "2024-05-16T10:02:07.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.245000", - "Timestamp": "2019-10-15T21:34:21.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.575100", + "Timestamp": "2024-05-16T10:02:07.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.080400", - "Timestamp": "2019-10-15T21:28:52.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.570100", + "Timestamp": "2024-05-16T10:02:07.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.020400", - "Timestamp": "2019-10-15T21:28:52.000Z" + "SpotPrice": "1.445100", + "Timestamp": "2024-05-16T10:02:07.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.794600", - "Timestamp": "2019-10-15T21:28:47.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.256300", + "Timestamp": "2024-05-16T10:02:06.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.981000", - "Timestamp": "2019-10-15T21:24:21.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.251300", + "Timestamp": "2024-05-16T10:02:06.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.981000", - "Timestamp": "2019-10-15T21:24:21.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T10:02:06.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.981000", - "Timestamp": "2019-10-15T21:24:21.000Z" + "SpotPrice": "2.523800", + "Timestamp": "2024-05-16T10:02:06.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.639000", - "Timestamp": "2019-10-15T21:24:09.000Z" + "SpotPrice": "1.449300", + "Timestamp": "2024-05-16T10:02:05.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.639000", - "Timestamp": "2019-10-15T21:24:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.444300", + "Timestamp": "2024-05-16T10:02:05.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.639000", - "Timestamp": "2019-10-15T21:24:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.319300", + "Timestamp": "2024-05-16T10:02:05.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.509000", - "Timestamp": "2019-10-15T21:24:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.214200", + "Timestamp": "2024-05-16T10:02:04.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.509000", - "Timestamp": "2019-10-15T21:24:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.210200", + "Timestamp": "2024-05-16T10:02:04.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.509000", - "Timestamp": "2019-10-15T21:24:09.000Z" + "SpotPrice": "0.154200", + "Timestamp": "2024-05-16T10:02:04.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.650900", - "Timestamp": "2019-10-15T21:24:01.000Z" + "SpotPrice": "1.086200", + "Timestamp": "2024-05-16T10:02:02.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.650900", - "Timestamp": "2019-10-15T21:24:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.081200", + "Timestamp": "2024-05-16T10:02:02.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.650900", - "Timestamp": "2019-10-15T21:24:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.956200", + "Timestamp": "2024-05-16T10:02:02.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.520900", - "Timestamp": "2019-10-15T21:24:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.479600", + "Timestamp": "2024-05-16T10:02:02.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.520900", - "Timestamp": "2019-10-15T21:24:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091900", + "Timestamp": "2024-05-16T10:02:00.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.520900", - "Timestamp": "2019-10-15T21:24:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088200", + "Timestamp": "2024-05-16T10:02:00.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.501300", - "Timestamp": "2019-10-15T21:23:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031900", + "Timestamp": "2024-05-16T10:02:00.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.501300", - "Timestamp": "2019-10-15T21:23:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.811100", + "Timestamp": "2024-05-16T10:01:59.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.501300", - "Timestamp": "2019-10-15T21:23:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.806100", + "Timestamp": "2024-05-16T10:01:59.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.263300", - "Timestamp": "2019-10-15T21:23:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.681100", + "Timestamp": "2024-05-16T10:01:59.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.263300", - "Timestamp": "2019-10-15T21:23:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.190500", + "Timestamp": "2024-05-16T10:01:57.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.263300", - "Timestamp": "2019-10-15T21:23:23.000Z" + "SpotPrice": "1.209400", + "Timestamp": "2024-05-16T10:01:56.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.133300", - "Timestamp": "2019-10-15T21:23:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.204400", + "Timestamp": "2024-05-16T10:01:56.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.133300", - "Timestamp": "2019-10-15T21:23:23.000Z" + "SpotPrice": "1.079400", + "Timestamp": "2024-05-16T10:01:56.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.133300", - "Timestamp": "2019-10-15T21:23:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.439900", + "Timestamp": "2024-05-16T10:01:56.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.464900", - "Timestamp": "2019-10-15T21:23:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.434900", + "Timestamp": "2024-05-16T10:01:56.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.464900", - "Timestamp": "2019-10-15T21:23:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.309900", + "Timestamp": "2024-05-16T10:01:56.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.464900", - "Timestamp": "2019-10-15T21:23:01.000Z" + "SpotPrice": "2.853000", + "Timestamp": "2024-05-16T10:01:56.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.196600", - "Timestamp": "2019-10-15T21:22:12.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.438300", + "Timestamp": "2024-05-16T10:01:53.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.196600", - "Timestamp": "2019-10-15T21:22:12.000Z" + "SpotPrice": "2.820800", + "Timestamp": "2024-05-16T10:01:53.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.066600", - "Timestamp": "2019-10-15T21:22:12.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.815800", + "Timestamp": "2024-05-16T10:01:53.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.066600", - "Timestamp": "2019-10-15T21:22:12.000Z" + "SpotPrice": "2.690800", + "Timestamp": "2024-05-16T10:01:53.000Z" }, { - "AvailabilityZone": "eu-west-3c", + "AvailabilityZone": "us-east-2b", "InstanceType": "r5ad.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.596900", - "Timestamp": "2019-10-15T21:20:14.000Z" - }, - { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.196600", - "Timestamp": "2019-10-15T21:18:22.000Z" - }, - { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.196600", - "Timestamp": "2019-10-15T21:18:22.000Z" + "SpotPrice": "0.446200", + "Timestamp": "2024-05-16T10:01:52.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "p3.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.196600", - "Timestamp": "2019-10-15T21:18:22.000Z" - }, - { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.066600", - "Timestamp": "2019-10-15T21:18:22.000Z" + "SpotPrice": "4.655500", + "Timestamp": "2024-05-16T10:01:52.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.066600", - "Timestamp": "2019-10-15T21:18:22.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.625500", + "Timestamp": "2024-05-16T10:01:52.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "p3.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.066600", - "Timestamp": "2019-10-15T21:18:22.000Z" + "SpotPrice": "4.525500", + "Timestamp": "2024-05-16T10:01:52.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.372400", - "Timestamp": "2019-10-15T21:13:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.586800", + "Timestamp": "2024-05-16T10:01:51.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "d2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.372400", - "Timestamp": "2019-10-15T21:13:20.000Z" + "SpotPrice": "0.264800", + "Timestamp": "2024-05-16T10:01:50.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.372400", - "Timestamp": "2019-10-15T21:13:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.304800", + "Timestamp": "2024-05-16T10:01:50.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "d2.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.242400", - "Timestamp": "2019-10-15T21:13:20.000Z" + "SpotPrice": "0.204800", + "Timestamp": "2024-05-16T10:01:50.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.242400", - "Timestamp": "2019-10-15T21:13:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.499100", + "Timestamp": "2024-05-16T10:01:50.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.242400", - "Timestamp": "2019-10-15T21:13:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.280500", + "Timestamp": "2024-05-16T10:01:49.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.978400", - "Timestamp": "2019-10-15T21:13:20.000Z" + "SpotPrice": "0.575400", + "Timestamp": "2024-05-16T10:01:48.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.978400", - "Timestamp": "2019-10-15T21:13:20.000Z" + "SpotPrice": "2.792100", + "Timestamp": "2024-05-16T10:01:48.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i2.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.978400", - "Timestamp": "2019-10-15T21:13:20.000Z" + "SpotPrice": "0.999700", + "Timestamp": "2024-05-16T10:01:48.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.415600", - "Timestamp": "2019-10-15T21:13:13.000Z" + "SpotPrice": "8.165700", + "Timestamp": "2024-05-16T10:01:46.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.415600", - "Timestamp": "2019-10-15T21:13:13.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.595300", + "Timestamp": "2024-05-16T10:01:46.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.415600", - "Timestamp": "2019-10-15T21:13:13.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.590300", + "Timestamp": "2024-05-16T10:01:46.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.989900", - "Timestamp": "2019-10-15T21:13:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.465300", + "Timestamp": "2024-05-16T10:01:46.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.989900", - "Timestamp": "2019-10-15T21:13:03.000Z" + "SpotPrice": "0.897900", + "Timestamp": "2024-05-16T10:01:46.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.metal", "ProductDescription": "Windows", - "SpotPrice": "0.989900", - "Timestamp": "2019-10-15T21:13:03.000Z" + "SpotPrice": "10.947400", + "Timestamp": "2024-05-16T10:01:44.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.383900", - "Timestamp": "2019-10-15T21:13:00.000Z" + "SpotPrice": "0.880900", + "Timestamp": "2024-05-16T10:01:44.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.383900", - "Timestamp": "2019-10-15T21:13:00.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.875900", + "Timestamp": "2024-05-16T10:01:44.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.383900", - "Timestamp": "2019-10-15T21:13:00.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.750900", + "Timestamp": "2024-05-16T10:01:44.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.253900", - "Timestamp": "2019-10-15T21:13:00.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.247000", + "Timestamp": "2024-05-16T10:01:44.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.253900", - "Timestamp": "2019-10-15T21:13:00.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.259900", + "Timestamp": "2024-05-16T10:01:44.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.253900", - "Timestamp": "2019-10-15T21:13:00.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.926800", + "Timestamp": "2024-05-16T10:01:43.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.929900", - "Timestamp": "2019-10-15T21:12:58.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.002500", + "Timestamp": "2024-05-16T10:01:43.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.929900", - "Timestamp": "2019-10-15T21:12:58.000Z" + "SpotPrice": "0.725000", + "Timestamp": "2024-05-16T10:01:43.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.799900", - "Timestamp": "2019-10-15T21:12:58.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.720000", + "Timestamp": "2024-05-16T10:01:43.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.799900", - "Timestamp": "2019-10-15T21:12:58.000Z" + "SpotPrice": "0.595000", + "Timestamp": "2024-05-16T10:01:43.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.124600", - "Timestamp": "2019-10-15T21:12:58.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.434800", + "Timestamp": "2024-05-16T10:01:43.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.124600", - "Timestamp": "2019-10-15T21:12:58.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.429800", + "Timestamp": "2024-05-16T10:01:43.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.124600", - "Timestamp": "2019-10-15T21:12:58.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.304800", + "Timestamp": "2024-05-16T10:01:43.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.007900", - "Timestamp": "2019-10-15T21:12:57.000Z" + "SpotPrice": "5.101100", + "Timestamp": "2024-05-16T10:01:43.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.metal", "ProductDescription": "Windows", - "SpotPrice": "3.007900", - "Timestamp": "2019-10-15T21:12:57.000Z" + "SpotPrice": "5.970400", + "Timestamp": "2024-05-16T10:01:43.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.017100", - "Timestamp": "2019-10-15T21:12:53.000Z" + "SpotPrice": "0.450300", + "Timestamp": "2024-05-16T10:01:42.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.017100", - "Timestamp": "2019-10-15T21:12:53.000Z" + "SpotPrice": "0.463600", + "Timestamp": "2024-05-16T10:01:42.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t2.small", - "ProductDescription": "Windows", - "SpotPrice": "0.017100", - "Timestamp": "2019-10-15T21:12:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.463000", + "Timestamp": "2024-05-16T10:01:41.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.291600", - "Timestamp": "2019-10-15T21:12:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.458000", + "Timestamp": "2024-05-16T10:01:41.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.291600", - "Timestamp": "2019-10-15T21:12:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.333000", + "Timestamp": "2024-05-16T10:01:41.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.291600", - "Timestamp": "2019-10-15T21:12:49.000Z" + "SpotPrice": "0.296800", + "Timestamp": "2024-05-16T10:01:41.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.231600", - "Timestamp": "2019-10-15T21:12:49.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.291800", + "Timestamp": "2024-05-16T10:01:41.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.231600", - "Timestamp": "2019-10-15T21:12:49.000Z" + "SpotPrice": "0.166800", + "Timestamp": "2024-05-16T10:01:41.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.231600", - "Timestamp": "2019-10-15T21:12:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.940500", + "Timestamp": "2024-05-16T10:01:41.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.893600", - "Timestamp": "2019-10-15T21:12:48.000Z" + "SpotPrice": "0.325200", + "Timestamp": "2024-05-16T10:01:41.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.893600", - "Timestamp": "2019-10-15T21:12:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.295200", + "Timestamp": "2024-05-16T10:01:41.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.763600", - "Timestamp": "2019-10-15T21:12:48.000Z" + "SpotPrice": "0.195200", + "Timestamp": "2024-05-16T10:01:41.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.241900", + "Timestamp": "2024-05-16T10:01:41.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.236900", + "Timestamp": "2024-05-16T10:01:41.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.763600", - "Timestamp": "2019-10-15T21:12:48.000Z" + "SpotPrice": "1.111900", + "Timestamp": "2024-05-16T10:01:41.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.971600", - "Timestamp": "2019-10-15T21:12:47.000Z" + "SpotPrice": "0.978700", + "Timestamp": "2024-05-16T10:01:41.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.971600", - "Timestamp": "2019-10-15T21:12:47.000Z" + "SpotPrice": "0.910600", + "Timestamp": "2024-05-16T10:01:40.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.111000", - "Timestamp": "2019-10-15T21:12:47.000Z" + "SpotPrice": "0.601300", + "Timestamp": "2024-05-16T10:01:40.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.111000", - "Timestamp": "2019-10-15T21:12:47.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.571300", + "Timestamp": "2024-05-16T10:01:40.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.471300", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.111000", - "Timestamp": "2019-10-15T21:12:47.000Z" + "SpotPrice": "0.448500", + "Timestamp": "2024-05-16T10:01:40.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.051000", - "Timestamp": "2019-10-15T21:12:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.443500", + "Timestamp": "2024-05-16T10:01:40.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.051000", - "Timestamp": "2019-10-15T21:12:47.000Z" + "SpotPrice": "0.318500", + "Timestamp": "2024-05-16T10:01:40.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.051000", - "Timestamp": "2019-10-15T21:12:47.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.651900", + "Timestamp": "2024-05-16T10:01:39.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247600", - "Timestamp": "2019-10-15T21:12:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.646900", + "Timestamp": "2024-05-16T10:01:39.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247600", - "Timestamp": "2019-10-15T21:12:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.521900", + "Timestamp": "2024-05-16T10:01:39.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.448000", - "Timestamp": "2019-10-15T21:12:45.000Z" + "SpotPrice": "0.887700", + "Timestamp": "2024-05-16T10:01:39.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123600", - "Timestamp": "2019-10-15T21:12:45.000Z" + "SpotPrice": "0.300800", + "Timestamp": "2024-05-16T10:01:39.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123600", - "Timestamp": "2019-10-15T21:12:45.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270800", + "Timestamp": "2024-05-16T10:01:39.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170800", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.324000", - "Timestamp": "2019-10-15T21:12:45.000Z" + "SpotPrice": "0.810100", + "Timestamp": "2024-05-16T10:01:39.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-15T21:12:45.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.805100", + "Timestamp": "2024-05-16T10:01:39.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-15T21:12:45.000Z" + "SpotPrice": "0.680100", + "Timestamp": "2024-05-16T10:01:39.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.264000", - "Timestamp": "2019-10-15T21:12:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.758500", + "Timestamp": "2024-05-16T10:01:39.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t2.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067900", - "Timestamp": "2019-10-15T21:12:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.951600", + "Timestamp": "2024-05-16T10:01:38.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t2.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067900", - "Timestamp": "2019-10-15T21:12:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.433700", + "Timestamp": "2024-05-16T10:01:38.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.848300", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "a1.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067900", - "Timestamp": "2019-10-15T21:12:23.000Z" + "SpotPrice": "0.224600", + "Timestamp": "2024-05-16T10:01:37.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-2a", + "InstanceType": "a1.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.219600", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "a1.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007900", - "Timestamp": "2019-10-15T21:12:23.000Z" + "SpotPrice": "0.094600", + "Timestamp": "2024-05-16T10:01:37.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.965100", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.960100", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007900", - "Timestamp": "2019-10-15T21:12:23.000Z" + "SpotPrice": "1.835100", + "Timestamp": "2024-05-16T10:01:37.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066400", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037400", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3.small", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007900", - "Timestamp": "2019-10-15T21:12:23.000Z" + "SpotPrice": "0.006400", + "Timestamp": "2024-05-16T10:01:37.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.495300", - "Timestamp": "2019-10-15T21:12:22.000Z" + "SpotPrice": "0.459400", + "Timestamp": "2024-05-16T10:01:37.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.495300", - "Timestamp": "2019-10-15T21:12:22.000Z" + "SpotPrice": "0.454200", + "Timestamp": "2024-05-16T10:01:37.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.495300", - "Timestamp": "2019-10-15T21:12:22.000Z" + "SpotPrice": "0.421100", + "Timestamp": "2024-05-16T10:01:36.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.893600", - "Timestamp": "2019-10-15T21:12:19.000Z" + "SpotPrice": "1.699500", + "Timestamp": "2024-05-16T10:01:35.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.893600", - "Timestamp": "2019-10-15T21:12:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.694500", + "Timestamp": "2024-05-16T10:01:35.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.763600", - "Timestamp": "2019-10-15T21:12:19.000Z" + "SpotPrice": "1.569500", + "Timestamp": "2024-05-16T10:01:35.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.763600", - "Timestamp": "2019-10-15T21:12:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.154600", + "Timestamp": "2024-05-16T10:01:34.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.971600", - "Timestamp": "2019-10-15T21:12:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.149600", + "Timestamp": "2024-05-16T10:01:34.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.971600", - "Timestamp": "2019-10-15T21:12:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.024600", + "Timestamp": "2024-05-16T10:01:34.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.224900", - "Timestamp": "2019-10-15T21:12:04.000Z" + "SpotPrice": "3.697700", + "Timestamp": "2024-05-16T10:01:34.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.164900", - "Timestamp": "2019-10-15T21:12:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.692700", + "Timestamp": "2024-05-16T10:01:34.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.031200", - "Timestamp": "2019-10-15T21:11:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.567700", + "Timestamp": "2024-05-16T10:01:34.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.031200", - "Timestamp": "2019-10-15T21:11:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.421900", + "Timestamp": "2024-05-16T10:01:34.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.031200", - "Timestamp": "2019-10-15T21:11:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.416900", + "Timestamp": "2024-05-16T10:01:34.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.482600", - "Timestamp": "2019-10-15T21:11:21.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.291900", + "Timestamp": "2024-05-16T10:01:34.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.482600", - "Timestamp": "2019-10-15T21:11:21.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T10:01:32.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.482600", - "Timestamp": "2019-10-15T21:11:21.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101900", + "Timestamp": "2024-05-16T10:01:32.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.257300", - "Timestamp": "2019-10-15T21:11:18.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045900", + "Timestamp": "2024-05-16T10:01:32.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.257300", - "Timestamp": "2019-10-15T21:11:18.000Z" + "SpotPrice": "0.134900", + "Timestamp": "2024-05-16T10:01:30.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.257300", - "Timestamp": "2019-10-15T21:11:18.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131200", + "Timestamp": "2024-05-16T10:01:30.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.127300", - "Timestamp": "2019-10-15T21:11:18.000Z" + "SpotPrice": "0.074900", + "Timestamp": "2024-05-16T10:01:30.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.127300", - "Timestamp": "2019-10-15T21:11:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.622300", + "Timestamp": "2024-05-16T10:01:30.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.617300", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.127300", - "Timestamp": "2019-10-15T21:11:18.000Z" + "SpotPrice": "1.492300", + "Timestamp": "2024-05-16T10:01:30.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.121800", - "Timestamp": "2019-10-15T21:11:13.000Z" + "SpotPrice": "1.750300", + "Timestamp": "2024-05-16T10:01:29.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.121800", - "Timestamp": "2019-10-15T21:11:13.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.646000", + "Timestamp": "2024-05-16T10:01:28.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.641000", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.516000", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.121800", - "Timestamp": "2019-10-15T21:11:13.000Z" + "SpotPrice": "3.768900", + "Timestamp": "2024-05-16T10:01:27.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091800", - "Timestamp": "2019-10-15T21:10:43.000Z" + "SpotPrice": "0.316300", + "Timestamp": "2024-05-16T10:01:26.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091800", - "Timestamp": "2019-10-15T21:10:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.311300", + "Timestamp": "2024-05-16T10:01:26.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186300", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091800", - "Timestamp": "2019-10-15T21:10:43.000Z" + "SpotPrice": "0.578500", + "Timestamp": "2024-05-16T10:01:26.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031800", - "Timestamp": "2019-10-15T21:10:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.573500", + "Timestamp": "2024-05-16T10:01:26.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031800", - "Timestamp": "2019-10-15T21:10:43.000Z" + "SpotPrice": "0.448500", + "Timestamp": "2024-05-16T10:01:26.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157900", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154200", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031800", - "Timestamp": "2019-10-15T21:10:43.000Z" + "SpotPrice": "0.097900", + "Timestamp": "2024-05-16T10:01:25.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3a.medium", + "AvailabilityZone": "us-east-2c", + "InstanceType": "t2.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.072800", - "Timestamp": "2019-10-15T21:10:34.000Z" + "SpotPrice": "0.237900", + "Timestamp": "2024-05-16T10:01:25.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.072800", - "Timestamp": "2019-10-15T21:10:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.207900", + "Timestamp": "2024-05-16T10:01:25.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3a.medium", + "AvailabilityZone": "us-east-2c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107900", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.072800", - "Timestamp": "2019-10-15T21:10:34.000Z" + "SpotPrice": "1.714500", + "Timestamp": "2024-05-16T10:01:25.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.012800", - "Timestamp": "2019-10-15T21:10:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.709500", + "Timestamp": "2024-05-16T10:01:25.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3a.medium", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.012800", - "Timestamp": "2019-10-15T21:10:34.000Z" + "SpotPrice": "1.584500", + "Timestamp": "2024-05-16T10:01:25.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.012800", - "Timestamp": "2019-10-15T21:10:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.310800", + "Timestamp": "2024-05-16T10:01:25.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.010600", - "Timestamp": "2019-10-15T21:09:42.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.305800", + "Timestamp": "2024-05-16T10:01:25.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.010600", - "Timestamp": "2019-10-15T21:09:42.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180800", + "Timestamp": "2024-05-16T10:01:25.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247600", - "Timestamp": "2019-10-15T21:09:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075600", + "Timestamp": "2024-05-16T10:01:23.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247600", - "Timestamp": "2019-10-15T21:09:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071900", + "Timestamp": "2024-05-16T10:01:23.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.015800", - "Timestamp": "2019-10-15T21:09:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015600", + "Timestamp": "2024-05-16T10:01:23.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.large", "ProductDescription": "Windows", - "SpotPrice": "6.015800", - "Timestamp": "2019-10-15T21:09:34.000Z" + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T09:47:44.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.015800", - "Timestamp": "2019-10-15T21:09:34.000Z" + "SpotPrice": "1.919900", + "Timestamp": "2024-05-16T09:47:35.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.729800", - "Timestamp": "2019-10-15T21:09:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.775100", + "Timestamp": "2024-05-16T09:47:33.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.18xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.729800", - "Timestamp": "2019-10-15T21:09:09.000Z" + "SpotPrice": "1.338500", + "Timestamp": "2024-05-16T09:47:27.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.729800", - "Timestamp": "2019-10-15T21:09:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.333500", + "Timestamp": "2024-05-16T09:47:27.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.18xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.599800", - "Timestamp": "2019-10-15T21:09:09.000Z" + "SpotPrice": "1.208500", + "Timestamp": "2024-05-16T09:47:27.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.599800", - "Timestamp": "2019-10-15T21:09:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.820400", + "Timestamp": "2024-05-16T09:47:24.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.599800", - "Timestamp": "2019-10-15T21:09:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.941500", + "Timestamp": "2024-05-16T09:47:23.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.007900", - "Timestamp": "2019-10-15T21:05:00.000Z" + "SpotPrice": "0.220800", + "Timestamp": "2024-05-16T09:47:22.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "p2.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.007900", - "Timestamp": "2019-10-15T21:05:00.000Z" + "SpotPrice": "3.532800", + "Timestamp": "2024-05-16T09:47:22.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.929900", - "Timestamp": "2019-10-15T21:05:00.000Z" + "SpotPrice": "0.645300", + "Timestamp": "2024-05-16T09:47:20.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.929900", - "Timestamp": "2019-10-15T21:05:00.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.640300", + "Timestamp": "2024-05-16T09:47:20.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.799900", - "Timestamp": "2019-10-15T21:05:00.000Z" + "SpotPrice": "0.515300", + "Timestamp": "2024-05-16T09:47:20.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.799900", - "Timestamp": "2019-10-15T21:05:00.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.257700", + "Timestamp": "2024-05-16T09:47:14.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.large", "ProductDescription": "Windows", - "SpotPrice": "1.981000", - "Timestamp": "2019-10-15T21:04:45.000Z" + "SpotPrice": "0.039300", + "Timestamp": "2024-05-16T09:47:12.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.981000", - "Timestamp": "2019-10-15T21:04:45.000Z" + "SpotPrice": "2.501600", + "Timestamp": "2024-05-16T09:47:11.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.981000", - "Timestamp": "2019-10-15T21:04:45.000Z" + "SpotPrice": "5.114400", + "Timestamp": "2024-05-16T09:47:09.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.639000", - "Timestamp": "2019-10-15T21:04:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.011400", + "Timestamp": "2024-05-16T09:47:07.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.639000", - "Timestamp": "2019-10-15T21:04:45.000Z" + "SpotPrice": "0.209900", + "Timestamp": "2024-05-16T09:47:07.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.639000", - "Timestamp": "2019-10-15T21:04:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.206200", + "Timestamp": "2024-05-16T09:47:07.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.509000", - "Timestamp": "2019-10-15T21:04:45.000Z" + "SpotPrice": "0.149900", + "Timestamp": "2024-05-16T09:47:07.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.509000", - "Timestamp": "2019-10-15T21:04:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.955500", + "Timestamp": "2024-05-16T09:47:06.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.950500", + "Timestamp": "2024-05-16T09:47:06.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.509000", - "Timestamp": "2019-10-15T21:04:45.000Z" + "SpotPrice": "0.825500", + "Timestamp": "2024-05-16T09:47:06.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.142300", - "Timestamp": "2019-10-15T21:03:57.000Z" + "SpotPrice": "0.598100", + "Timestamp": "2024-05-16T09:47:06.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.082300", - "Timestamp": "2019-10-15T21:03:57.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.593100", + "Timestamp": "2024-05-16T09:47:06.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.384500", - "Timestamp": "2019-10-15T21:02:17.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.468100", + "Timestamp": "2024-05-16T09:47:06.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.384500", - "Timestamp": "2019-10-15T21:02:17.000Z" + "SpotPrice": "0.139400", + "Timestamp": "2024-05-16T09:47:04.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.384500", - "Timestamp": "2019-10-15T21:02:17.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135700", + "Timestamp": "2024-05-16T09:47:04.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.254500", - "Timestamp": "2019-10-15T21:02:17.000Z" + "SpotPrice": "0.079400", + "Timestamp": "2024-05-16T09:47:04.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.254500", - "Timestamp": "2019-10-15T21:02:17.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.246000", + "Timestamp": "2024-05-16T09:47:04.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.241000", + "Timestamp": "2024-05-16T09:47:04.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.254500", - "Timestamp": "2019-10-15T21:02:17.000Z" + "SpotPrice": "0.116000", + "Timestamp": "2024-05-16T09:47:04.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.990500", - "Timestamp": "2019-10-15T21:01:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070900", + "Timestamp": "2024-05-16T09:46:59.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.990500", - "Timestamp": "2019-10-15T21:01:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067200", + "Timestamp": "2024-05-16T09:46:59.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.990500", - "Timestamp": "2019-10-15T21:01:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010900", + "Timestamp": "2024-05-16T09:46:59.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.477700", - "Timestamp": "2019-10-15T20:39:14.000Z" + "SpotPrice": "2.527800", + "Timestamp": "2024-05-16T09:46:57.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.473400", - "Timestamp": "2019-10-15T20:39:14.000Z" + "SpotPrice": "1.790800", + "Timestamp": "2024-05-16T09:46:57.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101400", - "Timestamp": "2019-10-15T20:29:41.000Z" - }, - { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041400", - "Timestamp": "2019-10-15T20:29:41.000Z" + "SpotPrice": "1.346400", + "Timestamp": "2024-05-16T09:46:56.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.145000", - "Timestamp": "2019-10-15T20:21:58.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.341400", + "Timestamp": "2024-05-16T09:46:56.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.085000", - "Timestamp": "2019-10-15T20:21:58.000Z" + "SpotPrice": "1.216400", + "Timestamp": "2024-05-16T09:46:56.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101400", - "Timestamp": "2019-10-15T20:21:41.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.227200", + "Timestamp": "2024-05-16T09:46:56.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041400", - "Timestamp": "2019-10-15T20:21:41.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.670500", + "Timestamp": "2024-05-16T09:46:54.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.356400", - "Timestamp": "2019-10-15T20:21:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.665500", + "Timestamp": "2024-05-16T09:46:54.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.226400", - "Timestamp": "2019-10-15T20:21:27.000Z" + "SpotPrice": "2.540500", + "Timestamp": "2024-05-16T09:46:54.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.943100", - "Timestamp": "2019-10-15T20:15:07.000Z" + "SpotPrice": "10.588600", + "Timestamp": "2024-05-16T09:46:54.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.943100", - "Timestamp": "2019-10-15T20:15:07.000Z" + "SpotPrice": "0.874000", + "Timestamp": "2024-05-16T09:46:54.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.943100", - "Timestamp": "2019-10-15T20:15:07.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094200", + "Timestamp": "2024-05-16T09:46:52.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.657100", - "Timestamp": "2019-10-15T20:14:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090500", + "Timestamp": "2024-05-16T09:46:52.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.657100", - "Timestamp": "2019-10-15T20:14:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034200", + "Timestamp": "2024-05-16T09:46:52.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.657100", - "Timestamp": "2019-10-15T20:14:55.000Z" + "SpotPrice": "1.819100", + "Timestamp": "2024-05-16T09:46:52.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.527100", - "Timestamp": "2019-10-15T20:14:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.814100", + "Timestamp": "2024-05-16T09:46:52.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.527100", - "Timestamp": "2019-10-15T20:14:55.000Z" + "SpotPrice": "1.689100", + "Timestamp": "2024-05-16T09:46:52.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.527100", - "Timestamp": "2019-10-15T20:14:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.084100", + "Timestamp": "2024-05-16T09:46:52.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t2.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.008600", - "Timestamp": "2019-10-15T20:14:41.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.054100", + "Timestamp": "2024-05-16T09:46:52.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t2.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.008600", - "Timestamp": "2019-10-15T20:14:41.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.954100", + "Timestamp": "2024-05-16T09:46:52.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.008600", - "Timestamp": "2019-10-15T20:14:41.000Z" + "SpotPrice": "0.431800", + "Timestamp": "2024-05-16T09:46:52.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.064000", - "Timestamp": "2019-10-15T20:13:51.000Z" + "SpotPrice": "0.255700", + "Timestamp": "2024-05-16T09:46:51.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t2.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.064000", - "Timestamp": "2019-10-15T20:13:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.251700", + "Timestamp": "2024-05-16T09:46:51.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195700", + "Timestamp": "2024-05-16T09:46:51.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.064000", - "Timestamp": "2019-10-15T20:13:51.000Z" + "SpotPrice": "1.071300", + "Timestamp": "2024-05-16T09:46:51.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t2.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.004000", - "Timestamp": "2019-10-15T20:13:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.066300", + "Timestamp": "2024-05-16T09:46:51.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.004000", - "Timestamp": "2019-10-15T20:13:51.000Z" + "SpotPrice": "0.941300", + "Timestamp": "2024-05-16T09:46:51.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t2.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.004000", - "Timestamp": "2019-10-15T20:13:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.815500", + "Timestamp": "2024-05-16T09:46:51.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118100", + "Timestamp": "2024-05-16T09:46:51.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.636500", + "Timestamp": "2024-05-16T09:46:50.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.451700", + "Timestamp": "2024-05-16T09:46:50.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6gd.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101900", - "Timestamp": "2019-10-15T20:04:52.000Z" + "SpotPrice": "1.098500", + "Timestamp": "2024-05-16T09:46:50.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.093500", + "Timestamp": "2024-05-16T09:46:50.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041900", - "Timestamp": "2019-10-15T20:04:52.000Z" + "SpotPrice": "0.968500", + "Timestamp": "2024-05-16T09:46:50.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.675400", - "Timestamp": "2019-10-15T20:02:50.000Z" + "SpotPrice": "3.292800", + "Timestamp": "2024-05-16T09:46:50.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.675400", - "Timestamp": "2019-10-15T20:02:50.000Z" + "SpotPrice": "2.412600", + "Timestamp": "2024-05-16T09:46:50.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.675400", - "Timestamp": "2019-10-15T20:02:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.287800", + "Timestamp": "2024-05-16T09:46:50.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.545400", - "Timestamp": "2019-10-15T20:02:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.407600", + "Timestamp": "2024-05-16T09:46:50.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.545400", - "Timestamp": "2019-10-15T20:02:50.000Z" + "SpotPrice": "3.162800", + "Timestamp": "2024-05-16T09:46:50.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.545400", - "Timestamp": "2019-10-15T20:02:50.000Z" + "SpotPrice": "2.282600", + "Timestamp": "2024-05-16T09:46:50.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.585200", - "Timestamp": "2019-10-15T20:02:00.000Z" + "SpotPrice": "0.226900", + "Timestamp": "2024-05-16T09:46:49.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.585200", - "Timestamp": "2019-10-15T20:02:00.000Z" + "SpotPrice": "2.895000", + "Timestamp": "2024-05-16T09:46:49.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.585200", - "Timestamp": "2019-10-15T20:02:00.000Z" - }, - { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.347200", - "Timestamp": "2019-10-15T20:02:00.000Z" + "SpotPrice": "2.893600", + "Timestamp": "2024-05-16T09:46:49.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.347200", - "Timestamp": "2019-10-15T20:02:00.000Z" + "SpotPrice": "1.043000", + "Timestamp": "2024-05-16T09:46:48.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.347200", - "Timestamp": "2019-10-15T20:02:00.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.038000", + "Timestamp": "2024-05-16T09:46:48.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.217200", - "Timestamp": "2019-10-15T20:02:00.000Z" + "SpotPrice": "0.913000", + "Timestamp": "2024-05-16T09:46:48.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.217200", - "Timestamp": "2019-10-15T20:02:00.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118800", + "Timestamp": "2024-05-16T09:46:47.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.217200", - "Timestamp": "2019-10-15T20:02:00.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.895800", + "Timestamp": "2024-05-16T09:46:47.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-2a", + "InstanceType": "p2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.070300", - "Timestamp": "2019-10-15T19:48:51.000Z" + "SpotPrice": "0.288700", + "Timestamp": "2024-05-16T09:46:46.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-2a", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.328700", + "Timestamp": "2024-05-16T09:46:46.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "p2.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.010300", - "Timestamp": "2019-10-15T19:48:51.000Z" + "SpotPrice": "0.228700", + "Timestamp": "2024-05-16T09:46:46.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.658100", + "Timestamp": "2024-05-16T09:46:46.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.805400", + "Timestamp": "2024-05-16T09:46:46.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.065200", - "Timestamp": "2019-10-15T19:48:42.000Z" + "SpotPrice": "0.838300", + "Timestamp": "2024-05-16T09:46:46.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.005200", - "Timestamp": "2019-10-15T19:48:42.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.833300", + "Timestamp": "2024-05-16T09:46:46.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.962100", - "Timestamp": "2019-10-15T19:42:16.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.708300", + "Timestamp": "2024-05-16T09:46:46.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.962100", - "Timestamp": "2019-10-15T19:42:16.000Z" + "SpotPrice": "5.455000", + "Timestamp": "2024-05-16T09:46:45.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.18xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.962100", - "Timestamp": "2019-10-15T19:42:16.000Z" + "SpotPrice": "3.878900", + "Timestamp": "2024-05-16T09:46:44.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.148100", - "Timestamp": "2019-10-15T19:42:12.000Z" + "SpotPrice": "1.017400", + "Timestamp": "2024-05-16T09:46:44.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.148100", - "Timestamp": "2019-10-15T19:42:12.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.012400", + "Timestamp": "2024-05-16T09:46:44.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.148100", - "Timestamp": "2019-10-15T19:42:12.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.887400", + "Timestamp": "2024-05-16T09:46:44.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.018100", - "Timestamp": "2019-10-15T19:42:12.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.828500", + "Timestamp": "2024-05-16T09:46:44.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.018100", - "Timestamp": "2019-10-15T19:42:12.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.866700", + "Timestamp": "2024-05-16T09:46:44.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.051200", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.046200", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.018100", - "Timestamp": "2019-10-15T19:42:12.000Z" + "SpotPrice": "3.921200", + "Timestamp": "2024-05-16T09:46:44.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120600", - "Timestamp": "2019-10-15T19:42:12.000Z" + "SpotPrice": "0.739600", + "Timestamp": "2024-05-16T09:46:44.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120600", - "Timestamp": "2019-10-15T19:42:12.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.734600", + "Timestamp": "2024-05-16T09:46:44.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.609600", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120600", - "Timestamp": "2019-10-15T19:42:12.000Z" + "SpotPrice": "1.109500", + "Timestamp": "2024-05-16T09:46:43.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060600", - "Timestamp": "2019-10-15T19:42:12.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.104500", + "Timestamp": "2024-05-16T09:46:43.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060600", - "Timestamp": "2019-10-15T19:42:12.000Z" + "SpotPrice": "0.979500", + "Timestamp": "2024-05-16T09:46:43.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060600", - "Timestamp": "2019-10-15T19:42:12.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.950500", + "Timestamp": "2024-05-16T09:46:42.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.244600", - "Timestamp": "2019-10-15T19:42:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.945500", + "Timestamp": "2024-05-16T09:46:42.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.244600", - "Timestamp": "2019-10-15T19:42:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.820500", + "Timestamp": "2024-05-16T09:46:42.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.metal-24xl", "ProductDescription": "Windows", - "SpotPrice": "0.244600", - "Timestamp": "2019-10-15T19:42:09.000Z" + "SpotPrice": "5.216000", + "Timestamp": "2024-05-16T09:46:42.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.902500", - "Timestamp": "2019-10-15T19:32:03.000Z" + "SpotPrice": "1.465000", + "Timestamp": "2024-05-16T09:46:42.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.460000", + "Timestamp": "2024-05-16T09:46:42.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.772500", - "Timestamp": "2019-10-15T19:32:03.000Z" + "SpotPrice": "1.335000", + "Timestamp": "2024-05-16T09:46:42.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.007900", - "Timestamp": "2019-10-15T19:21:50.000Z" + "SpotPrice": "1.711300", + "Timestamp": "2024-05-16T09:46:41.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.10xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.007900", - "Timestamp": "2019-10-15T19:21:50.000Z" + "SpotPrice": "2.126300", + "Timestamp": "2024-05-16T09:46:41.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m4.10xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.007900", - "Timestamp": "2019-10-15T19:21:50.000Z" + "SpotPrice": "2.092200", + "Timestamp": "2024-05-16T09:46:41.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.070300", - "Timestamp": "2019-10-15T19:15:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440800", + "Timestamp": "2024-05-16T09:46:41.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.010300", - "Timestamp": "2019-10-15T19:15:07.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.253300", + "Timestamp": "2024-05-16T09:46:41.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.943100", - "Timestamp": "2019-10-15T19:11:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.516400", + "Timestamp": "2024-05-16T09:46:41.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.943100", - "Timestamp": "2019-10-15T19:11:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.511400", + "Timestamp": "2024-05-16T09:46:41.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.657100", - "Timestamp": "2019-10-15T19:11:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.386400", + "Timestamp": "2024-05-16T09:46:41.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.657100", - "Timestamp": "2019-10-15T19:11:08.000Z" + "SpotPrice": "0.156800", + "Timestamp": "2024-05-16T09:46:41.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.527100", - "Timestamp": "2019-10-15T19:11:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196800", + "Timestamp": "2024-05-16T09:46:41.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r3.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.527100", - "Timestamp": "2019-10-15T19:11:08.000Z" + "SpotPrice": "0.095800", + "Timestamp": "2024-05-16T09:46:41.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.060900", - "Timestamp": "2019-10-15T19:06:07.000Z" + "SpotPrice": "4.209200", + "Timestamp": "2024-05-16T09:46:40.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.102500", - "Timestamp": "2019-10-15T18:58:06.000Z" + "SpotPrice": "0.937700", + "Timestamp": "2024-05-16T09:46:40.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.932700", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.042500", - "Timestamp": "2019-10-15T18:58:06.000Z" + "SpotPrice": "0.807700", + "Timestamp": "2024-05-16T09:46:40.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090400", - "Timestamp": "2019-10-15T18:51:22.000Z" + "SpotPrice": "2.101700", + "Timestamp": "2024-05-16T09:46:40.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.071700", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030400", - "Timestamp": "2019-10-15T18:51:22.000Z" + "SpotPrice": "1.971700", + "Timestamp": "2024-05-16T09:46:40.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.224200", - "Timestamp": "2019-10-15T18:50:42.000Z" + "SpotPrice": "0.073300", + "Timestamp": "2024-05-16T09:46:39.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044300", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.164200", - "Timestamp": "2019-10-15T18:50:42.000Z" + "SpotPrice": "0.013300", + "Timestamp": "2024-05-16T09:46:39.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.460100", - "Timestamp": "2019-10-15T18:49:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.740500", + "Timestamp": "2024-05-16T09:46:39.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.330100", - "Timestamp": "2019-10-15T18:49:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.864300", + "Timestamp": "2024-05-16T09:46:39.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.252200", - "Timestamp": "2019-10-15T18:49:53.000Z" + "SpotPrice": "1.429600", + "Timestamp": "2024-05-16T09:46:39.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.192200", - "Timestamp": "2019-10-15T18:49:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.398600", + "Timestamp": "2024-05-16T09:46:39.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.145000", - "Timestamp": "2019-10-15T18:49:47.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.424600", + "Timestamp": "2024-05-16T09:46:39.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.085000", - "Timestamp": "2019-10-15T18:49:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.393600", + "Timestamp": "2024-05-16T09:46:39.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.366000", - "Timestamp": "2019-10-15T18:42:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.299600", + "Timestamp": "2024-05-16T09:46:39.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.306000", - "Timestamp": "2019-10-15T18:42:53.000Z" + "SpotPrice": "1.268600", + "Timestamp": "2024-05-16T09:46:39.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.490000", - "Timestamp": "2019-10-15T18:42:35.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184400", + "Timestamp": "2024-05-16T09:46:39.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.108700", - "Timestamp": "2019-10-15T18:41:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180400", + "Timestamp": "2024-05-16T09:46:39.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124400", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.470000", - "Timestamp": "2019-10-15T18:16:55.000Z" + "SpotPrice": "1.822000", + "Timestamp": "2024-05-16T09:46:39.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.340000", - "Timestamp": "2019-10-15T18:16:55.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.817000", + "Timestamp": "2024-05-16T09:46:39.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.962100", - "Timestamp": "2019-10-15T18:02:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.692000", + "Timestamp": "2024-05-16T09:46:39.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.962100", - "Timestamp": "2019-10-15T18:02:56.000Z" + "SpotPrice": "3.674800", + "Timestamp": "2024-05-16T09:46:39.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.148100", - "Timestamp": "2019-10-15T18:02:37.000Z" + "SpotPrice": "3.776000", + "Timestamp": "2024-05-16T09:46:39.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.148100", - "Timestamp": "2019-10-15T18:02:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.771000", + "Timestamp": "2024-05-16T09:46:39.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.018100", - "Timestamp": "2019-10-15T18:02:37.000Z" + "SpotPrice": "3.646000", + "Timestamp": "2024-05-16T09:46:39.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.018100", - "Timestamp": "2019-10-15T18:02:37.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095300", + "Timestamp": "2024-05-16T09:46:39.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.255400", - "Timestamp": "2019-10-15T17:59:57.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135300", + "Timestamp": "2024-05-16T09:46:39.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c4.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.125400", - "Timestamp": "2019-10-15T17:59:57.000Z" + "SpotPrice": "0.035300", + "Timestamp": "2024-05-16T09:46:39.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123800", - "Timestamp": "2019-10-15T17:42:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.290400", + "Timestamp": "2024-05-16T09:46:38.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123800", - "Timestamp": "2019-10-15T17:42:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.285400", + "Timestamp": "2024-05-16T09:46:38.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123800", - "Timestamp": "2019-10-15T17:42:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.160400", + "Timestamp": "2024-05-16T09:46:38.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.019800", - "Timestamp": "2019-10-15T17:34:41.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.065500", + "Timestamp": "2024-05-16T09:46:38.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.254300", - "Timestamp": "2019-10-15T17:18:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.060500", + "Timestamp": "2024-05-16T09:46:38.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.124300", - "Timestamp": "2019-10-15T17:18:27.000Z" + "SpotPrice": "0.935500", + "Timestamp": "2024-05-16T09:46:38.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.114300", - "Timestamp": "2019-10-15T17:17:21.000Z" + "SpotPrice": "1.097700", + "Timestamp": "2024-05-16T09:46:38.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "i3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.114300", - "Timestamp": "2019-10-15T17:17:21.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.092700", + "Timestamp": "2024-05-16T09:46:38.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "i3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.114300", - "Timestamp": "2019-10-15T17:17:21.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967700", + "Timestamp": "2024-05-16T09:46:38.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "i3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.054300", - "Timestamp": "2019-10-15T17:17:21.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.536500", + "Timestamp": "2024-05-16T09:46:37.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "i3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.054300", - "Timestamp": "2019-10-15T17:17:21.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.531500", + "Timestamp": "2024-05-16T09:46:37.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.054300", - "Timestamp": "2019-10-15T17:17:21.000Z" + "SpotPrice": "0.406500", + "Timestamp": "2024-05-16T09:46:37.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.662400", - "Timestamp": "2019-10-15T17:17:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.967400", + "Timestamp": "2024-05-16T09:46:37.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.662400", - "Timestamp": "2019-10-15T17:17:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.962400", + "Timestamp": "2024-05-16T09:46:37.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.662400", - "Timestamp": "2019-10-15T17:17:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.837400", + "Timestamp": "2024-05-16T09:46:37.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "p3.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.508800", - "Timestamp": "2019-10-15T17:17:15.000Z" + "SpotPrice": "6.729900", + "Timestamp": "2024-05-16T09:46:37.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.508800", - "Timestamp": "2019-10-15T17:17:15.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.473500", + "Timestamp": "2024-05-16T09:46:36.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.508800", - "Timestamp": "2019-10-15T17:17:15.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.443500", + "Timestamp": "2024-05-16T09:46:36.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.193000", - "Timestamp": "2019-10-15T17:17:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.343500", + "Timestamp": "2024-05-16T09:46:36.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093300", - "Timestamp": "2019-10-15T17:17:11.000Z" + "SpotPrice": "0.125200", + "Timestamp": "2024-05-16T09:46:36.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.133000", - "Timestamp": "2019-10-15T17:17:11.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121500", + "Timestamp": "2024-05-16T09:46:36.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033300", - "Timestamp": "2019-10-15T17:17:11.000Z" + "SpotPrice": "0.065200", + "Timestamp": "2024-05-16T09:46:36.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.225000", - "Timestamp": "2019-10-15T17:17:11.000Z" + "SpotPrice": "2.767000", + "Timestamp": "2024-05-16T09:46:36.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125300", - "Timestamp": "2019-10-15T17:17:11.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.315800", + "Timestamp": "2024-05-16T09:46:35.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.663300", - "Timestamp": "2019-10-15T17:17:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.310800", + "Timestamp": "2024-05-16T09:46:35.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.663300", - "Timestamp": "2019-10-15T17:17:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.185800", + "Timestamp": "2024-05-16T09:46:35.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.663300", - "Timestamp": "2019-10-15T17:17:08.000Z" + "SpotPrice": "0.320000", + "Timestamp": "2024-05-16T09:46:35.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.533300", - "Timestamp": "2019-10-15T17:17:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.315000", + "Timestamp": "2024-05-16T09:46:35.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.533300", - "Timestamp": "2019-10-15T17:17:08.000Z" + "SpotPrice": "0.190000", + "Timestamp": "2024-05-16T09:46:35.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.746700", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.741700", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2idn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.533300", - "Timestamp": "2019-10-15T17:17:08.000Z" + "SpotPrice": "1.616700", + "Timestamp": "2024-05-16T09:46:35.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.990500", - "Timestamp": "2019-10-15T17:17:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101400", + "Timestamp": "2024-05-16T09:46:35.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.990500", - "Timestamp": "2019-10-15T17:17:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097700", + "Timestamp": "2024-05-16T09:46:35.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.990500", - "Timestamp": "2019-10-15T17:17:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041400", + "Timestamp": "2024-05-16T09:46:35.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.960000", - "Timestamp": "2019-10-15T17:17:03.000Z" + "SpotPrice": "1.774200", + "Timestamp": "2024-05-16T09:46:34.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.354000", - "Timestamp": "2019-10-15T17:17:02.000Z" + "SpotPrice": "1.617500", + "Timestamp": "2024-05-16T09:46:34.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.612500", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.224000", - "Timestamp": "2019-10-15T17:17:02.000Z" + "SpotPrice": "1.487500", + "Timestamp": "2024-05-16T09:46:34.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.982800", - "Timestamp": "2019-10-15T17:16:54.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.008200", + "Timestamp": "2024-05-16T09:46:34.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.982800", - "Timestamp": "2019-10-15T17:16:54.000Z" + "SpotPrice": "0.147600", + "Timestamp": "2024-05-16T09:46:34.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.982800", - "Timestamp": "2019-10-15T17:16:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143900", + "Timestamp": "2024-05-16T09:46:34.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.852800", - "Timestamp": "2019-10-15T17:16:54.000Z" + "SpotPrice": "0.087600", + "Timestamp": "2024-05-16T09:46:34.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.852800", - "Timestamp": "2019-10-15T17:16:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.411800", + "Timestamp": "2024-05-16T09:46:33.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.406800", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.852800", - "Timestamp": "2019-10-15T17:16:54.000Z" + "SpotPrice": "1.281800", + "Timestamp": "2024-05-16T09:46:33.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.146300", - "Timestamp": "2019-10-15T17:16:53.000Z" + "SpotPrice": "1.121600", + "Timestamp": "2024-05-16T09:46:33.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.146300", - "Timestamp": "2019-10-15T17:16:53.000Z" + "SpotPrice": "0.233600", + "Timestamp": "2024-05-16T09:46:33.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.metal-48xl", "ProductDescription": "Windows", - "SpotPrice": "0.146300", - "Timestamp": "2019-10-15T17:16:53.000Z" + "SpotPrice": "10.897100", + "Timestamp": "2024-05-16T09:46:33.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.263300", - "Timestamp": "2019-10-15T17:16:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.057300", + "Timestamp": "2024-05-16T09:46:32.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.662000", - "Timestamp": "2019-10-15T17:16:53.000Z" + "SpotPrice": "0.563000", + "Timestamp": "2024-05-16T09:46:32.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.133300", - "Timestamp": "2019-10-15T17:16:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.558000", + "Timestamp": "2024-05-16T09:46:32.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.532000", - "Timestamp": "2019-10-15T17:16:53.000Z" + "SpotPrice": "0.433000", + "Timestamp": "2024-05-16T09:46:32.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.501300", - "Timestamp": "2019-10-15T17:16:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.196700", + "Timestamp": "2024-05-16T09:46:32.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.900000", - "Timestamp": "2019-10-15T17:16:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.191100", + "Timestamp": "2024-05-16T09:46:32.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.005300", - "Timestamp": "2019-10-15T17:16:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.166700", + "Timestamp": "2024-05-16T09:46:32.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.005300", - "Timestamp": "2019-10-15T17:16:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.161100", + "Timestamp": "2024-05-16T09:46:32.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.005300", - "Timestamp": "2019-10-15T17:16:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.066700", + "Timestamp": "2024-05-16T09:46:32.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.056400", - "Timestamp": "2019-10-15T17:16:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.061100", + "Timestamp": "2024-05-16T09:46:32.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.056400", - "Timestamp": "2019-10-15T17:16:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.377500", + "Timestamp": "2024-05-16T09:46:32.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.056400", - "Timestamp": "2019-10-15T17:16:27.000Z" - }, - { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.926400", - "Timestamp": "2019-10-15T17:16:27.000Z" + "SpotPrice": "0.897900", + "Timestamp": "2024-05-16T09:46:32.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.926400", - "Timestamp": "2019-10-15T17:16:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.867900", + "Timestamp": "2024-05-16T09:46:32.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r3.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.926400", - "Timestamp": "2019-10-15T17:16:27.000Z" + "SpotPrice": "0.763900", + "Timestamp": "2024-05-16T09:46:32.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.384500", - "Timestamp": "2019-10-15T17:16:22.000Z" + "SpotPrice": "1.206600", + "Timestamp": "2024-05-16T09:46:32.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.384500", - "Timestamp": "2019-10-15T17:16:22.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.176600", + "Timestamp": "2024-05-16T09:46:32.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.384500", - "Timestamp": "2019-10-15T17:16:22.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.076600", + "Timestamp": "2024-05-16T09:46:32.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.254500", - "Timestamp": "2019-10-15T17:16:22.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.714700", + "Timestamp": "2024-05-16T09:46:31.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.254500", - "Timestamp": "2019-10-15T17:16:22.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.709700", + "Timestamp": "2024-05-16T09:46:31.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.254500", - "Timestamp": "2019-10-15T17:16:22.000Z" + "SpotPrice": "0.584700", + "Timestamp": "2024-05-16T09:46:31.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.929900", - "Timestamp": "2019-10-15T17:13:50.000Z" + "SpotPrice": "0.094700", + "Timestamp": "2024-05-16T09:46:31.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.929900", - "Timestamp": "2019-10-15T17:13:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091000", + "Timestamp": "2024-05-16T09:46:31.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.929900", - "Timestamp": "2019-10-15T17:13:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034700", + "Timestamp": "2024-05-16T09:46:31.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.799900", - "Timestamp": "2019-10-15T17:13:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.513200", + "Timestamp": "2024-05-16T09:46:31.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.799900", - "Timestamp": "2019-10-15T17:13:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.508200", + "Timestamp": "2024-05-16T09:46:31.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.799900", - "Timestamp": "2019-10-15T17:13:50.000Z" + "SpotPrice": "3.383200", + "Timestamp": "2024-05-16T09:46:31.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.578000", - "Timestamp": "2019-10-15T17:10:28.000Z" + "SpotPrice": "0.946000", + "Timestamp": "2024-05-16T09:46:31.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.578000", - "Timestamp": "2019-10-15T17:10:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.916000", + "Timestamp": "2024-05-16T09:46:31.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.448000", - "Timestamp": "2019-10-15T17:10:28.000Z" + "SpotPrice": "0.816000", + "Timestamp": "2024-05-16T09:46:31.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.448000", - "Timestamp": "2019-10-15T17:10:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.257300", + "Timestamp": "2024-05-16T09:46:31.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i2.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.920000", - "Timestamp": "2019-10-15T17:10:28.000Z" + "SpotPrice": "3.306000", + "Timestamp": "2024-05-16T09:46:31.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.920000", - "Timestamp": "2019-10-15T17:10:28.000Z" + "SpotPrice": "7.694800", + "Timestamp": "2024-05-16T09:46:31.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.6xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.292600", - "Timestamp": "2019-10-15T17:09:57.000Z" + "SpotPrice": "1.402300", + "Timestamp": "2024-05-16T09:46:31.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.292600", - "Timestamp": "2019-10-15T17:09:57.000Z" + "SpotPrice": "8.266900", + "Timestamp": "2024-05-16T09:46:30.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.9xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.292600", - "Timestamp": "2019-10-15T17:09:57.000Z" + "SpotPrice": "1.951000", + "Timestamp": "2024-05-16T09:46:30.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c4.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.168600", - "Timestamp": "2019-10-15T17:09:56.000Z" + "SpotPrice": "0.140100", + "Timestamp": "2024-05-16T09:46:30.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.168600", - "Timestamp": "2019-10-15T17:09:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180100", + "Timestamp": "2024-05-16T09:46:30.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.168600", - "Timestamp": "2019-10-15T17:09:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080100", + "Timestamp": "2024-05-16T09:46:30.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.108600", - "Timestamp": "2019-10-15T17:09:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.813800", + "Timestamp": "2024-05-16T09:46:30.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.108600", - "Timestamp": "2019-10-15T17:09:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.808800", + "Timestamp": "2024-05-16T09:46:30.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.metal-24xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.108600", - "Timestamp": "2019-10-15T17:09:56.000Z" + "SpotPrice": "1.683800", + "Timestamp": "2024-05-16T09:46:30.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123700", - "Timestamp": "2019-10-15T17:06:22.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.195900", + "Timestamp": "2024-05-16T09:46:30.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123700", - "Timestamp": "2019-10-15T17:06:22.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.190900", + "Timestamp": "2024-05-16T09:46:30.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123700", - "Timestamp": "2019-10-15T17:06:22.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.065900", + "Timestamp": "2024-05-16T09:46:30.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r4.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091700", - "Timestamp": "2019-10-15T17:06:22.000Z" + "SpotPrice": "0.526200", + "Timestamp": "2024-05-16T09:46:28.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091700", - "Timestamp": "2019-10-15T17:06:22.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.496200", + "Timestamp": "2024-05-16T09:46:28.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r4.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031700", - "Timestamp": "2019-10-15T17:06:22.000Z" + "SpotPrice": "0.396200", + "Timestamp": "2024-05-16T09:46:28.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031700", - "Timestamp": "2019-10-15T17:06:22.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.497900", + "Timestamp": "2024-05-16T09:46:28.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.663300", - "Timestamp": "2019-10-15T17:06:11.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.997100", + "Timestamp": "2024-05-16T09:46:28.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.663300", - "Timestamp": "2019-10-15T17:06:11.000Z" + "SpotPrice": "3.287100", + "Timestamp": "2024-05-16T09:46:27.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.663300", - "Timestamp": "2019-10-15T17:06:11.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.282100", + "Timestamp": "2024-05-16T09:46:27.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.533300", - "Timestamp": "2019-10-15T17:06:11.000Z" + "SpotPrice": "3.157100", + "Timestamp": "2024-05-16T09:46:27.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.533300", - "Timestamp": "2019-10-15T17:06:11.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.603900", + "Timestamp": "2024-05-16T09:46:27.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.598900", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.533300", - "Timestamp": "2019-10-15T17:06:11.000Z" + "SpotPrice": "1.473900", + "Timestamp": "2024-05-16T09:46:27.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.005300", - "Timestamp": "2019-10-15T17:06:11.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146100", + "Timestamp": "2024-05-16T09:46:25.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.005300", - "Timestamp": "2019-10-15T17:06:11.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142100", + "Timestamp": "2024-05-16T09:46:25.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.005300", - "Timestamp": "2019-10-15T17:06:11.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086100", + "Timestamp": "2024-05-16T09:46:25.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.489200", - "Timestamp": "2019-10-15T17:06:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108900", + "Timestamp": "2024-05-16T09:46:25.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.489200", - "Timestamp": "2019-10-15T17:06:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T09:46:25.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.489200", - "Timestamp": "2019-10-15T17:06:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048900", + "Timestamp": "2024-05-16T09:46:25.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.252600", - "Timestamp": "2019-10-15T17:06:06.000Z" + "SpotPrice": "2.154000", + "Timestamp": "2024-05-16T09:46:24.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.122600", - "Timestamp": "2019-10-15T17:06:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.149000", + "Timestamp": "2024-05-16T09:46:24.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.256700", - "Timestamp": "2019-10-15T17:06:00.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.024000", + "Timestamp": "2024-05-16T09:46:24.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.256700", - "Timestamp": "2019-10-15T17:06:00.000Z" + "SpotPrice": "0.348400", + "Timestamp": "2024-05-16T09:46:24.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.256700", - "Timestamp": "2019-10-15T17:06:00.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343400", + "Timestamp": "2024-05-16T09:46:24.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.126700", - "Timestamp": "2019-10-15T17:06:00.000Z" + "SpotPrice": "0.218400", + "Timestamp": "2024-05-16T09:46:24.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.126700", - "Timestamp": "2019-10-15T17:06:00.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.221000", + "Timestamp": "2024-05-16T09:46:24.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.191000", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r4.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.126700", - "Timestamp": "2019-10-15T17:06:00.000Z" + "SpotPrice": "0.091000", + "Timestamp": "2024-05-16T09:46:24.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.188700", - "Timestamp": "2019-10-15T17:06:00.000Z" + "SpotPrice": "1.797300", + "Timestamp": "2024-05-16T09:46:24.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.188700", - "Timestamp": "2019-10-15T17:06:00.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.063900", + "Timestamp": "2024-05-16T09:46:23.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.188700", - "Timestamp": "2019-10-15T17:06:00.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.058900", + "Timestamp": "2024-05-16T09:46:23.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.196600", - "Timestamp": "2019-10-15T17:05:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.933900", + "Timestamp": "2024-05-16T09:46:23.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4ad.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.196600", - "Timestamp": "2019-10-15T17:05:59.000Z" + "SpotPrice": "0.173200", + "Timestamp": "2024-05-16T09:46:21.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4ad.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.196600", - "Timestamp": "2019-10-15T17:05:59.000Z" + "SpotPrice": "0.175500", + "Timestamp": "2024-05-16T09:46:21.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.066600", - "Timestamp": "2019-10-15T17:05:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169500", + "Timestamp": "2024-05-16T09:46:21.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.066600", - "Timestamp": "2019-10-15T17:05:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.171800", + "Timestamp": "2024-05-16T09:46:21.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4ad.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.066600", - "Timestamp": "2019-10-15T17:05:59.000Z" + "SpotPrice": "0.113200", + "Timestamp": "2024-05-16T09:46:21.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.482600", - "Timestamp": "2019-10-15T17:05:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115500", + "Timestamp": "2024-05-16T09:46:21.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.482600", - "Timestamp": "2019-10-15T17:05:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.509500", + "Timestamp": "2024-05-16T09:46:21.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.482600", - "Timestamp": "2019-10-15T17:05:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.479500", + "Timestamp": "2024-05-16T09:46:21.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.148100", - "Timestamp": "2019-10-15T17:03:13.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.379500", + "Timestamp": "2024-05-16T09:46:21.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.148100", - "Timestamp": "2019-10-15T17:03:13.000Z" + "SpotPrice": "0.581100", + "Timestamp": "2024-05-16T09:46:20.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.148100", - "Timestamp": "2019-10-15T17:03:13.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.576100", + "Timestamp": "2024-05-16T09:46:20.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.018100", - "Timestamp": "2019-10-15T17:03:13.000Z" + "SpotPrice": "0.451100", + "Timestamp": "2024-05-16T09:46:20.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.018100", - "Timestamp": "2019-10-15T17:03:13.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.923800", + "Timestamp": "2024-05-16T09:46:20.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.018100", - "Timestamp": "2019-10-15T17:03:13.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.918800", + "Timestamp": "2024-05-16T09:46:20.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.962100", - "Timestamp": "2019-10-15T17:02:21.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.793800", + "Timestamp": "2024-05-16T09:46:20.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.962100", - "Timestamp": "2019-10-15T17:02:21.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.439100", + "Timestamp": "2024-05-16T09:46:19.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.962100", - "Timestamp": "2019-10-15T17:02:21.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.434100", + "Timestamp": "2024-05-16T09:46:19.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123500", - "Timestamp": "2019-10-15T17:02:07.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.309100", + "Timestamp": "2024-05-16T09:46:19.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c4.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123500", - "Timestamp": "2019-10-15T17:02:07.000Z" + "SpotPrice": "0.413900", + "Timestamp": "2024-05-16T09:46:19.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123500", - "Timestamp": "2019-10-15T17:02:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.383900", + "Timestamp": "2024-05-16T09:46:19.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c4.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063500", - "Timestamp": "2019-10-15T17:02:07.000Z" + "SpotPrice": "0.283900", + "Timestamp": "2024-05-16T09:46:19.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063500", - "Timestamp": "2019-10-15T17:02:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.508800", + "Timestamp": "2024-05-16T09:46:16.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088700", + "Timestamp": "2024-05-16T09:46:13.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085000", + "Timestamp": "2024-05-16T09:46:13.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063500", - "Timestamp": "2019-10-15T17:02:07.000Z" + "SpotPrice": "0.028700", + "Timestamp": "2024-05-16T09:46:13.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247500", - "Timestamp": "2019-10-15T17:01:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.622100", + "Timestamp": "2024-05-16T09:46:11.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247500", - "Timestamp": "2019-10-15T17:01:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.617100", + "Timestamp": "2024-05-16T09:46:11.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247500", - "Timestamp": "2019-10-15T17:01:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.492100", + "Timestamp": "2024-05-16T09:46:11.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.639000", - "Timestamp": "2019-10-15T17:01:38.000Z" + "SpotPrice": "1.108200", + "Timestamp": "2024-05-16T09:34:06.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.639000", - "Timestamp": "2019-10-15T17:01:38.000Z" + "SpotPrice": "1.102800", + "Timestamp": "2024-05-16T09:34:06.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.103200", + "Timestamp": "2024-05-16T09:34:06.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.097800", + "Timestamp": "2024-05-16T09:34:06.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.509000", - "Timestamp": "2019-10-15T17:01:38.000Z" + "SpotPrice": "0.978200", + "Timestamp": "2024-05-16T09:34:06.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.509000", - "Timestamp": "2019-10-15T17:01:38.000Z" + "SpotPrice": "0.972800", + "Timestamp": "2024-05-16T09:34:06.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.981000", - "Timestamp": "2019-10-15T17:01:05.000Z" + "SpotPrice": "3.432600", + "Timestamp": "2024-05-16T09:34:06.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.981000", - "Timestamp": "2019-10-15T17:01:05.000Z" + "SpotPrice": "3.405100", + "Timestamp": "2024-05-16T09:34:06.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4ad.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.081200", - "Timestamp": "2019-10-15T16:19:44.000Z" + "SpotPrice": "0.360100", + "Timestamp": "2024-05-16T09:32:37.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.355100", + "Timestamp": "2024-05-16T09:32:37.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4ad.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.021200", - "Timestamp": "2019-10-15T16:19:44.000Z" + "SpotPrice": "0.230100", + "Timestamp": "2024-05-16T09:32:37.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.060900", - "Timestamp": "2019-10-15T16:19:24.000Z" + "SpotPrice": "8.202500", + "Timestamp": "2024-05-16T09:32:37.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.434100", - "Timestamp": "2019-10-15T16:02:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.115800", + "Timestamp": "2024-05-16T09:32:36.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.434100", - "Timestamp": "2019-10-15T16:02:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.110800", + "Timestamp": "2024-05-16T09:32:36.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.148100", - "Timestamp": "2019-10-15T16:01:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.985800", + "Timestamp": "2024-05-16T09:32:36.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.516300", + "Timestamp": "2024-05-16T09:32:36.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.148100", - "Timestamp": "2019-10-15T16:01:14.000Z" + "SpotPrice": "2.037300", + "Timestamp": "2024-05-16T09:32:35.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.018100", - "Timestamp": "2019-10-15T16:01:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.032300", + "Timestamp": "2024-05-16T09:32:35.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.018100", - "Timestamp": "2019-10-15T16:01:14.000Z" + "SpotPrice": "1.907300", + "Timestamp": "2024-05-16T09:32:35.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.112600", - "Timestamp": "2019-10-15T15:38:02.000Z" + "SpotPrice": "3.366700", + "Timestamp": "2024-05-16T09:32:35.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.104400", - "Timestamp": "2019-10-15T15:01:38.000Z" + "SpotPrice": "2.672000", + "Timestamp": "2024-05-16T09:32:35.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.104400", - "Timestamp": "2019-10-15T15:01:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.168500", + "Timestamp": "2024-05-16T09:32:35.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.104400", - "Timestamp": "2019-10-15T15:01:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.163500", + "Timestamp": "2024-05-16T09:32:35.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123400", - "Timestamp": "2019-10-15T15:01:26.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.038500", + "Timestamp": "2024-05-16T09:32:35.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123400", - "Timestamp": "2019-10-15T15:01:26.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.542000", + "Timestamp": "2024-05-16T09:32:34.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.363900", + "Timestamp": "2024-05-16T09:32:34.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123400", - "Timestamp": "2019-10-15T15:01:26.000Z" + "SpotPrice": "1.069700", + "Timestamp": "2024-05-16T09:32:34.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063400", - "Timestamp": "2019-10-15T15:01:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.064700", + "Timestamp": "2024-05-16T09:32:34.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063400", - "Timestamp": "2019-10-15T15:01:26.000Z" + "SpotPrice": "0.939700", + "Timestamp": "2024-05-16T09:32:34.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063400", - "Timestamp": "2019-10-15T15:01:26.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.393100", + "Timestamp": "2024-05-16T09:32:33.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.981000", - "Timestamp": "2019-10-15T15:01:13.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.388100", + "Timestamp": "2024-05-16T09:32:33.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.981000", - "Timestamp": "2019-10-15T15:01:13.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.263100", + "Timestamp": "2024-05-16T09:32:33.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.639000", - "Timestamp": "2019-10-15T15:01:13.000Z" + "SpotPrice": "1.612900", + "Timestamp": "2024-05-16T09:32:32.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.639000", - "Timestamp": "2019-10-15T15:01:13.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.607900", + "Timestamp": "2024-05-16T09:32:32.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.509000", - "Timestamp": "2019-10-15T15:01:13.000Z" + "SpotPrice": "1.482900", + "Timestamp": "2024-05-16T09:32:32.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.509000", - "Timestamp": "2019-10-15T15:01:13.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.376400", + "Timestamp": "2024-05-16T09:32:32.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r3.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.250700", - "Timestamp": "2019-10-15T15:01:12.000Z" + "SpotPrice": "0.295200", + "Timestamp": "2024-05-16T09:32:32.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126700", - "Timestamp": "2019-10-15T15:00:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.892700", + "Timestamp": "2024-05-16T09:32:31.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-15T15:00:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.939600", + "Timestamp": "2024-05-16T09:32:30.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.060900", - "Timestamp": "2019-10-15T14:39:22.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.934600", + "Timestamp": "2024-05-16T09:32:30.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.502400", - "Timestamp": "2019-10-15T14:23:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.809600", + "Timestamp": "2024-05-16T09:32:30.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "d3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093900", - "Timestamp": "2019-10-15T14:14:49.000Z" + "SpotPrice": "1.036400", + "Timestamp": "2024-05-16T09:32:30.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033900", - "Timestamp": "2019-10-15T14:14:49.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.031400", + "Timestamp": "2024-05-16T09:32:30.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.990500", - "Timestamp": "2019-10-15T14:09:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.906400", + "Timestamp": "2024-05-16T09:32:30.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.990500", - "Timestamp": "2019-10-15T14:09:32.000Z" + "SpotPrice": "0.939800", + "Timestamp": "2024-05-16T09:32:30.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.384500", - "Timestamp": "2019-10-15T14:09:20.000Z" + "SpotPrice": "2.781400", + "Timestamp": "2024-05-16T09:32:29.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.384500", - "Timestamp": "2019-10-15T14:09:20.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.776400", + "Timestamp": "2024-05-16T09:32:29.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.254500", - "Timestamp": "2019-10-15T14:09:20.000Z" + "SpotPrice": "2.651400", + "Timestamp": "2024-05-16T09:32:29.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.254500", - "Timestamp": "2019-10-15T14:09:20.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.941000", + "Timestamp": "2024-05-16T09:32:27.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.852000", - "Timestamp": "2019-10-15T14:01:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.936000", + "Timestamp": "2024-05-16T09:32:27.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.495300", - "Timestamp": "2019-10-15T14:01:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.811000", + "Timestamp": "2024-05-16T09:32:27.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.614000", - "Timestamp": "2019-10-15T14:01:20.000Z" + "SpotPrice": "0.139000", + "Timestamp": "2024-05-16T09:32:27.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.257300", - "Timestamp": "2019-10-15T14:01:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135300", + "Timestamp": "2024-05-16T09:32:27.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.484000", - "Timestamp": "2019-10-15T14:01:20.000Z" + "SpotPrice": "0.079000", + "Timestamp": "2024-05-16T09:32:27.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.127300", - "Timestamp": "2019-10-15T14:01:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.981600", + "Timestamp": "2024-05-16T09:32:27.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091900", - "Timestamp": "2019-10-15T13:57:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.976600", + "Timestamp": "2024-05-16T09:32:27.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031900", - "Timestamp": "2019-10-15T13:57:32.000Z" + "SpotPrice": "1.851600", + "Timestamp": "2024-05-16T09:32:27.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.229900", - "Timestamp": "2019-10-15T13:49:31.000Z" + "SpotPrice": "3.846700", + "Timestamp": "2024-05-16T09:32:27.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.841700", + "Timestamp": "2024-05-16T09:32:27.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.169900", - "Timestamp": "2019-10-15T13:49:31.000Z" + "SpotPrice": "3.716700", + "Timestamp": "2024-05-16T09:32:27.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.196600", - "Timestamp": "2019-10-15T13:02:11.000Z" + "SpotPrice": "1.234400", + "Timestamp": "2024-05-16T09:32:27.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.196600", - "Timestamp": "2019-10-15T13:02:11.000Z" + "SpotPrice": "1.298300", + "Timestamp": "2024-05-16T09:32:27.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.196600", - "Timestamp": "2019-10-15T13:02:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.229400", + "Timestamp": "2024-05-16T09:32:27.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.066600", - "Timestamp": "2019-10-15T13:02:11.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.293300", + "Timestamp": "2024-05-16T09:32:27.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.066600", - "Timestamp": "2019-10-15T13:02:11.000Z" + "SpotPrice": "1.104400", + "Timestamp": "2024-05-16T09:32:27.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.066600", - "Timestamp": "2019-10-15T13:02:11.000Z" + "SpotPrice": "1.168300", + "Timestamp": "2024-05-16T09:32:27.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "p2.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.998800", - "Timestamp": "2019-10-15T13:01:59.000Z" + "SpotPrice": "2.910100", + "Timestamp": "2024-05-16T09:32:27.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.998800", - "Timestamp": "2019-10-15T13:01:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "p2.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.880100", + "Timestamp": "2024-05-16T09:32:27.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.998800", - "Timestamp": "2019-10-15T13:01:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.780100", + "Timestamp": "2024-05-16T09:32:27.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.868800", - "Timestamp": "2019-10-15T13:01:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.552400", + "Timestamp": "2024-05-16T09:32:26.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.868800", - "Timestamp": "2019-10-15T13:01:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.547400", + "Timestamp": "2024-05-16T09:32:26.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.868800", - "Timestamp": "2019-10-15T13:01:59.000Z" + "SpotPrice": "1.422400", + "Timestamp": "2024-05-16T09:32:26.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.metal", "ProductDescription": "Windows", - "SpotPrice": "0.024800", - "Timestamp": "2019-10-15T13:01:59.000Z" + "SpotPrice": "5.031800", + "Timestamp": "2024-05-16T09:32:25.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.024800", - "Timestamp": "2019-10-15T13:01:59.000Z" + "SpotPrice": "0.453800", + "Timestamp": "2024-05-16T09:32:24.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3a.small", - "ProductDescription": "Windows", - "SpotPrice": "0.024800", - "Timestamp": "2019-10-15T13:01:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.591700", + "Timestamp": "2024-05-16T09:32:22.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.340800", - "Timestamp": "2019-10-15T13:01:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.586700", + "Timestamp": "2024-05-16T09:32:22.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.340800", - "Timestamp": "2019-10-15T13:01:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.461700", + "Timestamp": "2024-05-16T09:32:22.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.340800", - "Timestamp": "2019-10-15T13:01:59.000Z" + "SpotPrice": "2.983600", + "Timestamp": "2024-05-16T09:32:22.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066400", - "Timestamp": "2019-10-15T13:01:55.000Z" - }, - { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3a.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066400", - "Timestamp": "2019-10-15T13:01:55.000Z" + "SpotPrice": "0.099600", + "Timestamp": "2024-05-16T09:32:21.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3a.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066400", - "Timestamp": "2019-10-15T13:01:55.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-16T09:32:21.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006400", - "Timestamp": "2019-10-15T13:01:55.000Z" + "SpotPrice": "0.039600", + "Timestamp": "2024-05-16T09:32:21.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3a.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006400", - "Timestamp": "2019-10-15T13:01:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.181800", + "Timestamp": "2024-05-16T09:32:21.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3a.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006400", - "Timestamp": "2019-10-15T13:01:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.068900", + "Timestamp": "2024-05-16T09:32:21.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126700", - "Timestamp": "2019-10-15T13:01:46.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.063900", + "Timestamp": "2024-05-16T09:32:21.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126700", - "Timestamp": "2019-10-15T13:01:46.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.938900", + "Timestamp": "2024-05-16T09:32:21.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126700", - "Timestamp": "2019-10-15T13:01:46.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Windows", + "SpotPrice": "8.584400", + "Timestamp": "2024-05-16T09:32:20.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-15T13:01:46.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225500", + "Timestamp": "2024-05-16T09:32:20.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-15T13:01:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.502100", + "Timestamp": "2024-05-16T09:32:19.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-15T13:01:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.350200", + "Timestamp": "2024-05-16T09:32:19.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.257000", - "Timestamp": "2019-10-15T13:01:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.222600", + "Timestamp": "2024-05-16T09:32:17.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.257000", - "Timestamp": "2019-10-15T13:01:36.000Z" + "SpotPrice": "0.486900", + "Timestamp": "2024-05-16T09:32:16.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.127000", - "Timestamp": "2019-10-15T13:01:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.456900", + "Timestamp": "2024-05-16T09:32:16.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.127000", - "Timestamp": "2019-10-15T13:01:36.000Z" - }, - { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.250700", - "Timestamp": "2019-10-15T13:01:29.000Z" + "SpotPrice": "0.356900", + "Timestamp": "2024-05-16T09:32:16.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.250700", - "Timestamp": "2019-10-15T13:01:29.000Z" + "SpotPrice": "7.425300", + "Timestamp": "2024-05-16T09:32:15.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.250700", - "Timestamp": "2019-10-15T13:01:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.248200", + "Timestamp": "2024-05-16T09:32:14.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.495000", - "Timestamp": "2019-10-15T13:01:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.243200", + "Timestamp": "2024-05-16T09:32:14.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.495000", - "Timestamp": "2019-10-15T13:01:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118200", + "Timestamp": "2024-05-16T09:32:14.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.495000", - "Timestamp": "2019-10-15T13:01:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.918600", + "Timestamp": "2024-05-16T09:32:13.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.010600", - "Timestamp": "2019-10-15T13:01:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.913600", + "Timestamp": "2024-05-16T09:32:13.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.010600", - "Timestamp": "2019-10-15T13:01:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.788600", + "Timestamp": "2024-05-16T09:32:13.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.metal-24xl", "ProductDescription": "Windows", - "SpotPrice": "4.010600", - "Timestamp": "2019-10-15T13:01:19.000Z" + "SpotPrice": "5.538300", + "Timestamp": "2024-05-16T09:32:12.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.196600", - "Timestamp": "2019-10-15T13:01:17.000Z" + "SpotPrice": "0.402300", + "Timestamp": "2024-05-16T09:32:11.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.196600", - "Timestamp": "2019-10-15T13:01:17.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372300", + "Timestamp": "2024-05-16T09:32:11.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.196600", - "Timestamp": "2019-10-15T13:01:17.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.272300", + "Timestamp": "2024-05-16T09:32:11.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.066600", - "Timestamp": "2019-10-15T13:01:17.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.149600", + "Timestamp": "2024-05-16T09:32:11.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.066600", - "Timestamp": "2019-10-15T13:01:17.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.144600", + "Timestamp": "2024-05-16T09:32:11.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.066600", - "Timestamp": "2019-10-15T13:01:17.000Z" + "SpotPrice": "1.019600", + "Timestamp": "2024-05-16T09:32:11.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.010600", - "Timestamp": "2019-10-15T13:01:11.000Z" + "SpotPrice": "3.044500", + "Timestamp": "2024-05-16T09:32:10.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.010600", - "Timestamp": "2019-10-15T13:01:11.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.564200", + "Timestamp": "2024-05-16T09:32:10.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.010600", - "Timestamp": "2019-10-15T13:01:11.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.559200", + "Timestamp": "2024-05-16T09:32:10.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.009900", - "Timestamp": "2019-10-15T12:42:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.434200", + "Timestamp": "2024-05-16T09:32:10.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.495300", - "Timestamp": "2019-10-15T12:04:27.000Z" + "SpotPrice": "5.282300", + "Timestamp": "2024-05-16T09:32:10.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.495300", - "Timestamp": "2019-10-15T12:04:27.000Z" + "SpotPrice": "2.662800", + "Timestamp": "2024-05-16T09:32:09.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.257300", - "Timestamp": "2019-10-15T12:04:27.000Z" + "SpotPrice": "1.265200", + "Timestamp": "2024-05-16T09:32:09.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.257300", - "Timestamp": "2019-10-15T12:04:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.260200", + "Timestamp": "2024-05-16T09:32:09.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.127300", - "Timestamp": "2019-10-15T12:04:27.000Z" + "SpotPrice": "1.135200", + "Timestamp": "2024-05-16T09:32:09.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.127300", - "Timestamp": "2019-10-15T12:04:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.267900", + "Timestamp": "2024-05-16T09:32:08.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.372400", - "Timestamp": "2019-10-15T12:01:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.339500", + "Timestamp": "2024-05-16T09:32:08.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.372400", - "Timestamp": "2019-10-15T12:01:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.470800", + "Timestamp": "2024-05-16T09:32:08.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.9xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.372400", - "Timestamp": "2019-10-15T12:01:43.000Z" + "SpotPrice": "0.837600", + "Timestamp": "2024-05-16T09:32:07.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.242400", - "Timestamp": "2019-10-15T12:01:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.807600", + "Timestamp": "2024-05-16T09:32:07.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.9xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.242400", - "Timestamp": "2019-10-15T12:01:43.000Z" + "SpotPrice": "0.707600", + "Timestamp": "2024-05-16T09:32:07.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.242400", - "Timestamp": "2019-10-15T12:01:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.166700", + "Timestamp": "2024-05-16T09:32:06.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.171800", - "Timestamp": "2019-10-15T12:01:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.788300", + "Timestamp": "2024-05-16T09:32:06.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.171800", - "Timestamp": "2019-10-15T12:01:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.530700", + "Timestamp": "2024-05-16T09:32:05.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.171800", - "Timestamp": "2019-10-15T12:01:34.000Z" + "SpotPrice": "0.639300", + "Timestamp": "2024-05-16T09:32:05.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.041800", - "Timestamp": "2019-10-15T12:01:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.634300", + "Timestamp": "2024-05-16T09:32:05.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.041800", - "Timestamp": "2019-10-15T12:01:34.000Z" + "SpotPrice": "0.509300", + "Timestamp": "2024-05-16T09:32:05.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.041800", - "Timestamp": "2019-10-15T12:01:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.461000", + "Timestamp": "2024-05-16T09:32:05.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.large", "ProductDescription": "Windows", - "SpotPrice": "10.929800", - "Timestamp": "2019-10-15T12:01:34.000Z" + "SpotPrice": "0.113600", + "Timestamp": "2024-05-16T09:32:03.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows", - "SpotPrice": "10.929800", - "Timestamp": "2019-10-15T12:01:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.854000", + "Timestamp": "2024-05-16T09:32:03.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows", - "SpotPrice": "10.929800", - "Timestamp": "2019-10-15T12:01:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.849000", + "Timestamp": "2024-05-16T09:32:03.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.978400", - "Timestamp": "2019-10-15T12:01:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.724000", + "Timestamp": "2024-05-16T09:32:03.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.large", "ProductDescription": "Windows", - "SpotPrice": "0.978400", - "Timestamp": "2019-10-15T12:01:01.000Z" + "SpotPrice": "0.122800", + "Timestamp": "2024-05-16T09:32:02.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.978400", - "Timestamp": "2019-10-15T12:01:01.000Z" + "SpotPrice": "5.204300", + "Timestamp": "2024-05-16T09:32:01.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.243500", - "Timestamp": "2019-10-15T11:26:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301100", + "Timestamp": "2024-05-16T09:32:01.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.201400", - "Timestamp": "2019-10-15T10:59:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296100", + "Timestamp": "2024-05-16T09:32:01.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.201400", - "Timestamp": "2019-10-15T10:59:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171100", + "Timestamp": "2024-05-16T09:32:01.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.201400", - "Timestamp": "2019-10-15T10:59:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.482500", + "Timestamp": "2024-05-16T09:32:00.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.002600", - "Timestamp": "2019-10-15T10:22:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.477500", + "Timestamp": "2024-05-16T09:32:00.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.352500", + "Timestamp": "2024-05-16T09:32:00.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.002600", - "Timestamp": "2019-10-15T10:22:06.000Z" + "SpotPrice": "5.512100", + "Timestamp": "2024-05-16T09:32:00.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "gr6.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.002600", - "Timestamp": "2019-10-15T10:22:06.000Z" + "SpotPrice": "1.774000", + "Timestamp": "2024-05-16T09:32:00.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.675400", - "Timestamp": "2019-10-15T10:11:57.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.762400", + "Timestamp": "2024-05-16T09:32:00.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.675400", - "Timestamp": "2019-10-15T10:11:57.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.379700", + "Timestamp": "2024-05-16T09:32:00.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.675400", - "Timestamp": "2019-10-15T10:11:57.000Z" + "SpotPrice": "2.206800", + "Timestamp": "2024-05-16T09:31:59.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.545400", - "Timestamp": "2019-10-15T10:11:57.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.176800", + "Timestamp": "2024-05-16T09:31:59.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.545400", - "Timestamp": "2019-10-15T10:11:57.000Z" + "SpotPrice": "2.076800", + "Timestamp": "2024-05-16T09:31:59.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.545400", - "Timestamp": "2019-10-15T10:11:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.558300", + "Timestamp": "2024-05-16T09:31:59.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t2.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.033800", - "Timestamp": "2019-10-15T10:03:13.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.553300", + "Timestamp": "2024-05-16T09:31:59.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t2.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.033800", - "Timestamp": "2019-10-15T10:03:13.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.428300", + "Timestamp": "2024-05-16T09:31:59.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t2.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.033800", - "Timestamp": "2019-10-15T10:03:13.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.073800", + "Timestamp": "2024-05-16T09:31:58.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.893600", - "Timestamp": "2019-10-15T10:02:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.068800", + "Timestamp": "2024-05-16T09:31:58.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.893600", - "Timestamp": "2019-10-15T10:02:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.943800", + "Timestamp": "2024-05-16T09:31:58.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.893600", - "Timestamp": "2019-10-15T10:02:08.000Z" + "SpotPrice": "1.270600", + "Timestamp": "2024-05-16T09:31:58.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.763600", - "Timestamp": "2019-10-15T10:02:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.265600", + "Timestamp": "2024-05-16T09:31:58.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.763600", - "Timestamp": "2019-10-15T10:02:08.000Z" + "SpotPrice": "1.140600", + "Timestamp": "2024-05-16T09:31:58.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.763600", - "Timestamp": "2019-10-15T10:02:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.002000", + "Timestamp": "2024-05-16T09:31:58.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093300", - "Timestamp": "2019-10-15T10:01:56.000Z" + "SpotPrice": "1.991200", + "Timestamp": "2024-05-16T09:31:57.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093300", - "Timestamp": "2019-10-15T10:01:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.961200", + "Timestamp": "2024-05-16T09:31:57.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093300", - "Timestamp": "2019-10-15T10:01:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.861200", + "Timestamp": "2024-05-16T09:31:57.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033300", - "Timestamp": "2019-10-15T10:01:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.049400", + "Timestamp": "2024-05-16T09:31:53.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033300", - "Timestamp": "2019-10-15T10:01:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.044400", + "Timestamp": "2024-05-16T09:31:53.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033300", - "Timestamp": "2019-10-15T10:01:56.000Z" + "SpotPrice": "2.919400", + "Timestamp": "2024-05-16T09:31:53.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.935200", - "Timestamp": "2019-10-15T10:01:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.705400", + "Timestamp": "2024-05-16T09:31:53.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.935200", - "Timestamp": "2019-10-15T10:01:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "h1.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.675400", + "Timestamp": "2024-05-16T09:31:53.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.935200", - "Timestamp": "2019-10-15T10:01:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.575400", + "Timestamp": "2024-05-16T09:31:53.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.075800", - "Timestamp": "2019-10-15T10:01:54.000Z" + "SpotPrice": "2.520200", + "Timestamp": "2024-05-16T09:31:52.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.075800", - "Timestamp": "2019-10-15T10:01:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.515200", + "Timestamp": "2024-05-16T09:31:52.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.390200", + "Timestamp": "2024-05-16T09:31:52.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.metal-48xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.075800", - "Timestamp": "2019-10-15T10:01:54.000Z" + "SpotPrice": "2.713800", + "Timestamp": "2024-05-16T09:31:52.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t2.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.015800", - "Timestamp": "2019-10-15T10:01:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.708800", + "Timestamp": "2024-05-16T09:31:52.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.015800", - "Timestamp": "2019-10-15T10:01:54.000Z" + "SpotPrice": "2.583800", + "Timestamp": "2024-05-16T09:31:52.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t2.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.015800", - "Timestamp": "2019-10-15T10:01:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165000", + "Timestamp": "2024-05-16T09:31:50.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.971600", - "Timestamp": "2019-10-15T10:01:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161000", + "Timestamp": "2024-05-16T09:31:50.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.971600", - "Timestamp": "2019-10-15T10:01:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T09:31:50.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.9xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.971600", - "Timestamp": "2019-10-15T10:01:36.000Z" + "SpotPrice": "1.893500", + "Timestamp": "2024-05-16T09:31:50.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.396600", - "Timestamp": "2019-10-15T10:01:30.000Z" + "SpotPrice": "1.497300", + "Timestamp": "2024-05-16T09:31:48.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.396600", - "Timestamp": "2019-10-15T10:01:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.492300", + "Timestamp": "2024-05-16T09:31:48.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.396600", - "Timestamp": "2019-10-15T10:01:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.367300", + "Timestamp": "2024-05-16T09:31:48.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.266600", - "Timestamp": "2019-10-15T10:01:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.440100", + "Timestamp": "2024-05-16T09:31:46.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.266600", - "Timestamp": "2019-10-15T10:01:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.435100", + "Timestamp": "2024-05-16T09:31:46.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.266600", - "Timestamp": "2019-10-15T10:01:30.000Z" + "SpotPrice": "1.310100", + "Timestamp": "2024-05-16T09:31:46.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.857200", - "Timestamp": "2019-10-15T10:01:20.000Z" + "SpotPrice": "0.177400", + "Timestamp": "2024-05-16T09:31:45.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.857200", - "Timestamp": "2019-10-15T10:01:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173700", + "Timestamp": "2024-05-16T09:31:45.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.857200", - "Timestamp": "2019-10-15T10:01:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.117400", + "Timestamp": "2024-05-16T09:31:45.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.727200", - "Timestamp": "2019-10-15T10:01:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121900", + "Timestamp": "2024-05-16T09:31:44.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.727200", - "Timestamp": "2019-10-15T10:01:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117900", + "Timestamp": "2024-05-16T09:31:44.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.727200", - "Timestamp": "2019-10-15T10:01:20.000Z" + "SpotPrice": "0.061900", + "Timestamp": "2024-05-16T09:31:44.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125300", - "Timestamp": "2019-10-15T10:01:13.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.377000", + "Timestamp": "2024-05-16T09:31:43.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125300", - "Timestamp": "2019-10-15T10:01:13.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372000", + "Timestamp": "2024-05-16T09:31:43.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125300", - "Timestamp": "2019-10-15T10:01:13.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.247000", + "Timestamp": "2024-05-16T09:31:43.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.059700", - "Timestamp": "2019-10-15T09:02:27.000Z" + "SpotPrice": "0.215200", + "Timestamp": "2024-05-16T09:31:43.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t2.large", - "ProductDescription": "Windows", - "SpotPrice": "0.059700", - "Timestamp": "2019-10-15T09:02:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.367900", + "Timestamp": "2024-05-16T09:31:43.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t2.large", - "ProductDescription": "Windows", - "SpotPrice": "0.059700", - "Timestamp": "2019-10-15T09:02:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.362900", + "Timestamp": "2024-05-16T09:31:43.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t2.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091700", - "Timestamp": "2019-10-15T09:02:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.237900", + "Timestamp": "2024-05-16T09:31:43.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091700", - "Timestamp": "2019-10-15T09:02:09.000Z" + "SpotPrice": "0.115400", + "Timestamp": "2024-05-16T09:31:42.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t2.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091700", - "Timestamp": "2019-10-15T09:02:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T09:31:42.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031700", - "Timestamp": "2019-10-15T09:02:09.000Z" + "SpotPrice": "0.055400", + "Timestamp": "2024-05-16T09:31:42.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t2.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031700", - "Timestamp": "2019-10-15T09:02:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.331600", + "Timestamp": "2024-05-16T09:31:42.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t2.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031700", - "Timestamp": "2019-10-15T09:02:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301600", + "Timestamp": "2024-05-16T09:31:42.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.489200", - "Timestamp": "2019-10-15T09:01:57.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.201600", + "Timestamp": "2024-05-16T09:31:42.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.489200", - "Timestamp": "2019-10-15T09:01:57.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T09:31:42.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.489200", - "Timestamp": "2019-10-15T09:01:57.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143000", + "Timestamp": "2024-05-16T09:31:42.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.251200", - "Timestamp": "2019-10-15T09:01:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043000", + "Timestamp": "2024-05-16T09:31:42.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.251200", - "Timestamp": "2019-10-15T09:01:01.000Z" + "SpotPrice": "0.137300", + "Timestamp": "2024-05-16T09:31:41.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.251200", - "Timestamp": "2019-10-15T09:01:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133300", + "Timestamp": "2024-05-16T09:31:41.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.121200", - "Timestamp": "2019-10-15T09:01:01.000Z" + "SpotPrice": "0.077300", + "Timestamp": "2024-05-16T09:31:41.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.121200", - "Timestamp": "2019-10-15T09:01:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.995400", + "Timestamp": "2024-05-16T09:31:41.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.121200", - "Timestamp": "2019-10-15T09:01:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.990400", + "Timestamp": "2024-05-16T09:31:41.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.729800", - "Timestamp": "2019-10-15T08:17:18.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.865400", + "Timestamp": "2024-05-16T09:31:41.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.729800", - "Timestamp": "2019-10-15T08:17:18.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.997900", + "Timestamp": "2024-05-16T09:31:41.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.729800", - "Timestamp": "2019-10-15T08:17:18.000Z" + "SpotPrice": "0.370500", + "Timestamp": "2024-05-16T09:31:40.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.599800", - "Timestamp": "2019-10-15T08:17:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.365500", + "Timestamp": "2024-05-16T09:31:40.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.599800", - "Timestamp": "2019-10-15T08:17:18.000Z" + "SpotPrice": "0.240500", + "Timestamp": "2024-05-16T09:31:40.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.599800", - "Timestamp": "2019-10-15T08:17:18.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.000300", + "Timestamp": "2024-05-16T09:31:39.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.148100", - "Timestamp": "2019-10-15T08:01:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.873400", + "Timestamp": "2024-05-16T09:31:39.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "im4gn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.148100", - "Timestamp": "2019-10-15T08:01:25.000Z" + "SpotPrice": "0.249500", + "Timestamp": "2024-05-16T09:31:39.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.018100", - "Timestamp": "2019-10-15T08:01:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.244500", + "Timestamp": "2024-05-16T09:31:39.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "im4gn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.018100", - "Timestamp": "2019-10-15T08:01:25.000Z" + "SpotPrice": "0.119500", + "Timestamp": "2024-05-16T09:31:39.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.metal", "ProductDescription": "Windows", - "SpotPrice": "3.962100", - "Timestamp": "2019-10-15T08:00:34.000Z" + "SpotPrice": "2.766800", + "Timestamp": "2024-05-16T09:31:39.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.large", "ProductDescription": "Windows", - "SpotPrice": "3.962100", - "Timestamp": "2019-10-15T08:00:34.000Z" + "SpotPrice": "0.117100", + "Timestamp": "2024-05-16T09:31:38.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.564400", - "Timestamp": "2019-10-15T07:01:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423200", + "Timestamp": "2024-05-16T09:31:37.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.564400", - "Timestamp": "2019-10-15T07:01:27.000Z" + "SpotPrice": "0.289000", + "Timestamp": "2024-05-16T09:31:36.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.564400", - "Timestamp": "2019-10-15T07:01:27.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.284000", + "Timestamp": "2024-05-16T09:31:36.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.434400", - "Timestamp": "2019-10-15T07:01:27.000Z" + "SpotPrice": "0.159000", + "Timestamp": "2024-05-16T09:31:36.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.434400", - "Timestamp": "2019-10-15T07:01:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.571400", + "Timestamp": "2024-05-16T09:31:35.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.434400", - "Timestamp": "2019-10-15T07:01:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.541400", + "Timestamp": "2024-05-16T09:31:35.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.170400", - "Timestamp": "2019-10-15T07:01:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.441400", + "Timestamp": "2024-05-16T09:31:35.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.170400", - "Timestamp": "2019-10-15T07:01:27.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.151900", + "Timestamp": "2024-05-16T09:31:35.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.170400", - "Timestamp": "2019-10-15T07:01:27.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.146900", + "Timestamp": "2024-05-16T09:31:35.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.263300", - "Timestamp": "2019-10-15T06:48:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.021900", + "Timestamp": "2024-05-16T09:31:35.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.263300", - "Timestamp": "2019-10-15T06:48:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.904100", + "Timestamp": "2024-05-16T09:31:35.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.263300", - "Timestamp": "2019-10-15T06:48:48.000Z" + "SpotPrice": "0.701400", + "Timestamp": "2024-05-16T09:31:34.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.133300", - "Timestamp": "2019-10-15T06:48:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.696400", + "Timestamp": "2024-05-16T09:31:34.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.133300", - "Timestamp": "2019-10-15T06:48:48.000Z" + "SpotPrice": "0.571400", + "Timestamp": "2024-05-16T09:31:34.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.133300", - "Timestamp": "2019-10-15T06:48:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.472700", + "Timestamp": "2024-05-16T09:31:33.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.501300", - "Timestamp": "2019-10-15T06:10:14.000Z" + "SpotPrice": "0.422100", + "Timestamp": "2024-05-16T09:31:32.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.501300", - "Timestamp": "2019-10-15T06:10:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T09:31:32.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.501300", - "Timestamp": "2019-10-15T06:10:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099700", + "Timestamp": "2024-05-16T09:31:32.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.231900", - "Timestamp": "2019-10-15T06:01:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043700", + "Timestamp": "2024-05-16T09:31:32.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.231900", - "Timestamp": "2019-10-15T06:01:58.000Z" + "SpotPrice": "0.746200", + "Timestamp": "2024-05-16T09:31:32.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.231900", - "Timestamp": "2019-10-15T06:01:58.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.741200", + "Timestamp": "2024-05-16T09:31:32.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.101900", - "Timestamp": "2019-10-15T06:01:58.000Z" + "SpotPrice": "0.616200", + "Timestamp": "2024-05-16T09:31:32.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.101900", - "Timestamp": "2019-10-15T06:01:58.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.566600", + "Timestamp": "2024-05-16T09:31:31.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.101900", - "Timestamp": "2019-10-15T06:01:58.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.561600", + "Timestamp": "2024-05-16T09:31:31.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.249100", - "Timestamp": "2019-10-15T06:01:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.436600", + "Timestamp": "2024-05-16T09:31:31.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.249100", - "Timestamp": "2019-10-15T06:01:57.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.357300", + "Timestamp": "2024-05-16T09:31:31.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.249100", - "Timestamp": "2019-10-15T06:01:57.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.352300", + "Timestamp": "2024-05-16T09:31:31.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.658000", - "Timestamp": "2019-10-15T06:01:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.227300", + "Timestamp": "2024-05-16T09:31:31.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.257300", - "Timestamp": "2019-10-15T06:01:51.000Z" - }, - { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.257300", - "Timestamp": "2019-10-15T06:01:51.000Z" - }, - { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.528000", - "Timestamp": "2019-10-15T06:01:51.000Z" + "SpotPrice": "0.616500", + "Timestamp": "2024-05-16T09:31:31.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.127300", - "Timestamp": "2019-10-15T06:01:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.611500", + "Timestamp": "2024-05-16T09:31:31.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.127300", - "Timestamp": "2019-10-15T06:01:51.000Z" - }, - { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.002600", - "Timestamp": "2019-10-15T06:01:49.000Z" + "SpotPrice": "0.486500", + "Timestamp": "2024-05-16T09:31:31.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.002600", - "Timestamp": "2019-10-15T06:01:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.882800", + "Timestamp": "2024-05-16T09:31:30.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.002600", - "Timestamp": "2019-10-15T06:01:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.852800", + "Timestamp": "2024-05-16T09:31:30.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.896000", - "Timestamp": "2019-10-15T06:01:46.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.752800", + "Timestamp": "2024-05-16T09:31:30.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.495300", - "Timestamp": "2019-10-15T06:01:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T09:31:30.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.495300", - "Timestamp": "2019-10-15T06:01:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T09:31:30.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.396600", - "Timestamp": "2019-10-15T06:01:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045800", + "Timestamp": "2024-05-16T09:31:30.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.396600", - "Timestamp": "2019-10-15T06:01:45.000Z" + "SpotPrice": "2.174300", + "Timestamp": "2024-05-16T09:31:30.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.266600", - "Timestamp": "2019-10-15T06:01:45.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.169300", + "Timestamp": "2024-05-16T09:31:30.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.266600", - "Timestamp": "2019-10-15T06:01:45.000Z" + "SpotPrice": "2.044300", + "Timestamp": "2024-05-16T09:31:30.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092100", - "Timestamp": "2019-10-15T06:01:34.000Z" - }, - { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032100", - "Timestamp": "2019-10-15T06:01:34.000Z" + "SpotPrice": "0.753900", + "Timestamp": "2024-05-16T09:31:28.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125300", - "Timestamp": "2019-10-15T04:38:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.748900", + "Timestamp": "2024-05-16T09:31:28.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006200", - "Timestamp": "2019-10-15T04:08:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.623900", + "Timestamp": "2024-05-16T09:31:28.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006200", - "Timestamp": "2019-10-15T04:08:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.645900", + "Timestamp": "2024-05-16T09:31:28.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006200", - "Timestamp": "2019-10-15T04:08:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.640900", + "Timestamp": "2024-05-16T09:31:28.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.015800", - "Timestamp": "2019-10-15T04:04:05.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.515900", + "Timestamp": "2024-05-16T09:31:28.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.015800", - "Timestamp": "2019-10-15T04:04:05.000Z" - }, - { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.729800", - "Timestamp": "2019-10-15T04:03:23.000Z" + "SpotPrice": "1.006800", + "Timestamp": "2024-05-16T09:31:28.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.729800", - "Timestamp": "2019-10-15T04:03:23.000Z" + "SpotPrice": "0.111700", + "Timestamp": "2024-05-16T09:31:27.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.599800", - "Timestamp": "2019-10-15T04:03:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-16T09:31:27.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.599800", - "Timestamp": "2019-10-15T04:03:23.000Z" - }, - { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3a.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061600", - "Timestamp": "2019-10-15T04:02:17.000Z" + "SpotPrice": "0.051700", + "Timestamp": "2024-05-16T09:31:27.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061600", - "Timestamp": "2019-10-15T04:02:17.000Z" + "SpotPrice": "1.053300", + "Timestamp": "2024-05-16T09:31:27.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3a.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061600", - "Timestamp": "2019-10-15T04:02:17.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.048300", + "Timestamp": "2024-05-16T09:31:27.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001600", - "Timestamp": "2019-10-15T04:02:17.000Z" + "SpotPrice": "0.923300", + "Timestamp": "2024-05-16T09:31:27.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3a.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001600", - "Timestamp": "2019-10-15T04:02:17.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122600", + "Timestamp": "2024-05-16T09:31:27.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3a.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001600", - "Timestamp": "2019-10-15T04:02:17.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118900", + "Timestamp": "2024-05-16T09:31:27.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.148100", - "Timestamp": "2019-10-15T04:02:07.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062600", + "Timestamp": "2024-05-16T09:31:27.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.148100", - "Timestamp": "2019-10-15T04:02:07.000Z" + "SpotPrice": "0.902800", + "Timestamp": "2024-05-16T09:31:27.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.148100", - "Timestamp": "2019-10-15T04:02:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.897800", + "Timestamp": "2024-05-16T09:31:27.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.018100", - "Timestamp": "2019-10-15T04:02:07.000Z" + "SpotPrice": "0.772800", + "Timestamp": "2024-05-16T09:31:27.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.018100", - "Timestamp": "2019-10-15T04:02:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.313200", + "Timestamp": "2024-05-16T09:31:26.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.018100", - "Timestamp": "2019-10-15T04:02:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.308200", + "Timestamp": "2024-05-16T09:31:26.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.194000", - "Timestamp": "2019-10-15T04:02:05.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.183200", + "Timestamp": "2024-05-16T09:31:26.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.396600", - "Timestamp": "2019-10-15T04:02:05.000Z" + "SpotPrice": "1.004800", + "Timestamp": "2024-05-16T09:31:26.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.064000", - "Timestamp": "2019-10-15T04:02:05.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.999800", + "Timestamp": "2024-05-16T09:31:26.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.266600", - "Timestamp": "2019-10-15T04:02:05.000Z" + "SpotPrice": "0.874800", + "Timestamp": "2024-05-16T09:31:26.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m4.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.800000", - "Timestamp": "2019-10-15T04:01:34.000Z" + "SpotPrice": "0.218900", + "Timestamp": "2024-05-16T09:31:25.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.002600", - "Timestamp": "2019-10-15T04:01:34.000Z" + "SpotPrice": "0.922200", + "Timestamp": "2024-05-16T09:31:25.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.434100", - "Timestamp": "2019-10-15T04:01:34.000Z" + "SpotPrice": "0.509100", + "Timestamp": "2024-05-16T09:31:25.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.434100", - "Timestamp": "2019-10-15T04:01:34.000Z" + "SpotPrice": "5.285700", + "Timestamp": "2024-05-16T09:29:21.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.434100", - "Timestamp": "2019-10-15T04:01:34.000Z" + "SpotPrice": "5.127800", + "Timestamp": "2024-05-16T09:29:21.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.831200", - "Timestamp": "2019-10-15T03:10:45.000Z" + "SpotPrice": "5.261900", + "Timestamp": "2024-05-16T09:29:21.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.831200", - "Timestamp": "2019-10-15T03:10:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.008700", + "Timestamp": "2024-05-16T09:29:21.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.593200", - "Timestamp": "2019-10-15T03:10:43.000Z" + "SpotPrice": "1.002800", + "Timestamp": "2024-05-16T09:29:21.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.593200", - "Timestamp": "2019-10-15T03:10:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.978700", + "Timestamp": "2024-05-16T09:29:21.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.463200", - "Timestamp": "2019-10-15T03:10:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.972800", + "Timestamp": "2024-05-16T09:29:21.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.463200", - "Timestamp": "2019-10-15T03:10:43.000Z" + "SpotPrice": "0.878700", + "Timestamp": "2024-05-16T09:29:21.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.867600", - "Timestamp": "2019-10-15T03:02:06.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.872800", + "Timestamp": "2024-05-16T09:29:21.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.867600", - "Timestamp": "2019-10-15T03:02:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.895400", + "Timestamp": "2024-05-16T09:17:38.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "h1.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.867600", - "Timestamp": "2019-10-15T03:02:06.000Z" - }, - { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.737600", - "Timestamp": "2019-10-15T03:02:06.000Z" + "SpotPrice": "0.432000", + "Timestamp": "2024-05-16T09:17:37.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.737600", - "Timestamp": "2019-10-15T03:02:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "h1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.402000", + "Timestamp": "2024-05-16T09:17:37.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "h1.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.737600", - "Timestamp": "2019-10-15T03:02:06.000Z" + "SpotPrice": "0.302000", + "Timestamp": "2024-05-16T09:17:37.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.681600", - "Timestamp": "2019-10-15T03:02:06.000Z" + "SpotPrice": "5.412000", + "Timestamp": "2024-05-16T09:17:35.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.681600", - "Timestamp": "2019-10-15T03:02:06.000Z" + "SpotPrice": "3.385600", + "Timestamp": "2024-05-16T09:17:35.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.681600", - "Timestamp": "2019-10-15T03:02:06.000Z" + "SpotPrice": "4.257800", + "Timestamp": "2024-05-16T09:17:34.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.micro", "ProductDescription": "Windows", - "SpotPrice": "0.122300", - "Timestamp": "2019-10-15T03:02:04.000Z" + "SpotPrice": "0.010400", + "Timestamp": "2024-05-16T09:17:34.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.122300", - "Timestamp": "2019-10-15T03:02:04.000Z" + "SpotPrice": "7.081500", + "Timestamp": "2024-05-16T09:17:34.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.122300", - "Timestamp": "2019-10-15T03:02:04.000Z" + "SpotPrice": "5.488900", + "Timestamp": "2024-05-16T09:17:33.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.015800", - "Timestamp": "2019-10-15T03:01:51.000Z" + "SpotPrice": "0.263200", + "Timestamp": "2024-05-16T09:17:31.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.015800", - "Timestamp": "2019-10-15T03:01:51.000Z" + "SpotPrice": "5.366800", + "Timestamp": "2024-05-16T09:17:28.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.015800", - "Timestamp": "2019-10-15T03:01:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.047200", + "Timestamp": "2024-05-16T09:17:28.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090300", - "Timestamp": "2019-10-15T03:01:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.042200", + "Timestamp": "2024-05-16T09:17:28.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030300", - "Timestamp": "2019-10-15T03:01:30.000Z" + "SpotPrice": "0.917200", + "Timestamp": "2024-05-16T09:17:28.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.870400", - "Timestamp": "2019-10-15T02:02:20.000Z" + "SpotPrice": "0.417700", + "Timestamp": "2024-05-16T09:17:28.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.870400", - "Timestamp": "2019-10-15T02:02:20.000Z" + "SpotPrice": "0.904400", + "Timestamp": "2024-05-16T09:17:28.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.584400", - "Timestamp": "2019-10-15T02:02:09.000Z" + "SpotPrice": "0.575500", + "Timestamp": "2024-05-16T09:17:27.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.584400", - "Timestamp": "2019-10-15T02:02:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.570500", + "Timestamp": "2024-05-16T09:17:27.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.454400", - "Timestamp": "2019-10-15T02:02:09.000Z" + "SpotPrice": "0.445500", + "Timestamp": "2024-05-16T09:17:27.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.046000", + "Timestamp": "2024-05-16T09:17:27.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.041000", + "Timestamp": "2024-05-16T09:17:27.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.454400", - "Timestamp": "2019-10-15T02:02:09.000Z" + "SpotPrice": "1.916000", + "Timestamp": "2024-05-16T09:17:27.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091800", - "Timestamp": "2019-10-15T01:02:07.000Z" + "SpotPrice": "3.685700", + "Timestamp": "2024-05-16T09:17:27.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091800", - "Timestamp": "2019-10-15T01:02:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.680700", + "Timestamp": "2024-05-16T09:17:27.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031800", - "Timestamp": "2019-10-15T01:02:07.000Z" + "SpotPrice": "3.555700", + "Timestamp": "2024-05-16T09:17:27.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109100", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031800", - "Timestamp": "2019-10-15T01:02:07.000Z" + "SpotPrice": "0.052800", + "Timestamp": "2024-05-16T09:17:26.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.123800", - "Timestamp": "2019-10-15T01:01:49.000Z" + "SpotPrice": "6.012300", + "Timestamp": "2024-05-16T09:17:26.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "p2.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.123800", - "Timestamp": "2019-10-15T01:01:49.000Z" + "SpotPrice": "5.709000", + "Timestamp": "2024-05-16T09:17:26.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123600", - "Timestamp": "2019-10-15T01:01:41.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.920500", + "Timestamp": "2024-05-16T09:17:25.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123600", - "Timestamp": "2019-10-15T01:01:41.000Z" + "SpotPrice": "0.866000", + "Timestamp": "2024-05-16T09:17:22.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123600", - "Timestamp": "2019-10-15T01:01:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.861000", + "Timestamp": "2024-05-16T09:17:22.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-15T01:01:41.000Z" + "SpotPrice": "0.736000", + "Timestamp": "2024-05-16T09:17:22.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-15T01:01:41.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.196800", + "Timestamp": "2024-05-16T09:17:22.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-15T01:01:41.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.298000", + "Timestamp": "2024-05-16T09:17:21.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247600", - "Timestamp": "2019-10-15T01:01:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.830700", + "Timestamp": "2024-05-16T09:17:20.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247600", - "Timestamp": "2019-10-15T01:01:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.825700", + "Timestamp": "2024-05-16T09:17:20.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247600", - "Timestamp": "2019-10-15T01:01:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.700700", + "Timestamp": "2024-05-16T09:17:20.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.005300", - "Timestamp": "2019-10-15T01:01:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.790700", + "Timestamp": "2024-05-16T09:17:20.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.005300", - "Timestamp": "2019-10-15T01:01:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.785700", + "Timestamp": "2024-05-16T09:17:20.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.663300", - "Timestamp": "2019-10-15T01:01:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.660700", + "Timestamp": "2024-05-16T09:17:20.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.663300", - "Timestamp": "2019-10-15T01:01:18.000Z" + "SpotPrice": "0.695400", + "Timestamp": "2024-05-16T09:17:20.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.533300", - "Timestamp": "2019-10-15T01:01:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.690400", + "Timestamp": "2024-05-16T09:17:20.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.533300", - "Timestamp": "2019-10-15T01:01:18.000Z" + "SpotPrice": "0.565400", + "Timestamp": "2024-05-16T09:17:20.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247600", - "Timestamp": "2019-10-15T00:01:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.309700", + "Timestamp": "2024-05-16T09:17:20.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247600", - "Timestamp": "2019-10-15T00:01:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.304700", + "Timestamp": "2024-05-16T09:17:20.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3a.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063200", - "Timestamp": "2019-10-15T00:01:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.179700", + "Timestamp": "2024-05-16T09:17:20.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3a.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063200", - "Timestamp": "2019-10-15T00:01:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.980500", + "Timestamp": "2024-05-16T09:17:19.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-2a", + "InstanceType": "im4gn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063200", - "Timestamp": "2019-10-15T00:01:31.000Z" + "SpotPrice": "1.051400", + "Timestamp": "2024-05-16T09:17:19.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003200", - "Timestamp": "2019-10-15T00:01:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.046400", + "Timestamp": "2024-05-16T09:17:19.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-2a", + "InstanceType": "im4gn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003200", - "Timestamp": "2019-10-15T00:01:31.000Z" + "SpotPrice": "0.921400", + "Timestamp": "2024-05-16T09:17:19.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003200", - "Timestamp": "2019-10-15T00:01:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.849200", + "Timestamp": "2024-05-16T09:17:17.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123600", - "Timestamp": "2019-10-15T00:01:16.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.213800", + "Timestamp": "2024-05-16T09:17:17.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123600", - "Timestamp": "2019-10-15T00:01:16.000Z" + "SpotPrice": "0.514900", + "Timestamp": "2024-05-16T09:17:15.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-15T00:01:16.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.509900", + "Timestamp": "2024-05-16T09:17:15.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-15T00:01:16.000Z" + "SpotPrice": "0.384900", + "Timestamp": "2024-05-16T09:17:15.000Z" }, { - "AvailabilityZone": "eu-west-3c", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.012400", - "Timestamp": "2019-10-15T00:01:05.000Z" + "SpotPrice": "2.642300", + "Timestamp": "2024-05-16T09:17:15.000Z" }, { - "AvailabilityZone": "eu-west-3b", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012400", - "Timestamp": "2019-10-15T00:01:05.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.524800", + "Timestamp": "2024-05-16T09:17:15.000Z" }, { - "AvailabilityZone": "eu-west-3a", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012400", - "Timestamp": "2019-10-15T00:01:05.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.519800", + "Timestamp": "2024-05-16T09:17:15.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.348400", - "Timestamp": "2019-10-16T02:54:37.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.394800", + "Timestamp": "2024-05-16T09:17:15.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4ad.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.348400", - "Timestamp": "2019-10-16T02:54:37.000Z" + "SpotPrice": "0.985400", + "Timestamp": "2024-05-16T09:17:15.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.348400", - "Timestamp": "2019-10-16T02:54:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.980400", + "Timestamp": "2024-05-16T09:17:15.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4ad.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.218400", - "Timestamp": "2019-10-16T02:54:37.000Z" + "SpotPrice": "0.855400", + "Timestamp": "2024-05-16T09:17:15.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.218400", - "Timestamp": "2019-10-16T02:54:37.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.331600", + "Timestamp": "2024-05-16T09:17:13.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.218400", - "Timestamp": "2019-10-16T02:54:37.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.326600", + "Timestamp": "2024-05-16T09:17:13.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.954400", - "Timestamp": "2019-10-16T02:54:37.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.201600", + "Timestamp": "2024-05-16T09:17:13.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.large", "ProductDescription": "Windows", - "SpotPrice": "0.954400", - "Timestamp": "2019-10-16T02:54:37.000Z" + "SpotPrice": "0.117300", + "Timestamp": "2024-05-16T09:17:12.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.954400", - "Timestamp": "2019-10-16T02:54:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.485600", + "Timestamp": "2024-05-16T09:17:12.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.119300", - "Timestamp": "2019-10-16T02:54:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.455600", + "Timestamp": "2024-05-16T09:17:12.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.119300", - "Timestamp": "2019-10-16T02:54:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.355600", + "Timestamp": "2024-05-16T09:17:12.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.119300", - "Timestamp": "2019-10-16T02:54:35.000Z" + "SpotPrice": "3.634600", + "Timestamp": "2024-05-16T09:17:11.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087300", - "Timestamp": "2019-10-16T02:54:35.000Z" + "SpotPrice": "1.330500", + "Timestamp": "2024-05-16T09:17:11.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087300", - "Timestamp": "2019-10-16T02:54:35.000Z" + "SpotPrice": "0.800400", + "Timestamp": "2024-05-16T09:17:11.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087300", - "Timestamp": "2019-10-16T02:54:35.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.325500", + "Timestamp": "2024-05-16T09:17:11.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027300", - "Timestamp": "2019-10-16T02:54:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.795400", + "Timestamp": "2024-05-16T09:17:11.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027300", - "Timestamp": "2019-10-16T02:54:35.000Z" + "SpotPrice": "1.200500", + "Timestamp": "2024-05-16T09:17:11.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027300", - "Timestamp": "2019-10-16T02:54:35.000Z" + "SpotPrice": "0.670400", + "Timestamp": "2024-05-16T09:17:11.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.370200", - "Timestamp": "2019-10-16T02:40:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.774300", + "Timestamp": "2024-05-16T09:17:10.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.370200", - "Timestamp": "2019-10-16T02:40:18.000Z" + "SpotPrice": "0.372100", + "Timestamp": "2024-05-16T09:17:10.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.370200", - "Timestamp": "2019-10-16T02:40:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.367100", + "Timestamp": "2024-05-16T09:17:10.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.240200", - "Timestamp": "2019-10-16T02:40:18.000Z" + "SpotPrice": "0.242100", + "Timestamp": "2024-05-16T09:17:10.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.240200", - "Timestamp": "2019-10-16T02:40:18.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.647400", + "Timestamp": "2024-05-16T09:17:09.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.240200", - "Timestamp": "2019-10-16T02:40:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.927700", + "Timestamp": "2024-05-16T09:17:09.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.047300", - "Timestamp": "2019-10-16T02:17:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.922700", + "Timestamp": "2024-05-16T09:17:09.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.047300", - "Timestamp": "2019-10-16T02:17:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.797700", + "Timestamp": "2024-05-16T09:17:09.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.047300", - "Timestamp": "2019-10-16T02:17:23.000Z" + "SpotPrice": "1.830900", + "Timestamp": "2024-05-16T09:17:09.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.917300", - "Timestamp": "2019-10-16T02:17:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.825900", + "Timestamp": "2024-05-16T09:17:09.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.917300", - "Timestamp": "2019-10-16T02:17:23.000Z" + "SpotPrice": "1.700900", + "Timestamp": "2024-05-16T09:17:09.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.917300", - "Timestamp": "2019-10-16T02:17:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.667400", + "Timestamp": "2024-05-16T09:17:09.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.147400", - "Timestamp": "2019-10-16T02:00:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.662400", + "Timestamp": "2024-05-16T09:17:09.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.147400", - "Timestamp": "2019-10-16T02:00:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.537400", + "Timestamp": "2024-05-16T09:17:09.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.147400", - "Timestamp": "2019-10-16T02:00:48.000Z" + "SpotPrice": "0.941300", + "Timestamp": "2024-05-16T09:17:09.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.321800", - "Timestamp": "2019-10-16T01:55:42.000Z" - }, - { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.191800", - "Timestamp": "2019-10-16T01:55:42.000Z" + "SpotPrice": "0.353300", + "Timestamp": "2024-05-16T09:17:06.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087300", - "Timestamp": "2019-10-16T01:48:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.348300", + "Timestamp": "2024-05-16T09:17:06.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087300", - "Timestamp": "2019-10-16T01:48:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.223300", + "Timestamp": "2024-05-16T09:17:06.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1e.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087300", - "Timestamp": "2019-10-16T01:48:27.000Z" + "SpotPrice": "2.245900", + "Timestamp": "2024-05-16T09:17:06.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027300", - "Timestamp": "2019-10-16T01:48:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.215900", + "Timestamp": "2024-05-16T09:17:06.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1e.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027300", - "Timestamp": "2019-10-16T01:48:27.000Z" + "SpotPrice": "2.115900", + "Timestamp": "2024-05-16T09:17:06.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027300", - "Timestamp": "2019-10-16T01:48:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.001400", + "Timestamp": "2024-05-16T09:17:03.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.281800", - "Timestamp": "2019-10-16T01:40:29.000Z" + "SpotPrice": "5.267100", + "Timestamp": "2024-05-16T09:17:01.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.281800", - "Timestamp": "2019-10-16T01:40:29.000Z" + "SpotPrice": "0.475700", + "Timestamp": "2024-05-16T09:16:59.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.281800", - "Timestamp": "2019-10-16T01:40:29.000Z" + "SpotPrice": "0.459300", + "Timestamp": "2024-05-16T09:16:59.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.157800", - "Timestamp": "2019-10-16T01:39:34.000Z" + "SpotPrice": "0.341700", + "Timestamp": "2024-05-16T09:16:58.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.157800", - "Timestamp": "2019-10-16T01:39:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.336700", + "Timestamp": "2024-05-16T09:16:58.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.157800", - "Timestamp": "2019-10-16T01:39:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.211700", + "Timestamp": "2024-05-16T09:16:58.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.097800", - "Timestamp": "2019-10-16T01:39:34.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.897900", + "Timestamp": "2024-05-16T09:16:56.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.097800", - "Timestamp": "2019-10-16T01:39:34.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.483500", + "Timestamp": "2024-05-16T09:16:54.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.097800", - "Timestamp": "2019-10-16T01:39:34.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.478500", + "Timestamp": "2024-05-16T09:16:54.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.117300", - "Timestamp": "2019-10-16T01:33:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.353500", + "Timestamp": "2024-05-16T09:16:54.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.117300", - "Timestamp": "2019-10-16T01:33:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.512600", + "Timestamp": "2024-05-16T09:16:53.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.117300", - "Timestamp": "2019-10-16T01:33:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.053500", + "Timestamp": "2024-05-16T09:16:52.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.057300", - "Timestamp": "2019-10-16T01:33:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.620300", + "Timestamp": "2024-05-16T09:16:52.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.057300", - "Timestamp": "2019-10-16T01:33:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.615300", + "Timestamp": "2024-05-16T09:16:52.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.057300", - "Timestamp": "2019-10-16T01:33:36.000Z" + "SpotPrice": "0.490300", + "Timestamp": "2024-05-16T09:16:52.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.metal", "ProductDescription": "Windows", - "SpotPrice": "2.928700", - "Timestamp": "2019-10-16T01:01:07.000Z" + "SpotPrice": "3.902900", + "Timestamp": "2024-05-16T09:16:51.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.metal", "ProductDescription": "Windows", - "SpotPrice": "5.856000", - "Timestamp": "2019-10-16T01:01:07.000Z" + "SpotPrice": "8.111500", + "Timestamp": "2024-05-16T09:16:49.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.928700", - "Timestamp": "2019-10-16T01:01:07.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.175500", + "Timestamp": "2024-05-16T09:16:48.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.850700", - "Timestamp": "2019-10-16T00:59:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.170500", + "Timestamp": "2024-05-16T09:16:48.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.778000", - "Timestamp": "2019-10-16T00:59:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.045500", + "Timestamp": "2024-05-16T09:16:48.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.850700", - "Timestamp": "2019-10-16T00:59:28.000Z" + "SpotPrice": "3.798100", + "Timestamp": "2024-05-16T09:16:48.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.720700", - "Timestamp": "2019-10-16T00:59:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.793100", + "Timestamp": "2024-05-16T09:16:48.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.648000", - "Timestamp": "2019-10-16T00:59:28.000Z" + "SpotPrice": "3.668100", + "Timestamp": "2024-05-16T09:16:48.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.720700", - "Timestamp": "2019-10-16T00:59:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.117400", + "Timestamp": "2024-05-16T09:16:47.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.726400", - "Timestamp": "2019-10-16T00:41:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.318700", + "Timestamp": "2024-05-16T09:16:47.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.726400", - "Timestamp": "2019-10-16T00:41:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.313700", + "Timestamp": "2024-05-16T09:16:47.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.188700", + "Timestamp": "2024-05-16T09:16:47.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.726400", - "Timestamp": "2019-10-16T00:41:57.000Z" + "SpotPrice": "1.805500", + "Timestamp": "2024-05-16T09:16:47.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.091000", - "Timestamp": "2019-10-15T23:46:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.589700", + "Timestamp": "2024-05-16T09:16:46.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.091000", - "Timestamp": "2019-10-15T23:46:48.000Z" + "SpotPrice": "1.318200", + "Timestamp": "2024-05-16T09:16:46.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.091000", - "Timestamp": "2019-10-15T23:46:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.313200", + "Timestamp": "2024-05-16T09:16:46.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.961000", - "Timestamp": "2019-10-15T23:46:48.000Z" + "SpotPrice": "1.188200", + "Timestamp": "2024-05-16T09:16:46.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.961000", - "Timestamp": "2019-10-15T23:46:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.918000", + "Timestamp": "2024-05-16T09:16:45.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.961000", - "Timestamp": "2019-10-15T23:46:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.467900", + "Timestamp": "2024-05-16T09:16:45.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090000", - "Timestamp": "2019-10-15T23:46:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.061600", + "Timestamp": "2024-05-16T09:16:45.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090000", - "Timestamp": "2019-10-15T23:46:15.000Z" + "SpotPrice": "2.216300", + "Timestamp": "2024-05-16T09:16:44.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090000", - "Timestamp": "2019-10-15T23:46:15.000Z" + "SpotPrice": "2.212100", + "Timestamp": "2024-05-16T09:16:44.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030000", - "Timestamp": "2019-10-15T23:46:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.186300", + "Timestamp": "2024-05-16T09:16:44.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.182100", + "Timestamp": "2024-05-16T09:16:44.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030000", - "Timestamp": "2019-10-15T23:46:15.000Z" + "SpotPrice": "2.086300", + "Timestamp": "2024-05-16T09:16:44.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030000", - "Timestamp": "2019-10-15T23:46:15.000Z" + "SpotPrice": "2.082100", + "Timestamp": "2024-05-16T09:16:44.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.377000", - "Timestamp": "2019-10-15T23:45:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.530800", + "Timestamp": "2024-05-16T09:16:44.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.377000", - "Timestamp": "2019-10-15T23:45:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.525800", + "Timestamp": "2024-05-16T09:16:44.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.377000", - "Timestamp": "2019-10-15T23:45:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.400800", + "Timestamp": "2024-05-16T09:16:44.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.122000", - "Timestamp": "2019-10-15T23:45:20.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.600800", + "Timestamp": "2024-05-16T09:16:43.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.122000", - "Timestamp": "2019-10-15T23:45:20.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.595800", + "Timestamp": "2024-05-16T09:16:43.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.122000", - "Timestamp": "2019-10-15T23:45:20.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.470800", + "Timestamp": "2024-05-16T09:16:43.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.254400", - "Timestamp": "2019-10-15T23:42:46.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.467700", + "Timestamp": "2024-05-16T09:16:43.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.254400", - "Timestamp": "2019-10-15T23:42:46.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.462700", + "Timestamp": "2024-05-16T09:16:43.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.254400", - "Timestamp": "2019-10-15T23:42:46.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.337700", + "Timestamp": "2024-05-16T09:16:43.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.348400", - "Timestamp": "2019-10-15T23:28:30.000Z" + "SpotPrice": "0.468600", + "Timestamp": "2024-05-16T09:16:42.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.348400", - "Timestamp": "2019-10-15T23:28:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.438600", + "Timestamp": "2024-05-16T09:16:42.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.338600", + "Timestamp": "2024-05-16T09:16:42.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.348400", - "Timestamp": "2019-10-15T23:28:30.000Z" + "SpotPrice": "0.093100", + "Timestamp": "2024-05-16T09:16:40.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.218400", - "Timestamp": "2019-10-15T23:28:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089100", + "Timestamp": "2024-05-16T09:16:40.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.218400", - "Timestamp": "2019-10-15T23:28:30.000Z" + "SpotPrice": "0.033100", + "Timestamp": "2024-05-16T09:16:40.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.218400", - "Timestamp": "2019-10-15T23:28:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.692000", + "Timestamp": "2024-05-16T09:16:40.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.861300", - "Timestamp": "2019-10-15T22:58:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.687000", + "Timestamp": "2024-05-16T09:16:40.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.562000", + "Timestamp": "2024-05-16T09:16:40.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.861300", - "Timestamp": "2019-10-15T22:58:23.000Z" + "SpotPrice": "4.105600", + "Timestamp": "2024-05-16T09:16:40.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.861300", - "Timestamp": "2019-10-15T22:58:23.000Z" + "SpotPrice": "5.398800", + "Timestamp": "2024-05-16T09:16:40.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.196200", - "Timestamp": "2019-10-15T22:35:08.000Z" + "SpotPrice": "0.927100", + "Timestamp": "2024-05-16T09:16:40.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.922100", + "Timestamp": "2024-05-16T09:16:40.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.066200", - "Timestamp": "2019-10-15T22:35:08.000Z" + "SpotPrice": "0.797100", + "Timestamp": "2024-05-16T09:16:40.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.682500", - "Timestamp": "2019-10-15T22:17:59.000Z" + "SpotPrice": "0.298700", + "Timestamp": "2024-05-16T09:16:40.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293700", + "Timestamp": "2024-05-16T09:16:40.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.552500", - "Timestamp": "2019-10-15T22:17:59.000Z" + "SpotPrice": "0.168700", + "Timestamp": "2024-05-16T09:16:40.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.610500", - "Timestamp": "2019-10-15T22:10:21.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.965600", + "Timestamp": "2024-05-16T09:16:39.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.610500", - "Timestamp": "2019-10-15T22:10:21.000Z" + "SpotPrice": "0.792100", + "Timestamp": "2024-05-16T09:16:39.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.610500", - "Timestamp": "2019-10-15T22:10:21.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.787100", + "Timestamp": "2024-05-16T09:16:39.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.480500", - "Timestamp": "2019-10-15T22:10:21.000Z" + "SpotPrice": "0.662100", + "Timestamp": "2024-05-16T09:16:39.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.480500", - "Timestamp": "2019-10-15T22:10:21.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.831700", + "Timestamp": "2024-05-16T09:16:39.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.480500", - "Timestamp": "2019-10-15T22:10:21.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.826700", + "Timestamp": "2024-05-16T09:16:39.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.952500", - "Timestamp": "2019-10-15T22:07:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.701700", + "Timestamp": "2024-05-16T09:16:39.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.952500", - "Timestamp": "2019-10-15T22:07:20.000Z" + "SpotPrice": "0.229700", + "Timestamp": "2024-05-16T09:16:39.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.122000", - "Timestamp": "2019-10-15T21:46:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141400", + "Timestamp": "2024-05-16T09:16:39.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.122000", - "Timestamp": "2019-10-15T21:46:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137700", + "Timestamp": "2024-05-16T09:16:39.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.122000", - "Timestamp": "2019-10-15T21:46:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081400", + "Timestamp": "2024-05-16T09:16:39.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090000", - "Timestamp": "2019-10-15T21:46:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215200", + "Timestamp": "2024-05-16T09:16:39.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090000", - "Timestamp": "2019-10-15T21:46:06.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.869600", + "Timestamp": "2024-05-16T09:16:38.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090000", - "Timestamp": "2019-10-15T21:46:06.000Z" + "SpotPrice": "0.339600", + "Timestamp": "2024-05-16T09:16:38.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030000", - "Timestamp": "2019-10-15T21:46:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334600", + "Timestamp": "2024-05-16T09:16:38.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030000", - "Timestamp": "2019-10-15T21:46:06.000Z" + "SpotPrice": "0.209600", + "Timestamp": "2024-05-16T09:16:38.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030000", - "Timestamp": "2019-10-15T21:46:06.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.911700", + "Timestamp": "2024-05-16T09:16:38.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.6xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.088700", - "Timestamp": "2019-10-15T21:42:27.000Z" + "SpotPrice": "0.897200", + "Timestamp": "2024-05-16T09:16:38.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.088700", - "Timestamp": "2019-10-15T21:42:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.906700", + "Timestamp": "2024-05-16T09:16:38.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.088700", - "Timestamp": "2019-10-15T21:42:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.892200", + "Timestamp": "2024-05-16T09:16:38.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.6xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.028700", - "Timestamp": "2019-10-15T21:42:27.000Z" + "SpotPrice": "0.781700", + "Timestamp": "2024-05-16T09:16:38.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.6xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.028700", - "Timestamp": "2019-10-15T21:42:27.000Z" + "SpotPrice": "0.767200", + "Timestamp": "2024-05-16T09:16:38.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.028700", - "Timestamp": "2019-10-15T21:42:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.496900", + "Timestamp": "2024-05-16T09:16:37.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.331200", - "Timestamp": "2019-10-15T21:42:24.000Z" + "SpotPrice": "0.473800", + "Timestamp": "2024-05-16T09:16:37.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.331200", - "Timestamp": "2019-10-15T21:42:24.000Z" + "SpotPrice": "1.890200", + "Timestamp": "2024-05-16T09:16:36.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.331200", - "Timestamp": "2019-10-15T21:42:24.000Z" + "SpotPrice": "1.928400", + "Timestamp": "2024-05-16T09:16:36.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "a1.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.805200", - "Timestamp": "2019-10-15T21:41:57.000Z" + "SpotPrice": "0.225700", + "Timestamp": "2024-05-16T09:16:36.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.805200", - "Timestamp": "2019-10-15T21:41:57.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "a1.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.220700", + "Timestamp": "2024-05-16T09:16:36.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "a1.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095700", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.805200", - "Timestamp": "2019-10-15T21:41:57.000Z" + "SpotPrice": "0.582200", + "Timestamp": "2024-05-16T09:16:36.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.675200", - "Timestamp": "2019-10-15T21:41:57.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.577200", + "Timestamp": "2024-05-16T09:16:36.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.675200", - "Timestamp": "2019-10-15T21:41:57.000Z" + "SpotPrice": "0.452200", + "Timestamp": "2024-05-16T09:16:36.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.675200", - "Timestamp": "2019-10-15T21:41:57.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.342600", + "Timestamp": "2024-05-16T09:16:36.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.120700", - "Timestamp": "2019-10-15T21:41:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.337600", + "Timestamp": "2024-05-16T09:16:36.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.120700", - "Timestamp": "2019-10-15T21:41:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212600", + "Timestamp": "2024-05-16T09:16:36.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.120700", - "Timestamp": "2019-10-15T21:41:37.000Z" + "SpotPrice": "7.203200", + "Timestamp": "2024-05-16T09:16:35.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.325600", - "Timestamp": "2019-10-15T21:40:07.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.861000", + "Timestamp": "2024-05-16T09:16:35.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.325600", - "Timestamp": "2019-10-15T21:40:07.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.559700", + "Timestamp": "2024-05-16T09:16:34.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.metal-32xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.325600", - "Timestamp": "2019-10-15T21:40:07.000Z" - }, - { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.195600", - "Timestamp": "2019-10-15T21:40:07.000Z" + "SpotPrice": "4.975500", + "Timestamp": "2024-05-16T09:16:34.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.195600", - "Timestamp": "2019-10-15T21:40:07.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.970500", + "Timestamp": "2024-05-16T09:16:34.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.metal-32xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.195600", - "Timestamp": "2019-10-15T21:40:07.000Z" - }, - { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.563600", - "Timestamp": "2019-10-15T21:39:24.000Z" + "SpotPrice": "4.845500", + "Timestamp": "2024-05-16T09:16:34.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.563600", - "Timestamp": "2019-10-15T21:39:24.000Z" + "SpotPrice": "5.572900", + "Timestamp": "2024-05-16T09:16:34.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.563600", - "Timestamp": "2019-10-15T21:39:24.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.271900", + "Timestamp": "2024-05-16T09:16:34.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.279900", - "Timestamp": "2019-10-15T21:28:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.266900", + "Timestamp": "2024-05-16T09:16:34.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.896000", - "Timestamp": "2019-10-15T21:23:24.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.141900", + "Timestamp": "2024-05-16T09:16:34.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.896000", - "Timestamp": "2019-10-15T21:23:24.000Z" + "SpotPrice": "0.846500", + "Timestamp": "2024-05-16T09:16:34.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.896000", - "Timestamp": "2019-10-15T21:23:24.000Z" - }, - { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.325300", - "Timestamp": "2019-10-15T21:03:08.000Z" - }, - { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.195300", - "Timestamp": "2019-10-15T21:03:08.000Z" + "SpotPrice": "5.923100", + "Timestamp": "2024-05-16T09:16:33.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.250100", - "Timestamp": "2019-10-15T20:54:35.000Z" + "SpotPrice": "0.408900", + "Timestamp": "2024-05-16T09:16:33.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.250100", - "Timestamp": "2019-10-15T20:54:35.000Z" + "SpotPrice": "0.310700", + "Timestamp": "2024-05-16T09:16:33.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.250100", - "Timestamp": "2019-10-15T20:54:35.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.403900", + "Timestamp": "2024-05-16T09:16:33.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.120100", - "Timestamp": "2019-10-15T20:54:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.305700", + "Timestamp": "2024-05-16T09:16:33.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.120100", - "Timestamp": "2019-10-15T20:54:35.000Z" + "SpotPrice": "0.278900", + "Timestamp": "2024-05-16T09:16:33.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.120100", - "Timestamp": "2019-10-15T20:54:35.000Z" + "SpotPrice": "0.180700", + "Timestamp": "2024-05-16T09:16:33.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.metal-48xl", "ProductDescription": "Windows", - "SpotPrice": "0.488100", - "Timestamp": "2019-10-15T20:54:35.000Z" + "SpotPrice": "10.756700", + "Timestamp": "2024-05-16T09:16:32.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.metal-48xl", "ProductDescription": "Windows", - "SpotPrice": "0.488100", - "Timestamp": "2019-10-15T20:54:35.000Z" + "SpotPrice": "10.836900", + "Timestamp": "2024-05-16T09:16:32.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.488100", - "Timestamp": "2019-10-15T20:54:35.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.569000", + "Timestamp": "2024-05-16T09:16:32.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.117300", - "Timestamp": "2019-10-15T20:00:35.000Z" + "SpotPrice": "1.700300", + "Timestamp": "2024-05-16T09:16:32.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.117300", - "Timestamp": "2019-10-15T20:00:35.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.564000", + "Timestamp": "2024-05-16T09:16:32.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.117300", - "Timestamp": "2019-10-15T20:00:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.695300", + "Timestamp": "2024-05-16T09:16:32.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.057300", - "Timestamp": "2019-10-15T20:00:35.000Z" + "SpotPrice": "1.439000", + "Timestamp": "2024-05-16T09:16:32.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.057300", - "Timestamp": "2019-10-15T20:00:35.000Z" + "SpotPrice": "1.570300", + "Timestamp": "2024-05-16T09:16:32.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.181800", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.178100", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.057300", - "Timestamp": "2019-10-15T20:00:35.000Z" + "SpotPrice": "0.121800", + "Timestamp": "2024-05-16T09:16:32.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.241300", - "Timestamp": "2019-10-15T19:59:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.988000", + "Timestamp": "2024-05-16T09:16:32.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.241300", - "Timestamp": "2019-10-15T19:59:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.983000", + "Timestamp": "2024-05-16T09:16:32.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.241300", - "Timestamp": "2019-10-15T19:59:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.858000", + "Timestamp": "2024-05-16T09:16:32.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.482700", - "Timestamp": "2019-10-15T19:43:36.000Z" + "SpotPrice": "0.843600", + "Timestamp": "2024-05-16T09:16:32.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.114800", - "Timestamp": "2019-10-15T19:31:26.000Z" + "SpotPrice": "2.457500", + "Timestamp": "2024-05-16T09:16:30.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.054800", - "Timestamp": "2019-10-15T19:31:26.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.452500", + "Timestamp": "2024-05-16T09:16:30.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.571400", - "Timestamp": "2019-10-15T19:23:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.327500", + "Timestamp": "2024-05-16T09:16:30.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.571400", - "Timestamp": "2019-10-15T19:23:57.000Z" + "SpotPrice": "0.495000", + "Timestamp": "2024-05-16T09:16:30.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.441400", - "Timestamp": "2019-10-15T19:23:57.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.490000", + "Timestamp": "2024-05-16T09:16:30.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.441400", - "Timestamp": "2019-10-15T19:23:57.000Z" + "SpotPrice": "0.365000", + "Timestamp": "2024-05-16T09:16:30.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.857400", - "Timestamp": "2019-10-15T19:23:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.716800", + "Timestamp": "2024-05-16T09:16:30.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.857400", - "Timestamp": "2019-10-15T19:23:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.711800", + "Timestamp": "2024-05-16T09:16:30.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.250900", - "Timestamp": "2019-10-15T19:10:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.586800", + "Timestamp": "2024-05-16T09:16:30.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.large", "ProductDescription": "Windows", - "SpotPrice": "0.250900", - "Timestamp": "2019-10-15T19:10:23.000Z" + "SpotPrice": "0.120000", + "Timestamp": "2024-05-16T09:16:30.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.250900", - "Timestamp": "2019-10-15T19:10:23.000Z" + "SpotPrice": "1.746900", + "Timestamp": "2024-05-16T09:16:28.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.233700", - "Timestamp": "2019-10-15T19:02:01.000Z" + "SpotPrice": "1.038200", + "Timestamp": "2024-05-16T09:16:28.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.233700", - "Timestamp": "2019-10-15T19:02:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.033200", + "Timestamp": "2024-05-16T09:16:28.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.233700", - "Timestamp": "2019-10-15T19:02:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.908200", + "Timestamp": "2024-05-16T09:16:28.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.103700", - "Timestamp": "2019-10-15T19:02:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.991500", + "Timestamp": "2024-05-16T09:16:28.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.103700", - "Timestamp": "2019-10-15T19:02:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.986500", + "Timestamp": "2024-05-16T09:16:28.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.103700", - "Timestamp": "2019-10-15T19:02:01.000Z" + "SpotPrice": "1.861500", + "Timestamp": "2024-05-16T09:16:28.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.912400", - "Timestamp": "2019-10-15T19:01:28.000Z" + "SpotPrice": "0.071800", + "Timestamp": "2024-05-16T09:16:26.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.912400", - "Timestamp": "2019-10-15T19:01:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042800", + "Timestamp": "2024-05-16T09:16:26.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.912400", - "Timestamp": "2019-10-15T19:01:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011800", + "Timestamp": "2024-05-16T09:16:26.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.782400", - "Timestamp": "2019-10-15T19:01:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.923600", + "Timestamp": "2024-05-16T09:16:25.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.782400", - "Timestamp": "2019-10-15T19:01:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.918600", + "Timestamp": "2024-05-16T09:16:25.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.782400", - "Timestamp": "2019-10-15T19:01:28.000Z" + "SpotPrice": "0.793600", + "Timestamp": "2024-05-16T09:16:25.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "t3.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012400", - "Timestamp": "2019-10-15T18:54:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.272300", + "Timestamp": "2024-05-16T09:16:24.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "t3.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012400", - "Timestamp": "2019-10-15T18:54:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "a1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267300", + "Timestamp": "2024-05-16T09:16:24.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "t3.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012400", - "Timestamp": "2019-10-15T18:54:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142300", + "Timestamp": "2024-05-16T09:16:24.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063200", - "Timestamp": "2019-10-15T18:54:36.000Z" + "SpotPrice": "0.569500", + "Timestamp": "2024-05-16T09:16:24.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063200", - "Timestamp": "2019-10-15T18:54:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.564500", + "Timestamp": "2024-05-16T09:16:24.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063200", - "Timestamp": "2019-10-15T18:54:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.439500", + "Timestamp": "2024-05-16T09:16:24.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003200", - "Timestamp": "2019-10-15T18:54:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174800", + "Timestamp": "2024-05-16T09:16:23.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003200", - "Timestamp": "2019-10-15T18:54:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170800", + "Timestamp": "2024-05-16T09:16:23.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003200", - "Timestamp": "2019-10-15T18:54:36.000Z" + "SpotPrice": "0.114800", + "Timestamp": "2024-05-16T09:16:23.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.119300", - "Timestamp": "2019-10-15T18:54:35.000Z" + "SpotPrice": "3.553500", + "Timestamp": "2024-05-16T09:16:23.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.119300", - "Timestamp": "2019-10-15T18:54:35.000Z" + "SpotPrice": "3.538500", + "Timestamp": "2024-05-16T09:16:23.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.119300", - "Timestamp": "2019-10-15T18:54:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.393300", + "Timestamp": "2024-05-16T09:16:11.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.128300", - "Timestamp": "2019-10-15T18:48:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.363300", + "Timestamp": "2024-05-16T09:16:11.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.128300", - "Timestamp": "2019-10-15T18:48:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.263300", + "Timestamp": "2024-05-16T09:16:11.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.128300", - "Timestamp": "2019-10-15T18:48:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.136000", + "Timestamp": "2024-05-16T09:16:10.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.091000", - "Timestamp": "2019-10-15T18:41:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.131000", + "Timestamp": "2024-05-16T09:16:10.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.961000", - "Timestamp": "2019-10-15T18:41:23.000Z" + "SpotPrice": "1.006000", + "Timestamp": "2024-05-16T09:16:10.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t2.small", "ProductDescription": "Windows", - "SpotPrice": "5.333300", - "Timestamp": "2019-10-15T18:18:30.000Z" + "SpotPrice": "0.012800", + "Timestamp": "2024-05-16T09:03:32.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.333300", - "Timestamp": "2019-10-15T18:18:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108900", + "Timestamp": "2024-05-16T09:02:35.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T09:02:35.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048900", + "Timestamp": "2024-05-16T09:02:35.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.333300", - "Timestamp": "2019-10-15T18:18:30.000Z" + "SpotPrice": "2.585500", + "Timestamp": "2024-05-16T09:02:34.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.047300", - "Timestamp": "2019-10-15T17:59:36.000Z" + "SpotPrice": "1.218400", + "Timestamp": "2024-05-16T09:02:32.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.047300", - "Timestamp": "2019-10-15T17:59:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.213400", + "Timestamp": "2024-05-16T09:02:32.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.088400", + "Timestamp": "2024-05-16T09:02:32.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "im4gn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.047300", - "Timestamp": "2019-10-15T17:59:36.000Z" + "SpotPrice": "0.485100", + "Timestamp": "2024-05-16T09:02:32.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.917300", - "Timestamp": "2019-10-15T17:59:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.480100", + "Timestamp": "2024-05-16T09:02:32.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "im4gn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.917300", - "Timestamp": "2019-10-15T17:59:36.000Z" + "SpotPrice": "0.355100", + "Timestamp": "2024-05-16T09:02:32.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.917300", - "Timestamp": "2019-10-15T17:59:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261700", + "Timestamp": "2024-05-16T09:02:32.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.294800", - "Timestamp": "2019-10-15T17:55:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.231700", + "Timestamp": "2024-05-16T09:02:32.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.294800", - "Timestamp": "2019-10-15T17:55:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131700", + "Timestamp": "2024-05-16T09:02:32.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.294800", - "Timestamp": "2019-10-15T17:55:26.000Z" + "SpotPrice": "0.254700", + "Timestamp": "2024-05-16T09:02:31.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.091000", - "Timestamp": "2019-10-15T17:54:35.000Z" + "SpotPrice": "1.018700", + "Timestamp": "2024-05-16T09:02:29.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.091000", - "Timestamp": "2019-10-15T17:54:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.013700", + "Timestamp": "2024-05-16T09:02:29.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.091000", - "Timestamp": "2019-10-15T17:54:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.888700", + "Timestamp": "2024-05-16T09:02:29.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.961000", - "Timestamp": "2019-10-15T17:54:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.792700", + "Timestamp": "2024-05-16T09:02:28.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.961000", - "Timestamp": "2019-10-15T17:54:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.787700", + "Timestamp": "2024-05-16T09:02:28.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.961000", - "Timestamp": "2019-10-15T17:54:35.000Z" + "SpotPrice": "0.662700", + "Timestamp": "2024-05-16T09:02:28.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.905000", - "Timestamp": "2019-10-15T17:54:35.000Z" + "SpotPrice": "3.357300", + "Timestamp": "2024-05-16T09:02:25.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.905000", - "Timestamp": "2019-10-15T17:54:35.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.843500", + "Timestamp": "2024-05-16T09:02:23.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.905000", - "Timestamp": "2019-10-15T17:54:35.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.838500", + "Timestamp": "2024-05-16T09:02:23.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.954400", - "Timestamp": "2019-10-15T17:54:35.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.713500", + "Timestamp": "2024-05-16T09:02:23.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.954400", - "Timestamp": "2019-10-15T17:54:35.000Z" + "SpotPrice": "2.681600", + "Timestamp": "2024-05-16T09:02:20.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.954400", - "Timestamp": "2019-10-15T17:54:35.000Z" + "SpotPrice": "3.578300", + "Timestamp": "2024-05-16T09:02:20.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.370200", - "Timestamp": "2019-10-15T17:41:44.000Z" + "SpotPrice": "0.653500", + "Timestamp": "2024-05-16T09:02:19.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.370200", - "Timestamp": "2019-10-15T17:41:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.648500", + "Timestamp": "2024-05-16T09:02:19.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.240200", - "Timestamp": "2019-10-15T17:41:44.000Z" + "SpotPrice": "0.523500", + "Timestamp": "2024-05-16T09:02:19.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.240200", - "Timestamp": "2019-10-15T17:41:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.331700", + "Timestamp": "2024-05-16T09:02:18.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.239200", - "Timestamp": "2019-10-15T17:21:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.507200", + "Timestamp": "2024-05-16T09:02:16.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.239200", - "Timestamp": "2019-10-15T17:21:40.000Z" + "SpotPrice": "0.775000", + "Timestamp": "2024-05-16T09:02:15.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.239200", - "Timestamp": "2019-10-15T17:21:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.770000", + "Timestamp": "2024-05-16T09:02:15.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.109200", - "Timestamp": "2019-10-15T17:21:40.000Z" + "SpotPrice": "0.645000", + "Timestamp": "2024-05-16T09:02:15.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.109200", - "Timestamp": "2019-10-15T17:21:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.212300", + "Timestamp": "2024-05-16T09:02:13.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.207300", + "Timestamp": "2024-05-16T09:02:13.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.109200", - "Timestamp": "2019-10-15T17:21:40.000Z" + "SpotPrice": "2.082300", + "Timestamp": "2024-05-16T09:02:13.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.477200", - "Timestamp": "2019-10-15T17:21:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.743200", + "Timestamp": "2024-05-16T09:02:12.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.477200", - "Timestamp": "2019-10-15T17:21:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.738200", + "Timestamp": "2024-05-16T09:02:12.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.477200", - "Timestamp": "2019-10-15T17:21:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.613200", + "Timestamp": "2024-05-16T09:02:12.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.269400", - "Timestamp": "2019-10-15T17:20:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.476600", + "Timestamp": "2024-05-16T09:02:11.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.269400", - "Timestamp": "2019-10-15T17:20:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.123200", + "Timestamp": "2024-05-16T09:02:10.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "a1.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.269400", - "Timestamp": "2019-10-15T17:20:39.000Z" + "SpotPrice": "0.200100", + "Timestamp": "2024-05-16T09:02:09.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.209400", - "Timestamp": "2019-10-15T17:20:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "a1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.195100", + "Timestamp": "2024-05-16T09:02:09.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "a1.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.209400", - "Timestamp": "2019-10-15T17:20:39.000Z" + "SpotPrice": "0.070100", + "Timestamp": "2024-05-16T09:02:09.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.209400", - "Timestamp": "2019-10-15T17:20:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.725800", + "Timestamp": "2024-05-16T09:02:08.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.393400", - "Timestamp": "2019-10-15T17:19:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.720800", + "Timestamp": "2024-05-16T09:02:08.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.393400", - "Timestamp": "2019-10-15T17:19:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.595800", + "Timestamp": "2024-05-16T09:02:08.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.393400", - "Timestamp": "2019-10-15T17:19:42.000Z" + "SpotPrice": "0.470500", + "Timestamp": "2024-05-16T09:02:07.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.440400", - "Timestamp": "2019-10-15T17:13:51.000Z" + "SpotPrice": "0.904100", + "Timestamp": "2024-05-16T09:02:07.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.440400", - "Timestamp": "2019-10-15T17:13:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.899100", + "Timestamp": "2024-05-16T09:02:07.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.440400", - "Timestamp": "2019-10-15T17:13:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.774100", + "Timestamp": "2024-05-16T09:02:07.000Z" }, { - "AvailabilityZone": "eu-north-1c", + "AvailabilityZone": "us-east-2c", "InstanceType": "c5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.310400", - "Timestamp": "2019-10-15T17:13:51.000Z" + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.670000", + "Timestamp": "2024-05-16T09:02:07.000Z" }, { - "AvailabilityZone": "eu-north-1b", + "AvailabilityZone": "us-east-2c", "InstanceType": "c5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.310400", - "Timestamp": "2019-10-15T17:13:51.000Z" + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.640000", + "Timestamp": "2024-05-16T09:02:07.000Z" }, { - "AvailabilityZone": "eu-north-1a", + "AvailabilityZone": "us-east-2c", "InstanceType": "c5.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.310400", - "Timestamp": "2019-10-15T17:13:51.000Z" + "SpotPrice": "1.540000", + "Timestamp": "2024-05-16T09:02:07.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.850700", - "Timestamp": "2019-10-15T17:12:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.492400", + "Timestamp": "2024-05-16T09:02:06.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.850700", - "Timestamp": "2019-10-15T17:12:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.529300", + "Timestamp": "2024-05-16T09:02:04.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.3xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.850700", - "Timestamp": "2019-10-15T17:12:59.000Z" + "SpotPrice": "0.630300", + "Timestamp": "2024-05-16T09:02:04.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.720700", - "Timestamp": "2019-10-15T17:12:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.625300", + "Timestamp": "2024-05-16T09:02:04.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.3xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.720700", - "Timestamp": "2019-10-15T17:12:59.000Z" + "SpotPrice": "0.500300", + "Timestamp": "2024-05-16T09:02:04.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.720700", - "Timestamp": "2019-10-15T17:12:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079500", + "Timestamp": "2024-05-16T09:02:03.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "t3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.053500", - "Timestamp": "2019-10-15T17:06:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075800", + "Timestamp": "2024-05-16T09:02:03.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "t3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.053500", - "Timestamp": "2019-10-15T17:06:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019500", + "Timestamp": "2024-05-16T09:02:03.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.medium", "ProductDescription": "Windows", - "SpotPrice": "0.053500", - "Timestamp": "2019-10-15T17:06:36.000Z" - }, - { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.348400", - "Timestamp": "2019-10-15T17:06:27.000Z" + "SpotPrice": "0.060500", + "Timestamp": "2024-05-16T09:02:01.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.348400", - "Timestamp": "2019-10-15T17:06:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.867500", + "Timestamp": "2024-05-16T09:02:01.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.metal-48xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.348400", - "Timestamp": "2019-10-15T17:06:27.000Z" - }, - { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.218400", - "Timestamp": "2019-10-15T17:06:27.000Z" + "SpotPrice": "5.798300", + "Timestamp": "2024-05-16T09:01:59.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.218400", - "Timestamp": "2019-10-15T17:06:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.793300", + "Timestamp": "2024-05-16T09:01:59.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.218400", - "Timestamp": "2019-10-15T17:06:27.000Z" + "SpotPrice": "5.668300", + "Timestamp": "2024-05-16T09:01:59.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.818000", - "Timestamp": "2019-10-15T17:06:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.496800", + "Timestamp": "2024-05-16T09:01:56.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.818000", - "Timestamp": "2019-10-15T17:06:20.000Z" + "SpotPrice": "3.481600", + "Timestamp": "2024-05-16T09:01:55.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.818000", - "Timestamp": "2019-10-15T17:06:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.476600", + "Timestamp": "2024-05-16T09:01:55.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.688000", - "Timestamp": "2019-10-15T17:06:20.000Z" + "SpotPrice": "3.351600", + "Timestamp": "2024-05-16T09:01:55.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.688000", - "Timestamp": "2019-10-15T17:06:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.673200", + "Timestamp": "2024-05-16T09:01:55.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.688000", - "Timestamp": "2019-10-15T17:06:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.292500", + "Timestamp": "2024-05-16T09:01:55.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.085900", - "Timestamp": "2019-10-15T17:06:13.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.287500", + "Timestamp": "2024-05-16T09:01:55.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.085900", - "Timestamp": "2019-10-15T17:06:13.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.162500", + "Timestamp": "2024-05-16T09:01:55.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.085900", - "Timestamp": "2019-10-15T17:06:13.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.209500", + "Timestamp": "2024-05-16T09:01:54.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "t3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.025900", - "Timestamp": "2019-10-15T17:06:13.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.363200", + "Timestamp": "2024-05-16T09:01:54.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "t3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.025900", - "Timestamp": "2019-10-15T17:06:13.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.358200", + "Timestamp": "2024-05-16T09:01:54.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.025900", - "Timestamp": "2019-10-15T17:06:13.000Z" + "SpotPrice": "0.233200", + "Timestamp": "2024-05-16T09:01:54.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.896000", - "Timestamp": "2019-10-15T17:06:10.000Z" + "SpotPrice": "1.775000", + "Timestamp": "2024-05-16T09:01:52.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.896000", - "Timestamp": "2019-10-15T17:06:10.000Z" + "SpotPrice": "0.444900", + "Timestamp": "2024-05-16T09:01:51.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.896000", - "Timestamp": "2019-10-15T17:06:10.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.611000", + "Timestamp": "2024-05-16T09:01:51.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.073000", - "Timestamp": "2019-10-15T17:06:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.606000", + "Timestamp": "2024-05-16T09:01:51.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.073000", - "Timestamp": "2019-10-15T17:06:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.481000", + "Timestamp": "2024-05-16T09:01:51.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.073000", - "Timestamp": "2019-10-15T17:06:09.000Z" + "SpotPrice": "2.307700", + "Timestamp": "2024-05-16T09:01:50.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.013000", - "Timestamp": "2019-10-15T17:06:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.302700", + "Timestamp": "2024-05-16T09:01:50.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.013000", - "Timestamp": "2019-10-15T17:06:09.000Z" + "SpotPrice": "2.177700", + "Timestamp": "2024-05-16T09:01:50.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.013000", - "Timestamp": "2019-10-15T17:06:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.261500", + "Timestamp": "2024-05-16T09:01:50.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "t3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.031400", - "Timestamp": "2019-10-15T17:06:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.256500", + "Timestamp": "2024-05-16T09:01:50.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "t3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.031400", - "Timestamp": "2019-10-15T17:06:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.131500", + "Timestamp": "2024-05-16T09:01:50.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.031400", - "Timestamp": "2019-10-15T17:06:07.000Z" - }, - { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.091000", - "Timestamp": "2019-10-15T17:06:04.000Z" - }, - { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.994000", - "Timestamp": "2019-10-15T17:06:04.000Z" + "SpotPrice": "0.219700", + "Timestamp": "2024-05-16T09:01:49.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.091000", - "Timestamp": "2019-10-15T17:06:04.000Z" + "SpotPrice": "0.392800", + "Timestamp": "2024-05-16T09:01:48.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.961000", - "Timestamp": "2019-10-15T17:06:04.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.387800", + "Timestamp": "2024-05-16T09:01:48.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.864000", - "Timestamp": "2019-10-15T17:06:04.000Z" + "SpotPrice": "0.262800", + "Timestamp": "2024-05-16T09:01:48.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.961000", - "Timestamp": "2019-10-15T17:06:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.419500", + "Timestamp": "2024-05-16T09:01:48.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.954400", - "Timestamp": "2019-10-15T17:06:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.414500", + "Timestamp": "2024-05-16T09:01:48.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.954400", - "Timestamp": "2019-10-15T17:06:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.289500", + "Timestamp": "2024-05-16T09:01:48.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.954400", - "Timestamp": "2019-10-15T17:06:01.000Z" + "SpotPrice": "0.864300", + "Timestamp": "2024-05-16T09:01:47.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.905000", - "Timestamp": "2019-10-15T17:05:56.000Z" + "SpotPrice": "0.873400", + "Timestamp": "2024-05-16T09:01:47.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "7.808000", - "Timestamp": "2019-10-15T17:05:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301200", + "Timestamp": "2024-05-16T09:01:47.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.905000", - "Timestamp": "2019-10-15T17:05:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296200", + "Timestamp": "2024-05-16T09:01:47.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.848000", - "Timestamp": "2019-10-15T17:02:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171200", + "Timestamp": "2024-05-16T09:01:47.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.482700", - "Timestamp": "2019-10-15T16:46:47.000Z" + "SpotPrice": "2.876100", + "Timestamp": "2024-05-16T09:01:46.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.482700", - "Timestamp": "2019-10-15T16:46:47.000Z" + "SpotPrice": "0.434300", + "Timestamp": "2024-05-16T09:01:46.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.482700", - "Timestamp": "2019-10-15T16:46:47.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294300", + "Timestamp": "2024-05-16T09:01:46.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.244700", - "Timestamp": "2019-10-15T16:45:59.000Z" + "SpotPrice": "0.295100", + "Timestamp": "2024-05-16T09:01:46.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.244700", - "Timestamp": "2019-10-15T16:45:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289300", + "Timestamp": "2024-05-16T09:01:46.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.244700", - "Timestamp": "2019-10-15T16:45:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.290100", + "Timestamp": "2024-05-16T09:01:46.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.114700", - "Timestamp": "2019-10-15T16:45:59.000Z" + "SpotPrice": "0.164300", + "Timestamp": "2024-05-16T09:01:46.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.114700", - "Timestamp": "2019-10-15T16:45:59.000Z" + "SpotPrice": "0.165100", + "Timestamp": "2024-05-16T09:01:46.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.114700", - "Timestamp": "2019-10-15T16:45:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.088300", + "Timestamp": "2024-05-16T09:01:46.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.818000", - "Timestamp": "2019-10-15T16:41:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.529400", + "Timestamp": "2024-05-16T09:01:46.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.818000", - "Timestamp": "2019-10-15T16:41:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225000", + "Timestamp": "2024-05-16T09:01:45.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.818000", - "Timestamp": "2019-10-15T16:41:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.233500", + "Timestamp": "2024-05-16T09:01:45.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.688000", - "Timestamp": "2019-10-15T16:41:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.472800", + "Timestamp": "2024-05-16T09:01:45.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.688000", - "Timestamp": "2019-10-15T16:41:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.467800", + "Timestamp": "2024-05-16T09:01:45.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.688000", - "Timestamp": "2019-10-15T16:41:23.000Z" + "SpotPrice": "3.342800", + "Timestamp": "2024-05-16T09:01:45.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087300", - "Timestamp": "2019-10-15T16:40:45.000Z" + "SpotPrice": "0.765700", + "Timestamp": "2024-05-16T09:01:45.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087300", - "Timestamp": "2019-10-15T16:40:45.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.760700", + "Timestamp": "2024-05-16T09:01:45.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.635700", + "Timestamp": "2024-05-16T09:01:45.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087300", - "Timestamp": "2019-10-15T16:40:45.000Z" + "SpotPrice": "0.597500", + "Timestamp": "2024-05-16T09:01:44.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027300", - "Timestamp": "2019-10-15T16:40:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.592500", + "Timestamp": "2024-05-16T09:01:44.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027300", - "Timestamp": "2019-10-15T16:40:45.000Z" + "SpotPrice": "0.467500", + "Timestamp": "2024-05-16T09:01:44.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027300", - "Timestamp": "2019-10-15T16:40:45.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.780000", + "Timestamp": "2024-05-16T09:01:44.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.119300", - "Timestamp": "2019-10-15T16:40:34.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.775000", + "Timestamp": "2024-05-16T09:01:44.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.119300", - "Timestamp": "2019-10-15T16:40:34.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.650000", + "Timestamp": "2024-05-16T09:01:44.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.119300", - "Timestamp": "2019-10-15T16:40:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120800", + "Timestamp": "2024-05-16T09:01:44.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.244100", - "Timestamp": "2019-10-15T16:39:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117100", + "Timestamp": "2024-05-16T09:01:44.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.244100", - "Timestamp": "2019-10-15T16:39:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060800", + "Timestamp": "2024-05-16T09:01:44.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.244100", - "Timestamp": "2019-10-15T16:39:25.000Z" + "SpotPrice": "1.020100", + "Timestamp": "2024-05-16T09:01:43.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120100", - "Timestamp": "2019-10-15T16:38:27.000Z" + "SpotPrice": "2.352600", + "Timestamp": "2024-05-16T09:01:41.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120100", - "Timestamp": "2019-10-15T16:38:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.347600", + "Timestamp": "2024-05-16T09:01:41.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120100", - "Timestamp": "2019-10-15T16:38:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.222600", + "Timestamp": "2024-05-16T09:01:41.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060100", - "Timestamp": "2019-10-15T16:38:27.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.286200", + "Timestamp": "2024-05-16T09:01:41.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060100", - "Timestamp": "2019-10-15T16:38:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T09:01:41.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060100", - "Timestamp": "2019-10-15T16:38:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101800", + "Timestamp": "2024-05-16T09:01:41.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.928700", - "Timestamp": "2019-10-15T16:36:52.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045800", + "Timestamp": "2024-05-16T09:01:41.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.928700", - "Timestamp": "2019-10-15T16:36:52.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120800", + "Timestamp": "2024-05-16T09:01:41.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.928700", - "Timestamp": "2019-10-15T16:36:52.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117100", + "Timestamp": "2024-05-16T09:01:41.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.505900", - "Timestamp": "2019-10-15T16:01:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060800", + "Timestamp": "2024-05-16T09:01:41.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.505900", - "Timestamp": "2019-10-15T16:01:07.000Z" + "SpotPrice": "1.004700", + "Timestamp": "2024-05-16T09:01:40.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.505900", - "Timestamp": "2019-10-15T16:01:07.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.999700", + "Timestamp": "2024-05-16T09:01:40.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.375900", - "Timestamp": "2019-10-15T16:01:07.000Z" + "SpotPrice": "0.874700", + "Timestamp": "2024-05-16T09:01:40.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.375900", - "Timestamp": "2019-10-15T16:01:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.323800", + "Timestamp": "2024-05-16T09:01:40.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.375900", - "Timestamp": "2019-10-15T16:01:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.318800", + "Timestamp": "2024-05-16T09:01:40.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.112800", - "Timestamp": "2019-10-15T15:59:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.193800", + "Timestamp": "2024-05-16T09:01:40.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.112800", - "Timestamp": "2019-10-15T15:59:23.000Z" + "SpotPrice": "0.156900", + "Timestamp": "2024-05-16T09:01:40.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.112800", - "Timestamp": "2019-10-15T15:59:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196900", + "Timestamp": "2024-05-16T09:01:40.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r3.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.982800", - "Timestamp": "2019-10-15T15:59:23.000Z" + "SpotPrice": "0.095900", + "Timestamp": "2024-05-16T09:01:40.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.982800", - "Timestamp": "2019-10-15T15:59:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.483700", + "Timestamp": "2024-05-16T09:01:39.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.982800", - "Timestamp": "2019-10-15T15:59:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.453700", + "Timestamp": "2024-05-16T09:01:39.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.548800", - "Timestamp": "2019-10-15T15:45:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.353700", + "Timestamp": "2024-05-16T09:01:39.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.548800", - "Timestamp": "2019-10-15T15:45:52.000Z" + "SpotPrice": "0.090600", + "Timestamp": "2024-05-16T09:01:38.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.548800", - "Timestamp": "2019-10-15T15:45:52.000Z" + "SpotPrice": "0.087800", + "Timestamp": "2024-05-16T09:01:38.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.418800", - "Timestamp": "2019-10-15T15:45:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086900", + "Timestamp": "2024-05-16T09:01:38.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.418800", - "Timestamp": "2019-10-15T15:45:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084100", + "Timestamp": "2024-05-16T09:01:38.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.418800", - "Timestamp": "2019-10-15T15:45:52.000Z" + "SpotPrice": "0.030600", + "Timestamp": "2024-05-16T09:01:38.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.786800", - "Timestamp": "2019-10-15T15:45:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027800", + "Timestamp": "2024-05-16T09:01:38.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.metal", "ProductDescription": "Windows", - "SpotPrice": "0.786800", - "Timestamp": "2019-10-15T15:45:25.000Z" + "SpotPrice": "2.902500", + "Timestamp": "2024-05-16T09:01:38.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.786800", - "Timestamp": "2019-10-15T15:45:25.000Z" + "SpotPrice": "1.745400", + "Timestamp": "2024-05-16T09:01:37.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.114700", - "Timestamp": "2019-10-15T15:36:16.000Z" + "SpotPrice": "0.986200", + "Timestamp": "2024-05-16T09:01:36.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "t3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.114700", - "Timestamp": "2019-10-15T15:36:16.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.981200", + "Timestamp": "2024-05-16T09:01:36.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "t3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.114700", - "Timestamp": "2019-10-15T15:36:16.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.856200", + "Timestamp": "2024-05-16T09:01:36.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "t3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.054700", - "Timestamp": "2019-10-15T15:36:16.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147300", + "Timestamp": "2024-05-16T09:01:36.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "t3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.054700", - "Timestamp": "2019-10-15T15:36:16.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143600", + "Timestamp": "2024-05-16T09:01:36.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.054700", - "Timestamp": "2019-10-15T15:36:16.000Z" + "SpotPrice": "0.087300", + "Timestamp": "2024-05-16T09:01:36.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.377000", - "Timestamp": "2019-10-15T15:28:21.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.026400", + "Timestamp": "2024-05-16T09:01:34.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.244100", - "Timestamp": "2019-10-15T15:25:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.021400", + "Timestamp": "2024-05-16T09:01:34.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.244100", - "Timestamp": "2019-10-15T15:25:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.896400", + "Timestamp": "2024-05-16T09:01:34.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.244100", - "Timestamp": "2019-10-15T15:25:26.000Z" + "SpotPrice": "3.550000", + "Timestamp": "2024-05-16T09:01:34.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "6.565300", - "Timestamp": "2019-10-15T14:47:21.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.115400", + "Timestamp": "2024-05-16T09:01:33.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.857400", - "Timestamp": "2019-10-15T14:38:56.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.110400", + "Timestamp": "2024-05-16T09:01:33.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120100", - "Timestamp": "2019-10-15T14:38:41.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.985400", + "Timestamp": "2024-05-16T09:01:33.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120100", - "Timestamp": "2019-10-15T14:38:41.000Z" + "SpotPrice": "2.163200", + "Timestamp": "2024-05-16T09:01:32.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120100", - "Timestamp": "2019-10-15T14:38:41.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.158200", + "Timestamp": "2024-05-16T09:01:32.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060100", - "Timestamp": "2019-10-15T14:38:41.000Z" + "SpotPrice": "2.033200", + "Timestamp": "2024-05-16T09:01:32.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060100", - "Timestamp": "2019-10-15T14:38:41.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.561900", + "Timestamp": "2024-05-16T09:01:32.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060100", - "Timestamp": "2019-10-15T14:38:41.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.531900", + "Timestamp": "2024-05-16T09:01:32.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.333300", - "Timestamp": "2019-10-15T14:32:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.429900", + "Timestamp": "2024-05-16T09:01:32.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.333300", - "Timestamp": "2019-10-15T14:32:45.000Z" + "SpotPrice": "3.737800", + "Timestamp": "2024-05-16T09:01:31.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.333300", - "Timestamp": "2019-10-15T14:32:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.487800", + "Timestamp": "2024-05-16T09:01:30.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.930600", - "Timestamp": "2019-10-15T14:32:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.482800", + "Timestamp": "2024-05-16T09:01:30.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.930600", - "Timestamp": "2019-10-15T14:32:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.357800", + "Timestamp": "2024-05-16T09:01:30.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.metal-48xl", "ProductDescription": "Windows", - "SpotPrice": "1.930600", - "Timestamp": "2019-10-15T14:32:36.000Z" + "SpotPrice": "11.688600", + "Timestamp": "2024-05-16T09:01:30.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.588600", - "Timestamp": "2019-10-15T14:24:09.000Z" + "SpotPrice": "1.329400", + "Timestamp": "2024-05-16T09:01:30.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.588600", - "Timestamp": "2019-10-15T14:24:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.324400", + "Timestamp": "2024-05-16T09:01:30.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.588600", - "Timestamp": "2019-10-15T14:24:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.199400", + "Timestamp": "2024-05-16T09:01:30.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.458600", - "Timestamp": "2019-10-15T14:24:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.928500", + "Timestamp": "2024-05-16T09:01:29.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.458600", - "Timestamp": "2019-10-15T14:24:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.567900", + "Timestamp": "2024-05-16T09:01:29.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.458600", - "Timestamp": "2019-10-15T14:24:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.537900", + "Timestamp": "2024-05-16T09:01:29.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.244700", - "Timestamp": "2019-10-15T14:03:49.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.437900", + "Timestamp": "2024-05-16T09:01:29.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.610000", - "Timestamp": "2019-10-15T14:03:49.000Z" + "SpotPrice": "0.886600", + "Timestamp": "2024-05-16T09:01:29.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.244700", - "Timestamp": "2019-10-15T14:03:49.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.881600", + "Timestamp": "2024-05-16T09:01:29.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.114700", - "Timestamp": "2019-10-15T14:03:49.000Z" + "SpotPrice": "0.756600", + "Timestamp": "2024-05-16T09:01:29.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.480000", - "Timestamp": "2019-10-15T14:03:49.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.925700", + "Timestamp": "2024-05-16T09:01:28.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.895700", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.114700", - "Timestamp": "2019-10-15T14:03:49.000Z" + "SpotPrice": "0.795700", + "Timestamp": "2024-05-16T09:01:28.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.726400", - "Timestamp": "2019-10-15T13:59:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.888500", + "Timestamp": "2024-05-16T09:01:28.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.726400", - "Timestamp": "2019-10-15T13:59:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.883500", + "Timestamp": "2024-05-16T09:01:28.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.726400", - "Timestamp": "2019-10-15T13:59:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.758500", + "Timestamp": "2024-05-16T09:01:28.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.440400", - "Timestamp": "2019-10-15T13:59:14.000Z" + "SpotPrice": "1.083500", + "Timestamp": "2024-05-16T09:01:28.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.440400", - "Timestamp": "2019-10-15T13:59:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.078500", + "Timestamp": "2024-05-16T09:01:28.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.953500", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "x1.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.440400", - "Timestamp": "2019-10-15T13:59:14.000Z" + "SpotPrice": "1.961700", + "Timestamp": "2024-05-16T09:01:28.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.310400", - "Timestamp": "2019-10-15T13:59:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.931700", + "Timestamp": "2024-05-16T09:01:28.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "x1.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.310400", - "Timestamp": "2019-10-15T13:59:14.000Z" + "SpotPrice": "1.831700", + "Timestamp": "2024-05-16T09:01:28.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.310400", - "Timestamp": "2019-10-15T13:59:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120400", + "Timestamp": "2024-05-16T09:01:27.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.488100", - "Timestamp": "2019-10-15T13:56:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116700", + "Timestamp": "2024-05-16T09:01:27.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.488100", - "Timestamp": "2019-10-15T13:56:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060400", + "Timestamp": "2024-05-16T09:01:27.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.250100", - "Timestamp": "2019-10-15T13:55:37.000Z" + "SpotPrice": "0.334800", + "Timestamp": "2024-05-16T09:01:27.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.250100", - "Timestamp": "2019-10-15T13:55:37.000Z" + "SpotPrice": "0.301300", + "Timestamp": "2024-05-16T09:01:27.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.329800", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296300", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.120100", - "Timestamp": "2019-10-15T13:55:37.000Z" + "SpotPrice": "0.204800", + "Timestamp": "2024-05-16T09:01:27.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.120100", - "Timestamp": "2019-10-15T13:55:37.000Z" + "SpotPrice": "0.171300", + "Timestamp": "2024-05-16T09:01:27.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.238600", - "Timestamp": "2019-10-15T13:51:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.450700", + "Timestamp": "2024-05-16T09:01:27.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.238600", - "Timestamp": "2019-10-15T13:51:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.420700", + "Timestamp": "2024-05-16T09:01:27.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.238600", - "Timestamp": "2019-10-15T13:51:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.320700", + "Timestamp": "2024-05-16T09:01:27.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.114600", - "Timestamp": "2019-10-15T13:47:40.000Z" + "SpotPrice": "0.485900", + "Timestamp": "2024-05-16T09:01:27.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.480900", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.355900", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "t2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.114600", - "Timestamp": "2019-10-15T13:47:40.000Z" + "SpotPrice": "0.130000", + "Timestamp": "2024-05-16T09:01:26.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170000", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "t2.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.054600", - "Timestamp": "2019-10-15T13:47:40.000Z" + "SpotPrice": "0.070000", + "Timestamp": "2024-05-16T09:01:26.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.443700", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.438700", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.6xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.054600", - "Timestamp": "2019-10-15T13:47:40.000Z" + "SpotPrice": "1.313700", + "Timestamp": "2024-05-16T09:01:26.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.863200", - "Timestamp": "2019-10-15T13:46:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.952800", + "Timestamp": "2024-05-16T09:01:25.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.863200", - "Timestamp": "2019-10-15T13:46:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.947800", + "Timestamp": "2024-05-16T09:01:25.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.863200", - "Timestamp": "2019-10-15T13:46:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.822800", + "Timestamp": "2024-05-16T09:01:25.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.140900", - "Timestamp": "2019-10-15T13:45:46.000Z" + "SpotPrice": "0.212800", + "Timestamp": "2024-05-16T09:01:25.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "i3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.140900", - "Timestamp": "2019-10-15T13:45:46.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360400", + "Timestamp": "2024-05-16T09:01:25.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "i3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.140900", - "Timestamp": "2019-10-15T13:45:46.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.355400", + "Timestamp": "2024-05-16T09:01:25.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230400", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.482700", - "Timestamp": "2019-10-15T13:45:36.000Z" + "SpotPrice": "0.219100", + "Timestamp": "2024-05-16T09:01:25.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.785200", - "Timestamp": "2019-10-15T13:45:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.636400", + "Timestamp": "2024-05-16T09:01:25.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.785200", - "Timestamp": "2019-10-15T13:45:28.000Z" + "SpotPrice": "0.106100", + "Timestamp": "2024-05-16T09:01:24.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.785200", - "Timestamp": "2019-10-15T13:45:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T09:01:24.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.655200", - "Timestamp": "2019-10-15T13:45:28.000Z" + "SpotPrice": "0.046100", + "Timestamp": "2024-05-16T09:01:24.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.655200", - "Timestamp": "2019-10-15T13:45:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.384400", + "Timestamp": "2024-05-16T09:01:24.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.379400", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.655200", - "Timestamp": "2019-10-15T13:45:28.000Z" + "SpotPrice": "1.254400", + "Timestamp": "2024-05-16T09:01:24.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.108900", - "Timestamp": "2019-10-15T13:45:13.000Z" + "SpotPrice": "0.385000", + "Timestamp": "2024-05-16T09:01:24.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "i3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.108900", - "Timestamp": "2019-10-15T13:45:13.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.380000", + "Timestamp": "2024-05-16T09:01:24.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.255000", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.108900", - "Timestamp": "2019-10-15T13:45:13.000Z" + "SpotPrice": "0.121300", + "Timestamp": "2024-05-16T09:01:24.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "i3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.048900", - "Timestamp": "2019-10-15T13:45:13.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117600", + "Timestamp": "2024-05-16T09:01:24.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.048900", - "Timestamp": "2019-10-15T13:45:13.000Z" + "SpotPrice": "0.061300", + "Timestamp": "2024-05-16T09:01:24.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "i3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.048900", - "Timestamp": "2019-10-15T13:45:13.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.656300", + "Timestamp": "2024-05-16T09:01:23.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.965300", - "Timestamp": "2019-10-15T13:41:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.626300", + "Timestamp": "2024-05-16T09:01:23.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.965300", - "Timestamp": "2019-10-15T13:41:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.526300", + "Timestamp": "2024-05-16T09:01:23.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "h1.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.965300", - "Timestamp": "2019-10-15T13:41:26.000Z" + "SpotPrice": "0.602700", + "Timestamp": "2024-05-16T09:01:22.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.359300", - "Timestamp": "2019-10-15T13:41:08.000Z" + "SpotPrice": "1.111300", + "Timestamp": "2024-05-16T09:01:22.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.359300", - "Timestamp": "2019-10-15T13:41:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.106300", + "Timestamp": "2024-05-16T09:01:22.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.359300", - "Timestamp": "2019-10-15T13:41:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.981300", + "Timestamp": "2024-05-16T09:01:22.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.229300", - "Timestamp": "2019-10-15T13:41:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.462200", + "Timestamp": "2024-05-16T09:01:18.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.229300", - "Timestamp": "2019-10-15T13:41:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.432200", + "Timestamp": "2024-05-16T09:01:18.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.229300", - "Timestamp": "2019-10-15T13:41:08.000Z" + "SpotPrice": "1.332200", + "Timestamp": "2024-05-16T09:01:18.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066500", - "Timestamp": "2019-10-15T13:39:50.000Z" + "SpotPrice": "1.793700", + "Timestamp": "2024-05-16T09:01:17.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066500", - "Timestamp": "2019-10-15T13:39:50.000Z" + "SpotPrice": "1.584100", + "Timestamp": "2024-05-16T09:01:17.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "t3.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066500", - "Timestamp": "2019-10-15T13:39:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.763700", + "Timestamp": "2024-05-16T09:01:17.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006500", - "Timestamp": "2019-10-15T13:39:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.554100", + "Timestamp": "2024-05-16T09:01:17.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006500", - "Timestamp": "2019-10-15T13:39:50.000Z" + "SpotPrice": "1.663700", + "Timestamp": "2024-05-16T09:01:17.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006500", - "Timestamp": "2019-10-15T13:39:50.000Z" - }, - { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "t3.small", - "ProductDescription": "Windows", - "SpotPrice": "0.024900", - "Timestamp": "2019-10-15T13:39:10.000Z" + "SpotPrice": "1.454100", + "Timestamp": "2024-05-16T09:01:17.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "t3.small", - "ProductDescription": "Windows", - "SpotPrice": "0.024900", - "Timestamp": "2019-10-15T13:39:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.543200", + "Timestamp": "2024-05-16T09:01:17.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "t3.small", - "ProductDescription": "Windows", - "SpotPrice": "0.024900", - "Timestamp": "2019-10-15T13:39:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.513200", + "Timestamp": "2024-05-16T09:01:17.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "t3.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006200", - "Timestamp": "2019-10-15T12:45:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.413200", + "Timestamp": "2024-05-16T09:01:17.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "t3.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006200", - "Timestamp": "2019-10-15T12:45:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093700", + "Timestamp": "2024-05-16T09:01:14.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "t3.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006200", - "Timestamp": "2019-10-15T12:45:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090000", + "Timestamp": "2024-05-16T09:01:14.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.239200", - "Timestamp": "2019-10-15T12:45:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033700", + "Timestamp": "2024-05-16T09:01:14.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.239200", - "Timestamp": "2019-10-15T12:45:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.415600", + "Timestamp": "2024-05-16T09:01:12.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.239200", - "Timestamp": "2019-10-15T12:45:28.000Z" - }, - { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.109200", - "Timestamp": "2019-10-15T12:45:28.000Z" + "SpotPrice": "1.148400", + "Timestamp": "2024-05-16T09:01:11.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.109200", - "Timestamp": "2019-10-15T12:45:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.143400", + "Timestamp": "2024-05-16T09:01:11.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.109200", - "Timestamp": "2019-10-15T12:45:28.000Z" + "SpotPrice": "1.018400", + "Timestamp": "2024-05-16T09:01:11.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061600", - "Timestamp": "2019-10-15T12:45:20.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.195600", + "Timestamp": "2024-05-16T08:47:39.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.metal-24xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061600", - "Timestamp": "2019-10-15T12:45:20.000Z" + "SpotPrice": "1.603400", + "Timestamp": "2024-05-16T08:47:37.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061600", - "Timestamp": "2019-10-15T12:45:20.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.598400", + "Timestamp": "2024-05-16T08:47:37.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.metal-24xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001600", - "Timestamp": "2019-10-15T12:45:20.000Z" + "SpotPrice": "1.473400", + "Timestamp": "2024-05-16T08:47:37.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "t3.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001600", - "Timestamp": "2019-10-15T12:45:20.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.224100", + "Timestamp": "2024-05-16T08:47:37.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "t3.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001600", - "Timestamp": "2019-10-15T12:45:20.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.219100", + "Timestamp": "2024-05-16T08:47:37.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.477200", - "Timestamp": "2019-10-15T12:45:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.094100", + "Timestamp": "2024-05-16T08:47:37.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.477200", - "Timestamp": "2019-10-15T12:45:01.000Z" + "SpotPrice": "3.132800", + "Timestamp": "2024-05-16T08:47:35.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.477200", - "Timestamp": "2019-10-15T12:45:01.000Z" + "SpotPrice": "1.916900", + "Timestamp": "2024-05-16T08:47:34.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.791900", - "Timestamp": "2019-10-15T11:07:24.000Z" + "SpotPrice": "3.672400", + "Timestamp": "2024-05-16T08:47:34.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.metal", "ProductDescription": "Windows", - "SpotPrice": "5.791900", - "Timestamp": "2019-10-15T11:07:24.000Z" + "SpotPrice": "5.256900", + "Timestamp": "2024-05-16T08:47:32.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.791900", - "Timestamp": "2019-10-15T11:07:24.000Z" + "SpotPrice": "7.358200", + "Timestamp": "2024-05-16T08:47:31.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.114600", - "Timestamp": "2019-10-15T10:45:48.000Z" + "SpotPrice": "2.104800", + "Timestamp": "2024-05-16T08:47:30.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.114600", - "Timestamp": "2019-10-15T10:45:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.099800", + "Timestamp": "2024-05-16T08:47:30.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.114600", - "Timestamp": "2019-10-15T10:45:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.974800", + "Timestamp": "2024-05-16T08:47:30.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.054600", - "Timestamp": "2019-10-15T10:45:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.715600", + "Timestamp": "2024-05-16T08:47:30.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.054600", - "Timestamp": "2019-10-15T10:45:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.710600", + "Timestamp": "2024-05-16T08:47:30.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.054600", - "Timestamp": "2019-10-15T10:45:48.000Z" + "SpotPrice": "1.585600", + "Timestamp": "2024-05-16T08:47:30.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.791900", - "Timestamp": "2019-10-15T10:45:18.000Z" + "SpotPrice": "2.656500", + "Timestamp": "2024-05-16T08:47:29.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.791900", - "Timestamp": "2019-10-15T10:45:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.300900", + "Timestamp": "2024-05-16T08:47:29.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.791900", - "Timestamp": "2019-10-15T10:45:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.295900", + "Timestamp": "2024-05-16T08:47:29.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.505900", - "Timestamp": "2019-10-15T10:45:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170900", + "Timestamp": "2024-05-16T08:47:29.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.505900", - "Timestamp": "2019-10-15T10:45:06.000Z" + "SpotPrice": "1.120100", + "Timestamp": "2024-05-16T08:47:29.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.505900", - "Timestamp": "2019-10-15T10:45:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.115100", + "Timestamp": "2024-05-16T08:47:29.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.375900", - "Timestamp": "2019-10-15T10:45:06.000Z" + "SpotPrice": "0.990100", + "Timestamp": "2024-05-16T08:47:29.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.375900", - "Timestamp": "2019-10-15T10:45:06.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.022600", + "Timestamp": "2024-05-16T08:47:28.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.375900", - "Timestamp": "2019-10-15T10:45:06.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.017600", + "Timestamp": "2024-05-16T08:47:28.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.238600", - "Timestamp": "2019-10-15T10:45:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.892600", + "Timestamp": "2024-05-16T08:47:28.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.238600", - "Timestamp": "2019-10-15T10:45:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.638700", + "Timestamp": "2024-05-16T08:47:28.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.238600", - "Timestamp": "2019-10-15T10:45:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.633700", + "Timestamp": "2024-05-16T08:47:28.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.047300", - "Timestamp": "2019-10-15T09:45:55.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.508700", + "Timestamp": "2024-05-16T08:47:28.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.047300", - "Timestamp": "2019-10-15T09:45:55.000Z" + "SpotPrice": "0.309500", + "Timestamp": "2024-05-16T08:47:27.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.047300", - "Timestamp": "2019-10-15T09:45:55.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.304500", + "Timestamp": "2024-05-16T08:47:27.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.917300", - "Timestamp": "2019-10-15T09:45:55.000Z" + "SpotPrice": "0.179500", + "Timestamp": "2024-05-16T08:47:27.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.917300", - "Timestamp": "2019-10-15T09:45:55.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.535100", + "Timestamp": "2024-05-16T08:47:27.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.917300", - "Timestamp": "2019-10-15T09:45:55.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.530100", + "Timestamp": "2024-05-16T08:47:27.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.488100", - "Timestamp": "2019-10-15T09:45:13.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.405100", + "Timestamp": "2024-05-16T08:47:27.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.250100", - "Timestamp": "2019-10-15T09:45:08.000Z" + "SpotPrice": "1.504700", + "Timestamp": "2024-05-16T08:47:26.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.499700", + "Timestamp": "2024-05-16T08:47:26.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.120100", - "Timestamp": "2019-10-15T09:45:08.000Z" + "SpotPrice": "1.374700", + "Timestamp": "2024-05-16T08:47:26.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.508800", - "Timestamp": "2019-10-15T09:23:22.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.414200", + "Timestamp": "2024-05-16T08:47:26.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.508800", - "Timestamp": "2019-10-15T09:23:22.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.384200", + "Timestamp": "2024-05-16T08:47:26.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.508800", - "Timestamp": "2019-10-15T09:23:22.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.284200", + "Timestamp": "2024-05-16T08:47:26.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.377000", - "Timestamp": "2019-10-15T08:13:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.239600", + "Timestamp": "2024-05-16T08:47:25.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.861300", - "Timestamp": "2019-10-15T07:59:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.239200", + "Timestamp": "2024-05-16T08:47:25.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.861300", - "Timestamp": "2019-10-15T07:59:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.234600", + "Timestamp": "2024-05-16T08:47:25.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.861300", - "Timestamp": "2019-10-15T07:59:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.234200", + "Timestamp": "2024-05-16T08:47:25.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.930600", - "Timestamp": "2019-10-15T07:46:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109600", + "Timestamp": "2024-05-16T08:47:25.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.930600", - "Timestamp": "2019-10-15T07:46:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109200", + "Timestamp": "2024-05-16T08:47:25.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.930600", - "Timestamp": "2019-10-15T07:46:50.000Z" + "SpotPrice": "0.913800", + "Timestamp": "2024-05-16T08:47:24.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.610500", - "Timestamp": "2019-10-15T07:46:49.000Z" + "SpotPrice": "0.929900", + "Timestamp": "2024-05-16T08:47:24.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.610500", - "Timestamp": "2019-10-15T07:46:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.924900", + "Timestamp": "2024-05-16T08:47:24.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.610500", - "Timestamp": "2019-10-15T07:46:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.799900", + "Timestamp": "2024-05-16T08:47:24.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.480500", - "Timestamp": "2019-10-15T07:46:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.940100", + "Timestamp": "2024-05-16T08:47:22.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.480500", - "Timestamp": "2019-10-15T07:46:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094300", + "Timestamp": "2024-05-16T08:47:21.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.480500", - "Timestamp": "2019-10-15T07:46:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090600", + "Timestamp": "2024-05-16T08:47:21.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.588600", - "Timestamp": "2019-10-15T07:46:05.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034300", + "Timestamp": "2024-05-16T08:47:21.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.588600", - "Timestamp": "2019-10-15T07:46:05.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.240300", + "Timestamp": "2024-05-16T08:47:21.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.588600", - "Timestamp": "2019-10-15T07:46:05.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.076200", + "Timestamp": "2024-05-16T08:47:18.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.458600", - "Timestamp": "2019-10-15T07:46:05.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.613600", + "Timestamp": "2024-05-16T08:47:17.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.458600", - "Timestamp": "2019-10-15T07:46:05.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.608600", + "Timestamp": "2024-05-16T08:47:17.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.458600", - "Timestamp": "2019-10-15T07:46:05.000Z" + "SpotPrice": "2.483600", + "Timestamp": "2024-05-16T08:47:17.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.952500", - "Timestamp": "2019-10-15T07:45:56.000Z" + "SpotPrice": "10.925300", + "Timestamp": "2024-05-16T08:47:17.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.952500", - "Timestamp": "2019-10-15T07:45:56.000Z" + "SpotPrice": "2.821600", + "Timestamp": "2024-05-16T08:47:16.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "d3.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.952500", - "Timestamp": "2019-10-15T07:45:56.000Z" + "SpotPrice": "0.534400", + "Timestamp": "2024-05-16T08:47:16.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.3xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.120700", - "Timestamp": "2019-10-15T07:45:47.000Z" + "SpotPrice": "0.729000", + "Timestamp": "2024-05-16T08:47:15.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.120700", - "Timestamp": "2019-10-15T07:45:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.806200", + "Timestamp": "2024-05-16T08:47:15.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.120700", - "Timestamp": "2019-10-15T07:45:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.801200", + "Timestamp": "2024-05-16T08:47:15.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.112800", - "Timestamp": "2019-10-15T07:45:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.676200", + "Timestamp": "2024-05-16T08:47:15.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.112800", - "Timestamp": "2019-10-15T07:45:46.000Z" + "SpotPrice": "0.251400", + "Timestamp": "2024-05-16T08:47:13.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.112800", - "Timestamp": "2019-10-15T07:45:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.246400", + "Timestamp": "2024-05-16T08:47:13.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.982800", - "Timestamp": "2019-10-15T07:45:46.000Z" + "SpotPrice": "0.121400", + "Timestamp": "2024-05-16T08:47:13.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.982800", - "Timestamp": "2019-10-15T07:45:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.027700", + "Timestamp": "2024-05-16T08:47:12.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.982800", - "Timestamp": "2019-10-15T07:45:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.134500", + "Timestamp": "2024-05-16T08:47:11.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.294800", - "Timestamp": "2019-10-15T07:45:37.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.129500", + "Timestamp": "2024-05-16T08:47:11.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.294800", - "Timestamp": "2019-10-15T07:45:37.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.004500", + "Timestamp": "2024-05-16T08:47:11.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.294800", - "Timestamp": "2019-10-15T07:45:37.000Z" + "SpotPrice": "3.568300", + "Timestamp": "2024-05-16T08:47:11.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.088700", - "Timestamp": "2019-10-15T07:45:11.000Z" + "SpotPrice": "2.583500", + "Timestamp": "2024-05-16T08:47:11.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.088700", - "Timestamp": "2019-10-15T07:45:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.578500", + "Timestamp": "2024-05-16T08:47:11.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.453500", + "Timestamp": "2024-05-16T08:47:11.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4ad.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.088700", - "Timestamp": "2019-10-15T07:45:11.000Z" + "SpotPrice": "0.165900", + "Timestamp": "2024-05-16T08:47:09.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.028700", - "Timestamp": "2019-10-15T07:45:11.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162200", + "Timestamp": "2024-05-16T08:47:09.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4ad.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.028700", - "Timestamp": "2019-10-15T07:45:11.000Z" + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T08:47:09.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.028700", - "Timestamp": "2019-10-15T07:45:11.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216300", + "Timestamp": "2024-05-16T08:47:09.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.359300", - "Timestamp": "2019-10-15T07:39:56.000Z" + "SpotPrice": "0.648100", + "Timestamp": "2024-05-16T08:47:08.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.359300", - "Timestamp": "2019-10-15T07:39:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.643100", + "Timestamp": "2024-05-16T08:47:08.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.518100", + "Timestamp": "2024-05-16T08:47:08.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.841300", + "Timestamp": "2024-05-16T08:47:07.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.359300", - "Timestamp": "2019-10-15T07:39:56.000Z" + "SpotPrice": "0.070200", + "Timestamp": "2024-05-16T08:47:06.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.229300", - "Timestamp": "2019-10-15T07:39:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066500", + "Timestamp": "2024-05-16T08:47:06.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.229300", - "Timestamp": "2019-10-15T07:39:56.000Z" + "SpotPrice": "0.010200", + "Timestamp": "2024-05-16T08:47:06.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.942200", + "Timestamp": "2024-05-16T08:47:05.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.937200", + "Timestamp": "2024-05-16T08:47:05.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "p4d.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.229300", - "Timestamp": "2019-10-15T07:39:56.000Z" + "SpotPrice": "5.812200", + "Timestamp": "2024-05-16T08:47:05.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.965300", - "Timestamp": "2019-10-15T07:39:35.000Z" + "SpotPrice": "2.131200", + "Timestamp": "2024-05-16T08:47:03.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.965300", - "Timestamp": "2019-10-15T07:39:35.000Z" + "SpotPrice": "0.825200", + "Timestamp": "2024-05-16T08:47:02.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.965300", - "Timestamp": "2019-10-15T07:39:35.000Z" + "SpotPrice": "0.234300", + "Timestamp": "2024-05-16T08:47:02.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.047300", - "Timestamp": "2019-10-15T07:09:32.000Z" + "SpotPrice": "3.695400", + "Timestamp": "2024-05-16T08:47:01.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.047300", - "Timestamp": "2019-10-15T07:09:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.690400", + "Timestamp": "2024-05-16T08:47:01.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.047300", - "Timestamp": "2019-10-15T07:09:32.000Z" - }, - { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.917300", - "Timestamp": "2019-10-15T07:09:32.000Z" + "SpotPrice": "3.565400", + "Timestamp": "2024-05-16T08:47:01.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.917300", - "Timestamp": "2019-10-15T07:09:32.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.522100", + "Timestamp": "2024-05-16T08:47:01.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.917300", - "Timestamp": "2019-10-15T07:09:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.520500", + "Timestamp": "2024-05-16T08:47:01.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.694800", - "Timestamp": "2019-10-15T06:24:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.444600", + "Timestamp": "2024-05-16T08:46:59.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.694800", - "Timestamp": "2019-10-15T06:24:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219600", + "Timestamp": "2024-05-16T08:46:58.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.694800", - "Timestamp": "2019-10-15T06:24:46.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.180900", + "Timestamp": "2024-05-16T08:46:57.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.564800", - "Timestamp": "2019-10-15T06:24:46.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.006200", + "Timestamp": "2024-05-16T08:46:56.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.564800", - "Timestamp": "2019-10-15T06:24:46.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.801700", + "Timestamp": "2024-05-16T08:46:56.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.564800", - "Timestamp": "2019-10-15T06:24:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.321700", + "Timestamp": "2024-05-16T08:46:55.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.621400", - "Timestamp": "2019-10-15T05:39:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.316700", + "Timestamp": "2024-05-16T08:46:55.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.621400", - "Timestamp": "2019-10-15T05:39:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.191700", + "Timestamp": "2024-05-16T08:46:55.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.621400", - "Timestamp": "2019-10-15T05:39:28.000Z" + "SpotPrice": "1.932000", + "Timestamp": "2024-05-16T08:46:55.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.491400", - "Timestamp": "2019-10-15T05:39:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.927000", + "Timestamp": "2024-05-16T08:46:55.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.491400", - "Timestamp": "2019-10-15T05:39:28.000Z" + "SpotPrice": "1.802000", + "Timestamp": "2024-05-16T08:46:55.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.491400", - "Timestamp": "2019-10-15T05:39:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.974200", + "Timestamp": "2024-05-16T08:46:53.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.147400", - "Timestamp": "2019-10-15T05:39:02.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "trn1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.125000", + "Timestamp": "2024-05-16T08:46:53.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.147400", - "Timestamp": "2019-10-15T05:39:02.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "trn1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.095000", + "Timestamp": "2024-05-16T08:46:53.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.147400", - "Timestamp": "2019-10-15T05:39:02.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "trn1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.995000", + "Timestamp": "2024-05-16T08:46:53.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.952500", - "Timestamp": "2019-10-15T05:35:20.000Z" + "SpotPrice": "0.505200", + "Timestamp": "2024-05-16T08:46:53.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.571400", - "Timestamp": "2019-10-15T05:28:55.000Z" + "SpotPrice": "1.861900", + "Timestamp": "2024-05-16T08:46:51.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.856900", + "Timestamp": "2024-05-16T08:46:51.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.441400", - "Timestamp": "2019-10-15T05:28:55.000Z" + "SpotPrice": "1.731900", + "Timestamp": "2024-05-16T08:46:51.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.976200", - "Timestamp": "2019-10-15T05:07:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170100", + "Timestamp": "2024-05-16T08:46:51.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.976200", - "Timestamp": "2019-10-15T05:07:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.210100", + "Timestamp": "2024-05-16T08:46:51.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.976200", - "Timestamp": "2019-10-15T05:07:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-16T08:46:51.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.573600", - "Timestamp": "2019-10-15T04:45:49.000Z" + "SpotPrice": "0.231300", + "Timestamp": "2024-05-16T08:46:51.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.573600", - "Timestamp": "2019-10-15T04:45:49.000Z" + "SpotPrice": "2.981600", + "Timestamp": "2024-05-16T08:46:50.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.metal", "ProductDescription": "Windows", - "SpotPrice": "1.573600", - "Timestamp": "2019-10-15T04:45:49.000Z" + "SpotPrice": "10.533300", + "Timestamp": "2024-05-16T08:46:49.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i-flex.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.571400", - "Timestamp": "2019-10-15T04:45:31.000Z" + "SpotPrice": "0.822300", + "Timestamp": "2024-05-16T08:46:47.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.571400", - "Timestamp": "2019-10-15T04:45:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.817300", + "Timestamp": "2024-05-16T08:46:47.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.571400", - "Timestamp": "2019-10-15T04:45:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.692300", + "Timestamp": "2024-05-16T08:46:47.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.441400", - "Timestamp": "2019-10-15T04:45:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.824800", + "Timestamp": "2024-05-16T08:46:46.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.441400", - "Timestamp": "2019-10-15T04:45:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.627800", + "Timestamp": "2024-05-16T08:46:46.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.622800", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.441400", - "Timestamp": "2019-10-15T04:45:31.000Z" + "SpotPrice": "1.497800", + "Timestamp": "2024-05-16T08:46:46.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.967600", - "Timestamp": "2019-10-15T04:45:20.000Z" + "SpotPrice": "0.757600", + "Timestamp": "2024-05-16T08:46:44.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.967600", - "Timestamp": "2019-10-15T04:45:20.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.752600", + "Timestamp": "2024-05-16T08:46:44.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.627600", + "Timestamp": "2024-05-16T08:46:44.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.967600", - "Timestamp": "2019-10-15T04:45:20.000Z" + "SpotPrice": "0.899500", + "Timestamp": "2024-05-16T08:46:44.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.837600", - "Timestamp": "2019-10-15T04:45:20.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.894500", + "Timestamp": "2024-05-16T08:46:44.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.837600", - "Timestamp": "2019-10-15T04:45:20.000Z" + "SpotPrice": "0.769500", + "Timestamp": "2024-05-16T08:46:44.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.837600", - "Timestamp": "2019-10-15T04:45:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.042500", + "Timestamp": "2024-05-16T08:46:44.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.857400", - "Timestamp": "2019-10-15T04:45:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.037500", + "Timestamp": "2024-05-16T08:46:44.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.857400", - "Timestamp": "2019-10-15T04:45:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.912500", + "Timestamp": "2024-05-16T08:46:44.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.857400", - "Timestamp": "2019-10-15T04:45:04.000Z" + "SpotPrice": "5.436600", + "Timestamp": "2024-05-16T08:46:44.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.976200", - "Timestamp": "2019-10-15T04:23:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076200", + "Timestamp": "2024-05-16T08:46:44.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.976200", - "Timestamp": "2019-10-15T04:23:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047200", + "Timestamp": "2024-05-16T08:46:44.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.521200", - "Timestamp": "2019-10-15T04:19:47.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016200", + "Timestamp": "2024-05-16T08:46:44.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.521200", - "Timestamp": "2019-10-15T04:19:47.000Z" + "SpotPrice": "0.868500", + "Timestamp": "2024-05-16T08:46:44.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.521200", - "Timestamp": "2019-10-15T04:19:47.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.863500", + "Timestamp": "2024-05-16T08:46:44.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.391200", - "Timestamp": "2019-10-15T04:19:47.000Z" + "SpotPrice": "0.738500", + "Timestamp": "2024-05-16T08:46:44.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.391200", - "Timestamp": "2019-10-15T04:19:47.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.248700", + "Timestamp": "2024-05-16T08:46:43.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.992000", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.987000", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.391200", - "Timestamp": "2019-10-15T04:19:47.000Z" + "SpotPrice": "0.862000", + "Timestamp": "2024-05-16T08:46:43.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.127200", - "Timestamp": "2019-10-15T03:39:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.709100", + "Timestamp": "2024-05-16T08:46:43.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.127200", - "Timestamp": "2019-10-15T03:39:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.704100", + "Timestamp": "2024-05-16T08:46:43.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.127200", - "Timestamp": "2019-10-15T03:39:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.579100", + "Timestamp": "2024-05-16T08:46:43.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.241300", - "Timestamp": "2019-10-15T03:20:17.000Z" + "SpotPrice": "0.849600", + "Timestamp": "2024-05-16T08:46:43.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.241300", - "Timestamp": "2019-10-15T03:20:17.000Z" + "SpotPrice": "0.458100", + "Timestamp": "2024-05-16T08:46:42.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.241300", - "Timestamp": "2019-10-15T03:20:17.000Z" + "SpotPrice": "0.876400", + "Timestamp": "2024-05-16T08:46:42.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.621400", - "Timestamp": "2019-10-15T03:04:39.000Z" + "SpotPrice": "0.412200", + "Timestamp": "2024-05-16T08:46:42.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.621400", - "Timestamp": "2019-10-15T03:04:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.407200", + "Timestamp": "2024-05-16T08:46:42.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.282200", + "Timestamp": "2024-05-16T08:46:42.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.621400", - "Timestamp": "2019-10-15T03:04:39.000Z" + "SpotPrice": "0.641300", + "Timestamp": "2024-05-16T08:46:42.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.491400", - "Timestamp": "2019-10-15T03:04:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.636300", + "Timestamp": "2024-05-16T08:46:42.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.491400", - "Timestamp": "2019-10-15T03:04:39.000Z" + "SpotPrice": "0.511300", + "Timestamp": "2024-05-16T08:46:42.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.491400", - "Timestamp": "2019-10-15T03:04:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.118000", + "Timestamp": "2024-05-16T08:46:41.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.370200", - "Timestamp": "2019-10-15T02:39:39.000Z" + "SpotPrice": "1.344300", + "Timestamp": "2024-05-16T08:46:41.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.370200", - "Timestamp": "2019-10-15T02:39:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.339300", + "Timestamp": "2024-05-16T08:46:41.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.214300", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.370200", - "Timestamp": "2019-10-15T02:39:39.000Z" + "SpotPrice": "0.280600", + "Timestamp": "2024-05-16T08:46:41.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.240200", - "Timestamp": "2019-10-15T02:39:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.275600", + "Timestamp": "2024-05-16T08:46:41.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.240200", - "Timestamp": "2019-10-15T02:39:39.000Z" + "SpotPrice": "0.150600", + "Timestamp": "2024-05-16T08:46:41.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.869500", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.864500", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.240200", - "Timestamp": "2019-10-15T02:39:39.000Z" + "SpotPrice": "0.739500", + "Timestamp": "2024-05-16T08:46:41.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.047300", - "Timestamp": "2019-10-15T02:16:26.000Z" + "SpotPrice": "0.173000", + "Timestamp": "2024-05-16T08:46:41.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.047300", - "Timestamp": "2019-10-15T02:16:26.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169300", + "Timestamp": "2024-05-16T08:46:41.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.047300", - "Timestamp": "2019-10-15T02:16:26.000Z" + "SpotPrice": "0.420500", + "Timestamp": "2024-05-16T08:46:41.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.917300", - "Timestamp": "2019-10-15T02:16:26.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.415500", + "Timestamp": "2024-05-16T08:46:41.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.917300", - "Timestamp": "2019-10-15T02:16:26.000Z" + "SpotPrice": "0.290500", + "Timestamp": "2024-05-16T08:46:41.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.917300", - "Timestamp": "2019-10-15T02:16:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.598300", + "Timestamp": "2024-05-16T08:46:41.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.147400", - "Timestamp": "2019-10-15T02:00:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.593300", + "Timestamp": "2024-05-16T08:46:41.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.147400", - "Timestamp": "2019-10-15T02:00:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.468300", + "Timestamp": "2024-05-16T08:46:41.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.147400", - "Timestamp": "2019-10-15T02:00:26.000Z" + "SpotPrice": "2.906800", + "Timestamp": "2024-05-16T08:46:41.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087300", - "Timestamp": "2019-10-15T01:48:25.000Z" + "SpotPrice": "0.620500", + "Timestamp": "2024-05-16T08:46:41.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087300", - "Timestamp": "2019-10-15T01:48:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.615500", + "Timestamp": "2024-05-16T08:46:41.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.490500", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.087300", - "Timestamp": "2019-10-15T01:48:25.000Z" + "SpotPrice": "0.346500", + "Timestamp": "2024-05-16T08:46:41.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027300", - "Timestamp": "2019-10-15T01:48:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.341500", + "Timestamp": "2024-05-16T08:46:41.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027300", - "Timestamp": "2019-10-15T01:48:25.000Z" + "SpotPrice": "0.216500", + "Timestamp": "2024-05-16T08:46:41.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.027300", - "Timestamp": "2019-10-15T01:48:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.669700", + "Timestamp": "2024-05-16T08:46:41.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.281800", - "Timestamp": "2019-10-15T01:39:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.664700", + "Timestamp": "2024-05-16T08:46:41.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.281800", - "Timestamp": "2019-10-15T01:39:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.539700", + "Timestamp": "2024-05-16T08:46:41.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.large", "ProductDescription": "Windows", - "SpotPrice": "0.281800", - "Timestamp": "2019-10-15T01:39:57.000Z" + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T08:46:41.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.157800", - "Timestamp": "2019-10-15T01:39:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.717000", + "Timestamp": "2024-05-16T08:46:40.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.157800", - "Timestamp": "2019-10-15T01:39:34.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.710500", + "Timestamp": "2024-05-16T08:46:40.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.157800", - "Timestamp": "2019-10-15T01:39:34.000Z" - }, - { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.097800", - "Timestamp": "2019-10-15T01:39:34.000Z" + "SpotPrice": "2.942900", + "Timestamp": "2024-05-16T08:46:40.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.097800", - "Timestamp": "2019-10-15T01:39:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.937900", + "Timestamp": "2024-05-16T08:46:40.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.097800", - "Timestamp": "2019-10-15T01:39:34.000Z" + "SpotPrice": "2.812900", + "Timestamp": "2024-05-16T08:46:40.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.117300", - "Timestamp": "2019-10-15T01:33:20.000Z" + "SpotPrice": "1.550800", + "Timestamp": "2024-05-16T08:46:40.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.117300", - "Timestamp": "2019-10-15T01:33:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.545800", + "Timestamp": "2024-05-16T08:46:40.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.117300", - "Timestamp": "2019-10-15T01:33:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.420800", + "Timestamp": "2024-05-16T08:46:40.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.057300", - "Timestamp": "2019-10-15T01:33:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.314800", + "Timestamp": "2024-05-16T08:46:39.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.057300", - "Timestamp": "2019-10-15T01:33:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.309800", + "Timestamp": "2024-05-16T08:46:39.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.057300", - "Timestamp": "2019-10-15T01:33:20.000Z" + "SpotPrice": "1.184800", + "Timestamp": "2024-05-16T08:46:39.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.928700", - "Timestamp": "2019-10-15T01:00:22.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.949700", + "Timestamp": "2024-05-16T08:46:39.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.856000", - "Timestamp": "2019-10-15T01:00:22.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.919700", + "Timestamp": "2024-05-16T08:46:39.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.928700", - "Timestamp": "2019-10-15T01:00:22.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.819700", + "Timestamp": "2024-05-16T08:46:39.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "inf2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.850700", - "Timestamp": "2019-10-15T00:59:05.000Z" + "SpotPrice": "0.172200", + "Timestamp": "2024-05-16T08:46:39.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.778000", - "Timestamp": "2019-10-15T00:59:05.000Z" + "SpotPrice": "0.191900", + "Timestamp": "2024-05-16T08:46:39.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.850700", - "Timestamp": "2019-10-15T00:59:05.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.212200", + "Timestamp": "2024-05-16T08:46:39.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.720700", - "Timestamp": "2019-10-15T00:59:05.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.231900", + "Timestamp": "2024-05-16T08:46:39.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "inf2.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.648000", - "Timestamp": "2019-10-15T00:59:05.000Z" + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T08:46:39.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf2.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.720700", - "Timestamp": "2019-10-15T00:59:05.000Z" + "SpotPrice": "0.131900", + "Timestamp": "2024-05-16T08:46:39.000Z" }, { - "AvailabilityZone": "eu-north-1c", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.726400", - "Timestamp": "2019-10-15T00:41:47.000Z" + "SpotPrice": "3.281200", + "Timestamp": "2024-05-16T08:46:38.000Z" }, { - "AvailabilityZone": "eu-north-1b", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.726400", - "Timestamp": "2019-10-15T00:41:47.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.291700", + "Timestamp": "2024-05-16T08:46:38.000Z" }, { - "AvailabilityZone": "eu-north-1a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.726400", - "Timestamp": "2019-10-15T00:41:47.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.286700", + "Timestamp": "2024-05-16T08:46:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.141000", - "Timestamp": "2019-10-16T02:53:49.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.161700", + "Timestamp": "2024-05-16T08:46:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.181000", - "Timestamp": "2019-10-16T02:53:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.426600", + "Timestamp": "2024-05-16T08:46:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.081000", - "Timestamp": "2019-10-16T02:53:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.421600", + "Timestamp": "2024-05-16T08:46:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.636900", - "Timestamp": "2019-10-16T02:45:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.296600", + "Timestamp": "2024-05-16T08:46:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.606900", - "Timestamp": "2019-10-16T02:45:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T08:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.506900", - "Timestamp": "2019-10-16T02:45:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T08:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.433900", - "Timestamp": "2019-10-16T02:45:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045800", + "Timestamp": "2024-05-16T08:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.403900", - "Timestamp": "2019-10-16T02:45:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.667900", + "Timestamp": "2024-05-16T08:46:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.303900", - "Timestamp": "2019-10-16T02:45:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.637900", + "Timestamp": "2024-05-16T08:46:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.138800", - "Timestamp": "2019-10-16T02:44:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.537900", + "Timestamp": "2024-05-16T08:46:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.138800", - "Timestamp": "2019-10-16T02:44:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.290600", + "Timestamp": "2024-05-16T08:46:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.138800", - "Timestamp": "2019-10-16T02:44:19.000Z" + "SpotPrice": "8.485100", + "Timestamp": "2024-05-16T08:46:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.metal", "ProductDescription": "Windows", - "SpotPrice": "2.138800", - "Timestamp": "2019-10-16T02:44:19.000Z" + "SpotPrice": "5.441700", + "Timestamp": "2024-05-16T08:46:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.612800", - "Timestamp": "2019-10-16T02:44:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.052500", + "Timestamp": "2024-05-16T08:46:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.612800", - "Timestamp": "2019-10-16T02:44:19.000Z" + "SpotPrice": "1.169600", + "Timestamp": "2024-05-16T08:46:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.582800", - "Timestamp": "2019-10-16T02:44:19.000Z" + "SpotPrice": "1.164600", + "Timestamp": "2024-05-16T08:46:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.582800", - "Timestamp": "2019-10-16T02:44:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.039600", + "Timestamp": "2024-05-16T08:46:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.482800", - "Timestamp": "2019-10-16T02:44:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.404800", + "Timestamp": "2024-05-16T08:46:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.482800", - "Timestamp": "2019-10-16T02:44:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.399800", + "Timestamp": "2024-05-16T08:46:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.093400", - "Timestamp": "2019-10-16T02:44:17.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.274800", + "Timestamp": "2024-05-16T08:46:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.093400", - "Timestamp": "2019-10-16T02:44:17.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.763500", + "Timestamp": "2024-05-16T08:46:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126900", - "Timestamp": "2019-10-16T02:44:12.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.758500", + "Timestamp": "2024-05-16T08:46:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126900", - "Timestamp": "2019-10-16T02:44:12.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.633500", + "Timestamp": "2024-05-16T08:46:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126900", - "Timestamp": "2019-10-16T02:44:12.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.259200", + "Timestamp": "2024-05-16T08:46:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.129900", - "Timestamp": "2019-10-16T02:43:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.255200", + "Timestamp": "2024-05-16T08:46:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.129900", - "Timestamp": "2019-10-16T02:43:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199200", + "Timestamp": "2024-05-16T08:46:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.169900", - "Timestamp": "2019-10-16T02:43:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.151000", + "Timestamp": "2024-05-16T08:46:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.169900", - "Timestamp": "2019-10-16T02:43:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.333200", + "Timestamp": "2024-05-16T08:46:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.069900", - "Timestamp": "2019-10-16T02:43:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.328200", + "Timestamp": "2024-05-16T08:46:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.069900", - "Timestamp": "2019-10-16T02:43:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.203200", + "Timestamp": "2024-05-16T08:46:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.253900", - "Timestamp": "2019-10-16T02:43:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.617300", + "Timestamp": "2024-05-16T08:46:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.078200", - "Timestamp": "2019-10-16T02:43:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.612300", + "Timestamp": "2024-05-16T08:46:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.078200", - "Timestamp": "2019-10-16T02:43:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.487300", + "Timestamp": "2024-05-16T08:46:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.078200", - "Timestamp": "2019-10-16T02:43:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143900", + "Timestamp": "2024-05-16T08:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t2.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.118200", - "Timestamp": "2019-10-16T02:43:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140200", + "Timestamp": "2024-05-16T08:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t2.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.118200", - "Timestamp": "2019-10-16T02:43:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083900", + "Timestamp": "2024-05-16T08:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t2.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.118200", - "Timestamp": "2019-10-16T02:43:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121600", + "Timestamp": "2024-05-16T08:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t2.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.018200", - "Timestamp": "2019-10-16T02:43:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.363500", + "Timestamp": "2024-05-16T08:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t2.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.018200", - "Timestamp": "2019-10-16T02:43:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.358500", + "Timestamp": "2024-05-16T08:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t2.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.018200", - "Timestamp": "2019-10-16T02:43:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.233500", + "Timestamp": "2024-05-16T08:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t2.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.036200", - "Timestamp": "2019-10-16T02:43:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144300", + "Timestamp": "2024-05-16T08:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t2.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.036200", - "Timestamp": "2019-10-16T02:43:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140600", + "Timestamp": "2024-05-16T08:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t2.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.036200", - "Timestamp": "2019-10-16T02:43:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084300", + "Timestamp": "2024-05-16T08:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.074700", - "Timestamp": "2019-10-16T02:43:21.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.016500", + "Timestamp": "2024-05-16T08:46:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.074700", - "Timestamp": "2019-10-16T02:43:21.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.536900", + "Timestamp": "2024-05-16T08:46:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3a.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.114700", - "Timestamp": "2019-10-16T02:43:21.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.531900", + "Timestamp": "2024-05-16T08:46:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3a.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.114700", - "Timestamp": "2019-10-16T02:43:21.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.406900", + "Timestamp": "2024-05-16T08:46:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.014700", - "Timestamp": "2019-10-16T02:43:21.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T08:46:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.014700", - "Timestamp": "2019-10-16T02:43:21.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T08:46:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.855400", - "Timestamp": "2019-10-16T02:43:10.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049500", + "Timestamp": "2024-05-16T08:46:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.855400", - "Timestamp": "2019-10-16T02:43:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.296500", + "Timestamp": "2024-05-16T08:46:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.825400", - "Timestamp": "2019-10-16T02:43:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266500", + "Timestamp": "2024-05-16T08:46:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.825400", - "Timestamp": "2019-10-16T02:43:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.166500", + "Timestamp": "2024-05-16T08:46:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.725400", - "Timestamp": "2019-10-16T02:43:10.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.721700", + "Timestamp": "2024-05-16T08:46:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.725400", - "Timestamp": "2019-10-16T02:43:10.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.691700", + "Timestamp": "2024-05-16T08:46:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.033100", - "Timestamp": "2019-10-16T02:42:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.591700", + "Timestamp": "2024-05-16T08:46:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.033100", - "Timestamp": "2019-10-16T02:42:47.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.931100", + "Timestamp": "2024-05-16T08:46:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.612800", - "Timestamp": "2019-10-16T02:42:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.630500", + "Timestamp": "2024-05-16T08:46:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.612800", - "Timestamp": "2019-10-16T02:42:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.625500", + "Timestamp": "2024-05-16T08:46:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.582800", - "Timestamp": "2019-10-16T02:42:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.500500", + "Timestamp": "2024-05-16T08:46:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.582800", - "Timestamp": "2019-10-16T02:42:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.543900", + "Timestamp": "2024-05-16T08:32:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.482800", - "Timestamp": "2019-10-16T02:42:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.538900", + "Timestamp": "2024-05-16T08:32:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.482800", - "Timestamp": "2019-10-16T02:42:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.413900", + "Timestamp": "2024-05-16T08:32:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094900", - "Timestamp": "2019-10-16T02:41:44.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.248300", + "Timestamp": "2024-05-16T08:32:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134900", - "Timestamp": "2019-10-16T02:41:44.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "13.461000", + "Timestamp": "2024-05-16T08:32:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034900", - "Timestamp": "2019-10-16T02:41:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.712400", + "Timestamp": "2024-05-16T08:32:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.110500", - "Timestamp": "2019-10-16T02:37:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.875000", + "Timestamp": "2024-05-16T08:32:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.080500", - "Timestamp": "2019-10-16T02:37:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.682400", + "Timestamp": "2024-05-16T08:32:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.980500", - "Timestamp": "2019-10-16T02:37:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.845000", + "Timestamp": "2024-05-16T08:32:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.628700", - "Timestamp": "2019-10-16T02:29:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.582400", + "Timestamp": "2024-05-16T08:32:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.598700", - "Timestamp": "2019-10-16T02:29:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.745000", + "Timestamp": "2024-05-16T08:32:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.498700", - "Timestamp": "2019-10-16T02:29:04.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.891900", + "Timestamp": "2024-05-16T08:32:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.265500", - "Timestamp": "2019-10-16T02:28:34.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.288300", + "Timestamp": "2024-05-16T08:32:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.235500", - "Timestamp": "2019-10-16T02:28:34.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.283300", + "Timestamp": "2024-05-16T08:32:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.135500", - "Timestamp": "2019-10-16T02:28:34.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158300", + "Timestamp": "2024-05-16T08:32:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.263300", - "Timestamp": "2019-10-16T02:12:18.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.247700", + "Timestamp": "2024-05-16T08:32:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.233300", - "Timestamp": "2019-10-16T02:12:18.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.534800", + "Timestamp": "2024-05-16T08:32:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.133300", - "Timestamp": "2019-10-16T02:12:18.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.529800", + "Timestamp": "2024-05-16T08:32:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.277100", - "Timestamp": "2019-10-16T02:03:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.404800", + "Timestamp": "2024-05-16T08:32:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.247100", - "Timestamp": "2019-10-16T02:03:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.634700", + "Timestamp": "2024-05-16T08:32:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.147100", - "Timestamp": "2019-10-16T02:03:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.702400", + "Timestamp": "2024-05-16T08:32:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.097400", - "Timestamp": "2019-10-16T02:03:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.604700", + "Timestamp": "2024-05-16T08:32:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.137400", - "Timestamp": "2019-10-16T02:03:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.672400", + "Timestamp": "2024-05-16T08:32:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.037400", - "Timestamp": "2019-10-16T02:03:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.504700", + "Timestamp": "2024-05-16T08:32:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095700", - "Timestamp": "2019-10-16T02:01:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.572400", + "Timestamp": "2024-05-16T08:32:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135700", - "Timestamp": "2019-10-16T02:01:56.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.022500", + "Timestamp": "2024-05-16T08:32:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035700", - "Timestamp": "2019-10-16T02:01:56.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.443600", + "Timestamp": "2024-05-16T08:32:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.265800", - "Timestamp": "2019-10-16T01:46:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.438600", + "Timestamp": "2024-05-16T08:32:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.235800", - "Timestamp": "2019-10-16T01:46:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.313600", + "Timestamp": "2024-05-16T08:32:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.135800", - "Timestamp": "2019-10-16T01:46:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.479200", + "Timestamp": "2024-05-16T08:32:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.742600", - "Timestamp": "2019-10-16T01:46:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.478400", + "Timestamp": "2024-05-16T08:32:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.712600", - "Timestamp": "2019-10-16T01:46:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.463100", + "Timestamp": "2024-05-16T08:32:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.612600", - "Timestamp": "2019-10-16T01:46:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473400", + "Timestamp": "2024-05-16T08:32:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.132200", - "Timestamp": "2019-10-16T01:39:00.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.458100", + "Timestamp": "2024-05-16T08:32:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.172200", - "Timestamp": "2019-10-16T01:39:00.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.348400", + "Timestamp": "2024-05-16T08:32:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.072200", - "Timestamp": "2019-10-16T01:39:00.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.333100", + "Timestamp": "2024-05-16T08:32:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.596000", - "Timestamp": "2019-10-16T01:38:58.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.082100", + "Timestamp": "2024-05-16T08:32:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.566000", - "Timestamp": "2019-10-16T01:38:58.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.077100", + "Timestamp": "2024-05-16T08:32:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.466000", - "Timestamp": "2019-10-16T01:38:58.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.952100", + "Timestamp": "2024-05-16T08:32:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.097100", - "Timestamp": "2019-10-16T01:38:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.051400", + "Timestamp": "2024-05-16T08:32:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.137100", - "Timestamp": "2019-10-16T01:38:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.046400", + "Timestamp": "2024-05-16T08:32:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.037100", - "Timestamp": "2019-10-16T01:38:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.921400", + "Timestamp": "2024-05-16T08:32:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "12.467500", - "Timestamp": "2019-10-16T01:38:41.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.458300", + "Timestamp": "2024-05-16T08:32:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "p3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "12.437500", - "Timestamp": "2019-10-16T01:38:41.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.644700", + "Timestamp": "2024-05-16T08:32:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "12.337500", - "Timestamp": "2019-10-16T01:38:41.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.639700", + "Timestamp": "2024-05-16T08:32:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.400900", - "Timestamp": "2019-10-16T01:38:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.514700", + "Timestamp": "2024-05-16T08:32:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.370900", - "Timestamp": "2019-10-16T01:38:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073700", + "Timestamp": "2024-05-16T08:32:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.270900", - "Timestamp": "2019-10-16T01:38:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070000", + "Timestamp": "2024-05-16T08:32:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.793400", - "Timestamp": "2019-10-16T01:30:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013700", + "Timestamp": "2024-05-16T08:32:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.763400", - "Timestamp": "2019-10-16T01:30:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114200", + "Timestamp": "2024-05-16T08:32:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.663400", - "Timestamp": "2019-10-16T01:30:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.342600", + "Timestamp": "2024-05-16T08:32:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095900", - "Timestamp": "2019-10-16T01:30:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.337600", + "Timestamp": "2024-05-16T08:32:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135900", - "Timestamp": "2019-10-16T01:30:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212600", + "Timestamp": "2024-05-16T08:32:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035900", - "Timestamp": "2019-10-16T01:30:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.254300", + "Timestamp": "2024-05-16T08:32:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.265900", - "Timestamp": "2019-10-16T01:22:24.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.249300", + "Timestamp": "2024-05-16T08:32:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.235900", - "Timestamp": "2019-10-16T01:22:24.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124300", + "Timestamp": "2024-05-16T08:32:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.135900", - "Timestamp": "2019-10-16T01:22:24.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.953500", + "Timestamp": "2024-05-16T08:32:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.234900", - "Timestamp": "2019-10-16T01:22:00.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.959000", + "Timestamp": "2024-05-16T08:32:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.253000", - "Timestamp": "2019-10-16T01:21:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.254500", + "Timestamp": "2024-05-16T08:32:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.290900", - "Timestamp": "2019-10-16T01:21:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.249500", + "Timestamp": "2024-05-16T08:32:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.260900", - "Timestamp": "2019-10-16T01:21:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124500", + "Timestamp": "2024-05-16T08:32:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.160900", - "Timestamp": "2019-10-16T01:21:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.943100", + "Timestamp": "2024-05-16T08:32:22.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "p2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.525900", - "Timestamp": "2019-10-16T01:13:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216500", + "Timestamp": "2024-05-16T08:32:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "p2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.565900", - "Timestamp": "2019-10-16T01:13:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.344500", + "Timestamp": "2024-05-16T08:32:20.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "p2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.465900", - "Timestamp": "2019-10-16T01:13:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.667200", + "Timestamp": "2024-05-16T08:32:20.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.412200", - "Timestamp": "2019-10-16T01:13:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.328400", + "Timestamp": "2024-05-16T08:32:18.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.133600", - "Timestamp": "2019-10-16T01:13:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.323400", + "Timestamp": "2024-05-16T08:32:18.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.173600", - "Timestamp": "2019-10-16T01:13:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.198400", + "Timestamp": "2024-05-16T08:32:18.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.073600", - "Timestamp": "2019-10-16T01:13:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.188300", + "Timestamp": "2024-05-16T08:32:17.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.271700", - "Timestamp": "2019-10-16T01:05:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.158300", + "Timestamp": "2024-05-16T08:32:17.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.241700", - "Timestamp": "2019-10-16T01:05:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.058300", + "Timestamp": "2024-05-16T08:32:17.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.141700", - "Timestamp": "2019-10-16T01:05:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096700", + "Timestamp": "2024-05-16T08:32:17.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.278300", - "Timestamp": "2019-10-16T01:05:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093000", + "Timestamp": "2024-05-16T08:32:17.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.248300", - "Timestamp": "2019-10-16T01:05:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036700", + "Timestamp": "2024-05-16T08:32:17.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.148300", - "Timestamp": "2019-10-16T01:05:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-16T08:32:17.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.561500", - "Timestamp": "2019-10-16T01:04:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092200", + "Timestamp": "2024-05-16T08:32:17.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.263700", - "Timestamp": "2019-10-16T00:56:47.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035900", + "Timestamp": "2024-05-16T08:32:17.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.233700", - "Timestamp": "2019-10-16T00:56:47.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.346600", + "Timestamp": "2024-05-16T08:32:14.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.133700", - "Timestamp": "2019-10-16T00:56:47.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.341600", + "Timestamp": "2024-05-16T08:32:14.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.424000", - "Timestamp": "2019-10-16T00:48:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.216600", + "Timestamp": "2024-05-16T08:32:14.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.394000", - "Timestamp": "2019-10-16T00:48:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.953100", + "Timestamp": "2024-05-16T08:32:14.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.294000", - "Timestamp": "2019-10-16T00:48:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.948100", + "Timestamp": "2024-05-16T08:32:14.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "9.510400", - "Timestamp": "2019-10-16T00:48:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.823100", + "Timestamp": "2024-05-16T08:32:14.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.120600", - "Timestamp": "2019-10-16T00:48:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.751500", + "Timestamp": "2024-05-16T08:32:14.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.160600", - "Timestamp": "2019-10-16T00:48:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.612300", + "Timestamp": "2024-05-16T08:32:14.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.060600", - "Timestamp": "2019-10-16T00:48:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.213400", + "Timestamp": "2024-05-16T08:32:11.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.279600", - "Timestamp": "2019-10-16T00:48:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.208400", + "Timestamp": "2024-05-16T08:32:11.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.249600", - "Timestamp": "2019-10-16T00:48:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.083400", + "Timestamp": "2024-05-16T08:32:11.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.149600", - "Timestamp": "2019-10-16T00:48:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.647400", + "Timestamp": "2024-05-16T08:32:08.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.384200", - "Timestamp": "2019-10-16T00:44:05.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.642400", + "Timestamp": "2024-05-16T08:32:08.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.975000", - "Timestamp": "2019-10-16T00:44:05.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.517400", + "Timestamp": "2024-05-16T08:32:08.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.384200", - "Timestamp": "2019-10-16T00:44:05.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.807300", + "Timestamp": "2024-05-16T08:32:08.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.507700", - "Timestamp": "2019-10-16T00:43:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.802300", + "Timestamp": "2024-05-16T08:32:08.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.952000", - "Timestamp": "2019-10-16T00:43:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.677300", + "Timestamp": "2024-05-16T08:32:08.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.507700", - "Timestamp": "2019-10-16T00:43:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.205800", + "Timestamp": "2024-05-16T08:32:08.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.313200", - "Timestamp": "2019-10-16T00:43:05.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.200800", + "Timestamp": "2024-05-16T08:32:08.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.313200", - "Timestamp": "2019-10-16T00:43:05.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.075800", + "Timestamp": "2024-05-16T08:32:08.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.353200", - "Timestamp": "2019-10-16T00:43:05.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092300", + "Timestamp": "2024-05-16T08:32:08.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.353200", - "Timestamp": "2019-10-16T00:43:05.000Z" + "SpotPrice": "0.088300", + "Timestamp": "2024-05-16T08:32:08.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.253200", - "Timestamp": "2019-10-16T00:43:05.000Z" + "SpotPrice": "0.032300", + "Timestamp": "2024-05-16T08:32:08.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.253200", - "Timestamp": "2019-10-16T00:43:05.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.341100", + "Timestamp": "2024-05-16T08:32:07.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.384200", - "Timestamp": "2019-10-16T00:43:05.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.336100", + "Timestamp": "2024-05-16T08:32:07.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.384200", - "Timestamp": "2019-10-16T00:43:05.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.211100", + "Timestamp": "2024-05-16T08:32:07.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.313200", - "Timestamp": "2019-10-16T00:43:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.869200", + "Timestamp": "2024-05-16T08:32:07.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.313200", - "Timestamp": "2019-10-16T00:43:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.864200", + "Timestamp": "2024-05-16T08:32:07.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.353200", - "Timestamp": "2019-10-16T00:43:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.739200", + "Timestamp": "2024-05-16T08:32:07.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.353200", - "Timestamp": "2019-10-16T00:43:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.273600", + "Timestamp": "2024-05-16T08:32:07.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.253200", - "Timestamp": "2019-10-16T00:43:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.268600", + "Timestamp": "2024-05-16T08:32:07.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.253200", - "Timestamp": "2019-10-16T00:43:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.143600", + "Timestamp": "2024-05-16T08:32:07.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.115000", - "Timestamp": "2019-10-16T00:43:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.623000", + "Timestamp": "2024-05-16T08:32:06.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.115000", - "Timestamp": "2019-10-16T00:43:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.556700", + "Timestamp": "2024-05-16T08:32:06.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.301000", - "Timestamp": "2019-10-16T00:42:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.551700", + "Timestamp": "2024-05-16T08:32:06.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.301000", - "Timestamp": "2019-10-16T00:42:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.426700", + "Timestamp": "2024-05-16T08:32:06.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.271000", - "Timestamp": "2019-10-16T00:42:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.519600", + "Timestamp": "2024-05-16T08:32:03.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.271000", - "Timestamp": "2019-10-16T00:42:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.514600", + "Timestamp": "2024-05-16T08:32:03.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.171000", - "Timestamp": "2019-10-16T00:42:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.389600", + "Timestamp": "2024-05-16T08:32:03.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.171000", - "Timestamp": "2019-10-16T00:42:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.446600", + "Timestamp": "2024-05-16T08:32:02.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.129900", - "Timestamp": "2019-10-16T00:42:26.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.441600", + "Timestamp": "2024-05-16T08:32:02.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.169900", - "Timestamp": "2019-10-16T00:42:26.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.316600", + "Timestamp": "2024-05-16T08:32:02.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.069900", - "Timestamp": "2019-10-16T00:42:26.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.830600", + "Timestamp": "2024-05-16T08:32:02.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.253900", - "Timestamp": "2019-10-16T00:42:13.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.843000", + "Timestamp": "2024-05-16T08:32:02.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.253900", - "Timestamp": "2019-10-16T00:42:13.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.888000", + "Timestamp": "2024-05-16T08:32:01.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.253900", - "Timestamp": "2019-10-16T00:42:13.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.413600", + "Timestamp": "2024-05-16T08:32:00.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.265100", - "Timestamp": "2019-10-16T00:40:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.483900", + "Timestamp": "2024-05-16T08:32:00.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.235100", - "Timestamp": "2019-10-16T00:40:41.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.408600", + "Timestamp": "2024-05-16T08:32:00.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.135100", - "Timestamp": "2019-10-16T00:40:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.478900", + "Timestamp": "2024-05-16T08:32:00.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.656300", - "Timestamp": "2019-10-16T00:40:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.283600", + "Timestamp": "2024-05-16T08:32:00.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.626300", - "Timestamp": "2019-10-16T00:40:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.353900", + "Timestamp": "2024-05-16T08:32:00.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.526300", - "Timestamp": "2019-10-16T00:40:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.254400", + "Timestamp": "2024-05-16T08:31:59.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.436900", - "Timestamp": "2019-10-16T00:40:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.249400", + "Timestamp": "2024-05-16T08:31:59.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g3s.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.476900", - "Timestamp": "2019-10-16T00:40:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.124400", + "Timestamp": "2024-05-16T08:31:59.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.376900", - "Timestamp": "2019-10-16T00:40:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.925500", + "Timestamp": "2024-05-16T08:31:55.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.132600", - "Timestamp": "2019-10-16T00:39:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226200", + "Timestamp": "2024-05-16T08:31:55.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.172600", - "Timestamp": "2019-10-16T00:39:57.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.553700", + "Timestamp": "2024-05-16T08:31:54.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.072600", - "Timestamp": "2019-10-16T00:39:57.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.548700", + "Timestamp": "2024-05-16T08:31:54.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.439000", - "Timestamp": "2019-10-16T00:23:35.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.423700", + "Timestamp": "2024-05-16T08:31:54.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.409000", - "Timestamp": "2019-10-16T00:23:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.991800", + "Timestamp": "2024-05-16T08:31:54.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.309000", - "Timestamp": "2019-10-16T00:23:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.986800", + "Timestamp": "2024-05-16T08:31:54.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.151400", - "Timestamp": "2019-10-16T00:15:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.861800", + "Timestamp": "2024-05-16T08:31:54.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.191400", - "Timestamp": "2019-10-16T00:15:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.948500", + "Timestamp": "2024-05-16T08:31:53.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.091400", - "Timestamp": "2019-10-16T00:15:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.943500", + "Timestamp": "2024-05-16T08:31:53.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.271500", - "Timestamp": "2019-10-16T00:15:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.818500", + "Timestamp": "2024-05-16T08:31:53.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.241500", - "Timestamp": "2019-10-16T00:15:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.634400", + "Timestamp": "2024-05-16T08:31:53.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.141500", - "Timestamp": "2019-10-16T00:15:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.629400", + "Timestamp": "2024-05-16T08:31:53.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "6.775200", - "Timestamp": "2019-10-16T00:05:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.504400", + "Timestamp": "2024-05-16T08:31:53.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "6.745200", - "Timestamp": "2019-10-16T00:05:54.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.781100", + "Timestamp": "2024-05-16T08:31:52.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "6.645200", - "Timestamp": "2019-10-16T00:05:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.335700", + "Timestamp": "2024-05-16T08:31:52.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094400", - "Timestamp": "2019-10-16T00:05:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-16T08:31:51.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134400", - "Timestamp": "2019-10-16T00:05:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.681900", + "Timestamp": "2024-05-16T08:31:51.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034400", - "Timestamp": "2019-10-16T00:05:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.676900", + "Timestamp": "2024-05-16T08:31:51.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.255600", - "Timestamp": "2019-10-16T00:05:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.551900", + "Timestamp": "2024-05-16T08:31:51.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.254900", - "Timestamp": "2019-10-15T23:57:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.753900", + "Timestamp": "2024-05-16T08:31:51.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.864200", - "Timestamp": "2019-10-15T23:57:17.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.661700", + "Timestamp": "2024-05-16T08:31:50.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "d2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.904200", - "Timestamp": "2019-10-15T23:57:17.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.656700", + "Timestamp": "2024-05-16T08:31:50.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.804200", - "Timestamp": "2019-10-15T23:57:17.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.531700", + "Timestamp": "2024-05-16T08:31:50.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.076400", - "Timestamp": "2019-10-15T23:49:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.564800", + "Timestamp": "2024-05-16T08:31:48.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t3.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.116400", - "Timestamp": "2019-10-15T23:49:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.561300", + "Timestamp": "2024-05-16T08:31:48.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.016400", - "Timestamp": "2019-10-15T23:49:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.559800", + "Timestamp": "2024-05-16T08:31:48.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "11.690300", - "Timestamp": "2019-10-15T23:43:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.556300", + "Timestamp": "2024-05-16T08:31:48.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "11.690300", - "Timestamp": "2019-10-15T23:43:02.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.434800", + "Timestamp": "2024-05-16T08:31:48.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "11.690300", - "Timestamp": "2019-10-15T23:43:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.431300", + "Timestamp": "2024-05-16T08:31:48.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "5.932300", - "Timestamp": "2019-10-15T23:42:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.871200", + "Timestamp": "2024-05-16T08:31:47.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "5.932300", - "Timestamp": "2019-10-15T23:42:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.866200", + "Timestamp": "2024-05-16T08:31:47.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "5.932300", - "Timestamp": "2019-10-15T23:42:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.741200", + "Timestamp": "2024-05-16T08:31:47.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1.32xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "5.902300", - "Timestamp": "2019-10-15T23:42:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094300", + "Timestamp": "2024-05-16T08:31:46.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "x1.32xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "5.902300", - "Timestamp": "2019-10-15T23:42:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090600", + "Timestamp": "2024-05-16T08:31:46.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1.32xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "5.902300", - "Timestamp": "2019-10-15T23:42:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034300", + "Timestamp": "2024-05-16T08:31:46.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "5.802300", - "Timestamp": "2019-10-15T23:42:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.803800", + "Timestamp": "2024-05-16T08:31:45.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "5.802300", - "Timestamp": "2019-10-15T23:42:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.687000", + "Timestamp": "2024-05-16T08:31:45.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "5.802300", - "Timestamp": "2019-10-15T23:42:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.798800", + "Timestamp": "2024-05-16T08:31:45.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m1.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.084800", - "Timestamp": "2019-10-15T23:40:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.682000", + "Timestamp": "2024-05-16T08:31:45.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m1.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.124800", - "Timestamp": "2019-10-15T23:40:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.673800", + "Timestamp": "2024-05-16T08:31:45.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m1.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.024800", - "Timestamp": "2019-10-15T23:40:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.557000", + "Timestamp": "2024-05-16T08:31:45.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.276400", - "Timestamp": "2019-10-15T23:40:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.902400", + "Timestamp": "2024-05-16T08:31:45.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.246400", - "Timestamp": "2019-10-15T23:40:26.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.316300", + "Timestamp": "2024-05-16T08:31:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.146400", - "Timestamp": "2019-10-15T23:40:26.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.311300", + "Timestamp": "2024-05-16T08:31:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.126500", - "Timestamp": "2019-10-15T23:40:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.186300", + "Timestamp": "2024-05-16T08:31:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.166500", - "Timestamp": "2019-10-15T23:40:15.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.727400", + "Timestamp": "2024-05-16T08:31:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.066500", - "Timestamp": "2019-10-15T23:40:15.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.697400", + "Timestamp": "2024-05-16T08:31:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.342400", - "Timestamp": "2019-10-15T23:32:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.597400", + "Timestamp": "2024-05-16T08:31:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.312400", - "Timestamp": "2019-10-15T23:32:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.879200", + "Timestamp": "2024-05-16T08:31:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.212400", - "Timestamp": "2019-10-15T23:32:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.853200", + "Timestamp": "2024-05-16T08:31:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.480400", - "Timestamp": "2019-10-15T23:32:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.416500", + "Timestamp": "2024-05-16T08:31:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g3s.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.520400", - "Timestamp": "2019-10-15T23:32:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.411500", + "Timestamp": "2024-05-16T08:31:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.420400", - "Timestamp": "2019-10-15T23:32:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.286500", + "Timestamp": "2024-05-16T08:31:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.097300", - "Timestamp": "2019-10-15T23:32:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.640500", + "Timestamp": "2024-05-16T08:31:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.137300", - "Timestamp": "2019-10-15T23:32:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.635500", + "Timestamp": "2024-05-16T08:31:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.037300", - "Timestamp": "2019-10-15T23:32:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.510500", + "Timestamp": "2024-05-16T08:31:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.130200", - "Timestamp": "2019-10-15T23:23:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.040300", + "Timestamp": "2024-05-16T08:31:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.170200", - "Timestamp": "2019-10-15T23:23:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.100100", + "Timestamp": "2024-05-16T08:31:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.070200", - "Timestamp": "2019-10-15T23:23:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.095100", + "Timestamp": "2024-05-16T08:31:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.734500", - "Timestamp": "2019-10-15T23:20:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.970100", + "Timestamp": "2024-05-16T08:31:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.704500", - "Timestamp": "2019-10-15T23:20:20.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.286100", + "Timestamp": "2024-05-16T08:31:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.604500", - "Timestamp": "2019-10-15T23:20:20.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.281100", + "Timestamp": "2024-05-16T08:31:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.266500", - "Timestamp": "2019-10-15T23:19:56.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.156100", + "Timestamp": "2024-05-16T08:31:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.236500", - "Timestamp": "2019-10-15T23:19:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T08:31:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.136500", - "Timestamp": "2019-10-15T23:19:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.045400", + "Timestamp": "2024-05-16T08:31:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.130200", - "Timestamp": "2019-10-15T23:11:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.040400", + "Timestamp": "2024-05-16T08:31:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.170200", - "Timestamp": "2019-10-15T23:11:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.915400", + "Timestamp": "2024-05-16T08:31:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.070200", - "Timestamp": "2019-10-15T23:11:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.700300", + "Timestamp": "2024-05-16T08:31:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.442400", - "Timestamp": "2019-10-15T23:11:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.695300", + "Timestamp": "2024-05-16T08:31:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.412400", - "Timestamp": "2019-10-15T23:11:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.570300", + "Timestamp": "2024-05-16T08:31:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.312400", - "Timestamp": "2019-10-15T23:11:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133100", + "Timestamp": "2024-05-16T08:31:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.383900", - "Timestamp": "2019-10-15T23:11:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123600", + "Timestamp": "2024-05-16T08:31:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.353900", - "Timestamp": "2019-10-15T23:11:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129400", + "Timestamp": "2024-05-16T08:31:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.253900", - "Timestamp": "2019-10-15T23:11:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119900", + "Timestamp": "2024-05-16T08:31:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095800", - "Timestamp": "2019-10-15T23:11:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073100", + "Timestamp": "2024-05-16T08:31:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135800", - "Timestamp": "2019-10-15T23:11:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063600", + "Timestamp": "2024-05-16T08:31:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035800", - "Timestamp": "2019-10-15T23:11:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184900", + "Timestamp": "2024-05-16T08:31:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.272000", - "Timestamp": "2019-10-15T23:06:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181200", + "Timestamp": "2024-05-16T08:31:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.242000", - "Timestamp": "2019-10-15T23:06:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124900", + "Timestamp": "2024-05-16T08:31:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.142000", - "Timestamp": "2019-10-15T23:06:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.495400", + "Timestamp": "2024-05-16T08:31:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.840000", - "Timestamp": "2019-10-15T23:06:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.443100", + "Timestamp": "2024-05-16T08:31:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.840000", - "Timestamp": "2019-10-15T23:06:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.424500", + "Timestamp": "2024-05-16T08:31:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.247800", - "Timestamp": "2019-10-15T23:03:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168700", + "Timestamp": "2024-05-16T08:31:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.247800", - "Timestamp": "2019-10-15T23:03:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165000", + "Timestamp": "2024-05-16T08:31:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.247800", - "Timestamp": "2019-10-15T23:03:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T08:31:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.217800", - "Timestamp": "2019-10-15T23:03:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.918100", + "Timestamp": "2024-05-16T08:31:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.217800", - "Timestamp": "2019-10-15T23:03:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.913100", + "Timestamp": "2024-05-16T08:31:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.217800", - "Timestamp": "2019-10-15T23:03:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.788100", + "Timestamp": "2024-05-16T08:31:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.117800", - "Timestamp": "2019-10-15T23:03:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168500", + "Timestamp": "2024-05-16T08:31:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.117800", - "Timestamp": "2019-10-15T23:03:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165500", + "Timestamp": "2024-05-16T08:31:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.117800", - "Timestamp": "2019-10-15T23:03:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108500", + "Timestamp": "2024-05-16T08:31:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.423000", - "Timestamp": "2019-10-15T23:03:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.249600", + "Timestamp": "2024-05-16T08:31:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.393000", - "Timestamp": "2019-10-15T23:03:15.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.464600", + "Timestamp": "2024-05-16T08:31:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.293000", - "Timestamp": "2019-10-15T23:03:15.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.738000", + "Timestamp": "2024-05-16T08:31:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.748400", - "Timestamp": "2019-10-15T23:02:57.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.708000", + "Timestamp": "2024-05-16T08:31:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.718400", - "Timestamp": "2019-10-15T23:02:57.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.608000", + "Timestamp": "2024-05-16T08:31:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.618400", - "Timestamp": "2019-10-15T23:02:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.552500", + "Timestamp": "2024-05-16T08:31:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.131300", - "Timestamp": "2019-10-15T22:55:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.547500", + "Timestamp": "2024-05-16T08:31:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.171300", - "Timestamp": "2019-10-15T22:55:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.422500", + "Timestamp": "2024-05-16T08:31:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-15T22:55:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.661600", + "Timestamp": "2024-05-16T08:31:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.146900", - "Timestamp": "2019-10-15T22:55:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.677000", + "Timestamp": "2024-05-16T08:31:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.186900", - "Timestamp": "2019-10-15T22:55:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.656600", + "Timestamp": "2024-05-16T08:31:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.086900", - "Timestamp": "2019-10-15T22:55:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.672000", + "Timestamp": "2024-05-16T08:31:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.398800", - "Timestamp": "2019-10-15T22:54:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.531600", + "Timestamp": "2024-05-16T08:31:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.368800", - "Timestamp": "2019-10-15T22:54:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.547000", + "Timestamp": "2024-05-16T08:31:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.268800", - "Timestamp": "2019-10-15T22:54:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.559900", + "Timestamp": "2024-05-16T08:31:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.452600", - "Timestamp": "2019-10-15T22:54:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.365100", + "Timestamp": "2024-05-16T08:31:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.422600", - "Timestamp": "2019-10-15T22:54:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.360100", + "Timestamp": "2024-05-16T08:31:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.322600", - "Timestamp": "2019-10-15T22:54:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235100", + "Timestamp": "2024-05-16T08:31:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.503000", - "Timestamp": "2019-10-15T22:54:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.234200", + "Timestamp": "2024-05-16T08:31:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "p3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.473000", - "Timestamp": "2019-10-15T22:54:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.212600", + "Timestamp": "2024-05-16T08:31:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.373000", - "Timestamp": "2019-10-15T22:54:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.229200", + "Timestamp": "2024-05-16T08:31:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.265700", - "Timestamp": "2019-10-15T22:54:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.207600", + "Timestamp": "2024-05-16T08:31:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.235700", - "Timestamp": "2019-10-15T22:54:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T08:31:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.135700", - "Timestamp": "2019-10-15T22:54:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082600", + "Timestamp": "2024-05-16T08:31:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.279500", - "Timestamp": "2019-10-15T22:46:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.404800", + "Timestamp": "2024-05-16T08:31:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.249500", - "Timestamp": "2019-10-15T22:46:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.399800", + "Timestamp": "2024-05-16T08:31:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.149500", - "Timestamp": "2019-10-15T22:46:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.274800", + "Timestamp": "2024-05-16T08:31:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.131500", - "Timestamp": "2019-10-15T22:46:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.029300", + "Timestamp": "2024-05-16T08:31:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.171500", - "Timestamp": "2019-10-15T22:46:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.024300", + "Timestamp": "2024-05-16T08:31:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.071500", - "Timestamp": "2019-10-15T22:46:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.899300", + "Timestamp": "2024-05-16T08:31:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.569200", - "Timestamp": "2019-10-15T22:44:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.473700", + "Timestamp": "2024-05-16T08:31:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.569200", - "Timestamp": "2019-10-15T22:44:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.468700", + "Timestamp": "2024-05-16T08:31:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.569200", - "Timestamp": "2019-10-15T22:44:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.343700", + "Timestamp": "2024-05-16T08:31:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.539200", - "Timestamp": "2019-10-15T22:44:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123300", + "Timestamp": "2024-05-16T08:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.539200", - "Timestamp": "2019-10-15T22:44:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119600", + "Timestamp": "2024-05-16T08:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.539200", - "Timestamp": "2019-10-15T22:44:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063300", + "Timestamp": "2024-05-16T08:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.439200", - "Timestamp": "2019-10-15T22:44:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.349000", + "Timestamp": "2024-05-16T08:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.439200", - "Timestamp": "2019-10-15T22:44:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319000", + "Timestamp": "2024-05-16T08:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.439200", - "Timestamp": "2019-10-15T22:44:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219000", + "Timestamp": "2024-05-16T08:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.175200", - "Timestamp": "2019-10-15T22:43:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121100", + "Timestamp": "2024-05-16T08:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.175200", - "Timestamp": "2019-10-15T22:43:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117400", + "Timestamp": "2024-05-16T08:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.175200", - "Timestamp": "2019-10-15T22:43:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061100", + "Timestamp": "2024-05-16T08:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.421300", - "Timestamp": "2019-10-15T22:37:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.725900", + "Timestamp": "2024-05-16T08:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.391300", - "Timestamp": "2019-10-15T22:37:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.720900", + "Timestamp": "2024-05-16T08:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.291300", - "Timestamp": "2019-10-15T22:37:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.595900", + "Timestamp": "2024-05-16T08:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.608800", - "Timestamp": "2019-10-15T22:36:15.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.663400", + "Timestamp": "2024-05-16T08:31:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.608800", - "Timestamp": "2019-10-15T22:36:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.389100", + "Timestamp": "2024-05-16T08:31:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.608800", - "Timestamp": "2019-10-15T22:36:15.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.388000", + "Timestamp": "2024-05-16T08:31:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.578800", - "Timestamp": "2019-10-15T22:36:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.359100", + "Timestamp": "2024-05-16T08:31:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.578800", - "Timestamp": "2019-10-15T22:36:15.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.358000", + "Timestamp": "2024-05-16T08:31:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.578800", - "Timestamp": "2019-10-15T22:36:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.259100", + "Timestamp": "2024-05-16T08:31:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.478800", - "Timestamp": "2019-10-15T22:36:15.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.258000", + "Timestamp": "2024-05-16T08:31:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.478800", - "Timestamp": "2019-10-15T22:36:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.481100", + "Timestamp": "2024-05-16T08:31:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.478800", - "Timestamp": "2019-10-15T22:36:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.451100", + "Timestamp": "2024-05-16T08:31:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.030800", - "Timestamp": "2019-10-15T22:36:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.351100", + "Timestamp": "2024-05-16T08:31:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.030800", - "Timestamp": "2019-10-15T22:36:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130300", + "Timestamp": "2024-05-16T08:31:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.030800", - "Timestamp": "2019-10-15T22:36:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T08:31:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "a1.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.267900", - "Timestamp": "2019-10-15T22:35:24.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070300", + "Timestamp": "2024-05-16T08:31:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "a1.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.237900", - "Timestamp": "2019-10-15T22:35:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133000", + "Timestamp": "2024-05-16T08:31:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "a1.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.137900", - "Timestamp": "2019-10-15T22:35:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173000", + "Timestamp": "2024-05-16T08:31:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.126500", - "Timestamp": "2019-10-15T22:22:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073000", + "Timestamp": "2024-05-16T08:31:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.126500", - "Timestamp": "2019-10-15T22:22:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.368500", + "Timestamp": "2024-05-16T08:31:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.126500", - "Timestamp": "2019-10-15T22:22:34.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.389300", + "Timestamp": "2024-05-16T08:31:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.166500", - "Timestamp": "2019-10-15T22:22:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.363500", + "Timestamp": "2024-05-16T08:31:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5n.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.166500", - "Timestamp": "2019-10-15T22:22:34.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.384300", + "Timestamp": "2024-05-16T08:31:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5n.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.166500", - "Timestamp": "2019-10-15T22:22:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.238500", + "Timestamp": "2024-05-16T08:31:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.066500", - "Timestamp": "2019-10-15T22:22:34.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.259300", + "Timestamp": "2024-05-16T08:31:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.066500", - "Timestamp": "2019-10-15T22:22:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.766200", + "Timestamp": "2024-05-16T08:29:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.066500", - "Timestamp": "2019-10-15T22:22:34.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.265800", + "Timestamp": "2024-05-16T08:29:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.250500", - "Timestamp": "2019-10-15T22:22:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "p2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.736200", + "Timestamp": "2024-05-16T08:29:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.250500", - "Timestamp": "2019-10-15T22:22:34.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "p2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.235800", + "Timestamp": "2024-05-16T08:29:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.250500", - "Timestamp": "2019-10-15T22:22:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.636200", + "Timestamp": "2024-05-16T08:29:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094700", - "Timestamp": "2019-10-15T22:21:54.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.135800", + "Timestamp": "2024-05-16T08:29:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134700", - "Timestamp": "2019-10-15T22:21:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.419700", + "Timestamp": "2024-05-16T08:29:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034700", - "Timestamp": "2019-10-15T22:21:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.436400", + "Timestamp": "2024-05-16T08:29:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.643500", - "Timestamp": "2019-10-15T22:13:27.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005400", + "Timestamp": "2024-05-16T08:20:49.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.613500", - "Timestamp": "2019-10-15T22:13:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.177600", + "Timestamp": "2024-05-16T08:17:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.513500", - "Timestamp": "2019-10-15T22:13:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.902100", + "Timestamp": "2024-05-16T08:17:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.414000", - "Timestamp": "2019-10-15T22:13:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Windows", + "SpotPrice": "4.280300", + "Timestamp": "2024-05-16T08:17:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.384000", - "Timestamp": "2019-10-15T22:13:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.820000", + "Timestamp": "2024-05-16T08:17:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.284000", - "Timestamp": "2019-10-15T22:13:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.815000", + "Timestamp": "2024-05-16T08:17:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.694000", - "Timestamp": "2019-10-15T22:13:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.690000", + "Timestamp": "2024-05-16T08:17:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.664000", - "Timestamp": "2019-10-15T22:13:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.187500", + "Timestamp": "2024-05-16T08:17:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.564000", - "Timestamp": "2019-10-15T22:13:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183800", + "Timestamp": "2024-05-16T08:17:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "4.628200", - "Timestamp": "2019-10-15T22:05:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127500", + "Timestamp": "2024-05-16T08:17:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "p2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "4.598200", - "Timestamp": "2019-10-15T22:05:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.464600", + "Timestamp": "2024-05-16T08:17:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "4.498200", - "Timestamp": "2019-10-15T22:05:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.459600", + "Timestamp": "2024-05-16T08:17:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.505200", - "Timestamp": "2019-10-15T22:04:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.334600", + "Timestamp": "2024-05-16T08:17:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.475200", - "Timestamp": "2019-10-15T22:04:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.260800", + "Timestamp": "2024-05-16T08:17:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.375200", - "Timestamp": "2019-10-15T22:04:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.018900", + "Timestamp": "2024-05-16T08:17:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.284600", - "Timestamp": "2019-10-15T22:04:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.013900", + "Timestamp": "2024-05-16T08:17:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.254600", - "Timestamp": "2019-10-15T22:04:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.888900", + "Timestamp": "2024-05-16T08:17:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.154600", - "Timestamp": "2019-10-15T22:04:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.000200", + "Timestamp": "2024-05-16T08:17:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.731900", - "Timestamp": "2019-10-15T22:04:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.805300", + "Timestamp": "2024-05-16T08:17:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.701900", - "Timestamp": "2019-10-15T22:04:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.899100", + "Timestamp": "2024-05-16T08:17:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.601900", - "Timestamp": "2019-10-15T22:04:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.681300", + "Timestamp": "2024-05-16T08:17:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.129700", - "Timestamp": "2019-10-15T21:57:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.676300", + "Timestamp": "2024-05-16T08:17:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.169700", - "Timestamp": "2019-10-15T21:57:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.551300", + "Timestamp": "2024-05-16T08:17:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.069700", - "Timestamp": "2019-10-15T21:57:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147400", + "Timestamp": "2024-05-16T08:17:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.726800", - "Timestamp": "2019-10-15T21:56:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143700", + "Timestamp": "2024-05-16T08:17:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.726800", - "Timestamp": "2019-10-15T21:56:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087400", + "Timestamp": "2024-05-16T08:17:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.726800", - "Timestamp": "2019-10-15T21:56:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.502100", + "Timestamp": "2024-05-16T08:17:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.696800", - "Timestamp": "2019-10-15T21:56:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.497100", + "Timestamp": "2024-05-16T08:17:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.696800", - "Timestamp": "2019-10-15T21:56:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.372100", + "Timestamp": "2024-05-16T08:17:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.696800", - "Timestamp": "2019-10-15T21:56:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.668200", + "Timestamp": "2024-05-16T08:17:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.596800", - "Timestamp": "2019-10-15T21:56:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.663200", + "Timestamp": "2024-05-16T08:17:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.596800", - "Timestamp": "2019-10-15T21:56:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.538200", + "Timestamp": "2024-05-16T08:17:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.596800", - "Timestamp": "2019-10-15T21:56:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.795800", + "Timestamp": "2024-05-16T08:17:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.012800", - "Timestamp": "2019-10-15T21:56:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.909900", + "Timestamp": "2024-05-16T08:17:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.012800", - "Timestamp": "2019-10-15T21:56:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.904900", + "Timestamp": "2024-05-16T08:17:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.012800", - "Timestamp": "2019-10-15T21:56:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.779900", + "Timestamp": "2024-05-16T08:17:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.896300", - "Timestamp": "2019-10-15T21:56:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.731500", + "Timestamp": "2024-05-16T08:17:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.866300", - "Timestamp": "2019-10-15T21:56:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.034200", + "Timestamp": "2024-05-16T08:17:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.766300", - "Timestamp": "2019-10-15T21:56:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.029200", + "Timestamp": "2024-05-16T08:17:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.404000", - "Timestamp": "2019-10-15T21:56:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.904200", + "Timestamp": "2024-05-16T08:17:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.374000", - "Timestamp": "2019-10-15T21:56:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.277500", + "Timestamp": "2024-05-16T08:17:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.274000", - "Timestamp": "2019-10-15T21:56:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.507100", + "Timestamp": "2024-05-16T08:17:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.971500", - "Timestamp": "2019-10-15T21:56:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.925800", + "Timestamp": "2024-05-16T08:17:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.941500", - "Timestamp": "2019-10-15T21:56:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.915200", + "Timestamp": "2024-05-16T08:17:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.841500", - "Timestamp": "2019-10-15T21:56:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.933100", + "Timestamp": "2024-05-16T08:17:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.945500", - "Timestamp": "2019-10-15T21:56:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.928100", + "Timestamp": "2024-05-16T08:17:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.945500", - "Timestamp": "2019-10-15T21:56:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.803100", + "Timestamp": "2024-05-16T08:17:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.477300", - "Timestamp": "2019-10-15T21:56:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.981600", + "Timestamp": "2024-05-16T08:17:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.447300", - "Timestamp": "2019-10-15T21:56:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.951600", + "Timestamp": "2024-05-16T08:17:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.347300", - "Timestamp": "2019-10-15T21:56:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.851600", + "Timestamp": "2024-05-16T08:17:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.945500", - "Timestamp": "2019-10-15T21:56:35.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.622100", + "Timestamp": "2024-05-16T08:17:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.945500", - "Timestamp": "2019-10-15T21:56:35.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.617100", + "Timestamp": "2024-05-16T08:17:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.395500", - "Timestamp": "2019-10-15T21:56:35.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.492100", + "Timestamp": "2024-05-16T08:17:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.395500", - "Timestamp": "2019-10-15T21:56:35.000Z" + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T08:17:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.365500", - "Timestamp": "2019-10-15T21:56:35.000Z" + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T08:17:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.365500", - "Timestamp": "2019-10-15T21:56:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044800", + "Timestamp": "2024-05-16T08:17:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.265500", - "Timestamp": "2019-10-15T21:56:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.807900", + "Timestamp": "2024-05-16T08:17:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.265500", - "Timestamp": "2019-10-15T21:56:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.802900", + "Timestamp": "2024-05-16T08:17:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.100400", - "Timestamp": "2019-10-15T21:56:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.677900", + "Timestamp": "2024-05-16T08:17:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.634000", - "Timestamp": "2019-10-15T21:56:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.804000", + "Timestamp": "2024-05-16T08:17:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.968300", - "Timestamp": "2019-10-15T21:56:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.281300", + "Timestamp": "2024-05-16T08:17:22.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.070400", - "Timestamp": "2019-10-15T21:56:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276300", + "Timestamp": "2024-05-16T08:17:22.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.604000", - "Timestamp": "2019-10-15T21:56:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.151300", + "Timestamp": "2024-05-16T08:17:22.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.938300", - "Timestamp": "2019-10-15T21:56:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.300700", + "Timestamp": "2024-05-16T08:17:22.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.970400", - "Timestamp": "2019-10-15T21:56:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.295700", + "Timestamp": "2024-05-16T08:17:22.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.504000", - "Timestamp": "2019-10-15T21:56:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170700", + "Timestamp": "2024-05-16T08:17:22.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.838300", - "Timestamp": "2019-10-15T21:56:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.608700", + "Timestamp": "2024-05-16T08:17:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.273700", - "Timestamp": "2019-10-15T21:56:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.603700", + "Timestamp": "2024-05-16T08:17:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.712000", - "Timestamp": "2019-10-15T21:56:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.478700", + "Timestamp": "2024-05-16T08:17:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.046300", - "Timestamp": "2019-10-15T21:56:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.976500", + "Timestamp": "2024-05-16T08:17:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.219000", - "Timestamp": "2019-10-15T21:56:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.946500", + "Timestamp": "2024-05-16T08:17:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.259000", - "Timestamp": "2019-10-15T21:56:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.846500", + "Timestamp": "2024-05-16T08:17:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.159000", - "Timestamp": "2019-10-15T21:56:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.625100", + "Timestamp": "2024-05-16T08:17:20.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.528000", - "Timestamp": "2019-10-15T21:56:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.620100", + "Timestamp": "2024-05-16T08:17:20.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095500", - "Timestamp": "2019-10-15T21:56:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.495100", + "Timestamp": "2024-05-16T08:17:20.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135500", - "Timestamp": "2019-10-15T21:56:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.534200", + "Timestamp": "2024-05-16T08:17:20.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035500", - "Timestamp": "2019-10-15T21:56:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.529200", + "Timestamp": "2024-05-16T08:17:20.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.886500", - "Timestamp": "2019-10-15T21:54:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.404200", + "Timestamp": "2024-05-16T08:17:20.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.886500", - "Timestamp": "2019-10-15T21:54:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.368800", + "Timestamp": "2024-05-16T08:17:19.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.856500", - "Timestamp": "2019-10-15T21:54:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.363800", + "Timestamp": "2024-05-16T08:17:19.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.856500", - "Timestamp": "2019-10-15T21:54:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.238800", + "Timestamp": "2024-05-16T08:17:19.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.756500", - "Timestamp": "2019-10-15T21:54:04.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.480800", + "Timestamp": "2024-05-16T08:17:18.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.756500", - "Timestamp": "2019-10-15T21:54:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.014400", + "Timestamp": "2024-05-16T08:17:18.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.172500", - "Timestamp": "2019-10-15T21:54:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144200", + "Timestamp": "2024-05-16T08:17:17.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.172500", - "Timestamp": "2019-10-15T21:54:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140200", + "Timestamp": "2024-05-16T08:17:17.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.028700", - "Timestamp": "2019-10-15T21:53:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084200", + "Timestamp": "2024-05-16T08:17:17.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.028700", - "Timestamp": "2019-10-15T21:53:44.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.985100", + "Timestamp": "2024-05-16T08:17:16.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.028700", - "Timestamp": "2019-10-15T21:53:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.990100", + "Timestamp": "2024-05-16T08:17:16.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.462800", - "Timestamp": "2019-10-15T21:53:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.985100", + "Timestamp": "2024-05-16T08:17:16.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.422700", - "Timestamp": "2019-10-15T21:53:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.860100", + "Timestamp": "2024-05-16T08:17:16.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.436400", - "Timestamp": "2019-10-15T21:53:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.795600", + "Timestamp": "2024-05-16T08:17:16.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.432800", - "Timestamp": "2019-10-15T21:53:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.748600", + "Timestamp": "2024-05-16T08:17:16.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.392700", - "Timestamp": "2019-10-15T21:53:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.743600", + "Timestamp": "2024-05-16T08:17:16.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.406400", - "Timestamp": "2019-10-15T21:53:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.618600", + "Timestamp": "2024-05-16T08:17:16.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.332800", - "Timestamp": "2019-10-15T21:53:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.443500", + "Timestamp": "2024-05-16T08:17:15.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.292700", - "Timestamp": "2019-10-15T21:53:44.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115900", + "Timestamp": "2024-05-16T08:17:15.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.306400", - "Timestamp": "2019-10-15T21:53:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.614200", + "Timestamp": "2024-05-16T08:17:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.126400", - "Timestamp": "2019-10-15T21:53:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.617600", + "Timestamp": "2024-05-16T08:17:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.128300", - "Timestamp": "2019-10-15T21:53:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.609200", + "Timestamp": "2024-05-16T08:17:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.166400", - "Timestamp": "2019-10-15T21:53:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.612600", + "Timestamp": "2024-05-16T08:17:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.168300", - "Timestamp": "2019-10-15T21:53:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.484200", + "Timestamp": "2024-05-16T08:17:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.066400", - "Timestamp": "2019-10-15T21:53:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.487600", + "Timestamp": "2024-05-16T08:17:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.068300", - "Timestamp": "2019-10-15T21:53:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.305600", + "Timestamp": "2024-05-16T08:17:12.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.266400", - "Timestamp": "2019-10-15T21:53:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.300600", + "Timestamp": "2024-05-16T08:17:12.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.266400", - "Timestamp": "2019-10-15T21:53:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.175600", + "Timestamp": "2024-05-16T08:17:12.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.266400", - "Timestamp": "2019-10-15T21:53:39.000Z" + "SpotPrice": "5.010700", + "Timestamp": "2024-05-16T08:17:11.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.266400", - "Timestamp": "2019-10-15T21:53:39.000Z" + "SpotPrice": "5.415600", + "Timestamp": "2024-05-16T08:17:11.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111300", + "Timestamp": "2024-05-16T08:17:11.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.512700", + "Timestamp": "2024-05-16T08:17:10.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126400", - "Timestamp": "2019-10-15T21:53:39.000Z" + "SpotPrice": "0.148800", + "Timestamp": "2024-05-16T08:17:10.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126400", - "Timestamp": "2019-10-15T21:53:39.000Z" + "SpotPrice": "0.143100", + "Timestamp": "2024-05-16T08:17:10.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.166400", - "Timestamp": "2019-10-15T21:53:39.000Z" + "SpotPrice": "0.145100", + "Timestamp": "2024-05-16T08:17:10.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.166400", - "Timestamp": "2019-10-15T21:53:39.000Z" + "SpotPrice": "0.139400", + "Timestamp": "2024-05-16T08:17:10.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066400", - "Timestamp": "2019-10-15T21:53:39.000Z" + "SpotPrice": "0.088800", + "Timestamp": "2024-05-16T08:17:10.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066400", - "Timestamp": "2019-10-15T21:53:39.000Z" + "SpotPrice": "0.083100", + "Timestamp": "2024-05-16T08:17:10.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.254800", - "Timestamp": "2019-10-15T21:53:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.453100", + "Timestamp": "2024-05-16T08:17:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.254800", - "Timestamp": "2019-10-15T21:53:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.448100", + "Timestamp": "2024-05-16T08:17:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.254800", - "Timestamp": "2019-10-15T21:53:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.323100", + "Timestamp": "2024-05-16T08:17:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.728800", - "Timestamp": "2019-10-15T21:53:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.463900", + "Timestamp": "2024-05-16T08:17:07.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.728800", - "Timestamp": "2019-10-15T21:53:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148000", + "Timestamp": "2024-05-16T08:17:06.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.728800", - "Timestamp": "2019-10-15T21:53:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144300", + "Timestamp": "2024-05-16T08:17:06.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.698800", - "Timestamp": "2019-10-15T21:53:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088000", + "Timestamp": "2024-05-16T08:17:06.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.698800", - "Timestamp": "2019-10-15T21:53:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.913800", + "Timestamp": "2024-05-16T08:17:05.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.698800", - "Timestamp": "2019-10-15T21:53:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.908800", + "Timestamp": "2024-05-16T08:17:05.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.598800", - "Timestamp": "2019-10-15T21:53:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.783800", + "Timestamp": "2024-05-16T08:17:05.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.598800", - "Timestamp": "2019-10-15T21:53:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.351600", + "Timestamp": "2024-05-16T08:17:05.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.598800", - "Timestamp": "2019-10-15T21:53:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.321600", + "Timestamp": "2024-05-16T08:17:05.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.126600", - "Timestamp": "2019-10-15T21:47:41.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.220600", + "Timestamp": "2024-05-16T08:17:05.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.166600", - "Timestamp": "2019-10-15T21:47:41.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.118900", + "Timestamp": "2024-05-16T08:17:05.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.066600", - "Timestamp": "2019-10-15T21:47:41.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.113900", + "Timestamp": "2024-05-16T08:17:05.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.507400", - "Timestamp": "2019-10-15T21:44:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.988900", + "Timestamp": "2024-05-16T08:17:05.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.507400", - "Timestamp": "2019-10-15T21:44:18.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.660300", + "Timestamp": "2024-05-16T08:16:58.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.507400", - "Timestamp": "2019-10-15T21:44:18.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.655300", + "Timestamp": "2024-05-16T08:16:58.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "11.153700", - "Timestamp": "2019-10-15T21:44:15.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.530300", + "Timestamp": "2024-05-16T08:16:58.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "8.879600", - "Timestamp": "2019-10-15T21:43:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.646300", + "Timestamp": "2024-05-16T08:16:58.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "p3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "8.849600", - "Timestamp": "2019-10-15T21:43:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.641300", + "Timestamp": "2024-05-16T08:16:58.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "8.749600", - "Timestamp": "2019-10-15T21:43:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.516300", + "Timestamp": "2024-05-16T08:16:58.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.435800", - "Timestamp": "2019-10-15T21:43:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.129600", + "Timestamp": "2024-05-16T08:16:56.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.405800", - "Timestamp": "2019-10-15T21:43:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.814200", + "Timestamp": "2024-05-16T08:16:55.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.305800", - "Timestamp": "2019-10-15T21:43:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.766700", + "Timestamp": "2024-05-16T08:16:55.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.269400", - "Timestamp": "2019-10-15T21:43:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.892500", + "Timestamp": "2024-05-16T08:16:53.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.239400", - "Timestamp": "2019-10-15T21:43:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.887500", + "Timestamp": "2024-05-16T08:16:53.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.139400", - "Timestamp": "2019-10-15T21:43:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.762500", + "Timestamp": "2024-05-16T08:16:53.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.291800", - "Timestamp": "2019-10-15T21:43:22.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.938600", + "Timestamp": "2024-05-16T08:16:53.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.261800", - "Timestamp": "2019-10-15T21:43:22.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.392000", + "Timestamp": "2024-05-16T08:16:52.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.161800", - "Timestamp": "2019-10-15T21:43:22.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.387000", + "Timestamp": "2024-05-16T08:16:52.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.026600", - "Timestamp": "2019-10-15T21:43:22.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.262000", + "Timestamp": "2024-05-16T08:16:52.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.026600", - "Timestamp": "2019-10-15T21:43:22.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.823800", + "Timestamp": "2024-05-16T08:16:52.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t3.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.026600", - "Timestamp": "2019-10-15T21:43:22.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.243000", + "Timestamp": "2024-05-16T08:16:51.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.514400", - "Timestamp": "2019-10-15T21:43:20.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.015800", + "Timestamp": "2024-05-16T08:16:51.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.514400", - "Timestamp": "2019-10-15T21:43:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231600", + "Timestamp": "2024-05-16T08:16:50.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.514400", - "Timestamp": "2019-10-15T21:43:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.451700", + "Timestamp": "2024-05-16T08:16:49.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.276400", - "Timestamp": "2019-10-15T21:43:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330800", + "Timestamp": "2024-05-16T08:16:48.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.276400", - "Timestamp": "2019-10-15T21:43:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325800", + "Timestamp": "2024-05-16T08:16:48.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.246400", - "Timestamp": "2019-10-15T21:43:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200800", + "Timestamp": "2024-05-16T08:16:48.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.246400", - "Timestamp": "2019-10-15T21:43:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158500", + "Timestamp": "2024-05-16T08:16:47.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.146400", - "Timestamp": "2019-10-15T21:43:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154500", + "Timestamp": "2024-05-16T08:16:47.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.146400", - "Timestamp": "2019-10-15T21:43:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098500", + "Timestamp": "2024-05-16T08:16:47.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.886800", - "Timestamp": "2019-10-15T21:43:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.364000", + "Timestamp": "2024-05-16T08:16:47.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.886800", - "Timestamp": "2019-10-15T21:43:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.359000", + "Timestamp": "2024-05-16T08:16:47.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.886800", - "Timestamp": "2019-10-15T21:43:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.234000", + "Timestamp": "2024-05-16T08:16:47.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.856800", - "Timestamp": "2019-10-15T21:43:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.710500", + "Timestamp": "2024-05-16T08:16:47.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.856800", - "Timestamp": "2019-10-15T21:43:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.705500", + "Timestamp": "2024-05-16T08:16:47.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.856800", - "Timestamp": "2019-10-15T21:43:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.580500", + "Timestamp": "2024-05-16T08:16:47.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.756800", - "Timestamp": "2019-10-15T21:43:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.009000", + "Timestamp": "2024-05-16T08:16:47.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.756800", - "Timestamp": "2019-10-15T21:43:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.004000", + "Timestamp": "2024-05-16T08:16:47.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.756800", - "Timestamp": "2019-10-15T21:43:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.879000", + "Timestamp": "2024-05-16T08:16:47.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.068200", - "Timestamp": "2019-10-15T21:43:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.130700", + "Timestamp": "2024-05-16T08:16:46.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.068200", - "Timestamp": "2019-10-15T21:43:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.434500", + "Timestamp": "2024-05-16T08:16:46.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.108200", - "Timestamp": "2019-10-15T21:43:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.429500", + "Timestamp": "2024-05-16T08:16:46.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.108200", - "Timestamp": "2019-10-15T21:43:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.304500", + "Timestamp": "2024-05-16T08:16:46.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.008200", - "Timestamp": "2019-10-15T21:43:14.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092900", + "Timestamp": "2024-05-16T08:16:46.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.008200", - "Timestamp": "2019-10-15T21:43:14.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088900", + "Timestamp": "2024-05-16T08:16:46.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.700800", - "Timestamp": "2019-10-15T21:42:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032900", + "Timestamp": "2024-05-16T08:16:46.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.700800", - "Timestamp": "2019-10-15T21:42:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.314700", + "Timestamp": "2024-05-16T08:16:45.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.700800", - "Timestamp": "2019-10-15T21:42:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.284700", + "Timestamp": "2024-05-16T08:16:45.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.501100", - "Timestamp": "2019-10-15T21:34:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.184700", + "Timestamp": "2024-05-16T08:16:45.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.501100", - "Timestamp": "2019-10-15T21:34:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.466000", + "Timestamp": "2024-05-16T08:16:45.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.501100", - "Timestamp": "2019-10-15T21:34:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.461000", + "Timestamp": "2024-05-16T08:16:45.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.383500", - "Timestamp": "2019-10-15T21:34:12.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.336000", + "Timestamp": "2024-05-16T08:16:45.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.383500", - "Timestamp": "2019-10-15T21:34:12.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.848300", + "Timestamp": "2024-05-16T08:16:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.353500", - "Timestamp": "2019-10-15T21:34:12.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.843300", + "Timestamp": "2024-05-16T08:16:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.353500", - "Timestamp": "2019-10-15T21:34:12.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.718300", + "Timestamp": "2024-05-16T08:16:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.253500", - "Timestamp": "2019-10-15T21:34:12.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.003200", + "Timestamp": "2024-05-16T08:16:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.253500", - "Timestamp": "2019-10-15T21:34:12.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.771000", + "Timestamp": "2024-05-16T08:16:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.989500", - "Timestamp": "2019-10-15T21:34:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.529800", + "Timestamp": "2024-05-16T08:16:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.989500", - "Timestamp": "2019-10-15T21:34:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.366900", + "Timestamp": "2024-05-16T08:16:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.989500", - "Timestamp": "2019-10-15T21:34:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.499800", + "Timestamp": "2024-05-16T08:16:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.172500", - "Timestamp": "2019-10-15T21:31:55.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.336900", + "Timestamp": "2024-05-16T08:16:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.172500", - "Timestamp": "2019-10-15T21:31:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.399800", + "Timestamp": "2024-05-16T08:16:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.172500", - "Timestamp": "2019-10-15T21:31:55.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.236900", + "Timestamp": "2024-05-16T08:16:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.886500", - "Timestamp": "2019-10-15T21:31:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.565500", + "Timestamp": "2024-05-16T08:16:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.886500", - "Timestamp": "2019-10-15T21:31:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.560500", + "Timestamp": "2024-05-16T08:16:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.886500", - "Timestamp": "2019-10-15T21:31:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.435500", + "Timestamp": "2024-05-16T08:16:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.856500", - "Timestamp": "2019-10-15T21:31:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.443600", + "Timestamp": "2024-05-16T08:16:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.856500", - "Timestamp": "2019-10-15T21:31:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.447000", + "Timestamp": "2024-05-16T08:16:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.856500", - "Timestamp": "2019-10-15T21:31:55.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.711000", + "Timestamp": "2024-05-16T08:16:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.756500", - "Timestamp": "2019-10-15T21:31:55.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.706000", + "Timestamp": "2024-05-16T08:16:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.756500", - "Timestamp": "2019-10-15T21:31:55.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.581000", + "Timestamp": "2024-05-16T08:16:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.756500", - "Timestamp": "2019-10-15T21:31:55.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.782900", + "Timestamp": "2024-05-16T08:16:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.094300", - "Timestamp": "2019-10-15T21:27:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.752900", + "Timestamp": "2024-05-16T08:16:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.064300", - "Timestamp": "2019-10-15T21:27:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.652900", + "Timestamp": "2024-05-16T08:16:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.964300", - "Timestamp": "2019-10-15T21:27:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.528200", + "Timestamp": "2024-05-16T08:16:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.293800", - "Timestamp": "2019-10-15T21:26:12.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.498200", + "Timestamp": "2024-05-16T08:16:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.293800", - "Timestamp": "2019-10-15T21:26:12.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.398200", + "Timestamp": "2024-05-16T08:16:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.293800", - "Timestamp": "2019-10-15T21:26:12.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.799400", + "Timestamp": "2024-05-16T08:16:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3en.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.139800", - "Timestamp": "2019-10-15T21:25:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.874600", + "Timestamp": "2024-05-16T08:16:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3en.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.139800", - "Timestamp": "2019-10-15T21:25:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.869600", + "Timestamp": "2024-05-16T08:16:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3en.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.139800", - "Timestamp": "2019-10-15T21:25:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.744600", + "Timestamp": "2024-05-16T08:16:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3en.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.179800", - "Timestamp": "2019-10-15T21:25:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.622700", + "Timestamp": "2024-05-16T08:16:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3en.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.179800", - "Timestamp": "2019-10-15T21:25:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.617700", + "Timestamp": "2024-05-16T08:16:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3en.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.179800", - "Timestamp": "2019-10-15T21:25:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.492700", + "Timestamp": "2024-05-16T08:16:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3en.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.079800", - "Timestamp": "2019-10-15T21:25:32.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160300", + "Timestamp": "2024-05-16T08:16:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3en.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.079800", - "Timestamp": "2019-10-15T21:25:32.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156600", + "Timestamp": "2024-05-16T08:16:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3en.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.079800", - "Timestamp": "2019-10-15T21:25:32.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-16T08:16:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.172800", - "Timestamp": "2019-10-15T21:25:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.359100", + "Timestamp": "2024-05-16T08:16:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.172800", - "Timestamp": "2019-10-15T21:25:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.354100", + "Timestamp": "2024-05-16T08:16:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.830800", - "Timestamp": "2019-10-15T21:24:26.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.229100", + "Timestamp": "2024-05-16T08:16:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "p2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.800800", - "Timestamp": "2019-10-15T21:24:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.307300", + "Timestamp": "2024-05-16T08:16:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.700800", - "Timestamp": "2019-10-15T21:24:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.302300", + "Timestamp": "2024-05-16T08:16:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3en.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.171800", - "Timestamp": "2019-10-15T21:24:24.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.177300", + "Timestamp": "2024-05-16T08:16:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3en.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.171800", - "Timestamp": "2019-10-15T21:24:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307100", + "Timestamp": "2024-05-16T08:16:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3en.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.171800", - "Timestamp": "2019-10-15T21:24:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.277100", + "Timestamp": "2024-05-16T08:16:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.169800", - "Timestamp": "2019-10-15T21:24:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177100", + "Timestamp": "2024-05-16T08:16:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.169800", - "Timestamp": "2019-10-15T21:24:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.148400", + "Timestamp": "2024-05-16T08:16:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.209800", - "Timestamp": "2019-10-15T21:24:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.118400", + "Timestamp": "2024-05-16T08:16:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.209800", - "Timestamp": "2019-10-15T21:24:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.018400", + "Timestamp": "2024-05-16T08:16:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.109800", - "Timestamp": "2019-10-15T21:24:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.826100", + "Timestamp": "2024-05-16T08:16:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.109800", - "Timestamp": "2019-10-15T21:24:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.821100", + "Timestamp": "2024-05-16T08:16:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.093300", - "Timestamp": "2019-10-15T21:24:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.696100", + "Timestamp": "2024-05-16T08:16:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.093300", - "Timestamp": "2019-10-15T21:24:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.453900", + "Timestamp": "2024-05-16T08:16:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.093300", - "Timestamp": "2019-10-15T21:24:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109000", + "Timestamp": "2024-05-16T08:16:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.133300", - "Timestamp": "2019-10-15T21:24:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.638900", + "Timestamp": "2024-05-16T08:16:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.133300", - "Timestamp": "2019-10-15T21:24:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.633900", + "Timestamp": "2024-05-16T08:16:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.133300", - "Timestamp": "2019-10-15T21:24:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.508900", + "Timestamp": "2024-05-16T08:16:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.033300", - "Timestamp": "2019-10-15T21:24:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.250400", + "Timestamp": "2024-05-16T08:16:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.033300", - "Timestamp": "2019-10-15T21:24:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.605100", + "Timestamp": "2024-05-16T08:16:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.033300", - "Timestamp": "2019-10-15T21:24:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085800", + "Timestamp": "2024-05-16T08:16:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "a1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094500", - "Timestamp": "2019-10-15T21:24:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082100", + "Timestamp": "2024-05-16T08:16:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "a1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094500", - "Timestamp": "2019-10-15T21:24:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025800", + "Timestamp": "2024-05-16T08:16:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "a1.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134500", - "Timestamp": "2019-10-15T21:24:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.281000", + "Timestamp": "2024-05-16T08:16:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "a1.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134500", - "Timestamp": "2019-10-15T21:24:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.251000", + "Timestamp": "2024-05-16T08:16:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "a1.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034500", - "Timestamp": "2019-10-15T21:24:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.151000", + "Timestamp": "2024-05-16T08:16:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "a1.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034500", - "Timestamp": "2019-10-15T21:24:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.779500", + "Timestamp": "2024-05-16T08:16:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.125300", - "Timestamp": "2019-10-15T21:23:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.774500", + "Timestamp": "2024-05-16T08:16:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.125300", - "Timestamp": "2019-10-15T21:23:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.649500", + "Timestamp": "2024-05-16T08:16:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.125300", - "Timestamp": "2019-10-15T21:23:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T08:16:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.375000", - "Timestamp": "2019-10-15T21:22:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-16T08:16:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.375000", - "Timestamp": "2019-10-15T21:22:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048200", + "Timestamp": "2024-05-16T08:16:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.008200", - "Timestamp": "2019-10-15T21:22:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.638000", + "Timestamp": "2024-05-16T08:16:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.008200", - "Timestamp": "2019-10-15T21:22:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.633000", + "Timestamp": "2024-05-16T08:16:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.008200", - "Timestamp": "2019-10-15T21:22:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.508000", + "Timestamp": "2024-05-16T08:16:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.978200", - "Timestamp": "2019-10-15T21:22:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229300", + "Timestamp": "2024-05-16T08:16:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.978200", - "Timestamp": "2019-10-15T21:22:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.427100", + "Timestamp": "2024-05-16T08:16:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.978200", - "Timestamp": "2019-10-15T21:22:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.422100", + "Timestamp": "2024-05-16T08:16:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.878200", - "Timestamp": "2019-10-15T21:22:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.297100", + "Timestamp": "2024-05-16T08:16:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.878200", - "Timestamp": "2019-10-15T21:22:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.255300", + "Timestamp": "2024-05-16T08:16:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.878200", - "Timestamp": "2019-10-15T21:22:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.372500", + "Timestamp": "2024-05-16T08:16:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.245000", - "Timestamp": "2019-10-15T21:22:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.367500", + "Timestamp": "2024-05-16T08:16:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.245000", - "Timestamp": "2019-10-15T21:22:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.242500", + "Timestamp": "2024-05-16T08:16:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.215000", - "Timestamp": "2019-10-15T21:22:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.466600", + "Timestamp": "2024-05-16T08:16:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.215000", - "Timestamp": "2019-10-15T21:22:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.611500", + "Timestamp": "2024-05-16T08:16:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.115000", - "Timestamp": "2019-10-15T21:22:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.606500", + "Timestamp": "2024-05-16T08:16:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.115000", - "Timestamp": "2019-10-15T21:22:50.000Z" + "SpotPrice": "5.481500", + "Timestamp": "2024-05-16T08:16:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.375000", - "Timestamp": "2019-10-15T21:22:50.000Z" + "SpotPrice": "5.283400", + "Timestamp": "2024-05-16T08:16:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.375000", - "Timestamp": "2019-10-15T21:22:50.000Z" + "SpotPrice": "7.588100", + "Timestamp": "2024-05-16T08:16:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.002100", - "Timestamp": "2019-10-15T21:22:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088600", + "Timestamp": "2024-05-16T08:16:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.002100", - "Timestamp": "2019-10-15T21:22:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084900", + "Timestamp": "2024-05-16T08:16:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.002100", - "Timestamp": "2019-10-15T21:22:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028600", + "Timestamp": "2024-05-16T08:16:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.509600", - "Timestamp": "2019-10-15T21:22:27.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118000", + "Timestamp": "2024-05-16T08:16:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.509600", - "Timestamp": "2019-10-15T21:22:27.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114300", + "Timestamp": "2024-05-16T08:16:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.509600", - "Timestamp": "2019-10-15T21:22:27.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058000", + "Timestamp": "2024-05-16T08:16:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.327600", - "Timestamp": "2019-10-15T21:22:26.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.214200", + "Timestamp": "2024-05-16T08:16:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.327600", - "Timestamp": "2019-10-15T21:22:26.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.184200", + "Timestamp": "2024-05-16T08:16:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.327600", - "Timestamp": "2019-10-15T21:22:26.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084200", + "Timestamp": "2024-05-16T08:16:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.297600", - "Timestamp": "2019-10-15T21:22:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145800", + "Timestamp": "2024-05-16T08:16:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.297600", - "Timestamp": "2019-10-15T21:22:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142100", + "Timestamp": "2024-05-16T08:16:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.297600", - "Timestamp": "2019-10-15T21:22:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085800", + "Timestamp": "2024-05-16T08:16:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.197600", - "Timestamp": "2019-10-15T21:22:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.574400", + "Timestamp": "2024-05-16T08:16:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.197600", - "Timestamp": "2019-10-15T21:22:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.569400", + "Timestamp": "2024-05-16T08:16:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.197600", - "Timestamp": "2019-10-15T21:22:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.444400", + "Timestamp": "2024-05-16T08:16:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.514400", - "Timestamp": "2019-10-15T21:22:10.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.110000", + "Timestamp": "2024-05-16T08:16:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.514400", - "Timestamp": "2019-10-15T21:22:10.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.105000", + "Timestamp": "2024-05-16T08:16:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.245000", - "Timestamp": "2019-10-15T21:21:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.980000", + "Timestamp": "2024-05-16T08:16:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.245000", - "Timestamp": "2019-10-15T21:21:52.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.046700", + "Timestamp": "2024-05-16T08:16:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m2.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.215000", - "Timestamp": "2019-10-15T21:21:52.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.016700", + "Timestamp": "2024-05-16T08:16:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m2.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.215000", - "Timestamp": "2019-10-15T21:21:52.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.916700", + "Timestamp": "2024-05-16T08:16:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.115000", - "Timestamp": "2019-10-15T21:21:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133400", + "Timestamp": "2024-05-16T08:16:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.115000", - "Timestamp": "2019-10-15T21:21:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129700", + "Timestamp": "2024-05-16T08:16:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.250500", - "Timestamp": "2019-10-15T21:21:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073400", + "Timestamp": "2024-05-16T08:16:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.250500", - "Timestamp": "2019-10-15T21:21:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096200", + "Timestamp": "2024-05-16T08:16:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.250500", - "Timestamp": "2019-10-15T21:21:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T08:16:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.086200", - "Timestamp": "2019-10-15T21:20:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092200", + "Timestamp": "2024-05-16T08:16:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.086200", - "Timestamp": "2019-10-15T21:20:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098900", + "Timestamp": "2024-05-16T08:16:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.086200", - "Timestamp": "2019-10-15T21:20:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036200", + "Timestamp": "2024-05-16T08:16:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.276400", - "Timestamp": "2019-10-15T21:20:12.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042900", + "Timestamp": "2024-05-16T08:16:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.276400", - "Timestamp": "2019-10-15T21:20:12.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.979200", + "Timestamp": "2024-05-16T08:16:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.246400", - "Timestamp": "2019-10-15T21:20:12.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.302400", + "Timestamp": "2024-05-16T08:02:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.246400", - "Timestamp": "2019-10-15T21:20:12.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.297400", + "Timestamp": "2024-05-16T08:02:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.146400", - "Timestamp": "2019-10-15T21:20:12.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.172400", + "Timestamp": "2024-05-16T08:02:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.146400", - "Timestamp": "2019-10-15T21:20:12.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.364600", + "Timestamp": "2024-05-16T08:02:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.637100", - "Timestamp": "2019-10-15T21:18:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.553800", + "Timestamp": "2024-05-16T08:02:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.607100", - "Timestamp": "2019-10-15T21:18:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.548800", + "Timestamp": "2024-05-16T08:02:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.507100", - "Timestamp": "2019-10-15T21:18:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.423800", + "Timestamp": "2024-05-16T08:02:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.172500", - "Timestamp": "2019-10-15T21:16:52.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.411300", + "Timestamp": "2024-05-16T08:02:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.172500", - "Timestamp": "2019-10-15T21:16:52.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.406300", + "Timestamp": "2024-05-16T08:02:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.172500", - "Timestamp": "2019-10-15T21:16:52.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.281300", + "Timestamp": "2024-05-16T08:02:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.886500", - "Timestamp": "2019-10-15T21:16:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.680100", + "Timestamp": "2024-05-16T08:02:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.886500", - "Timestamp": "2019-10-15T21:16:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.110500", + "Timestamp": "2024-05-16T08:02:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.886500", - "Timestamp": "2019-10-15T21:16:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.229900", + "Timestamp": "2024-05-16T08:02:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.856500", - "Timestamp": "2019-10-15T21:16:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.224900", + "Timestamp": "2024-05-16T08:02:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.856500", - "Timestamp": "2019-10-15T21:16:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.099900", + "Timestamp": "2024-05-16T08:02:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.856500", - "Timestamp": "2019-10-15T21:16:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.280900", + "Timestamp": "2024-05-16T08:02:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.756500", - "Timestamp": "2019-10-15T21:16:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.489500", + "Timestamp": "2024-05-16T08:02:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.756500", - "Timestamp": "2019-10-15T21:16:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.484500", + "Timestamp": "2024-05-16T08:02:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.756500", - "Timestamp": "2019-10-15T21:16:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.359500", + "Timestamp": "2024-05-16T08:02:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.505300", - "Timestamp": "2019-10-15T21:16:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.489800", + "Timestamp": "2024-05-16T08:02:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.505300", - "Timestamp": "2019-10-15T21:16:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.484800", + "Timestamp": "2024-05-16T08:02:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.505300", - "Timestamp": "2019-10-15T21:16:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.359800", + "Timestamp": "2024-05-16T08:02:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.795300", - "Timestamp": "2019-10-15T21:16:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220400", + "Timestamp": "2024-05-16T08:02:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.795300", - "Timestamp": "2019-10-15T21:16:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.313700", + "Timestamp": "2024-05-16T08:02:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.795300", - "Timestamp": "2019-10-15T21:16:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.308700", + "Timestamp": "2024-05-16T08:02:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.765300", - "Timestamp": "2019-10-15T21:16:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.183700", + "Timestamp": "2024-05-16T08:02:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m4.10xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.765300", - "Timestamp": "2019-10-15T21:16:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.562700", + "Timestamp": "2024-05-16T08:02:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.765300", - "Timestamp": "2019-10-15T21:16:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.557700", + "Timestamp": "2024-05-16T08:02:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.665300", - "Timestamp": "2019-10-15T21:16:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.432700", + "Timestamp": "2024-05-16T08:02:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.665300", - "Timestamp": "2019-10-15T21:16:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.922600", + "Timestamp": "2024-05-16T08:02:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.665300", - "Timestamp": "2019-10-15T21:16:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.917600", + "Timestamp": "2024-05-16T08:02:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m1.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.072200", - "Timestamp": "2019-10-15T21:16:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.792600", + "Timestamp": "2024-05-16T08:02:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m1.medium", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.072200", - "Timestamp": "2019-10-15T21:16:39.000Z" - }, - { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m1.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.112200", - "Timestamp": "2019-10-15T21:16:39.000Z" + "SpotPrice": "2.657600", + "Timestamp": "2024-05-16T08:02:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m1.medium", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.112200", - "Timestamp": "2019-10-15T21:16:39.000Z" - }, - { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m1.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.012200", - "Timestamp": "2019-10-15T21:16:39.000Z" + "SpotPrice": "2.652600", + "Timestamp": "2024-05-16T08:02:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m1.medium", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.012200", - "Timestamp": "2019-10-15T21:16:39.000Z" - }, - { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m1.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.072200", - "Timestamp": "2019-10-15T21:16:39.000Z" + "SpotPrice": "2.527600", + "Timestamp": "2024-05-16T08:02:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m1.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.072200", - "Timestamp": "2019-10-15T21:16:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431000", + "Timestamp": "2024-05-16T08:02:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m1.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.112200", - "Timestamp": "2019-10-15T21:16:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.141800", + "Timestamp": "2024-05-16T08:02:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m1.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.112200", - "Timestamp": "2019-10-15T21:16:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.136800", + "Timestamp": "2024-05-16T08:02:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m1.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.012200", - "Timestamp": "2019-10-15T21:16:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.011800", + "Timestamp": "2024-05-16T08:02:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m1.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.012200", - "Timestamp": "2019-10-15T21:16:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.878000", + "Timestamp": "2024-05-16T08:02:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m1.medium", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.067200", - "Timestamp": "2019-10-15T21:16:39.000Z" + "SpotPrice": "0.895500", + "Timestamp": "2024-05-16T08:02:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.507700", - "Timestamp": "2019-10-15T21:16:37.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T08:02:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.507700", - "Timestamp": "2019-10-15T21:16:37.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-16T08:02:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.269700", - "Timestamp": "2019-10-15T21:16:37.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031800", + "Timestamp": "2024-05-16T08:02:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.269700", - "Timestamp": "2019-10-15T21:16:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.278800", + "Timestamp": "2024-05-16T08:02:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.239700", - "Timestamp": "2019-10-15T21:16:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.273800", + "Timestamp": "2024-05-16T08:02:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.239700", - "Timestamp": "2019-10-15T21:16:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.148800", + "Timestamp": "2024-05-16T08:02:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.139700", - "Timestamp": "2019-10-15T21:16:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.183600", + "Timestamp": "2024-05-16T08:02:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.139700", - "Timestamp": "2019-10-15T21:16:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180600", + "Timestamp": "2024-05-16T08:02:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.096600", - "Timestamp": "2019-10-15T21:16:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123600", + "Timestamp": "2024-05-16T08:02:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.097000", - "Timestamp": "2019-10-15T21:16:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.844800", + "Timestamp": "2024-05-16T08:02:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.096600", - "Timestamp": "2019-10-15T21:16:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.839800", + "Timestamp": "2024-05-16T08:02:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.136600", - "Timestamp": "2019-10-15T21:16:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.714800", + "Timestamp": "2024-05-16T08:02:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.137000", - "Timestamp": "2019-10-15T21:16:32.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.708500", + "Timestamp": "2024-05-16T08:02:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.136600", - "Timestamp": "2019-10-15T21:16:32.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.703500", + "Timestamp": "2024-05-16T08:02:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.036600", - "Timestamp": "2019-10-15T21:16:32.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.578500", + "Timestamp": "2024-05-16T08:02:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.037000", - "Timestamp": "2019-10-15T21:16:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114100", + "Timestamp": "2024-05-16T08:02:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.036600", - "Timestamp": "2019-10-15T21:16:32.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.382100", + "Timestamp": "2024-05-16T08:02:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.128600", - "Timestamp": "2019-10-15T21:16:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.377100", + "Timestamp": "2024-05-16T08:02:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.128600", - "Timestamp": "2019-10-15T21:16:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.252100", + "Timestamp": "2024-05-16T08:02:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.128600", - "Timestamp": "2019-10-15T21:16:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.058900", + "Timestamp": "2024-05-16T08:02:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.728800", - "Timestamp": "2019-10-15T21:16:17.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214400", + "Timestamp": "2024-05-16T08:02:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.728800", - "Timestamp": "2019-10-15T21:16:17.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.741800", + "Timestamp": "2024-05-16T08:02:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.698800", - "Timestamp": "2019-10-15T21:16:17.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.466900", + "Timestamp": "2024-05-16T08:02:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.698800", - "Timestamp": "2019-10-15T21:16:17.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.777500", + "Timestamp": "2024-05-16T08:02:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.598800", - "Timestamp": "2019-10-15T21:16:17.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.747500", + "Timestamp": "2024-05-16T08:02:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.598800", - "Timestamp": "2019-10-15T21:16:17.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.647500", + "Timestamp": "2024-05-16T08:02:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.254800", - "Timestamp": "2019-10-15T21:16:17.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.022600", + "Timestamp": "2024-05-16T08:02:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.254800", - "Timestamp": "2019-10-15T21:16:17.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.479600", + "Timestamp": "2024-05-16T08:02:20.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.254800", - "Timestamp": "2019-10-15T21:16:17.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.680800", + "Timestamp": "2024-05-16T08:02:20.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.139700", - "Timestamp": "2019-10-15T21:16:16.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.675800", + "Timestamp": "2024-05-16T08:02:20.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.140500", - "Timestamp": "2019-10-15T21:16:16.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.550800", + "Timestamp": "2024-05-16T08:02:20.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.179700", - "Timestamp": "2019-10-15T21:16:16.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076200", + "Timestamp": "2024-05-16T08:02:19.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.180500", - "Timestamp": "2019-10-15T21:16:16.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.072500", + "Timestamp": "2024-05-16T08:02:19.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.079700", - "Timestamp": "2019-10-15T21:16:16.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016200", + "Timestamp": "2024-05-16T08:02:19.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.080500", - "Timestamp": "2019-10-15T21:16:16.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.160300", + "Timestamp": "2024-05-16T08:02:15.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.250500", - "Timestamp": "2019-10-15T21:16:16.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.011800", + "Timestamp": "2024-05-16T08:02:14.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.250500", - "Timestamp": "2019-10-15T21:16:16.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139300", + "Timestamp": "2024-05-16T08:02:14.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.250500", - "Timestamp": "2019-10-15T21:16:16.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135600", + "Timestamp": "2024-05-16T08:02:14.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.133700", - "Timestamp": "2019-10-15T21:16:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079300", + "Timestamp": "2024-05-16T08:02:14.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.133200", - "Timestamp": "2019-10-15T21:16:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.981000", + "Timestamp": "2024-05-16T08:02:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.133500", - "Timestamp": "2019-10-15T21:16:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.976000", + "Timestamp": "2024-05-16T08:02:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.173700", - "Timestamp": "2019-10-15T21:16:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.851000", + "Timestamp": "2024-05-16T08:02:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.173200", - "Timestamp": "2019-10-15T21:16:14.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.593700", + "Timestamp": "2024-05-16T08:02:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.173500", - "Timestamp": "2019-10-15T21:16:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.659800", + "Timestamp": "2024-05-16T08:02:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.073700", - "Timestamp": "2019-10-15T21:16:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.629800", + "Timestamp": "2024-05-16T08:02:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.073200", - "Timestamp": "2019-10-15T21:16:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.529800", + "Timestamp": "2024-05-16T08:02:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.073500", - "Timestamp": "2019-10-15T21:16:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297900", + "Timestamp": "2024-05-16T08:02:12.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.257200", - "Timestamp": "2019-10-15T21:16:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267900", + "Timestamp": "2024-05-16T08:02:12.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.257200", - "Timestamp": "2019-10-15T21:16:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167900", + "Timestamp": "2024-05-16T08:02:12.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.257200", - "Timestamp": "2019-10-15T21:16:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.414500", + "Timestamp": "2024-05-16T08:02:10.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.091900", - "Timestamp": "2019-10-15T21:16:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.384500", + "Timestamp": "2024-05-16T08:02:10.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.091700", - "Timestamp": "2019-10-15T21:16:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.284500", + "Timestamp": "2024-05-16T08:02:10.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.131900", - "Timestamp": "2019-10-15T21:16:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.247400", + "Timestamp": "2024-05-16T08:02:10.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.131700", - "Timestamp": "2019-10-15T21:16:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.065500", + "Timestamp": "2024-05-16T08:02:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.031900", - "Timestamp": "2019-10-15T21:16:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.695700", + "Timestamp": "2024-05-16T08:02:08.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.031700", - "Timestamp": "2019-10-15T21:16:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.690700", + "Timestamp": "2024-05-16T08:02:08.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.123700", - "Timestamp": "2019-10-15T21:16:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.565700", + "Timestamp": "2024-05-16T08:02:08.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.123700", - "Timestamp": "2019-10-15T21:16:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069600", + "Timestamp": "2024-05-16T08:02:07.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.123700", - "Timestamp": "2019-10-15T21:16:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040600", + "Timestamp": "2024-05-16T08:02:07.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.533800", - "Timestamp": "2019-10-15T21:16:06.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009600", + "Timestamp": "2024-05-16T08:02:07.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.533800", - "Timestamp": "2019-10-15T21:16:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.085900", + "Timestamp": "2024-05-16T08:02:06.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.533800", - "Timestamp": "2019-10-15T21:16:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.936600", + "Timestamp": "2024-05-16T08:02:06.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.672500", - "Timestamp": "2019-10-15T21:16:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.699500", + "Timestamp": "2024-05-16T08:02:05.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.672500", - "Timestamp": "2019-10-15T21:16:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.694500", + "Timestamp": "2024-05-16T08:02:05.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.434500", - "Timestamp": "2019-10-15T21:16:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.569500", + "Timestamp": "2024-05-16T08:02:05.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.434500", - "Timestamp": "2019-10-15T21:16:04.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.449500", + "Timestamp": "2024-05-16T08:02:05.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.404500", - "Timestamp": "2019-10-15T21:16:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354300", + "Timestamp": "2024-05-16T08:02:04.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.404500", - "Timestamp": "2019-10-15T21:16:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349300", + "Timestamp": "2024-05-16T08:02:04.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.304500", - "Timestamp": "2019-10-15T21:16:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224300", + "Timestamp": "2024-05-16T08:02:04.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.304500", - "Timestamp": "2019-10-15T21:16:04.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.579700", + "Timestamp": "2024-05-16T08:02:03.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m1.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-15T21:13:56.000Z" + "SpotPrice": "0.470600", + "Timestamp": "2024-05-16T08:02:03.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m1.large", - "ProductDescription": "Windows", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-15T21:13:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.029500", + "Timestamp": "2024-05-16T08:02:01.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m1.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-15T21:13:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.024500", + "Timestamp": "2024-05-16T08:02:01.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m1.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-15T21:13:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.899500", + "Timestamp": "2024-05-16T08:02:01.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m1.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.084300", - "Timestamp": "2019-10-15T21:13:56.000Z" + "SpotPrice": "0.303700", + "Timestamp": "2024-05-16T08:01:57.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m1.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.084300", - "Timestamp": "2019-10-15T21:13:56.000Z" + "SpotPrice": "0.306700", + "Timestamp": "2024-05-16T08:01:57.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m1.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.124300", - "Timestamp": "2019-10-15T21:13:56.000Z" + "SpotPrice": "0.298700", + "Timestamp": "2024-05-16T08:01:57.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m1.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.124300", - "Timestamp": "2019-10-15T21:13:56.000Z" + "SpotPrice": "0.301700", + "Timestamp": "2024-05-16T08:01:57.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m1.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.024300", - "Timestamp": "2019-10-15T21:13:56.000Z" + "SpotPrice": "0.173700", + "Timestamp": "2024-05-16T08:01:57.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m1.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.024300", - "Timestamp": "2019-10-15T21:13:56.000Z" - }, - { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m1.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.084300", - "Timestamp": "2019-10-15T21:13:55.000Z" + "SpotPrice": "0.176700", + "Timestamp": "2024-05-16T08:01:57.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m1.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.124300", - "Timestamp": "2019-10-15T21:13:55.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.895400", + "Timestamp": "2024-05-16T08:01:57.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m1.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.024300", - "Timestamp": "2019-10-15T21:13:55.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.890400", + "Timestamp": "2024-05-16T08:01:57.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.142800", - "Timestamp": "2019-10-15T21:13:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.765400", + "Timestamp": "2024-05-16T08:01:57.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.142800", - "Timestamp": "2019-10-15T21:13:51.000Z" + "SpotPrice": "0.155000", + "Timestamp": "2024-05-16T08:01:54.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.112800", - "Timestamp": "2019-10-15T21:13:51.000Z" + "SpotPrice": "0.151300", + "Timestamp": "2024-05-16T08:01:54.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.112800", - "Timestamp": "2019-10-15T21:13:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095000", + "Timestamp": "2024-05-16T08:01:54.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.012800", - "Timestamp": "2019-10-15T21:13:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.874500", + "Timestamp": "2024-05-16T08:01:54.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.012800", - "Timestamp": "2019-10-15T21:13:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.208400", + "Timestamp": "2024-05-16T08:01:53.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.314800", - "Timestamp": "2019-10-15T21:13:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086100", + "Timestamp": "2024-05-16T08:01:53.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.678000", - "Timestamp": "2019-10-15T21:13:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082400", + "Timestamp": "2024-05-16T08:01:53.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.314800", - "Timestamp": "2019-10-15T21:13:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026100", + "Timestamp": "2024-05-16T08:01:53.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.142800", - "Timestamp": "2019-10-15T21:13:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.985800", + "Timestamp": "2024-05-16T08:01:52.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.506000", - "Timestamp": "2019-10-15T21:13:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.991500", + "Timestamp": "2024-05-16T08:01:51.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.142800", - "Timestamp": "2019-10-15T21:13:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.986500", + "Timestamp": "2024-05-16T08:01:51.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.112800", - "Timestamp": "2019-10-15T21:13:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.861500", + "Timestamp": "2024-05-16T08:01:51.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "d2.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.476000", - "Timestamp": "2019-10-15T21:13:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095700", + "Timestamp": "2024-05-16T08:01:51.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.112800", - "Timestamp": "2019-10-15T21:13:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092000", + "Timestamp": "2024-05-16T08:01:51.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.012800", - "Timestamp": "2019-10-15T21:13:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035700", + "Timestamp": "2024-05-16T08:01:51.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.376000", - "Timestamp": "2019-10-15T21:13:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.826100", + "Timestamp": "2024-05-16T08:01:50.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.012800", - "Timestamp": "2019-10-15T21:13:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.596600", + "Timestamp": "2024-05-16T08:01:49.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.314800", - "Timestamp": "2019-10-15T21:13:51.000Z" + "SpotPrice": "0.857400", + "Timestamp": "2024-05-16T08:01:49.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.314800", - "Timestamp": "2019-10-15T21:13:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.291600", + "Timestamp": "2024-05-16T08:01:47.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.232500", - "Timestamp": "2019-10-15T21:13:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.286600", + "Timestamp": "2024-05-16T08:01:47.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "8.731000", - "Timestamp": "2019-10-15T21:13:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.161600", + "Timestamp": "2024-05-16T08:01:47.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.232500", - "Timestamp": "2019-10-15T21:13:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.189200", + "Timestamp": "2024-05-16T08:01:46.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.194500", - "Timestamp": "2019-10-15T21:13:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.374000", + "Timestamp": "2024-05-16T08:01:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "5.693000", - "Timestamp": "2019-10-15T21:13:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.369000", + "Timestamp": "2024-05-16T08:01:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.194500", - "Timestamp": "2019-10-15T21:13:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.244000", + "Timestamp": "2024-05-16T08:01:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.164500", - "Timestamp": "2019-10-15T21:13:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005300", + "Timestamp": "2024-05-16T08:01:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m4.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "5.663000", - "Timestamp": "2019-10-15T21:13:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.281800", + "Timestamp": "2024-05-16T08:01:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m4.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.164500", - "Timestamp": "2019-10-15T21:13:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.276800", + "Timestamp": "2024-05-16T08:01:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.064500", - "Timestamp": "2019-10-15T21:13:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.151800", + "Timestamp": "2024-05-16T08:01:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "5.563000", - "Timestamp": "2019-10-15T21:13:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.227300", + "Timestamp": "2024-05-16T08:01:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.064500", - "Timestamp": "2019-10-15T21:13:34.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.924600", + "Timestamp": "2024-05-16T08:01:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.886800", - "Timestamp": "2019-10-15T21:13:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.919600", + "Timestamp": "2024-05-16T08:01:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.886800", - "Timestamp": "2019-10-15T21:13:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.794600", + "Timestamp": "2024-05-16T08:01:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.886800", - "Timestamp": "2019-10-15T21:13:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091500", + "Timestamp": "2024-05-16T08:01:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.856800", - "Timestamp": "2019-10-15T21:13:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087500", + "Timestamp": "2024-05-16T08:01:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.856800", - "Timestamp": "2019-10-15T21:13:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031500", + "Timestamp": "2024-05-16T08:01:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.856800", - "Timestamp": "2019-10-15T21:13:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.425300", + "Timestamp": "2024-05-16T08:01:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.756800", - "Timestamp": "2019-10-15T21:13:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.420300", + "Timestamp": "2024-05-16T08:01:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.756800", - "Timestamp": "2019-10-15T21:13:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.295300", + "Timestamp": "2024-05-16T08:01:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.756800", - "Timestamp": "2019-10-15T21:13:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.353700", + "Timestamp": "2024-05-16T08:01:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.700800", - "Timestamp": "2019-10-15T21:13:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.348700", + "Timestamp": "2024-05-16T08:01:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.700800", - "Timestamp": "2019-10-15T21:13:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.223700", + "Timestamp": "2024-05-16T08:01:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.700800", - "Timestamp": "2019-10-15T21:13:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.608000", + "Timestamp": "2024-05-16T08:01:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.420000", - "Timestamp": "2019-10-15T21:13:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.603000", + "Timestamp": "2024-05-16T08:01:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.420000", - "Timestamp": "2019-10-15T21:13:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.478000", + "Timestamp": "2024-05-16T08:01:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.078000", - "Timestamp": "2019-10-15T21:13:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.497000", + "Timestamp": "2024-05-16T08:01:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.048000", - "Timestamp": "2019-10-15T21:13:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.681500", + "Timestamp": "2024-05-16T08:01:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.948000", - "Timestamp": "2019-10-15T21:13:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.676500", + "Timestamp": "2024-05-16T08:01:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.740800", - "Timestamp": "2019-10-15T21:13:18.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.551500", + "Timestamp": "2024-05-16T08:01:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.687600", - "Timestamp": "2019-10-15T21:13:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152100", + "Timestamp": "2024-05-16T08:01:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.782500", - "Timestamp": "2019-10-15T21:13:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148400", + "Timestamp": "2024-05-16T08:01:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.710800", - "Timestamp": "2019-10-15T21:13:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092100", + "Timestamp": "2024-05-16T08:01:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.657600", - "Timestamp": "2019-10-15T21:13:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094900", + "Timestamp": "2024-05-16T08:01:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.752500", - "Timestamp": "2019-10-15T21:13:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090900", + "Timestamp": "2024-05-16T08:01:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.610800", - "Timestamp": "2019-10-15T21:13:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034900", + "Timestamp": "2024-05-16T08:01:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.557600", - "Timestamp": "2019-10-15T21:13:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061700", + "Timestamp": "2024-05-16T08:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.652500", - "Timestamp": "2019-10-15T21:13:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001700", + "Timestamp": "2024-05-16T08:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.029600", - "Timestamp": "2019-10-15T21:13:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001700", + "Timestamp": "2024-05-16T08:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.029600", - "Timestamp": "2019-10-15T21:13:18.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.572400", + "Timestamp": "2024-05-16T08:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.029600", - "Timestamp": "2019-10-15T21:13:18.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.542400", + "Timestamp": "2024-05-16T08:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "p2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.522600", - "Timestamp": "2019-10-15T21:10:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.442400", + "Timestamp": "2024-05-16T08:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "p2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.562600", - "Timestamp": "2019-10-15T21:10:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.879200", + "Timestamp": "2024-05-16T08:01:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "p2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.462600", - "Timestamp": "2019-10-15T21:10:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.604300", + "Timestamp": "2024-05-16T08:01:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.353400", - "Timestamp": "2019-10-15T21:10:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.599300", + "Timestamp": "2024-05-16T08:01:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.353400", - "Timestamp": "2019-10-15T21:10:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.474300", + "Timestamp": "2024-05-16T08:01:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "6.713900", - "Timestamp": "2019-10-15T21:10:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.924900", + "Timestamp": "2024-05-16T08:01:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "6.683900", - "Timestamp": "2019-10-15T21:10:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.894900", + "Timestamp": "2024-05-16T08:01:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "6.583900", - "Timestamp": "2019-10-15T21:10:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.794900", + "Timestamp": "2024-05-16T08:01:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.300200", - "Timestamp": "2019-10-15T21:10:32.000Z" + "SpotPrice": "1.778800", + "Timestamp": "2024-05-16T08:01:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.300200", - "Timestamp": "2019-10-15T21:10:32.000Z" + "SpotPrice": "0.852800", + "Timestamp": "2024-05-16T08:01:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "d2.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.531200", - "Timestamp": "2019-10-15T21:10:32.000Z" + "SpotPrice": "1.160500", + "Timestamp": "2024-05-16T08:01:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "d2.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.531200", - "Timestamp": "2019-10-15T21:10:32.000Z" + "SpotPrice": "1.105800", + "Timestamp": "2024-05-16T08:01:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "d2.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.501200", - "Timestamp": "2019-10-15T21:10:32.000Z" + "SpotPrice": "1.130500", + "Timestamp": "2024-05-16T08:01:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "d2.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.501200", - "Timestamp": "2019-10-15T21:10:32.000Z" + "SpotPrice": "1.075800", + "Timestamp": "2024-05-16T08:01:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "d2.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.401200", - "Timestamp": "2019-10-15T21:10:32.000Z" + "SpotPrice": "1.030500", + "Timestamp": "2024-05-16T08:01:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "d2.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.401200", - "Timestamp": "2019-10-15T21:10:32.000Z" + "SpotPrice": "0.975800", + "Timestamp": "2024-05-16T08:01:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.509600", - "Timestamp": "2019-10-15T21:10:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.849700", + "Timestamp": "2024-05-16T08:01:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.509600", - "Timestamp": "2019-10-15T21:10:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.844700", + "Timestamp": "2024-05-16T08:01:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.509600", - "Timestamp": "2019-10-15T21:10:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.719700", + "Timestamp": "2024-05-16T08:01:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.649600", - "Timestamp": "2019-10-15T21:10:26.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.542100", + "Timestamp": "2024-05-16T08:01:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.649600", - "Timestamp": "2019-10-15T21:10:26.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.537100", + "Timestamp": "2024-05-16T08:01:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.649600", - "Timestamp": "2019-10-15T21:10:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.412100", + "Timestamp": "2024-05-16T08:01:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.649600", - "Timestamp": "2019-10-15T21:10:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.797700", + "Timestamp": "2024-05-16T08:01:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.330600", - "Timestamp": "2019-10-15T21:10:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.792700", + "Timestamp": "2024-05-16T08:01:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.330600", - "Timestamp": "2019-10-15T21:10:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.667700", + "Timestamp": "2024-05-16T08:01:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.300600", - "Timestamp": "2019-10-15T21:10:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.877100", + "Timestamp": "2024-05-16T08:01:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.300600", - "Timestamp": "2019-10-15T21:10:25.000Z" + "SpotPrice": "0.872100", + "Timestamp": "2024-05-16T08:01:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.200600", - "Timestamp": "2019-10-15T21:10:25.000Z" + "SpotPrice": "0.747100", + "Timestamp": "2024-05-16T08:01:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.200600", - "Timestamp": "2019-10-15T21:10:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.893100", + "Timestamp": "2024-05-16T08:01:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m1.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.268600", - "Timestamp": "2019-10-15T21:10:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.888100", + "Timestamp": "2024-05-16T08:01:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m1.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.268600", - "Timestamp": "2019-10-15T21:10:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.763100", + "Timestamp": "2024-05-16T08:01:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.108600", - "Timestamp": "2019-10-15T21:10:10.000Z" + "SpotPrice": "0.268500", + "Timestamp": "2024-05-16T08:01:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.108600", - "Timestamp": "2019-10-15T21:10:10.000Z" + "SpotPrice": "0.276800", + "Timestamp": "2024-05-16T08:01:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.148600", - "Timestamp": "2019-10-15T21:10:10.000Z" + "SpotPrice": "0.263500", + "Timestamp": "2024-05-16T08:01:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.148600", - "Timestamp": "2019-10-15T21:10:10.000Z" + "SpotPrice": "0.271800", + "Timestamp": "2024-05-16T08:01:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.048600", - "Timestamp": "2019-10-15T21:10:10.000Z" + "SpotPrice": "0.138500", + "Timestamp": "2024-05-16T08:01:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.048600", - "Timestamp": "2019-10-15T21:10:10.000Z" + "SpotPrice": "0.146800", + "Timestamp": "2024-05-16T08:01:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m1.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.268600", - "Timestamp": "2019-10-15T21:10:10.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123500", + "Timestamp": "2024-05-16T08:01:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m1.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.268600", - "Timestamp": "2019-10-15T21:10:10.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119800", + "Timestamp": "2024-05-16T08:01:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.265400", - "Timestamp": "2019-10-15T21:10:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063500", + "Timestamp": "2024-05-16T08:01:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.235400", - "Timestamp": "2019-10-15T21:10:04.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.161400", + "Timestamp": "2024-05-16T08:01:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.135400", - "Timestamp": "2019-10-15T21:10:04.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.156400", + "Timestamp": "2024-05-16T08:01:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.006400", - "Timestamp": "2019-10-15T21:09:46.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.031400", + "Timestamp": "2024-05-16T08:01:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.006400", - "Timestamp": "2019-10-15T21:09:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.196800", + "Timestamp": "2024-05-16T08:01:22.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.409400", - "Timestamp": "2019-10-15T21:09:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.191800", + "Timestamp": "2024-05-16T08:01:22.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.379400", - "Timestamp": "2019-10-15T21:09:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.066800", + "Timestamp": "2024-05-16T08:01:22.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.279400", - "Timestamp": "2019-10-15T21:09:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.575900", + "Timestamp": "2024-05-16T08:01:16.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "p2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.646600", - "Timestamp": "2019-10-15T21:09:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.570900", + "Timestamp": "2024-05-16T08:01:16.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "p2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.646600", - "Timestamp": "2019-10-15T21:09:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.445900", + "Timestamp": "2024-05-16T08:01:16.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.057500", - "Timestamp": "2019-10-15T21:09:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T07:47:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.057500", - "Timestamp": "2019-10-15T21:09:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.465300", + "Timestamp": "2024-05-16T07:47:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.715500", - "Timestamp": "2019-10-15T21:09:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.873900", + "Timestamp": "2024-05-16T07:47:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.715500", - "Timestamp": "2019-10-15T21:09:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.868900", + "Timestamp": "2024-05-16T07:47:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.685500", - "Timestamp": "2019-10-15T21:09:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.743900", + "Timestamp": "2024-05-16T07:47:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.685500", - "Timestamp": "2019-10-15T21:09:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.946000", + "Timestamp": "2024-05-16T07:47:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.585500", - "Timestamp": "2019-10-15T21:09:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.941000", + "Timestamp": "2024-05-16T07:47:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.585500", - "Timestamp": "2019-10-15T21:09:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.816000", + "Timestamp": "2024-05-16T07:47:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090200", - "Timestamp": "2019-10-15T21:09:30.000Z" + "SpotPrice": "0.110100", + "Timestamp": "2024-05-16T07:47:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090200", - "Timestamp": "2019-10-15T21:09:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T07:47:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.130200", - "Timestamp": "2019-10-15T21:09:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050100", + "Timestamp": "2024-05-16T07:47:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.588500", + "Timestamp": "2024-05-16T07:47:35.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.130200", - "Timestamp": "2019-10-15T21:09:30.000Z" + "SpotPrice": "1.583500", + "Timestamp": "2024-05-16T07:47:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030200", - "Timestamp": "2019-10-15T21:09:30.000Z" + "SpotPrice": "1.458500", + "Timestamp": "2024-05-16T07:47:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030200", - "Timestamp": "2019-10-15T21:09:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.224800", + "Timestamp": "2024-05-16T07:47:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t2.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.018300", - "Timestamp": "2019-10-15T21:09:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.221100", + "Timestamp": "2024-05-16T07:47:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t2.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.018300", - "Timestamp": "2019-10-15T21:09:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164800", + "Timestamp": "2024-05-16T07:47:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t2.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.018300", - "Timestamp": "2019-10-15T21:09:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.425800", + "Timestamp": "2024-05-16T07:47:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.330600", - "Timestamp": "2019-10-15T21:09:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.420800", + "Timestamp": "2024-05-16T07:47:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.330600", - "Timestamp": "2019-10-15T21:09:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.295800", + "Timestamp": "2024-05-16T07:47:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.300600", - "Timestamp": "2019-10-15T21:09:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.583000", + "Timestamp": "2024-05-16T07:47:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i2.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.300600", - "Timestamp": "2019-10-15T21:09:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.578000", + "Timestamp": "2024-05-16T07:47:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.200600", - "Timestamp": "2019-10-15T21:09:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.453000", + "Timestamp": "2024-05-16T07:47:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.200600", - "Timestamp": "2019-10-15T21:09:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.219900", + "Timestamp": "2024-05-16T07:47:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.011400", - "Timestamp": "2019-10-15T21:09:17.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.216900", + "Timestamp": "2024-05-16T07:47:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.011400", - "Timestamp": "2019-10-15T21:09:17.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159900", + "Timestamp": "2024-05-16T07:47:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.981400", - "Timestamp": "2019-10-15T21:09:17.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.444700", + "Timestamp": "2024-05-16T07:47:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.981400", - "Timestamp": "2019-10-15T21:09:17.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.249300", + "Timestamp": "2024-05-16T07:47:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.881400", - "Timestamp": "2019-10-15T21:09:17.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.709300", + "Timestamp": "2024-05-16T07:47:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.881400", - "Timestamp": "2019-10-15T21:09:17.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.704300", + "Timestamp": "2024-05-16T07:47:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.636400", - "Timestamp": "2019-10-15T21:09:10.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.579300", + "Timestamp": "2024-05-16T07:47:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.636400", - "Timestamp": "2019-10-15T21:09:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.470400", + "Timestamp": "2024-05-16T07:47:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.606400", - "Timestamp": "2019-10-15T21:09:10.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.536300", + "Timestamp": "2024-05-16T07:47:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1e.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.606400", - "Timestamp": "2019-10-15T21:09:10.000Z" + "SpotPrice": "2.506300", + "Timestamp": "2024-05-16T07:47:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1e.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.506400", - "Timestamp": "2019-10-15T21:09:10.000Z" + "SpotPrice": "2.406300", + "Timestamp": "2024-05-16T07:47:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.506400", - "Timestamp": "2019-10-15T21:09:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.710200", + "Timestamp": "2024-05-16T07:47:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.727400", - "Timestamp": "2019-10-15T21:09:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.705200", + "Timestamp": "2024-05-16T07:47:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.909000", - "Timestamp": "2019-10-15T21:09:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.580200", + "Timestamp": "2024-05-16T07:47:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.727400", - "Timestamp": "2019-10-15T21:09:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.699100", + "Timestamp": "2024-05-16T07:47:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.636400", - "Timestamp": "2019-10-15T21:09:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.669100", + "Timestamp": "2024-05-16T07:47:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.818000", - "Timestamp": "2019-10-15T21:09:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.569100", + "Timestamp": "2024-05-16T07:47:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.636400", - "Timestamp": "2019-10-15T21:09:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.551300", + "Timestamp": "2024-05-16T07:47:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.606400", - "Timestamp": "2019-10-15T21:09:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.401500", + "Timestamp": "2024-05-16T07:47:20.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "d2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.788000", - "Timestamp": "2019-10-15T21:09:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.396500", + "Timestamp": "2024-05-16T07:47:20.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.606400", - "Timestamp": "2019-10-15T21:09:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.271500", + "Timestamp": "2024-05-16T07:47:20.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.506400", - "Timestamp": "2019-10-15T21:09:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.280400", + "Timestamp": "2024-05-16T07:47:19.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.688000", - "Timestamp": "2019-10-15T21:09:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.275400", + "Timestamp": "2024-05-16T07:47:19.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.506400", - "Timestamp": "2019-10-15T21:09:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150400", + "Timestamp": "2024-05-16T07:47:19.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.727400", - "Timestamp": "2019-10-15T21:09:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135200", + "Timestamp": "2024-05-16T07:47:19.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.727400", - "Timestamp": "2019-10-15T21:09:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131200", + "Timestamp": "2024-05-16T07:47:19.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.396100", - "Timestamp": "2019-10-15T21:09:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075200", + "Timestamp": "2024-05-16T07:47:19.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.396100", - "Timestamp": "2019-10-15T21:09:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136000", + "Timestamp": "2024-05-16T07:47:19.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.396100", - "Timestamp": "2019-10-15T21:09:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132000", + "Timestamp": "2024-05-16T07:47:19.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.366100", - "Timestamp": "2019-10-15T21:09:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076000", + "Timestamp": "2024-05-16T07:47:19.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.366100", - "Timestamp": "2019-10-15T21:09:02.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.988000", + "Timestamp": "2024-05-16T07:47:18.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.366100", - "Timestamp": "2019-10-15T21:09:02.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.983000", + "Timestamp": "2024-05-16T07:47:18.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.266100", - "Timestamp": "2019-10-15T21:09:02.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.858000", + "Timestamp": "2024-05-16T07:47:18.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.266100", - "Timestamp": "2019-10-15T21:09:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111100", + "Timestamp": "2024-05-16T07:47:17.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.266100", - "Timestamp": "2019-10-15T21:09:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T07:47:17.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.327600", - "Timestamp": "2019-10-15T21:08:57.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051100", + "Timestamp": "2024-05-16T07:47:17.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.327600", - "Timestamp": "2019-10-15T21:08:57.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.610900", + "Timestamp": "2024-05-16T07:47:16.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.297600", - "Timestamp": "2019-10-15T21:08:57.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.926700", + "Timestamp": "2024-05-16T07:47:14.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.297600", - "Timestamp": "2019-10-15T21:08:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.973500", + "Timestamp": "2024-05-16T07:47:11.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.197600", - "Timestamp": "2019-10-15T21:08:57.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.566000", + "Timestamp": "2024-05-16T07:47:11.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.197600", - "Timestamp": "2019-10-15T21:08:57.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.561000", + "Timestamp": "2024-05-16T07:47:11.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t2.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.069100", - "Timestamp": "2019-10-15T21:08:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.436000", + "Timestamp": "2024-05-16T07:47:11.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t2.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.069100", - "Timestamp": "2019-10-15T21:08:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133900", + "Timestamp": "2024-05-16T07:47:10.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t2.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.069100", - "Timestamp": "2019-10-15T21:08:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129900", + "Timestamp": "2024-05-16T07:47:10.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t2.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.039100", - "Timestamp": "2019-10-15T21:08:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073900", + "Timestamp": "2024-05-16T07:47:10.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t2.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.039100", - "Timestamp": "2019-10-15T21:08:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.183500", + "Timestamp": "2024-05-16T07:47:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t2.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.039100", - "Timestamp": "2019-10-15T21:08:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.106000", + "Timestamp": "2024-05-16T07:47:08.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t2.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.009100", - "Timestamp": "2019-10-15T21:08:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.101000", + "Timestamp": "2024-05-16T07:47:08.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t2.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.009100", - "Timestamp": "2019-10-15T21:08:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.976000", + "Timestamp": "2024-05-16T07:47:08.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t2.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.009100", - "Timestamp": "2019-10-15T21:08:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.420100", + "Timestamp": "2024-05-16T07:47:08.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3a.nano", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.061800", - "Timestamp": "2019-10-15T21:08:52.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.861500", + "Timestamp": "2024-05-16T07:47:07.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3a.nano", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.061800", - "Timestamp": "2019-10-15T21:08:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.744300", + "Timestamp": "2024-05-16T07:47:06.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3a.nano", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-15T21:08:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.739300", + "Timestamp": "2024-05-16T07:47:06.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3a.nano", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-15T21:08:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.614300", + "Timestamp": "2024-05-16T07:47:06.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3a.nano", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.001800", - "Timestamp": "2019-10-15T21:08:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.478400", + "Timestamp": "2024-05-16T07:47:04.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3a.nano", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.001800", - "Timestamp": "2019-10-15T21:08:52.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142400", + "Timestamp": "2024-05-16T07:47:03.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.531200", - "Timestamp": "2019-10-15T21:08:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138400", + "Timestamp": "2024-05-16T07:47:03.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.531200", - "Timestamp": "2019-10-15T21:08:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082400", + "Timestamp": "2024-05-16T07:47:03.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.501200", - "Timestamp": "2019-10-15T21:08:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.696300", + "Timestamp": "2024-05-16T07:47:03.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.501200", - "Timestamp": "2019-10-15T21:08:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.698400", + "Timestamp": "2024-05-16T07:47:03.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.401200", - "Timestamp": "2019-10-15T21:08:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.691300", + "Timestamp": "2024-05-16T07:47:03.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.401200", - "Timestamp": "2019-10-15T21:08:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.693400", + "Timestamp": "2024-05-16T07:47:03.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "a1.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.077200", - "Timestamp": "2019-10-15T21:08:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.566300", + "Timestamp": "2024-05-16T07:47:03.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "a1.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.077200", - "Timestamp": "2019-10-15T21:08:47.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.568400", + "Timestamp": "2024-05-16T07:47:03.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "a1.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.117200", - "Timestamp": "2019-10-15T21:08:47.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.314400", + "Timestamp": "2024-05-16T07:47:02.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "a1.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.117200", - "Timestamp": "2019-10-15T21:08:47.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.440800", + "Timestamp": "2024-05-16T07:46:58.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "a1.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.017200", - "Timestamp": "2019-10-15T21:08:47.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.795300", + "Timestamp": "2024-05-16T07:46:58.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "a1.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.017200", - "Timestamp": "2019-10-15T21:08:47.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120600", + "Timestamp": "2024-05-16T07:46:57.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.015400", - "Timestamp": "2019-10-15T21:08:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-16T07:46:57.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.092600", - "Timestamp": "2019-10-15T21:08:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060600", + "Timestamp": "2024-05-16T07:46:57.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.092600", - "Timestamp": "2019-10-15T21:08:35.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.789700", + "Timestamp": "2024-05-16T07:46:55.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.300200", - "Timestamp": "2019-10-15T21:08:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.655100", + "Timestamp": "2024-05-16T07:46:54.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.300200", - "Timestamp": "2019-10-15T21:08:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.650100", + "Timestamp": "2024-05-16T07:46:54.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.133200", - "Timestamp": "2019-10-15T21:08:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.525100", + "Timestamp": "2024-05-16T07:46:54.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.133200", - "Timestamp": "2019-10-15T21:08:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271100", + "Timestamp": "2024-05-16T07:46:52.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.108600", - "Timestamp": "2019-10-15T21:08:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266100", + "Timestamp": "2024-05-16T07:46:52.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.108600", - "Timestamp": "2019-10-15T21:08:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141100", + "Timestamp": "2024-05-16T07:46:52.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m1.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.148600", - "Timestamp": "2019-10-15T21:08:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.925900", + "Timestamp": "2024-05-16T07:46:51.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m1.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.148600", - "Timestamp": "2019-10-15T21:08:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.743000", + "Timestamp": "2024-05-16T07:46:51.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m1.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.048600", - "Timestamp": "2019-10-15T21:08:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "h1.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.713000", + "Timestamp": "2024-05-16T07:46:51.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m1.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.048600", - "Timestamp": "2019-10-15T21:08:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.613000", + "Timestamp": "2024-05-16T07:46:51.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.133200", - "Timestamp": "2019-10-15T21:07:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.037800", + "Timestamp": "2024-05-16T07:46:50.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.133200", - "Timestamp": "2019-10-15T21:07:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.490300", + "Timestamp": "2024-05-16T07:46:50.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.806600", - "Timestamp": "2019-10-15T21:07:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.485300", + "Timestamp": "2024-05-16T07:46:50.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.806600", - "Timestamp": "2019-10-15T21:07:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.360300", + "Timestamp": "2024-05-16T07:46:50.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.776600", - "Timestamp": "2019-10-15T21:07:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137900", + "Timestamp": "2024-05-16T07:46:48.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.776600", - "Timestamp": "2019-10-15T21:07:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134200", + "Timestamp": "2024-05-16T07:46:48.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.676600", - "Timestamp": "2019-10-15T21:07:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077900", + "Timestamp": "2024-05-16T07:46:48.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.676600", - "Timestamp": "2019-10-15T21:07:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.610900", + "Timestamp": "2024-05-16T07:46:48.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.090200", - "Timestamp": "2019-10-15T21:06:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.877600", + "Timestamp": "2024-05-16T07:46:46.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.090200", - "Timestamp": "2019-10-15T21:06:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.548900", + "Timestamp": "2024-05-16T07:46:45.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.130200", - "Timestamp": "2019-10-15T21:06:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "p2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.336800", + "Timestamp": "2024-05-16T07:46:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.130200", - "Timestamp": "2019-10-15T21:06:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.906500", + "Timestamp": "2024-05-16T07:46:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.030200", - "Timestamp": "2019-10-15T21:06:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.832600", + "Timestamp": "2024-05-16T07:46:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.030200", - "Timestamp": "2019-10-15T21:06:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.827600", + "Timestamp": "2024-05-16T07:46:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.285000", - "Timestamp": "2019-10-15T21:02:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.702600", + "Timestamp": "2024-05-16T07:46:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.255000", - "Timestamp": "2019-10-15T21:02:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.858100", + "Timestamp": "2024-05-16T07:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.155000", - "Timestamp": "2019-10-15T21:02:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.855400", + "Timestamp": "2024-05-16T07:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.508700", - "Timestamp": "2019-10-15T21:01:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.670400", + "Timestamp": "2024-05-16T07:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.372400", - "Timestamp": "2019-10-15T20:54:06.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.658800", + "Timestamp": "2024-05-16T07:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.342400", - "Timestamp": "2019-10-15T20:54:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.666500", + "Timestamp": "2024-05-16T07:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.242400", - "Timestamp": "2019-10-15T20:54:06.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.758500", + "Timestamp": "2024-05-16T07:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.512000", - "Timestamp": "2019-10-15T20:53:22.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.260800", + "Timestamp": "2024-05-16T07:46:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.482000", - "Timestamp": "2019-10-15T20:53:22.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.255800", + "Timestamp": "2024-05-16T07:46:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.382000", - "Timestamp": "2019-10-15T20:53:22.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.130800", + "Timestamp": "2024-05-16T07:46:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.089400", - "Timestamp": "2019-10-15T20:46:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.657200", + "Timestamp": "2024-05-16T07:46:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.089400", - "Timestamp": "2019-10-15T20:46:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.652200", + "Timestamp": "2024-05-16T07:46:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.129400", - "Timestamp": "2019-10-15T20:46:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.527200", + "Timestamp": "2024-05-16T07:46:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.129400", - "Timestamp": "2019-10-15T20:46:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235000", + "Timestamp": "2024-05-16T07:46:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.029400", - "Timestamp": "2019-10-15T20:46:10.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.252200", + "Timestamp": "2024-05-16T07:46:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.029400", - "Timestamp": "2019-10-15T20:46:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.935600", + "Timestamp": "2024-05-16T07:46:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.057000", - "Timestamp": "2019-10-15T20:46:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.328200", + "Timestamp": "2024-05-16T07:46:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.057000", - "Timestamp": "2019-10-15T20:46:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323200", + "Timestamp": "2024-05-16T07:46:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094900", - "Timestamp": "2019-10-15T20:43:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.198200", + "Timestamp": "2024-05-16T07:46:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134900", - "Timestamp": "2019-10-15T20:43:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.257800", + "Timestamp": "2024-05-16T07:46:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034900", - "Timestamp": "2019-10-15T20:43:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.114100", + "Timestamp": "2024-05-16T07:46:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.086200", - "Timestamp": "2019-10-15T20:43:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.126200", + "Timestamp": "2024-05-16T07:46:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.086200", - "Timestamp": "2019-10-15T20:43:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.096200", + "Timestamp": "2024-05-16T07:46:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.008200", - "Timestamp": "2019-10-15T20:43:24.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.996200", + "Timestamp": "2024-05-16T07:46:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.008200", - "Timestamp": "2019-10-15T20:43:24.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.752100", + "Timestamp": "2024-05-16T07:46:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.978200", - "Timestamp": "2019-10-15T20:43:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.400100", + "Timestamp": "2024-05-16T07:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.978200", - "Timestamp": "2019-10-15T20:43:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.395100", + "Timestamp": "2024-05-16T07:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.878200", - "Timestamp": "2019-10-15T20:43:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.270100", + "Timestamp": "2024-05-16T07:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.878200", - "Timestamp": "2019-10-15T20:43:24.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.539900", + "Timestamp": "2024-05-16T07:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126900", - "Timestamp": "2019-10-15T20:43:13.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.534900", + "Timestamp": "2024-05-16T07:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126900", - "Timestamp": "2019-10-15T20:43:13.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.409900", + "Timestamp": "2024-05-16T07:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126900", - "Timestamp": "2019-10-15T20:43:13.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.013500", + "Timestamp": "2024-05-16T07:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.792300", - "Timestamp": "2019-10-15T20:31:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.983500", + "Timestamp": "2024-05-16T07:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.792300", - "Timestamp": "2019-10-15T20:31:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.883500", + "Timestamp": "2024-05-16T07:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.414100", - "Timestamp": "2019-10-15T20:20:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.938100", + "Timestamp": "2024-05-16T07:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.384100", - "Timestamp": "2019-10-15T20:20:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.874100", + "Timestamp": "2024-05-16T07:46:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.284100", - "Timestamp": "2019-10-15T20:20:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.685600", + "Timestamp": "2024-05-16T07:46:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.533800", - "Timestamp": "2019-10-15T20:16:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.923900", + "Timestamp": "2024-05-16T07:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.533800", - "Timestamp": "2019-10-15T20:16:15.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261700", + "Timestamp": "2024-05-16T07:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.247800", - "Timestamp": "2019-10-15T20:15:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.256700", + "Timestamp": "2024-05-16T07:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.247800", - "Timestamp": "2019-10-15T20:15:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131700", + "Timestamp": "2024-05-16T07:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.217800", - "Timestamp": "2019-10-15T20:15:32.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.424000", + "Timestamp": "2024-05-16T07:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.217800", - "Timestamp": "2019-10-15T20:15:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.501200", + "Timestamp": "2024-05-16T07:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.117800", - "Timestamp": "2019-10-15T20:15:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.471200", + "Timestamp": "2024-05-16T07:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.117800", - "Timestamp": "2019-10-15T20:15:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.371200", + "Timestamp": "2024-05-16T07:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.776000", - "Timestamp": "2019-10-15T20:11:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.660300", + "Timestamp": "2024-05-16T07:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.746000", - "Timestamp": "2019-10-15T20:11:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.725700", + "Timestamp": "2024-05-16T07:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.646000", - "Timestamp": "2019-10-15T20:11:56.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.004400", + "Timestamp": "2024-05-16T07:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.278200", - "Timestamp": "2019-10-15T20:11:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.999400", + "Timestamp": "2024-05-16T07:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.248200", - "Timestamp": "2019-10-15T20:11:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.874400", + "Timestamp": "2024-05-16T07:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.148200", - "Timestamp": "2019-10-15T20:11:55.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.580100", + "Timestamp": "2024-05-16T07:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.627600", - "Timestamp": "2019-10-15T20:03:52.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.550100", + "Timestamp": "2024-05-16T07:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.597600", - "Timestamp": "2019-10-15T20:03:52.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.450100", + "Timestamp": "2024-05-16T07:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.497600", - "Timestamp": "2019-10-15T20:03:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.321800", + "Timestamp": "2024-05-16T07:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.435300", - "Timestamp": "2019-10-15T20:03:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.316800", + "Timestamp": "2024-05-16T07:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.405300", - "Timestamp": "2019-10-15T20:03:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.191800", + "Timestamp": "2024-05-16T07:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.305300", - "Timestamp": "2019-10-15T20:03:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.496100", + "Timestamp": "2024-05-16T07:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.616300", - "Timestamp": "2019-10-15T19:55:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.491100", + "Timestamp": "2024-05-16T07:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.586300", - "Timestamp": "2019-10-15T19:55:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.366100", + "Timestamp": "2024-05-16T07:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.486300", - "Timestamp": "2019-10-15T19:55:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.939600", + "Timestamp": "2024-05-16T07:46:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.071900", - "Timestamp": "2019-10-15T19:55:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.909600", + "Timestamp": "2024-05-16T07:46:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.041900", - "Timestamp": "2019-10-15T19:55:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.809600", + "Timestamp": "2024-05-16T07:46:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.941900", - "Timestamp": "2019-10-15T19:55:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.781400", + "Timestamp": "2024-05-16T07:46:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.132500", - "Timestamp": "2019-10-15T19:46:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.776400", + "Timestamp": "2024-05-16T07:46:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.172500", - "Timestamp": "2019-10-15T19:46:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.651400", + "Timestamp": "2024-05-16T07:46:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.072500", - "Timestamp": "2019-10-15T19:46:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.498200", + "Timestamp": "2024-05-16T07:46:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.511800", - "Timestamp": "2019-10-15T19:45:04.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.468200", + "Timestamp": "2024-05-16T07:46:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.511800", - "Timestamp": "2019-10-15T19:45:04.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.368200", + "Timestamp": "2024-05-16T07:46:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.511800", - "Timestamp": "2019-10-15T19:44:35.000Z" + "SpotPrice": "2.677000", + "Timestamp": "2024-05-16T07:46:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.511800", - "Timestamp": "2019-10-15T19:44:35.000Z" + "SpotPrice": "3.624400", + "Timestamp": "2024-05-16T07:46:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.921200", - "Timestamp": "2019-10-15T19:43:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.351900", + "Timestamp": "2024-05-16T07:46:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.828000", - "Timestamp": "2019-10-15T19:43:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.346900", + "Timestamp": "2024-05-16T07:46:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.921200", - "Timestamp": "2019-10-15T19:43:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.221900", + "Timestamp": "2024-05-16T07:46:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.262800", - "Timestamp": "2019-10-15T19:43:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.053700", + "Timestamp": "2024-05-16T07:46:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.262800", - "Timestamp": "2019-10-15T19:43:39.000Z" + "SpotPrice": "0.795000", + "Timestamp": "2024-05-16T07:46:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.232800", - "Timestamp": "2019-10-15T19:43:39.000Z" - }, - { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.232800", - "Timestamp": "2019-10-15T19:43:39.000Z" + "SpotPrice": "0.790000", + "Timestamp": "2024-05-16T07:46:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.132800", - "Timestamp": "2019-10-15T19:43:39.000Z" + "SpotPrice": "0.665000", + "Timestamp": "2024-05-16T07:46:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.132800", - "Timestamp": "2019-10-15T19:43:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.400700", + "Timestamp": "2024-05-16T07:46:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.507700", - "Timestamp": "2019-10-15T19:43:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.395700", + "Timestamp": "2024-05-16T07:46:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.507700", - "Timestamp": "2019-10-15T19:43:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.270700", + "Timestamp": "2024-05-16T07:46:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.507700", - "Timestamp": "2019-10-15T19:43:35.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.817600", + "Timestamp": "2024-05-16T07:46:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.061800", - "Timestamp": "2019-10-15T19:43:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151900", + "Timestamp": "2024-05-16T07:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.061800", - "Timestamp": "2019-10-15T19:43:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148200", + "Timestamp": "2024-05-16T07:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.061800", - "Timestamp": "2019-10-15T19:43:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091900", + "Timestamp": "2024-05-16T07:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.947200", - "Timestamp": "2019-10-15T19:43:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.034000", + "Timestamp": "2024-05-16T07:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.854000", - "Timestamp": "2019-10-15T19:43:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219000", + "Timestamp": "2024-05-16T07:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.947200", - "Timestamp": "2019-10-15T19:43:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.050400", + "Timestamp": "2024-05-16T07:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.917200", - "Timestamp": "2019-10-15T19:43:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.045400", + "Timestamp": "2024-05-16T07:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.824000", - "Timestamp": "2019-10-15T19:43:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.920400", + "Timestamp": "2024-05-16T07:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.917200", - "Timestamp": "2019-10-15T19:43:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116300", + "Timestamp": "2024-05-16T07:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.817200", - "Timestamp": "2019-10-15T19:43:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112300", + "Timestamp": "2024-05-16T07:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.724000", - "Timestamp": "2019-10-15T19:43:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056300", + "Timestamp": "2024-05-16T07:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.817200", - "Timestamp": "2019-10-15T19:43:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168200", + "Timestamp": "2024-05-16T07:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.247800", - "Timestamp": "2019-10-15T19:43:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164200", + "Timestamp": "2024-05-16T07:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.247800", - "Timestamp": "2019-10-15T19:43:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T07:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.247800", - "Timestamp": "2019-10-15T19:43:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.247000", + "Timestamp": "2024-05-16T07:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.217800", - "Timestamp": "2019-10-15T19:43:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.242000", + "Timestamp": "2024-05-16T07:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.217800", - "Timestamp": "2019-10-15T19:43:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.117000", + "Timestamp": "2024-05-16T07:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.217800", - "Timestamp": "2019-10-15T19:43:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.556800", + "Timestamp": "2024-05-16T07:46:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.117800", - "Timestamp": "2019-10-15T19:43:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.526800", + "Timestamp": "2024-05-16T07:46:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.117800", - "Timestamp": "2019-10-15T19:43:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.426800", + "Timestamp": "2024-05-16T07:46:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.117800", - "Timestamp": "2019-10-15T19:43:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.039300", + "Timestamp": "2024-05-16T07:46:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.219600", - "Timestamp": "2019-10-15T19:43:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.034300", + "Timestamp": "2024-05-16T07:46:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.219600", - "Timestamp": "2019-10-15T19:43:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.909300", + "Timestamp": "2024-05-16T07:46:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.219600", - "Timestamp": "2019-10-15T19:43:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.159300", + "Timestamp": "2024-05-16T07:46:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3en.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.259600", - "Timestamp": "2019-10-15T19:43:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.242800", + "Timestamp": "2024-05-16T07:46:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3en.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.259600", - "Timestamp": "2019-10-15T19:43:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "a1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.237800", + "Timestamp": "2024-05-16T07:46:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.259600", - "Timestamp": "2019-10-15T19:43:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T07:46:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.159600", - "Timestamp": "2019-10-15T19:43:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.620200", + "Timestamp": "2024-05-16T07:46:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.159600", - "Timestamp": "2019-10-15T19:43:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.590200", + "Timestamp": "2024-05-16T07:46:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.159600", - "Timestamp": "2019-10-15T19:43:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.490200", + "Timestamp": "2024-05-16T07:46:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.349600", - "Timestamp": "2019-10-15T19:43:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.227500", + "Timestamp": "2024-05-16T07:46:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.349600", - "Timestamp": "2019-10-15T19:43:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.222500", + "Timestamp": "2024-05-16T07:46:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.349600", - "Timestamp": "2019-10-15T19:43:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.097500", + "Timestamp": "2024-05-16T07:46:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.319600", - "Timestamp": "2019-10-15T19:43:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.511600", + "Timestamp": "2024-05-16T07:46:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.319600", - "Timestamp": "2019-10-15T19:43:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.506600", + "Timestamp": "2024-05-16T07:46:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.319600", - "Timestamp": "2019-10-15T19:43:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.381600", + "Timestamp": "2024-05-16T07:46:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.219600", - "Timestamp": "2019-10-15T19:43:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.382200", + "Timestamp": "2024-05-16T07:46:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.219600", - "Timestamp": "2019-10-15T19:43:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.377200", + "Timestamp": "2024-05-16T07:46:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.219600", - "Timestamp": "2019-10-15T19:43:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.252200", + "Timestamp": "2024-05-16T07:46:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.343600", - "Timestamp": "2019-10-15T19:42:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.872300", + "Timestamp": "2024-05-16T07:46:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.343600", - "Timestamp": "2019-10-15T19:42:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.867300", + "Timestamp": "2024-05-16T07:46:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.343600", - "Timestamp": "2019-10-15T19:42:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.742300", + "Timestamp": "2024-05-16T07:46:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.587600", - "Timestamp": "2019-10-15T19:42:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088500", + "Timestamp": "2024-05-16T07:46:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.587600", - "Timestamp": "2019-10-15T19:42:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084800", + "Timestamp": "2024-05-16T07:46:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.587600", - "Timestamp": "2019-10-15T19:42:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028500", + "Timestamp": "2024-05-16T07:46:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.447100", - "Timestamp": "2019-10-15T19:29:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Windows", + "SpotPrice": "8.683700", + "Timestamp": "2024-05-16T07:46:19.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.417100", - "Timestamp": "2019-10-15T19:29:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.028600", + "Timestamp": "2024-05-16T07:46:19.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.317100", - "Timestamp": "2019-10-15T19:29:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.023600", + "Timestamp": "2024-05-16T07:46:19.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.151100", - "Timestamp": "2019-10-15T19:21:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.898600", + "Timestamp": "2024-05-16T07:46:19.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.191100", - "Timestamp": "2019-10-15T19:21:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.952100", + "Timestamp": "2024-05-16T07:46:18.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.091100", - "Timestamp": "2019-10-15T19:21:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.947100", + "Timestamp": "2024-05-16T07:46:18.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.279300", - "Timestamp": "2019-10-15T19:21:15.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.822100", + "Timestamp": "2024-05-16T07:46:18.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.249300", - "Timestamp": "2019-10-15T19:21:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101600", + "Timestamp": "2024-05-16T07:46:17.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.149300", - "Timestamp": "2019-10-15T19:21:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097900", + "Timestamp": "2024-05-16T07:46:17.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.412800", - "Timestamp": "2019-10-15T19:21:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041600", + "Timestamp": "2024-05-16T07:46:17.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.056300", - "Timestamp": "2019-10-15T19:13:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.565200", + "Timestamp": "2024-05-16T07:46:16.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "12.583400", - "Timestamp": "2019-10-15T19:13:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.535200", + "Timestamp": "2024-05-16T07:46:16.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "p3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "12.553400", - "Timestamp": "2019-10-15T19:13:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.435200", + "Timestamp": "2024-05-16T07:46:16.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "12.453400", - "Timestamp": "2019-10-15T19:13:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144000", + "Timestamp": "2024-05-16T07:46:16.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.260900", - "Timestamp": "2019-10-15T19:13:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140300", + "Timestamp": "2024-05-16T07:46:16.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.076300", - "Timestamp": "2019-10-15T19:13:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084000", + "Timestamp": "2024-05-16T07:46:16.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.076300", - "Timestamp": "2019-10-15T19:13:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.353900", + "Timestamp": "2024-05-16T07:46:15.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.116300", - "Timestamp": "2019-10-15T19:13:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.348900", + "Timestamp": "2024-05-16T07:46:15.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.116300", - "Timestamp": "2019-10-15T19:13:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.223900", + "Timestamp": "2024-05-16T07:46:15.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.016300", - "Timestamp": "2019-10-15T19:13:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.181500", + "Timestamp": "2024-05-16T07:46:15.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.016300", - "Timestamp": "2019-10-15T19:13:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177800", + "Timestamp": "2024-05-16T07:46:15.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.270300", - "Timestamp": "2019-10-15T19:13:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121500", + "Timestamp": "2024-05-16T07:46:15.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.240300", - "Timestamp": "2019-10-15T19:13:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.868800", + "Timestamp": "2024-05-16T07:46:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.140300", - "Timestamp": "2019-10-15T19:13:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.863800", + "Timestamp": "2024-05-16T07:46:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.034700", - "Timestamp": "2019-10-15T19:13:12.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.738800", + "Timestamp": "2024-05-16T07:46:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.034700", - "Timestamp": "2019-10-15T19:13:12.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.653000", + "Timestamp": "2024-05-16T07:46:11.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t3.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.034700", - "Timestamp": "2019-10-15T19:13:12.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.789500", + "Timestamp": "2024-05-16T07:34:20.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094200", - "Timestamp": "2019-10-15T18:56:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.866700", + "Timestamp": "2024-05-16T07:34:20.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134200", - "Timestamp": "2019-10-15T18:56:49.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.836700", + "Timestamp": "2024-05-16T07:34:20.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034200", - "Timestamp": "2019-10-15T18:56:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.784500", + "Timestamp": "2024-05-16T07:34:20.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "9.524500", - "Timestamp": "2019-10-15T18:56:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.861700", + "Timestamp": "2024-05-16T07:34:20.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.271400", - "Timestamp": "2019-10-15T18:48:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.831700", + "Timestamp": "2024-05-16T07:34:20.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.241400", - "Timestamp": "2019-10-15T18:48:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.659500", + "Timestamp": "2024-05-16T07:34:20.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.141400", - "Timestamp": "2019-10-15T18:48:35.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.736700", + "Timestamp": "2024-05-16T07:34:20.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.437200", - "Timestamp": "2019-10-15T18:48:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.706700", + "Timestamp": "2024-05-16T07:34:20.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.407200", - "Timestamp": "2019-10-15T18:48:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.962500", + "Timestamp": "2024-05-16T07:34:04.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.307200", - "Timestamp": "2019-10-15T18:48:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.957500", + "Timestamp": "2024-05-16T07:34:04.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.263800", - "Timestamp": "2019-10-15T18:48:05.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.832500", + "Timestamp": "2024-05-16T07:34:04.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.233800", - "Timestamp": "2019-10-15T18:48:05.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.333800", + "Timestamp": "2024-05-16T07:32:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.133800", - "Timestamp": "2019-10-15T18:48:05.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.303800", + "Timestamp": "2024-05-16T07:32:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.373600", - "Timestamp": "2019-10-15T18:45:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.203800", + "Timestamp": "2024-05-16T07:32:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.373600", - "Timestamp": "2019-10-15T18:45:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.452300", + "Timestamp": "2024-05-16T07:32:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.714300", - "Timestamp": "2019-10-15T18:44:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.127400", + "Timestamp": "2024-05-16T07:32:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.714300", - "Timestamp": "2019-10-15T18:44:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.538500", + "Timestamp": "2024-05-16T07:32:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.684300", - "Timestamp": "2019-10-15T18:44:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.479800", + "Timestamp": "2024-05-16T07:32:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.684300", - "Timestamp": "2019-10-15T18:44:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.185500", + "Timestamp": "2024-05-16T07:32:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.584300", - "Timestamp": "2019-10-15T18:44:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181800", + "Timestamp": "2024-05-16T07:32:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.584300", - "Timestamp": "2019-10-15T18:44:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125500", + "Timestamp": "2024-05-16T07:32:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.031600", - "Timestamp": "2019-10-15T18:44:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.610400", + "Timestamp": "2024-05-16T07:32:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.031600", - "Timestamp": "2019-10-15T18:44:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.233600", + "Timestamp": "2024-05-16T07:32:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.001600", - "Timestamp": "2019-10-15T18:44:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.203600", + "Timestamp": "2024-05-16T07:32:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.001600", - "Timestamp": "2019-10-15T18:44:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.103600", + "Timestamp": "2024-05-16T07:32:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.901600", - "Timestamp": "2019-10-15T18:44:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.626100", + "Timestamp": "2024-05-16T07:32:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.901600", - "Timestamp": "2019-10-15T18:44:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.621100", + "Timestamp": "2024-05-16T07:32:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.501100", - "Timestamp": "2019-10-15T18:42:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.496100", + "Timestamp": "2024-05-16T07:32:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.501100", - "Timestamp": "2019-10-15T18:42:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.256000", + "Timestamp": "2024-05-16T07:32:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.501100", - "Timestamp": "2019-10-15T18:42:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.039400", + "Timestamp": "2024-05-16T07:32:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.028700", - "Timestamp": "2019-10-15T18:42:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.034400", + "Timestamp": "2024-05-16T07:32:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.028700", - "Timestamp": "2019-10-15T18:42:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.909400", + "Timestamp": "2024-05-16T07:32:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.028700", - "Timestamp": "2019-10-15T18:42:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.259400", + "Timestamp": "2024-05-16T07:32:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.422700", - "Timestamp": "2019-10-15T18:42:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.254400", + "Timestamp": "2024-05-16T07:32:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.392700", - "Timestamp": "2019-10-15T18:42:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.129400", + "Timestamp": "2024-05-16T07:32:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.292700", - "Timestamp": "2019-10-15T18:42:20.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T07:32:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.271200", - "Timestamp": "2019-10-15T18:31:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104700", + "Timestamp": "2024-05-16T07:32:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.241200", - "Timestamp": "2019-10-15T18:31:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048400", + "Timestamp": "2024-05-16T07:32:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.141200", - "Timestamp": "2019-10-15T18:31:14.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.765000", + "Timestamp": "2024-05-16T07:32:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.273000", - "Timestamp": "2019-10-15T18:22:58.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.721600", + "Timestamp": "2024-05-16T07:32:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.243000", - "Timestamp": "2019-10-15T18:22:58.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.792600", + "Timestamp": "2024-05-16T07:32:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.143000", - "Timestamp": "2019-10-15T18:22:58.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.787600", + "Timestamp": "2024-05-16T07:32:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.291100", - "Timestamp": "2019-10-15T18:14:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.662600", + "Timestamp": "2024-05-16T07:32:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.261100", - "Timestamp": "2019-10-15T18:14:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.400700", + "Timestamp": "2024-05-16T07:32:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.161100", - "Timestamp": "2019-10-15T18:14:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.395700", + "Timestamp": "2024-05-16T07:32:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.253800", - "Timestamp": "2019-10-15T18:06:49.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.270700", + "Timestamp": "2024-05-16T07:32:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.223800", - "Timestamp": "2019-10-15T18:06:49.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.372200", + "Timestamp": "2024-05-16T07:32:20.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.123800", - "Timestamp": "2019-10-15T18:06:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.533800", + "Timestamp": "2024-05-16T07:32:19.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "p2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.526000", - "Timestamp": "2019-10-15T18:06:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.528800", + "Timestamp": "2024-05-16T07:32:19.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "p2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.566000", - "Timestamp": "2019-10-15T18:06:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.403800", + "Timestamp": "2024-05-16T07:32:19.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "p2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.466000", - "Timestamp": "2019-10-15T18:06:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.479100", + "Timestamp": "2024-05-16T07:32:17.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.400800", - "Timestamp": "2019-10-15T18:06:15.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.474100", + "Timestamp": "2024-05-16T07:32:17.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.370800", - "Timestamp": "2019-10-15T18:06:15.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.349100", + "Timestamp": "2024-05-16T07:32:17.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.270800", - "Timestamp": "2019-10-15T18:06:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.945500", + "Timestamp": "2024-05-16T07:32:16.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.046300", - "Timestamp": "2019-10-15T17:52:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.676400", + "Timestamp": "2024-05-16T07:32:15.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.046300", - "Timestamp": "2019-10-15T17:52:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.671400", + "Timestamp": "2024-05-16T07:32:15.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.046300", - "Timestamp": "2019-10-15T17:52:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.546400", + "Timestamp": "2024-05-16T07:32:15.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.276400", - "Timestamp": "2019-10-15T17:44:56.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.609700", + "Timestamp": "2024-05-16T07:32:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.276400", - "Timestamp": "2019-10-15T17:44:56.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.604700", + "Timestamp": "2024-05-16T07:32:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.276700", - "Timestamp": "2019-10-15T17:44:56.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.479700", + "Timestamp": "2024-05-16T07:32:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.246400", - "Timestamp": "2019-10-15T17:44:56.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.554200", + "Timestamp": "2024-05-16T07:32:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.246400", - "Timestamp": "2019-10-15T17:44:56.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.549200", + "Timestamp": "2024-05-16T07:32:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.246700", - "Timestamp": "2019-10-15T17:44:56.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.424200", + "Timestamp": "2024-05-16T07:32:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.146400", - "Timestamp": "2019-10-15T17:44:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.912300", + "Timestamp": "2024-05-16T07:32:07.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.146400", - "Timestamp": "2019-10-15T17:44:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.907300", + "Timestamp": "2024-05-16T07:32:07.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.146700", - "Timestamp": "2019-10-15T17:44:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.782300", + "Timestamp": "2024-05-16T07:32:07.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.514400", - "Timestamp": "2019-10-15T17:44:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.943100", + "Timestamp": "2024-05-16T07:32:06.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.514400", - "Timestamp": "2019-10-15T17:44:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.938100", + "Timestamp": "2024-05-16T07:32:06.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.514400", - "Timestamp": "2019-10-15T17:44:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.813100", + "Timestamp": "2024-05-16T07:32:06.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3a.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.063700", - "Timestamp": "2019-10-15T17:43:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169800", + "Timestamp": "2024-05-16T07:32:04.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3a.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.063700", - "Timestamp": "2019-10-15T17:43:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165800", + "Timestamp": "2024-05-16T07:32:04.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3a.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.103700", - "Timestamp": "2019-10-15T17:43:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T07:32:04.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3a.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.103700", - "Timestamp": "2019-10-15T17:43:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.373200", + "Timestamp": "2024-05-16T07:32:03.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.003700", - "Timestamp": "2019-10-15T17:43:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163900", + "Timestamp": "2024-05-16T07:32:02.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.003700", - "Timestamp": "2019-10-15T17:43:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160200", + "Timestamp": "2024-05-16T07:32:02.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.133200", - "Timestamp": "2019-10-15T17:43:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103900", + "Timestamp": "2024-05-16T07:32:02.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.133200", - "Timestamp": "2019-10-15T17:43:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.694100", + "Timestamp": "2024-05-16T07:32:02.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.173200", - "Timestamp": "2019-10-15T17:43:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.265400", + "Timestamp": "2024-05-16T07:32:01.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.173200", - "Timestamp": "2019-10-15T17:43:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.260400", + "Timestamp": "2024-05-16T07:32:01.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.073200", - "Timestamp": "2019-10-15T17:43:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.135400", + "Timestamp": "2024-05-16T07:32:01.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.073200", - "Timestamp": "2019-10-15T17:43:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.857800", + "Timestamp": "2024-05-16T07:31:59.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.261400", - "Timestamp": "2019-10-15T17:43:37.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.852800", + "Timestamp": "2024-05-16T07:31:59.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.261400", - "Timestamp": "2019-10-15T17:43:37.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.727800", + "Timestamp": "2024-05-16T07:31:59.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.267300", - "Timestamp": "2019-10-15T17:43:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.231700", + "Timestamp": "2024-05-16T07:31:59.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.267300", - "Timestamp": "2019-10-15T17:43:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.226700", + "Timestamp": "2024-05-16T07:31:59.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.012900", - "Timestamp": "2019-10-15T17:43:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.101700", + "Timestamp": "2024-05-16T07:31:59.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.012900", - "Timestamp": "2019-10-15T17:43:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.618300", + "Timestamp": "2024-05-16T07:31:59.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123400", - "Timestamp": "2019-10-15T17:43:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.613300", + "Timestamp": "2024-05-16T07:31:59.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123400", - "Timestamp": "2019-10-15T17:43:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.488300", + "Timestamp": "2024-05-16T07:31:59.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.163400", - "Timestamp": "2019-10-15T17:43:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.157300", + "Timestamp": "2024-05-16T07:31:57.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.163400", - "Timestamp": "2019-10-15T17:43:28.000Z" + "SpotPrice": "2.152300", + "Timestamp": "2024-05-16T07:31:57.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063400", - "Timestamp": "2019-10-15T17:43:28.000Z" + "SpotPrice": "2.027300", + "Timestamp": "2024-05-16T07:31:57.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063400", - "Timestamp": "2019-10-15T17:43:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100100", + "Timestamp": "2024-05-16T07:31:57.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.123400", - "Timestamp": "2019-10-15T17:43:00.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096400", + "Timestamp": "2024-05-16T07:31:57.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.123400", - "Timestamp": "2019-10-15T17:43:00.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040100", + "Timestamp": "2024-05-16T07:31:57.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.163400", - "Timestamp": "2019-10-15T17:43:00.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.454600", + "Timestamp": "2024-05-16T07:31:56.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.163400", - "Timestamp": "2019-10-15T17:43:00.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.449600", + "Timestamp": "2024-05-16T07:31:56.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.063400", - "Timestamp": "2019-10-15T17:43:00.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.324600", + "Timestamp": "2024-05-16T07:31:56.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.063400", - "Timestamp": "2019-10-15T17:43:00.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.431000", + "Timestamp": "2024-05-16T07:31:55.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.257200", - "Timestamp": "2019-10-15T17:42:54.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.426000", + "Timestamp": "2024-05-16T07:31:55.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.257200", - "Timestamp": "2019-10-15T17:42:54.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.301000", + "Timestamp": "2024-05-16T07:31:55.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.267300", - "Timestamp": "2019-10-15T17:42:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.398200", + "Timestamp": "2024-05-16T07:31:53.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.267300", - "Timestamp": "2019-10-15T17:42:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.393200", + "Timestamp": "2024-05-16T07:31:53.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.261400", - "Timestamp": "2019-10-15T17:42:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.268200", + "Timestamp": "2024-05-16T07:31:53.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.261400", - "Timestamp": "2019-10-15T17:42:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.624600", + "Timestamp": "2024-05-16T07:31:52.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.120300", - "Timestamp": "2019-10-15T17:42:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.619600", + "Timestamp": "2024-05-16T07:31:52.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.160300", - "Timestamp": "2019-10-15T17:42:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.494600", + "Timestamp": "2024-05-16T07:31:52.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.060300", - "Timestamp": "2019-10-15T17:42:47.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.335100", + "Timestamp": "2024-05-16T07:31:52.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120300", - "Timestamp": "2019-10-15T17:41:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.330100", + "Timestamp": "2024-05-16T07:31:52.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120300", - "Timestamp": "2019-10-15T17:41:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.205100", + "Timestamp": "2024-05-16T07:31:52.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.160300", - "Timestamp": "2019-10-15T17:41:58.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.327800", + "Timestamp": "2024-05-16T07:31:52.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.160300", - "Timestamp": "2019-10-15T17:41:58.000Z" + "SpotPrice": "3.322800", + "Timestamp": "2024-05-16T07:31:52.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060300", - "Timestamp": "2019-10-15T17:41:58.000Z" + "SpotPrice": "3.197800", + "Timestamp": "2024-05-16T07:31:52.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060300", - "Timestamp": "2019-10-15T17:41:58.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.439400", + "Timestamp": "2024-05-16T07:31:52.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.271500", - "Timestamp": "2019-10-15T17:39:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429300", + "Timestamp": "2024-05-16T07:31:51.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.241500", - "Timestamp": "2019-10-15T17:39:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.894500", + "Timestamp": "2024-05-16T07:31:49.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.141500", - "Timestamp": "2019-10-15T17:39:06.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.907000", + "Timestamp": "2024-05-16T07:31:48.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "7.039200", - "Timestamp": "2019-10-15T17:38:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-16T07:31:47.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "7.009200", - "Timestamp": "2019-10-15T17:38:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-16T07:31:47.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "6.909200", - "Timestamp": "2019-10-15T17:38:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.683000", + "Timestamp": "2024-05-16T07:31:45.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.437900", - "Timestamp": "2019-10-15T17:38:22.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.337500", + "Timestamp": "2024-05-16T07:31:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g3s.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.477900", - "Timestamp": "2019-10-15T17:38:22.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.332500", + "Timestamp": "2024-05-16T07:31:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.377900", - "Timestamp": "2019-10-15T17:38:22.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.207500", + "Timestamp": "2024-05-16T07:31:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095200", - "Timestamp": "2019-10-15T17:30:18.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.048500", + "Timestamp": "2024-05-16T07:31:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135200", - "Timestamp": "2019-10-15T17:30:18.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226100", + "Timestamp": "2024-05-16T07:31:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035200", - "Timestamp": "2019-10-15T17:30:18.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.901900", + "Timestamp": "2024-05-16T07:31:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "a1.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.267900", - "Timestamp": "2019-10-15T17:21:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T07:31:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "a1.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.267900", - "Timestamp": "2019-10-15T17:21:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092300", + "Timestamp": "2024-05-16T07:31:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "a1.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.237900", - "Timestamp": "2019-10-15T17:21:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036000", + "Timestamp": "2024-05-16T07:31:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "a1.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.237900", - "Timestamp": "2019-10-15T17:21:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.896000", + "Timestamp": "2024-05-16T07:31:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "a1.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.137900", - "Timestamp": "2019-10-15T17:21:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.251100", + "Timestamp": "2024-05-16T07:31:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "a1.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.137900", - "Timestamp": "2019-10-15T17:21:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.246100", + "Timestamp": "2024-05-16T07:31:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "17.494400", - "Timestamp": "2019-10-15T17:21:21.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.121100", + "Timestamp": "2024-05-16T07:31:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "17.494400", - "Timestamp": "2019-10-15T17:21:21.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.205300", + "Timestamp": "2024-05-16T07:31:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "11.736400", - "Timestamp": "2019-10-15T17:21:21.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.200300", + "Timestamp": "2024-05-16T07:31:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "11.736400", - "Timestamp": "2019-10-15T17:21:21.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.075300", + "Timestamp": "2024-05-16T07:31:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "11.706400", - "Timestamp": "2019-10-15T17:21:21.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.895400", + "Timestamp": "2024-05-16T07:31:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "11.706400", - "Timestamp": "2019-10-15T17:21:21.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.931900", + "Timestamp": "2024-05-16T07:31:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "11.606400", - "Timestamp": "2019-10-15T17:21:21.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.702600", + "Timestamp": "2024-05-16T07:31:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "11.606400", - "Timestamp": "2019-10-15T17:21:21.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.697600", + "Timestamp": "2024-05-16T07:31:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.495700", - "Timestamp": "2019-10-15T17:21:21.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.572600", + "Timestamp": "2024-05-16T07:31:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.495700", - "Timestamp": "2019-10-15T17:21:21.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.626800", + "Timestamp": "2024-05-16T07:31:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.825300", - "Timestamp": "2019-10-15T17:21:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.621800", + "Timestamp": "2024-05-16T07:31:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.825300", - "Timestamp": "2019-10-15T17:21:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.496800", + "Timestamp": "2024-05-16T07:31:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.730300", - "Timestamp": "2019-10-15T17:21:19.000Z" + "SpotPrice": "2.661900", + "Timestamp": "2024-05-16T07:31:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.730300", - "Timestamp": "2019-10-15T17:21:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.656900", + "Timestamp": "2024-05-16T07:31:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.700300", - "Timestamp": "2019-10-15T17:21:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.531900", + "Timestamp": "2024-05-16T07:31:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.300900", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.700300", - "Timestamp": "2019-10-15T17:21:19.000Z" + "SpotPrice": "0.295900", + "Timestamp": "2024-05-16T07:31:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.600300", - "Timestamp": "2019-10-15T17:21:19.000Z" + "SpotPrice": "0.170900", + "Timestamp": "2024-05-16T07:31:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.600300", - "Timestamp": "2019-10-15T17:21:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440500", + "Timestamp": "2024-05-16T07:31:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.730300", - "Timestamp": "2019-10-15T17:21:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.332700", + "Timestamp": "2024-05-16T07:31:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.730300", - "Timestamp": "2019-10-15T17:21:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.280400", + "Timestamp": "2024-05-16T07:31:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.700300", - "Timestamp": "2019-10-15T17:21:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.949200", + "Timestamp": "2024-05-16T07:31:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.700300", - "Timestamp": "2019-10-15T17:21:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.944200", + "Timestamp": "2024-05-16T07:31:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.600300", - "Timestamp": "2019-10-15T17:21:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.819200", + "Timestamp": "2024-05-16T07:31:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.600300", - "Timestamp": "2019-10-15T17:21:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.968800", + "Timestamp": "2024-05-16T07:31:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.825300", - "Timestamp": "2019-10-15T17:21:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.963800", + "Timestamp": "2024-05-16T07:31:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.825300", - "Timestamp": "2019-10-15T17:21:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.838800", + "Timestamp": "2024-05-16T07:31:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.509600", - "Timestamp": "2019-10-15T17:21:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.427000", + "Timestamp": "2024-05-16T07:31:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.509600", - "Timestamp": "2019-10-15T17:21:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.397000", + "Timestamp": "2024-05-16T07:31:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.509600", - "Timestamp": "2019-10-15T17:21:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.297000", + "Timestamp": "2024-05-16T07:31:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.327600", - "Timestamp": "2019-10-15T17:21:14.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.540900", + "Timestamp": "2024-05-16T07:31:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.327600", - "Timestamp": "2019-10-15T17:21:14.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.535900", + "Timestamp": "2024-05-16T07:31:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.327600", - "Timestamp": "2019-10-15T17:21:14.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.410900", + "Timestamp": "2024-05-16T07:31:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.297600", - "Timestamp": "2019-10-15T17:21:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.323800", + "Timestamp": "2024-05-16T07:31:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.297600", - "Timestamp": "2019-10-15T17:21:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.318800", + "Timestamp": "2024-05-16T07:31:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.297600", - "Timestamp": "2019-10-15T17:21:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.193800", + "Timestamp": "2024-05-16T07:31:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.197600", - "Timestamp": "2019-10-15T17:21:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.956000", + "Timestamp": "2024-05-16T07:31:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.197600", - "Timestamp": "2019-10-15T17:21:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.562000", + "Timestamp": "2024-05-16T07:31:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.197600", - "Timestamp": "2019-10-15T17:21:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.407600", + "Timestamp": "2024-05-16T07:31:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.030900", - "Timestamp": "2019-10-15T17:21:02.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.557000", + "Timestamp": "2024-05-16T07:31:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.030900", - "Timestamp": "2019-10-15T17:21:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.402600", + "Timestamp": "2024-05-16T07:31:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.688900", - "Timestamp": "2019-10-15T17:21:02.000Z" - }, - { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.688900", - "Timestamp": "2019-10-15T17:21:02.000Z" - }, - { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.658900", - "Timestamp": "2019-10-15T17:21:02.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.432000", + "Timestamp": "2024-05-16T07:31:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.658900", - "Timestamp": "2019-10-15T17:21:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.277600", + "Timestamp": "2024-05-16T07:31:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.558900", - "Timestamp": "2019-10-15T17:21:02.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.854000", + "Timestamp": "2024-05-16T07:31:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.558900", - "Timestamp": "2019-10-15T17:21:02.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T07:31:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.093300", - "Timestamp": "2019-10-15T17:20:32.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T07:31:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.133300", - "Timestamp": "2019-10-15T17:20:32.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049500", + "Timestamp": "2024-05-16T07:31:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.033300", - "Timestamp": "2019-10-15T17:20:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.834900", + "Timestamp": "2024-05-16T07:31:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.125300", - "Timestamp": "2019-10-15T17:20:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.329800", + "Timestamp": "2024-05-16T07:31:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.125300", - "Timestamp": "2019-10-15T17:20:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121700", + "Timestamp": "2024-05-16T07:31:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.125300", - "Timestamp": "2019-10-15T17:20:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118000", + "Timestamp": "2024-05-16T07:31:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.501100", - "Timestamp": "2019-10-15T17:14:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061700", + "Timestamp": "2024-05-16T07:31:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.501100", - "Timestamp": "2019-10-15T17:14:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.506900", + "Timestamp": "2024-05-16T07:31:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.501100", - "Timestamp": "2019-10-15T17:14:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.501900", + "Timestamp": "2024-05-16T07:31:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.247800", - "Timestamp": "2019-10-15T17:12:18.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.376900", + "Timestamp": "2024-05-16T07:31:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.217800", - "Timestamp": "2019-10-15T17:12:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.349700", + "Timestamp": "2024-05-16T07:31:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.117800", - "Timestamp": "2019-10-15T17:12:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.280700", + "Timestamp": "2024-05-16T07:31:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.061800", - "Timestamp": "2019-10-15T17:11:11.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.275700", + "Timestamp": "2024-05-16T07:31:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.155600", - "Timestamp": "2019-10-15T17:09:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.150700", + "Timestamp": "2024-05-16T07:31:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.155600", - "Timestamp": "2019-10-15T17:09:29.000Z" + "SpotPrice": "0.864900", + "Timestamp": "2024-05-16T07:31:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.125600", - "Timestamp": "2019-10-15T17:09:29.000Z" + "SpotPrice": "0.859900", + "Timestamp": "2024-05-16T07:31:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.125600", - "Timestamp": "2019-10-15T17:09:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.734900", + "Timestamp": "2024-05-16T07:31:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.025600", - "Timestamp": "2019-10-15T17:09:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.484300", + "Timestamp": "2024-05-16T07:31:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.025600", - "Timestamp": "2019-10-15T17:09:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.479300", + "Timestamp": "2024-05-16T07:31:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.703600", - "Timestamp": "2019-10-15T17:09:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.354300", + "Timestamp": "2024-05-16T07:31:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.703600", - "Timestamp": "2019-10-15T17:09:29.000Z" + "SpotPrice": "4.115000", + "Timestamp": "2024-05-16T07:31:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.155600", - "Timestamp": "2019-10-15T17:09:26.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.927700", + "Timestamp": "2024-05-16T07:31:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "6.882000", - "Timestamp": "2019-10-15T17:09:26.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.922700", + "Timestamp": "2024-05-16T07:31:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.155600", - "Timestamp": "2019-10-15T17:09:26.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.797700", + "Timestamp": "2024-05-16T07:31:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.125600", - "Timestamp": "2019-10-15T17:09:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.700100", + "Timestamp": "2024-05-16T07:31:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "d2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "6.852000", - "Timestamp": "2019-10-15T17:09:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.695100", + "Timestamp": "2024-05-16T07:31:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.125600", - "Timestamp": "2019-10-15T17:09:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.570100", + "Timestamp": "2024-05-16T07:31:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.025600", - "Timestamp": "2019-10-15T17:09:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.467300", + "Timestamp": "2024-05-16T07:31:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "6.752000", - "Timestamp": "2019-10-15T17:09:26.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070800", + "Timestamp": "2024-05-16T07:31:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.025600", - "Timestamp": "2019-10-15T17:09:26.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041800", + "Timestamp": "2024-05-16T07:31:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.703600", - "Timestamp": "2019-10-15T17:08:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010800", + "Timestamp": "2024-05-16T07:31:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "7.430000", - "Timestamp": "2019-10-15T17:08:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.250300", + "Timestamp": "2024-05-16T07:31:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.703600", - "Timestamp": "2019-10-15T17:08:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.245300", + "Timestamp": "2024-05-16T07:31:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "z1d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.764400", - "Timestamp": "2019-10-15T17:08:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.120300", + "Timestamp": "2024-05-16T07:31:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "z1d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "5.578000", - "Timestamp": "2019-10-15T17:08:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.859800", + "Timestamp": "2024-05-16T07:31:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "z1d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.764400", - "Timestamp": "2019-10-15T17:08:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124000", + "Timestamp": "2024-05-16T07:31:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "z1d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.734400", - "Timestamp": "2019-10-15T17:08:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.334300", + "Timestamp": "2024-05-16T07:31:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "z1d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "5.548000", - "Timestamp": "2019-10-15T17:08:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.304300", + "Timestamp": "2024-05-16T07:31:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "z1d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.734400", - "Timestamp": "2019-10-15T17:08:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.204300", + "Timestamp": "2024-05-16T07:31:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "z1d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.634400", - "Timestamp": "2019-10-15T17:08:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130700", + "Timestamp": "2024-05-16T07:31:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "z1d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "5.448000", - "Timestamp": "2019-10-15T17:08:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127000", + "Timestamp": "2024-05-16T07:31:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "z1d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.634400", - "Timestamp": "2019-10-15T17:08:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070700", + "Timestamp": "2024-05-16T07:31:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "z1d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.842400", - "Timestamp": "2019-10-15T17:08:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.344100", + "Timestamp": "2024-05-16T07:31:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "z1d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "7.656000", - "Timestamp": "2019-10-15T17:08:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.339100", + "Timestamp": "2024-05-16T07:31:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "z1d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.842400", - "Timestamp": "2019-10-15T17:08:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.214100", + "Timestamp": "2024-05-16T07:31:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.210000", - "Timestamp": "2019-10-15T17:08:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.746300", + "Timestamp": "2024-05-16T07:31:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.210000", - "Timestamp": "2019-10-15T17:08:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.741300", + "Timestamp": "2024-05-16T07:31:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.250500", - "Timestamp": "2019-10-15T17:07:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.616300", + "Timestamp": "2024-05-16T07:31:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.250500", - "Timestamp": "2019-10-15T17:07:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.586200", + "Timestamp": "2024-05-16T07:31:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.250500", - "Timestamp": "2019-10-15T17:07:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.581200", + "Timestamp": "2024-05-16T07:31:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.015400", - "Timestamp": "2019-10-15T17:06:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.456200", + "Timestamp": "2024-05-16T07:31:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.015400", - "Timestamp": "2019-10-15T17:06:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.009700", + "Timestamp": "2024-05-16T07:31:20.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.015400", - "Timestamp": "2019-10-15T17:06:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.385300", + "Timestamp": "2024-05-16T07:31:17.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092800", - "Timestamp": "2019-10-15T16:44:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.380300", + "Timestamp": "2024-05-16T07:31:17.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092800", - "Timestamp": "2019-10-15T16:44:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.255300", + "Timestamp": "2024-05-16T07:31:17.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092800", - "Timestamp": "2019-10-15T16:44:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.141000", + "Timestamp": "2024-05-16T07:17:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132800", - "Timestamp": "2019-10-15T16:44:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.136000", + "Timestamp": "2024-05-16T07:17:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132800", - "Timestamp": "2019-10-15T16:44:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.011000", + "Timestamp": "2024-05-16T07:17:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132800", - "Timestamp": "2019-10-15T16:44:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.415600", + "Timestamp": "2024-05-16T07:17:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032800", - "Timestamp": "2019-10-15T16:44:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.602900", + "Timestamp": "2024-05-16T07:17:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032800", - "Timestamp": "2019-10-15T16:44:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.294100", + "Timestamp": "2024-05-16T07:17:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032800", - "Timestamp": "2019-10-15T16:44:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.289100", + "Timestamp": "2024-05-16T07:17:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.371400", - "Timestamp": "2019-10-15T16:43:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.164100", + "Timestamp": "2024-05-16T07:17:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.371400", - "Timestamp": "2019-10-15T16:43:48.000Z" - }, - { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.341400", - "Timestamp": "2019-10-15T16:43:48.000Z" + "SpotPrice": "0.552100", + "Timestamp": "2024-05-16T07:17:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.341400", - "Timestamp": "2019-10-15T16:43:48.000Z" - }, - { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.241400", - "Timestamp": "2019-10-15T16:43:48.000Z" + "SpotPrice": "0.547100", + "Timestamp": "2024-05-16T07:17:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.241400", - "Timestamp": "2019-10-15T16:43:48.000Z" + "SpotPrice": "0.422100", + "Timestamp": "2024-05-16T07:17:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.069400", - "Timestamp": "2019-10-15T16:43:48.000Z" + "SpotPrice": "0.435500", + "Timestamp": "2024-05-16T07:17:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i-flex.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.069400", - "Timestamp": "2019-10-15T16:43:48.000Z" - }, - { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.069400", - "Timestamp": "2019-10-15T16:43:43.000Z" + "SpotPrice": "0.419400", + "Timestamp": "2024-05-16T07:17:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.069400", - "Timestamp": "2019-10-15T16:43:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.037900", + "Timestamp": "2024-05-16T07:17:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.060400", - "Timestamp": "2019-10-15T16:43:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.007900", + "Timestamp": "2024-05-16T07:17:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.060400", - "Timestamp": "2019-10-15T16:43:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.903900", + "Timestamp": "2024-05-16T07:17:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.060400", - "Timestamp": "2019-10-15T16:43:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088400", + "Timestamp": "2024-05-16T07:17:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.968300", - "Timestamp": "2019-10-15T16:43:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084700", + "Timestamp": "2024-05-16T07:17:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.968300", - "Timestamp": "2019-10-15T16:43:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028400", + "Timestamp": "2024-05-16T07:17:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.938300", - "Timestamp": "2019-10-15T16:43:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.451300", + "Timestamp": "2024-05-16T07:17:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.938300", - "Timestamp": "2019-10-15T16:43:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.382400", + "Timestamp": "2024-05-16T07:17:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.838300", - "Timestamp": "2019-10-15T16:43:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.377400", + "Timestamp": "2024-05-16T07:17:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.838300", - "Timestamp": "2019-10-15T16:43:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.252400", + "Timestamp": "2024-05-16T07:17:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.371400", - "Timestamp": "2019-10-15T16:43:27.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.694000", + "Timestamp": "2024-05-16T07:17:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.341400", - "Timestamp": "2019-10-15T16:43:27.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.664000", + "Timestamp": "2024-05-16T07:17:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.241400", - "Timestamp": "2019-10-15T16:43:27.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.564000", + "Timestamp": "2024-05-16T07:17:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.026000", - "Timestamp": "2019-10-15T16:43:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.474700", + "Timestamp": "2024-05-16T07:17:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.026000", - "Timestamp": "2019-10-15T16:43:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.469700", + "Timestamp": "2024-05-16T07:17:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.996000", - "Timestamp": "2019-10-15T16:43:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.344700", + "Timestamp": "2024-05-16T07:17:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.996000", - "Timestamp": "2019-10-15T16:43:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.977200", + "Timestamp": "2024-05-16T07:17:22.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.896000", - "Timestamp": "2019-10-15T16:43:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.972200", + "Timestamp": "2024-05-16T07:17:22.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.896000", - "Timestamp": "2019-10-15T16:43:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.847200", + "Timestamp": "2024-05-16T07:17:22.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t1.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.062600", - "Timestamp": "2019-10-15T16:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.594200", + "Timestamp": "2024-05-16T07:17:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t1.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.062600", - "Timestamp": "2019-10-15T16:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.589200", + "Timestamp": "2024-05-16T07:17:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t1.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.012600", - "Timestamp": "2019-10-15T16:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.464200", + "Timestamp": "2024-05-16T07:17:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t1.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.012600", - "Timestamp": "2019-10-15T16:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225600", + "Timestamp": "2024-05-16T07:17:18.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t1.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.002600", - "Timestamp": "2019-10-15T16:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.185600", + "Timestamp": "2024-05-16T07:17:15.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t1.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.002600", - "Timestamp": "2019-10-15T16:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181900", + "Timestamp": "2024-05-16T07:17:15.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t1.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062600", - "Timestamp": "2019-10-15T16:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125600", + "Timestamp": "2024-05-16T07:17:15.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t1.micro", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.metal-24xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062600", - "Timestamp": "2019-10-15T16:42:43.000Z" - }, - { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t1.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.012600", - "Timestamp": "2019-10-15T16:42:43.000Z" + "SpotPrice": "2.926700", + "Timestamp": "2024-05-16T07:17:15.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t1.micro", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.metal-24xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.012600", - "Timestamp": "2019-10-15T16:42:43.000Z" + "SpotPrice": "2.921700", + "Timestamp": "2024-05-16T07:17:15.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t1.micro", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.metal-24xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002600", - "Timestamp": "2019-10-15T16:42:43.000Z" + "SpotPrice": "2.796700", + "Timestamp": "2024-05-16T07:17:15.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t1.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002600", - "Timestamp": "2019-10-15T16:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.710200", + "Timestamp": "2024-05-16T07:17:14.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.504800", - "Timestamp": "2019-10-15T16:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.445300", + "Timestamp": "2024-05-16T07:17:14.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.504800", - "Timestamp": "2019-10-15T16:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.699900", + "Timestamp": "2024-05-16T07:17:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t1.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.009600", - "Timestamp": "2019-10-15T16:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.961200", + "Timestamp": "2024-05-16T07:17:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t1.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.009600", - "Timestamp": "2019-10-15T16:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.662800", + "Timestamp": "2024-05-16T07:17:12.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t1.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.009600", - "Timestamp": "2019-10-15T16:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.657800", + "Timestamp": "2024-05-16T07:17:12.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t1.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.009600", - "Timestamp": "2019-10-15T16:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.532800", + "Timestamp": "2024-05-16T07:17:12.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.127600", - "Timestamp": "2019-10-15T16:40:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.762700", + "Timestamp": "2024-05-16T07:17:11.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.167600", - "Timestamp": "2019-10-15T16:40:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.757700", + "Timestamp": "2024-05-16T07:17:11.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.067600", - "Timestamp": "2019-10-15T16:40:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.632700", + "Timestamp": "2024-05-16T07:17:11.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.093600", - "Timestamp": "2019-10-15T16:32:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.288200", + "Timestamp": "2024-05-16T07:17:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.133600", - "Timestamp": "2019-10-15T16:32:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.042100", + "Timestamp": "2024-05-16T07:17:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.033600", - "Timestamp": "2019-10-15T16:32:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.037100", + "Timestamp": "2024-05-16T07:17:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126900", - "Timestamp": "2019-10-15T15:45:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.912100", + "Timestamp": "2024-05-16T07:17:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126900", - "Timestamp": "2019-10-15T15:45:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.549400", + "Timestamp": "2024-05-16T07:17:08.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126900", - "Timestamp": "2019-10-15T15:45:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.544400", + "Timestamp": "2024-05-16T07:17:08.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.096600", - "Timestamp": "2019-10-15T15:45:22.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.419400", + "Timestamp": "2024-05-16T07:17:08.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.096600", - "Timestamp": "2019-10-15T15:45:22.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "p5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "33.247000", + "Timestamp": "2024-05-16T07:17:08.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.136600", - "Timestamp": "2019-10-15T15:45:22.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "p5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "33.242000", + "Timestamp": "2024-05-16T07:17:08.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.136600", - "Timestamp": "2019-10-15T15:45:22.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "p5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "33.117000", + "Timestamp": "2024-05-16T07:17:08.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.036600", - "Timestamp": "2019-10-15T15:45:22.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.548400", + "Timestamp": "2024-05-16T07:17:06.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.036600", - "Timestamp": "2019-10-15T15:45:22.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.543400", + "Timestamp": "2024-05-16T07:17:06.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.015400", - "Timestamp": "2019-10-15T15:45:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.418400", + "Timestamp": "2024-05-16T07:17:06.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.015400", - "Timestamp": "2019-10-15T15:45:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T07:17:05.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.128600", - "Timestamp": "2019-10-15T15:44:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100600", + "Timestamp": "2024-05-16T07:17:05.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.128600", - "Timestamp": "2019-10-15T15:44:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044600", + "Timestamp": "2024-05-16T07:17:05.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.261300", - "Timestamp": "2019-10-15T15:43:58.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.950600", + "Timestamp": "2024-05-16T07:17:04.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.261300", - "Timestamp": "2019-10-15T15:43:58.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.945600", + "Timestamp": "2024-05-16T07:17:04.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.261300", - "Timestamp": "2019-10-15T15:43:58.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.820600", + "Timestamp": "2024-05-16T07:17:04.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.231300", - "Timestamp": "2019-10-15T15:43:58.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.453000", + "Timestamp": "2024-05-16T07:17:02.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.231300", - "Timestamp": "2019-10-15T15:43:58.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.449000", + "Timestamp": "2024-05-16T07:17:02.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.231300", - "Timestamp": "2019-10-15T15:43:58.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.393000", + "Timestamp": "2024-05-16T07:17:02.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.131300", - "Timestamp": "2019-10-15T15:43:58.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.large", + "ProductDescription": "Windows", + "SpotPrice": "0.133600", + "Timestamp": "2024-05-16T07:17:02.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.131300", - "Timestamp": "2019-10-15T15:43:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.890300", + "Timestamp": "2024-05-16T07:16:59.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.131300", - "Timestamp": "2019-10-15T15:43:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Windows", + "SpotPrice": "5.493100", + "Timestamp": "2024-05-16T07:16:59.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.278500", - "Timestamp": "2019-10-15T15:42:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.289400", + "Timestamp": "2024-05-16T07:16:57.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.278500", - "Timestamp": "2019-10-15T15:42:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.284400", + "Timestamp": "2024-05-16T07:16:57.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.278500", - "Timestamp": "2019-10-15T15:42:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.159400", + "Timestamp": "2024-05-16T07:16:57.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.661100", - "Timestamp": "2019-10-15T15:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.757800", + "Timestamp": "2024-05-16T07:16:57.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.661100", - "Timestamp": "2019-10-15T15:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108800", + "Timestamp": "2024-05-16T07:16:54.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.631100", - "Timestamp": "2019-10-15T15:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091400", + "Timestamp": "2024-05-16T07:16:53.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.631100", - "Timestamp": "2019-10-15T15:42:43.000Z" - }, - { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.531100", - "Timestamp": "2019-10-15T15:42:43.000Z" + "SpotPrice": "0.087700", + "Timestamp": "2024-05-16T07:16:53.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.531100", - "Timestamp": "2019-10-15T15:42:43.000Z" + "SpotPrice": "0.031400", + "Timestamp": "2024-05-16T07:16:53.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.589100", - "Timestamp": "2019-10-15T15:42:43.000Z" + "SpotPrice": "0.438400", + "Timestamp": "2024-05-16T07:16:50.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.metal", "ProductDescription": "Windows", - "SpotPrice": "1.589100", - "Timestamp": "2019-10-15T15:42:43.000Z" + "SpotPrice": "8.099500", + "Timestamp": "2024-05-16T07:16:48.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.129700", - "Timestamp": "2019-10-15T15:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113100", + "Timestamp": "2024-05-16T07:16:47.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.129700", - "Timestamp": "2019-10-15T15:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114000", + "Timestamp": "2024-05-16T07:16:47.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.129700", - "Timestamp": "2019-10-15T15:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.229100", + "Timestamp": "2024-05-16T07:16:46.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.169700", - "Timestamp": "2019-10-15T15:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120100", + "Timestamp": "2024-05-16T07:16:46.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.169700", - "Timestamp": "2019-10-15T15:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-16T07:16:46.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.169700", - "Timestamp": "2019-10-15T15:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060100", + "Timestamp": "2024-05-16T07:16:46.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.069700", - "Timestamp": "2019-10-15T15:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.902900", + "Timestamp": "2024-05-16T07:16:46.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.069700", - "Timestamp": "2019-10-15T15:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.897900", + "Timestamp": "2024-05-16T07:16:46.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.069700", - "Timestamp": "2019-10-15T15:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.772900", + "Timestamp": "2024-05-16T07:16:46.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.589100", - "Timestamp": "2019-10-15T15:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121300", + "Timestamp": "2024-05-16T07:16:45.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.589100", - "Timestamp": "2019-10-15T15:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.693200", + "Timestamp": "2024-05-16T07:16:45.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.253700", - "Timestamp": "2019-10-15T15:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.249600", + "Timestamp": "2024-05-16T07:16:45.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.253700", - "Timestamp": "2019-10-15T15:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.623900", + "Timestamp": "2024-05-16T07:16:45.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.253700", - "Timestamp": "2019-10-15T15:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.618900", + "Timestamp": "2024-05-16T07:16:45.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.679000", - "Timestamp": "2019-10-15T15:34:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.493900", + "Timestamp": "2024-05-16T07:16:45.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.649000", - "Timestamp": "2019-10-15T15:34:04.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.935200", + "Timestamp": "2024-05-16T07:16:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.549000", - "Timestamp": "2019-10-15T15:34:04.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.930200", + "Timestamp": "2024-05-16T07:16:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.207600", - "Timestamp": "2019-10-15T15:12:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.805200", + "Timestamp": "2024-05-16T07:16:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.207600", - "Timestamp": "2019-10-15T15:12:36.000Z" + "SpotPrice": "0.305100", + "Timestamp": "2024-05-16T07:16:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.177600", - "Timestamp": "2019-10-15T15:12:36.000Z" + "SpotPrice": "0.300100", + "Timestamp": "2024-05-16T07:16:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.177600", - "Timestamp": "2019-10-15T15:12:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175100", + "Timestamp": "2024-05-16T07:16:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.077600", - "Timestamp": "2019-10-15T15:12:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.446800", + "Timestamp": "2024-05-16T07:16:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.077600", - "Timestamp": "2019-10-15T15:12:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.025300", + "Timestamp": "2024-05-16T07:16:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.207600", - "Timestamp": "2019-10-15T15:12:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.404300", + "Timestamp": "2024-05-16T07:16:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.207600", - "Timestamp": "2019-10-15T15:12:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.399300", + "Timestamp": "2024-05-16T07:16:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.177600", - "Timestamp": "2019-10-15T15:12:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.274300", + "Timestamp": "2024-05-16T07:16:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.177600", - "Timestamp": "2019-10-15T15:12:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.746000", + "Timestamp": "2024-05-16T07:16:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.077600", - "Timestamp": "2019-10-15T15:12:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.741000", + "Timestamp": "2024-05-16T07:16:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.077600", - "Timestamp": "2019-10-15T15:12:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.616000", + "Timestamp": "2024-05-16T07:16:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.355600", - "Timestamp": "2019-10-15T15:12:36.000Z" + "SpotPrice": "5.407800", + "Timestamp": "2024-05-16T07:16:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.355600", - "Timestamp": "2019-10-15T15:12:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.935700", + "Timestamp": "2024-05-16T07:16:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.355600", - "Timestamp": "2019-10-15T15:12:35.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.905700", + "Timestamp": "2024-05-16T07:16:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.355600", - "Timestamp": "2019-10-15T15:12:35.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.805700", + "Timestamp": "2024-05-16T07:16:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m3.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.130700", - "Timestamp": "2019-10-15T15:11:52.000Z" + "SpotPrice": "1.064600", + "Timestamp": "2024-05-16T07:16:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m3.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.130700", - "Timestamp": "2019-10-15T15:11:52.000Z" + "SpotPrice": "0.986700", + "Timestamp": "2024-05-16T07:16:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m3.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1e.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091700", - "Timestamp": "2019-10-15T15:10:52.000Z" + "SpotPrice": "1.067800", + "Timestamp": "2024-05-16T07:16:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091700", - "Timestamp": "2019-10-15T15:10:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.037800", + "Timestamp": "2024-05-16T07:16:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.131700", - "Timestamp": "2019-10-15T15:10:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.937800", + "Timestamp": "2024-05-16T07:16:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m3.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.827500", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.921300", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.131700", - "Timestamp": "2019-10-15T15:10:52.000Z" + "SpotPrice": "2.916300", + "Timestamp": "2024-05-16T07:16:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m3.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031700", - "Timestamp": "2019-10-15T15:10:52.000Z" + "SpotPrice": "2.791300", + "Timestamp": "2024-05-16T07:16:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031700", - "Timestamp": "2019-10-15T15:10:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.482500", + "Timestamp": "2024-05-16T07:16:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.130700", - "Timestamp": "2019-10-15T15:10:05.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136700", + "Timestamp": "2024-05-16T07:16:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.130700", - "Timestamp": "2019-10-15T15:10:05.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132700", + "Timestamp": "2024-05-16T07:16:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.091700", - "Timestamp": "2019-10-15T15:10:05.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076700", + "Timestamp": "2024-05-16T07:16:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.131700", - "Timestamp": "2019-10-15T15:10:05.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.117100", + "Timestamp": "2024-05-16T07:16:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.031700", - "Timestamp": "2019-10-15T15:10:05.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.112100", + "Timestamp": "2024-05-16T07:16:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.146900", - "Timestamp": "2019-10-15T14:44:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.987100", + "Timestamp": "2024-05-16T07:16:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.146900", - "Timestamp": "2019-10-15T14:44:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.412900", + "Timestamp": "2024-05-16T07:16:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.146900", - "Timestamp": "2019-10-15T14:44:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.407900", + "Timestamp": "2024-05-16T07:16:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.114900", - "Timestamp": "2019-10-15T14:44:24.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.282900", + "Timestamp": "2024-05-16T07:16:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.114900", - "Timestamp": "2019-10-15T14:44:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.525700", + "Timestamp": "2024-05-16T07:16:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.114900", - "Timestamp": "2019-10-15T14:44:24.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.990900", + "Timestamp": "2024-05-16T07:16:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.154900", - "Timestamp": "2019-10-15T14:44:24.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-16T07:16:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.154900", - "Timestamp": "2019-10-15T14:44:24.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088900", + "Timestamp": "2024-05-16T07:16:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.154900", - "Timestamp": "2019-10-15T14:44:24.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032600", + "Timestamp": "2024-05-16T07:16:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.054900", - "Timestamp": "2019-10-15T14:44:24.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.356100", + "Timestamp": "2024-05-16T07:16:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.054900", - "Timestamp": "2019-10-15T14:44:24.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.761000", + "Timestamp": "2024-05-16T07:16:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.054900", - "Timestamp": "2019-10-15T14:44:24.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.731000", + "Timestamp": "2024-05-16T07:16:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.114000", - "Timestamp": "2019-10-15T14:44:05.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.631000", + "Timestamp": "2024-05-16T07:16:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.114000", - "Timestamp": "2019-10-15T14:44:05.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.286000", + "Timestamp": "2024-05-16T07:16:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.114000", - "Timestamp": "2019-10-15T14:44:05.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089900", + "Timestamp": "2024-05-16T07:16:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.715500", - "Timestamp": "2019-10-15T14:44:00.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129900", + "Timestamp": "2024-05-16T07:16:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.715500", - "Timestamp": "2019-10-15T14:44:00.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029900", + "Timestamp": "2024-05-16T07:16:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.715500", - "Timestamp": "2019-10-15T14:44:00.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.140500", + "Timestamp": "2024-05-16T07:16:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.685500", - "Timestamp": "2019-10-15T14:44:00.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.135500", + "Timestamp": "2024-05-16T07:16:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.685500", - "Timestamp": "2019-10-15T14:44:00.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.010500", + "Timestamp": "2024-05-16T07:16:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.685500", - "Timestamp": "2019-10-15T14:44:00.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136500", + "Timestamp": "2024-05-16T07:16:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.585500", - "Timestamp": "2019-10-15T14:44:00.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.176500", + "Timestamp": "2024-05-16T07:16:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.585500", - "Timestamp": "2019-10-15T14:44:00.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076500", + "Timestamp": "2024-05-16T07:16:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.585500", - "Timestamp": "2019-10-15T14:44:00.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101400", + "Timestamp": "2024-05-16T07:16:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.133000", - "Timestamp": "2019-10-15T14:42:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097400", + "Timestamp": "2024-05-16T07:16:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.133000", - "Timestamp": "2019-10-15T14:42:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041400", + "Timestamp": "2024-05-16T07:16:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.133000", - "Timestamp": "2019-10-15T14:42:54.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.754600", + "Timestamp": "2024-05-16T07:16:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.173000", - "Timestamp": "2019-10-15T14:42:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.968100", + "Timestamp": "2024-05-16T07:16:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.173000", - "Timestamp": "2019-10-15T14:42:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.715200", + "Timestamp": "2024-05-16T07:16:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.173000", - "Timestamp": "2019-10-15T14:42:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.685200", + "Timestamp": "2024-05-16T07:16:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.073000", - "Timestamp": "2019-10-15T14:42:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.585200", + "Timestamp": "2024-05-16T07:16:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.073000", - "Timestamp": "2019-10-15T14:42:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.209400", + "Timestamp": "2024-05-16T07:16:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.073000", - "Timestamp": "2019-10-15T14:42:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.205400", + "Timestamp": "2024-05-16T07:16:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.631300", - "Timestamp": "2019-10-15T14:42:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149400", + "Timestamp": "2024-05-16T07:16:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.057500", - "Timestamp": "2019-10-15T14:42:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.905900", + "Timestamp": "2024-05-16T07:16:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.057500", - "Timestamp": "2019-10-15T14:42:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.900900", + "Timestamp": "2024-05-16T07:16:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.057500", - "Timestamp": "2019-10-15T14:42:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.775900", + "Timestamp": "2024-05-16T07:16:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.968300", - "Timestamp": "2019-10-15T14:12:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.934700", + "Timestamp": "2024-05-16T07:16:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.818000", - "Timestamp": "2019-10-15T14:12:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.929700", + "Timestamp": "2024-05-16T07:16:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.938300", - "Timestamp": "2019-10-15T14:12:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.804700", + "Timestamp": "2024-05-16T07:16:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.788000", - "Timestamp": "2019-10-15T14:12:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115400", + "Timestamp": "2024-05-16T07:16:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.838300", - "Timestamp": "2019-10-15T14:12:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111700", + "Timestamp": "2024-05-16T07:16:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.688000", - "Timestamp": "2019-10-15T14:12:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055400", + "Timestamp": "2024-05-16T07:16:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.046300", - "Timestamp": "2019-10-15T14:11:47.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.597300", + "Timestamp": "2024-05-16T07:16:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.896000", - "Timestamp": "2019-10-15T14:11:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.487900", + "Timestamp": "2024-05-16T07:16:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095800", - "Timestamp": "2019-10-15T14:06:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.482900", + "Timestamp": "2024-05-16T07:16:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135800", - "Timestamp": "2019-10-15T14:06:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.357900", + "Timestamp": "2024-05-16T07:16:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035800", - "Timestamp": "2019-10-15T14:06:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.384000", + "Timestamp": "2024-05-16T07:16:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3en.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.960400", - "Timestamp": "2019-10-15T13:53:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.379000", + "Timestamp": "2024-05-16T07:16:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3en.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.960400", - "Timestamp": "2019-10-15T13:53:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.254000", + "Timestamp": "2024-05-16T07:16:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3en.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.930400", - "Timestamp": "2019-10-15T13:53:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138300", + "Timestamp": "2024-05-16T07:16:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3en.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.930400", - "Timestamp": "2019-10-15T13:53:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T07:16:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3en.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.830400", - "Timestamp": "2019-10-15T13:53:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078300", + "Timestamp": "2024-05-16T07:16:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3en.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.830400", - "Timestamp": "2019-10-15T13:53:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.920100", + "Timestamp": "2024-05-16T07:16:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.263400", - "Timestamp": "2019-10-15T13:44:57.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.792000", + "Timestamp": "2024-05-16T07:16:22.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.233400", - "Timestamp": "2019-10-15T13:44:57.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.787000", + "Timestamp": "2024-05-16T07:16:22.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.133400", - "Timestamp": "2019-10-15T13:44:57.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.662000", + "Timestamp": "2024-05-16T07:16:22.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.381400", - "Timestamp": "2019-10-15T13:43:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.021100", + "Timestamp": "2024-05-16T07:16:20.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.409400", - "Timestamp": "2019-10-15T13:43:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.736400", + "Timestamp": "2024-05-16T07:16:17.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.379400", - "Timestamp": "2019-10-15T13:43:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.573900", + "Timestamp": "2024-05-16T07:16:14.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.279400", - "Timestamp": "2019-10-15T13:43:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.568900", + "Timestamp": "2024-05-16T07:16:14.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.399400", - "Timestamp": "2019-10-15T13:43:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.443900", + "Timestamp": "2024-05-16T07:16:14.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.369400", - "Timestamp": "2019-10-15T13:43:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.649200", + "Timestamp": "2024-05-16T07:16:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.269400", - "Timestamp": "2019-10-15T13:43:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.644200", + "Timestamp": "2024-05-16T07:16:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "4.802000", - "Timestamp": "2019-10-15T13:43:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.519200", + "Timestamp": "2024-05-16T07:16:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.247800", - "Timestamp": "2019-10-15T13:43:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.353400", + "Timestamp": "2024-05-16T07:16:12.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "4.772000", - "Timestamp": "2019-10-15T13:43:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.348400", + "Timestamp": "2024-05-16T07:16:12.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.217800", - "Timestamp": "2019-10-15T13:43:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.223400", + "Timestamp": "2024-05-16T07:16:12.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "4.672000", - "Timestamp": "2019-10-15T13:43:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.479900", + "Timestamp": "2024-05-16T07:02:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.117800", - "Timestamp": "2019-10-15T13:43:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.241800", + "Timestamp": "2024-05-16T07:02:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "7.616000", - "Timestamp": "2019-10-15T13:42:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.236800", + "Timestamp": "2024-05-16T07:02:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.061800", - "Timestamp": "2019-10-15T13:42:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111800", + "Timestamp": "2024-05-16T07:02:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.381400", - "Timestamp": "2019-10-15T13:42:50.000Z" + "SpotPrice": "4.410400", + "Timestamp": "2024-05-16T07:02:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.381400", - "Timestamp": "2019-10-15T13:42:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.058900", + "Timestamp": "2024-05-16T07:02:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.053900", + "Timestamp": "2024-05-16T07:02:31.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.928900", + "Timestamp": "2024-05-16T07:02:31.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "im4gn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.399400", - "Timestamp": "2019-10-15T13:42:50.000Z" + "SpotPrice": "0.782000", + "Timestamp": "2024-05-16T07:02:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "im4gn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.399400", - "Timestamp": "2019-10-15T13:42:50.000Z" + "SpotPrice": "0.785700", + "Timestamp": "2024-05-16T07:02:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "im4gn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.369400", - "Timestamp": "2019-10-15T13:42:50.000Z" + "SpotPrice": "0.777000", + "Timestamp": "2024-05-16T07:02:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "im4gn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.369400", - "Timestamp": "2019-10-15T13:42:50.000Z" + "SpotPrice": "0.780700", + "Timestamp": "2024-05-16T07:02:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "im4gn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.269400", - "Timestamp": "2019-10-15T13:42:50.000Z" + "SpotPrice": "0.652000", + "Timestamp": "2024-05-16T07:02:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "im4gn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.269400", - "Timestamp": "2019-10-15T13:42:50.000Z" + "SpotPrice": "0.655700", + "Timestamp": "2024-05-16T07:02:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.169800", - "Timestamp": "2019-10-15T13:20:26.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.675700", + "Timestamp": "2024-05-16T07:02:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.209800", - "Timestamp": "2019-10-15T13:20:26.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.670700", + "Timestamp": "2024-05-16T07:02:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.109800", - "Timestamp": "2019-10-15T13:20:26.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.545700", + "Timestamp": "2024-05-16T07:02:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095700", - "Timestamp": "2019-10-15T13:19:37.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.215500", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135700", - "Timestamp": "2019-10-15T13:19:37.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.210500", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035700", - "Timestamp": "2019-10-15T13:19:37.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.085500", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.264700", - "Timestamp": "2019-10-15T13:11:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.622100", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.264700", - "Timestamp": "2019-10-15T13:11:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.617100", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.501100", - "Timestamp": "2019-10-15T13:11:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.492100", + "Timestamp": "2024-05-16T07:02:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.501100", - "Timestamp": "2019-10-15T13:11:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153800", + "Timestamp": "2024-05-16T07:02:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.501100", - "Timestamp": "2019-10-15T13:11:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150100", + "Timestamp": "2024-05-16T07:02:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.247500", - "Timestamp": "2019-10-15T13:11:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093800", + "Timestamp": "2024-05-16T07:02:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.247500", - "Timestamp": "2019-10-15T13:11:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172600", + "Timestamp": "2024-05-16T07:02:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.217500", - "Timestamp": "2019-10-15T13:11:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168600", + "Timestamp": "2024-05-16T07:02:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.217500", - "Timestamp": "2019-10-15T13:11:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-16T07:02:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.117500", - "Timestamp": "2019-10-15T13:11:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101000", + "Timestamp": "2024-05-16T07:02:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.117500", - "Timestamp": "2019-10-15T13:11:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097300", + "Timestamp": "2024-05-16T07:02:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.263100", - "Timestamp": "2019-10-15T13:10:58.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041000", + "Timestamp": "2024-05-16T07:02:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.233100", - "Timestamp": "2019-10-15T13:10:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.916900", + "Timestamp": "2024-05-16T07:02:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.133100", - "Timestamp": "2019-10-15T13:10:58.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.265700", + "Timestamp": "2024-05-16T07:02:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.388200", - "Timestamp": "2019-10-15T13:10:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.260700", + "Timestamp": "2024-05-16T07:02:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "p3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.358200", - "Timestamp": "2019-10-15T13:10:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.135700", + "Timestamp": "2024-05-16T07:02:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.258200", - "Timestamp": "2019-10-15T13:10:54.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125600", + "Timestamp": "2024-05-16T07:02:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.626200", - "Timestamp": "2019-10-15T13:10:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "h1.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.490300", + "Timestamp": "2024-05-16T07:02:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.626200", - "Timestamp": "2019-10-15T13:10:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.974800", + "Timestamp": "2024-05-16T07:02:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.097200", - "Timestamp": "2019-10-15T13:10:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.944800", + "Timestamp": "2024-05-16T07:02:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.137200", - "Timestamp": "2019-10-15T13:10:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.844800", + "Timestamp": "2024-05-16T07:02:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.037200", - "Timestamp": "2019-10-15T13:10:44.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.271100", + "Timestamp": "2024-05-16T07:02:20.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.360300", - "Timestamp": "2019-10-15T13:10:41.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.187500", + "Timestamp": "2024-05-16T07:02:20.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.360300", - "Timestamp": "2019-10-15T13:10:41.000Z" - }, - { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.400300", - "Timestamp": "2019-10-15T13:10:41.000Z" + "SpotPrice": "0.397300", + "Timestamp": "2024-05-16T07:02:19.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.400300", - "Timestamp": "2019-10-15T13:10:41.000Z" + "SpotPrice": "0.392300", + "Timestamp": "2024-05-16T07:02:19.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.300300", - "Timestamp": "2019-10-15T13:10:41.000Z" + "SpotPrice": "0.267300", + "Timestamp": "2024-05-16T07:02:19.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.300300", - "Timestamp": "2019-10-15T13:10:41.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.290800", + "Timestamp": "2024-05-16T07:02:18.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4ad.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.412300", - "Timestamp": "2019-10-15T13:10:38.000Z" + "SpotPrice": "3.290800", + "Timestamp": "2024-05-16T07:02:18.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4ad.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.412300", - "Timestamp": "2019-10-15T13:10:38.000Z" + "SpotPrice": "3.290800", + "Timestamp": "2024-05-16T07:02:18.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.360300", - "Timestamp": "2019-10-15T13:10:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.127100", + "Timestamp": "2024-05-16T07:02:17.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.360300", - "Timestamp": "2019-10-15T13:10:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.555400", + "Timestamp": "2024-05-16T07:02:14.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.400300", - "Timestamp": "2019-10-15T13:10:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.244400", + "Timestamp": "2024-05-16T07:02:14.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.400300", - "Timestamp": "2019-10-15T13:10:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.703900", + "Timestamp": "2024-05-16T07:02:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.300300", - "Timestamp": "2019-10-15T13:10:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.182700", + "Timestamp": "2024-05-16T07:02:11.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.300300", - "Timestamp": "2019-10-15T13:10:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.177700", + "Timestamp": "2024-05-16T07:02:11.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.133200", - "Timestamp": "2019-10-15T13:10:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.052700", + "Timestamp": "2024-05-16T07:02:11.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.133200", - "Timestamp": "2019-10-15T13:10:36.000Z" + "SpotPrice": "5.656100", + "Timestamp": "2024-05-16T07:02:11.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093200", - "Timestamp": "2019-10-15T13:10:36.000Z" + "SpotPrice": "0.440900", + "Timestamp": "2024-05-16T07:02:11.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093200", - "Timestamp": "2019-10-15T13:10:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.435900", + "Timestamp": "2024-05-16T07:02:11.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133200", - "Timestamp": "2019-10-15T13:10:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.310900", + "Timestamp": "2024-05-16T07:02:11.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133200", - "Timestamp": "2019-10-15T13:10:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.930000", + "Timestamp": "2024-05-16T07:02:10.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033200", - "Timestamp": "2019-10-15T13:10:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.925000", + "Timestamp": "2024-05-16T07:02:10.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033200", - "Timestamp": "2019-10-15T13:10:36.000Z" + "SpotPrice": "1.800000", + "Timestamp": "2024-05-16T07:02:10.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.133200", - "Timestamp": "2019-10-15T13:10:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.574300", + "Timestamp": "2024-05-16T07:02:10.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.133200", - "Timestamp": "2019-10-15T13:10:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.227800", + "Timestamp": "2024-05-16T07:02:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "a1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.199000", - "Timestamp": "2019-10-15T13:10:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.797700", + "Timestamp": "2024-05-16T07:02:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "a1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.199000", - "Timestamp": "2019-10-15T13:10:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.792700", + "Timestamp": "2024-05-16T07:02:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "a1.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.169000", - "Timestamp": "2019-10-15T13:10:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.667700", + "Timestamp": "2024-05-16T07:02:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "a1.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.169000", - "Timestamp": "2019-10-15T13:10:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.562000", + "Timestamp": "2024-05-16T07:02:06.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "a1.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.069000", - "Timestamp": "2019-10-15T13:10:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.557000", + "Timestamp": "2024-05-16T07:02:06.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "a1.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.069000", - "Timestamp": "2019-10-15T13:10:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.432000", + "Timestamp": "2024-05-16T07:02:06.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.350400", - "Timestamp": "2019-10-15T13:09:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.218200", + "Timestamp": "2024-05-16T07:02:05.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.350400", - "Timestamp": "2019-10-15T13:09:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.213200", + "Timestamp": "2024-05-16T07:02:05.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.350400", - "Timestamp": "2019-10-15T13:09:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088200", + "Timestamp": "2024-05-16T07:02:05.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.115000", - "Timestamp": "2019-10-15T13:09:52.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.474500", + "Timestamp": "2024-05-16T07:02:04.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.115000", - "Timestamp": "2019-10-15T13:09:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.616700", + "Timestamp": "2024-05-16T07:02:04.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.115000", - "Timestamp": "2019-10-15T13:09:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.611700", + "Timestamp": "2024-05-16T07:02:04.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.008400", - "Timestamp": "2019-10-15T13:09:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.486700", + "Timestamp": "2024-05-16T07:02:04.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.008400", - "Timestamp": "2019-10-15T13:09:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.463800", + "Timestamp": "2024-05-16T07:02:03.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.008400", - "Timestamp": "2019-10-15T13:09:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.553300", + "Timestamp": "2024-05-16T07:02:03.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.978400", - "Timestamp": "2019-10-15T13:09:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T07:02:00.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.978400", - "Timestamp": "2019-10-15T13:09:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176000", + "Timestamp": "2024-05-16T07:01:59.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.978400", - "Timestamp": "2019-10-15T13:09:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172000", + "Timestamp": "2024-05-16T07:01:59.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.878400", - "Timestamp": "2019-10-15T13:09:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116000", + "Timestamp": "2024-05-16T07:01:59.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.878400", - "Timestamp": "2019-10-15T13:09:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.899500", + "Timestamp": "2024-05-16T07:01:59.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.878400", - "Timestamp": "2019-10-15T13:09:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123000", + "Timestamp": "2024-05-16T07:01:56.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.093200", - "Timestamp": "2019-10-15T13:09:47.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163000", + "Timestamp": "2024-05-16T07:01:56.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.093200", - "Timestamp": "2019-10-15T13:09:47.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063000", + "Timestamp": "2024-05-16T07:01:56.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.133200", - "Timestamp": "2019-10-15T13:09:47.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.659700", + "Timestamp": "2024-05-16T07:01:56.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.133200", - "Timestamp": "2019-10-15T13:09:47.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.654700", + "Timestamp": "2024-05-16T07:01:56.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.033200", - "Timestamp": "2019-10-15T13:09:47.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.529700", + "Timestamp": "2024-05-16T07:01:56.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.033200", - "Timestamp": "2019-10-15T13:09:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.390600", + "Timestamp": "2024-05-16T07:01:55.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.422700", - "Timestamp": "2019-10-15T13:09:47.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.907200", + "Timestamp": "2024-05-16T07:01:54.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.422700", - "Timestamp": "2019-10-15T13:09:47.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.296000", + "Timestamp": "2024-05-16T07:01:54.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1e.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.462700", - "Timestamp": "2019-10-15T13:09:47.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.291000", + "Timestamp": "2024-05-16T07:01:54.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1e.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.462700", - "Timestamp": "2019-10-15T13:09:47.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.166000", + "Timestamp": "2024-05-16T07:01:54.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.362700", - "Timestamp": "2019-10-15T13:09:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153500", + "Timestamp": "2024-05-16T07:01:53.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.362700", - "Timestamp": "2019-10-15T13:09:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149800", + "Timestamp": "2024-05-16T07:01:53.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.008200", - "Timestamp": "2019-10-15T13:09:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093500", + "Timestamp": "2024-05-16T07:01:53.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.008200", - "Timestamp": "2019-10-15T13:09:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.312900", + "Timestamp": "2024-05-16T07:01:50.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.978200", - "Timestamp": "2019-10-15T13:09:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.307900", + "Timestamp": "2024-05-16T07:01:50.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.978200", - "Timestamp": "2019-10-15T13:09:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.182900", + "Timestamp": "2024-05-16T07:01:50.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.878200", - "Timestamp": "2019-10-15T13:09:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.912000", + "Timestamp": "2024-05-16T07:01:49.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.878200", - "Timestamp": "2019-10-15T13:09:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.585400", + "Timestamp": "2024-05-16T07:01:48.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.412300", - "Timestamp": "2019-10-15T13:09:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.580400", + "Timestamp": "2024-05-16T07:01:48.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.412300", - "Timestamp": "2019-10-15T13:09:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.455400", + "Timestamp": "2024-05-16T07:01:48.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.546700", - "Timestamp": "2019-10-15T13:09:16.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.370600", + "Timestamp": "2024-05-16T07:01:45.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.546700", - "Timestamp": "2019-10-15T13:09:16.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.365600", + "Timestamp": "2024-05-16T07:01:45.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.186800", - "Timestamp": "2019-10-15T13:08:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.240600", + "Timestamp": "2024-05-16T07:01:45.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.186800", - "Timestamp": "2019-10-15T13:08:46.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "trn1n.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.795400", + "Timestamp": "2024-05-16T07:01:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.301000", - "Timestamp": "2019-10-15T13:08:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "trn1n.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.765400", + "Timestamp": "2024-05-16T07:01:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.301000", - "Timestamp": "2019-10-15T13:08:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "trn1n.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.665400", + "Timestamp": "2024-05-16T07:01:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.271000", - "Timestamp": "2019-10-15T13:08:45.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135600", + "Timestamp": "2024-05-16T07:01:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.271000", - "Timestamp": "2019-10-15T13:08:45.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131600", + "Timestamp": "2024-05-16T07:01:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.171000", - "Timestamp": "2019-10-15T13:08:45.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075600", + "Timestamp": "2024-05-16T07:01:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.171000", - "Timestamp": "2019-10-15T13:08:45.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.059500", + "Timestamp": "2024-05-16T07:01:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.086200", - "Timestamp": "2019-10-15T13:08:44.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.054500", + "Timestamp": "2024-05-16T07:01:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.086200", - "Timestamp": "2019-10-15T13:08:44.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.929500", + "Timestamp": "2024-05-16T07:01:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.086200", - "Timestamp": "2019-10-15T13:08:44.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.632100", + "Timestamp": "2024-05-16T07:01:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3en.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "8.246400", - "Timestamp": "2019-10-15T13:08:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.654400", + "Timestamp": "2024-05-16T07:01:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3en.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "8.246400", - "Timestamp": "2019-10-15T13:08:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.649400", + "Timestamp": "2024-05-16T07:01:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.449200", - "Timestamp": "2019-10-15T13:08:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.524400", + "Timestamp": "2024-05-16T07:01:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.449200", - "Timestamp": "2019-10-15T13:08:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.253800", + "Timestamp": "2024-05-16T07:01:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.449200", - "Timestamp": "2019-10-15T13:08:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.248800", + "Timestamp": "2024-05-16T07:01:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.419200", - "Timestamp": "2019-10-15T13:08:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.123800", + "Timestamp": "2024-05-16T07:01:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.419200", - "Timestamp": "2019-10-15T13:08:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.822700", + "Timestamp": "2024-05-16T07:01:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.419200", - "Timestamp": "2019-10-15T13:08:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.133100", + "Timestamp": "2024-05-16T07:01:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.319200", - "Timestamp": "2019-10-15T13:08:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.128100", + "Timestamp": "2024-05-16T07:01:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.319200", - "Timestamp": "2019-10-15T13:08:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.003100", + "Timestamp": "2024-05-16T07:01:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.319200", - "Timestamp": "2019-10-15T13:08:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.606500", + "Timestamp": "2024-05-16T07:01:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.687200", - "Timestamp": "2019-10-15T13:08:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.601500", + "Timestamp": "2024-05-16T07:01:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.687200", - "Timestamp": "2019-10-15T13:08:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.476500", + "Timestamp": "2024-05-16T07:01:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.687200", - "Timestamp": "2019-10-15T13:08:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.351400", + "Timestamp": "2024-05-16T07:01:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.580800", - "Timestamp": "2019-10-15T13:07:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.346400", + "Timestamp": "2024-05-16T07:01:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.580800", - "Timestamp": "2019-10-15T13:07:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.221400", + "Timestamp": "2024-05-16T07:01:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.550800", - "Timestamp": "2019-10-15T13:07:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.617100", + "Timestamp": "2024-05-16T07:01:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.550800", - "Timestamp": "2019-10-15T13:07:49.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.947700", + "Timestamp": "2024-05-16T07:01:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.450800", - "Timestamp": "2019-10-15T13:07:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.612100", + "Timestamp": "2024-05-16T07:01:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.450800", - "Timestamp": "2019-10-15T13:07:49.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.942700", + "Timestamp": "2024-05-16T07:01:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126900", - "Timestamp": "2019-10-15T13:07:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.487100", + "Timestamp": "2024-05-16T07:01:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126900", - "Timestamp": "2019-10-15T13:07:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.817700", + "Timestamp": "2024-05-16T07:01:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.223500", - "Timestamp": "2019-10-15T13:07:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.347200", + "Timestamp": "2024-05-16T07:01:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.223500", - "Timestamp": "2019-10-15T13:07:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.342200", + "Timestamp": "2024-05-16T07:01:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.257200", - "Timestamp": "2019-10-15T13:07:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.217200", + "Timestamp": "2024-05-16T07:01:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.257200", - "Timestamp": "2019-10-15T13:07:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.443000", + "Timestamp": "2024-05-16T07:01:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.257200", - "Timestamp": "2019-10-15T13:07:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.438000", + "Timestamp": "2024-05-16T07:01:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094900", - "Timestamp": "2019-10-15T13:07:26.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.313000", + "Timestamp": "2024-05-16T07:01:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094900", - "Timestamp": "2019-10-15T13:07:26.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.773800", + "Timestamp": "2024-05-16T07:01:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134900", - "Timestamp": "2019-10-15T13:07:26.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.826100", + "Timestamp": "2024-05-16T07:01:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134900", - "Timestamp": "2019-10-15T13:07:26.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.821100", + "Timestamp": "2024-05-16T07:01:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034900", - "Timestamp": "2019-10-15T13:07:26.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.696100", + "Timestamp": "2024-05-16T07:01:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034900", - "Timestamp": "2019-10-15T13:07:26.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.451500", + "Timestamp": "2024-05-16T07:01:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.617500", - "Timestamp": "2019-10-15T13:07:15.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.446500", + "Timestamp": "2024-05-16T07:01:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.617500", - "Timestamp": "2019-10-15T13:07:15.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.321500", + "Timestamp": "2024-05-16T07:01:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.587500", - "Timestamp": "2019-10-15T13:07:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.212100", + "Timestamp": "2024-05-16T07:01:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.587500", - "Timestamp": "2019-10-15T13:07:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.207100", + "Timestamp": "2024-05-16T07:01:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.487500", - "Timestamp": "2019-10-15T13:07:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.082100", + "Timestamp": "2024-05-16T07:01:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.487500", - "Timestamp": "2019-10-15T13:07:15.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.277500", + "Timestamp": "2024-05-16T07:01:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.133200", - "Timestamp": "2019-10-15T13:07:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.645500", + "Timestamp": "2024-05-16T07:01:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.133200", - "Timestamp": "2019-10-15T13:07:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.272500", + "Timestamp": "2024-05-16T07:01:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.133200", - "Timestamp": "2019-10-15T13:07:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.640500", + "Timestamp": "2024-05-16T07:01:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.173200", - "Timestamp": "2019-10-15T13:07:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.147500", + "Timestamp": "2024-05-16T07:01:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.173200", - "Timestamp": "2019-10-15T13:07:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.515500", + "Timestamp": "2024-05-16T07:01:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.173200", - "Timestamp": "2019-10-15T13:07:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.521200", + "Timestamp": "2024-05-16T07:01:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.073200", - "Timestamp": "2019-10-15T13:07:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.491200", + "Timestamp": "2024-05-16T07:01:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.073200", - "Timestamp": "2019-10-15T13:07:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.391200", + "Timestamp": "2024-05-16T07:01:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.073200", - "Timestamp": "2019-10-15T13:07:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.943800", + "Timestamp": "2024-05-16T07:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.320200", - "Timestamp": "2019-10-15T13:07:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.913800", + "Timestamp": "2024-05-16T07:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.638000", - "Timestamp": "2019-10-15T13:07:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.813800", + "Timestamp": "2024-05-16T07:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.320200", - "Timestamp": "2019-10-15T13:07:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.389700", + "Timestamp": "2024-05-16T07:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "8.747200", - "Timestamp": "2019-10-15T13:06:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.384700", + "Timestamp": "2024-05-16T07:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.402400", - "Timestamp": "2019-10-15T13:06:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.259700", + "Timestamp": "2024-05-16T07:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.038000", - "Timestamp": "2019-10-15T13:06:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.986100", + "Timestamp": "2024-05-16T07:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.402400", - "Timestamp": "2019-10-15T13:06:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.399400", + "Timestamp": "2024-05-16T07:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.372400", - "Timestamp": "2019-10-15T13:06:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.394400", + "Timestamp": "2024-05-16T07:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.008000", - "Timestamp": "2019-10-15T13:06:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.269400", + "Timestamp": "2024-05-16T07:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.372400", - "Timestamp": "2019-10-15T13:06:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270300", + "Timestamp": "2024-05-16T07:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.272400", - "Timestamp": "2019-10-15T13:06:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265300", + "Timestamp": "2024-05-16T07:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.908000", - "Timestamp": "2019-10-15T13:06:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140300", + "Timestamp": "2024-05-16T07:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.272400", - "Timestamp": "2019-10-15T13:06:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.487900", + "Timestamp": "2024-05-16T07:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.045200", - "Timestamp": "2019-10-15T13:06:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.457900", + "Timestamp": "2024-05-16T07:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.045200", - "Timestamp": "2019-10-15T13:06:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.357900", + "Timestamp": "2024-05-16T07:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.045200", - "Timestamp": "2019-10-15T13:06:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.896300", + "Timestamp": "2024-05-16T07:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.015200", - "Timestamp": "2019-10-15T13:06:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.718500", + "Timestamp": "2024-05-16T07:01:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.015200", - "Timestamp": "2019-10-15T13:06:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.713500", + "Timestamp": "2024-05-16T07:01:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.015200", - "Timestamp": "2019-10-15T13:06:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.588500", + "Timestamp": "2024-05-16T07:01:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.915200", - "Timestamp": "2019-10-15T13:06:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.263100", + "Timestamp": "2024-05-16T07:01:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.915200", - "Timestamp": "2019-10-15T13:06:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.438000", + "Timestamp": "2024-05-16T07:01:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.915200", - "Timestamp": "2019-10-15T13:06:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.433000", + "Timestamp": "2024-05-16T07:01:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.064100", - "Timestamp": "2019-10-15T13:06:20.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.308000", + "Timestamp": "2024-05-16T07:01:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.064100", - "Timestamp": "2019-10-15T13:06:20.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122100", + "Timestamp": "2024-05-16T07:01:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.064100", - "Timestamp": "2019-10-15T13:06:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124200", + "Timestamp": "2024-05-16T07:01:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.104100", - "Timestamp": "2019-10-15T13:06:20.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118400", + "Timestamp": "2024-05-16T07:01:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.104100", - "Timestamp": "2019-10-15T13:06:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120500", + "Timestamp": "2024-05-16T07:01:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t3.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.104100", - "Timestamp": "2019-10-15T13:06:20.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062100", + "Timestamp": "2024-05-16T07:01:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.004100", - "Timestamp": "2019-10-15T13:06:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064200", + "Timestamp": "2024-05-16T07:01:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.004100", - "Timestamp": "2019-10-15T13:06:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149100", + "Timestamp": "2024-05-16T07:01:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.004100", - "Timestamp": "2019-10-15T13:06:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145100", + "Timestamp": "2024-05-16T07:01:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.123200", - "Timestamp": "2019-10-15T13:06:18.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089100", + "Timestamp": "2024-05-16T07:01:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.123200", - "Timestamp": "2019-10-15T13:06:18.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.948000", + "Timestamp": "2024-05-16T07:01:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.123200", - "Timestamp": "2019-10-15T13:06:18.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.010100", + "Timestamp": "2024-05-16T07:01:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.196200", - "Timestamp": "2019-10-15T13:06:18.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.943000", + "Timestamp": "2024-05-16T07:01:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.514000", - "Timestamp": "2019-10-15T13:06:18.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.005100", + "Timestamp": "2024-05-16T07:01:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.196200", - "Timestamp": "2019-10-15T13:06:18.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.818000", + "Timestamp": "2024-05-16T07:01:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "z1d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.236200", - "Timestamp": "2019-10-15T13:06:18.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.880100", + "Timestamp": "2024-05-16T07:01:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "z1d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.554000", - "Timestamp": "2019-10-15T13:06:18.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.227900", + "Timestamp": "2024-05-16T07:01:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "z1d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.236200", - "Timestamp": "2019-10-15T13:06:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.956400", + "Timestamp": "2024-05-16T07:01:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.136200", - "Timestamp": "2019-10-15T13:06:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.951400", + "Timestamp": "2024-05-16T07:01:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.454000", - "Timestamp": "2019-10-15T13:06:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.826400", + "Timestamp": "2024-05-16T07:01:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.136200", - "Timestamp": "2019-10-15T13:06:18.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.560100", + "Timestamp": "2024-05-16T07:01:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "5.933200", - "Timestamp": "2019-10-15T13:06:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.830700", + "Timestamp": "2024-05-16T07:01:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "5.903200", - "Timestamp": "2019-10-15T13:06:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.825700", + "Timestamp": "2024-05-16T07:01:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "5.803200", - "Timestamp": "2019-10-15T13:06:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.700700", + "Timestamp": "2024-05-16T07:01:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.013300", - "Timestamp": "2019-10-15T13:06:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.356400", + "Timestamp": "2024-05-16T07:01:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.013300", - "Timestamp": "2019-10-15T13:06:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.386700", + "Timestamp": "2024-05-16T07:01:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t3.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.013300", - "Timestamp": "2019-10-15T13:06:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.381700", + "Timestamp": "2024-05-16T07:01:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.538600", - "Timestamp": "2019-10-15T13:05:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.256700", + "Timestamp": "2024-05-16T07:01:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.492000", - "Timestamp": "2019-10-15T13:05:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.371900", + "Timestamp": "2024-05-16T07:01:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.538600", - "Timestamp": "2019-10-15T13:05:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.586100", + "Timestamp": "2024-05-16T07:01:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.508600", - "Timestamp": "2019-10-15T13:05:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T07:01:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.462000", - "Timestamp": "2019-10-15T13:05:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-16T07:01:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.508600", - "Timestamp": "2019-10-15T13:05:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044900", + "Timestamp": "2024-05-16T07:01:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.408600", - "Timestamp": "2019-10-15T13:05:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219200", + "Timestamp": "2024-05-16T07:01:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.362000", - "Timestamp": "2019-10-15T13:05:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.710000", + "Timestamp": "2024-05-16T07:01:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.408600", - "Timestamp": "2019-10-15T13:05:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.705000", + "Timestamp": "2024-05-16T07:01:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.059200", - "Timestamp": "2019-10-15T13:05:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.580000", + "Timestamp": "2024-05-16T07:01:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.059200", - "Timestamp": "2019-10-15T13:05:45.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.560500", + "Timestamp": "2024-05-16T07:01:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.059200", - "Timestamp": "2019-10-15T13:05:45.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.555500", + "Timestamp": "2024-05-16T07:01:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.960600", - "Timestamp": "2019-10-15T13:05:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.430500", + "Timestamp": "2024-05-16T07:01:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.914000", - "Timestamp": "2019-10-15T13:05:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.008600", + "Timestamp": "2024-05-16T07:01:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.960600", - "Timestamp": "2019-10-15T13:05:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.978600", + "Timestamp": "2024-05-16T07:01:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.301000", - "Timestamp": "2019-10-15T13:05:34.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.878600", + "Timestamp": "2024-05-16T07:01:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.301000", - "Timestamp": "2019-10-15T13:05:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121700", + "Timestamp": "2024-05-16T07:01:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.301000", - "Timestamp": "2019-10-15T13:05:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118000", + "Timestamp": "2024-05-16T07:01:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.271000", - "Timestamp": "2019-10-15T13:05:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061700", + "Timestamp": "2024-05-16T07:01:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.271000", - "Timestamp": "2019-10-15T13:05:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113800", + "Timestamp": "2024-05-16T07:01:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.271000", - "Timestamp": "2019-10-15T13:05:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-16T07:01:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.171000", - "Timestamp": "2019-10-15T13:05:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053800", + "Timestamp": "2024-05-16T07:01:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.171000", - "Timestamp": "2019-10-15T13:05:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.499600", + "Timestamp": "2024-05-16T07:01:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.171000", - "Timestamp": "2019-10-15T13:05:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.494600", + "Timestamp": "2024-05-16T07:01:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.587000", - "Timestamp": "2019-10-15T13:05:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.369600", + "Timestamp": "2024-05-16T07:01:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.587000", - "Timestamp": "2019-10-15T13:05:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.294900", + "Timestamp": "2024-05-16T07:01:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.587000", - "Timestamp": "2019-10-15T13:05:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.290100", + "Timestamp": "2024-05-16T07:01:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.245200", - "Timestamp": "2019-10-15T13:05:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.285100", + "Timestamp": "2024-05-16T07:01:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.245200", - "Timestamp": "2019-10-15T13:05:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.160100", + "Timestamp": "2024-05-16T07:01:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.245200", - "Timestamp": "2019-10-15T13:05:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.849700", + "Timestamp": "2024-05-16T07:01:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.215200", - "Timestamp": "2019-10-15T13:05:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.724300", + "Timestamp": "2024-05-16T07:01:22.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r4.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.215200", - "Timestamp": "2019-10-15T13:05:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278100", + "Timestamp": "2024-05-16T07:01:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.215200", - "Timestamp": "2019-10-15T13:05:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273100", + "Timestamp": "2024-05-16T07:01:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.115200", - "Timestamp": "2019-10-15T13:05:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148100", + "Timestamp": "2024-05-16T07:01:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.115200", - "Timestamp": "2019-10-15T13:05:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.868700", + "Timestamp": "2024-05-16T07:01:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.115200", - "Timestamp": "2019-10-15T13:05:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.863700", + "Timestamp": "2024-05-16T07:01:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.028700", - "Timestamp": "2019-10-15T13:05:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.738700", + "Timestamp": "2024-05-16T07:01:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.028700", - "Timestamp": "2019-10-15T13:05:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.065000", + "Timestamp": "2024-05-16T07:01:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.422700", - "Timestamp": "2019-10-15T13:05:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.253600", + "Timestamp": "2024-05-16T07:01:18.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.422700", - "Timestamp": "2019-10-15T13:05:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.248600", + "Timestamp": "2024-05-16T07:01:18.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.392700", - "Timestamp": "2019-10-15T13:05:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.123600", + "Timestamp": "2024-05-16T07:01:18.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.392700", - "Timestamp": "2019-10-15T13:05:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.804200", + "Timestamp": "2024-05-16T07:01:16.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.292700", - "Timestamp": "2019-10-15T13:05:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.464900", + "Timestamp": "2024-05-16T07:01:10.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.292700", - "Timestamp": "2019-10-15T13:05:06.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.138900", + "Timestamp": "2024-05-16T06:55:17.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.640400", - "Timestamp": "2019-10-15T13:04:32.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.691000", + "Timestamp": "2024-05-16T06:47:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.276000", - "Timestamp": "2019-10-15T13:04:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.909000", + "Timestamp": "2024-05-16T06:47:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.640400", - "Timestamp": "2019-10-15T13:04:32.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.686000", + "Timestamp": "2024-05-16T06:47:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.396100", - "Timestamp": "2019-10-15T13:04:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.904000", + "Timestamp": "2024-05-16T06:47:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.396100", - "Timestamp": "2019-10-15T13:04:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.561000", + "Timestamp": "2024-05-16T06:47:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.366100", - "Timestamp": "2019-10-15T13:04:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.779000", + "Timestamp": "2024-05-16T06:47:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.366100", - "Timestamp": "2019-10-15T13:04:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.550700", + "Timestamp": "2024-05-16T06:47:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.266100", - "Timestamp": "2019-10-15T13:04:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.545700", + "Timestamp": "2024-05-16T06:47:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.266100", - "Timestamp": "2019-10-15T13:04:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.420700", + "Timestamp": "2024-05-16T06:47:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.806600", - "Timestamp": "2019-10-15T13:04:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.258300", + "Timestamp": "2024-05-16T06:47:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.806600", - "Timestamp": "2019-10-15T13:04:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.253300", + "Timestamp": "2024-05-16T06:47:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.776600", - "Timestamp": "2019-10-15T13:04:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128300", + "Timestamp": "2024-05-16T06:47:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.776600", - "Timestamp": "2019-10-15T13:04:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.857200", + "Timestamp": "2024-05-16T06:47:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.676600", - "Timestamp": "2019-10-15T13:04:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.235400", + "Timestamp": "2024-05-16T06:47:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.676600", - "Timestamp": "2019-10-15T13:04:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.230400", + "Timestamp": "2024-05-16T06:47:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.002100", - "Timestamp": "2019-10-15T13:03:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.105400", + "Timestamp": "2024-05-16T06:47:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.002100", - "Timestamp": "2019-10-15T13:03:57.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.692200", + "Timestamp": "2024-05-16T06:47:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.002100", - "Timestamp": "2019-10-15T13:03:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.159800", + "Timestamp": "2024-05-16T06:47:17.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.092600", - "Timestamp": "2019-10-15T13:03:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.335900", + "Timestamp": "2024-05-16T06:47:11.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.092600", - "Timestamp": "2019-10-15T13:03:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.330900", + "Timestamp": "2024-05-16T06:47:11.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.092600", - "Timestamp": "2019-10-15T13:03:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.205900", + "Timestamp": "2024-05-16T06:47:11.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t3.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.068800", - "Timestamp": "2019-10-15T12:54:41.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.575500", + "Timestamp": "2024-05-16T06:47:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t3.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.108800", - "Timestamp": "2019-10-15T12:54:41.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.570500", + "Timestamp": "2024-05-16T06:47:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.008800", - "Timestamp": "2019-10-15T12:54:41.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.445500", + "Timestamp": "2024-05-16T06:47:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.069600", - "Timestamp": "2019-10-15T12:44:12.000Z" - }, - { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.069600", - "Timestamp": "2019-10-15T12:44:12.000Z" - }, - { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m3.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.109600", - "Timestamp": "2019-10-15T12:44:12.000Z" + "SpotPrice": "0.672900", + "Timestamp": "2024-05-16T06:47:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.109600", - "Timestamp": "2019-10-15T12:44:12.000Z" + "SpotPrice": "0.667900", + "Timestamp": "2024-05-16T06:47:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.009600", - "Timestamp": "2019-10-15T12:44:12.000Z" + "SpotPrice": "0.542900", + "Timestamp": "2024-05-16T06:47:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.009600", - "Timestamp": "2019-10-15T12:44:12.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.134900", + "Timestamp": "2024-05-16T06:47:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.002100", - "Timestamp": "2019-10-15T12:43:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.452700", + "Timestamp": "2024-05-16T06:47:06.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.002100", - "Timestamp": "2019-10-15T12:43:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.447700", + "Timestamp": "2024-05-16T06:47:06.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.002100", - "Timestamp": "2019-10-15T12:43:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.322700", + "Timestamp": "2024-05-16T06:47:06.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.059600", - "Timestamp": "2019-10-15T12:43:27.000Z" + "SpotPrice": "2.763100", + "Timestamp": "2024-05-16T06:47:06.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.059600", - "Timestamp": "2019-10-15T12:43:27.000Z" + "SpotPrice": "1.794600", + "Timestamp": "2024-05-16T06:47:03.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m3.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.069600", - "Timestamp": "2019-10-15T12:43:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.774600", + "Timestamp": "2024-05-16T06:47:03.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m3.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.069600", - "Timestamp": "2019-10-15T12:43:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.194300", + "Timestamp": "2024-05-16T06:47:02.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m3.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.109600", - "Timestamp": "2019-10-15T12:43:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190600", + "Timestamp": "2024-05-16T06:47:02.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m3.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.109600", - "Timestamp": "2019-10-15T12:43:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T06:47:02.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m3.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.009600", - "Timestamp": "2019-10-15T12:43:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.416100", + "Timestamp": "2024-05-16T06:47:02.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m3.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.009600", - "Timestamp": "2019-10-15T12:43:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.411100", + "Timestamp": "2024-05-16T06:47:02.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.396100", - "Timestamp": "2019-10-15T12:42:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.286100", + "Timestamp": "2024-05-16T06:47:02.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.396100", - "Timestamp": "2019-10-15T12:42:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.333900", + "Timestamp": "2024-05-16T06:47:01.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.366100", - "Timestamp": "2019-10-15T12:42:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.303900", + "Timestamp": "2024-05-16T06:47:01.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.366100", - "Timestamp": "2019-10-15T12:42:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.202900", + "Timestamp": "2024-05-16T06:47:01.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.266100", - "Timestamp": "2019-10-15T12:42:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "trn1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.423400", + "Timestamp": "2024-05-16T06:46:57.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.266100", - "Timestamp": "2019-10-15T12:42:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "trn1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.393400", + "Timestamp": "2024-05-16T06:46:57.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "a1.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.068600", - "Timestamp": "2019-10-15T12:42:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "trn1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.293400", + "Timestamp": "2024-05-16T06:46:57.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "a1.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.068600", - "Timestamp": "2019-10-15T12:42:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.517100", + "Timestamp": "2024-05-16T06:46:56.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "a1.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.108600", - "Timestamp": "2019-10-15T12:42:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.512100", + "Timestamp": "2024-05-16T06:46:56.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "a1.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.108600", - "Timestamp": "2019-10-15T12:42:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.387100", + "Timestamp": "2024-05-16T06:46:56.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "a1.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.008600", - "Timestamp": "2019-10-15T12:42:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.922800", + "Timestamp": "2024-05-16T06:46:54.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "a1.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.008600", - "Timestamp": "2019-10-15T12:42:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.456700", + "Timestamp": "2024-05-16T06:46:54.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.706500", - "Timestamp": "2019-10-15T12:42:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.477600", + "Timestamp": "2024-05-16T06:46:52.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.706500", - "Timestamp": "2019-10-15T12:42:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.245000", + "Timestamp": "2024-05-16T06:46:50.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.892500", - "Timestamp": "2019-10-15T12:42:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.826500", + "Timestamp": "2024-05-16T06:46:50.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.892500", - "Timestamp": "2019-10-15T12:42:15.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113400", + "Timestamp": "2024-05-16T06:46:49.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.862500", - "Timestamp": "2019-10-15T12:42:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.589800", + "Timestamp": "2024-05-16T06:46:49.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.862500", - "Timestamp": "2019-10-15T12:42:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.308600", + "Timestamp": "2024-05-16T06:46:45.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.762500", - "Timestamp": "2019-10-15T12:42:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.303600", + "Timestamp": "2024-05-16T06:46:45.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.762500", - "Timestamp": "2019-10-15T12:42:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.178600", + "Timestamp": "2024-05-16T06:46:45.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m3.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.059600", - "Timestamp": "2019-10-15T12:42:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.725300", + "Timestamp": "2024-05-16T06:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m3.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.059600", - "Timestamp": "2019-10-15T12:42:10.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.689000", + "Timestamp": "2024-05-16T06:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.688900", - "Timestamp": "2019-10-15T12:42:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.720300", + "Timestamp": "2024-05-16T06:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.688900", - "Timestamp": "2019-10-15T12:42:10.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.684000", + "Timestamp": "2024-05-16T06:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.688900", - "Timestamp": "2019-10-15T12:42:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.595300", + "Timestamp": "2024-05-16T06:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.658900", - "Timestamp": "2019-10-15T12:42:10.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.559000", + "Timestamp": "2024-05-16T06:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.658900", - "Timestamp": "2019-10-15T12:42:10.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.488400", + "Timestamp": "2024-05-16T06:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.658900", - "Timestamp": "2019-10-15T12:42:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.728100", + "Timestamp": "2024-05-16T06:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.558900", - "Timestamp": "2019-10-15T12:42:10.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.483400", + "Timestamp": "2024-05-16T06:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.558900", - "Timestamp": "2019-10-15T12:42:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.723100", + "Timestamp": "2024-05-16T06:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.558900", - "Timestamp": "2019-10-15T12:42:10.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.358400", + "Timestamp": "2024-05-16T06:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.030900", - "Timestamp": "2019-10-15T12:42:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.598100", + "Timestamp": "2024-05-16T06:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.030900", - "Timestamp": "2019-10-15T12:42:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.997400", + "Timestamp": "2024-05-16T06:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.030900", - "Timestamp": "2019-10-15T12:42:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.992400", + "Timestamp": "2024-05-16T06:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.125300", - "Timestamp": "2019-10-15T12:41:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.867400", + "Timestamp": "2024-05-16T06:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.125300", - "Timestamp": "2019-10-15T12:41:49.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.457000", + "Timestamp": "2024-05-16T06:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.125300", - "Timestamp": "2019-10-15T12:41:49.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.452000", + "Timestamp": "2024-05-16T06:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.093600", - "Timestamp": "2019-10-15T12:38:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.327000", + "Timestamp": "2024-05-16T06:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.133600", - "Timestamp": "2019-10-15T12:38:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.364900", + "Timestamp": "2024-05-16T06:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.033600", - "Timestamp": "2019-10-15T12:38:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.359900", + "Timestamp": "2024-05-16T06:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.124500", - "Timestamp": "2019-10-15T12:04:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.234900", + "Timestamp": "2024-05-16T06:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.164500", - "Timestamp": "2019-10-15T12:04:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.874900", + "Timestamp": "2024-05-16T06:46:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.064500", - "Timestamp": "2019-10-15T12:04:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.963200", + "Timestamp": "2024-05-16T06:46:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.132400", - "Timestamp": "2019-10-15T11:47:34.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.958200", + "Timestamp": "2024-05-16T06:46:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.172400", - "Timestamp": "2019-10-15T11:47:34.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.833200", + "Timestamp": "2024-05-16T06:46:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.072400", - "Timestamp": "2019-10-15T11:47:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.527400", + "Timestamp": "2024-05-16T06:46:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "z1d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.128100", - "Timestamp": "2019-10-15T11:43:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.522400", + "Timestamp": "2024-05-16T06:46:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "z1d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.287000", - "Timestamp": "2019-10-15T11:43:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.397400", + "Timestamp": "2024-05-16T06:46:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "z1d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.128100", - "Timestamp": "2019-10-15T11:43:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.890400", + "Timestamp": "2024-05-16T06:46:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "z1d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.168100", - "Timestamp": "2019-10-15T11:43:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.885400", + "Timestamp": "2024-05-16T06:46:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "z1d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.327000", - "Timestamp": "2019-10-15T11:43:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.760400", + "Timestamp": "2024-05-16T06:46:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "z1d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.168100", - "Timestamp": "2019-10-15T11:43:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.254600", + "Timestamp": "2024-05-16T06:46:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "z1d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.068100", - "Timestamp": "2019-10-15T11:43:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074300", + "Timestamp": "2024-05-16T06:46:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "z1d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.227000", - "Timestamp": "2019-10-15T11:43:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070600", + "Timestamp": "2024-05-16T06:46:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "z1d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.068100", - "Timestamp": "2019-10-15T11:43:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014300", + "Timestamp": "2024-05-16T06:46:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.096600", - "Timestamp": "2019-10-15T11:43:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.187600", + "Timestamp": "2024-05-16T06:46:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.096600", - "Timestamp": "2019-10-15T11:43:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183600", + "Timestamp": "2024-05-16T06:46:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.136600", - "Timestamp": "2019-10-15T11:43:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127600", + "Timestamp": "2024-05-16T06:46:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.136600", - "Timestamp": "2019-10-15T11:43:46.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.096800", + "Timestamp": "2024-05-16T06:46:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.036600", - "Timestamp": "2019-10-15T11:43:46.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.979300", + "Timestamp": "2024-05-16T06:46:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.036600", - "Timestamp": "2019-10-15T11:43:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.243800", + "Timestamp": "2024-05-16T06:46:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.162900", - "Timestamp": "2019-10-15T11:43:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.482900", + "Timestamp": "2024-05-16T06:46:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.162900", - "Timestamp": "2019-10-15T11:43:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.477900", + "Timestamp": "2024-05-16T06:46:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.162900", - "Timestamp": "2019-10-15T11:43:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.352900", + "Timestamp": "2024-05-16T06:46:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "z1d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.160100", - "Timestamp": "2019-10-15T11:43:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.392300", + "Timestamp": "2024-05-16T06:46:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "z1d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.319000", - "Timestamp": "2019-10-15T11:43:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.387300", + "Timestamp": "2024-05-16T06:46:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "z1d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.160100", - "Timestamp": "2019-10-15T11:43:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.262300", + "Timestamp": "2024-05-16T06:46:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.128600", - "Timestamp": "2019-10-15T11:43:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156700", + "Timestamp": "2024-05-16T06:46:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.128600", - "Timestamp": "2019-10-15T11:43:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153000", + "Timestamp": "2024-05-16T06:46:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.636900", - "Timestamp": "2019-10-15T11:43:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096700", + "Timestamp": "2024-05-16T06:46:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.636900", - "Timestamp": "2019-10-15T11:43:07.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.976200", + "Timestamp": "2024-05-16T06:46:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.606900", - "Timestamp": "2019-10-15T11:43:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.405600", + "Timestamp": "2024-05-16T06:46:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.606900", - "Timestamp": "2019-10-15T11:43:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.400600", + "Timestamp": "2024-05-16T06:46:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.506900", - "Timestamp": "2019-10-15T11:43:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.275600", + "Timestamp": "2024-05-16T06:46:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.506900", - "Timestamp": "2019-10-15T11:43:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.001500", + "Timestamp": "2024-05-16T06:46:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.842400", - "Timestamp": "2019-10-15T11:43:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261500", + "Timestamp": "2024-05-16T06:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "7.656000", - "Timestamp": "2019-10-15T11:43:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.256500", + "Timestamp": "2024-05-16T06:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.842400", - "Timestamp": "2019-10-15T11:43:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131500", + "Timestamp": "2024-05-16T06:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.172500", - "Timestamp": "2019-10-15T11:42:58.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.736600", + "Timestamp": "2024-05-16T06:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.172500", - "Timestamp": "2019-10-15T11:42:58.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.782000", + "Timestamp": "2024-05-16T06:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.172500", - "Timestamp": "2019-10-15T11:42:58.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134900", + "Timestamp": "2024-05-16T06:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.764400", - "Timestamp": "2019-10-15T11:42:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174900", + "Timestamp": "2024-05-16T06:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "5.578000", - "Timestamp": "2019-10-15T11:42:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074900", + "Timestamp": "2024-05-16T06:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.764400", - "Timestamp": "2019-10-15T11:42:55.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.766100", + "Timestamp": "2024-05-16T06:46:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.734400", - "Timestamp": "2019-10-15T11:42:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.466400", + "Timestamp": "2024-05-16T06:46:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "5.548000", - "Timestamp": "2019-10-15T11:42:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.436400", + "Timestamp": "2024-05-16T06:46:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.734400", - "Timestamp": "2019-10-15T11:42:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.336400", + "Timestamp": "2024-05-16T06:46:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.634400", - "Timestamp": "2019-10-15T11:42:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.530300", + "Timestamp": "2024-05-16T06:46:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "5.448000", - "Timestamp": "2019-10-15T11:42:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.525300", + "Timestamp": "2024-05-16T06:46:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.634400", - "Timestamp": "2019-10-15T11:42:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.400300", + "Timestamp": "2024-05-16T06:46:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.886500", - "Timestamp": "2019-10-15T11:42:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.360600", + "Timestamp": "2024-05-16T06:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.886500", - "Timestamp": "2019-10-15T11:42:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.355600", + "Timestamp": "2024-05-16T06:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.886500", - "Timestamp": "2019-10-15T11:42:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.230600", + "Timestamp": "2024-05-16T06:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.856500", - "Timestamp": "2019-10-15T11:42:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-16T06:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.856500", - "Timestamp": "2019-10-15T11:42:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084400", + "Timestamp": "2024-05-16T06:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.856500", - "Timestamp": "2019-10-15T11:42:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028100", + "Timestamp": "2024-05-16T06:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.756500", - "Timestamp": "2019-10-15T11:42:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.312000", + "Timestamp": "2024-05-16T06:46:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.756500", - "Timestamp": "2019-10-15T11:42:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.307000", + "Timestamp": "2024-05-16T06:46:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.756500", - "Timestamp": "2019-10-15T11:42:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.182000", + "Timestamp": "2024-05-16T06:46:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.012800", - "Timestamp": "2019-10-15T11:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.338100", + "Timestamp": "2024-05-16T06:46:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.012800", - "Timestamp": "2019-10-15T11:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.333100", + "Timestamp": "2024-05-16T06:46:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.012800", - "Timestamp": "2019-10-15T11:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.208100", + "Timestamp": "2024-05-16T06:46:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.726800", - "Timestamp": "2019-10-15T11:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.208300", + "Timestamp": "2024-05-16T06:46:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.726800", - "Timestamp": "2019-10-15T11:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.254400", + "Timestamp": "2024-05-16T06:46:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.726800", - "Timestamp": "2019-10-15T11:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.249400", + "Timestamp": "2024-05-16T06:46:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.696800", - "Timestamp": "2019-10-15T11:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124400", + "Timestamp": "2024-05-16T06:46:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.696800", - "Timestamp": "2019-10-15T11:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.231900", + "Timestamp": "2024-05-16T06:46:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.696800", - "Timestamp": "2019-10-15T11:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.201900", + "Timestamp": "2024-05-16T06:46:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.596800", - "Timestamp": "2019-10-15T11:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101900", + "Timestamp": "2024-05-16T06:46:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.596800", - "Timestamp": "2019-10-15T11:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.624500", + "Timestamp": "2024-05-16T06:46:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.596800", - "Timestamp": "2019-10-15T11:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.619500", + "Timestamp": "2024-05-16T06:46:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "p3dn.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "17.250900", - "Timestamp": "2019-10-15T11:42:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.494500", + "Timestamp": "2024-05-16T06:46:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "p3dn.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "12.964900", - "Timestamp": "2019-10-15T11:42:42.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.298200", + "Timestamp": "2024-05-16T06:46:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "p3dn.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "12.934900", - "Timestamp": "2019-10-15T11:42:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.474900", + "Timestamp": "2024-05-16T06:46:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "p3dn.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "12.834900", - "Timestamp": "2019-10-15T11:42:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-16T06:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.264900", - "Timestamp": "2019-10-15T10:57:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.858600", + "Timestamp": "2024-05-16T06:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.234900", - "Timestamp": "2019-10-15T10:57:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.853600", + "Timestamp": "2024-05-16T06:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.134900", - "Timestamp": "2019-10-15T10:57:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.728600", + "Timestamp": "2024-05-16T06:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.125300", - "Timestamp": "2019-10-15T10:43:45.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.671700", + "Timestamp": "2024-05-16T06:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.125300", - "Timestamp": "2019-10-15T10:43:45.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.666700", + "Timestamp": "2024-05-16T06:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.125300", - "Timestamp": "2019-10-15T10:43:45.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.541700", + "Timestamp": "2024-05-16T06:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3a.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.067400", - "Timestamp": "2019-10-15T10:43:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.251000", + "Timestamp": "2024-05-16T06:46:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3a.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.067400", - "Timestamp": "2019-10-15T10:43:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.246000", + "Timestamp": "2024-05-16T06:46:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3a.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.107400", - "Timestamp": "2019-10-15T10:43:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121000", + "Timestamp": "2024-05-16T06:46:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3a.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.107400", - "Timestamp": "2019-10-15T10:43:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093400", + "Timestamp": "2024-05-16T06:46:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3a.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.007400", - "Timestamp": "2019-10-15T10:43:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089700", + "Timestamp": "2024-05-16T06:46:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3a.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.007400", - "Timestamp": "2019-10-15T10:43:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033400", + "Timestamp": "2024-05-16T06:46:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3a.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.025800", - "Timestamp": "2019-10-15T10:43:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.742200", + "Timestamp": "2024-05-16T06:46:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3a.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.025800", - "Timestamp": "2019-10-15T10:43:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.737200", + "Timestamp": "2024-05-16T06:46:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.093300", - "Timestamp": "2019-10-15T10:43:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.612200", + "Timestamp": "2024-05-16T06:46:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.093300", - "Timestamp": "2019-10-15T10:43:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120200", + "Timestamp": "2024-05-16T06:46:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.133300", - "Timestamp": "2019-10-15T10:43:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116500", + "Timestamp": "2024-05-16T06:46:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.133300", - "Timestamp": "2019-10-15T10:43:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060200", + "Timestamp": "2024-05-16T06:46:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.033300", - "Timestamp": "2019-10-15T10:43:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.292600", + "Timestamp": "2024-05-16T06:46:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.033300", - "Timestamp": "2019-10-15T10:43:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262600", + "Timestamp": "2024-05-16T06:46:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "7.531600", - "Timestamp": "2019-10-15T10:42:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162600", + "Timestamp": "2024-05-16T06:46:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "7.531600", - "Timestamp": "2019-10-15T10:42:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.331900", + "Timestamp": "2024-05-16T06:46:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "p2.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "7.501600", - "Timestamp": "2019-10-15T10:42:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301900", + "Timestamp": "2024-05-16T06:46:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "p2.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "7.501600", - "Timestamp": "2019-10-15T10:42:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.201900", + "Timestamp": "2024-05-16T06:46:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "7.401600", - "Timestamp": "2019-10-15T10:42:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.524400", + "Timestamp": "2024-05-16T06:46:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "7.401600", - "Timestamp": "2019-10-15T10:42:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.519400", + "Timestamp": "2024-05-16T06:46:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "10.345600", - "Timestamp": "2019-10-15T10:42:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.394400", + "Timestamp": "2024-05-16T06:46:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "10.345600", - "Timestamp": "2019-10-15T10:42:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132600", + "Timestamp": "2024-05-16T06:46:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.115000", - "Timestamp": "2019-10-15T10:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128600", + "Timestamp": "2024-05-16T06:46:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.115000", - "Timestamp": "2019-10-15T10:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072600", + "Timestamp": "2024-05-16T06:46:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.115000", - "Timestamp": "2019-10-15T10:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-16T06:46:22.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.301000", - "Timestamp": "2019-10-15T10:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097700", + "Timestamp": "2024-05-16T06:46:22.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.301000", - "Timestamp": "2019-10-15T10:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041700", + "Timestamp": "2024-05-16T06:46:22.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.301000", - "Timestamp": "2019-10-15T10:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.537800", + "Timestamp": "2024-05-16T06:46:19.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.271000", - "Timestamp": "2019-10-15T10:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.024300", + "Timestamp": "2024-05-16T06:46:16.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.271000", - "Timestamp": "2019-10-15T10:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.829000", + "Timestamp": "2024-05-16T06:46:16.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.271000", - "Timestamp": "2019-10-15T10:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.320500", + "Timestamp": "2024-05-16T06:46:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.171000", - "Timestamp": "2019-10-15T10:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.290500", + "Timestamp": "2024-05-16T06:46:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.171000", - "Timestamp": "2019-10-15T10:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190500", + "Timestamp": "2024-05-16T06:46:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.171000", - "Timestamp": "2019-10-15T10:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.248100", + "Timestamp": "2024-05-16T06:46:11.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.808000", - "Timestamp": "2019-10-15T09:59:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.244100", + "Timestamp": "2024-05-16T06:46:11.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m1.small", - "ProductDescription": "Windows", - "SpotPrice": "0.033100", - "Timestamp": "2019-10-15T09:43:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.188100", + "Timestamp": "2024-05-16T06:46:11.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m1.small", - "ProductDescription": "Windows", - "SpotPrice": "0.033100", - "Timestamp": "2019-10-15T09:43:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330200", + "Timestamp": "2024-05-16T06:46:11.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m1.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.033100", - "Timestamp": "2019-10-15T09:43:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325200", + "Timestamp": "2024-05-16T06:46:11.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m1.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.033100", - "Timestamp": "2019-10-15T09:43:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200200", + "Timestamp": "2024-05-16T06:46:11.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m1.small", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066100", - "Timestamp": "2019-10-15T09:43:48.000Z" + "SpotPrice": "0.108900", + "Timestamp": "2024-05-16T06:46:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m1.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066100", - "Timestamp": "2019-10-15T09:43:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T06:46:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m1.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.036100", - "Timestamp": "2019-10-15T09:43:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048900", + "Timestamp": "2024-05-16T06:46:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m1.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.036100", - "Timestamp": "2019-10-15T09:43:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005800", + "Timestamp": "2024-05-16T06:33:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m1.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006100", - "Timestamp": "2019-10-15T09:43:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128500", + "Timestamp": "2024-05-16T06:32:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m1.small", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124800", + "Timestamp": "2024-05-16T06:32:36.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006100", - "Timestamp": "2019-10-15T09:43:48.000Z" + "SpotPrice": "0.068500", + "Timestamp": "2024-05-16T06:32:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m1.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.066100", - "Timestamp": "2019-10-15T09:43:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.429600", + "Timestamp": "2024-05-16T06:32:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m1.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.066100", - "Timestamp": "2019-10-15T09:43:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.424600", + "Timestamp": "2024-05-16T06:32:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m1.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.036100", - "Timestamp": "2019-10-15T09:43:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.299600", + "Timestamp": "2024-05-16T06:32:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m1.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.036100", - "Timestamp": "2019-10-15T09:43:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.378700", + "Timestamp": "2024-05-16T06:32:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m1.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.006100", - "Timestamp": "2019-10-15T09:43:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.087000", + "Timestamp": "2024-05-16T06:32:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m1.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.006100", - "Timestamp": "2019-10-15T09:43:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.078700", + "Timestamp": "2024-05-16T06:32:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.256700", - "Timestamp": "2019-10-15T09:42:54.000Z" + "SpotPrice": "5.967800", + "Timestamp": "2024-05-16T06:32:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.256700", - "Timestamp": "2019-10-15T09:42:54.000Z" + "SpotPrice": "5.753700", + "Timestamp": "2024-05-16T06:32:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.226700", - "Timestamp": "2019-10-15T09:42:54.000Z" + "SpotPrice": "5.962800", + "Timestamp": "2024-05-16T06:32:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.226700", - "Timestamp": "2019-10-15T09:42:54.000Z" + "SpotPrice": "5.748700", + "Timestamp": "2024-05-16T06:32:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.126700", - "Timestamp": "2019-10-15T09:42:54.000Z" + "SpotPrice": "5.837800", + "Timestamp": "2024-05-16T06:32:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.126700", - "Timestamp": "2019-10-15T09:42:54.000Z" + "SpotPrice": "5.623700", + "Timestamp": "2024-05-16T06:32:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.273000", - "Timestamp": "2019-10-15T09:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088900", + "Timestamp": "2024-05-16T06:32:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.273000", - "Timestamp": "2019-10-15T09:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085200", + "Timestamp": "2024-05-16T06:32:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.313000", - "Timestamp": "2019-10-15T09:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028900", + "Timestamp": "2024-05-16T06:32:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.313000", - "Timestamp": "2019-10-15T09:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.610600", + "Timestamp": "2024-05-16T06:32:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.213000", - "Timestamp": "2019-10-15T09:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.993200", + "Timestamp": "2024-05-16T06:32:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.213000", - "Timestamp": "2019-10-15T09:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.036200", + "Timestamp": "2024-05-16T06:32:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.397000", - "Timestamp": "2019-10-15T09:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.988200", + "Timestamp": "2024-05-16T06:32:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.397000", - "Timestamp": "2019-10-15T09:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.031200", + "Timestamp": "2024-05-16T06:32:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.269900", - "Timestamp": "2019-10-15T09:42:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.863200", + "Timestamp": "2024-05-16T06:32:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.239900", - "Timestamp": "2019-10-15T09:42:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.906200", + "Timestamp": "2024-05-16T06:32:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.139900", - "Timestamp": "2019-10-15T09:42:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215000", + "Timestamp": "2024-05-16T06:32:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.522700", - "Timestamp": "2019-10-15T09:41:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.016100", + "Timestamp": "2024-05-16T06:32:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.522700", - "Timestamp": "2019-10-15T09:41:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.011100", + "Timestamp": "2024-05-16T06:32:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.522700", - "Timestamp": "2019-10-15T09:41:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.886100", + "Timestamp": "2024-05-16T06:32:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.522700", - "Timestamp": "2019-10-15T09:41:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.355100", + "Timestamp": "2024-05-16T06:32:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.256700", - "Timestamp": "2019-10-15T09:41:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.350100", + "Timestamp": "2024-05-16T06:32:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.256700", - "Timestamp": "2019-10-15T09:41:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.225100", + "Timestamp": "2024-05-16T06:32:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.226700", - "Timestamp": "2019-10-15T09:41:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.855200", + "Timestamp": "2024-05-16T06:32:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.226700", - "Timestamp": "2019-10-15T09:41:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.320200", + "Timestamp": "2024-05-16T06:32:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.126700", - "Timestamp": "2019-10-15T09:41:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.315200", + "Timestamp": "2024-05-16T06:32:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.126700", - "Timestamp": "2019-10-15T09:41:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190200", + "Timestamp": "2024-05-16T06:32:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.008200", - "Timestamp": "2019-10-15T09:24:58.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.151800", + "Timestamp": "2024-05-16T06:32:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.978200", - "Timestamp": "2019-10-15T09:24:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.730200", + "Timestamp": "2024-05-16T06:32:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.878200", - "Timestamp": "2019-10-15T09:24:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.725200", + "Timestamp": "2024-05-16T06:32:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m1.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.067200", - "Timestamp": "2019-10-15T09:21:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.600200", + "Timestamp": "2024-05-16T06:32:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.396100", - "Timestamp": "2019-10-15T08:43:41.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.312000", + "Timestamp": "2024-05-16T06:32:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.366100", - "Timestamp": "2019-10-15T08:43:41.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.308300", + "Timestamp": "2024-05-16T06:32:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.266100", - "Timestamp": "2019-10-15T08:43:41.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.252000", + "Timestamp": "2024-05-16T06:32:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.908800", - "Timestamp": "2019-10-15T08:43:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299200", + "Timestamp": "2024-05-16T06:32:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5n.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.908800", - "Timestamp": "2019-10-15T08:43:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294200", + "Timestamp": "2024-05-16T06:32:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5n.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.908800", - "Timestamp": "2019-10-15T08:43:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169200", + "Timestamp": "2024-05-16T06:32:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.928400", - "Timestamp": "2019-10-15T08:43:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.402900", + "Timestamp": "2024-05-16T06:32:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.928400", - "Timestamp": "2019-10-15T08:43:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.397900", + "Timestamp": "2024-05-16T06:32:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.928400", - "Timestamp": "2019-10-15T08:43:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.272900", + "Timestamp": "2024-05-16T06:32:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.898400", - "Timestamp": "2019-10-15T08:43:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.651300", + "Timestamp": "2024-05-16T06:32:22.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.898400", - "Timestamp": "2019-10-15T08:43:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.767300", + "Timestamp": "2024-05-16T06:32:22.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.898400", - "Timestamp": "2019-10-15T08:43:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.782500", + "Timestamp": "2024-05-16T06:32:22.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.798400", - "Timestamp": "2019-10-15T08:43:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.869300", + "Timestamp": "2024-05-16T06:32:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.798400", - "Timestamp": "2019-10-15T08:43:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.199800", + "Timestamp": "2024-05-16T06:32:19.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.798400", - "Timestamp": "2019-10-15T08:43:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196100", + "Timestamp": "2024-05-16T06:32:19.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.006400", - "Timestamp": "2019-10-15T08:43:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139800", + "Timestamp": "2024-05-16T06:32:19.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.006400", - "Timestamp": "2019-10-15T08:43:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.345400", + "Timestamp": "2024-05-16T06:32:18.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.006400", - "Timestamp": "2019-10-15T08:43:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.338400", + "Timestamp": "2024-05-16T06:32:15.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.002100", - "Timestamp": "2019-10-15T08:43:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.408900", + "Timestamp": "2024-05-16T06:32:15.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.002100", - "Timestamp": "2019-10-15T08:43:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.403900", + "Timestamp": "2024-05-16T06:32:15.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.002100", - "Timestamp": "2019-10-15T08:43:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.278900", + "Timestamp": "2024-05-16T06:32:15.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.726800", - "Timestamp": "2019-10-15T08:43:02.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.420200", + "Timestamp": "2024-05-16T06:32:14.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5n.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.726800", - "Timestamp": "2019-10-15T08:43:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.991200", + "Timestamp": "2024-05-16T06:32:14.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5n.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.726800", - "Timestamp": "2019-10-15T08:43:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.833700", + "Timestamp": "2024-05-16T06:32:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.696800", - "Timestamp": "2019-10-15T08:43:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.828700", + "Timestamp": "2024-05-16T06:32:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5n.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.696800", - "Timestamp": "2019-10-15T08:43:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.703700", + "Timestamp": "2024-05-16T06:32:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5n.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.696800", - "Timestamp": "2019-10-15T08:43:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131100", + "Timestamp": "2024-05-16T06:32:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5n.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.596800", - "Timestamp": "2019-10-15T08:43:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127400", + "Timestamp": "2024-05-16T06:32:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5n.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.596800", - "Timestamp": "2019-10-15T08:43:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071100", + "Timestamp": "2024-05-16T06:32:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5n.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.596800", - "Timestamp": "2019-10-15T08:43:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.602400", + "Timestamp": "2024-05-16T06:32:12.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.253900", - "Timestamp": "2019-10-15T08:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.418300", + "Timestamp": "2024-05-16T06:32:12.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.253900", - "Timestamp": "2019-10-15T08:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.407300", + "Timestamp": "2024-05-16T06:32:10.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.253900", - "Timestamp": "2019-10-15T08:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.402300", + "Timestamp": "2024-05-16T06:32:10.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.129900", - "Timestamp": "2019-10-15T08:42:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.277300", + "Timestamp": "2024-05-16T06:32:10.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.169900", - "Timestamp": "2019-10-15T08:42:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.334200", + "Timestamp": "2024-05-16T06:32:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.069900", - "Timestamp": "2019-10-15T08:42:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.329200", + "Timestamp": "2024-05-16T06:32:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.193200", - "Timestamp": "2019-10-15T08:42:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.204200", + "Timestamp": "2024-05-16T06:32:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.193200", - "Timestamp": "2019-10-15T08:42:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.973500", + "Timestamp": "2024-05-16T06:32:08.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c1.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.163200", - "Timestamp": "2019-10-15T08:42:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.676600", + "Timestamp": "2024-05-16T06:32:08.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.163200", - "Timestamp": "2019-10-15T08:42:42.000Z" + "SpotPrice": "0.671600", + "Timestamp": "2024-05-16T06:32:08.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063200", - "Timestamp": "2019-10-15T08:42:42.000Z" + "SpotPrice": "0.546600", + "Timestamp": "2024-05-16T06:32:08.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c1.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063200", - "Timestamp": "2019-10-15T08:42:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.491700", + "Timestamp": "2024-05-16T06:32:07.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c1.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.463200", - "Timestamp": "2019-10-15T08:42:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.486700", + "Timestamp": "2024-05-16T06:32:07.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c1.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.463200", - "Timestamp": "2019-10-15T08:42:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.361700", + "Timestamp": "2024-05-16T06:32:07.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c1.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.463200", - "Timestamp": "2019-10-15T08:42:42.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.752300", + "Timestamp": "2024-05-16T06:32:07.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c1.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.463200", - "Timestamp": "2019-10-15T08:42:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122400", + "Timestamp": "2024-05-16T06:32:07.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.193200", - "Timestamp": "2019-10-15T08:42:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118700", + "Timestamp": "2024-05-16T06:32:07.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.193200", - "Timestamp": "2019-10-15T08:42:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062400", + "Timestamp": "2024-05-16T06:32:07.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c1.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.163200", - "Timestamp": "2019-10-15T08:42:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174500", + "Timestamp": "2024-05-16T06:32:06.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c1.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.163200", - "Timestamp": "2019-10-15T08:42:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170800", + "Timestamp": "2024-05-16T06:32:06.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c1.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.063200", - "Timestamp": "2019-10-15T08:42:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-16T06:32:06.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c1.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.063200", - "Timestamp": "2019-10-15T08:42:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.412200", + "Timestamp": "2024-05-16T06:32:04.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c1.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.115800", - "Timestamp": "2019-10-15T08:42:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.382200", + "Timestamp": "2024-05-16T06:32:04.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c1.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.115800", - "Timestamp": "2019-10-15T08:42:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.282200", + "Timestamp": "2024-05-16T06:32:04.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c1.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.075800", - "Timestamp": "2019-10-15T08:42:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.155900", + "Timestamp": "2024-05-16T06:32:03.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c1.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.075800", - "Timestamp": "2019-10-15T08:42:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.150900", + "Timestamp": "2024-05-16T06:32:03.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c1.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.115800", - "Timestamp": "2019-10-15T08:42:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.025900", + "Timestamp": "2024-05-16T06:32:03.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c1.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.115800", - "Timestamp": "2019-10-15T08:42:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.708400", + "Timestamp": "2024-05-16T06:32:02.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c1.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.015800", - "Timestamp": "2019-10-15T08:42:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.980800", + "Timestamp": "2024-05-16T06:32:02.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c1.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.015800", - "Timestamp": "2019-10-15T08:42:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.975800", + "Timestamp": "2024-05-16T06:32:02.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c1.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.075800", - "Timestamp": "2019-10-15T08:42:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.850800", + "Timestamp": "2024-05-16T06:32:02.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c1.medium", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.075800", - "Timestamp": "2019-10-15T08:42:27.000Z" - }, - { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c1.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.115800", - "Timestamp": "2019-10-15T08:42:27.000Z" + "SpotPrice": "2.303600", + "Timestamp": "2024-05-16T06:32:00.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c1.medium", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.115800", - "Timestamp": "2019-10-15T08:42:27.000Z" - }, - { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c1.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.015800", - "Timestamp": "2019-10-15T08:42:27.000Z" + "SpotPrice": "2.298600", + "Timestamp": "2024-05-16T06:32:00.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c1.medium", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.015800", - "Timestamp": "2019-10-15T08:42:27.000Z" + "SpotPrice": "2.173600", + "Timestamp": "2024-05-16T06:32:00.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c1.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.115800", - "Timestamp": "2019-10-15T08:42:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.937500", + "Timestamp": "2024-05-16T06:31:54.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c1.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.115800", - "Timestamp": "2019-10-15T08:42:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.553500", + "Timestamp": "2024-05-16T06:31:54.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "a1.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.267900", - "Timestamp": "2019-10-15T08:19:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.756200", + "Timestamp": "2024-05-16T06:31:51.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "a1.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.237900", - "Timestamp": "2019-10-15T08:19:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.975300", + "Timestamp": "2024-05-16T06:31:51.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "a1.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.137900", - "Timestamp": "2019-10-15T08:19:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.726200", + "Timestamp": "2024-05-16T06:31:51.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.139200", - "Timestamp": "2019-10-15T07:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.945300", + "Timestamp": "2024-05-16T06:31:51.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.139200", - "Timestamp": "2019-10-15T07:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.626200", + "Timestamp": "2024-05-16T06:31:51.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.139200", - "Timestamp": "2019-10-15T07:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.845300", + "Timestamp": "2024-05-16T06:31:51.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.125600", - "Timestamp": "2019-10-15T07:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.677300", + "Timestamp": "2024-05-16T06:31:51.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.125600", - "Timestamp": "2019-10-15T07:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.747100", + "Timestamp": "2024-05-16T06:31:51.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.125600", - "Timestamp": "2019-10-15T07:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "h1.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.717100", + "Timestamp": "2024-05-16T06:31:51.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.165600", - "Timestamp": "2019-10-15T07:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.617100", + "Timestamp": "2024-05-16T06:31:51.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.165600", - "Timestamp": "2019-10-15T07:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.737300", + "Timestamp": "2024-05-16T06:31:51.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.165600", - "Timestamp": "2019-10-15T07:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.952600", + "Timestamp": "2024-05-16T06:31:51.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.065600", - "Timestamp": "2019-10-15T07:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.947600", + "Timestamp": "2024-05-16T06:31:51.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.065600", - "Timestamp": "2019-10-15T07:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.822600", + "Timestamp": "2024-05-16T06:31:51.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.065600", - "Timestamp": "2019-10-15T07:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.050700", + "Timestamp": "2024-05-16T06:31:49.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.123400", - "Timestamp": "2019-10-15T07:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.045700", + "Timestamp": "2024-05-16T06:31:49.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.163400", - "Timestamp": "2019-10-15T07:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.920700", + "Timestamp": "2024-05-16T06:31:49.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.063400", - "Timestamp": "2019-10-15T07:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.416700", + "Timestamp": "2024-05-16T06:31:48.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.247400", - "Timestamp": "2019-10-15T07:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.386700", + "Timestamp": "2024-05-16T06:31:48.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.247400", - "Timestamp": "2019-10-15T07:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.286700", + "Timestamp": "2024-05-16T06:31:48.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.247400", - "Timestamp": "2019-10-15T07:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.460900", + "Timestamp": "2024-05-16T06:31:48.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.728800", - "Timestamp": "2019-10-15T07:42:22.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062900", + "Timestamp": "2024-05-16T06:31:47.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.728800", - "Timestamp": "2019-10-15T07:42:22.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002900", + "Timestamp": "2024-05-16T06:31:47.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.728800", - "Timestamp": "2019-10-15T07:42:22.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002900", + "Timestamp": "2024-05-16T06:31:47.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.698800", - "Timestamp": "2019-10-15T07:42:22.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.234700", + "Timestamp": "2024-05-16T06:31:45.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.698800", - "Timestamp": "2019-10-15T07:42:22.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.229700", + "Timestamp": "2024-05-16T06:31:45.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.698800", - "Timestamp": "2019-10-15T07:42:22.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.104700", + "Timestamp": "2024-05-16T06:31:45.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.598800", - "Timestamp": "2019-10-15T07:42:22.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.375400", + "Timestamp": "2024-05-16T06:31:45.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.598800", - "Timestamp": "2019-10-15T07:42:22.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.325300", + "Timestamp": "2024-05-16T06:31:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.598800", - "Timestamp": "2019-10-15T07:42:22.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.320300", + "Timestamp": "2024-05-16T06:31:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.254800", - "Timestamp": "2019-10-15T07:41:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195300", + "Timestamp": "2024-05-16T06:31:44.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.254800", - "Timestamp": "2019-10-15T07:41:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.068900", + "Timestamp": "2024-05-16T06:31:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.254800", - "Timestamp": "2019-10-15T07:41:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.316400", + "Timestamp": "2024-05-16T06:31:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m1.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.067200", - "Timestamp": "2019-10-15T06:59:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.703500", + "Timestamp": "2024-05-16T06:31:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3.nano", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.006600", - "Timestamp": "2019-10-15T06:44:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.698500", + "Timestamp": "2024-05-16T06:31:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3.nano", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.006600", - "Timestamp": "2019-10-15T06:44:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.573500", + "Timestamp": "2024-05-16T06:31:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t3.nano", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.006600", - "Timestamp": "2019-10-15T06:44:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092400", + "Timestamp": "2024-05-16T06:31:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", "SpotPrice": "0.088700", - "Timestamp": "2019-10-15T06:43:59.000Z" + "Timestamp": "2024-05-16T06:31:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.088700", - "Timestamp": "2019-10-15T06:43:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032400", + "Timestamp": "2024-05-16T06:31:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.128700", - "Timestamp": "2019-10-15T06:43:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.798400", + "Timestamp": "2024-05-16T06:31:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.128700", - "Timestamp": "2019-10-15T06:43:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.793400", + "Timestamp": "2024-05-16T06:31:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.028700", - "Timestamp": "2019-10-15T06:43:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.668400", + "Timestamp": "2024-05-16T06:31:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.028700", - "Timestamp": "2019-10-15T06:43:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.196400", + "Timestamp": "2024-05-16T06:31:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.093700", - "Timestamp": "2019-10-15T06:43:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.520400", + "Timestamp": "2024-05-16T06:31:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.093700", - "Timestamp": "2019-10-15T06:43:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.515400", + "Timestamp": "2024-05-16T06:31:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.093700", - "Timestamp": "2019-10-15T06:43:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.390400", + "Timestamp": "2024-05-16T06:31:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.093700", - "Timestamp": "2019-10-15T06:43:49.000Z" + "SpotPrice": "0.824000", + "Timestamp": "2024-05-16T06:31:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.088700", - "Timestamp": "2019-10-15T06:43:49.000Z" + "SpotPrice": "0.138700", + "Timestamp": "2024-05-16T06:31:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.088700", - "Timestamp": "2019-10-15T06:43:49.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135000", + "Timestamp": "2024-05-16T06:31:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.128700", - "Timestamp": "2019-10-15T06:43:49.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078700", + "Timestamp": "2024-05-16T06:31:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m2.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.605200", + "Timestamp": "2024-05-16T06:31:40.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.128700", - "Timestamp": "2019-10-15T06:43:49.000Z" + "SpotPrice": "0.600200", + "Timestamp": "2024-05-16T06:31:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m2.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.028700", - "Timestamp": "2019-10-15T06:43:49.000Z" + "SpotPrice": "0.475200", + "Timestamp": "2024-05-16T06:31:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.028700", - "Timestamp": "2019-10-15T06:43:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.994200", + "Timestamp": "2024-05-16T06:31:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.062000", - "Timestamp": "2019-10-15T06:43:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.016200", + "Timestamp": "2024-05-16T06:31:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.062000", - "Timestamp": "2019-10-15T06:43:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.011200", + "Timestamp": "2024-05-16T06:31:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.062000", - "Timestamp": "2019-10-15T06:43:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.886200", + "Timestamp": "2024-05-16T06:31:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3.nano", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.102000", - "Timestamp": "2019-10-15T06:43:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.942000", + "Timestamp": "2024-05-16T06:31:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3.nano", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.102000", - "Timestamp": "2019-10-15T06:43:44.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.707100", + "Timestamp": "2024-05-16T06:31:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t3.nano", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.102000", - "Timestamp": "2019-10-15T06:43:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.547700", + "Timestamp": "2024-05-16T06:31:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3.nano", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T06:43:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.542700", + "Timestamp": "2024-05-16T06:31:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3.nano", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T06:43:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.417700", + "Timestamp": "2024-05-16T06:31:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t3.nano", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T06:43:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.759200", + "Timestamp": "2024-05-16T06:31:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.688900", - "Timestamp": "2019-10-15T06:43:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.173000", + "Timestamp": "2024-05-16T06:31:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.688900", - "Timestamp": "2019-10-15T06:43:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106200", + "Timestamp": "2024-05-16T06:31:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.658900", - "Timestamp": "2019-10-15T06:43:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102200", + "Timestamp": "2024-05-16T06:31:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.658900", - "Timestamp": "2019-10-15T06:43:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046200", + "Timestamp": "2024-05-16T06:31:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.558900", - "Timestamp": "2019-10-15T06:43:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218200", + "Timestamp": "2024-05-16T06:31:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.558900", - "Timestamp": "2019-10-15T06:43:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.545400", + "Timestamp": "2024-05-16T06:31:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.030900", - "Timestamp": "2019-10-15T06:43:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "h1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.515400", + "Timestamp": "2024-05-16T06:31:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.030900", - "Timestamp": "2019-10-15T06:43:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.415400", + "Timestamp": "2024-05-16T06:31:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.132300", - "Timestamp": "2019-10-15T06:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.461400", + "Timestamp": "2024-05-16T06:31:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.132300", - "Timestamp": "2019-10-15T06:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.456400", + "Timestamp": "2024-05-16T06:31:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.118700", - "Timestamp": "2019-10-15T06:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.331400", + "Timestamp": "2024-05-16T06:31:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.118700", - "Timestamp": "2019-10-15T06:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.284100", + "Timestamp": "2024-05-16T06:31:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.158700", - "Timestamp": "2019-10-15T06:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098000", + "Timestamp": "2024-05-16T06:31:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.158700", - "Timestamp": "2019-10-15T06:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094300", + "Timestamp": "2024-05-16T06:31:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.058700", - "Timestamp": "2019-10-15T06:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038000", + "Timestamp": "2024-05-16T06:31:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.058700", - "Timestamp": "2019-10-15T06:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.425600", + "Timestamp": "2024-05-16T06:31:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.061600", - "Timestamp": "2019-10-15T06:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.420600", + "Timestamp": "2024-05-16T06:31:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.061600", - "Timestamp": "2019-10-15T06:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.295600", + "Timestamp": "2024-05-16T06:31:34.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.061600", - "Timestamp": "2019-10-15T06:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.323200", + "Timestamp": "2024-05-16T06:31:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.087600", - "Timestamp": "2019-10-15T06:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.530000", + "Timestamp": "2024-05-16T06:31:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.087600", - "Timestamp": "2019-10-15T06:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.035700", + "Timestamp": "2024-05-16T06:31:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.087600", - "Timestamp": "2019-10-15T06:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.005700", + "Timestamp": "2024-05-16T06:31:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.057600", - "Timestamp": "2019-10-15T06:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.905700", + "Timestamp": "2024-05-16T06:31:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.057600", - "Timestamp": "2019-10-15T06:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299100", + "Timestamp": "2024-05-16T06:31:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.057600", - "Timestamp": "2019-10-15T06:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294100", + "Timestamp": "2024-05-16T06:31:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.957600", - "Timestamp": "2019-10-15T06:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169100", + "Timestamp": "2024-05-16T06:31:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.957600", - "Timestamp": "2019-10-15T06:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.032900", + "Timestamp": "2024-05-16T06:31:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.957600", - "Timestamp": "2019-10-15T06:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.717600", + "Timestamp": "2024-05-16T06:31:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.806600", - "Timestamp": "2019-10-15T06:42:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.687600", + "Timestamp": "2024-05-16T06:31:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.806600", - "Timestamp": "2019-10-15T06:42:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.587600", + "Timestamp": "2024-05-16T06:31:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.806600", - "Timestamp": "2019-10-15T06:42:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.621100", + "Timestamp": "2024-05-16T06:31:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.776600", - "Timestamp": "2019-10-15T06:42:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.616100", + "Timestamp": "2024-05-16T06:31:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.776600", - "Timestamp": "2019-10-15T06:42:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.491100", + "Timestamp": "2024-05-16T06:31:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.776600", - "Timestamp": "2019-10-15T06:42:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.318200", + "Timestamp": "2024-05-16T06:31:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.676600", - "Timestamp": "2019-10-15T06:42:42.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169900", + "Timestamp": "2024-05-16T06:31:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.676600", - "Timestamp": "2019-10-15T06:42:42.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166900", + "Timestamp": "2024-05-16T06:31:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.676600", - "Timestamp": "2019-10-15T06:42:42.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-16T06:31:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.092600", - "Timestamp": "2019-10-15T06:42:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.279300", + "Timestamp": "2024-05-16T06:31:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.092600", - "Timestamp": "2019-10-15T06:42:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.274300", + "Timestamp": "2024-05-16T06:31:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.092600", - "Timestamp": "2019-10-15T06:42:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149300", + "Timestamp": "2024-05-16T06:31:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092600", - "Timestamp": "2019-10-15T05:47:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.581800", + "Timestamp": "2024-05-16T06:31:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132600", - "Timestamp": "2019-10-15T05:47:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.551800", + "Timestamp": "2024-05-16T06:31:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032600", - "Timestamp": "2019-10-15T05:47:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.451800", + "Timestamp": "2024-05-16T06:31:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.256700", - "Timestamp": "2019-10-15T05:44:11.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.466700", + "Timestamp": "2024-05-16T06:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.256700", - "Timestamp": "2019-10-15T05:44:11.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.461700", + "Timestamp": "2024-05-16T06:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.226700", - "Timestamp": "2019-10-15T05:44:11.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.336700", + "Timestamp": "2024-05-16T06:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.226700", - "Timestamp": "2019-10-15T05:44:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.400300", + "Timestamp": "2024-05-16T06:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.126700", - "Timestamp": "2019-10-15T05:44:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.395300", + "Timestamp": "2024-05-16T06:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.126700", - "Timestamp": "2019-10-15T05:44:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.270300", + "Timestamp": "2024-05-16T06:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.494700", - "Timestamp": "2019-10-15T05:43:37.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.363100", + "Timestamp": "2024-05-16T06:31:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.494700", - "Timestamp": "2019-10-15T05:43:37.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.358100", + "Timestamp": "2024-05-16T06:31:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.494700", - "Timestamp": "2019-10-15T05:43:37.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.233100", + "Timestamp": "2024-05-16T06:31:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.057500", - "Timestamp": "2019-10-15T05:43:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.561400", + "Timestamp": "2024-05-16T06:31:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.057500", - "Timestamp": "2019-10-15T05:43:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.556400", + "Timestamp": "2024-05-16T06:31:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.057500", - "Timestamp": "2019-10-15T05:43:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.431400", + "Timestamp": "2024-05-16T06:31:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t2.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.009200", - "Timestamp": "2019-10-15T05:43:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.484300", + "Timestamp": "2024-05-16T06:31:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t2.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.009200", - "Timestamp": "2019-10-15T05:43:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.479300", + "Timestamp": "2024-05-16T06:31:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t2.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.009200", - "Timestamp": "2019-10-15T05:43:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.354300", + "Timestamp": "2024-05-16T06:31:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t2.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.064600", - "Timestamp": "2019-10-15T05:43:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.388400", + "Timestamp": "2024-05-16T06:31:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t2.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.064600", - "Timestamp": "2019-10-15T05:43:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.358400", + "Timestamp": "2024-05-16T06:31:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t2.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.064600", - "Timestamp": "2019-10-15T05:43:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.258400", + "Timestamp": "2024-05-16T06:31:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t2.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.014600", - "Timestamp": "2019-10-15T05:43:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.628800", + "Timestamp": "2024-05-16T06:31:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t2.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.014600", - "Timestamp": "2019-10-15T05:43:02.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.774300", + "Timestamp": "2024-05-16T06:31:22.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t2.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.014600", - "Timestamp": "2019-10-15T05:43:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.553600", + "Timestamp": "2024-05-16T06:31:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t2.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.004600", - "Timestamp": "2019-10-15T05:43:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.548600", + "Timestamp": "2024-05-16T06:31:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t2.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.004600", - "Timestamp": "2019-10-15T05:43:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.423600", + "Timestamp": "2024-05-16T06:31:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t2.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.004600", - "Timestamp": "2019-10-15T05:43:02.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.897300", + "Timestamp": "2024-05-16T06:17:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.715500", - "Timestamp": "2019-10-15T05:42:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229100", + "Timestamp": "2024-05-16T06:17:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.715500", - "Timestamp": "2019-10-15T05:42:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.564700", + "Timestamp": "2024-05-16T06:17:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.715500", - "Timestamp": "2019-10-15T05:42:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "h1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.534700", + "Timestamp": "2024-05-16T06:17:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.685500", - "Timestamp": "2019-10-15T05:42:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.434700", + "Timestamp": "2024-05-16T06:17:35.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.685500", - "Timestamp": "2019-10-15T05:42:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.547000", + "Timestamp": "2024-05-16T06:17:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.685500", - "Timestamp": "2019-10-15T05:42:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.542000", + "Timestamp": "2024-05-16T06:17:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.585500", - "Timestamp": "2019-10-15T05:42:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.417000", + "Timestamp": "2024-05-16T06:17:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.585500", - "Timestamp": "2019-10-15T05:42:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.704900", + "Timestamp": "2024-05-16T06:17:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.585500", - "Timestamp": "2019-10-15T05:42:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.203400", + "Timestamp": "2024-05-16T06:17:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.845300", - "Timestamp": "2019-10-15T05:42:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.198400", + "Timestamp": "2024-05-16T06:17:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.845300", - "Timestamp": "2019-10-15T05:42:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.073400", + "Timestamp": "2024-05-16T06:17:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.845300", - "Timestamp": "2019-10-15T05:42:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T06:17:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.031300", - "Timestamp": "2019-10-15T05:42:44.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.654800", + "Timestamp": "2024-05-16T06:17:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.031300", - "Timestamp": "2019-10-15T05:42:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.458500", + "Timestamp": "2024-05-16T06:17:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.031300", - "Timestamp": "2019-10-15T05:42:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.453500", + "Timestamp": "2024-05-16T06:17:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.001300", - "Timestamp": "2019-10-15T05:42:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.328500", + "Timestamp": "2024-05-16T06:17:30.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "x1.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.001300", - "Timestamp": "2019-10-15T05:42:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.394700", + "Timestamp": "2024-05-16T06:17:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.001300", - "Timestamp": "2019-10-15T05:42:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.364700", + "Timestamp": "2024-05-16T06:17:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.901300", - "Timestamp": "2019-10-15T05:42:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.264700", + "Timestamp": "2024-05-16T06:17:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.901300", - "Timestamp": "2019-10-15T05:42:44.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.656300", + "Timestamp": "2024-05-16T06:17:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.901300", - "Timestamp": "2019-10-15T05:42:44.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.957800", + "Timestamp": "2024-05-16T06:17:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.534700", - "Timestamp": "2019-10-15T05:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.952800", + "Timestamp": "2024-05-16T06:17:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.534700", - "Timestamp": "2019-10-15T05:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.827800", + "Timestamp": "2024-05-16T06:17:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.250700", - "Timestamp": "2019-10-15T05:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213800", + "Timestamp": "2024-05-16T06:17:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.220700", - "Timestamp": "2019-10-15T05:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.432100", + "Timestamp": "2024-05-16T06:17:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.120700", - "Timestamp": "2019-10-15T05:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.427100", + "Timestamp": "2024-05-16T06:17:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.250700", - "Timestamp": "2019-10-15T05:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.302100", + "Timestamp": "2024-05-16T06:17:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.250700", - "Timestamp": "2019-10-15T05:42:43.000Z" + "SpotPrice": "0.739500", + "Timestamp": "2024-05-16T06:17:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.220700", - "Timestamp": "2019-10-15T05:42:43.000Z" - }, - { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.220700", - "Timestamp": "2019-10-15T05:42:43.000Z" + "SpotPrice": "0.734500", + "Timestamp": "2024-05-16T06:17:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.120700", - "Timestamp": "2019-10-15T05:42:43.000Z" + "SpotPrice": "0.609500", + "Timestamp": "2024-05-16T06:17:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.120700", - "Timestamp": "2019-10-15T05:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.464500", + "Timestamp": "2024-05-16T06:17:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.534700", - "Timestamp": "2019-10-15T05:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.858100", + "Timestamp": "2024-05-16T06:17:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.534700", - "Timestamp": "2019-10-15T05:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112500", + "Timestamp": "2024-05-16T06:17:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.415200", - "Timestamp": "2019-10-15T05:30:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108800", + "Timestamp": "2024-05-16T06:17:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.385200", - "Timestamp": "2019-10-15T05:30:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052500", + "Timestamp": "2024-05-16T06:17:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.285200", - "Timestamp": "2019-10-15T05:30:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-16T06:17:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.466000", - "Timestamp": "2019-10-15T05:21:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092200", + "Timestamp": "2024-05-16T06:17:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.436000", - "Timestamp": "2019-10-15T05:21:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035900", + "Timestamp": "2024-05-16T06:17:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.336000", - "Timestamp": "2019-10-15T05:21:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.692200", + "Timestamp": "2024-05-16T06:17:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.093400", - "Timestamp": "2019-10-15T05:13:47.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.687200", + "Timestamp": "2024-05-16T06:17:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.133400", - "Timestamp": "2019-10-15T05:13:47.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.562200", + "Timestamp": "2024-05-16T06:17:23.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.033400", - "Timestamp": "2019-10-15T05:13:47.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.657700", + "Timestamp": "2024-05-16T06:17:22.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.275900", - "Timestamp": "2019-10-15T04:43:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.652700", + "Timestamp": "2024-05-16T06:17:22.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.275900", - "Timestamp": "2019-10-15T04:43:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.527700", + "Timestamp": "2024-05-16T06:17:22.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.275900", - "Timestamp": "2019-10-15T04:43:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.955000", + "Timestamp": "2024-05-16T06:17:21.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.245900", - "Timestamp": "2019-10-15T04:43:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.667100", + "Timestamp": "2024-05-16T06:17:19.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.245900", - "Timestamp": "2019-10-15T04:43:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.709700", + "Timestamp": "2024-05-16T06:17:16.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.245900", - "Timestamp": "2019-10-15T04:43:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.579400", + "Timestamp": "2024-05-16T06:17:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.145900", - "Timestamp": "2019-10-15T04:43:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.574400", + "Timestamp": "2024-05-16T06:17:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.145900", - "Timestamp": "2019-10-15T04:43:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.449400", + "Timestamp": "2024-05-16T06:17:13.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.145900", - "Timestamp": "2019-10-15T04:43:55.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.244300", + "Timestamp": "2024-05-16T06:17:11.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t2.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.064500", - "Timestamp": "2019-10-15T04:43:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.451200", + "Timestamp": "2024-05-16T06:17:10.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t2.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.064500", - "Timestamp": "2019-10-15T04:43:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.446200", + "Timestamp": "2024-05-16T06:17:10.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t2.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.064500", - "Timestamp": "2019-10-15T04:43:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.321200", + "Timestamp": "2024-05-16T06:17:10.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.207900", - "Timestamp": "2019-10-15T04:43:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.871700", + "Timestamp": "2024-05-16T06:17:10.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.207900", - "Timestamp": "2019-10-15T04:43:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.841700", + "Timestamp": "2024-05-16T06:17:10.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.207900", - "Timestamp": "2019-10-15T04:43:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.741700", + "Timestamp": "2024-05-16T06:17:10.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.187500", - "Timestamp": "2019-10-15T04:42:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.103000", + "Timestamp": "2024-05-16T06:17:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.187500", - "Timestamp": "2019-10-15T04:42:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.098000", + "Timestamp": "2024-05-16T06:17:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.187500", - "Timestamp": "2019-10-15T04:42:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.973000", + "Timestamp": "2024-05-16T06:17:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.187500", - "Timestamp": "2019-10-15T04:42:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.215300", + "Timestamp": "2024-05-16T06:17:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.117500", - "Timestamp": "2019-10-15T04:42:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.210300", + "Timestamp": "2024-05-16T06:17:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.117500", - "Timestamp": "2019-10-15T04:42:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.085300", + "Timestamp": "2024-05-16T06:17:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.157500", - "Timestamp": "2019-10-15T04:42:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.502600", + "Timestamp": "2024-05-16T06:17:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.157500", - "Timestamp": "2019-10-15T04:42:51.000Z" + "SpotPrice": "0.497600", + "Timestamp": "2024-05-16T06:17:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.057500", - "Timestamp": "2019-10-15T04:42:51.000Z" + "SpotPrice": "0.372600", + "Timestamp": "2024-05-16T06:17:09.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.057500", - "Timestamp": "2019-10-15T04:42:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.242900", + "Timestamp": "2024-05-16T06:17:08.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.117500", - "Timestamp": "2019-10-15T04:42:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.754400", + "Timestamp": "2024-05-16T06:17:07.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.117500", - "Timestamp": "2019-10-15T04:42:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.749400", + "Timestamp": "2024-05-16T06:17:07.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.157500", - "Timestamp": "2019-10-15T04:42:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.624400", + "Timestamp": "2024-05-16T06:17:07.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.157500", - "Timestamp": "2019-10-15T04:42:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.742100", + "Timestamp": "2024-05-16T06:17:07.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.057500", - "Timestamp": "2019-10-15T04:42:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.812300", + "Timestamp": "2024-05-16T06:17:05.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.057500", - "Timestamp": "2019-10-15T04:42:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104300", + "Timestamp": "2024-05-16T06:17:04.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t2.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.096500", - "Timestamp": "2019-10-15T04:41:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-16T06:17:04.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t2.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.096500", - "Timestamp": "2019-10-15T04:41:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044300", + "Timestamp": "2024-05-16T06:17:04.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t2.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.096500", - "Timestamp": "2019-10-15T04:41:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.647900", + "Timestamp": "2024-05-16T06:17:01.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t2.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.136500", - "Timestamp": "2019-10-15T04:41:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.642900", + "Timestamp": "2024-05-16T06:17:01.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t2.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.136500", - "Timestamp": "2019-10-15T04:41:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.517900", + "Timestamp": "2024-05-16T06:17:01.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t2.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.136500", - "Timestamp": "2019-10-15T04:41:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.527100", + "Timestamp": "2024-05-16T06:17:01.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t2.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.036500", - "Timestamp": "2019-10-15T04:41:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.493900", + "Timestamp": "2024-05-16T06:17:00.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t2.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.036500", - "Timestamp": "2019-10-15T04:41:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.488900", + "Timestamp": "2024-05-16T06:17:00.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t2.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.036500", - "Timestamp": "2019-10-15T04:41:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.363900", + "Timestamp": "2024-05-16T06:17:00.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "10.195600", - "Timestamp": "2019-10-15T04:40:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.924300", + "Timestamp": "2024-05-16T06:16:59.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "10.195600", - "Timestamp": "2019-10-15T04:40:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.919300", + "Timestamp": "2024-05-16T06:16:59.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "p3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "10.165600", - "Timestamp": "2019-10-15T04:40:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.794300", + "Timestamp": "2024-05-16T06:16:59.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "p3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "10.165600", - "Timestamp": "2019-10-15T04:40:37.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.363300", + "Timestamp": "2024-05-16T06:16:59.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "10.065600", - "Timestamp": "2019-10-15T04:40:37.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.358300", + "Timestamp": "2024-05-16T06:16:59.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "10.065600", - "Timestamp": "2019-10-15T04:40:37.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.233300", + "Timestamp": "2024-05-16T06:16:59.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "13.009600", - "Timestamp": "2019-10-15T04:40:37.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.210200", + "Timestamp": "2024-05-16T06:16:59.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "13.009600", - "Timestamp": "2019-10-15T04:40:37.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.256000", + "Timestamp": "2024-05-16T06:16:57.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095100", - "Timestamp": "2019-10-15T03:59:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.226000", + "Timestamp": "2024-05-16T06:16:57.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135100", - "Timestamp": "2019-10-15T03:59:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126000", + "Timestamp": "2024-05-16T06:16:57.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035100", - "Timestamp": "2019-10-15T03:59:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.687800", + "Timestamp": "2024-05-16T06:16:57.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "8.246400", - "Timestamp": "2019-10-15T03:43:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.682800", + "Timestamp": "2024-05-16T06:16:57.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "8.246400", - "Timestamp": "2019-10-15T03:43:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.557800", + "Timestamp": "2024-05-16T06:16:57.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "8.246400", - "Timestamp": "2019-10-15T03:43:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.334000", + "Timestamp": "2024-05-16T06:16:56.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.960400", - "Timestamp": "2019-10-15T03:43:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.329000", + "Timestamp": "2024-05-16T06:16:56.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.960400", - "Timestamp": "2019-10-15T03:43:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.204000", + "Timestamp": "2024-05-16T06:16:56.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.960400", - "Timestamp": "2019-10-15T03:43:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.140500", + "Timestamp": "2024-05-16T06:16:54.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.930400", - "Timestamp": "2019-10-15T03:43:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.135500", + "Timestamp": "2024-05-16T06:16:54.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.930400", - "Timestamp": "2019-10-15T03:43:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.010500", + "Timestamp": "2024-05-16T06:16:54.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.930400", - "Timestamp": "2019-10-15T03:43:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.814800", + "Timestamp": "2024-05-16T06:16:54.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.830400", - "Timestamp": "2019-10-15T03:43:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.784800", + "Timestamp": "2024-05-16T06:16:54.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.830400", - "Timestamp": "2019-10-15T03:43:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.684800", + "Timestamp": "2024-05-16T06:16:54.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.830400", - "Timestamp": "2019-10-15T03:43:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.757600", + "Timestamp": "2024-05-16T06:16:54.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m1.medium", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.067200", - "Timestamp": "2019-10-15T03:18:36.000Z" + "SpotPrice": "1.021100", + "Timestamp": "2024-05-16T06:16:50.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.093400", - "Timestamp": "2019-10-15T02:43:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.776700", + "Timestamp": "2024-05-16T06:16:49.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.093400", - "Timestamp": "2019-10-15T02:43:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.771700", + "Timestamp": "2024-05-16T06:16:49.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.646700", + "Timestamp": "2024-05-16T06:16:49.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.138800", - "Timestamp": "2019-10-15T02:43:35.000Z" + "SpotPrice": "5.085500", + "Timestamp": "2024-05-16T06:16:48.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r3.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.138800", - "Timestamp": "2019-10-15T02:43:35.000Z" + "SpotPrice": "0.477300", + "Timestamp": "2024-05-16T06:16:43.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.138800", - "Timestamp": "2019-10-15T02:43:34.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.185600", + "Timestamp": "2024-05-16T06:16:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.138800", - "Timestamp": "2019-10-15T02:43:34.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.155600", + "Timestamp": "2024-05-16T06:16:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.612800", - "Timestamp": "2019-10-15T02:43:34.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.055600", + "Timestamp": "2024-05-16T06:16:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.612800", - "Timestamp": "2019-10-15T02:43:34.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.941100", + "Timestamp": "2024-05-16T06:16:42.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.582800", - "Timestamp": "2019-10-15T02:43:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.654100", + "Timestamp": "2024-05-16T06:16:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.582800", - "Timestamp": "2019-10-15T02:43:34.000Z" + "SpotPrice": "1.649100", + "Timestamp": "2024-05-16T06:16:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.482800", - "Timestamp": "2019-10-15T02:43:34.000Z" + "SpotPrice": "1.524100", + "Timestamp": "2024-05-16T06:16:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.482800", - "Timestamp": "2019-10-15T02:43:34.000Z" - }, - { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126900", - "Timestamp": "2019-10-15T02:43:18.000Z" - }, - { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126900", - "Timestamp": "2019-10-15T02:43:18.000Z" - }, - { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126900", - "Timestamp": "2019-10-15T02:43:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.826600", + "Timestamp": "2024-05-16T06:16:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.253900", - "Timestamp": "2019-10-15T02:43:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-16T06:16:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.129900", - "Timestamp": "2019-10-15T02:42:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088900", + "Timestamp": "2024-05-16T06:16:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.129900", - "Timestamp": "2019-10-15T02:42:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032600", + "Timestamp": "2024-05-16T06:16:41.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.169900", - "Timestamp": "2019-10-15T02:42:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.550700", + "Timestamp": "2024-05-16T06:16:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.169900", - "Timestamp": "2019-10-15T02:42:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.545700", + "Timestamp": "2024-05-16T06:16:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.069900", - "Timestamp": "2019-10-15T02:42:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.420700", + "Timestamp": "2024-05-16T06:16:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.069900", - "Timestamp": "2019-10-15T02:42:54.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.974300", + "Timestamp": "2024-05-16T06:16:40.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.074700", - "Timestamp": "2019-10-15T02:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.388900", + "Timestamp": "2024-05-16T06:16:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.074700", - "Timestamp": "2019-10-15T02:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.407500", + "Timestamp": "2024-05-16T06:16:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3a.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.114700", - "Timestamp": "2019-10-15T02:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.402500", + "Timestamp": "2024-05-16T06:16:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3a.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.114700", - "Timestamp": "2019-10-15T02:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.277500", + "Timestamp": "2024-05-16T06:16:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.014700", - "Timestamp": "2019-10-15T02:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.588800", + "Timestamp": "2024-05-16T06:16:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.014700", - "Timestamp": "2019-10-15T02:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.402500", + "Timestamp": "2024-05-16T06:16:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.033100", - "Timestamp": "2019-10-15T02:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.397500", + "Timestamp": "2024-05-16T06:16:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.033100", - "Timestamp": "2019-10-15T02:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.272500", + "Timestamp": "2024-05-16T06:16:39.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.078200", - "Timestamp": "2019-10-15T02:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.366100", + "Timestamp": "2024-05-16T06:16:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.078200", - "Timestamp": "2019-10-15T02:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.361100", + "Timestamp": "2024-05-16T06:16:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.078200", - "Timestamp": "2019-10-15T02:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.236100", + "Timestamp": "2024-05-16T06:16:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t2.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.118200", - "Timestamp": "2019-10-15T02:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173500", + "Timestamp": "2024-05-16T06:16:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t2.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.118200", - "Timestamp": "2019-10-15T02:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169500", + "Timestamp": "2024-05-16T06:16:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t2.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.118200", - "Timestamp": "2019-10-15T02:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113500", + "Timestamp": "2024-05-16T06:16:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t2.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.018200", - "Timestamp": "2019-10-15T02:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.476200", + "Timestamp": "2024-05-16T06:16:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t2.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.018200", - "Timestamp": "2019-10-15T02:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.471200", + "Timestamp": "2024-05-16T06:16:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t2.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.018200", - "Timestamp": "2019-10-15T02:42:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.346200", + "Timestamp": "2024-05-16T06:16:37.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "t2.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.036200", - "Timestamp": "2019-10-15T02:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.666000", + "Timestamp": "2024-05-16T06:16:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "t2.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.036200", - "Timestamp": "2019-10-15T02:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.661000", + "Timestamp": "2024-05-16T06:16:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "t2.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.036200", - "Timestamp": "2019-10-15T02:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.536000", + "Timestamp": "2024-05-16T06:16:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.855400", - "Timestamp": "2019-10-15T02:42:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.947200", + "Timestamp": "2024-05-16T06:16:36.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.855400", - "Timestamp": "2019-10-15T02:42:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.068800", + "Timestamp": "2024-05-16T06:16:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.825400", - "Timestamp": "2019-10-15T02:42:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.176600", + "Timestamp": "2024-05-16T06:16:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.825400", - "Timestamp": "2019-10-15T02:42:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.171600", + "Timestamp": "2024-05-16T06:16:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.725400", - "Timestamp": "2019-10-15T02:42:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.046600", + "Timestamp": "2024-05-16T06:16:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.725400", - "Timestamp": "2019-10-15T02:42:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.904500", + "Timestamp": "2024-05-16T06:16:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.612800", - "Timestamp": "2019-10-15T02:42:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.899500", + "Timestamp": "2024-05-16T06:16:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.612800", - "Timestamp": "2019-10-15T02:42:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.774500", + "Timestamp": "2024-05-16T06:16:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.582800", - "Timestamp": "2019-10-15T02:42:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.440900", + "Timestamp": "2024-05-16T06:16:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.582800", - "Timestamp": "2019-10-15T02:42:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.134300", + "Timestamp": "2024-05-16T06:16:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.482800", - "Timestamp": "2019-10-15T02:42:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.129300", + "Timestamp": "2024-05-16T06:16:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.482800", - "Timestamp": "2019-10-15T02:42:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.004300", + "Timestamp": "2024-05-16T06:16:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094900", - "Timestamp": "2019-10-15T02:41:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.062100", + "Timestamp": "2024-05-16T06:16:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134900", - "Timestamp": "2019-10-15T02:41:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.057100", + "Timestamp": "2024-05-16T06:16:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034900", - "Timestamp": "2019-10-15T02:41:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.932100", + "Timestamp": "2024-05-16T06:16:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095700", - "Timestamp": "2019-10-15T02:01:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.725800", + "Timestamp": "2024-05-16T06:16:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135700", - "Timestamp": "2019-10-15T02:01:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.720800", + "Timestamp": "2024-05-16T06:16:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035700", - "Timestamp": "2019-10-15T02:01:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.595800", + "Timestamp": "2024-05-16T06:16:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.120700", - "Timestamp": "2019-10-15T01:56:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133300", + "Timestamp": "2024-05-16T06:16:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.160700", - "Timestamp": "2019-10-15T01:56:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129600", + "Timestamp": "2024-05-16T06:16:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "c3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.060700", - "Timestamp": "2019-10-15T01:56:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073300", + "Timestamp": "2024-05-16T06:16:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.265900", - "Timestamp": "2019-10-15T01:22:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.369000", + "Timestamp": "2024-05-16T06:16:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.235900", - "Timestamp": "2019-10-15T01:22:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.364000", + "Timestamp": "2024-05-16T06:16:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.135900", - "Timestamp": "2019-10-15T01:22:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.239000", + "Timestamp": "2024-05-16T06:16:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.384200", - "Timestamp": "2019-10-15T00:43:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166400", + "Timestamp": "2024-05-16T06:16:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.975000", - "Timestamp": "2019-10-15T00:43:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162700", + "Timestamp": "2024-05-16T06:16:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.384200", - "Timestamp": "2019-10-15T00:43:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T06:16:24.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.507700", - "Timestamp": "2019-10-15T00:43:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.628000", + "Timestamp": "2024-05-16T06:02:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.952000", - "Timestamp": "2019-10-15T00:43:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.623000", + "Timestamp": "2024-05-16T06:02:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.507700", - "Timestamp": "2019-10-15T00:43:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.498000", + "Timestamp": "2024-05-16T06:02:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.313200", - "Timestamp": "2019-10-15T00:42:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.379700", + "Timestamp": "2024-05-16T06:02:38.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.313200", - "Timestamp": "2019-10-15T00:42:51.000Z" - }, - { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.353200", - "Timestamp": "2019-10-15T00:42:51.000Z" + "SpotPrice": "0.743100", + "Timestamp": "2024-05-16T06:02:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.353200", - "Timestamp": "2019-10-15T00:42:51.000Z" + "SpotPrice": "0.738100", + "Timestamp": "2024-05-16T06:02:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.253200", - "Timestamp": "2019-10-15T00:42:51.000Z" + "SpotPrice": "0.613100", + "Timestamp": "2024-05-16T06:02:33.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.253200", - "Timestamp": "2019-10-15T00:42:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.899700", + "Timestamp": "2024-05-16T06:02:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.metal", "ProductDescription": "Windows", - "SpotPrice": "0.384200", - "Timestamp": "2019-10-15T00:42:51.000Z" + "SpotPrice": "5.617600", + "Timestamp": "2024-05-16T06:02:32.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.384200", - "Timestamp": "2019-10-15T00:42:51.000Z" + "SpotPrice": "0.418400", + "Timestamp": "2024-05-16T06:02:31.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.313200", - "Timestamp": "2019-10-15T00:42:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.298900", + "Timestamp": "2024-05-16T06:02:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.313200", - "Timestamp": "2019-10-15T00:42:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021800", + "Timestamp": "2024-05-16T06:02:29.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.353200", - "Timestamp": "2019-10-15T00:42:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.624400", + "Timestamp": "2024-05-16T06:02:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.353200", - "Timestamp": "2019-10-15T00:42:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.619400", + "Timestamp": "2024-05-16T06:02:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.253200", - "Timestamp": "2019-10-15T00:42:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.494400", + "Timestamp": "2024-05-16T06:02:28.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.253200", - "Timestamp": "2019-10-15T00:42:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.775000", + "Timestamp": "2024-05-16T06:02:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.115000", - "Timestamp": "2019-10-15T00:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.745000", + "Timestamp": "2024-05-16T06:02:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.115000", - "Timestamp": "2019-10-15T00:42:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.645000", + "Timestamp": "2024-05-16T06:02:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.301000", - "Timestamp": "2019-10-15T00:42:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094600", + "Timestamp": "2024-05-16T06:02:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.301000", - "Timestamp": "2019-10-15T00:42:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090900", + "Timestamp": "2024-05-16T06:02:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.271000", - "Timestamp": "2019-10-15T00:42:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034600", + "Timestamp": "2024-05-16T06:02:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.271000", - "Timestamp": "2019-10-15T00:42:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.044500", + "Timestamp": "2024-05-16T06:02:27.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.171000", - "Timestamp": "2019-10-15T00:42:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.648900", + "Timestamp": "2024-05-16T06:02:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.171000", - "Timestamp": "2019-10-15T00:42:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.643900", + "Timestamp": "2024-05-16T06:02:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.129900", - "Timestamp": "2019-10-15T00:42:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.518900", + "Timestamp": "2024-05-16T06:02:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.169900", - "Timestamp": "2019-10-15T00:42:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.391500", + "Timestamp": "2024-05-16T06:02:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.069900", - "Timestamp": "2019-10-15T00:42:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.386500", + "Timestamp": "2024-05-16T06:02:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.253900", - "Timestamp": "2019-10-15T00:41:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.261500", + "Timestamp": "2024-05-16T06:02:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.253900", - "Timestamp": "2019-10-15T00:41:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.168200", + "Timestamp": "2024-05-16T06:02:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.253900", - "Timestamp": "2019-10-15T00:41:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.163200", + "Timestamp": "2024-05-16T06:02:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.014800", - "Timestamp": "2019-10-14T21:35:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.038200", + "Timestamp": "2024-05-16T06:02:26.000Z" }, { - "AvailabilityZone": "ap-northeast-1d", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.014800", - "Timestamp": "2019-10-14T21:35:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.180700", + "Timestamp": "2024-05-16T06:02:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.014800", - "Timestamp": "2019-10-14T21:35:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.176700", + "Timestamp": "2024-05-16T06:02:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3en.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.960400", - "Timestamp": "2019-10-14T09:31:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120700", + "Timestamp": "2024-05-16T06:02:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3en.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.930400", - "Timestamp": "2019-10-14T09:31:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.798700", + "Timestamp": "2024-05-16T06:02:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3en.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.830400", - "Timestamp": "2019-10-14T09:31:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.793700", + "Timestamp": "2024-05-16T06:02:25.000Z" }, { - "AvailabilityZone": "ap-northeast-1a", - "InstanceType": "i3en.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "8.246400", - "Timestamp": "2019-10-14T07:53:22.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.668700", + "Timestamp": "2024-05-16T06:02:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.651600", - "Timestamp": "2019-10-16T02:51:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.655100", + "Timestamp": "2024-05-16T06:02:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.651600", - "Timestamp": "2019-10-16T02:51:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "p2.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.625100", + "Timestamp": "2024-05-16T06:02:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.573600", - "Timestamp": "2019-10-16T02:48:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.525100", + "Timestamp": "2024-05-16T06:02:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.573600", - "Timestamp": "2019-10-16T02:48:46.000Z" + "SpotPrice": "0.127000", + "Timestamp": "2024-05-16T06:02:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.443600", - "Timestamp": "2019-10-16T02:48:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123300", + "Timestamp": "2024-05-16T06:02:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.443600", - "Timestamp": "2019-10-16T02:48:46.000Z" - }, - { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "7.765500", - "Timestamp": "2019-10-16T02:43:24.000Z" + "SpotPrice": "0.067000", + "Timestamp": "2024-05-16T06:02:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.574900", - "Timestamp": "2019-10-16T02:43:00.000Z" + "SpotPrice": "0.479600", + "Timestamp": "2024-05-16T06:02:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t4g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.369700", - "Timestamp": "2019-10-16T02:40:53.000Z" + "SpotPrice": "0.075600", + "Timestamp": "2024-05-16T06:02:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.369700", - "Timestamp": "2019-10-16T02:40:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071900", + "Timestamp": "2024-05-16T06:02:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t4g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.239700", - "Timestamp": "2019-10-16T02:40:53.000Z" + "SpotPrice": "0.015600", + "Timestamp": "2024-05-16T06:02:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.239700", - "Timestamp": "2019-10-16T02:40:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.999600", + "Timestamp": "2024-05-16T06:02:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.975700", - "Timestamp": "2019-10-16T02:40:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.994600", + "Timestamp": "2024-05-16T06:02:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.975700", - "Timestamp": "2019-10-16T02:40:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.869600", + "Timestamp": "2024-05-16T06:02:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.999400", - "Timestamp": "2019-10-16T02:38:44.000Z" + "SpotPrice": "3.700100", + "Timestamp": "2024-05-16T06:02:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.999400", - "Timestamp": "2019-10-16T02:38:44.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.291700", + "Timestamp": "2024-05-16T06:02:21.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.999400", - "Timestamp": "2019-10-16T02:38:44.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.261700", + "Timestamp": "2024-05-16T06:02:21.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125900", - "Timestamp": "2019-10-16T02:38:34.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.161700", + "Timestamp": "2024-05-16T06:02:21.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125900", - "Timestamp": "2019-10-16T02:38:34.000Z" + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T06:02:21.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125900", - "Timestamp": "2019-10-16T02:38:34.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T06:02:21.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065900", - "Timestamp": "2019-10-16T02:38:34.000Z" + "SpotPrice": "0.050000", + "Timestamp": "2024-05-16T06:02:21.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065900", - "Timestamp": "2019-10-16T02:38:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.079000", + "Timestamp": "2024-05-16T06:02:21.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065900", - "Timestamp": "2019-10-16T02:38:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.074000", + "Timestamp": "2024-05-16T06:02:21.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.249900", - "Timestamp": "2019-10-16T02:38:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.949000", + "Timestamp": "2024-05-16T06:02:21.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.249900", - "Timestamp": "2019-10-16T02:38:34.000Z" + "SpotPrice": "0.951600", + "Timestamp": "2024-05-16T06:02:21.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.249900", - "Timestamp": "2019-10-16T02:38:34.000Z" - }, - { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.349600", - "Timestamp": "2019-10-16T02:38:33.000Z" + "SpotPrice": "7.883000", + "Timestamp": "2024-05-16T06:02:20.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.349600", - "Timestamp": "2019-10-16T02:38:33.000Z" - }, - { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.349600", - "Timestamp": "2019-10-16T02:38:33.000Z" + "SpotPrice": "0.472600", + "Timestamp": "2024-05-16T06:02:20.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.219600", - "Timestamp": "2019-10-16T02:38:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.442600", + "Timestamp": "2024-05-16T06:02:20.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.219600", - "Timestamp": "2019-10-16T02:38:33.000Z" + "SpotPrice": "0.342600", + "Timestamp": "2024-05-16T06:02:20.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.219600", - "Timestamp": "2019-10-16T02:38:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354000", + "Timestamp": "2024-05-16T06:02:20.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.587600", - "Timestamp": "2019-10-16T02:38:24.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349000", + "Timestamp": "2024-05-16T06:02:20.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.587600", - "Timestamp": "2019-10-16T02:38:24.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224000", + "Timestamp": "2024-05-16T06:02:20.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.587600", - "Timestamp": "2019-10-16T02:38:24.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.173700", + "Timestamp": "2024-05-16T06:02:19.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.256600", - "Timestamp": "2019-10-16T02:34:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.168700", + "Timestamp": "2024-05-16T06:02:19.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.196600", - "Timestamp": "2019-10-16T02:34:23.000Z" + "SpotPrice": "1.043700", + "Timestamp": "2024-05-16T06:02:19.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.440800", - "Timestamp": "2019-10-16T02:34:15.000Z" + "SpotPrice": "3.010400", + "Timestamp": "2024-05-16T06:02:14.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.310800", - "Timestamp": "2019-10-16T02:34:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.005400", + "Timestamp": "2024-05-16T06:02:14.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.664700", - "Timestamp": "2019-10-16T02:34:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.880400", + "Timestamp": "2024-05-16T06:02:14.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.370600", - "Timestamp": "2019-10-16T02:34:05.000Z" - }, - { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.240600", - "Timestamp": "2019-10-16T02:34:05.000Z" + "SpotPrice": "0.922500", + "Timestamp": "2024-05-16T06:02:14.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "6.615100", - "Timestamp": "2019-10-16T02:34:00.000Z" + "SpotPrice": "0.863300", + "Timestamp": "2024-05-16T06:02:14.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "6.485100", - "Timestamp": "2019-10-16T02:34:00.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.917500", + "Timestamp": "2024-05-16T06:02:14.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.562000", - "Timestamp": "2019-10-16T02:26:16.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.858300", + "Timestamp": "2024-05-16T06:02:14.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.431000", - "Timestamp": "2019-10-16T02:26:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.792500", + "Timestamp": "2024-05-16T06:02:14.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.301000", - "Timestamp": "2019-10-16T02:26:08.000Z" + "SpotPrice": "0.733300", + "Timestamp": "2024-05-16T06:02:14.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.702600", - "Timestamp": "2019-10-16T02:26:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.550800", + "Timestamp": "2024-05-16T06:02:13.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.645100", - "Timestamp": "2019-10-16T02:18:17.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.520800", + "Timestamp": "2024-05-16T06:02:13.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "x1e.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r3.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.515100", - "Timestamp": "2019-10-16T02:18:17.000Z" + "SpotPrice": "0.418800", + "Timestamp": "2024-05-16T06:02:13.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "7.239300", - "Timestamp": "2019-10-16T02:01:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.013900", + "Timestamp": "2024-05-16T06:02:13.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.736000", - "Timestamp": "2019-10-16T01:53:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.983900", + "Timestamp": "2024-05-16T06:02:13.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.606000", - "Timestamp": "2019-10-16T01:53:24.000Z" + "SpotPrice": "0.883900", + "Timestamp": "2024-05-16T06:02:13.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.149800", - "Timestamp": "2019-10-16T01:53:18.000Z" + "SpotPrice": "2.583800", + "Timestamp": "2024-05-16T06:02:12.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.177500", - "Timestamp": "2019-10-16T01:53:16.000Z" + "SpotPrice": "0.416900", + "Timestamp": "2024-05-16T06:02:12.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.544900", - "Timestamp": "2019-10-16T01:52:53.000Z" + "SpotPrice": "2.616000", + "Timestamp": "2024-05-16T06:02:09.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "x1e.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "11.111700", - "Timestamp": "2019-10-16T01:52:46.000Z" + "SpotPrice": "0.503200", + "Timestamp": "2024-05-16T06:02:09.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.120900", - "Timestamp": "2019-10-16T01:52:41.000Z" + "SpotPrice": "6.155800", + "Timestamp": "2024-05-16T06:02:08.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.390200", - "Timestamp": "2019-10-16T01:52:02.000Z" - }, - { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.260200", - "Timestamp": "2019-10-16T01:52:02.000Z" + "SpotPrice": "1.936000", + "Timestamp": "2024-05-16T06:02:08.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.031600", - "Timestamp": "2019-10-16T01:50:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.931000", + "Timestamp": "2024-05-16T06:02:08.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "x1e.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.901600", - "Timestamp": "2019-10-16T01:50:46.000Z" + "SpotPrice": "1.806000", + "Timestamp": "2024-05-16T06:02:08.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "x1e.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.18xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.373600", - "Timestamp": "2019-10-16T01:49:46.000Z" + "SpotPrice": "3.729900", + "Timestamp": "2024-05-16T06:02:07.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.657400", - "Timestamp": "2019-10-16T01:47:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105500", + "Timestamp": "2024-05-16T06:02:06.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.657400", - "Timestamp": "2019-10-16T01:47:52.000Z" + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T06:02:06.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.657400", - "Timestamp": "2019-10-16T01:47:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096800", + "Timestamp": "2024-05-16T06:02:06.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.527400", - "Timestamp": "2019-10-16T01:47:52.000Z" + "SpotPrice": "0.040800", + "Timestamp": "2024-05-16T06:02:06.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.527400", - "Timestamp": "2019-10-16T01:47:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.516100", + "Timestamp": "2024-05-16T06:02:04.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.527400", - "Timestamp": "2019-10-16T01:47:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.511100", + "Timestamp": "2024-05-16T06:02:04.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.325300", - "Timestamp": "2019-10-16T01:44:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.386100", + "Timestamp": "2024-05-16T06:02:04.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.507400", - "Timestamp": "2019-10-16T01:36:17.000Z" + "SpotPrice": "2.027400", + "Timestamp": "2024-05-16T06:02:03.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.022400", + "Timestamp": "2024-05-16T06:02:03.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.377400", - "Timestamp": "2019-10-16T01:36:17.000Z" + "SpotPrice": "1.897400", + "Timestamp": "2024-05-16T06:02:03.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.638000", - "Timestamp": "2019-10-16T01:21:46.000Z" + "SpotPrice": "1.836200", + "Timestamp": "2024-05-16T06:02:01.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.508000", - "Timestamp": "2019-10-16T01:21:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.831200", + "Timestamp": "2024-05-16T06:02:01.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.643100", - "Timestamp": "2019-10-16T01:19:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.706200", + "Timestamp": "2024-05-16T06:02:01.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.712200", - "Timestamp": "2019-10-16T01:19:02.000Z" + "SpotPrice": "0.071900", + "Timestamp": "2024-05-16T06:01:57.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.712200", - "Timestamp": "2019-10-16T01:19:02.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042900", + "Timestamp": "2024-05-16T06:01:57.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011900", + "Timestamp": "2024-05-16T06:01:57.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.712200", - "Timestamp": "2019-10-16T01:19:02.000Z" + "SpotPrice": "1.756500", + "Timestamp": "2024-05-16T06:01:57.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.582200", - "Timestamp": "2019-10-16T01:19:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.751500", + "Timestamp": "2024-05-16T06:01:57.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.582200", - "Timestamp": "2019-10-16T01:19:02.000Z" + "SpotPrice": "1.626500", + "Timestamp": "2024-05-16T06:01:57.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.582200", - "Timestamp": "2019-10-16T01:19:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.838000", + "Timestamp": "2024-05-16T06:01:56.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.407500", - "Timestamp": "2019-10-16T01:11:08.000Z" + "SpotPrice": "0.170600", + "Timestamp": "2024-05-16T06:01:56.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.277500", - "Timestamp": "2019-10-16T01:11:08.000Z" - }, - { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.455900", - "Timestamp": "2019-10-16T01:10:57.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.210600", + "Timestamp": "2024-05-16T06:01:56.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.325900", - "Timestamp": "2019-10-16T01:10:57.000Z" + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T06:01:56.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "p2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.511100", - "Timestamp": "2019-10-16T01:10:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.149300", + "Timestamp": "2024-05-16T06:01:55.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "p2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.451100", - "Timestamp": "2019-10-16T01:10:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.416700", + "Timestamp": "2024-05-16T06:01:54.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.501200", - "Timestamp": "2019-10-16T00:54:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.411700", + "Timestamp": "2024-05-16T06:01:54.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.371200", - "Timestamp": "2019-10-16T00:54:49.000Z" + "SpotPrice": "0.286700", + "Timestamp": "2024-05-16T06:01:54.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.379900", - "Timestamp": "2019-10-16T00:54:43.000Z" + "SpotPrice": "11.072400", + "Timestamp": "2024-05-16T06:01:54.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.623500", - "Timestamp": "2019-10-16T00:49:33.000Z" + "SpotPrice": "10.977600", + "Timestamp": "2024-05-16T06:01:54.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "p2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.623500", - "Timestamp": "2019-10-16T00:49:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.877300", + "Timestamp": "2024-05-16T06:01:53.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.014900", - "Timestamp": "2019-10-16T00:46:24.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.872300", + "Timestamp": "2024-05-16T06:01:53.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.179900", - "Timestamp": "2019-10-16T00:45:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.747300", + "Timestamp": "2024-05-16T06:01:53.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.119900", - "Timestamp": "2019-10-16T00:45:32.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.521200", + "Timestamp": "2024-05-16T06:01:50.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.998200", - "Timestamp": "2019-10-16T00:39:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.516200", + "Timestamp": "2024-05-16T06:01:50.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.998200", - "Timestamp": "2019-10-16T00:39:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.391200", + "Timestamp": "2024-05-16T06:01:50.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.546000", - "Timestamp": "2019-10-16T00:39:49.000Z" + "SpotPrice": "0.335000", + "Timestamp": "2024-05-16T06:01:49.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.546000", - "Timestamp": "2019-10-16T00:39:49.000Z" + "SpotPrice": "0.329900", + "Timestamp": "2024-05-16T06:01:49.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.546000", - "Timestamp": "2019-10-16T00:39:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.330000", + "Timestamp": "2024-05-16T06:01:49.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324900", + "Timestamp": "2024-05-16T06:01:49.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.416000", - "Timestamp": "2019-10-16T00:39:49.000Z" + "SpotPrice": "0.205000", + "Timestamp": "2024-05-16T06:01:49.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.416000", - "Timestamp": "2019-10-16T00:39:49.000Z" + "SpotPrice": "0.199900", + "Timestamp": "2024-05-16T06:01:49.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.573700", + "Timestamp": "2024-05-16T06:01:49.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.949900", + "Timestamp": "2024-05-16T06:01:49.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.944900", + "Timestamp": "2024-05-16T06:01:49.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.416000", - "Timestamp": "2019-10-16T00:39:49.000Z" + "SpotPrice": "0.819900", + "Timestamp": "2024-05-16T06:01:49.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.large", "ProductDescription": "Windows", - "SpotPrice": "0.563200", - "Timestamp": "2019-10-16T00:39:43.000Z" + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T06:01:48.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.large", "ProductDescription": "Windows", - "SpotPrice": "0.563200", - "Timestamp": "2019-10-16T00:39:43.000Z" + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T06:01:48.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.metal", "ProductDescription": "Windows", - "SpotPrice": "0.563200", - "Timestamp": "2019-10-16T00:39:43.000Z" + "SpotPrice": "7.559300", + "Timestamp": "2024-05-16T06:01:48.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.712200", - "Timestamp": "2019-10-16T00:39:24.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.587500", + "Timestamp": "2024-05-16T06:01:47.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.712200", - "Timestamp": "2019-10-16T00:39:24.000Z" + "SpotPrice": "0.787500", + "Timestamp": "2024-05-16T06:01:47.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.582200", - "Timestamp": "2019-10-16T00:39:24.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.782500", + "Timestamp": "2024-05-16T06:01:47.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.582200", - "Timestamp": "2019-10-16T00:39:24.000Z" + "SpotPrice": "0.657500", + "Timestamp": "2024-05-16T06:01:47.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.382400", - "Timestamp": "2019-10-16T00:37:13.000Z" + "SpotPrice": "1.225900", + "Timestamp": "2024-05-16T06:01:46.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.252400", - "Timestamp": "2019-10-16T00:37:13.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.195900", + "Timestamp": "2024-05-16T06:01:46.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.861900", - "Timestamp": "2019-10-16T00:21:07.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.095900", + "Timestamp": "2024-05-16T06:01:46.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.486400", - "Timestamp": "2019-10-16T00:20:59.000Z" + "SpotPrice": "0.632200", + "Timestamp": "2024-05-16T06:01:46.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.627200", + "Timestamp": "2024-05-16T06:01:46.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.356400", - "Timestamp": "2019-10-16T00:20:59.000Z" + "SpotPrice": "0.502200", + "Timestamp": "2024-05-16T06:01:46.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.558800", - "Timestamp": "2019-10-16T00:12:17.000Z" + "SpotPrice": "4.161000", + "Timestamp": "2024-05-16T06:01:46.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.156000", + "Timestamp": "2024-05-16T06:01:46.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.428800", - "Timestamp": "2019-10-16T00:12:17.000Z" + "SpotPrice": "4.031000", + "Timestamp": "2024-05-16T06:01:46.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "t2.micro", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.510900", - "Timestamp": "2019-10-16T00:04:21.000Z" + "SpotPrice": "0.062900", + "Timestamp": "2024-05-16T06:01:45.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002900", + "Timestamp": "2024-05-16T06:01:45.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "t2.micro", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.380900", - "Timestamp": "2019-10-16T00:04:21.000Z" + "SpotPrice": "0.002900", + "Timestamp": "2024-05-16T06:01:45.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.718000", - "Timestamp": "2019-10-16T00:03:48.000Z" + "SpotPrice": "0.176800", + "Timestamp": "2024-05-16T06:01:44.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.588000", - "Timestamp": "2019-10-16T00:03:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172800", + "Timestamp": "2024-05-16T06:01:44.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.207000", - "Timestamp": "2019-10-16T00:03:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116800", + "Timestamp": "2024-05-16T06:01:44.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.077000", - "Timestamp": "2019-10-16T00:03:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.186400", + "Timestamp": "2024-05-16T06:01:44.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.816100", - "Timestamp": "2019-10-15T23:55:18.000Z" + "SpotPrice": "10.874900", + "Timestamp": "2024-05-16T06:01:42.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "x1e.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.18xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.764800", - "Timestamp": "2019-10-15T23:55:13.000Z" + "SpotPrice": "3.859100", + "Timestamp": "2024-05-16T06:01:42.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.974100", - "Timestamp": "2019-10-15T23:55:04.000Z" + "SpotPrice": "0.482600", + "Timestamp": "2024-05-16T06:01:42.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.477600", + "Timestamp": "2024-05-16T06:01:42.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.844100", - "Timestamp": "2019-10-15T23:55:04.000Z" + "SpotPrice": "0.352600", + "Timestamp": "2024-05-16T06:01:42.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "x1e.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216100", + "Timestamp": "2024-05-16T06:01:42.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "9.802000", - "Timestamp": "2019-10-15T23:47:45.000Z" + "SpotPrice": "1.223300", + "Timestamp": "2024-05-16T06:01:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "x1e.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.193300", + "Timestamp": "2024-05-16T06:01:41.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "9.672000", - "Timestamp": "2019-10-15T23:47:45.000Z" + "SpotPrice": "1.093300", + "Timestamp": "2024-05-16T06:01:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.268000", - "Timestamp": "2019-10-15T23:47:41.000Z" + "SpotPrice": "0.147000", + "Timestamp": "2024-05-16T06:01:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143300", + "Timestamp": "2024-05-16T06:01:41.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.138000", - "Timestamp": "2019-10-15T23:47:41.000Z" + "SpotPrice": "0.087000", + "Timestamp": "2024-05-16T06:01:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.605500", - "Timestamp": "2019-10-15T23:47:36.000Z" + "SpotPrice": "5.399600", + "Timestamp": "2024-05-16T06:01:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120700", - "Timestamp": "2019-10-15T23:47:35.000Z" + "SpotPrice": "1.717800", + "Timestamp": "2024-05-16T06:01:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5ad.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060700", - "Timestamp": "2019-10-15T23:47:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.794500", + "Timestamp": "2024-05-16T06:01:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.249900", - "Timestamp": "2019-10-15T23:39:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.712800", + "Timestamp": "2024-05-16T06:01:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.249900", - "Timestamp": "2019-10-15T23:39:49.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.789500", + "Timestamp": "2024-05-16T06:01:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.249900", - "Timestamp": "2019-10-15T23:39:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.587800", + "Timestamp": "2024-05-16T06:01:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125900", - "Timestamp": "2019-10-15T23:39:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.664500", + "Timestamp": "2024-05-16T06:01:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125900", - "Timestamp": "2019-10-15T23:39:46.000Z" + "SpotPrice": "2.148500", + "Timestamp": "2024-05-16T06:01:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125900", - "Timestamp": "2019-10-15T23:39:46.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.118500", + "Timestamp": "2024-05-16T06:01:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065900", - "Timestamp": "2019-10-15T23:39:46.000Z" + "SpotPrice": "2.018500", + "Timestamp": "2024-05-16T06:01:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065900", - "Timestamp": "2019-10-15T23:39:46.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.911000", + "Timestamp": "2024-05-16T06:01:39.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065900", - "Timestamp": "2019-10-15T23:39:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.340700", + "Timestamp": "2024-05-16T06:01:38.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.254300", - "Timestamp": "2019-10-15T23:39:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.335700", + "Timestamp": "2024-05-16T06:01:38.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.124300", - "Timestamp": "2019-10-15T23:39:23.000Z" + "SpotPrice": "4.210700", + "Timestamp": "2024-05-16T06:01:38.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.011900", - "Timestamp": "2019-10-15T23:39:23.000Z" + "SpotPrice": "0.300500", + "Timestamp": "2024-05-16T06:01:38.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.881900", - "Timestamp": "2019-10-15T23:39:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.295500", + "Timestamp": "2024-05-16T06:01:38.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.152600", - "Timestamp": "2019-10-15T23:30:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170500", + "Timestamp": "2024-05-16T06:01:38.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m4.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.994500", - "Timestamp": "2019-10-15T23:13:41.000Z" + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T06:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146600", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m4.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.864500", - "Timestamp": "2019-10-15T23:13:41.000Z" + "SpotPrice": "0.046600", + "Timestamp": "2024-05-16T06:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r3.large", "ProductDescription": "Windows", - "SpotPrice": "4.076400", - "Timestamp": "2019-10-15T23:13:41.000Z" + "SpotPrice": "0.147300", + "Timestamp": "2024-05-16T06:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r4.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.633400", - "Timestamp": "2019-10-15T23:06:32.000Z" + "SpotPrice": "0.810500", + "Timestamp": "2024-05-16T06:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.074800", - "Timestamp": "2019-10-15T23:06:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.780500", + "Timestamp": "2024-05-16T06:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r4.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.503400", - "Timestamp": "2019-10-15T23:06:32.000Z" + "SpotPrice": "0.680500", + "Timestamp": "2024-05-16T06:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.944800", - "Timestamp": "2019-10-15T23:06:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086800", + "Timestamp": "2024-05-16T06:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.810000", - "Timestamp": "2019-10-15T23:02:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083100", + "Timestamp": "2024-05-16T06:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.680000", - "Timestamp": "2019-10-15T23:02:04.000Z" + "SpotPrice": "0.026800", + "Timestamp": "2024-05-16T06:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.810000", - "Timestamp": "2019-10-15T23:02:04.000Z" + "SpotPrice": "0.096300", + "Timestamp": "2024-05-16T06:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092300", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.680000", - "Timestamp": "2019-10-15T23:02:04.000Z" + "SpotPrice": "0.036300", + "Timestamp": "2024-05-16T06:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.283900", - "Timestamp": "2019-10-15T22:57:56.000Z" + "SpotPrice": "1.043400", + "Timestamp": "2024-05-16T06:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.038400", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.153900", - "Timestamp": "2019-10-15T22:57:56.000Z" + "SpotPrice": "0.913400", + "Timestamp": "2024-05-16T06:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "x1e.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128500", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.548000", - "Timestamp": "2019-10-15T22:57:04.000Z" + "SpotPrice": "0.097300", + "Timestamp": "2024-05-16T06:01:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "x1e.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093300", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.418000", - "Timestamp": "2019-10-15T22:57:04.000Z" + "SpotPrice": "0.037300", + "Timestamp": "2024-05-16T06:01:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.3xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.357000", - "Timestamp": "2019-10-15T22:57:04.000Z" + "SpotPrice": "0.683200", + "Timestamp": "2024-05-16T06:01:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.678200", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.3xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.227000", - "Timestamp": "2019-10-15T22:57:04.000Z" + "SpotPrice": "0.553200", + "Timestamp": "2024-05-16T06:01:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.086800", - "Timestamp": "2019-10-15T22:56:57.000Z" + "SpotPrice": "3.855100", + "Timestamp": "2024-05-16T06:01:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.192700", - "Timestamp": "2019-10-15T22:56:53.000Z" + "SpotPrice": "0.222800", + "Timestamp": "2024-05-16T06:01:35.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2idn.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.325300", - "Timestamp": "2019-10-15T22:56:32.000Z" + "SpotPrice": "5.762500", + "Timestamp": "2024-05-16T06:01:34.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.140700", - "Timestamp": "2019-10-15T22:49:06.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.829700", + "Timestamp": "2024-05-16T06:01:34.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.010700", - "Timestamp": "2019-10-15T22:49:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.775600", + "Timestamp": "2024-05-16T06:01:33.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125900", - "Timestamp": "2019-10-15T22:41:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.246300", + "Timestamp": "2024-05-16T06:01:32.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065900", - "Timestamp": "2019-10-15T22:41:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.556300", + "Timestamp": "2024-05-16T06:01:32.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.948600", - "Timestamp": "2019-10-15T22:41:06.000Z" + "SpotPrice": "5.159100", + "Timestamp": "2024-05-16T06:01:32.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.948600", - "Timestamp": "2019-10-15T22:41:06.000Z" + "SpotPrice": "0.845000", + "Timestamp": "2024-05-16T06:01:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.249900", - "Timestamp": "2019-10-15T22:40:32.000Z" + "SpotPrice": "5.800400", + "Timestamp": "2024-05-16T06:01:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.850500", - "Timestamp": "2019-10-15T22:40:23.000Z" + "SpotPrice": "0.704500", + "Timestamp": "2024-05-16T06:01:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.720500", - "Timestamp": "2019-10-15T22:40:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.699500", + "Timestamp": "2024-05-16T06:01:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.250200", - "Timestamp": "2019-10-15T22:40:17.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.574500", + "Timestamp": "2024-05-16T06:01:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.921100", - "Timestamp": "2019-10-15T22:39:42.000Z" + "SpotPrice": "5.683700", + "Timestamp": "2024-05-16T06:01:26.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.921100", - "Timestamp": "2019-10-15T22:39:42.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.678700", + "Timestamp": "2024-05-16T06:01:26.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.553700", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.921100", - "Timestamp": "2019-10-15T22:39:42.000Z" + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T06:01:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.791100", - "Timestamp": "2019-10-15T22:39:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T06:01:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.791100", - "Timestamp": "2019-10-15T22:39:42.000Z" + "SpotPrice": "0.047700", + "Timestamp": "2024-05-16T06:01:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080100", + "Timestamp": "2024-05-16T06:01:22.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076400", + "Timestamp": "2024-05-16T06:01:22.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.791100", - "Timestamp": "2019-10-15T22:39:42.000Z" + "SpotPrice": "0.020100", + "Timestamp": "2024-05-16T06:01:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.999100", - "Timestamp": "2019-10-15T22:39:42.000Z" + "SpotPrice": "3.610900", + "Timestamp": "2024-05-16T05:59:08.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.999100", - "Timestamp": "2019-10-15T22:39:42.000Z" + "SpotPrice": "3.610900", + "Timestamp": "2024-05-16T05:59:08.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1e.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.999100", - "Timestamp": "2019-10-15T22:39:42.000Z" + "SpotPrice": "4.278400", + "Timestamp": "2024-05-16T05:58:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.487600", - "Timestamp": "2019-10-15T22:37:43.000Z" + "SpotPrice": "0.241400", + "Timestamp": "2024-05-16T05:48:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.487600", - "Timestamp": "2019-10-15T22:37:43.000Z" + "SpotPrice": "0.452800", + "Timestamp": "2024-05-16T05:47:34.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.249600", - "Timestamp": "2019-10-15T22:37:41.000Z" + "SpotPrice": "2.112300", + "Timestamp": "2024-05-16T05:47:32.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.249600", - "Timestamp": "2019-10-15T22:37:41.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.082300", + "Timestamp": "2024-05-16T05:47:32.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.119600", - "Timestamp": "2019-10-15T22:37:41.000Z" + "SpotPrice": "1.982300", + "Timestamp": "2024-05-16T05:47:32.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.119600", - "Timestamp": "2019-10-15T22:37:41.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.648900", + "Timestamp": "2024-05-16T05:47:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.249900", - "Timestamp": "2019-10-15T22:37:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.643900", + "Timestamp": "2024-05-16T05:47:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.249900", - "Timestamp": "2019-10-15T22:37:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.518900", + "Timestamp": "2024-05-16T05:47:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.249900", - "Timestamp": "2019-10-15T22:37:33.000Z" + "SpotPrice": "0.073100", + "Timestamp": "2024-05-16T05:47:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.119900", - "Timestamp": "2019-10-15T22:37:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044100", + "Timestamp": "2024-05-16T05:47:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.119900", - "Timestamp": "2019-10-15T22:37:33.000Z" + "SpotPrice": "0.013100", + "Timestamp": "2024-05-16T05:47:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.119900", - "Timestamp": "2019-10-15T22:37:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153000", + "Timestamp": "2024-05-16T05:47:26.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.487900", - "Timestamp": "2019-10-15T22:37:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149300", + "Timestamp": "2024-05-16T05:47:26.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.487900", - "Timestamp": "2019-10-15T22:37:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093000", + "Timestamp": "2024-05-16T05:47:26.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.487900", - "Timestamp": "2019-10-15T22:37:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.815100", + "Timestamp": "2024-05-16T05:47:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122900", - "Timestamp": "2019-10-15T22:34:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.810100", + "Timestamp": "2024-05-16T05:47:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062900", - "Timestamp": "2019-10-15T22:34:32.000Z" + "SpotPrice": "3.685100", + "Timestamp": "2024-05-16T05:47:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.246900", - "Timestamp": "2019-10-15T22:34:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.691100", + "Timestamp": "2024-05-16T05:47:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.626900", - "Timestamp": "2019-10-15T22:24:16.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.686100", + "Timestamp": "2024-05-16T05:47:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.496900", - "Timestamp": "2019-10-15T22:24:16.000Z" + "SpotPrice": "0.561100", + "Timestamp": "2024-05-16T05:47:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "im4gn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.439900", - "Timestamp": "2019-10-15T22:24:10.000Z" + "SpotPrice": "0.100900", + "Timestamp": "2024-05-16T05:47:20.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-16T05:47:20.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "im4gn.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.309900", - "Timestamp": "2019-10-15T22:24:10.000Z" + "SpotPrice": "0.040900", + "Timestamp": "2024-05-16T05:47:20.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.273700", - "Timestamp": "2019-10-15T22:24:00.000Z" + "SpotPrice": "0.307400", + "Timestamp": "2024-05-16T05:47:16.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.143700", - "Timestamp": "2019-10-15T22:24:00.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.277400", + "Timestamp": "2024-05-16T05:47:16.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.491500", - "Timestamp": "2019-10-15T22:15:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177400", + "Timestamp": "2024-05-16T05:47:16.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.070400", - "Timestamp": "2019-10-15T22:12:42.000Z" + "SpotPrice": "0.877100", + "Timestamp": "2024-05-16T05:47:15.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "t3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.070400", - "Timestamp": "2019-10-15T22:12:42.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078400", + "Timestamp": "2024-05-16T05:47:14.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.070400", - "Timestamp": "2019-10-15T22:12:42.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.049400", + "Timestamp": "2024-05-16T05:47:14.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.302000", - "Timestamp": "2019-10-15T22:07:00.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018400", + "Timestamp": "2024-05-16T05:47:14.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "d3.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.477400", - "Timestamp": "2019-10-15T22:06:51.000Z" + "SpotPrice": "0.506200", + "Timestamp": "2024-05-16T05:47:14.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "d3.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-15T21:58:49.000Z" + "SpotPrice": "0.381700", + "Timestamp": "2024-05-16T05:47:12.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "d3.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-15T21:58:49.000Z" + "SpotPrice": "0.376600", + "Timestamp": "2024-05-16T05:47:12.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-15T21:58:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.376700", + "Timestamp": "2024-05-16T05:47:12.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033000", - "Timestamp": "2019-10-15T21:58:49.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.371600", + "Timestamp": "2024-05-16T05:47:12.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "d3.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033000", - "Timestamp": "2019-10-15T21:58:49.000Z" + "SpotPrice": "0.251700", + "Timestamp": "2024-05-16T05:47:12.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "d3.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033000", - "Timestamp": "2019-10-15T21:58:49.000Z" - }, - { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089900", - "Timestamp": "2019-10-15T21:58:45.000Z" + "SpotPrice": "0.246600", + "Timestamp": "2024-05-16T05:47:12.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089900", - "Timestamp": "2019-10-15T21:58:45.000Z" + "SpotPrice": "1.116800", + "Timestamp": "2024-05-16T05:47:11.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029900", - "Timestamp": "2019-10-15T21:58:45.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.111800", + "Timestamp": "2024-05-16T05:47:11.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029900", - "Timestamp": "2019-10-15T21:58:45.000Z" + "SpotPrice": "0.986800", + "Timestamp": "2024-05-16T05:47:11.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.121900", - "Timestamp": "2019-10-15T21:58:39.000Z" + "SpotPrice": "0.451300", + "Timestamp": "2024-05-16T05:47:08.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r3.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.121900", - "Timestamp": "2019-10-15T21:58:39.000Z" + "SpotPrice": "5.380800", + "Timestamp": "2024-05-16T05:47:08.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.259500", - "Timestamp": "2019-10-15T21:58:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.563400", + "Timestamp": "2024-05-16T05:47:05.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.259500", - "Timestamp": "2019-10-15T21:58:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.558400", + "Timestamp": "2024-05-16T05:47:05.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.242300", - "Timestamp": "2019-10-15T21:58:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.433400", + "Timestamp": "2024-05-16T05:47:05.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.242300", - "Timestamp": "2019-10-15T21:58:36.000Z" + "SpotPrice": "1.558200", + "Timestamp": "2024-05-16T05:47:05.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.112300", - "Timestamp": "2019-10-15T21:58:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.553200", + "Timestamp": "2024-05-16T05:47:05.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.112300", - "Timestamp": "2019-10-15T21:58:36.000Z" + "SpotPrice": "1.428200", + "Timestamp": "2024-05-16T05:47:05.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.125000", - "Timestamp": "2019-10-15T21:58:25.000Z" + "SpotPrice": "3.503100", + "Timestamp": "2024-05-16T05:47:05.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.125000", - "Timestamp": "2019-10-15T21:58:25.000Z" + "SpotPrice": "3.548900", + "Timestamp": "2024-05-16T05:47:05.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.large", "ProductDescription": "Windows", - "SpotPrice": "0.125000", - "Timestamp": "2019-10-15T21:58:25.000Z" + "SpotPrice": "0.116900", + "Timestamp": "2024-05-16T05:47:03.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.18xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.568400", - "Timestamp": "2019-10-15T21:58:18.000Z" + "SpotPrice": "1.380900", + "Timestamp": "2024-05-16T05:47:03.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.568400", - "Timestamp": "2019-10-15T21:58:18.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.375900", + "Timestamp": "2024-05-16T05:47:03.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.18xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.438400", - "Timestamp": "2019-10-15T21:58:18.000Z" + "SpotPrice": "1.250900", + "Timestamp": "2024-05-16T05:47:03.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.438400", - "Timestamp": "2019-10-15T21:58:18.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.271600", + "Timestamp": "2024-05-16T05:47:02.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.metal", "ProductDescription": "Windows", - "SpotPrice": "5.854400", - "Timestamp": "2019-10-15T21:58:18.000Z" + "SpotPrice": "5.344600", + "Timestamp": "2024-05-16T05:47:02.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.854400", - "Timestamp": "2019-10-15T21:58:18.000Z" + "SpotPrice": "0.424500", + "Timestamp": "2024-05-16T05:47:01.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "g4dn.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.574300", - "Timestamp": "2019-10-15T21:58:14.000Z" + "SpotPrice": "0.122200", + "Timestamp": "2024-05-16T05:46:51.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.574300", - "Timestamp": "2019-10-15T21:58:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118500", + "Timestamp": "2024-05-16T05:46:51.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "g4dn.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.444300", - "Timestamp": "2019-10-15T21:58:14.000Z" + "SpotPrice": "0.062200", + "Timestamp": "2024-05-16T05:46:51.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.444300", - "Timestamp": "2019-10-15T21:58:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.623000", + "Timestamp": "2024-05-16T05:46:51.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.180300", - "Timestamp": "2019-10-15T21:58:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.593000", + "Timestamp": "2024-05-16T05:46:51.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "g4dn.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.180300", - "Timestamp": "2019-10-15T21:58:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.493000", + "Timestamp": "2024-05-16T05:46:51.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "x1e.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.metal-48xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.855400", - "Timestamp": "2019-10-15T21:57:39.000Z" + "SpotPrice": "3.742900", + "Timestamp": "2024-05-16T05:46:50.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "x1e.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.737900", + "Timestamp": "2024-05-16T05:46:50.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.725400", - "Timestamp": "2019-10-15T21:57:39.000Z" + "SpotPrice": "3.612900", + "Timestamp": "2024-05-16T05:46:50.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.657400", - "Timestamp": "2019-10-15T21:57:20.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.671500", + "Timestamp": "2024-05-16T05:46:50.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.527400", - "Timestamp": "2019-10-15T21:57:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.243500", + "Timestamp": "2024-05-16T05:46:49.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "x1e.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.093400", - "Timestamp": "2019-10-15T21:57:12.000Z" + "SpotPrice": "4.132200", + "Timestamp": "2024-05-16T05:46:49.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.669400", - "Timestamp": "2019-10-15T21:57:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.492600", + "Timestamp": "2024-05-16T05:46:49.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.669400", - "Timestamp": "2019-10-15T21:57:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.611800", + "Timestamp": "2024-05-16T05:46:47.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.18xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.669400", - "Timestamp": "2019-10-15T21:57:08.000Z" + "SpotPrice": "1.306900", + "Timestamp": "2024-05-16T05:46:47.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.539400", - "Timestamp": "2019-10-15T21:57:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.276900", + "Timestamp": "2024-05-16T05:46:47.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.18xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.539400", - "Timestamp": "2019-10-15T21:57:08.000Z" + "SpotPrice": "1.176900", + "Timestamp": "2024-05-16T05:46:47.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.539400", - "Timestamp": "2019-10-15T21:57:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220100", + "Timestamp": "2024-05-16T05:46:45.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120200", - "Timestamp": "2019-10-15T21:57:04.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231400", + "Timestamp": "2024-05-16T05:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.119800", - "Timestamp": "2019-10-15T21:57:04.000Z" + "SpotPrice": "0.555400", + "Timestamp": "2024-05-16T05:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060200", - "Timestamp": "2019-10-15T21:57:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.550400", + "Timestamp": "2024-05-16T05:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.059800", - "Timestamp": "2019-10-15T21:57:04.000Z" + "SpotPrice": "0.425400", + "Timestamp": "2024-05-16T05:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.243800", - "Timestamp": "2019-10-15T21:57:02.000Z" + "SpotPrice": "2.952300", + "Timestamp": "2024-05-16T05:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.243800", - "Timestamp": "2019-10-15T21:57:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099500", + "Timestamp": "2024-05-16T05:46:42.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.999400", - "Timestamp": "2019-10-15T21:56:57.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095800", + "Timestamp": "2024-05-16T05:46:42.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.950900", - "Timestamp": "2019-10-15T21:56:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039500", + "Timestamp": "2024-05-16T05:46:42.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.950900", - "Timestamp": "2019-10-15T21:56:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.209400", + "Timestamp": "2024-05-16T05:46:42.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.950900", - "Timestamp": "2019-10-15T21:56:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.204400", + "Timestamp": "2024-05-16T05:46:42.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.449200", - "Timestamp": "2019-10-15T21:56:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.079400", + "Timestamp": "2024-05-16T05:46:42.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.449200", - "Timestamp": "2019-10-15T21:56:53.000Z" + "SpotPrice": "0.683500", + "Timestamp": "2024-05-16T05:46:42.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.449200", - "Timestamp": "2019-10-15T21:56:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.678500", + "Timestamp": "2024-05-16T05:46:42.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.319200", - "Timestamp": "2019-10-15T21:56:53.000Z" + "SpotPrice": "0.553500", + "Timestamp": "2024-05-16T05:46:42.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.319200", - "Timestamp": "2019-10-15T21:56:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.412100", + "Timestamp": "2024-05-16T05:46:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.319200", - "Timestamp": "2019-10-15T21:56:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.407100", + "Timestamp": "2024-05-16T05:46:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.687200", - "Timestamp": "2019-10-15T21:56:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.282100", + "Timestamp": "2024-05-16T05:46:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.687200", - "Timestamp": "2019-10-15T21:56:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.839400", + "Timestamp": "2024-05-16T05:46:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.687200", - "Timestamp": "2019-10-15T21:56:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.834400", + "Timestamp": "2024-05-16T05:46:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.136900", - "Timestamp": "2019-10-15T21:56:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.709400", + "Timestamp": "2024-05-16T05:46:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r3.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.136900", - "Timestamp": "2019-10-15T21:56:45.000Z" + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T05:46:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.136900", - "Timestamp": "2019-10-15T21:56:45.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150500", + "Timestamp": "2024-05-16T05:46:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r3.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.006900", - "Timestamp": "2019-10-15T21:56:45.000Z" + "SpotPrice": "0.050500", + "Timestamp": "2024-05-16T05:46:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.006900", - "Timestamp": "2019-10-15T21:56:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.988900", + "Timestamp": "2024-05-16T05:46:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.006900", - "Timestamp": "2019-10-15T21:56:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.624600", + "Timestamp": "2024-05-16T05:46:40.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.195400", - "Timestamp": "2019-10-15T21:56:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.619600", + "Timestamp": "2024-05-16T05:46:40.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.195400", - "Timestamp": "2019-10-15T21:56:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.494600", + "Timestamp": "2024-05-16T05:46:40.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.195400", - "Timestamp": "2019-10-15T21:56:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.963200", + "Timestamp": "2024-05-16T05:46:40.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.975400", - "Timestamp": "2019-10-15T21:56:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.958200", + "Timestamp": "2024-05-16T05:46:40.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.975400", - "Timestamp": "2019-10-15T21:56:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.833200", + "Timestamp": "2024-05-16T05:46:40.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.975400", - "Timestamp": "2019-10-15T21:56:28.000Z" + "SpotPrice": "0.226700", + "Timestamp": "2024-05-16T05:46:40.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.633400", - "Timestamp": "2019-10-15T21:56:28.000Z" + "SpotPrice": "1.698500", + "Timestamp": "2024-05-16T05:46:40.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.633400", - "Timestamp": "2019-10-15T21:56:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.693500", + "Timestamp": "2024-05-16T05:46:40.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.633400", - "Timestamp": "2019-10-15T21:56:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.568500", + "Timestamp": "2024-05-16T05:46:40.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.503400", - "Timestamp": "2019-10-15T21:56:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.698600", + "Timestamp": "2024-05-16T05:46:38.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.503400", - "Timestamp": "2019-10-15T21:56:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.693600", + "Timestamp": "2024-05-16T05:46:38.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.503400", - "Timestamp": "2019-10-15T21:56:28.000Z" + "SpotPrice": "0.568600", + "Timestamp": "2024-05-16T05:46:38.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.022200", - "Timestamp": "2019-10-15T21:54:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.381500", + "Timestamp": "2024-05-16T05:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "t3.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.022200", - "Timestamp": "2019-10-15T21:54:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.376500", + "Timestamp": "2024-05-16T05:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.022200", - "Timestamp": "2019-10-15T21:54:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.251500", + "Timestamp": "2024-05-16T05:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.073000", - "Timestamp": "2019-10-15T21:51:40.000Z" + "SpotPrice": "0.335500", + "Timestamp": "2024-05-16T05:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.073000", - "Timestamp": "2019-10-15T21:51:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.330500", + "Timestamp": "2024-05-16T05:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.073000", - "Timestamp": "2019-10-15T21:51:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.205500", + "Timestamp": "2024-05-16T05:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.013000", - "Timestamp": "2019-10-15T21:51:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.148000", + "Timestamp": "2024-05-16T05:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.013000", - "Timestamp": "2019-10-15T21:51:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139400", + "Timestamp": "2024-05-16T05:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3.micro", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135700", + "Timestamp": "2024-05-16T05:46:37.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.013000", - "Timestamp": "2019-10-15T21:51:40.000Z" + "SpotPrice": "0.079400", + "Timestamp": "2024-05-16T05:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.634500", - "Timestamp": "2019-10-15T21:42:15.000Z" + "SpotPrice": "0.073300", + "Timestamp": "2024-05-16T05:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069600", + "Timestamp": "2024-05-16T05:46:37.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.504500", - "Timestamp": "2019-10-15T21:42:15.000Z" + "SpotPrice": "0.013300", + "Timestamp": "2024-05-16T05:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.617500", - "Timestamp": "2019-10-15T21:41:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.211100", + "Timestamp": "2024-05-16T05:46:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.998800", - "Timestamp": "2019-10-15T21:38:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.206100", + "Timestamp": "2024-05-16T05:46:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.998800", - "Timestamp": "2019-10-15T21:38:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.081100", + "Timestamp": "2024-05-16T05:46:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.184800", - "Timestamp": "2019-10-15T21:38:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.948700", + "Timestamp": "2024-05-16T05:46:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.184800", - "Timestamp": "2019-10-15T21:38:42.000Z" + "SpotPrice": "0.969700", + "Timestamp": "2024-05-16T05:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.054800", - "Timestamp": "2019-10-15T21:38:42.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.964700", + "Timestamp": "2024-05-16T05:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.054800", - "Timestamp": "2019-10-15T21:38:42.000Z" + "SpotPrice": "0.839700", + "Timestamp": "2024-05-16T05:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5n.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090000", - "Timestamp": "2019-10-15T21:38:32.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218900", + "Timestamp": "2024-05-16T05:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5n.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090000", - "Timestamp": "2019-10-15T21:38:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221600", + "Timestamp": "2024-05-16T05:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5n.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090000", - "Timestamp": "2019-10-15T21:38:32.000Z" + "SpotPrice": "0.594800", + "Timestamp": "2024-05-16T05:46:34.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5n.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030000", - "Timestamp": "2019-10-15T21:38:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.589800", + "Timestamp": "2024-05-16T05:46:34.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5n.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030000", - "Timestamp": "2019-10-15T21:38:32.000Z" + "SpotPrice": "0.464800", + "Timestamp": "2024-05-16T05:46:34.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5n.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030000", - "Timestamp": "2019-10-15T21:38:32.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229400", + "Timestamp": "2024-05-16T05:46:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5n.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.122000", - "Timestamp": "2019-10-15T21:38:20.000Z" + "SpotPrice": "2.713000", + "Timestamp": "2024-05-16T05:46:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5n.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.122000", - "Timestamp": "2019-10-15T21:38:20.000Z" + "SpotPrice": "7.496600", + "Timestamp": "2024-05-16T05:46:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5n.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.large", "ProductDescription": "Windows", - "SpotPrice": "0.122000", - "Timestamp": "2019-10-15T21:38:20.000Z" + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T05:46:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067000", - "Timestamp": "2019-10-15T21:35:14.000Z" + "SpotPrice": "0.800700", + "Timestamp": "2024-05-16T05:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.795700", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007000", - "Timestamp": "2019-10-15T21:35:14.000Z" + "SpotPrice": "0.670700", + "Timestamp": "2024-05-16T05:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067000", - "Timestamp": "2019-10-15T21:35:14.000Z" + "SpotPrice": "0.223900", + "Timestamp": "2024-05-16T05:46:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3a.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007000", - "Timestamp": "2019-10-15T21:35:14.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.220200", + "Timestamp": "2024-05-16T05:46:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3a.small", - "ProductDescription": "Windows", - "SpotPrice": "0.025400", - "Timestamp": "2019-10-15T21:35:14.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.163900", + "Timestamp": "2024-05-16T05:46:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3a.small", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i2.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.025400", - "Timestamp": "2019-10-15T21:35:14.000Z" + "SpotPrice": "2.071800", + "Timestamp": "2024-05-16T05:46:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "6.107200", - "Timestamp": "2019-10-15T21:33:35.000Z" + "SpotPrice": "3.632500", + "Timestamp": "2024-05-16T05:46:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.977200", - "Timestamp": "2019-10-15T21:33:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.627500", + "Timestamp": "2024-05-16T05:46:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "7.449200", - "Timestamp": "2019-10-15T21:33:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.502500", + "Timestamp": "2024-05-16T05:46:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "7.449200", - "Timestamp": "2019-10-15T21:33:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.075400", + "Timestamp": "2024-05-16T05:46:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.158500", - "Timestamp": "2019-10-15T21:33:34.000Z" + "SpotPrice": "3.420100", + "Timestamp": "2024-05-16T05:46:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.098500", - "Timestamp": "2019-10-15T21:33:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.070400", + "Timestamp": "2024-05-16T05:46:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.819600", - "Timestamp": "2019-10-15T21:33:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.415100", + "Timestamp": "2024-05-16T05:46:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.689600", - "Timestamp": "2019-10-15T21:33:30.000Z" - }, - { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.885200", - "Timestamp": "2019-10-15T21:32:42.000Z" + "SpotPrice": "1.945400", + "Timestamp": "2024-05-16T05:46:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.755200", - "Timestamp": "2019-10-15T21:32:42.000Z" + "SpotPrice": "3.290100", + "Timestamp": "2024-05-16T05:46:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091500", - "Timestamp": "2019-10-15T21:26:34.000Z" + "SpotPrice": "0.142200", + "Timestamp": "2024-05-16T05:46:26.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091500", - "Timestamp": "2019-10-15T21:26:34.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138500", + "Timestamp": "2024-05-16T05:46:26.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5a.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031500", - "Timestamp": "2019-10-15T21:26:34.000Z" + "SpotPrice": "0.082200", + "Timestamp": "2024-05-16T05:46:26.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031500", - "Timestamp": "2019-10-15T21:26:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.359500", + "Timestamp": "2024-05-16T05:46:26.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.370700", - "Timestamp": "2019-10-15T21:25:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.354500", + "Timestamp": "2024-05-16T05:46:26.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.240700", - "Timestamp": "2019-10-15T21:25:11.000Z" + "SpotPrice": "1.229500", + "Timestamp": "2024-05-16T05:46:26.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.885200", - "Timestamp": "2019-10-15T21:24:33.000Z" + "SpotPrice": "1.080000", + "Timestamp": "2024-05-16T05:46:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.885200", - "Timestamp": "2019-10-15T21:24:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.075000", + "Timestamp": "2024-05-16T05:46:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.885200", - "Timestamp": "2019-10-15T21:24:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.950000", + "Timestamp": "2024-05-16T05:46:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.755200", - "Timestamp": "2019-10-15T21:24:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.342000", + "Timestamp": "2024-05-16T05:46:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.755200", - "Timestamp": "2019-10-15T21:24:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.337000", + "Timestamp": "2024-05-16T05:46:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.755200", - "Timestamp": "2019-10-15T21:24:33.000Z" + "SpotPrice": "0.212000", + "Timestamp": "2024-05-16T05:46:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.493600", - "Timestamp": "2019-10-15T21:24:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072800", + "Timestamp": "2024-05-16T05:46:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.493600", - "Timestamp": "2019-10-15T21:24:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069100", + "Timestamp": "2024-05-16T05:46:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.255600", - "Timestamp": "2019-10-15T21:24:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012800", + "Timestamp": "2024-05-16T05:46:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.255600", - "Timestamp": "2019-10-15T21:24:14.000Z" + "SpotPrice": "0.126000", + "Timestamp": "2024-05-16T05:46:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.125600", - "Timestamp": "2019-10-15T21:24:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122300", + "Timestamp": "2024-05-16T05:46:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.125600", - "Timestamp": "2019-10-15T21:24:14.000Z" + "SpotPrice": "0.066000", + "Timestamp": "2024-05-16T05:46:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.669400", - "Timestamp": "2019-10-15T21:24:09.000Z" + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T05:46:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.669400", - "Timestamp": "2019-10-15T21:24:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T05:46:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.539400", - "Timestamp": "2019-10-15T21:24:09.000Z" + "SpotPrice": "0.050000", + "Timestamp": "2024-05-16T05:46:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.539400", - "Timestamp": "2019-10-15T21:24:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.249700", + "Timestamp": "2024-05-16T05:46:16.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122900", - "Timestamp": "2019-10-15T21:23:47.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.244700", + "Timestamp": "2024-05-16T05:46:16.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122900", - "Timestamp": "2019-10-15T21:23:47.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119700", + "Timestamp": "2024-05-16T05:46:16.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122900", - "Timestamp": "2019-10-15T21:23:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.953300", + "Timestamp": "2024-05-16T05:46:16.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062900", - "Timestamp": "2019-10-15T21:23:47.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.712300", + "Timestamp": "2024-05-16T05:46:14.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062900", - "Timestamp": "2019-10-15T21:23:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.242400", + "Timestamp": "2024-05-16T05:46:11.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062900", - "Timestamp": "2019-10-15T21:23:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.451400", + "Timestamp": "2024-05-16T05:46:07.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.136900", - "Timestamp": "2019-10-15T21:23:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.006300", + "Timestamp": "2024-05-16T05:32:44.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.3xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.136900", - "Timestamp": "2019-10-15T21:23:30.000Z" + "SpotPrice": "0.440500", + "Timestamp": "2024-05-16T05:32:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.006900", - "Timestamp": "2019-10-15T21:23:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.435500", + "Timestamp": "2024-05-16T05:32:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.3xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.006900", - "Timestamp": "2019-10-15T21:23:30.000Z" + "SpotPrice": "0.310500", + "Timestamp": "2024-05-16T05:32:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.195400", - "Timestamp": "2019-10-15T21:23:09.000Z" + "SpotPrice": "0.467300", + "Timestamp": "2024-05-16T05:32:35.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.195400", - "Timestamp": "2019-10-15T21:23:09.000Z" + "SpotPrice": "0.893300", + "Timestamp": "2024-05-16T05:32:32.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.195400", - "Timestamp": "2019-10-15T21:23:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.656800", + "Timestamp": "2024-05-16T05:32:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.246900", - "Timestamp": "2019-10-15T21:23:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.651800", + "Timestamp": "2024-05-16T05:32:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.246900", - "Timestamp": "2019-10-15T21:23:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.526800", + "Timestamp": "2024-05-16T05:32:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.246900", - "Timestamp": "2019-10-15T21:23:06.000Z" + "SpotPrice": "0.481900", + "Timestamp": "2024-05-16T05:32:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.112000", - "Timestamp": "2019-10-15T21:23:01.000Z" + "SpotPrice": "0.081600", + "Timestamp": "2024-05-16T05:32:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.112000", - "Timestamp": "2019-10-15T21:23:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077900", + "Timestamp": "2024-05-16T05:32:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.112000", - "Timestamp": "2019-10-15T21:23:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021600", + "Timestamp": "2024-05-16T05:32:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.052000", - "Timestamp": "2019-10-15T21:23:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.312400", + "Timestamp": "2024-05-16T05:32:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.052000", - "Timestamp": "2019-10-15T21:23:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.307400", + "Timestamp": "2024-05-16T05:32:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3.medium", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.052000", - "Timestamp": "2019-10-15T21:23:01.000Z" + "SpotPrice": "0.182400", + "Timestamp": "2024-05-16T05:32:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.110100", - "Timestamp": "2019-10-15T21:22:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.486700", + "Timestamp": "2024-05-16T05:32:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.110100", - "Timestamp": "2019-10-15T21:22:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.481700", + "Timestamp": "2024-05-16T05:32:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.932300", - "Timestamp": "2019-10-15T21:22:45.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.356700", + "Timestamp": "2024-05-16T05:32:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.932300", - "Timestamp": "2019-10-15T21:22:45.000Z" + "SpotPrice": "0.549400", + "Timestamp": "2024-05-16T05:32:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.802300", - "Timestamp": "2019-10-15T21:22:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.544400", + "Timestamp": "2024-05-16T05:32:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.802300", - "Timestamp": "2019-10-15T21:22:45.000Z" + "SpotPrice": "0.419400", + "Timestamp": "2024-05-16T05:32:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.119900", - "Timestamp": "2019-10-15T21:22:40.000Z" + "SpotPrice": "0.516500", + "Timestamp": "2024-05-16T05:32:26.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.119900", - "Timestamp": "2019-10-15T21:22:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.512800", + "Timestamp": "2024-05-16T05:32:26.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.059900", - "Timestamp": "2019-10-15T21:22:40.000Z" + "SpotPrice": "0.456500", + "Timestamp": "2024-05-16T05:32:26.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.059900", - "Timestamp": "2019-10-15T21:22:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121400", + "Timestamp": "2024-05-16T05:32:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.243900", - "Timestamp": "2019-10-15T21:22:37.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.339200", + "Timestamp": "2024-05-16T05:32:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.243900", - "Timestamp": "2019-10-15T21:22:37.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334200", + "Timestamp": "2024-05-16T05:32:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.963200", - "Timestamp": "2019-10-15T21:22:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.209200", + "Timestamp": "2024-05-16T05:32:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.963200", - "Timestamp": "2019-10-15T21:22:33.000Z" + "SpotPrice": "6.919600", + "Timestamp": "2024-05-16T05:32:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.963200", - "Timestamp": "2019-10-15T21:22:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171400", + "Timestamp": "2024-05-16T05:32:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.950900", - "Timestamp": "2019-10-15T21:22:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167700", + "Timestamp": "2024-05-16T05:32:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.950900", - "Timestamp": "2019-10-15T21:22:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T05:32:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129100", - "Timestamp": "2019-10-15T21:21:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-16T05:32:20.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "h1.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129100", - "Timestamp": "2019-10-15T21:21:46.000Z" + "SpotPrice": "0.355200", + "Timestamp": "2024-05-16T05:32:20.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069100", - "Timestamp": "2019-10-15T21:21:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "h1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325200", + "Timestamp": "2024-05-16T05:32:20.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "h1.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069100", - "Timestamp": "2019-10-15T21:21:46.000Z" + "SpotPrice": "0.225200", + "Timestamp": "2024-05-16T05:32:20.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows", - "SpotPrice": "11.690300", - "Timestamp": "2019-10-15T21:21:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127900", + "Timestamp": "2024-05-16T05:32:19.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows", - "SpotPrice": "11.690300", - "Timestamp": "2019-10-15T21:21:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124200", + "Timestamp": "2024-05-16T05:32:19.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.390800", - "Timestamp": "2019-10-15T21:19:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067900", + "Timestamp": "2024-05-16T05:32:19.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.390800", - "Timestamp": "2019-10-15T21:19:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.619800", + "Timestamp": "2024-05-16T05:32:18.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.390800", - "Timestamp": "2019-10-15T21:19:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.614800", + "Timestamp": "2024-05-16T05:32:18.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.208800", - "Timestamp": "2019-10-15T21:19:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.489800", + "Timestamp": "2024-05-16T05:32:18.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.208800", - "Timestamp": "2019-10-15T21:19:49.000Z" + "SpotPrice": "0.476900", + "Timestamp": "2024-05-16T05:32:17.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.208800", - "Timestamp": "2019-10-15T21:19:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.446900", + "Timestamp": "2024-05-16T05:32:17.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.078800", - "Timestamp": "2019-10-15T21:19:49.000Z" + "SpotPrice": "0.346900", + "Timestamp": "2024-05-16T05:32:17.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.078800", - "Timestamp": "2019-10-15T21:19:49.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.269800", + "Timestamp": "2024-05-16T05:32:17.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.078800", - "Timestamp": "2019-10-15T21:19:49.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.239800", + "Timestamp": "2024-05-16T05:32:17.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.268200", - "Timestamp": "2019-10-15T21:19:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.139800", + "Timestamp": "2024-05-16T05:32:17.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.268200", - "Timestamp": "2019-10-15T21:19:29.000Z" + "SpotPrice": "0.211100", + "Timestamp": "2024-05-16T05:32:17.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.138200", - "Timestamp": "2019-10-15T21:19:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.207400", + "Timestamp": "2024-05-16T05:32:17.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.138200", - "Timestamp": "2019-10-15T21:19:29.000Z" + "SpotPrice": "0.151100", + "Timestamp": "2024-05-16T05:32:17.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r4.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.200200", - "Timestamp": "2019-10-15T21:19:29.000Z" + "SpotPrice": "0.881300", + "Timestamp": "2024-05-16T05:32:15.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.200200", - "Timestamp": "2019-10-15T21:19:29.000Z" - }, - { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.074000", - "Timestamp": "2019-10-15T21:19:26.000Z" + "SpotPrice": "1.991000", + "Timestamp": "2024-05-16T05:32:15.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3a.medium", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.074000", - "Timestamp": "2019-10-15T21:19:26.000Z" + "SpotPrice": "1.168500", + "Timestamp": "2024-05-16T05:32:14.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.014000", - "Timestamp": "2019-10-15T21:19:26.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.163500", + "Timestamp": "2024-05-16T05:32:14.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3a.medium", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.014000", - "Timestamp": "2019-10-15T21:19:26.000Z" + "SpotPrice": "1.038500", + "Timestamp": "2024-05-16T05:32:14.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.136900", - "Timestamp": "2019-10-15T21:19:20.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T05:32:14.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.006900", - "Timestamp": "2019-10-15T21:19:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114100", + "Timestamp": "2024-05-16T05:32:13.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125000", - "Timestamp": "2019-10-15T21:19:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.614300", + "Timestamp": "2024-05-16T05:32:13.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125000", - "Timestamp": "2019-10-15T21:19:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.609300", + "Timestamp": "2024-05-16T05:32:13.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.032400", - "Timestamp": "2019-10-15T21:19:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.484300", + "Timestamp": "2024-05-16T05:32:13.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3a.medium", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r4.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.032400", - "Timestamp": "2019-10-15T21:19:14.000Z" + "SpotPrice": "0.438000", + "Timestamp": "2024-05-16T05:32:13.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.633400", - "Timestamp": "2019-10-15T21:19:06.000Z" + "SpotPrice": "3.254000", + "Timestamp": "2024-05-16T05:32:12.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.633400", - "Timestamp": "2019-10-15T21:19:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.224000", + "Timestamp": "2024-05-16T05:32:12.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.633400", - "Timestamp": "2019-10-15T21:19:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.124000", + "Timestamp": "2024-05-16T05:32:12.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.503400", - "Timestamp": "2019-10-15T21:19:06.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.740500", + "Timestamp": "2024-05-16T05:32:11.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.503400", - "Timestamp": "2019-10-15T21:19:06.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.735500", + "Timestamp": "2024-05-16T05:32:11.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.503400", - "Timestamp": "2019-10-15T21:19:06.000Z" + "SpotPrice": "0.610500", + "Timestamp": "2024-05-16T05:32:11.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.975400", - "Timestamp": "2019-10-15T21:18:57.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101800", + "Timestamp": "2024-05-16T05:32:11.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.975400", - "Timestamp": "2019-10-15T21:18:57.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097800", + "Timestamp": "2024-05-16T05:32:11.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.975400", - "Timestamp": "2019-10-15T21:18:57.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041800", + "Timestamp": "2024-05-16T05:32:11.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.119900", - "Timestamp": "2019-10-15T21:18:49.000Z" + "SpotPrice": "0.899600", + "Timestamp": "2024-05-16T05:32:09.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.119900", - "Timestamp": "2019-10-15T21:18:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.894600", + "Timestamp": "2024-05-16T05:32:09.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.119900", - "Timestamp": "2019-10-15T21:18:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.769600", + "Timestamp": "2024-05-16T05:32:09.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.059900", - "Timestamp": "2019-10-15T21:18:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.469900", + "Timestamp": "2024-05-16T05:32:09.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.059900", - "Timestamp": "2019-10-15T21:18:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.748900", + "Timestamp": "2024-05-16T05:32:09.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.059900", - "Timestamp": "2019-10-15T21:18:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.718900", + "Timestamp": "2024-05-16T05:32:09.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.243900", - "Timestamp": "2019-10-15T21:18:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.618900", + "Timestamp": "2024-05-16T05:32:09.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.18xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.243900", - "Timestamp": "2019-10-15T21:18:49.000Z" + "SpotPrice": "3.772100", + "Timestamp": "2024-05-16T05:32:08.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.243900", - "Timestamp": "2019-10-15T21:18:49.000Z" + "SpotPrice": "5.155700", + "Timestamp": "2024-05-16T05:32:08.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.241100", - "Timestamp": "2019-10-15T21:18:49.000Z" + "SpotPrice": "2.620900", + "Timestamp": "2024-05-16T05:32:07.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.241100", - "Timestamp": "2019-10-15T21:18:49.000Z" + "SpotPrice": "8.326900", + "Timestamp": "2024-05-16T05:32:06.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-15T21:18:46.000Z" + "SpotPrice": "1.332600", + "Timestamp": "2024-05-16T05:32:03.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-15T21:18:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.327600", + "Timestamp": "2024-05-16T05:32:03.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5a.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033000", - "Timestamp": "2019-10-15T21:18:46.000Z" + "SpotPrice": "1.202600", + "Timestamp": "2024-05-16T05:32:03.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033000", - "Timestamp": "2019-10-15T21:18:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.462500", + "Timestamp": "2024-05-16T05:32:02.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.640300", - "Timestamp": "2019-10-15T21:18:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.160100", + "Timestamp": "2024-05-16T05:32:01.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "inf2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.640300", - "Timestamp": "2019-10-15T21:18:44.000Z" + "SpotPrice": "0.176200", + "Timestamp": "2024-05-16T05:32:01.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.640300", - "Timestamp": "2019-10-15T21:18:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.216200", + "Timestamp": "2024-05-16T05:32:01.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "inf2.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.510300", - "Timestamp": "2019-10-15T21:18:44.000Z" + "SpotPrice": "0.116200", + "Timestamp": "2024-05-16T05:32:01.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.510300", - "Timestamp": "2019-10-15T21:18:44.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.697500", + "Timestamp": "2024-05-16T05:32:01.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.510300", - "Timestamp": "2019-10-15T21:18:44.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.123200", + "Timestamp": "2024-05-16T05:31:59.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.926300", - "Timestamp": "2019-10-15T21:18:37.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129800", + "Timestamp": "2024-05-16T05:31:58.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.926300", - "Timestamp": "2019-10-15T21:18:37.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126100", + "Timestamp": "2024-05-16T05:31:58.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.926300", - "Timestamp": "2019-10-15T21:18:37.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069800", + "Timestamp": "2024-05-16T05:31:58.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t2.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.064300", - "Timestamp": "2019-10-15T21:18:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.450700", + "Timestamp": "2024-05-16T05:31:53.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.064300", - "Timestamp": "2019-10-15T21:18:32.000Z" + "SpotPrice": "0.090000", + "Timestamp": "2024-05-16T05:31:53.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t2.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.004300", - "Timestamp": "2019-10-15T21:18:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086300", + "Timestamp": "2024-05-16T05:31:53.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.004300", - "Timestamp": "2019-10-15T21:18:32.000Z" + "SpotPrice": "0.030000", + "Timestamp": "2024-05-16T05:31:53.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.008900", - "Timestamp": "2019-10-15T21:18:32.000Z" + "SpotPrice": "0.217500", + "Timestamp": "2024-05-16T05:31:52.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t2.micro", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c4.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.008900", - "Timestamp": "2019-10-15T21:18:32.000Z" + "SpotPrice": "0.853200", + "Timestamp": "2024-05-16T05:31:52.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c4.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.999700", - "Timestamp": "2019-10-15T21:18:28.000Z" + "SpotPrice": "0.843100", + "Timestamp": "2024-05-16T05:31:52.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.metal", "ProductDescription": "Windows", - "SpotPrice": "0.293800", - "Timestamp": "2019-10-15T21:18:25.000Z" + "SpotPrice": "7.364600", + "Timestamp": "2024-05-16T05:31:50.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.293800", - "Timestamp": "2019-10-15T21:18:25.000Z" + "SpotPrice": "3.867200", + "Timestamp": "2024-05-16T05:31:49.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.293800", - "Timestamp": "2019-10-15T21:18:25.000Z" - }, - { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.169800", - "Timestamp": "2019-10-15T21:18:25.000Z" + "SpotPrice": "1.702400", + "Timestamp": "2024-05-16T05:31:48.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.169800", - "Timestamp": "2019-10-15T21:18:25.000Z" + "SpotPrice": "0.431700", + "Timestamp": "2024-05-16T05:31:45.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.169800", - "Timestamp": "2019-10-15T21:18:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.426700", + "Timestamp": "2024-05-16T05:31:45.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.109800", - "Timestamp": "2019-10-15T21:18:25.000Z" + "SpotPrice": "0.301700", + "Timestamp": "2024-05-16T05:31:45.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.109800", - "Timestamp": "2019-10-15T21:18:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.236500", + "Timestamp": "2024-05-16T05:31:45.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.109800", - "Timestamp": "2019-10-15T21:18:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.815600", + "Timestamp": "2024-05-16T05:31:45.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.393700", - "Timestamp": "2019-10-15T21:18:19.000Z" + "SpotPrice": "0.651800", + "Timestamp": "2024-05-16T05:31:44.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.263700", - "Timestamp": "2019-10-15T21:18:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.646800", + "Timestamp": "2024-05-16T05:31:44.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.117100", - "Timestamp": "2019-10-15T21:18:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.521800", + "Timestamp": "2024-05-16T05:31:44.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "p2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.117100", - "Timestamp": "2019-10-15T21:18:11.000Z" + "SpotPrice": "0.278100", + "Timestamp": "2024-05-16T05:31:44.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.057100", - "Timestamp": "2019-10-15T21:18:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.318100", + "Timestamp": "2024-05-16T05:31:44.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "p2.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.057100", - "Timestamp": "2019-10-15T21:18:11.000Z" + "SpotPrice": "0.218100", + "Timestamp": "2024-05-16T05:31:44.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.369700", - "Timestamp": "2019-10-15T21:17:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.052000", + "Timestamp": "2024-05-16T05:31:44.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.369700", - "Timestamp": "2019-10-15T21:17:35.000Z" + "SpotPrice": "1.119300", + "Timestamp": "2024-05-16T05:31:43.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.369700", - "Timestamp": "2019-10-15T21:17:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.114300", + "Timestamp": "2024-05-16T05:31:43.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.239700", - "Timestamp": "2019-10-15T21:17:35.000Z" + "SpotPrice": "0.989300", + "Timestamp": "2024-05-16T05:31:43.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.239700", - "Timestamp": "2019-10-15T21:17:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115800", + "Timestamp": "2024-05-16T05:31:43.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.239700", - "Timestamp": "2019-10-15T21:17:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.865800", + "Timestamp": "2024-05-16T05:31:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.975700", - "Timestamp": "2019-10-15T21:17:34.000Z" + "SpotPrice": "0.464300", + "Timestamp": "2024-05-16T05:31:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.975700", - "Timestamp": "2019-10-15T21:17:34.000Z" + "SpotPrice": "5.382800", + "Timestamp": "2024-05-16T05:31:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.975700", - "Timestamp": "2019-10-15T21:17:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.481100", + "Timestamp": "2024-05-16T05:31:40.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.476100", + "Timestamp": "2024-05-16T05:31:40.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.351100", + "Timestamp": "2024-05-16T05:31:40.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "a1.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.042400", - "Timestamp": "2019-10-15T21:17:13.000Z" + "SpotPrice": "0.079300", + "Timestamp": "2024-05-16T05:31:40.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "a1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075600", + "Timestamp": "2024-05-16T05:31:40.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "a1.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.912400", - "Timestamp": "2019-10-15T21:17:13.000Z" + "SpotPrice": "0.019300", + "Timestamp": "2024-05-16T05:31:40.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.metal", "ProductDescription": "Windows", - "SpotPrice": "4.183500", - "Timestamp": "2019-10-15T21:17:13.000Z" + "SpotPrice": "5.904900", + "Timestamp": "2024-05-16T05:31:40.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-15T21:16:45.000Z" + "SpotPrice": "0.681300", + "Timestamp": "2024-05-16T05:31:38.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-15T21:16:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.676300", + "Timestamp": "2024-05-16T05:31:38.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-15T21:16:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.551300", + "Timestamp": "2024-05-16T05:31:38.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033000", - "Timestamp": "2019-10-15T21:16:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.859900", + "Timestamp": "2024-05-16T05:31:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033000", - "Timestamp": "2019-10-15T21:16:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.854900", + "Timestamp": "2024-05-16T05:31:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033000", - "Timestamp": "2019-10-15T21:16:45.000Z" + "SpotPrice": "0.729900", + "Timestamp": "2024-05-16T05:31:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5d.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.metal-24xl", "ProductDescription": "Windows", - "SpotPrice": "0.125000", - "Timestamp": "2019-10-15T21:16:45.000Z" + "SpotPrice": "5.310400", + "Timestamp": "2024-05-16T05:31:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125000", - "Timestamp": "2019-10-15T21:16:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.449600", + "Timestamp": "2024-05-16T05:31:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.125000", - "Timestamp": "2019-10-15T21:16:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.444600", + "Timestamp": "2024-05-16T05:31:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.640300", - "Timestamp": "2019-10-15T21:16:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.319600", + "Timestamp": "2024-05-16T05:31:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "inf2.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.640300", - "Timestamp": "2019-10-15T21:16:40.000Z" + "SpotPrice": "1.350600", + "Timestamp": "2024-05-16T05:31:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.320600", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "inf2.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.510300", - "Timestamp": "2019-10-15T21:16:40.000Z" + "SpotPrice": "1.220600", + "Timestamp": "2024-05-16T05:31:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.117800", + "Timestamp": "2024-05-16T05:31:34.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.316000", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.286000", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.510300", - "Timestamp": "2019-10-15T21:16:40.000Z" + "SpotPrice": "0.186000", + "Timestamp": "2024-05-16T05:31:33.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.926300", - "Timestamp": "2019-10-15T21:16:40.000Z" + "SpotPrice": "3.540000", + "Timestamp": "2024-05-16T05:31:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5d.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.926300", - "Timestamp": "2019-10-15T21:16:40.000Z" + "SpotPrice": "3.564800", + "Timestamp": "2024-05-16T05:31:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.031300", - "Timestamp": "2019-10-15T21:16:37.000Z" + "SpotPrice": "0.231100", + "Timestamp": "2024-05-16T05:31:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.031300", - "Timestamp": "2019-10-15T21:16:37.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.227400", + "Timestamp": "2024-05-16T05:31:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.901300", - "Timestamp": "2019-10-15T21:16:37.000Z" + "SpotPrice": "0.171100", + "Timestamp": "2024-05-16T05:31:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.901300", - "Timestamp": "2019-10-15T21:16:37.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.456700", + "Timestamp": "2024-05-16T05:31:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.845300", - "Timestamp": "2019-10-15T21:16:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.451700", + "Timestamp": "2024-05-16T05:31:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.845300", - "Timestamp": "2019-10-15T21:16:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.326700", + "Timestamp": "2024-05-16T05:31:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.086000", - "Timestamp": "2019-10-15T21:16:32.000Z" + "SpotPrice": "1.908900", + "Timestamp": "2024-05-16T05:31:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "t3.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.086000", - "Timestamp": "2019-10-15T21:16:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.903900", + "Timestamp": "2024-05-16T05:31:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.778900", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.086000", - "Timestamp": "2019-10-15T21:16:32.000Z" + "SpotPrice": "0.179700", + "Timestamp": "2024-05-16T05:31:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.026000", - "Timestamp": "2019-10-15T21:16:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.176000", + "Timestamp": "2024-05-16T05:31:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.026000", - "Timestamp": "2019-10-15T21:16:32.000Z" + "SpotPrice": "0.119700", + "Timestamp": "2024-05-16T05:31:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.026000", - "Timestamp": "2019-10-15T21:16:32.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071100", + "Timestamp": "2024-05-16T05:31:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3.small", - "ProductDescription": "Windows", - "SpotPrice": "0.044400", - "Timestamp": "2019-10-15T21:16:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042100", + "Timestamp": "2024-05-16T05:31:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "t3.small", - "ProductDescription": "Windows", - "SpotPrice": "0.044400", - "Timestamp": "2019-10-15T21:16:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011100", + "Timestamp": "2024-05-16T05:31:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3.small", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.044400", - "Timestamp": "2019-10-15T21:16:31.000Z" + "SpotPrice": "3.942900", + "Timestamp": "2024-05-16T05:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.487900", - "Timestamp": "2019-10-15T21:16:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.739900", + "Timestamp": "2024-05-16T05:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.487900", - "Timestamp": "2019-10-15T21:16:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.709900", + "Timestamp": "2024-05-16T05:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.249900", - "Timestamp": "2019-10-15T21:16:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.609900", + "Timestamp": "2024-05-16T05:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.249900", - "Timestamp": "2019-10-15T21:16:31.000Z" + "SpotPrice": "0.121200", + "Timestamp": "2024-05-16T05:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.119900", - "Timestamp": "2019-10-15T21:16:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117500", + "Timestamp": "2024-05-16T05:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.119900", - "Timestamp": "2019-10-15T21:16:31.000Z" + "SpotPrice": "0.061200", + "Timestamp": "2024-05-16T05:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", + "AvailabilityZone": "us-east-2a", "InstanceType": "r5.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.184800", - "Timestamp": "2019-10-15T21:16:26.000Z" + "SpotPrice": "1.800000", + "Timestamp": "2024-05-16T05:31:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", + "AvailabilityZone": "us-east-2a", "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.184800", - "Timestamp": "2019-10-15T21:16:26.000Z" + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.795000", + "Timestamp": "2024-05-16T05:31:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", + "AvailabilityZone": "us-east-2a", "InstanceType": "r5.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.054800", - "Timestamp": "2019-10-15T21:16:26.000Z" + "SpotPrice": "1.670000", + "Timestamp": "2024-05-16T05:31:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.054800", - "Timestamp": "2019-10-15T21:16:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.237100", + "Timestamp": "2024-05-16T05:31:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.998800", - "Timestamp": "2019-10-15T21:16:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232100", + "Timestamp": "2024-05-16T05:31:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.998800", - "Timestamp": "2019-10-15T21:16:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T05:31:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.381700", - "Timestamp": "2019-10-15T21:11:38.000Z" + "SpotPrice": "0.127300", + "Timestamp": "2024-05-16T05:31:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.381700", - "Timestamp": "2019-10-15T21:11:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123600", + "Timestamp": "2024-05-16T05:31:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.251700", - "Timestamp": "2019-10-15T21:11:38.000Z" + "SpotPrice": "0.067300", + "Timestamp": "2024-05-16T05:31:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.251700", - "Timestamp": "2019-10-15T21:11:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.422600", + "Timestamp": "2024-05-16T05:31:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.632300", - "Timestamp": "2019-10-15T21:11:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.417600", + "Timestamp": "2024-05-16T05:31:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.502300", - "Timestamp": "2019-10-15T21:11:09.000Z" + "SpotPrice": "0.292600", + "Timestamp": "2024-05-16T05:31:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "8.624000", - "Timestamp": "2019-10-15T21:10:40.000Z" + "SpotPrice": "10.592300", + "Timestamp": "2024-05-16T05:17:38.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.624000", - "Timestamp": "2019-10-15T21:10:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.156400", + "Timestamp": "2024-05-16T05:17:35.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.987700", - "Timestamp": "2019-10-15T21:10:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.151400", + "Timestamp": "2024-05-16T05:17:35.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.987700", - "Timestamp": "2019-10-15T21:10:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.026400", + "Timestamp": "2024-05-16T05:17:35.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g3s.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.975200", - "Timestamp": "2019-10-15T21:10:33.000Z" + "SpotPrice": "0.327400", + "Timestamp": "2024-05-16T05:17:34.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.large", "ProductDescription": "Windows", - "SpotPrice": "0.975200", - "Timestamp": "2019-10-15T21:10:33.000Z" + "SpotPrice": "0.125000", + "Timestamp": "2024-05-16T05:17:33.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.061600", - "Timestamp": "2019-10-15T21:10:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.537300", + "Timestamp": "2024-05-16T05:17:32.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.061600", - "Timestamp": "2019-10-15T21:10:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.507300", + "Timestamp": "2024-05-16T05:17:32.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.061600", - "Timestamp": "2019-10-15T21:10:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.407300", + "Timestamp": "2024-05-16T05:17:32.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123500", - "Timestamp": "2019-10-15T21:10:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.318300", + "Timestamp": "2024-05-16T05:17:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123500", - "Timestamp": "2019-10-15T21:10:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.313300", + "Timestamp": "2024-05-16T05:17:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.087600", - "Timestamp": "2019-10-15T21:09:45.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.188300", + "Timestamp": "2024-05-16T05:17:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3en.6xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.087600", - "Timestamp": "2019-10-15T21:09:45.000Z" + "SpotPrice": "1.678500", + "Timestamp": "2024-05-16T05:17:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.087600", - "Timestamp": "2019-10-15T21:09:45.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.673500", + "Timestamp": "2024-05-16T05:17:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3en.6xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.957600", - "Timestamp": "2019-10-15T21:09:45.000Z" + "SpotPrice": "1.548500", + "Timestamp": "2024-05-16T05:17:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.957600", - "Timestamp": "2019-10-15T21:09:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.820700", + "Timestamp": "2024-05-16T05:17:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3en.6xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.815700", + "Timestamp": "2024-05-16T05:17:30.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.957600", - "Timestamp": "2019-10-15T21:09:45.000Z" + "SpotPrice": "3.690700", + "Timestamp": "2024-05-16T05:17:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.369200", - "Timestamp": "2019-10-15T21:09:33.000Z" + "SpotPrice": "1.031600", + "Timestamp": "2024-05-16T05:17:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.239200", - "Timestamp": "2019-10-15T21:09:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.026600", + "Timestamp": "2024-05-16T05:17:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.974300", - "Timestamp": "2019-10-15T21:09:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.901600", + "Timestamp": "2024-05-16T05:17:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.974300", - "Timestamp": "2019-10-15T21:09:24.000Z" + "SpotPrice": "3.901200", + "Timestamp": "2024-05-16T05:17:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.254100", - "Timestamp": "2019-10-15T21:09:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-16T05:17:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "g4dn.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.254100", - "Timestamp": "2019-10-15T21:09:23.000Z" + "SpotPrice": "0.467500", + "Timestamp": "2024-05-16T05:17:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.194100", - "Timestamp": "2019-10-15T21:09:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.462500", + "Timestamp": "2024-05-16T05:17:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "g4dn.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.194100", - "Timestamp": "2019-10-15T21:09:23.000Z" + "SpotPrice": "0.337500", + "Timestamp": "2024-05-16T05:17:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "g4dn.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.378100", - "Timestamp": "2019-10-15T21:09:23.000Z" + "SpotPrice": "0.894200", + "Timestamp": "2024-05-16T05:17:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "g4dn.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.378100", - "Timestamp": "2019-10-15T21:09:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.986700", + "Timestamp": "2024-05-16T05:17:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "d3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.382000", - "Timestamp": "2019-10-15T21:08:42.000Z" + "SpotPrice": "1.030200", + "Timestamp": "2024-05-16T05:17:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.252000", - "Timestamp": "2019-10-15T21:08:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.981700", + "Timestamp": "2024-05-16T05:17:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.389200", - "Timestamp": "2019-10-15T21:08:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.025200", + "Timestamp": "2024-05-16T05:17:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "d3.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.259200", - "Timestamp": "2019-10-15T21:08:11.000Z" + "SpotPrice": "0.856700", + "Timestamp": "2024-05-16T05:17:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.885200", - "Timestamp": "2019-10-15T21:07:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.900200", + "Timestamp": "2024-05-16T05:17:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.755200", - "Timestamp": "2019-10-15T21:07:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.046900", + "Timestamp": "2024-05-16T05:17:26.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.963200", - "Timestamp": "2019-10-15T21:07:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.041900", + "Timestamp": "2024-05-16T05:17:26.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.963200", - "Timestamp": "2019-10-15T21:07:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.916900", + "Timestamp": "2024-05-16T05:17:26.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.549900", - "Timestamp": "2019-10-15T21:06:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.466200", + "Timestamp": "2024-05-16T05:17:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.549900", - "Timestamp": "2019-10-15T21:06:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.461200", + "Timestamp": "2024-05-16T05:17:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.735900", - "Timestamp": "2019-10-15T21:06:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.336200", + "Timestamp": "2024-05-16T05:17:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.735900", - "Timestamp": "2019-10-15T21:06:36.000Z" + "SpotPrice": "0.121600", + "Timestamp": "2024-05-16T05:17:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "g4dn.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.605900", - "Timestamp": "2019-10-15T21:06:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117600", + "Timestamp": "2024-05-16T05:17:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "g4dn.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.605900", - "Timestamp": "2019-10-15T21:06:36.000Z" + "SpotPrice": "0.061600", + "Timestamp": "2024-05-16T05:17:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.493900", - "Timestamp": "2019-10-15T21:06:19.000Z" + "SpotPrice": "5.684700", + "Timestamp": "2024-05-16T05:17:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.medium", "ProductDescription": "Windows", - "SpotPrice": "0.493900", - "Timestamp": "2019-10-15T21:06:19.000Z" + "SpotPrice": "0.056700", + "Timestamp": "2024-05-16T05:17:21.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.255900", - "Timestamp": "2019-10-15T21:06:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.063400", + "Timestamp": "2024-05-16T05:17:20.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.255900", - "Timestamp": "2019-10-15T21:06:19.000Z" + "SpotPrice": "1.618300", + "Timestamp": "2024-05-16T05:17:19.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.125900", - "Timestamp": "2019-10-15T21:06:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.588300", + "Timestamp": "2024-05-16T05:17:19.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.125900", - "Timestamp": "2019-10-15T21:06:19.000Z" + "SpotPrice": "1.488300", + "Timestamp": "2024-05-16T05:17:19.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.674300", - "Timestamp": "2019-10-15T21:00:21.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.312800", + "Timestamp": "2024-05-16T05:17:19.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "p2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.516400", - "Timestamp": "2019-10-15T20:59:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.307800", + "Timestamp": "2024-05-16T05:17:19.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.456400", - "Timestamp": "2019-10-15T20:59:42.000Z" + "SpotPrice": "2.182800", + "Timestamp": "2024-05-16T05:17:19.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.243900", - "Timestamp": "2019-10-15T20:50:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.551100", + "Timestamp": "2024-05-16T05:17:18.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.243900", - "Timestamp": "2019-10-15T20:50:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.546100", + "Timestamp": "2024-05-16T05:17:18.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.243900", - "Timestamp": "2019-10-15T20:50:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.421100", + "Timestamp": "2024-05-16T05:17:18.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.487900", - "Timestamp": "2019-10-15T20:50:11.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.260600", + "Timestamp": "2024-05-16T05:17:18.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.487900", - "Timestamp": "2019-10-15T20:50:11.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.230600", + "Timestamp": "2024-05-16T05:17:18.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.487900", - "Timestamp": "2019-10-15T20:50:11.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130600", + "Timestamp": "2024-05-16T05:17:18.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.249900", - "Timestamp": "2019-10-15T20:50:01.000Z" + "SpotPrice": "4.083600", + "Timestamp": "2024-05-16T05:17:16.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.249900", - "Timestamp": "2019-10-15T20:50:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.078600", + "Timestamp": "2024-05-16T05:17:16.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.249900", - "Timestamp": "2019-10-15T20:50:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.953600", + "Timestamp": "2024-05-16T05:17:16.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.119900", - "Timestamp": "2019-10-15T20:50:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-16T05:17:15.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.119900", - "Timestamp": "2019-10-15T20:50:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T05:17:15.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "is4gen.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.119900", - "Timestamp": "2019-10-15T20:50:01.000Z" + "SpotPrice": "0.048600", + "Timestamp": "2024-05-16T05:17:15.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "is4gen.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.119900", - "Timestamp": "2019-10-15T20:49:51.000Z" + "SpotPrice": "0.079600", + "Timestamp": "2024-05-16T05:17:14.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.119900", - "Timestamp": "2019-10-15T20:49:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.050600", + "Timestamp": "2024-05-16T05:17:14.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.119900", - "Timestamp": "2019-10-15T20:49:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019600", + "Timestamp": "2024-05-16T05:17:14.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.059900", - "Timestamp": "2019-10-15T20:49:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.415100", + "Timestamp": "2024-05-16T05:17:11.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.059900", - "Timestamp": "2019-10-15T20:49:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.385100", + "Timestamp": "2024-05-16T05:17:11.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "x1.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.059900", - "Timestamp": "2019-10-15T20:49:51.000Z" + "SpotPrice": "3.285100", + "Timestamp": "2024-05-16T05:17:11.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125900", - "Timestamp": "2019-10-15T20:49:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.502100", + "Timestamp": "2024-05-16T05:17:09.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125900", - "Timestamp": "2019-10-15T20:49:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.232900", + "Timestamp": "2024-05-16T05:17:07.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125900", - "Timestamp": "2019-10-15T20:49:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.236300", + "Timestamp": "2024-05-16T05:17:07.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065900", - "Timestamp": "2019-10-15T20:49:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226600", + "Timestamp": "2024-05-16T05:17:07.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065900", - "Timestamp": "2019-10-15T20:49:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081600", + "Timestamp": "2024-05-16T05:17:06.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065900", - "Timestamp": "2019-10-15T20:49:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077900", + "Timestamp": "2024-05-16T05:17:06.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.249900", - "Timestamp": "2019-10-15T20:49:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021600", + "Timestamp": "2024-05-16T05:17:06.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.249900", - "Timestamp": "2019-10-15T20:49:08.000Z" + "SpotPrice": "2.550400", + "Timestamp": "2024-05-16T05:17:03.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.large", "ProductDescription": "Windows", - "SpotPrice": "0.249900", - "Timestamp": "2019-10-15T20:49:08.000Z" - }, - { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.369700", - "Timestamp": "2019-10-15T20:40:26.000Z" + "SpotPrice": "0.115700", + "Timestamp": "2024-05-16T05:17:02.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.369700", - "Timestamp": "2019-10-15T20:40:26.000Z" + "SpotPrice": "0.399500", + "Timestamp": "2024-05-16T05:17:02.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.369700", - "Timestamp": "2019-10-15T20:40:26.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.394500", + "Timestamp": "2024-05-16T05:17:02.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.239700", - "Timestamp": "2019-10-15T20:40:26.000Z" + "SpotPrice": "0.269500", + "Timestamp": "2024-05-16T05:17:02.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.239700", - "Timestamp": "2019-10-15T20:40:26.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.745600", + "Timestamp": "2024-05-16T05:17:01.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.239700", - "Timestamp": "2019-10-15T20:40:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.689800", + "Timestamp": "2024-05-16T05:17:00.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.975700", - "Timestamp": "2019-10-15T20:40:24.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.684800", + "Timestamp": "2024-05-16T05:17:00.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.975700", - "Timestamp": "2019-10-15T20:40:24.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.559800", + "Timestamp": "2024-05-16T05:17:00.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.975700", - "Timestamp": "2019-10-15T20:40:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.397000", + "Timestamp": "2024-05-16T05:17:00.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.633400", - "Timestamp": "2019-10-15T20:39:47.000Z" + "SpotPrice": "0.421500", + "Timestamp": "2024-05-16T05:17:00.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.633400", - "Timestamp": "2019-10-15T20:39:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.392000", + "Timestamp": "2024-05-16T05:17:00.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.503400", - "Timestamp": "2019-10-15T20:39:47.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.416500", + "Timestamp": "2024-05-16T05:17:00.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.503400", - "Timestamp": "2019-10-15T20:39:47.000Z" + "SpotPrice": "0.267000", + "Timestamp": "2024-05-16T05:17:00.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.261900", - "Timestamp": "2019-10-15T20:39:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.291500", + "Timestamp": "2024-05-16T05:17:00.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.261900", - "Timestamp": "2019-10-15T20:39:41.000Z" + "SpotPrice": "3.360100", + "Timestamp": "2024-05-16T05:16:57.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.131900", - "Timestamp": "2019-10-15T20:39:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.355100", + "Timestamp": "2024-05-16T05:16:57.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.131900", - "Timestamp": "2019-10-15T20:39:41.000Z" + "SpotPrice": "3.230100", + "Timestamp": "2024-05-16T05:16:57.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.975400", - "Timestamp": "2019-10-15T20:39:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089000", + "Timestamp": "2024-05-16T05:16:57.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.975400", - "Timestamp": "2019-10-15T20:39:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085300", + "Timestamp": "2024-05-16T05:16:57.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.886800", - "Timestamp": "2019-10-15T20:39:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029000", + "Timestamp": "2024-05-16T05:16:57.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.886800", - "Timestamp": "2019-10-15T20:39:23.000Z" + "SpotPrice": "3.513200", + "Timestamp": "2024-05-16T05:16:56.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.886800", - "Timestamp": "2019-10-15T20:39:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.508200", + "Timestamp": "2024-05-16T05:16:56.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.756800", - "Timestamp": "2019-10-15T20:39:23.000Z" + "SpotPrice": "3.383200", + "Timestamp": "2024-05-16T05:16:56.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.756800", - "Timestamp": "2019-10-15T20:39:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.665000", + "Timestamp": "2024-05-16T05:16:53.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.756800", - "Timestamp": "2019-10-15T20:39:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.635000", + "Timestamp": "2024-05-16T05:16:53.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.700800", - "Timestamp": "2019-10-15T20:39:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.535000", + "Timestamp": "2024-05-16T05:16:53.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.700800", - "Timestamp": "2019-10-15T20:39:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.118600", + "Timestamp": "2024-05-16T05:16:53.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.700800", - "Timestamp": "2019-10-15T20:39:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.113600", + "Timestamp": "2024-05-16T05:16:53.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.499900", - "Timestamp": "2019-10-15T20:39:21.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.988600", + "Timestamp": "2024-05-16T05:16:53.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.499900", - "Timestamp": "2019-10-15T20:39:21.000Z" + "SpotPrice": "2.515400", + "Timestamp": "2024-05-16T05:16:53.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.499900", - "Timestamp": "2019-10-15T20:39:21.000Z" + "SpotPrice": "5.672000", + "Timestamp": "2024-05-16T05:16:52.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.626800", - "Timestamp": "2019-10-15T20:34:58.000Z" + "SpotPrice": "0.828000", + "Timestamp": "2024-05-16T05:16:52.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.439000", - "Timestamp": "2019-10-15T20:34:40.000Z" - }, - { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.309000", - "Timestamp": "2019-10-15T20:34:40.000Z" + "SpotPrice": "0.633100", + "Timestamp": "2024-05-16T05:16:51.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "p2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.511500", - "Timestamp": "2019-10-15T20:26:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.628100", + "Timestamp": "2024-05-16T05:16:51.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.451500", - "Timestamp": "2019-10-15T20:26:42.000Z" + "SpotPrice": "0.503100", + "Timestamp": "2024-05-16T05:16:51.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "7.876100", - "Timestamp": "2019-10-15T20:18:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088400", + "Timestamp": "2024-05-16T05:16:50.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.654500", - "Timestamp": "2019-10-15T20:18:21.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084700", + "Timestamp": "2024-05-16T05:16:50.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "9.976000", - "Timestamp": "2019-10-15T20:11:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028400", + "Timestamp": "2024-05-16T05:16:50.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "9.976000", - "Timestamp": "2019-10-15T20:11:48.000Z" + "SpotPrice": "1.023600", + "Timestamp": "2024-05-16T05:16:50.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "7.162000", - "Timestamp": "2019-10-15T20:11:48.000Z" + "SpotPrice": "0.291800", + "Timestamp": "2024-05-16T05:16:49.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "7.162000", - "Timestamp": "2019-10-15T20:11:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.261800", + "Timestamp": "2024-05-16T05:16:49.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "7.032000", - "Timestamp": "2019-10-15T20:11:48.000Z" + "SpotPrice": "0.161800", + "Timestamp": "2024-05-16T05:16:49.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "7.032000", - "Timestamp": "2019-10-15T20:11:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.674000", + "Timestamp": "2024-05-16T05:16:48.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.788600", - "Timestamp": "2019-10-15T20:01:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.830500", + "Timestamp": "2024-05-16T05:16:48.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.658600", - "Timestamp": "2019-10-15T20:01:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.058900", + "Timestamp": "2024-05-16T05:16:47.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.large", "ProductDescription": "Windows", - "SpotPrice": "4.645800", - "Timestamp": "2019-10-15T20:01:06.000Z" + "SpotPrice": "0.106100", + "Timestamp": "2024-05-16T05:16:45.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "x1e.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.734700", - "Timestamp": "2019-10-15T20:01:05.000Z" + "SpotPrice": "1.331100", + "Timestamp": "2024-05-16T05:16:45.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "x1e.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.326100", + "Timestamp": "2024-05-16T05:16:45.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.604700", - "Timestamp": "2019-10-15T20:01:05.000Z" + "SpotPrice": "1.201100", + "Timestamp": "2024-05-16T05:16:45.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.large", "ProductDescription": "Windows", - "SpotPrice": "1.165700", - "Timestamp": "2019-10-15T19:53:43.000Z" + "SpotPrice": "0.118700", + "Timestamp": "2024-05-16T05:16:45.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.869200", + "Timestamp": "2024-05-16T05:16:44.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.184100", - "Timestamp": "2019-10-15T19:53:36.000Z" + "SpotPrice": "1.235400", + "Timestamp": "2024-05-16T05:16:44.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.230400", + "Timestamp": "2024-05-16T05:16:44.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.124100", - "Timestamp": "2019-10-15T19:53:36.000Z" + "SpotPrice": "1.105400", + "Timestamp": "2024-05-16T05:16:44.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "x1e.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.metal", "ProductDescription": "Windows", - "SpotPrice": "10.847800", - "Timestamp": "2019-10-15T19:53:26.000Z" + "SpotPrice": "10.421700", + "Timestamp": "2024-05-16T05:16:42.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.008400", - "Timestamp": "2019-10-15T19:52:19.000Z" + "SpotPrice": "1.693200", + "Timestamp": "2024-05-16T05:16:42.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.008400", - "Timestamp": "2019-10-15T19:52:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.688200", + "Timestamp": "2024-05-16T05:16:42.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.008400", - "Timestamp": "2019-10-15T19:52:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.563200", + "Timestamp": "2024-05-16T05:16:42.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.878400", - "Timestamp": "2019-10-15T19:52:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.982200", + "Timestamp": "2024-05-16T05:16:42.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.878400", - "Timestamp": "2019-10-15T19:52:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.977200", + "Timestamp": "2024-05-16T05:16:42.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.878400", - "Timestamp": "2019-10-15T19:52:19.000Z" + "SpotPrice": "2.852200", + "Timestamp": "2024-05-16T05:16:42.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.350400", - "Timestamp": "2019-10-15T19:52:19.000Z" + "SpotPrice": "11.898600", + "Timestamp": "2024-05-16T05:16:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.350400", - "Timestamp": "2019-10-15T19:52:19.000Z" + "SpotPrice": "0.857400", + "Timestamp": "2024-05-16T05:16:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.350400", - "Timestamp": "2019-10-15T19:52:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.143800", + "Timestamp": "2024-05-16T05:16:40.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.998200", - "Timestamp": "2019-10-15T19:40:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.138800", + "Timestamp": "2024-05-16T05:16:40.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.998200", - "Timestamp": "2019-10-15T19:40:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.013800", + "Timestamp": "2024-05-16T05:16:40.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.998200", - "Timestamp": "2019-10-15T19:40:25.000Z" + "SpotPrice": "0.820600", + "Timestamp": "2024-05-16T05:16:40.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.712200", - "Timestamp": "2019-10-15T19:40:25.000Z" + "SpotPrice": "0.091400", + "Timestamp": "2024-05-16T05:16:39.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.712200", - "Timestamp": "2019-10-15T19:40:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087700", + "Timestamp": "2024-05-16T05:16:39.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.712200", - "Timestamp": "2019-10-15T19:40:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031400", + "Timestamp": "2024-05-16T05:16:39.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.582200", - "Timestamp": "2019-10-15T19:40:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.023500", + "Timestamp": "2024-05-16T05:16:38.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.582200", - "Timestamp": "2019-10-15T19:40:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.018500", + "Timestamp": "2024-05-16T05:16:38.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.582200", - "Timestamp": "2019-10-15T19:40:25.000Z" + "SpotPrice": "1.893500", + "Timestamp": "2024-05-16T05:16:38.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.569200", - "Timestamp": "2019-10-15T19:40:18.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.146900", + "Timestamp": "2024-05-16T05:16:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.569200", - "Timestamp": "2019-10-15T19:40:18.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.438700", + "Timestamp": "2024-05-16T05:16:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gn.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.569200", - "Timestamp": "2019-10-15T19:40:18.000Z" - }, - { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.439200", - "Timestamp": "2019-10-15T19:40:18.000Z" + "SpotPrice": "0.069500", + "Timestamp": "2024-05-16T05:16:35.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.439200", - "Timestamp": "2019-10-15T19:40:18.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040500", + "Timestamp": "2024-05-16T05:16:35.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gn.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.439200", - "Timestamp": "2019-10-15T19:40:18.000Z" - }, - { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090000", - "Timestamp": "2019-10-15T19:40:13.000Z" + "SpotPrice": "0.009500", + "Timestamp": "2024-05-16T05:16:35.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090000", - "Timestamp": "2019-10-15T19:40:13.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-16T05:16:33.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090000", - "Timestamp": "2019-10-15T19:40:13.000Z" - }, - { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030000", - "Timestamp": "2019-10-15T19:40:13.000Z" + "SpotPrice": "1.345400", + "Timestamp": "2024-05-16T05:16:33.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030000", - "Timestamp": "2019-10-15T19:40:13.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.340400", + "Timestamp": "2024-05-16T05:16:33.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030000", - "Timestamp": "2019-10-15T19:40:13.000Z" + "SpotPrice": "1.215400", + "Timestamp": "2024-05-16T05:16:33.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.175200", - "Timestamp": "2019-10-15T19:40:10.000Z" + "SpotPrice": "0.244800", + "Timestamp": "2024-05-16T05:16:32.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.175200", - "Timestamp": "2019-10-15T19:40:10.000Z" + "SpotPrice": "0.247000", + "Timestamp": "2024-05-16T05:16:32.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.175200", - "Timestamp": "2019-10-15T19:40:10.000Z" + "SpotPrice": "0.439100", + "Timestamp": "2024-05-16T05:16:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.122000", - "Timestamp": "2019-10-15T19:39:43.000Z" + "SpotPrice": "0.831600", + "Timestamp": "2024-05-16T05:16:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5d.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.122000", - "Timestamp": "2019-10-15T19:39:43.000Z" + "SpotPrice": "3.483800", + "Timestamp": "2024-05-16T05:16:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.122000", - "Timestamp": "2019-10-15T19:39:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T05:16:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.261900", - "Timestamp": "2019-10-15T19:39:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102000", + "Timestamp": "2024-05-16T05:16:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.261900", - "Timestamp": "2019-10-15T19:39:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045700", + "Timestamp": "2024-05-16T05:16:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.261900", - "Timestamp": "2019-10-15T19:39:06.000Z" + "SpotPrice": "0.361500", + "Timestamp": "2024-05-16T05:16:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.131900", - "Timestamp": "2019-10-15T19:39:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.356500", + "Timestamp": "2024-05-16T05:16:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.131900", - "Timestamp": "2019-10-15T19:39:06.000Z" + "SpotPrice": "0.231500", + "Timestamp": "2024-05-16T05:16:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.131900", - "Timestamp": "2019-10-15T19:39:06.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160300", + "Timestamp": "2024-05-16T05:16:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.499900", - "Timestamp": "2019-10-15T19:38:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156600", + "Timestamp": "2024-05-16T05:16:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.499900", - "Timestamp": "2019-10-15T19:38:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-16T05:16:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.499900", - "Timestamp": "2019-10-15T19:38:27.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094400", + "Timestamp": "2024-05-16T05:16:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.599800", - "Timestamp": "2019-10-15T19:36:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134400", + "Timestamp": "2024-05-16T05:16:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.469800", - "Timestamp": "2019-10-15T19:36:30.000Z" + "SpotPrice": "0.034400", + "Timestamp": "2024-05-16T05:16:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.720500", - "Timestamp": "2019-10-15T19:36:19.000Z" + "SpotPrice": "0.169100", + "Timestamp": "2024-05-16T05:16:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165100", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.590500", - "Timestamp": "2019-10-15T19:36:19.000Z" + "SpotPrice": "0.109100", + "Timestamp": "2024-05-16T05:16:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m4.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "6.554100", - "Timestamp": "2019-10-15T19:28:35.000Z" + "SpotPrice": "0.132400", + "Timestamp": "2024-05-16T05:16:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "6.424100", - "Timestamp": "2019-10-15T19:28:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172400", + "Timestamp": "2024-05-16T05:16:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.189400", - "Timestamp": "2019-10-15T19:28:18.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072400", + "Timestamp": "2024-05-16T05:16:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.715700", - "Timestamp": "2019-10-15T19:19:34.000Z" + "SpotPrice": "0.078300", + "Timestamp": "2024-05-16T05:16:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.585700", - "Timestamp": "2019-10-15T19:19:34.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074600", + "Timestamp": "2024-05-16T05:16:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.037900", - "Timestamp": "2019-10-15T19:19:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018300", + "Timestamp": "2024-05-16T05:16:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.714800", - "Timestamp": "2019-10-15T19:11:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065200", + "Timestamp": "2024-05-16T05:02:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.549000", - "Timestamp": "2019-10-15T19:11:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.036500", + "Timestamp": "2024-05-16T05:02:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "t4g.small", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.419000", - "Timestamp": "2019-10-15T19:11:08.000Z" + "SpotPrice": "0.005200", + "Timestamp": "2024-05-16T05:02:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.906300", - "Timestamp": "2019-10-15T19:03:27.000Z" + "SpotPrice": "1.534200", + "Timestamp": "2024-05-16T05:02:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.776300", - "Timestamp": "2019-10-15T19:03:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.529200", + "Timestamp": "2024-05-16T05:02:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.397700", - "Timestamp": "2019-10-15T19:03:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.404200", + "Timestamp": "2024-05-16T05:02:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.473600", - "Timestamp": "2019-10-15T19:02:45.000Z" + "SpotPrice": "0.965100", + "Timestamp": "2024-05-16T05:02:34.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.343600", - "Timestamp": "2019-10-15T19:02:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.960100", + "Timestamp": "2024-05-16T05:02:34.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.195400", - "Timestamp": "2019-10-15T18:52:07.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.835100", + "Timestamp": "2024-05-16T05:02:34.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.195400", - "Timestamp": "2019-10-15T18:52:07.000Z" + "SpotPrice": "2.657900", + "Timestamp": "2024-05-16T05:02:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.195400", - "Timestamp": "2019-10-15T18:52:07.000Z" + "SpotPrice": "0.467600", + "Timestamp": "2024-05-16T05:02:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.669400", - "Timestamp": "2019-10-15T18:51:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.023200", + "Timestamp": "2024-05-16T05:02:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.669400", - "Timestamp": "2019-10-15T18:51:43.000Z" + "SpotPrice": "0.089900", + "Timestamp": "2024-05-16T05:02:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.669400", - "Timestamp": "2019-10-15T18:51:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086200", + "Timestamp": "2024-05-16T05:02:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.539400", - "Timestamp": "2019-10-15T18:51:43.000Z" + "SpotPrice": "0.029900", + "Timestamp": "2024-05-16T05:02:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.539400", - "Timestamp": "2019-10-15T18:51:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125000", + "Timestamp": "2024-05-16T05:02:21.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.539400", - "Timestamp": "2019-10-15T18:51:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066900", + "Timestamp": "2024-05-16T05:02:20.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.414800", - "Timestamp": "2019-10-15T18:46:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037900", + "Timestamp": "2024-05-16T05:02:20.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.small", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.284800", - "Timestamp": "2019-10-15T18:46:50.000Z" + "SpotPrice": "0.006900", + "Timestamp": "2024-05-16T05:02:20.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.388800", - "Timestamp": "2019-10-15T18:30:09.000Z" + "SpotPrice": "2.953900", + "Timestamp": "2024-05-16T05:02:20.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "7.352400", - "Timestamp": "2019-10-15T18:30:02.000Z" - }, - { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.454800", - "Timestamp": "2019-10-15T18:04:59.000Z" + "SpotPrice": "11.033300", + "Timestamp": "2024-05-16T05:02:15.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.324800", - "Timestamp": "2019-10-15T18:04:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.375900", + "Timestamp": "2024-05-16T05:02:12.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "is4gen.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.477400", - "Timestamp": "2019-10-15T17:56:29.000Z" + "SpotPrice": "0.517700", + "Timestamp": "2024-05-16T05:02:12.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.347400", - "Timestamp": "2019-10-15T17:56:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.512700", + "Timestamp": "2024-05-16T05:02:12.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.269000", - "Timestamp": "2019-10-15T17:50:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.387700", + "Timestamp": "2024-05-16T05:02:12.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.422700", - "Timestamp": "2019-10-15T17:50:49.000Z" + "SpotPrice": "3.047700", + "Timestamp": "2024-05-16T05:02:11.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.209000", - "Timestamp": "2019-10-15T17:50:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.017700", + "Timestamp": "2024-05-16T05:02:11.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.362700", - "Timestamp": "2019-10-15T17:50:49.000Z" + "SpotPrice": "2.917700", + "Timestamp": "2024-05-16T05:02:11.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "x1e.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.large", "ProductDescription": "Windows", - "SpotPrice": "8.747200", - "Timestamp": "2019-10-15T17:49:02.000Z" + "SpotPrice": "0.111800", + "Timestamp": "2024-05-16T05:02:08.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "x1e.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "22.288000", - "Timestamp": "2019-10-15T17:49:02.000Z" + "SpotPrice": "2.470800", + "Timestamp": "2024-05-16T05:02:08.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "x1e.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.933200", - "Timestamp": "2019-10-15T17:48:48.000Z" + "SpotPrice": "0.517600", + "Timestamp": "2024-05-16T05:02:07.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "19.474000", - "Timestamp": "2019-10-15T17:48:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.512600", + "Timestamp": "2024-05-16T05:02:07.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "x1e.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.803200", - "Timestamp": "2019-10-15T17:48:48.000Z" + "SpotPrice": "0.387600", + "Timestamp": "2024-05-16T05:02:07.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "19.344000", - "Timestamp": "2019-10-15T17:48:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.528400", + "Timestamp": "2024-05-16T05:02:06.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.932700", - "Timestamp": "2019-10-15T17:48:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.523400", + "Timestamp": "2024-05-16T05:02:06.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.926300", - "Timestamp": "2019-10-15T17:41:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.398400", + "Timestamp": "2024-05-16T05:02:06.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.926300", - "Timestamp": "2019-10-15T17:41:49.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069500", + "Timestamp": "2024-05-16T05:02:06.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.926300", - "Timestamp": "2019-10-15T17:41:49.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065800", + "Timestamp": "2024-05-16T05:02:06.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.640300", - "Timestamp": "2019-10-15T17:41:49.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009500", + "Timestamp": "2024-05-16T05:02:06.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.640300", - "Timestamp": "2019-10-15T17:41:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113200", + "Timestamp": "2024-05-16T05:02:05.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.640300", - "Timestamp": "2019-10-15T17:41:49.000Z" + "SpotPrice": "2.085700", + "Timestamp": "2024-05-16T05:02:00.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.510300", - "Timestamp": "2019-10-15T17:41:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.080700", + "Timestamp": "2024-05-16T05:02:00.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.510300", - "Timestamp": "2019-10-15T17:41:49.000Z" + "SpotPrice": "1.955700", + "Timestamp": "2024-05-16T05:02:00.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.510300", - "Timestamp": "2019-10-15T17:41:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.475900", + "Timestamp": "2024-05-16T05:01:59.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122900", - "Timestamp": "2019-10-15T17:40:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.472200", + "Timestamp": "2024-05-16T05:01:59.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.415900", + "Timestamp": "2024-05-16T05:01:59.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122900", - "Timestamp": "2019-10-15T17:40:04.000Z" + "SpotPrice": "0.301700", + "Timestamp": "2024-05-16T05:01:58.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062900", - "Timestamp": "2019-10-15T17:40:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296700", + "Timestamp": "2024-05-16T05:01:58.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062900", - "Timestamp": "2019-10-15T17:40:04.000Z" + "SpotPrice": "0.171700", + "Timestamp": "2024-05-16T05:01:58.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t2.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.382100", - "Timestamp": "2019-10-15T17:39:58.000Z" + "SpotPrice": "0.229100", + "Timestamp": "2024-05-16T05:01:57.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.199100", + "Timestamp": "2024-05-16T05:01:57.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "t2.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.252100", - "Timestamp": "2019-10-15T17:39:58.000Z" + "SpotPrice": "0.099100", + "Timestamp": "2024-05-16T05:01:57.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.926300", - "Timestamp": "2019-10-15T17:39:07.000Z" + "SpotPrice": "0.222900", + "Timestamp": "2024-05-16T05:01:55.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.926300", - "Timestamp": "2019-10-15T17:39:07.000Z" + "SpotPrice": "3.708100", + "Timestamp": "2024-05-16T05:01:55.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.246900", - "Timestamp": "2019-10-15T17:39:07.000Z" + "SpotPrice": "1.759100", + "Timestamp": "2024-05-16T05:01:50.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.metal-48xl", "ProductDescription": "Windows", - "SpotPrice": "0.246900", - "Timestamp": "2019-10-15T17:39:07.000Z" + "SpotPrice": "10.608700", + "Timestamp": "2024-05-16T05:01:50.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.640300", - "Timestamp": "2019-10-15T17:38:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.568600", + "Timestamp": "2024-05-16T05:01:48.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.664800", + "Timestamp": "2024-05-16T05:01:48.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.420600", + "Timestamp": "2024-05-16T05:01:47.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.640300", - "Timestamp": "2019-10-15T17:38:28.000Z" + "SpotPrice": "0.097800", + "Timestamp": "2024-05-16T05:01:47.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.510300", - "Timestamp": "2019-10-15T17:38:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093800", + "Timestamp": "2024-05-16T05:01:47.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.510300", - "Timestamp": "2019-10-15T17:38:28.000Z" + "SpotPrice": "0.037800", + "Timestamp": "2024-05-16T05:01:47.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.675800", - "Timestamp": "2019-10-15T17:31:05.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116300", + "Timestamp": "2024-05-16T05:01:45.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.545800", - "Timestamp": "2019-10-15T17:31:05.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.194000", + "Timestamp": "2024-05-16T05:01:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.484500", - "Timestamp": "2019-10-15T17:30:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T05:01:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.354500", - "Timestamp": "2019-10-15T17:30:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.427800", + "Timestamp": "2024-05-16T05:01:39.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.439000", - "Timestamp": "2019-10-15T17:30:50.000Z" + "SpotPrice": "1.838300", + "Timestamp": "2024-05-16T05:01:39.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.268000", - "Timestamp": "2019-10-15T17:24:32.000Z" + "SpotPrice": "0.095000", + "Timestamp": "2024-05-16T05:01:39.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "t3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.268000", - "Timestamp": "2019-10-15T17:24:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091300", + "Timestamp": "2024-05-16T05:01:39.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035000", + "Timestamp": "2024-05-16T05:01:39.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.268000", - "Timestamp": "2019-10-15T17:24:32.000Z" + "SpotPrice": "1.075600", + "Timestamp": "2024-05-16T05:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.208000", - "Timestamp": "2019-10-15T17:24:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.070600", + "Timestamp": "2024-05-16T05:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.208000", - "Timestamp": "2019-10-15T17:24:32.000Z" + "SpotPrice": "0.945600", + "Timestamp": "2024-05-16T05:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.786800", + "Timestamp": "2024-05-16T05:01:37.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.781800", + "Timestamp": "2024-05-16T05:01:37.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.208000", - "Timestamp": "2019-10-15T17:24:32.000Z" + "SpotPrice": "2.656800", + "Timestamp": "2024-05-16T05:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.902900", - "Timestamp": "2019-10-15T17:24:23.000Z" + "SpotPrice": "0.452000", + "Timestamp": "2024-05-16T05:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.metal", "ProductDescription": "Windows", - "SpotPrice": "3.902900", - "Timestamp": "2019-10-15T17:24:23.000Z" + "SpotPrice": "7.372300", + "Timestamp": "2024-05-16T05:01:34.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.636400", - "Timestamp": "2019-10-15T17:24:22.000Z" + "SpotPrice": "0.143900", + "Timestamp": "2024-05-16T05:01:33.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.636400", - "Timestamp": "2019-10-15T17:24:22.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139900", + "Timestamp": "2024-05-16T05:01:33.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.506400", - "Timestamp": "2019-10-15T17:24:22.000Z" + "SpotPrice": "0.083900", + "Timestamp": "2024-05-16T05:01:33.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135600", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131600", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.506400", - "Timestamp": "2019-10-15T17:24:22.000Z" + "SpotPrice": "0.075600", + "Timestamp": "2024-05-16T05:01:32.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.metal", "ProductDescription": "Windows", - "SpotPrice": "0.874400", - "Timestamp": "2019-10-15T17:24:22.000Z" + "SpotPrice": "5.444500", + "Timestamp": "2024-05-16T05:01:32.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.874400", - "Timestamp": "2019-10-15T17:24:22.000Z" + "SpotPrice": "0.217000", + "Timestamp": "2024-05-16T05:01:32.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.244200", - "Timestamp": "2019-10-15T17:24:18.000Z" + "SpotPrice": "0.123500", + "Timestamp": "2024-05-16T05:01:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.244200", - "Timestamp": "2019-10-15T17:24:18.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119800", + "Timestamp": "2024-05-16T05:01:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.114200", - "Timestamp": "2019-10-15T17:24:18.000Z" + "SpotPrice": "0.063500", + "Timestamp": "2024-05-16T05:01:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084200", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080500", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gn.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.114200", - "Timestamp": "2019-10-15T17:24:18.000Z" + "SpotPrice": "0.024200", + "Timestamp": "2024-05-16T05:01:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.493900", - "Timestamp": "2019-10-15T17:24:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278500", + "Timestamp": "2024-05-16T05:01:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.493900", - "Timestamp": "2019-10-15T17:24:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273500", + "Timestamp": "2024-05-16T05:01:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.493900", - "Timestamp": "2019-10-15T17:24:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148500", + "Timestamp": "2024-05-16T05:01:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.088900", - "Timestamp": "2019-10-15T17:24:10.000Z" + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T05:01:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.088900", - "Timestamp": "2019-10-15T17:24:10.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092300", + "Timestamp": "2024-05-16T05:01:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.958900", - "Timestamp": "2019-10-15T17:24:10.000Z" + "SpotPrice": "0.036000", + "Timestamp": "2024-05-16T05:01:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.025400", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.020400", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.958900", - "Timestamp": "2019-10-15T17:24:10.000Z" + "SpotPrice": "2.895400", + "Timestamp": "2024-05-16T05:01:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.987700", - "Timestamp": "2019-10-15T17:24:08.000Z" + "SpotPrice": "1.812700", + "Timestamp": "2024-05-16T05:01:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.987700", - "Timestamp": "2019-10-15T17:24:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.372900", + "Timestamp": "2024-05-16T05:01:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.987700", - "Timestamp": "2019-10-15T17:24:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.367900", + "Timestamp": "2024-05-16T05:01:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "x1e.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242900", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.186800", - "Timestamp": "2019-10-15T17:24:05.000Z" + "SpotPrice": "1.715900", + "Timestamp": "2024-05-16T05:01:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "x1e.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.580800", - "Timestamp": "2019-10-15T17:24:05.000Z" + "SpotPrice": "1.960000", + "Timestamp": "2024-05-16T05:01:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "x1e.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.955000", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.450800", - "Timestamp": "2019-10-15T17:24:05.000Z" + "SpotPrice": "1.830000", + "Timestamp": "2024-05-16T05:01:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.381100", - "Timestamp": "2019-10-15T17:24:04.000Z" + "SpotPrice": "0.640100", + "Timestamp": "2024-05-16T05:01:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.610100", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.251100", - "Timestamp": "2019-10-15T17:24:04.000Z" + "SpotPrice": "0.510100", + "Timestamp": "2024-05-16T05:01:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.369700", - "Timestamp": "2019-10-15T17:24:02.000Z" + "SpotPrice": "1.717400", + "Timestamp": "2024-05-16T05:01:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.369700", - "Timestamp": "2019-10-15T17:24:02.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.712400", + "Timestamp": "2024-05-16T05:01:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.239700", - "Timestamp": "2019-10-15T17:24:02.000Z" + "SpotPrice": "1.587400", + "Timestamp": "2024-05-16T05:01:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.239700", - "Timestamp": "2019-10-15T17:24:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.691600", + "Timestamp": "2024-05-16T05:01:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.987100", - "Timestamp": "2019-10-15T17:23:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.686600", + "Timestamp": "2024-05-16T05:01:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.987100", - "Timestamp": "2019-10-15T17:23:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.561600", + "Timestamp": "2024-05-16T05:01:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.255900", - "Timestamp": "2019-10-15T17:23:53.000Z" + "SpotPrice": "1.735300", + "Timestamp": "2024-05-16T05:01:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.255900", - "Timestamp": "2019-10-15T17:23:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.730300", + "Timestamp": "2024-05-16T05:01:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.605300", + "Timestamp": "2024-05-16T05:01:24.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.255900", - "Timestamp": "2019-10-15T17:23:53.000Z" + "SpotPrice": "0.270100", + "Timestamp": "2024-05-16T05:01:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265100", + "Timestamp": "2024-05-16T05:01:22.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.125900", - "Timestamp": "2019-10-15T17:23:53.000Z" + "SpotPrice": "0.140100", + "Timestamp": "2024-05-16T05:01:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", + "AvailabilityZone": "us-east-2c", "InstanceType": "m5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.125900", - "Timestamp": "2019-10-15T17:23:53.000Z" + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.326600", + "Timestamp": "2024-05-16T05:01:17.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", + "AvailabilityZone": "us-east-2c", "InstanceType": "m5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.125900", - "Timestamp": "2019-10-15T17:23:53.000Z" + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296600", + "Timestamp": "2024-05-16T05:01:17.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.381700", - "Timestamp": "2019-10-15T17:23:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196600", + "Timestamp": "2024-05-16T05:01:17.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.381700", - "Timestamp": "2019-10-15T17:23:53.000Z" + "SpotPrice": "4.781000", + "Timestamp": "2024-05-16T05:01:11.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.381700", - "Timestamp": "2019-10-15T17:23:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.776000", + "Timestamp": "2024-05-16T05:01:11.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.251700", - "Timestamp": "2019-10-15T17:23:53.000Z" + "SpotPrice": "4.651000", + "Timestamp": "2024-05-16T05:01:11.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.251700", - "Timestamp": "2019-10-15T17:23:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.937900", + "Timestamp": "2024-05-16T05:01:10.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.932900", + "Timestamp": "2024-05-16T05:01:10.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.251700", - "Timestamp": "2019-10-15T17:23:53.000Z" + "SpotPrice": "2.807900", + "Timestamp": "2024-05-16T05:01:10.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.metal", "ProductDescription": "Windows", - "SpotPrice": "0.281600", - "Timestamp": "2019-10-15T17:23:45.000Z" + "SpotPrice": "5.258600", + "Timestamp": "2024-05-16T05:01:10.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2idn.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.281600", - "Timestamp": "2019-10-15T17:23:45.000Z" + "SpotPrice": "8.028900", + "Timestamp": "2024-05-16T05:01:09.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.281600", - "Timestamp": "2019-10-15T17:23:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.552500", + "Timestamp": "2024-05-16T04:47:35.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.975700", - "Timestamp": "2019-10-15T17:23:41.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.522500", + "Timestamp": "2024-05-16T04:47:35.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.975700", - "Timestamp": "2019-10-15T17:23:41.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.422500", + "Timestamp": "2024-05-16T04:47:35.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.975700", - "Timestamp": "2019-10-15T17:23:41.000Z" + "SpotPrice": "0.993100", + "Timestamp": "2024-05-16T04:47:34.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.482200", - "Timestamp": "2019-10-15T17:23:32.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.323100", + "Timestamp": "2024-05-16T04:47:34.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.482200", - "Timestamp": "2019-10-15T17:23:32.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.318100", + "Timestamp": "2024-05-16T04:47:34.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.312000", - "Timestamp": "2019-10-15T17:15:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.193100", + "Timestamp": "2024-05-16T04:47:34.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.324000", - "Timestamp": "2019-10-15T17:15:44.000Z" + "SpotPrice": "5.475800", + "Timestamp": "2024-05-16T04:47:33.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gd.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.970000", - "Timestamp": "2019-10-15T17:15:43.000Z" + "SpotPrice": "0.070000", + "Timestamp": "2024-05-16T04:47:32.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.982000", - "Timestamp": "2019-10-15T17:15:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041000", + "Timestamp": "2024-05-16T04:47:32.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gd.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.840000", - "Timestamp": "2019-10-15T17:15:43.000Z" + "SpotPrice": "0.010000", + "Timestamp": "2024-05-16T04:47:32.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.852000", - "Timestamp": "2019-10-15T17:15:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.024100", + "Timestamp": "2024-05-16T04:47:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.998200", - "Timestamp": "2019-10-15T17:14:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.994100", + "Timestamp": "2024-05-16T04:47:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.998200", - "Timestamp": "2019-10-15T17:14:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.894100", + "Timestamp": "2024-05-16T04:47:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.162000", - "Timestamp": "2019-10-15T17:10:08.000Z" + "SpotPrice": "3.868900", + "Timestamp": "2024-05-16T04:47:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.large", "ProductDescription": "Windows", - "SpotPrice": "1.162000", - "Timestamp": "2019-10-15T17:10:08.000Z" + "SpotPrice": "0.104700", + "Timestamp": "2024-05-16T04:47:26.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.729300", - "Timestamp": "2019-10-15T17:09:59.000Z" + "SpotPrice": "0.089700", + "Timestamp": "2024-05-16T04:47:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.729300", - "Timestamp": "2019-10-15T17:09:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086000", + "Timestamp": "2024-05-16T04:47:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.599300", - "Timestamp": "2019-10-15T17:09:59.000Z" + "SpotPrice": "0.029700", + "Timestamp": "2024-05-16T04:47:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.599300", - "Timestamp": "2019-10-15T17:09:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.483700", + "Timestamp": "2024-05-16T04:47:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.208800", - "Timestamp": "2019-10-15T17:09:45.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.478700", + "Timestamp": "2024-05-16T04:47:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.208800", - "Timestamp": "2019-10-15T17:09:45.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.353700", + "Timestamp": "2024-05-16T04:47:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.208800", - "Timestamp": "2019-10-15T17:09:45.000Z" + "SpotPrice": "3.569400", + "Timestamp": "2024-05-16T04:47:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.078800", - "Timestamp": "2019-10-15T17:09:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.564400", + "Timestamp": "2024-05-16T04:47:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.078800", - "Timestamp": "2019-10-15T17:09:45.000Z" + "SpotPrice": "3.439400", + "Timestamp": "2024-05-16T04:47:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.078800", - "Timestamp": "2019-10-15T17:09:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111200", + "Timestamp": "2024-05-16T04:47:21.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.439300", - "Timestamp": "2019-10-15T17:09:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070700", + "Timestamp": "2024-05-16T04:47:20.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.439300", - "Timestamp": "2019-10-15T17:09:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067000", + "Timestamp": "2024-05-16T04:47:20.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010700", + "Timestamp": "2024-05-16T04:47:20.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.micro", "ProductDescription": "Windows", - "SpotPrice": "4.390800", - "Timestamp": "2019-10-15T17:09:20.000Z" + "SpotPrice": "0.010600", + "Timestamp": "2024-05-16T04:47:18.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.390800", - "Timestamp": "2019-10-15T17:09:20.000Z" + "SpotPrice": "0.223400", + "Timestamp": "2024-05-16T04:47:15.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r4.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.390800", - "Timestamp": "2019-10-15T17:09:20.000Z" + "SpotPrice": "0.881400", + "Timestamp": "2024-05-16T04:47:15.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r3.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.556000", - "Timestamp": "2019-10-15T17:09:08.000Z" + "SpotPrice": "0.508900", + "Timestamp": "2024-05-16T04:47:10.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.556000", - "Timestamp": "2019-10-15T17:09:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.478900", + "Timestamp": "2024-05-16T04:47:10.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r3.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.426000", - "Timestamp": "2019-10-15T17:09:08.000Z" + "SpotPrice": "0.376900", + "Timestamp": "2024-05-16T04:47:10.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.426000", - "Timestamp": "2019-10-15T17:09:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.878000", + "Timestamp": "2024-05-16T04:47:09.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.712200", - "Timestamp": "2019-10-15T17:06:06.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.947600", + "Timestamp": "2024-05-16T04:47:08.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.712200", - "Timestamp": "2019-10-15T17:06:06.000Z" + "SpotPrice": "1.432600", + "Timestamp": "2024-05-16T04:47:03.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.582200", - "Timestamp": "2019-10-15T17:06:06.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.427600", + "Timestamp": "2024-05-16T04:47:03.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6in.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.582200", - "Timestamp": "2019-10-15T17:06:06.000Z" + "SpotPrice": "1.302600", + "Timestamp": "2024-05-16T04:47:03.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3a.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061800", - "Timestamp": "2019-10-15T17:05:26.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.521200", + "Timestamp": "2024-05-16T04:47:02.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3a.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061800", - "Timestamp": "2019-10-15T17:05:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.410600", + "Timestamp": "2024-05-16T04:47:01.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3a.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001800", - "Timestamp": "2019-10-15T17:05:26.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.large", + "ProductDescription": "Windows", + "SpotPrice": "0.133000", + "Timestamp": "2024-05-16T04:47:00.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3a.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001800", - "Timestamp": "2019-10-15T17:05:26.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.762800", + "Timestamp": "2024-05-16T04:46:55.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.large", "ProductDescription": "Windows", - "SpotPrice": "0.006400", - "Timestamp": "2019-10-15T17:05:25.000Z" + "SpotPrice": "0.113400", + "Timestamp": "2024-05-16T04:46:49.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3a.nano", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.006400", - "Timestamp": "2019-10-15T17:05:25.000Z" + "SpotPrice": "0.305300", + "Timestamp": "2024-05-16T04:46:49.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "7.993800", - "Timestamp": "2019-10-15T16:58:08.000Z" + "SpotPrice": "0.227200", + "Timestamp": "2024-05-16T04:46:49.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "x1e.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.319500", - "Timestamp": "2019-10-15T16:49:47.000Z" + "SpotPrice": "0.935900", + "Timestamp": "2024-05-16T04:46:48.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.571300", - "Timestamp": "2019-10-15T16:41:33.000Z" + "SpotPrice": "1.101600", + "Timestamp": "2024-05-16T04:46:48.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.071600", + "Timestamp": "2024-05-16T04:46:48.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "g3.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.441300", - "Timestamp": "2019-10-15T16:41:33.000Z" + "SpotPrice": "0.971600", + "Timestamp": "2024-05-16T04:46:48.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.617900", - "Timestamp": "2019-10-15T16:41:13.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.059800", + "Timestamp": "2024-05-16T04:46:46.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.487900", - "Timestamp": "2019-10-15T16:41:13.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.394400", + "Timestamp": "2024-05-16T04:46:46.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.196000", - "Timestamp": "2019-10-15T16:40:56.000Z" + "SpotPrice": "0.431300", + "Timestamp": "2024-05-16T04:46:45.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.066000", - "Timestamp": "2019-10-15T16:40:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.426300", + "Timestamp": "2024-05-16T04:46:45.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123400", - "Timestamp": "2019-10-15T16:39:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.301300", + "Timestamp": "2024-05-16T04:46:45.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.123400", - "Timestamp": "2019-10-15T16:39:27.000Z" + "SpotPrice": "0.437100", + "Timestamp": "2024-05-16T04:46:44.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091400", - "Timestamp": "2019-10-15T16:38:56.000Z" + "SpotPrice": "0.237400", + "Timestamp": "2024-05-16T04:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091400", - "Timestamp": "2019-10-15T16:38:56.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232400", + "Timestamp": "2024-05-16T04:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r4.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031400", - "Timestamp": "2019-10-15T16:38:56.000Z" + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T04:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031400", - "Timestamp": "2019-10-15T16:38:56.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.233000", + "Timestamp": "2024-05-16T04:46:42.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.125000", - "Timestamp": "2019-10-15T15:51:46.000Z" + "SpotPrice": "11.695700", + "Timestamp": "2024-05-16T04:46:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.262500", - "Timestamp": "2019-10-15T15:51:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.466400", + "Timestamp": "2024-05-16T04:46:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.202500", - "Timestamp": "2019-10-15T15:51:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.195500", + "Timestamp": "2024-05-16T04:46:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093000", - "Timestamp": "2019-10-15T15:51:16.000Z" + "SpotPrice": "0.145900", + "Timestamp": "2024-05-16T04:46:40.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5ad.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141900", + "Timestamp": "2024-05-16T04:46:40.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033000", - "Timestamp": "2019-10-15T15:51:16.000Z" + "SpotPrice": "0.085900", + "Timestamp": "2024-05-16T04:46:40.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.998200", - "Timestamp": "2019-10-15T15:40:27.000Z" + "SpotPrice": "0.229300", + "Timestamp": "2024-05-16T04:46:38.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "d2.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.998200", - "Timestamp": "2019-10-15T15:40:27.000Z" + "SpotPrice": "0.586200", + "Timestamp": "2024-05-16T04:46:38.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.998200", - "Timestamp": "2019-10-15T15:40:27.000Z" + "SpotPrice": "0.100700", + "Timestamp": "2024-05-16T04:46:38.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5dn.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.963200", - "Timestamp": "2019-10-15T15:40:20.000Z" + "SpotPrice": "0.451000", + "Timestamp": "2024-05-16T04:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.963200", - "Timestamp": "2019-10-15T15:40:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.818700", + "Timestamp": "2024-05-16T04:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.963200", - "Timestamp": "2019-10-15T15:40:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.813700", + "Timestamp": "2024-05-16T04:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.155600", - "Timestamp": "2019-10-15T15:40:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.688700", + "Timestamp": "2024-05-16T04:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.155600", - "Timestamp": "2019-10-15T15:40:01.000Z" + "SpotPrice": "0.071500", + "Timestamp": "2024-05-16T04:46:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.155600", - "Timestamp": "2019-10-15T15:40:01.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042500", + "Timestamp": "2024-05-16T04:46:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.025600", - "Timestamp": "2019-10-15T15:40:01.000Z" + "SpotPrice": "0.011500", + "Timestamp": "2024-05-16T04:46:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.025600", - "Timestamp": "2019-10-15T15:40:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167100", + "Timestamp": "2024-05-16T04:46:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.025600", - "Timestamp": "2019-10-15T15:40:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.207100", + "Timestamp": "2024-05-16T04:46:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.313200", - "Timestamp": "2019-10-15T15:39:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T04:46:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "gr6.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.904000", - "Timestamp": "2019-10-15T15:39:32.000Z" + "SpotPrice": "0.477300", + "Timestamp": "2024-05-16T04:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.313200", - "Timestamp": "2019-10-15T15:39:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.447300", + "Timestamp": "2024-05-16T04:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "gr6.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.253200", - "Timestamp": "2019-10-15T15:39:32.000Z" + "SpotPrice": "0.347300", + "Timestamp": "2024-05-16T04:46:35.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.844000", - "Timestamp": "2019-10-15T15:39:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130100", + "Timestamp": "2024-05-16T04:46:34.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126400", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.253200", - "Timestamp": "2019-10-15T15:39:32.000Z" + "SpotPrice": "0.070100", + "Timestamp": "2024-05-16T04:46:34.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.681600", - "Timestamp": "2019-10-15T15:39:12.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.552200", + "Timestamp": "2024-05-16T04:46:33.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.681600", - "Timestamp": "2019-10-15T15:39:12.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.547200", + "Timestamp": "2024-05-16T04:46:33.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.681600", - "Timestamp": "2019-10-15T15:39:12.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.422200", + "Timestamp": "2024-05-16T04:46:33.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.885200", - "Timestamp": "2019-10-15T15:39:06.000Z" + "SpotPrice": "0.367000", + "Timestamp": "2024-05-16T04:46:33.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.885200", - "Timestamp": "2019-10-15T15:39:06.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.362000", + "Timestamp": "2024-05-16T04:46:33.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.885200", - "Timestamp": "2019-10-15T15:39:06.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.237000", + "Timestamp": "2024-05-16T04:46:33.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.755200", - "Timestamp": "2019-10-15T15:39:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.719700", + "Timestamp": "2024-05-16T04:46:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.755200", - "Timestamp": "2019-10-15T15:39:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T04:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T04:46:29.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.755200", - "Timestamp": "2019-10-15T15:39:06.000Z" + "SpotPrice": "0.052100", + "Timestamp": "2024-05-16T04:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.437200", - "Timestamp": "2019-10-15T15:39:00.000Z" + "SpotPrice": "2.482900", + "Timestamp": "2024-05-16T04:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "t2.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.028000", - "Timestamp": "2019-10-15T15:39:00.000Z" + "SpotPrice": "0.068700", + "Timestamp": "2024-05-16T04:46:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.437200", - "Timestamp": "2019-10-15T15:39:00.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109000", + "Timestamp": "2024-05-16T04:46:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.975400", - "Timestamp": "2019-10-15T15:38:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105300", + "Timestamp": "2024-05-16T04:46:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.340200", - "Timestamp": "2019-10-15T14:51:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049000", + "Timestamp": "2024-05-16T04:46:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.340200", - "Timestamp": "2019-10-15T14:51:20.000Z" + "SpotPrice": "1.043300", + "Timestamp": "2024-05-16T04:46:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.280200", - "Timestamp": "2019-10-15T14:51:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.038300", + "Timestamp": "2024-05-16T04:46:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.280200", - "Timestamp": "2019-10-15T14:51:20.000Z" + "SpotPrice": "0.913300", + "Timestamp": "2024-05-16T04:46:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.464200", - "Timestamp": "2019-10-15T14:51:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.221300", + "Timestamp": "2024-05-16T04:46:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.464200", - "Timestamp": "2019-10-15T14:51:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.217300", + "Timestamp": "2024-05-16T04:46:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.499900", - "Timestamp": "2019-10-15T14:41:24.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.161300", + "Timestamp": "2024-05-16T04:46:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.261900", - "Timestamp": "2019-10-15T14:40:28.000Z" + "SpotPrice": "0.946300", + "Timestamp": "2024-05-16T04:46:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.131900", - "Timestamp": "2019-10-15T14:40:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.941300", + "Timestamp": "2024-05-16T04:46:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012700", - "Timestamp": "2019-10-15T14:40:05.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.816300", + "Timestamp": "2024-05-16T04:46:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012700", - "Timestamp": "2019-10-15T14:40:05.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149500", + "Timestamp": "2024-05-16T04:46:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.246800", - "Timestamp": "2019-10-15T14:40:00.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145800", + "Timestamp": "2024-05-16T04:46:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.246800", - "Timestamp": "2019-10-15T14:40:00.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089500", + "Timestamp": "2024-05-16T04:46:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "14.898400", - "Timestamp": "2019-10-15T14:40:00.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.184000", + "Timestamp": "2024-05-16T04:46:26.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "14.898400", - "Timestamp": "2019-10-15T14:40:00.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.179000", + "Timestamp": "2024-05-16T04:46:26.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3a.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063500", - "Timestamp": "2019-10-15T14:39:58.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.054000", + "Timestamp": "2024-05-16T04:46:26.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063500", - "Timestamp": "2019-10-15T14:39:58.000Z" + "SpotPrice": "0.541200", + "Timestamp": "2024-05-16T04:46:26.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003500", - "Timestamp": "2019-10-15T14:39:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.536200", + "Timestamp": "2024-05-16T04:46:26.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3a.micro", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003500", - "Timestamp": "2019-10-15T14:39:58.000Z" + "SpotPrice": "0.411200", + "Timestamp": "2024-05-16T04:46:26.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "12.084400", - "Timestamp": "2019-10-15T14:39:21.000Z" + "SpotPrice": "0.148300", + "Timestamp": "2024-05-16T04:46:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "12.084400", - "Timestamp": "2019-10-15T14:39:21.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144300", + "Timestamp": "2024-05-16T04:46:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "11.954400", - "Timestamp": "2019-10-15T14:39:21.000Z" + "SpotPrice": "0.088300", + "Timestamp": "2024-05-16T04:46:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "11.954400", - "Timestamp": "2019-10-15T14:39:21.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.372100", + "Timestamp": "2024-05-16T04:46:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122800", - "Timestamp": "2019-10-15T14:39:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.367100", + "Timestamp": "2024-05-16T04:46:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242100", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "t2.micro", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122800", - "Timestamp": "2019-10-15T14:39:19.000Z" + "SpotPrice": "0.063000", + "Timestamp": "2024-05-16T04:46:21.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062800", - "Timestamp": "2019-10-15T14:39:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003000", + "Timestamp": "2024-05-16T04:46:21.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t2.micro", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062800", - "Timestamp": "2019-10-15T14:39:19.000Z" + "SpotPrice": "0.003000", + "Timestamp": "2024-05-16T04:46:21.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.999100", - "Timestamp": "2019-10-15T14:39:06.000Z" + "SpotPrice": "0.952000", + "Timestamp": "2024-05-16T04:46:15.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.999100", - "Timestamp": "2019-10-15T14:39:06.000Z" + "SpotPrice": "0.451600", + "Timestamp": "2024-05-16T04:46:12.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.999400", - "Timestamp": "2019-10-15T14:39:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.564300", + "Timestamp": "2024-05-16T04:32:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.999400", - "Timestamp": "2019-10-15T14:39:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.534300", + "Timestamp": "2024-05-16T04:32:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.657400", - "Timestamp": "2019-10-15T14:39:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.434300", + "Timestamp": "2024-05-16T04:32:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.055300", + "Timestamp": "2024-05-16T04:32:35.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.657400", - "Timestamp": "2019-10-15T14:39:06.000Z" + "SpotPrice": "1.438800", + "Timestamp": "2024-05-16T04:32:33.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.527400", - "Timestamp": "2019-10-15T14:39:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.433800", + "Timestamp": "2024-05-16T04:32:33.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.527400", - "Timestamp": "2019-10-15T14:39:06.000Z" + "SpotPrice": "1.308800", + "Timestamp": "2024-05-16T04:32:33.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.921100", - "Timestamp": "2019-10-15T14:38:36.000Z" + "SpotPrice": "1.712400", + "Timestamp": "2024-05-16T04:32:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.921100", - "Timestamp": "2019-10-15T14:38:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.682400", + "Timestamp": "2024-05-16T04:32:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.791100", - "Timestamp": "2019-10-15T14:38:36.000Z" + "SpotPrice": "1.582400", + "Timestamp": "2024-05-16T04:32:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.388400", + "Timestamp": "2024-05-16T04:32:30.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.383400", + "Timestamp": "2024-05-16T04:32:30.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.791100", - "Timestamp": "2019-10-15T14:38:36.000Z" + "SpotPrice": "0.258400", + "Timestamp": "2024-05-16T04:32:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i-flex.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.968300", - "Timestamp": "2019-10-15T13:51:08.000Z" + "SpotPrice": "0.422600", + "Timestamp": "2024-05-16T04:32:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.large", "ProductDescription": "Windows", - "SpotPrice": "0.968300", - "Timestamp": "2019-10-15T13:51:08.000Z" + "SpotPrice": "0.114400", + "Timestamp": "2024-05-16T04:32:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.246400", - "Timestamp": "2019-10-15T13:50:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.393800", + "Timestamp": "2024-05-16T04:32:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.246400", - "Timestamp": "2019-10-15T13:50:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.388800", + "Timestamp": "2024-05-16T04:32:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.246400", - "Timestamp": "2019-10-15T13:50:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.263800", + "Timestamp": "2024-05-16T04:32:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.730300", - "Timestamp": "2019-10-15T13:50:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.843400", + "Timestamp": "2024-05-16T04:32:21.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.730300", - "Timestamp": "2019-10-15T13:50:50.000Z" + "SpotPrice": "0.120200", + "Timestamp": "2024-05-16T04:32:17.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.600300", - "Timestamp": "2019-10-15T13:50:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116500", + "Timestamp": "2024-05-16T04:32:17.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.600300", - "Timestamp": "2019-10-15T13:50:50.000Z" + "SpotPrice": "0.060200", + "Timestamp": "2024-05-16T04:32:17.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.960400", - "Timestamp": "2019-10-15T13:50:14.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.756100", + "Timestamp": "2024-05-16T04:32:14.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.960400", - "Timestamp": "2019-10-15T13:50:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T04:32:08.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.960400", - "Timestamp": "2019-10-15T13:50:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.425800", + "Timestamp": "2024-05-16T04:32:06.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.830400", - "Timestamp": "2019-10-15T13:50:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.657600", + "Timestamp": "2024-05-16T04:32:04.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.830400", - "Timestamp": "2019-10-15T13:50:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.652600", + "Timestamp": "2024-05-16T04:32:04.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3en.24xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.830400", - "Timestamp": "2019-10-15T13:50:14.000Z" + "SpotPrice": "1.527600", + "Timestamp": "2024-05-16T04:32:04.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t2.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.068600", - "Timestamp": "2019-10-15T13:41:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.288500", + "Timestamp": "2024-05-16T04:32:00.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r4.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.068600", - "Timestamp": "2019-10-15T13:41:30.000Z" + "SpotPrice": "0.106100", + "Timestamp": "2024-05-16T04:32:00.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t2.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.008600", - "Timestamp": "2019-10-15T13:41:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146100", + "Timestamp": "2024-05-16T04:32:00.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r4.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.008600", - "Timestamp": "2019-10-15T13:41:30.000Z" + "SpotPrice": "0.046100", + "Timestamp": "2024-05-16T04:32:00.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5n.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.750400", - "Timestamp": "2019-10-15T13:40:23.000Z" + "SpotPrice": "2.871700", + "Timestamp": "2024-05-16T04:31:58.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5n.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.750400", - "Timestamp": "2019-10-15T13:40:23.000Z" + "SpotPrice": "5.547400", + "Timestamp": "2024-05-16T04:31:57.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5n.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.750400", - "Timestamp": "2019-10-15T13:40:23.000Z" - }, - { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5n.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.568400", - "Timestamp": "2019-10-15T13:40:04.000Z" + "SpotPrice": "3.674900", + "Timestamp": "2024-05-16T04:31:55.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5n.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.568400", - "Timestamp": "2019-10-15T13:40:04.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221000", + "Timestamp": "2024-05-16T04:31:54.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5n.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.568400", - "Timestamp": "2019-10-15T13:40:04.000Z" + "SpotPrice": "0.077100", + "Timestamp": "2024-05-16T04:31:53.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5n.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.438400", - "Timestamp": "2019-10-15T13:40:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073400", + "Timestamp": "2024-05-16T04:31:53.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5n.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.438400", - "Timestamp": "2019-10-15T13:40:04.000Z" + "SpotPrice": "0.017100", + "Timestamp": "2024-05-16T04:31:53.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5n.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.438400", - "Timestamp": "2019-10-15T13:40:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107000", + "Timestamp": "2024-05-16T04:31:51.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.017800", - "Timestamp": "2019-10-15T13:39:44.000Z" + "SpotPrice": "0.213100", + "Timestamp": "2024-05-16T04:31:51.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t2.small", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.017800", - "Timestamp": "2019-10-15T13:39:44.000Z" + "SpotPrice": "0.930800", + "Timestamp": "2024-05-16T04:31:50.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "x1e.32xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "11.736400", - "Timestamp": "2019-10-15T13:39:23.000Z" + "SpotPrice": "0.071300", + "Timestamp": "2024-05-16T04:31:50.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "x1e.32xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "38.818000", - "Timestamp": "2019-10-15T13:39:23.000Z" + "SpotPrice": "0.071700", + "Timestamp": "2024-05-16T04:31:50.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "11.606400", - "Timestamp": "2019-10-15T13:39:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067600", + "Timestamp": "2024-05-16T04:31:50.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "x1e.32xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068000", + "Timestamp": "2024-05-16T04:31:50.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "38.688000", - "Timestamp": "2019-10-15T13:39:23.000Z" + "SpotPrice": "0.011300", + "Timestamp": "2024-05-16T04:31:50.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Windows", - "SpotPrice": "17.494400", - "Timestamp": "2019-10-15T13:39:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011700", + "Timestamp": "2024-05-16T04:31:50.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "x1e.32xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "t2.small", "ProductDescription": "Windows", - "SpotPrice": "44.576000", - "Timestamp": "2019-10-15T13:39:01.000Z" + "SpotPrice": "0.014700", + "Timestamp": "2024-05-16T04:31:49.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.119900", - "Timestamp": "2019-10-15T13:37:15.000Z" + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T04:31:48.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.119900", - "Timestamp": "2019-10-15T13:37:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101600", + "Timestamp": "2024-05-16T04:31:48.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.119900", - "Timestamp": "2019-10-15T13:37:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045600", + "Timestamp": "2024-05-16T04:31:48.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.059900", - "Timestamp": "2019-10-15T13:37:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113100", + "Timestamp": "2024-05-16T04:31:47.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.059900", - "Timestamp": "2019-10-15T13:37:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.351500", + "Timestamp": "2024-05-16T04:31:45.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.059900", - "Timestamp": "2019-10-15T13:37:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.346500", + "Timestamp": "2024-05-16T04:31:45.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.243900", - "Timestamp": "2019-10-15T13:36:57.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.221500", + "Timestamp": "2024-05-16T04:31:45.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6id.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.243900", - "Timestamp": "2019-10-15T13:36:57.000Z" + "SpotPrice": "7.900800", + "Timestamp": "2024-05-16T04:31:45.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.243900", - "Timestamp": "2019-10-15T13:36:57.000Z" + "SpotPrice": "7.298500", + "Timestamp": "2024-05-16T04:31:43.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.045200", - "Timestamp": "2019-10-15T12:49:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118200", + "Timestamp": "2024-05-16T04:31:42.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.045200", - "Timestamp": "2019-10-15T12:49:57.000Z" + "SpotPrice": "0.091900", + "Timestamp": "2024-05-16T04:31:42.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.045200", - "Timestamp": "2019-10-15T12:49:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088200", + "Timestamp": "2024-05-16T04:31:42.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.915200", - "Timestamp": "2019-10-15T12:49:57.000Z" + "SpotPrice": "0.031900", + "Timestamp": "2024-05-16T04:31:42.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.915200", - "Timestamp": "2019-10-15T12:49:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.035700", + "Timestamp": "2024-05-16T04:31:42.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.915200", - "Timestamp": "2019-10-15T12:49:57.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.484100", + "Timestamp": "2024-05-16T04:31:42.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.123200", - "Timestamp": "2019-10-15T12:48:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.479100", + "Timestamp": "2024-05-16T04:31:42.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.123200", - "Timestamp": "2019-10-15T12:48:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.354100", + "Timestamp": "2024-05-16T04:31:42.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.123200", - "Timestamp": "2019-10-15T12:48:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.187800", + "Timestamp": "2024-05-16T04:31:40.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066500", - "Timestamp": "2019-10-15T12:41:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183800", + "Timestamp": "2024-05-16T04:31:40.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066500", - "Timestamp": "2019-10-15T12:41:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127800", + "Timestamp": "2024-05-16T04:31:40.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066500", - "Timestamp": "2019-10-15T12:41:39.000Z" + "SpotPrice": "0.213900", + "Timestamp": "2024-05-16T04:31:39.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006500", - "Timestamp": "2019-10-15T12:41:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.210200", + "Timestamp": "2024-05-16T04:31:39.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006500", - "Timestamp": "2019-10-15T12:41:39.000Z" + "SpotPrice": "0.153900", + "Timestamp": "2024-05-16T04:31:39.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006500", - "Timestamp": "2019-10-15T12:41:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.912100", + "Timestamp": "2024-05-16T04:31:38.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.998800", - "Timestamp": "2019-10-15T12:40:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.448500", + "Timestamp": "2024-05-16T04:31:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.998800", - "Timestamp": "2019-10-15T12:40:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.443500", + "Timestamp": "2024-05-16T04:31:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.184800", - "Timestamp": "2019-10-15T12:39:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.318500", + "Timestamp": "2024-05-16T04:31:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.184800", - "Timestamp": "2019-10-15T12:39:59.000Z" + "SpotPrice": "0.095600", + "Timestamp": "2024-05-16T04:31:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.054800", - "Timestamp": "2019-10-15T12:39:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091900", + "Timestamp": "2024-05-16T04:31:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.054800", - "Timestamp": "2019-10-15T12:39:59.000Z" + "SpotPrice": "0.035600", + "Timestamp": "2024-05-16T04:31:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.246900", - "Timestamp": "2019-10-15T12:38:43.000Z" + "SpotPrice": "0.844600", + "Timestamp": "2024-05-16T04:31:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.246900", - "Timestamp": "2019-10-15T12:38:43.000Z" + "SpotPrice": "5.957300", + "Timestamp": "2024-05-16T04:31:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.246900", - "Timestamp": "2019-10-15T12:38:43.000Z" + "SpotPrice": "12.388800", + "Timestamp": "2024-05-16T04:31:33.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122900", - "Timestamp": "2019-10-15T12:38:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.231700", + "Timestamp": "2024-05-16T04:31:33.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122900", - "Timestamp": "2019-10-15T12:38:29.000Z" + "SpotPrice": "0.870500", + "Timestamp": "2024-05-16T04:31:32.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122900", - "Timestamp": "2019-10-15T12:38:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.840500", + "Timestamp": "2024-05-16T04:31:32.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062900", - "Timestamp": "2019-10-15T12:38:29.000Z" + "SpotPrice": "0.740500", + "Timestamp": "2024-05-16T04:31:32.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062900", - "Timestamp": "2019-10-15T12:38:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093900", + "Timestamp": "2024-05-16T04:31:32.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133900", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "t2.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062900", - "Timestamp": "2019-10-15T12:38:29.000Z" + "SpotPrice": "0.033900", + "Timestamp": "2024-05-16T04:31:32.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.926300", - "Timestamp": "2019-10-15T11:50:30.000Z" + "SpotPrice": "0.428900", + "Timestamp": "2024-05-16T04:31:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.926300", - "Timestamp": "2019-10-15T11:50:30.000Z" + "SpotPrice": "1.836000", + "Timestamp": "2024-05-16T04:31:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.640300", - "Timestamp": "2019-10-15T11:50:07.000Z" + "SpotPrice": "0.727800", + "Timestamp": "2024-05-16T04:31:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.640300", - "Timestamp": "2019-10-15T11:50:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.722800", + "Timestamp": "2024-05-16T04:31:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.510300", - "Timestamp": "2019-10-15T11:50:07.000Z" + "SpotPrice": "0.597800", + "Timestamp": "2024-05-16T04:31:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.510300", - "Timestamp": "2019-10-15T11:50:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.876700", + "Timestamp": "2024-05-16T04:31:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.011100", - "Timestamp": "2019-10-15T11:45:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.846700", + "Timestamp": "2024-05-16T04:31:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.746700", + "Timestamp": "2024-05-16T04:31:30.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i-flex.large", "ProductDescription": "Windows", - "SpotPrice": "0.011100", - "Timestamp": "2019-10-15T11:45:19.000Z" + "SpotPrice": "0.107900", + "Timestamp": "2024-05-16T04:31:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3.nano", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.011100", - "Timestamp": "2019-10-15T11:45:19.000Z" + "SpotPrice": "0.222600", + "Timestamp": "2024-05-16T04:31:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.139800", - "Timestamp": "2019-10-15T11:40:08.000Z" + "SpotPrice": "0.097300", + "Timestamp": "2024-05-16T04:31:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3en.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.139800", - "Timestamp": "2019-10-15T11:40:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093600", + "Timestamp": "2024-05-16T04:31:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037300", + "Timestamp": "2024-05-16T04:31:30.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.139800", - "Timestamp": "2019-10-15T11:40:08.000Z" + "SpotPrice": "0.134100", + "Timestamp": "2024-05-16T04:31:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3en.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.079800", - "Timestamp": "2019-10-15T11:40:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130400", + "Timestamp": "2024-05-16T04:31:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.079800", - "Timestamp": "2019-10-15T11:40:08.000Z" + "SpotPrice": "0.074100", + "Timestamp": "2024-05-16T04:31:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3en.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.079800", - "Timestamp": "2019-10-15T11:40:08.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129200", + "Timestamp": "2024-05-16T04:31:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.876000", - "Timestamp": "2019-10-15T11:39:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125200", + "Timestamp": "2024-05-16T04:31:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.493900", - "Timestamp": "2019-10-15T11:39:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069200", + "Timestamp": "2024-05-16T04:31:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.255900", - "Timestamp": "2019-10-15T11:39:36.000Z" + "SpotPrice": "0.129200", + "Timestamp": "2024-05-16T04:31:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.125900", - "Timestamp": "2019-10-15T11:39:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125500", + "Timestamp": "2024-05-16T04:31:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3en.large", - "ProductDescription": "Windows", - "SpotPrice": "0.171800", - "Timestamp": "2019-10-15T11:39:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069200", + "Timestamp": "2024-05-16T04:31:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3en.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.171800", - "Timestamp": "2019-10-15T11:39:08.000Z" + "SpotPrice": "0.431100", + "Timestamp": "2024-05-16T04:31:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3en.large", - "ProductDescription": "Windows", - "SpotPrice": "0.171800", - "Timestamp": "2019-10-15T11:39:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.675200", + "Timestamp": "2024-05-16T04:31:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.998800", - "Timestamp": "2019-10-15T11:00:21.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.670200", + "Timestamp": "2024-05-16T04:31:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.998800", - "Timestamp": "2019-10-15T11:00:21.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.545200", + "Timestamp": "2024-05-16T04:31:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.998800", - "Timestamp": "2019-10-15T11:00:21.000Z" + "SpotPrice": "5.293500", + "Timestamp": "2024-05-16T04:31:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.184800", - "Timestamp": "2019-10-15T11:00:21.000Z" + "SpotPrice": "1.839800", + "Timestamp": "2024-05-16T04:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.184800", - "Timestamp": "2019-10-15T11:00:21.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.834800", + "Timestamp": "2024-05-16T04:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.184800", - "Timestamp": "2019-10-15T11:00:21.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.709800", + "Timestamp": "2024-05-16T04:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.054800", - "Timestamp": "2019-10-15T11:00:21.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071000", + "Timestamp": "2024-05-16T04:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.054800", - "Timestamp": "2019-10-15T11:00:21.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067300", + "Timestamp": "2024-05-16T04:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gd.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.054800", - "Timestamp": "2019-10-15T11:00:21.000Z" + "SpotPrice": "0.011000", + "Timestamp": "2024-05-16T04:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.531200", - "Timestamp": "2019-10-15T10:59:34.000Z" + "SpotPrice": "1.948500", + "Timestamp": "2024-05-16T04:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.531200", - "Timestamp": "2019-10-15T10:59:34.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.943500", + "Timestamp": "2024-05-16T04:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.401200", - "Timestamp": "2019-10-15T10:59:34.000Z" + "SpotPrice": "1.818500", + "Timestamp": "2024-05-16T04:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.401200", - "Timestamp": "2019-10-15T10:59:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157200", + "Timestamp": "2024-05-16T04:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.393700", - "Timestamp": "2019-10-15T10:50:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153200", + "Timestamp": "2024-05-16T04:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.263700", - "Timestamp": "2019-10-15T10:50:38.000Z" + "SpotPrice": "0.097200", + "Timestamp": "2024-05-16T04:31:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.873200", - "Timestamp": "2019-10-15T10:49:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.552800", + "Timestamp": "2024-05-16T04:31:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.873200", - "Timestamp": "2019-10-15T10:49:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.547800", + "Timestamp": "2024-05-16T04:31:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.999700", - "Timestamp": "2019-10-15T10:49:27.000Z" - }, - { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.999700", - "Timestamp": "2019-10-15T10:49:27.000Z" - }, - { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.999700", - "Timestamp": "2019-10-15T10:49:27.000Z" - }, - { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.657400", - "Timestamp": "2019-10-15T10:49:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.422800", + "Timestamp": "2024-05-16T04:31:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m4.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.657400", - "Timestamp": "2019-10-15T10:49:19.000Z" + "SpotPrice": "0.130700", + "Timestamp": "2024-05-16T04:31:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.657400", - "Timestamp": "2019-10-15T10:49:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170700", + "Timestamp": "2024-05-16T04:31:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m4.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.527400", - "Timestamp": "2019-10-15T10:49:19.000Z" + "SpotPrice": "0.070700", + "Timestamp": "2024-05-16T04:31:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.527400", - "Timestamp": "2019-10-15T10:49:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.369200", + "Timestamp": "2024-05-16T04:31:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.527400", - "Timestamp": "2019-10-15T10:49:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.364200", + "Timestamp": "2024-05-16T04:31:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.999400", - "Timestamp": "2019-10-15T10:49:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.239200", + "Timestamp": "2024-05-16T04:31:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.999400", - "Timestamp": "2019-10-15T10:49:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.209900", + "Timestamp": "2024-05-16T04:31:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.999400", - "Timestamp": "2019-10-15T10:49:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.206200", + "Timestamp": "2024-05-16T04:31:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.407500", - "Timestamp": "2019-10-15T10:40:00.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149900", + "Timestamp": "2024-05-16T04:31:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.407500", - "Timestamp": "2019-10-15T10:40:00.000Z" + "SpotPrice": "0.150900", + "Timestamp": "2024-05-16T04:31:12.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "g4dn.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.277500", - "Timestamp": "2019-10-15T10:40:00.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190900", + "Timestamp": "2024-05-16T04:31:12.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r3.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.277500", - "Timestamp": "2019-10-15T10:40:00.000Z" + "SpotPrice": "0.089900", + "Timestamp": "2024-05-16T04:31:12.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.645500", - "Timestamp": "2019-10-15T10:39:43.000Z" + "SpotPrice": "0.415800", + "Timestamp": "2024-05-16T04:31:11.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "g4dn.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.micro", "ProductDescription": "Windows", - "SpotPrice": "0.645500", - "Timestamp": "2019-10-15T10:39:43.000Z" + "SpotPrice": "0.010600", + "Timestamp": "2024-05-16T04:19:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.493900", - "Timestamp": "2019-10-15T10:39:22.000Z" + "SpotPrice": "0.454100", + "Timestamp": "2024-05-16T04:17:34.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.493900", - "Timestamp": "2019-10-15T10:39:22.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081400", + "Timestamp": "2024-05-16T04:17:13.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.493900", - "Timestamp": "2019-10-15T10:39:22.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.052400", + "Timestamp": "2024-05-16T04:17:13.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.255900", - "Timestamp": "2019-10-15T10:39:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021400", + "Timestamp": "2024-05-16T04:17:13.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.metal-24xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.255900", - "Timestamp": "2019-10-15T10:39:15.000Z" + "SpotPrice": "1.523000", + "Timestamp": "2024-05-16T04:17:09.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.255900", - "Timestamp": "2019-10-15T10:39:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.518000", + "Timestamp": "2024-05-16T04:17:09.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.metal-24xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.125900", - "Timestamp": "2019-10-15T10:39:15.000Z" + "SpotPrice": "1.393000", + "Timestamp": "2024-05-16T04:17:09.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.125900", - "Timestamp": "2019-10-15T10:39:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.789800", + "Timestamp": "2024-05-16T04:17:02.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.125900", - "Timestamp": "2019-10-15T10:39:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.257500", + "Timestamp": "2024-05-16T04:17:01.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.122000", - "Timestamp": "2019-10-15T10:38:55.000Z" + "SpotPrice": "1.981600", + "Timestamp": "2024-05-16T04:17:00.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.122000", - "Timestamp": "2019-10-15T10:38:55.000Z" + "SpotPrice": "2.718100", + "Timestamp": "2024-05-16T04:16:59.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090000", - "Timestamp": "2019-10-15T10:38:18.000Z" + "SpotPrice": "1.701400", + "Timestamp": "2024-05-16T04:16:55.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090000", - "Timestamp": "2019-10-15T10:38:18.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.696400", + "Timestamp": "2024-05-16T04:16:55.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m4.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030000", - "Timestamp": "2019-10-15T10:38:18.000Z" + "SpotPrice": "1.571400", + "Timestamp": "2024-05-16T04:16:55.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030000", - "Timestamp": "2019-10-15T10:38:18.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.574100", + "Timestamp": "2024-05-16T04:16:53.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.608800", - "Timestamp": "2019-10-15T09:39:51.000Z" + "SpotPrice": "1.837500", + "Timestamp": "2024-05-16T04:16:52.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.608800", - "Timestamp": "2019-10-15T09:39:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.832500", + "Timestamp": "2024-05-16T04:16:52.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.608800", - "Timestamp": "2019-10-15T09:39:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.707500", + "Timestamp": "2024-05-16T04:16:52.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.478800", - "Timestamp": "2019-10-15T09:39:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T04:16:51.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.478800", - "Timestamp": "2019-10-15T09:39:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.062600", + "Timestamp": "2024-05-16T04:16:50.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.478800", - "Timestamp": "2019-10-15T09:39:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.057600", + "Timestamp": "2024-05-16T04:16:50.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.030800", - "Timestamp": "2019-10-15T09:39:45.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.932600", + "Timestamp": "2024-05-16T04:16:50.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.030800", - "Timestamp": "2019-10-15T09:39:45.000Z" + "SpotPrice": "0.929800", + "Timestamp": "2024-05-16T04:16:50.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.030800", - "Timestamp": "2019-10-15T09:39:45.000Z" + "SpotPrice": "0.887200", + "Timestamp": "2024-05-16T04:16:50.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.129800", - "Timestamp": "2019-10-15T09:39:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.639000", + "Timestamp": "2024-05-16T04:16:50.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.129800", - "Timestamp": "2019-10-15T09:39:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.609000", + "Timestamp": "2024-05-16T04:16:50.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.116200", - "Timestamp": "2019-10-15T09:39:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.509000", + "Timestamp": "2024-05-16T04:16:50.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.116200", - "Timestamp": "2019-10-15T09:39:14.000Z" + "SpotPrice": "0.405000", + "Timestamp": "2024-05-16T04:16:48.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.056200", - "Timestamp": "2019-10-15T09:39:14.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.400000", + "Timestamp": "2024-05-16T04:16:48.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.056200", - "Timestamp": "2019-10-15T09:39:14.000Z" - }, - { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.933100", - "Timestamp": "2019-10-15T09:39:12.000Z" + "SpotPrice": "0.275000", + "Timestamp": "2024-05-16T04:16:48.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.933100", - "Timestamp": "2019-10-15T09:39:12.000Z" + "SpotPrice": "1.818700", + "Timestamp": "2024-05-16T04:16:46.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "g4dn.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.803100", - "Timestamp": "2019-10-15T09:39:12.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.813700", + "Timestamp": "2024-05-16T04:16:46.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.803100", - "Timestamp": "2019-10-15T09:39:12.000Z" + "SpotPrice": "1.688700", + "Timestamp": "2024-05-16T04:16:46.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.275100", - "Timestamp": "2019-10-15T09:39:07.000Z" + "SpotPrice": "0.243300", + "Timestamp": "2024-05-16T04:16:44.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "g4dn.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.275100", - "Timestamp": "2019-10-15T09:39:07.000Z" + "SpotPrice": "0.270000", + "Timestamp": "2024-05-16T04:16:43.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.624300", - "Timestamp": "2019-10-15T09:35:16.000Z" + "SpotPrice": "2.991100", + "Timestamp": "2024-05-16T04:16:43.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.624300", - "Timestamp": "2019-10-15T09:35:16.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.986100", + "Timestamp": "2024-05-16T04:16:43.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.494300", - "Timestamp": "2019-10-15T09:35:16.000Z" + "SpotPrice": "2.861100", + "Timestamp": "2024-05-16T04:16:43.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.494300", - "Timestamp": "2019-10-15T09:35:16.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.455800", + "Timestamp": "2024-05-16T04:16:40.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.393000", - "Timestamp": "2019-10-15T09:01:06.000Z" + "SpotPrice": "0.886300", + "Timestamp": "2024-05-16T04:16:39.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.546700", - "Timestamp": "2019-10-15T09:01:06.000Z" + "SpotPrice": "0.259800", + "Timestamp": "2024-05-16T04:16:39.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.219600", - "Timestamp": "2019-10-15T08:50:44.000Z" + "SpotPrice": "2.058500", + "Timestamp": "2024-05-16T04:16:39.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.219600", - "Timestamp": "2019-10-15T08:50:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.053500", + "Timestamp": "2024-05-16T04:16:39.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.219600", - "Timestamp": "2019-10-15T08:50:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.928500", + "Timestamp": "2024-05-16T04:16:39.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.159600", - "Timestamp": "2019-10-15T08:50:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.563500", + "Timestamp": "2024-05-16T04:16:38.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.159600", - "Timestamp": "2019-10-15T08:50:44.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.083900", + "Timestamp": "2024-05-16T04:16:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.159600", - "Timestamp": "2019-10-15T08:50:44.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.078900", + "Timestamp": "2024-05-16T04:16:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.343600", - "Timestamp": "2019-10-15T08:50:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.953900", + "Timestamp": "2024-05-16T04:16:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.343600", - "Timestamp": "2019-10-15T08:50:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.639700", + "Timestamp": "2024-05-16T04:16:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.343600", - "Timestamp": "2019-10-15T08:50:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.634700", + "Timestamp": "2024-05-16T04:16:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.646000", - "Timestamp": "2019-10-15T08:49:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.509700", + "Timestamp": "2024-05-16T04:16:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.646000", - "Timestamp": "2019-10-15T08:49:39.000Z" + "SpotPrice": "0.094600", + "Timestamp": "2024-05-16T04:16:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.516000", - "Timestamp": "2019-10-15T08:49:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090900", + "Timestamp": "2024-05-16T04:16:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.516000", - "Timestamp": "2019-10-15T08:49:39.000Z" + "SpotPrice": "0.034600", + "Timestamp": "2024-05-16T04:16:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.988000", - "Timestamp": "2019-10-15T08:49:39.000Z" + "SpotPrice": "5.294400", + "Timestamp": "2024-05-16T04:16:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.988000", - "Timestamp": "2019-10-15T08:49:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.195800", + "Timestamp": "2024-05-16T04:16:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.748800", - "Timestamp": "2019-10-15T08:40:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.190800", + "Timestamp": "2024-05-16T04:16:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.748800", - "Timestamp": "2019-10-15T08:40:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.065800", + "Timestamp": "2024-05-16T04:16:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.748800", - "Timestamp": "2019-10-15T08:40:38.000Z" + "SpotPrice": "0.276000", + "Timestamp": "2024-05-16T04:16:33.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.950900", - "Timestamp": "2019-10-15T08:40:19.000Z" - }, - { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.142800", - "Timestamp": "2019-10-15T08:39:52.000Z" + "SpotPrice": "0.230700", + "Timestamp": "2024-05-16T04:16:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.142800", - "Timestamp": "2019-10-15T08:39:52.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.111100", + "Timestamp": "2024-05-16T04:16:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.142800", - "Timestamp": "2019-10-15T08:39:52.000Z" - }, - { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.012800", - "Timestamp": "2019-10-15T08:39:52.000Z" + "SpotPrice": "0.349300", + "Timestamp": "2024-05-16T04:16:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.012800", - "Timestamp": "2019-10-15T08:39:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.344300", + "Timestamp": "2024-05-16T04:16:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.012800", - "Timestamp": "2019-10-15T08:39:52.000Z" - }, - { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.249900", - "Timestamp": "2019-10-15T08:39:33.000Z" - }, - { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.249900", - "Timestamp": "2019-10-15T08:39:33.000Z" + "SpotPrice": "0.219300", + "Timestamp": "2024-05-16T04:16:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "h1.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.249900", - "Timestamp": "2019-10-15T08:39:33.000Z" - }, - { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.119900", - "Timestamp": "2019-10-15T08:39:33.000Z" + "SpotPrice": "0.364700", + "Timestamp": "2024-05-16T04:16:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.119900", - "Timestamp": "2019-10-15T08:39:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "h1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334700", + "Timestamp": "2024-05-16T04:16:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "h1.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.119900", - "Timestamp": "2019-10-15T08:39:33.000Z" + "SpotPrice": "0.234700", + "Timestamp": "2024-05-16T04:16:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.487900", - "Timestamp": "2019-10-15T08:39:15.000Z" + "SpotPrice": "2.659900", + "Timestamp": "2024-05-16T04:16:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.487900", - "Timestamp": "2019-10-15T08:39:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.198300", + "Timestamp": "2024-05-16T04:16:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.487900", - "Timestamp": "2019-10-15T08:39:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.193300", + "Timestamp": "2024-05-16T04:16:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.712200", - "Timestamp": "2019-10-15T08:38:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.068300", + "Timestamp": "2024-05-16T04:16:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c4.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "7.426000", - "Timestamp": "2019-10-15T08:38:06.000Z" + "SpotPrice": "0.098200", + "Timestamp": "2024-05-16T04:16:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.712200", - "Timestamp": "2019-10-15T08:38:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138200", + "Timestamp": "2024-05-16T04:16:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c4.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.582200", - "Timestamp": "2019-10-15T08:38:06.000Z" + "SpotPrice": "0.038200", + "Timestamp": "2024-05-16T04:16:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "7.296000", - "Timestamp": "2019-10-15T08:38:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.302400", + "Timestamp": "2024-05-16T04:16:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.582200", - "Timestamp": "2019-10-15T08:38:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.297400", + "Timestamp": "2024-05-16T04:16:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.998200", - "Timestamp": "2019-10-15T08:37:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172400", + "Timestamp": "2024-05-16T04:16:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5.metal", - "ProductDescription": "Windows", - "SpotPrice": "11.712000", - "Timestamp": "2019-10-15T08:37:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.916400", + "Timestamp": "2024-05-16T04:16:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.998200", - "Timestamp": "2019-10-15T08:37:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.911400", + "Timestamp": "2024-05-16T04:16:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091500", - "Timestamp": "2019-10-15T08:37:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.786400", + "Timestamp": "2024-05-16T04:16:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091500", - "Timestamp": "2019-10-15T08:37:28.000Z" + "SpotPrice": "1.990200", + "Timestamp": "2024-05-16T04:16:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091500", - "Timestamp": "2019-10-15T08:37:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.985200", + "Timestamp": "2024-05-16T04:16:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031500", - "Timestamp": "2019-10-15T08:37:28.000Z" + "SpotPrice": "1.860200", + "Timestamp": "2024-05-16T04:16:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031500", - "Timestamp": "2019-10-15T08:37:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.183800", + "Timestamp": "2024-05-16T04:16:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031500", - "Timestamp": "2019-10-15T08:37:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179800", + "Timestamp": "2024-05-16T04:16:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123500", - "Timestamp": "2019-10-15T08:37:17.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123800", + "Timestamp": "2024-05-16T04:16:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.123500", - "Timestamp": "2019-10-15T08:37:17.000Z" + "SpotPrice": "3.285400", + "Timestamp": "2024-05-16T04:16:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5d.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4ad.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.123500", - "Timestamp": "2019-10-15T08:37:17.000Z" + "SpotPrice": "0.249300", + "Timestamp": "2024-05-16T04:16:20.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.330600", - "Timestamp": "2019-10-15T07:50:29.000Z" + "SpotPrice": "3.865000", + "Timestamp": "2024-05-16T04:16:10.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.330600", - "Timestamp": "2019-10-15T07:50:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.860000", + "Timestamp": "2024-05-16T04:16:10.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.200600", - "Timestamp": "2019-10-15T07:50:29.000Z" + "SpotPrice": "3.735000", + "Timestamp": "2024-05-16T04:16:10.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.200600", - "Timestamp": "2019-10-15T07:50:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.444000", + "Timestamp": "2024-05-16T04:02:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.large", "ProductDescription": "Windows", - "SpotPrice": "1.936600", - "Timestamp": "2019-10-15T07:49:53.000Z" + "SpotPrice": "0.128200", + "Timestamp": "2024-05-16T04:02:32.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.large", "ProductDescription": "Windows", - "SpotPrice": "1.936600", - "Timestamp": "2019-10-15T07:49:53.000Z" + "SpotPrice": "0.106700", + "Timestamp": "2024-05-16T04:02:32.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.862300", - "Timestamp": "2019-10-15T07:49:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.444500", + "Timestamp": "2024-05-16T04:02:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.862300", - "Timestamp": "2019-10-15T07:49:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.439500", + "Timestamp": "2024-05-16T04:02:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.608400", - "Timestamp": "2019-10-15T07:40:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.314500", + "Timestamp": "2024-05-16T04:02:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.608400", - "Timestamp": "2019-10-15T07:40:56.000Z" + "SpotPrice": "0.207500", + "Timestamp": "2024-05-16T04:02:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.478400", - "Timestamp": "2019-10-15T07:40:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.203800", + "Timestamp": "2024-05-16T04:02:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.478400", - "Timestamp": "2019-10-15T07:40:56.000Z" + "SpotPrice": "0.147500", + "Timestamp": "2024-05-16T04:02:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.950400", - "Timestamp": "2019-10-15T07:40:23.000Z" + "SpotPrice": "0.888700", + "Timestamp": "2024-05-16T04:02:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.950400", - "Timestamp": "2019-10-15T07:40:23.000Z" + "SpotPrice": "0.466400", + "Timestamp": "2024-05-16T04:02:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.987700", - "Timestamp": "2019-10-15T07:40:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T04:02:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.987700", - "Timestamp": "2019-10-15T07:40:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T04:02:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.987700", - "Timestamp": "2019-10-15T07:40:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042900", + "Timestamp": "2024-05-16T04:02:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.metal", "ProductDescription": "Windows", - "SpotPrice": "4.390800", - "Timestamp": "2019-10-15T07:40:07.000Z" + "SpotPrice": "8.268000", + "Timestamp": "2024-05-16T04:02:21.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.390800", - "Timestamp": "2019-10-15T07:40:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092800", + "Timestamp": "2024-05-16T04:02:20.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.390800", - "Timestamp": "2019-10-15T07:40:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088800", + "Timestamp": "2024-05-16T04:02:20.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.586600", - "Timestamp": "2019-10-15T07:40:04.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032800", + "Timestamp": "2024-05-16T04:02:20.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.586600", - "Timestamp": "2019-10-15T07:40:04.000Z" + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T04:02:19.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.456600", - "Timestamp": "2019-10-15T07:40:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-16T04:02:19.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.456600", - "Timestamp": "2019-10-15T07:40:04.000Z" + "SpotPrice": "0.046300", + "Timestamp": "2024-05-16T04:02:19.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.208800", - "Timestamp": "2019-10-15T07:39:50.000Z" + "SpotPrice": "0.098300", + "Timestamp": "2024-05-16T04:02:07.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.208800", - "Timestamp": "2019-10-15T07:39:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094600", + "Timestamp": "2024-05-16T04:02:07.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.208800", - "Timestamp": "2019-10-15T07:39:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038300", + "Timestamp": "2024-05-16T04:02:07.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.078800", - "Timestamp": "2019-10-15T07:39:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.596200", + "Timestamp": "2024-05-16T04:02:06.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.078800", - "Timestamp": "2019-10-15T07:39:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.332100", + "Timestamp": "2024-05-16T04:02:06.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.327100", + "Timestamp": "2024-05-16T04:02:06.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.078800", - "Timestamp": "2019-10-15T07:39:50.000Z" + "SpotPrice": "2.202100", + "Timestamp": "2024-05-16T04:02:06.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2idn.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.381700", - "Timestamp": "2019-10-15T07:39:45.000Z" + "SpotPrice": "3.049800", + "Timestamp": "2024-05-16T04:02:06.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.044800", + "Timestamp": "2024-05-16T04:02:06.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2idn.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.251700", - "Timestamp": "2019-10-15T07:39:45.000Z" + "SpotPrice": "2.919800", + "Timestamp": "2024-05-16T04:02:06.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5ad.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091500", - "Timestamp": "2019-10-15T07:39:24.000Z" + "SpotPrice": "0.158100", + "Timestamp": "2024-05-16T04:02:02.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5ad.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031500", - "Timestamp": "2019-10-15T07:39:24.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198100", + "Timestamp": "2024-05-16T04:02:02.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123500", - "Timestamp": "2019-10-15T07:39:22.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-16T04:02:02.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.035300", - "Timestamp": "2019-10-15T07:39:08.000Z" + "SpotPrice": "0.426900", + "Timestamp": "2024-05-16T04:01:59.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t2.medium", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.035300", - "Timestamp": "2019-10-15T07:39:08.000Z" + "SpotPrice": "0.857400", + "Timestamp": "2024-05-16T04:01:59.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.metal-16xl", "ProductDescription": "Windows", - "SpotPrice": "2.112600", - "Timestamp": "2019-10-15T07:39:07.000Z" + "SpotPrice": "4.253700", + "Timestamp": "2024-05-16T04:01:57.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.large", "ProductDescription": "Windows", - "SpotPrice": "2.112600", - "Timestamp": "2019-10-15T07:39:07.000Z" + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T04:01:56.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.077300", - "Timestamp": "2019-10-15T07:38:21.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.516000", + "Timestamp": "2024-05-16T04:01:55.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.077300", - "Timestamp": "2019-10-15T07:38:21.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215800", + "Timestamp": "2024-05-16T04:01:55.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t2.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.017300", - "Timestamp": "2019-10-15T07:38:21.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216500", + "Timestamp": "2024-05-16T04:01:52.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t2.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.017300", - "Timestamp": "2019-10-15T07:38:21.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g6.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.518500", + "Timestamp": "2024-05-16T04:01:49.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.999100", - "Timestamp": "2019-10-15T07:04:07.000Z" + "SpotPrice": "5.036500", + "Timestamp": "2024-05-16T04:01:47.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.999100", - "Timestamp": "2019-10-15T06:40:07.000Z" + "SpotPrice": "0.244600", + "Timestamp": "2024-05-16T04:01:46.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.921100", - "Timestamp": "2019-10-15T06:40:07.000Z" + "SpotPrice": "0.727900", + "Timestamp": "2024-05-16T04:01:42.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.722900", + "Timestamp": "2024-05-16T04:01:42.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.791100", - "Timestamp": "2019-10-15T06:40:07.000Z" + "SpotPrice": "0.597900", + "Timestamp": "2024-05-16T04:01:42.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.120500", - "Timestamp": "2019-10-15T06:39:37.000Z" + "SpotPrice": "0.504800", + "Timestamp": "2024-05-16T04:01:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.large", "ProductDescription": "Windows", - "SpotPrice": "0.120500", - "Timestamp": "2019-10-15T06:39:37.000Z" + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T04:01:39.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.088500", - "Timestamp": "2019-10-15T06:39:13.000Z" + "SpotPrice": "2.195700", + "Timestamp": "2024-05-16T04:01:39.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.088500", - "Timestamp": "2019-10-15T06:39:13.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.190700", + "Timestamp": "2024-05-16T04:01:39.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c4.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.028500", - "Timestamp": "2019-10-15T06:39:13.000Z" + "SpotPrice": "2.065700", + "Timestamp": "2024-05-16T04:01:39.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.028500", - "Timestamp": "2019-10-15T06:39:13.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072000", + "Timestamp": "2024-05-16T04:01:39.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.249900", - "Timestamp": "2019-10-15T06:39:07.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068300", + "Timestamp": "2024-05-16T04:01:39.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.249900", - "Timestamp": "2019-10-15T06:39:07.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012000", + "Timestamp": "2024-05-16T04:01:39.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1e.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125900", - "Timestamp": "2019-10-15T06:39:07.000Z" + "SpotPrice": "1.545000", + "Timestamp": "2024-05-16T04:01:39.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125900", - "Timestamp": "2019-10-15T06:39:07.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.515000", + "Timestamp": "2024-05-16T04:01:39.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1e.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065900", - "Timestamp": "2019-10-15T06:39:07.000Z" + "SpotPrice": "1.415000", + "Timestamp": "2024-05-16T04:01:39.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065900", - "Timestamp": "2019-10-15T06:39:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.112900", + "Timestamp": "2024-05-16T04:01:38.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.921100", - "Timestamp": "2019-10-15T06:14:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.107900", + "Timestamp": "2024-05-16T04:01:38.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.791100", - "Timestamp": "2019-10-15T06:14:06.000Z" + "SpotPrice": "1.982900", + "Timestamp": "2024-05-16T04:01:38.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.999700", - "Timestamp": "2019-10-15T05:49:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.542600", + "Timestamp": "2024-05-16T04:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.999700", - "Timestamp": "2019-10-15T05:49:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.537600", + "Timestamp": "2024-05-16T04:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.999700", - "Timestamp": "2019-10-15T05:49:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.412600", + "Timestamp": "2024-05-16T04:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.393700", - "Timestamp": "2019-10-15T05:49:55.000Z" + "SpotPrice": "0.359000", + "Timestamp": "2024-05-16T04:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.393700", - "Timestamp": "2019-10-15T05:49:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.354000", + "Timestamp": "2024-05-16T04:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.229000", + "Timestamp": "2024-05-16T04:01:37.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.393700", - "Timestamp": "2019-10-15T05:49:55.000Z" + "SpotPrice": "0.101900", + "Timestamp": "2024-05-16T04:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.263700", - "Timestamp": "2019-10-15T05:49:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097900", + "Timestamp": "2024-05-16T04:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.263700", - "Timestamp": "2019-10-15T05:49:55.000Z" + "SpotPrice": "0.041900", + "Timestamp": "2024-05-16T04:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.263700", - "Timestamp": "2019-10-15T05:49:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.398000", + "Timestamp": "2024-05-16T04:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.122000", - "Timestamp": "2019-10-15T05:39:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.393000", + "Timestamp": "2024-05-16T04:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.122000", - "Timestamp": "2019-10-15T05:39:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.268000", + "Timestamp": "2024-05-16T04:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5dn.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.122000", - "Timestamp": "2019-10-15T05:39:31.000Z" + "SpotPrice": "0.444000", + "Timestamp": "2024-05-16T04:01:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090000", - "Timestamp": "2019-10-15T05:39:13.000Z" + "SpotPrice": "1.297300", + "Timestamp": "2024-05-16T04:01:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090000", - "Timestamp": "2019-10-15T05:39:13.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.292300", + "Timestamp": "2024-05-16T04:01:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.167300", + "Timestamp": "2024-05-16T04:01:36.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090000", - "Timestamp": "2019-10-15T05:39:13.000Z" + "SpotPrice": "0.712100", + "Timestamp": "2024-05-16T04:01:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030000", - "Timestamp": "2019-10-15T05:39:13.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.707100", + "Timestamp": "2024-05-16T04:01:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030000", - "Timestamp": "2019-10-15T05:39:13.000Z" + "SpotPrice": "0.582100", + "Timestamp": "2024-05-16T04:01:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c5.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136500", + "Timestamp": "2024-05-16T04:01:36.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132800", + "Timestamp": "2024-05-16T04:01:36.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i-flex.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030000", - "Timestamp": "2019-10-15T05:39:13.000Z" + "SpotPrice": "0.076500", + "Timestamp": "2024-05-16T04:01:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.164000", - "Timestamp": "2019-10-15T04:40:06.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.825500", + "Timestamp": "2024-05-16T04:01:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.164000", - "Timestamp": "2019-10-15T04:40:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.758700", + "Timestamp": "2024-05-16T04:01:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.164000", - "Timestamp": "2019-10-15T04:40:06.000Z" + "SpotPrice": "0.260200", + "Timestamp": "2024-05-16T04:01:35.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.104000", - "Timestamp": "2019-10-15T04:40:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.255200", + "Timestamp": "2024-05-16T04:01:35.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "t3.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.104000", - "Timestamp": "2019-10-15T04:40:06.000Z" + "SpotPrice": "0.130200", + "Timestamp": "2024-05-16T04:01:35.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.104000", - "Timestamp": "2019-10-15T04:40:06.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.912300", + "Timestamp": "2024-05-16T04:01:34.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.360300", - "Timestamp": "2019-10-15T04:40:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.324600", + "Timestamp": "2024-05-16T04:01:32.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-16T04:01:29.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.360300", - "Timestamp": "2019-10-15T04:40:03.000Z" + "SpotPrice": "3.386500", + "Timestamp": "2024-05-16T04:01:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.300300", - "Timestamp": "2019-10-15T04:40:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.381500", + "Timestamp": "2024-05-16T04:01:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.300300", - "Timestamp": "2019-10-15T04:40:03.000Z" + "SpotPrice": "3.256500", + "Timestamp": "2024-05-16T04:01:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.114900", - "Timestamp": "2019-10-15T04:39:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213600", + "Timestamp": "2024-05-16T04:01:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.114900", - "Timestamp": "2019-10-15T04:39:41.000Z" + "SpotPrice": "1.388500", + "Timestamp": "2024-05-16T04:01:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.054900", - "Timestamp": "2019-10-15T04:39:41.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.383500", + "Timestamp": "2024-05-16T04:01:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.054900", - "Timestamp": "2019-10-15T04:39:41.000Z" + "SpotPrice": "1.258500", + "Timestamp": "2024-05-16T04:01:25.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.114900", - "Timestamp": "2019-10-15T04:39:41.000Z" + "SpotPrice": "1.033000", + "Timestamp": "2024-05-16T04:01:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.054900", - "Timestamp": "2019-10-15T04:39:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.028000", + "Timestamp": "2024-05-16T04:01:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.131600", - "Timestamp": "2019-10-15T04:39:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.903000", + "Timestamp": "2024-05-16T04:01:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "t3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.131600", - "Timestamp": "2019-10-15T04:39:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.498500", + "Timestamp": "2024-05-16T04:01:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.131600", - "Timestamp": "2019-10-15T04:39:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.493500", + "Timestamp": "2024-05-16T04:01:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.055700", - "Timestamp": "2019-10-15T04:39:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.368500", + "Timestamp": "2024-05-16T04:01:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.055700", - "Timestamp": "2019-10-15T04:39:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092000", + "Timestamp": "2024-05-16T04:01:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.146900", - "Timestamp": "2019-10-15T04:39:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088300", + "Timestamp": "2024-05-16T04:01:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.146900", - "Timestamp": "2019-10-15T04:39:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032000", + "Timestamp": "2024-05-16T04:01:22.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.146900", - "Timestamp": "2019-10-15T04:39:07.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.315300", + "Timestamp": "2024-05-16T04:01:20.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.484300", - "Timestamp": "2019-10-15T04:39:07.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.285300", + "Timestamp": "2024-05-16T04:01:20.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.484300", - "Timestamp": "2019-10-15T04:39:07.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.185300", + "Timestamp": "2024-05-16T04:01:20.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.136900", - "Timestamp": "2019-10-15T04:39:06.000Z" + "SpotPrice": "0.349500", + "Timestamp": "2024-05-16T04:01:19.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.136900", - "Timestamp": "2019-10-15T04:39:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.344500", + "Timestamp": "2024-05-16T04:01:19.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219500", + "Timestamp": "2024-05-16T04:01:19.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.136900", - "Timestamp": "2019-10-15T04:39:06.000Z" + "SpotPrice": "0.144000", + "Timestamp": "2024-05-16T04:01:14.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.006900", - "Timestamp": "2019-10-15T04:39:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140000", + "Timestamp": "2024-05-16T04:01:14.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.006900", - "Timestamp": "2019-10-15T04:39:06.000Z" + "SpotPrice": "0.084000", + "Timestamp": "2024-05-16T04:01:14.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137500", + "Timestamp": "2024-05-16T04:01:10.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133800", + "Timestamp": "2024-05-16T04:01:10.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.006900", - "Timestamp": "2019-10-15T04:39:06.000Z" + "SpotPrice": "0.077500", + "Timestamp": "2024-05-16T04:01:10.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.950900", - "Timestamp": "2019-10-15T04:39:05.000Z" + "SpotPrice": "0.441500", + "Timestamp": "2024-05-16T03:47:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.950900", - "Timestamp": "2019-10-15T04:39:05.000Z" + "SpotPrice": "0.903900", + "Timestamp": "2024-05-16T03:47:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.950900", - "Timestamp": "2019-10-15T04:39:05.000Z" + "SpotPrice": "3.463300", + "Timestamp": "2024-05-16T03:47:34.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.088100", - "Timestamp": "2019-10-15T04:39:00.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.733300", + "Timestamp": "2024-05-16T03:47:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3a.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.088100", - "Timestamp": "2019-10-15T04:39:00.000Z" + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T03:47:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.028100", - "Timestamp": "2019-10-15T04:39:00.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107000", + "Timestamp": "2024-05-16T03:47:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3a.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.028100", - "Timestamp": "2019-10-15T04:39:00.000Z" + "SpotPrice": "0.050700", + "Timestamp": "2024-05-16T03:47:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.964300", - "Timestamp": "2019-10-15T04:38:52.000Z" + "SpotPrice": "7.480300", + "Timestamp": "2024-05-16T03:47:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4ad.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.964300", - "Timestamp": "2019-10-15T04:38:52.000Z" + "SpotPrice": "0.466000", + "Timestamp": "2024-05-16T03:47:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "d3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.358300", - "Timestamp": "2019-10-15T04:38:29.000Z" + "SpotPrice": "0.181100", + "Timestamp": "2024-05-16T03:47:26.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.358300", - "Timestamp": "2019-10-15T04:38:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.178100", + "Timestamp": "2024-05-16T03:47:26.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "d3.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.228300", - "Timestamp": "2019-10-15T04:38:29.000Z" + "SpotPrice": "0.121100", + "Timestamp": "2024-05-16T03:47:26.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.228300", - "Timestamp": "2019-10-15T04:38:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.182900", + "Timestamp": "2024-05-16T03:47:26.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.782600", + "Timestamp": "2024-05-16T03:47:23.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "p2.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.393700", - "Timestamp": "2019-10-15T04:37:07.000Z" + "SpotPrice": "2.642800", + "Timestamp": "2024-05-16T03:47:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "p2.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.612800", + "Timestamp": "2024-05-16T03:47:23.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "p2.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.263700", - "Timestamp": "2019-10-15T04:37:07.000Z" + "SpotPrice": "2.512800", + "Timestamp": "2024-05-16T03:47:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.999700", - "Timestamp": "2019-10-15T04:37:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075300", + "Timestamp": "2024-05-16T03:47:19.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3en.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.046300", + "Timestamp": "2024-05-16T03:47:19.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015300", + "Timestamp": "2024-05-16T03:47:19.000Z" + }, + { + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "8.246400", - "Timestamp": "2019-10-15T03:51:06.000Z" + "SpotPrice": "3.479200", + "Timestamp": "2024-05-16T03:47:15.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3en.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3.large", "ProductDescription": "Windows", - "SpotPrice": "8.246400", - "Timestamp": "2019-10-15T03:51:06.000Z" + "SpotPrice": "0.042000", + "Timestamp": "2024-05-16T03:47:14.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3en.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.large", "ProductDescription": "Windows", - "SpotPrice": "8.246400", - "Timestamp": "2019-10-15T03:51:06.000Z" + "SpotPrice": "0.114200", + "Timestamp": "2024-05-16T03:47:09.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3en.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.960400", - "Timestamp": "2019-10-15T03:50:09.000Z" + "SpotPrice": "0.867100", + "Timestamp": "2024-05-16T03:47:09.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3en.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.960400", - "Timestamp": "2019-10-15T03:50:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.862100", + "Timestamp": "2024-05-16T03:47:09.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3en.metal", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.737100", + "Timestamp": "2024-05-16T03:47:09.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.960400", - "Timestamp": "2019-10-15T03:50:09.000Z" + "SpotPrice": "0.499600", + "Timestamp": "2024-05-16T03:47:09.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3en.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.830400", - "Timestamp": "2019-10-15T03:50:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.494600", + "Timestamp": "2024-05-16T03:47:09.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3en.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.830400", - "Timestamp": "2019-10-15T03:50:09.000Z" + "SpotPrice": "0.369600", + "Timestamp": "2024-05-16T03:47:09.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3en.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.830400", - "Timestamp": "2019-10-15T03:50:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.883900", + "Timestamp": "2024-05-16T03:47:07.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091500", - "Timestamp": "2019-10-15T03:39:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.880700", + "Timestamp": "2024-05-16T03:47:07.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091500", - "Timestamp": "2019-10-15T03:39:55.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.796900", + "Timestamp": "2024-05-16T03:47:06.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091500", - "Timestamp": "2019-10-15T03:39:55.000Z" + "SpotPrice": "1.187300", + "Timestamp": "2024-05-16T03:47:05.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031500", - "Timestamp": "2019-10-15T03:39:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.182300", + "Timestamp": "2024-05-16T03:47:05.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031500", - "Timestamp": "2019-10-15T03:39:55.000Z" + "SpotPrice": "1.057300", + "Timestamp": "2024-05-16T03:47:05.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031500", - "Timestamp": "2019-10-15T03:39:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.919100", + "Timestamp": "2024-05-16T03:46:56.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123500", - "Timestamp": "2019-10-15T03:39:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.914100", + "Timestamp": "2024-05-16T03:46:56.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "m5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123500", - "Timestamp": "2019-10-15T03:39:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.789100", + "Timestamp": "2024-05-16T03:46:56.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m5.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.123500", - "Timestamp": "2019-10-15T03:39:28.000Z" + "SpotPrice": "2.823300", + "Timestamp": "2024-05-16T03:46:55.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.metal", "ProductDescription": "Windows", - "SpotPrice": "0.062600", - "Timestamp": "2019-10-15T03:39:26.000Z" + "SpotPrice": "5.349600", + "Timestamp": "2024-05-16T03:46:54.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.062600", - "Timestamp": "2019-10-15T03:39:26.000Z" + "SpotPrice": "0.482400", + "Timestamp": "2024-05-16T03:46:52.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t2.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094600", - "Timestamp": "2019-10-15T03:39:08.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.868300", + "Timestamp": "2024-05-16T03:46:52.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094600", - "Timestamp": "2019-10-15T03:39:08.000Z" + "SpotPrice": "0.129800", + "Timestamp": "2024-05-16T03:46:51.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t2.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034600", - "Timestamp": "2019-10-15T03:39:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126100", + "Timestamp": "2024-05-16T03:46:51.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t2.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034600", - "Timestamp": "2019-10-15T03:39:08.000Z" + "SpotPrice": "0.069800", + "Timestamp": "2024-05-16T03:46:51.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5ad.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.651600", - "Timestamp": "2019-10-15T02:51:23.000Z" + "SpotPrice": "0.869800", + "Timestamp": "2024-05-16T03:46:49.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.174100", + "Timestamp": "2024-05-16T03:46:48.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.169100", + "Timestamp": "2024-05-16T03:46:48.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.044100", + "Timestamp": "2024-05-16T03:46:48.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.651600", - "Timestamp": "2019-10-15T02:51:23.000Z" + "SpotPrice": "0.440600", + "Timestamp": "2024-05-16T03:46:48.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.3xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.573600", - "Timestamp": "2019-10-15T02:48:38.000Z" + "SpotPrice": "0.501100", + "Timestamp": "2024-05-16T03:46:47.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.573600", - "Timestamp": "2019-10-15T02:48:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.496100", + "Timestamp": "2024-05-16T03:46:47.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "g4dn.12xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.3xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.443600", - "Timestamp": "2019-10-15T02:48:38.000Z" + "SpotPrice": "0.371100", + "Timestamp": "2024-05-16T03:46:47.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "g4dn.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.443600", - "Timestamp": "2019-10-15T02:48:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.026600", + "Timestamp": "2024-05-16T03:46:45.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.369700", - "Timestamp": "2019-10-15T02:40:34.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220200", + "Timestamp": "2024-05-16T03:46:45.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.369700", - "Timestamp": "2019-10-15T02:40:34.000Z" + "SpotPrice": "1.403800", + "Timestamp": "2024-05-16T03:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.239700", - "Timestamp": "2019-10-15T02:40:34.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.398800", + "Timestamp": "2024-05-16T03:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.239700", - "Timestamp": "2019-10-15T02:40:34.000Z" + "SpotPrice": "1.273800", + "Timestamp": "2024-05-16T03:46:43.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.metal", "ProductDescription": "Windows", - "SpotPrice": "0.975700", - "Timestamp": "2019-10-15T02:39:38.000Z" + "SpotPrice": "5.323300", + "Timestamp": "2024-05-16T03:46:42.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r3.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.975700", - "Timestamp": "2019-10-15T02:39:38.000Z" + "SpotPrice": "0.473000", + "Timestamp": "2024-05-16T03:46:42.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.999400", - "Timestamp": "2019-10-15T02:38:27.000Z" + "SpotPrice": "2.808000", + "Timestamp": "2024-05-16T03:46:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.999400", - "Timestamp": "2019-10-15T02:38:27.000Z" + "SpotPrice": "10.875400", + "Timestamp": "2024-05-16T03:46:41.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.999400", - "Timestamp": "2019-10-15T02:38:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.586500", + "Timestamp": "2024-05-16T03:46:40.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.587600", - "Timestamp": "2019-10-15T02:38:24.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.581500", + "Timestamp": "2024-05-16T03:46:40.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.587600", - "Timestamp": "2019-10-15T02:38:24.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.456500", + "Timestamp": "2024-05-16T03:46:40.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.587600", - "Timestamp": "2019-10-15T02:38:24.000Z" + "SpotPrice": "8.576900", + "Timestamp": "2024-05-16T03:46:40.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.349600", - "Timestamp": "2019-10-15T02:38:12.000Z" + "SpotPrice": "0.715200", + "Timestamp": "2024-05-16T03:46:40.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.349600", - "Timestamp": "2019-10-15T02:38:12.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.685200", + "Timestamp": "2024-05-16T03:46:40.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.585200", + "Timestamp": "2024-05-16T03:46:40.000Z" + }, + { + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.349600", - "Timestamp": "2019-10-15T02:38:12.000Z" + "SpotPrice": "2.950700", + "Timestamp": "2024-05-16T03:46:39.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.219600", - "Timestamp": "2019-10-15T02:38:12.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.945700", + "Timestamp": "2024-05-16T03:46:39.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.219600", - "Timestamp": "2019-10-15T02:38:12.000Z" + "SpotPrice": "2.820700", + "Timestamp": "2024-05-16T03:46:39.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.219600", - "Timestamp": "2019-10-15T02:38:12.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.824700", + "Timestamp": "2024-05-16T03:46:37.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "x1e.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.031600", - "Timestamp": "2019-10-15T01:50:08.000Z" + "SpotPrice": "1.022400", + "Timestamp": "2024-05-16T03:46:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.901600", - "Timestamp": "2019-10-15T01:50:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.017400", + "Timestamp": "2024-05-16T03:46:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.373600", - "Timestamp": "2019-10-15T01:49:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.892400", + "Timestamp": "2024-05-16T03:46:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.657400", - "Timestamp": "2019-10-15T01:47:21.000Z" + "SpotPrice": "0.567800", + "Timestamp": "2024-05-16T03:46:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.657400", - "Timestamp": "2019-10-15T01:47:21.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.562800", + "Timestamp": "2024-05-16T03:46:36.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.437800", + "Timestamp": "2024-05-16T03:46:36.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.657400", - "Timestamp": "2019-10-15T01:47:21.000Z" + "SpotPrice": "0.552000", + "Timestamp": "2024-05-16T03:46:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.527400", - "Timestamp": "2019-10-15T01:47:21.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.547000", + "Timestamp": "2024-05-16T03:46:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.527400", - "Timestamp": "2019-10-15T01:47:21.000Z" + "SpotPrice": "0.422000", + "Timestamp": "2024-05-16T03:46:31.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.527400", - "Timestamp": "2019-10-15T01:47:21.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222900", + "Timestamp": "2024-05-16T03:46:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.638000", - "Timestamp": "2019-10-15T01:21:28.000Z" + "SpotPrice": "5.373400", + "Timestamp": "2024-05-16T03:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.368400", + "Timestamp": "2024-05-16T03:46:29.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7i.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.508000", - "Timestamp": "2019-10-15T01:21:28.000Z" + "SpotPrice": "5.243400", + "Timestamp": "2024-05-16T03:46:29.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.712200", - "Timestamp": "2019-10-15T01:18:15.000Z" + "SpotPrice": "0.092300", + "Timestamp": "2024-05-16T03:46:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.582200", - "Timestamp": "2019-10-15T01:18:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088600", + "Timestamp": "2024-05-16T03:46:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.712200", - "Timestamp": "2019-10-15T01:18:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032300", + "Timestamp": "2024-05-16T03:46:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.712200", - "Timestamp": "2019-10-15T01:18:15.000Z" + "SpotPrice": "0.120500", + "Timestamp": "2024-05-16T03:46:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.582200", - "Timestamp": "2019-10-15T01:18:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116800", + "Timestamp": "2024-05-16T03:46:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5d.metal", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.582200", - "Timestamp": "2019-10-15T01:18:15.000Z" + "SpotPrice": "0.060500", + "Timestamp": "2024-05-16T03:46:28.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "p2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.623500", - "Timestamp": "2019-10-15T00:48:58.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.468000", + "Timestamp": "2024-05-16T03:46:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "p2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.623500", - "Timestamp": "2019-10-15T00:48:58.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.438000", + "Timestamp": "2024-05-16T03:46:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.563200", - "Timestamp": "2019-10-15T00:39:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.338000", + "Timestamp": "2024-05-16T03:46:24.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.563200", - "Timestamp": "2019-10-15T00:39:38.000Z" + "SpotPrice": "3.924400", + "Timestamp": "2024-05-16T03:46:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.563200", - "Timestamp": "2019-10-15T00:39:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097400", + "Timestamp": "2024-05-16T03:46:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.546000", - "Timestamp": "2019-10-15T00:39:26.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093700", + "Timestamp": "2024-05-16T03:46:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.546000", - "Timestamp": "2019-10-15T00:39:26.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037400", + "Timestamp": "2024-05-16T03:46:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.546000", - "Timestamp": "2019-10-15T00:39:26.000Z" + "SpotPrice": "2.009700", + "Timestamp": "2024-05-16T03:32:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.416000", - "Timestamp": "2019-10-15T00:39:26.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.004700", + "Timestamp": "2024-05-16T03:32:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2b", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.416000", - "Timestamp": "2019-10-15T00:39:26.000Z" + "SpotPrice": "1.879700", + "Timestamp": "2024-05-16T03:32:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.416000", - "Timestamp": "2019-10-15T00:39:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226100", + "Timestamp": "2024-05-16T03:32:30.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.712200", - "Timestamp": "2019-10-15T00:39:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.428900", + "Timestamp": "2024-05-16T03:32:27.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.712200", - "Timestamp": "2019-10-15T00:39:19.000Z" + "SpotPrice": "0.109100", + "Timestamp": "2024-05-16T03:32:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.582200", - "Timestamp": "2019-10-15T00:39:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T03:32:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.582200", - "Timestamp": "2019-10-15T00:39:19.000Z" + "SpotPrice": "0.049100", + "Timestamp": "2024-05-16T03:32:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2c", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.998200", - "Timestamp": "2019-10-15T00:39:19.000Z" + "SpotPrice": "10.812900", + "Timestamp": "2024-05-16T03:32:23.000Z" }, { - "AvailabilityZone": "ap-northeast-2a", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.metal", "ProductDescription": "Windows", - "SpotPrice": "5.998200", - "Timestamp": "2019-10-15T00:39:19.000Z" + "SpotPrice": "7.961500", + "Timestamp": "2024-05-16T03:32:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.096000", - "Timestamp": "2019-10-16T02:54:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.867700", + "Timestamp": "2024-05-16T03:32:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.136000", - "Timestamp": "2019-10-16T02:54:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.407200", + "Timestamp": "2024-05-16T03:32:17.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.036000", - "Timestamp": "2019-10-16T02:54:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.402200", + "Timestamp": "2024-05-16T03:32:17.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.936600", - "Timestamp": "2019-10-16T02:54:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.277200", + "Timestamp": "2024-05-16T03:32:17.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.906600", - "Timestamp": "2019-10-16T02:54:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090500", + "Timestamp": "2024-05-16T03:32:15.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.806600", - "Timestamp": "2019-10-16T02:54:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086800", + "Timestamp": "2024-05-16T03:32:15.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.427800", - "Timestamp": "2019-10-16T02:54:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030500", + "Timestamp": "2024-05-16T03:32:15.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.397800", - "Timestamp": "2019-10-16T02:54:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118500", + "Timestamp": "2024-05-16T03:32:15.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.297800", - "Timestamp": "2019-10-16T02:54:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114800", + "Timestamp": "2024-05-16T03:32:15.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "7.138000", - "Timestamp": "2019-10-16T02:54:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058500", + "Timestamp": "2024-05-16T03:32:15.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "7.108000", - "Timestamp": "2019-10-16T02:54:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.866700", + "Timestamp": "2024-05-16T03:32:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "7.008000", - "Timestamp": "2019-10-16T02:54:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.861700", + "Timestamp": "2024-05-16T03:32:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.277900", - "Timestamp": "2019-10-16T02:46:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.736700", + "Timestamp": "2024-05-16T03:32:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.247900", - "Timestamp": "2019-10-16T02:46:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.559100", + "Timestamp": "2024-05-16T03:32:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.147900", - "Timestamp": "2019-10-16T02:46:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.554100", + "Timestamp": "2024-05-16T03:32:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.083300", - "Timestamp": "2019-10-16T02:43:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.429100", + "Timestamp": "2024-05-16T03:32:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.083300", - "Timestamp": "2019-10-16T02:43:33.000Z" + "SpotPrice": "3.501700", + "Timestamp": "2024-05-16T03:32:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.123300", - "Timestamp": "2019-10-16T02:43:33.000Z" - }, - { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.123300", - "Timestamp": "2019-10-16T02:43:33.000Z" + "SpotPrice": "3.496700", + "Timestamp": "2024-05-16T03:32:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.large", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.023300", - "Timestamp": "2019-10-16T02:43:33.000Z" + "SpotPrice": "3.371700", + "Timestamp": "2024-05-16T03:32:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.023300", - "Timestamp": "2019-10-16T02:43:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.881900", + "Timestamp": "2024-05-16T03:31:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.990400", - "Timestamp": "2019-10-16T02:43:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219400", + "Timestamp": "2024-05-16T03:31:54.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.512200", - "Timestamp": "2019-10-16T02:42:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.335300", + "Timestamp": "2024-05-16T03:31:49.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.512200", - "Timestamp": "2019-10-16T02:42:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.330300", + "Timestamp": "2024-05-16T03:31:49.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.512200", - "Timestamp": "2019-10-16T02:42:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.205300", + "Timestamp": "2024-05-16T03:31:49.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.552800", - "Timestamp": "2019-10-16T02:42:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.975800", + "Timestamp": "2024-05-16T03:31:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.552800", - "Timestamp": "2019-10-16T02:42:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.945800", + "Timestamp": "2024-05-16T03:31:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.985600", - "Timestamp": "2019-10-16T02:42:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.845800", + "Timestamp": "2024-05-16T03:31:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "5.210800", - "Timestamp": "2019-10-16T02:41:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.990600", + "Timestamp": "2024-05-16T03:31:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "p3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "5.180800", - "Timestamp": "2019-10-16T02:41:24.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.862800", + "Timestamp": "2024-05-16T03:31:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "5.080800", - "Timestamp": "2019-10-16T02:41:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.130300", + "Timestamp": "2024-05-16T03:31:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.455200", - "Timestamp": "2019-10-16T02:41:15.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.113500", + "Timestamp": "2024-05-16T03:31:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.455200", - "Timestamp": "2019-10-16T02:41:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.503100", + "Timestamp": "2024-05-16T03:31:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.455200", - "Timestamp": "2019-10-16T02:41:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473100", + "Timestamp": "2024-05-16T03:31:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.425200", - "Timestamp": "2019-10-16T02:41:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.373100", + "Timestamp": "2024-05-16T03:31:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.425200", - "Timestamp": "2019-10-16T02:41:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.831700", + "Timestamp": "2024-05-16T03:31:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.425200", - "Timestamp": "2019-10-16T02:41:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.826700", + "Timestamp": "2024-05-16T03:31:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.325200", - "Timestamp": "2019-10-16T02:41:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.701700", + "Timestamp": "2024-05-16T03:31:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.325200", - "Timestamp": "2019-10-16T02:41:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135100", + "Timestamp": "2024-05-16T03:31:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.325200", - "Timestamp": "2019-10-16T02:41:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131400", + "Timestamp": "2024-05-16T03:31:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.226200", - "Timestamp": "2019-10-16T02:40:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075100", + "Timestamp": "2024-05-16T03:31:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.226200", - "Timestamp": "2019-10-16T02:40:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.026100", + "Timestamp": "2024-05-16T03:31:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.226200", - "Timestamp": "2019-10-16T02:40:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.411700", + "Timestamp": "2024-05-16T03:31:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.196200", - "Timestamp": "2019-10-16T02:40:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.406700", + "Timestamp": "2024-05-16T03:31:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.196200", - "Timestamp": "2019-10-16T02:40:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.281700", + "Timestamp": "2024-05-16T03:31:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.196200", - "Timestamp": "2019-10-16T02:40:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.636000", + "Timestamp": "2024-05-16T03:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.096200", - "Timestamp": "2019-10-16T02:40:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.631000", + "Timestamp": "2024-05-16T03:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.096200", - "Timestamp": "2019-10-16T02:40:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.506000", + "Timestamp": "2024-05-16T03:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.096200", - "Timestamp": "2019-10-16T02:40:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.556200", + "Timestamp": "2024-05-16T03:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.083300", - "Timestamp": "2019-10-16T02:40:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440800", + "Timestamp": "2024-05-16T03:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.083300", - "Timestamp": "2019-10-16T02:40:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.992800", + "Timestamp": "2024-05-16T03:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.123300", - "Timestamp": "2019-10-16T02:40:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.471300", + "Timestamp": "2024-05-16T03:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.123300", - "Timestamp": "2019-10-16T02:40:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.955700", + "Timestamp": "2024-05-16T03:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.023300", - "Timestamp": "2019-10-16T02:40:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.925700", + "Timestamp": "2024-05-16T03:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.023300", - "Timestamp": "2019-10-16T02:40:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.825700", + "Timestamp": "2024-05-16T03:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092700", - "Timestamp": "2019-10-16T02:40:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.696200", + "Timestamp": "2024-05-16T03:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092700", - "Timestamp": "2019-10-16T02:40:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.691200", + "Timestamp": "2024-05-16T03:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092700", - "Timestamp": "2019-10-16T02:40:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.566200", + "Timestamp": "2024-05-16T03:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-16T02:40:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.772900", + "Timestamp": "2024-05-16T03:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-16T02:40:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.767900", + "Timestamp": "2024-05-16T03:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-16T02:40:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.642900", + "Timestamp": "2024-05-16T03:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032700", - "Timestamp": "2019-10-16T02:40:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.196300", + "Timestamp": "2024-05-16T03:31:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032700", - "Timestamp": "2019-10-16T02:40:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192300", + "Timestamp": "2024-05-16T03:31:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032700", - "Timestamp": "2019-10-16T02:40:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136300", + "Timestamp": "2024-05-16T03:31:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "z1d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.159800", - "Timestamp": "2019-10-16T02:40:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.881800", + "Timestamp": "2024-05-16T03:31:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.159800", - "Timestamp": "2019-10-16T02:40:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.876800", + "Timestamp": "2024-05-16T03:31:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "z1d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.159800", - "Timestamp": "2019-10-16T02:40:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.751800", + "Timestamp": "2024-05-16T03:31:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.693200", - "Timestamp": "2019-10-16T02:39:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123500", + "Timestamp": "2024-05-16T03:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.693200", - "Timestamp": "2019-10-16T02:39:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119800", + "Timestamp": "2024-05-16T03:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.693200", - "Timestamp": "2019-10-16T02:39:53.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063500", + "Timestamp": "2024-05-16T03:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "5.826000", - "Timestamp": "2019-10-16T02:39:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.703200", + "Timestamp": "2024-05-16T03:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "5.796000", - "Timestamp": "2019-10-16T02:39:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.698200", + "Timestamp": "2024-05-16T03:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "5.696000", - "Timestamp": "2019-10-16T02:39:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.573200", + "Timestamp": "2024-05-16T03:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.209200", - "Timestamp": "2019-10-16T02:39:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.498500", + "Timestamp": "2024-05-16T03:31:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.209200", - "Timestamp": "2019-10-16T02:39:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.493500", + "Timestamp": "2024-05-16T03:31:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.209200", - "Timestamp": "2019-10-16T02:39:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.368500", + "Timestamp": "2024-05-16T03:31:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.209200", - "Timestamp": "2019-10-16T02:39:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.750600", + "Timestamp": "2024-05-16T03:31:10.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.119200", - "Timestamp": "2019-10-16T02:39:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.745600", + "Timestamp": "2024-05-16T03:31:10.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.119200", - "Timestamp": "2019-10-16T02:39:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.620600", + "Timestamp": "2024-05-16T03:31:10.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.159200", - "Timestamp": "2019-10-16T02:39:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061800", + "Timestamp": "2024-05-16T03:17:50.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3.nano", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.159200", - "Timestamp": "2019-10-16T02:39:38.000Z" + "SpotPrice": "0.001800", + "Timestamp": "2024-05-16T03:17:50.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3.nano", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.059200", - "Timestamp": "2019-10-16T02:39:38.000Z" + "SpotPrice": "0.001800", + "Timestamp": "2024-05-16T03:17:50.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.059200", - "Timestamp": "2019-10-16T02:39:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.467500", + "Timestamp": "2024-05-16T03:17:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.699600", - "Timestamp": "2019-10-16T02:39:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.946000", + "Timestamp": "2024-05-16T03:17:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.699600", - "Timestamp": "2019-10-16T02:39:37.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.309700", + "Timestamp": "2024-05-16T03:17:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.669600", - "Timestamp": "2019-10-16T02:39:37.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.304700", + "Timestamp": "2024-05-16T03:17:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.669600", - "Timestamp": "2019-10-16T02:39:37.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.179700", + "Timestamp": "2024-05-16T03:17:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.569600", - "Timestamp": "2019-10-16T02:39:37.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261000", + "Timestamp": "2024-05-16T03:17:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.569600", - "Timestamp": "2019-10-16T02:39:37.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.256000", + "Timestamp": "2024-05-16T03:17:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.346600", - "Timestamp": "2019-10-16T02:39:37.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131000", + "Timestamp": "2024-05-16T03:17:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.346600", - "Timestamp": "2019-10-16T02:39:37.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.737400", + "Timestamp": "2024-05-16T03:17:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.346600", - "Timestamp": "2019-10-16T02:39:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T03:17:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.985100", - "Timestamp": "2019-10-16T02:39:34.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121700", + "Timestamp": "2024-05-16T03:17:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.985100", - "Timestamp": "2019-10-16T02:39:34.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065400", + "Timestamp": "2024-05-16T03:17:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.985100", - "Timestamp": "2019-10-16T02:39:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114100", + "Timestamp": "2024-05-16T03:17:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.222600", - "Timestamp": "2019-10-16T02:39:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137500", + "Timestamp": "2024-05-16T03:17:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.222600", - "Timestamp": "2019-10-16T02:39:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133800", + "Timestamp": "2024-05-16T03:17:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.222600", - "Timestamp": "2019-10-16T02:39:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077500", + "Timestamp": "2024-05-16T03:17:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.262600", - "Timestamp": "2019-10-16T02:39:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.026200", + "Timestamp": "2024-05-16T03:17:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.262600", - "Timestamp": "2019-10-16T02:39:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.021200", + "Timestamp": "2024-05-16T03:17:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.262600", - "Timestamp": "2019-10-16T02:39:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.896200", + "Timestamp": "2024-05-16T03:17:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.162600", - "Timestamp": "2019-10-16T02:39:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.548900", + "Timestamp": "2024-05-16T03:17:17.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.162600", - "Timestamp": "2019-10-16T02:39:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217200", + "Timestamp": "2024-05-16T03:17:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.162600", - "Timestamp": "2019-10-16T02:39:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.059400", + "Timestamp": "2024-05-16T03:17:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "z1d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.127800", - "Timestamp": "2019-10-16T02:39:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.054400", + "Timestamp": "2024-05-16T03:17:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.127800", - "Timestamp": "2019-10-16T02:39:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.929400", + "Timestamp": "2024-05-16T03:17:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "z1d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.127800", - "Timestamp": "2019-10-16T02:39:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.847500", + "Timestamp": "2024-05-16T03:17:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "z1d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.167800", - "Timestamp": "2019-10-16T02:39:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.842500", + "Timestamp": "2024-05-16T03:17:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.167800", - "Timestamp": "2019-10-16T02:39:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.717500", + "Timestamp": "2024-05-16T03:17:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "z1d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.167800", - "Timestamp": "2019-10-16T02:39:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.512700", + "Timestamp": "2024-05-16T03:17:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "z1d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.067800", - "Timestamp": "2019-10-16T02:39:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.507700", + "Timestamp": "2024-05-16T03:17:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.067800", - "Timestamp": "2019-10-16T02:39:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.382700", + "Timestamp": "2024-05-16T03:17:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "z1d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.067800", - "Timestamp": "2019-10-16T02:39:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090200", + "Timestamp": "2024-05-16T03:17:04.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124700", - "Timestamp": "2019-10-16T02:39:16.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086500", + "Timestamp": "2024-05-16T03:17:04.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124700", - "Timestamp": "2019-10-16T02:39:16.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030200", + "Timestamp": "2024-05-16T03:17:04.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124700", - "Timestamp": "2019-10-16T02:39:16.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.771700", + "Timestamp": "2024-05-16T03:17:01.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.631000", - "Timestamp": "2019-10-16T02:39:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.766700", + "Timestamp": "2024-05-16T03:17:01.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.631000", - "Timestamp": "2019-10-16T02:39:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.641700", + "Timestamp": "2024-05-16T03:17:01.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "g3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.601000", - "Timestamp": "2019-10-16T02:39:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.475400", + "Timestamp": "2024-05-16T03:17:00.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "g3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.601000", - "Timestamp": "2019-10-16T02:39:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.445400", + "Timestamp": "2024-05-16T03:17:00.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.501000", - "Timestamp": "2019-10-16T02:39:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.345400", + "Timestamp": "2024-05-16T03:17:00.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.501000", - "Timestamp": "2019-10-16T02:39:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.479900", + "Timestamp": "2024-05-16T03:16:55.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.624900", - "Timestamp": "2019-10-16T02:39:02.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.921400", + "Timestamp": "2024-05-16T03:16:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.624900", - "Timestamp": "2019-10-16T02:39:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085800", + "Timestamp": "2024-05-16T03:16:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.594900", - "Timestamp": "2019-10-16T02:39:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082100", + "Timestamp": "2024-05-16T03:16:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.594900", - "Timestamp": "2019-10-16T02:39:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025800", + "Timestamp": "2024-05-16T03:16:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.494900", - "Timestamp": "2019-10-16T02:39:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.349800", + "Timestamp": "2024-05-16T03:16:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.494900", - "Timestamp": "2019-10-16T02:39:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.344800", + "Timestamp": "2024-05-16T03:16:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.985600", - "Timestamp": "2019-10-16T02:38:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219800", + "Timestamp": "2024-05-16T03:16:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.985600", - "Timestamp": "2019-10-16T02:38:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.776600", + "Timestamp": "2024-05-16T03:16:49.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.260800", - "Timestamp": "2019-10-16T02:38:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.092100", + "Timestamp": "2024-05-16T03:16:49.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.230800", - "Timestamp": "2019-10-16T02:38:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-16T03:16:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-16T02:38:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098900", + "Timestamp": "2024-05-16T03:16:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "12.960000", - "Timestamp": "2019-10-16T02:38:34.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042600", + "Timestamp": "2024-05-16T03:16:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.379100", - "Timestamp": "2019-10-16T02:38:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070000", + "Timestamp": "2024-05-16T03:16:45.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.379100", - "Timestamp": "2019-10-16T02:38:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066300", + "Timestamp": "2024-05-16T03:16:45.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.349100", - "Timestamp": "2019-10-16T02:38:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010000", + "Timestamp": "2024-05-16T03:16:45.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.349100", - "Timestamp": "2019-10-16T02:38:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.874300", + "Timestamp": "2024-05-16T03:16:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.249100", - "Timestamp": "2019-10-16T02:38:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.869300", + "Timestamp": "2024-05-16T03:16:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.249100", - "Timestamp": "2019-10-16T02:38:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.744300", + "Timestamp": "2024-05-16T03:16:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.395500", - "Timestamp": "2019-10-16T02:38:13.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.275200", + "Timestamp": "2024-05-16T03:16:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.365500", - "Timestamp": "2019-10-16T02:38:13.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.843300", + "Timestamp": "2024-05-16T03:16:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.265500", - "Timestamp": "2019-10-16T02:38:13.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.838300", + "Timestamp": "2024-05-16T03:16:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.391600", - "Timestamp": "2019-10-16T02:38:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.713300", + "Timestamp": "2024-05-16T03:16:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.391600", - "Timestamp": "2019-10-16T02:38:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.196900", + "Timestamp": "2024-05-16T03:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.361600", - "Timestamp": "2019-10-16T02:38:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.191900", + "Timestamp": "2024-05-16T03:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.361600", - "Timestamp": "2019-10-16T02:38:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.066900", + "Timestamp": "2024-05-16T03:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.261600", - "Timestamp": "2019-10-16T02:38:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.636700", + "Timestamp": "2024-05-16T03:16:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.261600", - "Timestamp": "2019-10-16T02:38:06.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066300", + "Timestamp": "2024-05-16T03:16:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.119200", - "Timestamp": "2019-10-16T02:38:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037300", + "Timestamp": "2024-05-16T03:16:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.119200", - "Timestamp": "2019-10-16T02:38:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006300", + "Timestamp": "2024-05-16T03:16:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.159200", - "Timestamp": "2019-10-16T02:38:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.403300", + "Timestamp": "2024-05-16T03:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.159200", - "Timestamp": "2019-10-16T02:38:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.240800", + "Timestamp": "2024-05-16T03:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.059200", - "Timestamp": "2019-10-16T02:38:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.398300", + "Timestamp": "2024-05-16T03:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.059200", - "Timestamp": "2019-10-16T02:38:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.235800", + "Timestamp": "2024-05-16T03:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "8.674000", - "Timestamp": "2019-10-16T02:37:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.273300", + "Timestamp": "2024-05-16T03:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "8.644000", - "Timestamp": "2019-10-16T02:37:55.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.110800", + "Timestamp": "2024-05-16T03:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "8.544000", - "Timestamp": "2019-10-16T02:37:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.428100", + "Timestamp": "2024-05-16T03:16:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.997600", - "Timestamp": "2019-10-16T02:37:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.423100", + "Timestamp": "2024-05-16T03:16:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.997600", - "Timestamp": "2019-10-16T02:37:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.298100", + "Timestamp": "2024-05-16T03:16:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.266800", - "Timestamp": "2019-10-16T02:37:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.250800", + "Timestamp": "2024-05-16T03:16:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.236800", - "Timestamp": "2019-10-16T02:37:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.245800", + "Timestamp": "2024-05-16T03:16:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.136800", - "Timestamp": "2019-10-16T02:37:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120800", + "Timestamp": "2024-05-16T03:16:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t2.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.018000", - "Timestamp": "2019-10-16T02:37:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.460700", + "Timestamp": "2024-05-16T03:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t2.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.018000", - "Timestamp": "2019-10-16T02:37:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.455700", + "Timestamp": "2024-05-16T03:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t2.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.018000", - "Timestamp": "2019-10-16T02:37:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.330700", + "Timestamp": "2024-05-16T03:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t2.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.068800", - "Timestamp": "2019-10-16T02:37:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.478700", + "Timestamp": "2024-05-16T03:16:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t2.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.038800", - "Timestamp": "2019-10-16T02:37:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473700", + "Timestamp": "2024-05-16T03:16:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t2.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.008800", - "Timestamp": "2019-10-16T02:37:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.348700", + "Timestamp": "2024-05-16T03:16:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.806900", - "Timestamp": "2019-10-16T02:37:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.651400", + "Timestamp": "2024-05-16T03:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.806900", - "Timestamp": "2019-10-16T02:37:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.646400", + "Timestamp": "2024-05-16T03:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.006400", - "Timestamp": "2019-10-16T02:37:00.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.521400", + "Timestamp": "2024-05-16T03:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.006400", - "Timestamp": "2019-10-16T02:37:00.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093600", + "Timestamp": "2024-05-16T03:02:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.006400", - "Timestamp": "2019-10-16T02:37:00.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089900", + "Timestamp": "2024-05-16T03:02:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.nano", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.061800", - "Timestamp": "2019-10-16T02:36:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033600", + "Timestamp": "2024-05-16T03:02:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.nano", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.061800", - "Timestamp": "2019-10-16T02:36:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140100", + "Timestamp": "2024-05-16T03:02:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.nano", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.061800", - "Timestamp": "2019-10-16T02:36:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136100", + "Timestamp": "2024-05-16T03:02:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.nano", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-16T02:36:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080100", + "Timestamp": "2024-05-16T03:02:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.nano", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-16T02:36:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T03:02:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.nano", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-16T02:36:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T03:02:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.nano", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.001800", - "Timestamp": "2019-10-16T02:36:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.837700", + "Timestamp": "2024-05-16T03:02:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.nano", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.001800", - "Timestamp": "2019-10-16T02:36:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.832700", + "Timestamp": "2024-05-16T03:02:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.nano", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.001800", - "Timestamp": "2019-10-16T02:36:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.707700", + "Timestamp": "2024-05-16T03:02:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.498800", - "Timestamp": "2019-10-16T02:36:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.070100", + "Timestamp": "2024-05-16T03:02:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.498800", - "Timestamp": "2019-10-16T02:36:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.040100", + "Timestamp": "2024-05-16T03:02:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.130600", - "Timestamp": "2019-10-16T02:35:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.940100", + "Timestamp": "2024-05-16T03:02:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.130600", - "Timestamp": "2019-10-16T02:35:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.903100", + "Timestamp": "2024-05-16T03:02:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.130600", - "Timestamp": "2019-10-16T02:35:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.983300", + "Timestamp": "2024-05-16T03:02:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126300", - "Timestamp": "2019-10-16T02:35:57.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.953300", + "Timestamp": "2024-05-16T03:02:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126300", - "Timestamp": "2019-10-16T02:35:57.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.853300", + "Timestamp": "2024-05-16T03:02:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126300", - "Timestamp": "2019-10-16T02:35:57.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.428500", + "Timestamp": "2024-05-16T03:02:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.288100", - "Timestamp": "2019-10-16T02:35:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.124000", + "Timestamp": "2024-05-16T03:02:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.288100", - "Timestamp": "2019-10-16T02:35:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.094000", + "Timestamp": "2024-05-16T03:02:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.783300", - "Timestamp": "2019-10-16T02:35:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.994000", + "Timestamp": "2024-05-16T03:02:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.783300", - "Timestamp": "2019-10-16T02:35:47.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.153000", + "Timestamp": "2024-05-16T03:02:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.753300", - "Timestamp": "2019-10-16T02:35:47.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.148000", + "Timestamp": "2024-05-16T03:02:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.753300", - "Timestamp": "2019-10-16T02:35:47.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.023000", + "Timestamp": "2024-05-16T03:02:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.653300", - "Timestamp": "2019-10-16T02:35:47.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.432200", + "Timestamp": "2024-05-16T03:02:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.653300", - "Timestamp": "2019-10-16T02:35:47.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.427200", + "Timestamp": "2024-05-16T03:02:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.072800", - "Timestamp": "2019-10-16T02:35:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.302200", + "Timestamp": "2024-05-16T03:02:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.072800", - "Timestamp": "2019-10-16T02:35:42.000Z" + "SpotPrice": "0.241200", + "Timestamp": "2024-05-16T03:02:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.125300", - "Timestamp": "2019-10-16T02:35:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.884000", + "Timestamp": "2024-05-16T03:02:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.125300", - "Timestamp": "2019-10-16T02:35:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.854000", + "Timestamp": "2024-05-16T03:02:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124700", - "Timestamp": "2019-10-16T02:35:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.754000", + "Timestamp": "2024-05-16T03:02:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124700", - "Timestamp": "2019-10-16T02:35:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069600", + "Timestamp": "2024-05-16T03:02:03.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124700", - "Timestamp": "2019-10-16T02:35:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065900", + "Timestamp": "2024-05-16T03:02:03.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.604600", - "Timestamp": "2019-10-16T02:35:26.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009600", + "Timestamp": "2024-05-16T03:02:03.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.604600", - "Timestamp": "2019-10-16T02:35:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.154500", + "Timestamp": "2024-05-16T03:02:02.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.604600", - "Timestamp": "2019-10-16T02:35:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.546600", + "Timestamp": "2024-05-16T03:02:01.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.574600", - "Timestamp": "2019-10-16T02:35:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.541600", + "Timestamp": "2024-05-16T03:02:01.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.574600", - "Timestamp": "2019-10-16T02:35:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.416600", + "Timestamp": "2024-05-16T03:02:01.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.574600", - "Timestamp": "2019-10-16T02:35:26.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.246000", + "Timestamp": "2024-05-16T03:02:01.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.474600", - "Timestamp": "2019-10-16T02:35:26.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.241000", + "Timestamp": "2024-05-16T03:02:01.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.474600", - "Timestamp": "2019-10-16T02:35:26.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116000", + "Timestamp": "2024-05-16T03:02:01.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.474600", - "Timestamp": "2019-10-16T02:35:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.428000", + "Timestamp": "2024-05-16T03:01:54.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092700", - "Timestamp": "2019-10-16T02:35:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.795500", + "Timestamp": "2024-05-16T03:01:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092700", - "Timestamp": "2019-10-16T02:35:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.740800", + "Timestamp": "2024-05-16T03:01:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092700", - "Timestamp": "2019-10-16T02:35:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.335700", + "Timestamp": "2024-05-16T03:01:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-16T02:35:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.330700", + "Timestamp": "2024-05-16T03:01:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-16T02:35:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.205700", + "Timestamp": "2024-05-16T03:01:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-16T02:35:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.508700", + "Timestamp": "2024-05-16T03:01:50.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032700", - "Timestamp": "2019-10-16T02:35:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.503700", + "Timestamp": "2024-05-16T03:01:50.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032700", - "Timestamp": "2019-10-16T02:35:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.378700", + "Timestamp": "2024-05-16T03:01:50.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032700", - "Timestamp": "2019-10-16T02:35:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T03:01:50.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.060400", - "Timestamp": "2019-10-16T02:35:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099700", + "Timestamp": "2024-05-16T03:01:50.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.060400", - "Timestamp": "2019-10-16T02:35:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043700", + "Timestamp": "2024-05-16T03:01:50.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.060400", - "Timestamp": "2019-10-16T02:35:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360200", + "Timestamp": "2024-05-16T03:01:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.288100", - "Timestamp": "2019-10-16T02:34:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.355200", + "Timestamp": "2024-05-16T03:01:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.288100", - "Timestamp": "2019-10-16T02:34:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230200", + "Timestamp": "2024-05-16T03:01:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.254600", - "Timestamp": "2019-10-16T02:34:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.781500", + "Timestamp": "2024-05-16T03:01:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.254600", - "Timestamp": "2019-10-16T02:34:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.776500", + "Timestamp": "2024-05-16T03:01:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.224600", - "Timestamp": "2019-10-16T02:34:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.651500", + "Timestamp": "2024-05-16T03:01:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.224600", - "Timestamp": "2019-10-16T02:34:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229500", + "Timestamp": "2024-05-16T03:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.124600", - "Timestamp": "2019-10-16T02:34:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.711300", + "Timestamp": "2024-05-16T03:01:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.124600", - "Timestamp": "2019-10-16T02:34:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.706300", + "Timestamp": "2024-05-16T03:01:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094300", - "Timestamp": "2019-10-16T02:34:26.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.581300", + "Timestamp": "2024-05-16T03:01:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094300", - "Timestamp": "2019-10-16T02:34:26.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.218400", + "Timestamp": "2024-05-16T03:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094300", - "Timestamp": "2019-10-16T02:34:26.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258400", + "Timestamp": "2024-05-16T03:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-16T02:34:26.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158400", + "Timestamp": "2024-05-16T03:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-16T02:34:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.650100", + "Timestamp": "2024-05-16T03:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-16T02:34:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.645100", + "Timestamp": "2024-05-16T03:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034300", - "Timestamp": "2019-10-16T02:34:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.520100", + "Timestamp": "2024-05-16T03:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034300", - "Timestamp": "2019-10-16T02:34:26.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.910200", + "Timestamp": "2024-05-16T03:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034300", - "Timestamp": "2019-10-16T02:34:26.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.046500", + "Timestamp": "2024-05-16T03:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122100", - "Timestamp": "2019-10-16T02:34:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.267000", + "Timestamp": "2024-05-16T03:01:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "t4g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122100", - "Timestamp": "2019-10-16T02:34:25.000Z" - }, - { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.162100", - "Timestamp": "2019-10-16T02:34:25.000Z" + "SpotPrice": "0.113200", + "Timestamp": "2024-05-16T03:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "t4g.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.162100", - "Timestamp": "2019-10-16T02:34:25.000Z" + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T03:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "t4g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062100", - "Timestamp": "2019-10-16T02:34:25.000Z" + "SpotPrice": "0.053200", + "Timestamp": "2024-05-16T03:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062100", - "Timestamp": "2019-10-16T02:34:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.753100", + "Timestamp": "2024-05-16T03:01:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "11.424000", - "Timestamp": "2019-10-16T02:34:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.748100", + "Timestamp": "2024-05-16T03:01:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126300", - "Timestamp": "2019-10-16T02:34:11.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.623100", + "Timestamp": "2024-05-16T03:01:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126300", - "Timestamp": "2019-10-16T02:34:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.206700", + "Timestamp": "2024-05-16T03:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126300", - "Timestamp": "2019-10-16T02:34:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.201700", + "Timestamp": "2024-05-16T03:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.069800", - "Timestamp": "2019-10-16T02:34:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.076700", + "Timestamp": "2024-05-16T03:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.069800", - "Timestamp": "2019-10-16T02:34:11.000Z" - }, - { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.109800", - "Timestamp": "2019-10-16T02:34:11.000Z" + "SpotPrice": "1.222600", + "Timestamp": "2024-05-16T03:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.109800", - "Timestamp": "2019-10-16T02:34:11.000Z" + "SpotPrice": "1.217600", + "Timestamp": "2024-05-16T03:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.medium", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.009800", - "Timestamp": "2019-10-16T02:34:11.000Z" + "SpotPrice": "1.092600", + "Timestamp": "2024-05-16T03:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.009800", - "Timestamp": "2019-10-16T02:34:11.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.255200", + "Timestamp": "2024-05-16T02:47:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.069800", - "Timestamp": "2019-10-16T02:34:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.250200", + "Timestamp": "2024-05-16T02:47:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.069800", - "Timestamp": "2019-10-16T02:34:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125200", + "Timestamp": "2024-05-16T02:47:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.109800", - "Timestamp": "2019-10-16T02:34:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.040800", + "Timestamp": "2024-05-16T02:47:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.109800", - "Timestamp": "2019-10-16T02:34:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.035800", + "Timestamp": "2024-05-16T02:47:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.009800", - "Timestamp": "2019-10-16T02:34:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.910800", + "Timestamp": "2024-05-16T02:47:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.009800", - "Timestamp": "2019-10-16T02:34:07.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224300", + "Timestamp": "2024-05-16T02:47:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.774400", - "Timestamp": "2019-10-16T02:33:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.312800", + "Timestamp": "2024-05-16T02:47:04.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.774400", - "Timestamp": "2019-10-16T02:33:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.307800", + "Timestamp": "2024-05-16T02:47:04.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.774400", - "Timestamp": "2019-10-16T02:33:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.182800", + "Timestamp": "2024-05-16T02:47:04.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.744400", - "Timestamp": "2019-10-16T02:33:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.424500", + "Timestamp": "2024-05-16T02:46:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.744400", - "Timestamp": "2019-10-16T02:33:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.291600", + "Timestamp": "2024-05-16T02:46:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.744400", - "Timestamp": "2019-10-16T02:33:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.286600", + "Timestamp": "2024-05-16T02:46:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.644400", - "Timestamp": "2019-10-16T02:33:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.161600", + "Timestamp": "2024-05-16T02:46:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.644400", - "Timestamp": "2019-10-16T02:33:49.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.334300", + "Timestamp": "2024-05-16T02:46:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.644400", - "Timestamp": "2019-10-16T02:33:49.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.329300", + "Timestamp": "2024-05-16T02:46:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.072800", - "Timestamp": "2019-10-16T02:33:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.204300", + "Timestamp": "2024-05-16T02:46:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.072800", - "Timestamp": "2019-10-16T02:33:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113500", + "Timestamp": "2024-05-16T02:46:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.492600", - "Timestamp": "2019-10-16T02:33:41.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.765300", + "Timestamp": "2024-05-16T02:46:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.492600", - "Timestamp": "2019-10-16T02:33:41.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218000", + "Timestamp": "2024-05-16T02:46:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.492600", - "Timestamp": "2019-10-16T02:33:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.876800", + "Timestamp": "2024-05-16T02:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "4.802000", - "Timestamp": "2019-10-16T02:33:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.434800", + "Timestamp": "2024-05-16T02:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "4.772000", - "Timestamp": "2019-10-16T02:33:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.809200", + "Timestamp": "2024-05-16T02:46:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "4.672000", - "Timestamp": "2019-10-16T02:33:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.804200", + "Timestamp": "2024-05-16T02:46:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.379100", - "Timestamp": "2019-10-16T02:33:32.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.679200", + "Timestamp": "2024-05-16T02:46:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.349100", - "Timestamp": "2019-10-16T02:33:32.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235200", + "Timestamp": "2024-05-16T02:46:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.249100", - "Timestamp": "2019-10-16T02:33:32.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.040700", + "Timestamp": "2024-05-16T02:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.392000", - "Timestamp": "2019-10-16T02:33:31.000Z" + "SpotPrice": "0.484200", + "Timestamp": "2024-05-16T02:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.392000", - "Timestamp": "2019-10-16T02:33:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.815300", + "Timestamp": "2024-05-16T02:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.025500", - "Timestamp": "2019-10-16T02:33:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.810300", + "Timestamp": "2024-05-16T02:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.025500", - "Timestamp": "2019-10-16T02:33:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.685300", + "Timestamp": "2024-05-16T02:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.025500", - "Timestamp": "2019-10-16T02:33:30.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114300", + "Timestamp": "2024-05-16T02:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.699600", - "Timestamp": "2019-10-16T02:33:21.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169400", + "Timestamp": "2024-05-16T02:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.699600", - "Timestamp": "2019-10-16T02:33:21.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165700", + "Timestamp": "2024-05-16T02:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.699600", - "Timestamp": "2019-10-16T02:33:21.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T02:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.669600", - "Timestamp": "2019-10-16T02:33:21.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.189300", + "Timestamp": "2024-05-16T02:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.669600", - "Timestamp": "2019-10-16T02:33:21.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185300", + "Timestamp": "2024-05-16T02:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.669600", - "Timestamp": "2019-10-16T02:33:21.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129300", + "Timestamp": "2024-05-16T02:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.569600", - "Timestamp": "2019-10-16T02:33:21.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091100", + "Timestamp": "2024-05-16T02:46:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.569600", - "Timestamp": "2019-10-16T02:33:21.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087400", + "Timestamp": "2024-05-16T02:46:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.569600", - "Timestamp": "2019-10-16T02:33:21.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031100", + "Timestamp": "2024-05-16T02:46:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.216600", - "Timestamp": "2019-10-16T02:33:13.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.089700", + "Timestamp": "2024-05-16T02:32:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.216600", - "Timestamp": "2019-10-16T02:33:13.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.084700", + "Timestamp": "2024-05-16T02:32:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "7.616000", - "Timestamp": "2019-10-16T02:32:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.959700", + "Timestamp": "2024-05-16T02:32:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.985100", - "Timestamp": "2019-10-16T02:32:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214600", + "Timestamp": "2024-05-16T02:32:00.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.985100", - "Timestamp": "2019-10-16T02:32:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.600400", + "Timestamp": "2024-05-16T02:31:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.985100", - "Timestamp": "2019-10-16T02:32:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.595400", + "Timestamp": "2024-05-16T02:31:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.321000", - "Timestamp": "2019-10-16T02:32:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.470400", + "Timestamp": "2024-05-16T02:31:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.321000", - "Timestamp": "2019-10-16T02:32:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.685000", + "Timestamp": "2024-05-16T02:31:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.361000", - "Timestamp": "2019-10-16T02:32:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.438800", + "Timestamp": "2024-05-16T02:31:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.361000", - "Timestamp": "2019-10-16T02:32:31.000Z" + "SpotPrice": "1.433800", + "Timestamp": "2024-05-16T02:31:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.261000", - "Timestamp": "2019-10-16T02:32:31.000Z" + "SpotPrice": "1.308800", + "Timestamp": "2024-05-16T02:31:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.261000", - "Timestamp": "2019-10-16T02:32:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.534100", + "Timestamp": "2024-05-16T02:31:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.392000", - "Timestamp": "2019-10-16T02:32:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.598700", + "Timestamp": "2024-05-16T02:31:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.392000", - "Timestamp": "2019-10-16T02:32:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.593700", + "Timestamp": "2024-05-16T02:31:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.392000", - "Timestamp": "2019-10-16T02:32:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.468700", + "Timestamp": "2024-05-16T02:31:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.091100", - "Timestamp": "2019-10-16T02:32:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.070100", + "Timestamp": "2024-05-16T02:31:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.091100", - "Timestamp": "2019-10-16T02:32:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.232600", + "Timestamp": "2024-05-16T02:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.091100", - "Timestamp": "2019-10-16T02:32:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.227600", + "Timestamp": "2024-05-16T02:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.131100", - "Timestamp": "2019-10-16T02:32:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.102600", + "Timestamp": "2024-05-16T02:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.131100", - "Timestamp": "2019-10-16T02:32:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.394300", + "Timestamp": "2024-05-16T02:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.131100", - "Timestamp": "2019-10-16T02:32:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.389300", + "Timestamp": "2024-05-16T02:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.031100", - "Timestamp": "2019-10-16T02:32:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.264300", + "Timestamp": "2024-05-16T02:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.031100", - "Timestamp": "2019-10-16T02:32:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.426000", + "Timestamp": "2024-05-16T02:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.031100", - "Timestamp": "2019-10-16T02:32:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.941600", + "Timestamp": "2024-05-16T02:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094300", - "Timestamp": "2019-10-16T02:32:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.604600", + "Timestamp": "2024-05-16T02:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094300", - "Timestamp": "2019-10-16T02:32:20.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.770900", + "Timestamp": "2024-05-16T02:31:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094300", - "Timestamp": "2019-10-16T02:32:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.098900", + "Timestamp": "2024-05-16T02:31:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-16T02:32:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Windows", + "SpotPrice": "9.597400", + "Timestamp": "2024-05-16T02:31:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-16T02:32:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088500", + "Timestamp": "2024-05-16T02:17:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-16T02:32:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084800", + "Timestamp": "2024-05-16T02:17:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034300", - "Timestamp": "2019-10-16T02:32:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028500", + "Timestamp": "2024-05-16T02:17:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034300", - "Timestamp": "2019-10-16T02:32:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.449400", + "Timestamp": "2024-05-16T02:17:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034300", - "Timestamp": "2019-10-16T02:32:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087400", + "Timestamp": "2024-05-16T02:17:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.123100", - "Timestamp": "2019-10-16T02:32:13.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083700", + "Timestamp": "2024-05-16T02:17:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.123100", - "Timestamp": "2019-10-16T02:32:13.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027400", + "Timestamp": "2024-05-16T02:17:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.123100", - "Timestamp": "2019-10-16T02:32:13.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.259500", + "Timestamp": "2024-05-16T02:17:10.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.985600", - "Timestamp": "2019-10-16T02:32:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T02:17:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.985600", - "Timestamp": "2019-10-16T02:32:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101500", + "Timestamp": "2024-05-16T02:17:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.985600", - "Timestamp": "2019-10-16T02:32:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045200", + "Timestamp": "2024-05-16T02:17:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.952200", - "Timestamp": "2019-10-16T02:32:00.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T02:16:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.922200", - "Timestamp": "2019-10-16T02:32:00.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431400", + "Timestamp": "2024-05-16T02:16:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.822200", - "Timestamp": "2019-10-16T02:32:00.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146700", + "Timestamp": "2024-05-16T02:16:50.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.690600", - "Timestamp": "2019-10-16T02:31:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143000", + "Timestamp": "2024-05-16T02:16:50.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.690600", - "Timestamp": "2019-10-16T02:31:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086700", + "Timestamp": "2024-05-16T02:16:50.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.660600", - "Timestamp": "2019-10-16T02:31:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115800", + "Timestamp": "2024-05-16T02:16:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.660600", - "Timestamp": "2019-10-16T02:31:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111800", + "Timestamp": "2024-05-16T02:16:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.560600", - "Timestamp": "2019-10-16T02:31:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055800", + "Timestamp": "2024-05-16T02:16:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.560600", - "Timestamp": "2019-10-16T02:31:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125000", + "Timestamp": "2024-05-16T02:16:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.321000", - "Timestamp": "2019-10-16T02:31:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.677800", + "Timestamp": "2024-05-16T02:16:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.321000", - "Timestamp": "2019-10-16T02:31:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.230900", + "Timestamp": "2024-05-16T02:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.321000", - "Timestamp": "2019-10-16T02:31:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T02:16:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.361000", - "Timestamp": "2019-10-16T02:31:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.455900", + "Timestamp": "2024-05-16T02:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.361000", - "Timestamp": "2019-10-16T02:31:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222800", + "Timestamp": "2024-05-16T02:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.361000", - "Timestamp": "2019-10-16T02:31:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T02:16:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.261000", - "Timestamp": "2019-10-16T02:31:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103600", + "Timestamp": "2024-05-16T02:16:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.261000", - "Timestamp": "2019-10-16T02:31:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047600", + "Timestamp": "2024-05-16T02:16:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.261000", - "Timestamp": "2019-10-16T02:31:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.478800", + "Timestamp": "2024-05-16T02:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.067100", - "Timestamp": "2019-10-16T02:30:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.473800", + "Timestamp": "2024-05-16T02:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.067100", - "Timestamp": "2019-10-16T02:30:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.348800", + "Timestamp": "2024-05-16T02:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.067100", - "Timestamp": "2019-10-16T02:30:24.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063500", + "Timestamp": "2024-05-16T02:03:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.107100", - "Timestamp": "2019-10-16T02:30:24.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003500", + "Timestamp": "2024-05-16T02:03:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.107100", - "Timestamp": "2019-10-16T02:30:24.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003500", + "Timestamp": "2024-05-16T02:03:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.107100", - "Timestamp": "2019-10-16T02:30:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.534800", + "Timestamp": "2024-05-16T02:02:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.007100", - "Timestamp": "2019-10-16T02:30:24.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.534800", + "Timestamp": "2024-05-16T02:02:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.007100", - "Timestamp": "2019-10-16T02:30:24.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-16T02:02:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.007100", - "Timestamp": "2019-10-16T02:30:24.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.975000", + "Timestamp": "2024-05-16T02:02:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.361400", - "Timestamp": "2019-10-16T02:29:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147800", + "Timestamp": "2024-05-16T02:01:50.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.445200", - "Timestamp": "2019-10-16T02:29:12.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144100", + "Timestamp": "2024-05-16T02:01:50.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.653200", - "Timestamp": "2019-10-16T02:27:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087800", + "Timestamp": "2024-05-16T02:01:50.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.623200", - "Timestamp": "2019-10-16T02:27:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T02:01:45.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.523200", - "Timestamp": "2019-10-16T02:27:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T02:01:45.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.950100", - "Timestamp": "2019-10-16T02:21:37.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050800", + "Timestamp": "2024-05-16T02:01:45.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.920100", - "Timestamp": "2019-10-16T02:21:37.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138800", + "Timestamp": "2024-05-16T02:01:45.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.820100", - "Timestamp": "2019-10-16T02:21:37.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134800", + "Timestamp": "2024-05-16T02:01:45.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092700", - "Timestamp": "2019-10-16T02:21:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078800", + "Timestamp": "2024-05-16T02:01:45.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-16T02:21:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.634400", + "Timestamp": "2024-05-16T02:01:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", + "AvailabilityZone": "us-east-2b", "InstanceType": "m5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032700", - "Timestamp": "2019-10-16T02:21:30.000Z" - }, - { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095300", - "Timestamp": "2019-10-16T02:21:29.000Z" - }, - { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135300", - "Timestamp": "2019-10-16T02:21:29.000Z" + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T02:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035300", - "Timestamp": "2019-10-16T02:21:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T02:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.392800", - "Timestamp": "2019-10-16T02:21:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050300", + "Timestamp": "2024-05-16T02:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.362800", - "Timestamp": "2019-10-16T02:21:24.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.244400", + "Timestamp": "2024-05-16T02:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.262800", - "Timestamp": "2019-10-16T02:21:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091300", + "Timestamp": "2024-05-16T01:47:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-16T02:21:06.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087600", + "Timestamp": "2024-05-16T01:47:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.174300", - "Timestamp": "2019-10-16T02:21:06.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031300", + "Timestamp": "2024-05-16T01:47:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.074300", - "Timestamp": "2019-10-16T02:21:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.255900", + "Timestamp": "2024-05-16T01:47:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.288000", - "Timestamp": "2019-10-16T02:13:18.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.365000", + "Timestamp": "2024-05-16T01:47:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.258000", - "Timestamp": "2019-10-16T02:13:18.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.360000", + "Timestamp": "2024-05-16T01:47:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.158000", - "Timestamp": "2019-10-16T02:13:18.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235000", + "Timestamp": "2024-05-16T01:47:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6idn.large", "ProductDescription": "Windows", - "SpotPrice": "0.575800", - "Timestamp": "2019-10-16T02:12:44.000Z" + "SpotPrice": "0.130300", + "Timestamp": "2024-05-16T01:47:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.133900", - "Timestamp": "2019-10-16T02:12:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.186700", + "Timestamp": "2024-05-16T01:47:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.173900", - "Timestamp": "2019-10-16T02:12:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183000", + "Timestamp": "2024-05-16T01:47:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.073900", - "Timestamp": "2019-10-16T02:12:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126700", + "Timestamp": "2024-05-16T01:47:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.040200", - "Timestamp": "2019-10-16T02:11:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063400", + "Timestamp": "2024-05-16T01:47:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.914800", - "Timestamp": "2019-10-16T02:11:42.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003400", + "Timestamp": "2024-05-16T01:47:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.884800", - "Timestamp": "2019-10-16T02:11:42.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003400", + "Timestamp": "2024-05-16T01:47:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.784800", - "Timestamp": "2019-10-16T02:11:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-16T01:47:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.460300", - "Timestamp": "2019-10-16T02:05:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090800", + "Timestamp": "2024-05-16T01:47:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.430300", - "Timestamp": "2019-10-16T02:05:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087100", + "Timestamp": "2024-05-16T01:47:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.330300", - "Timestamp": "2019-10-16T02:05:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030800", + "Timestamp": "2024-05-16T01:47:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.078900", - "Timestamp": "2019-10-16T02:04:38.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.465600", + "Timestamp": "2024-05-16T01:47:01.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.267800", - "Timestamp": "2019-10-16T02:04:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.289100", + "Timestamp": "2024-05-16T01:47:01.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.237800", - "Timestamp": "2019-10-16T02:04:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.284100", + "Timestamp": "2024-05-16T01:47:01.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.137800", - "Timestamp": "2019-10-16T02:04:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159100", + "Timestamp": "2024-05-16T01:47:01.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.medium", "ProductDescription": "Windows", - "SpotPrice": "0.576700", - "Timestamp": "2019-10-16T01:55:44.000Z" - }, - { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.914800", - "Timestamp": "2019-10-16T01:55:42.000Z" + "SpotPrice": "0.025100", + "Timestamp": "2024-05-16T01:46:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.884800", - "Timestamp": "2019-10-16T01:55:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092400", + "Timestamp": "2024-05-16T01:46:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.784800", - "Timestamp": "2019-10-16T01:55:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088400", + "Timestamp": "2024-05-16T01:46:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.400800", - "Timestamp": "2019-10-16T01:48:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032400", + "Timestamp": "2024-05-16T01:46:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.370800", - "Timestamp": "2019-10-16T01:48:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T01:46:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.270800", - "Timestamp": "2019-10-16T01:48:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.877700", + "Timestamp": "2024-05-16T01:46:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.954400", - "Timestamp": "2019-10-16T01:48:00.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T01:46:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.924400", - "Timestamp": "2019-10-16T01:48:00.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.235900", + "Timestamp": "2024-05-16T01:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.824400", - "Timestamp": "2019-10-16T01:48:00.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.230900", + "Timestamp": "2024-05-16T01:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.647700", - "Timestamp": "2019-10-16T01:47:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.105900", + "Timestamp": "2024-05-16T01:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095800", - "Timestamp": "2019-10-16T01:47:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.281400", + "Timestamp": "2024-05-16T01:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135800", - "Timestamp": "2019-10-16T01:47:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.251400", + "Timestamp": "2024-05-16T01:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035800", - "Timestamp": "2019-10-16T01:47:29.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.151400", + "Timestamp": "2024-05-16T01:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.919000", - "Timestamp": "2019-10-16T01:47:16.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099500", + "Timestamp": "2024-05-16T01:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.889000", - "Timestamp": "2019-10-16T01:47:16.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095800", + "Timestamp": "2024-05-16T01:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.789000", - "Timestamp": "2019-10-16T01:47:16.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039500", + "Timestamp": "2024-05-16T01:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "z1d.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.456400", - "Timestamp": "2019-10-16T01:46:31.000Z" + "SpotPrice": "0.242200", + "Timestamp": "2024-05-16T01:32:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.metal", "ProductDescription": "Windows", - "SpotPrice": "0.456400", - "Timestamp": "2019-10-16T01:46:31.000Z" + "SpotPrice": "5.603300", + "Timestamp": "2024-05-16T01:32:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.456400", - "Timestamp": "2019-10-16T01:44:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.448500", + "Timestamp": "2024-05-16T01:32:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.456400", - "Timestamp": "2019-10-16T01:44:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.443500", + "Timestamp": "2024-05-16T01:32:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.365400", - "Timestamp": "2019-10-16T01:43:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.318500", + "Timestamp": "2024-05-16T01:32:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.365400", - "Timestamp": "2019-10-16T01:43:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.007500", + "Timestamp": "2024-05-16T01:32:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.405400", - "Timestamp": "2019-10-16T01:43:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100500", + "Timestamp": "2024-05-16T01:32:05.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.405400", - "Timestamp": "2019-10-16T01:43:31.000Z" + "SpotPrice": "0.096500", + "Timestamp": "2024-05-16T01:32:05.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5d.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.305400", - "Timestamp": "2019-10-16T01:43:31.000Z" + "SpotPrice": "0.040500", + "Timestamp": "2024-05-16T01:32:05.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.305400", - "Timestamp": "2019-10-16T01:43:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.468900", + "Timestamp": "2024-05-16T01:31:50.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.365400", - "Timestamp": "2019-10-16T01:43:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099600", + "Timestamp": "2024-05-16T01:31:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.365400", - "Timestamp": "2019-10-16T01:43:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095600", + "Timestamp": "2024-05-16T01:31:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.405400", - "Timestamp": "2019-10-16T01:43:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039600", + "Timestamp": "2024-05-16T01:31:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.405400", - "Timestamp": "2019-10-16T01:43:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096600", + "Timestamp": "2024-05-16T01:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.305400", - "Timestamp": "2019-10-16T01:43:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-16T01:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.305400", - "Timestamp": "2019-10-16T01:43:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036600", + "Timestamp": "2024-05-16T01:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.010100", - "Timestamp": "2019-10-16T01:42:55.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.245100", + "Timestamp": "2024-05-16T01:17:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.008000", - "Timestamp": "2019-10-16T01:42:55.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.240100", + "Timestamp": "2024-05-16T01:17:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.404100", - "Timestamp": "2019-10-16T01:42:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115100", + "Timestamp": "2024-05-16T01:17:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.402000", - "Timestamp": "2019-10-16T01:42:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226900", + "Timestamp": "2024-05-16T01:17:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.374100", - "Timestamp": "2019-10-16T01:42:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.829600", + "Timestamp": "2024-05-16T01:17:00.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.372000", - "Timestamp": "2019-10-16T01:42:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T01:16:55.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.274100", - "Timestamp": "2019-10-16T01:42:38.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.850300", + "Timestamp": "2024-05-16T01:16:45.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.272000", - "Timestamp": "2019-10-16T01:42:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063300", + "Timestamp": "2024-05-16T01:16:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.997600", - "Timestamp": "2019-10-16T01:39:56.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003300", + "Timestamp": "2024-05-16T01:16:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.997600", - "Timestamp": "2019-10-16T01:39:56.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003300", + "Timestamp": "2024-05-16T01:16:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.110700", - "Timestamp": "2019-10-16T01:39:18.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098300", + "Timestamp": "2024-05-16T01:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.080700", - "Timestamp": "2019-10-16T01:39:18.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094300", + "Timestamp": "2024-05-16T01:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.980700", - "Timestamp": "2019-10-16T01:39:18.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038300", + "Timestamp": "2024-05-16T01:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.391600", - "Timestamp": "2019-10-16T01:38:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116100", + "Timestamp": "2024-05-16T01:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.391600", - "Timestamp": "2019-10-16T01:38:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097400", + "Timestamp": "2024-05-16T01:16:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.361600", - "Timestamp": "2019-10-16T01:38:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093700", + "Timestamp": "2024-05-16T01:16:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.361600", - "Timestamp": "2019-10-16T01:38:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037400", + "Timestamp": "2024-05-16T01:16:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.261600", - "Timestamp": "2019-10-16T01:38:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084900", + "Timestamp": "2024-05-16T01:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.261600", - "Timestamp": "2019-10-16T01:38:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.081200", + "Timestamp": "2024-05-16T01:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.260800", - "Timestamp": "2019-10-16T01:32:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024900", + "Timestamp": "2024-05-16T01:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.230800", - "Timestamp": "2019-10-16T01:32:11.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078000", + "Timestamp": "2024-05-16T01:16:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-16T01:32:11.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074300", + "Timestamp": "2024-05-16T01:16:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t2.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.070900", - "Timestamp": "2019-10-16T01:31:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018000", + "Timestamp": "2024-05-16T01:16:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t2.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.040900", - "Timestamp": "2019-10-16T01:31:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.684100", + "Timestamp": "2024-05-16T01:02:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t2.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.010900", - "Timestamp": "2019-10-16T01:31:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.679100", + "Timestamp": "2024-05-16T01:02:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.280500", - "Timestamp": "2019-10-16T01:31:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.554100", + "Timestamp": "2024-05-16T01:02:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.250500", - "Timestamp": "2019-10-16T01:31:14.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "a1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076600", + "Timestamp": "2024-05-16T01:02:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.150500", - "Timestamp": "2019-10-16T01:31:14.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "a1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.072900", + "Timestamp": "2024-05-16T01:02:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.128500", - "Timestamp": "2019-10-16T01:29:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "a1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016600", + "Timestamp": "2024-05-16T01:02:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.168500", - "Timestamp": "2019-10-16T01:29:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.317200", + "Timestamp": "2024-05-16T01:01:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.068500", - "Timestamp": "2019-10-16T01:29:56.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T01:01:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.176400", - "Timestamp": "2019-10-16T01:29:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T01:01:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.146400", - "Timestamp": "2019-10-16T01:29:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142500", + "Timestamp": "2024-05-16T01:01:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.046400", - "Timestamp": "2019-10-16T01:29:55.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042500", + "Timestamp": "2024-05-16T01:01:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.371700", - "Timestamp": "2019-10-16T01:23:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439500", + "Timestamp": "2024-05-16T01:01:45.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.341700", - "Timestamp": "2019-10-16T01:23:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119200", + "Timestamp": "2024-05-16T01:01:45.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.241700", - "Timestamp": "2019-10-16T01:23:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.419200", + "Timestamp": "2024-05-16T01:01:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.272800", - "Timestamp": "2019-10-16T01:22:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.460900", + "Timestamp": "2024-05-16T01:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.242800", - "Timestamp": "2019-10-16T01:22:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.123900", + "Timestamp": "2024-05-16T01:01:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.142800", - "Timestamp": "2019-10-16T01:22:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.668900", + "Timestamp": "2024-05-16T00:47:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.382400", - "Timestamp": "2019-10-16T01:22:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.663900", + "Timestamp": "2024-05-16T00:47:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.352400", - "Timestamp": "2019-10-16T01:22:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.538900", + "Timestamp": "2024-05-16T00:47:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.252400", - "Timestamp": "2019-10-16T01:22:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113500", + "Timestamp": "2024-05-16T00:47:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.102900", - "Timestamp": "2019-10-16T01:14:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.634000", + "Timestamp": "2024-05-16T00:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.261600", - "Timestamp": "2019-10-16T01:14:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.629000", + "Timestamp": "2024-05-16T00:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.268000", - "Timestamp": "2019-10-16T01:14:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.504000", + "Timestamp": "2024-05-16T00:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.231600", - "Timestamp": "2019-10-16T01:14:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.091700", + "Timestamp": "2024-05-16T00:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.238000", - "Timestamp": "2019-10-16T01:14:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.086700", + "Timestamp": "2024-05-16T00:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.131600", - "Timestamp": "2019-10-16T01:14:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.961700", + "Timestamp": "2024-05-16T00:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.138000", - "Timestamp": "2019-10-16T01:14:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075100", + "Timestamp": "2024-05-16T00:46:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.371800", - "Timestamp": "2019-10-16T01:14:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071400", + "Timestamp": "2024-05-16T00:46:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.341800", - "Timestamp": "2019-10-16T01:14:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015100", + "Timestamp": "2024-05-16T00:46:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.241800", - "Timestamp": "2019-10-16T01:14:11.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134400", + "Timestamp": "2024-05-16T00:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.653200", - "Timestamp": "2019-10-16T01:12:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130400", + "Timestamp": "2024-05-16T00:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.623200", - "Timestamp": "2019-10-16T01:12:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074400", + "Timestamp": "2024-05-16T00:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.523200", - "Timestamp": "2019-10-16T01:12:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.896600", + "Timestamp": "2024-05-16T00:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.774400", - "Timestamp": "2019-10-16T01:07:58.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.866600", + "Timestamp": "2024-05-16T00:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.744400", - "Timestamp": "2019-10-16T01:07:58.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.766600", + "Timestamp": "2024-05-16T00:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.644400", - "Timestamp": "2019-10-16T01:07:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098900", + "Timestamp": "2024-05-16T00:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.906700", - "Timestamp": "2019-10-16T01:06:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094900", + "Timestamp": "2024-05-16T00:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.131300", - "Timestamp": "2019-10-16T01:05:47.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038900", + "Timestamp": "2024-05-16T00:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.171300", - "Timestamp": "2019-10-16T01:05:47.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.677800", + "Timestamp": "2024-05-16T00:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-16T01:05:47.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.672800", + "Timestamp": "2024-05-16T00:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.131400", - "Timestamp": "2019-10-16T01:05:44.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.547800", + "Timestamp": "2024-05-16T00:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.171400", - "Timestamp": "2019-10-16T01:05:44.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220800", + "Timestamp": "2024-05-16T00:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.071400", - "Timestamp": "2019-10-16T01:05:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.341600", + "Timestamp": "2024-05-16T00:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.639900", - "Timestamp": "2019-10-16T01:05:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095500", + "Timestamp": "2024-05-16T00:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.609900", - "Timestamp": "2019-10-16T01:05:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T00:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.509900", - "Timestamp": "2019-10-16T01:05:40.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035500", + "Timestamp": "2024-05-16T00:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "5.210800", - "Timestamp": "2019-10-16T00:59:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066400", + "Timestamp": "2024-05-16T00:32:55.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "p3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "5.180800", - "Timestamp": "2019-10-16T00:59:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037400", + "Timestamp": "2024-05-16T00:32:55.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "5.080800", - "Timestamp": "2019-10-16T00:59:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006400", + "Timestamp": "2024-05-16T00:32:55.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126300", - "Timestamp": "2019-10-16T00:59:17.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-16T00:32:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.138300", - "Timestamp": "2019-10-16T00:57:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T00:32:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.178300", - "Timestamp": "2019-10-16T00:57:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.842000", + "Timestamp": "2024-05-16T00:32:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.078300", - "Timestamp": "2019-10-16T00:57:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T00:32:17.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.533300", - "Timestamp": "2019-10-16T00:57:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T00:32:17.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.503300", - "Timestamp": "2019-10-16T00:57:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048700", + "Timestamp": "2024-05-16T00:32:17.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.403300", - "Timestamp": "2019-10-16T00:57:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.068500", + "Timestamp": "2024-05-16T00:32:17.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.143800", - "Timestamp": "2019-10-16T00:57:12.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.906300", + "Timestamp": "2024-05-16T00:31:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.113800", - "Timestamp": "2019-10-16T00:57:12.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226600", + "Timestamp": "2024-05-16T00:31:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.013800", - "Timestamp": "2019-10-16T00:57:12.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110900", + "Timestamp": "2024-05-16T00:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.754900", - "Timestamp": "2019-10-16T00:48:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.850000", + "Timestamp": "2024-05-16T00:18:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126300", - "Timestamp": "2019-10-16T00:48:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.850000", + "Timestamp": "2024-05-16T00:18:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126300", - "Timestamp": "2019-10-16T00:48:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.452700", + "Timestamp": "2024-05-16T00:17:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126300", - "Timestamp": "2019-10-16T00:48:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.025600", + "Timestamp": "2024-05-16T00:16:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094300", - "Timestamp": "2019-10-16T00:46:41.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.466700", + "Timestamp": "2024-05-16T00:16:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094300", - "Timestamp": "2019-10-16T00:46:41.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102200", + "Timestamp": "2024-05-16T00:16:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-16T00:46:41.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142200", + "Timestamp": "2024-05-16T00:16:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-16T00:46:41.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042200", + "Timestamp": "2024-05-16T00:16:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034300", - "Timestamp": "2019-10-16T00:46:41.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T00:16:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034300", - "Timestamp": "2019-10-16T00:46:41.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077300", + "Timestamp": "2024-05-16T00:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "13.105600", - "Timestamp": "2019-10-16T00:43:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073600", + "Timestamp": "2024-05-16T00:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "13.105600", - "Timestamp": "2019-10-16T00:43:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017300", + "Timestamp": "2024-05-16T00:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "10.291600", - "Timestamp": "2019-10-16T00:43:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.241300", + "Timestamp": "2024-05-16T00:02:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "10.291600", - "Timestamp": "2019-10-16T00:43:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.060500", + "Timestamp": "2024-05-16T00:02:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "p3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "10.261600", - "Timestamp": "2019-10-16T00:43:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137700", + "Timestamp": "2024-05-16T00:01:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "p3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "10.261600", - "Timestamp": "2019-10-16T00:43:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134000", + "Timestamp": "2024-05-16T00:01:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "10.161600", - "Timestamp": "2019-10-16T00:43:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077700", + "Timestamp": "2024-05-16T00:01:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "10.161600", - "Timestamp": "2019-10-16T00:43:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.852600", + "Timestamp": "2024-05-16T00:01:50.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.397100", - "Timestamp": "2019-10-16T00:41:05.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113600", + "Timestamp": "2024-05-16T00:01:45.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.367100", - "Timestamp": "2019-10-16T00:41:05.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.663700", + "Timestamp": "2024-05-16T00:01:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.267100", - "Timestamp": "2019-10-16T00:41:05.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.658700", + "Timestamp": "2024-05-16T00:01:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.119300", - "Timestamp": "2019-10-16T00:38:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.533700", + "Timestamp": "2024-05-16T00:01:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.119300", - "Timestamp": "2019-10-16T00:38:31.000Z" + "SpotPrice": "0.097800", + "Timestamp": "2024-05-16T00:01:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.159300", - "Timestamp": "2019-10-16T00:38:31.000Z" + "SpotPrice": "0.093800", + "Timestamp": "2024-05-16T00:01:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.159300", - "Timestamp": "2019-10-16T00:38:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037800", + "Timestamp": "2024-05-16T00:01:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.059300", - "Timestamp": "2019-10-16T00:38:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216400", + "Timestamp": "2024-05-16T00:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.059300", - "Timestamp": "2019-10-16T00:38:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074200", + "Timestamp": "2024-05-16T00:01:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.119300", - "Timestamp": "2019-10-16T00:36:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.045200", + "Timestamp": "2024-05-16T00:01:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.119300", - "Timestamp": "2019-10-16T00:36:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014200", + "Timestamp": "2024-05-16T00:01:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.159300", - "Timestamp": "2019-10-16T00:36:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.329300", + "Timestamp": "2024-05-16T00:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.159300", - "Timestamp": "2019-10-16T00:36:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324300", + "Timestamp": "2024-05-16T00:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.059300", - "Timestamp": "2019-10-16T00:36:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199300", + "Timestamp": "2024-05-16T00:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.059300", - "Timestamp": "2019-10-16T00:36:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088900", + "Timestamp": "2024-05-16T00:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.990400", - "Timestamp": "2019-10-16T00:35:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085200", + "Timestamp": "2024-05-16T00:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "4.293900", - "Timestamp": "2019-10-16T00:32:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028900", + "Timestamp": "2024-05-16T00:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "4.263900", - "Timestamp": "2019-10-16T00:32:25.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113300", + "Timestamp": "2024-05-16T00:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "4.163900", - "Timestamp": "2019-10-16T00:32:25.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T00:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.956400", - "Timestamp": "2019-10-16T00:24:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-16T00:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.926400", - "Timestamp": "2019-10-16T00:24:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031800", + "Timestamp": "2024-05-16T00:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.826400", - "Timestamp": "2019-10-16T00:24:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354700", + "Timestamp": "2024-05-16T00:01:17.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.953500", - "Timestamp": "2019-10-16T00:24:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349700", + "Timestamp": "2024-05-16T00:01:17.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.923500", - "Timestamp": "2019-10-16T00:24:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224700", + "Timestamp": "2024-05-16T00:01:17.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.823500", - "Timestamp": "2019-10-16T00:24:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T00:01:15.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.254600", - "Timestamp": "2019-10-16T00:21:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089100", + "Timestamp": "2024-05-16T00:01:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.224600", - "Timestamp": "2019-10-16T00:21:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085400", + "Timestamp": "2024-05-16T00:01:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.124600", - "Timestamp": "2019-10-16T00:21:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029100", + "Timestamp": "2024-05-16T00:01:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252500", - "Timestamp": "2019-10-16T00:18:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218400", + "Timestamp": "2024-05-15T23:47:45.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.391600", - "Timestamp": "2019-10-16T00:16:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097000", + "Timestamp": "2024-05-15T23:47:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.361600", - "Timestamp": "2019-10-16T00:16:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093300", + "Timestamp": "2024-05-15T23:47:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.261600", - "Timestamp": "2019-10-16T00:16:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037000", + "Timestamp": "2024-05-15T23:47:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.060400", - "Timestamp": "2019-10-16T00:09:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g6.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.491400", + "Timestamp": "2024-05-15T23:47:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.700400", - "Timestamp": "2019-10-16T00:07:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221400", + "Timestamp": "2024-05-15T23:47:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.670400", - "Timestamp": "2019-10-16T00:07:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072100", + "Timestamp": "2024-05-15T23:47:00.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.570400", - "Timestamp": "2019-10-16T00:07:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043100", + "Timestamp": "2024-05-15T23:47:00.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.905000", - "Timestamp": "2019-10-16T00:07:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012100", + "Timestamp": "2024-05-15T23:47:00.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.200400", - "Timestamp": "2019-10-16T00:07:11.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111800", + "Timestamp": "2024-05-15T23:46:47.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.170400", - "Timestamp": "2019-10-16T00:07:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-15T23:46:45.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.070400", - "Timestamp": "2019-10-16T00:07:11.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-15T23:46:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.226200", - "Timestamp": "2019-10-16T00:06:47.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.221800", + "Timestamp": "2024-05-15T23:37:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.196200", - "Timestamp": "2019-10-16T00:06:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.221800", + "Timestamp": "2024-05-15T23:37:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.096200", - "Timestamp": "2019-10-16T00:06:47.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233700", + "Timestamp": "2024-05-15T23:32:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.268200", - "Timestamp": "2019-10-15T23:59:19.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-15T23:32:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.238200", - "Timestamp": "2019-10-15T23:59:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-15T23:32:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.138200", - "Timestamp": "2019-10-15T23:59:19.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218400", + "Timestamp": "2024-05-15T23:32:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.404100", - "Timestamp": "2019-10-15T23:52:47.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.040300", + "Timestamp": "2024-05-15T23:32:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.374100", - "Timestamp": "2019-10-15T23:52:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072400", + "Timestamp": "2024-05-15T23:32:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.274100", - "Timestamp": "2019-10-15T23:52:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043400", + "Timestamp": "2024-05-15T23:32:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.699300", - "Timestamp": "2019-10-15T23:50:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012400", + "Timestamp": "2024-05-15T23:32:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.669300", - "Timestamp": "2019-10-15T23:50:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.474000", + "Timestamp": "2024-05-15T23:32:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.569300", - "Timestamp": "2019-10-15T23:50:54.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.283200", + "Timestamp": "2024-05-15T23:32:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.449300", - "Timestamp": "2019-10-15T23:50:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.278200", + "Timestamp": "2024-05-15T23:32:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.419300", - "Timestamp": "2019-10-15T23:50:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.153200", + "Timestamp": "2024-05-15T23:32:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.319300", - "Timestamp": "2019-10-15T23:50:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226300", + "Timestamp": "2024-05-15T23:31:45.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.678100", - "Timestamp": "2019-10-15T23:43:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101500", + "Timestamp": "2024-05-15T23:31:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.678100", - "Timestamp": "2019-10-15T23:43:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097800", + "Timestamp": "2024-05-15T23:31:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.678100", - "Timestamp": "2019-10-15T23:43:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041500", + "Timestamp": "2024-05-15T23:31:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.648100", - "Timestamp": "2019-10-15T23:43:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271900", + "Timestamp": "2024-05-15T23:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.648100", - "Timestamp": "2019-10-15T23:43:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266900", + "Timestamp": "2024-05-15T23:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.648100", - "Timestamp": "2019-10-15T23:43:14.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141900", + "Timestamp": "2024-05-15T23:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.548100", - "Timestamp": "2019-10-15T23:43:14.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.022600", + "Timestamp": "2024-05-15T23:17:47.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.548100", - "Timestamp": "2019-10-15T23:43:14.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-15T23:17:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.548100", - "Timestamp": "2019-10-15T23:43:14.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.414500", + "Timestamp": "2024-05-15T23:17:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.845100", - "Timestamp": "2019-10-15T23:42:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010800", + "Timestamp": "2024-05-15T23:17:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.815100", - "Timestamp": "2019-10-15T23:42:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.371100", + "Timestamp": "2024-05-15T23:17:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.715100", - "Timestamp": "2019-10-15T23:42:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.366100", + "Timestamp": "2024-05-15T23:17:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.508500", - "Timestamp": "2019-10-15T23:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.241100", + "Timestamp": "2024-05-15T23:17:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.478500", - "Timestamp": "2019-10-15T23:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-15T23:17:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.378500", - "Timestamp": "2019-10-15T23:42:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112900", + "Timestamp": "2024-05-15T23:17:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.093300", - "Timestamp": "2019-10-15T23:42:37.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056900", + "Timestamp": "2024-05-15T23:17:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.133300", - "Timestamp": "2019-10-15T23:42:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-15T23:17:15.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.033300", - "Timestamp": "2019-10-15T23:42:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-15T23:17:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.074000", - "Timestamp": "2019-10-15T23:42:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103400", + "Timestamp": "2024-05-15T23:17:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.074000", - "Timestamp": "2019-10-15T23:42:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047100", + "Timestamp": "2024-05-15T23:17:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "5.046500", - "Timestamp": "2019-10-15T23:42:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133200", + "Timestamp": "2024-05-15T23:17:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "p2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "5.016500", - "Timestamp": "2019-10-15T23:42:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129500", + "Timestamp": "2024-05-15T23:17:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "4.916500", - "Timestamp": "2019-10-15T23:42:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073200", + "Timestamp": "2024-05-15T23:17:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.129900", - "Timestamp": "2019-10-15T23:42:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216200", + "Timestamp": "2024-05-15T23:16:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.169900", - "Timestamp": "2019-10-15T23:42:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-15T23:16:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.069900", - "Timestamp": "2019-10-15T23:42:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084400", + "Timestamp": "2024-05-15T23:16:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.020100", - "Timestamp": "2019-10-15T23:42:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028100", + "Timestamp": "2024-05-15T23:16:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.020100", - "Timestamp": "2019-10-15T23:42:03.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.198400", + "Timestamp": "2024-05-15T23:11:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.020100", - "Timestamp": "2019-10-15T23:42:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.198400", + "Timestamp": "2024-05-15T23:11:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c1.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.118400", - "Timestamp": "2019-10-15T23:41:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.198400", + "Timestamp": "2024-05-15T23:11:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c1.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.118400", - "Timestamp": "2019-10-15T23:41:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.674000", + "Timestamp": "2024-05-15T23:10:54.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.356000", - "Timestamp": "2019-10-15T23:41:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.490000", + "Timestamp": "2024-05-15T23:02:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.356000", - "Timestamp": "2019-10-15T23:41:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.964600", + "Timestamp": "2024-05-15T23:02:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.326000", - "Timestamp": "2019-10-15T23:41:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.959600", + "Timestamp": "2024-05-15T23:02:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.326000", - "Timestamp": "2019-10-15T23:41:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.834600", + "Timestamp": "2024-05-15T23:02:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.226000", - "Timestamp": "2019-10-15T23:41:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144600", + "Timestamp": "2024-05-15T23:01:53.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.226000", - "Timestamp": "2019-10-15T23:41:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140600", + "Timestamp": "2024-05-15T23:01:53.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.356000", - "Timestamp": "2019-10-15T23:41:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084600", + "Timestamp": "2024-05-15T23:01:53.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.356000", - "Timestamp": "2019-10-15T23:41:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010900", + "Timestamp": "2024-05-15T23:01:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.326000", - "Timestamp": "2019-10-15T23:41:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076600", + "Timestamp": "2024-05-15T23:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "t2.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.326000", - "Timestamp": "2019-10-15T23:41:10.000Z" + "SpotPrice": "0.116600", + "Timestamp": "2024-05-15T23:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "t2.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.226000", - "Timestamp": "2019-10-15T23:41:10.000Z" + "SpotPrice": "0.016600", + "Timestamp": "2024-05-15T23:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066400", + "Timestamp": "2024-05-15T23:01:37.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037700", + "Timestamp": "2024-05-15T23:01:37.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "t4g.small", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.226000", - "Timestamp": "2019-10-15T23:41:10.000Z" + "SpotPrice": "0.006400", + "Timestamp": "2024-05-15T23:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c1.medium", + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1e.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.118400", - "Timestamp": "2019-10-15T23:41:06.000Z" + "SpotPrice": "1.069600", + "Timestamp": "2024-05-15T22:54:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c1.medium", + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1e.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.118400", - "Timestamp": "2019-10-15T23:41:06.000Z" + "SpotPrice": "1.069600", + "Timestamp": "2024-05-15T22:54:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c1.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.076400", - "Timestamp": "2019-10-15T23:40:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.555600", + "Timestamp": "2024-05-15T22:52:00.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c1.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.076400", - "Timestamp": "2019-10-15T23:40:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.555600", + "Timestamp": "2024-05-15T22:52:00.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c1.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.116400", - "Timestamp": "2019-10-15T23:40:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.797600", + "Timestamp": "2024-05-15T22:50:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c1.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.116400", - "Timestamp": "2019-10-15T23:40:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.792600", + "Timestamp": "2024-05-15T22:50:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c1.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.016400", - "Timestamp": "2019-10-15T23:40:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.667600", + "Timestamp": "2024-05-15T22:50:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c1.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.016400", - "Timestamp": "2019-10-15T23:40:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.063800", + "Timestamp": "2024-05-15T22:47:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c1.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.076400", - "Timestamp": "2019-10-15T23:40:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.325800", + "Timestamp": "2024-05-15T22:46:50.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c1.medium", + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.076400", - "Timestamp": "2019-10-15T23:40:23.000Z" + "SpotPrice": "0.160000", + "Timestamp": "2024-05-15T22:46:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c1.medium", + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.116400", - "Timestamp": "2019-10-15T23:40:23.000Z" + "SpotPrice": "0.156000", + "Timestamp": "2024-05-15T22:46:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c1.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.116400", - "Timestamp": "2019-10-15T23:40:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100000", + "Timestamp": "2024-05-15T22:46:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c1.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.016400", - "Timestamp": "2019-10-15T23:40:23.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.599200", + "Timestamp": "2024-05-15T22:42:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c1.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.016400", - "Timestamp": "2019-10-15T23:40:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.599200", + "Timestamp": "2024-05-15T22:42:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.030200", - "Timestamp": "2019-10-15T23:34:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.599200", + "Timestamp": "2024-05-15T22:42:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.270400", - "Timestamp": "2019-10-15T23:33:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.272300", + "Timestamp": "2024-05-15T22:32:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.240400", - "Timestamp": "2019-10-15T23:33:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267300", + "Timestamp": "2024-05-15T22:32:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.140400", - "Timestamp": "2019-10-15T23:33:53.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142300", + "Timestamp": "2024-05-15T22:32:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.262000", - "Timestamp": "2019-10-15T23:33:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077700", + "Timestamp": "2024-05-15T22:32:01.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.232000", - "Timestamp": "2019-10-15T23:33:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074000", + "Timestamp": "2024-05-15T22:32:01.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.132000", - "Timestamp": "2019-10-15T23:33:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017700", + "Timestamp": "2024-05-15T22:32:01.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.396800", - "Timestamp": "2019-10-15T23:33:49.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229100", + "Timestamp": "2024-05-15T22:31:45.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.366800", - "Timestamp": "2019-10-15T23:33:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.240300", + "Timestamp": "2024-05-15T22:31:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.266800", - "Timestamp": "2019-10-15T23:33:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.235300", + "Timestamp": "2024-05-15T22:31:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.155700", - "Timestamp": "2019-10-15T23:26:34.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-15T22:31:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.226200", - "Timestamp": "2019-10-15T23:26:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071500", + "Timestamp": "2024-05-15T22:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.226200", - "Timestamp": "2019-10-15T23:26:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042500", + "Timestamp": "2024-05-15T22:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.226200", - "Timestamp": "2019-10-15T23:26:28.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011500", + "Timestamp": "2024-05-15T22:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.196200", - "Timestamp": "2019-10-15T23:26:28.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.556800", + "Timestamp": "2024-05-15T22:29:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.196200", - "Timestamp": "2019-10-15T23:26:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.448200", + "Timestamp": "2024-05-15T22:17:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.196200", - "Timestamp": "2019-10-15T23:26:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.443200", + "Timestamp": "2024-05-15T22:17:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.096200", - "Timestamp": "2019-10-15T23:26:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.318200", + "Timestamp": "2024-05-15T22:17:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.096200", - "Timestamp": "2019-10-15T23:26:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-15T22:17:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.096200", - "Timestamp": "2019-10-15T23:26:28.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-15T22:17:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.814600", - "Timestamp": "2019-10-15T23:26:06.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-15T22:17:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.145300", - "Timestamp": "2019-10-15T23:25:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049300", + "Timestamp": "2024-05-15T22:17:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.185300", - "Timestamp": "2019-10-15T23:25:52.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116300", + "Timestamp": "2024-05-15T22:17:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.085300", - "Timestamp": "2019-10-15T23:25:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115100", + "Timestamp": "2024-05-15T22:17:01.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.392300", - "Timestamp": "2019-10-15T23:25:35.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235300", + "Timestamp": "2024-05-15T22:16:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.362300", - "Timestamp": "2019-10-15T23:25:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220900", + "Timestamp": "2024-05-15T22:16:45.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.262300", - "Timestamp": "2019-10-15T23:25:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063500", + "Timestamp": "2024-05-15T22:16:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.990400", - "Timestamp": "2019-10-15T23:24:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003500", + "Timestamp": "2024-05-15T22:16:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.990400", - "Timestamp": "2019-10-15T23:24:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003500", + "Timestamp": "2024-05-15T22:16:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.990400", - "Timestamp": "2019-10-15T23:24:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212500", + "Timestamp": "2024-05-15T22:16:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.030200", - "Timestamp": "2019-10-15T23:19:44.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118800", + "Timestamp": "2024-05-15T22:16:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.127800", - "Timestamp": "2019-10-15T23:17:49.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.396300", + "Timestamp": "2024-05-15T22:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.167800", - "Timestamp": "2019-10-15T23:17:49.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070100", + "Timestamp": "2024-05-15T22:02:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.067800", - "Timestamp": "2019-10-15T23:17:49.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041100", + "Timestamp": "2024-05-15T22:02:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.271500", - "Timestamp": "2019-10-15T23:17:47.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010100", + "Timestamp": "2024-05-15T22:02:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.952200", - "Timestamp": "2019-10-15T23:16:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-15T22:01:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.922200", - "Timestamp": "2019-10-15T23:16:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143700", + "Timestamp": "2024-05-15T22:01:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.822200", - "Timestamp": "2019-10-15T23:16:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043700", + "Timestamp": "2024-05-15T22:01:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.264400", - "Timestamp": "2019-10-15T23:09:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.041300", + "Timestamp": "2024-05-15T22:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.125400", - "Timestamp": "2019-10-15T23:08:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.213600", + "Timestamp": "2024-05-15T22:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.165400", - "Timestamp": "2019-10-15T23:08:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183600", + "Timestamp": "2024-05-15T22:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.065400", - "Timestamp": "2019-10-15T23:08:56.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083600", + "Timestamp": "2024-05-15T22:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.253400", - "Timestamp": "2019-10-15T23:08:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074800", + "Timestamp": "2024-05-15T21:47:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.223400", - "Timestamp": "2019-10-15T23:08:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.045800", + "Timestamp": "2024-05-15T21:47:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.123400", - "Timestamp": "2019-10-15T23:08:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014800", + "Timestamp": "2024-05-15T21:47:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.109700", - "Timestamp": "2019-10-15T23:01:14.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121400", + "Timestamp": "2024-05-15T21:47:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.404100", - "Timestamp": "2019-10-15T23:00:07.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161400", + "Timestamp": "2024-05-15T21:47:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.374100", - "Timestamp": "2019-10-15T23:00:07.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061400", + "Timestamp": "2024-05-15T21:47:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.274100", - "Timestamp": "2019-10-15T23:00:07.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.336300", + "Timestamp": "2024-05-15T21:47:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092700", - "Timestamp": "2019-10-15T22:59:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.331300", + "Timestamp": "2024-05-15T21:47:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-15T22:59:57.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.206300", + "Timestamp": "2024-05-15T21:47:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032700", - "Timestamp": "2019-10-15T22:59:57.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061700", + "Timestamp": "2024-05-15T21:47:14.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.997600", - "Timestamp": "2019-10-15T22:57:52.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001700", + "Timestamp": "2024-05-15T21:47:14.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.684600", - "Timestamp": "2019-10-15T22:52:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001700", + "Timestamp": "2024-05-15T21:47:14.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.654600", - "Timestamp": "2019-10-15T22:52:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.239900", + "Timestamp": "2024-05-15T21:47:01.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.554600", - "Timestamp": "2019-10-15T22:52:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.962000", + "Timestamp": "2024-05-15T21:46:59.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124700", - "Timestamp": "2019-10-15T22:52:25.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121700", + "Timestamp": "2024-05-15T21:46:54.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.917600", - "Timestamp": "2019-10-15T22:52:03.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-15T21:46:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.917600", - "Timestamp": "2019-10-15T22:52:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093200", + "Timestamp": "2024-05-15T21:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.917600", - "Timestamp": "2019-10-15T22:52:03.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089500", + "Timestamp": "2024-05-15T21:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124700", - "Timestamp": "2019-10-15T22:48:37.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033200", + "Timestamp": "2024-05-15T21:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124700", - "Timestamp": "2019-10-15T22:48:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-15T21:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124700", - "Timestamp": "2019-10-15T22:48:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-15T21:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.129800", - "Timestamp": "2019-10-15T22:48:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049400", + "Timestamp": "2024-05-15T21:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.169800", - "Timestamp": "2019-10-15T22:48:35.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223800", + "Timestamp": "2024-05-15T21:32:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.069800", - "Timestamp": "2019-10-15T22:48:35.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.041500", + "Timestamp": "2024-05-15T21:32:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.548600", - "Timestamp": "2019-10-15T22:44:11.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069600", + "Timestamp": "2024-05-15T21:32:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.859600", - "Timestamp": "2019-10-15T22:44:05.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065900", + "Timestamp": "2024-05-15T21:32:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.652000", - "Timestamp": "2019-10-15T22:43:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009600", + "Timestamp": "2024-05-15T21:32:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.622000", - "Timestamp": "2019-10-15T22:43:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101400", + "Timestamp": "2024-05-15T21:31:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.522000", - "Timestamp": "2019-10-15T22:43:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097400", + "Timestamp": "2024-05-15T21:31:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.119300", - "Timestamp": "2019-10-15T22:42:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041400", + "Timestamp": "2024-05-15T21:31:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.119300", - "Timestamp": "2019-10-15T22:42:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097000", + "Timestamp": "2024-05-15T21:31:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.159300", - "Timestamp": "2019-10-15T22:42:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093000", + "Timestamp": "2024-05-15T21:31:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.159300", - "Timestamp": "2019-10-15T22:42:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037000", + "Timestamp": "2024-05-15T21:31:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.059300", - "Timestamp": "2019-10-15T22:42:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090800", + "Timestamp": "2024-05-15T21:31:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.059300", - "Timestamp": "2019-10-15T22:42:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130800", + "Timestamp": "2024-05-15T21:31:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.030200", - "Timestamp": "2019-10-15T22:42:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030800", + "Timestamp": "2024-05-15T21:31:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.030200", - "Timestamp": "2019-10-15T22:42:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.178000", + "Timestamp": "2024-05-15T21:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.030200", - "Timestamp": "2019-10-15T22:42:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174000", + "Timestamp": "2024-05-15T21:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.952200", - "Timestamp": "2019-10-15T22:42:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118000", + "Timestamp": "2024-05-15T21:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.952200", - "Timestamp": "2019-10-15T22:42:29.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.062700", + "Timestamp": "2024-05-15T21:17:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.952200", - "Timestamp": "2019-10-15T22:42:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "a1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-15T21:17:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.922200", - "Timestamp": "2019-10-15T22:42:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "a1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-15T21:17:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.922200", - "Timestamp": "2019-10-15T22:42:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "a1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052100", + "Timestamp": "2024-05-15T21:17:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.922200", - "Timestamp": "2019-10-15T22:42:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-15T21:16:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.822200", - "Timestamp": "2019-10-15T22:42:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098700", + "Timestamp": "2024-05-15T21:16:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.822200", - "Timestamp": "2019-10-15T22:42:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094700", + "Timestamp": "2024-05-15T21:16:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.822200", - "Timestamp": "2019-10-15T22:42:29.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038700", + "Timestamp": "2024-05-15T21:16:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.243300", - "Timestamp": "2019-10-15T22:41:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063000", + "Timestamp": "2024-05-15T21:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.243300", - "Timestamp": "2019-10-15T22:41:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003000", + "Timestamp": "2024-05-15T21:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.243300", - "Timestamp": "2019-10-15T22:41:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003000", + "Timestamp": "2024-05-15T21:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.254600", - "Timestamp": "2019-10-15T22:40:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116000", + "Timestamp": "2024-05-15T21:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.254600", - "Timestamp": "2019-10-15T22:40:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.027100", + "Timestamp": "2024-05-15T21:16:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.224600", - "Timestamp": "2019-10-15T22:40:43.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "p2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.274000", + "Timestamp": "2024-05-15T21:11:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.224600", - "Timestamp": "2019-10-15T22:40:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.274000", + "Timestamp": "2024-05-15T21:11:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.124600", - "Timestamp": "2019-10-15T22:40:43.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021700", + "Timestamp": "2024-05-15T21:03:05.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.124600", - "Timestamp": "2019-10-15T22:40:43.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066500", + "Timestamp": "2024-05-15T21:01:59.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.617800", - "Timestamp": "2019-10-15T22:39:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037500", + "Timestamp": "2024-05-15T21:01:59.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.617800", - "Timestamp": "2019-10-15T22:39:27.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006500", + "Timestamp": "2024-05-15T21:01:59.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.617800", - "Timestamp": "2019-10-15T22:39:27.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066600", + "Timestamp": "2024-05-15T21:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.587800", - "Timestamp": "2019-10-15T22:39:27.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.036600", + "Timestamp": "2024-05-15T21:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.587800", - "Timestamp": "2019-10-15T22:39:27.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006600", + "Timestamp": "2024-05-15T21:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.587800", - "Timestamp": "2019-10-15T22:39:27.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061500", + "Timestamp": "2024-05-15T21:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.487800", - "Timestamp": "2019-10-15T22:39:27.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001500", + "Timestamp": "2024-05-15T21:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.487800", - "Timestamp": "2019-10-15T22:39:27.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001500", + "Timestamp": "2024-05-15T21:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.487800", - "Timestamp": "2019-10-15T22:39:27.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116500", + "Timestamp": "2024-05-15T20:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.676900", - "Timestamp": "2019-10-15T22:35:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112500", + "Timestamp": "2024-05-15T20:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.646900", - "Timestamp": "2019-10-15T22:35:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056500", + "Timestamp": "2024-05-15T20:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.546900", - "Timestamp": "2019-10-15T22:35:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070400", + "Timestamp": "2024-05-15T20:32:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.505000", - "Timestamp": "2019-10-15T22:34:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041400", + "Timestamp": "2024-05-15T20:32:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.445000", - "Timestamp": "2019-10-15T22:27:58.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010400", + "Timestamp": "2024-05-15T20:32:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.415000", - "Timestamp": "2019-10-15T22:27:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069200", + "Timestamp": "2024-05-15T20:32:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.315000", - "Timestamp": "2019-10-15T22:27:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065500", + "Timestamp": "2024-05-15T20:32:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.404000", - "Timestamp": "2019-10-15T22:27:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009200", + "Timestamp": "2024-05-15T20:32:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.374000", - "Timestamp": "2019-10-15T22:27:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-15T20:31:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.274000", - "Timestamp": "2019-10-15T22:27:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087200", + "Timestamp": "2024-05-15T20:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.249800", - "Timestamp": "2019-10-15T22:27:32.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083500", + "Timestamp": "2024-05-15T20:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.219800", - "Timestamp": "2019-10-15T22:27:32.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027200", + "Timestamp": "2024-05-15T20:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.119800", - "Timestamp": "2019-10-15T22:27:32.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073200", + "Timestamp": "2024-05-15T20:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.130200", - "Timestamp": "2019-10-15T22:27:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069500", + "Timestamp": "2024-05-15T20:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.100200", - "Timestamp": "2019-10-15T22:27:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013200", + "Timestamp": "2024-05-15T20:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.000200", - "Timestamp": "2019-10-15T22:27:30.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063500", + "Timestamp": "2024-05-15T20:18:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.379500", - "Timestamp": "2019-10-15T22:26:45.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003500", + "Timestamp": "2024-05-15T20:18:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.349500", - "Timestamp": "2019-10-15T22:26:45.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003500", + "Timestamp": "2024-05-15T20:18:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.249500", - "Timestamp": "2019-10-15T22:26:45.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076200", + "Timestamp": "2024-05-15T20:17:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.263000", - "Timestamp": "2019-10-15T22:26:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.072500", + "Timestamp": "2024-05-15T20:17:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.233000", - "Timestamp": "2019-10-15T22:26:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016200", + "Timestamp": "2024-05-15T20:17:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.133000", - "Timestamp": "2019-10-15T22:26:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-15T20:16:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.030200", - "Timestamp": "2019-10-15T22:21:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-15T20:16:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.024000", - "Timestamp": "2019-10-15T22:21:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104700", + "Timestamp": "2024-05-15T20:16:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.024000", - "Timestamp": "2019-10-15T22:21:38.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048400", + "Timestamp": "2024-05-15T20:16:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.105600", - "Timestamp": "2019-10-15T22:19:13.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.416400", + "Timestamp": "2024-05-15T20:11:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.367300", - "Timestamp": "2019-10-15T22:16:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.250300", + "Timestamp": "2024-05-15T20:02:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.337300", - "Timestamp": "2019-10-15T22:16:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.245300", + "Timestamp": "2024-05-15T20:02:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.237300", - "Timestamp": "2019-10-15T22:16:49.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.120300", + "Timestamp": "2024-05-15T20:02:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.973300", - "Timestamp": "2019-10-15T22:15:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.117700", + "Timestamp": "2024-05-15T20:01:49.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.973300", - "Timestamp": "2019-10-15T22:15:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-15T20:01:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.973300", - "Timestamp": "2019-10-15T22:15:34.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-15T20:01:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.650400", - "Timestamp": "2019-10-15T22:10:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042900", + "Timestamp": "2024-05-15T20:01:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.774400", - "Timestamp": "2019-10-15T22:07:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063600", + "Timestamp": "2024-05-15T20:01:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.744400", - "Timestamp": "2019-10-15T22:07:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003600", + "Timestamp": "2024-05-15T20:01:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.644400", - "Timestamp": "2019-10-15T22:07:32.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003600", + "Timestamp": "2024-05-15T20:01:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.255200", - "Timestamp": "2019-10-15T22:05:54.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.175900", + "Timestamp": "2024-05-15T20:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.273200", - "Timestamp": "2019-10-15T22:05:52.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.215900", + "Timestamp": "2024-05-15T20:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.243200", - "Timestamp": "2019-10-15T22:05:52.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115900", + "Timestamp": "2024-05-15T20:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.143200", - "Timestamp": "2019-10-15T22:05:52.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093300", + "Timestamp": "2024-05-15T20:01:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.740500", - "Timestamp": "2019-10-15T22:05:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089600", + "Timestamp": "2024-05-15T20:01:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.740500", - "Timestamp": "2019-10-15T22:05:09.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033300", + "Timestamp": "2024-05-15T20:01:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.710500", - "Timestamp": "2019-10-15T22:05:09.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-15T19:47:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.710500", - "Timestamp": "2019-10-15T22:05:09.000Z" + "SpotPrice": "0.101100", + "Timestamp": "2024-05-15T19:47:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6in.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.610500", - "Timestamp": "2019-10-15T22:05:09.000Z" + "SpotPrice": "0.044800", + "Timestamp": "2024-05-15T19:47:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.610500", - "Timestamp": "2019-10-15T22:05:09.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136100", + "Timestamp": "2024-05-15T19:46:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.912500", - "Timestamp": "2019-10-15T22:04:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132400", + "Timestamp": "2024-05-15T19:46:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.912500", - "Timestamp": "2019-10-15T22:04:52.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076100", + "Timestamp": "2024-05-15T19:46:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.997600", - "Timestamp": "2019-10-15T22:03:13.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.524800", + "Timestamp": "2024-05-15T19:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.997600", - "Timestamp": "2019-10-15T22:03:13.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.519800", + "Timestamp": "2024-05-15T19:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.997600", - "Timestamp": "2019-10-15T22:03:13.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.394800", + "Timestamp": "2024-05-15T19:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.985600", - "Timestamp": "2019-10-15T22:03:12.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090100", + "Timestamp": "2024-05-15T19:17:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "8.747200", - "Timestamp": "2019-10-15T22:02:55.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086400", + "Timestamp": "2024-05-15T19:17:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "8.747200", - "Timestamp": "2019-10-15T22:02:55.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030100", + "Timestamp": "2024-05-15T19:17:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "5.933200", - "Timestamp": "2019-10-15T22:02:41.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069400", + "Timestamp": "2024-05-15T19:17:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "5.933200", - "Timestamp": "2019-10-15T22:02:41.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040400", + "Timestamp": "2024-05-15T19:17:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "5.903200", - "Timestamp": "2019-10-15T22:02:41.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009400", + "Timestamp": "2024-05-15T19:17:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "5.903200", - "Timestamp": "2019-10-15T22:02:41.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218200", + "Timestamp": "2024-05-15T19:17:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "5.803200", - "Timestamp": "2019-10-15T22:02:41.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061800", + "Timestamp": "2024-05-15T19:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "5.803200", - "Timestamp": "2019-10-15T22:02:41.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001800", + "Timestamp": "2024-05-15T19:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.large", + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001800", + "Timestamp": "2024-05-15T19:16:39.000Z" + }, + { + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.155700", - "Timestamp": "2019-10-15T22:02:19.000Z" + "SpotPrice": "0.233400", + "Timestamp": "2024-05-15T19:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.740500", - "Timestamp": "2019-10-15T22:01:46.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.700000", + "Timestamp": "2024-05-15T19:14:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.740500", - "Timestamp": "2019-10-15T22:01:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.700000", + "Timestamp": "2024-05-15T19:14:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.710500", - "Timestamp": "2019-10-15T22:01:46.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005400", + "Timestamp": "2024-05-15T19:10:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.710500", - "Timestamp": "2019-10-15T22:01:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092400", + "Timestamp": "2024-05-15T19:02:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.610500", - "Timestamp": "2019-10-15T22:01:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088700", + "Timestamp": "2024-05-15T19:02:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.610500", - "Timestamp": "2019-10-15T22:01:46.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032400", + "Timestamp": "2024-05-15T19:02:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.116100", - "Timestamp": "2019-10-15T22:00:15.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.945200", + "Timestamp": "2024-05-15T19:01:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.116100", - "Timestamp": "2019-10-15T22:00:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.689600", + "Timestamp": "2024-05-15T19:00:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.116100", - "Timestamp": "2019-10-15T22:00:15.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.689600", + "Timestamp": "2024-05-15T19:00:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.156100", - "Timestamp": "2019-10-15T22:00:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.689600", + "Timestamp": "2024-05-15T19:00:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.156100", - "Timestamp": "2019-10-15T22:00:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.645400", + "Timestamp": "2024-05-15T18:48:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.156100", - "Timestamp": "2019-10-15T22:00:15.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.645400", + "Timestamp": "2024-05-15T18:48:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.056100", - "Timestamp": "2019-10-15T22:00:15.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.645400", + "Timestamp": "2024-05-15T18:48:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.056100", - "Timestamp": "2019-10-15T22:00:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-15T18:47:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.056100", - "Timestamp": "2019-10-15T22:00:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.904500", + "Timestamp": "2024-05-15T18:47:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "4.032400", - "Timestamp": "2019-10-15T22:00:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108800", + "Timestamp": "2024-05-15T18:47:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "4.032400", - "Timestamp": "2019-10-15T22:00:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073800", + "Timestamp": "2024-05-15T18:47:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "4.032400", - "Timestamp": "2019-10-15T22:00:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044800", + "Timestamp": "2024-05-15T18:47:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "4.002400", - "Timestamp": "2019-10-15T22:00:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013800", + "Timestamp": "2024-05-15T18:47:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "4.002400", - "Timestamp": "2019-10-15T22:00:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-15T18:47:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "4.002400", - "Timestamp": "2019-10-15T22:00:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094900", + "Timestamp": "2024-05-15T18:32:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.902400", - "Timestamp": "2019-10-15T22:00:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091200", + "Timestamp": "2024-05-15T18:32:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.902400", - "Timestamp": "2019-10-15T22:00:06.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034900", + "Timestamp": "2024-05-15T18:32:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.902400", - "Timestamp": "2019-10-15T22:00:06.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088800", + "Timestamp": "2024-05-15T18:32:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "8.318400", - "Timestamp": "2019-10-15T21:59:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085100", + "Timestamp": "2024-05-15T18:32:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "8.318400", - "Timestamp": "2019-10-15T21:59:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028800", + "Timestamp": "2024-05-15T18:32:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "8.318400", - "Timestamp": "2019-10-15T21:59:30.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115500", + "Timestamp": "2024-05-15T18:32:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.148100", - "Timestamp": "2019-10-15T21:59:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062500", + "Timestamp": "2024-05-15T18:31:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.148100", - "Timestamp": "2019-10-15T21:59:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-15T18:31:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.148100", - "Timestamp": "2019-10-15T21:59:15.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-15T18:31:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.202200", - "Timestamp": "2019-10-15T21:57:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "a1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067700", + "Timestamp": "2024-05-15T18:17:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.202200", - "Timestamp": "2019-10-15T21:57:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "a1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038700", + "Timestamp": "2024-05-15T18:17:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.202200", - "Timestamp": "2019-10-15T21:57:53.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "a1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007700", + "Timestamp": "2024-05-15T18:17:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.121700", - "Timestamp": "2019-10-15T21:57:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214600", + "Timestamp": "2024-05-15T18:16:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.121700", - "Timestamp": "2019-10-15T21:57:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.287100", + "Timestamp": "2024-05-15T18:16:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.121700", - "Timestamp": "2019-10-15T21:57:51.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.282100", + "Timestamp": "2024-05-15T18:16:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.040200", - "Timestamp": "2019-10-15T21:57:37.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157100", + "Timestamp": "2024-05-15T18:16:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.040200", - "Timestamp": "2019-10-15T21:57:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062100", + "Timestamp": "2024-05-15T18:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.040200", - "Timestamp": "2019-10-15T21:57:37.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002100", + "Timestamp": "2024-05-15T18:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.270200", - "Timestamp": "2019-10-15T21:57:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002100", + "Timestamp": "2024-05-15T18:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.270200", - "Timestamp": "2019-10-15T21:57:02.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071800", + "Timestamp": "2024-05-15T18:01:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.270200", - "Timestamp": "2019-10-15T21:57:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073100", + "Timestamp": "2024-05-15T18:01:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.240200", - "Timestamp": "2019-10-15T21:57:02.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068100", + "Timestamp": "2024-05-15T18:01:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.240200", - "Timestamp": "2019-10-15T21:57:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069400", + "Timestamp": "2024-05-15T18:01:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.240200", - "Timestamp": "2019-10-15T21:57:02.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011800", + "Timestamp": "2024-05-15T18:01:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.140200", - "Timestamp": "2019-10-15T21:57:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013100", + "Timestamp": "2024-05-15T18:01:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.140200", - "Timestamp": "2019-10-15T21:57:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "a1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067900", + "Timestamp": "2024-05-15T18:01:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.140200", - "Timestamp": "2019-10-15T21:57:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "a1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038900", + "Timestamp": "2024-05-15T18:01:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.575100", - "Timestamp": "2019-10-15T21:57:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "a1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007900", + "Timestamp": "2024-05-15T18:01:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.545100", - "Timestamp": "2019-10-15T21:57:01.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.139200", + "Timestamp": "2024-05-15T18:00:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.445100", - "Timestamp": "2019-10-15T21:57:01.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.139200", + "Timestamp": "2024-05-15T18:00:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.089800", - "Timestamp": "2019-10-15T21:54:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.822700", + "Timestamp": "2024-05-15T17:59:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.089700", - "Timestamp": "2019-10-15T21:54:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.822700", + "Timestamp": "2024-05-15T17:59:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.129800", - "Timestamp": "2019-10-15T21:54:50.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.277800", + "Timestamp": "2024-05-15T17:55:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.129700", - "Timestamp": "2019-10-15T21:54:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.277800", + "Timestamp": "2024-05-15T17:55:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.029800", - "Timestamp": "2019-10-15T21:54:50.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.400000", + "Timestamp": "2024-05-15T17:54:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.029700", - "Timestamp": "2019-10-15T21:54:50.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.400000", + "Timestamp": "2024-05-15T17:54:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.689200", - "Timestamp": "2019-10-15T21:52:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-15T17:46:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.659200", - "Timestamp": "2019-10-15T21:52:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089600", + "Timestamp": "2024-05-15T17:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.559200", - "Timestamp": "2019-10-15T21:52:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085900", + "Timestamp": "2024-05-15T17:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.655500", - "Timestamp": "2019-10-15T21:52:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029600", + "Timestamp": "2024-05-15T17:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.625500", - "Timestamp": "2019-10-15T21:52:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.555600", + "Timestamp": "2024-05-15T17:44:54.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.525500", - "Timestamp": "2019-10-15T21:52:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.555600", + "Timestamp": "2024-05-15T17:44:54.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.433200", - "Timestamp": "2019-10-15T21:45:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.416700", + "Timestamp": "2024-05-15T17:44:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.433200", - "Timestamp": "2019-10-15T21:45:51.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.416700", + "Timestamp": "2024-05-15T17:44:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.433200", - "Timestamp": "2019-10-15T21:45:51.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.413800", + "Timestamp": "2024-05-15T17:32:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.251200", - "Timestamp": "2019-10-15T21:45:39.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005300", + "Timestamp": "2024-05-15T17:21:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.251200", - "Timestamp": "2019-10-15T21:45:39.000Z" - }, - { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.251200", - "Timestamp": "2019-10-15T21:45:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.006200", + "Timestamp": "2024-05-15T17:17:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.221200", - "Timestamp": "2019-10-15T21:45:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.048200", + "Timestamp": "2024-05-15T17:16:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.221200", - "Timestamp": "2019-10-15T21:45:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.630200", + "Timestamp": "2024-05-15T17:16:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.221200", - "Timestamp": "2019-10-15T21:45:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.625200", + "Timestamp": "2024-05-15T17:16:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.121200", - "Timestamp": "2019-10-15T21:45:39.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.500200", + "Timestamp": "2024-05-15T17:16:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.121200", - "Timestamp": "2019-10-15T21:45:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-15T17:02:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.121200", - "Timestamp": "2019-10-15T21:45:39.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099500", + "Timestamp": "2024-05-15T17:02:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.093400", - "Timestamp": "2019-10-15T21:45:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043500", + "Timestamp": "2024-05-15T17:02:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.093400", - "Timestamp": "2019-10-15T21:45:31.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-15T17:01:50.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "7.169100", - "Timestamp": "2019-10-15T21:43:54.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066700", + "Timestamp": "2024-05-15T17:01:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.774400", - "Timestamp": "2019-10-15T21:42:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038000", + "Timestamp": "2024-05-15T17:01:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.774400", - "Timestamp": "2019-10-15T21:42:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006700", + "Timestamp": "2024-05-15T17:01:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.774400", - "Timestamp": "2019-10-15T21:42:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.012500", + "Timestamp": "2024-05-15T16:59:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.744400", - "Timestamp": "2019-10-15T21:42:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116100", + "Timestamp": "2024-05-15T16:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.744400", - "Timestamp": "2019-10-15T21:42:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-15T16:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.744400", - "Timestamp": "2019-10-15T21:42:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056100", + "Timestamp": "2024-05-15T16:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.644400", - "Timestamp": "2019-10-15T21:42:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061800", + "Timestamp": "2024-05-15T16:46:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.644400", - "Timestamp": "2019-10-15T21:42:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001800", + "Timestamp": "2024-05-15T16:46:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.644400", - "Timestamp": "2019-10-15T21:42:59.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001800", + "Timestamp": "2024-05-15T16:46:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5d.large", "ProductDescription": "Windows", - "SpotPrice": "0.576300", - "Timestamp": "2019-10-15T21:42:58.000Z" + "SpotPrice": "0.109700", + "Timestamp": "2024-05-15T16:32:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.576300", - "Timestamp": "2019-10-15T21:42:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072700", + "Timestamp": "2024-05-15T16:02:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.576300", - "Timestamp": "2019-10-15T21:42:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069000", + "Timestamp": "2024-05-15T16:02:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.576300", - "Timestamp": "2019-10-15T21:42:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012700", + "Timestamp": "2024-05-15T16:02:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.249400", - "Timestamp": "2019-10-15T21:42:16.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.040500", + "Timestamp": "2024-05-15T16:02:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.249400", - "Timestamp": "2019-10-15T21:42:16.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088500", + "Timestamp": "2024-05-15T16:01:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.249400", - "Timestamp": "2019-10-15T21:42:16.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084800", + "Timestamp": "2024-05-15T16:01:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.060400", - "Timestamp": "2019-10-15T21:41:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028500", + "Timestamp": "2024-05-15T16:01:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.060400", - "Timestamp": "2019-10-15T21:41:55.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.025000", + "Timestamp": "2024-05-15T16:01:14.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.060400", - "Timestamp": "2019-10-15T21:41:55.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.138900", + "Timestamp": "2024-05-15T15:57:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.914800", - "Timestamp": "2019-10-15T21:41:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067300", + "Timestamp": "2024-05-15T15:47:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.914800", - "Timestamp": "2019-10-15T21:41:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037300", + "Timestamp": "2024-05-15T15:47:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.914800", - "Timestamp": "2019-10-15T21:41:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007300", + "Timestamp": "2024-05-15T15:47:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.884800", - "Timestamp": "2019-10-15T21:41:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-15T15:46:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.884800", - "Timestamp": "2019-10-15T21:41:20.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.379200", + "Timestamp": "2024-05-15T15:46:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.884800", - "Timestamp": "2019-10-15T21:41:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.379200", + "Timestamp": "2024-05-15T15:46:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.784800", - "Timestamp": "2019-10-15T21:41:20.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.379200", + "Timestamp": "2024-05-15T15:46:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.784800", - "Timestamp": "2019-10-15T21:41:20.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.775200", + "Timestamp": "2024-05-15T15:46:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.784800", - "Timestamp": "2019-10-15T21:41:20.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.775200", + "Timestamp": "2024-05-15T15:46:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.992800", - "Timestamp": "2019-10-15T21:40:59.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.775200", + "Timestamp": "2024-05-15T15:46:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.992800", - "Timestamp": "2019-10-15T21:40:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.610900", + "Timestamp": "2024-05-15T15:41:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.992800", - "Timestamp": "2019-10-15T21:40:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.069500", + "Timestamp": "2024-05-15T15:40:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.254300", - "Timestamp": "2019-10-15T21:40:47.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.443200", + "Timestamp": "2024-05-15T15:39:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.254300", - "Timestamp": "2019-10-15T21:40:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.443200", + "Timestamp": "2024-05-15T15:39:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.224300", - "Timestamp": "2019-10-15T21:40:47.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.443200", + "Timestamp": "2024-05-15T15:39:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.224300", - "Timestamp": "2019-10-15T21:40:47.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.443200", + "Timestamp": "2024-05-15T15:38:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.124300", - "Timestamp": "2019-10-15T21:40:47.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.443200", + "Timestamp": "2024-05-15T15:38:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.124300", - "Timestamp": "2019-10-15T21:40:47.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.443200", + "Timestamp": "2024-05-15T15:38:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.455400", - "Timestamp": "2019-10-15T21:39:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.230400", + "Timestamp": "2024-05-15T15:35:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.425400", - "Timestamp": "2019-10-15T21:39:48.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.230400", + "Timestamp": "2024-05-15T15:35:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.325400", - "Timestamp": "2019-10-15T21:39:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.230400", + "Timestamp": "2024-05-15T15:35:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.366600", - "Timestamp": "2019-10-15T21:39:42.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.353600", + "Timestamp": "2024-05-15T15:35:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.336600", - "Timestamp": "2019-10-15T21:39:42.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.353600", + "Timestamp": "2024-05-15T15:35:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.236600", - "Timestamp": "2019-10-15T21:39:42.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.353600", + "Timestamp": "2024-05-15T15:35:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.413600", - "Timestamp": "2019-10-15T21:39:40.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.716800", + "Timestamp": "2024-05-15T15:34:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.383600", - "Timestamp": "2019-10-15T21:39:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.716800", + "Timestamp": "2024-05-15T15:34:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.283600", - "Timestamp": "2019-10-15T21:39:40.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092300", + "Timestamp": "2024-05-15T15:31:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.754200", - "Timestamp": "2019-10-15T21:39:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088300", + "Timestamp": "2024-05-15T15:31:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m4.10xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.724200", - "Timestamp": "2019-10-15T21:39:33.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032300", + "Timestamp": "2024-05-15T15:31:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.624200", - "Timestamp": "2019-10-15T21:39:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.055800", + "Timestamp": "2024-05-15T15:17:10.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.026300", - "Timestamp": "2019-10-15T21:39:22.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.267400", + "Timestamp": "2024-05-15T15:16:00.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.026300", - "Timestamp": "2019-10-15T21:39:22.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088400", + "Timestamp": "2024-05-15T15:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.026300", - "Timestamp": "2019-10-15T21:39:22.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084700", + "Timestamp": "2024-05-15T15:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.259000", - "Timestamp": "2019-10-15T21:39:05.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028400", + "Timestamp": "2024-05-15T15:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.229000", - "Timestamp": "2019-10-15T21:39:05.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101500", + "Timestamp": "2024-05-15T15:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.129000", - "Timestamp": "2019-10-15T21:39:05.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-15T15:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.067900", - "Timestamp": "2019-10-15T21:38:13.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041500", + "Timestamp": "2024-05-15T15:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.067900", - "Timestamp": "2019-10-15T21:38:13.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066600", + "Timestamp": "2024-05-15T15:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.067900", - "Timestamp": "2019-10-15T21:38:13.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037600", + "Timestamp": "2024-05-15T15:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.107900", - "Timestamp": "2019-10-15T21:38:13.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006600", + "Timestamp": "2024-05-15T15:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.107900", - "Timestamp": "2019-10-15T21:38:13.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067200", + "Timestamp": "2024-05-15T14:46:53.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.107900", - "Timestamp": "2019-10-15T21:38:13.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037200", + "Timestamp": "2024-05-15T14:46:53.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.007900", - "Timestamp": "2019-10-15T21:38:13.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007200", + "Timestamp": "2024-05-15T14:46:53.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.007900", - "Timestamp": "2019-10-15T21:38:13.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062600", + "Timestamp": "2024-05-15T14:46:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.007900", - "Timestamp": "2019-10-15T21:38:13.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-15T14:46:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.216600", - "Timestamp": "2019-10-15T21:37:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-15T14:46:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.216600", - "Timestamp": "2019-10-15T21:37:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089400", + "Timestamp": "2024-05-15T14:17:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.216600", - "Timestamp": "2019-10-15T21:37:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085700", + "Timestamp": "2024-05-15T14:17:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.952200", - "Timestamp": "2019-10-15T21:36:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029400", + "Timestamp": "2024-05-15T14:17:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.922200", - "Timestamp": "2019-10-15T21:36:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.460800", + "Timestamp": "2024-05-15T14:03:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.822200", - "Timestamp": "2019-10-15T21:36:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.460800", + "Timestamp": "2024-05-15T14:03:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.952200", - "Timestamp": "2019-10-15T21:36:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.460800", + "Timestamp": "2024-05-15T14:03:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.946000", - "Timestamp": "2019-10-15T21:36:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130100", + "Timestamp": "2024-05-15T14:01:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.946000", - "Timestamp": "2019-10-15T21:36:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126400", + "Timestamp": "2024-05-15T14:01:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.922200", - "Timestamp": "2019-10-15T21:36:02.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070100", + "Timestamp": "2024-05-15T14:01:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.916000", - "Timestamp": "2019-10-15T21:36:02.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.221800", + "Timestamp": "2024-05-15T14:00:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.916000", - "Timestamp": "2019-10-15T21:36:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.221800", + "Timestamp": "2024-05-15T14:00:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.822200", - "Timestamp": "2019-10-15T21:36:02.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.454900", + "Timestamp": "2024-05-15T13:47:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.816000", - "Timestamp": "2019-10-15T21:36:02.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.426200", + "Timestamp": "2024-05-15T13:46:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.816000", - "Timestamp": "2019-10-15T21:36:02.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070500", + "Timestamp": "2024-05-15T13:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.855400", - "Timestamp": "2019-10-15T21:35:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041500", + "Timestamp": "2024-05-15T13:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.855400", - "Timestamp": "2019-10-15T21:35:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010500", + "Timestamp": "2024-05-15T13:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.825400", - "Timestamp": "2019-10-15T21:35:31.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.122300", + "Timestamp": "2024-05-15T13:16:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.825400", - "Timestamp": "2019-10-15T21:35:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089000", + "Timestamp": "2024-05-15T13:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.725400", - "Timestamp": "2019-10-15T21:35:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085300", + "Timestamp": "2024-05-15T13:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.725400", - "Timestamp": "2019-10-15T21:35:31.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029000", + "Timestamp": "2024-05-15T13:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.462400", - "Timestamp": "2019-10-15T21:35:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.238900", + "Timestamp": "2024-05-15T13:16:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.462400", - "Timestamp": "2019-10-15T21:35:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.233900", + "Timestamp": "2024-05-15T13:16:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.462400", - "Timestamp": "2019-10-15T21:35:19.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108900", + "Timestamp": "2024-05-15T13:16:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.large", + "AvailabilityZone": "us-east-2c", + "InstanceType": "t3.medium", "ProductDescription": "Windows", - "SpotPrice": "0.155700", - "Timestamp": "2019-10-15T21:35:18.000Z" + "SpotPrice": "0.025300", + "Timestamp": "2024-05-15T13:02:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.690600", - "Timestamp": "2019-10-15T21:35:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087200", + "Timestamp": "2024-05-15T13:01:54.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.660600", - "Timestamp": "2019-10-15T21:35:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083500", + "Timestamp": "2024-05-15T13:01:54.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.560600", - "Timestamp": "2019-10-15T21:35:08.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "r7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027200", + "Timestamp": "2024-05-15T13:01:54.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.176400", - "Timestamp": "2019-10-15T21:33:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070800", + "Timestamp": "2024-05-15T12:47:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.176400", - "Timestamp": "2019-10-15T21:33:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067100", + "Timestamp": "2024-05-15T12:47:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.176400", - "Timestamp": "2019-10-15T21:33:33.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010800", + "Timestamp": "2024-05-15T12:47:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.146400", - "Timestamp": "2019-10-15T21:33:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090200", + "Timestamp": "2024-05-15T12:47:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.146400", - "Timestamp": "2019-10-15T21:33:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086500", + "Timestamp": "2024-05-15T12:47:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.146400", - "Timestamp": "2019-10-15T21:33:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c7gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030200", + "Timestamp": "2024-05-15T12:47:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.046400", - "Timestamp": "2019-10-15T21:33:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062600", + "Timestamp": "2024-05-15T12:46:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.046400", - "Timestamp": "2019-10-15T21:33:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-15T12:46:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.046400", - "Timestamp": "2019-10-15T21:33:33.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-15T12:46:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.477700", - "Timestamp": "2019-10-15T21:31:24.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112300", + "Timestamp": "2024-05-15T12:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.447700", - "Timestamp": "2019-10-15T21:31:24.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005300", + "Timestamp": "2024-05-15T12:17:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.347700", - "Timestamp": "2019-10-15T21:31:24.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096300", + "Timestamp": "2024-05-15T12:16:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.278600", - "Timestamp": "2019-10-15T21:30:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-15T12:16:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.248600", - "Timestamp": "2019-10-15T21:30:48.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036300", + "Timestamp": "2024-05-15T12:16:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.148600", - "Timestamp": "2019-10-15T21:30:48.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "h1.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.593300", + "Timestamp": "2024-05-15T12:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.079600", - "Timestamp": "2019-10-15T21:25:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092100", + "Timestamp": "2024-05-15T12:02:05.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.079600", - "Timestamp": "2019-10-15T21:25:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-15T12:02:05.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.079600", - "Timestamp": "2019-10-15T21:25:59.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032100", + "Timestamp": "2024-05-15T12:02:05.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.174000", - "Timestamp": "2019-10-15T21:25:36.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-15T12:01:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.174000", - "Timestamp": "2019-10-15T21:25:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-15T12:01:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.144000", - "Timestamp": "2019-10-15T21:25:36.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-15T11:47:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.144000", - "Timestamp": "2019-10-15T21:25:36.000Z" + "SpotPrice": "0.105800", + "Timestamp": "2024-05-15T11:47:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "us-east-2c", + "InstanceType": "r6i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.044000", - "Timestamp": "2019-10-15T21:25:36.000Z" + "SpotPrice": "0.049500", + "Timestamp": "2024-05-15T11:47:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.044000", - "Timestamp": "2019-10-15T21:25:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111700", + "Timestamp": "2024-05-15T11:47:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.346000", - "Timestamp": "2019-10-15T21:25:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078600", + "Timestamp": "2024-05-15T11:47:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.346000", - "Timestamp": "2019-10-15T21:25:36.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074900", + "Timestamp": "2024-05-15T11:47:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.288200", - "Timestamp": "2019-10-15T21:25:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "m7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018600", + "Timestamp": "2024-05-15T11:47:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.258200", - "Timestamp": "2019-10-15T21:25:23.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-15T11:32:01.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.158200", - "Timestamp": "2019-10-15T21:25:23.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076800", + "Timestamp": "2024-05-15T11:31:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.431200", - "Timestamp": "2019-10-15T21:25:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116800", + "Timestamp": "2024-05-15T11:31:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.401200", - "Timestamp": "2019-10-15T21:25:04.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016800", + "Timestamp": "2024-05-15T11:31:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.301200", - "Timestamp": "2019-10-15T21:25:04.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073600", + "Timestamp": "2024-05-15T11:29:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.251200", - "Timestamp": "2019-10-15T21:24:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073500", + "Timestamp": "2024-05-15T11:29:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.251200", - "Timestamp": "2019-10-15T21:24:58.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069900", + "Timestamp": "2024-05-15T11:29:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.221200", - "Timestamp": "2019-10-15T21:24:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069800", + "Timestamp": "2024-05-15T11:29:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.221200", - "Timestamp": "2019-10-15T21:24:58.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013600", + "Timestamp": "2024-05-15T11:29:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.121200", - "Timestamp": "2019-10-15T21:24:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013500", + "Timestamp": "2024-05-15T11:29:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.121200", - "Timestamp": "2019-10-15T21:24:58.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062900", + "Timestamp": "2024-05-15T11:17:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.174000", - "Timestamp": "2019-10-15T21:24:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002900", + "Timestamp": "2024-05-15T11:17:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.174000", - "Timestamp": "2019-10-15T21:24:10.000Z" + "AvailabilityZone": "us-east-2a", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002900", + "Timestamp": "2024-05-15T11:17:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.174000", - "Timestamp": "2019-10-15T21:24:10.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "m5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-15T11:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.144000", - "Timestamp": "2019-10-15T21:24:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-15T11:16:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.144000", - "Timestamp": "2019-10-15T21:24:10.000Z" + "AvailabilityZone": "us-east-2b", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021400", + "Timestamp": "2024-05-15T11:16:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.144000", - "Timestamp": "2019-10-15T21:24:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.088000", + "Timestamp": "2024-05-13T01:16:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.044000", - "Timestamp": "2019-10-15T21:24:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.586600", + "Timestamp": "2024-05-12T20:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.044000", - "Timestamp": "2019-10-15T21:24:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.581600", + "Timestamp": "2024-05-12T20:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.044000", - "Timestamp": "2019-10-15T21:24:10.000Z" + "AvailabilityZone": "us-east-2c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.456600", + "Timestamp": "2024-05-12T20:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.433200", - "Timestamp": "2019-10-15T21:23:48.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.541000", + "Timestamp": "2024-05-16T14:02:15.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.433200", - "Timestamp": "2019-10-15T21:23:48.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.512900", + "Timestamp": "2024-05-16T14:02:04.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.699600", - "Timestamp": "2019-10-15T21:23:46.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.482900", + "Timestamp": "2024-05-16T14:02:04.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.699600", - "Timestamp": "2019-10-15T21:23:46.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.382900", + "Timestamp": "2024-05-16T14:02:04.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.699600", - "Timestamp": "2019-10-15T21:23:46.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184500", + "Timestamp": "2024-05-16T14:02:04.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.669600", - "Timestamp": "2019-10-15T21:23:46.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180500", + "Timestamp": "2024-05-16T14:02:04.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.669600", - "Timestamp": "2019-10-15T21:23:46.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124500", + "Timestamp": "2024-05-16T14:02:04.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.669600", - "Timestamp": "2019-10-15T21:23:46.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.925900", + "Timestamp": "2024-05-16T14:02:03.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.569600", - "Timestamp": "2019-10-15T21:23:46.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.734700", + "Timestamp": "2024-05-16T14:02:02.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.569600", - "Timestamp": "2019-10-15T21:23:46.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.699700", + "Timestamp": "2024-05-16T14:01:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.569600", - "Timestamp": "2019-10-15T21:23:46.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.081400", + "Timestamp": "2024-05-16T14:01:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.346000", - "Timestamp": "2019-10-15T21:23:36.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.045800", + "Timestamp": "2024-05-16T14:01:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.346000", - "Timestamp": "2019-10-15T21:23:36.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.145000", + "Timestamp": "2024-05-16T14:01:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.346000", - "Timestamp": "2019-10-15T21:23:36.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.140000", + "Timestamp": "2024-05-16T14:01:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.492600", - "Timestamp": "2019-10-15T21:22:48.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.015000", + "Timestamp": "2024-05-16T14:01:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.492600", - "Timestamp": "2019-10-15T21:22:48.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.137500", + "Timestamp": "2024-05-16T14:01:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.492600", - "Timestamp": "2019-10-15T21:22:48.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.132500", + "Timestamp": "2024-05-16T14:01:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.985600", - "Timestamp": "2019-10-15T21:22:28.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.007500", + "Timestamp": "2024-05-16T14:01:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.985600", - "Timestamp": "2019-10-15T21:22:28.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T14:01:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.985600", - "Timestamp": "2019-10-15T21:22:28.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-16T14:01:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.369600", - "Timestamp": "2019-10-15T21:20:42.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049800", + "Timestamp": "2024-05-16T14:01:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.369600", - "Timestamp": "2019-10-15T21:20:42.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.851900", + "Timestamp": "2024-05-16T14:01:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.369600", - "Timestamp": "2019-10-15T21:20:42.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.776700", + "Timestamp": "2024-05-16T14:01:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.195500", - "Timestamp": "2019-10-15T21:20:37.000Z" - }, - { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.195500", - "Timestamp": "2019-10-15T21:20:37.000Z" - }, - { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c1.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.165500", - "Timestamp": "2019-10-15T21:20:37.000Z" - }, - { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c1.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.165500", - "Timestamp": "2019-10-15T21:20:37.000Z" - }, - { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c1.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065500", - "Timestamp": "2019-10-15T21:20:37.000Z" - }, - { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c1.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065500", - "Timestamp": "2019-10-15T21:20:37.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105300", + "Timestamp": "2024-05-16T14:01:50.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.195500", - "Timestamp": "2019-10-15T21:20:37.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431200", + "Timestamp": "2024-05-16T14:01:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.195500", - "Timestamp": "2019-10-15T21:20:37.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.857200", + "Timestamp": "2024-05-16T14:01:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c1.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.165500", - "Timestamp": "2019-10-15T21:20:37.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.789600", + "Timestamp": "2024-05-16T14:01:45.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c1.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.165500", - "Timestamp": "2019-10-15T21:20:37.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.435000", + "Timestamp": "2024-05-16T14:01:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c1.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.065500", - "Timestamp": "2019-10-15T21:20:37.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.384300", + "Timestamp": "2024-05-16T14:01:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c1.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.065500", - "Timestamp": "2019-10-15T21:20:37.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.232500", + "Timestamp": "2024-05-16T14:01:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c1.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.475500", - "Timestamp": "2019-10-15T21:20:37.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.710300", + "Timestamp": "2024-05-16T14:01:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c1.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.475500", - "Timestamp": "2019-10-15T21:20:37.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.705300", + "Timestamp": "2024-05-16T14:01:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c1.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.475500", - "Timestamp": "2019-10-15T21:20:37.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.580300", + "Timestamp": "2024-05-16T14:01:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.475500", - "Timestamp": "2019-10-15T21:20:37.000Z" + "SpotPrice": "0.910700", + "Timestamp": "2024-05-16T14:01:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.010100", - "Timestamp": "2019-10-15T21:20:31.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.995400", + "Timestamp": "2024-05-16T14:01:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.010100", - "Timestamp": "2019-10-15T21:20:31.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.990400", + "Timestamp": "2024-05-16T14:01:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.010100", - "Timestamp": "2019-10-15T21:20:31.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.865400", + "Timestamp": "2024-05-16T14:01:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.638200", - "Timestamp": "2019-10-15T21:20:17.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.283300", + "Timestamp": "2024-05-16T14:01:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.638200", - "Timestamp": "2019-10-15T21:20:17.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.369800", + "Timestamp": "2024-05-16T14:01:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.997600", - "Timestamp": "2019-10-15T21:20:09.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.278300", + "Timestamp": "2024-05-16T14:01:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.330000", - "Timestamp": "2019-10-15T21:20:05.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.364800", + "Timestamp": "2024-05-16T14:01:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.330000", - "Timestamp": "2019-10-15T21:20:05.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.153300", + "Timestamp": "2024-05-16T14:01:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "g2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.300000", - "Timestamp": "2019-10-15T21:20:05.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.239800", + "Timestamp": "2024-05-16T14:01:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.300000", - "Timestamp": "2019-10-15T21:20:05.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.483200", + "Timestamp": "2024-05-16T14:01:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.200000", - "Timestamp": "2019-10-15T21:20:05.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.478200", + "Timestamp": "2024-05-16T14:01:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.200000", - "Timestamp": "2019-10-15T21:20:05.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.353200", + "Timestamp": "2024-05-16T14:01:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.478000", - "Timestamp": "2019-10-15T21:20:04.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.896800", + "Timestamp": "2024-05-16T14:01:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.478000", - "Timestamp": "2019-10-15T21:20:04.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.976300", + "Timestamp": "2024-05-16T14:01:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.478000", - "Timestamp": "2019-10-15T21:20:04.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.971300", + "Timestamp": "2024-05-16T14:01:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.478000", - "Timestamp": "2019-10-15T21:20:04.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.846300", + "Timestamp": "2024-05-16T14:01:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.330000", - "Timestamp": "2019-10-15T21:20:04.000Z" + "SpotPrice": "1.213000", + "Timestamp": "2024-05-16T14:01:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.330000", - "Timestamp": "2019-10-15T21:20:04.000Z" + "SpotPrice": "1.264900", + "Timestamp": "2024-05-16T14:01:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.300000", - "Timestamp": "2019-10-15T21:20:04.000Z" + "SpotPrice": "1.208000", + "Timestamp": "2024-05-16T14:01:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.300000", - "Timestamp": "2019-10-15T21:20:04.000Z" + "SpotPrice": "1.259900", + "Timestamp": "2024-05-16T14:01:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.200000", - "Timestamp": "2019-10-15T21:20:04.000Z" + "SpotPrice": "1.083000", + "Timestamp": "2024-05-16T14:01:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.200000", - "Timestamp": "2019-10-15T21:20:04.000Z" + "SpotPrice": "1.134900", + "Timestamp": "2024-05-16T14:01:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t1.micro", + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T21:20:02.000Z" + "SpotPrice": "0.533400", + "Timestamp": "2024-05-16T14:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t1.micro", + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T21:20:02.000Z" + "SpotPrice": "3.586500", + "Timestamp": "2024-05-16T14:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.400200", - "Timestamp": "2019-10-15T21:19:50.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214000", + "Timestamp": "2024-05-16T14:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.400200", - "Timestamp": "2019-10-15T21:19:50.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.925400", + "Timestamp": "2024-05-16T14:01:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "p3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.370200", - "Timestamp": "2019-10-15T21:19:50.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.618600", + "Timestamp": "2024-05-16T14:01:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "p3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.370200", - "Timestamp": "2019-10-15T21:19:50.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.977500", + "Timestamp": "2024-05-16T14:01:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.270200", - "Timestamp": "2019-10-15T21:19:50.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.048900", + "Timestamp": "2024-05-16T14:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "p3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.270200", - "Timestamp": "2019-10-15T21:19:50.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.582600", + "Timestamp": "2024-05-16T14:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.027600", - "Timestamp": "2019-10-15T21:19:44.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.577600", + "Timestamp": "2024-05-16T14:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.027600", - "Timestamp": "2019-10-15T21:19:44.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.452600", + "Timestamp": "2024-05-16T14:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.997600", - "Timestamp": "2019-10-15T21:19:44.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.927400", + "Timestamp": "2024-05-16T14:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.997600", - "Timestamp": "2019-10-15T21:19:44.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.894100", + "Timestamp": "2024-05-16T14:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.897600", - "Timestamp": "2019-10-15T21:19:44.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.864100", + "Timestamp": "2024-05-16T14:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.897600", - "Timestamp": "2019-10-15T21:19:44.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.764100", + "Timestamp": "2024-05-16T14:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.125400", - "Timestamp": "2019-10-15T21:19:27.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.634700", + "Timestamp": "2024-05-16T14:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.165400", - "Timestamp": "2019-10-15T21:19:27.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.629700", + "Timestamp": "2024-05-16T14:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.065400", - "Timestamp": "2019-10-15T21:19:27.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.504700", + "Timestamp": "2024-05-16T14:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.248600", - "Timestamp": "2019-10-15T21:19:18.000Z" + "SpotPrice": "3.712000", + "Timestamp": "2024-05-16T14:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.248600", - "Timestamp": "2019-10-15T21:19:18.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.707000", + "Timestamp": "2024-05-16T14:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.218600", - "Timestamp": "2019-10-15T21:19:18.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.582000", + "Timestamp": "2024-05-16T14:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.218600", - "Timestamp": "2019-10-15T21:19:18.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.424000", + "Timestamp": "2024-05-16T14:01:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.118600", - "Timestamp": "2019-10-15T21:19:18.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.419000", + "Timestamp": "2024-05-16T14:01:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.118600", - "Timestamp": "2019-10-15T21:19:18.000Z" + "SpotPrice": "0.294000", + "Timestamp": "2024-05-16T14:01:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t1.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062000", - "Timestamp": "2019-10-15T21:19:15.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.851600", + "Timestamp": "2024-05-16T14:01:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t1.micro", + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062000", - "Timestamp": "2019-10-15T21:19:15.000Z" + "SpotPrice": "1.344000", + "Timestamp": "2024-05-16T14:01:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t1.micro", + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-15T21:19:15.000Z" + "SpotPrice": "1.339000", + "Timestamp": "2024-05-16T14:01:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t1.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-15T21:19:15.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.214000", + "Timestamp": "2024-05-16T14:01:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t1.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T21:19:15.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.066400", + "Timestamp": "2024-05-16T14:01:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t1.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T21:19:15.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.454400", + "Timestamp": "2024-05-16T14:01:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.243300", - "Timestamp": "2019-10-15T21:19:03.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.449400", + "Timestamp": "2024-05-16T14:01:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.243300", - "Timestamp": "2019-10-15T21:19:03.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.324400", + "Timestamp": "2024-05-16T14:01:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.243300", - "Timestamp": "2019-10-15T21:19:03.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.323100", + "Timestamp": "2024-05-16T14:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.213300", - "Timestamp": "2019-10-15T21:19:03.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.318100", + "Timestamp": "2024-05-16T14:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.213300", - "Timestamp": "2019-10-15T21:19:03.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.193100", + "Timestamp": "2024-05-16T14:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.213300", - "Timestamp": "2019-10-15T21:19:03.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.145900", + "Timestamp": "2024-05-16T14:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.113300", - "Timestamp": "2019-10-15T21:19:03.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.140900", + "Timestamp": "2024-05-16T14:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.113300", - "Timestamp": "2019-10-15T21:19:03.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.015900", + "Timestamp": "2024-05-16T14:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.113300", - "Timestamp": "2019-10-15T21:19:03.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.183700", + "Timestamp": "2024-05-16T14:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.260500", - "Timestamp": "2019-10-15T21:18:54.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180000", + "Timestamp": "2024-05-16T14:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.260500", - "Timestamp": "2019-10-15T21:18:54.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123700", + "Timestamp": "2024-05-16T14:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.260500", - "Timestamp": "2019-10-15T21:18:54.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133800", + "Timestamp": "2024-05-16T14:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", "SpotPrice": "0.130100", - "Timestamp": "2019-10-15T21:18:51.000Z" + "Timestamp": "2024-05-16T14:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.130100", - "Timestamp": "2019-10-15T21:18:51.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073800", + "Timestamp": "2024-05-16T14:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.130100", - "Timestamp": "2019-10-15T21:18:51.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.037900", + "Timestamp": "2024-05-16T14:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.170100", - "Timestamp": "2019-10-15T21:18:51.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.347000", + "Timestamp": "2024-05-16T14:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.170100", - "Timestamp": "2019-10-15T21:18:51.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.342000", + "Timestamp": "2024-05-16T14:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.170100", - "Timestamp": "2019-10-15T21:18:51.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.217000", + "Timestamp": "2024-05-16T14:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.070100", - "Timestamp": "2019-10-15T21:18:51.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.515800", + "Timestamp": "2024-05-16T14:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.070100", - "Timestamp": "2019-10-15T21:18:51.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.510800", + "Timestamp": "2024-05-16T14:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.070100", - "Timestamp": "2019-10-15T21:18:51.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.385800", + "Timestamp": "2024-05-16T14:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.404100", - "Timestamp": "2019-10-15T21:18:46.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307100", + "Timestamp": "2024-05-16T14:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.404100", - "Timestamp": "2019-10-15T21:18:46.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302100", + "Timestamp": "2024-05-16T14:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.374100", - "Timestamp": "2019-10-15T21:18:46.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177100", + "Timestamp": "2024-05-16T14:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.374100", - "Timestamp": "2019-10-15T21:18:46.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.848400", + "Timestamp": "2024-05-16T14:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.274100", - "Timestamp": "2019-10-15T21:18:46.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.515700", + "Timestamp": "2024-05-16T14:01:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.274100", - "Timestamp": "2019-10-15T21:18:46.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.483600", + "Timestamp": "2024-05-16T14:01:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t1.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T21:18:44.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.510700", + "Timestamp": "2024-05-16T14:01:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t1.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T21:18:44.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.478600", + "Timestamp": "2024-05-16T14:01:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.249400", - "Timestamp": "2019-10-15T21:18:44.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.385700", + "Timestamp": "2024-05-16T14:01:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.249400", - "Timestamp": "2019-10-15T21:18:44.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.353600", + "Timestamp": "2024-05-16T14:01:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.248600", - "Timestamp": "2019-10-15T21:18:37.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223100", + "Timestamp": "2024-05-16T14:01:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.248600", - "Timestamp": "2019-10-15T21:18:37.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.677400", + "Timestamp": "2024-05-16T14:01:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.218600", - "Timestamp": "2019-10-15T21:18:37.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.672400", + "Timestamp": "2024-05-16T14:01:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.218600", - "Timestamp": "2019-10-15T21:18:37.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.547400", + "Timestamp": "2024-05-16T14:01:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.118600", - "Timestamp": "2019-10-15T21:18:37.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216000", + "Timestamp": "2024-05-16T14:01:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.118600", - "Timestamp": "2019-10-15T21:18:37.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.459300", + "Timestamp": "2024-05-16T14:01:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t1.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.062000", - "Timestamp": "2019-10-15T21:18:04.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.610200", + "Timestamp": "2024-05-16T14:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t1.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.062000", - "Timestamp": "2019-10-15T21:18:04.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.605200", + "Timestamp": "2024-05-16T14:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t1.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-15T21:18:04.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.480200", + "Timestamp": "2024-05-16T14:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t1.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-15T21:18:04.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.797500", + "Timestamp": "2024-05-16T14:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t1.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T21:18:04.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.471200", + "Timestamp": "2024-05-16T14:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t1.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T21:18:04.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.466200", + "Timestamp": "2024-05-16T14:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.111100", - "Timestamp": "2019-10-15T21:17:43.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.341200", + "Timestamp": "2024-05-16T14:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.111100", - "Timestamp": "2019-10-15T21:17:43.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.458800", + "Timestamp": "2024-05-16T14:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.111100", - "Timestamp": "2019-10-15T21:17:43.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.453800", + "Timestamp": "2024-05-16T14:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.251200", - "Timestamp": "2019-10-15T21:17:14.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.328800", + "Timestamp": "2024-05-16T14:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.251200", - "Timestamp": "2019-10-15T21:17:14.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200300", + "Timestamp": "2024-05-16T14:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.251200", - "Timestamp": "2019-10-15T21:17:14.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196600", + "Timestamp": "2024-05-16T14:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.221200", - "Timestamp": "2019-10-15T21:17:14.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140300", + "Timestamp": "2024-05-16T14:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.221200", - "Timestamp": "2019-10-15T21:17:14.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.958000", + "Timestamp": "2024-05-16T14:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.221200", - "Timestamp": "2019-10-15T21:17:14.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.953000", + "Timestamp": "2024-05-16T14:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.121200", - "Timestamp": "2019-10-15T21:17:14.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.828000", + "Timestamp": "2024-05-16T14:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.121200", - "Timestamp": "2019-10-15T21:17:14.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.280500", + "Timestamp": "2024-05-16T14:01:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.121200", - "Timestamp": "2019-10-15T21:17:14.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.268700", + "Timestamp": "2024-05-16T14:01:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-15T21:16:52.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.720700", + "Timestamp": "2024-05-16T14:01:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.237000", - "Timestamp": "2019-10-15T21:16:52.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.715700", + "Timestamp": "2024-05-16T14:01:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.137000", - "Timestamp": "2019-10-15T21:16:52.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.590700", + "Timestamp": "2024-05-16T14:01:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.985100", - "Timestamp": "2019-10-15T21:16:40.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.005800", + "Timestamp": "2024-05-16T14:01:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.985100", - "Timestamp": "2019-10-15T21:16:40.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.000800", + "Timestamp": "2024-05-16T14:01:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.985100", - "Timestamp": "2019-10-15T21:16:40.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.875800", + "Timestamp": "2024-05-16T14:01:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.433200", - "Timestamp": "2019-10-15T21:15:52.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.797800", + "Timestamp": "2024-05-16T14:01:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.433200", - "Timestamp": "2019-10-15T21:15:52.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.996600", + "Timestamp": "2024-05-16T14:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.433200", - "Timestamp": "2019-10-15T21:15:52.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.460200", + "Timestamp": "2024-05-16T14:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.379100", - "Timestamp": "2019-10-15T21:15:40.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.455200", + "Timestamp": "2024-05-16T14:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.379100", - "Timestamp": "2019-10-15T21:15:40.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.330200", + "Timestamp": "2024-05-16T14:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.379100", - "Timestamp": "2019-10-15T21:15:40.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.464900", + "Timestamp": "2024-05-16T14:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.349100", - "Timestamp": "2019-10-15T21:15:40.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.459900", + "Timestamp": "2024-05-16T14:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.349100", - "Timestamp": "2019-10-15T21:15:40.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.334900", + "Timestamp": "2024-05-16T14:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.349100", - "Timestamp": "2019-10-15T21:15:40.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151100", + "Timestamp": "2024-05-16T14:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.249100", - "Timestamp": "2019-10-15T21:15:40.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157300", + "Timestamp": "2024-05-16T14:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.249100", - "Timestamp": "2019-10-15T21:15:40.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147400", + "Timestamp": "2024-05-16T14:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.249100", - "Timestamp": "2019-10-15T21:15:40.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153600", + "Timestamp": "2024-05-16T14:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.144100", - "Timestamp": "2019-10-15T21:15:23.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091100", + "Timestamp": "2024-05-16T14:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.144100", - "Timestamp": "2019-10-15T21:15:23.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097300", + "Timestamp": "2024-05-16T14:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.144100", - "Timestamp": "2019-10-15T21:14:53.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T14:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.144100", - "Timestamp": "2019-10-15T21:14:53.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144200", + "Timestamp": "2024-05-16T14:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.132000", - "Timestamp": "2019-10-15T21:14:41.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044200", + "Timestamp": "2024-05-16T14:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.132000", - "Timestamp": "2019-10-15T21:14:41.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.674500", + "Timestamp": "2024-05-16T14:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "g3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.102000", - "Timestamp": "2019-10-15T21:14:41.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.427000", + "Timestamp": "2024-05-16T14:01:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "g3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.102000", - "Timestamp": "2019-10-15T21:14:41.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.051800", + "Timestamp": "2024-05-16T14:01:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.002000", - "Timestamp": "2019-10-15T21:14:41.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.860000", + "Timestamp": "2024-05-16T14:01:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.002000", - "Timestamp": "2019-10-15T21:14:41.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.855000", + "Timestamp": "2024-05-16T14:01:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091100", - "Timestamp": "2019-10-15T21:14:41.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.730000", + "Timestamp": "2024-05-16T14:01:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.large", + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.6xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091100", - "Timestamp": "2019-10-15T21:14:41.000Z" + "SpotPrice": "0.635300", + "Timestamp": "2024-05-16T14:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.large", + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.6xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.131100", - "Timestamp": "2019-10-15T21:14:41.000Z" + "SpotPrice": "0.630300", + "Timestamp": "2024-05-16T14:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.131100", - "Timestamp": "2019-10-15T21:14:41.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.505300", + "Timestamp": "2024-05-16T14:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031100", - "Timestamp": "2019-10-15T21:14:41.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.740000", + "Timestamp": "2024-05-16T14:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031100", - "Timestamp": "2019-10-15T21:14:41.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.735000", + "Timestamp": "2024-05-16T14:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.914800", - "Timestamp": "2019-10-15T21:14:12.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.610000", + "Timestamp": "2024-05-16T14:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.914800", - "Timestamp": "2019-10-15T21:14:12.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.974700", + "Timestamp": "2024-05-16T14:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.884800", - "Timestamp": "2019-10-15T21:14:12.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.013800", + "Timestamp": "2024-05-16T14:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.884800", - "Timestamp": "2019-10-15T21:14:12.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.008800", + "Timestamp": "2024-05-16T14:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.784800", - "Timestamp": "2019-10-15T21:14:12.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.883800", + "Timestamp": "2024-05-16T14:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.784800", - "Timestamp": "2019-10-15T21:14:12.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.403000", + "Timestamp": "2024-05-16T14:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.505000", - "Timestamp": "2019-10-15T21:14:11.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.398000", + "Timestamp": "2024-05-16T14:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.505000", - "Timestamp": "2019-10-15T21:14:11.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.273000", + "Timestamp": "2024-05-16T14:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.505000", - "Timestamp": "2019-10-15T21:14:11.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.770600", + "Timestamp": "2024-05-16T14:01:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.474000", - "Timestamp": "2019-10-15T21:14:04.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151800", + "Timestamp": "2024-05-16T14:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.474000", - "Timestamp": "2019-10-15T21:14:04.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.191800", + "Timestamp": "2024-05-16T14:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.757200", - "Timestamp": "2019-10-15T21:13:53.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T14:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.757200", - "Timestamp": "2019-10-15T21:13:53.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.557600", + "Timestamp": "2024-05-16T14:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.757200", - "Timestamp": "2019-10-15T21:13:53.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.552600", + "Timestamp": "2024-05-16T14:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.727200", - "Timestamp": "2019-10-15T21:13:53.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.427600", + "Timestamp": "2024-05-16T14:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.727200", - "Timestamp": "2019-10-15T21:13:53.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141300", + "Timestamp": "2024-05-16T14:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.727200", - "Timestamp": "2019-10-15T21:13:53.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137600", + "Timestamp": "2024-05-16T14:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.627200", - "Timestamp": "2019-10-15T21:13:53.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081300", + "Timestamp": "2024-05-16T14:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.627200", - "Timestamp": "2019-10-15T21:13:53.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.411700", + "Timestamp": "2024-05-16T14:01:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.627200", - "Timestamp": "2019-10-15T21:13:53.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.381700", + "Timestamp": "2024-05-16T14:01:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.992800", - "Timestamp": "2019-10-15T21:13:45.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.281700", + "Timestamp": "2024-05-16T14:01:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.992800", - "Timestamp": "2019-10-15T21:13:45.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130500", + "Timestamp": "2024-05-16T14:01:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.992800", - "Timestamp": "2019-10-15T21:13:45.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126500", + "Timestamp": "2024-05-16T14:01:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.091100", - "Timestamp": "2019-10-15T21:13:38.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070500", + "Timestamp": "2024-05-16T14:01:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.091100", - "Timestamp": "2019-10-15T21:13:38.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.400900", + "Timestamp": "2024-05-16T14:01:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.131100", - "Timestamp": "2019-10-15T21:13:38.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.395900", + "Timestamp": "2024-05-16T14:01:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.131100", - "Timestamp": "2019-10-15T21:13:38.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.270900", + "Timestamp": "2024-05-16T14:01:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.031100", - "Timestamp": "2019-10-15T21:13:38.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.639600", + "Timestamp": "2024-05-16T14:01:15.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.031100", - "Timestamp": "2019-10-15T21:13:38.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.634600", + "Timestamp": "2024-05-16T14:01:15.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.060400", - "Timestamp": "2019-10-15T21:13:32.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.509600", + "Timestamp": "2024-05-16T14:01:15.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.081200", - "Timestamp": "2019-10-15T21:11:16.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.839600", + "Timestamp": "2024-05-16T14:01:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.081200", - "Timestamp": "2019-10-15T21:11:16.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.726200", + "Timestamp": "2024-05-16T14:01:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.081200", - "Timestamp": "2019-10-15T21:11:16.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.840000", + "Timestamp": "2024-05-16T14:01:03.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.051200", - "Timestamp": "2019-10-15T21:11:16.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.896100", + "Timestamp": "2024-05-16T14:00:53.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.051200", - "Timestamp": "2019-10-15T21:11:16.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.326900", + "Timestamp": "2024-05-16T13:47:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.051200", - "Timestamp": "2019-10-15T21:11:16.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.321900", + "Timestamp": "2024-05-16T13:47:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.951200", - "Timestamp": "2019-10-15T21:11:16.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.196900", + "Timestamp": "2024-05-16T13:47:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.951200", - "Timestamp": "2019-10-15T21:11:16.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.149100", + "Timestamp": "2024-05-16T13:47:04.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.951200", - "Timestamp": "2019-10-15T21:11:16.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.119100", + "Timestamp": "2024-05-16T13:47:04.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.060400", - "Timestamp": "2019-10-15T21:10:54.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.019100", + "Timestamp": "2024-05-16T13:47:04.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.060400", - "Timestamp": "2019-10-15T21:10:54.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.603300", + "Timestamp": "2024-05-16T13:47:03.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.060400", - "Timestamp": "2019-10-15T21:10:54.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.831400", + "Timestamp": "2024-05-16T13:47:01.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.159200", - "Timestamp": "2019-10-15T21:10:31.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.152800", + "Timestamp": "2024-05-16T13:47:00.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.159200", - "Timestamp": "2019-10-15T21:10:31.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.147800", + "Timestamp": "2024-05-16T13:47:00.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.159200", - "Timestamp": "2019-10-15T21:10:31.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.022800", + "Timestamp": "2024-05-16T13:47:00.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.774400", - "Timestamp": "2019-10-15T21:09:44.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.458400", + "Timestamp": "2024-05-16T13:46:59.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.774400", - "Timestamp": "2019-10-15T21:09:44.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.428400", + "Timestamp": "2024-05-16T13:46:59.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.774400", - "Timestamp": "2019-10-15T21:09:44.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.328400", + "Timestamp": "2024-05-16T13:46:59.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.744400", - "Timestamp": "2019-10-15T21:09:44.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.965600", + "Timestamp": "2024-05-16T13:46:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.744400", - "Timestamp": "2019-10-15T21:09:44.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.960600", + "Timestamp": "2024-05-16T13:46:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.744400", - "Timestamp": "2019-10-15T21:09:44.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.835600", + "Timestamp": "2024-05-16T13:46:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.644400", - "Timestamp": "2019-10-15T21:09:44.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.502900", + "Timestamp": "2024-05-16T13:46:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.644400", - "Timestamp": "2019-10-15T21:09:44.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.588500", + "Timestamp": "2024-05-16T13:46:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.644400", - "Timestamp": "2019-10-15T21:09:44.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.583500", + "Timestamp": "2024-05-16T13:46:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.935200", - "Timestamp": "2019-10-15T21:09:31.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.458500", + "Timestamp": "2024-05-16T13:46:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.905200", - "Timestamp": "2019-10-15T21:09:31.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.480100", + "Timestamp": "2024-05-16T13:46:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.805200", - "Timestamp": "2019-10-15T21:09:31.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.475100", + "Timestamp": "2024-05-16T13:46:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.132600", - "Timestamp": "2019-10-15T21:09:21.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.350100", + "Timestamp": "2024-05-16T13:46:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.172600", - "Timestamp": "2019-10-15T21:09:21.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.713200", + "Timestamp": "2024-05-16T13:46:55.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.072600", - "Timestamp": "2019-10-15T21:09:21.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.456800", + "Timestamp": "2024-05-16T13:46:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.096100", - "Timestamp": "2019-10-15T21:09:18.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.779600", + "Timestamp": "2024-05-16T13:46:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.136100", - "Timestamp": "2019-10-15T21:09:18.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.774600", + "Timestamp": "2024-05-16T13:46:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.036100", - "Timestamp": "2019-10-15T21:09:18.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.649600", + "Timestamp": "2024-05-16T13:46:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.574800", - "Timestamp": "2019-10-15T21:08:52.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.557500", + "Timestamp": "2024-05-16T13:46:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.572200", - "Timestamp": "2019-10-15T21:00:18.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.552500", + "Timestamp": "2024-05-16T13:46:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.441100", - "Timestamp": "2019-10-15T21:00:13.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.427500", + "Timestamp": "2024-05-16T13:46:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.411100", - "Timestamp": "2019-10-15T21:00:13.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.770400", + "Timestamp": "2024-05-16T13:46:49.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.311100", - "Timestamp": "2019-10-15T21:00:13.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.242600", + "Timestamp": "2024-05-16T13:46:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.498800", - "Timestamp": "2019-10-15T20:58:02.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.237600", + "Timestamp": "2024-05-16T13:46:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.176400", - "Timestamp": "2019-10-15T20:52:43.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.112600", + "Timestamp": "2024-05-16T13:46:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.146400", - "Timestamp": "2019-10-15T20:52:43.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.440800", + "Timestamp": "2024-05-16T13:46:45.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.046400", - "Timestamp": "2019-10-15T20:52:43.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.410800", + "Timestamp": "2024-05-16T13:46:45.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095700", - "Timestamp": "2019-10-15T20:52:20.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.310800", + "Timestamp": "2024-05-16T13:46:45.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135700", - "Timestamp": "2019-10-15T20:52:20.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.476600", + "Timestamp": "2024-05-16T13:46:45.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035700", - "Timestamp": "2019-10-15T20:52:20.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.539500", + "Timestamp": "2024-05-16T13:46:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.138500", - "Timestamp": "2019-10-15T20:51:43.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.534500", + "Timestamp": "2024-05-16T13:46:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.178500", - "Timestamp": "2019-10-15T20:51:43.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.409500", + "Timestamp": "2024-05-16T13:46:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.078500", - "Timestamp": "2019-10-15T20:51:43.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.709800", + "Timestamp": "2024-05-16T13:46:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.128500", - "Timestamp": "2019-10-15T20:48:41.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.714100", + "Timestamp": "2024-05-16T13:46:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.168500", - "Timestamp": "2019-10-15T20:48:41.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.484300", + "Timestamp": "2024-05-16T13:46:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.068500", - "Timestamp": "2019-10-15T20:48:41.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.207100", + "Timestamp": "2024-05-16T13:46:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.573900", - "Timestamp": "2019-10-15T20:43:52.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.247100", + "Timestamp": "2024-05-16T13:46:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.184800", - "Timestamp": "2019-10-15T20:43:31.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147100", + "Timestamp": "2024-05-16T13:46:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.184800", - "Timestamp": "2019-10-15T20:43:31.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.207200", + "Timestamp": "2024-05-16T13:46:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.184800", - "Timestamp": "2019-10-15T20:43:31.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.203500", + "Timestamp": "2024-05-16T13:46:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.995200", - "Timestamp": "2019-10-15T20:43:21.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147200", + "Timestamp": "2024-05-16T13:46:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.995200", - "Timestamp": "2019-10-15T20:43:21.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.135400", + "Timestamp": "2024-05-16T13:46:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.995200", - "Timestamp": "2019-10-15T20:43:21.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.302700", + "Timestamp": "2024-05-16T13:46:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.575100", - "Timestamp": "2019-10-15T20:43:18.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.297700", + "Timestamp": "2024-05-16T13:46:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.255600", - "Timestamp": "2019-10-15T20:43:09.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.172700", + "Timestamp": "2024-05-16T13:46:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.225600", - "Timestamp": "2019-10-15T20:43:09.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.305500", + "Timestamp": "2024-05-16T13:46:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.125600", - "Timestamp": "2019-10-15T20:43:09.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.300500", + "Timestamp": "2024-05-16T13:46:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.034000", - "Timestamp": "2019-10-15T20:42:30.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175500", + "Timestamp": "2024-05-16T13:46:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.004000", - "Timestamp": "2019-10-15T20:42:30.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.227300", + "Timestamp": "2024-05-16T13:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.904000", - "Timestamp": "2019-10-15T20:42:30.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.244200", + "Timestamp": "2024-05-16T13:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.074200", - "Timestamp": "2019-10-15T20:42:21.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.239200", + "Timestamp": "2024-05-16T13:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.074200", - "Timestamp": "2019-10-15T20:42:21.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.114200", + "Timestamp": "2024-05-16T13:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.074200", - "Timestamp": "2019-10-15T20:42:21.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.108000", + "Timestamp": "2024-05-16T13:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.114200", - "Timestamp": "2019-10-15T20:42:21.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.901600", + "Timestamp": "2024-05-16T13:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.114200", - "Timestamp": "2019-10-15T20:42:21.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.896600", + "Timestamp": "2024-05-16T13:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.114200", - "Timestamp": "2019-10-15T20:42:21.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.771600", + "Timestamp": "2024-05-16T13:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.014200", - "Timestamp": "2019-10-15T20:42:21.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.462300", + "Timestamp": "2024-05-16T13:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.014200", - "Timestamp": "2019-10-15T20:42:21.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.457300", + "Timestamp": "2024-05-16T13:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.014200", - "Timestamp": "2019-10-15T20:42:21.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.332300", + "Timestamp": "2024-05-16T13:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094300", - "Timestamp": "2019-10-15T20:41:44.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.280900", + "Timestamp": "2024-05-16T13:46:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094300", - "Timestamp": "2019-10-15T20:41:44.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.685900", + "Timestamp": "2024-05-16T13:46:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094300", - "Timestamp": "2019-10-15T20:41:44.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.655900", + "Timestamp": "2024-05-16T13:46:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-15T20:41:44.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.555900", + "Timestamp": "2024-05-16T13:46:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-15T20:41:44.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.827400", + "Timestamp": "2024-05-16T13:46:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-15T20:41:44.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.845700", + "Timestamp": "2024-05-16T13:46:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034300", - "Timestamp": "2019-10-15T20:41:44.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.612500", + "Timestamp": "2024-05-16T13:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034300", - "Timestamp": "2019-10-15T20:41:44.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.525600", + "Timestamp": "2024-05-16T13:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034300", - "Timestamp": "2019-10-15T20:41:44.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.520600", + "Timestamp": "2024-05-16T13:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.032600", - "Timestamp": "2019-10-15T20:41:25.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.395600", + "Timestamp": "2024-05-16T13:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.032600", - "Timestamp": "2019-10-15T20:41:25.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.970100", + "Timestamp": "2024-05-16T13:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.032600", - "Timestamp": "2019-10-15T20:41:25.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.965100", + "Timestamp": "2024-05-16T13:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.578800", - "Timestamp": "2019-10-15T20:41:23.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.840100", + "Timestamp": "2024-05-16T13:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.578800", - "Timestamp": "2019-10-15T20:41:23.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.696500", + "Timestamp": "2024-05-16T13:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.578800", - "Timestamp": "2019-10-15T20:41:23.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.691500", + "Timestamp": "2024-05-16T13:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.548800", - "Timestamp": "2019-10-15T20:41:23.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.566500", + "Timestamp": "2024-05-16T13:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.548800", - "Timestamp": "2019-10-15T20:41:23.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.776200", + "Timestamp": "2024-05-16T13:46:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.548800", - "Timestamp": "2019-10-15T20:41:23.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.771200", + "Timestamp": "2024-05-16T13:46:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.448800", - "Timestamp": "2019-10-15T20:41:23.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.646200", + "Timestamp": "2024-05-16T13:46:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.448800", - "Timestamp": "2019-10-15T20:41:23.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.091100", + "Timestamp": "2024-05-16T13:46:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.448800", - "Timestamp": "2019-10-15T20:41:23.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.586700", + "Timestamp": "2024-05-16T13:46:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.943600", - "Timestamp": "2019-10-15T20:41:10.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.428200", + "Timestamp": "2024-05-16T13:46:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.943600", - "Timestamp": "2019-10-15T20:41:10.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.581700", + "Timestamp": "2024-05-16T13:46:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.943600", - "Timestamp": "2019-10-15T20:41:10.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.423200", + "Timestamp": "2024-05-16T13:46:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.913600", - "Timestamp": "2019-10-15T20:41:10.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.456700", + "Timestamp": "2024-05-16T13:46:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.913600", - "Timestamp": "2019-10-15T20:41:10.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.298200", + "Timestamp": "2024-05-16T13:46:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.913600", - "Timestamp": "2019-10-15T20:41:10.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.840000", + "Timestamp": "2024-05-16T13:46:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.813600", - "Timestamp": "2019-10-15T20:41:10.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.835000", + "Timestamp": "2024-05-16T13:46:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.813600", - "Timestamp": "2019-10-15T20:41:10.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.710000", + "Timestamp": "2024-05-16T13:46:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.813600", - "Timestamp": "2019-10-15T20:41:10.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T13:46:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126300", - "Timestamp": "2019-10-15T20:40:47.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.291000", + "Timestamp": "2024-05-16T13:46:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126300", - "Timestamp": "2019-10-15T20:40:47.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.286000", + "Timestamp": "2024-05-16T13:46:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126300", - "Timestamp": "2019-10-15T20:40:47.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.161000", + "Timestamp": "2024-05-16T13:46:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.653200", - "Timestamp": "2019-10-15T20:40:35.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.044700", + "Timestamp": "2024-05-16T13:46:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.653200", - "Timestamp": "2019-10-15T20:40:35.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.039700", + "Timestamp": "2024-05-16T13:46:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.653200", - "Timestamp": "2019-10-15T20:40:35.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.914700", + "Timestamp": "2024-05-16T13:46:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.623200", - "Timestamp": "2019-10-15T20:40:35.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.383300", + "Timestamp": "2024-05-16T13:46:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.623200", - "Timestamp": "2019-10-15T20:40:35.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.378300", + "Timestamp": "2024-05-16T13:46:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.623200", - "Timestamp": "2019-10-15T20:40:35.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.253300", + "Timestamp": "2024-05-16T13:46:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.523200", - "Timestamp": "2019-10-15T20:40:35.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.185000", + "Timestamp": "2024-05-16T13:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.523200", - "Timestamp": "2019-10-15T20:40:35.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181000", + "Timestamp": "2024-05-16T13:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.523200", - "Timestamp": "2019-10-15T20:40:35.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125000", + "Timestamp": "2024-05-16T13:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.216600", - "Timestamp": "2019-10-15T20:39:45.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.396800", + "Timestamp": "2024-05-16T13:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.216600", - "Timestamp": "2019-10-15T20:39:45.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.391800", + "Timestamp": "2024-05-16T13:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.216600", - "Timestamp": "2019-10-15T20:39:45.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.266800", + "Timestamp": "2024-05-16T13:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.690600", - "Timestamp": "2019-10-15T20:39:38.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.289100", + "Timestamp": "2024-05-16T13:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.690600", - "Timestamp": "2019-10-15T20:39:38.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.325500", + "Timestamp": "2024-05-16T13:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.690600", - "Timestamp": "2019-10-15T20:39:38.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.028200", + "Timestamp": "2024-05-16T13:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.660600", - "Timestamp": "2019-10-15T20:39:38.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.023200", + "Timestamp": "2024-05-16T13:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.660600", - "Timestamp": "2019-10-15T20:39:38.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.898200", + "Timestamp": "2024-05-16T13:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.660600", - "Timestamp": "2019-10-15T20:39:38.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.185000", + "Timestamp": "2024-05-16T13:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.560600", - "Timestamp": "2019-10-15T20:39:38.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.180000", + "Timestamp": "2024-05-16T13:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.560600", - "Timestamp": "2019-10-15T20:39:38.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.055000", + "Timestamp": "2024-05-16T13:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.560600", - "Timestamp": "2019-10-15T20:39:38.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.504700", + "Timestamp": "2024-05-16T13:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t2.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.063000", - "Timestamp": "2019-10-15T20:39:05.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.499700", + "Timestamp": "2024-05-16T13:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t2.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.063000", - "Timestamp": "2019-10-15T20:39:05.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.374700", + "Timestamp": "2024-05-16T13:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t2.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.063000", - "Timestamp": "2019-10-15T20:39:05.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.329600", + "Timestamp": "2024-05-16T13:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t2.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095000", - "Timestamp": "2019-10-15T20:38:10.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324600", + "Timestamp": "2024-05-16T13:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t2.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095000", - "Timestamp": "2019-10-15T20:38:10.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199600", + "Timestamp": "2024-05-16T13:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t2.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095000", - "Timestamp": "2019-10-15T20:38:10.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.522700", + "Timestamp": "2024-05-16T13:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t2.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135000", - "Timestamp": "2019-10-15T20:38:10.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.906500", + "Timestamp": "2024-05-16T13:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t2.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135000", - "Timestamp": "2019-10-15T20:38:10.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.792500", + "Timestamp": "2024-05-16T13:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t2.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135000", - "Timestamp": "2019-10-15T20:38:10.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.885100", + "Timestamp": "2024-05-16T13:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t2.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035000", - "Timestamp": "2019-10-15T20:38:10.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.855100", + "Timestamp": "2024-05-16T13:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t2.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035000", - "Timestamp": "2019-10-15T20:38:10.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.755100", + "Timestamp": "2024-05-16T13:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t2.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035000", - "Timestamp": "2019-10-15T20:38:10.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.400600", + "Timestamp": "2024-05-16T13:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252500", - "Timestamp": "2019-10-15T20:37:32.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.395600", + "Timestamp": "2024-05-16T13:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.126000", - "Timestamp": "2019-10-15T20:35:55.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.270600", + "Timestamp": "2024-05-16T13:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.166000", - "Timestamp": "2019-10-15T20:35:55.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.089200", + "Timestamp": "2024-05-16T13:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.066000", - "Timestamp": "2019-10-15T20:35:55.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.084200", + "Timestamp": "2024-05-16T13:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.269300", - "Timestamp": "2019-10-15T20:35:53.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.959200", + "Timestamp": "2024-05-16T13:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.239300", - "Timestamp": "2019-10-15T20:35:53.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.882100", + "Timestamp": "2024-05-16T13:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.139300", - "Timestamp": "2019-10-15T20:35:53.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306600", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.919400", - "Timestamp": "2019-10-15T20:35:46.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301600", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.889400", - "Timestamp": "2019-10-15T20:35:46.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176600", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.789400", - "Timestamp": "2019-10-15T20:35:46.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.839600", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.756700", - "Timestamp": "2019-10-15T20:35:34.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.853700", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.726700", - "Timestamp": "2019-10-15T20:35:34.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.033600", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "3.626700", - "Timestamp": "2019-10-15T20:35:34.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.028600", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.271900", - "Timestamp": "2019-10-15T20:35:13.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.903600", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.241900", - "Timestamp": "2019-10-15T20:35:13.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.613100", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.141900", - "Timestamp": "2019-10-15T20:35:13.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.608100", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.095400", - "Timestamp": "2019-10-15T20:35:07.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.483100", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.135400", - "Timestamp": "2019-10-15T20:35:07.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.344700", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.035400", - "Timestamp": "2019-10-15T20:35:07.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.339700", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126300", - "Timestamp": "2019-10-15T20:32:15.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.214700", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.985600", - "Timestamp": "2019-10-15T20:32:00.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.705100", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.122300", - "Timestamp": "2019-10-15T20:30:53.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.700100", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.162300", - "Timestamp": "2019-10-15T20:30:53.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.575100", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.062300", - "Timestamp": "2019-10-15T20:30:53.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163600", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.499200", - "Timestamp": "2019-10-15T20:27:34.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159900", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.265500", - "Timestamp": "2019-10-15T20:27:24.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103600", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.235500", - "Timestamp": "2019-10-15T20:27:24.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.953800", + "Timestamp": "2024-05-16T13:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.135500", - "Timestamp": "2019-10-15T20:27:24.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.654900", + "Timestamp": "2024-05-16T13:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124700", - "Timestamp": "2019-10-15T20:22:24.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.649900", + "Timestamp": "2024-05-16T13:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", + "AvailabilityZone": "ap-northeast-1d", "InstanceType": "z1d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.658000", - "Timestamp": "2019-10-15T20:18:31.000Z" + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.524900", + "Timestamp": "2024-05-16T13:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.010100", - "Timestamp": "2019-10-15T20:12:30.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097000", + "Timestamp": "2024-05-16T13:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.010100", - "Timestamp": "2019-10-15T20:12:30.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093300", + "Timestamp": "2024-05-16T13:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.010100", - "Timestamp": "2019-10-15T20:12:30.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037000", + "Timestamp": "2024-05-16T13:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.505000", - "Timestamp": "2019-10-15T20:11:55.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.695800", + "Timestamp": "2024-05-16T13:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.505000", - "Timestamp": "2019-10-15T20:11:55.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.690800", + "Timestamp": "2024-05-16T13:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.505000", - "Timestamp": "2019-10-15T20:11:55.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.565800", + "Timestamp": "2024-05-16T13:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.010100", - "Timestamp": "2019-10-15T20:11:54.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184700", + "Timestamp": "2024-05-16T13:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.512200", - "Timestamp": "2019-10-15T20:11:51.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181000", + "Timestamp": "2024-05-16T13:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.512200", - "Timestamp": "2019-10-15T20:11:51.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124700", + "Timestamp": "2024-05-16T13:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.512200", - "Timestamp": "2019-10-15T20:11:51.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T13:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.592400", - "Timestamp": "2019-10-15T20:11:35.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114700", + "Timestamp": "2024-05-16T13:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.592400", - "Timestamp": "2019-10-15T20:11:35.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T13:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.592400", - "Timestamp": "2019-10-15T20:11:35.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054700", + "Timestamp": "2024-05-16T13:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.985100", - "Timestamp": "2019-10-15T20:11:33.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.513700", + "Timestamp": "2024-05-16T13:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.985100", - "Timestamp": "2019-10-15T20:11:33.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.508700", + "Timestamp": "2024-05-16T13:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.498800", - "Timestamp": "2019-10-15T20:11:31.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.383700", + "Timestamp": "2024-05-16T13:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.498800", - "Timestamp": "2019-10-15T20:11:31.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125800", + "Timestamp": "2024-05-16T13:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.498800", - "Timestamp": "2019-10-15T20:11:31.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121800", + "Timestamp": "2024-05-16T13:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-15T20:11:31.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065800", + "Timestamp": "2024-05-16T13:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-15T20:11:31.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159500", + "Timestamp": "2024-05-16T13:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.237000", - "Timestamp": "2019-10-15T20:11:31.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155800", + "Timestamp": "2024-05-16T13:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.237000", - "Timestamp": "2019-10-15T20:11:31.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099500", + "Timestamp": "2024-05-16T13:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.137000", - "Timestamp": "2019-10-15T20:11:31.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.743900", + "Timestamp": "2024-05-16T13:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.137000", - "Timestamp": "2019-10-15T20:11:31.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.713900", + "Timestamp": "2024-05-16T13:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.373600", - "Timestamp": "2019-10-15T20:11:20.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.613900", + "Timestamp": "2024-05-16T13:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.373600", - "Timestamp": "2019-10-15T20:11:20.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.261600", + "Timestamp": "2024-05-16T13:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.354400", - "Timestamp": "2019-10-15T20:11:14.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.864400", + "Timestamp": "2024-05-16T13:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.354400", - "Timestamp": "2019-10-15T20:11:14.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.312300", + "Timestamp": "2024-05-16T13:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.354400", - "Timestamp": "2019-10-15T20:11:14.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.307300", + "Timestamp": "2024-05-16T13:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.324400", - "Timestamp": "2019-10-15T20:11:14.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.182300", + "Timestamp": "2024-05-16T13:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.324400", - "Timestamp": "2019-10-15T20:11:14.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.775800", + "Timestamp": "2024-05-16T13:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.324400", - "Timestamp": "2019-10-15T20:11:14.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.718900", + "Timestamp": "2024-05-16T13:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.224400", - "Timestamp": "2019-10-15T20:11:14.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.713900", + "Timestamp": "2024-05-16T13:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.224400", - "Timestamp": "2019-10-15T20:11:14.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.588900", + "Timestamp": "2024-05-16T13:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.224400", - "Timestamp": "2019-10-15T20:11:14.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.258600", + "Timestamp": "2024-05-16T13:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.498500", - "Timestamp": "2019-10-15T20:11:13.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.253600", + "Timestamp": "2024-05-16T13:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.498500", - "Timestamp": "2019-10-15T20:11:13.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128600", + "Timestamp": "2024-05-16T13:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.498500", - "Timestamp": "2019-10-15T20:11:13.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.973300", + "Timestamp": "2024-05-16T13:46:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.997600", - "Timestamp": "2019-10-15T20:11:04.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.695200", + "Timestamp": "2024-05-16T13:46:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.997600", - "Timestamp": "2019-10-15T20:11:04.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.743400", + "Timestamp": "2024-05-16T13:46:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.997600", - "Timestamp": "2019-10-15T20:11:04.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.113900", + "Timestamp": "2024-05-16T13:46:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.226200", - "Timestamp": "2019-10-15T20:11:03.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.108900", + "Timestamp": "2024-05-16T13:46:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.226200", - "Timestamp": "2019-10-15T20:11:03.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.983900", + "Timestamp": "2024-05-16T13:46:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.226200", - "Timestamp": "2019-10-15T20:11:03.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.364000", + "Timestamp": "2024-05-16T13:46:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.196200", - "Timestamp": "2019-10-15T20:11:03.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.689300", + "Timestamp": "2024-05-16T13:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.196200", - "Timestamp": "2019-10-15T20:11:03.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.543300", + "Timestamp": "2024-05-16T13:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.196200", - "Timestamp": "2019-10-15T20:11:03.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.538300", + "Timestamp": "2024-05-16T13:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.096200", - "Timestamp": "2019-10-15T20:11:03.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.413300", + "Timestamp": "2024-05-16T13:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.096200", - "Timestamp": "2019-10-15T20:11:03.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.713200", + "Timestamp": "2024-05-16T13:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.096200", - "Timestamp": "2019-10-15T20:11:03.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.708200", + "Timestamp": "2024-05-16T13:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.914800", - "Timestamp": "2019-10-15T20:10:49.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.583200", + "Timestamp": "2024-05-16T13:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.914800", - "Timestamp": "2019-10-15T20:10:49.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.232200", + "Timestamp": "2024-05-16T13:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.914800", - "Timestamp": "2019-10-15T20:10:49.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.227200", + "Timestamp": "2024-05-16T13:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.884800", - "Timestamp": "2019-10-15T20:10:49.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.102200", + "Timestamp": "2024-05-16T13:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.884800", - "Timestamp": "2019-10-15T20:10:49.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.839500", + "Timestamp": "2024-05-16T13:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.884800", - "Timestamp": "2019-10-15T20:10:49.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.834500", + "Timestamp": "2024-05-16T13:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.784800", - "Timestamp": "2019-10-15T20:10:49.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.709500", + "Timestamp": "2024-05-16T13:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.784800", - "Timestamp": "2019-10-15T20:10:49.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.078900", + "Timestamp": "2024-05-16T13:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.784800", - "Timestamp": "2019-10-15T20:10:49.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.073900", + "Timestamp": "2024-05-16T13:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.031600", - "Timestamp": "2019-10-15T20:10:48.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.948900", + "Timestamp": "2024-05-16T13:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.031600", - "Timestamp": "2019-10-15T20:10:48.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.849700", + "Timestamp": "2024-05-16T13:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.001600", - "Timestamp": "2019-10-15T20:10:48.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.975700", + "Timestamp": "2024-05-16T13:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.001600", - "Timestamp": "2019-10-15T20:10:48.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.970700", + "Timestamp": "2024-05-16T13:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.901600", - "Timestamp": "2019-10-15T20:10:48.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.845700", + "Timestamp": "2024-05-16T13:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.901600", - "Timestamp": "2019-10-15T20:10:48.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.162200", + "Timestamp": "2024-05-16T13:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.176400", - "Timestamp": "2019-10-15T20:10:33.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.909300", + "Timestamp": "2024-05-16T13:46:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.176400", - "Timestamp": "2019-10-15T20:10:33.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.438700", + "Timestamp": "2024-05-16T13:46:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.146400", - "Timestamp": "2019-10-15T20:10:33.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.433700", + "Timestamp": "2024-05-16T13:46:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.146400", - "Timestamp": "2019-10-15T20:10:33.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.308700", + "Timestamp": "2024-05-16T13:46:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.046400", - "Timestamp": "2019-10-15T20:10:33.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.168100", + "Timestamp": "2024-05-16T13:46:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.046400", - "Timestamp": "2019-10-15T20:10:33.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.163100", + "Timestamp": "2024-05-16T13:46:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.379100", - "Timestamp": "2019-10-15T20:10:33.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.038100", + "Timestamp": "2024-05-16T13:46:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.379100", - "Timestamp": "2019-10-15T20:10:33.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.502800", + "Timestamp": "2024-05-16T13:46:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.349100", - "Timestamp": "2019-10-15T20:10:33.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.472800", + "Timestamp": "2024-05-16T13:46:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.349100", - "Timestamp": "2019-10-15T20:10:33.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.372800", + "Timestamp": "2024-05-16T13:46:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.249100", - "Timestamp": "2019-10-15T20:10:33.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.661200", + "Timestamp": "2024-05-16T13:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.249100", - "Timestamp": "2019-10-15T20:10:33.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.656200", + "Timestamp": "2024-05-16T13:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.260800", - "Timestamp": "2019-10-15T20:10:32.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.531200", + "Timestamp": "2024-05-16T13:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.260800", - "Timestamp": "2019-10-15T20:10:32.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.043700", + "Timestamp": "2024-05-16T13:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.230800", - "Timestamp": "2019-10-15T20:10:32.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.570100", + "Timestamp": "2024-05-16T13:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.230800", - "Timestamp": "2019-10-15T20:10:32.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.565100", + "Timestamp": "2024-05-16T13:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T20:10:32.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.440100", + "Timestamp": "2024-05-16T13:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T20:10:32.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.452900", + "Timestamp": "2024-05-16T13:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.404100", - "Timestamp": "2019-10-15T20:10:23.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.447900", + "Timestamp": "2024-05-16T13:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.404100", - "Timestamp": "2019-10-15T20:10:23.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.322900", + "Timestamp": "2024-05-16T13:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.404100", - "Timestamp": "2019-10-15T20:10:23.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213200", + "Timestamp": "2024-05-16T13:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.374100", - "Timestamp": "2019-10-15T20:10:23.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-16T13:46:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.374100", - "Timestamp": "2019-10-15T20:10:23.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096600", + "Timestamp": "2024-05-16T13:46:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.374100", - "Timestamp": "2019-10-15T20:10:23.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040300", + "Timestamp": "2024-05-16T13:46:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.274100", - "Timestamp": "2019-10-15T20:10:23.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.613500", + "Timestamp": "2024-05-16T13:46:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.274100", - "Timestamp": "2019-10-15T20:10:23.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.608500", + "Timestamp": "2024-05-16T13:46:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.274100", - "Timestamp": "2019-10-15T20:10:23.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.483500", + "Timestamp": "2024-05-16T13:46:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.139600", - "Timestamp": "2019-10-15T20:10:06.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.547100", + "Timestamp": "2024-05-16T13:46:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.179600", - "Timestamp": "2019-10-15T20:10:06.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.542100", + "Timestamp": "2024-05-16T13:46:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.079600", - "Timestamp": "2019-10-15T20:10:06.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.417100", + "Timestamp": "2024-05-16T13:46:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", + "AvailabilityZone": "ap-northeast-1c", "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.020100", - "Timestamp": "2019-10-15T20:10:05.000Z" + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.230600", + "Timestamp": "2024-05-16T13:46:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", + "AvailabilityZone": "ap-northeast-1c", "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.020100", - "Timestamp": "2019-10-15T20:10:05.000Z" + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.225600", + "Timestamp": "2024-05-16T13:46:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", + "AvailabilityZone": "ap-northeast-1c", "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.020100", - "Timestamp": "2019-10-15T20:10:05.000Z" + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.100600", + "Timestamp": "2024-05-16T13:46:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.992800", - "Timestamp": "2019-10-15T20:09:47.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.170800", + "Timestamp": "2024-05-16T13:46:14.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.992800", - "Timestamp": "2019-10-15T20:09:47.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.140800", + "Timestamp": "2024-05-16T13:46:14.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.992800", - "Timestamp": "2019-10-15T20:09:47.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.040800", + "Timestamp": "2024-05-16T13:46:14.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.016000", - "Timestamp": "2019-10-15T20:09:35.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.492800", + "Timestamp": "2024-05-16T13:46:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.678100", - "Timestamp": "2019-10-15T20:09:24.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.487800", + "Timestamp": "2024-05-16T13:46:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.678100", - "Timestamp": "2019-10-15T20:09:24.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.362800", + "Timestamp": "2024-05-16T13:46:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.678100", - "Timestamp": "2019-10-15T20:09:24.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.914400", + "Timestamp": "2024-05-16T13:46:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.648100", - "Timestamp": "2019-10-15T20:09:24.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.192000", + "Timestamp": "2024-05-16T13:46:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.648100", - "Timestamp": "2019-10-15T20:09:24.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.880100", + "Timestamp": "2024-05-16T13:46:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.648100", - "Timestamp": "2019-10-15T20:09:24.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.875100", + "Timestamp": "2024-05-16T13:46:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.548100", - "Timestamp": "2019-10-15T20:09:24.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.750100", + "Timestamp": "2024-05-16T13:46:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.548100", - "Timestamp": "2019-10-15T20:09:24.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311800", + "Timestamp": "2024-05-16T13:46:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.548100", - "Timestamp": "2019-10-15T20:09:24.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.306800", + "Timestamp": "2024-05-16T13:46:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.391600", - "Timestamp": "2019-10-15T20:09:09.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181800", + "Timestamp": "2024-05-16T13:46:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.391600", - "Timestamp": "2019-10-15T20:09:09.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.234000", + "Timestamp": "2024-05-16T13:46:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.361600", - "Timestamp": "2019-10-15T20:09:09.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.229000", + "Timestamp": "2024-05-16T13:46:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.361600", - "Timestamp": "2019-10-15T20:09:09.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.104000", + "Timestamp": "2024-05-16T13:46:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.261600", - "Timestamp": "2019-10-15T20:09:09.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.647400", + "Timestamp": "2024-05-16T13:46:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.261600", - "Timestamp": "2019-10-15T20:09:09.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.427800", + "Timestamp": "2024-05-16T13:45:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.505000", - "Timestamp": "2019-10-15T20:09:08.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.397800", + "Timestamp": "2024-05-16T13:45:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.505000", - "Timestamp": "2019-10-15T20:09:08.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.297800", + "Timestamp": "2024-05-16T13:45:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.505000", - "Timestamp": "2019-10-15T20:09:08.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.192800", + "Timestamp": "2024-05-16T13:45:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.metal-48xl", "ProductDescription": "Windows", - "SpotPrice": "0.326700", - "Timestamp": "2019-10-15T20:07:36.000Z" + "SpotPrice": "11.996400", + "Timestamp": "2024-05-16T13:45:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.462400", - "Timestamp": "2019-10-15T20:02:12.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124100", + "Timestamp": "2024-05-16T13:32:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.432400", - "Timestamp": "2019-10-15T20:02:12.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.699800", + "Timestamp": "2024-05-16T13:32:01.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.332400", - "Timestamp": "2019-10-15T20:02:12.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.669800", + "Timestamp": "2024-05-16T13:32:01.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.130900", - "Timestamp": "2019-10-15T20:01:43.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.569800", + "Timestamp": "2024-05-16T13:32:01.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.170900", - "Timestamp": "2019-10-15T20:01:43.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.982300", + "Timestamp": "2024-05-16T13:31:59.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.070900", - "Timestamp": "2019-10-15T20:01:43.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.878200", + "Timestamp": "2024-05-16T13:31:59.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.260800", - "Timestamp": "2019-10-15T20:01:08.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.461200", + "Timestamp": "2024-05-16T13:31:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.230800", - "Timestamp": "2019-10-15T20:01:08.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.456200", + "Timestamp": "2024-05-16T13:31:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T20:01:08.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.331200", + "Timestamp": "2024-05-16T13:31:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.273200", - "Timestamp": "2019-10-15T19:53:51.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.127200", + "Timestamp": "2024-05-16T13:31:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.243200", - "Timestamp": "2019-10-15T19:53:51.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.199000", + "Timestamp": "2024-05-16T13:31:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.143200", - "Timestamp": "2019-10-15T19:53:51.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.011900", + "Timestamp": "2024-05-16T13:31:54.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-15T19:53:33.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.006900", + "Timestamp": "2024-05-16T13:31:54.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.172700", - "Timestamp": "2019-10-15T19:53:33.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.881900", + "Timestamp": "2024-05-16T13:31:54.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.072700", - "Timestamp": "2019-10-15T19:53:33.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123500", + "Timestamp": "2024-05-16T13:31:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.422000", - "Timestamp": "2019-10-15T19:53:26.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163500", + "Timestamp": "2024-05-16T13:31:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.983700", - "Timestamp": "2019-10-15T19:53:10.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063500", + "Timestamp": "2024-05-16T13:31:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.953700", - "Timestamp": "2019-10-15T19:53:10.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.208300", + "Timestamp": "2024-05-16T13:31:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.853700", - "Timestamp": "2019-10-15T19:53:10.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.203300", + "Timestamp": "2024-05-16T13:31:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.013100", - "Timestamp": "2019-10-15T19:50:40.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.078300", + "Timestamp": "2024-05-16T13:31:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.013100", - "Timestamp": "2019-10-15T19:50:40.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142100", + "Timestamp": "2024-05-16T13:31:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.013100", - "Timestamp": "2019-10-15T19:50:40.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138400", + "Timestamp": "2024-05-16T13:31:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.063900", - "Timestamp": "2019-10-15T19:47:01.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082100", + "Timestamp": "2024-05-16T13:31:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.063900", - "Timestamp": "2019-10-15T19:47:01.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136300", + "Timestamp": "2024-05-16T13:31:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.063900", - "Timestamp": "2019-10-15T19:47:01.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132600", + "Timestamp": "2024-05-16T13:31:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.103900", - "Timestamp": "2019-10-15T19:47:01.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076300", + "Timestamp": "2024-05-16T13:31:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.103900", - "Timestamp": "2019-10-15T19:47:01.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.678500", + "Timestamp": "2024-05-16T13:31:47.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.103900", - "Timestamp": "2019-10-15T19:47:01.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.673500", + "Timestamp": "2024-05-16T13:31:47.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.003900", - "Timestamp": "2019-10-15T19:47:01.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.548500", + "Timestamp": "2024-05-16T13:31:47.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.003900", - "Timestamp": "2019-10-15T19:47:01.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.709000", + "Timestamp": "2024-05-16T13:31:47.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.003900", - "Timestamp": "2019-10-15T19:47:01.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.159900", + "Timestamp": "2024-05-16T13:31:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.131300", - "Timestamp": "2019-10-15T19:45:15.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.154900", + "Timestamp": "2024-05-16T13:31:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.171300", - "Timestamp": "2019-10-15T19:45:15.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.029900", + "Timestamp": "2024-05-16T13:31:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-15T19:45:15.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.470300", + "Timestamp": "2024-05-16T13:31:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.580800", - "Timestamp": "2019-10-15T19:43:07.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.802600", + "Timestamp": "2024-05-16T13:31:45.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.580800", - "Timestamp": "2019-10-15T19:43:07.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.097700", + "Timestamp": "2024-05-16T13:31:45.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.550800", - "Timestamp": "2019-10-15T19:43:07.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.810500", + "Timestamp": "2024-05-16T13:31:45.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.550800", - "Timestamp": "2019-10-15T19:43:07.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.805500", + "Timestamp": "2024-05-16T13:31:45.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.450800", - "Timestamp": "2019-10-15T19:43:07.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.680500", + "Timestamp": "2024-05-16T13:31:45.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.450800", - "Timestamp": "2019-10-15T19:43:07.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.003300", + "Timestamp": "2024-05-16T13:31:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "z1d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.835200", - "Timestamp": "2019-10-15T19:42:32.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.998300", + "Timestamp": "2024-05-16T13:31:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.835200", - "Timestamp": "2019-10-15T19:42:32.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.873300", + "Timestamp": "2024-05-16T13:31:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "z1d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.835200", - "Timestamp": "2019-10-15T19:42:32.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.525700", + "Timestamp": "2024-05-16T13:31:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "z1d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.757200", - "Timestamp": "2019-10-15T19:41:45.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.520700", + "Timestamp": "2024-05-16T13:31:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.757200", - "Timestamp": "2019-10-15T19:41:45.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.395700", + "Timestamp": "2024-05-16T13:31:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "z1d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.757200", - "Timestamp": "2019-10-15T19:41:45.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.011400", + "Timestamp": "2024-05-16T13:31:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "z1d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.727200", - "Timestamp": "2019-10-15T19:41:45.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.006400", + "Timestamp": "2024-05-16T13:31:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.727200", - "Timestamp": "2019-10-15T19:41:45.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.881400", + "Timestamp": "2024-05-16T13:31:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "z1d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.727200", - "Timestamp": "2019-10-15T19:41:45.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.118300", + "Timestamp": "2024-05-16T13:31:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "z1d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.627200", - "Timestamp": "2019-10-15T19:41:45.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.088300", + "Timestamp": "2024-05-16T13:31:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.627200", - "Timestamp": "2019-10-15T19:41:45.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.988300", + "Timestamp": "2024-05-16T13:31:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "z1d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.627200", - "Timestamp": "2019-10-15T19:41:45.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.325500", + "Timestamp": "2024-05-16T13:31:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.905200", - "Timestamp": "2019-10-15T19:41:41.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.365500", + "Timestamp": "2024-05-16T13:31:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.905200", - "Timestamp": "2019-10-15T19:41:41.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.265500", + "Timestamp": "2024-05-16T13:31:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.186800", - "Timestamp": "2019-10-15T19:41:33.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.325000", + "Timestamp": "2024-05-16T13:31:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.186800", - "Timestamp": "2019-10-15T19:41:33.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.320000", + "Timestamp": "2024-05-16T13:31:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.627200", - "Timestamp": "2019-10-15T19:41:30.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195000", + "Timestamp": "2024-05-16T13:31:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.627200", - "Timestamp": "2019-10-15T19:41:30.000Z" + "SpotPrice": "0.858200", + "Timestamp": "2024-05-16T13:31:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.597200", - "Timestamp": "2019-10-15T19:41:30.000Z" + "SpotPrice": "0.853200", + "Timestamp": "2024-05-16T13:31:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.597200", - "Timestamp": "2019-10-15T19:41:30.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.728200", + "Timestamp": "2024-05-16T13:31:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.497200", - "Timestamp": "2019-10-15T19:41:30.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.383400", + "Timestamp": "2024-05-16T13:31:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.497200", - "Timestamp": "2019-10-15T19:41:30.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.988200", + "Timestamp": "2024-05-16T13:31:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.905200", - "Timestamp": "2019-10-15T19:40:40.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.214900", + "Timestamp": "2024-05-16T13:31:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.905200", - "Timestamp": "2019-10-15T19:40:40.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.209900", + "Timestamp": "2024-05-16T13:31:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.627200", - "Timestamp": "2019-10-15T19:40:38.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084900", + "Timestamp": "2024-05-16T13:31:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.597200", - "Timestamp": "2019-10-15T19:40:38.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.886500", + "Timestamp": "2024-05-16T13:31:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.497200", - "Timestamp": "2019-10-15T19:40:38.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.881500", + "Timestamp": "2024-05-16T13:31:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.774400", - "Timestamp": "2019-10-15T19:38:14.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.756500", + "Timestamp": "2024-05-16T13:31:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.774400", - "Timestamp": "2019-10-15T19:38:14.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.171200", + "Timestamp": "2024-05-16T13:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.744400", - "Timestamp": "2019-10-15T19:38:14.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.141200", + "Timestamp": "2024-05-16T13:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.744400", - "Timestamp": "2019-10-15T19:38:14.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.041200", + "Timestamp": "2024-05-16T13:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.644400", - "Timestamp": "2019-10-15T19:38:14.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.723500", + "Timestamp": "2024-05-16T13:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.644400", - "Timestamp": "2019-10-15T19:38:14.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T13:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.585300", - "Timestamp": "2019-10-15T19:37:34.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.623600", + "Timestamp": "2024-05-16T13:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.957900", - "Timestamp": "2019-10-15T19:37:10.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.618600", + "Timestamp": "2024-05-16T13:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.927900", - "Timestamp": "2019-10-15T19:37:10.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.493600", + "Timestamp": "2024-05-16T13:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.827900", - "Timestamp": "2019-10-15T19:37:10.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.375500", + "Timestamp": "2024-05-16T13:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.131900", - "Timestamp": "2019-10-15T19:36:53.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.183300", + "Timestamp": "2024-05-16T13:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.171900", - "Timestamp": "2019-10-15T19:36:53.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.178300", + "Timestamp": "2024-05-16T13:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.071900", - "Timestamp": "2019-10-15T19:36:53.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.053300", + "Timestamp": "2024-05-16T13:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.094900", - "Timestamp": "2019-10-15T19:36:36.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437600", + "Timestamp": "2024-05-16T13:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5dn.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126300", - "Timestamp": "2019-10-15T19:31:23.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.498600", + "Timestamp": "2024-05-16T13:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.905100", - "Timestamp": "2019-10-15T19:28:41.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.493600", + "Timestamp": "2024-05-16T13:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.large", - "ProductDescription": "Windows", - "SpotPrice": "0.163300", - "Timestamp": "2019-10-15T19:27:42.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.368600", + "Timestamp": "2024-05-16T13:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.030200", - "Timestamp": "2019-10-15T19:25:33.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.440700", + "Timestamp": "2024-05-16T13:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.904800", - "Timestamp": "2019-10-15T19:20:35.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.563600", + "Timestamp": "2024-05-16T13:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.874800", - "Timestamp": "2019-10-15T19:20:35.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.558600", + "Timestamp": "2024-05-16T13:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.774800", - "Timestamp": "2019-10-15T19:20:35.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.433600", + "Timestamp": "2024-05-16T13:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.134500", - "Timestamp": "2019-10-15T19:19:42.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "vt1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.903400", + "Timestamp": "2024-05-16T13:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.174500", - "Timestamp": "2019-10-15T19:19:42.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "vt1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.873400", + "Timestamp": "2024-05-16T13:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.074500", - "Timestamp": "2019-10-15T19:19:42.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "vt1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.773400", + "Timestamp": "2024-05-16T13:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.280200", - "Timestamp": "2019-10-15T19:19:42.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.119500", + "Timestamp": "2024-05-16T13:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.250200", - "Timestamp": "2019-10-15T19:19:42.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.600000", + "Timestamp": "2024-05-16T13:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.150200", - "Timestamp": "2019-10-15T19:19:42.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.595000", + "Timestamp": "2024-05-16T13:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094300", - "Timestamp": "2019-10-15T19:14:31.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.470000", + "Timestamp": "2024-05-16T13:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-15T19:14:31.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.481300", + "Timestamp": "2024-05-16T13:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034300", - "Timestamp": "2019-10-15T19:14:31.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.451300", + "Timestamp": "2024-05-16T13:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.020100", - "Timestamp": "2019-10-15T19:14:08.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.351300", + "Timestamp": "2024-05-16T13:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.020100", - "Timestamp": "2019-10-15T19:14:08.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.493500", + "Timestamp": "2024-05-16T13:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.020100", - "Timestamp": "2019-10-15T19:14:08.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.456800", + "Timestamp": "2024-05-16T13:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.391600", - "Timestamp": "2019-10-15T19:08:08.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123300", + "Timestamp": "2024-05-16T13:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.361600", - "Timestamp": "2019-10-15T19:08:08.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119300", + "Timestamp": "2024-05-16T13:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.261600", - "Timestamp": "2019-10-15T19:08:08.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063300", + "Timestamp": "2024-05-16T13:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "5.932300", - "Timestamp": "2019-10-15T19:06:34.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.849900", + "Timestamp": "2024-05-16T13:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "5.932300", - "Timestamp": "2019-10-15T19:06:34.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.844900", + "Timestamp": "2024-05-16T13:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "5.932300", - "Timestamp": "2019-10-15T19:06:34.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.719900", + "Timestamp": "2024-05-16T13:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "x1.32xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "5.902300", - "Timestamp": "2019-10-15T19:06:34.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123500", + "Timestamp": "2024-05-16T13:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "x1.32xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "5.902300", - "Timestamp": "2019-10-15T19:06:34.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119800", + "Timestamp": "2024-05-16T13:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "x1.32xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "5.902300", - "Timestamp": "2019-10-15T19:06:34.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063500", + "Timestamp": "2024-05-16T13:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "5.802300", - "Timestamp": "2019-10-15T19:06:34.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.768700", + "Timestamp": "2024-05-16T13:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "5.802300", - "Timestamp": "2019-10-15T19:06:34.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.763700", + "Timestamp": "2024-05-16T13:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "5.802300", - "Timestamp": "2019-10-15T19:06:34.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.638700", + "Timestamp": "2024-05-16T13:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.326700", - "Timestamp": "2019-10-15T19:04:36.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159300", + "Timestamp": "2024-05-16T13:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.700500", - "Timestamp": "2019-10-15T18:59:48.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155600", + "Timestamp": "2024-05-16T13:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.670500", - "Timestamp": "2019-10-15T18:59:48.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099300", + "Timestamp": "2024-05-16T13:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.570500", - "Timestamp": "2019-10-15T18:59:48.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.180800", + "Timestamp": "2024-05-16T13:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.992800", - "Timestamp": "2019-10-15T18:59:23.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.176800", + "Timestamp": "2024-05-16T13:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.large", - "ProductDescription": "Windows", - "SpotPrice": "0.163300", - "Timestamp": "2019-10-15T18:54:42.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120800", + "Timestamp": "2024-05-16T13:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.992800", - "Timestamp": "2019-10-15T18:51:23.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.106000", + "Timestamp": "2024-05-16T13:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.260800", - "Timestamp": "2019-10-15T18:44:29.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.101000", + "Timestamp": "2024-05-16T13:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.230800", - "Timestamp": "2019-10-15T18:44:29.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.976000", + "Timestamp": "2024-05-16T13:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T18:44:29.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.651100", + "Timestamp": "2024-05-16T13:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "11.690300", - "Timestamp": "2019-10-15T18:43:30.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.621100", + "Timestamp": "2024-05-16T13:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "11.690300", - "Timestamp": "2019-10-15T18:43:30.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.521100", + "Timestamp": "2024-05-16T13:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "11.690300", - "Timestamp": "2019-10-15T18:43:30.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.370200", + "Timestamp": "2024-05-16T13:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.498800", - "Timestamp": "2019-10-15T18:43:29.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.365200", + "Timestamp": "2024-05-16T13:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.498800", - "Timestamp": "2019-10-15T18:43:29.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.240200", + "Timestamp": "2024-05-16T13:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.498800", - "Timestamp": "2019-10-15T18:43:29.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.585800", + "Timestamp": "2024-05-16T13:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.573200", - "Timestamp": "2019-10-15T18:43:23.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.580800", + "Timestamp": "2024-05-16T13:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.543200", - "Timestamp": "2019-10-15T18:43:23.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.455800", + "Timestamp": "2024-05-16T13:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.443200", - "Timestamp": "2019-10-15T18:43:23.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.311700", + "Timestamp": "2024-05-16T13:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-15T18:42:57.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.306700", + "Timestamp": "2024-05-16T13:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.174300", - "Timestamp": "2019-10-15T18:42:57.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.181700", + "Timestamp": "2024-05-16T13:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.074300", - "Timestamp": "2019-10-15T18:42:57.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.281800", + "Timestamp": "2024-05-16T13:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.201900", - "Timestamp": "2019-10-15T18:42:52.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.276800", + "Timestamp": "2024-05-16T13:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.171900", - "Timestamp": "2019-10-15T18:42:52.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.151800", + "Timestamp": "2024-05-16T13:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.071900", - "Timestamp": "2019-10-15T18:42:52.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.117700", + "Timestamp": "2024-05-16T13:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.869800", - "Timestamp": "2019-10-15T18:42:40.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.066100", + "Timestamp": "2024-05-16T13:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.249300", - "Timestamp": "2019-10-15T18:40:27.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.112700", + "Timestamp": "2024-05-16T13:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.249300", - "Timestamp": "2019-10-15T18:40:27.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.061100", + "Timestamp": "2024-05-16T13:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.249300", - "Timestamp": "2019-10-15T18:40:27.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.987700", + "Timestamp": "2024-05-16T13:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.176400", - "Timestamp": "2019-10-15T18:39:59.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.936100", + "Timestamp": "2024-05-16T13:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.176400", - "Timestamp": "2019-10-15T18:39:59.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.546600", + "Timestamp": "2024-05-16T13:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.146400", - "Timestamp": "2019-10-15T18:39:59.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.441700", + "Timestamp": "2024-05-16T13:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.146400", - "Timestamp": "2019-10-15T18:39:59.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.436700", + "Timestamp": "2024-05-16T13:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.046400", - "Timestamp": "2019-10-15T18:39:59.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.311700", + "Timestamp": "2024-05-16T13:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.046400", - "Timestamp": "2019-10-15T18:39:59.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165700", + "Timestamp": "2024-05-16T13:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.990400", - "Timestamp": "2019-10-15T18:37:27.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161700", + "Timestamp": "2024-05-16T13:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.990400", - "Timestamp": "2019-10-15T18:37:27.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T13:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.123100", - "Timestamp": "2019-10-15T18:37:26.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.744600", + "Timestamp": "2024-05-16T13:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.123100", - "Timestamp": "2019-10-15T18:37:26.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.739600", + "Timestamp": "2024-05-16T13:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.123100", - "Timestamp": "2019-10-15T18:37:26.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.614600", + "Timestamp": "2024-05-16T13:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.163100", - "Timestamp": "2019-10-15T18:37:26.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146400", + "Timestamp": "2024-05-16T13:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.163100", - "Timestamp": "2019-10-15T18:37:26.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142700", + "Timestamp": "2024-05-16T13:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.163100", - "Timestamp": "2019-10-15T18:37:26.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086400", + "Timestamp": "2024-05-16T13:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.063100", - "Timestamp": "2019-10-15T18:37:26.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.704600", + "Timestamp": "2024-05-16T13:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.063100", - "Timestamp": "2019-10-15T18:37:26.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077300", + "Timestamp": "2024-05-16T13:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.063100", - "Timestamp": "2019-10-15T18:37:26.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.048300", + "Timestamp": "2024-05-16T13:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.272000", - "Timestamp": "2019-10-15T18:36:30.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017300", + "Timestamp": "2024-05-16T13:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.136700", - "Timestamp": "2019-10-15T18:36:13.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157900", + "Timestamp": "2024-05-16T13:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.136700", - "Timestamp": "2019-10-15T18:36:13.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154200", + "Timestamp": "2024-05-16T13:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.136700", - "Timestamp": "2019-10-15T18:36:13.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097900", + "Timestamp": "2024-05-16T13:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "17.494400", - "Timestamp": "2019-10-15T18:36:11.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.454400", + "Timestamp": "2024-05-16T13:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "17.494400", - "Timestamp": "2019-10-15T18:36:11.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.528100", + "Timestamp": "2024-05-16T13:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.075800", - "Timestamp": "2019-10-15T18:35:55.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.523100", + "Timestamp": "2024-05-16T13:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.075800", - "Timestamp": "2019-10-15T18:35:55.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.398100", + "Timestamp": "2024-05-16T13:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.075800", - "Timestamp": "2019-10-15T18:35:55.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.194500", + "Timestamp": "2024-05-16T13:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.115800", - "Timestamp": "2019-10-15T18:35:55.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190800", + "Timestamp": "2024-05-16T13:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.115800", - "Timestamp": "2019-10-15T18:35:55.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134500", + "Timestamp": "2024-05-16T13:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.115800", - "Timestamp": "2019-10-15T18:35:55.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.425800", + "Timestamp": "2024-05-16T13:31:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.015800", - "Timestamp": "2019-10-15T18:35:55.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.420800", + "Timestamp": "2024-05-16T13:31:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.015800", - "Timestamp": "2019-10-15T18:35:55.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.295800", + "Timestamp": "2024-05-16T13:31:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.015800", - "Timestamp": "2019-10-15T18:35:55.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.051900", + "Timestamp": "2024-05-16T13:31:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094300", - "Timestamp": "2019-10-15T18:35:34.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.046900", + "Timestamp": "2024-05-16T13:31:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-15T18:35:34.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.921900", + "Timestamp": "2024-05-16T13:31:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034300", - "Timestamp": "2019-10-15T18:35:34.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.917100", + "Timestamp": "2024-05-16T13:31:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.653200", - "Timestamp": "2019-10-15T18:35:23.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.316400", + "Timestamp": "2024-05-16T13:31:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.653200", - "Timestamp": "2019-10-15T18:35:23.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.311400", + "Timestamp": "2024-05-16T13:31:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.653200", - "Timestamp": "2019-10-15T18:35:23.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186400", + "Timestamp": "2024-05-16T13:31:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.623200", - "Timestamp": "2019-10-15T18:35:23.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.701200", + "Timestamp": "2024-05-16T13:31:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.623200", - "Timestamp": "2019-10-15T18:35:23.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.696200", + "Timestamp": "2024-05-16T13:31:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.623200", - "Timestamp": "2019-10-15T18:35:23.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.571200", + "Timestamp": "2024-05-16T13:31:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.523200", - "Timestamp": "2019-10-15T18:35:23.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.738900", + "Timestamp": "2024-05-16T13:31:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.523200", - "Timestamp": "2019-10-15T18:35:23.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.733900", + "Timestamp": "2024-05-16T13:31:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.523200", - "Timestamp": "2019-10-15T18:35:23.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.608900", + "Timestamp": "2024-05-16T13:31:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", + "AvailabilityZone": "ap-northeast-1c", "InstanceType": "m4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.382700", - "Timestamp": "2019-10-15T18:35:17.000Z" + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.576800", + "Timestamp": "2024-05-16T13:31:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", + "AvailabilityZone": "ap-northeast-1c", "InstanceType": "m4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.352700", - "Timestamp": "2019-10-15T18:35:17.000Z" + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.546800", + "Timestamp": "2024-05-16T13:31:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", + "AvailabilityZone": "ap-northeast-1c", "InstanceType": "m4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.252700", - "Timestamp": "2019-10-15T18:35:17.000Z" + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.446800", + "Timestamp": "2024-05-16T13:31:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.249400", - "Timestamp": "2019-10-15T18:35:14.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.832400", + "Timestamp": "2024-05-16T13:31:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "11.736400", - "Timestamp": "2019-10-15T18:35:11.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172400", + "Timestamp": "2024-05-16T13:31:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "11.736400", - "Timestamp": "2019-10-15T18:35:11.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168400", + "Timestamp": "2024-05-16T13:31:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "11.706400", - "Timestamp": "2019-10-15T18:35:11.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-16T13:31:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "11.706400", - "Timestamp": "2019-10-15T18:35:11.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.193900", + "Timestamp": "2024-05-16T13:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "11.606400", - "Timestamp": "2019-10-15T18:35:11.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190200", + "Timestamp": "2024-05-16T13:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "11.606400", - "Timestamp": "2019-10-15T18:35:11.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133900", + "Timestamp": "2024-05-16T13:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.273300", - "Timestamp": "2019-10-15T18:35:03.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091600", + "Timestamp": "2024-05-16T13:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.273300", - "Timestamp": "2019-10-15T18:35:03.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087900", + "Timestamp": "2024-05-16T13:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.273300", - "Timestamp": "2019-10-15T18:35:03.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031600", + "Timestamp": "2024-05-16T13:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.143800", - "Timestamp": "2019-10-15T18:35:02.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063300", + "Timestamp": "2024-05-16T13:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.113800", - "Timestamp": "2019-10-15T18:35:02.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003300", + "Timestamp": "2024-05-16T13:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.013800", - "Timestamp": "2019-10-15T18:35:02.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003300", + "Timestamp": "2024-05-16T13:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.034200", - "Timestamp": "2019-10-15T18:34:44.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.730400", + "Timestamp": "2024-05-16T13:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.034200", - "Timestamp": "2019-10-15T18:34:44.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.702700", + "Timestamp": "2024-05-16T13:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.034200", - "Timestamp": "2019-10-15T18:34:44.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.697700", + "Timestamp": "2024-05-16T13:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.995200", - "Timestamp": "2019-10-15T18:34:20.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.572700", + "Timestamp": "2024-05-16T13:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.995200", - "Timestamp": "2019-10-15T18:34:20.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.634500", + "Timestamp": "2024-05-16T13:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.995200", - "Timestamp": "2019-10-15T18:34:20.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.629500", + "Timestamp": "2024-05-16T13:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.256100", - "Timestamp": "2019-10-15T18:33:00.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.504500", + "Timestamp": "2024-05-16T13:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.256100", - "Timestamp": "2019-10-15T18:33:00.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.129000", + "Timestamp": "2024-05-16T13:31:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.226100", - "Timestamp": "2019-10-15T18:33:00.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.099000", + "Timestamp": "2024-05-16T13:31:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.226100", - "Timestamp": "2019-10-15T18:33:00.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.999000", + "Timestamp": "2024-05-16T13:31:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.126100", - "Timestamp": "2019-10-15T18:33:00.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.716600", + "Timestamp": "2024-05-16T13:31:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.126100", - "Timestamp": "2019-10-15T18:33:00.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.958300", + "Timestamp": "2024-05-16T13:31:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.256100", - "Timestamp": "2019-10-15T18:33:00.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231200", + "Timestamp": "2024-05-16T13:31:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.226100", - "Timestamp": "2019-10-15T18:33:00.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.069400", + "Timestamp": "2024-05-16T13:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.126100", - "Timestamp": "2019-10-15T18:33:00.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.512000", + "Timestamp": "2024-05-16T13:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.261700", - "Timestamp": "2019-10-15T18:25:48.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.507000", + "Timestamp": "2024-05-16T13:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.231700", - "Timestamp": "2019-10-15T18:25:48.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.382000", + "Timestamp": "2024-05-16T13:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.131700", - "Timestamp": "2019-10-15T18:25:48.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.686900", + "Timestamp": "2024-05-16T13:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.990400", - "Timestamp": "2019-10-15T18:24:11.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.225500", + "Timestamp": "2024-05-16T13:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-15T18:18:24.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.220500", + "Timestamp": "2024-05-16T13:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.237000", - "Timestamp": "2019-10-15T18:18:24.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.095500", + "Timestamp": "2024-05-16T13:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.137000", - "Timestamp": "2019-10-15T18:18:24.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441500", + "Timestamp": "2024-05-16T13:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "4.164200", - "Timestamp": "2019-10-15T18:18:23.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.812200", + "Timestamp": "2024-05-16T13:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "4.134200", - "Timestamp": "2019-10-15T18:18:23.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.735000", + "Timestamp": "2024-05-16T13:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "4.034200", - "Timestamp": "2019-10-15T18:18:23.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.502900", + "Timestamp": "2024-05-16T13:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.150300", - "Timestamp": "2019-10-15T18:17:47.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.705000", + "Timestamp": "2024-05-16T13:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.120300", - "Timestamp": "2019-10-15T18:17:47.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.472900", + "Timestamp": "2024-05-16T13:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.020300", - "Timestamp": "2019-10-15T18:17:47.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.605000", + "Timestamp": "2024-05-16T13:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.326700", - "Timestamp": "2019-10-15T18:17:35.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.372900", + "Timestamp": "2024-05-16T13:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.135100", - "Timestamp": "2019-10-15T18:09:42.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.360600", + "Timestamp": "2024-05-16T13:31:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.176400", - "Timestamp": "2019-10-15T18:01:47.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.051500", + "Timestamp": "2024-05-16T13:31:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.146400", - "Timestamp": "2019-10-15T18:01:47.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.419100", + "Timestamp": "2024-05-16T13:31:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.046400", - "Timestamp": "2019-10-15T18:01:47.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Windows", + "SpotPrice": "9.033900", + "Timestamp": "2024-05-16T13:31:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.396900", - "Timestamp": "2019-10-15T18:01:23.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.239400", + "Timestamp": "2024-05-16T13:31:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.366900", - "Timestamp": "2019-10-15T18:01:23.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.234400", + "Timestamp": "2024-05-16T13:31:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.266900", - "Timestamp": "2019-10-15T18:01:23.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.109400", + "Timestamp": "2024-05-16T13:31:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.261500", - "Timestamp": "2019-10-15T18:01:07.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.480100", + "Timestamp": "2024-05-16T13:31:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.231500", - "Timestamp": "2019-10-15T18:01:07.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T13:31:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.131500", - "Timestamp": "2019-10-15T18:01:07.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432700", + "Timestamp": "2024-05-16T13:31:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.990900", - "Timestamp": "2019-10-15T17:53:33.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144900", + "Timestamp": "2024-05-16T13:31:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.459600", - "Timestamp": "2019-10-15T17:52:48.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141200", + "Timestamp": "2024-05-16T13:31:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.429600", - "Timestamp": "2019-10-15T17:52:48.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084900", + "Timestamp": "2024-05-16T13:31:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.329600", - "Timestamp": "2019-10-15T17:52:48.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071700", + "Timestamp": "2024-05-16T13:31:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252500", - "Timestamp": "2019-10-15T17:51:31.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042700", + "Timestamp": "2024-05-16T13:31:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.997000", - "Timestamp": "2019-10-15T17:47:16.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011700", + "Timestamp": "2024-05-16T13:31:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.997000", - "Timestamp": "2019-10-15T17:47:16.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.801600", + "Timestamp": "2024-05-16T13:31:17.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.997000", - "Timestamp": "2019-10-15T17:47:16.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.796600", + "Timestamp": "2024-05-16T13:31:17.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.172200", - "Timestamp": "2019-10-15T17:43:42.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.671600", + "Timestamp": "2024-05-16T13:31:17.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.172200", - "Timestamp": "2019-10-15T17:43:42.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.787600", + "Timestamp": "2024-05-16T13:31:17.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.172200", - "Timestamp": "2019-10-15T17:43:42.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.164200", + "Timestamp": "2024-05-16T13:31:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.212200", - "Timestamp": "2019-10-15T17:43:42.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.632500", + "Timestamp": "2024-05-16T13:31:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.212200", - "Timestamp": "2019-10-15T17:43:42.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.919400", + "Timestamp": "2024-05-16T13:31:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.212200", - "Timestamp": "2019-10-15T17:43:42.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113900", + "Timestamp": "2024-05-16T13:31:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.112200", - "Timestamp": "2019-10-15T17:43:42.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.328800", + "Timestamp": "2024-05-16T13:31:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.112200", - "Timestamp": "2019-10-15T17:43:42.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323800", + "Timestamp": "2024-05-16T13:31:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.112200", - "Timestamp": "2019-10-15T17:43:42.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.198800", + "Timestamp": "2024-05-16T13:31:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.766000", - "Timestamp": "2019-10-15T17:43:38.000Z" - }, - { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.766000", - "Timestamp": "2019-10-15T17:43:38.000Z" - }, - { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.296200", - "Timestamp": "2019-10-15T17:42:44.000Z" - }, - { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.296200", - "Timestamp": "2019-10-15T17:42:44.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.477300", + "Timestamp": "2024-05-16T13:31:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.296200", - "Timestamp": "2019-10-15T17:42:44.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.447300", + "Timestamp": "2024-05-16T13:31:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.774400", - "Timestamp": "2019-10-15T17:42:41.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.347300", + "Timestamp": "2024-05-16T13:31:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.774400", - "Timestamp": "2019-10-15T17:42:41.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.791300", + "Timestamp": "2024-05-16T13:31:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.774400", - "Timestamp": "2019-10-15T17:42:41.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.786300", + "Timestamp": "2024-05-16T13:31:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.744400", - "Timestamp": "2019-10-15T17:42:41.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.661300", + "Timestamp": "2024-05-16T13:31:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.744400", - "Timestamp": "2019-10-15T17:42:41.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.581700", + "Timestamp": "2024-05-16T13:31:05.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.744400", - "Timestamp": "2019-10-15T17:42:41.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.873000", + "Timestamp": "2024-05-16T13:31:05.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.644400", - "Timestamp": "2019-10-15T17:42:41.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.812000", + "Timestamp": "2024-05-16T13:31:05.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.644400", - "Timestamp": "2019-10-15T17:42:41.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.571500", + "Timestamp": "2024-05-16T13:31:05.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.644400", - "Timestamp": "2019-10-15T17:42:41.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.855200", + "Timestamp": "2024-05-16T13:31:04.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.218000", - "Timestamp": "2019-10-15T17:42:14.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.850200", + "Timestamp": "2024-05-16T13:31:04.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.218000", - "Timestamp": "2019-10-15T17:42:14.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.725200", + "Timestamp": "2024-05-16T13:31:04.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.218000", - "Timestamp": "2019-10-15T17:42:14.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.729100", + "Timestamp": "2024-05-16T13:31:04.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.188000", - "Timestamp": "2019-10-15T17:42:14.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.724100", + "Timestamp": "2024-05-16T13:31:04.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.188000", - "Timestamp": "2019-10-15T17:42:14.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.599100", + "Timestamp": "2024-05-16T13:31:04.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.188000", - "Timestamp": "2019-10-15T17:42:14.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.334300", + "Timestamp": "2024-05-16T13:31:03.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.088000", - "Timestamp": "2019-10-15T17:42:14.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.783300", + "Timestamp": "2024-05-16T13:31:03.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.088000", - "Timestamp": "2019-10-15T17:42:14.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.778300", + "Timestamp": "2024-05-16T13:31:03.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.088000", - "Timestamp": "2019-10-15T17:42:14.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.653300", + "Timestamp": "2024-05-16T13:31:03.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.060400", - "Timestamp": "2019-10-15T17:42:13.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T13:31:03.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.060400", - "Timestamp": "2019-10-15T17:42:13.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145800", + "Timestamp": "2024-05-16T13:31:03.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.060400", - "Timestamp": "2019-10-15T17:42:13.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045800", + "Timestamp": "2024-05-16T13:31:03.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.218000", - "Timestamp": "2019-10-15T17:42:02.000Z" + "SpotPrice": "0.157400", + "Timestamp": "2024-05-16T13:30:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.218000", - "Timestamp": "2019-10-15T17:42:02.000Z" + "SpotPrice": "0.170100", + "Timestamp": "2024-05-16T13:30:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.188000", - "Timestamp": "2019-10-15T17:42:02.000Z" + "SpotPrice": "0.153400", + "Timestamp": "2024-05-16T13:30:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.188000", - "Timestamp": "2019-10-15T17:42:02.000Z" + "SpotPrice": "0.166100", + "Timestamp": "2024-05-16T13:30:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.088000", - "Timestamp": "2019-10-15T17:42:02.000Z" + "SpotPrice": "0.097400", + "Timestamp": "2024-05-16T13:30:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.088000", - "Timestamp": "2019-10-15T17:42:02.000Z" - }, - { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.125400", - "Timestamp": "2019-10-15T17:41:20.000Z" - }, - { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.125400", - "Timestamp": "2019-10-15T17:41:20.000Z" - }, - { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.125400", - "Timestamp": "2019-10-15T17:41:20.000Z" - }, - { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.165400", - "Timestamp": "2019-10-15T17:41:20.000Z" + "SpotPrice": "0.110100", + "Timestamp": "2024-05-16T13:30:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.165400", - "Timestamp": "2019-10-15T17:41:20.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.238800", + "Timestamp": "2024-05-16T13:30:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.165400", - "Timestamp": "2019-10-15T17:41:20.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.971000", + "Timestamp": "2024-05-16T13:30:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.065400", - "Timestamp": "2019-10-15T17:41:20.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.073700", + "Timestamp": "2024-05-16T13:30:55.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.065400", - "Timestamp": "2019-10-15T17:41:20.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.027700", + "Timestamp": "2024-05-16T13:30:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.065400", - "Timestamp": "2019-10-15T17:41:20.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.022700", + "Timestamp": "2024-05-16T13:30:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.249400", - "Timestamp": "2019-10-15T17:40:44.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.897700", + "Timestamp": "2024-05-16T13:30:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.249400", - "Timestamp": "2019-10-15T17:40:44.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010600", + "Timestamp": "2024-05-16T13:23:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.249400", - "Timestamp": "2019-10-15T17:40:44.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-16T13:17:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.176400", - "Timestamp": "2019-10-15T17:40:23.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111800", + "Timestamp": "2024-05-16T13:17:04.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.146400", - "Timestamp": "2019-10-15T17:40:23.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416900", + "Timestamp": "2024-05-16T13:17:01.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.046400", - "Timestamp": "2019-10-15T17:40:23.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.156000", + "Timestamp": "2024-05-16T13:17:00.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "p2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.575400", - "Timestamp": "2019-10-15T17:40:04.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.151000", + "Timestamp": "2024-05-16T13:17:00.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "p2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.575400", - "Timestamp": "2019-10-15T17:40:04.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.026000", + "Timestamp": "2024-05-16T13:17:00.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "p2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.615400", - "Timestamp": "2019-10-15T17:40:04.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.425900", + "Timestamp": "2024-05-16T13:16:59.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "p2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.615400", - "Timestamp": "2019-10-15T17:40:04.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.641500", + "Timestamp": "2024-05-16T13:16:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "p2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.515400", - "Timestamp": "2019-10-15T17:40:04.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.463300", + "Timestamp": "2024-05-16T13:16:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "p2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.515400", - "Timestamp": "2019-10-15T17:40:04.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.503300", + "Timestamp": "2024-05-16T13:16:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.910900", - "Timestamp": "2019-10-15T17:39:41.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.403300", + "Timestamp": "2024-05-16T13:16:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.910900", - "Timestamp": "2019-10-15T17:39:41.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.333600", + "Timestamp": "2024-05-16T13:16:55.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.910900", - "Timestamp": "2019-10-15T17:39:41.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.098200", + "Timestamp": "2024-05-16T13:16:55.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "p2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.699400", - "Timestamp": "2019-10-15T17:38:52.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.943700", + "Timestamp": "2024-05-16T13:16:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "p2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.699400", - "Timestamp": "2019-10-15T17:38:52.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.785500", + "Timestamp": "2024-05-16T13:16:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5dn.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124700", - "Timestamp": "2019-10-15T17:36:35.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.755500", + "Timestamp": "2024-05-16T13:16:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.056200", - "Timestamp": "2019-10-15T17:35:57.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.655500", + "Timestamp": "2024-05-16T13:16:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.026200", - "Timestamp": "2019-10-15T17:35:57.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.278200", + "Timestamp": "2024-05-16T13:16:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.926200", - "Timestamp": "2019-10-15T17:35:57.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.273200", + "Timestamp": "2024-05-16T13:16:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.652000", - "Timestamp": "2019-10-15T17:32:13.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.148200", + "Timestamp": "2024-05-16T13:16:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.652000", - "Timestamp": "2019-10-15T17:32:13.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.553100", + "Timestamp": "2024-05-16T13:16:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.652000", - "Timestamp": "2019-10-15T17:32:13.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.980100", + "Timestamp": "2024-05-16T13:16:50.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.622000", - "Timestamp": "2019-10-15T17:32:13.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.950100", + "Timestamp": "2024-05-16T13:16:50.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.622000", - "Timestamp": "2019-10-15T17:32:13.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.850100", + "Timestamp": "2024-05-16T13:16:50.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.622000", - "Timestamp": "2019-10-15T17:32:13.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116100", + "Timestamp": "2024-05-16T13:16:49.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.522000", - "Timestamp": "2019-10-15T17:32:13.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T13:16:49.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.522000", - "Timestamp": "2019-10-15T17:32:13.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056100", + "Timestamp": "2024-05-16T13:16:49.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.522000", - "Timestamp": "2019-10-15T17:32:13.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.848200", + "Timestamp": "2024-05-16T13:16:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.442000", - "Timestamp": "2019-10-15T17:31:42.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.818200", + "Timestamp": "2024-05-16T13:16:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.743000", - "Timestamp": "2019-10-15T17:23:02.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.718200", + "Timestamp": "2024-05-16T13:16:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.743000", - "Timestamp": "2019-10-15T17:23:02.000Z" + "SpotPrice": "2.834000", + "Timestamp": "2024-05-16T13:16:47.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.743000", - "Timestamp": "2019-10-15T17:22:26.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.631600", + "Timestamp": "2024-05-16T13:16:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.743000", - "Timestamp": "2019-10-15T17:22:26.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.626600", + "Timestamp": "2024-05-16T13:16:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.743000", - "Timestamp": "2019-10-15T17:22:26.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.501600", + "Timestamp": "2024-05-16T13:16:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.652000", - "Timestamp": "2019-10-15T17:22:12.000Z" + "SpotPrice": "1.742000", + "Timestamp": "2024-05-16T13:16:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.652000", - "Timestamp": "2019-10-15T17:22:12.000Z" + "SpotPrice": "1.923900", + "Timestamp": "2024-05-16T13:16:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.622000", - "Timestamp": "2019-10-15T17:22:12.000Z" + "SpotPrice": "1.737000", + "Timestamp": "2024-05-16T13:16:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.622000", - "Timestamp": "2019-10-15T17:22:12.000Z" + "SpotPrice": "1.918900", + "Timestamp": "2024-05-16T13:16:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.522000", - "Timestamp": "2019-10-15T17:22:12.000Z" + "SpotPrice": "1.612000", + "Timestamp": "2024-05-16T13:16:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.522000", - "Timestamp": "2019-10-15T17:22:12.000Z" + "SpotPrice": "1.793900", + "Timestamp": "2024-05-16T13:16:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252500", - "Timestamp": "2019-10-15T17:21:41.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.687600", + "Timestamp": "2024-05-16T13:16:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252500", - "Timestamp": "2019-10-15T17:21:41.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.682600", + "Timestamp": "2024-05-16T13:16:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.502000", - "Timestamp": "2019-10-15T17:21:41.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.557600", + "Timestamp": "2024-05-16T13:16:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.128500", - "Timestamp": "2019-10-15T17:21:37.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.811600", + "Timestamp": "2024-05-16T13:16:45.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.128500", - "Timestamp": "2019-10-15T17:21:37.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.104200", + "Timestamp": "2024-05-16T13:16:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.378000", - "Timestamp": "2019-10-15T17:21:37.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.966700", + "Timestamp": "2024-05-16T13:16:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.168500", - "Timestamp": "2019-10-15T17:21:37.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.258600", + "Timestamp": "2024-05-16T13:16:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.168500", - "Timestamp": "2019-10-15T17:21:37.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.778700", + "Timestamp": "2024-05-16T13:16:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.418000", - "Timestamp": "2019-10-15T17:21:37.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.773700", + "Timestamp": "2024-05-16T13:16:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.068500", - "Timestamp": "2019-10-15T17:21:37.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.648700", + "Timestamp": "2024-05-16T13:16:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.068500", - "Timestamp": "2019-10-15T17:21:37.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.505200", + "Timestamp": "2024-05-16T13:16:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.318000", - "Timestamp": "2019-10-15T17:21:37.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.500200", + "Timestamp": "2024-05-16T13:16:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.128500", - "Timestamp": "2019-10-15T17:21:35.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.375200", + "Timestamp": "2024-05-16T13:16:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.168500", - "Timestamp": "2019-10-15T17:21:35.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.961300", + "Timestamp": "2024-05-16T13:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.068500", - "Timestamp": "2019-10-15T17:21:35.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.956300", + "Timestamp": "2024-05-16T13:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252500", - "Timestamp": "2019-10-15T17:21:31.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.831300", + "Timestamp": "2024-05-16T13:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252500", - "Timestamp": "2019-10-15T17:21:31.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.785100", + "Timestamp": "2024-05-16T13:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252500", - "Timestamp": "2019-10-15T17:21:31.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.780100", + "Timestamp": "2024-05-16T13:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.101200", - "Timestamp": "2019-10-15T17:19:51.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.655100", + "Timestamp": "2024-05-16T13:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.948000", - "Timestamp": "2019-10-15T17:14:59.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.474300", + "Timestamp": "2024-05-16T13:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.948000", - "Timestamp": "2019-10-15T17:14:59.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.469300", + "Timestamp": "2024-05-16T13:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.106700", - "Timestamp": "2019-10-15T17:13:34.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.344300", + "Timestamp": "2024-05-16T13:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.106700", - "Timestamp": "2019-10-15T17:13:34.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.534300", + "Timestamp": "2024-05-16T13:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.146700", - "Timestamp": "2019-10-15T17:13:34.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.529300", + "Timestamp": "2024-05-16T13:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.146700", - "Timestamp": "2019-10-15T17:13:34.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.404300", + "Timestamp": "2024-05-16T13:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.046700", - "Timestamp": "2019-10-15T17:13:34.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138800", + "Timestamp": "2024-05-16T13:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.046700", - "Timestamp": "2019-10-15T17:13:34.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135100", + "Timestamp": "2024-05-16T13:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.997600", - "Timestamp": "2019-10-15T17:12:48.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078800", + "Timestamp": "2024-05-16T13:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.106700", - "Timestamp": "2019-10-15T17:12:24.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.526000", + "Timestamp": "2024-05-16T13:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.106700", - "Timestamp": "2019-10-15T17:12:24.000Z" - }, - { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.146700", - "Timestamp": "2019-10-15T17:12:24.000Z" + "SpotPrice": "0.636400", + "Timestamp": "2024-05-16T13:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.146700", - "Timestamp": "2019-10-15T17:12:24.000Z" + "SpotPrice": "0.631400", + "Timestamp": "2024-05-16T13:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.046700", - "Timestamp": "2019-10-15T17:12:24.000Z" + "SpotPrice": "0.506400", + "Timestamp": "2024-05-16T13:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.046700", - "Timestamp": "2019-10-15T17:12:24.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.241200", + "Timestamp": "2024-05-16T13:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.134000", - "Timestamp": "2019-10-15T17:12:20.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.313000", + "Timestamp": "2024-05-16T13:16:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.134000", - "Timestamp": "2019-10-15T17:12:20.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.546700", + "Timestamp": "2024-05-16T13:16:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "g3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.104000", - "Timestamp": "2019-10-15T17:12:20.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.541700", + "Timestamp": "2024-05-16T13:16:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.104000", - "Timestamp": "2019-10-15T17:12:20.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.416700", + "Timestamp": "2024-05-16T13:16:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.004000", - "Timestamp": "2019-10-15T17:12:20.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.463700", + "Timestamp": "2024-05-16T13:16:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.004000", - "Timestamp": "2019-10-15T17:12:20.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.181000", + "Timestamp": "2024-05-16T13:16:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.550400", - "Timestamp": "2019-10-15T17:03:15.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.176000", + "Timestamp": "2024-05-16T13:16:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.593300", - "Timestamp": "2019-10-15T17:02:35.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.051000", + "Timestamp": "2024-05-16T13:16:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092100", - "Timestamp": "2019-10-15T17:02:13.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123300", + "Timestamp": "2024-05-16T13:16:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132100", - "Timestamp": "2019-10-15T17:02:13.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119600", + "Timestamp": "2024-05-16T13:16:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032100", - "Timestamp": "2019-10-15T17:02:13.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063300", + "Timestamp": "2024-05-16T13:16:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.498800", - "Timestamp": "2019-10-15T16:52:17.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.359400", + "Timestamp": "2024-05-16T13:16:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.835200", - "Timestamp": "2019-10-15T16:49:23.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.374400", + "Timestamp": "2024-05-16T13:16:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.835200", - "Timestamp": "2019-10-15T16:49:23.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.369400", + "Timestamp": "2024-05-16T13:16:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.835200", - "Timestamp": "2019-10-15T16:49:23.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.244400", + "Timestamp": "2024-05-16T13:16:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-15T16:46:24.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.124300", + "Timestamp": "2024-05-16T13:16:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.237000", - "Timestamp": "2019-10-15T16:46:24.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.119300", + "Timestamp": "2024-05-16T13:16:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.137000", - "Timestamp": "2019-10-15T16:46:24.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.994300", + "Timestamp": "2024-05-16T13:16:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.125400", - "Timestamp": "2019-10-15T16:45:46.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324600", + "Timestamp": "2024-05-16T13:16:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.165400", - "Timestamp": "2019-10-15T16:45:46.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319600", + "Timestamp": "2024-05-16T13:16:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.065400", - "Timestamp": "2019-10-15T16:45:46.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194600", + "Timestamp": "2024-05-16T13:16:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.155700", - "Timestamp": "2019-10-15T16:45:20.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.456400", + "Timestamp": "2024-05-16T13:16:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.122300", - "Timestamp": "2019-10-15T16:44:08.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.741700", + "Timestamp": "2024-05-16T13:16:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.162300", - "Timestamp": "2019-10-15T16:44:08.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.158000", + "Timestamp": "2024-05-16T13:16:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.062300", - "Timestamp": "2019-10-15T16:44:08.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.128000", + "Timestamp": "2024-05-16T13:16:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.246300", - "Timestamp": "2019-10-15T16:42:52.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.028000", + "Timestamp": "2024-05-16T13:16:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.246300", - "Timestamp": "2019-10-15T16:42:52.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.956300", + "Timestamp": "2024-05-16T13:16:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.246300", - "Timestamp": "2019-10-15T16:42:52.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.774100", + "Timestamp": "2024-05-16T13:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.462900", - "Timestamp": "2019-10-15T16:42:23.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.769100", + "Timestamp": "2024-05-16T13:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.462900", - "Timestamp": "2019-10-15T16:42:23.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.644100", + "Timestamp": "2024-05-16T13:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.462900", - "Timestamp": "2019-10-15T16:42:23.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108900", + "Timestamp": "2024-05-16T13:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.126600", - "Timestamp": "2019-10-15T16:41:46.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.839000", + "Timestamp": "2024-05-16T13:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.126600", - "Timestamp": "2019-10-15T16:41:46.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.994300", + "Timestamp": "2024-05-16T13:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m4.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.096600", - "Timestamp": "2019-10-15T16:41:46.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T13:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m4.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.096600", - "Timestamp": "2019-10-15T16:41:46.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100500", + "Timestamp": "2024-05-16T13:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.996600", - "Timestamp": "2019-10-15T16:41:46.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044200", + "Timestamp": "2024-05-16T13:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.996600", - "Timestamp": "2019-10-15T16:41:46.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089300", + "Timestamp": "2024-05-16T13:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.739200", - "Timestamp": "2019-10-15T16:41:17.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085600", + "Timestamp": "2024-05-16T13:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.739200", - "Timestamp": "2019-10-15T16:41:17.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029300", + "Timestamp": "2024-05-16T13:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.739200", - "Timestamp": "2019-10-15T16:41:17.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-16T13:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.123100", - "Timestamp": "2019-10-15T16:40:30.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152000", + "Timestamp": "2024-05-16T13:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.123100", - "Timestamp": "2019-10-15T16:40:30.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052000", + "Timestamp": "2024-05-16T13:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.123100", - "Timestamp": "2019-10-15T16:40:30.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.370000", + "Timestamp": "2024-05-16T13:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.925200", - "Timestamp": "2019-10-15T16:40:28.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.365000", + "Timestamp": "2024-05-16T13:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.925200", - "Timestamp": "2019-10-15T16:40:28.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.240000", + "Timestamp": "2024-05-16T13:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.925200", - "Timestamp": "2019-10-15T16:40:28.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.407800", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.895200", - "Timestamp": "2019-10-15T16:40:28.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.402800", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.895200", - "Timestamp": "2019-10-15T16:40:28.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.277800", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.895200", - "Timestamp": "2019-10-15T16:40:28.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.468700", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.795200", - "Timestamp": "2019-10-15T16:40:28.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.463700", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.795200", - "Timestamp": "2019-10-15T16:40:28.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.338700", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.795200", - "Timestamp": "2019-10-15T16:40:28.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.385900", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.752900", - "Timestamp": "2019-10-15T16:40:24.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.380900", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.722900", - "Timestamp": "2019-10-15T16:40:24.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.255900", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.622900", - "Timestamp": "2019-10-15T16:40:24.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.598500", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092800", - "Timestamp": "2019-10-15T16:28:52.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.593500", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132800", - "Timestamp": "2019-10-15T16:28:52.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.468500", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032800", - "Timestamp": "2019-10-15T16:28:52.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.383900", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.163300", - "Timestamp": "2019-10-15T16:26:46.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.378900", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5dn.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126300", - "Timestamp": "2019-10-15T16:18:31.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.253900", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.260800", - "Timestamp": "2019-10-15T16:12:13.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.427200", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.230800", - "Timestamp": "2019-10-15T16:12:13.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.422200", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T16:12:13.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.297200", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.678100", - "Timestamp": "2019-10-15T16:11:31.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090200", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.678100", - "Timestamp": "2019-10-15T16:11:31.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086500", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.678100", - "Timestamp": "2019-10-15T16:11:31.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030200", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.648100", - "Timestamp": "2019-10-15T16:11:31.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.288700", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.648100", - "Timestamp": "2019-10-15T16:11:31.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.283700", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.648100", - "Timestamp": "2019-10-15T16:11:31.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158700", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.548100", - "Timestamp": "2019-10-15T16:11:31.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.548100", - "Timestamp": "2019-10-15T16:11:31.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098000", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.548100", - "Timestamp": "2019-10-15T16:11:31.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041700", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252500", - "Timestamp": "2019-10-15T16:05:42.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.925700", + "Timestamp": "2024-05-16T13:16:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.966100", - "Timestamp": "2019-10-15T16:04:33.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.772700", + "Timestamp": "2024-05-16T13:16:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.936100", - "Timestamp": "2019-10-15T16:04:33.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.742700", + "Timestamp": "2024-05-16T13:16:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.836100", - "Timestamp": "2019-10-15T16:04:33.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.642700", + "Timestamp": "2024-05-16T13:16:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252500", - "Timestamp": "2019-10-15T15:57:38.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161100", + "Timestamp": "2024-05-16T13:16:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252500", - "Timestamp": "2019-10-15T15:57:38.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157400", + "Timestamp": "2024-05-16T13:16:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-15T15:56:24.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101100", + "Timestamp": "2024-05-16T13:16:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.237000", - "Timestamp": "2019-10-15T15:56:24.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.438500", + "Timestamp": "2024-05-16T13:16:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.137000", - "Timestamp": "2019-10-15T15:56:24.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.410400", + "Timestamp": "2024-05-16T13:16:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.498800", - "Timestamp": "2019-10-15T15:56:00.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.405400", + "Timestamp": "2024-05-16T13:16:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.176400", - "Timestamp": "2019-10-15T15:51:28.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.280400", + "Timestamp": "2024-05-16T13:16:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.146400", - "Timestamp": "2019-10-15T15:51:28.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.941200", + "Timestamp": "2024-05-16T13:16:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.046400", - "Timestamp": "2019-10-15T15:51:28.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.920800", + "Timestamp": "2024-05-16T13:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.059100", - "Timestamp": "2019-10-15T15:42:59.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.915800", + "Timestamp": "2024-05-16T13:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.059100", - "Timestamp": "2019-10-15T15:42:59.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.790800", + "Timestamp": "2024-05-16T13:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.059100", - "Timestamp": "2019-10-15T15:42:59.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.122300", + "Timestamp": "2024-05-16T13:16:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.091500", - "Timestamp": "2019-10-15T15:42:42.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.650700", + "Timestamp": "2024-05-16T13:16:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.091500", - "Timestamp": "2019-10-15T15:42:42.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.645700", + "Timestamp": "2024-05-16T13:16:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.091500", - "Timestamp": "2019-10-15T15:42:42.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.520700", + "Timestamp": "2024-05-16T13:16:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.131500", - "Timestamp": "2019-10-15T15:42:42.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.816200", + "Timestamp": "2024-05-16T13:16:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.131500", - "Timestamp": "2019-10-15T15:42:42.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.874300", + "Timestamp": "2024-05-16T13:16:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.131500", - "Timestamp": "2019-10-15T15:42:42.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.618900", + "Timestamp": "2024-05-16T13:16:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.031500", - "Timestamp": "2019-10-15T15:42:42.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.911300", + "Timestamp": "2024-05-16T13:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.031500", - "Timestamp": "2019-10-15T15:42:42.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.906300", + "Timestamp": "2024-05-16T13:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.031500", - "Timestamp": "2019-10-15T15:42:42.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.781300", + "Timestamp": "2024-05-16T13:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.148000", - "Timestamp": "2019-10-15T15:42:20.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.276400", + "Timestamp": "2024-05-16T13:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.148000", - "Timestamp": "2019-10-15T15:42:20.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.883800", + "Timestamp": "2024-05-16T13:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.116500", - "Timestamp": "2019-10-15T15:42:18.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.071800", + "Timestamp": "2024-05-16T13:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.116500", - "Timestamp": "2019-10-15T15:42:18.000Z" - }, - { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.156500", - "Timestamp": "2019-10-15T15:42:18.000Z" + "SpotPrice": "1.899900", + "Timestamp": "2024-05-16T13:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.156500", - "Timestamp": "2019-10-15T15:42:18.000Z" + "SpotPrice": "1.894900", + "Timestamp": "2024-05-16T13:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.056500", - "Timestamp": "2019-10-15T15:42:18.000Z" + "SpotPrice": "1.769900", + "Timestamp": "2024-05-16T13:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.056500", - "Timestamp": "2019-10-15T15:42:18.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.507200", + "Timestamp": "2024-05-16T13:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.268500", - "Timestamp": "2019-10-15T15:42:16.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.662600", + "Timestamp": "2024-05-16T13:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.268500", - "Timestamp": "2019-10-15T15:42:16.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.657600", + "Timestamp": "2024-05-16T13:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.582000", - "Timestamp": "2019-10-15T15:41:52.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.532600", + "Timestamp": "2024-05-16T13:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.582000", - "Timestamp": "2019-10-15T15:41:52.000Z" + "SpotPrice": "2.588200", + "Timestamp": "2024-05-16T13:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.552000", - "Timestamp": "2019-10-15T15:41:52.000Z" + "SpotPrice": "2.583200", + "Timestamp": "2024-05-16T13:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.552000", - "Timestamp": "2019-10-15T15:41:52.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.458200", + "Timestamp": "2024-05-16T13:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.452000", - "Timestamp": "2019-10-15T15:41:52.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.776100", + "Timestamp": "2024-05-16T13:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.746100", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1e.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.452000", - "Timestamp": "2019-10-15T15:41:52.000Z" + "SpotPrice": "0.646100", + "Timestamp": "2024-05-16T13:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1e.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.268500", - "Timestamp": "2019-10-15T15:41:52.000Z" + "SpotPrice": "5.754200", + "Timestamp": "2024-05-16T13:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.268500", - "Timestamp": "2019-10-15T15:41:52.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.848800", + "Timestamp": "2024-05-16T13:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.994000", - "Timestamp": "2019-10-15T15:41:50.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.843800", + "Timestamp": "2024-05-16T13:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.994000", - "Timestamp": "2019-10-15T15:41:50.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.718800", + "Timestamp": "2024-05-16T13:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.994000", - "Timestamp": "2019-10-15T15:41:50.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.119100", + "Timestamp": "2024-05-16T13:16:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.116500", - "Timestamp": "2019-10-15T15:41:46.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.811600", + "Timestamp": "2024-05-16T13:16:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.116500", - "Timestamp": "2019-10-15T15:41:46.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.741500", + "Timestamp": "2024-05-16T13:16:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.156500", - "Timestamp": "2019-10-15T15:41:46.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.199000", + "Timestamp": "2024-05-16T13:16:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.156500", - "Timestamp": "2019-10-15T15:41:46.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.195000", + "Timestamp": "2024-05-16T13:16:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.056500", - "Timestamp": "2019-10-15T15:41:46.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139000", + "Timestamp": "2024-05-16T13:16:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.056500", - "Timestamp": "2019-10-15T15:41:46.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354100", + "Timestamp": "2024-05-16T13:16:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.063700", - "Timestamp": "2019-10-15T15:41:36.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349100", + "Timestamp": "2024-05-16T13:16:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.103700", - "Timestamp": "2019-10-15T15:41:36.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224100", + "Timestamp": "2024-05-16T13:16:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.003700", - "Timestamp": "2019-10-15T15:41:36.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136000", + "Timestamp": "2024-05-16T13:16:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.148000", - "Timestamp": "2019-10-15T15:41:20.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132300", + "Timestamp": "2024-05-16T13:16:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.148000", - "Timestamp": "2019-10-15T15:41:20.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076000", + "Timestamp": "2024-05-16T13:16:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.582000", - "Timestamp": "2019-10-15T15:40:59.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.537800", + "Timestamp": "2024-05-16T13:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.582000", - "Timestamp": "2019-10-15T15:40:59.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.532800", + "Timestamp": "2024-05-16T13:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.552000", - "Timestamp": "2019-10-15T15:40:59.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.407800", + "Timestamp": "2024-05-16T13:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.552000", - "Timestamp": "2019-10-15T15:40:59.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.117100", + "Timestamp": "2024-05-16T13:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.452000", - "Timestamp": "2019-10-15T15:40:59.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.112100", + "Timestamp": "2024-05-16T13:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.452000", - "Timestamp": "2019-10-15T15:40:59.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.987100", + "Timestamp": "2024-05-16T13:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.652000", - "Timestamp": "2019-10-15T15:40:50.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.400900", + "Timestamp": "2024-05-16T13:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.622000", - "Timestamp": "2019-10-15T15:40:50.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.395900", + "Timestamp": "2024-05-16T13:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.522000", - "Timestamp": "2019-10-15T15:40:50.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.270900", + "Timestamp": "2024-05-16T13:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t2.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.035500", - "Timestamp": "2019-10-15T15:40:33.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114000", + "Timestamp": "2024-05-16T13:16:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t2.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.035500", - "Timestamp": "2019-10-15T15:40:33.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154000", + "Timestamp": "2024-05-16T13:16:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t2.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.035500", - "Timestamp": "2019-10-15T15:40:33.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054000", + "Timestamp": "2024-05-16T13:16:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.130200", - "Timestamp": "2019-10-15T15:38:44.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.115400", + "Timestamp": "2024-05-16T13:16:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.130200", - "Timestamp": "2019-10-15T15:38:44.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.110400", + "Timestamp": "2024-05-16T13:16:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.130200", - "Timestamp": "2019-10-15T15:38:44.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.985400", + "Timestamp": "2024-05-16T13:16:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.123500", - "Timestamp": "2019-10-15T15:38:42.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.656900", + "Timestamp": "2024-05-16T13:16:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.163500", - "Timestamp": "2019-10-15T15:38:42.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.651900", + "Timestamp": "2024-05-16T13:16:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.063500", - "Timestamp": "2019-10-15T15:38:42.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.526900", + "Timestamp": "2024-05-16T13:16:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.077500", - "Timestamp": "2019-10-15T15:38:37.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.995300", + "Timestamp": "2024-05-16T13:16:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.077500", - "Timestamp": "2019-10-15T15:38:37.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.313200", + "Timestamp": "2024-05-16T13:16:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.077500", - "Timestamp": "2019-10-15T15:38:37.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.308200", + "Timestamp": "2024-05-16T13:16:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t2.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.117500", - "Timestamp": "2019-10-15T15:38:37.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.183200", + "Timestamp": "2024-05-16T13:16:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t2.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.117500", - "Timestamp": "2019-10-15T15:38:37.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.793200", + "Timestamp": "2024-05-16T13:16:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t2.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.117500", - "Timestamp": "2019-10-15T15:38:37.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120900", + "Timestamp": "2024-05-16T13:16:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t2.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.017500", - "Timestamp": "2019-10-15T15:38:37.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117200", + "Timestamp": "2024-05-16T13:16:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t2.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.017500", - "Timestamp": "2019-10-15T15:38:37.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060900", + "Timestamp": "2024-05-16T13:16:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t2.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.017500", - "Timestamp": "2019-10-15T15:38:37.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.496400", + "Timestamp": "2024-05-16T13:16:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.116600", - "Timestamp": "2019-10-15T15:37:27.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.990800", + "Timestamp": "2024-05-16T13:16:15.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.116600", - "Timestamp": "2019-10-15T15:37:27.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.985800", + "Timestamp": "2024-05-16T13:16:15.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.116600", - "Timestamp": "2019-10-15T15:37:27.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.860800", + "Timestamp": "2024-05-16T13:16:15.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.156600", - "Timestamp": "2019-10-15T15:37:27.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.954000", + "Timestamp": "2024-05-16T13:16:14.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.156600", - "Timestamp": "2019-10-15T15:37:27.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.949000", + "Timestamp": "2024-05-16T13:16:14.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.156600", - "Timestamp": "2019-10-15T15:37:27.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.824000", + "Timestamp": "2024-05-16T13:16:14.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.056600", - "Timestamp": "2019-10-15T15:37:27.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.293500", + "Timestamp": "2024-05-16T13:16:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.056600", - "Timestamp": "2019-10-15T15:37:27.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.263500", + "Timestamp": "2024-05-16T13:16:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.056600", - "Timestamp": "2019-10-15T15:37:27.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.163500", + "Timestamp": "2024-05-16T13:16:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.089700", - "Timestamp": "2019-10-15T15:37:12.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.094600", + "Timestamp": "2024-05-16T13:16:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.129700", - "Timestamp": "2019-10-15T15:37:12.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.114500", + "Timestamp": "2024-05-16T13:16:10.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.029700", - "Timestamp": "2019-10-15T15:37:12.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.109500", + "Timestamp": "2024-05-16T13:16:10.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089700", - "Timestamp": "2019-10-15T15:36:06.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.984500", + "Timestamp": "2024-05-16T13:16:10.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089700", - "Timestamp": "2019-10-15T15:36:06.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.331900", + "Timestamp": "2024-05-16T13:16:03.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.129700", - "Timestamp": "2019-10-15T15:36:06.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.885700", + "Timestamp": "2024-05-16T13:16:03.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.large", + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.6xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.129700", - "Timestamp": "2019-10-15T15:36:06.000Z" + "SpotPrice": "0.880700", + "Timestamp": "2024-05-16T13:16:03.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.large", + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.6xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029700", - "Timestamp": "2019-10-15T15:36:06.000Z" + "SpotPrice": "0.755700", + "Timestamp": "2024-05-16T13:16:03.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029700", - "Timestamp": "2019-10-15T15:36:06.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117800", + "Timestamp": "2024-05-16T13:16:02.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.498800", - "Timestamp": "2019-10-15T15:01:36.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113800", + "Timestamp": "2024-05-16T13:16:02.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.382400", - "Timestamp": "2019-10-15T14:57:04.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057800", + "Timestamp": "2024-05-16T13:16:02.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.352400", - "Timestamp": "2019-10-15T14:57:04.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116500", + "Timestamp": "2024-05-16T13:15:59.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.252400", - "Timestamp": "2019-10-15T14:57:04.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112500", + "Timestamp": "2024-05-16T13:15:59.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.877400", - "Timestamp": "2019-10-15T14:44:05.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056500", + "Timestamp": "2024-05-16T13:15:59.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.877400", - "Timestamp": "2019-10-15T14:44:05.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.453600", + "Timestamp": "2024-05-16T13:15:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.847400", - "Timestamp": "2019-10-15T14:44:05.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.448600", + "Timestamp": "2024-05-16T13:15:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.847400", - "Timestamp": "2019-10-15T14:44:05.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.323600", + "Timestamp": "2024-05-16T13:15:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.747400", - "Timestamp": "2019-10-15T14:44:05.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.250900", + "Timestamp": "2024-05-16T13:15:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.747400", - "Timestamp": "2019-10-15T14:44:05.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.245900", + "Timestamp": "2024-05-16T13:15:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.226200", - "Timestamp": "2019-10-15T14:43:47.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.120900", + "Timestamp": "2024-05-16T13:15:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.226200", - "Timestamp": "2019-10-15T14:43:47.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.881900", + "Timestamp": "2024-05-16T13:15:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.226200", - "Timestamp": "2019-10-15T14:43:47.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.100500", + "Timestamp": "2024-05-16T13:02:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.196200", - "Timestamp": "2019-10-15T14:43:47.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.866700", + "Timestamp": "2024-05-16T13:02:00.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.196200", - "Timestamp": "2019-10-15T14:43:47.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.163700", + "Timestamp": "2024-05-16T13:01:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.196200", - "Timestamp": "2019-10-15T14:43:47.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307400", + "Timestamp": "2024-05-16T13:01:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.096200", - "Timestamp": "2019-10-15T14:43:47.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.277400", + "Timestamp": "2024-05-16T13:01:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.096200", - "Timestamp": "2019-10-15T14:43:47.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177400", + "Timestamp": "2024-05-16T13:01:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.096200", - "Timestamp": "2019-10-15T14:43:47.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.833200", + "Timestamp": "2024-05-16T13:01:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.955400", - "Timestamp": "2019-10-15T14:41:41.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.444200", + "Timestamp": "2024-05-16T13:01:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.955400", - "Timestamp": "2019-10-15T14:41:41.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T13:01:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.505000", - "Timestamp": "2019-10-15T14:41:23.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-16T13:01:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.505000", - "Timestamp": "2019-10-15T14:41:23.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046300", + "Timestamp": "2024-05-16T13:01:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.505000", - "Timestamp": "2019-10-15T14:41:23.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.856800", + "Timestamp": "2024-05-16T13:01:50.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-15T14:40:57.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.851800", + "Timestamp": "2024-05-16T13:01:50.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-15T14:40:57.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.726800", + "Timestamp": "2024-05-16T13:01:50.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-15T14:40:57.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440600", + "Timestamp": "2024-05-16T13:01:49.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.237000", - "Timestamp": "2019-10-15T14:40:57.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.055400", + "Timestamp": "2024-05-16T13:01:49.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.237000", - "Timestamp": "2019-10-15T14:40:57.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.025400", + "Timestamp": "2024-05-16T13:01:49.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.237000", - "Timestamp": "2019-10-15T14:40:57.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.925400", + "Timestamp": "2024-05-16T13:01:49.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.137000", - "Timestamp": "2019-10-15T14:40:57.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.524600", + "Timestamp": "2024-05-16T13:01:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.137000", - "Timestamp": "2019-10-15T14:40:57.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.494600", + "Timestamp": "2024-05-16T13:01:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.137000", - "Timestamp": "2019-10-15T14:40:57.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.394600", + "Timestamp": "2024-05-16T13:01:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.040200", - "Timestamp": "2019-10-15T14:40:07.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.847500", + "Timestamp": "2024-05-16T13:01:47.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.040200", - "Timestamp": "2019-10-15T14:40:07.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.842500", + "Timestamp": "2024-05-16T13:01:47.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.040200", - "Timestamp": "2019-10-15T14:40:07.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.717500", + "Timestamp": "2024-05-16T13:01:47.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5dn.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094300", - "Timestamp": "2019-10-15T14:38:05.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.018400", + "Timestamp": "2024-05-16T13:01:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5dn.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-15T14:38:05.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.988400", + "Timestamp": "2024-05-16T13:01:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5dn.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034300", - "Timestamp": "2019-10-15T14:38:05.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.888400", + "Timestamp": "2024-05-16T13:01:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.914800", - "Timestamp": "2019-10-15T14:33:26.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.305100", + "Timestamp": "2024-05-16T13:01:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.884800", - "Timestamp": "2019-10-15T14:33:26.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.300100", + "Timestamp": "2024-05-16T13:01:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.784800", - "Timestamp": "2019-10-15T14:33:26.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175100", + "Timestamp": "2024-05-16T13:01:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.505000", - "Timestamp": "2019-10-15T14:30:09.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.586200", + "Timestamp": "2024-05-16T13:01:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092000", - "Timestamp": "2019-10-15T14:26:52.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.129300", + "Timestamp": "2024-05-16T13:01:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132000", - "Timestamp": "2019-10-15T14:26:52.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226200", + "Timestamp": "2024-05-16T13:01:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032000", - "Timestamp": "2019-10-15T14:26:52.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.752800", + "Timestamp": "2024-05-16T13:01:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094300", - "Timestamp": "2019-10-15T14:16:40.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.922600", + "Timestamp": "2024-05-16T13:01:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-15T14:16:40.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.168400", + "Timestamp": "2024-05-16T13:01:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034300", - "Timestamp": "2019-10-15T14:16:40.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.138400", + "Timestamp": "2024-05-16T13:01:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.267900", - "Timestamp": "2019-10-15T14:15:33.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.038400", + "Timestamp": "2024-05-16T13:01:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.237900", - "Timestamp": "2019-10-15T14:15:33.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121400", + "Timestamp": "2024-05-16T13:01:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.137900", - "Timestamp": "2019-10-15T14:15:33.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120700", + "Timestamp": "2024-05-16T13:01:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.699600", - "Timestamp": "2019-10-15T14:15:20.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.893900", + "Timestamp": "2024-05-16T13:01:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.669600", - "Timestamp": "2019-10-15T14:15:20.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.863900", + "Timestamp": "2024-05-16T13:01:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.569600", - "Timestamp": "2019-10-15T14:15:20.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.763900", + "Timestamp": "2024-05-16T13:01:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252500", - "Timestamp": "2019-10-15T14:13:29.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.077700", + "Timestamp": "2024-05-16T13:01:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.010100", - "Timestamp": "2019-10-15T14:08:36.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.535100", + "Timestamp": "2024-05-16T13:01:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.699600", - "Timestamp": "2019-10-15T14:07:20.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.604400", + "Timestamp": "2024-05-16T13:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.669600", - "Timestamp": "2019-10-15T14:07:20.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.599400", + "Timestamp": "2024-05-16T13:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.569600", - "Timestamp": "2019-10-15T14:07:20.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.474400", + "Timestamp": "2024-05-16T13:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.030200", - "Timestamp": "2019-10-15T14:05:55.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.046600", + "Timestamp": "2024-05-16T13:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.127000", - "Timestamp": "2019-10-15T13:59:19.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "15.550400", + "Timestamp": "2024-05-16T13:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.167000", - "Timestamp": "2019-10-15T13:59:19.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.673900", + "Timestamp": "2024-05-16T13:01:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.067000", - "Timestamp": "2019-10-15T13:59:19.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.668900", + "Timestamp": "2024-05-16T13:01:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.404100", - "Timestamp": "2019-10-15T13:56:16.000Z" + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.543900", + "Timestamp": "2024-05-16T13:01:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.374100", - "Timestamp": "2019-10-15T13:56:16.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.869500", + "Timestamp": "2024-05-16T13:01:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.274100", - "Timestamp": "2019-10-15T13:56:16.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.864500", + "Timestamp": "2024-05-16T13:01:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.270300", - "Timestamp": "2019-10-15T13:50:39.000Z" + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.739500", + "Timestamp": "2024-05-16T13:01:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.240300", - "Timestamp": "2019-10-15T13:50:39.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.591400", + "Timestamp": "2024-05-16T13:01:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.140300", - "Timestamp": "2019-10-15T13:50:39.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.586400", + "Timestamp": "2024-05-16T13:01:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.311300", - "Timestamp": "2019-10-15T13:47:40.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.461400", + "Timestamp": "2024-05-16T13:01:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.985600", - "Timestamp": "2019-10-15T13:43:58.000Z" + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.171100", + "Timestamp": "2024-05-16T13:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.141100", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.041100", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.583200", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.578200", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.453200", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.651300", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.646300", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.521300", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.298900", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.293900", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.168900", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.362600", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.357600", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.232600", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294200", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289200", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164200", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.260600", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.355200", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.350200", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.225200", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166400", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162400", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141400", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181400", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081400", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.210400", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.206700", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150400", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.367200", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.362200", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.237200", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.338600", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.308600", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.208600", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.629700", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.624700", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.499700", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.420800", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.415800", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.290800", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278900", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273900", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148900", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.214600", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.254600", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.154600", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.650100", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.645100", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.520100", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.864700", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.562700", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.661600", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.656600", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.531600", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.328100", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.323100", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.198100", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.167300", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.162300", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.037300", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.415100", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.410100", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.285100", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.483600", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.478600", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.353600", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.192800", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.187800", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.062800", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.182300", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.177300", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.052300", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.291000", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.286000", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.161000", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214300", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.734000", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.414200", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.409200", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.284200", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.415000", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.385000", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.285000", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301400", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296400", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171400", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.255300", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.250300", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.125300", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123000", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119300", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063000", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311500", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.306500", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181500", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.860400", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.855400", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.730400", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.784200", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.723700", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.718700", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.593700", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.058300", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062900", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002900", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002900", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.668300", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.181000", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177300", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121000", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.263100", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.828000", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.823000", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.698000", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.462400", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.457400", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.332400", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.591200", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.586200", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.461200", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.526000", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.785800", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.780800", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.655800", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.250500", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122900", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123700", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119200", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120000", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062900", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063700", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.020300", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "a1.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.207000", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "a1.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.202000", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "a1.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077000", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.871700", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.866700", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.741700", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.102600", + "Timestamp": "2024-05-16T13:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.097600", + "Timestamp": "2024-05-16T13:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.972600", + "Timestamp": "2024-05-16T13:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.786100", + "Timestamp": "2024-05-16T13:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116200", + "Timestamp": "2024-05-16T13:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.915600", + "Timestamp": "2024-05-16T13:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.105200", + "Timestamp": "2024-05-16T13:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.708500", + "Timestamp": "2024-05-16T13:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.075200", + "Timestamp": "2024-05-16T13:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.678500", + "Timestamp": "2024-05-16T13:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.975200", + "Timestamp": "2024-05-16T13:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.578500", + "Timestamp": "2024-05-16T13:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.725800", + "Timestamp": "2024-05-16T13:01:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.720800", + "Timestamp": "2024-05-16T13:01:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.595800", + "Timestamp": "2024-05-16T13:01:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.486300", + "Timestamp": "2024-05-16T13:01:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.481300", + "Timestamp": "2024-05-16T13:01:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.356300", + "Timestamp": "2024-05-16T13:01:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.453900", + "Timestamp": "2024-05-16T13:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.210300", + "Timestamp": "2024-05-16T13:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.206300", + "Timestamp": "2024-05-16T13:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150300", + "Timestamp": "2024-05-16T13:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.882100", + "Timestamp": "2024-05-16T13:01:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.390000", + "Timestamp": "2024-05-16T13:01:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.385000", + "Timestamp": "2024-05-16T13:01:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.260000", + "Timestamp": "2024-05-16T13:01:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.806000", + "Timestamp": "2024-05-16T13:01:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.172800", + "Timestamp": "2024-05-16T13:01:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.434100", + "Timestamp": "2024-05-16T13:01:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.429100", + "Timestamp": "2024-05-16T13:01:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.304100", + "Timestamp": "2024-05-16T13:01:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.831200", + "Timestamp": "2024-05-16T13:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.826200", + "Timestamp": "2024-05-16T13:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.701200", + "Timestamp": "2024-05-16T13:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.373600", + "Timestamp": "2024-05-16T13:01:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.368600", + "Timestamp": "2024-05-16T13:01:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.243600", + "Timestamp": "2024-05-16T13:01:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.549700", + "Timestamp": "2024-05-16T13:01:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.544700", + "Timestamp": "2024-05-16T13:01:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.419700", + "Timestamp": "2024-05-16T13:01:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161700", + "Timestamp": "2024-05-16T13:01:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158000", + "Timestamp": "2024-05-16T13:01:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-16T13:01:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.243300", + "Timestamp": "2024-05-16T12:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074100", + "Timestamp": "2024-05-16T12:47:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070400", + "Timestamp": "2024-05-16T12:47:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014100", + "Timestamp": "2024-05-16T12:47:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.005100", + "Timestamp": "2024-05-16T12:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121000", + "Timestamp": "2024-05-16T12:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120500", + "Timestamp": "2024-05-16T12:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.841100", + "Timestamp": "2024-05-16T12:46:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.595400", + "Timestamp": "2024-05-16T12:46:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134200", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130500", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074200", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136700", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133000", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076700", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.408300", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.679000", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.895200", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.890200", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.765200", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.192500", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120200", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116200", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060200", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.353800", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.348800", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.223800", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.352400", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.322400", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.222400", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.903800", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.898800", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.773800", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.544400", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.115600", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.110600", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.985600", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.727600", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.476700", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.691600", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.686600", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.561600", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.117800", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.536000", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.461900", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.456900", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.331900", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.190000", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.185000", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.060000", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.249900", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.757000", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.752000", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.627000", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.706800", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.825900", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.198600", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.193600", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.068600", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.857900", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.827900", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.727900", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.364400", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.359400", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.234400", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.113000", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.751700", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.746700", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.621700", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354000", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349000", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224000", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.080200", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.075200", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.950200", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.528300", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.523300", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.398300", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.697700", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.689000", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.367200", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.935700", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.822000", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.930700", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.817000", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.805700", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.692000", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.441300", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.416800", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.672000", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.836500", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.262300", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.257300", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.132300", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.432800", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.427800", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.302800", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.927800", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.913200", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.481800", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.476800", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.351800", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.007200", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.450300", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.420300", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.320300", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.674200", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.669200", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.544200", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.727500", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.353700", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.348700", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.223700", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.713000", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.708000", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.583000", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.201400", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.197400", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141400", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.192800", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.187800", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.062800", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.962600", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.315500", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.285500", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.185500", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.920700", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.498400", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.024900", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.202300", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198600", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142300", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.884900", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.193000", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.189000", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133000", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.123500", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.118500", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.993500", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.575800", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158500", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154800", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098500", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.246700", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.425700", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.364700", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.395700", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334700", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.295700", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.234700", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.932700", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.927700", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.802700", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.893200", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.187800", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183800", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127800", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124400", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120400", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064400", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.442500", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.210600", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.206900", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150600", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.776700", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078300", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074600", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018300", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.390000", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.845500", + "Timestamp": "2024-05-16T12:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.840500", + "Timestamp": "2024-05-16T12:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.715500", + "Timestamp": "2024-05-16T12:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.838900", + "Timestamp": "2024-05-16T12:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115700", + "Timestamp": "2024-05-16T12:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112700", + "Timestamp": "2024-05-16T12:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055700", + "Timestamp": "2024-05-16T12:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.480800", + "Timestamp": "2024-05-16T12:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.871700", + "Timestamp": "2024-05-16T12:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.849500", + "Timestamp": "2024-05-16T12:46:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.728100", + "Timestamp": "2024-05-16T12:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.723100", + "Timestamp": "2024-05-16T12:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.598100", + "Timestamp": "2024-05-16T12:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.240400", + "Timestamp": "2024-05-16T12:46:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.914400", + "Timestamp": "2024-05-16T12:46:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.782800", + "Timestamp": "2024-05-16T12:46:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.777800", + "Timestamp": "2024-05-16T12:46:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.652800", + "Timestamp": "2024-05-16T12:46:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.744100", + "Timestamp": "2024-05-16T12:46:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.714100", + "Timestamp": "2024-05-16T12:46:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.614100", + "Timestamp": "2024-05-16T12:46:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.551500", + "Timestamp": "2024-05-16T12:46:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.926900", + "Timestamp": "2024-05-16T12:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.921900", + "Timestamp": "2024-05-16T12:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.796900", + "Timestamp": "2024-05-16T12:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.396800", + "Timestamp": "2024-05-16T12:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.366800", + "Timestamp": "2024-05-16T12:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.266800", + "Timestamp": "2024-05-16T12:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.914000", + "Timestamp": "2024-05-16T12:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T12:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T12:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049400", + "Timestamp": "2024-05-16T12:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.867200", + "Timestamp": "2024-05-16T12:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T12:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149700", + "Timestamp": "2024-05-16T12:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049700", + "Timestamp": "2024-05-16T12:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.703900", + "Timestamp": "2024-05-16T12:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.241500", + "Timestamp": "2024-05-16T12:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.211500", + "Timestamp": "2024-05-16T12:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.111500", + "Timestamp": "2024-05-16T12:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.073100", + "Timestamp": "2024-05-16T12:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.259800", + "Timestamp": "2024-05-16T12:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.254800", + "Timestamp": "2024-05-16T12:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.129800", + "Timestamp": "2024-05-16T12:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155000", + "Timestamp": "2024-05-16T12:46:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.195000", + "Timestamp": "2024-05-16T12:46:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095000", + "Timestamp": "2024-05-16T12:46:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416200", + "Timestamp": "2024-05-16T12:46:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.559900", + "Timestamp": "2024-05-16T12:45:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.529900", + "Timestamp": "2024-05-16T12:45:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.429900", + "Timestamp": "2024-05-16T12:45:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.116200", + "Timestamp": "2024-05-16T12:45:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.345800", + "Timestamp": "2024-05-16T12:45:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.340800", + "Timestamp": "2024-05-16T12:45:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.215800", + "Timestamp": "2024-05-16T12:45:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.792100", + "Timestamp": "2024-05-16T12:45:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092700", + "Timestamp": "2024-05-16T12:45:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089000", + "Timestamp": "2024-05-16T12:45:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032700", + "Timestamp": "2024-05-16T12:45:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.126500", + "Timestamp": "2024-05-16T12:45:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.284800", + "Timestamp": "2024-05-16T12:33:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.284800", + "Timestamp": "2024-05-16T12:33:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.284800", + "Timestamp": "2024-05-16T12:33:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.998800", + "Timestamp": "2024-05-16T12:33:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.998800", + "Timestamp": "2024-05-16T12:33:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.998800", + "Timestamp": "2024-05-16T12:33:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.993800", + "Timestamp": "2024-05-16T12:33:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.993800", + "Timestamp": "2024-05-16T12:33:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.993800", + "Timestamp": "2024-05-16T12:33:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.868800", + "Timestamp": "2024-05-16T12:33:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.868800", + "Timestamp": "2024-05-16T12:33:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.868800", + "Timestamp": "2024-05-16T12:33:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221400", + "Timestamp": "2024-05-16T12:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.806800", + "Timestamp": "2024-05-16T12:32:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.801800", + "Timestamp": "2024-05-16T12:32:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.676800", + "Timestamp": "2024-05-16T12:32:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.009000", + "Timestamp": "2024-05-16T12:32:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.004000", + "Timestamp": "2024-05-16T12:32:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.879000", + "Timestamp": "2024-05-16T12:32:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.138000", + "Timestamp": "2024-05-16T12:32:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.133000", + "Timestamp": "2024-05-16T12:32:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.008000", + "Timestamp": "2024-05-16T12:32:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.729400", + "Timestamp": "2024-05-16T12:32:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.724400", + "Timestamp": "2024-05-16T12:32:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.599400", + "Timestamp": "2024-05-16T12:32:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.911900", + "Timestamp": "2024-05-16T12:32:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.906900", + "Timestamp": "2024-05-16T12:32:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.781900", + "Timestamp": "2024-05-16T12:32:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.009000", + "Timestamp": "2024-05-16T12:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.004000", + "Timestamp": "2024-05-16T12:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.879000", + "Timestamp": "2024-05-16T12:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.045200", + "Timestamp": "2024-05-16T12:31:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.388500", + "Timestamp": "2024-05-16T12:31:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.383500", + "Timestamp": "2024-05-16T12:31:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.258500", + "Timestamp": "2024-05-16T12:31:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.705200", + "Timestamp": "2024-05-16T12:31:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.534200", + "Timestamp": "2024-05-16T12:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.529200", + "Timestamp": "2024-05-16T12:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.404200", + "Timestamp": "2024-05-16T12:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.484700", + "Timestamp": "2024-05-16T12:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.251100", + "Timestamp": "2024-05-16T12:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.246100", + "Timestamp": "2024-05-16T12:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.121100", + "Timestamp": "2024-05-16T12:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139300", + "Timestamp": "2024-05-16T12:31:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135600", + "Timestamp": "2024-05-16T12:31:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079300", + "Timestamp": "2024-05-16T12:31:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.979500", + "Timestamp": "2024-05-16T12:31:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.246400", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.201100", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.241400", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.196100", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.116400", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.071100", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.869000", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.781800", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.077900", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.776800", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.072900", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.651800", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.947900", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.627000", + "Timestamp": "2024-05-16T12:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.435900", + "Timestamp": "2024-05-16T12:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.839700", + "Timestamp": "2024-05-16T12:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-16T12:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.199200", + "Timestamp": "2024-05-16T12:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.312400", + "Timestamp": "2024-05-16T12:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.191000", + "Timestamp": "2024-05-16T12:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.187300", + "Timestamp": "2024-05-16T12:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131000", + "Timestamp": "2024-05-16T12:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.829600", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.824600", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.699600", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.878600", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.873600", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.748600", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.707800", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.219600", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.214600", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.089600", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.482200", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.157300", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.874100", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.869100", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.744100", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.338000", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.333000", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.208000", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.801100", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.796100", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.671100", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.853700", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.548700", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.748800", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.743800", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.618800", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.733700", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.728700", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.603700", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.078300", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.958000", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.953000", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.828000", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.324100", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.807700", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.802700", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.677700", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.122900", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.021300", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.063100", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.016300", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.058100", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.891300", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.933100", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116100", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.984000", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.436100", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.406100", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.306100", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.105600", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.166100", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.463600", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.458600", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.333600", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.484100", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.479100", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.354100", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.739600", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.734600", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.609600", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222700", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.288100", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.258100", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.158100", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159100", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155400", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099100", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.100600", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119300", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.367000", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.964100", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.934100", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.834100", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235700", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.543500", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.624300", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.619300", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.494300", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441600", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.363700", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.097100", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.067100", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967100", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077700", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.048700", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017700", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.807600", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.797300", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.484900", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.219800", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.216100", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159800", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.416500", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.381600", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.411500", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.376600", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.286500", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.251600", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091700", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088000", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031700", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.142200", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.674600", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.644600", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.544600", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.320500", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.315500", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190500", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.958700", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.792600", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.787600", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.662600", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.181700", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177700", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121700", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.551000", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.546000", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.421000", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.615500", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.023500", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.767600", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.180400", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.220400", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120400", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080300", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076600", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020300", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299500", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294500", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169500", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.735900", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.730900", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.605900", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.232000", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.272000", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172000", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.641200", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.636200", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.511200", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362000", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.357000", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.232000", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.large", + "ProductDescription": "Windows", + "SpotPrice": "0.138300", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.724900", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.576600", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.571600", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.446600", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.497600", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.492600", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.367600", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.260100", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.944600", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.939600", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.814600", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.304200", + "Timestamp": "2024-05-16T12:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.299200", + "Timestamp": "2024-05-16T12:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.174200", + "Timestamp": "2024-05-16T12:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.583700", + "Timestamp": "2024-05-16T12:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.578700", + "Timestamp": "2024-05-16T12:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.453700", + "Timestamp": "2024-05-16T12:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.815400", + "Timestamp": "2024-05-16T12:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.644900", + "Timestamp": "2024-05-16T12:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.639900", + "Timestamp": "2024-05-16T12:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.514900", + "Timestamp": "2024-05-16T12:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.420500", + "Timestamp": "2024-05-16T12:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.385900", + "Timestamp": "2024-05-16T12:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.380900", + "Timestamp": "2024-05-16T12:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.255900", + "Timestamp": "2024-05-16T12:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.673400", + "Timestamp": "2024-05-16T12:31:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.668400", + "Timestamp": "2024-05-16T12:31:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.543400", + "Timestamp": "2024-05-16T12:31:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.822200", + "Timestamp": "2024-05-16T12:31:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.792200", + "Timestamp": "2024-05-16T12:31:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.692200", + "Timestamp": "2024-05-16T12:31:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.375400", + "Timestamp": "2024-05-16T12:31:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.370400", + "Timestamp": "2024-05-16T12:31:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.245400", + "Timestamp": "2024-05-16T12:31:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.435100", + "Timestamp": "2024-05-16T12:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.405100", + "Timestamp": "2024-05-16T12:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.305100", + "Timestamp": "2024-05-16T12:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.427600", + "Timestamp": "2024-05-16T12:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150900", + "Timestamp": "2024-05-16T12:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147200", + "Timestamp": "2024-05-16T12:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090900", + "Timestamp": "2024-05-16T12:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.499200", + "Timestamp": "2024-05-16T12:31:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.494200", + "Timestamp": "2024-05-16T12:31:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.369200", + "Timestamp": "2024-05-16T12:31:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.963700", + "Timestamp": "2024-05-16T12:31:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.773000", + "Timestamp": "2024-05-16T12:31:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219800", + "Timestamp": "2024-05-16T12:31:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.923400", + "Timestamp": "2024-05-16T12:31:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141400", + "Timestamp": "2024-05-16T12:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137700", + "Timestamp": "2024-05-16T12:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081400", + "Timestamp": "2024-05-16T12:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.824700", + "Timestamp": "2024-05-16T12:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128800", + "Timestamp": "2024-05-16T12:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168800", + "Timestamp": "2024-05-16T12:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-16T12:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.481100", + "Timestamp": "2024-05-16T12:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.476100", + "Timestamp": "2024-05-16T12:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.351100", + "Timestamp": "2024-05-16T12:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.949500", + "Timestamp": "2024-05-16T12:31:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.284500", + "Timestamp": "2024-05-16T12:31:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.944500", + "Timestamp": "2024-05-16T12:31:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.279500", + "Timestamp": "2024-05-16T12:31:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.819500", + "Timestamp": "2024-05-16T12:31:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.154500", + "Timestamp": "2024-05-16T12:31:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.926100", + "Timestamp": "2024-05-16T12:31:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.921100", + "Timestamp": "2024-05-16T12:31:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.796100", + "Timestamp": "2024-05-16T12:31:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.041400", + "Timestamp": "2024-05-16T12:30:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.011400", + "Timestamp": "2024-05-16T12:30:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.911400", + "Timestamp": "2024-05-16T12:30:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082300", + "Timestamp": "2024-05-16T12:30:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.053300", + "Timestamp": "2024-05-16T12:30:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022300", + "Timestamp": "2024-05-16T12:30:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.552000", + "Timestamp": "2024-05-16T12:30:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.866600", + "Timestamp": "2024-05-16T12:28:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.866600", + "Timestamp": "2024-05-16T12:28:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.866600", + "Timestamp": "2024-05-16T12:28:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064400", + "Timestamp": "2024-05-16T12:24:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004400", + "Timestamp": "2024-05-16T12:24:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004400", + "Timestamp": "2024-05-16T12:24:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.130200", + "Timestamp": "2024-05-16T12:19:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.130300", + "Timestamp": "2024-05-16T12:19:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123500", + "Timestamp": "2024-05-16T12:19:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125900", + "Timestamp": "2024-05-16T12:19:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132700", + "Timestamp": "2024-05-16T12:19:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119800", + "Timestamp": "2024-05-16T12:19:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122200", + "Timestamp": "2024-05-16T12:19:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129000", + "Timestamp": "2024-05-16T12:19:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063500", + "Timestamp": "2024-05-16T12:19:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065900", + "Timestamp": "2024-05-16T12:19:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072700", + "Timestamp": "2024-05-16T12:19:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.974100", + "Timestamp": "2024-05-16T12:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114300", + "Timestamp": "2024-05-16T12:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T12:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054300", + "Timestamp": "2024-05-16T12:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.464600", + "Timestamp": "2024-05-16T12:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.434600", + "Timestamp": "2024-05-16T12:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.334600", + "Timestamp": "2024-05-16T12:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.193000", + "Timestamp": "2024-05-16T12:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.188000", + "Timestamp": "2024-05-16T12:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.063000", + "Timestamp": "2024-05-16T12:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.940900", + "Timestamp": "2024-05-16T12:16:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.968400", + "Timestamp": "2024-05-16T12:16:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.208400", + "Timestamp": "2024-05-16T12:16:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.048200", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.644700", + "Timestamp": "2024-05-16T12:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.265100", + "Timestamp": "2024-05-16T12:16:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.190900", + "Timestamp": "2024-05-16T12:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.038800", + "Timestamp": "2024-05-16T12:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.341000", + "Timestamp": "2024-05-16T12:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.351400", + "Timestamp": "2024-05-16T12:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.478600", + "Timestamp": "2024-05-16T12:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473600", + "Timestamp": "2024-05-16T12:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.348600", + "Timestamp": "2024-05-16T12:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.470200", + "Timestamp": "2024-05-16T12:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.433900", + "Timestamp": "2024-05-16T12:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.428900", + "Timestamp": "2024-05-16T12:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.303900", + "Timestamp": "2024-05-16T12:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.199900", + "Timestamp": "2024-05-16T12:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.194900", + "Timestamp": "2024-05-16T12:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.069900", + "Timestamp": "2024-05-16T12:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.498400", + "Timestamp": "2024-05-16T12:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.493400", + "Timestamp": "2024-05-16T12:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.368400", + "Timestamp": "2024-05-16T12:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.835500", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.950100", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.945100", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.820100", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.497300", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.492300", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.367300", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.451500", + "Timestamp": "2024-05-16T12:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.031800", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.287600", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.677900", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.647900", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.547900", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.497600", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.492600", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.367600", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.954500", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.272400", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.275600", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.853300", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.427100", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.247000", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.172800", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.167800", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.042800", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.372200", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.488700", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.974300", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.899600", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.869600", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.769600", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.058300", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.053300", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.928300", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.123200", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.361400", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.356400", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.231400", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.026000", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.021000", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.896000", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.568600", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.563600", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.438600", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.206700", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.203000", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146700", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.324800", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.319800", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.194800", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.372700", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.367700", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242700", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.388700", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.383700", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.258700", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133700", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130000", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073700", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.374500", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.369500", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.244500", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.247200", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.242200", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.117200", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.054600", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.049600", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.924600", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129700", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126000", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069700", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.402000", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.397000", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.272000", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.013700", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.008700", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.883700", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126100", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122400", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066100", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.264200", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.259200", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.134200", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.069100", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.427800", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.422800", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.297800", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.234600", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117000", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057000", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.161400", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.242000", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.637700", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050800", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.515000", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.510000", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.385000", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.470900", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.465900", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.340900", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131900", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127900", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071900", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122900", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119200", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062900", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.277300", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.272300", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.147300", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.339400", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.285500", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.701800", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.441500", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.436500", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.311500", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.681600", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.946800", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.941800", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.816800", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.484500", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.479500", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.354500", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.392000", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.436500", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.431500", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.306500", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.622000", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.661900", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.656900", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.531900", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.031000", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.026000", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.901000", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.986500", + "Timestamp": "2024-05-16T12:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.805300", + "Timestamp": "2024-05-16T12:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.365000", + "Timestamp": "2024-05-16T12:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.335000", + "Timestamp": "2024-05-16T12:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235000", + "Timestamp": "2024-05-16T12:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.181500", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177800", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121500", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m1.large", + "ProductDescription": "Windows", + "SpotPrice": "0.180000", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.829700", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.824700", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.699700", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.512100", + "Timestamp": "2024-05-16T12:16:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.507100", + "Timestamp": "2024-05-16T12:16:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.382100", + "Timestamp": "2024-05-16T12:16:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.895000", + "Timestamp": "2024-05-16T12:16:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.250800", + "Timestamp": "2024-05-16T12:16:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.181400", + "Timestamp": "2024-05-16T12:16:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.151400", + "Timestamp": "2024-05-16T12:16:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.051400", + "Timestamp": "2024-05-16T12:16:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.035200", + "Timestamp": "2024-05-16T12:16:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164200", + "Timestamp": "2024-05-16T12:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160500", + "Timestamp": "2024-05-16T12:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T12:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.857300", + "Timestamp": "2024-05-16T12:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.852300", + "Timestamp": "2024-05-16T12:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.727300", + "Timestamp": "2024-05-16T12:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.731500", + "Timestamp": "2024-05-16T12:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.726500", + "Timestamp": "2024-05-16T12:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.601500", + "Timestamp": "2024-05-16T12:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-16T12:16:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.853400", + "Timestamp": "2024-05-16T12:16:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.848400", + "Timestamp": "2024-05-16T12:16:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.723400", + "Timestamp": "2024-05-16T12:16:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.166700", + "Timestamp": "2024-05-16T12:16:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.161700", + "Timestamp": "2024-05-16T12:16:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.036700", + "Timestamp": "2024-05-16T12:16:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.239100", + "Timestamp": "2024-05-16T12:15:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.234100", + "Timestamp": "2024-05-16T12:15:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.109100", + "Timestamp": "2024-05-16T12:15:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.992700", + "Timestamp": "2024-05-16T12:15:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.987700", + "Timestamp": "2024-05-16T12:15:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.862700", + "Timestamp": "2024-05-16T12:15:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.169400", + "Timestamp": "2024-05-16T12:15:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.164400", + "Timestamp": "2024-05-16T12:15:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.039400", + "Timestamp": "2024-05-16T12:15:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.822300", + "Timestamp": "2024-05-16T12:02:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.817300", + "Timestamp": "2024-05-16T12:02:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.692300", + "Timestamp": "2024-05-16T12:02:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120600", + "Timestamp": "2024-05-16T12:02:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-16T12:02:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060600", + "Timestamp": "2024-05-16T12:02:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.872900", + "Timestamp": "2024-05-16T12:02:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.209400", + "Timestamp": "2024-05-16T12:02:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.204400", + "Timestamp": "2024-05-16T12:02:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.079400", + "Timestamp": "2024-05-16T12:02:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.998600", + "Timestamp": "2024-05-16T12:02:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.993600", + "Timestamp": "2024-05-16T12:02:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.868600", + "Timestamp": "2024-05-16T12:02:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.596100", + "Timestamp": "2024-05-16T12:01:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.566100", + "Timestamp": "2024-05-16T12:01:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.466100", + "Timestamp": "2024-05-16T12:01:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.045100", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.040100", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.915100", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.198500", + "Timestamp": "2024-05-16T12:01:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.474600", + "Timestamp": "2024-05-16T12:01:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.467100", + "Timestamp": "2024-05-16T12:01:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.037700", + "Timestamp": "2024-05-16T12:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.024400", + "Timestamp": "2024-05-16T12:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.396100", + "Timestamp": "2024-05-16T12:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.391100", + "Timestamp": "2024-05-16T12:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.266100", + "Timestamp": "2024-05-16T12:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.143300", + "Timestamp": "2024-05-16T12:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.138300", + "Timestamp": "2024-05-16T12:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.013300", + "Timestamp": "2024-05-16T12:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.043800", + "Timestamp": "2024-05-16T12:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.662200", + "Timestamp": "2024-05-16T12:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.657200", + "Timestamp": "2024-05-16T12:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.532200", + "Timestamp": "2024-05-16T12:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091600", + "Timestamp": "2024-05-16T12:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087900", + "Timestamp": "2024-05-16T12:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031600", + "Timestamp": "2024-05-16T12:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120700", + "Timestamp": "2024-05-16T12:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.692300", + "Timestamp": "2024-05-16T12:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.013000", + "Timestamp": "2024-05-16T12:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.980800", + "Timestamp": "2024-05-16T12:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.124800", + "Timestamp": "2024-05-16T12:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.119800", + "Timestamp": "2024-05-16T12:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.994800", + "Timestamp": "2024-05-16T12:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168300", + "Timestamp": "2024-05-16T12:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164600", + "Timestamp": "2024-05-16T12:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108300", + "Timestamp": "2024-05-16T12:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.557200", + "Timestamp": "2024-05-16T12:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.738700", + "Timestamp": "2024-05-16T12:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.708700", + "Timestamp": "2024-05-16T12:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.608700", + "Timestamp": "2024-05-16T12:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.547100", + "Timestamp": "2024-05-16T12:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.542100", + "Timestamp": "2024-05-16T12:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.417100", + "Timestamp": "2024-05-16T12:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.204300", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.200300", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144300", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.857000", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.852000", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.727000", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.232600", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.227600", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.102600", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.070000", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.065000", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.940000", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080200", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076500", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020200", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.746500", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.741500", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.616500", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.261300", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.256300", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.131300", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.801300", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.446700", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.441700", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.316700", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.541900", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.943900", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.938900", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.813900", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.683900", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.276600", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.678900", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.271600", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.553900", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.146600", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.246300", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.241300", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.116300", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.269000", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.264000", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.139000", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.039700", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.183100", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179400", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123100", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.361300", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.053400", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.048400", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.923400", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.816300", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.811300", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.686300", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.102300", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.097300", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.972300", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.057400", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.125800", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.120800", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.995800", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.190200", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.430200", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.552900", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.256500", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.251500", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126500", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.961400", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.956400", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.831400", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214500", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.680600", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118300", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.753600", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.748600", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.623600", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.686200", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.681200", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.556200", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.296200", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.266200", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.166200", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.819800", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.814800", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.689800", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360600", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.355600", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230600", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.093900", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.088900", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.963900", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.741500", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.711500", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.611500", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.724500", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.719500", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.594500", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.604900", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.599900", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.474900", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.680100", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.675100", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.550100", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.604300", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.599300", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.474300", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.112000", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.261700", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.156700", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.896900", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.891900", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.766900", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.579700", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.574700", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.449700", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.588500", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.583500", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.458500", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.746700", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.741700", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.616700", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.068700", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.063700", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.938700", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.590900", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.989800", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.839100", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.977500", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.972500", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.847500", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170600", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.210600", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.161300", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.806000", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.801000", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.676000", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.806600", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.801600", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.676600", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.532000", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.527000", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.402000", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.186500", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.182500", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126500", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.940600", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.709700", + "Timestamp": "2024-05-16T12:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.704700", + "Timestamp": "2024-05-16T12:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.579700", + "Timestamp": "2024-05-16T12:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.217000", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.212000", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.087000", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.945100", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.940100", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.815100", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.503500", + "Timestamp": "2024-05-16T12:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171700", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168000", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111700", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.419900", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.414900", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.289900", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.647400", + "Timestamp": "2024-05-16T12:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.458400", + "Timestamp": "2024-05-16T12:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.981100", + "Timestamp": "2024-05-16T12:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.976100", + "Timestamp": "2024-05-16T12:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.851100", + "Timestamp": "2024-05-16T12:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.500800", + "Timestamp": "2024-05-16T12:01:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.495800", + "Timestamp": "2024-05-16T12:01:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.370800", + "Timestamp": "2024-05-16T12:01:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.445800", + "Timestamp": "2024-05-16T12:01:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.474500", + "Timestamp": "2024-05-16T12:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T12:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-16T12:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050600", + "Timestamp": "2024-05-16T12:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.460600", + "Timestamp": "2024-05-16T12:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.455600", + "Timestamp": "2024-05-16T12:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.330600", + "Timestamp": "2024-05-16T12:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.264100", + "Timestamp": "2024-05-16T12:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.259100", + "Timestamp": "2024-05-16T12:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.134100", + "Timestamp": "2024-05-16T12:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.251200", + "Timestamp": "2024-05-16T12:01:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.910300", + "Timestamp": "2024-05-16T12:01:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.682000", + "Timestamp": "2024-05-16T12:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.677000", + "Timestamp": "2024-05-16T12:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.552000", + "Timestamp": "2024-05-16T12:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.060200", + "Timestamp": "2024-05-16T12:01:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.044300", + "Timestamp": "2024-05-16T12:01:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.381000", + "Timestamp": "2024-05-16T12:01:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.376000", + "Timestamp": "2024-05-16T12:01:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.251000", + "Timestamp": "2024-05-16T12:01:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.236200", + "Timestamp": "2024-05-16T12:01:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.387400", + "Timestamp": "2024-05-16T12:01:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.382400", + "Timestamp": "2024-05-16T12:01:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.257400", + "Timestamp": "2024-05-16T12:01:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062600", + "Timestamp": "2024-05-16T12:01:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-16T12:01:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-16T12:01:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.670700", + "Timestamp": "2024-05-16T12:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.437100", + "Timestamp": "2024-05-16T12:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T12:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T12:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047700", + "Timestamp": "2024-05-16T12:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176900", + "Timestamp": "2024-05-16T12:01:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173200", + "Timestamp": "2024-05-16T12:01:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-16T12:01:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.329700", + "Timestamp": "2024-05-16T12:00:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T12:00:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101900", + "Timestamp": "2024-05-16T12:00:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045900", + "Timestamp": "2024-05-16T12:00:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.927100", + "Timestamp": "2024-05-16T12:00:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.214600", + "Timestamp": "2024-05-16T11:47:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.209600", + "Timestamp": "2024-05-16T11:47:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084600", + "Timestamp": "2024-05-16T11:47:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.485100", + "Timestamp": "2024-05-16T11:47:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.411900", + "Timestamp": "2024-05-16T11:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.406900", + "Timestamp": "2024-05-16T11:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.281900", + "Timestamp": "2024-05-16T11:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.886000", + "Timestamp": "2024-05-16T11:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.881000", + "Timestamp": "2024-05-16T11:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.756000", + "Timestamp": "2024-05-16T11:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.112100", + "Timestamp": "2024-05-16T11:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.347300", + "Timestamp": "2024-05-16T11:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343300", + "Timestamp": "2024-05-16T11:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.287300", + "Timestamp": "2024-05-16T11:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.235400", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.231700", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175400", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160700", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157000", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100700", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.137900", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.107200", + "Timestamp": "2024-05-16T11:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.102200", + "Timestamp": "2024-05-16T11:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.977200", + "Timestamp": "2024-05-16T11:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.935400", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.244000", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.240300", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184000", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.984900", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.282800", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.277800", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.152800", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.564800", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.202100", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.197100", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.072100", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.685600", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.680600", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.555600", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.463900", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.458900", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.333900", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.883700", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.878700", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.753700", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.543300", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.538300", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.413300", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.896400", + "Timestamp": "2024-05-16T11:47:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.190000", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.186300", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130000", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.663200", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.265100", + "Timestamp": "2024-05-16T11:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.260100", + "Timestamp": "2024-05-16T11:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.135100", + "Timestamp": "2024-05-16T11:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.267200", + "Timestamp": "2024-05-16T11:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262200", + "Timestamp": "2024-05-16T11:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137200", + "Timestamp": "2024-05-16T11:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.649300", + "Timestamp": "2024-05-16T11:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.644300", + "Timestamp": "2024-05-16T11:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.519300", + "Timestamp": "2024-05-16T11:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Windows", + "SpotPrice": "4.473600", + "Timestamp": "2024-05-16T11:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.485400", + "Timestamp": "2024-05-16T11:47:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.480400", + "Timestamp": "2024-05-16T11:47:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.355400", + "Timestamp": "2024-05-16T11:47:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.141400", + "Timestamp": "2024-05-16T11:47:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.806600", + "Timestamp": "2024-05-16T11:47:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.801600", + "Timestamp": "2024-05-16T11:47:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.676600", + "Timestamp": "2024-05-16T11:47:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.280900", + "Timestamp": "2024-05-16T11:47:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.250900", + "Timestamp": "2024-05-16T11:47:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.150900", + "Timestamp": "2024-05-16T11:47:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.661000", + "Timestamp": "2024-05-16T11:47:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.656000", + "Timestamp": "2024-05-16T11:47:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.531000", + "Timestamp": "2024-05-16T11:47:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.953800", + "Timestamp": "2024-05-16T11:47:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360700", + "Timestamp": "2024-05-16T11:47:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.355700", + "Timestamp": "2024-05-16T11:47:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230700", + "Timestamp": "2024-05-16T11:47:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.961800", + "Timestamp": "2024-05-16T11:47:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.956800", + "Timestamp": "2024-05-16T11:47:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.831800", + "Timestamp": "2024-05-16T11:47:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.453400", + "Timestamp": "2024-05-16T11:47:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.408100", + "Timestamp": "2024-05-16T11:47:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.378100", + "Timestamp": "2024-05-16T11:47:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.278100", + "Timestamp": "2024-05-16T11:47:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.343000", + "Timestamp": "2024-05-16T11:47:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.338000", + "Timestamp": "2024-05-16T11:47:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.213000", + "Timestamp": "2024-05-16T11:47:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.359300", + "Timestamp": "2024-05-16T11:46:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.816100", + "Timestamp": "2024-05-16T11:46:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.811100", + "Timestamp": "2024-05-16T11:46:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.686100", + "Timestamp": "2024-05-16T11:46:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.650900", + "Timestamp": "2024-05-16T11:46:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.645900", + "Timestamp": "2024-05-16T11:46:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.520900", + "Timestamp": "2024-05-16T11:46:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.982500", + "Timestamp": "2024-05-16T11:46:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.977500", + "Timestamp": "2024-05-16T11:46:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.852500", + "Timestamp": "2024-05-16T11:46:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.488400", + "Timestamp": "2024-05-16T11:46:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.470600", + "Timestamp": "2024-05-16T11:46:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.502500", + "Timestamp": "2024-05-16T11:46:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.497500", + "Timestamp": "2024-05-16T11:46:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.372500", + "Timestamp": "2024-05-16T11:46:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.026900", + "Timestamp": "2024-05-16T11:46:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423300", + "Timestamp": "2024-05-16T11:46:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.950300", + "Timestamp": "2024-05-16T11:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.529900", + "Timestamp": "2024-05-16T11:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.524900", + "Timestamp": "2024-05-16T11:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.399900", + "Timestamp": "2024-05-16T11:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.956400", + "Timestamp": "2024-05-16T11:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.926400", + "Timestamp": "2024-05-16T11:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.826400", + "Timestamp": "2024-05-16T11:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.965300", + "Timestamp": "2024-05-16T11:46:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.395500", + "Timestamp": "2024-05-16T11:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.390500", + "Timestamp": "2024-05-16T11:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.265500", + "Timestamp": "2024-05-16T11:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.676500", + "Timestamp": "2024-05-16T11:46:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.646500", + "Timestamp": "2024-05-16T11:46:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.546500", + "Timestamp": "2024-05-16T11:46:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216500", + "Timestamp": "2024-05-16T11:46:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.152800", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.122800", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.022800", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.810500", + "Timestamp": "2024-05-16T11:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.805500", + "Timestamp": "2024-05-16T11:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.680500", + "Timestamp": "2024-05-16T11:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.185200", + "Timestamp": "2024-05-16T11:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.180200", + "Timestamp": "2024-05-16T11:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.055200", + "Timestamp": "2024-05-16T11:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.311700", + "Timestamp": "2024-05-16T11:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.424400", + "Timestamp": "2024-05-16T11:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.685300", + "Timestamp": "2024-05-16T11:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.680300", + "Timestamp": "2024-05-16T11:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.555300", + "Timestamp": "2024-05-16T11:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.333300", + "Timestamp": "2024-05-16T11:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.328300", + "Timestamp": "2024-05-16T11:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.203300", + "Timestamp": "2024-05-16T11:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.488600", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.483200", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.483600", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.478200", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.358600", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.353200", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173600", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169900", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113600", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117700", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113700", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057700", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.183800", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179800", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123800", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099600", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039600", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.333600", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.373600", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.273600", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.153000", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.148000", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.023000", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.625000", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.595000", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.495000", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.534800", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.529800", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.404800", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.840100", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.572800", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.442000", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.449800", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.102500", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.097500", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.972500", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138800", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.178800", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078800", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.796300", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.980300", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.975300", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.850300", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.805200", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.867400", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.024500", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.019500", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.894500", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.267700", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.647800", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.621500", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.280700", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273600", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.275700", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268600", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150700", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143600", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.476300", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.446300", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.346300", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.947700", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.425300", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.624500", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.546700", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.426000", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.421000", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.296000", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.577800", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.547800", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.447800", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.745000", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.740000", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.615000", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.215900", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094700", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091000", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034700", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.869500", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.232700", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.227700", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.102700", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.445700", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115400", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055400", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.559700", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.554700", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.429700", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.965800", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.872600", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.834800", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.829800", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.704800", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.808600", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.778600", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.678600", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.683000", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.190100", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.061200", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.731000", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.103000", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.098000", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.973000", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.417200", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.298100", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.193300", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.188300", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.063300", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.715200", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.710200", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.585200", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.056800", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.051800", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.926800", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.064200", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.949400", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.944400", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.819400", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.370200", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.224000", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.219000", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.094000", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.487100", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.482100", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.357100", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.579000", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.574000", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.449000", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.399200", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149600", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.189600", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089600", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120000", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116000", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060000", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.088100", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.755900", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.609800", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.579800", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.479800", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.170500", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.165500", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.040500", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.851800", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.417200", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.387200", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.287200", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.231500", + "Timestamp": "2024-05-16T11:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.967800", + "Timestamp": "2024-05-16T11:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.226500", + "Timestamp": "2024-05-16T11:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.962800", + "Timestamp": "2024-05-16T11:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.101500", + "Timestamp": "2024-05-16T11:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.837800", + "Timestamp": "2024-05-16T11:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.315000", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167800", + "Timestamp": "2024-05-16T11:32:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163800", + "Timestamp": "2024-05-16T11:32:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107800", + "Timestamp": "2024-05-16T11:32:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.499100", + "Timestamp": "2024-05-16T11:32:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.759800", + "Timestamp": "2024-05-16T11:32:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.754800", + "Timestamp": "2024-05-16T11:32:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.629800", + "Timestamp": "2024-05-16T11:32:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.250100", + "Timestamp": "2024-05-16T11:31:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.245100", + "Timestamp": "2024-05-16T11:31:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.120100", + "Timestamp": "2024-05-16T11:31:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.668500", + "Timestamp": "2024-05-16T11:31:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.638500", + "Timestamp": "2024-05-16T11:31:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.538500", + "Timestamp": "2024-05-16T11:31:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.884300", + "Timestamp": "2024-05-16T11:31:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.625800", + "Timestamp": "2024-05-16T11:31:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.879300", + "Timestamp": "2024-05-16T11:31:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.620800", + "Timestamp": "2024-05-16T11:31:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.754300", + "Timestamp": "2024-05-16T11:31:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.495800", + "Timestamp": "2024-05-16T11:31:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137000", + "Timestamp": "2024-05-16T11:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177000", + "Timestamp": "2024-05-16T11:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077000", + "Timestamp": "2024-05-16T11:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.423100", + "Timestamp": "2024-05-16T11:31:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.836600", + "Timestamp": "2024-05-16T11:31:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.828500", + "Timestamp": "2024-05-16T11:31:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.912800", + "Timestamp": "2024-05-16T11:31:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T11:31:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-16T11:31:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044600", + "Timestamp": "2024-05-16T11:31:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.852300", + "Timestamp": "2024-05-16T11:31:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.847300", + "Timestamp": "2024-05-16T11:31:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.722300", + "Timestamp": "2024-05-16T11:31:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.514400", + "Timestamp": "2024-05-16T11:31:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.509400", + "Timestamp": "2024-05-16T11:31:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.384400", + "Timestamp": "2024-05-16T11:31:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.885500", + "Timestamp": "2024-05-16T11:31:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.855500", + "Timestamp": "2024-05-16T11:31:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.755500", + "Timestamp": "2024-05-16T11:31:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091900", + "Timestamp": "2024-05-16T11:31:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088200", + "Timestamp": "2024-05-16T11:31:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031900", + "Timestamp": "2024-05-16T11:31:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167700", + "Timestamp": "2024-05-16T11:31:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164000", + "Timestamp": "2024-05-16T11:31:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T11:31:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.683200", + "Timestamp": "2024-05-16T11:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.855300", + "Timestamp": "2024-05-16T11:31:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145800", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142100", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085800", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.646000", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.007100", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.002100", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.877100", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.571100", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.473400", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.765500", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.735500", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.635500", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.739000", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.734000", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.609000", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.763300", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.946500", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.250100", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.245100", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.120100", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.101100", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.943900", + "Timestamp": "2024-05-16T11:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.938900", + "Timestamp": "2024-05-16T11:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.813900", + "Timestamp": "2024-05-16T11:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.051800", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.046800", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.921800", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.976500", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.383900", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.576900", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.504900", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.499900", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.374900", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.964700", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p2.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.934700", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.834700", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.162200", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.771300", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.157200", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.766300", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.032200", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.641300", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.172100", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.167100", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.042100", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.149200", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.119200", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.019200", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.046900", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.803900", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.800200", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.743900", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.847200", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.842200", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.717200", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.790900", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.826900", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124100", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164100", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064100", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.963400", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.958400", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.833400", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.524500", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.519500", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.394500", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.818500", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.813500", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.688500", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.276100", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.427300", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.422300", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.297300", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.859800", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.508600", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.503600", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.378600", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.841500", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.836500", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.711500", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.680600", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.923800", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.675600", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.918800", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.550600", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.793800", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.670200", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.665200", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.540200", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128800", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168800", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.277400", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.247400", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147400", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.681300", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.676300", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.551300", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.699100", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.694100", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.569100", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.188300", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.184300", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128300", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.227700", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170500", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166500", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.864000", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.353900", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.348900", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.223900", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.449600", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.444600", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.319600", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153200", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149500", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093200", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046600", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.086700", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.081700", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.956700", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.555700", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.550700", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.425700", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.203800", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.173800", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.073800", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.900200", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.895200", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.770200", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.414900", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.384900", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.284900", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.420700", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.415700", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.290700", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.842700", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.837700", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.712700", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.347300", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.122300", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.487700", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.638700", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.525100", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.351200", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.346200", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.221200", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.200000", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.224800", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.219800", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.094800", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.600000", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.552700", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.522700", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.422700", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.032300", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.002300", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.902300", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.163600", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119700", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116000", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059700", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.576900", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.571900", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.446900", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.445200", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.440200", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.315200", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.189200", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.184200", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.059200", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.001900", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.996900", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.871900", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.255600", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.592800", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.587800", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.462800", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118700", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.543600", + "Timestamp": "2024-05-16T11:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.538600", + "Timestamp": "2024-05-16T11:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.413600", + "Timestamp": "2024-05-16T11:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.790900", + "Timestamp": "2024-05-16T11:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.785900", + "Timestamp": "2024-05-16T11:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.660900", + "Timestamp": "2024-05-16T11:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.574800", + "Timestamp": "2024-05-16T11:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.569800", + "Timestamp": "2024-05-16T11:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.444800", + "Timestamp": "2024-05-16T11:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.503400", + "Timestamp": "2024-05-16T11:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.498400", + "Timestamp": "2024-05-16T11:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.373400", + "Timestamp": "2024-05-16T11:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.384200", + "Timestamp": "2024-05-16T11:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.354200", + "Timestamp": "2024-05-16T11:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.254200", + "Timestamp": "2024-05-16T11:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.886400", + "Timestamp": "2024-05-16T11:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.303700", + "Timestamp": "2024-05-16T11:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.298700", + "Timestamp": "2024-05-16T11:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.173700", + "Timestamp": "2024-05-16T11:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.206800", + "Timestamp": "2024-05-16T11:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.202800", + "Timestamp": "2024-05-16T11:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146800", + "Timestamp": "2024-05-16T11:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.821200", + "Timestamp": "2024-05-16T11:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.816200", + "Timestamp": "2024-05-16T11:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.691200", + "Timestamp": "2024-05-16T11:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075100", + "Timestamp": "2024-05-16T11:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.046100", + "Timestamp": "2024-05-16T11:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015100", + "Timestamp": "2024-05-16T11:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.990000", + "Timestamp": "2024-05-16T11:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.832200", + "Timestamp": "2024-05-16T11:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.827200", + "Timestamp": "2024-05-16T11:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.702200", + "Timestamp": "2024-05-16T11:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.196900", + "Timestamp": "2024-05-16T11:31:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193200", + "Timestamp": "2024-05-16T11:31:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136900", + "Timestamp": "2024-05-16T11:31:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.922300", + "Timestamp": "2024-05-16T11:31:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.880700", + "Timestamp": "2024-05-16T11:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.875700", + "Timestamp": "2024-05-16T11:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.750700", + "Timestamp": "2024-05-16T11:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.038300", + "Timestamp": "2024-05-16T11:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.992700", + "Timestamp": "2024-05-16T11:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.962700", + "Timestamp": "2024-05-16T11:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.862700", + "Timestamp": "2024-05-16T11:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.020600", + "Timestamp": "2024-05-16T11:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.015600", + "Timestamp": "2024-05-16T11:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.890600", + "Timestamp": "2024-05-16T11:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.921800", + "Timestamp": "2024-05-16T11:31:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.916800", + "Timestamp": "2024-05-16T11:31:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.791800", + "Timestamp": "2024-05-16T11:31:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.929600", + "Timestamp": "2024-05-16T11:31:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.021700", + "Timestamp": "2024-05-16T11:31:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.016700", + "Timestamp": "2024-05-16T11:31:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.891700", + "Timestamp": "2024-05-16T11:31:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.712100", + "Timestamp": "2024-05-16T11:30:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.707100", + "Timestamp": "2024-05-16T11:30:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.582100", + "Timestamp": "2024-05-16T11:30:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.669600", + "Timestamp": "2024-05-16T11:20:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.111600", + "Timestamp": "2024-05-16T11:20:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.577500", + "Timestamp": "2024-05-16T11:20:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.249900", + "Timestamp": "2024-05-16T11:20:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.856800", + "Timestamp": "2024-05-16T11:20:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.804200", + "Timestamp": "2024-05-16T11:20:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.244900", + "Timestamp": "2024-05-16T11:20:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.851800", + "Timestamp": "2024-05-16T11:20:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.799200", + "Timestamp": "2024-05-16T11:20:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.119900", + "Timestamp": "2024-05-16T11:20:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.726800", + "Timestamp": "2024-05-16T11:20:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.674200", + "Timestamp": "2024-05-16T11:20:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119500", + "Timestamp": "2024-05-16T11:19:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118700", + "Timestamp": "2024-05-16T11:19:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104300", + "Timestamp": "2024-05-16T11:19:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101000", + "Timestamp": "2024-05-16T11:19:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T11:19:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100600", + "Timestamp": "2024-05-16T11:19:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097300", + "Timestamp": "2024-05-16T11:19:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100700", + "Timestamp": "2024-05-16T11:19:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044300", + "Timestamp": "2024-05-16T11:19:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041000", + "Timestamp": "2024-05-16T11:19:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044400", + "Timestamp": "2024-05-16T11:19:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.541500", + "Timestamp": "2024-05-16T11:17:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.564200", + "Timestamp": "2024-05-16T11:17:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.495200", + "Timestamp": "2024-05-16T11:17:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.363500", + "Timestamp": "2024-05-16T11:17:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.488900", + "Timestamp": "2024-05-16T11:17:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.458900", + "Timestamp": "2024-05-16T11:17:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.358900", + "Timestamp": "2024-05-16T11:17:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.416100", + "Timestamp": "2024-05-16T11:16:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.411100", + "Timestamp": "2024-05-16T11:16:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.286100", + "Timestamp": "2024-05-16T11:16:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.968000", + "Timestamp": "2024-05-16T11:16:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.169400", + "Timestamp": "2024-05-16T11:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130400", + "Timestamp": "2024-05-16T11:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126700", + "Timestamp": "2024-05-16T11:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070400", + "Timestamp": "2024-05-16T11:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.420000", + "Timestamp": "2024-05-16T11:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.567000", + "Timestamp": "2024-05-16T11:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.306700", + "Timestamp": "2024-05-16T11:16:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.301700", + "Timestamp": "2024-05-16T11:16:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.176700", + "Timestamp": "2024-05-16T11:16:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.335000", + "Timestamp": "2024-05-16T11:16:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.196500", + "Timestamp": "2024-05-16T11:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.906700", + "Timestamp": "2024-05-16T11:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.691000", + "Timestamp": "2024-05-16T11:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.686000", + "Timestamp": "2024-05-16T11:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.561000", + "Timestamp": "2024-05-16T11:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.476800", + "Timestamp": "2024-05-16T11:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.500900", + "Timestamp": "2024-05-16T11:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.331300", + "Timestamp": "2024-05-16T11:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.326300", + "Timestamp": "2024-05-16T11:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.201300", + "Timestamp": "2024-05-16T11:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.191700", + "Timestamp": "2024-05-16T11:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.428700", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.651300", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.703800", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.698800", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.573800", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.127700", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.122700", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.997700", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213700", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.478400", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.473400", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.348400", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.513100", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.508100", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.383100", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.580500", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115400", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.220000", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.388100", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.383100", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.258100", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.906400", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.901400", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.776400", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.180400", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.175400", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.050400", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.571900", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.566900", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.441900", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.462600", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093500", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089800", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033500", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.982400", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.977400", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.852400", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.425800", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.816800", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.811800", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.686800", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.463500", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.458500", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.333500", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.391700", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.386700", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.261700", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.803600", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.031500", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.026500", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.901500", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.568000", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.563000", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.438000", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.457400", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.427300", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.505900", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.665800", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.660800", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.535800", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101400", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045400", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.448900", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.443900", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.318900", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.275800", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "a1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270800", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145800", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.396200", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.391200", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.266200", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138000", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078000", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154600", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054600", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.805600", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.800600", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.675600", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.195100", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.191100", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.135100", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.064500", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.474700", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.469700", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.344700", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.353400", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.348400", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.223400", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.774800", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.744800", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.644800", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.036000", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.966800", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.884000", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.136600", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.479500", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.474500", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.349500", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128200", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.704200", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.699200", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.574200", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.097800", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233800", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.225300", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.220300", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.095300", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.210500", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.206500", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150500", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.128100", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.252400", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.123100", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.247400", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.998100", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.122400", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212200", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.208700", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.428400", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.223700", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.821900", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.405600", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.400600", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.275600", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.414800", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.400000", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.409800", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.395000", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.284800", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.270000", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.877600", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.320300", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.732500", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.727500", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.602500", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.920600", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.086900", + "Timestamp": "2024-05-16T11:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.081900", + "Timestamp": "2024-05-16T11:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.956900", + "Timestamp": "2024-05-16T11:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.116300", + "Timestamp": "2024-05-16T11:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.111300", + "Timestamp": "2024-05-16T11:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.986300", + "Timestamp": "2024-05-16T11:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111200", + "Timestamp": "2024-05-16T11:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T11:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051200", + "Timestamp": "2024-05-16T11:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.612500", + "Timestamp": "2024-05-16T11:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.609100", + "Timestamp": "2024-05-16T11:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.604100", + "Timestamp": "2024-05-16T11:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.479100", + "Timestamp": "2024-05-16T11:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092000", + "Timestamp": "2024-05-16T11:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088300", + "Timestamp": "2024-05-16T11:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032000", + "Timestamp": "2024-05-16T11:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.335600", + "Timestamp": "2024-05-16T11:16:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.330600", + "Timestamp": "2024-05-16T11:16:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.205600", + "Timestamp": "2024-05-16T11:16:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.430900", + "Timestamp": "2024-05-16T11:16:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.426900", + "Timestamp": "2024-05-16T11:16:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.370900", + "Timestamp": "2024-05-16T11:16:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.831400", + "Timestamp": "2024-05-16T11:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.181900", + "Timestamp": "2024-05-16T11:16:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.178200", + "Timestamp": "2024-05-16T11:16:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121900", + "Timestamp": "2024-05-16T11:16:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.008600", + "Timestamp": "2024-05-16T11:16:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.517400", + "Timestamp": "2024-05-16T11:16:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.487400", + "Timestamp": "2024-05-16T11:16:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.387400", + "Timestamp": "2024-05-16T11:16:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.418600", + "Timestamp": "2024-05-16T11:16:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.388600", + "Timestamp": "2024-05-16T11:16:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.288600", + "Timestamp": "2024-05-16T11:16:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.680000", + "Timestamp": "2024-05-16T11:16:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.650000", + "Timestamp": "2024-05-16T11:16:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.550000", + "Timestamp": "2024-05-16T11:16:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.806200", + "Timestamp": "2024-05-16T11:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.801200", + "Timestamp": "2024-05-16T11:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.676200", + "Timestamp": "2024-05-16T11:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.414500", + "Timestamp": "2024-05-16T11:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.427900", + "Timestamp": "2024-05-16T11:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.811300", + "Timestamp": "2024-05-16T11:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.806300", + "Timestamp": "2024-05-16T11:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.681300", + "Timestamp": "2024-05-16T11:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.579800", + "Timestamp": "2024-05-16T11:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.574800", + "Timestamp": "2024-05-16T11:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.449800", + "Timestamp": "2024-05-16T11:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.863900", + "Timestamp": "2024-05-16T11:16:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.159000", + "Timestamp": "2024-05-16T11:16:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.858900", + "Timestamp": "2024-05-16T11:16:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.154000", + "Timestamp": "2024-05-16T11:16:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.733900", + "Timestamp": "2024-05-16T11:16:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.029000", + "Timestamp": "2024-05-16T11:16:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.751900", + "Timestamp": "2024-05-16T11:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.721900", + "Timestamp": "2024-05-16T11:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.621900", + "Timestamp": "2024-05-16T11:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.477500", + "Timestamp": "2024-05-16T11:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.748700", + "Timestamp": "2024-05-16T11:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.743700", + "Timestamp": "2024-05-16T11:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.618700", + "Timestamp": "2024-05-16T11:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.944500", + "Timestamp": "2024-05-16T11:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.199200", + "Timestamp": "2024-05-16T11:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.195200", + "Timestamp": "2024-05-16T11:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139200", + "Timestamp": "2024-05-16T11:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.906500", + "Timestamp": "2024-05-16T11:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.901500", + "Timestamp": "2024-05-16T11:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.776500", + "Timestamp": "2024-05-16T11:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.788900", + "Timestamp": "2024-05-16T11:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.783900", + "Timestamp": "2024-05-16T11:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.658900", + "Timestamp": "2024-05-16T11:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134200", + "Timestamp": "2024-05-16T11:16:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130500", + "Timestamp": "2024-05-16T11:16:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074200", + "Timestamp": "2024-05-16T11:16:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.598000", + "Timestamp": "2024-05-16T11:16:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.593000", + "Timestamp": "2024-05-16T11:16:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.468000", + "Timestamp": "2024-05-16T11:16:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.308800", + "Timestamp": "2024-05-16T11:16:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.278800", + "Timestamp": "2024-05-16T11:16:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.178800", + "Timestamp": "2024-05-16T11:16:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.310400", + "Timestamp": "2024-05-16T11:16:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.305400", + "Timestamp": "2024-05-16T11:16:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180400", + "Timestamp": "2024-05-16T11:16:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.086500", + "Timestamp": "2024-05-16T11:15:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.056500", + "Timestamp": "2024-05-16T11:15:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.956500", + "Timestamp": "2024-05-16T11:15:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.059400", + "Timestamp": "2024-05-16T11:02:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.702200", + "Timestamp": "2024-05-16T11:02:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.697200", + "Timestamp": "2024-05-16T11:02:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.572200", + "Timestamp": "2024-05-16T11:02:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.098200", + "Timestamp": "2024-05-16T11:02:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.093200", + "Timestamp": "2024-05-16T11:02:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.968200", + "Timestamp": "2024-05-16T11:02:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222600", + "Timestamp": "2024-05-16T11:02:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.229400", + "Timestamp": "2024-05-16T11:02:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.461600", + "Timestamp": "2024-05-16T11:01:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.456600", + "Timestamp": "2024-05-16T11:01:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.331600", + "Timestamp": "2024-05-16T11:01:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.400700", + "Timestamp": "2024-05-16T11:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.370700", + "Timestamp": "2024-05-16T11:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.270700", + "Timestamp": "2024-05-16T11:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221200", + "Timestamp": "2024-05-16T11:01:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.322600", + "Timestamp": "2024-05-16T11:01:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.699400", + "Timestamp": "2024-05-16T11:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.694400", + "Timestamp": "2024-05-16T11:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.569400", + "Timestamp": "2024-05-16T11:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.002300", + "Timestamp": "2024-05-16T11:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.837100", + "Timestamp": "2024-05-16T11:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.832100", + "Timestamp": "2024-05-16T11:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.707100", + "Timestamp": "2024-05-16T11:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.260800", + "Timestamp": "2024-05-16T11:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.623700", + "Timestamp": "2024-05-16T11:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.618700", + "Timestamp": "2024-05-16T11:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.493700", + "Timestamp": "2024-05-16T11:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.219200", + "Timestamp": "2024-05-16T11:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.214200", + "Timestamp": "2024-05-16T11:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.089200", + "Timestamp": "2024-05-16T11:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.472900", + "Timestamp": "2024-05-16T11:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.945000", + "Timestamp": "2024-05-16T11:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.815300", + "Timestamp": "2024-05-16T11:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.810300", + "Timestamp": "2024-05-16T11:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.685300", + "Timestamp": "2024-05-16T11:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233200", + "Timestamp": "2024-05-16T11:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.025400", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.020400", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.895400", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.274800", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298100", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293100", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168100", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.753000", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.748000", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.623000", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.064400", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.959000", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.579500", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.560300", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.574500", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.555300", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.449500", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.430300", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.470900", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165400", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161400", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.216300", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.532900", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.936500", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.906500", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.806500", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.807000", + "Timestamp": "2024-05-16T11:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.802000", + "Timestamp": "2024-05-16T11:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.677000", + "Timestamp": "2024-05-16T11:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.425200", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.660800", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.655800", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.530800", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.867800", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.518000", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165300", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161300", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105300", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.465900", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.986400", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.981400", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.856400", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.486700", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.481700", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.356700", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.872000", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.499000", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.494000", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.369000", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.458900", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.042500", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.013600", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.471900", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.466900", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.341900", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.429400", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.424400", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.299400", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.327700", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.322700", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.197700", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.889300", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.985300", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.980300", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.855300", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.334900", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.329900", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.204900", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.571800", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.566800", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.441800", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.393400", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.799600", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.794600", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.669600", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.511800", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.506800", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.381800", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118400", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114700", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058400", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.024700", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.019700", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.894700", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.126900", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.121900", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.996900", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.936000", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.931000", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.806000", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.268200", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.263200", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.138200", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330300", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.300300", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200300", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.837800", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.551300", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.546300", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.421300", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.272500", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267500", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142500", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.822000", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.817000", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.692000", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.150400", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.145400", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.020400", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.847000", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.842000", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.717000", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.519400", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.489400", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.389400", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.300700", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.295700", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170700", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.179000", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.175300", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119000", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.426500", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.421500", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.296500", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.197300", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.690700", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.224100", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.220400", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164100", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.757700", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.247200", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.242200", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.117200", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.365200", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.360200", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235200", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.425600", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.420600", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.295600", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.422100", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.417100", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.292100", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117900", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114200", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057900", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.428400", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.423400", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.298400", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.512500", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.507500", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.382500", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.514700", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.509700", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.384700", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.363800", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.334100", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.358800", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.329100", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.233800", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.204100", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044000", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.077800", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.072800", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.947800", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.416300", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.991800", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.986800", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.861800", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.447700", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.442700", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.317700", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.549100", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.519100", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.419100", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.898300", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.189100", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185100", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129100", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m1.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086000", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m1.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.056000", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m1.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026000", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.025900", + "Timestamp": "2024-05-16T11:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.020900", + "Timestamp": "2024-05-16T11:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.895900", + "Timestamp": "2024-05-16T11:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.872500", + "Timestamp": "2024-05-16T11:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.947800", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111700", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154500", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151700", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054500", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051700", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.672000", + "Timestamp": "2024-05-16T11:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.667000", + "Timestamp": "2024-05-16T11:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.542000", + "Timestamp": "2024-05-16T11:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.643100", + "Timestamp": "2024-05-16T11:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.135500", + "Timestamp": "2024-05-16T11:01:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138900", + "Timestamp": "2024-05-16T11:01:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.178900", + "Timestamp": "2024-05-16T11:01:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078900", + "Timestamp": "2024-05-16T11:01:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.731200", + "Timestamp": "2024-05-16T11:01:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.701200", + "Timestamp": "2024-05-16T11:01:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.601200", + "Timestamp": "2024-05-16T11:01:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299400", + "Timestamp": "2024-05-16T11:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294400", + "Timestamp": "2024-05-16T11:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169400", + "Timestamp": "2024-05-16T11:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.185700", + "Timestamp": "2024-05-16T11:01:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.155700", + "Timestamp": "2024-05-16T11:01:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.055700", + "Timestamp": "2024-05-16T11:01:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.269800", + "Timestamp": "2024-05-16T11:01:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.264800", + "Timestamp": "2024-05-16T11:01:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139800", + "Timestamp": "2024-05-16T11:01:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.797100", + "Timestamp": "2024-05-16T11:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.792100", + "Timestamp": "2024-05-16T11:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.667100", + "Timestamp": "2024-05-16T11:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.752300", + "Timestamp": "2024-05-16T11:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.630300", + "Timestamp": "2024-05-16T11:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.180200", + "Timestamp": "2024-05-16T11:01:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.220200", + "Timestamp": "2024-05-16T11:01:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120200", + "Timestamp": "2024-05-16T11:01:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.179900", + "Timestamp": "2024-05-16T11:01:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.174900", + "Timestamp": "2024-05-16T11:01:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.049900", + "Timestamp": "2024-05-16T11:01:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.495400", + "Timestamp": "2024-05-16T11:01:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.586800", + "Timestamp": "2024-05-16T11:01:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.556800", + "Timestamp": "2024-05-16T11:01:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.456800", + "Timestamp": "2024-05-16T11:01:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.679600", + "Timestamp": "2024-05-16T11:01:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.674600", + "Timestamp": "2024-05-16T11:01:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.549600", + "Timestamp": "2024-05-16T11:01:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155200", + "Timestamp": "2024-05-16T11:01:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151200", + "Timestamp": "2024-05-16T11:01:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095200", + "Timestamp": "2024-05-16T11:01:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.747300", + "Timestamp": "2024-05-16T11:00:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.742300", + "Timestamp": "2024-05-16T11:00:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.617300", + "Timestamp": "2024-05-16T11:00:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220600", + "Timestamp": "2024-05-16T10:57:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220600", + "Timestamp": "2024-05-16T10:57:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220600", + "Timestamp": "2024-05-16T10:57:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.822100", + "Timestamp": "2024-05-16T10:52:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.894000", + "Timestamp": "2024-05-16T10:51:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.894000", + "Timestamp": "2024-05-16T10:51:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.808100", + "Timestamp": "2024-05-16T10:47:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.796500", + "Timestamp": "2024-05-16T10:46:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.897500", + "Timestamp": "2024-05-16T10:46:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217600", + "Timestamp": "2024-05-16T10:46:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.284300", + "Timestamp": "2024-05-16T10:46:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.279300", + "Timestamp": "2024-05-16T10:46:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.154300", + "Timestamp": "2024-05-16T10:46:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.268600", + "Timestamp": "2024-05-16T10:46:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.699400", + "Timestamp": "2024-05-16T10:46:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.109100", + "Timestamp": "2024-05-16T10:46:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.023400", + "Timestamp": "2024-05-16T10:46:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.213900", + "Timestamp": "2024-05-16T10:46:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.678800", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.975300", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.970300", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.845300", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.462600", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.630600", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.625600", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.500600", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.832600", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.827600", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.702600", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.612200", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.410500", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.448300", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.257700", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.252700", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.127700", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.717100", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.712100", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.587100", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.410900", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.405900", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.280900", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.458300", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.429600", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g3s.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.425600", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.369600", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.336000", + "Timestamp": "2024-05-16T10:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.331000", + "Timestamp": "2024-05-16T10:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.206000", + "Timestamp": "2024-05-16T10:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.077100", + "Timestamp": "2024-05-16T10:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.072100", + "Timestamp": "2024-05-16T10:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.947100", + "Timestamp": "2024-05-16T10:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.190000", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.185000", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.060000", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.456300", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.456200", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.334200", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079300", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075600", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019300", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.511900", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.506900", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.381900", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.546500", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.541500", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.416500", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.484200", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.479200", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.354200", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.030800", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.850800", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.845800", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.720800", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.540400", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.535400", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.410400", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.330200", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.325200", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.200200", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.106300", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.636200", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.631200", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.506200", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.891100", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.946300", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.941300", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.816300", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119500", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.575700", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.444300", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.570700", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.439300", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.445700", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.314300", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.495800", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.199600", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "a1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.194600", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069600", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.434900", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.141700", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.136700", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.011700", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314200", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.309200", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184200", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.089700", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.480700", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.475700", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.350700", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124000", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.468600", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.463600", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.338600", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.239700", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.209700", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.109700", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.141800", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.111800", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.011800", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.939900", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.926700", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.285000", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.280000", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.155000", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071700", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042700", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011700", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.215100", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.210100", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.085100", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.656600", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.651600", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.526600", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117300", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113300", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057300", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.789400", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.759400", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.659400", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.404500", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.399500", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.274500", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.899200", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.886300", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.881300", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.756300", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125500", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121800", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065500", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.594000", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.564000", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.464000", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.432300", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.427300", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.302300", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152200", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148500", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092200", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.869400", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.907600", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.839400", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.877600", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.739400", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.777600", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.390700", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.385700", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.260700", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.576000", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.571000", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.446000", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114900", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111200", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054900", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.913600", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.908600", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.783600", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.896400", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.891400", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.766400", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.969700", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.964700", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.839700", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.865800", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.843900", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.860800", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.838900", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.735800", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.713900", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.443400", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.438400", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.313400", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126700", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166700", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066700", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.847900", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.817900", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.717900", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.821300", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.816300", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.691300", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.497400", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.492400", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.367400", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.697800", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.255800", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.244700", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229900", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.269000", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143400", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139700", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083400", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.590100", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.560100", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.460100", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.833000", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.828000", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.703000", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.182000", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.178000", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122000", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126000", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166000", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066000", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.783400", + "Timestamp": "2024-05-16T10:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.537000", + "Timestamp": "2024-05-16T10:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.326300", + "Timestamp": "2024-05-16T10:46:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.321300", + "Timestamp": "2024-05-16T10:46:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196300", + "Timestamp": "2024-05-16T10:46:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.962500", + "Timestamp": "2024-05-16T10:46:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.539400", + "Timestamp": "2024-05-16T10:46:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.464200", + "Timestamp": "2024-05-16T10:46:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.459200", + "Timestamp": "2024-05-16T10:46:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.334200", + "Timestamp": "2024-05-16T10:46:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.918100", + "Timestamp": "2024-05-16T10:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.742200", + "Timestamp": "2024-05-16T10:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.737200", + "Timestamp": "2024-05-16T10:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.612200", + "Timestamp": "2024-05-16T10:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.926600", + "Timestamp": "2024-05-16T10:46:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T10:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T10:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044900", + "Timestamp": "2024-05-16T10:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.888700", + "Timestamp": "2024-05-16T10:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.883700", + "Timestamp": "2024-05-16T10:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.758700", + "Timestamp": "2024-05-16T10:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158300", + "Timestamp": "2024-05-16T10:46:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154300", + "Timestamp": "2024-05-16T10:46:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098300", + "Timestamp": "2024-05-16T10:46:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.435700", + "Timestamp": "2024-05-16T10:46:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.430700", + "Timestamp": "2024-05-16T10:46:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.305700", + "Timestamp": "2024-05-16T10:46:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.495800", + "Timestamp": "2024-05-16T10:46:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.490800", + "Timestamp": "2024-05-16T10:46:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.365800", + "Timestamp": "2024-05-16T10:46:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.256100", + "Timestamp": "2024-05-16T10:45:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.251100", + "Timestamp": "2024-05-16T10:45:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.126100", + "Timestamp": "2024-05-16T10:45:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.779300", + "Timestamp": "2024-05-16T10:45:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.774300", + "Timestamp": "2024-05-16T10:45:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.649300", + "Timestamp": "2024-05-16T10:45:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.736100", + "Timestamp": "2024-05-16T10:41:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.390400", + "Timestamp": "2024-05-16T10:33:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.390400", + "Timestamp": "2024-05-16T10:33:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.390400", + "Timestamp": "2024-05-16T10:33:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.514000", + "Timestamp": "2024-05-16T10:32:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.633500", + "Timestamp": "2024-05-16T10:32:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.772400", + "Timestamp": "2024-05-16T10:31:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.249200", + "Timestamp": "2024-05-16T10:31:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.251000", + "Timestamp": "2024-05-16T10:31:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116000", + "Timestamp": "2024-05-16T10:31:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221400", + "Timestamp": "2024-05-16T10:31:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.668000", + "Timestamp": "2024-05-16T10:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.078200", + "Timestamp": "2024-05-16T10:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.075500", + "Timestamp": "2024-05-16T10:31:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.308900", + "Timestamp": "2024-05-16T10:31:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.278900", + "Timestamp": "2024-05-16T10:31:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.178900", + "Timestamp": "2024-05-16T10:31:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.382600", + "Timestamp": "2024-05-16T10:31:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.377600", + "Timestamp": "2024-05-16T10:31:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.252600", + "Timestamp": "2024-05-16T10:31:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.789700", + "Timestamp": "2024-05-16T10:31:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.747900", + "Timestamp": "2024-05-16T10:31:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.445700", + "Timestamp": "2024-05-16T10:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.262700", + "Timestamp": "2024-05-16T10:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.257700", + "Timestamp": "2024-05-16T10:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.132700", + "Timestamp": "2024-05-16T10:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.489200", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.911000", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.906000", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.781000", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.994700", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.921100", + "Timestamp": "2024-05-16T10:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.916100", + "Timestamp": "2024-05-16T10:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.791100", + "Timestamp": "2024-05-16T10:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.703400", + "Timestamp": "2024-05-16T10:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163500", + "Timestamp": "2024-05-16T10:31:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159800", + "Timestamp": "2024-05-16T10:31:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T10:31:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.634800", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.629800", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.504800", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.612900", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.761500", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.607900", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.756500", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.482900", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.631500", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.141100", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.136100", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.011100", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.143700", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.138700", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.013700", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116000", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056000", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.117800", + "Timestamp": "2024-05-16T10:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114200", + "Timestamp": "2024-05-16T10:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.681700", + "Timestamp": "2024-05-16T10:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.181700", + "Timestamp": "2024-05-16T10:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.176700", + "Timestamp": "2024-05-16T10:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.051700", + "Timestamp": "2024-05-16T10:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.509300", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.504300", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.379300", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.718400", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.713400", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.588400", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.697300", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.692300", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.567300", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.922100", + "Timestamp": "2024-05-16T10:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.242800", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.228900", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "a1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.223900", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098900", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.227900", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.266000", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.866700", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.861700", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.736700", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.979400", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.974400", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.849400", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.995900", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.462500", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.457500", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.332500", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.019900", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.165200", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.135200", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.035200", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.599700", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.569700", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.469700", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176700", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173000", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116700", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.059000", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.054000", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.929000", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.911100", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.906100", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.781100", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.964600", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.959600", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.834600", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.969900", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.661400", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.656400", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.531400", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.426300", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.421300", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.296300", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.653900", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.648900", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.523900", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079200", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119200", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019200", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079500", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.050500", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019500", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.031300", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.026300", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.901300", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.320400", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.315400", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190400", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.515500", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.510500", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.385500", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223800", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.882500", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.752200", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.318400", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.313400", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.188400", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.404700", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.399700", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.274700", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.175600", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.937800", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.111600", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049400", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124100", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120100", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064100", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088600", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084900", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028600", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.459200", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.857300", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.508200", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.421600", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.321500", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.291500", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.191500", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.738500", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.733500", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.608500", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.715100", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.416400", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.386400", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.286400", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.515400", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.888100", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.883100", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.758100", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.850600", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.012400", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.206800", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.201800", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.076800", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "a1.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.212000", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "a1.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.207000", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "a1.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082000", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.984600", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.146000", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.350400", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.320400", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.220400", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211700", + "Timestamp": "2024-05-16T10:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.196700", + "Timestamp": "2024-05-16T10:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193000", + "Timestamp": "2024-05-16T10:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136700", + "Timestamp": "2024-05-16T10:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.109200", + "Timestamp": "2024-05-16T10:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.664700", + "Timestamp": "2024-05-16T10:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.659700", + "Timestamp": "2024-05-16T10:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.534700", + "Timestamp": "2024-05-16T10:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.638900", + "Timestamp": "2024-05-16T10:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080900", + "Timestamp": "2024-05-16T10:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077200", + "Timestamp": "2024-05-16T10:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020900", + "Timestamp": "2024-05-16T10:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.338600", + "Timestamp": "2024-05-16T10:31:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.333600", + "Timestamp": "2024-05-16T10:31:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.208600", + "Timestamp": "2024-05-16T10:31:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.660400", + "Timestamp": "2024-05-16T10:31:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.655400", + "Timestamp": "2024-05-16T10:31:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.530400", + "Timestamp": "2024-05-16T10:31:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122200", + "Timestamp": "2024-05-16T10:31:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118200", + "Timestamp": "2024-05-16T10:31:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062200", + "Timestamp": "2024-05-16T10:31:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T10:31:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107800", + "Timestamp": "2024-05-16T10:31:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050800", + "Timestamp": "2024-05-16T10:31:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.334700", + "Timestamp": "2024-05-16T10:31:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.304700", + "Timestamp": "2024-05-16T10:31:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.204700", + "Timestamp": "2024-05-16T10:31:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.181500", + "Timestamp": "2024-05-16T10:31:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T10:31:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166300", + "Timestamp": "2024-05-16T10:31:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066300", + "Timestamp": "2024-05-16T10:31:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.471800", + "Timestamp": "2024-05-16T10:31:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.739400", + "Timestamp": "2024-05-16T10:31:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091400", + "Timestamp": "2024-05-16T10:31:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087700", + "Timestamp": "2024-05-16T10:31:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031400", + "Timestamp": "2024-05-16T10:31:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129100", + "Timestamp": "2024-05-16T10:31:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169100", + "Timestamp": "2024-05-16T10:31:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069100", + "Timestamp": "2024-05-16T10:31:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.180900", + "Timestamp": "2024-05-16T10:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.220900", + "Timestamp": "2024-05-16T10:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120900", + "Timestamp": "2024-05-16T10:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077100", + "Timestamp": "2024-05-16T10:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.048100", + "Timestamp": "2024-05-16T10:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017100", + "Timestamp": "2024-05-16T10:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.879400", + "Timestamp": "2024-05-16T10:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.874400", + "Timestamp": "2024-05-16T10:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.749400", + "Timestamp": "2024-05-16T10:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.912100", + "Timestamp": "2024-05-16T10:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.907100", + "Timestamp": "2024-05-16T10:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.782100", + "Timestamp": "2024-05-16T10:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.378400", + "Timestamp": "2024-05-16T10:30:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.415600", + "Timestamp": "2024-05-16T10:30:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.373400", + "Timestamp": "2024-05-16T10:30:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.410600", + "Timestamp": "2024-05-16T10:30:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.248400", + "Timestamp": "2024-05-16T10:30:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.285600", + "Timestamp": "2024-05-16T10:30:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151900", + "Timestamp": "2024-05-16T10:30:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147900", + "Timestamp": "2024-05-16T10:30:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091900", + "Timestamp": "2024-05-16T10:30:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161200", + "Timestamp": "2024-05-16T10:30:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157200", + "Timestamp": "2024-05-16T10:30:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T10:30:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.530400", + "Timestamp": "2024-05-16T10:30:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.012600", + "Timestamp": "2024-05-16T10:21:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069500", + "Timestamp": "2024-05-16T10:18:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039500", + "Timestamp": "2024-05-16T10:18:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009500", + "Timestamp": "2024-05-16T10:18:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-16T10:17:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.426500", + "Timestamp": "2024-05-16T10:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.743400", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.738400", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.613400", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311300", + "Timestamp": "2024-05-16T10:17:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.306300", + "Timestamp": "2024-05-16T10:17:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181300", + "Timestamp": "2024-05-16T10:17:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.846700", + "Timestamp": "2024-05-16T10:17:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.841700", + "Timestamp": "2024-05-16T10:17:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.716700", + "Timestamp": "2024-05-16T10:17:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.953200", + "Timestamp": "2024-05-16T10:17:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.948200", + "Timestamp": "2024-05-16T10:17:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.823200", + "Timestamp": "2024-05-16T10:17:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.942000", + "Timestamp": "2024-05-16T10:17:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.296000", + "Timestamp": "2024-05-16T10:16:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.291000", + "Timestamp": "2024-05-16T10:16:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.166000", + "Timestamp": "2024-05-16T10:16:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.826800", + "Timestamp": "2024-05-16T10:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.821800", + "Timestamp": "2024-05-16T10:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.696800", + "Timestamp": "2024-05-16T10:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.861000", + "Timestamp": "2024-05-16T10:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.831000", + "Timestamp": "2024-05-16T10:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.731000", + "Timestamp": "2024-05-16T10:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.127000", + "Timestamp": "2024-05-16T10:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.854500", + "Timestamp": "2024-05-16T10:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.849500", + "Timestamp": "2024-05-16T10:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.724500", + "Timestamp": "2024-05-16T10:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.135600", + "Timestamp": "2024-05-16T10:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.006700", + "Timestamp": "2024-05-16T10:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.489700", + "Timestamp": "2024-05-16T10:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.484700", + "Timestamp": "2024-05-16T10:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.359700", + "Timestamp": "2024-05-16T10:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.008800", + "Timestamp": "2024-05-16T10:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.003800", + "Timestamp": "2024-05-16T10:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.878800", + "Timestamp": "2024-05-16T10:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.259900", + "Timestamp": "2024-05-16T10:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.254900", + "Timestamp": "2024-05-16T10:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.129900", + "Timestamp": "2024-05-16T10:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.361400", + "Timestamp": "2024-05-16T10:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.356400", + "Timestamp": "2024-05-16T10:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.231400", + "Timestamp": "2024-05-16T10:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.626400", + "Timestamp": "2024-05-16T10:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.621400", + "Timestamp": "2024-05-16T10:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.496400", + "Timestamp": "2024-05-16T10:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235200", + "Timestamp": "2024-05-16T10:16:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.837700", + "Timestamp": "2024-05-16T10:16:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.616600", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.611600", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.486600", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.467300", + "Timestamp": "2024-05-16T10:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096100", + "Timestamp": "2024-05-16T10:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092400", + "Timestamp": "2024-05-16T10:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036100", + "Timestamp": "2024-05-16T10:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.331600", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.326600", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.201600", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.117800", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.714300", + "Timestamp": "2024-05-16T10:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.709300", + "Timestamp": "2024-05-16T10:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.584300", + "Timestamp": "2024-05-16T10:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124900", + "Timestamp": "2024-05-16T10:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.843200", + "Timestamp": "2024-05-16T10:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.813200", + "Timestamp": "2024-05-16T10:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.713200", + "Timestamp": "2024-05-16T10:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.292400", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262400", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162400", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.731200", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.732300", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.004200", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.999200", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.874200", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.522800", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.517800", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.392800", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.631700", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.626700", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.501700", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.581100", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.576100", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.451100", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.517700", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.512700", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.387700", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.250900", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.323800", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.318800", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.193800", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.406100", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.532900", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.986900", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.620700", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.615700", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.490700", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.583400", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.207000", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.203300", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147000", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.691700", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.240200", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.885900", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.880900", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.755900", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.192000", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.099000", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.094000", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.969000", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.377100", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.855800", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.692200", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.809400", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.804400", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.679400", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.139500", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.301200", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.296200", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.171200", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.669300", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.510000", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.664300", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.505000", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.539300", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.380000", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.857800", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.956500", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.481900", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.906400", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.868800", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.863800", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.738800", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.180000", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.175000", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.050000", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Windows", + "SpotPrice": "4.545900", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.351900", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.346900", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.221900", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046100", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.564400", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.559400", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.434400", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.198000", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.193000", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.068000", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.115900", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.110900", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.985900", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.763600", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.733600", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.633600", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.559100", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.557300", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298500", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293500", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168500", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.187400", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183400", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127400", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.518700", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235700", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.319600", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.289600", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.189600", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.820500", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.790500", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.690500", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.860900", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221400", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046600", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126000", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155500", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122300", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151800", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066000", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095500", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.693100", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.319200", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.905400", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.838500", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.833500", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.708500", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.927100", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.898200", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.991800", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118100", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114400", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058100", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.990200", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.985200", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.860200", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429200", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.867100", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.960700", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.955700", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.830700", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.459200", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.454200", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.329200", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.892200", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.127700", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.122700", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.997700", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.890600", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.885600", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.760600", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.502200", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.497200", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.372200", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.362900", + "Timestamp": "2024-05-16T10:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.357900", + "Timestamp": "2024-05-16T10:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.232900", + "Timestamp": "2024-05-16T10:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.446000", + "Timestamp": "2024-05-16T10:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.441000", + "Timestamp": "2024-05-16T10:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.316000", + "Timestamp": "2024-05-16T10:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.860800", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.830800", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.730800", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151300", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147600", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091300", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.053900", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.048900", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.923900", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.216200", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.211200", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.086200", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166500", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.206500", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105500", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101800", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045500", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.218800", + "Timestamp": "2024-05-16T10:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.215100", + "Timestamp": "2024-05-16T10:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158800", + "Timestamp": "2024-05-16T10:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071600", + "Timestamp": "2024-05-16T10:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042600", + "Timestamp": "2024-05-16T10:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011600", + "Timestamp": "2024-05-16T10:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.170600", + "Timestamp": "2024-05-16T10:16:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.140600", + "Timestamp": "2024-05-16T10:16:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.040600", + "Timestamp": "2024-05-16T10:16:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.245300", + "Timestamp": "2024-05-16T10:16:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.240300", + "Timestamp": "2024-05-16T10:16:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.115300", + "Timestamp": "2024-05-16T10:16:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.025400", + "Timestamp": "2024-05-16T10:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.057500", + "Timestamp": "2024-05-16T10:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.052500", + "Timestamp": "2024-05-16T10:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.927500", + "Timestamp": "2024-05-16T10:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118500", + "Timestamp": "2024-05-16T10:16:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301000", + "Timestamp": "2024-05-16T10:16:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296000", + "Timestamp": "2024-05-16T10:16:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171000", + "Timestamp": "2024-05-16T10:16:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.339100", + "Timestamp": "2024-05-16T10:16:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.309100", + "Timestamp": "2024-05-16T10:16:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.209100", + "Timestamp": "2024-05-16T10:16:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164300", + "Timestamp": "2024-05-16T10:16:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.204300", + "Timestamp": "2024-05-16T10:16:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104300", + "Timestamp": "2024-05-16T10:16:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.920900", + "Timestamp": "2024-05-16T10:16:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.267500", + "Timestamp": "2024-05-16T10:16:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.501500", + "Timestamp": "2024-05-16T10:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130900", + "Timestamp": "2024-05-16T10:16:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127200", + "Timestamp": "2024-05-16T10:16:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070900", + "Timestamp": "2024-05-16T10:16:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.043600", + "Timestamp": "2024-05-16T10:16:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.460300", + "Timestamp": "2024-05-16T10:16:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.540300", + "Timestamp": "2024-05-16T10:16:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117600", + "Timestamp": "2024-05-16T10:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T10:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057600", + "Timestamp": "2024-05-16T10:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.788900", + "Timestamp": "2024-05-16T10:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.783900", + "Timestamp": "2024-05-16T10:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.658900", + "Timestamp": "2024-05-16T10:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.445800", + "Timestamp": "2024-05-16T10:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.521300", + "Timestamp": "2024-05-16T10:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.516300", + "Timestamp": "2024-05-16T10:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.391300", + "Timestamp": "2024-05-16T10:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.884900", + "Timestamp": "2024-05-16T10:16:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.609900", + "Timestamp": "2024-05-16T10:15:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.604900", + "Timestamp": "2024-05-16T10:15:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.479900", + "Timestamp": "2024-05-16T10:15:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.579400", + "Timestamp": "2024-05-16T10:15:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.574400", + "Timestamp": "2024-05-16T10:15:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.449400", + "Timestamp": "2024-05-16T10:15:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.822100", + "Timestamp": "2024-05-16T10:02:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.822100", + "Timestamp": "2024-05-16T10:02:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.064100", + "Timestamp": "2024-05-16T10:02:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.059100", + "Timestamp": "2024-05-16T10:02:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.934100", + "Timestamp": "2024-05-16T10:02:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.702800", + "Timestamp": "2024-05-16T10:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146800", + "Timestamp": "2024-05-16T10:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143100", + "Timestamp": "2024-05-16T10:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086800", + "Timestamp": "2024-05-16T10:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.413800", + "Timestamp": "2024-05-16T10:02:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212500", + "Timestamp": "2024-05-16T10:02:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.813300", + "Timestamp": "2024-05-16T10:02:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.808300", + "Timestamp": "2024-05-16T10:02:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.683300", + "Timestamp": "2024-05-16T10:02:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.810600", + "Timestamp": "2024-05-16T10:02:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.693300", + "Timestamp": "2024-05-16T10:02:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.688300", + "Timestamp": "2024-05-16T10:02:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.563300", + "Timestamp": "2024-05-16T10:02:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.925700", + "Timestamp": "2024-05-16T10:02:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.698600", + "Timestamp": "2024-05-16T10:02:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.668600", + "Timestamp": "2024-05-16T10:02:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.568600", + "Timestamp": "2024-05-16T10:02:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.224000", + "Timestamp": "2024-05-16T10:02:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.219000", + "Timestamp": "2024-05-16T10:02:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.094000", + "Timestamp": "2024-05-16T10:02:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.574300", + "Timestamp": "2024-05-16T10:02:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.569300", + "Timestamp": "2024-05-16T10:02:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.444300", + "Timestamp": "2024-05-16T10:02:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220400", + "Timestamp": "2024-05-16T10:01:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.987300", + "Timestamp": "2024-05-16T10:01:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.970700", + "Timestamp": "2024-05-16T10:01:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.234300", + "Timestamp": "2024-05-16T10:01:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.980200", + "Timestamp": "2024-05-16T10:01:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.975200", + "Timestamp": "2024-05-16T10:01:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.850200", + "Timestamp": "2024-05-16T10:01:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.066300", + "Timestamp": "2024-05-16T10:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084700", + "Timestamp": "2024-05-16T10:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.055700", + "Timestamp": "2024-05-16T10:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024700", + "Timestamp": "2024-05-16T10:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.212700", + "Timestamp": "2024-05-16T10:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.575700", + "Timestamp": "2024-05-16T10:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.248600", + "Timestamp": "2024-05-16T10:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.243600", + "Timestamp": "2024-05-16T10:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.118600", + "Timestamp": "2024-05-16T10:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.177700", + "Timestamp": "2024-05-16T10:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.907200", + "Timestamp": "2024-05-16T10:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.282900", + "Timestamp": "2024-05-16T10:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.902200", + "Timestamp": "2024-05-16T10:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.277900", + "Timestamp": "2024-05-16T10:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.777200", + "Timestamp": "2024-05-16T10:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.152900", + "Timestamp": "2024-05-16T10:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.862600", + "Timestamp": "2024-05-16T10:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.857600", + "Timestamp": "2024-05-16T10:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.732600", + "Timestamp": "2024-05-16T10:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.770300", + "Timestamp": "2024-05-16T10:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294100", + "Timestamp": "2024-05-16T10:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289100", + "Timestamp": "2024-05-16T10:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164100", + "Timestamp": "2024-05-16T10:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.696100", + "Timestamp": "2024-05-16T10:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.926600", + "Timestamp": "2024-05-16T10:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.921600", + "Timestamp": "2024-05-16T10:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.796600", + "Timestamp": "2024-05-16T10:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.465300", + "Timestamp": "2024-05-16T10:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163400", + "Timestamp": "2024-05-16T10:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.203400", + "Timestamp": "2024-05-16T10:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103400", + "Timestamp": "2024-05-16T10:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090100", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086400", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030100", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.605700", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172400", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168700", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.765900", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087500", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083800", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027500", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.271500", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.266500", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.141500", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.123200", + "Timestamp": "2024-05-16T10:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155900", + "Timestamp": "2024-05-16T10:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151900", + "Timestamp": "2024-05-16T10:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-16T10:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.313300", + "Timestamp": "2024-05-16T10:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.308300", + "Timestamp": "2024-05-16T10:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.183300", + "Timestamp": "2024-05-16T10:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.260200", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.255200", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.130200", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.836700", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.831700", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.706700", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213200", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.219100", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.214100", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.089100", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.942500", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.314000", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.657100", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.652100", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.527100", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.709700", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.046500", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.284900", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.041500", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.279900", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.916500", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.154900", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.410600", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.341600", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.336600", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.211600", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128400", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124700", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068400", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.556600", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.551600", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.426600", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.379200", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.011500", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.006500", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.881500", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.845200", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.315900", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.310900", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.185900", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.852000", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.170300", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.919300", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.741200", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.914300", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.736200", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.789300", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.611200", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.182800", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.177800", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.052800", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.900400", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.895400", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.770400", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.294900", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.770400", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.766700", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.710400", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119800", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.046100", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.041100", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.916100", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.027900", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.022900", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.897900", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152100", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192100", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092100", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.842400", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.837400", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.712400", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.280700", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.230700", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.374900", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.856800", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.851800", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.726800", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.062400", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.567500", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124000", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120000", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064000", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.421100", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.416100", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.291100", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271400", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266400", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141400", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.020900", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.015900", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.890900", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.290200", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.285200", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.160200", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.571300", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.566300", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.441300", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101500", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045200", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.881900", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.547800", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.542800", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.417800", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155700", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152000", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095700", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.316200", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.311200", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186200", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.412900", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.407900", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.282900", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.752900", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.177600", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173600", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.117600", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128600", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168600", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068600", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.682200", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.677200", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.552200", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.853700", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.695700", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.278700", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121400", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065400", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095200", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091500", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035200", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.828700", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119300", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115600", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059300", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.369100", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.707700", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.677700", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.577700", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.634300", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.629300", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.504300", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.891200", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.896000", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.891000", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.766000", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.133200", + "Timestamp": "2024-05-16T10:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.128200", + "Timestamp": "2024-05-16T10:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.003200", + "Timestamp": "2024-05-16T10:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.695700", + "Timestamp": "2024-05-16T10:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.665700", + "Timestamp": "2024-05-16T10:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.565700", + "Timestamp": "2024-05-16T10:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.815800", + "Timestamp": "2024-05-16T10:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.968100", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.963100", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.838100", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.816900", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.639400", + "Timestamp": "2024-05-16T10:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.634400", + "Timestamp": "2024-05-16T10:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.509400", + "Timestamp": "2024-05-16T10:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441400", + "Timestamp": "2024-05-16T10:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.318200", + "Timestamp": "2024-05-16T10:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.288200", + "Timestamp": "2024-05-16T10:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.188200", + "Timestamp": "2024-05-16T10:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.075600", + "Timestamp": "2024-05-16T10:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.433000", + "Timestamp": "2024-05-16T10:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473000", + "Timestamp": "2024-05-16T10:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.373000", + "Timestamp": "2024-05-16T10:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.958100", + "Timestamp": "2024-05-16T10:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.953100", + "Timestamp": "2024-05-16T10:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.828100", + "Timestamp": "2024-05-16T10:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.023300", + "Timestamp": "2024-05-16T10:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.018300", + "Timestamp": "2024-05-16T10:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.893300", + "Timestamp": "2024-05-16T10:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.969800", + "Timestamp": "2024-05-16T10:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.964800", + "Timestamp": "2024-05-16T10:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.839800", + "Timestamp": "2024-05-16T10:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161000", + "Timestamp": "2024-05-16T10:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157300", + "Timestamp": "2024-05-16T10:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101000", + "Timestamp": "2024-05-16T10:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.542300", + "Timestamp": "2024-05-16T10:01:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.512300", + "Timestamp": "2024-05-16T10:01:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.412300", + "Timestamp": "2024-05-16T10:01:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.847000", + "Timestamp": "2024-05-16T10:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.850400", + "Timestamp": "2024-05-16T10:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.845400", + "Timestamp": "2024-05-16T10:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.720400", + "Timestamp": "2024-05-16T10:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.648400", + "Timestamp": "2024-05-16T10:00:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.643400", + "Timestamp": "2024-05-16T10:00:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.518400", + "Timestamp": "2024-05-16T10:00:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101800", + "Timestamp": "2024-05-16T09:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-16T09:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041800", + "Timestamp": "2024-05-16T09:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.767800", + "Timestamp": "2024-05-16T09:47:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.146300", + "Timestamp": "2024-05-16T09:47:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.141300", + "Timestamp": "2024-05-16T09:47:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.016300", + "Timestamp": "2024-05-16T09:47:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.742800", + "Timestamp": "2024-05-16T09:47:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.293200", + "Timestamp": "2024-05-16T09:47:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.263200", + "Timestamp": "2024-05-16T09:47:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.163200", + "Timestamp": "2024-05-16T09:47:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416800", + "Timestamp": "2024-05-16T09:47:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.192700", + "Timestamp": "2024-05-16T09:47:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.189000", + "Timestamp": "2024-05-16T09:47:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.132700", + "Timestamp": "2024-05-16T09:47:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.829500", + "Timestamp": "2024-05-16T09:46:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.621300", + "Timestamp": "2024-05-16T09:46:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.775500", + "Timestamp": "2024-05-16T09:46:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.462800", + "Timestamp": "2024-05-16T09:46:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.502800", + "Timestamp": "2024-05-16T09:46:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.402800", + "Timestamp": "2024-05-16T09:46:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.482800", + "Timestamp": "2024-05-16T09:46:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.894800", + "Timestamp": "2024-05-16T09:46:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.707300", + "Timestamp": "2024-05-16T09:46:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.677300", + "Timestamp": "2024-05-16T09:46:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.577300", + "Timestamp": "2024-05-16T09:46:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130600", + "Timestamp": "2024-05-16T09:46:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126900", + "Timestamp": "2024-05-16T09:46:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070600", + "Timestamp": "2024-05-16T09:46:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.210100", + "Timestamp": "2024-05-16T09:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.206400", + "Timestamp": "2024-05-16T09:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150100", + "Timestamp": "2024-05-16T09:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.577500", + "Timestamp": "2024-05-16T09:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.732800", + "Timestamp": "2024-05-16T09:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.649500", + "Timestamp": "2024-05-16T09:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.644500", + "Timestamp": "2024-05-16T09:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.519500", + "Timestamp": "2024-05-16T09:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.250600", + "Timestamp": "2024-05-16T09:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.245600", + "Timestamp": "2024-05-16T09:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.120600", + "Timestamp": "2024-05-16T09:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360900", + "Timestamp": "2024-05-16T09:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.330900", + "Timestamp": "2024-05-16T09:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230900", + "Timestamp": "2024-05-16T09:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075000", + "Timestamp": "2024-05-16T09:46:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071300", + "Timestamp": "2024-05-16T09:46:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015000", + "Timestamp": "2024-05-16T09:46:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.824600", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.819600", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.694600", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226200", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220800", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.023800", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.018800", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.893800", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.446200", + "Timestamp": "2024-05-16T09:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.441200", + "Timestamp": "2024-05-16T09:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.316200", + "Timestamp": "2024-05-16T09:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.477800", + "Timestamp": "2024-05-16T09:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.727000", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.722000", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.597000", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.385300", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.380300", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.255300", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.781300", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.830800", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.776300", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.825800", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.651300", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.700800", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.350100", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.320100", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.220100", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.477200", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.926800", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.312000", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.307000", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.182000", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.192000", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.187000", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.062000", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021000", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.006200", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064400", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004400", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004400", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.625400", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.721800", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.716800", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.591800", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.600600", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.235300", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.230300", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105300", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.183900", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179900", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123900", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.677300", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.991300", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.047200", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.986300", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.042200", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.861300", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.917200", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.122400", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.884300", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.800700", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.795700", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.670700", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.960300", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.955300", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.830300", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140900", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137200", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080900", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.381400", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.376400", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.251400", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.393700", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.296300", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.291300", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.166300", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.207700", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.202700", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077700", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168300", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164300", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108300", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.581400", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.576400", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.451400", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.991900", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.986900", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.861900", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.544600", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.539600", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.414600", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.061700", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.474400", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.469400", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.344400", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.725600", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.668500", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184000", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180300", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124000", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.755300", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.808400", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.803400", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.678400", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.150300", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.145300", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.020300", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.875100", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.248800", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.245100", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.188800", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.302500", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.297500", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.172500", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.834300", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.829300", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.704300", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.032200", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.600800", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.570800", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.470800", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.850500", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.820500", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.720500", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.088800", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.883000", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.878000", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.753000", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106700", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.065500", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.060500", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.935500", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.882700", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.877700", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.752700", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.376500", + "Timestamp": "2024-05-16T09:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.371500", + "Timestamp": "2024-05-16T09:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.246500", + "Timestamp": "2024-05-16T09:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.216000", + "Timestamp": "2024-05-16T09:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110900", + "Timestamp": "2024-05-16T09:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.331600", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.326600", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.201600", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.482300", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.496600", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.477300", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.491600", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.352300", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.366600", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T09:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101400", + "Timestamp": "2024-05-16T09:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045400", + "Timestamp": "2024-05-16T09:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.131000", + "Timestamp": "2024-05-16T09:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.126000", + "Timestamp": "2024-05-16T09:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.001000", + "Timestamp": "2024-05-16T09:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.880500", + "Timestamp": "2024-05-16T09:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.875500", + "Timestamp": "2024-05-16T09:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.750500", + "Timestamp": "2024-05-16T09:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.305300", + "Timestamp": "2024-05-16T09:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.300300", + "Timestamp": "2024-05-16T09:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.175300", + "Timestamp": "2024-05-16T09:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T09:46:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.790800", + "Timestamp": "2024-05-16T09:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.785800", + "Timestamp": "2024-05-16T09:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.660800", + "Timestamp": "2024-05-16T09:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.586600", + "Timestamp": "2024-05-16T09:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.556600", + "Timestamp": "2024-05-16T09:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.456600", + "Timestamp": "2024-05-16T09:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.651300", + "Timestamp": "2024-05-16T09:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.826900", + "Timestamp": "2024-05-16T09:46:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.000800", + "Timestamp": "2024-05-16T09:46:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.608700", + "Timestamp": "2024-05-16T09:46:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.603700", + "Timestamp": "2024-05-16T09:46:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.478700", + "Timestamp": "2024-05-16T09:46:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.401700", + "Timestamp": "2024-05-16T09:46:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.396700", + "Timestamp": "2024-05-16T09:46:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.271700", + "Timestamp": "2024-05-16T09:46:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.227300", + "Timestamp": "2024-05-16T09:46:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.407800", + "Timestamp": "2024-05-16T09:46:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.402800", + "Timestamp": "2024-05-16T09:46:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.277800", + "Timestamp": "2024-05-16T09:46:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.931200", + "Timestamp": "2024-05-16T09:46:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.901200", + "Timestamp": "2024-05-16T09:46:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.801200", + "Timestamp": "2024-05-16T09:46:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.894800", + "Timestamp": "2024-05-16T09:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.889800", + "Timestamp": "2024-05-16T09:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.764800", + "Timestamp": "2024-05-16T09:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.329100", + "Timestamp": "2024-05-16T09:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324100", + "Timestamp": "2024-05-16T09:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199100", + "Timestamp": "2024-05-16T09:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.338200", + "Timestamp": "2024-05-16T09:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.333200", + "Timestamp": "2024-05-16T09:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.208200", + "Timestamp": "2024-05-16T09:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.469500", + "Timestamp": "2024-05-16T09:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.464500", + "Timestamp": "2024-05-16T09:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.339500", + "Timestamp": "2024-05-16T09:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.290600", + "Timestamp": "2024-05-16T09:46:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.260600", + "Timestamp": "2024-05-16T09:46:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.160600", + "Timestamp": "2024-05-16T09:46:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.669500", + "Timestamp": "2024-05-16T09:45:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.664500", + "Timestamp": "2024-05-16T09:45:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.539500", + "Timestamp": "2024-05-16T09:45:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T09:34:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.783700", + "Timestamp": "2024-05-16T09:32:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.094500", + "Timestamp": "2024-05-16T09:32:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.089500", + "Timestamp": "2024-05-16T09:32:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.964500", + "Timestamp": "2024-05-16T09:32:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.675400", + "Timestamp": "2024-05-16T09:32:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.553800", + "Timestamp": "2024-05-16T09:32:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.193800", + "Timestamp": "2024-05-16T09:32:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.188800", + "Timestamp": "2024-05-16T09:32:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.063800", + "Timestamp": "2024-05-16T09:32:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.945500", + "Timestamp": "2024-05-16T09:32:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.940500", + "Timestamp": "2024-05-16T09:32:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.815500", + "Timestamp": "2024-05-16T09:32:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.762400", + "Timestamp": "2024-05-16T09:31:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.674500", + "Timestamp": "2024-05-16T09:31:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.500200", + "Timestamp": "2024-05-16T09:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.052400", + "Timestamp": "2024-05-16T09:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.047400", + "Timestamp": "2024-05-16T09:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.922400", + "Timestamp": "2024-05-16T09:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.139100", + "Timestamp": "2024-05-16T09:31:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.134100", + "Timestamp": "2024-05-16T09:31:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.009100", + "Timestamp": "2024-05-16T09:31:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.458600", + "Timestamp": "2024-05-16T09:31:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.453600", + "Timestamp": "2024-05-16T09:31:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.328600", + "Timestamp": "2024-05-16T09:31:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.681900", + "Timestamp": "2024-05-16T09:31:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.651900", + "Timestamp": "2024-05-16T09:31:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.551900", + "Timestamp": "2024-05-16T09:31:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.742900", + "Timestamp": "2024-05-16T09:31:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.292000", + "Timestamp": "2024-05-16T09:31:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439700", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440400", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.591700", + "Timestamp": "2024-05-16T09:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.586700", + "Timestamp": "2024-05-16T09:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.461700", + "Timestamp": "2024-05-16T09:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.675800", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.670800", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.545800", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.736600", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.731600", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.606600", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.547000", + "Timestamp": "2024-05-16T09:31:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.542000", + "Timestamp": "2024-05-16T09:31:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.417000", + "Timestamp": "2024-05-16T09:31:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.746300", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.741300", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.616300", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.177200", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.172200", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.047200", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.071900", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.246100", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.188100", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.183100", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.058100", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.772300", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.767300", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.642300", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.839400", + "Timestamp": "2024-05-16T09:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.834400", + "Timestamp": "2024-05-16T09:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.709400", + "Timestamp": "2024-05-16T09:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.206800", + "Timestamp": "2024-05-16T09:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.246800", + "Timestamp": "2024-05-16T09:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146800", + "Timestamp": "2024-05-16T09:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.293900", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.230900", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162900", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159200", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.606600", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.601600", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.476600", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.136100", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.106100", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.006100", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.861700", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.008300", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.003300", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.878300", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.969200", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.964200", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.839200", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.524200", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.494200", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.394200", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.292300", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.498300", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.493300", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.368300", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.183100", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.178100", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.053100", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.822600", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.817600", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.692600", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.025000", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.020000", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.895000", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122800", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119100", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062800", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.527700", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.933700", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.546100", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.541100", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.416100", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.307900", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.302900", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.177900", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.366100", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.361100", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.236100", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.074400", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.460500", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.430500", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.330500", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118800", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.652700", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.647700", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.522700", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.573500", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.304100", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.299100", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.174100", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.232200", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.227200", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.102200", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.860300", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.880300", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.875300", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.750300", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307600", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302600", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177600", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.769200", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.764200", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.639200", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.076900", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.071900", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.946900", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.650000", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.645000", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.520000", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.246400", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166900", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162900", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162300", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158300", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102300", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.708800", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.907700", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.846700", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.902700", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.841700", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.777700", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.716700", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.342500", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.337500", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.212500", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.700800", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.695800", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.570800", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.237800", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.232800", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.107800", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.255400", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.250400", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.125400", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.694800", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.157000", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.152000", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.027000", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.128500", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.098500", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.998500", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100000", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096300", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040000", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.487500", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.821900", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.816900", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.691900", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.727800", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.722800", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.597800", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.053500", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.048500", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.923500", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.996000", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.991000", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.866000", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.358800", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.353800", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.228800", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.637200", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.632200", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.507200", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T09:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-16T09:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050500", + "Timestamp": "2024-05-16T09:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.287300", + "Timestamp": "2024-05-16T09:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.282300", + "Timestamp": "2024-05-16T09:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.157300", + "Timestamp": "2024-05-16T09:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.871900", + "Timestamp": "2024-05-16T09:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.377900", + "Timestamp": "2024-05-16T09:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.372900", + "Timestamp": "2024-05-16T09:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.247900", + "Timestamp": "2024-05-16T09:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.011600", + "Timestamp": "2024-05-16T09:31:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.466300", + "Timestamp": "2024-05-16T09:31:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.461300", + "Timestamp": "2024-05-16T09:31:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.336300", + "Timestamp": "2024-05-16T09:31:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.022300", + "Timestamp": "2024-05-16T09:31:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.448900", + "Timestamp": "2024-05-16T09:31:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.443900", + "Timestamp": "2024-05-16T09:31:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.318900", + "Timestamp": "2024-05-16T09:31:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.164000", + "Timestamp": "2024-05-16T09:31:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.320300", + "Timestamp": "2024-05-16T09:31:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.918700", + "Timestamp": "2024-05-16T09:31:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.913700", + "Timestamp": "2024-05-16T09:31:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.788700", + "Timestamp": "2024-05-16T09:31:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.908800", + "Timestamp": "2024-05-16T09:31:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.631700", + "Timestamp": "2024-05-16T09:31:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.840600", + "Timestamp": "2024-05-16T09:31:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.835600", + "Timestamp": "2024-05-16T09:31:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.710600", + "Timestamp": "2024-05-16T09:31:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.647600", + "Timestamp": "2024-05-16T09:31:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.642600", + "Timestamp": "2024-05-16T09:31:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.517600", + "Timestamp": "2024-05-16T09:31:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.125500", + "Timestamp": "2024-05-16T09:31:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.120500", + "Timestamp": "2024-05-16T09:31:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.995500", + "Timestamp": "2024-05-16T09:31:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T09:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106000", + "Timestamp": "2024-05-16T09:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049700", + "Timestamp": "2024-05-16T09:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.697500", + "Timestamp": "2024-05-16T09:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.692500", + "Timestamp": "2024-05-16T09:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.567500", + "Timestamp": "2024-05-16T09:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T09:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145700", + "Timestamp": "2024-05-16T09:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045700", + "Timestamp": "2024-05-16T09:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.478200", + "Timestamp": "2024-05-16T09:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.050400", + "Timestamp": "2024-05-16T09:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.045400", + "Timestamp": "2024-05-16T09:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.920400", + "Timestamp": "2024-05-16T09:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.471400", + "Timestamp": "2024-05-16T09:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.466400", + "Timestamp": "2024-05-16T09:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.341400", + "Timestamp": "2024-05-16T09:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098300", + "Timestamp": "2024-05-16T09:31:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094600", + "Timestamp": "2024-05-16T09:31:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038300", + "Timestamp": "2024-05-16T09:31:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.232800", + "Timestamp": "2024-05-16T09:31:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.227800", + "Timestamp": "2024-05-16T09:31:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.102800", + "Timestamp": "2024-05-16T09:31:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.520900", + "Timestamp": "2024-05-16T09:31:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.490900", + "Timestamp": "2024-05-16T09:31:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.390900", + "Timestamp": "2024-05-16T09:31:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311500", + "Timestamp": "2024-05-16T09:31:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281500", + "Timestamp": "2024-05-16T09:31:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181500", + "Timestamp": "2024-05-16T09:31:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.211500", + "Timestamp": "2024-05-16T09:30:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.251500", + "Timestamp": "2024-05-16T09:30:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.151500", + "Timestamp": "2024-05-16T09:30:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.538300", + "Timestamp": "2024-05-16T09:30:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.533300", + "Timestamp": "2024-05-16T09:30:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.408300", + "Timestamp": "2024-05-16T09:30:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T09:19:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.854500", + "Timestamp": "2024-05-16T09:17:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.849500", + "Timestamp": "2024-05-16T09:17:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.724500", + "Timestamp": "2024-05-16T09:17:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.601800", + "Timestamp": "2024-05-16T09:17:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.601700", + "Timestamp": "2024-05-16T09:17:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.003500", + "Timestamp": "2024-05-16T09:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.357600", + "Timestamp": "2024-05-16T09:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.352600", + "Timestamp": "2024-05-16T09:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.227600", + "Timestamp": "2024-05-16T09:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.613200", + "Timestamp": "2024-05-16T09:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.583200", + "Timestamp": "2024-05-16T09:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.483200", + "Timestamp": "2024-05-16T09:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.275800", + "Timestamp": "2024-05-16T09:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.315800", + "Timestamp": "2024-05-16T09:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.215800", + "Timestamp": "2024-05-16T09:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.502600", + "Timestamp": "2024-05-16T09:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.587500", + "Timestamp": "2024-05-16T09:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.582500", + "Timestamp": "2024-05-16T09:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.457500", + "Timestamp": "2024-05-16T09:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.315200", + "Timestamp": "2024-05-16T09:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.310200", + "Timestamp": "2024-05-16T09:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.185200", + "Timestamp": "2024-05-16T09:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.942900", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.551300", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.210700", + "Timestamp": "2024-05-16T09:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.207000", + "Timestamp": "2024-05-16T09:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150700", + "Timestamp": "2024-05-16T09:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.539900", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.534900", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.409900", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.841700", + "Timestamp": "2024-05-16T09:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.917000", + "Timestamp": "2024-05-16T09:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.874600", + "Timestamp": "2024-05-16T09:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.488000", + "Timestamp": "2024-05-16T09:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.458000", + "Timestamp": "2024-05-16T09:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.358000", + "Timestamp": "2024-05-16T09:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.675800", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.670800", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.545800", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119800", + "Timestamp": "2024-05-16T09:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.676000", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.372100", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.412100", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.312100", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.066500", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.061500", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.936500", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.647800", + "Timestamp": "2024-05-16T09:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.642800", + "Timestamp": "2024-05-16T09:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.517800", + "Timestamp": "2024-05-16T09:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.310900", + "Timestamp": "2024-05-16T09:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.116700", + "Timestamp": "2024-05-16T09:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.657700", + "Timestamp": "2024-05-16T09:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.652700", + "Timestamp": "2024-05-16T09:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.527700", + "Timestamp": "2024-05-16T09:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.536600", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.985900", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200500", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196500", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140500", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.857900", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.852900", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.727900", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.847700", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.853500", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.499600", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.494600", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.369600", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.346000", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.341000", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.216000", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.482200", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.452200", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.352200", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.464000", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.542900", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.537900", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.412900", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162000", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158300", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102000", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.443200", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.089300", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.030400", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.025400", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.900400", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.836900", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.141700", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119900", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116200", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059900", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.827800", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.822800", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.697800", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147100", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143400", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087100", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.475900", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.445900", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.345900", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.509500", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.259200", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.229200", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.129200", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102000", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045700", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.527000", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.522000", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.397000", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.469000", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.464000", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.339000", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.186200", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.182200", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126200", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.033900", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.028900", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.903900", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.372900", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.367900", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.242900", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.776600", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.771600", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.646600", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111900", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151900", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051900", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154500", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150800", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094500", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.693300", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121100", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117400", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061100", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.393500", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.388500", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.263500", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.927300", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.193100", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.188100", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.063100", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.095800", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.670800", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.665800", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.540800", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.899800", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.894800", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.769800", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.016300", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.011300", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.886300", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.315500", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.310500", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.185500", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.468900", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.463900", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.338900", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.860200", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.726100", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.920500", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.915500", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.790500", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115500", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112500", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055500", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.061100", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.056100", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.931100", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.130200", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.276700", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151400", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.191400", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091400", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.746500", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212400", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.250400", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.223500", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.218500", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.093500", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.670400", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.592800", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.587800", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.462800", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.010400", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.090500", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.262500", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.078300", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.073300", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.948300", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070800", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041800", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010800", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.246400", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.240600", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.997600", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.484900", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.733500", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.728500", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.603500", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.198300", + "Timestamp": "2024-05-16T09:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.194300", + "Timestamp": "2024-05-16T09:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.138300", + "Timestamp": "2024-05-16T09:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.963400", + "Timestamp": "2024-05-16T09:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.931100", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.422400", + "Timestamp": "2024-05-16T09:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.417400", + "Timestamp": "2024-05-16T09:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.292400", + "Timestamp": "2024-05-16T09:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.310900", + "Timestamp": "2024-05-16T09:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.305900", + "Timestamp": "2024-05-16T09:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180900", + "Timestamp": "2024-05-16T09:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104300", + "Timestamp": "2024-05-16T09:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-16T09:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044300", + "Timestamp": "2024-05-16T09:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.914500", + "Timestamp": "2024-05-16T09:16:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.565200", + "Timestamp": "2024-05-16T09:16:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.178300", + "Timestamp": "2024-05-16T09:16:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.218300", + "Timestamp": "2024-05-16T09:16:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118300", + "Timestamp": "2024-05-16T09:16:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.474900", + "Timestamp": "2024-05-16T09:16:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.469900", + "Timestamp": "2024-05-16T09:16:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.344900", + "Timestamp": "2024-05-16T09:16:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171000", + "Timestamp": "2024-05-16T09:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167000", + "Timestamp": "2024-05-16T09:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T09:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.394500", + "Timestamp": "2024-05-16T09:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.389500", + "Timestamp": "2024-05-16T09:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.264500", + "Timestamp": "2024-05-16T09:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129100", + "Timestamp": "2024-05-16T09:16:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T09:16:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069100", + "Timestamp": "2024-05-16T09:16:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.515000", + "Timestamp": "2024-05-16T09:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.149500", + "Timestamp": "2024-05-16T09:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.144500", + "Timestamp": "2024-05-16T09:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.019500", + "Timestamp": "2024-05-16T09:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.382100", + "Timestamp": "2024-05-16T09:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.352100", + "Timestamp": "2024-05-16T09:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.252100", + "Timestamp": "2024-05-16T09:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.341200", + "Timestamp": "2024-05-16T09:16:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.336200", + "Timestamp": "2024-05-16T09:16:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.211200", + "Timestamp": "2024-05-16T09:16:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.659100", + "Timestamp": "2024-05-16T09:16:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.654100", + "Timestamp": "2024-05-16T09:16:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.529100", + "Timestamp": "2024-05-16T09:16:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T09:16:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106200", + "Timestamp": "2024-05-16T09:16:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T09:16:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046200", + "Timestamp": "2024-05-16T09:16:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.536600", + "Timestamp": "2024-05-16T09:15:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.540800", + "Timestamp": "2024-05-16T09:02:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215800", + "Timestamp": "2024-05-16T09:01:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.715900", + "Timestamp": "2024-05-16T09:01:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.685900", + "Timestamp": "2024-05-16T09:01:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.585900", + "Timestamp": "2024-05-16T09:01:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.911800", + "Timestamp": "2024-05-16T09:01:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.906800", + "Timestamp": "2024-05-16T09:01:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.781800", + "Timestamp": "2024-05-16T09:01:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.413300", + "Timestamp": "2024-05-16T09:01:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.452900", + "Timestamp": "2024-05-16T09:01:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.379300", + "Timestamp": "2024-05-16T09:01:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.374300", + "Timestamp": "2024-05-16T09:01:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.249300", + "Timestamp": "2024-05-16T09:01:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307300", + "Timestamp": "2024-05-16T09:01:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.277300", + "Timestamp": "2024-05-16T09:01:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177300", + "Timestamp": "2024-05-16T09:01:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.749900", + "Timestamp": "2024-05-16T09:01:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.744900", + "Timestamp": "2024-05-16T09:01:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.619900", + "Timestamp": "2024-05-16T09:01:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.111600", + "Timestamp": "2024-05-16T09:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.916900", + "Timestamp": "2024-05-16T09:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.699200", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.694200", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.569200", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.317600", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.312600", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.187600", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.845600", + "Timestamp": "2024-05-16T09:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214000", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.662700", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.657700", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.532700", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.177900", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174200", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.117900", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.248900", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.484200", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.383700", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.645200", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.640200", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.515200", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.492200", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.487200", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.362200", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.677200", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.647200", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.547200", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.036900", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.772300", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.346100", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.525600", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.341100", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.520600", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.216100", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.395600", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.612700", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.607700", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.482700", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.921000", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213900", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.945600", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.284100", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.940600", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.279100", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.815600", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.154100", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112900", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.711000", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.351600", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112500", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108800", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052500", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.465800", + "Timestamp": "2024-05-16T09:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.460800", + "Timestamp": "2024-05-16T09:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.335800", + "Timestamp": "2024-05-16T09:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.954500", + "Timestamp": "2024-05-16T09:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.241300", + "Timestamp": "2024-05-16T09:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.814200", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.809200", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.684200", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.755300", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.652300", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.622300", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.522300", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.177100", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.578300", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.859100", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.539500", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.030800", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.047000", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.492600", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.487600", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.362600", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.000300", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.995300", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.870300", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047200", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139100", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135400", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079100", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.866700", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.849600", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.844600", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.719600", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.943600", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.913600", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.813600", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.564400", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.559400", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.434400", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101800", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041800", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437600", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.775100", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.137400", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.132400", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.007400", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.461100", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.456100", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.331100", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.251800", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.246800", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121800", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118800", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115100", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058800", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.042000", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142400", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138700", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082400", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418500", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127400", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123400", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067400", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.293400", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.288400", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.163400", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.005000", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.000000", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.875000", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.955600", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.950600", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.825600", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.066600", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.646400", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.641400", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.516400", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.519400", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.514400", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.389400", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.050300", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.455900", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.839300", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.834300", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.709300", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.656500", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.651500", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.526500", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.861200", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.463800", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.458800", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.333800", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.290700", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.285700", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.160700", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.140500", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298200", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293200", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168200", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151300", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.191300", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091300", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.982000", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.952000", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.852000", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.001300", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.780100", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.775100", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.650100", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103400", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099700", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043400", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.779300", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.565300", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.315600", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.285600", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.185600", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.077900", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.072900", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.947900", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133200", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129500", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073200", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.401200", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.463800", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.247200", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.242200", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.117200", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.937300", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.535500", + "Timestamp": "2024-05-16T09:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.530500", + "Timestamp": "2024-05-16T09:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.405500", + "Timestamp": "2024-05-16T09:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.236500", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232800", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176500", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.280700", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.275700", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.150700", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.879200", + "Timestamp": "2024-05-16T09:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.874200", + "Timestamp": "2024-05-16T09:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.749200", + "Timestamp": "2024-05-16T09:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.249900", + "Timestamp": "2024-05-16T09:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.244900", + "Timestamp": "2024-05-16T09:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.119900", + "Timestamp": "2024-05-16T09:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165600", + "Timestamp": "2024-05-16T09:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161600", + "Timestamp": "2024-05-16T09:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T09:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.342200", + "Timestamp": "2024-05-16T09:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.337200", + "Timestamp": "2024-05-16T09:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212200", + "Timestamp": "2024-05-16T09:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.942900", + "Timestamp": "2024-05-16T09:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.334800", + "Timestamp": "2024-05-16T09:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.329800", + "Timestamp": "2024-05-16T09:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.204800", + "Timestamp": "2024-05-16T09:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.036500", + "Timestamp": "2024-05-16T09:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147100", + "Timestamp": "2024-05-16T09:01:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143400", + "Timestamp": "2024-05-16T09:01:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087100", + "Timestamp": "2024-05-16T09:01:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080600", + "Timestamp": "2024-05-16T09:01:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076900", + "Timestamp": "2024-05-16T09:01:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020600", + "Timestamp": "2024-05-16T09:01:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.257400", + "Timestamp": "2024-05-16T09:01:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.227400", + "Timestamp": "2024-05-16T09:01:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.127400", + "Timestamp": "2024-05-16T09:01:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.206800", + "Timestamp": "2024-05-16T09:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.202800", + "Timestamp": "2024-05-16T09:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146800", + "Timestamp": "2024-05-16T09:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.927000", + "Timestamp": "2024-05-16T09:01:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.922000", + "Timestamp": "2024-05-16T09:01:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.797000", + "Timestamp": "2024-05-16T09:01:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.180100", + "Timestamp": "2024-05-16T09:01:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.150100", + "Timestamp": "2024-05-16T09:01:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.050100", + "Timestamp": "2024-05-16T09:01:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.858000", + "Timestamp": "2024-05-16T09:01:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.853000", + "Timestamp": "2024-05-16T09:01:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.728000", + "Timestamp": "2024-05-16T09:01:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.622300", + "Timestamp": "2024-05-16T09:01:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.617300", + "Timestamp": "2024-05-16T09:01:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.492300", + "Timestamp": "2024-05-16T09:01:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.370000", + "Timestamp": "2024-05-16T09:01:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.365000", + "Timestamp": "2024-05-16T09:01:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.240000", + "Timestamp": "2024-05-16T09:01:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.923100", + "Timestamp": "2024-05-16T09:01:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.501600", + "Timestamp": "2024-05-16T09:01:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.460400", + "Timestamp": "2024-05-16T09:01:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.496600", + "Timestamp": "2024-05-16T09:01:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.455400", + "Timestamp": "2024-05-16T09:01:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.371600", + "Timestamp": "2024-05-16T09:01:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.330400", + "Timestamp": "2024-05-16T09:01:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080700", + "Timestamp": "2024-05-16T09:01:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077000", + "Timestamp": "2024-05-16T09:01:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020700", + "Timestamp": "2024-05-16T09:01:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.967400", + "Timestamp": "2024-05-16T09:00:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.255100", + "Timestamp": "2024-05-16T09:00:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.250100", + "Timestamp": "2024-05-16T09:00:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.125100", + "Timestamp": "2024-05-16T09:00:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134700", + "Timestamp": "2024-05-16T09:00:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129600", + "Timestamp": "2024-05-16T09:00:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131000", + "Timestamp": "2024-05-16T09:00:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125900", + "Timestamp": "2024-05-16T09:00:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074700", + "Timestamp": "2024-05-16T09:00:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069600", + "Timestamp": "2024-05-16T09:00:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219000", + "Timestamp": "2024-05-16T08:48:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219000", + "Timestamp": "2024-05-16T08:48:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219000", + "Timestamp": "2024-05-16T08:48:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.872700", + "Timestamp": "2024-05-16T08:47:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.338200", + "Timestamp": "2024-05-16T08:47:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.020500", + "Timestamp": "2024-05-16T08:46:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.015500", + "Timestamp": "2024-05-16T08:46:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.890500", + "Timestamp": "2024-05-16T08:46:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.374000", + "Timestamp": "2024-05-16T08:46:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.369000", + "Timestamp": "2024-05-16T08:46:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.244000", + "Timestamp": "2024-05-16T08:46:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.656600", + "Timestamp": "2024-05-16T08:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.794900", + "Timestamp": "2024-05-16T08:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.437300", + "Timestamp": "2024-05-16T08:46:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.674400", + "Timestamp": "2024-05-16T08:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.471700", + "Timestamp": "2024-05-16T08:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.540300", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.535300", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.410300", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122900", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119200", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062900", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122300", + "Timestamp": "2024-05-16T08:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162300", + "Timestamp": "2024-05-16T08:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062300", + "Timestamp": "2024-05-16T08:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.552500", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.522500", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.422500", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.784800", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.779800", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.654800", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.690300", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.755400", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.750400", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.625400", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.219700", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.259700", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159700", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.213900", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.208900", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.083900", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.062100", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.057100", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.932100", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.830800", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.825800", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.700800", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.463500", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.458500", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.333500", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115300", + "Timestamp": "2024-05-16T08:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.381600", + "Timestamp": "2024-05-16T08:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.376600", + "Timestamp": "2024-05-16T08:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.251600", + "Timestamp": "2024-05-16T08:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.230100", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.227200", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.852200", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.432000", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.402000", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.302000", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.246900", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.232100", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.227100", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.102100", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.295800", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.265800", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.165800", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.814800", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.809800", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.684800", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.434000", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.723500", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.718500", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.593500", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.424000", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.180500", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.175500", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.050500", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "8.254200", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "p2.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "8.224200", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "8.124200", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.251400", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.221400", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.121400", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.198600", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.360100", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.954600", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.958900", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.949600", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.953900", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.824600", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.828900", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.474700", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.999700", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.994700", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.869700", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.862300", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.731000", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.726000", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.601000", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.576200", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.571200", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.446200", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.440900", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.488500", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.435900", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.483500", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.310900", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.358500", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.231000", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.226000", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.101000", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141100", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181100", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081100", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.209300", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.204300", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.079300", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.532500", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.527500", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.402500", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.892600", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.862600", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.762600", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.820400", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.457900", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.452900", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.327900", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.927500", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.341100", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.336100", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.211100", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.195900", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.201900", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.191900", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.197900", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.135900", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141900", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.516600", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.511600", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.386600", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.519900", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.514900", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.389900", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.238900", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.233900", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.108900", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.158900", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.128900", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.028900", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.541600", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.536600", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.411600", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.382500", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.377500", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.252500", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.300300", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.295300", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170300", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.330800", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092800", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089100", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032800", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.386500", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.381500", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.256500", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101100", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097400", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041100", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.124300", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.119300", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.994300", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.849100", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.510400", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.505400", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.380400", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.461400", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.456400", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.331400", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063200", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003200", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003200", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.097600", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.886000", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.881000", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.756000", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.296300", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.360000", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.291300", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.355000", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.166300", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.230000", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.239900", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.523400", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.611300", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.450900", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.445900", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.320900", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.591900", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.586900", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.461900", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.953800", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.948800", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.823800", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.295300", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.290300", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.165300", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142000", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138300", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082000", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.180200", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.220200", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120200", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.879500", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.716100", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.245600", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.938000", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.896100", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.909000", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169500", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166500", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184600", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180900", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124600", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.850000", + "Timestamp": "2024-05-16T08:46:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.344400", + "Timestamp": "2024-05-16T08:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.339400", + "Timestamp": "2024-05-16T08:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.214400", + "Timestamp": "2024-05-16T08:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.987400", + "Timestamp": "2024-05-16T08:46:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.982400", + "Timestamp": "2024-05-16T08:46:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.857400", + "Timestamp": "2024-05-16T08:46:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114200", + "Timestamp": "2024-05-16T08:46:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T08:46:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054200", + "Timestamp": "2024-05-16T08:46:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.336700", + "Timestamp": "2024-05-16T08:46:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.331700", + "Timestamp": "2024-05-16T08:46:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.206700", + "Timestamp": "2024-05-16T08:46:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.073000", + "Timestamp": "2024-05-16T08:46:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.068000", + "Timestamp": "2024-05-16T08:46:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.943000", + "Timestamp": "2024-05-16T08:46:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.484600", + "Timestamp": "2024-05-16T08:46:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.551800", + "Timestamp": "2024-05-16T08:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.866900", + "Timestamp": "2024-05-16T08:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.861900", + "Timestamp": "2024-05-16T08:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.736900", + "Timestamp": "2024-05-16T08:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.881400", + "Timestamp": "2024-05-16T08:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.687800", + "Timestamp": "2024-05-16T08:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.682800", + "Timestamp": "2024-05-16T08:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.557800", + "Timestamp": "2024-05-16T08:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.613300", + "Timestamp": "2024-05-16T08:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.608300", + "Timestamp": "2024-05-16T08:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.483300", + "Timestamp": "2024-05-16T08:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.569000", + "Timestamp": "2024-05-16T08:46:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.103800", + "Timestamp": "2024-05-16T08:46:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.945200", + "Timestamp": "2024-05-16T08:45:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.170200", + "Timestamp": "2024-05-16T08:45:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.915200", + "Timestamp": "2024-05-16T08:45:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.140200", + "Timestamp": "2024-05-16T08:45:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.815200", + "Timestamp": "2024-05-16T08:45:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.040200", + "Timestamp": "2024-05-16T08:45:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.473900", + "Timestamp": "2024-05-16T08:45:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.427500", + "Timestamp": "2024-05-16T08:32:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.422500", + "Timestamp": "2024-05-16T08:32:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.297500", + "Timestamp": "2024-05-16T08:32:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.983300", + "Timestamp": "2024-05-16T08:32:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.258200", + "Timestamp": "2024-05-16T08:32:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.562600", + "Timestamp": "2024-05-16T08:31:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.557600", + "Timestamp": "2024-05-16T08:31:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.432600", + "Timestamp": "2024-05-16T08:31:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123200", + "Timestamp": "2024-05-16T08:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T08:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119200", + "Timestamp": "2024-05-16T08:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103600", + "Timestamp": "2024-05-16T08:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063200", + "Timestamp": "2024-05-16T08:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047600", + "Timestamp": "2024-05-16T08:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.239400", + "Timestamp": "2024-05-16T08:31:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.251200", + "Timestamp": "2024-05-16T08:31:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.213900", + "Timestamp": "2024-05-16T08:31:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.247500", + "Timestamp": "2024-05-16T08:31:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.210200", + "Timestamp": "2024-05-16T08:31:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.191200", + "Timestamp": "2024-05-16T08:31:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.153900", + "Timestamp": "2024-05-16T08:31:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.116400", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.086400", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.986400", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306100", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301100", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176100", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.456300", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.451300", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.326300", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.916600", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.911600", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.786600", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429100", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.420900", + "Timestamp": "2024-05-16T08:31:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.390900", + "Timestamp": "2024-05-16T08:31:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.290900", + "Timestamp": "2024-05-16T08:31:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.233800", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.940900", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.228800", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.935900", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.103800", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.810900", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.353900", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.348900", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.223900", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218500", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.968000", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.482200", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121700", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.599700", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.805600", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.775600", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.675600", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.130200", + "Timestamp": "2024-05-16T08:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.569100", + "Timestamp": "2024-05-16T08:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.564100", + "Timestamp": "2024-05-16T08:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.439100", + "Timestamp": "2024-05-16T08:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.189800", + "Timestamp": "2024-05-16T08:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.184800", + "Timestamp": "2024-05-16T08:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.059800", + "Timestamp": "2024-05-16T08:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.675300", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.670300", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.545300", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214600", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.923300", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.192400", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.187400", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.062400", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.632600", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.627600", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.502600", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.267900", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.237900", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.137900", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.425600", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.165800", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.160800", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.035800", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.052700", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.022700", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.922700", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146200", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142500", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086200", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.547300", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.587500", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.582500", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.457500", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.743000", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.713000", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.613000", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.752900", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.747900", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.622900", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.702500", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.974300", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.969300", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.844300", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.217900", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088300", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084600", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028300", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164200", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160500", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.310700", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.305700", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180700", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.114300", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.696800", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.691800", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.566800", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.271100", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.232400", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.071900", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.850900", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.064400", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.305300", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.300300", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175300", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.353800", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.348800", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.223800", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.533800", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.528800", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.403800", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.510800", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.505800", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.380800", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.042000", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.037000", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.912000", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.603100", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.598100", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.473100", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.550600", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.245600", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.240600", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.115600", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.723900", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.718900", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.593900", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.734400", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.783600", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.729400", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.778600", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.604400", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.653600", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.494800", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.516100", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.893100", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.863100", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.763100", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.680300", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.675300", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.550300", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.782400", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.037500", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.219500", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.214500", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.089500", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.197300", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.192300", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.067300", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.291100", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.286100", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.161100", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.685400", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.655400", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.555400", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.236700", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "12.490200", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.617900", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.261200", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.556200", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.551200", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.426200", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.689000", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.267500", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262500", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137500", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.020000", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.990000", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.890000", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.069900", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.500100", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.470100", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.370100", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068500", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039500", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008500", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166700", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162700", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106700", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.797800", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.792800", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.667800", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.286600", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.281600", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.156600", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.186300", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.182300", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.526400", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.288800", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.283800", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158800", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.410800", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.380800", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.280800", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.938400", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.336500", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.306500", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.206500", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.272900", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.408000", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.590800", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.585800", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.460800", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077400", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073700", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017400", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.044600", + "Timestamp": "2024-05-16T08:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.039600", + "Timestamp": "2024-05-16T08:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.914600", + "Timestamp": "2024-05-16T08:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.515900", + "Timestamp": "2024-05-16T08:31:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.499500", + "Timestamp": "2024-05-16T08:31:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.693300", + "Timestamp": "2024-05-16T08:31:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123500", + "Timestamp": "2024-05-16T08:31:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119800", + "Timestamp": "2024-05-16T08:31:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063500", + "Timestamp": "2024-05-16T08:31:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.501800", + "Timestamp": "2024-05-16T08:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.496800", + "Timestamp": "2024-05-16T08:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.371800", + "Timestamp": "2024-05-16T08:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.440900", + "Timestamp": "2024-05-16T08:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.435900", + "Timestamp": "2024-05-16T08:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.310900", + "Timestamp": "2024-05-16T08:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121800", + "Timestamp": "2024-05-16T08:31:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118100", + "Timestamp": "2024-05-16T08:31:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061800", + "Timestamp": "2024-05-16T08:31:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.182500", + "Timestamp": "2024-05-16T08:31:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.177500", + "Timestamp": "2024-05-16T08:31:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.052500", + "Timestamp": "2024-05-16T08:31:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115600", + "Timestamp": "2024-05-16T08:31:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111900", + "Timestamp": "2024-05-16T08:31:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055600", + "Timestamp": "2024-05-16T08:31:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.942000", + "Timestamp": "2024-05-16T08:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.847200", + "Timestamp": "2024-05-16T08:31:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150700", + "Timestamp": "2024-05-16T08:31:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147000", + "Timestamp": "2024-05-16T08:31:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090700", + "Timestamp": "2024-05-16T08:31:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.188800", + "Timestamp": "2024-05-16T08:31:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185100", + "Timestamp": "2024-05-16T08:31:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128800", + "Timestamp": "2024-05-16T08:31:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.867600", + "Timestamp": "2024-05-16T08:31:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.621000", + "Timestamp": "2024-05-16T08:30:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.579600", + "Timestamp": "2024-05-16T08:30:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.574600", + "Timestamp": "2024-05-16T08:30:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.449600", + "Timestamp": "2024-05-16T08:30:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.222300", + "Timestamp": "2024-05-16T08:30:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262300", + "Timestamp": "2024-05-16T08:30:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162300", + "Timestamp": "2024-05-16T08:30:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.521300", + "Timestamp": "2024-05-16T08:30:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064200", + "Timestamp": "2024-05-16T08:18:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004200", + "Timestamp": "2024-05-16T08:18:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004200", + "Timestamp": "2024-05-16T08:18:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.606800", + "Timestamp": "2024-05-16T08:17:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.540600", + "Timestamp": "2024-05-16T08:17:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.974500", + "Timestamp": "2024-05-16T08:17:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.528000", + "Timestamp": "2024-05-16T08:16:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.523000", + "Timestamp": "2024-05-16T08:16:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.398000", + "Timestamp": "2024-05-16T08:16:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T08:16:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-16T08:16:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045400", + "Timestamp": "2024-05-16T08:16:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.917700", + "Timestamp": "2024-05-16T08:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.912700", + "Timestamp": "2024-05-16T08:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.787700", + "Timestamp": "2024-05-16T08:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.479700", + "Timestamp": "2024-05-16T08:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.176500", + "Timestamp": "2024-05-16T08:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.466600", + "Timestamp": "2024-05-16T08:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.511300", + "Timestamp": "2024-05-16T08:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.506300", + "Timestamp": "2024-05-16T08:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.381300", + "Timestamp": "2024-05-16T08:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.072500", + "Timestamp": "2024-05-16T08:16:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091500", + "Timestamp": "2024-05-16T08:16:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087800", + "Timestamp": "2024-05-16T08:16:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031500", + "Timestamp": "2024-05-16T08:16:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.548800", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.543800", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.418800", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.629100", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.624100", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.499100", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.884400", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.981300", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.854400", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.951300", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.754400", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.851300", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.060800", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.045400", + "Timestamp": "2024-05-16T08:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.665700", + "Timestamp": "2024-05-16T08:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.686400", + "Timestamp": "2024-05-16T08:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.660700", + "Timestamp": "2024-05-16T08:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.681400", + "Timestamp": "2024-05-16T08:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.535700", + "Timestamp": "2024-05-16T08:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.556400", + "Timestamp": "2024-05-16T08:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.213900", + "Timestamp": "2024-05-16T08:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.208900", + "Timestamp": "2024-05-16T08:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083900", + "Timestamp": "2024-05-16T08:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.673400", + "Timestamp": "2024-05-16T08:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.668400", + "Timestamp": "2024-05-16T08:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.543400", + "Timestamp": "2024-05-16T08:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.818200", + "Timestamp": "2024-05-16T08:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.788200", + "Timestamp": "2024-05-16T08:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.688200", + "Timestamp": "2024-05-16T08:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.743700", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.738700", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.613700", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136900", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133200", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076900", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.283700", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.152400", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.122400", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.022400", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.466400", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.461400", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.336400", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.183800", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.178800", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.053800", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.489400", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.413500", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.408500", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.283500", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.320600", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.261800", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.315600", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.256800", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.190600", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.131800", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.120400", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.859600", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.829600", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.729600", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107900", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047900", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.678700", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.673700", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.548700", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.445600", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.687000", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.682000", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.557000", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106700", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046700", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.038100", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.411300", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.427300", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.296800", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.291800", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.166800", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.205300", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.175300", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.075300", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.428400", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.423400", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.298400", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.742900", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.870800", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.865800", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.740800", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.489400", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.748200", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.743200", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.618200", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.980200", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.975200", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.850200", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.976800", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.971800", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.846800", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.665900", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.066800", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.507000", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.502000", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.377000", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.979000", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.974000", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.849000", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.427100", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.191100", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314000", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.309000", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184000", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Windows", + "SpotPrice": "4.479800", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144000", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044000", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120800", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.665400", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130200", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126500", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070200", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.113800", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.685800", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.680800", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.555800", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.922000", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.519000", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.514000", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.389000", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.843400", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.838400", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.713400", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.448500", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.418500", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.318500", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118300", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058300", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.427300", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.274000", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.269000", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.144000", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.445900", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.440900", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.315900", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.875000", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.433400", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.428400", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.303400", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.729400", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.724400", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.599400", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.905600", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.900600", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.775600", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "vt1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.495900", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "vt1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.465900", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "vt1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.365900", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.556200", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.551200", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.426200", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173300", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169600", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113300", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.373000", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.368000", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.243000", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.498600", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.496500", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.190700", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.187000", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130700", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.935300", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.996100", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.533000", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.321300", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.316300", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.191300", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.183200", + "Timestamp": "2024-05-16T08:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.223200", + "Timestamp": "2024-05-16T08:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123200", + "Timestamp": "2024-05-16T08:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.503600", + "Timestamp": "2024-05-16T08:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.141000", + "Timestamp": "2024-05-16T08:16:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.095900", + "Timestamp": "2024-05-16T08:16:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.065900", + "Timestamp": "2024-05-16T08:16:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.965900", + "Timestamp": "2024-05-16T08:16:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.594100", + "Timestamp": "2024-05-16T08:16:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.589100", + "Timestamp": "2024-05-16T08:16:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.464100", + "Timestamp": "2024-05-16T08:16:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.338500", + "Timestamp": "2024-05-16T08:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.249300", + "Timestamp": "2024-05-16T08:16:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.928500", + "Timestamp": "2024-05-16T08:16:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.756900", + "Timestamp": "2024-05-16T08:16:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.726900", + "Timestamp": "2024-05-16T08:16:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.626900", + "Timestamp": "2024-05-16T08:16:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.588600", + "Timestamp": "2024-05-16T08:16:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.583600", + "Timestamp": "2024-05-16T08:16:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.458600", + "Timestamp": "2024-05-16T08:16:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.732700", + "Timestamp": "2024-05-16T08:16:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168400", + "Timestamp": "2024-05-16T08:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.208400", + "Timestamp": "2024-05-16T08:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T08:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.349400", + "Timestamp": "2024-05-16T08:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319400", + "Timestamp": "2024-05-16T08:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219400", + "Timestamp": "2024-05-16T08:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.369600", + "Timestamp": "2024-05-16T08:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.364600", + "Timestamp": "2024-05-16T08:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.239600", + "Timestamp": "2024-05-16T08:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.367200", + "Timestamp": "2024-05-16T08:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.362200", + "Timestamp": "2024-05-16T08:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.237200", + "Timestamp": "2024-05-16T08:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.532300", + "Timestamp": "2024-05-16T08:16:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.527300", + "Timestamp": "2024-05-16T08:16:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.402300", + "Timestamp": "2024-05-16T08:16:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.443700", + "Timestamp": "2024-05-16T08:16:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.438700", + "Timestamp": "2024-05-16T08:16:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.313700", + "Timestamp": "2024-05-16T08:16:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.972200", + "Timestamp": "2024-05-16T08:16:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.521900", + "Timestamp": "2024-05-16T08:15:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.516900", + "Timestamp": "2024-05-16T08:15:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.391900", + "Timestamp": "2024-05-16T08:15:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "a1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074200", + "Timestamp": "2024-05-16T08:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "a1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.045200", + "Timestamp": "2024-05-16T08:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "a1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014200", + "Timestamp": "2024-05-16T08:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.060600", + "Timestamp": "2024-05-16T08:02:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.055600", + "Timestamp": "2024-05-16T08:02:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.930600", + "Timestamp": "2024-05-16T08:02:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.943700", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.387000", + "Timestamp": "2024-05-16T08:01:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.382000", + "Timestamp": "2024-05-16T08:01:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.257000", + "Timestamp": "2024-05-16T08:01:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136900", + "Timestamp": "2024-05-16T08:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.176900", + "Timestamp": "2024-05-16T08:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076900", + "Timestamp": "2024-05-16T08:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.297400", + "Timestamp": "2024-05-16T08:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216100", + "Timestamp": "2024-05-16T08:01:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.463600", + "Timestamp": "2024-05-16T08:01:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.433600", + "Timestamp": "2024-05-16T08:01:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.333600", + "Timestamp": "2024-05-16T08:01:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.319500", + "Timestamp": "2024-05-16T08:01:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.314500", + "Timestamp": "2024-05-16T08:01:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.189500", + "Timestamp": "2024-05-16T08:01:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.647100", + "Timestamp": "2024-05-16T08:01:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.326300", + "Timestamp": "2024-05-16T08:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.296300", + "Timestamp": "2024-05-16T08:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.196300", + "Timestamp": "2024-05-16T08:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.353100", + "Timestamp": "2024-05-16T08:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.348100", + "Timestamp": "2024-05-16T08:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.223100", + "Timestamp": "2024-05-16T08:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.456700", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.501300", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.496300", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.371300", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.238400", + "Timestamp": "2024-05-16T08:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.200300", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.195300", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.070300", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.827100", + "Timestamp": "2024-05-16T08:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.634400", + "Timestamp": "2024-05-16T08:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.701300", + "Timestamp": "2024-05-16T08:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.822100", + "Timestamp": "2024-05-16T08:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.629400", + "Timestamp": "2024-05-16T08:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.696300", + "Timestamp": "2024-05-16T08:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.697100", + "Timestamp": "2024-05-16T08:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.504400", + "Timestamp": "2024-05-16T08:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.571300", + "Timestamp": "2024-05-16T08:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278100", + "Timestamp": "2024-05-16T08:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273100", + "Timestamp": "2024-05-16T08:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148100", + "Timestamp": "2024-05-16T08:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150800", + "Timestamp": "2024-05-16T08:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147100", + "Timestamp": "2024-05-16T08:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090800", + "Timestamp": "2024-05-16T08:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.544000", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.514000", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.414000", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.247500", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115500", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055500", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.529100", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.524100", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.399100", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.028500", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.023500", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.898500", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.571700", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.541700", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.441700", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.707800", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164600", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160900", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.428900", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.117600", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.065500", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.726500", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.721500", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.596500", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.470800", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.465800", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.340800", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324900", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.364900", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.264900", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.450000", + "Timestamp": "2024-05-16T08:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.535700", + "Timestamp": "2024-05-16T08:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.530700", + "Timestamp": "2024-05-16T08:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.405700", + "Timestamp": "2024-05-16T08:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.848300", + "Timestamp": "2024-05-16T08:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.375300", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.370300", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.245300", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.112000", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.107000", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.982000", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.782000", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.777000", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.652000", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.628100", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.623100", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.498100", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.224800", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.221100", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164800", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.164100", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.134100", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.034100", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.953000", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p2.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.923000", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.823000", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.853600", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.848600", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.723600", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.689300", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.684300", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.559300", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.394600", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.389600", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.264600", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109000", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.067700", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.062700", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.937700", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.511700", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.506700", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.381700", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.362400", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.357400", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.232400", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.760700", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119800", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116100", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059800", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.195200", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.190200", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.065200", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "vt1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.901400", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "vt1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.871400", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "vt1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.771400", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.839800", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.166500", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.136500", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.036500", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095100", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091400", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035100", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.197900", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.143100", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.449000", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.801300", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.796300", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.671300", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124500", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120800", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064500", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.590200", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.585200", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.460200", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.508300", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.503300", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.378300", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.064100", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081900", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121900", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021900", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213600", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.901800", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.731900", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.726900", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.601900", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.446500", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.150800", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.145800", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.020800", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.724200", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.719200", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.594200", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.264400", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.400700", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.395700", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.270700", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.126700", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.867900", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.862900", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.737900", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.920800", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.915800", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.790800", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.483800", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.478800", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.353800", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.806700", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.776700", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.676700", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.611700", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.498800", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.511500", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.506500", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.381500", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.620800", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.615800", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.490800", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.050300", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.045300", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.920300", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.612600", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.607600", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.482600", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.681100", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.616300", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.611300", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.486300", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.584100", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.579100", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.454100", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.074800", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.069800", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.944800", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.471000", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231100", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.883100", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.897000", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144000", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044000", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.391300", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.387300", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.331300", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.239900", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.978000", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.048700", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.250400", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.179900", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.219900", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119900", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.483600", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.296900", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.291900", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.166900", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.585200", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.580200", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.455200", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.305500", + "Timestamp": "2024-05-16T08:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.300500", + "Timestamp": "2024-05-16T08:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175500", + "Timestamp": "2024-05-16T08:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.073900", + "Timestamp": "2024-05-16T08:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.068900", + "Timestamp": "2024-05-16T08:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.943900", + "Timestamp": "2024-05-16T08:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.494400", + "Timestamp": "2024-05-16T08:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.489400", + "Timestamp": "2024-05-16T08:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.364400", + "Timestamp": "2024-05-16T08:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.397700", + "Timestamp": "2024-05-16T08:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.392700", + "Timestamp": "2024-05-16T08:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.267700", + "Timestamp": "2024-05-16T08:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.711800", + "Timestamp": "2024-05-16T08:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.706800", + "Timestamp": "2024-05-16T08:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.581800", + "Timestamp": "2024-05-16T08:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.935500", + "Timestamp": "2024-05-16T08:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.930500", + "Timestamp": "2024-05-16T08:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.805500", + "Timestamp": "2024-05-16T08:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.883900", + "Timestamp": "2024-05-16T08:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.180500", + "Timestamp": "2024-05-16T08:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.176500", + "Timestamp": "2024-05-16T08:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120500", + "Timestamp": "2024-05-16T08:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.833400", + "Timestamp": "2024-05-16T08:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.184400", + "Timestamp": "2024-05-16T08:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.179400", + "Timestamp": "2024-05-16T08:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.054400", + "Timestamp": "2024-05-16T08:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.316100", + "Timestamp": "2024-05-16T08:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.191800", + "Timestamp": "2024-05-16T08:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.214300", + "Timestamp": "2024-05-16T08:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.231800", + "Timestamp": "2024-05-16T08:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.254300", + "Timestamp": "2024-05-16T08:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131800", + "Timestamp": "2024-05-16T08:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.154300", + "Timestamp": "2024-05-16T08:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.082100", + "Timestamp": "2024-05-16T08:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.137000", + "Timestamp": "2024-05-16T08:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.135300", + "Timestamp": "2024-05-16T08:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.382700", + "Timestamp": "2024-05-16T08:01:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.377700", + "Timestamp": "2024-05-16T08:01:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.252700", + "Timestamp": "2024-05-16T08:01:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.232100", + "Timestamp": "2024-05-16T08:01:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.227100", + "Timestamp": "2024-05-16T08:01:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.102100", + "Timestamp": "2024-05-16T08:01:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T08:01:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-16T08:01:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045700", + "Timestamp": "2024-05-16T08:01:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.694100", + "Timestamp": "2024-05-16T08:01:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.689100", + "Timestamp": "2024-05-16T08:01:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.564100", + "Timestamp": "2024-05-16T08:01:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.161100", + "Timestamp": "2024-05-16T08:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101500", + "Timestamp": "2024-05-16T08:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097800", + "Timestamp": "2024-05-16T08:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041500", + "Timestamp": "2024-05-16T08:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.519500", + "Timestamp": "2024-05-16T08:01:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.514500", + "Timestamp": "2024-05-16T08:01:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.389500", + "Timestamp": "2024-05-16T08:01:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.857000", + "Timestamp": "2024-05-16T08:01:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.009800", + "Timestamp": "2024-05-16T08:01:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.004800", + "Timestamp": "2024-05-16T08:01:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.879800", + "Timestamp": "2024-05-16T08:01:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176700", + "Timestamp": "2024-05-16T08:01:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.216700", + "Timestamp": "2024-05-16T08:01:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116700", + "Timestamp": "2024-05-16T08:01:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.308600", + "Timestamp": "2024-05-16T08:01:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.278600", + "Timestamp": "2024-05-16T08:01:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.178600", + "Timestamp": "2024-05-16T08:01:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.416000", + "Timestamp": "2024-05-16T08:01:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.411000", + "Timestamp": "2024-05-16T08:01:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.286000", + "Timestamp": "2024-05-16T08:01:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362900", + "Timestamp": "2024-05-16T08:00:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.332900", + "Timestamp": "2024-05-16T08:00:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.232900", + "Timestamp": "2024-05-16T08:00:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.618700", + "Timestamp": "2024-05-16T08:00:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132500", + "Timestamp": "2024-05-16T08:00:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128800", + "Timestamp": "2024-05-16T08:00:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072500", + "Timestamp": "2024-05-16T08:00:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.658000", + "Timestamp": "2024-05-16T08:00:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.653000", + "Timestamp": "2024-05-16T08:00:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.528000", + "Timestamp": "2024-05-16T08:00:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-16T07:47:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t1.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067600", + "Timestamp": "2024-05-16T07:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t1.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.007600", + "Timestamp": "2024-05-16T07:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t1.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007600", + "Timestamp": "2024-05-16T07:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.895900", + "Timestamp": "2024-05-16T07:47:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.890900", + "Timestamp": "2024-05-16T07:47:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.765900", + "Timestamp": "2024-05-16T07:47:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.766600", + "Timestamp": "2024-05-16T07:47:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.761600", + "Timestamp": "2024-05-16T07:47:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.636600", + "Timestamp": "2024-05-16T07:47:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121100", + "Timestamp": "2024-05-16T07:47:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.816200", + "Timestamp": "2024-05-16T07:46:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.811200", + "Timestamp": "2024-05-16T07:46:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.686200", + "Timestamp": "2024-05-16T07:46:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.308600", + "Timestamp": "2024-05-16T07:46:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.553600", + "Timestamp": "2024-05-16T07:46:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.470800", + "Timestamp": "2024-05-16T07:46:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.633900", + "Timestamp": "2024-05-16T07:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.628900", + "Timestamp": "2024-05-16T07:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.503900", + "Timestamp": "2024-05-16T07:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.775800", + "Timestamp": "2024-05-16T07:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.745800", + "Timestamp": "2024-05-16T07:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.645800", + "Timestamp": "2024-05-16T07:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.842300", + "Timestamp": "2024-05-16T07:46:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.837300", + "Timestamp": "2024-05-16T07:46:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.712300", + "Timestamp": "2024-05-16T07:46:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.257100", + "Timestamp": "2024-05-16T07:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.252100", + "Timestamp": "2024-05-16T07:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.127100", + "Timestamp": "2024-05-16T07:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.505900", + "Timestamp": "2024-05-16T07:46:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.500900", + "Timestamp": "2024-05-16T07:46:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.375900", + "Timestamp": "2024-05-16T07:46:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306700", + "Timestamp": "2024-05-16T07:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301700", + "Timestamp": "2024-05-16T07:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176700", + "Timestamp": "2024-05-16T07:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.801900", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.861800", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.856800", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.731800", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.549900", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.544900", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.419900", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.552200", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.691400", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.018500", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.013500", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.888500", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.892600", + "Timestamp": "2024-05-16T07:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.887600", + "Timestamp": "2024-05-16T07:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.762600", + "Timestamp": "2024-05-16T07:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.456700", + "Timestamp": "2024-05-16T07:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.451700", + "Timestamp": "2024-05-16T07:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.326700", + "Timestamp": "2024-05-16T07:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.043900", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.038900", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.913900", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "vt1.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.342400", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "vt1.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.312400", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "vt1.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212400", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.341900", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.336900", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.211900", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.157500", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.152500", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.027500", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.727900", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.744300", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.739300", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.614300", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.586000", + "Timestamp": "2024-05-16T07:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.569100", + "Timestamp": "2024-05-16T07:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.564100", + "Timestamp": "2024-05-16T07:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.439100", + "Timestamp": "2024-05-16T07:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.324700", + "Timestamp": "2024-05-16T07:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.319700", + "Timestamp": "2024-05-16T07:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.194700", + "Timestamp": "2024-05-16T07:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214400", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.720200", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.715200", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.590200", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.073200", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159200", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155500", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072200", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043200", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012200", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.838800", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.138300", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.133300", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.008300", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.606800", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.318100", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.313100", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.188100", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115600", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111600", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055600", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.297800", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.292800", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.167800", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125900", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122200", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065900", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.744100", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.952700", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.433600", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.375000", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.370000", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.245000", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.218600", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.213600", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.088600", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.957300", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.352800", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.322800", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.222800", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.024200", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.081900", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.076900", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.951900", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.267800", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.262800", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.137800", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118700", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.365100", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075200", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.046200", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015200", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165300", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161600", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105300", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.733400", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184200", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180500", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124200", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.190500", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.186800", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130500", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.040300", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.010300", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.910300", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.064600", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.423300", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.418300", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.293300", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119800", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115800", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059800", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.777700", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.927400", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.922400", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.797400", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.198900", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.193900", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.068900", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.722500", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.913300", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.430700", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.425700", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.300700", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.292300", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.287300", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.162300", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128300", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.270800", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.948700", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.943700", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.818700", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.179900", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.176200", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119900", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.210800", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.206800", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150800", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.559000", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.540000", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.535000", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.410000", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118900", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115200", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058900", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.345100", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.341100", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.285100", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.995800", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.919100", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.194900", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.189900", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.064900", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.740100", + "Timestamp": "2024-05-16T07:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.341300", + "Timestamp": "2024-05-16T07:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.459700", + "Timestamp": "2024-05-16T07:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.454700", + "Timestamp": "2024-05-16T07:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.329700", + "Timestamp": "2024-05-16T07:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.465300", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.460300", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.335300", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.367200", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.363200", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.307200", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.897100", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117100", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113400", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057100", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.085600", + "Timestamp": "2024-05-16T07:46:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169700", + "Timestamp": "2024-05-16T07:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166000", + "Timestamp": "2024-05-16T07:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T07:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.768300", + "Timestamp": "2024-05-16T07:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.489400", + "Timestamp": "2024-05-16T07:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.436000", + "Timestamp": "2024-05-16T07:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.459400", + "Timestamp": "2024-05-16T07:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.406000", + "Timestamp": "2024-05-16T07:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.359400", + "Timestamp": "2024-05-16T07:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.306000", + "Timestamp": "2024-05-16T07:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165600", + "Timestamp": "2024-05-16T07:46:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161600", + "Timestamp": "2024-05-16T07:46:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T07:46:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.204500", + "Timestamp": "2024-05-16T07:46:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.174500", + "Timestamp": "2024-05-16T07:46:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.074500", + "Timestamp": "2024-05-16T07:46:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.128100", + "Timestamp": "2024-05-16T07:46:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123000", + "Timestamp": "2024-05-16T07:46:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119300", + "Timestamp": "2024-05-16T07:46:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063000", + "Timestamp": "2024-05-16T07:46:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226000", + "Timestamp": "2024-05-16T07:46:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.465900", + "Timestamp": "2024-05-16T07:46:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.460900", + "Timestamp": "2024-05-16T07:46:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.335900", + "Timestamp": "2024-05-16T07:46:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.366600", + "Timestamp": "2024-05-16T07:46:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.446900", + "Timestamp": "2024-05-16T07:46:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.441900", + "Timestamp": "2024-05-16T07:46:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.316900", + "Timestamp": "2024-05-16T07:46:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.156200", + "Timestamp": "2024-05-16T07:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.151200", + "Timestamp": "2024-05-16T07:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.026200", + "Timestamp": "2024-05-16T07:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170800", + "Timestamp": "2024-05-16T07:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166800", + "Timestamp": "2024-05-16T07:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T07:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.339100", + "Timestamp": "2024-05-16T07:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334100", + "Timestamp": "2024-05-16T07:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.209100", + "Timestamp": "2024-05-16T07:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.182400", + "Timestamp": "2024-05-16T07:46:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.178400", + "Timestamp": "2024-05-16T07:46:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122400", + "Timestamp": "2024-05-16T07:46:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.919300", + "Timestamp": "2024-05-16T07:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.477500", + "Timestamp": "2024-05-16T07:46:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.447500", + "Timestamp": "2024-05-16T07:46:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.347500", + "Timestamp": "2024-05-16T07:46:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.452300", + "Timestamp": "2024-05-16T07:46:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.422300", + "Timestamp": "2024-05-16T07:46:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.322300", + "Timestamp": "2024-05-16T07:46:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.634300", + "Timestamp": "2024-05-16T07:45:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.629300", + "Timestamp": "2024-05-16T07:45:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.504300", + "Timestamp": "2024-05-16T07:45:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.235400", + "Timestamp": "2024-05-16T07:45:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "a1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.230400", + "Timestamp": "2024-05-16T07:45:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T07:45:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.828000", + "Timestamp": "2024-05-16T07:32:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.823000", + "Timestamp": "2024-05-16T07:32:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.698000", + "Timestamp": "2024-05-16T07:32:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.412200", + "Timestamp": "2024-05-16T07:32:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.407200", + "Timestamp": "2024-05-16T07:32:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.282200", + "Timestamp": "2024-05-16T07:32:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417100", + "Timestamp": "2024-05-16T07:31:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.643000", + "Timestamp": "2024-05-16T07:31:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.493900", + "Timestamp": "2024-05-16T07:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.090600", + "Timestamp": "2024-05-16T07:31:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299400", + "Timestamp": "2024-05-16T07:31:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294400", + "Timestamp": "2024-05-16T07:31:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169400", + "Timestamp": "2024-05-16T07:31:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.582800", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.577800", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.452800", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.827300", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.826000", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.394400", + "Timestamp": "2024-05-16T07:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.389400", + "Timestamp": "2024-05-16T07:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.264400", + "Timestamp": "2024-05-16T07:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.498100", + "Timestamp": "2024-05-16T07:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.493100", + "Timestamp": "2024-05-16T07:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.368100", + "Timestamp": "2024-05-16T07:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.709000", + "Timestamp": "2024-05-16T07:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.704000", + "Timestamp": "2024-05-16T07:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.579000", + "Timestamp": "2024-05-16T07:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.223900", + "Timestamp": "2024-05-16T07:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.218900", + "Timestamp": "2024-05-16T07:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.093900", + "Timestamp": "2024-05-16T07:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.492000", + "Timestamp": "2024-05-16T07:31:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.357000", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.352000", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.227000", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.557300", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.552300", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.427300", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.815000", + "Timestamp": "2024-05-16T07:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.810000", + "Timestamp": "2024-05-16T07:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.685000", + "Timestamp": "2024-05-16T07:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.486000", + "Timestamp": "2024-05-16T07:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.481000", + "Timestamp": "2024-05-16T07:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.356000", + "Timestamp": "2024-05-16T07:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.302800", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.297800", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.172800", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.446000", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.416000", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.316000", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092200", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088500", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032200", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.426300", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.128000", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.098000", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.998000", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.914300", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.910000", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109100", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052800", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.534700", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.450400", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.445400", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.320400", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.742700", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.502000", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.497000", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.372000", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072500", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012500", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.253400", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.220600", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.502600", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.472600", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.372600", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.849100", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.819100", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.719100", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.855900", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.850900", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.725900", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.911800", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.906800", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.781800", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.751700", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.405700", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.670700", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.665700", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.540700", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.673400", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.668400", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.543400", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.693800", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.688800", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.563800", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.713200", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.083400", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.021400", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.016400", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.891400", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.333500", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.328500", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.203500", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.288700", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.717700", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.712700", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.587700", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.543900", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.162000", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.786900", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.798300", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.793300", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.668300", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.846900", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.841900", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.716900", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.427200", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "p2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.576300", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.616300", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "p2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.516300", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360100", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.355100", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230100", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.792600", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.452500", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.447500", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.322500", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.674200", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.465400", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.426900", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092800", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036500", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161200", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157500", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.092600", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131800", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127800", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071800", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.574800", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.544800", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.444800", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.481000", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.476000", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.351000", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.186300", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.226300", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.194200", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190500", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134200", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.193200", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.189200", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133200", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.417400", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.412400", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.287400", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.328000", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323000", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.198000", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.404700", + "Timestamp": "2024-05-16T07:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.399700", + "Timestamp": "2024-05-16T07:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.274700", + "Timestamp": "2024-05-16T07:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.031800", + "Timestamp": "2024-05-16T07:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.225200", + "Timestamp": "2024-05-16T07:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.220200", + "Timestamp": "2024-05-16T07:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.095200", + "Timestamp": "2024-05-16T07:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.238900", + "Timestamp": "2024-05-16T07:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.233900", + "Timestamp": "2024-05-16T07:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.108900", + "Timestamp": "2024-05-16T07:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.280900", + "Timestamp": "2024-05-16T07:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.275900", + "Timestamp": "2024-05-16T07:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.150900", + "Timestamp": "2024-05-16T07:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.459900", + "Timestamp": "2024-05-16T07:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120400", + "Timestamp": "2024-05-16T07:31:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116700", + "Timestamp": "2024-05-16T07:31:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060400", + "Timestamp": "2024-05-16T07:31:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.991700", + "Timestamp": "2024-05-16T07:31:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.986700", + "Timestamp": "2024-05-16T07:31:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.861700", + "Timestamp": "2024-05-16T07:31:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.180300", + "Timestamp": "2024-05-16T07:31:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.788400", + "Timestamp": "2024-05-16T07:31:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.758400", + "Timestamp": "2024-05-16T07:31:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.658400", + "Timestamp": "2024-05-16T07:31:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.037100", + "Timestamp": "2024-05-16T07:31:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.022600", + "Timestamp": "2024-05-16T07:31:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.867400", + "Timestamp": "2024-05-16T07:31:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.979300", + "Timestamp": "2024-05-16T07:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.974300", + "Timestamp": "2024-05-16T07:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.849300", + "Timestamp": "2024-05-16T07:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T07:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T07:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052100", + "Timestamp": "2024-05-16T07:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T07:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148100", + "Timestamp": "2024-05-16T07:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048100", + "Timestamp": "2024-05-16T07:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149900", + "Timestamp": "2024-05-16T07:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146200", + "Timestamp": "2024-05-16T07:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089900", + "Timestamp": "2024-05-16T07:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.239600", + "Timestamp": "2024-05-16T07:31:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.209600", + "Timestamp": "2024-05-16T07:31:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.109600", + "Timestamp": "2024-05-16T07:31:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.333600", + "Timestamp": "2024-05-16T07:31:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298800", + "Timestamp": "2024-05-16T07:31:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.303600", + "Timestamp": "2024-05-16T07:31:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268800", + "Timestamp": "2024-05-16T07:31:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.203600", + "Timestamp": "2024-05-16T07:31:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168800", + "Timestamp": "2024-05-16T07:31:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102000", + "Timestamp": "2024-05-16T07:31:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098000", + "Timestamp": "2024-05-16T07:31:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042000", + "Timestamp": "2024-05-16T07:31:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.041300", + "Timestamp": "2024-05-16T07:17:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.333500", + "Timestamp": "2024-05-16T07:17:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.347900", + "Timestamp": "2024-05-16T07:16:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.342900", + "Timestamp": "2024-05-16T07:16:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.217900", + "Timestamp": "2024-05-16T07:16:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214200", + "Timestamp": "2024-05-16T07:16:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.879900", + "Timestamp": "2024-05-16T07:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.874900", + "Timestamp": "2024-05-16T07:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.749900", + "Timestamp": "2024-05-16T07:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.243300", + "Timestamp": "2024-05-16T07:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124000", + "Timestamp": "2024-05-16T07:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164000", + "Timestamp": "2024-05-16T07:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064000", + "Timestamp": "2024-05-16T07:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.659700", + "Timestamp": "2024-05-16T07:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.654700", + "Timestamp": "2024-05-16T07:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.529700", + "Timestamp": "2024-05-16T07:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.398400", + "Timestamp": "2024-05-16T07:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.368400", + "Timestamp": "2024-05-16T07:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.268400", + "Timestamp": "2024-05-16T07:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.195400", + "Timestamp": "2024-05-16T07:16:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.712300", + "Timestamp": "2024-05-16T07:16:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.117300", + "Timestamp": "2024-05-16T07:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.112300", + "Timestamp": "2024-05-16T07:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.987300", + "Timestamp": "2024-05-16T07:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.142200", + "Timestamp": "2024-05-16T07:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.495200", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.490200", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.365200", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.847100", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.124500", + "Timestamp": "2024-05-16T07:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.119500", + "Timestamp": "2024-05-16T07:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.994500", + "Timestamp": "2024-05-16T07:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.501900", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.471900", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.371900", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.457800", + "Timestamp": "2024-05-16T07:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.427800", + "Timestamp": "2024-05-16T07:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.327800", + "Timestamp": "2024-05-16T07:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.497800", + "Timestamp": "2024-05-16T07:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.265300", + "Timestamp": "2024-05-16T07:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.260300", + "Timestamp": "2024-05-16T07:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.135300", + "Timestamp": "2024-05-16T07:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.060800", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.055800", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.930800", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.414700", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.384700", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.284700", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.318800", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.313800", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.188800", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.165500", + "Timestamp": "2024-05-16T07:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.160500", + "Timestamp": "2024-05-16T07:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.035500", + "Timestamp": "2024-05-16T07:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.500500", + "Timestamp": "2024-05-16T07:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.495500", + "Timestamp": "2024-05-16T07:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.370500", + "Timestamp": "2024-05-16T07:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.685600", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.680600", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.555600", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.981000", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.976000", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.851000", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226100", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301100", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296100", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171100", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.835400", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.488800", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.483800", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.358800", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.768800", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.327500", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.297500", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.197500", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.085700", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.080700", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.955700", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160600", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156900", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100600", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126100", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122400", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066100", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.308800", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.259600", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.440100", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.832300", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.671300", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.666300", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.541300", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.938300", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.325100", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.865800", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.971200", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.478000", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473000", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.348000", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.650600", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.645600", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.520600", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.288900", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.283900", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.158900", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095600", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135600", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035600", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.097600", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.092600", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967600", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.194000", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190000", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134000", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.009900", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.004900", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.879900", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.231300", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.387700", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.382700", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.257700", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.490800", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.637000", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.337100", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.470200", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.394400", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041200", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.385400", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.380400", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.255400", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.531500", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.526500", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.401500", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.459600", + "Timestamp": "2024-05-16T07:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.454600", + "Timestamp": "2024-05-16T07:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.329600", + "Timestamp": "2024-05-16T07:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.588800", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.583800", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.458800", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.798600", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.609600", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.579600", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.479600", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.320400", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170500", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.210500", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.180700", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.176700", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120700", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.074000", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.337200", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.332200", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.207200", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.215300", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.211600", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.155300", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.056900", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.051900", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.926900", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.202700", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.256900", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.197700", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.251900", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.072700", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.126900", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.520300", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.073600", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.068600", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.943600", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.503400", + "Timestamp": "2024-05-16T07:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.313900", + "Timestamp": "2024-05-16T07:16:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.308900", + "Timestamp": "2024-05-16T07:16:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.183900", + "Timestamp": "2024-05-16T07:16:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.457900", + "Timestamp": "2024-05-16T07:16:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.049300", + "Timestamp": "2024-05-16T07:16:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.044300", + "Timestamp": "2024-05-16T07:16:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.919300", + "Timestamp": "2024-05-16T07:16:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.563000", + "Timestamp": "2024-05-16T07:16:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.533000", + "Timestamp": "2024-05-16T07:16:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.433000", + "Timestamp": "2024-05-16T07:16:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147400", + "Timestamp": "2024-05-16T07:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143700", + "Timestamp": "2024-05-16T07:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087400", + "Timestamp": "2024-05-16T07:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T07:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-16T07:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056600", + "Timestamp": "2024-05-16T07:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.477700", + "Timestamp": "2024-05-16T07:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124700", + "Timestamp": "2024-05-16T07:16:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120700", + "Timestamp": "2024-05-16T07:16:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064700", + "Timestamp": "2024-05-16T07:16:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.676200", + "Timestamp": "2024-05-16T07:16:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021700", + "Timestamp": "2024-05-16T07:04:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113500", + "Timestamp": "2024-05-16T07:02:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T07:02:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053500", + "Timestamp": "2024-05-16T07:02:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.496500", + "Timestamp": "2024-05-16T07:02:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.968100", + "Timestamp": "2024-05-16T07:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.107300", + "Timestamp": "2024-05-16T07:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.102300", + "Timestamp": "2024-05-16T07:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.977300", + "Timestamp": "2024-05-16T07:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.663100", + "Timestamp": "2024-05-16T07:01:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.080600", + "Timestamp": "2024-05-16T07:01:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.833100", + "Timestamp": "2024-05-16T07:01:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131000", + "Timestamp": "2024-05-16T07:01:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127300", + "Timestamp": "2024-05-16T07:01:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071000", + "Timestamp": "2024-05-16T07:01:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.123800", + "Timestamp": "2024-05-16T07:01:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.118800", + "Timestamp": "2024-05-16T07:01:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.993800", + "Timestamp": "2024-05-16T07:01:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124400", + "Timestamp": "2024-05-16T07:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120700", + "Timestamp": "2024-05-16T07:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064400", + "Timestamp": "2024-05-16T07:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.408400", + "Timestamp": "2024-05-16T07:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.364500", + "Timestamp": "2024-05-16T07:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.378400", + "Timestamp": "2024-05-16T07:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334500", + "Timestamp": "2024-05-16T07:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.278400", + "Timestamp": "2024-05-16T07:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.234500", + "Timestamp": "2024-05-16T07:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.960500", + "Timestamp": "2024-05-16T07:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.161200", + "Timestamp": "2024-05-16T07:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.346700", + "Timestamp": "2024-05-16T07:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.341700", + "Timestamp": "2024-05-16T07:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.216700", + "Timestamp": "2024-05-16T07:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.812100", + "Timestamp": "2024-05-16T07:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.807100", + "Timestamp": "2024-05-16T07:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.682100", + "Timestamp": "2024-05-16T07:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.042000", + "Timestamp": "2024-05-16T07:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.931800", + "Timestamp": "2024-05-16T07:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.683400", + "Timestamp": "2024-05-16T07:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.553200", + "Timestamp": "2024-05-16T07:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.133700", + "Timestamp": "2024-05-16T07:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.128700", + "Timestamp": "2024-05-16T07:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.003700", + "Timestamp": "2024-05-16T07:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.702000", + "Timestamp": "2024-05-16T07:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.738600", + "Timestamp": "2024-05-16T07:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.708600", + "Timestamp": "2024-05-16T07:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.608600", + "Timestamp": "2024-05-16T07:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.927100", + "Timestamp": "2024-05-16T07:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.922100", + "Timestamp": "2024-05-16T07:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.797100", + "Timestamp": "2024-05-16T07:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.012400", + "Timestamp": "2024-05-16T07:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.007400", + "Timestamp": "2024-05-16T07:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.882400", + "Timestamp": "2024-05-16T07:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.845900", + "Timestamp": "2024-05-16T07:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.840900", + "Timestamp": "2024-05-16T07:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.715900", + "Timestamp": "2024-05-16T07:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.481400", + "Timestamp": "2024-05-16T07:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.789000", + "Timestamp": "2024-05-16T07:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.637500", + "Timestamp": "2024-05-16T07:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.425800", + "Timestamp": "2024-05-16T07:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.395800", + "Timestamp": "2024-05-16T07:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.295800", + "Timestamp": "2024-05-16T07:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.204100", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.200100", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144100", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.750700", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.745700", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.620700", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.224900", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.219900", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.094900", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.178300", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174600", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118300", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.773400", + "Timestamp": "2024-05-16T07:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.869100", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164000", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160300", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153300", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149600", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093300", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184800", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181800", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124800", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.946100", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.828100", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.941100", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.823100", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.816100", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.698100", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.424600", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.419600", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.294600", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.695700", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.690700", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.565700", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.756800", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.820900", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.815900", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.690900", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.054900", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104100", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144100", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044100", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.396300", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.391300", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.266300", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.900700", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.895700", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.770700", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.884100", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.777400", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.772400", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.647400", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.981000", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.622500", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.617500", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.492500", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.930400", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.925400", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.800400", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.051200", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.021200", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.921200", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.039800", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.034800", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.909800", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.965200", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.806200", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.859600", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.801200", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.854600", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.676200", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.729600", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.190200", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.186500", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130200", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.931500", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.941900", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.175200", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.170200", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.045200", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.088100", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.083100", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.958100", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.113000", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.108000", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.983000", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.852200", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.847200", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.722200", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.775100", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.749700", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.657200", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.652200", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.527200", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.105300", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.100300", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.975300", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.348600", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.343600", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.218600", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.226400", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.221400", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.096400", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.588600", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.500100", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.420900", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.415900", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.290900", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.large", + "ProductDescription": "Windows", + "SpotPrice": "0.137900", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Windows", + "SpotPrice": "9.211000", + "Timestamp": "2024-05-16T07:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.390200", + "Timestamp": "2024-05-16T07:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.457300", + "Timestamp": "2024-05-16T07:01:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.427300", + "Timestamp": "2024-05-16T07:01:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.327300", + "Timestamp": "2024-05-16T07:01:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.495000", + "Timestamp": "2024-05-16T07:01:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.490000", + "Timestamp": "2024-05-16T07:01:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.365000", + "Timestamp": "2024-05-16T07:01:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.554300", + "Timestamp": "2024-05-16T07:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.524300", + "Timestamp": "2024-05-16T07:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.424300", + "Timestamp": "2024-05-16T07:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.327400", + "Timestamp": "2024-05-16T07:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.322400", + "Timestamp": "2024-05-16T07:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.197400", + "Timestamp": "2024-05-16T07:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.804400", + "Timestamp": "2024-05-16T07:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.800700", + "Timestamp": "2024-05-16T07:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.744400", + "Timestamp": "2024-05-16T07:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.489500", + "Timestamp": "2024-05-16T07:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.856500", + "Timestamp": "2024-05-16T07:01:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161300", + "Timestamp": "2024-05-16T07:01:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157600", + "Timestamp": "2024-05-16T07:01:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101300", + "Timestamp": "2024-05-16T07:01:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.380800", + "Timestamp": "2024-05-16T07:00:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.375800", + "Timestamp": "2024-05-16T07:00:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.250800", + "Timestamp": "2024-05-16T07:00:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.150400", + "Timestamp": "2024-05-16T06:54:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.150400", + "Timestamp": "2024-05-16T06:54:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.150400", + "Timestamp": "2024-05-16T06:54:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068500", + "Timestamp": "2024-05-16T06:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038500", + "Timestamp": "2024-05-16T06:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008500", + "Timestamp": "2024-05-16T06:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.577400", + "Timestamp": "2024-05-16T06:47:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.988600", + "Timestamp": "2024-05-16T06:46:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.983600", + "Timestamp": "2024-05-16T06:46:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.858600", + "Timestamp": "2024-05-16T06:46:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.218300", + "Timestamp": "2024-05-16T06:46:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.213300", + "Timestamp": "2024-05-16T06:46:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.088300", + "Timestamp": "2024-05-16T06:46:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.924700", + "Timestamp": "2024-05-16T06:46:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.027800", + "Timestamp": "2024-05-16T06:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.764300", + "Timestamp": "2024-05-16T06:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.759300", + "Timestamp": "2024-05-16T06:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.634300", + "Timestamp": "2024-05-16T06:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225900", + "Timestamp": "2024-05-16T06:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.213100", + "Timestamp": "2024-05-16T06:46:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.208100", + "Timestamp": "2024-05-16T06:46:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.083100", + "Timestamp": "2024-05-16T06:46:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.078700", + "Timestamp": "2024-05-16T06:46:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354800", + "Timestamp": "2024-05-16T06:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349800", + "Timestamp": "2024-05-16T06:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224800", + "Timestamp": "2024-05-16T06:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.586100", + "Timestamp": "2024-05-16T06:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.285600", + "Timestamp": "2024-05-16T06:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.255600", + "Timestamp": "2024-05-16T06:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.155600", + "Timestamp": "2024-05-16T06:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.869700", + "Timestamp": "2024-05-16T06:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.864700", + "Timestamp": "2024-05-16T06:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.739700", + "Timestamp": "2024-05-16T06:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.126700", + "Timestamp": "2024-05-16T06:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.971600", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.966600", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.841600", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.513600", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.508600", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.383600", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.720100", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.155200", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.150200", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.025200", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.895700", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.544300", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.539300", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.414300", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.192900", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.187900", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.062900", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.228900", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.727600", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.697600", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.597600", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.190900", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.185900", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.060900", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.417400", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273800", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268800", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143800", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103200", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099500", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043200", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.822900", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.817900", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.692900", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.505000", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.500000", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.375000", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.240200", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.235200", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.110200", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.398300", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.099700", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.069700", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.969700", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.501400", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.369900", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.364900", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.239900", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.904300", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.899300", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.774300", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.195600", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.525200", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.520200", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.395200", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.705000", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.097700", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.092700", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.967700", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.611300", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.606300", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.481300", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.772700", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.967200", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.513000", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.123200", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138900", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.178900", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078900", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.593100", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.588100", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.463100", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.232400", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.227400", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.102400", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.489400", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.701700", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.719700", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.714700", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.589700", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.788000", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123300", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119300", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063300", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.040900", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156200", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152500", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096200", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047500", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.221900", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.216900", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.091900", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.313600", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.308600", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.183600", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156100", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152100", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096100", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.507500", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044900", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221800", + "Timestamp": "2024-05-16T06:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.237800", + "Timestamp": "2024-05-16T06:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.660900", + "Timestamp": "2024-05-16T06:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.655900", + "Timestamp": "2024-05-16T06:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.530900", + "Timestamp": "2024-05-16T06:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.259400", + "Timestamp": "2024-05-16T06:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.255700", + "Timestamp": "2024-05-16T06:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199400", + "Timestamp": "2024-05-16T06:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075100", + "Timestamp": "2024-05-16T06:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071400", + "Timestamp": "2024-05-16T06:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015100", + "Timestamp": "2024-05-16T06:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.602800", + "Timestamp": "2024-05-16T06:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.597800", + "Timestamp": "2024-05-16T06:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.472800", + "Timestamp": "2024-05-16T06:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.809600", + "Timestamp": "2024-05-16T06:46:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.779600", + "Timestamp": "2024-05-16T06:46:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.679600", + "Timestamp": "2024-05-16T06:46:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.676500", + "Timestamp": "2024-05-16T06:46:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114200", + "Timestamp": "2024-05-16T06:46:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T06:46:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054200", + "Timestamp": "2024-05-16T06:46:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t1.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067800", + "Timestamp": "2024-05-16T06:46:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t1.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.007800", + "Timestamp": "2024-05-16T06:46:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t1.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007800", + "Timestamp": "2024-05-16T06:46:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.481100", + "Timestamp": "2024-05-16T06:46:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.476100", + "Timestamp": "2024-05-16T06:46:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.351100", + "Timestamp": "2024-05-16T06:46:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.919300", + "Timestamp": "2024-05-16T06:46:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.183000", + "Timestamp": "2024-05-16T06:46:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179300", + "Timestamp": "2024-05-16T06:46:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123000", + "Timestamp": "2024-05-16T06:46:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.607300", + "Timestamp": "2024-05-16T06:46:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T06:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-16T06:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031800", + "Timestamp": "2024-05-16T06:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.434800", + "Timestamp": "2024-05-16T06:46:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.289900", + "Timestamp": "2024-05-16T06:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.284900", + "Timestamp": "2024-05-16T06:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.159900", + "Timestamp": "2024-05-16T06:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.240300", + "Timestamp": "2024-05-16T06:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.235300", + "Timestamp": "2024-05-16T06:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.110300", + "Timestamp": "2024-05-16T06:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.433300", + "Timestamp": "2024-05-16T06:46:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.428300", + "Timestamp": "2024-05-16T06:46:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.303300", + "Timestamp": "2024-05-16T06:46:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.449300", + "Timestamp": "2024-05-16T06:46:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.444300", + "Timestamp": "2024-05-16T06:46:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.319300", + "Timestamp": "2024-05-16T06:46:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.523200", + "Timestamp": "2024-05-16T06:35:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.523200", + "Timestamp": "2024-05-16T06:35:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063200", + "Timestamp": "2024-05-16T06:32:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003200", + "Timestamp": "2024-05-16T06:32:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003200", + "Timestamp": "2024-05-16T06:32:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113100", + "Timestamp": "2024-05-16T06:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.512700", + "Timestamp": "2024-05-16T06:32:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.482700", + "Timestamp": "2024-05-16T06:32:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.382700", + "Timestamp": "2024-05-16T06:32:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.731900", + "Timestamp": "2024-05-16T06:32:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.195300", + "Timestamp": "2024-05-16T06:31:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.190300", + "Timestamp": "2024-05-16T06:31:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.065300", + "Timestamp": "2024-05-16T06:31:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T06:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.438100", + "Timestamp": "2024-05-16T06:31:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.408100", + "Timestamp": "2024-05-16T06:31:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.308100", + "Timestamp": "2024-05-16T06:31:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.714000", + "Timestamp": "2024-05-16T06:31:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.709000", + "Timestamp": "2024-05-16T06:31:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.584000", + "Timestamp": "2024-05-16T06:31:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.719000", + "Timestamp": "2024-05-16T06:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.042100", + "Timestamp": "2024-05-16T06:31:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.045200", + "Timestamp": "2024-05-16T06:31:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.669600", + "Timestamp": "2024-05-16T06:31:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.666200", + "Timestamp": "2024-05-16T06:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.636200", + "Timestamp": "2024-05-16T06:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.536200", + "Timestamp": "2024-05-16T06:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118200", + "Timestamp": "2024-05-16T06:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.063100", + "Timestamp": "2024-05-16T06:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.852600", + "Timestamp": "2024-05-16T06:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.692200", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.687200", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.562200", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.597800", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.738500", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.733500", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.608500", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.694500", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.689500", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.564500", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.377100", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372100", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.247100", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.188500", + "Timestamp": "2024-05-16T06:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.184500", + "Timestamp": "2024-05-16T06:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128500", + "Timestamp": "2024-05-16T06:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.248600", + "Timestamp": "2024-05-16T06:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.623700", + "Timestamp": "2024-05-16T06:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.372000", + "Timestamp": "2024-05-16T06:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.942700", + "Timestamp": "2024-05-16T06:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.937700", + "Timestamp": "2024-05-16T06:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.812700", + "Timestamp": "2024-05-16T06:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.122300", + "Timestamp": "2024-05-16T06:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.808000", + "Timestamp": "2024-05-16T06:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.450500", + "Timestamp": "2024-05-16T06:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.445500", + "Timestamp": "2024-05-16T06:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.320500", + "Timestamp": "2024-05-16T06:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.329300", + "Timestamp": "2024-05-16T06:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324300", + "Timestamp": "2024-05-16T06:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199300", + "Timestamp": "2024-05-16T06:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.337500", + "Timestamp": "2024-05-16T06:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.122200", + "Timestamp": "2024-05-16T06:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.344100", + "Timestamp": "2024-05-16T06:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.339100", + "Timestamp": "2024-05-16T06:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.214100", + "Timestamp": "2024-05-16T06:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.107100", + "Timestamp": "2024-05-16T06:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.076700", + "Timestamp": "2024-05-16T06:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.321200", + "Timestamp": "2024-05-16T06:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.316200", + "Timestamp": "2024-05-16T06:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.191200", + "Timestamp": "2024-05-16T06:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.470000", + "Timestamp": "2024-05-16T06:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.577200", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.648200", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.157900", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.152900", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.027900", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.362800", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.357800", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.232800", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301100", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296100", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171100", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.441100", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.073400", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.068400", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.943400", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168300", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164300", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108300", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.457600", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.494600", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.489600", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.364600", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.089600", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.084600", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.959600", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.864200", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.354500", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.349500", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.224500", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.214700", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.209700", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084700", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.352400", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.347400", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.222400", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.479700", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.474700", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.349700", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.883900", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.853900", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.753900", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.554500", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093200", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091500", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089500", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087800", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033200", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031500", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.838700", + "Timestamp": "2024-05-16T06:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.806000", + "Timestamp": "2024-05-16T06:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.801000", + "Timestamp": "2024-05-16T06:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.676000", + "Timestamp": "2024-05-16T06:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.037000", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.654900", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.649900", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.524900", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.937100", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.797200", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.031500", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.001500", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.901500", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.994600", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.989600", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.864600", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.483200", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.348400", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343400", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.218400", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.266900", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.797700", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.899700", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.894700", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.769700", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.177200", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.172200", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.047200", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.415000", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.410000", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.285000", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.876500", + "Timestamp": "2024-05-16T06:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.160300", + "Timestamp": "2024-05-16T06:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Windows", + "SpotPrice": "9.028500", + "Timestamp": "2024-05-16T06:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.215500", + "Timestamp": "2024-05-16T06:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.210500", + "Timestamp": "2024-05-16T06:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.085500", + "Timestamp": "2024-05-16T06:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.357600", + "Timestamp": "2024-05-16T06:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.112400", + "Timestamp": "2024-05-16T06:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.107400", + "Timestamp": "2024-05-16T06:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.982400", + "Timestamp": "2024-05-16T06:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.745300", + "Timestamp": "2024-05-16T06:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.740300", + "Timestamp": "2024-05-16T06:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.615300", + "Timestamp": "2024-05-16T06:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.793500", + "Timestamp": "2024-05-16T06:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.182400", + "Timestamp": "2024-05-16T06:31:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.178700", + "Timestamp": "2024-05-16T06:31:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122400", + "Timestamp": "2024-05-16T06:31:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.799600", + "Timestamp": "2024-05-16T06:31:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.794600", + "Timestamp": "2024-05-16T06:31:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.669600", + "Timestamp": "2024-05-16T06:31:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120300", + "Timestamp": "2024-05-16T06:31:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.180800", + "Timestamp": "2024-05-16T06:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177100", + "Timestamp": "2024-05-16T06:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120800", + "Timestamp": "2024-05-16T06:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.453700", + "Timestamp": "2024-05-16T06:31:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.862100", + "Timestamp": "2024-05-16T06:31:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.857100", + "Timestamp": "2024-05-16T06:31:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.732100", + "Timestamp": "2024-05-16T06:31:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T06:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-16T06:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056600", + "Timestamp": "2024-05-16T06:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.637600", + "Timestamp": "2024-05-16T06:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.632600", + "Timestamp": "2024-05-16T06:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.507600", + "Timestamp": "2024-05-16T06:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.590900", + "Timestamp": "2024-05-16T06:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.585900", + "Timestamp": "2024-05-16T06:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.460900", + "Timestamp": "2024-05-16T06:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.391300", + "Timestamp": "2024-05-16T06:31:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.386300", + "Timestamp": "2024-05-16T06:31:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.261300", + "Timestamp": "2024-05-16T06:31:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.708300", + "Timestamp": "2024-05-16T06:31:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.678300", + "Timestamp": "2024-05-16T06:31:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.578300", + "Timestamp": "2024-05-16T06:31:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.259200", + "Timestamp": "2024-05-16T06:31:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.254200", + "Timestamp": "2024-05-16T06:31:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.129200", + "Timestamp": "2024-05-16T06:31:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.518800", + "Timestamp": "2024-05-16T06:31:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.042300", + "Timestamp": "2024-05-16T06:31:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.304700", + "Timestamp": "2024-05-16T06:30:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.299700", + "Timestamp": "2024-05-16T06:30:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.174700", + "Timestamp": "2024-05-16T06:30:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.524600", + "Timestamp": "2024-05-16T06:30:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.519600", + "Timestamp": "2024-05-16T06:30:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.394600", + "Timestamp": "2024-05-16T06:30:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.764800", + "Timestamp": "2024-05-16T06:30:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.764800", + "Timestamp": "2024-05-16T06:30:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.764800", + "Timestamp": "2024-05-16T06:30:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.894700", + "Timestamp": "2024-05-16T06:17:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.529300", + "Timestamp": "2024-05-16T06:17:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100100", + "Timestamp": "2024-05-16T06:17:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096400", + "Timestamp": "2024-05-16T06:17:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040100", + "Timestamp": "2024-05-16T06:17:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.218200", + "Timestamp": "2024-05-16T06:17:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.213200", + "Timestamp": "2024-05-16T06:17:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.088200", + "Timestamp": "2024-05-16T06:17:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.470600", + "Timestamp": "2024-05-16T06:17:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.465600", + "Timestamp": "2024-05-16T06:17:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.340600", + "Timestamp": "2024-05-16T06:17:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.921900", + "Timestamp": "2024-05-16T06:16:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.916900", + "Timestamp": "2024-05-16T06:16:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.791900", + "Timestamp": "2024-05-16T06:16:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.989300", + "Timestamp": "2024-05-16T06:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.943100", + "Timestamp": "2024-05-16T06:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.236100", + "Timestamp": "2024-05-16T06:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.093200", + "Timestamp": "2024-05-16T06:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.044000", + "Timestamp": "2024-05-16T06:16:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.039000", + "Timestamp": "2024-05-16T06:16:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.914000", + "Timestamp": "2024-05-16T06:16:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.966300", + "Timestamp": "2024-05-16T06:16:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.113800", + "Timestamp": "2024-05-16T06:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.083800", + "Timestamp": "2024-05-16T06:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.983800", + "Timestamp": "2024-05-16T06:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.568400", + "Timestamp": "2024-05-16T06:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.563400", + "Timestamp": "2024-05-16T06:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.438400", + "Timestamp": "2024-05-16T06:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.909800", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.154300", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.124300", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.024300", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.534400", + "Timestamp": "2024-05-16T06:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.529400", + "Timestamp": "2024-05-16T06:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.404400", + "Timestamp": "2024-05-16T06:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.858100", + "Timestamp": "2024-05-16T06:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.812400", + "Timestamp": "2024-05-16T06:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.785400", + "Timestamp": "2024-05-16T06:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.780400", + "Timestamp": "2024-05-16T06:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.655400", + "Timestamp": "2024-05-16T06:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.130300", + "Timestamp": "2024-05-16T06:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103100", + "Timestamp": "2024-05-16T06:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099400", + "Timestamp": "2024-05-16T06:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043100", + "Timestamp": "2024-05-16T06:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.258700", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115500", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.229800", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.224800", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.099800", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110900", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054600", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324900", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319900", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194900", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.545100", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.060700", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.055700", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.930700", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.872700", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.867700", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.742700", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138600", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134900", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078600", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.796000", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.889800", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.791000", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.884800", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.666000", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.759800", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.730100", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.809300", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.231400", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.226400", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.101400", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.426400", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.421400", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.296400", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.785100", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.878600", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.780100", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.873600", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.655100", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.748600", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.902900", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.897900", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.772900", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.872800", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.749500", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.744500", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.619500", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.471600", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.886600", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.881600", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.756600", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.198400", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.266300", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.976100", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.101700", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.096700", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.971700", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.737200", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.707200", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.607200", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.064400", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.059400", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.934400", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.189700", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185700", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129700", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103100", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046800", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.953700", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.315300", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.285300", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.185300", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.187800", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.182800", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.057800", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.698000", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.693000", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.568000", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.232100", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.762500", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.757500", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.632500", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.113600", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.108600", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.983600", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.166600", + "Timestamp": "2024-05-16T06:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.161600", + "Timestamp": "2024-05-16T06:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.036600", + "Timestamp": "2024-05-16T06:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.983100", + "Timestamp": "2024-05-16T06:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.978100", + "Timestamp": "2024-05-16T06:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.853100", + "Timestamp": "2024-05-16T06:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091300", + "Timestamp": "2024-05-16T06:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087600", + "Timestamp": "2024-05-16T06:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031300", + "Timestamp": "2024-05-16T06:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.582000", + "Timestamp": "2024-05-16T06:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.577000", + "Timestamp": "2024-05-16T06:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.452000", + "Timestamp": "2024-05-16T06:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.206400", + "Timestamp": "2024-05-16T06:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.202700", + "Timestamp": "2024-05-16T06:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146400", + "Timestamp": "2024-05-16T06:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.481200", + "Timestamp": "2024-05-16T06:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.451200", + "Timestamp": "2024-05-16T06:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.351200", + "Timestamp": "2024-05-16T06:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.796800", + "Timestamp": "2024-05-16T06:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.840100", + "Timestamp": "2024-05-16T06:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.835100", + "Timestamp": "2024-05-16T06:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.710100", + "Timestamp": "2024-05-16T06:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.224300", + "Timestamp": "2024-05-16T06:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.219300", + "Timestamp": "2024-05-16T06:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.094300", + "Timestamp": "2024-05-16T06:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.487800", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.964500", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.959500", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.834500", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.863600", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.576900", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.831500", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "a1.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.206600", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "a1.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.201600", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "a1.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076600", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219700", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.939400", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.934400", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.809400", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.853600", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.848600", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.723600", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.817600", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.988700", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091600", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087900", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031600", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.706200", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.260000", + "Timestamp": "2024-05-16T06:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159300", + "Timestamp": "2024-05-16T06:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155600", + "Timestamp": "2024-05-16T06:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099300", + "Timestamp": "2024-05-16T06:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.372300", + "Timestamp": "2024-05-16T06:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.367300", + "Timestamp": "2024-05-16T06:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242300", + "Timestamp": "2024-05-16T06:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.470600", + "Timestamp": "2024-05-16T06:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.465600", + "Timestamp": "2024-05-16T06:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.340600", + "Timestamp": "2024-05-16T06:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078400", + "Timestamp": "2024-05-16T06:16:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074700", + "Timestamp": "2024-05-16T06:16:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018400", + "Timestamp": "2024-05-16T06:16:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.731300", + "Timestamp": "2024-05-16T06:16:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.726300", + "Timestamp": "2024-05-16T06:16:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.601300", + "Timestamp": "2024-05-16T06:16:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.894400", + "Timestamp": "2024-05-16T06:16:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.027500", + "Timestamp": "2024-05-16T06:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.022500", + "Timestamp": "2024-05-16T06:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.897500", + "Timestamp": "2024-05-16T06:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.137700", + "Timestamp": "2024-05-16T06:16:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T06:16:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105500", + "Timestamp": "2024-05-16T06:16:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049500", + "Timestamp": "2024-05-16T06:16:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.172400", + "Timestamp": "2024-05-16T06:16:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.534400", + "Timestamp": "2024-05-16T06:16:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.529400", + "Timestamp": "2024-05-16T06:16:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.404400", + "Timestamp": "2024-05-16T06:16:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.005900", + "Timestamp": "2024-05-16T06:16:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.476100", + "Timestamp": "2024-05-16T06:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.543900", + "Timestamp": "2024-05-16T06:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.538900", + "Timestamp": "2024-05-16T06:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.413900", + "Timestamp": "2024-05-16T06:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.497600", + "Timestamp": "2024-05-16T06:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.492600", + "Timestamp": "2024-05-16T06:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.367600", + "Timestamp": "2024-05-16T06:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099900", + "Timestamp": "2024-05-16T06:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096200", + "Timestamp": "2024-05-16T06:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039900", + "Timestamp": "2024-05-16T06:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.850500", + "Timestamp": "2024-05-16T06:16:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141300", + "Timestamp": "2024-05-16T06:15:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137600", + "Timestamp": "2024-05-16T06:15:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081300", + "Timestamp": "2024-05-16T06:15:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.412000", + "Timestamp": "2024-05-16T06:09:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.412000", + "Timestamp": "2024-05-16T06:09:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224600", + "Timestamp": "2024-05-16T06:09:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224600", + "Timestamp": "2024-05-16T06:09:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224600", + "Timestamp": "2024-05-16T06:09:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.529600", + "Timestamp": "2024-05-16T06:08:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.529600", + "Timestamp": "2024-05-16T06:08:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.529600", + "Timestamp": "2024-05-16T06:08:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T06:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.994400", + "Timestamp": "2024-05-16T06:02:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.989400", + "Timestamp": "2024-05-16T06:02:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.864400", + "Timestamp": "2024-05-16T06:02:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416300", + "Timestamp": "2024-05-16T06:01:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.873200", + "Timestamp": "2024-05-16T06:01:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.420300", + "Timestamp": "2024-05-16T06:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.429900", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.944000", + "Timestamp": "2024-05-16T06:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.615100", + "Timestamp": "2024-05-16T06:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.457400", + "Timestamp": "2024-05-16T06:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.452400", + "Timestamp": "2024-05-16T06:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.327400", + "Timestamp": "2024-05-16T06:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.722600", + "Timestamp": "2024-05-16T06:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.717600", + "Timestamp": "2024-05-16T06:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.592600", + "Timestamp": "2024-05-16T06:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121600", + "Timestamp": "2024-05-16T06:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161600", + "Timestamp": "2024-05-16T06:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061600", + "Timestamp": "2024-05-16T06:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.475600", + "Timestamp": "2024-05-16T06:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.470600", + "Timestamp": "2024-05-16T06:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.345600", + "Timestamp": "2024-05-16T06:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.254100", + "Timestamp": "2024-05-16T06:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.249100", + "Timestamp": "2024-05-16T06:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.124100", + "Timestamp": "2024-05-16T06:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.974800", + "Timestamp": "2024-05-16T06:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T06:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-16T06:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044200", + "Timestamp": "2024-05-16T06:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090300", + "Timestamp": "2024-05-16T06:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086600", + "Timestamp": "2024-05-16T06:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030300", + "Timestamp": "2024-05-16T06:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.513300", + "Timestamp": "2024-05-16T06:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.508300", + "Timestamp": "2024-05-16T06:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.383300", + "Timestamp": "2024-05-16T06:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.482300", + "Timestamp": "2024-05-16T06:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.452300", + "Timestamp": "2024-05-16T06:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.352300", + "Timestamp": "2024-05-16T06:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.744500", + "Timestamp": "2024-05-16T06:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.739500", + "Timestamp": "2024-05-16T06:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.614500", + "Timestamp": "2024-05-16T06:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.463700", + "Timestamp": "2024-05-16T06:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.128000", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.098000", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.998000", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.283000", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.278000", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.153000", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.040400", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.365800", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.335800", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235800", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.118700", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.969100", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.964100", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.839100", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.227700", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.436700", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.290300", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.260300", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.160300", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.622100", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.760300", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.755300", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.630300", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.910000", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.310100", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.305100", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180100", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.983000", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.455000", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.450000", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.325000", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.895300", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.847400", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.865300", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.817400", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.765300", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.717400", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.867600", + "Timestamp": "2024-05-16T06:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.862600", + "Timestamp": "2024-05-16T06:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.737600", + "Timestamp": "2024-05-16T06:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.483900", + "Timestamp": "2024-05-16T06:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.478900", + "Timestamp": "2024-05-16T06:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.353900", + "Timestamp": "2024-05-16T06:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.057800", + "Timestamp": "2024-05-16T06:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.056700", + "Timestamp": "2024-05-16T06:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.347800", + "Timestamp": "2024-05-16T06:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343800", + "Timestamp": "2024-05-16T06:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.287800", + "Timestamp": "2024-05-16T06:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.438600", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.225800", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.221800", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165800", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.226900", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.221900", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.096900", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.337500", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.307500", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.207500", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222900", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.265000", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.811200", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.703900", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.703400", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.698400", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.573400", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.800000", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.795000", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.670000", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.384300", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.379300", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.254300", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.414800", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.409800", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.284800", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214000", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.285300", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.140400", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.464400", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.459400", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.334400", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.661500", + "Timestamp": "2024-05-16T06:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.754400", + "Timestamp": "2024-05-16T06:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.829800", + "Timestamp": "2024-05-16T06:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.974300", + "Timestamp": "2024-05-16T06:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.969300", + "Timestamp": "2024-05-16T06:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.844300", + "Timestamp": "2024-05-16T06:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.031700", + "Timestamp": "2024-05-16T06:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.026700", + "Timestamp": "2024-05-16T06:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.901700", + "Timestamp": "2024-05-16T06:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166100", + "Timestamp": "2024-05-16T06:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162100", + "Timestamp": "2024-05-16T06:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-16T06:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.361000", + "Timestamp": "2024-05-16T06:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.384300", + "Timestamp": "2024-05-16T06:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.354300", + "Timestamp": "2024-05-16T06:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.254300", + "Timestamp": "2024-05-16T06:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.461300", + "Timestamp": "2024-05-16T06:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.456300", + "Timestamp": "2024-05-16T06:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.331300", + "Timestamp": "2024-05-16T06:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.166600", + "Timestamp": "2024-05-16T06:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.161600", + "Timestamp": "2024-05-16T06:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.036600", + "Timestamp": "2024-05-16T06:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123400", + "Timestamp": "2024-05-16T06:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163400", + "Timestamp": "2024-05-16T06:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063400", + "Timestamp": "2024-05-16T06:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m1.large", + "ProductDescription": "Windows", + "SpotPrice": "0.179900", + "Timestamp": "2024-05-16T06:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149800", + "Timestamp": "2024-05-16T06:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.189800", + "Timestamp": "2024-05-16T06:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089800", + "Timestamp": "2024-05-16T06:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.009900", + "Timestamp": "2024-05-16T06:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.004900", + "Timestamp": "2024-05-16T06:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.879900", + "Timestamp": "2024-05-16T06:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.990000", + "Timestamp": "2024-05-16T06:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.985000", + "Timestamp": "2024-05-16T06:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.860000", + "Timestamp": "2024-05-16T06:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.487500", + "Timestamp": "2024-05-16T06:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.457500", + "Timestamp": "2024-05-16T06:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.357500", + "Timestamp": "2024-05-16T06:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.647200", + "Timestamp": "2024-05-16T06:01:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.360000", + "Timestamp": "2024-05-16T06:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.355000", + "Timestamp": "2024-05-16T06:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.230000", + "Timestamp": "2024-05-16T06:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.155600", + "Timestamp": "2024-05-16T06:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.150600", + "Timestamp": "2024-05-16T06:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.025600", + "Timestamp": "2024-05-16T06:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.685800", + "Timestamp": "2024-05-16T06:01:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.680800", + "Timestamp": "2024-05-16T06:01:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.555800", + "Timestamp": "2024-05-16T06:01:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157700", + "Timestamp": "2024-05-16T06:01:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154000", + "Timestamp": "2024-05-16T06:01:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097700", + "Timestamp": "2024-05-16T06:01:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.435800", + "Timestamp": "2024-05-16T06:01:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.370200", + "Timestamp": "2024-05-16T06:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.365200", + "Timestamp": "2024-05-16T06:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.240200", + "Timestamp": "2024-05-16T06:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.956600", + "Timestamp": "2024-05-16T06:01:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.926600", + "Timestamp": "2024-05-16T06:01:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.826600", + "Timestamp": "2024-05-16T06:01:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-16T06:00:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128100", + "Timestamp": "2024-05-16T06:00:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028100", + "Timestamp": "2024-05-16T06:00:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.928900", + "Timestamp": "2024-05-16T06:00:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147900", + "Timestamp": "2024-05-16T06:00:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143900", + "Timestamp": "2024-05-16T06:00:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087900", + "Timestamp": "2024-05-16T06:00:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213900", + "Timestamp": "2024-05-16T05:47:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.827000", + "Timestamp": "2024-05-16T05:47:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.501600", + "Timestamp": "2024-05-16T05:47:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082200", + "Timestamp": "2024-05-16T05:47:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.053200", + "Timestamp": "2024-05-16T05:47:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022200", + "Timestamp": "2024-05-16T05:47:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.129500", + "Timestamp": "2024-05-16T05:47:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.099500", + "Timestamp": "2024-05-16T05:47:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.999500", + "Timestamp": "2024-05-16T05:47:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.113500", + "Timestamp": "2024-05-16T05:47:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.836600", + "Timestamp": "2024-05-16T05:47:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.709200", + "Timestamp": "2024-05-16T05:46:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.704200", + "Timestamp": "2024-05-16T05:46:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.579200", + "Timestamp": "2024-05-16T05:46:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.235000", + "Timestamp": "2024-05-16T05:46:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.981200", + "Timestamp": "2024-05-16T05:46:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.837800", + "Timestamp": "2024-05-16T05:46:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136400", + "Timestamp": "2024-05-16T05:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132700", + "Timestamp": "2024-05-16T05:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076400", + "Timestamp": "2024-05-16T05:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.267600", + "Timestamp": "2024-05-16T05:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.262600", + "Timestamp": "2024-05-16T05:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.137600", + "Timestamp": "2024-05-16T05:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.050400", + "Timestamp": "2024-05-16T05:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168100", + "Timestamp": "2024-05-16T05:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164400", + "Timestamp": "2024-05-16T05:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T05:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431100", + "Timestamp": "2024-05-16T05:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.211300", + "Timestamp": "2024-05-16T05:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064600", + "Timestamp": "2024-05-16T05:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004600", + "Timestamp": "2024-05-16T05:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004600", + "Timestamp": "2024-05-16T05:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.465700", + "Timestamp": "2024-05-16T05:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.460700", + "Timestamp": "2024-05-16T05:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.335700", + "Timestamp": "2024-05-16T05:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.572000", + "Timestamp": "2024-05-16T05:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.327900", + "Timestamp": "2024-05-16T05:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.322900", + "Timestamp": "2024-05-16T05:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.197900", + "Timestamp": "2024-05-16T05:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.007000", + "Timestamp": "2024-05-16T05:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.002000", + "Timestamp": "2024-05-16T05:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.877000", + "Timestamp": "2024-05-16T05:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.241800", + "Timestamp": "2024-05-16T05:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.683500", + "Timestamp": "2024-05-16T05:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.788000", + "Timestamp": "2024-05-16T05:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.408400", + "Timestamp": "2024-05-16T05:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.403400", + "Timestamp": "2024-05-16T05:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.278400", + "Timestamp": "2024-05-16T05:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.099400", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.094400", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.969400", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.368100", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.363100", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.238100", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.198300", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.704000", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111700", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051700", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.612500", + "Timestamp": "2024-05-16T05:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.607500", + "Timestamp": "2024-05-16T05:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.482500", + "Timestamp": "2024-05-16T05:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.000600", + "Timestamp": "2024-05-16T05:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.995600", + "Timestamp": "2024-05-16T05:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.870600", + "Timestamp": "2024-05-16T05:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.790000", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.785000", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.660000", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.888200", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.883200", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.758200", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.571900", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.566900", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.441900", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.061000", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.208300", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096900", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093200", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036900", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.169600", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.139600", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.039600", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099100", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042800", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.201100", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.196100", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.071100", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.443500", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.438500", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.313500", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.653400", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.648400", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.523400", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.343200", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.338200", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.213200", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.226500", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.221500", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.096500", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.361000", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.356000", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.231000", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.687100", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.454000", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.449000", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.324000", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.270300", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.190000", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.216700", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.211700", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.086700", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.727600", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.482700", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.477700", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.352700", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.896600", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.258400", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.253400", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128400", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.536500", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.531500", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.406500", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.852700", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.591100", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.586100", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.461100", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130400", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126400", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070400", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.694000", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.853000", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.848000", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.723000", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.803700", + "Timestamp": "2024-05-16T05:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.798700", + "Timestamp": "2024-05-16T05:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.673700", + "Timestamp": "2024-05-16T05:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.442800", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.782100", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114700", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.941100", + "Timestamp": "2024-05-16T05:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.758100", + "Timestamp": "2024-05-16T05:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.022000", + "Timestamp": "2024-05-16T05:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.484900", + "Timestamp": "2024-05-16T05:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.921100", + "Timestamp": "2024-05-16T05:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.938500", + "Timestamp": "2024-05-16T05:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.933500", + "Timestamp": "2024-05-16T05:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.808500", + "Timestamp": "2024-05-16T05:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.714100", + "Timestamp": "2024-05-16T05:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.007700", + "Timestamp": "2024-05-16T05:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.840500", + "Timestamp": "2024-05-16T05:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.108600", + "Timestamp": "2024-05-16T05:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.103600", + "Timestamp": "2024-05-16T05:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.978600", + "Timestamp": "2024-05-16T05:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.805400", + "Timestamp": "2024-05-16T05:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.800400", + "Timestamp": "2024-05-16T05:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.675400", + "Timestamp": "2024-05-16T05:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.557800", + "Timestamp": "2024-05-16T05:46:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.552800", + "Timestamp": "2024-05-16T05:46:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.427800", + "Timestamp": "2024-05-16T05:46:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.916300", + "Timestamp": "2024-05-16T05:46:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.366000", + "Timestamp": "2024-05-16T05:46:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.361000", + "Timestamp": "2024-05-16T05:46:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.236000", + "Timestamp": "2024-05-16T05:46:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.010500", + "Timestamp": "2024-05-16T05:46:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092400", + "Timestamp": "2024-05-16T05:46:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088700", + "Timestamp": "2024-05-16T05:46:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032400", + "Timestamp": "2024-05-16T05:46:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.708800", + "Timestamp": "2024-05-16T05:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.459200", + "Timestamp": "2024-05-16T05:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.454200", + "Timestamp": "2024-05-16T05:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.329200", + "Timestamp": "2024-05-16T05:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.669000", + "Timestamp": "2024-05-16T05:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.664000", + "Timestamp": "2024-05-16T05:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.539000", + "Timestamp": "2024-05-16T05:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "15.547000", + "Timestamp": "2024-05-16T05:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.489400", + "Timestamp": "2024-05-16T05:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.484400", + "Timestamp": "2024-05-16T05:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.359400", + "Timestamp": "2024-05-16T05:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113800", + "Timestamp": "2024-05-16T05:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.567300", + "Timestamp": "2024-05-16T05:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.562300", + "Timestamp": "2024-05-16T05:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.437300", + "Timestamp": "2024-05-16T05:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T05:46:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101100", + "Timestamp": "2024-05-16T05:46:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044800", + "Timestamp": "2024-05-16T05:46:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.560400", + "Timestamp": "2024-05-16T05:45:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.530400", + "Timestamp": "2024-05-16T05:45:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.430400", + "Timestamp": "2024-05-16T05:45:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.327900", + "Timestamp": "2024-05-16T05:45:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.752000", + "Timestamp": "2024-05-16T05:41:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.752000", + "Timestamp": "2024-05-16T05:41:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.064100", + "Timestamp": "2024-05-16T05:34:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.059100", + "Timestamp": "2024-05-16T05:34:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.934100", + "Timestamp": "2024-05-16T05:34:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.878100", + "Timestamp": "2024-05-16T05:34:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.878100", + "Timestamp": "2024-05-16T05:34:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t1.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.009800", + "Timestamp": "2024-05-16T05:33:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.698100", + "Timestamp": "2024-05-16T05:32:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.693100", + "Timestamp": "2024-05-16T05:32:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.568100", + "Timestamp": "2024-05-16T05:32:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324300", + "Timestamp": "2024-05-16T05:32:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319300", + "Timestamp": "2024-05-16T05:32:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194300", + "Timestamp": "2024-05-16T05:32:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278400", + "Timestamp": "2024-05-16T05:32:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273400", + "Timestamp": "2024-05-16T05:32:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148400", + "Timestamp": "2024-05-16T05:32:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.456500", + "Timestamp": "2024-05-16T05:32:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.421400", + "Timestamp": "2024-05-16T05:32:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.135200", + "Timestamp": "2024-05-16T05:32:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.130200", + "Timestamp": "2024-05-16T05:32:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.005200", + "Timestamp": "2024-05-16T05:32:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.170100", + "Timestamp": "2024-05-16T05:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.804200", + "Timestamp": "2024-05-16T05:31:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.799200", + "Timestamp": "2024-05-16T05:31:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.674200", + "Timestamp": "2024-05-16T05:31:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.913400", + "Timestamp": "2024-05-16T05:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m1.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087900", + "Timestamp": "2024-05-16T05:31:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m1.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.057900", + "Timestamp": "2024-05-16T05:31:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m1.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027900", + "Timestamp": "2024-05-16T05:31:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.099700", + "Timestamp": "2024-05-16T05:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.349200", + "Timestamp": "2024-05-16T05:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.344200", + "Timestamp": "2024-05-16T05:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.219200", + "Timestamp": "2024-05-16T05:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.413700", + "Timestamp": "2024-05-16T05:31:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.383700", + "Timestamp": "2024-05-16T05:31:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.283700", + "Timestamp": "2024-05-16T05:31:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.493600", + "Timestamp": "2024-05-16T05:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.488600", + "Timestamp": "2024-05-16T05:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.363600", + "Timestamp": "2024-05-16T05:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.548000", + "Timestamp": "2024-05-16T05:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.543000", + "Timestamp": "2024-05-16T05:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.418000", + "Timestamp": "2024-05-16T05:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.155400", + "Timestamp": "2024-05-16T05:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.078600", + "Timestamp": "2024-05-16T05:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.150400", + "Timestamp": "2024-05-16T05:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.073600", + "Timestamp": "2024-05-16T05:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.025400", + "Timestamp": "2024-05-16T05:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.948600", + "Timestamp": "2024-05-16T05:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.119100", + "Timestamp": "2024-05-16T05:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.317800", + "Timestamp": "2024-05-16T05:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.312800", + "Timestamp": "2024-05-16T05:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.187800", + "Timestamp": "2024-05-16T05:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.559300", + "Timestamp": "2024-05-16T05:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.554300", + "Timestamp": "2024-05-16T05:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.429300", + "Timestamp": "2024-05-16T05:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.616100", + "Timestamp": "2024-05-16T05:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.445600", + "Timestamp": "2024-05-16T05:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.504000", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.499000", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.374000", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.370200", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.044500", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.637500", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.632500", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.507500", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.047800", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.910200", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.905200", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.780200", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132700", + "Timestamp": "2024-05-16T05:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129000", + "Timestamp": "2024-05-16T05:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072700", + "Timestamp": "2024-05-16T05:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.368300", + "Timestamp": "2024-05-16T05:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.363300", + "Timestamp": "2024-05-16T05:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.238300", + "Timestamp": "2024-05-16T05:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.057100", + "Timestamp": "2024-05-16T05:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.052100", + "Timestamp": "2024-05-16T05:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.927100", + "Timestamp": "2024-05-16T05:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127600", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123600", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067600", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120800", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117100", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060800", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.752300", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.722300", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.622300", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.068900", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.586000", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.581000", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.456000", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.520200", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.626800", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.621800", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.496800", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.835100", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.830100", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.705100", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.485400", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114900", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042900", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.398100", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.368100", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.268100", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.082500", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156900", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153200", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096900", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.538500", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.533500", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.408500", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.884200", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.232500", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.433900", + "Timestamp": "2024-05-16T05:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.428900", + "Timestamp": "2024-05-16T05:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.303900", + "Timestamp": "2024-05-16T05:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.484800", + "Timestamp": "2024-05-16T05:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.885100", + "Timestamp": "2024-05-16T05:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.363800", + "Timestamp": "2024-05-16T05:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081200", + "Timestamp": "2024-05-16T05:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121200", + "Timestamp": "2024-05-16T05:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021200", + "Timestamp": "2024-05-16T05:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.306300", + "Timestamp": "2024-05-16T05:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.301300", + "Timestamp": "2024-05-16T05:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.176300", + "Timestamp": "2024-05-16T05:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144600", + "Timestamp": "2024-05-16T05:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135900", + "Timestamp": "2024-05-16T05:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140900", + "Timestamp": "2024-05-16T05:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132200", + "Timestamp": "2024-05-16T05:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084600", + "Timestamp": "2024-05-16T05:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075900", + "Timestamp": "2024-05-16T05:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.454200", + "Timestamp": "2024-05-16T05:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.169400", + "Timestamp": "2024-05-16T05:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184700", + "Timestamp": "2024-05-16T05:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180700", + "Timestamp": "2024-05-16T05:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124700", + "Timestamp": "2024-05-16T05:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.853600", + "Timestamp": "2024-05-16T05:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.019200", + "Timestamp": "2024-05-16T05:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.065900", + "Timestamp": "2024-05-16T05:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.574800", + "Timestamp": "2024-05-16T05:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.569800", + "Timestamp": "2024-05-16T05:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.444800", + "Timestamp": "2024-05-16T05:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172000", + "Timestamp": "2024-05-16T05:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168000", + "Timestamp": "2024-05-16T05:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-16T05:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.262200", + "Timestamp": "2024-05-16T05:31:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.257200", + "Timestamp": "2024-05-16T05:31:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.132200", + "Timestamp": "2024-05-16T05:31:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101000", + "Timestamp": "2024-05-16T05:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097300", + "Timestamp": "2024-05-16T05:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041000", + "Timestamp": "2024-05-16T05:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.963600", + "Timestamp": "2024-05-16T05:31:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090400", + "Timestamp": "2024-05-16T05:31:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086700", + "Timestamp": "2024-05-16T05:31:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030400", + "Timestamp": "2024-05-16T05:31:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.969400", + "Timestamp": "2024-05-16T05:31:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.305200", + "Timestamp": "2024-05-16T05:31:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.275200", + "Timestamp": "2024-05-16T05:31:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.175200", + "Timestamp": "2024-05-16T05:31:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.841100", + "Timestamp": "2024-05-16T05:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.805600", + "Timestamp": "2024-05-16T05:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.583500", + "Timestamp": "2024-05-16T05:31:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.578500", + "Timestamp": "2024-05-16T05:31:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.453500", + "Timestamp": "2024-05-16T05:31:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.666200", + "Timestamp": "2024-05-16T05:31:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.661200", + "Timestamp": "2024-05-16T05:31:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.536200", + "Timestamp": "2024-05-16T05:31:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021600", + "Timestamp": "2024-05-16T05:27:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.756200", + "Timestamp": "2024-05-16T05:26:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.756200", + "Timestamp": "2024-05-16T05:26:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.609800", + "Timestamp": "2024-05-16T05:20:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.609800", + "Timestamp": "2024-05-16T05:20:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.609800", + "Timestamp": "2024-05-16T05:20:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.335000", + "Timestamp": "2024-05-16T05:17:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.279100", + "Timestamp": "2024-05-16T05:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.274100", + "Timestamp": "2024-05-16T05:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.149100", + "Timestamp": "2024-05-16T05:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.426300", + "Timestamp": "2024-05-16T05:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.831500", + "Timestamp": "2024-05-16T05:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176600", + "Timestamp": "2024-05-16T05:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172900", + "Timestamp": "2024-05-16T05:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T05:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.882900", + "Timestamp": "2024-05-16T05:16:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.836700", + "Timestamp": "2024-05-16T05:16:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.333700", + "Timestamp": "2024-05-16T05:16:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.675300", + "Timestamp": "2024-05-16T05:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.670300", + "Timestamp": "2024-05-16T05:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.545300", + "Timestamp": "2024-05-16T05:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.459400", + "Timestamp": "2024-05-16T05:16:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.952900", + "Timestamp": "2024-05-16T05:16:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.044600", + "Timestamp": "2024-05-16T05:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.039600", + "Timestamp": "2024-05-16T05:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.914600", + "Timestamp": "2024-05-16T05:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.107700", + "Timestamp": "2024-05-16T05:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.964000", + "Timestamp": "2024-05-16T05:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.852800", + "Timestamp": "2024-05-16T05:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.205600", + "Timestamp": "2024-05-16T05:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.847800", + "Timestamp": "2024-05-16T05:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.200600", + "Timestamp": "2024-05-16T05:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.722800", + "Timestamp": "2024-05-16T05:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.075600", + "Timestamp": "2024-05-16T05:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.834900", + "Timestamp": "2024-05-16T05:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.966900", + "Timestamp": "2024-05-16T05:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.232300", + "Timestamp": "2024-05-16T05:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.227300", + "Timestamp": "2024-05-16T05:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.102300", + "Timestamp": "2024-05-16T05:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133700", + "Timestamp": "2024-05-16T05:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130000", + "Timestamp": "2024-05-16T05:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073700", + "Timestamp": "2024-05-16T05:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.024300", + "Timestamp": "2024-05-16T05:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.019300", + "Timestamp": "2024-05-16T05:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.894300", + "Timestamp": "2024-05-16T05:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.473700", + "Timestamp": "2024-05-16T05:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.247100", + "Timestamp": "2024-05-16T05:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.242100", + "Timestamp": "2024-05-16T05:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.117100", + "Timestamp": "2024-05-16T05:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.993700", + "Timestamp": "2024-05-16T05:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.963700", + "Timestamp": "2024-05-16T05:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.863700", + "Timestamp": "2024-05-16T05:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.730100", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.725100", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.600100", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.211700", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.409700", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.404700", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.279700", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.815100", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.481900", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.543200", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.703900", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.414900", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.409900", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.284900", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.325300", + "Timestamp": "2024-05-16T05:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.320300", + "Timestamp": "2024-05-16T05:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195300", + "Timestamp": "2024-05-16T05:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.257000", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.253300", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.197000", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.926100", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.593900", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.298100", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.588900", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.293100", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.463900", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.168100", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.638500", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.633500", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.508500", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.778200", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.748200", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.648200", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158700", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155000", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098700", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.944800", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200100", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196400", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140100", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.379900", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.374900", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.249900", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.561100", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.122800", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225800", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.675400", + "Timestamp": "2024-05-16T05:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.645400", + "Timestamp": "2024-05-16T05:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.545400", + "Timestamp": "2024-05-16T05:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.514700", + "Timestamp": "2024-05-16T05:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.509700", + "Timestamp": "2024-05-16T05:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.384700", + "Timestamp": "2024-05-16T05:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.853500", + "Timestamp": "2024-05-16T05:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125600", + "Timestamp": "2024-05-16T05:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121600", + "Timestamp": "2024-05-16T05:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065600", + "Timestamp": "2024-05-16T05:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.427500", + "Timestamp": "2024-05-16T05:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.422500", + "Timestamp": "2024-05-16T05:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.297500", + "Timestamp": "2024-05-16T05:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T05:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103900", + "Timestamp": "2024-05-16T05:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047600", + "Timestamp": "2024-05-16T05:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124100", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.400100", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.975400", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.970400", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.845400", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.994800", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.989800", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.864800", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.166300", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.161300", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.036300", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.395000", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.390000", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.265000", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119000", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115300", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059000", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.774500", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.769500", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.644500", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.839600", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.226600", + "Timestamp": "2024-05-16T05:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.839000", + "Timestamp": "2024-05-16T05:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.161300", + "Timestamp": "2024-05-16T05:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "a1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077100", + "Timestamp": "2024-05-16T05:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "a1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073400", + "Timestamp": "2024-05-16T05:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "a1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017100", + "Timestamp": "2024-05-16T05:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T05:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.701400", + "Timestamp": "2024-05-16T05:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.696400", + "Timestamp": "2024-05-16T05:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.571400", + "Timestamp": "2024-05-16T05:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.405100", + "Timestamp": "2024-05-16T05:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.375100", + "Timestamp": "2024-05-16T05:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.275100", + "Timestamp": "2024-05-16T05:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.860900", + "Timestamp": "2024-05-16T05:16:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.212800", + "Timestamp": "2024-05-16T05:16:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.207800", + "Timestamp": "2024-05-16T05:16:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.082800", + "Timestamp": "2024-05-16T05:16:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117900", + "Timestamp": "2024-05-16T05:16:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113900", + "Timestamp": "2024-05-16T05:16:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057900", + "Timestamp": "2024-05-16T05:16:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.830100", + "Timestamp": "2024-05-16T05:16:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.825100", + "Timestamp": "2024-05-16T05:16:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.700100", + "Timestamp": "2024-05-16T05:16:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.696200", + "Timestamp": "2024-05-16T05:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T05:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T05:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050500", + "Timestamp": "2024-05-16T05:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.829200", + "Timestamp": "2024-05-16T05:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.824200", + "Timestamp": "2024-05-16T05:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.699200", + "Timestamp": "2024-05-16T05:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.985400", + "Timestamp": "2024-05-16T05:16:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.980400", + "Timestamp": "2024-05-16T05:16:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.855400", + "Timestamp": "2024-05-16T05:16:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135800", + "Timestamp": "2024-05-16T05:16:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131800", + "Timestamp": "2024-05-16T05:16:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075800", + "Timestamp": "2024-05-16T05:16:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-16T05:15:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T05:15:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054500", + "Timestamp": "2024-05-16T05:15:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.706000", + "Timestamp": "2024-05-16T05:04:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.706000", + "Timestamp": "2024-05-16T05:04:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.626000", + "Timestamp": "2024-05-16T05:02:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.621000", + "Timestamp": "2024-05-16T05:02:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.496000", + "Timestamp": "2024-05-16T05:02:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T05:02:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.531700", + "Timestamp": "2024-05-16T05:02:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.526700", + "Timestamp": "2024-05-16T05:02:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.401700", + "Timestamp": "2024-05-16T05:02:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.871700", + "Timestamp": "2024-05-16T05:02:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.929900", + "Timestamp": "2024-05-16T05:02:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.444000", + "Timestamp": "2024-05-16T05:01:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.484600", + "Timestamp": "2024-05-16T05:01:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.850600", + "Timestamp": "2024-05-16T05:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.669300", + "Timestamp": "2024-05-16T05:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.639300", + "Timestamp": "2024-05-16T05:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.539300", + "Timestamp": "2024-05-16T05:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126000", + "Timestamp": "2024-05-16T05:01:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122300", + "Timestamp": "2024-05-16T05:01:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066000", + "Timestamp": "2024-05-16T05:01:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.121800", + "Timestamp": "2024-05-16T05:01:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.141600", + "Timestamp": "2024-05-16T05:01:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.136600", + "Timestamp": "2024-05-16T05:01:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.011600", + "Timestamp": "2024-05-16T05:01:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.134400", + "Timestamp": "2024-05-16T05:01:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.828800", + "Timestamp": "2024-05-16T05:01:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.428800", + "Timestamp": "2024-05-16T05:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.923400", + "Timestamp": "2024-05-16T05:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.918400", + "Timestamp": "2024-05-16T05:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.793400", + "Timestamp": "2024-05-16T05:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.496700", + "Timestamp": "2024-05-16T05:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.491700", + "Timestamp": "2024-05-16T05:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.366700", + "Timestamp": "2024-05-16T05:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.653800", + "Timestamp": "2024-05-16T05:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.648800", + "Timestamp": "2024-05-16T05:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.523800", + "Timestamp": "2024-05-16T05:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.290000", + "Timestamp": "2024-05-16T05:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.285000", + "Timestamp": "2024-05-16T05:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.160000", + "Timestamp": "2024-05-16T05:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.543900", + "Timestamp": "2024-05-16T05:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.538900", + "Timestamp": "2024-05-16T05:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.413900", + "Timestamp": "2024-05-16T05:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.734000", + "Timestamp": "2024-05-16T05:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.729000", + "Timestamp": "2024-05-16T05:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.604000", + "Timestamp": "2024-05-16T05:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.915200", + "Timestamp": "2024-05-16T05:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.453300", + "Timestamp": "2024-05-16T05:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.448300", + "Timestamp": "2024-05-16T05:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.323300", + "Timestamp": "2024-05-16T05:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.449600", + "Timestamp": "2024-05-16T05:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.444600", + "Timestamp": "2024-05-16T05:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.319600", + "Timestamp": "2024-05-16T05:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.470100", + "Timestamp": "2024-05-16T05:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.426600", + "Timestamp": "2024-05-16T05:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.704100", + "Timestamp": "2024-05-16T05:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.361000", + "Timestamp": "2024-05-16T05:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.356000", + "Timestamp": "2024-05-16T05:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.231000", + "Timestamp": "2024-05-16T05:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.005300", + "Timestamp": "2024-05-16T05:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.000300", + "Timestamp": "2024-05-16T05:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.875300", + "Timestamp": "2024-05-16T05:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.957400", + "Timestamp": "2024-05-16T05:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.794000", + "Timestamp": "2024-05-16T05:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.333400", + "Timestamp": "2024-05-16T05:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.373400", + "Timestamp": "2024-05-16T05:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.273400", + "Timestamp": "2024-05-16T05:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.384400", + "Timestamp": "2024-05-16T05:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.673700", + "Timestamp": "2024-05-16T05:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.668700", + "Timestamp": "2024-05-16T05:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.543700", + "Timestamp": "2024-05-16T05:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.547600", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.943000", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.938000", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.813000", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.320700", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.315700", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.190700", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164900", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161200", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437500", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.196600", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.662800", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.657800", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.532800", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.993200", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052600", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.369900", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.364900", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.239900", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219800", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.195400", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.190400", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.065400", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278000", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.248000", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148000", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.625400", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.595400", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.495400", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088900", + "Timestamp": "2024-05-16T05:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128900", + "Timestamp": "2024-05-16T05:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028900", + "Timestamp": "2024-05-16T05:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.698000", + "Timestamp": "2024-05-16T05:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.693000", + "Timestamp": "2024-05-16T05:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.568000", + "Timestamp": "2024-05-16T05:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "a1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090800", + "Timestamp": "2024-05-16T05:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "a1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087100", + "Timestamp": "2024-05-16T05:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "a1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030800", + "Timestamp": "2024-05-16T05:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122800", + "Timestamp": "2024-05-16T05:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119100", + "Timestamp": "2024-05-16T05:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062800", + "Timestamp": "2024-05-16T05:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.234500", + "Timestamp": "2024-05-16T05:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100100", + "Timestamp": "2024-05-16T05:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096400", + "Timestamp": "2024-05-16T05:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040100", + "Timestamp": "2024-05-16T05:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.955200", + "Timestamp": "2024-05-16T05:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.340100", + "Timestamp": "2024-05-16T05:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.564700", + "Timestamp": "2024-05-16T05:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.790000", + "Timestamp": "2024-05-16T05:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.260400", + "Timestamp": "2024-05-16T05:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.255400", + "Timestamp": "2024-05-16T05:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.130400", + "Timestamp": "2024-05-16T05:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.500400", + "Timestamp": "2024-05-16T05:01:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.495400", + "Timestamp": "2024-05-16T05:01:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.370400", + "Timestamp": "2024-05-16T05:01:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096800", + "Timestamp": "2024-05-16T05:01:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093100", + "Timestamp": "2024-05-16T05:01:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036800", + "Timestamp": "2024-05-16T05:01:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.913800", + "Timestamp": "2024-05-16T05:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.244900", + "Timestamp": "2024-05-16T05:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.239900", + "Timestamp": "2024-05-16T05:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.114900", + "Timestamp": "2024-05-16T05:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.415300", + "Timestamp": "2024-05-16T05:01:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.346700", + "Timestamp": "2024-05-16T05:01:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.341700", + "Timestamp": "2024-05-16T05:01:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.216700", + "Timestamp": "2024-05-16T05:01:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.804300", + "Timestamp": "2024-05-16T05:01:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.209000", + "Timestamp": "2024-05-16T05:01:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.205000", + "Timestamp": "2024-05-16T05:01:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149000", + "Timestamp": "2024-05-16T05:01:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.707800", + "Timestamp": "2024-05-16T05:01:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.702800", + "Timestamp": "2024-05-16T05:01:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.577800", + "Timestamp": "2024-05-16T05:01:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.906700", + "Timestamp": "2024-05-16T05:01:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.901700", + "Timestamp": "2024-05-16T05:01:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.776700", + "Timestamp": "2024-05-16T05:01:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.673700", + "Timestamp": "2024-05-16T05:01:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.643700", + "Timestamp": "2024-05-16T05:01:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.543700", + "Timestamp": "2024-05-16T05:01:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.304900", + "Timestamp": "2024-05-16T04:50:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.304900", + "Timestamp": "2024-05-16T04:50:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.866400", + "Timestamp": "2024-05-16T04:46:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125800", + "Timestamp": "2024-05-16T04:46:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122100", + "Timestamp": "2024-05-16T04:46:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065800", + "Timestamp": "2024-05-16T04:46:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.431500", + "Timestamp": "2024-05-16T04:46:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.427500", + "Timestamp": "2024-05-16T04:46:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.371500", + "Timestamp": "2024-05-16T04:46:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311400", + "Timestamp": "2024-05-16T04:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.306400", + "Timestamp": "2024-05-16T04:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181400", + "Timestamp": "2024-05-16T04:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.675800", + "Timestamp": "2024-05-16T04:46:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.708300", + "Timestamp": "2024-05-16T04:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.703300", + "Timestamp": "2024-05-16T04:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.578300", + "Timestamp": "2024-05-16T04:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.479700", + "Timestamp": "2024-05-16T04:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.474700", + "Timestamp": "2024-05-16T04:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.349700", + "Timestamp": "2024-05-16T04:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084100", + "Timestamp": "2024-05-16T04:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.055100", + "Timestamp": "2024-05-16T04:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024100", + "Timestamp": "2024-05-16T04:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.245500", + "Timestamp": "2024-05-16T04:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.240500", + "Timestamp": "2024-05-16T04:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.115500", + "Timestamp": "2024-05-16T04:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.820000", + "Timestamp": "2024-05-16T04:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.815000", + "Timestamp": "2024-05-16T04:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.690000", + "Timestamp": "2024-05-16T04:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.528700", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124900", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121200", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064900", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.962700", + "Timestamp": "2024-05-16T04:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.957700", + "Timestamp": "2024-05-16T04:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.832700", + "Timestamp": "2024-05-16T04:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.589500", + "Timestamp": "2024-05-16T04:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.678600", + "Timestamp": "2024-05-16T04:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.673600", + "Timestamp": "2024-05-16T04:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.548600", + "Timestamp": "2024-05-16T04:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.967200", + "Timestamp": "2024-05-16T04:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.114900", + "Timestamp": "2024-05-16T04:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.109900", + "Timestamp": "2024-05-16T04:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.984900", + "Timestamp": "2024-05-16T04:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216600", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223900", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.648300", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.643300", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.518300", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.094700", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.918400", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.475500", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.470500", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.345500", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.578200", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.573200", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.448200", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.445500", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.155200", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.862300", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089400", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085700", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029400", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130600", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074300", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136100", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132400", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076100", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.530100", + "Timestamp": "2024-05-16T04:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.525100", + "Timestamp": "2024-05-16T04:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.400100", + "Timestamp": "2024-05-16T04:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.521000", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.675500", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.670500", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.545500", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.963600", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.933600", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.833600", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072500", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012500", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.572900", + "Timestamp": "2024-05-16T04:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.648900", + "Timestamp": "2024-05-16T04:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.618900", + "Timestamp": "2024-05-16T04:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.518900", + "Timestamp": "2024-05-16T04:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.445500", + "Timestamp": "2024-05-16T04:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.124200", + "Timestamp": "2024-05-16T04:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.440500", + "Timestamp": "2024-05-16T04:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.119200", + "Timestamp": "2024-05-16T04:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.315500", + "Timestamp": "2024-05-16T04:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.994200", + "Timestamp": "2024-05-16T04:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.136700", + "Timestamp": "2024-05-16T04:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.349700", + "Timestamp": "2024-05-16T04:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.425500", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.420500", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.295500", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.427000", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.199900", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.195900", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139900", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.438000", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.433000", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.308000", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.269800", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.264800", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.139800", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.955600", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.950600", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.825600", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.879200", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.874200", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.749200", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115600", + "Timestamp": "2024-05-16T04:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.007300", + "Timestamp": "2024-05-16T04:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.002300", + "Timestamp": "2024-05-16T04:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.877300", + "Timestamp": "2024-05-16T04:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.750800", + "Timestamp": "2024-05-16T04:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.745800", + "Timestamp": "2024-05-16T04:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.620800", + "Timestamp": "2024-05-16T04:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.231700", + "Timestamp": "2024-05-16T04:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.271700", + "Timestamp": "2024-05-16T04:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171700", + "Timestamp": "2024-05-16T04:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.large", + "ProductDescription": "Windows", + "SpotPrice": "0.138100", + "Timestamp": "2024-05-16T04:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.899500", + "Timestamp": "2024-05-16T04:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.894500", + "Timestamp": "2024-05-16T04:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.769500", + "Timestamp": "2024-05-16T04:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330600", + "Timestamp": "2024-05-16T04:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325600", + "Timestamp": "2024-05-16T04:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200600", + "Timestamp": "2024-05-16T04:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.940200", + "Timestamp": "2024-05-16T04:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.442600", + "Timestamp": "2024-05-16T04:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.371900", + "Timestamp": "2024-05-16T04:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.545900", + "Timestamp": "2024-05-16T04:46:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.540900", + "Timestamp": "2024-05-16T04:46:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.415900", + "Timestamp": "2024-05-16T04:46:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.039200", + "Timestamp": "2024-05-16T04:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.009200", + "Timestamp": "2024-05-16T04:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.909200", + "Timestamp": "2024-05-16T04:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.905300", + "Timestamp": "2024-05-16T04:46:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136200", + "Timestamp": "2024-05-16T04:46:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132500", + "Timestamp": "2024-05-16T04:46:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076200", + "Timestamp": "2024-05-16T04:46:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.418500", + "Timestamp": "2024-05-16T04:46:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.413500", + "Timestamp": "2024-05-16T04:46:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.288500", + "Timestamp": "2024-05-16T04:46:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.405400", + "Timestamp": "2024-05-16T04:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.375400", + "Timestamp": "2024-05-16T04:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.275400", + "Timestamp": "2024-05-16T04:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.572100", + "Timestamp": "2024-05-16T04:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.567100", + "Timestamp": "2024-05-16T04:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.442100", + "Timestamp": "2024-05-16T04:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.416000", + "Timestamp": "2024-05-16T04:46:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.411000", + "Timestamp": "2024-05-16T04:46:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.286000", + "Timestamp": "2024-05-16T04:46:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.855600", + "Timestamp": "2024-05-16T04:46:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130500", + "Timestamp": "2024-05-16T04:46:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126800", + "Timestamp": "2024-05-16T04:46:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070500", + "Timestamp": "2024-05-16T04:46:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.260900", + "Timestamp": "2024-05-16T04:46:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.255900", + "Timestamp": "2024-05-16T04:46:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.130900", + "Timestamp": "2024-05-16T04:46:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.838000", + "Timestamp": "2024-05-16T04:46:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114200", + "Timestamp": "2024-05-16T04:45:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154200", + "Timestamp": "2024-05-16T04:45:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054200", + "Timestamp": "2024-05-16T04:45:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.564500", + "Timestamp": "2024-05-16T04:32:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.577300", + "Timestamp": "2024-05-16T04:32:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.572300", + "Timestamp": "2024-05-16T04:32:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.447300", + "Timestamp": "2024-05-16T04:32:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.457600", + "Timestamp": "2024-05-16T04:32:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.322200", + "Timestamp": "2024-05-16T04:32:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.317200", + "Timestamp": "2024-05-16T04:32:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.192200", + "Timestamp": "2024-05-16T04:32:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.332300", + "Timestamp": "2024-05-16T04:32:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.119200", + "Timestamp": "2024-05-16T04:32:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229900", + "Timestamp": "2024-05-16T04:31:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.379700", + "Timestamp": "2024-05-16T04:31:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.305500", + "Timestamp": "2024-05-16T04:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.300500", + "Timestamp": "2024-05-16T04:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.175500", + "Timestamp": "2024-05-16T04:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.103100", + "Timestamp": "2024-05-16T04:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.977000", + "Timestamp": "2024-05-16T04:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.141800", + "Timestamp": "2024-05-16T04:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.989200", + "Timestamp": "2024-05-16T04:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.984200", + "Timestamp": "2024-05-16T04:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.859200", + "Timestamp": "2024-05-16T04:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.867500", + "Timestamp": "2024-05-16T04:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.930500", + "Timestamp": "2024-05-16T04:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.276000", + "Timestamp": "2024-05-16T04:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "a1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.271000", + "Timestamp": "2024-05-16T04:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146000", + "Timestamp": "2024-05-16T04:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.120500", + "Timestamp": "2024-05-16T04:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.115500", + "Timestamp": "2024-05-16T04:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.990500", + "Timestamp": "2024-05-16T04:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.946900", + "Timestamp": "2024-05-16T04:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T04:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T04:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.420100", + "Timestamp": "2024-05-16T04:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423500", + "Timestamp": "2024-05-16T04:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.323200", + "Timestamp": "2024-05-16T04:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-16T04:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148600", + "Timestamp": "2024-05-16T04:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048600", + "Timestamp": "2024-05-16T04:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.848900", + "Timestamp": "2024-05-16T04:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.843900", + "Timestamp": "2024-05-16T04:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.718900", + "Timestamp": "2024-05-16T04:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.293500", + "Timestamp": "2024-05-16T04:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.288500", + "Timestamp": "2024-05-16T04:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.163500", + "Timestamp": "2024-05-16T04:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.154000", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.149000", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.024000", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.181300", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177600", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121300", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.288800", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.283800", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158800", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.483100", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.478100", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.353100", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.088900", + "Timestamp": "2024-05-16T04:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.098200", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104300", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048000", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.854700", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.849700", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.724700", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.786000", + "Timestamp": "2024-05-16T04:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.781000", + "Timestamp": "2024-05-16T04:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.656000", + "Timestamp": "2024-05-16T04:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.695600", + "Timestamp": "2024-05-16T04:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.690600", + "Timestamp": "2024-05-16T04:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.565600", + "Timestamp": "2024-05-16T04:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.885300", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.053000", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.048000", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.923000", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.526100", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.621200", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.388600", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.383600", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.258600", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.071700", + "Timestamp": "2024-05-16T04:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.602500", + "Timestamp": "2024-05-16T04:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.714600", + "Timestamp": "2024-05-16T04:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.709600", + "Timestamp": "2024-05-16T04:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.584600", + "Timestamp": "2024-05-16T04:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.200300", + "Timestamp": "2024-05-16T04:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.893600", + "Timestamp": "2024-05-16T04:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.820700", + "Timestamp": "2024-05-16T04:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.815700", + "Timestamp": "2024-05-16T04:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.690700", + "Timestamp": "2024-05-16T04:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.247900", + "Timestamp": "2024-05-16T04:31:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.210100", + "Timestamp": "2024-05-16T04:31:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.206100", + "Timestamp": "2024-05-16T04:31:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150100", + "Timestamp": "2024-05-16T04:31:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.025300", + "Timestamp": "2024-05-16T04:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.020300", + "Timestamp": "2024-05-16T04:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.895300", + "Timestamp": "2024-05-16T04:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.782700", + "Timestamp": "2024-05-16T04:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.777700", + "Timestamp": "2024-05-16T04:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.652700", + "Timestamp": "2024-05-16T04:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.769400", + "Timestamp": "2024-05-16T04:31:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.739400", + "Timestamp": "2024-05-16T04:31:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.639400", + "Timestamp": "2024-05-16T04:31:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.044200", + "Timestamp": "2024-05-16T04:17:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T04:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.503000", + "Timestamp": "2024-05-16T04:17:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.498000", + "Timestamp": "2024-05-16T04:17:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.373000", + "Timestamp": "2024-05-16T04:17:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.208000", + "Timestamp": "2024-05-16T04:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.203000", + "Timestamp": "2024-05-16T04:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.078000", + "Timestamp": "2024-05-16T04:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.829500", + "Timestamp": "2024-05-16T04:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.824500", + "Timestamp": "2024-05-16T04:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.699500", + "Timestamp": "2024-05-16T04:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.360600", + "Timestamp": "2024-05-16T04:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.962800", + "Timestamp": "2024-05-16T04:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.957800", + "Timestamp": "2024-05-16T04:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.832800", + "Timestamp": "2024-05-16T04:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.451400", + "Timestamp": "2024-05-16T04:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.302900", + "Timestamp": "2024-05-16T04:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.297900", + "Timestamp": "2024-05-16T04:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.172900", + "Timestamp": "2024-05-16T04:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235500", + "Timestamp": "2024-05-16T04:16:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.122800", + "Timestamp": "2024-05-16T04:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.117800", + "Timestamp": "2024-05-16T04:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.992800", + "Timestamp": "2024-05-16T04:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.842500", + "Timestamp": "2024-05-16T04:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.199100", + "Timestamp": "2024-05-16T04:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.194100", + "Timestamp": "2024-05-16T04:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.069100", + "Timestamp": "2024-05-16T04:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T04:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130600", + "Timestamp": "2024-05-16T04:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074300", + "Timestamp": "2024-05-16T04:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.077700", + "Timestamp": "2024-05-16T04:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.875600", + "Timestamp": "2024-05-16T04:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.923200", + "Timestamp": "2024-05-16T04:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.918200", + "Timestamp": "2024-05-16T04:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.793200", + "Timestamp": "2024-05-16T04:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.102300", + "Timestamp": "2024-05-16T04:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.097300", + "Timestamp": "2024-05-16T04:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.972300", + "Timestamp": "2024-05-16T04:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.604100", + "Timestamp": "2024-05-16T04:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.599100", + "Timestamp": "2024-05-16T04:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.474100", + "Timestamp": "2024-05-16T04:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.763800", + "Timestamp": "2024-05-16T04:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.579300", + "Timestamp": "2024-05-16T04:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.574300", + "Timestamp": "2024-05-16T04:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.449300", + "Timestamp": "2024-05-16T04:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.614800", + "Timestamp": "2024-05-16T04:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.188700", + "Timestamp": "2024-05-16T04:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168200", + "Timestamp": "2024-05-16T04:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164500", + "Timestamp": "2024-05-16T04:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T04:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.395400", + "Timestamp": "2024-05-16T04:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.390400", + "Timestamp": "2024-05-16T04:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.265400", + "Timestamp": "2024-05-16T04:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.808000", + "Timestamp": "2024-05-16T04:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.867900", + "Timestamp": "2024-05-16T04:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170400", + "Timestamp": "2024-05-16T04:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166400", + "Timestamp": "2024-05-16T04:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110400", + "Timestamp": "2024-05-16T04:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.001100", + "Timestamp": "2024-05-16T04:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.996100", + "Timestamp": "2024-05-16T04:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.871100", + "Timestamp": "2024-05-16T04:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.231200", + "Timestamp": "2024-05-16T04:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.226200", + "Timestamp": "2024-05-16T04:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.101200", + "Timestamp": "2024-05-16T04:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.827300", + "Timestamp": "2024-05-16T04:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.349100", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.344100", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.219100", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.057000", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112900", + "Timestamp": "2024-05-16T04:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.535300", + "Timestamp": "2024-05-16T04:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.530300", + "Timestamp": "2024-05-16T04:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.405300", + "Timestamp": "2024-05-16T04:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.899100", + "Timestamp": "2024-05-16T04:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.869100", + "Timestamp": "2024-05-16T04:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.769100", + "Timestamp": "2024-05-16T04:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.798300", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.122400", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122500", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118500", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062500", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.417300", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.387300", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.287300", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.672900", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.739800", + "Timestamp": "2024-05-16T04:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.734800", + "Timestamp": "2024-05-16T04:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.609800", + "Timestamp": "2024-05-16T04:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.202600", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.219700", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.235700", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198900", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.216000", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232000", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142600", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159700", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175700", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.427200", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.422200", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.297200", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.914600", + "Timestamp": "2024-05-16T04:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.909600", + "Timestamp": "2024-05-16T04:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.784600", + "Timestamp": "2024-05-16T04:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.742200", + "Timestamp": "2024-05-16T04:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.246100", + "Timestamp": "2024-05-16T04:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.241100", + "Timestamp": "2024-05-16T04:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.116100", + "Timestamp": "2024-05-16T04:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.824400", + "Timestamp": "2024-05-16T04:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.261300", + "Timestamp": "2024-05-16T04:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.101100", + "Timestamp": "2024-05-16T04:16:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.071100", + "Timestamp": "2024-05-16T04:16:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.971100", + "Timestamp": "2024-05-16T04:16:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.920900", + "Timestamp": "2024-05-16T04:16:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.350600", + "Timestamp": "2024-05-16T04:16:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.257900", + "Timestamp": "2024-05-16T04:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.252900", + "Timestamp": "2024-05-16T04:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127900", + "Timestamp": "2024-05-16T04:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.003000", + "Timestamp": "2024-05-16T04:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.973000", + "Timestamp": "2024-05-16T04:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.873000", + "Timestamp": "2024-05-16T04:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.729400", + "Timestamp": "2024-05-16T04:16:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.595300", + "Timestamp": "2024-05-16T04:15:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.590300", + "Timestamp": "2024-05-16T04:15:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.465300", + "Timestamp": "2024-05-16T04:15:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.034000", + "Timestamp": "2024-05-16T04:15:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.288000", + "Timestamp": "2024-05-16T04:15:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.288000", + "Timestamp": "2024-05-16T04:15:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.541700", + "Timestamp": "2024-05-16T04:02:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070300", + "Timestamp": "2024-05-16T04:02:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040300", + "Timestamp": "2024-05-16T04:02:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010300", + "Timestamp": "2024-05-16T04:02:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.486000", + "Timestamp": "2024-05-16T04:02:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.481000", + "Timestamp": "2024-05-16T04:02:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.356000", + "Timestamp": "2024-05-16T04:02:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.191400", + "Timestamp": "2024-05-16T04:02:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.668200", + "Timestamp": "2024-05-16T04:01:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.481100", + "Timestamp": "2024-05-16T04:01:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.163600", + "Timestamp": "2024-05-16T04:01:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.550100", + "Timestamp": "2024-05-16T04:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.193700", + "Timestamp": "2024-05-16T04:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.513600", + "Timestamp": "2024-05-16T04:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.508600", + "Timestamp": "2024-05-16T04:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.383600", + "Timestamp": "2024-05-16T04:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.750600", + "Timestamp": "2024-05-16T04:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.685900", + "Timestamp": "2024-05-16T04:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.680900", + "Timestamp": "2024-05-16T04:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.555900", + "Timestamp": "2024-05-16T04:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.819600", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.814600", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.689600", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.853100", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.745400", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.740400", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.615400", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.868100", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.863100", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.738100", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.940400", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.935400", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.810400", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.813100", + "Timestamp": "2024-05-16T04:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.808100", + "Timestamp": "2024-05-16T04:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.683100", + "Timestamp": "2024-05-16T04:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.484400", + "Timestamp": "2024-05-16T04:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.479400", + "Timestamp": "2024-05-16T04:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.354400", + "Timestamp": "2024-05-16T04:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.870000", + "Timestamp": "2024-05-16T04:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.865000", + "Timestamp": "2024-05-16T04:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.740000", + "Timestamp": "2024-05-16T04:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.171900", + "Timestamp": "2024-05-16T04:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.166900", + "Timestamp": "2024-05-16T04:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.041900", + "Timestamp": "2024-05-16T04:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.772700", + "Timestamp": "2024-05-16T04:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.767700", + "Timestamp": "2024-05-16T04:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.642700", + "Timestamp": "2024-05-16T04:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.906300", + "Timestamp": "2024-05-16T04:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.098300", + "Timestamp": "2024-05-16T04:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.559900", + "Timestamp": "2024-05-16T04:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.554900", + "Timestamp": "2024-05-16T04:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.429900", + "Timestamp": "2024-05-16T04:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122800", + "Timestamp": "2024-05-16T04:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119100", + "Timestamp": "2024-05-16T04:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062800", + "Timestamp": "2024-05-16T04:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.267900", + "Timestamp": "2024-05-16T04:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119200", + "Timestamp": "2024-05-16T04:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.428700", + "Timestamp": "2024-05-16T04:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113200", + "Timestamp": "2024-05-16T04:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.320200", + "Timestamp": "2024-05-16T04:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.315200", + "Timestamp": "2024-05-16T04:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190200", + "Timestamp": "2024-05-16T04:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.984000", + "Timestamp": "2024-05-16T04:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.239700", + "Timestamp": "2024-05-16T04:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.242600", + "Timestamp": "2024-05-16T04:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.730100", + "Timestamp": "2024-05-16T04:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099800", + "Timestamp": "2024-05-16T04:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096100", + "Timestamp": "2024-05-16T04:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039800", + "Timestamp": "2024-05-16T04:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.389900", + "Timestamp": "2024-05-16T04:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.384900", + "Timestamp": "2024-05-16T04:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.259900", + "Timestamp": "2024-05-16T04:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.361400", + "Timestamp": "2024-05-16T04:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.356400", + "Timestamp": "2024-05-16T04:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.231400", + "Timestamp": "2024-05-16T04:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.854000", + "Timestamp": "2024-05-16T04:01:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.824000", + "Timestamp": "2024-05-16T04:01:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.724000", + "Timestamp": "2024-05-16T04:01:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.688200", + "Timestamp": "2024-05-16T04:01:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.683200", + "Timestamp": "2024-05-16T04:01:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.558200", + "Timestamp": "2024-05-16T04:01:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107000", + "Timestamp": "2024-05-16T03:47:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115700", + "Timestamp": "2024-05-16T03:46:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-16T03:46:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055700", + "Timestamp": "2024-05-16T03:46:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.897000", + "Timestamp": "2024-05-16T03:46:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.892000", + "Timestamp": "2024-05-16T03:46:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.767000", + "Timestamp": "2024-05-16T03:46:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.361300", + "Timestamp": "2024-05-16T03:46:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.974000", + "Timestamp": "2024-05-16T03:46:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.386900", + "Timestamp": "2024-05-16T03:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.381900", + "Timestamp": "2024-05-16T03:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.256900", + "Timestamp": "2024-05-16T03:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110900", + "Timestamp": "2024-05-16T03:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-16T03:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050900", + "Timestamp": "2024-05-16T03:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.580200", + "Timestamp": "2024-05-16T03:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.658700", + "Timestamp": "2024-05-16T03:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.575200", + "Timestamp": "2024-05-16T03:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.653700", + "Timestamp": "2024-05-16T03:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.450200", + "Timestamp": "2024-05-16T03:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.528700", + "Timestamp": "2024-05-16T03:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.038700", + "Timestamp": "2024-05-16T03:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.639300", + "Timestamp": "2024-05-16T03:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.634300", + "Timestamp": "2024-05-16T03:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.509300", + "Timestamp": "2024-05-16T03:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.428400", + "Timestamp": "2024-05-16T03:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.035100", + "Timestamp": "2024-05-16T03:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.451300", + "Timestamp": "2024-05-16T03:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.446300", + "Timestamp": "2024-05-16T03:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.321300", + "Timestamp": "2024-05-16T03:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.952100", + "Timestamp": "2024-05-16T03:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.395800", + "Timestamp": "2024-05-16T03:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.390800", + "Timestamp": "2024-05-16T03:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.265800", + "Timestamp": "2024-05-16T03:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.425800", + "Timestamp": "2024-05-16T03:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.395800", + "Timestamp": "2024-05-16T03:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.295800", + "Timestamp": "2024-05-16T03:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.028900", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.023900", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.898900", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.075700", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.070700", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.945700", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.966000", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.568800", + "Timestamp": "2024-05-16T03:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.563800", + "Timestamp": "2024-05-16T03:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.438800", + "Timestamp": "2024-05-16T03:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159000", + "Timestamp": "2024-05-16T03:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155300", + "Timestamp": "2024-05-16T03:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099000", + "Timestamp": "2024-05-16T03:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.115900", + "Timestamp": "2024-05-16T03:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.110900", + "Timestamp": "2024-05-16T03:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.985900", + "Timestamp": "2024-05-16T03:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.348900", + "Timestamp": "2024-05-16T03:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343900", + "Timestamp": "2024-05-16T03:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.218900", + "Timestamp": "2024-05-16T03:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.227800", + "Timestamp": "2024-05-16T03:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.732900", + "Timestamp": "2024-05-16T03:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.790100", + "Timestamp": "2024-05-16T03:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.785100", + "Timestamp": "2024-05-16T03:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.660100", + "Timestamp": "2024-05-16T03:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.420300", + "Timestamp": "2024-05-16T03:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.195500", + "Timestamp": "2024-05-16T03:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.191500", + "Timestamp": "2024-05-16T03:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.135500", + "Timestamp": "2024-05-16T03:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.205100", + "Timestamp": "2024-05-16T03:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.201100", + "Timestamp": "2024-05-16T03:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145100", + "Timestamp": "2024-05-16T03:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.791500", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.786500", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.661500", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.336100", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.331100", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.206100", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.843100", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.838100", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.713100", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133600", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129900", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073600", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.940500", + "Timestamp": "2024-05-16T03:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184200", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180200", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124200", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.356200", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.351200", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.226200", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.758100", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.753100", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.628100", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.300600", + "Timestamp": "2024-05-16T03:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.272300", + "Timestamp": "2024-05-16T03:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.672300", + "Timestamp": "2024-05-16T03:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.667300", + "Timestamp": "2024-05-16T03:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.542300", + "Timestamp": "2024-05-16T03:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.287400", + "Timestamp": "2024-05-16T03:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171500", + "Timestamp": "2024-05-16T03:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167800", + "Timestamp": "2024-05-16T03:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-16T03:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.391000", + "Timestamp": "2024-05-16T03:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.399100", + "Timestamp": "2024-05-16T03:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.394100", + "Timestamp": "2024-05-16T03:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.269100", + "Timestamp": "2024-05-16T03:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.251900", + "Timestamp": "2024-05-16T03:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.265000", + "Timestamp": "2024-05-16T03:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.260000", + "Timestamp": "2024-05-16T03:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.135000", + "Timestamp": "2024-05-16T03:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.432000", + "Timestamp": "2024-05-16T03:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.427000", + "Timestamp": "2024-05-16T03:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.302000", + "Timestamp": "2024-05-16T03:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.639900", + "Timestamp": "2024-05-16T03:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T03:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101300", + "Timestamp": "2024-05-16T03:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045000", + "Timestamp": "2024-05-16T03:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.399000", + "Timestamp": "2024-05-16T03:46:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.394000", + "Timestamp": "2024-05-16T03:46:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.269000", + "Timestamp": "2024-05-16T03:46:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120100", + "Timestamp": "2024-05-16T03:46:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116100", + "Timestamp": "2024-05-16T03:46:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060100", + "Timestamp": "2024-05-16T03:46:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.185900", + "Timestamp": "2024-05-16T03:46:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.180900", + "Timestamp": "2024-05-16T03:46:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.055900", + "Timestamp": "2024-05-16T03:46:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.589900", + "Timestamp": "2024-05-16T03:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.953900", + "Timestamp": "2024-05-16T03:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.155100", + "Timestamp": "2024-05-16T03:46:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120500", + "Timestamp": "2024-05-16T03:32:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116800", + "Timestamp": "2024-05-16T03:32:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060500", + "Timestamp": "2024-05-16T03:32:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222500", + "Timestamp": "2024-05-16T03:31:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.134000", + "Timestamp": "2024-05-16T03:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.877000", + "Timestamp": "2024-05-16T03:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.872000", + "Timestamp": "2024-05-16T03:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.747000", + "Timestamp": "2024-05-16T03:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092500", + "Timestamp": "2024-05-16T03:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088800", + "Timestamp": "2024-05-16T03:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032500", + "Timestamp": "2024-05-16T03:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.210700", + "Timestamp": "2024-05-16T03:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.206700", + "Timestamp": "2024-05-16T03:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150700", + "Timestamp": "2024-05-16T03:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.651300", + "Timestamp": "2024-05-16T03:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.194000", + "Timestamp": "2024-05-16T03:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190000", + "Timestamp": "2024-05-16T03:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134000", + "Timestamp": "2024-05-16T03:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.061800", + "Timestamp": "2024-05-16T03:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T03:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095500", + "Timestamp": "2024-05-16T03:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039200", + "Timestamp": "2024-05-16T03:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.978700", + "Timestamp": "2024-05-16T03:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.166700", + "Timestamp": "2024-05-16T03:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.161700", + "Timestamp": "2024-05-16T03:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.036700", + "Timestamp": "2024-05-16T03:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.006900", + "Timestamp": "2024-05-16T03:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.001900", + "Timestamp": "2024-05-16T03:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.876900", + "Timestamp": "2024-05-16T03:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.192300", + "Timestamp": "2024-05-16T03:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.187300", + "Timestamp": "2024-05-16T03:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.062300", + "Timestamp": "2024-05-16T03:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.722300", + "Timestamp": "2024-05-16T03:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.717300", + "Timestamp": "2024-05-16T03:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.592300", + "Timestamp": "2024-05-16T03:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.811300", + "Timestamp": "2024-05-16T03:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.806300", + "Timestamp": "2024-05-16T03:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.681300", + "Timestamp": "2024-05-16T03:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.028800", + "Timestamp": "2024-05-16T03:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.023800", + "Timestamp": "2024-05-16T03:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.898800", + "Timestamp": "2024-05-16T03:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073700", + "Timestamp": "2024-05-16T03:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044700", + "Timestamp": "2024-05-16T03:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013700", + "Timestamp": "2024-05-16T03:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.051200", + "Timestamp": "2024-05-16T03:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.046200", + "Timestamp": "2024-05-16T03:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.921200", + "Timestamp": "2024-05-16T03:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152400", + "Timestamp": "2024-05-16T03:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148700", + "Timestamp": "2024-05-16T03:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092400", + "Timestamp": "2024-05-16T03:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.263700", + "Timestamp": "2024-05-16T03:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.258700", + "Timestamp": "2024-05-16T03:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.133700", + "Timestamp": "2024-05-16T03:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.120200", + "Timestamp": "2024-05-16T03:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.233200", + "Timestamp": "2024-05-16T03:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.275500", + "Timestamp": "2024-05-16T03:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.790600", + "Timestamp": "2024-05-16T03:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.785600", + "Timestamp": "2024-05-16T03:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.660600", + "Timestamp": "2024-05-16T03:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.890500", + "Timestamp": "2024-05-16T03:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.885500", + "Timestamp": "2024-05-16T03:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.760500", + "Timestamp": "2024-05-16T03:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.392100", + "Timestamp": "2024-05-16T03:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.387100", + "Timestamp": "2024-05-16T03:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.262100", + "Timestamp": "2024-05-16T03:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.285900", + "Timestamp": "2024-05-16T03:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.550100", + "Timestamp": "2024-05-16T03:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.545100", + "Timestamp": "2024-05-16T03:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.420100", + "Timestamp": "2024-05-16T03:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.121900", + "Timestamp": "2024-05-16T03:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.116900", + "Timestamp": "2024-05-16T03:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.991900", + "Timestamp": "2024-05-16T03:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.878000", + "Timestamp": "2024-05-16T03:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.881700", + "Timestamp": "2024-05-16T03:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.876700", + "Timestamp": "2024-05-16T03:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.751700", + "Timestamp": "2024-05-16T03:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.428000", + "Timestamp": "2024-05-16T03:31:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.525500", + "Timestamp": "2024-05-16T03:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.520500", + "Timestamp": "2024-05-16T03:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.395500", + "Timestamp": "2024-05-16T03:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.372700", + "Timestamp": "2024-05-16T03:31:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.367700", + "Timestamp": "2024-05-16T03:31:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.242700", + "Timestamp": "2024-05-16T03:31:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.317200", + "Timestamp": "2024-05-16T03:27:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.947500", + "Timestamp": "2024-05-16T03:17:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.942500", + "Timestamp": "2024-05-16T03:17:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.817500", + "Timestamp": "2024-05-16T03:17:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.250700", + "Timestamp": "2024-05-16T03:17:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.756200", + "Timestamp": "2024-05-16T03:17:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.189800", + "Timestamp": "2024-05-16T03:17:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122500", + "Timestamp": "2024-05-16T03:16:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118500", + "Timestamp": "2024-05-16T03:16:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062500", + "Timestamp": "2024-05-16T03:16:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.441100", + "Timestamp": "2024-05-16T03:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.436100", + "Timestamp": "2024-05-16T03:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.311100", + "Timestamp": "2024-05-16T03:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.856800", + "Timestamp": "2024-05-16T03:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.851800", + "Timestamp": "2024-05-16T03:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.726800", + "Timestamp": "2024-05-16T03:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.905600", + "Timestamp": "2024-05-16T03:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.951700", + "Timestamp": "2024-05-16T03:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.945400", + "Timestamp": "2024-05-16T03:16:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.940400", + "Timestamp": "2024-05-16T03:16:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.815400", + "Timestamp": "2024-05-16T03:16:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.686100", + "Timestamp": "2024-05-16T03:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093300", + "Timestamp": "2024-05-16T03:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089600", + "Timestamp": "2024-05-16T03:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033300", + "Timestamp": "2024-05-16T03:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.040800", + "Timestamp": "2024-05-16T03:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.184000", + "Timestamp": "2024-05-16T03:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.179000", + "Timestamp": "2024-05-16T03:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.054000", + "Timestamp": "2024-05-16T03:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.067300", + "Timestamp": "2024-05-16T03:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.062300", + "Timestamp": "2024-05-16T03:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.937300", + "Timestamp": "2024-05-16T03:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.578700", + "Timestamp": "2024-05-16T03:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.548700", + "Timestamp": "2024-05-16T03:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.448700", + "Timestamp": "2024-05-16T03:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.425500", + "Timestamp": "2024-05-16T03:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.085200", + "Timestamp": "2024-05-16T03:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.055200", + "Timestamp": "2024-05-16T03:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.955200", + "Timestamp": "2024-05-16T03:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.141400", + "Timestamp": "2024-05-16T03:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.136400", + "Timestamp": "2024-05-16T03:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.011400", + "Timestamp": "2024-05-16T03:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-16T03:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112900", + "Timestamp": "2024-05-16T03:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056900", + "Timestamp": "2024-05-16T03:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070800", + "Timestamp": "2024-05-16T03:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067100", + "Timestamp": "2024-05-16T03:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010800", + "Timestamp": "2024-05-16T03:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.579900", + "Timestamp": "2024-05-16T03:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.574900", + "Timestamp": "2024-05-16T03:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.449900", + "Timestamp": "2024-05-16T03:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.603200", + "Timestamp": "2024-05-16T03:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.598200", + "Timestamp": "2024-05-16T03:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.473200", + "Timestamp": "2024-05-16T03:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.193800", + "Timestamp": "2024-05-16T03:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190100", + "Timestamp": "2024-05-16T03:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133800", + "Timestamp": "2024-05-16T03:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.601100", + "Timestamp": "2024-05-16T03:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.596100", + "Timestamp": "2024-05-16T03:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.471100", + "Timestamp": "2024-05-16T03:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.800400", + "Timestamp": "2024-05-16T03:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111300", + "Timestamp": "2024-05-16T03:16:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T03:16:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051300", + "Timestamp": "2024-05-16T03:16:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.546200", + "Timestamp": "2024-05-16T03:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.541200", + "Timestamp": "2024-05-16T03:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.416200", + "Timestamp": "2024-05-16T03:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-16T03:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121100", + "Timestamp": "2024-05-16T03:02:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117400", + "Timestamp": "2024-05-16T03:02:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061100", + "Timestamp": "2024-05-16T03:02:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.047200", + "Timestamp": "2024-05-16T03:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113200", + "Timestamp": "2024-05-16T03:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.197400", + "Timestamp": "2024-05-16T03:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193700", + "Timestamp": "2024-05-16T03:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137400", + "Timestamp": "2024-05-16T03:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.801200", + "Timestamp": "2024-05-16T03:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.058300", + "Timestamp": "2024-05-16T03:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.532400", + "Timestamp": "2024-05-16T03:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114200", + "Timestamp": "2024-05-16T03:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T03:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054200", + "Timestamp": "2024-05-16T03:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.419200", + "Timestamp": "2024-05-16T03:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.414200", + "Timestamp": "2024-05-16T03:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.289200", + "Timestamp": "2024-05-16T03:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.420600", + "Timestamp": "2024-05-16T03:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.415600", + "Timestamp": "2024-05-16T03:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.290600", + "Timestamp": "2024-05-16T03:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.791500", + "Timestamp": "2024-05-16T03:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.086900", + "Timestamp": "2024-05-16T03:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.081900", + "Timestamp": "2024-05-16T03:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.956900", + "Timestamp": "2024-05-16T03:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.281500", + "Timestamp": "2024-05-16T03:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276500", + "Timestamp": "2024-05-16T03:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.151500", + "Timestamp": "2024-05-16T03:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118800", + "Timestamp": "2024-05-16T03:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115100", + "Timestamp": "2024-05-16T03:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058800", + "Timestamp": "2024-05-16T03:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.595200", + "Timestamp": "2024-05-16T03:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.565200", + "Timestamp": "2024-05-16T03:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.465200", + "Timestamp": "2024-05-16T03:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.354700", + "Timestamp": "2024-05-16T03:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.349700", + "Timestamp": "2024-05-16T03:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.224700", + "Timestamp": "2024-05-16T03:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.811200", + "Timestamp": "2024-05-16T03:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.806200", + "Timestamp": "2024-05-16T03:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.681200", + "Timestamp": "2024-05-16T03:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.625000", + "Timestamp": "2024-05-16T03:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091700", + "Timestamp": "2024-05-16T03:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088000", + "Timestamp": "2024-05-16T03:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031700", + "Timestamp": "2024-05-16T03:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.958600", + "Timestamp": "2024-05-16T03:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.953600", + "Timestamp": "2024-05-16T03:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.828600", + "Timestamp": "2024-05-16T03:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.927000", + "Timestamp": "2024-05-16T03:01:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.519600", + "Timestamp": "2024-05-16T03:01:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.489600", + "Timestamp": "2024-05-16T03:01:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.389600", + "Timestamp": "2024-05-16T03:01:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138200", + "Timestamp": "2024-05-16T03:01:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134500", + "Timestamp": "2024-05-16T03:01:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078200", + "Timestamp": "2024-05-16T03:01:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t1.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.009700", + "Timestamp": "2024-05-16T02:57:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101300", + "Timestamp": "2024-05-16T02:47:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097600", + "Timestamp": "2024-05-16T02:47:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041300", + "Timestamp": "2024-05-16T02:47:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120600", + "Timestamp": "2024-05-16T02:46:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.977300", + "Timestamp": "2024-05-16T02:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.567300", + "Timestamp": "2024-05-16T02:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.172700", + "Timestamp": "2024-05-16T02:46:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.167700", + "Timestamp": "2024-05-16T02:46:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.042700", + "Timestamp": "2024-05-16T02:46:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.681800", + "Timestamp": "2024-05-16T02:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.651800", + "Timestamp": "2024-05-16T02:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.551800", + "Timestamp": "2024-05-16T02:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.067200", + "Timestamp": "2024-05-16T02:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.313300", + "Timestamp": "2024-05-16T02:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.242500", + "Timestamp": "2024-05-16T02:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144300", + "Timestamp": "2024-05-16T02:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140600", + "Timestamp": "2024-05-16T02:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084300", + "Timestamp": "2024-05-16T02:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169400", + "Timestamp": "2024-05-16T02:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165700", + "Timestamp": "2024-05-16T02:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T02:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.807700", + "Timestamp": "2024-05-16T02:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.802700", + "Timestamp": "2024-05-16T02:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.677700", + "Timestamp": "2024-05-16T02:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.396400", + "Timestamp": "2024-05-16T02:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.391400", + "Timestamp": "2024-05-16T02:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.266400", + "Timestamp": "2024-05-16T02:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.498800", + "Timestamp": "2024-05-16T02:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360800", + "Timestamp": "2024-05-16T02:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.355800", + "Timestamp": "2024-05-16T02:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230800", + "Timestamp": "2024-05-16T02:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.483300", + "Timestamp": "2024-05-16T02:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.478300", + "Timestamp": "2024-05-16T02:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.353300", + "Timestamp": "2024-05-16T02:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.207100", + "Timestamp": "2024-05-16T02:46:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.203100", + "Timestamp": "2024-05-16T02:46:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147100", + "Timestamp": "2024-05-16T02:46:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.244400", + "Timestamp": "2024-05-16T02:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.240700", + "Timestamp": "2024-05-16T02:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184400", + "Timestamp": "2024-05-16T02:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.703600", + "Timestamp": "2024-05-16T02:46:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.698600", + "Timestamp": "2024-05-16T02:46:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.573600", + "Timestamp": "2024-05-16T02:46:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.315200", + "Timestamp": "2024-05-16T02:45:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.310200", + "Timestamp": "2024-05-16T02:45:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.185200", + "Timestamp": "2024-05-16T02:45:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.097200", + "Timestamp": "2024-05-16T02:33:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.097200", + "Timestamp": "2024-05-16T02:33:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.067200", + "Timestamp": "2024-05-16T02:33:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.067200", + "Timestamp": "2024-05-16T02:33:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967200", + "Timestamp": "2024-05-16T02:33:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967200", + "Timestamp": "2024-05-16T02:33:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.439200", + "Timestamp": "2024-05-16T02:33:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.439200", + "Timestamp": "2024-05-16T02:33:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.365000", + "Timestamp": "2024-05-16T02:32:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116100", + "Timestamp": "2024-05-16T02:31:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.254500", + "Timestamp": "2024-05-16T02:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.249500", + "Timestamp": "2024-05-16T02:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.124500", + "Timestamp": "2024-05-16T02:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.427900", + "Timestamp": "2024-05-16T02:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.925700", + "Timestamp": "2024-05-16T02:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.920700", + "Timestamp": "2024-05-16T02:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.795700", + "Timestamp": "2024-05-16T02:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.768000", + "Timestamp": "2024-05-16T02:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.738000", + "Timestamp": "2024-05-16T02:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.638000", + "Timestamp": "2024-05-16T02:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073900", + "Timestamp": "2024-05-16T02:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070200", + "Timestamp": "2024-05-16T02:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013900", + "Timestamp": "2024-05-16T02:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.807300", + "Timestamp": "2024-05-16T02:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.651500", + "Timestamp": "2024-05-16T02:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.967600", + "Timestamp": "2024-05-16T02:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.962600", + "Timestamp": "2024-05-16T02:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.837600", + "Timestamp": "2024-05-16T02:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.611400", + "Timestamp": "2024-05-16T02:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.606400", + "Timestamp": "2024-05-16T02:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.481400", + "Timestamp": "2024-05-16T02:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233900", + "Timestamp": "2024-05-16T02:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.990100", + "Timestamp": "2024-05-16T02:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T02:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117100", + "Timestamp": "2024-05-16T02:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T02:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113100", + "Timestamp": "2024-05-16T02:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048200", + "Timestamp": "2024-05-16T02:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057100", + "Timestamp": "2024-05-16T02:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.511800", + "Timestamp": "2024-05-16T02:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.506800", + "Timestamp": "2024-05-16T02:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.381800", + "Timestamp": "2024-05-16T02:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.282800", + "Timestamp": "2024-05-16T02:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.277800", + "Timestamp": "2024-05-16T02:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.152800", + "Timestamp": "2024-05-16T02:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094600", + "Timestamp": "2024-05-16T02:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090900", + "Timestamp": "2024-05-16T02:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034600", + "Timestamp": "2024-05-16T02:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119100", + "Timestamp": "2024-05-16T02:31:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.438800", + "Timestamp": "2024-05-16T02:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-16T02:31:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154500", + "Timestamp": "2024-05-16T02:31:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054500", + "Timestamp": "2024-05-16T02:31:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T02:31:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107000", + "Timestamp": "2024-05-16T02:31:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050700", + "Timestamp": "2024-05-16T02:31:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.006400", + "Timestamp": "2024-05-16T02:26:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124300", + "Timestamp": "2024-05-16T02:26:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079200", + "Timestamp": "2024-05-16T02:17:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.050200", + "Timestamp": "2024-05-16T02:17:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019200", + "Timestamp": "2024-05-16T02:17:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122500", + "Timestamp": "2024-05-16T02:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118800", + "Timestamp": "2024-05-16T02:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062500", + "Timestamp": "2024-05-16T02:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.704200", + "Timestamp": "2024-05-16T02:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.699200", + "Timestamp": "2024-05-16T02:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.574200", + "Timestamp": "2024-05-16T02:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.388200", + "Timestamp": "2024-05-16T02:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.383200", + "Timestamp": "2024-05-16T02:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.258200", + "Timestamp": "2024-05-16T02:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106000", + "Timestamp": "2024-05-16T02:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.417700", + "Timestamp": "2024-05-16T02:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.387700", + "Timestamp": "2024-05-16T02:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.287700", + "Timestamp": "2024-05-16T02:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.880500", + "Timestamp": "2024-05-16T02:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.875500", + "Timestamp": "2024-05-16T02:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.750500", + "Timestamp": "2024-05-16T02:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.506100", + "Timestamp": "2024-05-16T02:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "a1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094400", + "Timestamp": "2024-05-16T02:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "a1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090700", + "Timestamp": "2024-05-16T02:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "a1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034400", + "Timestamp": "2024-05-16T02:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125000", + "Timestamp": "2024-05-16T02:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121300", + "Timestamp": "2024-05-16T02:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065000", + "Timestamp": "2024-05-16T02:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075000", + "Timestamp": "2024-05-16T02:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071300", + "Timestamp": "2024-05-16T02:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015000", + "Timestamp": "2024-05-16T02:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.097700", + "Timestamp": "2024-05-16T02:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.092700", + "Timestamp": "2024-05-16T02:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967700", + "Timestamp": "2024-05-16T02:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106200", + "Timestamp": "2024-05-16T02:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.280800", + "Timestamp": "2024-05-16T02:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213800", + "Timestamp": "2024-05-16T02:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.254300", + "Timestamp": "2024-05-16T02:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170000", + "Timestamp": "2024-05-16T02:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166000", + "Timestamp": "2024-05-16T02:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T02:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071100", + "Timestamp": "2024-05-16T02:01:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067400", + "Timestamp": "2024-05-16T02:01:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011100", + "Timestamp": "2024-05-16T02:01:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078400", + "Timestamp": "2024-05-16T02:01:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074700", + "Timestamp": "2024-05-16T02:01:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018400", + "Timestamp": "2024-05-16T02:01:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091100", + "Timestamp": "2024-05-16T02:00:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087400", + "Timestamp": "2024-05-16T02:00:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031100", + "Timestamp": "2024-05-16T02:00:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-16T01:55:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-16T01:55:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-16T01:55:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.911100", + "Timestamp": "2024-05-16T01:51:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.911100", + "Timestamp": "2024-05-16T01:51:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010500", + "Timestamp": "2024-05-16T01:49:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.876000", + "Timestamp": "2024-05-16T01:47:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.876000", + "Timestamp": "2024-05-16T01:47:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.876000", + "Timestamp": "2024-05-16T01:47:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118800", + "Timestamp": "2024-05-16T01:47:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.425400", + "Timestamp": "2024-05-16T01:46:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077000", + "Timestamp": "2024-05-16T01:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073300", + "Timestamp": "2024-05-16T01:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017000", + "Timestamp": "2024-05-16T01:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432600", + "Timestamp": "2024-05-16T01:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.610900", + "Timestamp": "2024-05-16T01:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.605900", + "Timestamp": "2024-05-16T01:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.480900", + "Timestamp": "2024-05-16T01:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.182800", + "Timestamp": "2024-05-16T01:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179100", + "Timestamp": "2024-05-16T01:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122800", + "Timestamp": "2024-05-16T01:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155500", + "Timestamp": "2024-05-16T01:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151800", + "Timestamp": "2024-05-16T01:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095500", + "Timestamp": "2024-05-16T01:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T01:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T01:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049400", + "Timestamp": "2024-05-16T01:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.477000", + "Timestamp": "2024-05-16T01:46:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.469500", + "Timestamp": "2024-05-16T01:46:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092100", + "Timestamp": "2024-05-16T01:46:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088400", + "Timestamp": "2024-05-16T01:46:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032100", + "Timestamp": "2024-05-16T01:46:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117900", + "Timestamp": "2024-05-16T01:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113900", + "Timestamp": "2024-05-16T01:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057900", + "Timestamp": "2024-05-16T01:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.219600", + "Timestamp": "2024-05-16T01:34:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.219600", + "Timestamp": "2024-05-16T01:34:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.761600", + "Timestamp": "2024-05-16T01:32:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.761600", + "Timestamp": "2024-05-16T01:32:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.619000", + "Timestamp": "2024-05-16T01:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.614000", + "Timestamp": "2024-05-16T01:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.489000", + "Timestamp": "2024-05-16T01:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T01:31:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100700", + "Timestamp": "2024-05-16T01:31:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044400", + "Timestamp": "2024-05-16T01:31:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.403800", + "Timestamp": "2024-05-16T01:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.488200", + "Timestamp": "2024-05-16T01:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122800", + "Timestamp": "2024-05-16T01:31:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118800", + "Timestamp": "2024-05-16T01:31:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062800", + "Timestamp": "2024-05-16T01:31:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088600", + "Timestamp": "2024-05-16T01:30:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128600", + "Timestamp": "2024-05-16T01:30:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028600", + "Timestamp": "2024-05-16T01:30:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124900", + "Timestamp": "2024-05-16T01:30:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.853000", + "Timestamp": "2024-05-16T01:25:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.487100", + "Timestamp": "2024-05-16T01:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.482100", + "Timestamp": "2024-05-16T01:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.357100", + "Timestamp": "2024-05-16T01:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148800", + "Timestamp": "2024-05-16T01:17:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145100", + "Timestamp": "2024-05-16T01:17:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088800", + "Timestamp": "2024-05-16T01:17:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-16T01:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-16T01:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080200", + "Timestamp": "2024-05-16T01:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076500", + "Timestamp": "2024-05-16T01:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020200", + "Timestamp": "2024-05-16T01:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233700", + "Timestamp": "2024-05-16T01:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441500", + "Timestamp": "2024-05-16T01:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.504000", + "Timestamp": "2024-05-16T01:16:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.504000", + "Timestamp": "2024-05-16T01:16:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069600", + "Timestamp": "2024-05-16T01:02:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040600", + "Timestamp": "2024-05-16T01:02:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009600", + "Timestamp": "2024-05-16T01:02:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070800", + "Timestamp": "2024-05-16T01:02:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067100", + "Timestamp": "2024-05-16T01:02:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010800", + "Timestamp": "2024-05-16T01:02:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.427500", + "Timestamp": "2024-05-16T01:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120300", + "Timestamp": "2024-05-16T01:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116300", + "Timestamp": "2024-05-16T01:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060300", + "Timestamp": "2024-05-16T01:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.869800", + "Timestamp": "2024-05-16T01:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214700", + "Timestamp": "2024-05-16T01:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T01:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T01:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049800", + "Timestamp": "2024-05-16T01:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.254500", + "Timestamp": "2024-05-16T01:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.408400", + "Timestamp": "2024-05-16T01:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.477100", + "Timestamp": "2024-05-16T01:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m1.large", + "ProductDescription": "Windows", + "SpotPrice": "0.137200", + "Timestamp": "2024-05-16T01:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217200", + "Timestamp": "2024-05-16T01:01:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.609800", + "Timestamp": "2024-05-16T00:51:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.609800", + "Timestamp": "2024-05-16T00:51:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.214800", + "Timestamp": "2024-05-16T00:47:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.209800", + "Timestamp": "2024-05-16T00:47:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084800", + "Timestamp": "2024-05-16T00:47:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113700", + "Timestamp": "2024-05-16T00:46:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T00:46:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053700", + "Timestamp": "2024-05-16T00:46:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115300", + "Timestamp": "2024-05-16T00:46:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123200", + "Timestamp": "2024-05-16T00:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119200", + "Timestamp": "2024-05-16T00:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063200", + "Timestamp": "2024-05-16T00:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.870600", + "Timestamp": "2024-05-16T00:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.428000", + "Timestamp": "2024-05-16T00:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5zn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116000", + "Timestamp": "2024-05-16T00:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235900", + "Timestamp": "2024-05-16T00:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111900", + "Timestamp": "2024-05-16T00:46:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.723700", + "Timestamp": "2024-05-16T00:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.969100", + "Timestamp": "2024-05-16T00:32:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116200", + "Timestamp": "2024-05-16T00:31:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T00:31:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056200", + "Timestamp": "2024-05-16T00:31:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.442200", + "Timestamp": "2024-05-16T00:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217400", + "Timestamp": "2024-05-16T00:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.434700", + "Timestamp": "2024-05-16T00:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209800", + "Timestamp": "2024-05-16T00:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.895500", + "Timestamp": "2024-05-16T00:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.258000", + "Timestamp": "2024-05-16T00:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.187600", + "Timestamp": "2024-05-16T00:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183600", + "Timestamp": "2024-05-16T00:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127600", + "Timestamp": "2024-05-16T00:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.313200", + "Timestamp": "2024-05-16T00:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5zn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.142000", + "Timestamp": "2024-05-16T00:31:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.156600", + "Timestamp": "2024-05-16T00:31:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128700", + "Timestamp": "2024-05-16T00:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168700", + "Timestamp": "2024-05-16T00:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068700", + "Timestamp": "2024-05-16T00:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214100", + "Timestamp": "2024-05-16T00:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157100", + "Timestamp": "2024-05-16T00:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153100", + "Timestamp": "2024-05-16T00:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T00:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307300", + "Timestamp": "2024-05-16T00:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.277300", + "Timestamp": "2024-05-16T00:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177300", + "Timestamp": "2024-05-16T00:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076300", + "Timestamp": "2024-05-16T00:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047300", + "Timestamp": "2024-05-16T00:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016300", + "Timestamp": "2024-05-16T00:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114000", + "Timestamp": "2024-05-16T00:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091600", + "Timestamp": "2024-05-16T00:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087900", + "Timestamp": "2024-05-16T00:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031600", + "Timestamp": "2024-05-16T00:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124200", + "Timestamp": "2024-05-16T00:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164200", + "Timestamp": "2024-05-16T00:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064200", + "Timestamp": "2024-05-16T00:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T00:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136000", + "Timestamp": "2024-05-16T00:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036000", + "Timestamp": "2024-05-16T00:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.431700", + "Timestamp": "2024-05-16T00:01:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.426700", + "Timestamp": "2024-05-16T00:01:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.301700", + "Timestamp": "2024-05-16T00:01:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.985400", + "Timestamp": "2024-05-15T23:55:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072000", + "Timestamp": "2024-05-15T23:48:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068300", + "Timestamp": "2024-05-15T23:48:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012000", + "Timestamp": "2024-05-15T23:48:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-15T23:47:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-15T23:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.450700", + "Timestamp": "2024-05-15T23:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123500", + "Timestamp": "2024-05-15T23:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119800", + "Timestamp": "2024-05-15T23:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063500", + "Timestamp": "2024-05-15T23:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.181400", + "Timestamp": "2024-05-15T23:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177400", + "Timestamp": "2024-05-15T23:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121400", + "Timestamp": "2024-05-15T23:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.040400", + "Timestamp": "2024-05-15T23:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235000", + "Timestamp": "2024-05-15T23:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.239400", + "Timestamp": "2024-05-15T23:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105100", + "Timestamp": "2024-05-15T23:46:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.065400", + "Timestamp": "2024-05-15T23:31:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075300", + "Timestamp": "2024-05-15T23:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071600", + "Timestamp": "2024-05-15T23:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015300", + "Timestamp": "2024-05-15T23:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224500", + "Timestamp": "2024-05-15T23:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-15T23:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149800", + "Timestamp": "2024-05-15T23:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049800", + "Timestamp": "2024-05-15T23:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-15T23:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-15T23:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040200", + "Timestamp": "2024-05-15T23:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-15T23:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-15T23:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.730300", + "Timestamp": "2024-05-15T23:31:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.593600", + "Timestamp": "2024-05-15T23:30:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.593600", + "Timestamp": "2024-05-15T23:30:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.593600", + "Timestamp": "2024-05-15T23:30:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-15T23:29:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-15T23:29:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-15T23:29:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.069100", + "Timestamp": "2024-05-15T23:29:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.438000", + "Timestamp": "2024-05-15T23:28:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.438000", + "Timestamp": "2024-05-15T23:28:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.438000", + "Timestamp": "2024-05-15T23:28:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.439200", + "Timestamp": "2024-05-15T23:28:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.439200", + "Timestamp": "2024-05-15T23:28:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.998800", + "Timestamp": "2024-05-15T23:21:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.968800", + "Timestamp": "2024-05-15T23:21:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.868800", + "Timestamp": "2024-05-15T23:21:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.866100", + "Timestamp": "2024-05-15T23:17:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.957300", + "Timestamp": "2024-05-15T23:17:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099700", + "Timestamp": "2024-05-15T23:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-15T23:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039700", + "Timestamp": "2024-05-15T23:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.025300", + "Timestamp": "2024-05-15T23:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118800", + "Timestamp": "2024-05-15T23:16:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111100", + "Timestamp": "2024-05-15T23:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-15T23:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051100", + "Timestamp": "2024-05-15T23:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.183600", + "Timestamp": "2024-05-15T23:15:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179900", + "Timestamp": "2024-05-15T23:15:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123600", + "Timestamp": "2024-05-15T23:15:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429200", + "Timestamp": "2024-05-15T23:04:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.039100", + "Timestamp": "2024-05-15T23:02:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.110200", + "Timestamp": "2024-05-15T23:01:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235500", + "Timestamp": "2024-05-15T23:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "a1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069800", + "Timestamp": "2024-05-15T23:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "a1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040800", + "Timestamp": "2024-05-15T23:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "a1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009800", + "Timestamp": "2024-05-15T23:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081800", + "Timestamp": "2024-05-15T23:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078100", + "Timestamp": "2024-05-15T23:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021800", + "Timestamp": "2024-05-15T23:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104300", + "Timestamp": "2024-05-15T23:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100600", + "Timestamp": "2024-05-15T23:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044300", + "Timestamp": "2024-05-15T23:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068600", + "Timestamp": "2024-05-15T23:00:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039600", + "Timestamp": "2024-05-15T23:00:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008600", + "Timestamp": "2024-05-15T23:00:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.756800", + "Timestamp": "2024-05-15T22:54:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-15T22:52:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-15T22:52:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.150400", + "Timestamp": "2024-05-15T22:51:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.150400", + "Timestamp": "2024-05-15T22:51:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.026700", + "Timestamp": "2024-05-15T22:47:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126100", + "Timestamp": "2024-05-15T22:47:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122100", + "Timestamp": "2024-05-15T22:47:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066100", + "Timestamp": "2024-05-15T22:47:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-15T22:47:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-15T22:47:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-15T22:47:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.433600", + "Timestamp": "2024-05-15T22:37:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.433600", + "Timestamp": "2024-05-15T22:37:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.433600", + "Timestamp": "2024-05-15T22:37:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-15T22:37:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-15T22:37:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042900", + "Timestamp": "2024-05-15T22:37:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.427200", + "Timestamp": "2024-05-15T22:37:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.299200", + "Timestamp": "2024-05-15T22:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.424500", + "Timestamp": "2024-05-15T22:32:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120600", + "Timestamp": "2024-05-15T22:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.863000", + "Timestamp": "2024-05-15T22:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.012400", + "Timestamp": "2024-05-15T22:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.064300", + "Timestamp": "2024-05-15T22:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111900", + "Timestamp": "2024-05-15T22:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091500", + "Timestamp": "2024-05-15T22:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087800", + "Timestamp": "2024-05-15T22:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031500", + "Timestamp": "2024-05-15T22:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107800", + "Timestamp": "2024-05-15T22:17:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021300", + "Timestamp": "2024-05-15T22:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418700", + "Timestamp": "2024-05-15T22:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.972500", + "Timestamp": "2024-05-15T22:16:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.598800", + "Timestamp": "2024-05-15T22:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.593800", + "Timestamp": "2024-05-15T22:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.468800", + "Timestamp": "2024-05-15T22:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211500", + "Timestamp": "2024-05-15T22:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095500", + "Timestamp": "2024-05-15T22:16:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-15T22:16:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035500", + "Timestamp": "2024-05-15T22:16:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125100", + "Timestamp": "2024-05-15T22:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.822100", + "Timestamp": "2024-05-15T22:15:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.822100", + "Timestamp": "2024-05-15T22:15:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.787400", + "Timestamp": "2024-05-15T22:14:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.025400", + "Timestamp": "2024-05-15T22:11:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080100", + "Timestamp": "2024-05-15T22:10:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076200", + "Timestamp": "2024-05-15T22:10:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079200", + "Timestamp": "2024-05-15T22:10:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076400", + "Timestamp": "2024-05-15T22:10:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.072500", + "Timestamp": "2024-05-15T22:10:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075500", + "Timestamp": "2024-05-15T22:10:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020100", + "Timestamp": "2024-05-15T22:10:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016200", + "Timestamp": "2024-05-15T22:10:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019200", + "Timestamp": "2024-05-15T22:10:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "a1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088300", + "Timestamp": "2024-05-15T22:10:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "a1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084600", + "Timestamp": "2024-05-15T22:10:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "a1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028300", + "Timestamp": "2024-05-15T22:10:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079100", + "Timestamp": "2024-05-15T22:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075400", + "Timestamp": "2024-05-15T22:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019100", + "Timestamp": "2024-05-15T22:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119500", + "Timestamp": "2024-05-15T22:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077200", + "Timestamp": "2024-05-15T22:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.048200", + "Timestamp": "2024-05-15T22:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017200", + "Timestamp": "2024-05-15T22:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-15T22:01:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161200", + "Timestamp": "2024-05-15T22:01:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157500", + "Timestamp": "2024-05-15T22:01:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-15T22:01:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110900", + "Timestamp": "2024-05-15T21:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-15T21:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050900", + "Timestamp": "2024-05-15T21:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.449200", + "Timestamp": "2024-05-15T21:39:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.449200", + "Timestamp": "2024-05-15T21:39:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.449200", + "Timestamp": "2024-05-15T21:39:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127300", + "Timestamp": "2024-05-15T21:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123600", + "Timestamp": "2024-05-15T21:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067300", + "Timestamp": "2024-05-15T21:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062300", + "Timestamp": "2024-05-15T21:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002300", + "Timestamp": "2024-05-15T21:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002300", + "Timestamp": "2024-05-15T21:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072000", + "Timestamp": "2024-05-15T21:31:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043000", + "Timestamp": "2024-05-15T21:31:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012000", + "Timestamp": "2024-05-15T21:31:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128500", + "Timestamp": "2024-05-15T21:30:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168500", + "Timestamp": "2024-05-15T21:30:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068500", + "Timestamp": "2024-05-15T21:30:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.716800", + "Timestamp": "2024-05-15T21:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.711800", + "Timestamp": "2024-05-15T21:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.586800", + "Timestamp": "2024-05-15T21:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-15T21:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082200", + "Timestamp": "2024-05-15T21:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078500", + "Timestamp": "2024-05-15T21:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022200", + "Timestamp": "2024-05-15T21:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.500400", + "Timestamp": "2024-05-15T21:15:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.500400", + "Timestamp": "2024-05-15T21:15:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.495400", + "Timestamp": "2024-05-15T21:15:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.495400", + "Timestamp": "2024-05-15T21:15:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.370400", + "Timestamp": "2024-05-15T21:15:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.370400", + "Timestamp": "2024-05-15T21:15:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.439100", + "Timestamp": "2024-05-15T21:13:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.439100", + "Timestamp": "2024-05-15T21:13:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.276300", + "Timestamp": "2024-05-15T21:02:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-15T21:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-15T21:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031800", + "Timestamp": "2024-05-15T21:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-15T21:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100700", + "Timestamp": "2024-05-15T21:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044400", + "Timestamp": "2024-05-15T21:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092000", + "Timestamp": "2024-05-15T21:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088300", + "Timestamp": "2024-05-15T21:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032000", + "Timestamp": "2024-05-15T21:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063100", + "Timestamp": "2024-05-15T21:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003100", + "Timestamp": "2024-05-15T21:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003100", + "Timestamp": "2024-05-15T21:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074800", + "Timestamp": "2024-05-15T20:48:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071100", + "Timestamp": "2024-05-15T20:48:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014800", + "Timestamp": "2024-05-15T20:48:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.639300", + "Timestamp": "2024-05-15T20:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-15T20:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113200", + "Timestamp": "2024-05-15T20:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056900", + "Timestamp": "2024-05-15T20:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.006400", + "Timestamp": "2024-05-15T20:37:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.059500", + "Timestamp": "2024-05-15T20:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.453500", + "Timestamp": "2024-05-15T20:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106700", + "Timestamp": "2024-05-15T20:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212400", + "Timestamp": "2024-05-15T20:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.244200", + "Timestamp": "2024-05-15T20:16:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m1.small", + "ProductDescription": "Windows", + "SpotPrice": "0.045700", + "Timestamp": "2024-05-15T20:16:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-15T20:02:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216100", + "Timestamp": "2024-05-15T20:02:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155300", + "Timestamp": "2024-05-15T20:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.195300", + "Timestamp": "2024-05-15T20:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095300", + "Timestamp": "2024-05-15T20:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128800", + "Timestamp": "2024-05-15T20:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125100", + "Timestamp": "2024-05-15T20:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-15T20:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.256200", + "Timestamp": "2024-05-15T20:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.251200", + "Timestamp": "2024-05-15T20:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126200", + "Timestamp": "2024-05-15T20:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106200", + "Timestamp": "2024-05-15T20:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069000", + "Timestamp": "2024-05-15T20:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040000", + "Timestamp": "2024-05-15T20:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009000", + "Timestamp": "2024-05-15T20:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.642400", + "Timestamp": "2024-05-15T19:58:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.642400", + "Timestamp": "2024-05-15T19:58:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.642400", + "Timestamp": "2024-05-15T19:58:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.149600", + "Timestamp": "2024-05-15T19:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.149600", + "Timestamp": "2024-05-15T19:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.129600", + "Timestamp": "2024-05-15T19:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092800", + "Timestamp": "2024-05-15T19:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089100", + "Timestamp": "2024-05-15T19:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032800", + "Timestamp": "2024-05-15T19:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235700", + "Timestamp": "2024-05-15T19:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118700", + "Timestamp": "2024-05-15T19:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093400", + "Timestamp": "2024-05-15T19:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089700", + "Timestamp": "2024-05-15T19:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033400", + "Timestamp": "2024-05-15T19:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.501100", + "Timestamp": "2024-05-15T19:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063200", + "Timestamp": "2024-05-15T19:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003200", + "Timestamp": "2024-05-15T19:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003200", + "Timestamp": "2024-05-15T19:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105500", + "Timestamp": "2024-05-15T19:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101500", + "Timestamp": "2024-05-15T19:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045500", + "Timestamp": "2024-05-15T19:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m1.small", + "ProductDescription": "Windows", + "SpotPrice": "0.043700", + "Timestamp": "2024-05-15T19:31:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-15T19:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-15T19:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051400", + "Timestamp": "2024-05-15T19:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155500", + "Timestamp": "2024-05-15T19:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151800", + "Timestamp": "2024-05-15T19:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095500", + "Timestamp": "2024-05-15T19:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.234000", + "Timestamp": "2024-05-15T19:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.191800", + "Timestamp": "2024-05-15T19:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217800", + "Timestamp": "2024-05-15T19:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082000", + "Timestamp": "2024-05-15T19:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078300", + "Timestamp": "2024-05-15T19:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022000", + "Timestamp": "2024-05-15T19:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.808000", + "Timestamp": "2024-05-15T19:02:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "12.466000", + "Timestamp": "2024-05-15T19:02:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "p2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "12.436000", + "Timestamp": "2024-05-15T19:02:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "12.336000", + "Timestamp": "2024-05-15T19:02:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.131400", + "Timestamp": "2024-05-15T19:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120600", + "Timestamp": "2024-05-15T19:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074500", + "Timestamp": "2024-05-15T18:57:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070800", + "Timestamp": "2024-05-15T18:57:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014500", + "Timestamp": "2024-05-15T18:57:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441200", + "Timestamp": "2024-05-15T18:57:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441200", + "Timestamp": "2024-05-15T18:57:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441200", + "Timestamp": "2024-05-15T18:57:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.628000", + "Timestamp": "2024-05-15T18:56:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.628000", + "Timestamp": "2024-05-15T18:56:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.628000", + "Timestamp": "2024-05-15T18:56:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.858400", + "Timestamp": "2024-05-15T18:53:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.858400", + "Timestamp": "2024-05-15T18:53:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.858400", + "Timestamp": "2024-05-15T18:53:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.059500", + "Timestamp": "2024-05-15T18:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.012900", + "Timestamp": "2024-05-15T18:47:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-15T18:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114100", + "Timestamp": "2024-05-15T18:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076600", + "Timestamp": "2024-05-15T18:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047600", + "Timestamp": "2024-05-15T18:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016600", + "Timestamp": "2024-05-15T18:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.129100", + "Timestamp": "2024-05-15T18:46:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.124100", + "Timestamp": "2024-05-15T18:46:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.999100", + "Timestamp": "2024-05-15T18:46:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214600", + "Timestamp": "2024-05-15T18:35:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214600", + "Timestamp": "2024-05-15T18:35:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.911100", + "Timestamp": "2024-05-15T18:35:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.911100", + "Timestamp": "2024-05-15T18:35:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g5g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.500400", + "Timestamp": "2024-05-15T18:34:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.500400", + "Timestamp": "2024-05-15T18:34:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g5g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.495400", + "Timestamp": "2024-05-15T18:34:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.495400", + "Timestamp": "2024-05-15T18:34:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g5g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.370400", + "Timestamp": "2024-05-15T18:34:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.370400", + "Timestamp": "2024-05-15T18:34:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010700", + "Timestamp": "2024-05-15T18:34:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062900", + "Timestamp": "2024-05-15T18:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002900", + "Timestamp": "2024-05-15T18:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002900", + "Timestamp": "2024-05-15T18:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.126600", + "Timestamp": "2024-05-15T18:32:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094600", + "Timestamp": "2024-05-15T18:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090900", + "Timestamp": "2024-05-15T18:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034600", + "Timestamp": "2024-05-15T18:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098500", + "Timestamp": "2024-05-15T18:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094800", + "Timestamp": "2024-05-15T18:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038500", + "Timestamp": "2024-05-15T18:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062600", + "Timestamp": "2024-05-15T18:20:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-15T18:20:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-15T18:20:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076400", + "Timestamp": "2024-05-15T18:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047400", + "Timestamp": "2024-05-15T18:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016400", + "Timestamp": "2024-05-15T18:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086800", + "Timestamp": "2024-05-15T18:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083100", + "Timestamp": "2024-05-15T18:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026800", + "Timestamp": "2024-05-15T18:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.123700", + "Timestamp": "2024-05-15T18:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112300", + "Timestamp": "2024-05-15T18:15:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112300", + "Timestamp": "2024-05-15T18:15:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112300", + "Timestamp": "2024-05-15T18:15:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "p2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.338200", + "Timestamp": "2024-05-15T18:14:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073600", + "Timestamp": "2024-05-15T18:13:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069900", + "Timestamp": "2024-05-15T18:13:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013600", + "Timestamp": "2024-05-15T18:13:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-15T18:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108900", + "Timestamp": "2024-05-15T18:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7iz.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052600", + "Timestamp": "2024-05-15T18:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.239700", + "Timestamp": "2024-05-15T18:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.219600", + "Timestamp": "2024-05-15T17:57:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.219600", + "Timestamp": "2024-05-15T17:57:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064600", + "Timestamp": "2024-05-15T17:50:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004600", + "Timestamp": "2024-05-15T17:50:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004600", + "Timestamp": "2024-05-15T17:50:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.531500", + "Timestamp": "2024-05-15T17:50:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.898400", + "Timestamp": "2024-05-15T17:48:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.898400", + "Timestamp": "2024-05-15T17:48:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.898400", + "Timestamp": "2024-05-15T17:48:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.219500", + "Timestamp": "2024-05-15T17:48:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-15T17:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010700", + "Timestamp": "2024-05-15T17:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075200", + "Timestamp": "2024-05-15T17:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.046200", + "Timestamp": "2024-05-15T17:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015200", + "Timestamp": "2024-05-15T17:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.529600", + "Timestamp": "2024-05-15T17:35:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.529600", + "Timestamp": "2024-05-15T17:35:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.529600", + "Timestamp": "2024-05-15T17:35:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.242400", + "Timestamp": "2024-05-15T17:32:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-15T17:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-15T17:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040900", + "Timestamp": "2024-05-15T17:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.122300", + "Timestamp": "2024-05-15T17:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.576000", + "Timestamp": "2024-05-15T17:30:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.576000", + "Timestamp": "2024-05-15T17:30:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440400", + "Timestamp": "2024-05-15T17:28:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440400", + "Timestamp": "2024-05-15T17:28:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440400", + "Timestamp": "2024-05-15T17:28:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220200", + "Timestamp": "2024-05-15T17:23:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220200", + "Timestamp": "2024-05-15T17:23:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220200", + "Timestamp": "2024-05-15T17:23:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.756200", + "Timestamp": "2024-05-15T17:23:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.304900", + "Timestamp": "2024-05-15T17:22:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.304900", + "Timestamp": "2024-05-15T17:22:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.472200", + "Timestamp": "2024-05-15T17:22:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.472200", + "Timestamp": "2024-05-15T17:22:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.472200", + "Timestamp": "2024-05-15T17:22:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-15T17:21:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103400", + "Timestamp": "2024-05-15T17:21:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047400", + "Timestamp": "2024-05-15T17:21:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-15T17:21:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-15T17:21:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103900", + "Timestamp": "2024-05-15T17:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-15T17:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043900", + "Timestamp": "2024-05-15T17:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.040400", + "Timestamp": "2024-05-15T17:16:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-15T17:08:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-15T17:08:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046800", + "Timestamp": "2024-05-15T17:08:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-15T17:08:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.658800", + "Timestamp": "2024-05-15T17:08:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.658800", + "Timestamp": "2024-05-15T17:08:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.658800", + "Timestamp": "2024-05-15T17:08:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212600", + "Timestamp": "2024-05-15T17:02:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213100", + "Timestamp": "2024-05-15T17:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.880800", + "Timestamp": "2024-05-15T17:00:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.880800", + "Timestamp": "2024-05-15T17:00:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.880800", + "Timestamp": "2024-05-15T17:00:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-15T16:46:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078000", + "Timestamp": "2024-05-15T16:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074300", + "Timestamp": "2024-05-15T16:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018000", + "Timestamp": "2024-05-15T16:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123400", + "Timestamp": "2024-05-15T16:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119700", + "Timestamp": "2024-05-15T16:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063400", + "Timestamp": "2024-05-15T16:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082300", + "Timestamp": "2024-05-15T16:45:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.053300", + "Timestamp": "2024-05-15T16:45:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022300", + "Timestamp": "2024-05-15T16:45:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090600", + "Timestamp": "2024-05-15T16:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086900", + "Timestamp": "2024-05-15T16:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030600", + "Timestamp": "2024-05-15T16:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010600", + "Timestamp": "2024-05-15T16:02:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.321900", + "Timestamp": "2024-05-15T16:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.067000", + "Timestamp": "2024-05-15T16:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075500", + "Timestamp": "2024-05-15T16:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.046500", + "Timestamp": "2024-05-15T16:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015500", + "Timestamp": "2024-05-15T16:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212400", + "Timestamp": "2024-05-15T16:01:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.609800", + "Timestamp": "2024-05-15T16:00:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.609800", + "Timestamp": "2024-05-15T16:00:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.318400", + "Timestamp": "2024-05-15T15:47:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.269200", + "Timestamp": "2024-05-15T15:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.256000", + "Timestamp": "2024-05-15T15:41:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.256000", + "Timestamp": "2024-05-15T15:41:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021300", + "Timestamp": "2024-05-15T15:36:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.796800", + "Timestamp": "2024-05-15T15:36:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.796800", + "Timestamp": "2024-05-15T15:36:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.796800", + "Timestamp": "2024-05-15T15:36:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.695200", + "Timestamp": "2024-05-15T15:35:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.695200", + "Timestamp": "2024-05-15T15:35:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.695200", + "Timestamp": "2024-05-15T15:35:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.104400", + "Timestamp": "2024-05-15T15:34:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.099400", + "Timestamp": "2024-05-15T15:34:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.974400", + "Timestamp": "2024-05-15T15:34:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.390400", + "Timestamp": "2024-05-15T15:34:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.390400", + "Timestamp": "2024-05-15T15:34:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.390400", + "Timestamp": "2024-05-15T15:34:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.575200", + "Timestamp": "2024-05-15T15:34:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.575200", + "Timestamp": "2024-05-15T15:34:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.575200", + "Timestamp": "2024-05-15T15:34:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.855400", + "Timestamp": "2024-05-15T15:34:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.850400", + "Timestamp": "2024-05-15T15:34:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.725400", + "Timestamp": "2024-05-15T15:34:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.829400", + "Timestamp": "2024-05-15T15:34:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.829400", + "Timestamp": "2024-05-15T15:34:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.829400", + "Timestamp": "2024-05-15T15:34:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062900", + "Timestamp": "2024-05-15T15:33:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062900", + "Timestamp": "2024-05-15T15:33:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002900", + "Timestamp": "2024-05-15T15:33:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002900", + "Timestamp": "2024-05-15T15:33:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002900", + "Timestamp": "2024-05-15T15:33:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002900", + "Timestamp": "2024-05-15T15:33:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.256000", + "Timestamp": "2024-05-15T15:33:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.256000", + "Timestamp": "2024-05-15T15:33:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080400", + "Timestamp": "2024-05-15T15:33:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082700", + "Timestamp": "2024-05-15T15:33:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076700", + "Timestamp": "2024-05-15T15:33:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079000", + "Timestamp": "2024-05-15T15:33:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020400", + "Timestamp": "2024-05-15T15:33:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022700", + "Timestamp": "2024-05-15T15:33:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.024600", + "Timestamp": "2024-05-15T15:33:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.024700", + "Timestamp": "2024-05-15T15:33:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.025000", + "Timestamp": "2024-05-15T15:33:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062400", + "Timestamp": "2024-05-15T15:33:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062500", + "Timestamp": "2024-05-15T15:33:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002400", + "Timestamp": "2024-05-15T15:33:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-15T15:33:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002400", + "Timestamp": "2024-05-15T15:33:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-15T15:33:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005400", + "Timestamp": "2024-05-15T15:33:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005300", + "Timestamp": "2024-05-15T15:33:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005300", + "Timestamp": "2024-05-15T15:33:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.898500", + "Timestamp": "2024-05-15T15:33:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.788000", + "Timestamp": "2024-05-15T15:33:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.788000", + "Timestamp": "2024-05-15T15:33:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.716800", + "Timestamp": "2024-05-15T15:33:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.716800", + "Timestamp": "2024-05-15T15:33:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.716800", + "Timestamp": "2024-05-15T15:33:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.230900", + "Timestamp": "2024-05-15T15:33:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.538000", + "Timestamp": "2024-05-15T15:33:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.538000", + "Timestamp": "2024-05-15T15:33:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005300", + "Timestamp": "2024-05-15T15:32:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005300", + "Timestamp": "2024-05-15T15:32:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062600", + "Timestamp": "2024-05-15T15:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-15T15:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-15T15:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067400", + "Timestamp": "2024-05-15T15:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066400", + "Timestamp": "2024-05-15T15:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067000", + "Timestamp": "2024-05-15T15:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038700", + "Timestamp": "2024-05-15T15:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037700", + "Timestamp": "2024-05-15T15:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038300", + "Timestamp": "2024-05-15T15:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007400", + "Timestamp": "2024-05-15T15:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006400", + "Timestamp": "2024-05-15T15:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007000", + "Timestamp": "2024-05-15T15:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.100400", + "Timestamp": "2024-05-15T15:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g5g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131300", + "Timestamp": "2024-05-15T15:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g5g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127600", + "Timestamp": "2024-05-15T15:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "g5g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071300", + "Timestamp": "2024-05-15T15:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072000", + "Timestamp": "2024-05-15T15:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068300", + "Timestamp": "2024-05-15T15:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012000", + "Timestamp": "2024-05-15T15:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.117600", + "Timestamp": "2024-05-15T15:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.260300", + "Timestamp": "2024-05-15T15:01:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.025200", + "Timestamp": "2024-05-15T15:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.284800", + "Timestamp": "2024-05-15T14:50:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.284800", + "Timestamp": "2024-05-15T14:50:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.284800", + "Timestamp": "2024-05-15T14:50:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068700", + "Timestamp": "2024-05-15T14:47:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039700", + "Timestamp": "2024-05-15T14:47:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008700", + "Timestamp": "2024-05-15T14:47:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077600", + "Timestamp": "2024-05-15T14:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.048600", + "Timestamp": "2024-05-15T14:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017600", + "Timestamp": "2024-05-15T14:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.658800", + "Timestamp": "2024-05-15T14:33:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.658800", + "Timestamp": "2024-05-15T14:33:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.658800", + "Timestamp": "2024-05-15T14:33:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.580800", + "Timestamp": "2024-05-15T14:33:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.580800", + "Timestamp": "2024-05-15T14:33:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.580800", + "Timestamp": "2024-05-15T14:33:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.575800", + "Timestamp": "2024-05-15T14:33:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2iezn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.575800", + "Timestamp": "2024-05-15T14:33:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iezn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.575800", + "Timestamp": "2024-05-15T14:33:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.450800", + "Timestamp": "2024-05-15T14:33:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.450800", + "Timestamp": "2024-05-15T14:33:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.450800", + "Timestamp": "2024-05-15T14:33:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.129700", + "Timestamp": "2024-05-15T14:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121400", + "Timestamp": "2024-05-15T14:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.882000", + "Timestamp": "2024-05-15T14:25:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.852000", + "Timestamp": "2024-05-15T14:25:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.752000", + "Timestamp": "2024-05-15T14:25:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-15T14:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063100", + "Timestamp": "2024-05-15T14:16:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003100", + "Timestamp": "2024-05-15T14:16:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003100", + "Timestamp": "2024-05-15T14:16:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108300", + "Timestamp": "2024-05-15T14:15:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104300", + "Timestamp": "2024-05-15T14:15:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048300", + "Timestamp": "2024-05-15T14:15:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-15T13:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101800", + "Timestamp": "2024-05-15T13:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045800", + "Timestamp": "2024-05-15T13:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "c3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124100", + "Timestamp": "2024-05-15T13:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010600", + "Timestamp": "2024-05-15T13:22:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-15T13:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062900", + "Timestamp": "2024-05-15T13:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002900", + "Timestamp": "2024-05-15T13:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002900", + "Timestamp": "2024-05-15T13:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "m3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121400", + "Timestamp": "2024-05-15T13:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.243300", + "Timestamp": "2024-05-15T12:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074100", + "Timestamp": "2024-05-15T12:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070400", + "Timestamp": "2024-05-15T12:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014100", + "Timestamp": "2024-05-15T12:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.998800", + "Timestamp": "2024-05-15T12:32:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.998800", + "Timestamp": "2024-05-15T12:32:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.998800", + "Timestamp": "2024-05-15T12:32:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.993800", + "Timestamp": "2024-05-15T12:32:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.993800", + "Timestamp": "2024-05-15T12:32:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.993800", + "Timestamp": "2024-05-15T12:32:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.868800", + "Timestamp": "2024-05-15T12:32:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.868800", + "Timestamp": "2024-05-15T12:32:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.868800", + "Timestamp": "2024-05-15T12:32:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.284800", + "Timestamp": "2024-05-15T12:32:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.284800", + "Timestamp": "2024-05-15T12:32:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.284800", + "Timestamp": "2024-05-15T12:32:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221400", + "Timestamp": "2024-05-15T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.866600", + "Timestamp": "2024-05-15T12:28:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.866600", + "Timestamp": "2024-05-15T12:28:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.866600", + "Timestamp": "2024-05-15T12:28:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064400", + "Timestamp": "2024-05-15T12:23:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004400", + "Timestamp": "2024-05-15T12:23:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1c", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004400", + "Timestamp": "2024-05-15T12:23:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145800", + "Timestamp": "2024-05-15T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142100", + "Timestamp": "2024-05-15T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1d", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085800", + "Timestamp": "2024-05-15T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.600300", + "Timestamp": "2024-03-01T17:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.570300", + "Timestamp": "2024-03-01T17:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.470300", + "Timestamp": "2024-03-01T17:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-1a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.917100", + "Timestamp": "2024-03-01T16:17:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224000", + "Timestamp": "2024-05-16T14:07:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206000", + "Timestamp": "2024-05-16T14:06:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.412300", + "Timestamp": "2024-05-16T14:03:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.359900", + "Timestamp": "2024-05-16T14:02:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.331500", + "Timestamp": "2024-05-16T14:02:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.354900", + "Timestamp": "2024-05-16T14:02:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.326500", + "Timestamp": "2024-05-16T14:02:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.229900", + "Timestamp": "2024-05-16T14:02:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.201500", + "Timestamp": "2024-05-16T14:02:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.335700", + "Timestamp": "2024-05-16T14:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.224300", + "Timestamp": "2024-05-16T14:02:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.219300", + "Timestamp": "2024-05-16T14:02:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.094300", + "Timestamp": "2024-05-16T14:02:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107800", + "Timestamp": "2024-05-16T14:02:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104100", + "Timestamp": "2024-05-16T14:02:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047800", + "Timestamp": "2024-05-16T14:02:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.396200", + "Timestamp": "2024-05-16T14:02:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.391200", + "Timestamp": "2024-05-16T14:02:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.266200", + "Timestamp": "2024-05-16T14:02:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.742500", + "Timestamp": "2024-05-16T14:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.737500", + "Timestamp": "2024-05-16T14:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.612500", + "Timestamp": "2024-05-16T14:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.327300", + "Timestamp": "2024-05-16T14:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.322300", + "Timestamp": "2024-05-16T14:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.197300", + "Timestamp": "2024-05-16T14:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.657600", + "Timestamp": "2024-05-16T14:02:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.652600", + "Timestamp": "2024-05-16T14:02:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.527600", + "Timestamp": "2024-05-16T14:02:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.691900", + "Timestamp": "2024-05-16T14:02:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.686900", + "Timestamp": "2024-05-16T14:02:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.561900", + "Timestamp": "2024-05-16T14:02:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172300", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168600", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112300", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.904100", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.874100", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.774100", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103900", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143900", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043900", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.224400", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.219400", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094400", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141500", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137800", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081500", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.567000", + "Timestamp": "2024-05-16T14:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.562000", + "Timestamp": "2024-05-16T14:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.437000", + "Timestamp": "2024-05-16T14:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.372800", + "Timestamp": "2024-05-16T14:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.367800", + "Timestamp": "2024-05-16T14:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242800", + "Timestamp": "2024-05-16T14:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.420400", + "Timestamp": "2024-05-16T14:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.415400", + "Timestamp": "2024-05-16T14:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.290400", + "Timestamp": "2024-05-16T14:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.798700", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.793700", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.668700", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.681600", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.676600", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.551600", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.527200", + "Timestamp": "2024-05-16T14:02:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.950700", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.062300", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.057300", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.932300", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099500", + "Timestamp": "2024-05-16T14:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095500", + "Timestamp": "2024-05-16T14:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039500", + "Timestamp": "2024-05-16T14:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.341800", + "Timestamp": "2024-05-16T14:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.336800", + "Timestamp": "2024-05-16T14:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.211800", + "Timestamp": "2024-05-16T14:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.218900", + "Timestamp": "2024-05-16T14:02:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.213900", + "Timestamp": "2024-05-16T14:02:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.088900", + "Timestamp": "2024-05-16T14:02:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.914200", + "Timestamp": "2024-05-16T14:02:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.909200", + "Timestamp": "2024-05-16T14:02:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.784200", + "Timestamp": "2024-05-16T14:02:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166900", + "Timestamp": "2024-05-16T14:02:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163200", + "Timestamp": "2024-05-16T14:02:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-16T14:02:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.428300", + "Timestamp": "2024-05-16T14:02:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.423300", + "Timestamp": "2024-05-16T14:02:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.298300", + "Timestamp": "2024-05-16T14:02:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.622700", + "Timestamp": "2024-05-16T14:02:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.617700", + "Timestamp": "2024-05-16T14:02:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.492700", + "Timestamp": "2024-05-16T14:02:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.650600", + "Timestamp": "2024-05-16T14:02:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.645600", + "Timestamp": "2024-05-16T14:02:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.520600", + "Timestamp": "2024-05-16T14:02:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.656500", + "Timestamp": "2024-05-16T14:02:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.651500", + "Timestamp": "2024-05-16T14:02:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.526500", + "Timestamp": "2024-05-16T14:02:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.881800", + "Timestamp": "2024-05-16T14:02:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213400", + "Timestamp": "2024-05-16T14:02:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.084100", + "Timestamp": "2024-05-16T14:01:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.301200", + "Timestamp": "2024-05-16T14:01:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.296200", + "Timestamp": "2024-05-16T14:01:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.171200", + "Timestamp": "2024-05-16T14:01:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.449900", + "Timestamp": "2024-05-16T14:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.691900", + "Timestamp": "2024-05-16T14:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297900", + "Timestamp": "2024-05-16T14:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g3s.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293900", + "Timestamp": "2024-05-16T14:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.237900", + "Timestamp": "2024-05-16T14:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.372800", + "Timestamp": "2024-05-16T14:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.367800", + "Timestamp": "2024-05-16T14:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242800", + "Timestamp": "2024-05-16T14:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.493300", + "Timestamp": "2024-05-16T14:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.014200", + "Timestamp": "2024-05-16T14:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097700", + "Timestamp": "2024-05-16T14:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094000", + "Timestamp": "2024-05-16T14:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037700", + "Timestamp": "2024-05-16T14:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.290000", + "Timestamp": "2024-05-16T14:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.260000", + "Timestamp": "2024-05-16T14:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.160000", + "Timestamp": "2024-05-16T14:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.001100", + "Timestamp": "2024-05-16T14:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429200", + "Timestamp": "2024-05-16T14:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.653700", + "Timestamp": "2024-05-16T14:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.648700", + "Timestamp": "2024-05-16T14:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.523700", + "Timestamp": "2024-05-16T14:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.497000", + "Timestamp": "2024-05-16T14:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.094100", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062100", + "Timestamp": "2024-05-16T14:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002100", + "Timestamp": "2024-05-16T14:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002100", + "Timestamp": "2024-05-16T14:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.494300", + "Timestamp": "2024-05-16T14:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.538500", + "Timestamp": "2024-05-16T14:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.775400", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.770400", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.645400", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.857600", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.695200", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.690200", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.565200", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065100", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008800", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.665300", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.620000", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.590000", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.490000", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.292300", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.287300", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.162300", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.198100", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.835500", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.830500", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.705500", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.811300", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.810800", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.806300", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.805800", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.681300", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.680800", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.963200", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.958200", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.833200", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298800", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293800", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168800", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.655400", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.381600", + "Timestamp": "2024-05-16T14:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.376600", + "Timestamp": "2024-05-16T14:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.251600", + "Timestamp": "2024-05-16T14:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.121800", + "Timestamp": "2024-05-16T14:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.091800", + "Timestamp": "2024-05-16T14:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.991800", + "Timestamp": "2024-05-16T14:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.304600", + "Timestamp": "2024-05-16T14:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.299600", + "Timestamp": "2024-05-16T14:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.174600", + "Timestamp": "2024-05-16T14:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.620300", + "Timestamp": "2024-05-16T14:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.615300", + "Timestamp": "2024-05-16T14:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.490300", + "Timestamp": "2024-05-16T14:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.352800", + "Timestamp": "2024-05-16T14:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.347800", + "Timestamp": "2024-05-16T14:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.222800", + "Timestamp": "2024-05-16T14:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.023600", + "Timestamp": "2024-05-16T13:57:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.325900", + "Timestamp": "2024-05-16T13:47:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.605800", + "Timestamp": "2024-05-16T13:47:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.575800", + "Timestamp": "2024-05-16T13:47:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.475800", + "Timestamp": "2024-05-16T13:47:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.509900", + "Timestamp": "2024-05-16T13:47:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.504900", + "Timestamp": "2024-05-16T13:47:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.379900", + "Timestamp": "2024-05-16T13:47:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.389400", + "Timestamp": "2024-05-16T13:47:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.085400", + "Timestamp": "2024-05-16T13:47:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.080400", + "Timestamp": "2024-05-16T13:47:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.955400", + "Timestamp": "2024-05-16T13:47:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122000", + "Timestamp": "2024-05-16T13:47:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118300", + "Timestamp": "2024-05-16T13:47:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062000", + "Timestamp": "2024-05-16T13:47:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.078700", + "Timestamp": "2024-05-16T13:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160500", + "Timestamp": "2024-05-16T13:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.200500", + "Timestamp": "2024-05-16T13:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100500", + "Timestamp": "2024-05-16T13:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.707800", + "Timestamp": "2024-05-16T13:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.016900", + "Timestamp": "2024-05-16T13:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.991400", + "Timestamp": "2024-05-16T13:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.961400", + "Timestamp": "2024-05-16T13:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.861400", + "Timestamp": "2024-05-16T13:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.230300", + "Timestamp": "2024-05-16T13:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.419100", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.414100", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.289100", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098500", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094800", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038500", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.872200", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.867200", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.742200", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.524300", + "Timestamp": "2024-05-16T13:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278900", + "Timestamp": "2024-05-16T13:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.274900", + "Timestamp": "2024-05-16T13:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.218900", + "Timestamp": "2024-05-16T13:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.879600", + "Timestamp": "2024-05-16T13:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.421000", + "Timestamp": "2024-05-16T13:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.730600", + "Timestamp": "2024-05-16T13:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.725600", + "Timestamp": "2024-05-16T13:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.600600", + "Timestamp": "2024-05-16T13:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.506500", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.501500", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.376500", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.647700", + "Timestamp": "2024-05-16T13:47:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.527800", + "Timestamp": "2024-05-16T13:47:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.522800", + "Timestamp": "2024-05-16T13:47:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.397800", + "Timestamp": "2024-05-16T13:47:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.487000", + "Timestamp": "2024-05-16T13:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.482000", + "Timestamp": "2024-05-16T13:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.357000", + "Timestamp": "2024-05-16T13:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.813300", + "Timestamp": "2024-05-16T13:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.808300", + "Timestamp": "2024-05-16T13:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.683300", + "Timestamp": "2024-05-16T13:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.626600", + "Timestamp": "2024-05-16T13:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.621600", + "Timestamp": "2024-05-16T13:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.496600", + "Timestamp": "2024-05-16T13:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093300", + "Timestamp": "2024-05-16T13:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089300", + "Timestamp": "2024-05-16T13:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033300", + "Timestamp": "2024-05-16T13:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.109200", + "Timestamp": "2024-05-16T13:47:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154000", + "Timestamp": "2024-05-16T13:47:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.194000", + "Timestamp": "2024-05-16T13:47:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094000", + "Timestamp": "2024-05-16T13:47:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.611000", + "Timestamp": "2024-05-16T13:47:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.581000", + "Timestamp": "2024-05-16T13:47:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.481000", + "Timestamp": "2024-05-16T13:47:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.841400", + "Timestamp": "2024-05-16T13:47:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.874800", + "Timestamp": "2024-05-16T13:47:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.869800", + "Timestamp": "2024-05-16T13:47:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.744800", + "Timestamp": "2024-05-16T13:47:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138400", + "Timestamp": "2024-05-16T13:47:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134700", + "Timestamp": "2024-05-16T13:47:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078400", + "Timestamp": "2024-05-16T13:47:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.650700", + "Timestamp": "2024-05-16T13:47:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.263500", + "Timestamp": "2024-05-16T13:47:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.645700", + "Timestamp": "2024-05-16T13:47:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.258500", + "Timestamp": "2024-05-16T13:47:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.520700", + "Timestamp": "2024-05-16T13:47:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.133500", + "Timestamp": "2024-05-16T13:47:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071900", + "Timestamp": "2024-05-16T13:47:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042900", + "Timestamp": "2024-05-16T13:47:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011900", + "Timestamp": "2024-05-16T13:47:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.490000", + "Timestamp": "2024-05-16T13:47:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.093200", + "Timestamp": "2024-05-16T13:47:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.088200", + "Timestamp": "2024-05-16T13:47:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.963200", + "Timestamp": "2024-05-16T13:47:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.010700", + "Timestamp": "2024-05-16T13:47:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.421100", + "Timestamp": "2024-05-16T13:47:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.302700", + "Timestamp": "2024-05-16T13:47:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.272700", + "Timestamp": "2024-05-16T13:47:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172700", + "Timestamp": "2024-05-16T13:47:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T13:47:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-16T13:47:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044200", + "Timestamp": "2024-05-16T13:47:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.699400", + "Timestamp": "2024-05-16T13:47:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.931600", + "Timestamp": "2024-05-16T13:47:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.926600", + "Timestamp": "2024-05-16T13:47:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.801600", + "Timestamp": "2024-05-16T13:47:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.697800", + "Timestamp": "2024-05-16T13:46:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.058700", + "Timestamp": "2024-05-16T13:46:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.520700", + "Timestamp": "2024-05-16T13:46:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.725000", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.720000", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.595000", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.885900", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.118100", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.088100", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.988100", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.528900", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.523900", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.398900", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.716100", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.450200", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.538800", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.508800", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.408800", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.248800", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.243800", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118800", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.770500", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.005900", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.765500", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.000900", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.640500", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.875900", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354800", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.393600", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349800", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.388600", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224800", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.263600", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.822300", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.817300", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.692300", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.759500", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.056000", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.051000", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.926000", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068100", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039100", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008100", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441000", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.067500", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.037500", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.937500", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101300", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141300", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041300", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.286000", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281000", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156000", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136000", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132000", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076000", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.985700", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.474600", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.726900", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.721900", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.596900", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.808600", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.825900", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.820900", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.695900", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.699700", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.694700", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.569700", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.993900", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.438900", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.928700", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.865100", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.864600", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.412600", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.407600", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.282600", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093300", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089600", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033300", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.279600", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.274600", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.149600", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152100", + "Timestamp": "2024-05-16T13:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192100", + "Timestamp": "2024-05-16T13:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092100", + "Timestamp": "2024-05-16T13:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.340000", + "Timestamp": "2024-05-16T13:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.665200", + "Timestamp": "2024-05-16T13:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.877900", + "Timestamp": "2024-05-16T13:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.760200", + "Timestamp": "2024-05-16T13:46:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.755200", + "Timestamp": "2024-05-16T13:46:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.630200", + "Timestamp": "2024-05-16T13:46:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.739700", + "Timestamp": "2024-05-16T13:45:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.739700", + "Timestamp": "2024-05-16T13:45:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.431500", + "Timestamp": "2024-05-16T13:44:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.431700", + "Timestamp": "2024-05-16T13:44:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.426500", + "Timestamp": "2024-05-16T13:44:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.426700", + "Timestamp": "2024-05-16T13:44:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.301500", + "Timestamp": "2024-05-16T13:44:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.301700", + "Timestamp": "2024-05-16T13:44:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.823200", + "Timestamp": "2024-05-16T13:44:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.824000", + "Timestamp": "2024-05-16T13:44:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T13:38:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.529400", + "Timestamp": "2024-05-16T13:32:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T13:32:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.269200", + "Timestamp": "2024-05-16T13:32:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219900", + "Timestamp": "2024-05-16T13:32:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.009600", + "Timestamp": "2024-05-16T13:32:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.470100", + "Timestamp": "2024-05-16T13:32:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.612500", + "Timestamp": "2024-05-16T13:32:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.448800", + "Timestamp": "2024-05-16T13:32:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.418800", + "Timestamp": "2024-05-16T13:32:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.318800", + "Timestamp": "2024-05-16T13:32:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.712200", + "Timestamp": "2024-05-16T13:32:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.467300", + "Timestamp": "2024-05-16T13:32:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.731400", + "Timestamp": "2024-05-16T13:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.462900", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.457900", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.332900", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.135500", + "Timestamp": "2024-05-16T13:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.130500", + "Timestamp": "2024-05-16T13:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.005500", + "Timestamp": "2024-05-16T13:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.625900", + "Timestamp": "2024-05-16T13:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.620900", + "Timestamp": "2024-05-16T13:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.495900", + "Timestamp": "2024-05-16T13:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212300", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.659300", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.629300", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.529300", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.351900", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.346900", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.221900", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.817400", + "Timestamp": "2024-05-16T13:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.812400", + "Timestamp": "2024-05-16T13:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.687400", + "Timestamp": "2024-05-16T13:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.573400", + "Timestamp": "2024-05-16T13:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.568400", + "Timestamp": "2024-05-16T13:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.443400", + "Timestamp": "2024-05-16T13:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.267400", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262400", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137400", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.734300", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.704300", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.604300", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.474600", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.469600", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.344600", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.251000", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.247300", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.191000", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.316600", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.286600", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186600", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.393100", + "Timestamp": "2024-05-16T13:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.367800", + "Timestamp": "2024-05-16T13:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.363100", + "Timestamp": "2024-05-16T13:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.337800", + "Timestamp": "2024-05-16T13:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.263100", + "Timestamp": "2024-05-16T13:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.237800", + "Timestamp": "2024-05-16T13:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.740300", + "Timestamp": "2024-05-16T13:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.735300", + "Timestamp": "2024-05-16T13:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.610300", + "Timestamp": "2024-05-16T13:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.280800", + "Timestamp": "2024-05-16T13:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.275800", + "Timestamp": "2024-05-16T13:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150800", + "Timestamp": "2024-05-16T13:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.002800", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.997800", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.872800", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.128200", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.123200", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.998200", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.422400", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.417400", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.292400", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.521300", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.175500", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.171500", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115500", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.828900", + "Timestamp": "2024-05-16T13:32:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.823900", + "Timestamp": "2024-05-16T13:32:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.698900", + "Timestamp": "2024-05-16T13:32:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.100700", + "Timestamp": "2024-05-16T13:32:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.095700", + "Timestamp": "2024-05-16T13:32:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.970700", + "Timestamp": "2024-05-16T13:32:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.958500", + "Timestamp": "2024-05-16T13:32:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.953500", + "Timestamp": "2024-05-16T13:32:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.828500", + "Timestamp": "2024-05-16T13:32:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-16T13:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.214000", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.209000", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.084000", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.781600", + "Timestamp": "2024-05-16T13:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.776600", + "Timestamp": "2024-05-16T13:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.651600", + "Timestamp": "2024-05-16T13:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.360500", + "Timestamp": "2024-05-16T13:32:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.355500", + "Timestamp": "2024-05-16T13:32:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.230500", + "Timestamp": "2024-05-16T13:32:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.348100", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.343100", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.218100", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.546100", + "Timestamp": "2024-05-16T13:32:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.516100", + "Timestamp": "2024-05-16T13:32:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.416100", + "Timestamp": "2024-05-16T13:32:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.092100", + "Timestamp": "2024-05-16T13:32:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134000", + "Timestamp": "2024-05-16T13:32:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130300", + "Timestamp": "2024-05-16T13:32:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074000", + "Timestamp": "2024-05-16T13:32:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105500", + "Timestamp": "2024-05-16T13:32:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138300", + "Timestamp": "2024-05-16T13:32:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T13:32:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078300", + "Timestamp": "2024-05-16T13:32:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.664600", + "Timestamp": "2024-05-16T13:32:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.974700", + "Timestamp": "2024-05-16T13:31:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.027400", + "Timestamp": "2024-05-16T13:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T13:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148700", + "Timestamp": "2024-05-16T13:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048700", + "Timestamp": "2024-05-16T13:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.027300", + "Timestamp": "2024-05-16T13:31:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.022300", + "Timestamp": "2024-05-16T13:31:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.897300", + "Timestamp": "2024-05-16T13:31:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.223400", + "Timestamp": "2024-05-16T13:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.974500", + "Timestamp": "2024-05-16T13:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.969500", + "Timestamp": "2024-05-16T13:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.844500", + "Timestamp": "2024-05-16T13:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.230500", + "Timestamp": "2024-05-16T13:31:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.225500", + "Timestamp": "2024-05-16T13:31:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100500", + "Timestamp": "2024-05-16T13:31:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.814900", + "Timestamp": "2024-05-16T13:31:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.384300", + "Timestamp": "2024-05-16T13:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.354300", + "Timestamp": "2024-05-16T13:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.254300", + "Timestamp": "2024-05-16T13:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273200", + "Timestamp": "2024-05-16T13:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268200", + "Timestamp": "2024-05-16T13:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143200", + "Timestamp": "2024-05-16T13:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.686400", + "Timestamp": "2024-05-16T13:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.315900", + "Timestamp": "2024-05-16T13:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.310900", + "Timestamp": "2024-05-16T13:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.185900", + "Timestamp": "2024-05-16T13:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.612300", + "Timestamp": "2024-05-16T13:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.619700", + "Timestamp": "2024-05-16T13:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.614700", + "Timestamp": "2024-05-16T13:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.489700", + "Timestamp": "2024-05-16T13:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.016900", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.270600", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.240600", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.140600", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.838300", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.833300", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.708300", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.711900", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.630700", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.625700", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.500700", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.007800", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.002800", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.877800", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.238100", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.233100", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.416700", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.575700", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.808200", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.803200", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.678200", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.380600", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.375600", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.250600", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.635700", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.239000", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.235000", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.179000", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.749300", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.744300", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.619300", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.998800", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.957100", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.968800", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.927100", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.868800", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.827100", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.406400", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.525600", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.953900", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.923900", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.823900", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093200", + "Timestamp": "2024-05-16T13:17:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089500", + "Timestamp": "2024-05-16T13:17:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033200", + "Timestamp": "2024-05-16T13:17:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.672100", + "Timestamp": "2024-05-16T13:17:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.642100", + "Timestamp": "2024-05-16T13:17:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.542100", + "Timestamp": "2024-05-16T13:17:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.532700", + "Timestamp": "2024-05-16T13:17:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.665400", + "Timestamp": "2024-05-16T13:17:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.660400", + "Timestamp": "2024-05-16T13:17:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.535400", + "Timestamp": "2024-05-16T13:17:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173400", + "Timestamp": "2024-05-16T13:17:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169400", + "Timestamp": "2024-05-16T13:17:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113400", + "Timestamp": "2024-05-16T13:17:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114700", + "Timestamp": "2024-05-16T13:17:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T13:17:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054700", + "Timestamp": "2024-05-16T13:17:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.019000", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.284600", + "Timestamp": "2024-05-16T13:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.279600", + "Timestamp": "2024-05-16T13:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.154600", + "Timestamp": "2024-05-16T13:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.050500", + "Timestamp": "2024-05-16T13:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.484600", + "Timestamp": "2024-05-16T13:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.454600", + "Timestamp": "2024-05-16T13:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.354600", + "Timestamp": "2024-05-16T13:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122300", + "Timestamp": "2024-05-16T13:17:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118300", + "Timestamp": "2024-05-16T13:17:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062300", + "Timestamp": "2024-05-16T13:17:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.196700", + "Timestamp": "2024-05-16T13:17:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.311800", + "Timestamp": "2024-05-16T13:17:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174700", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.171000", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114700", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.664700", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.659700", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.534700", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.274900", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.244900", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144900", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079000", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075300", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019000", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.716300", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.711300", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.586300", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160700", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156700", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100700", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.624000", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.619000", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.494000", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.811200", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.806200", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.681200", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.097600", + "Timestamp": "2024-05-16T13:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.628500", + "Timestamp": "2024-05-16T13:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.814400", + "Timestamp": "2024-05-16T13:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.404300", + "Timestamp": "2024-05-16T13:17:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.399300", + "Timestamp": "2024-05-16T13:17:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.274300", + "Timestamp": "2024-05-16T13:17:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.285200", + "Timestamp": "2024-05-16T13:17:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.280200", + "Timestamp": "2024-05-16T13:17:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.155200", + "Timestamp": "2024-05-16T13:17:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.720800", + "Timestamp": "2024-05-16T13:17:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.394300", + "Timestamp": "2024-05-16T13:17:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.579000", + "Timestamp": "2024-05-16T13:17:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.574000", + "Timestamp": "2024-05-16T13:17:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.449000", + "Timestamp": "2024-05-16T13:17:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217400", + "Timestamp": "2024-05-16T13:17:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.291300", + "Timestamp": "2024-05-16T13:17:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.786100", + "Timestamp": "2024-05-16T13:17:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129500", + "Timestamp": "2024-05-16T13:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125500", + "Timestamp": "2024-05-16T13:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069500", + "Timestamp": "2024-05-16T13:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068300", + "Timestamp": "2024-05-16T13:17:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.064600", + "Timestamp": "2024-05-16T13:17:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008300", + "Timestamp": "2024-05-16T13:17:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.431500", + "Timestamp": "2024-05-16T13:16:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.426500", + "Timestamp": "2024-05-16T13:16:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.301500", + "Timestamp": "2024-05-16T13:16:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.126400", + "Timestamp": "2024-05-16T13:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.017900", + "Timestamp": "2024-05-16T13:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.050100", + "Timestamp": "2024-05-16T13:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.346900", + "Timestamp": "2024-05-16T13:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.316900", + "Timestamp": "2024-05-16T13:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.216900", + "Timestamp": "2024-05-16T13:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.404800", + "Timestamp": "2024-05-16T13:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.334700", + "Timestamp": "2024-05-16T13:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.329700", + "Timestamp": "2024-05-16T13:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.204700", + "Timestamp": "2024-05-16T13:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.506300", + "Timestamp": "2024-05-16T13:16:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.260300", + "Timestamp": "2024-05-16T13:16:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.300300", + "Timestamp": "2024-05-16T13:16:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200300", + "Timestamp": "2024-05-16T13:16:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.612300", + "Timestamp": "2024-05-16T13:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.846300", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.841300", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.716300", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.006100", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.001100", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.876100", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132400", + "Timestamp": "2024-05-16T13:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128400", + "Timestamp": "2024-05-16T13:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072400", + "Timestamp": "2024-05-16T13:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.732700", + "Timestamp": "2024-05-16T13:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.727700", + "Timestamp": "2024-05-16T13:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.602700", + "Timestamp": "2024-05-16T13:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.777500", + "Timestamp": "2024-05-16T13:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.479500", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223100", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.226200", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.221200", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.096200", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.655600", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.546100", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.541100", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.416100", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.693200", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.767500", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.737500", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.637500", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.644500", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.639500", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.514500", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.831200", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.184100", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.179100", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.054100", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.652500", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.404300", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.399300", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.274300", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.404800", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.555300", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.550300", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.425300", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.843800", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.838800", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.713800", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129800", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126100", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069800", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.134900", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.129900", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.004900", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.709400", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.929400", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.899400", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.799400", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094100", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090400", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034100", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.005900", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.000900", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.875900", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.422700", + "Timestamp": "2024-05-16T13:16:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073300", + "Timestamp": "2024-05-16T13:03:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069600", + "Timestamp": "2024-05-16T13:03:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013300", + "Timestamp": "2024-05-16T13:03:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.618600", + "Timestamp": "2024-05-16T13:02:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.613600", + "Timestamp": "2024-05-16T13:02:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.488600", + "Timestamp": "2024-05-16T13:02:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.445400", + "Timestamp": "2024-05-16T13:02:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.428700", + "Timestamp": "2024-05-16T13:02:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.043800", + "Timestamp": "2024-05-16T13:02:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.013800", + "Timestamp": "2024-05-16T13:02:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.913800", + "Timestamp": "2024-05-16T13:02:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.979400", + "Timestamp": "2024-05-16T13:02:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.453600", + "Timestamp": "2024-05-16T13:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.448600", + "Timestamp": "2024-05-16T13:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.323600", + "Timestamp": "2024-05-16T13:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.893300", + "Timestamp": "2024-05-16T13:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.888300", + "Timestamp": "2024-05-16T13:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.763300", + "Timestamp": "2024-05-16T13:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.818800", + "Timestamp": "2024-05-16T13:02:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.813800", + "Timestamp": "2024-05-16T13:02:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.688800", + "Timestamp": "2024-05-16T13:02:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.577300", + "Timestamp": "2024-05-16T13:02:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.572300", + "Timestamp": "2024-05-16T13:02:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.447300", + "Timestamp": "2024-05-16T13:02:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.347100", + "Timestamp": "2024-05-16T13:02:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.342100", + "Timestamp": "2024-05-16T13:02:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.217100", + "Timestamp": "2024-05-16T13:02:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-16T13:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094400", + "Timestamp": "2024-05-16T13:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038100", + "Timestamp": "2024-05-16T13:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.973500", + "Timestamp": "2024-05-16T13:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.968500", + "Timestamp": "2024-05-16T13:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.843500", + "Timestamp": "2024-05-16T13:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.031900", + "Timestamp": "2024-05-16T13:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.001900", + "Timestamp": "2024-05-16T13:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.901900", + "Timestamp": "2024-05-16T13:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.489500", + "Timestamp": "2024-05-16T13:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.464400", + "Timestamp": "2024-05-16T13:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.753200", + "Timestamp": "2024-05-16T13:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.748200", + "Timestamp": "2024-05-16T13:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.623200", + "Timestamp": "2024-05-16T13:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.570400", + "Timestamp": "2024-05-16T13:02:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.206200", + "Timestamp": "2024-05-16T13:02:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.202200", + "Timestamp": "2024-05-16T13:02:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146200", + "Timestamp": "2024-05-16T13:02:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.366000", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.361000", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.236000", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.601400", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.596400", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.471400", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.237500", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232500", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.280400", + "Timestamp": "2024-05-16T13:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314300", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.309300", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184300", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.202600", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.197600", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.072600", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.770100", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.765100", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.640100", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.690500", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.660500", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.560500", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225100", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139100", + "Timestamp": "2024-05-16T13:02:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135100", + "Timestamp": "2024-05-16T13:02:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079100", + "Timestamp": "2024-05-16T13:02:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.888500", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.883500", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.758500", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.365800", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.360800", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.235800", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.450000", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.445000", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.320000", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128400", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135300", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124700", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131600", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068400", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075300", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158800", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198800", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121000", + "Timestamp": "2024-05-16T13:02:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.650200", + "Timestamp": "2024-05-16T13:02:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.645200", + "Timestamp": "2024-05-16T13:02:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.520200", + "Timestamp": "2024-05-16T13:02:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.856100", + "Timestamp": "2024-05-16T13:02:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.458600", + "Timestamp": "2024-05-16T13:02:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.453600", + "Timestamp": "2024-05-16T13:02:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.328600", + "Timestamp": "2024-05-16T13:02:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.372300", + "Timestamp": "2024-05-16T13:02:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.367300", + "Timestamp": "2024-05-16T13:02:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242300", + "Timestamp": "2024-05-16T13:02:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.524800", + "Timestamp": "2024-05-16T13:02:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "13.119400", + "Timestamp": "2024-05-16T13:02:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062500", + "Timestamp": "2024-05-16T13:02:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-16T13:02:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-16T13:02:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.525200", + "Timestamp": "2024-05-16T13:02:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.476800", + "Timestamp": "2024-05-16T13:02:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134700", + "Timestamp": "2024-05-16T13:02:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130700", + "Timestamp": "2024-05-16T13:02:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074700", + "Timestamp": "2024-05-16T13:02:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.316400", + "Timestamp": "2024-05-16T13:02:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.311400", + "Timestamp": "2024-05-16T13:02:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.186400", + "Timestamp": "2024-05-16T13:02:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114100", + "Timestamp": "2024-05-16T13:01:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110400", + "Timestamp": "2024-05-16T13:01:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054100", + "Timestamp": "2024-05-16T13:01:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.002000", + "Timestamp": "2024-05-16T13:01:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.406800", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.401800", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.276800", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.002300", + "Timestamp": "2024-05-16T13:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.460600", + "Timestamp": "2024-05-16T13:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.413900", + "Timestamp": "2024-05-16T13:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.849800", + "Timestamp": "2024-05-16T13:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.819800", + "Timestamp": "2024-05-16T13:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.719800", + "Timestamp": "2024-05-16T13:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.507700", + "Timestamp": "2024-05-16T13:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.502700", + "Timestamp": "2024-05-16T13:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.377700", + "Timestamp": "2024-05-16T13:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.311300", + "Timestamp": "2024-05-16T13:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.739600", + "Timestamp": "2024-05-16T13:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.677400", + "Timestamp": "2024-05-16T13:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.083900", + "Timestamp": "2024-05-16T13:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.078900", + "Timestamp": "2024-05-16T13:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.953900", + "Timestamp": "2024-05-16T13:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.823600", + "Timestamp": "2024-05-16T13:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.358900", + "Timestamp": "2024-05-16T13:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.353900", + "Timestamp": "2024-05-16T13:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.228900", + "Timestamp": "2024-05-16T13:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.718200", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.364400", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334400", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.234400", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.542300", + "Timestamp": "2024-05-16T13:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.473900", + "Timestamp": "2024-05-16T13:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.468900", + "Timestamp": "2024-05-16T13:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.343900", + "Timestamp": "2024-05-16T13:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148100", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144100", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.770300", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.740300", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.640300", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.442800", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.690200", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.685200", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.560200", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.643900", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.638900", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.513900", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.196000", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.166000", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.066000", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.583500", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.578500", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.453500", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.903800", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.898800", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.773800", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.006100", + "Timestamp": "2024-05-16T12:52:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T12:51:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.572100", + "Timestamp": "2024-05-16T12:47:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.567100", + "Timestamp": "2024-05-16T12:47:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.442100", + "Timestamp": "2024-05-16T12:47:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.356600", + "Timestamp": "2024-05-16T12:47:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.695500", + "Timestamp": "2024-05-16T12:47:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429600", + "Timestamp": "2024-05-16T12:47:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.044800", + "Timestamp": "2024-05-16T12:47:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.040400", + "Timestamp": "2024-05-16T12:47:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.080400", + "Timestamp": "2024-05-16T12:47:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.075400", + "Timestamp": "2024-05-16T12:47:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.950400", + "Timestamp": "2024-05-16T12:47:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111600", + "Timestamp": "2024-05-16T12:47:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107900", + "Timestamp": "2024-05-16T12:47:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051600", + "Timestamp": "2024-05-16T12:47:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.993600", + "Timestamp": "2024-05-16T12:47:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.849600", + "Timestamp": "2024-05-16T12:47:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070000", + "Timestamp": "2024-05-16T12:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041000", + "Timestamp": "2024-05-16T12:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010000", + "Timestamp": "2024-05-16T12:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.402800", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.584800", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.351100", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.346100", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.221100", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.338100", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.651800", + "Timestamp": "2024-05-16T12:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.646800", + "Timestamp": "2024-05-16T12:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.521800", + "Timestamp": "2024-05-16T12:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.254100", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.249100", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124100", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.679100", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.367200", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.674100", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.362200", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.549100", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.237200", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.489000", + "Timestamp": "2024-05-16T12:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.727700", + "Timestamp": "2024-05-16T12:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.722700", + "Timestamp": "2024-05-16T12:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.597700", + "Timestamp": "2024-05-16T12:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.436100", + "Timestamp": "2024-05-16T12:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.431100", + "Timestamp": "2024-05-16T12:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.306100", + "Timestamp": "2024-05-16T12:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362700", + "Timestamp": "2024-05-16T12:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.332700", + "Timestamp": "2024-05-16T12:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.232700", + "Timestamp": "2024-05-16T12:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.407800", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.402800", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.277800", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.107300", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.077300", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.977300", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.732200", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.727200", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.602200", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.200200", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.195200", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.070200", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.893400", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.888400", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.763400", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.974400", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.944400", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.844400", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.884300", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.718300", + "Timestamp": "2024-05-16T12:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.017200", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.012200", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.887200", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.303300", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.298300", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.173300", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.230100", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.019800", + "Timestamp": "2024-05-16T12:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.014800", + "Timestamp": "2024-05-16T12:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.889800", + "Timestamp": "2024-05-16T12:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.255900", + "Timestamp": "2024-05-16T12:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.325400", + "Timestamp": "2024-05-16T12:47:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.320400", + "Timestamp": "2024-05-16T12:47:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195400", + "Timestamp": "2024-05-16T12:47:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.065700", + "Timestamp": "2024-05-16T12:47:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.060700", + "Timestamp": "2024-05-16T12:47:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.935700", + "Timestamp": "2024-05-16T12:47:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.947500", + "Timestamp": "2024-05-16T12:47:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.942500", + "Timestamp": "2024-05-16T12:47:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.817500", + "Timestamp": "2024-05-16T12:47:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.283700", + "Timestamp": "2024-05-16T12:47:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.280800", + "Timestamp": "2024-05-16T12:47:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.278700", + "Timestamp": "2024-05-16T12:47:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.275800", + "Timestamp": "2024-05-16T12:47:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.153700", + "Timestamp": "2024-05-16T12:47:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150800", + "Timestamp": "2024-05-16T12:47:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.171400", + "Timestamp": "2024-05-16T12:47:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.166400", + "Timestamp": "2024-05-16T12:47:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.041400", + "Timestamp": "2024-05-16T12:47:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.902400", + "Timestamp": "2024-05-16T12:47:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.795500", + "Timestamp": "2024-05-16T12:47:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.790500", + "Timestamp": "2024-05-16T12:47:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.665500", + "Timestamp": "2024-05-16T12:47:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.118000", + "Timestamp": "2024-05-16T12:47:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.088000", + "Timestamp": "2024-05-16T12:47:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.988000", + "Timestamp": "2024-05-16T12:47:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.417500", + "Timestamp": "2024-05-16T12:47:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.755300", + "Timestamp": "2024-05-16T12:47:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.412500", + "Timestamp": "2024-05-16T12:47:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.750300", + "Timestamp": "2024-05-16T12:47:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.287500", + "Timestamp": "2024-05-16T12:47:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.625300", + "Timestamp": "2024-05-16T12:47:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.848200", + "Timestamp": "2024-05-16T12:46:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.209400", + "Timestamp": "2024-05-16T12:46:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.000000", + "Timestamp": "2024-05-16T12:46:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.211600", + "Timestamp": "2024-05-16T12:46:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-16T12:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.402000", + "Timestamp": "2024-05-16T12:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.397000", + "Timestamp": "2024-05-16T12:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.272000", + "Timestamp": "2024-05-16T12:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.333800", + "Timestamp": "2024-05-16T12:46:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.303800", + "Timestamp": "2024-05-16T12:46:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.203800", + "Timestamp": "2024-05-16T12:46:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.132700", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.127700", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.002700", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.366800", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.361800", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.236800", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.779600", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.522000", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.517000", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.392000", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156400", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152400", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096400", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.638900", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.633900", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.508900", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.090200", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.085200", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.960200", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.439000", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.632600", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.466600", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.582800", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.074600", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.069600", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.944600", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.937300", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.932300", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.807300", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.762900", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.606100", + "Timestamp": "2024-05-16T12:44:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.691500", + "Timestamp": "2024-05-16T12:44:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.658300", + "Timestamp": "2024-05-16T12:44:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.573300", + "Timestamp": "2024-05-16T12:44:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.601100", + "Timestamp": "2024-05-16T12:44:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.686500", + "Timestamp": "2024-05-16T12:44:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.653300", + "Timestamp": "2024-05-16T12:44:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.568300", + "Timestamp": "2024-05-16T12:44:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.476100", + "Timestamp": "2024-05-16T12:44:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.561500", + "Timestamp": "2024-05-16T12:44:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.528300", + "Timestamp": "2024-05-16T12:44:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.443300", + "Timestamp": "2024-05-16T12:44:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218800", + "Timestamp": "2024-05-16T12:36:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103100", + "Timestamp": "2024-05-16T12:35:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139400", + "Timestamp": "2024-05-16T12:33:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135700", + "Timestamp": "2024-05-16T12:33:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079400", + "Timestamp": "2024-05-16T12:33:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104100", + "Timestamp": "2024-05-16T12:32:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.835400", + "Timestamp": "2024-05-16T12:32:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.392300", + "Timestamp": "2024-05-16T12:32:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.387300", + "Timestamp": "2024-05-16T12:32:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.262300", + "Timestamp": "2024-05-16T12:32:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.024200", + "Timestamp": "2024-05-16T12:32:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.504800", + "Timestamp": "2024-05-16T12:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.499800", + "Timestamp": "2024-05-16T12:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.374800", + "Timestamp": "2024-05-16T12:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.750800", + "Timestamp": "2024-05-16T12:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.745800", + "Timestamp": "2024-05-16T12:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.620800", + "Timestamp": "2024-05-16T12:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.681600", + "Timestamp": "2024-05-16T12:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.676600", + "Timestamp": "2024-05-16T12:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.551600", + "Timestamp": "2024-05-16T12:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.476700", + "Timestamp": "2024-05-16T12:32:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.154600", + "Timestamp": "2024-05-16T12:32:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.288800", + "Timestamp": "2024-05-16T12:32:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.283800", + "Timestamp": "2024-05-16T12:32:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158800", + "Timestamp": "2024-05-16T12:32:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122800", + "Timestamp": "2024-05-16T12:32:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119100", + "Timestamp": "2024-05-16T12:32:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062800", + "Timestamp": "2024-05-16T12:32:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.611800", + "Timestamp": "2024-05-16T12:32:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.459700", + "Timestamp": "2024-05-16T12:32:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.626000", + "Timestamp": "2024-05-16T12:32:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.706400", + "Timestamp": "2024-05-16T12:32:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.676400", + "Timestamp": "2024-05-16T12:32:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.576400", + "Timestamp": "2024-05-16T12:32:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.388800", + "Timestamp": "2024-05-16T12:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429800", + "Timestamp": "2024-05-16T12:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324800", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319800", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194800", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.110600", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.005000", + "Timestamp": "2024-05-16T12:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.000000", + "Timestamp": "2024-05-16T12:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.875000", + "Timestamp": "2024-05-16T12:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.323900", + "Timestamp": "2024-05-16T12:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.318900", + "Timestamp": "2024-05-16T12:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.193900", + "Timestamp": "2024-05-16T12:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.441600", + "Timestamp": "2024-05-16T12:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.411600", + "Timestamp": "2024-05-16T12:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.311600", + "Timestamp": "2024-05-16T12:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.886700", + "Timestamp": "2024-05-16T12:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.413100", + "Timestamp": "2024-05-16T12:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.383100", + "Timestamp": "2024-05-16T12:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.283100", + "Timestamp": "2024-05-16T12:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.552400", + "Timestamp": "2024-05-16T12:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.547400", + "Timestamp": "2024-05-16T12:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.422400", + "Timestamp": "2024-05-16T12:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.488800", + "Timestamp": "2024-05-16T12:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.458800", + "Timestamp": "2024-05-16T12:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.358800", + "Timestamp": "2024-05-16T12:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.429800", + "Timestamp": "2024-05-16T12:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.424800", + "Timestamp": "2024-05-16T12:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.299800", + "Timestamp": "2024-05-16T12:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.326600", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.321600", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.196600", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098200", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138200", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038200", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.361500", + "Timestamp": "2024-05-16T12:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.475400", + "Timestamp": "2024-05-16T12:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.470400", + "Timestamp": "2024-05-16T12:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.345400", + "Timestamp": "2024-05-16T12:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140900", + "Timestamp": "2024-05-16T12:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137200", + "Timestamp": "2024-05-16T12:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080900", + "Timestamp": "2024-05-16T12:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.656800", + "Timestamp": "2024-05-16T12:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.686900", + "Timestamp": "2024-05-16T12:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.651800", + "Timestamp": "2024-05-16T12:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.681900", + "Timestamp": "2024-05-16T12:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.526800", + "Timestamp": "2024-05-16T12:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.556900", + "Timestamp": "2024-05-16T12:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.692900", + "Timestamp": "2024-05-16T12:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.662900", + "Timestamp": "2024-05-16T12:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.562900", + "Timestamp": "2024-05-16T12:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.881000", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.851000", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.751000", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.695300", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.690300", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.565300", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298400", + "Timestamp": "2024-05-16T12:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293400", + "Timestamp": "2024-05-16T12:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168400", + "Timestamp": "2024-05-16T12:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.178100", + "Timestamp": "2024-05-16T12:32:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174400", + "Timestamp": "2024-05-16T12:32:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118100", + "Timestamp": "2024-05-16T12:32:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.878900", + "Timestamp": "2024-05-16T12:32:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098900", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094900", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038900", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.695000", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.582900", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.577900", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.452900", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.332500", + "Timestamp": "2024-05-16T12:32:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.835000", + "Timestamp": "2024-05-16T12:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.830000", + "Timestamp": "2024-05-16T12:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.705000", + "Timestamp": "2024-05-16T12:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.413000", + "Timestamp": "2024-05-16T12:32:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.408000", + "Timestamp": "2024-05-16T12:32:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.283000", + "Timestamp": "2024-05-16T12:32:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.848300", + "Timestamp": "2024-05-16T12:32:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.876600", + "Timestamp": "2024-05-16T12:32:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.871600", + "Timestamp": "2024-05-16T12:32:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.746600", + "Timestamp": "2024-05-16T12:32:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.757400", + "Timestamp": "2024-05-16T12:32:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.752400", + "Timestamp": "2024-05-16T12:32:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.627400", + "Timestamp": "2024-05-16T12:32:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.670300", + "Timestamp": "2024-05-16T12:32:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.665300", + "Timestamp": "2024-05-16T12:32:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.540300", + "Timestamp": "2024-05-16T12:32:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.541000", + "Timestamp": "2024-05-16T12:32:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.536000", + "Timestamp": "2024-05-16T12:32:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.411000", + "Timestamp": "2024-05-16T12:32:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.503600", + "Timestamp": "2024-05-16T12:32:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.498600", + "Timestamp": "2024-05-16T12:32:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.373600", + "Timestamp": "2024-05-16T12:32:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.649400", + "Timestamp": "2024-05-16T12:32:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.497300", + "Timestamp": "2024-05-16T12:32:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.492300", + "Timestamp": "2024-05-16T12:32:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.367300", + "Timestamp": "2024-05-16T12:32:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.800600", + "Timestamp": "2024-05-16T12:31:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.391400", + "Timestamp": "2024-05-16T12:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.266700", + "Timestamp": "2024-05-16T12:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.261700", + "Timestamp": "2024-05-16T12:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136700", + "Timestamp": "2024-05-16T12:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.001200", + "Timestamp": "2024-05-16T12:31:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.971200", + "Timestamp": "2024-05-16T12:31:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.871200", + "Timestamp": "2024-05-16T12:31:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "16.268000", + "Timestamp": "2024-05-16T12:31:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.876600", + "Timestamp": "2024-05-16T12:31:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.630600", + "Timestamp": "2024-05-16T12:31:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.365400", + "Timestamp": "2024-05-16T12:31:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.360400", + "Timestamp": "2024-05-16T12:31:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.235400", + "Timestamp": "2024-05-16T12:31:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140200", + "Timestamp": "2024-05-16T12:31:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136200", + "Timestamp": "2024-05-16T12:31:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080200", + "Timestamp": "2024-05-16T12:31:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.388700", + "Timestamp": "2024-05-16T12:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.395800", + "Timestamp": "2024-05-16T12:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.826800", + "Timestamp": "2024-05-16T12:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.821800", + "Timestamp": "2024-05-16T12:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.696800", + "Timestamp": "2024-05-16T12:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.319200", + "Timestamp": "2024-05-16T12:31:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.820900", + "Timestamp": "2024-05-16T12:31:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.790900", + "Timestamp": "2024-05-16T12:31:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.690900", + "Timestamp": "2024-05-16T12:31:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.242200", + "Timestamp": "2024-05-16T12:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.729300", + "Timestamp": "2024-05-16T12:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.660500", + "Timestamp": "2024-05-16T12:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.655500", + "Timestamp": "2024-05-16T12:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.530500", + "Timestamp": "2024-05-16T12:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.790900", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.717900", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.085800", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.080800", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.955800", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.287000", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.257000", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157000", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095600", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091900", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035600", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.716600", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124000", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120000", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064000", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.145900", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.140900", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.015900", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T12:17:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.435500", + "Timestamp": "2024-05-16T12:17:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.243100", + "Timestamp": "2024-05-16T12:17:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.454600", + "Timestamp": "2024-05-16T12:17:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.449600", + "Timestamp": "2024-05-16T12:17:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.324600", + "Timestamp": "2024-05-16T12:17:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.880600", + "Timestamp": "2024-05-16T12:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.850600", + "Timestamp": "2024-05-16T12:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.750600", + "Timestamp": "2024-05-16T12:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.624600", + "Timestamp": "2024-05-16T12:17:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.619600", + "Timestamp": "2024-05-16T12:17:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.494600", + "Timestamp": "2024-05-16T12:17:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.870300", + "Timestamp": "2024-05-16T12:17:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.840300", + "Timestamp": "2024-05-16T12:17:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.740300", + "Timestamp": "2024-05-16T12:17:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.350400", + "Timestamp": "2024-05-16T12:17:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.345400", + "Timestamp": "2024-05-16T12:17:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.220400", + "Timestamp": "2024-05-16T12:17:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.693400", + "Timestamp": "2024-05-16T12:17:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.977500", + "Timestamp": "2024-05-16T12:17:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.972500", + "Timestamp": "2024-05-16T12:17:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.847500", + "Timestamp": "2024-05-16T12:17:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.980300", + "Timestamp": "2024-05-16T12:17:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.163100", + "Timestamp": "2024-05-16T12:17:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.658600", + "Timestamp": "2024-05-16T12:17:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.580300", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.575300", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.450300", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.745600", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.740600", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.615600", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.934800", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.904800", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.804800", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.783800", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113100", + "Timestamp": "2024-05-16T12:17:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.141200", + "Timestamp": "2024-05-16T12:17:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.027400", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.824000", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.326400", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.321400", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196400", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.322600", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.989100", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.984100", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.859100", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.502500", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.497500", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.372500", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.403900", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.373900", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.273900", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.682400", + "Timestamp": "2024-05-16T12:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.917400", + "Timestamp": "2024-05-16T12:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.912400", + "Timestamp": "2024-05-16T12:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.787400", + "Timestamp": "2024-05-16T12:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.053500", + "Timestamp": "2024-05-16T12:17:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.048500", + "Timestamp": "2024-05-16T12:17:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.923500", + "Timestamp": "2024-05-16T12:17:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.161300", + "Timestamp": "2024-05-16T12:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.156300", + "Timestamp": "2024-05-16T12:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.031300", + "Timestamp": "2024-05-16T12:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.510800", + "Timestamp": "2024-05-16T12:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.505800", + "Timestamp": "2024-05-16T12:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.380800", + "Timestamp": "2024-05-16T12:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437700", + "Timestamp": "2024-05-16T12:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.254000", + "Timestamp": "2024-05-16T12:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.249000", + "Timestamp": "2024-05-16T12:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.124000", + "Timestamp": "2024-05-16T12:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.803300", + "Timestamp": "2024-05-16T12:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.581000", + "Timestamp": "2024-05-16T12:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.576000", + "Timestamp": "2024-05-16T12:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.451000", + "Timestamp": "2024-05-16T12:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.693900", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.688900", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.563900", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.310800", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.305800", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180800", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.861700", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.851300", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.856700", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.846300", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.731700", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.721300", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.637800", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.632800", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.507800", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.920700", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.316100", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.311100", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.186100", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155300", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151300", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095300", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145100", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185100", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085100", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159500", + "Timestamp": "2024-05-16T12:17:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.199500", + "Timestamp": "2024-05-16T12:17:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099500", + "Timestamp": "2024-05-16T12:17:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094100", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038100", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330900", + "Timestamp": "2024-05-16T12:17:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325900", + "Timestamp": "2024-05-16T12:17:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200900", + "Timestamp": "2024-05-16T12:17:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.698600", + "Timestamp": "2024-05-16T12:17:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.958500", + "Timestamp": "2024-05-16T12:17:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.953500", + "Timestamp": "2024-05-16T12:17:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.828500", + "Timestamp": "2024-05-16T12:17:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.638500", + "Timestamp": "2024-05-16T12:17:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129000", + "Timestamp": "2024-05-16T12:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125000", + "Timestamp": "2024-05-16T12:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069000", + "Timestamp": "2024-05-16T12:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.617800", + "Timestamp": "2024-05-16T12:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.587800", + "Timestamp": "2024-05-16T12:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.487800", + "Timestamp": "2024-05-16T12:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.961000", + "Timestamp": "2024-05-16T12:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.981900", + "Timestamp": "2024-05-16T12:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.956000", + "Timestamp": "2024-05-16T12:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.976900", + "Timestamp": "2024-05-16T12:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.831000", + "Timestamp": "2024-05-16T12:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.851900", + "Timestamp": "2024-05-16T12:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141500", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137800", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081500", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146800", + "Timestamp": "2024-05-16T12:17:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143100", + "Timestamp": "2024-05-16T12:17:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086800", + "Timestamp": "2024-05-16T12:17:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.999700", + "Timestamp": "2024-05-16T12:17:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.803800", + "Timestamp": "2024-05-16T12:17:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091700", + "Timestamp": "2024-05-16T12:17:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088000", + "Timestamp": "2024-05-16T12:17:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031700", + "Timestamp": "2024-05-16T12:17:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.681500", + "Timestamp": "2024-05-16T12:17:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.676500", + "Timestamp": "2024-05-16T12:17:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.551500", + "Timestamp": "2024-05-16T12:17:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.132700", + "Timestamp": "2024-05-16T12:17:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.127700", + "Timestamp": "2024-05-16T12:17:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.002700", + "Timestamp": "2024-05-16T12:17:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.385200", + "Timestamp": "2024-05-16T12:17:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.380200", + "Timestamp": "2024-05-16T12:17:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.255200", + "Timestamp": "2024-05-16T12:17:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.214200", + "Timestamp": "2024-05-16T12:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.210200", + "Timestamp": "2024-05-16T12:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.154200", + "Timestamp": "2024-05-16T12:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.417400", + "Timestamp": "2024-05-16T12:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.387400", + "Timestamp": "2024-05-16T12:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.287400", + "Timestamp": "2024-05-16T12:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.998200", + "Timestamp": "2024-05-16T12:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.020800", + "Timestamp": "2024-05-16T12:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.289000", + "Timestamp": "2024-05-16T12:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.259000", + "Timestamp": "2024-05-16T12:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.159000", + "Timestamp": "2024-05-16T12:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.410200", + "Timestamp": "2024-05-16T12:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068300", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039300", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008300", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.208700", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.203700", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.078700", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.229600", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.711200", + "Timestamp": "2024-05-16T12:16:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.706200", + "Timestamp": "2024-05-16T12:16:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.581200", + "Timestamp": "2024-05-16T12:16:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.617000", + "Timestamp": "2024-05-16T12:16:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.587000", + "Timestamp": "2024-05-16T12:16:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.487000", + "Timestamp": "2024-05-16T12:16:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.355700", + "Timestamp": "2024-05-16T12:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325700", + "Timestamp": "2024-05-16T12:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.225700", + "Timestamp": "2024-05-16T12:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.248100", + "Timestamp": "2024-05-16T12:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.244100", + "Timestamp": "2024-05-16T12:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.188100", + "Timestamp": "2024-05-16T12:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "14.522200", + "Timestamp": "2024-05-16T12:16:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.236700", + "Timestamp": "2024-05-16T12:16:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.187500", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.182500", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.057500", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.192900", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.187900", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.062900", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.473400", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.094500", + "Timestamp": "2024-05-16T12:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080300", + "Timestamp": "2024-05-16T12:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076600", + "Timestamp": "2024-05-16T12:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020300", + "Timestamp": "2024-05-16T12:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221700", + "Timestamp": "2024-05-16T12:16:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095500", + "Timestamp": "2024-05-16T12:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091500", + "Timestamp": "2024-05-16T12:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035500", + "Timestamp": "2024-05-16T12:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.242000", + "Timestamp": "2024-05-16T12:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.836200", + "Timestamp": "2024-05-16T12:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226500", + "Timestamp": "2024-05-16T12:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.433700", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.427600", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.422600", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.297600", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.071000", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.423000", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115700", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055700", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.221800", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.216800", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.611300", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.606300", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.481300", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.282600", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.252600", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.152600", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.835300", + "Timestamp": "2024-05-16T12:02:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.869600", + "Timestamp": "2024-05-16T12:02:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.864600", + "Timestamp": "2024-05-16T12:02:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.739600", + "Timestamp": "2024-05-16T12:02:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.247600", + "Timestamp": "2024-05-16T12:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.242600", + "Timestamp": "2024-05-16T12:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.117600", + "Timestamp": "2024-05-16T12:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.664900", + "Timestamp": "2024-05-16T12:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.659900", + "Timestamp": "2024-05-16T12:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.534900", + "Timestamp": "2024-05-16T12:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.279200", + "Timestamp": "2024-05-16T12:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.249200", + "Timestamp": "2024-05-16T12:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.149200", + "Timestamp": "2024-05-16T12:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.437600", + "Timestamp": "2024-05-16T12:02:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.975900", + "Timestamp": "2024-05-16T12:02:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.970900", + "Timestamp": "2024-05-16T12:02:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.845900", + "Timestamp": "2024-05-16T12:02:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.844500", + "Timestamp": "2024-05-16T12:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.558700", + "Timestamp": "2024-05-16T12:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.553700", + "Timestamp": "2024-05-16T12:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.428700", + "Timestamp": "2024-05-16T12:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110400", + "Timestamp": "2024-05-16T12:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106700", + "Timestamp": "2024-05-16T12:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050400", + "Timestamp": "2024-05-16T12:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.668500", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.635500", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.650700", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.645700", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.520700", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.339200", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.334200", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.209200", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.691100", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.686100", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.561100", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.762800", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.450300", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.430200", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.425200", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.300200", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.330500", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.325500", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.200500", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114000", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054000", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.504800", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.576100", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.571100", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.446100", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155800", + "Timestamp": "2024-05-16T12:02:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152100", + "Timestamp": "2024-05-16T12:02:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095800", + "Timestamp": "2024-05-16T12:02:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.615700", + "Timestamp": "2024-05-16T12:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.585700", + "Timestamp": "2024-05-16T12:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.485700", + "Timestamp": "2024-05-16T12:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.256700", + "Timestamp": "2024-05-16T12:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.252700", + "Timestamp": "2024-05-16T12:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196700", + "Timestamp": "2024-05-16T12:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.340500", + "Timestamp": "2024-05-16T12:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.310500", + "Timestamp": "2024-05-16T12:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.210500", + "Timestamp": "2024-05-16T12:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.803800", + "Timestamp": "2024-05-16T12:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.798800", + "Timestamp": "2024-05-16T12:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.673800", + "Timestamp": "2024-05-16T12:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.250900", + "Timestamp": "2024-05-16T12:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.790600", + "Timestamp": "2024-05-16T12:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093700", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090000", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033700", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.883900", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.878900", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.753900", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.557400", + "Timestamp": "2024-05-16T12:02:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.552400", + "Timestamp": "2024-05-16T12:02:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.427400", + "Timestamp": "2024-05-16T12:02:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.179900", + "Timestamp": "2024-05-16T12:02:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.240800", + "Timestamp": "2024-05-16T12:02:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.174900", + "Timestamp": "2024-05-16T12:02:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.235800", + "Timestamp": "2024-05-16T12:02:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.049900", + "Timestamp": "2024-05-16T12:02:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.110800", + "Timestamp": "2024-05-16T12:02:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.712100", + "Timestamp": "2024-05-16T12:02:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112300", + "Timestamp": "2024-05-16T12:02:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152300", + "Timestamp": "2024-05-16T12:02:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052300", + "Timestamp": "2024-05-16T12:02:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.706100", + "Timestamp": "2024-05-16T12:02:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.638500", + "Timestamp": "2024-05-16T12:02:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.701100", + "Timestamp": "2024-05-16T12:02:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.633500", + "Timestamp": "2024-05-16T12:02:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.576100", + "Timestamp": "2024-05-16T12:02:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.508500", + "Timestamp": "2024-05-16T12:02:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.189200", + "Timestamp": "2024-05-16T12:02:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.184200", + "Timestamp": "2024-05-16T12:02:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.059200", + "Timestamp": "2024-05-16T12:02:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166300", + "Timestamp": "2024-05-16T12:02:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162600", + "Timestamp": "2024-05-16T12:02:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T12:02:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.395200", + "Timestamp": "2024-05-16T12:02:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.390200", + "Timestamp": "2024-05-16T12:02:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.265200", + "Timestamp": "2024-05-16T12:02:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.713100", + "Timestamp": "2024-05-16T12:02:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.424100", + "Timestamp": "2024-05-16T12:02:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.435200", + "Timestamp": "2024-05-16T12:02:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.927000", + "Timestamp": "2024-05-16T12:02:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.899000", + "Timestamp": "2024-05-16T12:01:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.894000", + "Timestamp": "2024-05-16T12:01:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.769000", + "Timestamp": "2024-05-16T12:01:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.867200", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.837200", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.737200", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096600", + "Timestamp": "2024-05-16T12:01:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-16T12:01:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036600", + "Timestamp": "2024-05-16T12:01:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.675900", + "Timestamp": "2024-05-16T12:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.670900", + "Timestamp": "2024-05-16T12:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.545900", + "Timestamp": "2024-05-16T12:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.468500", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.463500", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.338500", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.955900", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.421600", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.416600", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.291600", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.452800", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.489700", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.447800", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.484700", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.322800", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.359700", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.581600", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.576600", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.451600", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.290500", + "Timestamp": "2024-05-16T12:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.260500", + "Timestamp": "2024-05-16T12:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.160500", + "Timestamp": "2024-05-16T12:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.103500", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.098500", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.973500", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354700", + "Timestamp": "2024-05-16T12:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.394700", + "Timestamp": "2024-05-16T12:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.294700", + "Timestamp": "2024-05-16T12:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.301600", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.341000", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.042800", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.037800", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.912800", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.465200", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.337300", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.460200", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.332300", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.335200", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.207300", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.225900", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.220900", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.095900", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.701700", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.696700", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.571700", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209500", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.854500", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.849500", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.724500", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.698000", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.693000", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.568000", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.268200", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.238200", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.138200", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148200", + "Timestamp": "2024-05-16T11:47:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144200", + "Timestamp": "2024-05-16T11:47:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088200", + "Timestamp": "2024-05-16T11:47:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.256000", + "Timestamp": "2024-05-16T11:47:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.251000", + "Timestamp": "2024-05-16T11:47:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.126000", + "Timestamp": "2024-05-16T11:47:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.329800", + "Timestamp": "2024-05-16T11:47:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.786100", + "Timestamp": "2024-05-16T11:47:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.781100", + "Timestamp": "2024-05-16T11:47:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.656100", + "Timestamp": "2024-05-16T11:47:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.553300", + "Timestamp": "2024-05-16T11:47:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.548300", + "Timestamp": "2024-05-16T11:47:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.423300", + "Timestamp": "2024-05-16T11:47:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.783500", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.778500", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.653500", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.491500", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.486500", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.361500", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.891500", + "Timestamp": "2024-05-16T11:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.154700", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.930200", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.149700", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.925200", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.024700", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.800200", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.222100", + "Timestamp": "2024-05-16T11:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.217100", + "Timestamp": "2024-05-16T11:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.092100", + "Timestamp": "2024-05-16T11:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.522800", + "Timestamp": "2024-05-16T11:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.517800", + "Timestamp": "2024-05-16T11:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.392800", + "Timestamp": "2024-05-16T11:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.620300", + "Timestamp": "2024-05-16T11:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.615300", + "Timestamp": "2024-05-16T11:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.490300", + "Timestamp": "2024-05-16T11:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044000", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.593900", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.588900", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.463900", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.202700", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.940600", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.306100", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.910600", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.276100", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.810600", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.176100", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105300", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101300", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045300", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.798300", + "Timestamp": "2024-05-16T11:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.793300", + "Timestamp": "2024-05-16T11:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.668300", + "Timestamp": "2024-05-16T11:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.548200", + "Timestamp": "2024-05-16T11:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297800", + "Timestamp": "2024-05-16T11:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.292800", + "Timestamp": "2024-05-16T11:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167800", + "Timestamp": "2024-05-16T11:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.523000", + "Timestamp": "2024-05-16T11:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.518000", + "Timestamp": "2024-05-16T11:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.393000", + "Timestamp": "2024-05-16T11:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.448700", + "Timestamp": "2024-05-16T11:47:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.418700", + "Timestamp": "2024-05-16T11:47:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.318700", + "Timestamp": "2024-05-16T11:47:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.405000", + "Timestamp": "2024-05-16T11:47:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.400000", + "Timestamp": "2024-05-16T11:47:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.275000", + "Timestamp": "2024-05-16T11:47:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.818100", + "Timestamp": "2024-05-16T11:47:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.813100", + "Timestamp": "2024-05-16T11:47:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.688100", + "Timestamp": "2024-05-16T11:47:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.498300", + "Timestamp": "2024-05-16T11:47:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.493300", + "Timestamp": "2024-05-16T11:47:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.368300", + "Timestamp": "2024-05-16T11:47:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.668000", + "Timestamp": "2024-05-16T11:47:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213600", + "Timestamp": "2024-05-16T11:46:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.287700", + "Timestamp": "2024-05-16T11:46:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.282700", + "Timestamp": "2024-05-16T11:46:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157700", + "Timestamp": "2024-05-16T11:46:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.145000", + "Timestamp": "2024-05-16T11:46:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.140000", + "Timestamp": "2024-05-16T11:46:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.015000", + "Timestamp": "2024-05-16T11:46:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.394700", + "Timestamp": "2024-05-16T11:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.389700", + "Timestamp": "2024-05-16T11:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.264700", + "Timestamp": "2024-05-16T11:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.319900", + "Timestamp": "2024-05-16T11:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.314900", + "Timestamp": "2024-05-16T11:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.189900", + "Timestamp": "2024-05-16T11:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098700", + "Timestamp": "2024-05-16T11:46:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094700", + "Timestamp": "2024-05-16T11:46:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038700", + "Timestamp": "2024-05-16T11:46:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.955500", + "Timestamp": "2024-05-16T11:46:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.859900", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.720500", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.690500", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.590500", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.994400", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.964400", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.864400", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.355400", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.850200", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.845200", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.720200", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.110100", + "Timestamp": "2024-05-16T11:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.105100", + "Timestamp": "2024-05-16T11:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.980100", + "Timestamp": "2024-05-16T11:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.331200", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.326200", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.201200", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297700", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.342700", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.292700", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.337700", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167700", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212700", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.208100", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.541000", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.536000", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.411000", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.013400", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.008400", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.883400", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.880100", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.875100", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.750100", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.815500", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.810500", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.685500", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.847400", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.626400", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.621400", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.496400", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.425600", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.420600", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.295600", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.895500", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.865500", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.765500", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.664800", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.419400", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.414400", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.289400", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.573300", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.568300", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.443300", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122800", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118800", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062800", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.428300", + "Timestamp": "2024-05-16T11:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.423300", + "Timestamp": "2024-05-16T11:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.298300", + "Timestamp": "2024-05-16T11:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165400", + "Timestamp": "2024-05-16T11:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161400", + "Timestamp": "2024-05-16T11:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T11:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.370200", + "Timestamp": "2024-05-16T11:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.340200", + "Timestamp": "2024-05-16T11:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.240200", + "Timestamp": "2024-05-16T11:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.809700", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.804700", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.679700", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.248600", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.243600", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.118600", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.838700", + "Timestamp": "2024-05-16T11:32:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.385600", + "Timestamp": "2024-05-16T11:32:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.380600", + "Timestamp": "2024-05-16T11:32:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.255600", + "Timestamp": "2024-05-16T11:32:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.564800", + "Timestamp": "2024-05-16T11:32:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.559800", + "Timestamp": "2024-05-16T11:32:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.434800", + "Timestamp": "2024-05-16T11:32:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.879500", + "Timestamp": "2024-05-16T11:32:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.932500", + "Timestamp": "2024-05-16T11:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.902500", + "Timestamp": "2024-05-16T11:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.802500", + "Timestamp": "2024-05-16T11:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.661400", + "Timestamp": "2024-05-16T11:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.656400", + "Timestamp": "2024-05-16T11:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.531400", + "Timestamp": "2024-05-16T11:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.731600", + "Timestamp": "2024-05-16T11:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.726600", + "Timestamp": "2024-05-16T11:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.601600", + "Timestamp": "2024-05-16T11:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121800", + "Timestamp": "2024-05-16T11:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161800", + "Timestamp": "2024-05-16T11:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061800", + "Timestamp": "2024-05-16T11:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.734500", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.729500", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.604500", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.738400", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.733400", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.608400", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.638900", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.625700", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092200", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088500", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032200", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.137800", + "Timestamp": "2024-05-16T11:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.107800", + "Timestamp": "2024-05-16T11:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.007800", + "Timestamp": "2024-05-16T11:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.539800", + "Timestamp": "2024-05-16T11:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.509800", + "Timestamp": "2024-05-16T11:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.409800", + "Timestamp": "2024-05-16T11:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.734000", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.729000", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.604000", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.846000", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099900", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096200", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039900", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.281700", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276700", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.151700", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152800", + "Timestamp": "2024-05-16T11:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149100", + "Timestamp": "2024-05-16T11:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092800", + "Timestamp": "2024-05-16T11:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219000", + "Timestamp": "2024-05-16T11:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271500", + "Timestamp": "2024-05-16T11:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266500", + "Timestamp": "2024-05-16T11:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141500", + "Timestamp": "2024-05-16T11:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.899700", + "Timestamp": "2024-05-16T11:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.467800", + "Timestamp": "2024-05-16T11:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.418600", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.413600", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.288600", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.304500", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.299500", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.174500", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429300", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.428700", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.304700", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.274700", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.174700", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.284400", + "Timestamp": "2024-05-16T11:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.225200", + "Timestamp": "2024-05-16T11:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.279400", + "Timestamp": "2024-05-16T11:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.220200", + "Timestamp": "2024-05-16T11:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.154400", + "Timestamp": "2024-05-16T11:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095200", + "Timestamp": "2024-05-16T11:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.550100", + "Timestamp": "2024-05-16T11:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.430800", + "Timestamp": "2024-05-16T11:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.425800", + "Timestamp": "2024-05-16T11:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.300800", + "Timestamp": "2024-05-16T11:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.482900", + "Timestamp": "2024-05-16T11:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.964600", + "Timestamp": "2024-05-16T11:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.959600", + "Timestamp": "2024-05-16T11:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.834600", + "Timestamp": "2024-05-16T11:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150900", + "Timestamp": "2024-05-16T11:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147200", + "Timestamp": "2024-05-16T11:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090900", + "Timestamp": "2024-05-16T11:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.030800", + "Timestamp": "2024-05-16T11:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.000800", + "Timestamp": "2024-05-16T11:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.900800", + "Timestamp": "2024-05-16T11:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.300600", + "Timestamp": "2024-05-16T11:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.295600", + "Timestamp": "2024-05-16T11:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.170600", + "Timestamp": "2024-05-16T11:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.306200", + "Timestamp": "2024-05-16T11:32:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.301200", + "Timestamp": "2024-05-16T11:32:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.176200", + "Timestamp": "2024-05-16T11:32:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.323800", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.367100", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.318800", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.362100", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.193800", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.237100", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.756000", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.751000", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.626000", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.123900", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.093900", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.993900", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.774100", + "Timestamp": "2024-05-16T11:32:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.769100", + "Timestamp": "2024-05-16T11:32:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.644100", + "Timestamp": "2024-05-16T11:32:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.860700", + "Timestamp": "2024-05-16T11:32:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.855700", + "Timestamp": "2024-05-16T11:32:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.730700", + "Timestamp": "2024-05-16T11:32:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.338400", + "Timestamp": "2024-05-16T11:32:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.485500", + "Timestamp": "2024-05-16T11:32:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.339100", + "Timestamp": "2024-05-16T11:32:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334100", + "Timestamp": "2024-05-16T11:32:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.209100", + "Timestamp": "2024-05-16T11:32:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.631300", + "Timestamp": "2024-05-16T11:32:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.668400", + "Timestamp": "2024-05-16T11:32:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.284800", + "Timestamp": "2024-05-16T11:32:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.254800", + "Timestamp": "2024-05-16T11:32:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.154800", + "Timestamp": "2024-05-16T11:32:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.612900", + "Timestamp": "2024-05-16T11:32:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.607900", + "Timestamp": "2024-05-16T11:32:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.482900", + "Timestamp": "2024-05-16T11:32:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.074200", + "Timestamp": "2024-05-16T11:32:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.069200", + "Timestamp": "2024-05-16T11:32:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.944200", + "Timestamp": "2024-05-16T11:32:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.271800", + "Timestamp": "2024-05-16T11:32:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.414700", + "Timestamp": "2024-05-16T11:31:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.379300", + "Timestamp": "2024-05-16T11:31:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.156400", + "Timestamp": "2024-05-16T11:31:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.151400", + "Timestamp": "2024-05-16T11:31:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.026400", + "Timestamp": "2024-05-16T11:31:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.988200", + "Timestamp": "2024-05-16T11:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.983200", + "Timestamp": "2024-05-16T11:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.858200", + "Timestamp": "2024-05-16T11:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.468600", + "Timestamp": "2024-05-16T11:31:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.809600", + "Timestamp": "2024-05-16T11:31:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.384800", + "Timestamp": "2024-05-16T11:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.379800", + "Timestamp": "2024-05-16T11:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.254800", + "Timestamp": "2024-05-16T11:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.861100", + "Timestamp": "2024-05-16T11:31:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.460700", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298700", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.338700", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.238700", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.771600", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.847200", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.817200", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.717200", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.774600", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.769600", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.644600", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.832800", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.827800", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.702800", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130200", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126200", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070200", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.826600", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.821600", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.696600", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.671400", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.666400", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.541400", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.885000", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215700", + "Timestamp": "2024-05-16T11:27:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.461100", + "Timestamp": "2024-05-16T11:17:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.443900", + "Timestamp": "2024-05-16T11:17:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.456100", + "Timestamp": "2024-05-16T11:17:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.438900", + "Timestamp": "2024-05-16T11:17:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.331100", + "Timestamp": "2024-05-16T11:17:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.313900", + "Timestamp": "2024-05-16T11:17:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.494200", + "Timestamp": "2024-05-16T11:17:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.489200", + "Timestamp": "2024-05-16T11:17:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.364200", + "Timestamp": "2024-05-16T11:17:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.985800", + "Timestamp": "2024-05-16T11:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.980800", + "Timestamp": "2024-05-16T11:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.855800", + "Timestamp": "2024-05-16T11:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.541700", + "Timestamp": "2024-05-16T11:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.435600", + "Timestamp": "2024-05-16T11:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.430600", + "Timestamp": "2024-05-16T11:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.305600", + "Timestamp": "2024-05-16T11:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311400", + "Timestamp": "2024-05-16T11:17:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.306400", + "Timestamp": "2024-05-16T11:17:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181400", + "Timestamp": "2024-05-16T11:17:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.423800", + "Timestamp": "2024-05-16T11:17:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.810600", + "Timestamp": "2024-05-16T11:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.805600", + "Timestamp": "2024-05-16T11:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.680600", + "Timestamp": "2024-05-16T11:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278900", + "Timestamp": "2024-05-16T11:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273900", + "Timestamp": "2024-05-16T11:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148900", + "Timestamp": "2024-05-16T11:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.261100", + "Timestamp": "2024-05-16T11:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.231100", + "Timestamp": "2024-05-16T11:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.131100", + "Timestamp": "2024-05-16T11:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.630400", + "Timestamp": "2024-05-16T11:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.625400", + "Timestamp": "2024-05-16T11:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.500400", + "Timestamp": "2024-05-16T11:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.710000", + "Timestamp": "2024-05-16T11:17:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.680000", + "Timestamp": "2024-05-16T11:17:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.580000", + "Timestamp": "2024-05-16T11:17:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.376000", + "Timestamp": "2024-05-16T11:17:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.371000", + "Timestamp": "2024-05-16T11:17:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.246000", + "Timestamp": "2024-05-16T11:17:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.278400", + "Timestamp": "2024-05-16T11:17:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.166600", + "Timestamp": "2024-05-16T11:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.161600", + "Timestamp": "2024-05-16T11:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.036600", + "Timestamp": "2024-05-16T11:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.448000", + "Timestamp": "2024-05-16T11:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.443000", + "Timestamp": "2024-05-16T11:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.318000", + "Timestamp": "2024-05-16T11:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.995000", + "Timestamp": "2024-05-16T11:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.990000", + "Timestamp": "2024-05-16T11:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.865000", + "Timestamp": "2024-05-16T11:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.253700", + "Timestamp": "2024-05-16T11:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.248700", + "Timestamp": "2024-05-16T11:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123700", + "Timestamp": "2024-05-16T11:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.193500", + "Timestamp": "2024-05-16T11:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.189500", + "Timestamp": "2024-05-16T11:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133500", + "Timestamp": "2024-05-16T11:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.801800", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.796800", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.671800", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.826400", + "Timestamp": "2024-05-16T11:17:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.821400", + "Timestamp": "2024-05-16T11:17:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.696400", + "Timestamp": "2024-05-16T11:17:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.652700", + "Timestamp": "2024-05-16T11:17:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.346900", + "Timestamp": "2024-05-16T11:17:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.341900", + "Timestamp": "2024-05-16T11:17:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.216900", + "Timestamp": "2024-05-16T11:17:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.606000", + "Timestamp": "2024-05-16T11:17:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.601000", + "Timestamp": "2024-05-16T11:17:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.476000", + "Timestamp": "2024-05-16T11:17:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.458700", + "Timestamp": "2024-05-16T11:17:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.453700", + "Timestamp": "2024-05-16T11:17:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.328700", + "Timestamp": "2024-05-16T11:17:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.608100", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.603100", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.478100", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T11:17:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.422800", + "Timestamp": "2024-05-16T11:17:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.640500", + "Timestamp": "2024-05-16T11:17:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.610500", + "Timestamp": "2024-05-16T11:17:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.510500", + "Timestamp": "2024-05-16T11:17:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.280500", + "Timestamp": "2024-05-16T11:17:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.432400", + "Timestamp": "2024-05-16T11:17:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.427400", + "Timestamp": "2024-05-16T11:17:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.302400", + "Timestamp": "2024-05-16T11:17:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.881300", + "Timestamp": "2024-05-16T11:16:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080600", + "Timestamp": "2024-05-16T11:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076900", + "Timestamp": "2024-05-16T11:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020600", + "Timestamp": "2024-05-16T11:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360300", + "Timestamp": "2024-05-16T11:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.330300", + "Timestamp": "2024-05-16T11:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230300", + "Timestamp": "2024-05-16T11:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.107500", + "Timestamp": "2024-05-16T11:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.392900", + "Timestamp": "2024-05-16T11:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.423700", + "Timestamp": "2024-05-16T11:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.418700", + "Timestamp": "2024-05-16T11:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.293700", + "Timestamp": "2024-05-16T11:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084100", + "Timestamp": "2024-05-16T11:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080400", + "Timestamp": "2024-05-16T11:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024100", + "Timestamp": "2024-05-16T11:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.301100", + "Timestamp": "2024-05-16T11:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.284600", + "Timestamp": "2024-05-16T11:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.448500", + "Timestamp": "2024-05-16T11:16:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.953100", + "Timestamp": "2024-05-16T11:16:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.923100", + "Timestamp": "2024-05-16T11:16:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.823100", + "Timestamp": "2024-05-16T11:16:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.138000", + "Timestamp": "2024-05-16T11:16:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.306100", + "Timestamp": "2024-05-16T11:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.414300", + "Timestamp": "2024-05-16T11:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.686500", + "Timestamp": "2024-05-16T11:16:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.258500", + "Timestamp": "2024-05-16T11:16:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.253500", + "Timestamp": "2024-05-16T11:16:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.128500", + "Timestamp": "2024-05-16T11:16:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.737900", + "Timestamp": "2024-05-16T11:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.587600", + "Timestamp": "2024-05-16T11:16:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.582600", + "Timestamp": "2024-05-16T11:16:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.457600", + "Timestamp": "2024-05-16T11:16:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176600", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172900", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.581500", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.576500", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.451500", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.930600", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.900600", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.800600", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.713000", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.579700", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.574700", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.449700", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.455500", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.570300", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.588400", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.566600", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.584700", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.510300", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.528400", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.492800", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.788100", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.783100", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.658100", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.284800", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.279800", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.154800", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.619700", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.614700", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.489700", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.728300", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090900", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086900", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030900", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112900", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109200", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052900", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.869000", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.715800", + "Timestamp": "2024-05-16T11:03:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.063700", + "Timestamp": "2024-05-16T11:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.547000", + "Timestamp": "2024-05-16T11:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096400", + "Timestamp": "2024-05-16T11:02:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093400", + "Timestamp": "2024-05-16T11:02:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036400", + "Timestamp": "2024-05-16T11:02:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.590600", + "Timestamp": "2024-05-16T11:02:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.585600", + "Timestamp": "2024-05-16T11:02:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.460600", + "Timestamp": "2024-05-16T11:02:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.435200", + "Timestamp": "2024-05-16T11:02:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.430200", + "Timestamp": "2024-05-16T11:02:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.305200", + "Timestamp": "2024-05-16T11:02:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.638800", + "Timestamp": "2024-05-16T11:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.143400", + "Timestamp": "2024-05-16T11:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.113400", + "Timestamp": "2024-05-16T11:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.013400", + "Timestamp": "2024-05-16T11:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089700", + "Timestamp": "2024-05-16T11:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086000", + "Timestamp": "2024-05-16T11:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029700", + "Timestamp": "2024-05-16T11:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.413700", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.408700", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.283700", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.463100", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.458100", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.333100", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.444700", + "Timestamp": "2024-05-16T11:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.439700", + "Timestamp": "2024-05-16T11:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.314700", + "Timestamp": "2024-05-16T11:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.428200", + "Timestamp": "2024-05-16T11:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.398200", + "Timestamp": "2024-05-16T11:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.298200", + "Timestamp": "2024-05-16T11:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.572800", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.483300", + "Timestamp": "2024-05-16T11:02:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.094500", + "Timestamp": "2024-05-16T11:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.089500", + "Timestamp": "2024-05-16T11:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.964500", + "Timestamp": "2024-05-16T11:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-16T11:02:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091900", + "Timestamp": "2024-05-16T11:02:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035900", + "Timestamp": "2024-05-16T11:02:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.577400", + "Timestamp": "2024-05-16T11:02:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.572400", + "Timestamp": "2024-05-16T11:02:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.447400", + "Timestamp": "2024-05-16T11:02:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.265700", + "Timestamp": "2024-05-16T11:02:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.260700", + "Timestamp": "2024-05-16T11:02:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.135700", + "Timestamp": "2024-05-16T11:02:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.490800", + "Timestamp": "2024-05-16T11:02:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.411400", + "Timestamp": "2024-05-16T11:02:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.701000", + "Timestamp": "2024-05-16T11:02:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.671000", + "Timestamp": "2024-05-16T11:02:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.571000", + "Timestamp": "2024-05-16T11:02:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096800", + "Timestamp": "2024-05-16T11:02:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093100", + "Timestamp": "2024-05-16T11:02:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036800", + "Timestamp": "2024-05-16T11:02:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.126100", + "Timestamp": "2024-05-16T11:02:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.048800", + "Timestamp": "2024-05-16T11:02:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.447400", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.478800", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.592300", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.442400", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473800", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.587300", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.317400", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.348800", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.462300", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.900400", + "Timestamp": "2024-05-16T11:02:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.895400", + "Timestamp": "2024-05-16T11:02:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.770400", + "Timestamp": "2024-05-16T11:02:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.443700", + "Timestamp": "2024-05-16T11:02:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.643400", + "Timestamp": "2024-05-16T11:02:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.613400", + "Timestamp": "2024-05-16T11:02:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.513400", + "Timestamp": "2024-05-16T11:02:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.124000", + "Timestamp": "2024-05-16T11:01:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.265800", + "Timestamp": "2024-05-16T11:01:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.260800", + "Timestamp": "2024-05-16T11:01:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.135800", + "Timestamp": "2024-05-16T11:01:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.543500", + "Timestamp": "2024-05-16T11:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.438400", + "Timestamp": "2024-05-16T11:01:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.433400", + "Timestamp": "2024-05-16T11:01:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.308400", + "Timestamp": "2024-05-16T11:01:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.996900", + "Timestamp": "2024-05-16T11:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.455500", + "Timestamp": "2024-05-16T11:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.450500", + "Timestamp": "2024-05-16T11:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.325500", + "Timestamp": "2024-05-16T11:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.223600", + "Timestamp": "2024-05-16T11:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.218600", + "Timestamp": "2024-05-16T11:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.093600", + "Timestamp": "2024-05-16T11:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.283900", + "Timestamp": "2024-05-16T11:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.253900", + "Timestamp": "2024-05-16T11:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.153900", + "Timestamp": "2024-05-16T11:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.629500", + "Timestamp": "2024-05-16T11:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.624500", + "Timestamp": "2024-05-16T11:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.499500", + "Timestamp": "2024-05-16T11:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.856200", + "Timestamp": "2024-05-16T11:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.341400", + "Timestamp": "2024-05-16T11:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.336400", + "Timestamp": "2024-05-16T11:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.211400", + "Timestamp": "2024-05-16T11:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096800", + "Timestamp": "2024-05-16T11:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093100", + "Timestamp": "2024-05-16T11:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036800", + "Timestamp": "2024-05-16T11:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120800", + "Timestamp": "2024-05-16T11:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117100", + "Timestamp": "2024-05-16T11:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060800", + "Timestamp": "2024-05-16T11:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.425800", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.420800", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.295800", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.691700", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.686700", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.561700", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.916700", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.840400", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.267800", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.262800", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.137800", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.300100", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.083100", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.078100", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.953100", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.267700", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262700", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137700", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.735100", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115000", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155000", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055000", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.162500", + "Timestamp": "2024-05-16T11:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.157500", + "Timestamp": "2024-05-16T11:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.032500", + "Timestamp": "2024-05-16T11:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.287000", + "Timestamp": "2024-05-16T11:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.282000", + "Timestamp": "2024-05-16T11:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.157000", + "Timestamp": "2024-05-16T11:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.812800", + "Timestamp": "2024-05-16T10:53:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T10:49:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.833800", + "Timestamp": "2024-05-16T10:47:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.760800", + "Timestamp": "2024-05-16T10:47:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.828800", + "Timestamp": "2024-05-16T10:47:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.755800", + "Timestamp": "2024-05-16T10:47:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.703800", + "Timestamp": "2024-05-16T10:47:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.630800", + "Timestamp": "2024-05-16T10:47:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.557100", + "Timestamp": "2024-05-16T10:47:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.552100", + "Timestamp": "2024-05-16T10:47:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.427100", + "Timestamp": "2024-05-16T10:47:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.345000", + "Timestamp": "2024-05-16T10:47:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.631300", + "Timestamp": "2024-05-16T10:47:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.626300", + "Timestamp": "2024-05-16T10:47:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.501300", + "Timestamp": "2024-05-16T10:47:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.868800", + "Timestamp": "2024-05-16T10:47:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.863800", + "Timestamp": "2024-05-16T10:47:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.738800", + "Timestamp": "2024-05-16T10:47:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.537000", + "Timestamp": "2024-05-16T10:47:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.838300", + "Timestamp": "2024-05-16T10:47:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.833300", + "Timestamp": "2024-05-16T10:47:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.708300", + "Timestamp": "2024-05-16T10:47:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.774900", + "Timestamp": "2024-05-16T10:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.157800", + "Timestamp": "2024-05-16T10:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.111300", + "Timestamp": "2024-05-16T10:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.152800", + "Timestamp": "2024-05-16T10:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.106300", + "Timestamp": "2024-05-16T10:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.027800", + "Timestamp": "2024-05-16T10:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.981300", + "Timestamp": "2024-05-16T10:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162100", + "Timestamp": "2024-05-16T10:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158400", + "Timestamp": "2024-05-16T10:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T10:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.098200", + "Timestamp": "2024-05-16T10:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.093200", + "Timestamp": "2024-05-16T10:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.968200", + "Timestamp": "2024-05-16T10:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.487800", + "Timestamp": "2024-05-16T10:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.482800", + "Timestamp": "2024-05-16T10:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.357800", + "Timestamp": "2024-05-16T10:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.134600", + "Timestamp": "2024-05-16T10:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.250800", + "Timestamp": "2024-05-16T10:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.246800", + "Timestamp": "2024-05-16T10:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190800", + "Timestamp": "2024-05-16T10:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.405700", + "Timestamp": "2024-05-16T10:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.400700", + "Timestamp": "2024-05-16T10:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.275700", + "Timestamp": "2024-05-16T10:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.286300", + "Timestamp": "2024-05-16T10:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281300", + "Timestamp": "2024-05-16T10:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156300", + "Timestamp": "2024-05-16T10:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148100", + "Timestamp": "2024-05-16T10:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144400", + "Timestamp": "2024-05-16T10:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-16T10:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.357900", + "Timestamp": "2024-05-16T10:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.352900", + "Timestamp": "2024-05-16T10:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.227900", + "Timestamp": "2024-05-16T10:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.453100", + "Timestamp": "2024-05-16T10:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.486100", + "Timestamp": "2024-05-16T10:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.425700", + "Timestamp": "2024-05-16T10:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.395700", + "Timestamp": "2024-05-16T10:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.295700", + "Timestamp": "2024-05-16T10:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.360900", + "Timestamp": "2024-05-16T10:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.355900", + "Timestamp": "2024-05-16T10:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.230900", + "Timestamp": "2024-05-16T10:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089900", + "Timestamp": "2024-05-16T10:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129900", + "Timestamp": "2024-05-16T10:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029900", + "Timestamp": "2024-05-16T10:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224000", + "Timestamp": "2024-05-16T10:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134100", + "Timestamp": "2024-05-16T10:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130400", + "Timestamp": "2024-05-16T10:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074100", + "Timestamp": "2024-05-16T10:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.901900", + "Timestamp": "2024-05-16T10:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.871900", + "Timestamp": "2024-05-16T10:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.771900", + "Timestamp": "2024-05-16T10:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.022000", + "Timestamp": "2024-05-16T10:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.017000", + "Timestamp": "2024-05-16T10:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.892000", + "Timestamp": "2024-05-16T10:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148600", + "Timestamp": "2024-05-16T10:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144900", + "Timestamp": "2024-05-16T10:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088600", + "Timestamp": "2024-05-16T10:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.494000", + "Timestamp": "2024-05-16T10:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.135100", + "Timestamp": "2024-05-16T10:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.467800", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.437800", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.337800", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.890600", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.885600", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.760600", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149700", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146000", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089700", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.595400", + "Timestamp": "2024-05-16T10:47:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.590400", + "Timestamp": "2024-05-16T10:47:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.465400", + "Timestamp": "2024-05-16T10:47:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.177100", + "Timestamp": "2024-05-16T10:47:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.172100", + "Timestamp": "2024-05-16T10:47:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.047100", + "Timestamp": "2024-05-16T10:47:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.663300", + "Timestamp": "2024-05-16T10:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.852300", + "Timestamp": "2024-05-16T10:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.847300", + "Timestamp": "2024-05-16T10:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.722300", + "Timestamp": "2024-05-16T10:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.878900", + "Timestamp": "2024-05-16T10:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.366800", + "Timestamp": "2024-05-16T10:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.361800", + "Timestamp": "2024-05-16T10:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.236800", + "Timestamp": "2024-05-16T10:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.522000", + "Timestamp": "2024-05-16T10:47:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.581700", + "Timestamp": "2024-05-16T10:47:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.576700", + "Timestamp": "2024-05-16T10:47:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.451700", + "Timestamp": "2024-05-16T10:47:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.096100", + "Timestamp": "2024-05-16T10:47:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.091100", + "Timestamp": "2024-05-16T10:47:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.966100", + "Timestamp": "2024-05-16T10:47:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.494800", + "Timestamp": "2024-05-16T10:47:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.122000", + "Timestamp": "2024-05-16T10:46:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.878000", + "Timestamp": "2024-05-16T10:46:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.609600", + "Timestamp": "2024-05-16T10:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.514600", + "Timestamp": "2024-05-16T10:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.604600", + "Timestamp": "2024-05-16T10:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.509600", + "Timestamp": "2024-05-16T10:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.479600", + "Timestamp": "2024-05-16T10:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.384600", + "Timestamp": "2024-05-16T10:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.396600", + "Timestamp": "2024-05-16T10:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.391600", + "Timestamp": "2024-05-16T10:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.266600", + "Timestamp": "2024-05-16T10:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.854600", + "Timestamp": "2024-05-16T10:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.849600", + "Timestamp": "2024-05-16T10:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.724600", + "Timestamp": "2024-05-16T10:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.107600", + "Timestamp": "2024-05-16T10:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.338800", + "Timestamp": "2024-05-16T10:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.333800", + "Timestamp": "2024-05-16T10:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.208800", + "Timestamp": "2024-05-16T10:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.257300", + "Timestamp": "2024-05-16T10:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.227300", + "Timestamp": "2024-05-16T10:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.127300", + "Timestamp": "2024-05-16T10:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.204000", + "Timestamp": "2024-05-16T10:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.174000", + "Timestamp": "2024-05-16T10:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.074000", + "Timestamp": "2024-05-16T10:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.685500", + "Timestamp": "2024-05-16T10:46:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.271600", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.618300", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.342100", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.337100", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212100", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071600", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042600", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011600", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.788300", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.783300", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.658300", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.663400", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.658400", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.533400", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.255700", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.250700", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.125700", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.712600", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.973700", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.943700", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.843700", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.321600", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.291600", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.191600", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.688400", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.683400", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.558400", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.202600", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.197600", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072600", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206800", + "Timestamp": "2024-05-16T10:41:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206700", + "Timestamp": "2024-05-16T10:41:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207600", + "Timestamp": "2024-05-16T10:41:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225200", + "Timestamp": "2024-05-16T10:41:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130400", + "Timestamp": "2024-05-16T10:41:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134700", + "Timestamp": "2024-05-16T10:41:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138800", + "Timestamp": "2024-05-16T10:41:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132200", + "Timestamp": "2024-05-16T10:41:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126700", + "Timestamp": "2024-05-16T10:41:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131000", + "Timestamp": "2024-05-16T10:41:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135100", + "Timestamp": "2024-05-16T10:41:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128500", + "Timestamp": "2024-05-16T10:41:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070400", + "Timestamp": "2024-05-16T10:41:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074700", + "Timestamp": "2024-05-16T10:41:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078800", + "Timestamp": "2024-05-16T10:41:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072200", + "Timestamp": "2024-05-16T10:41:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211900", + "Timestamp": "2024-05-16T10:34:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.434900", + "Timestamp": "2024-05-16T10:33:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.313100", + "Timestamp": "2024-05-16T10:32:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.308100", + "Timestamp": "2024-05-16T10:32:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.183100", + "Timestamp": "2024-05-16T10:32:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.608100", + "Timestamp": "2024-05-16T10:32:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.603100", + "Timestamp": "2024-05-16T10:32:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.478100", + "Timestamp": "2024-05-16T10:32:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.380900", + "Timestamp": "2024-05-16T10:32:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.375900", + "Timestamp": "2024-05-16T10:32:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.250900", + "Timestamp": "2024-05-16T10:32:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.422500", + "Timestamp": "2024-05-16T10:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.417500", + "Timestamp": "2024-05-16T10:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.292500", + "Timestamp": "2024-05-16T10:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.065300", + "Timestamp": "2024-05-16T10:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.814400", + "Timestamp": "2024-05-16T10:32:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.697500", + "Timestamp": "2024-05-16T10:32:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.692500", + "Timestamp": "2024-05-16T10:32:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.567500", + "Timestamp": "2024-05-16T10:32:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.308800", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.303800", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.178800", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118800", + "Timestamp": "2024-05-16T10:32:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.391500", + "Timestamp": "2024-05-16T10:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T10:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.815200", + "Timestamp": "2024-05-16T10:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.377000", + "Timestamp": "2024-05-16T10:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.372000", + "Timestamp": "2024-05-16T10:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.247000", + "Timestamp": "2024-05-16T10:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094400", + "Timestamp": "2024-05-16T10:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090700", + "Timestamp": "2024-05-16T10:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034400", + "Timestamp": "2024-05-16T10:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.645700", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.615700", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.515700", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.771600", + "Timestamp": "2024-05-16T10:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.424800", + "Timestamp": "2024-05-16T10:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.394800", + "Timestamp": "2024-05-16T10:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.294800", + "Timestamp": "2024-05-16T10:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.015700", + "Timestamp": "2024-05-16T10:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.024200", + "Timestamp": "2024-05-16T10:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.900500", + "Timestamp": "2024-05-16T10:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.895500", + "Timestamp": "2024-05-16T10:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.770500", + "Timestamp": "2024-05-16T10:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.402900", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.372900", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.272900", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.750100", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.745100", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.620100", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.072200", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.067200", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.942200", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.903100", + "Timestamp": "2024-05-16T10:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168800", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165100", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108800", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.283200", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.278200", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.153200", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.978200", + "Timestamp": "2024-05-16T10:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.973200", + "Timestamp": "2024-05-16T10:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.848200", + "Timestamp": "2024-05-16T10:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.575900", + "Timestamp": "2024-05-16T10:32:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.607400", + "Timestamp": "2024-05-16T10:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.577400", + "Timestamp": "2024-05-16T10:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.477400", + "Timestamp": "2024-05-16T10:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.674000", + "Timestamp": "2024-05-16T10:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.696100", + "Timestamp": "2024-05-16T10:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.669000", + "Timestamp": "2024-05-16T10:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.691100", + "Timestamp": "2024-05-16T10:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.544000", + "Timestamp": "2024-05-16T10:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.566100", + "Timestamp": "2024-05-16T10:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162400", + "Timestamp": "2024-05-16T10:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158700", + "Timestamp": "2024-05-16T10:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102400", + "Timestamp": "2024-05-16T10:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225200", + "Timestamp": "2024-05-16T10:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.829800", + "Timestamp": "2024-05-16T10:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.874300", + "Timestamp": "2024-05-16T10:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.824800", + "Timestamp": "2024-05-16T10:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.869300", + "Timestamp": "2024-05-16T10:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.699800", + "Timestamp": "2024-05-16T10:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.744300", + "Timestamp": "2024-05-16T10:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.890900", + "Timestamp": "2024-05-16T10:32:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.885900", + "Timestamp": "2024-05-16T10:32:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.760900", + "Timestamp": "2024-05-16T10:32:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.590400", + "Timestamp": "2024-05-16T10:32:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.560400", + "Timestamp": "2024-05-16T10:32:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.460400", + "Timestamp": "2024-05-16T10:32:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.830000", + "Timestamp": "2024-05-16T10:32:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.800000", + "Timestamp": "2024-05-16T10:32:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.700000", + "Timestamp": "2024-05-16T10:32:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093200", + "Timestamp": "2024-05-16T10:32:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089200", + "Timestamp": "2024-05-16T10:32:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033200", + "Timestamp": "2024-05-16T10:32:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.255500", + "Timestamp": "2024-05-16T10:32:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167500", + "Timestamp": "2024-05-16T10:32:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163500", + "Timestamp": "2024-05-16T10:32:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T10:32:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.560000", + "Timestamp": "2024-05-16T10:32:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.551400", + "Timestamp": "2024-05-16T10:32:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163900", + "Timestamp": "2024-05-16T10:32:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159900", + "Timestamp": "2024-05-16T10:32:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103900", + "Timestamp": "2024-05-16T10:32:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.633200", + "Timestamp": "2024-05-16T10:32:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.691900", + "Timestamp": "2024-05-16T10:32:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.686900", + "Timestamp": "2024-05-16T10:32:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.561900", + "Timestamp": "2024-05-16T10:32:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.252700", + "Timestamp": "2024-05-16T10:32:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.222700", + "Timestamp": "2024-05-16T10:32:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.122700", + "Timestamp": "2024-05-16T10:32:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.628100", + "Timestamp": "2024-05-16T10:31:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.598100", + "Timestamp": "2024-05-16T10:31:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.498100", + "Timestamp": "2024-05-16T10:31:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.767000", + "Timestamp": "2024-05-16T10:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.229500", + "Timestamp": "2024-05-16T10:31:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.396900", + "Timestamp": "2024-05-16T10:31:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.139500", + "Timestamp": "2024-05-16T10:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.134500", + "Timestamp": "2024-05-16T10:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.009500", + "Timestamp": "2024-05-16T10:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.583100", + "Timestamp": "2024-05-16T10:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.578100", + "Timestamp": "2024-05-16T10:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.453100", + "Timestamp": "2024-05-16T10:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172000", + "Timestamp": "2024-05-16T10:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168300", + "Timestamp": "2024-05-16T10:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-16T10:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.421300", + "Timestamp": "2024-05-16T10:31:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.647200", + "Timestamp": "2024-05-16T10:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.415300", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.410300", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.285300", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.558800", + "Timestamp": "2024-05-16T10:31:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.553800", + "Timestamp": "2024-05-16T10:31:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.428800", + "Timestamp": "2024-05-16T10:31:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.426700", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.200000", + "Timestamp": "2024-05-16T10:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.800500", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.795500", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.670500", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.555700", + "Timestamp": "2024-05-16T10:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.682400", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.677400", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.552400", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.759700", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.754700", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.629700", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.310500", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.305500", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180500", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.109500", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.104500", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.979500", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088500", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084800", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028500", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086300", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082600", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026300", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.457400", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.456600", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.275200", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.245200", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145200", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104700", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101000", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044700", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.159500", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.249000", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.244000", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119000", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.563300", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.783500", + "Timestamp": "2024-05-16T10:17:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.548600", + "Timestamp": "2024-05-16T10:17:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.543600", + "Timestamp": "2024-05-16T10:17:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.418600", + "Timestamp": "2024-05-16T10:17:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.381500", + "Timestamp": "2024-05-16T10:17:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.376500", + "Timestamp": "2024-05-16T10:17:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.251500", + "Timestamp": "2024-05-16T10:17:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.864900", + "Timestamp": "2024-05-16T10:17:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.777800", + "Timestamp": "2024-05-16T10:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.428900", + "Timestamp": "2024-05-16T10:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.775600", + "Timestamp": "2024-05-16T10:17:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.609100", + "Timestamp": "2024-05-16T10:17:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.604100", + "Timestamp": "2024-05-16T10:17:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.479100", + "Timestamp": "2024-05-16T10:17:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.771100", + "Timestamp": "2024-05-16T10:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.741100", + "Timestamp": "2024-05-16T10:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.641100", + "Timestamp": "2024-05-16T10:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.251600", + "Timestamp": "2024-05-16T10:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.246600", + "Timestamp": "2024-05-16T10:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121600", + "Timestamp": "2024-05-16T10:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.755600", + "Timestamp": "2024-05-16T10:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.725600", + "Timestamp": "2024-05-16T10:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.625600", + "Timestamp": "2024-05-16T10:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172600", + "Timestamp": "2024-05-16T10:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168900", + "Timestamp": "2024-05-16T10:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-16T10:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.981800", + "Timestamp": "2024-05-16T10:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.951800", + "Timestamp": "2024-05-16T10:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.851800", + "Timestamp": "2024-05-16T10:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.488500", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.458500", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.358500", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.667300", + "Timestamp": "2024-05-16T10:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.662300", + "Timestamp": "2024-05-16T10:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.537300", + "Timestamp": "2024-05-16T10:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.313500", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.308500", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.183500", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.015100", + "Timestamp": "2024-05-16T10:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.985100", + "Timestamp": "2024-05-16T10:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.885100", + "Timestamp": "2024-05-16T10:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.696200", + "Timestamp": "2024-05-16T10:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.772900", + "Timestamp": "2024-05-16T10:17:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130000", + "Timestamp": "2024-05-16T10:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126000", + "Timestamp": "2024-05-16T10:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070000", + "Timestamp": "2024-05-16T10:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.887100", + "Timestamp": "2024-05-16T10:17:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.882100", + "Timestamp": "2024-05-16T10:17:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.757100", + "Timestamp": "2024-05-16T10:17:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.083200", + "Timestamp": "2024-05-16T10:17:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.596200", + "Timestamp": "2024-05-16T10:17:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.078200", + "Timestamp": "2024-05-16T10:17:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.591200", + "Timestamp": "2024-05-16T10:17:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.953200", + "Timestamp": "2024-05-16T10:17:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.466200", + "Timestamp": "2024-05-16T10:17:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.421600", + "Timestamp": "2024-05-16T10:17:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.664300", + "Timestamp": "2024-05-16T10:17:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.659300", + "Timestamp": "2024-05-16T10:17:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.534300", + "Timestamp": "2024-05-16T10:17:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.682400", + "Timestamp": "2024-05-16T10:17:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.948400", + "Timestamp": "2024-05-16T10:17:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.943400", + "Timestamp": "2024-05-16T10:17:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.818400", + "Timestamp": "2024-05-16T10:17:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.631800", + "Timestamp": "2024-05-16T10:17:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.626800", + "Timestamp": "2024-05-16T10:17:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.501800", + "Timestamp": "2024-05-16T10:17:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.030800", + "Timestamp": "2024-05-16T10:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.025800", + "Timestamp": "2024-05-16T10:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.900800", + "Timestamp": "2024-05-16T10:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.759800", + "Timestamp": "2024-05-16T10:17:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.754800", + "Timestamp": "2024-05-16T10:17:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.629800", + "Timestamp": "2024-05-16T10:17:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.281300", + "Timestamp": "2024-05-16T10:17:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108900", + "Timestamp": "2024-05-16T10:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T10:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048900", + "Timestamp": "2024-05-16T10:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.698000", + "Timestamp": "2024-05-16T10:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418200", + "Timestamp": "2024-05-16T10:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.297900", + "Timestamp": "2024-05-16T10:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.292900", + "Timestamp": "2024-05-16T10:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.167900", + "Timestamp": "2024-05-16T10:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.708700", + "Timestamp": "2024-05-16T10:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.703700", + "Timestamp": "2024-05-16T10:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.578700", + "Timestamp": "2024-05-16T10:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.239300", + "Timestamp": "2024-05-16T10:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.234300", + "Timestamp": "2024-05-16T10:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-16T10:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.294900", + "Timestamp": "2024-05-16T10:16:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.289900", + "Timestamp": "2024-05-16T10:16:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.164900", + "Timestamp": "2024-05-16T10:16:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.510600", + "Timestamp": "2024-05-16T10:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.351200", + "Timestamp": "2024-05-16T10:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.230400", + "Timestamp": "2024-05-16T10:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.225400", + "Timestamp": "2024-05-16T10:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.100400", + "Timestamp": "2024-05-16T10:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.651800", + "Timestamp": "2024-05-16T10:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.427600", + "Timestamp": "2024-05-16T10:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.206500", + "Timestamp": "2024-05-16T10:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.990900", + "Timestamp": "2024-05-16T10:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.985900", + "Timestamp": "2024-05-16T10:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.860900", + "Timestamp": "2024-05-16T10:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.129300", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.124300", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.999300", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.761200", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.888400", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.883400", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.758400", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.726600", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.721600", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.596600", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.976800", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.946800", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.846800", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.645300", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.640300", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.515300", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.290200", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.260200", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.160200", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.277700", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.258100", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.891200", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.918500", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.886200", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.913500", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.761200", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.788500", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.691500", + "Timestamp": "2024-05-16T10:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.686500", + "Timestamp": "2024-05-16T10:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.561500", + "Timestamp": "2024-05-16T10:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.552800", + "Timestamp": "2024-05-16T10:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.564800", + "Timestamp": "2024-05-16T10:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.559800", + "Timestamp": "2024-05-16T10:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.434800", + "Timestamp": "2024-05-16T10:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.309800", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.304800", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.179800", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.525900", + "Timestamp": "2024-05-16T10:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.528100", + "Timestamp": "2024-05-16T10:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.520900", + "Timestamp": "2024-05-16T10:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.523100", + "Timestamp": "2024-05-16T10:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.395900", + "Timestamp": "2024-05-16T10:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.398100", + "Timestamp": "2024-05-16T10:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.240800", + "Timestamp": "2024-05-16T10:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.235800", + "Timestamp": "2024-05-16T10:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.110800", + "Timestamp": "2024-05-16T10:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209700", + "Timestamp": "2024-05-16T10:05:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.237300", + "Timestamp": "2024-05-16T10:04:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.219600", + "Timestamp": "2024-05-16T10:04:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.613600", + "Timestamp": "2024-05-16T10:04:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.583600", + "Timestamp": "2024-05-16T10:04:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.483600", + "Timestamp": "2024-05-16T10:04:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065900", + "Timestamp": "2024-05-16T10:04:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.062200", + "Timestamp": "2024-05-16T10:04:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005900", + "Timestamp": "2024-05-16T10:04:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.184800", + "Timestamp": "2024-05-16T10:03:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.803000", + "Timestamp": "2024-05-16T10:02:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.798000", + "Timestamp": "2024-05-16T10:02:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.673000", + "Timestamp": "2024-05-16T10:02:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.167400", + "Timestamp": "2024-05-16T10:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.893600", + "Timestamp": "2024-05-16T10:02:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.516200", + "Timestamp": "2024-05-16T10:02:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.511200", + "Timestamp": "2024-05-16T10:02:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.386200", + "Timestamp": "2024-05-16T10:02:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.659700", + "Timestamp": "2024-05-16T10:02:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.629700", + "Timestamp": "2024-05-16T10:02:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.529700", + "Timestamp": "2024-05-16T10:02:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213500", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.471800", + "Timestamp": "2024-05-16T10:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.466800", + "Timestamp": "2024-05-16T10:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.341800", + "Timestamp": "2024-05-16T10:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-16T10:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093800", + "Timestamp": "2024-05-16T10:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037500", + "Timestamp": "2024-05-16T10:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.344100", + "Timestamp": "2024-05-16T10:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.339100", + "Timestamp": "2024-05-16T10:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.214100", + "Timestamp": "2024-05-16T10:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.859500", + "Timestamp": "2024-05-16T10:02:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.829500", + "Timestamp": "2024-05-16T10:02:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.729500", + "Timestamp": "2024-05-16T10:02:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.189700", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.657400", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.652400", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.527400", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.951100", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054600", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.634500", + "Timestamp": "2024-05-16T10:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.815600", + "Timestamp": "2024-05-16T10:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.629500", + "Timestamp": "2024-05-16T10:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.810600", + "Timestamp": "2024-05-16T10:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.504500", + "Timestamp": "2024-05-16T10:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.685600", + "Timestamp": "2024-05-16T10:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.989400", + "Timestamp": "2024-05-16T10:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.959400", + "Timestamp": "2024-05-16T10:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.859400", + "Timestamp": "2024-05-16T10:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.037100", + "Timestamp": "2024-05-16T10:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.032100", + "Timestamp": "2024-05-16T10:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.907100", + "Timestamp": "2024-05-16T10:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.407000", + "Timestamp": "2024-05-16T10:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.402000", + "Timestamp": "2024-05-16T10:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.277000", + "Timestamp": "2024-05-16T10:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.398100", + "Timestamp": "2024-05-16T10:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.393100", + "Timestamp": "2024-05-16T10:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.268100", + "Timestamp": "2024-05-16T10:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.629700", + "Timestamp": "2024-05-16T10:02:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.624700", + "Timestamp": "2024-05-16T10:02:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.499700", + "Timestamp": "2024-05-16T10:02:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.808900", + "Timestamp": "2024-05-16T10:02:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.803900", + "Timestamp": "2024-05-16T10:02:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.678900", + "Timestamp": "2024-05-16T10:02:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.723800", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.718800", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.593800", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.525200", + "Timestamp": "2024-05-16T10:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.668900", + "Timestamp": "2024-05-16T10:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.663900", + "Timestamp": "2024-05-16T10:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.538900", + "Timestamp": "2024-05-16T10:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.647600", + "Timestamp": "2024-05-16T10:02:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.761000", + "Timestamp": "2024-05-16T10:02:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.756000", + "Timestamp": "2024-05-16T10:02:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.631000", + "Timestamp": "2024-05-16T10:02:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.490100", + "Timestamp": "2024-05-16T10:02:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.797900", + "Timestamp": "2024-05-16T10:02:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.792900", + "Timestamp": "2024-05-16T10:02:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.667900", + "Timestamp": "2024-05-16T10:02:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.005300", + "Timestamp": "2024-05-16T10:02:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.975300", + "Timestamp": "2024-05-16T10:02:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.875300", + "Timestamp": "2024-05-16T10:02:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068000", + "Timestamp": "2024-05-16T10:02:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.064300", + "Timestamp": "2024-05-16T10:02:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008000", + "Timestamp": "2024-05-16T10:02:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T10:02:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.621300", + "Timestamp": "2024-05-16T10:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.331700", + "Timestamp": "2024-05-16T10:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.326700", + "Timestamp": "2024-05-16T10:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.201700", + "Timestamp": "2024-05-16T10:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.221200", + "Timestamp": "2024-05-16T10:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.416300", + "Timestamp": "2024-05-16T10:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.191200", + "Timestamp": "2024-05-16T10:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.386300", + "Timestamp": "2024-05-16T10:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.091200", + "Timestamp": "2024-05-16T10:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.286300", + "Timestamp": "2024-05-16T10:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298900", + "Timestamp": "2024-05-16T10:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g3s.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294900", + "Timestamp": "2024-05-16T10:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.238900", + "Timestamp": "2024-05-16T10:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.646300", + "Timestamp": "2024-05-16T10:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.641300", + "Timestamp": "2024-05-16T10:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.516300", + "Timestamp": "2024-05-16T10:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.878200", + "Timestamp": "2024-05-16T10:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.873200", + "Timestamp": "2024-05-16T10:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.748200", + "Timestamp": "2024-05-16T10:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.283700", + "Timestamp": "2024-05-16T10:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.253700", + "Timestamp": "2024-05-16T10:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.153700", + "Timestamp": "2024-05-16T10:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176400", + "Timestamp": "2024-05-16T10:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172400", + "Timestamp": "2024-05-16T10:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-16T10:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.478400", + "Timestamp": "2024-05-16T10:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.473400", + "Timestamp": "2024-05-16T10:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.348400", + "Timestamp": "2024-05-16T10:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.114500", + "Timestamp": "2024-05-16T10:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.084500", + "Timestamp": "2024-05-16T10:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.984500", + "Timestamp": "2024-05-16T10:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072300", + "Timestamp": "2024-05-16T10:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043300", + "Timestamp": "2024-05-16T10:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012300", + "Timestamp": "2024-05-16T10:01:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.620000", + "Timestamp": "2024-05-16T10:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.615000", + "Timestamp": "2024-05-16T10:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.490000", + "Timestamp": "2024-05-16T10:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.855200", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.825200", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.725200", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.930700", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.926600", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.905500", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.737300", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.732300", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.607300", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.146200", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.141200", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.016200", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.428700", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.442100", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.396300", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.412100", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.366300", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.312100", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.266300", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.419900", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.414900", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.289900", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.430900", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.456300", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.425900", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.451300", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.300900", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.326300", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.898900", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.585100", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.266200", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.261200", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136200", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.612900", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278400", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273400", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148400", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.993700", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.963700", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.863700", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.723400", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.678900", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.910400", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.989000", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.026100", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.996100", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.896100", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.807700", + "Timestamp": "2024-05-16T10:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.885700", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155000", + "Timestamp": "2024-05-16T10:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151000", + "Timestamp": "2024-05-16T10:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095000", + "Timestamp": "2024-05-16T10:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.655700", + "Timestamp": "2024-05-16T10:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.422200", + "Timestamp": "2024-05-16T10:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.417200", + "Timestamp": "2024-05-16T10:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.292200", + "Timestamp": "2024-05-16T10:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T09:48:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.333900", + "Timestamp": "2024-05-16T09:47:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.328900", + "Timestamp": "2024-05-16T09:47:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.203900", + "Timestamp": "2024-05-16T09:47:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.267300", + "Timestamp": "2024-05-16T09:47:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.160600", + "Timestamp": "2024-05-16T09:47:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.903600", + "Timestamp": "2024-05-16T09:47:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.931000", + "Timestamp": "2024-05-16T09:47:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.936000", + "Timestamp": "2024-05-16T09:47:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.931000", + "Timestamp": "2024-05-16T09:47:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.806000", + "Timestamp": "2024-05-16T09:47:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.827200", + "Timestamp": "2024-05-16T09:47:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.822200", + "Timestamp": "2024-05-16T09:47:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.697200", + "Timestamp": "2024-05-16T09:47:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150500", + "Timestamp": "2024-05-16T09:47:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146500", + "Timestamp": "2024-05-16T09:47:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090500", + "Timestamp": "2024-05-16T09:47:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.843900", + "Timestamp": "2024-05-16T09:47:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078100", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074400", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018100", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.241100", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.622200", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.258800", + "Timestamp": "2024-05-16T09:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.253800", + "Timestamp": "2024-05-16T09:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128800", + "Timestamp": "2024-05-16T09:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440200", + "Timestamp": "2024-05-16T09:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.517800", + "Timestamp": "2024-05-16T09:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.512800", + "Timestamp": "2024-05-16T09:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.387800", + "Timestamp": "2024-05-16T09:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.584000", + "Timestamp": "2024-05-16T09:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.113900", + "Timestamp": "2024-05-16T09:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207700", + "Timestamp": "2024-05-16T09:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.420800", + "Timestamp": "2024-05-16T09:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.415800", + "Timestamp": "2024-05-16T09:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.290800", + "Timestamp": "2024-05-16T09:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.431700", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.426700", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.301700", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.632800", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.602800", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.502800", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.399800", + "Timestamp": "2024-05-16T09:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.394800", + "Timestamp": "2024-05-16T09:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.269800", + "Timestamp": "2024-05-16T09:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082900", + "Timestamp": "2024-05-16T09:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079200", + "Timestamp": "2024-05-16T09:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022900", + "Timestamp": "2024-05-16T09:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.308700", + "Timestamp": "2024-05-16T09:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.241800", + "Timestamp": "2024-05-16T09:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212500", + "Timestamp": "2024-05-16T09:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.685200", + "Timestamp": "2024-05-16T09:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.680200", + "Timestamp": "2024-05-16T09:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.555200", + "Timestamp": "2024-05-16T09:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-16T09:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084400", + "Timestamp": "2024-05-16T09:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028100", + "Timestamp": "2024-05-16T09:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.597700", + "Timestamp": "2024-05-16T09:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.592700", + "Timestamp": "2024-05-16T09:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.467700", + "Timestamp": "2024-05-16T09:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097000", + "Timestamp": "2024-05-16T09:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093000", + "Timestamp": "2024-05-16T09:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037000", + "Timestamp": "2024-05-16T09:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.732300", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.727300", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.602300", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.374700", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.369700", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.244700", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.509000", + "Timestamp": "2024-05-16T09:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.504000", + "Timestamp": "2024-05-16T09:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.379000", + "Timestamp": "2024-05-16T09:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218800", + "Timestamp": "2024-05-16T09:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.522100", + "Timestamp": "2024-05-16T09:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.517100", + "Timestamp": "2024-05-16T09:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.392100", + "Timestamp": "2024-05-16T09:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.263600", + "Timestamp": "2024-05-16T09:47:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.233600", + "Timestamp": "2024-05-16T09:47:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.133600", + "Timestamp": "2024-05-16T09:47:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.418100", + "Timestamp": "2024-05-16T09:47:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.413100", + "Timestamp": "2024-05-16T09:47:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.288100", + "Timestamp": "2024-05-16T09:47:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.663900", + "Timestamp": "2024-05-16T09:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.673900", + "Timestamp": "2024-05-16T09:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.668900", + "Timestamp": "2024-05-16T09:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.543900", + "Timestamp": "2024-05-16T09:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.400100", + "Timestamp": "2024-05-16T09:47:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "13.112500", + "Timestamp": "2024-05-16T09:47:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.101300", + "Timestamp": "2024-05-16T09:47:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.548200", + "Timestamp": "2024-05-16T09:47:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.543200", + "Timestamp": "2024-05-16T09:47:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.418200", + "Timestamp": "2024-05-16T09:47:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.037200", + "Timestamp": "2024-05-16T09:47:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170200", + "Timestamp": "2024-05-16T09:47:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166200", + "Timestamp": "2024-05-16T09:47:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T09:47:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114900", + "Timestamp": "2024-05-16T09:47:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111200", + "Timestamp": "2024-05-16T09:47:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054900", + "Timestamp": "2024-05-16T09:47:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.521200", + "Timestamp": "2024-05-16T09:47:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.562700", + "Timestamp": "2024-05-16T09:47:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.251600", + "Timestamp": "2024-05-16T09:47:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.073600", + "Timestamp": "2024-05-16T09:47:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.608700", + "Timestamp": "2024-05-16T09:47:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.603700", + "Timestamp": "2024-05-16T09:47:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.478700", + "Timestamp": "2024-05-16T09:47:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.827000", + "Timestamp": "2024-05-16T09:46:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.414300", + "Timestamp": "2024-05-16T09:46:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.855100", + "Timestamp": "2024-05-16T09:46:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.291900", + "Timestamp": "2024-05-16T09:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.286900", + "Timestamp": "2024-05-16T09:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.161900", + "Timestamp": "2024-05-16T09:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.098100", + "Timestamp": "2024-05-16T09:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207200", + "Timestamp": "2024-05-16T09:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.460800", + "Timestamp": "2024-05-16T09:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.331500", + "Timestamp": "2024-05-16T09:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.990800", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.310600", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.305600", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180600", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.560800", + "Timestamp": "2024-05-16T09:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.843700", + "Timestamp": "2024-05-16T09:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.838700", + "Timestamp": "2024-05-16T09:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.713700", + "Timestamp": "2024-05-16T09:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.136400", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.131400", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.006400", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052100", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.313700", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.389400", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.359400", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.259400", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.984100", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.954100", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.854100", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.029600", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.999600", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.899600", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.755200", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.052900", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.047900", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.922900", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.660800", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211300", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132400", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128700", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072400", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.944600", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.914600", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.814600", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129500", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125800", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069500", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.425200", + "Timestamp": "2024-05-16T09:32:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.834800", + "Timestamp": "2024-05-16T09:32:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099000", + "Timestamp": "2024-05-16T09:32:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T09:32:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039000", + "Timestamp": "2024-05-16T09:32:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.506000", + "Timestamp": "2024-05-16T09:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.501000", + "Timestamp": "2024-05-16T09:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.376000", + "Timestamp": "2024-05-16T09:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.699100", + "Timestamp": "2024-05-16T09:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.694100", + "Timestamp": "2024-05-16T09:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.569100", + "Timestamp": "2024-05-16T09:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429700", + "Timestamp": "2024-05-16T09:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099900", + "Timestamp": "2024-05-16T09:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096200", + "Timestamp": "2024-05-16T09:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039900", + "Timestamp": "2024-05-16T09:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.097000", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.661100", + "Timestamp": "2024-05-16T09:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.631100", + "Timestamp": "2024-05-16T09:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.531100", + "Timestamp": "2024-05-16T09:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.312900", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.591700", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.586700", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.461700", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.268300", + "Timestamp": "2024-05-16T09:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.263300", + "Timestamp": "2024-05-16T09:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.138300", + "Timestamp": "2024-05-16T09:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.376100", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.020400", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.015400", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.890400", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.804700", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.551100", + "Timestamp": "2024-05-16T09:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.973500", + "Timestamp": "2024-05-16T09:32:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.968500", + "Timestamp": "2024-05-16T09:32:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.843500", + "Timestamp": "2024-05-16T09:32:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.699800", + "Timestamp": "2024-05-16T09:32:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.276000", + "Timestamp": "2024-05-16T09:32:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.271000", + "Timestamp": "2024-05-16T09:32:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146000", + "Timestamp": "2024-05-16T09:32:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.596700", + "Timestamp": "2024-05-16T09:32:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.591700", + "Timestamp": "2024-05-16T09:32:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.466700", + "Timestamp": "2024-05-16T09:32:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.928400", + "Timestamp": "2024-05-16T09:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.299600", + "Timestamp": "2024-05-16T09:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.923400", + "Timestamp": "2024-05-16T09:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.294600", + "Timestamp": "2024-05-16T09:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.798400", + "Timestamp": "2024-05-16T09:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.169600", + "Timestamp": "2024-05-16T09:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.623700", + "Timestamp": "2024-05-16T09:32:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.618700", + "Timestamp": "2024-05-16T09:32:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.493700", + "Timestamp": "2024-05-16T09:32:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156500", + "Timestamp": "2024-05-16T09:32:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196500", + "Timestamp": "2024-05-16T09:32:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-16T09:32:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.110900", + "Timestamp": "2024-05-16T09:32:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T09:32:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T09:32:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052100", + "Timestamp": "2024-05-16T09:32:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.700000", + "Timestamp": "2024-05-16T09:32:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.695000", + "Timestamp": "2024-05-16T09:32:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.570000", + "Timestamp": "2024-05-16T09:32:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.490500", + "Timestamp": "2024-05-16T09:32:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.169300", + "Timestamp": "2024-05-16T09:32:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.485500", + "Timestamp": "2024-05-16T09:32:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.164300", + "Timestamp": "2024-05-16T09:32:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.360500", + "Timestamp": "2024-05-16T09:32:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.039300", + "Timestamp": "2024-05-16T09:32:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.827400", + "Timestamp": "2024-05-16T09:32:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.822400", + "Timestamp": "2024-05-16T09:32:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.697400", + "Timestamp": "2024-05-16T09:32:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.969600", + "Timestamp": "2024-05-16T09:32:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.939600", + "Timestamp": "2024-05-16T09:32:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.839600", + "Timestamp": "2024-05-16T09:32:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.657700", + "Timestamp": "2024-05-16T09:32:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.281600", + "Timestamp": "2024-05-16T09:32:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.702800", + "Timestamp": "2024-05-16T09:31:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.212700", + "Timestamp": "2024-05-16T09:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.207700", + "Timestamp": "2024-05-16T09:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.082700", + "Timestamp": "2024-05-16T09:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.210200", + "Timestamp": "2024-05-16T09:31:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.881000", + "Timestamp": "2024-05-16T09:31:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.332600", + "Timestamp": "2024-05-16T09:31:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.825500", + "Timestamp": "2024-05-16T09:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.426200", + "Timestamp": "2024-05-16T09:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.421200", + "Timestamp": "2024-05-16T09:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.296200", + "Timestamp": "2024-05-16T09:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.019100", + "Timestamp": "2024-05-16T09:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.014100", + "Timestamp": "2024-05-16T09:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.889100", + "Timestamp": "2024-05-16T09:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.708200", + "Timestamp": "2024-05-16T09:31:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.432000", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.364600", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334600", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.234600", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.246200", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.241200", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.116200", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.413000", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.479400", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.545000", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.540000", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.415000", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.309400", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.201600", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.196600", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.071600", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.709900", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.363400", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.358400", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.233400", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.154600", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.404000", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.449300", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.540700", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.535700", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.410700", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.318500", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.288500", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.188500", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.943700", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.938700", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.813700", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.976100", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.971100", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.846100", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.299700", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.294700", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.169700", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.364700", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.359700", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.234700", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.299200", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.294200", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.169200", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354100", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349100", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224100", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.407200", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.373700", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.329600", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.403500", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324600", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.398500", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199600", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.273500", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.942200", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.937200", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.812200", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124800", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121100", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064800", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.205100", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.245100", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145100", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.279200", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.274200", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.149200", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.916900", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.911900", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.786900", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.830200", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.830200", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294000", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289000", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164000", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.304300", + "Timestamp": "2024-05-16T09:17:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.299300", + "Timestamp": "2024-05-16T09:17:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.174300", + "Timestamp": "2024-05-16T09:17:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.832800", + "Timestamp": "2024-05-16T09:17:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.827800", + "Timestamp": "2024-05-16T09:17:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.702800", + "Timestamp": "2024-05-16T09:17:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.326000", + "Timestamp": "2024-05-16T09:17:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.321000", + "Timestamp": "2024-05-16T09:17:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196000", + "Timestamp": "2024-05-16T09:17:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.464000", + "Timestamp": "2024-05-16T09:17:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.459000", + "Timestamp": "2024-05-16T09:17:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.334000", + "Timestamp": "2024-05-16T09:17:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.697300", + "Timestamp": "2024-05-16T09:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.692300", + "Timestamp": "2024-05-16T09:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.567300", + "Timestamp": "2024-05-16T09:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.397500", + "Timestamp": "2024-05-16T09:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.643200", + "Timestamp": "2024-05-16T09:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.638200", + "Timestamp": "2024-05-16T09:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.513200", + "Timestamp": "2024-05-16T09:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.911100", + "Timestamp": "2024-05-16T09:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.881100", + "Timestamp": "2024-05-16T09:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.781100", + "Timestamp": "2024-05-16T09:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.737400", + "Timestamp": "2024-05-16T09:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.732400", + "Timestamp": "2024-05-16T09:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.607400", + "Timestamp": "2024-05-16T09:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.828400", + "Timestamp": "2024-05-16T09:17:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.823400", + "Timestamp": "2024-05-16T09:17:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.698400", + "Timestamp": "2024-05-16T09:17:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.506400", + "Timestamp": "2024-05-16T09:17:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.501400", + "Timestamp": "2024-05-16T09:17:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.376400", + "Timestamp": "2024-05-16T09:17:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212900", + "Timestamp": "2024-05-16T09:17:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.377700", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372700", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.247700", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.695100", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.665100", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.565100", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.500300", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.495300", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.370300", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138100", + "Timestamp": "2024-05-16T09:17:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134400", + "Timestamp": "2024-05-16T09:17:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078100", + "Timestamp": "2024-05-16T09:17:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130800", + "Timestamp": "2024-05-16T09:17:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170800", + "Timestamp": "2024-05-16T09:17:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070800", + "Timestamp": "2024-05-16T09:17:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.052300", + "Timestamp": "2024-05-16T09:17:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.047300", + "Timestamp": "2024-05-16T09:17:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.922300", + "Timestamp": "2024-05-16T09:17:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.764400", + "Timestamp": "2024-05-16T09:17:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.370100", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.365100", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.240100", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.465600", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.664200", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.683500", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.653500", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.553500", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.057400", + "Timestamp": "2024-05-16T09:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.052400", + "Timestamp": "2024-05-16T09:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.927400", + "Timestamp": "2024-05-16T09:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.808500", + "Timestamp": "2024-05-16T09:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.544300", + "Timestamp": "2024-05-16T09:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.539300", + "Timestamp": "2024-05-16T09:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.414300", + "Timestamp": "2024-05-16T09:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.457800", + "Timestamp": "2024-05-16T09:17:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.739100", + "Timestamp": "2024-05-16T09:17:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.734100", + "Timestamp": "2024-05-16T09:17:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.609100", + "Timestamp": "2024-05-16T09:17:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.498400", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.493400", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.368400", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.595600", + "Timestamp": "2024-05-16T09:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.590600", + "Timestamp": "2024-05-16T09:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.465600", + "Timestamp": "2024-05-16T09:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.284000", + "Timestamp": "2024-05-16T09:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.222700", + "Timestamp": "2024-05-16T09:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.279000", + "Timestamp": "2024-05-16T09:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.217700", + "Timestamp": "2024-05-16T09:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.154000", + "Timestamp": "2024-05-16T09:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.092700", + "Timestamp": "2024-05-16T09:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.899800", + "Timestamp": "2024-05-16T09:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.828000", + "Timestamp": "2024-05-16T09:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.823000", + "Timestamp": "2024-05-16T09:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.698000", + "Timestamp": "2024-05-16T09:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138100", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038100", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.099200", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.389800", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.377400", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.384800", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372400", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.259800", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.247400", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.596700", + "Timestamp": "2024-05-16T09:17:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.591700", + "Timestamp": "2024-05-16T09:17:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.466700", + "Timestamp": "2024-05-16T09:17:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101900", + "Timestamp": "2024-05-16T09:17:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098200", + "Timestamp": "2024-05-16T09:17:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041900", + "Timestamp": "2024-05-16T09:17:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.248900", + "Timestamp": "2024-05-16T09:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.243900", + "Timestamp": "2024-05-16T09:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118900", + "Timestamp": "2024-05-16T09:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362800", + "Timestamp": "2024-05-16T09:17:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.332800", + "Timestamp": "2024-05-16T09:17:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.232800", + "Timestamp": "2024-05-16T09:17:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156500", + "Timestamp": "2024-05-16T09:17:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152500", + "Timestamp": "2024-05-16T09:17:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-16T09:17:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.082200", + "Timestamp": "2024-05-16T09:17:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.077200", + "Timestamp": "2024-05-16T09:17:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.952200", + "Timestamp": "2024-05-16T09:17:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.698400", + "Timestamp": "2024-05-16T09:17:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.419400", + "Timestamp": "2024-05-16T09:17:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.986500", + "Timestamp": "2024-05-16T09:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.981500", + "Timestamp": "2024-05-16T09:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.856500", + "Timestamp": "2024-05-16T09:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.708100", + "Timestamp": "2024-05-16T09:17:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T09:17:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T09:17:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051400", + "Timestamp": "2024-05-16T09:17:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261000", + "Timestamp": "2024-05-16T09:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.256000", + "Timestamp": "2024-05-16T09:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131000", + "Timestamp": "2024-05-16T09:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.194700", + "Timestamp": "2024-05-16T09:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.164700", + "Timestamp": "2024-05-16T09:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.064700", + "Timestamp": "2024-05-16T09:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.135500", + "Timestamp": "2024-05-16T09:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.405500", + "Timestamp": "2024-05-16T09:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.529300", + "Timestamp": "2024-05-16T09:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.430700", + "Timestamp": "2024-05-16T09:16:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.425700", + "Timestamp": "2024-05-16T09:16:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.300700", + "Timestamp": "2024-05-16T09:16:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.078000", + "Timestamp": "2024-05-16T09:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.033300", + "Timestamp": "2024-05-16T09:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.288000", + "Timestamp": "2024-05-16T09:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.283000", + "Timestamp": "2024-05-16T09:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158000", + "Timestamp": "2024-05-16T09:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.452500", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.748400", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.743400", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.618400", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072700", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043700", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012700", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.969400", + "Timestamp": "2024-05-16T09:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.040200", + "Timestamp": "2024-05-16T09:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.205400", + "Timestamp": "2024-05-16T09:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076700", + "Timestamp": "2024-05-16T09:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073000", + "Timestamp": "2024-05-16T09:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016700", + "Timestamp": "2024-05-16T09:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.105800", + "Timestamp": "2024-05-16T09:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.075800", + "Timestamp": "2024-05-16T09:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.975800", + "Timestamp": "2024-05-16T09:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.603000", + "Timestamp": "2024-05-16T09:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.598000", + "Timestamp": "2024-05-16T09:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.473000", + "Timestamp": "2024-05-16T09:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.433200", + "Timestamp": "2024-05-16T09:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.525400", + "Timestamp": "2024-05-16T09:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.495400", + "Timestamp": "2024-05-16T09:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.395400", + "Timestamp": "2024-05-16T09:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.770400", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.765400", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.640400", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.355500", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.439600", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.798800", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.793800", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.668800", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.812400", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.807400", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.682400", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.577000", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.640100", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.610100", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.510100", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.628700", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.754100", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.634000", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.634600", + "Timestamp": "2024-05-16T09:16:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.455000", + "Timestamp": "2024-05-16T09:16:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.629600", + "Timestamp": "2024-05-16T09:16:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.450000", + "Timestamp": "2024-05-16T09:16:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.504600", + "Timestamp": "2024-05-16T09:16:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.325000", + "Timestamp": "2024-05-16T09:16:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.419600", + "Timestamp": "2024-05-16T09:03:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135400", + "Timestamp": "2024-05-16T09:03:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131700", + "Timestamp": "2024-05-16T09:03:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075400", + "Timestamp": "2024-05-16T09:03:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.800800", + "Timestamp": "2024-05-16T09:02:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.542800", + "Timestamp": "2024-05-16T09:02:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.766000", + "Timestamp": "2024-05-16T09:02:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.408000", + "Timestamp": "2024-05-16T09:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.403000", + "Timestamp": "2024-05-16T09:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.278000", + "Timestamp": "2024-05-16T09:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.268300", + "Timestamp": "2024-05-16T09:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.263300", + "Timestamp": "2024-05-16T09:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.138300", + "Timestamp": "2024-05-16T09:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.834400", + "Timestamp": "2024-05-16T09:02:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.829400", + "Timestamp": "2024-05-16T09:02:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.704400", + "Timestamp": "2024-05-16T09:02:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101500", + "Timestamp": "2024-05-16T09:02:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-16T09:02:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041500", + "Timestamp": "2024-05-16T09:02:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.430000", + "Timestamp": "2024-05-16T09:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.448800", + "Timestamp": "2024-05-16T09:02:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.289900", + "Timestamp": "2024-05-16T09:02:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.259900", + "Timestamp": "2024-05-16T09:02:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159900", + "Timestamp": "2024-05-16T09:02:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.249000", + "Timestamp": "2024-05-16T09:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.219000", + "Timestamp": "2024-05-16T09:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.119000", + "Timestamp": "2024-05-16T09:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T09:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T09:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047700", + "Timestamp": "2024-05-16T09:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.451800", + "Timestamp": "2024-05-16T09:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.495700", + "Timestamp": "2024-05-16T09:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222800", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.885200", + "Timestamp": "2024-05-16T09:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.880200", + "Timestamp": "2024-05-16T09:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.755200", + "Timestamp": "2024-05-16T09:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.711000", + "Timestamp": "2024-05-16T09:02:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.706000", + "Timestamp": "2024-05-16T09:02:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.581000", + "Timestamp": "2024-05-16T09:02:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.808100", + "Timestamp": "2024-05-16T09:02:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.803100", + "Timestamp": "2024-05-16T09:02:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.678100", + "Timestamp": "2024-05-16T09:02:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.470600", + "Timestamp": "2024-05-16T09:02:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.465600", + "Timestamp": "2024-05-16T09:02:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.340600", + "Timestamp": "2024-05-16T09:02:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138700", + "Timestamp": "2024-05-16T09:02:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135000", + "Timestamp": "2024-05-16T09:02:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078700", + "Timestamp": "2024-05-16T09:02:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.259800", + "Timestamp": "2024-05-16T09:02:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.299800", + "Timestamp": "2024-05-16T09:02:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199800", + "Timestamp": "2024-05-16T09:02:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.254000", + "Timestamp": "2024-05-16T09:02:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.249000", + "Timestamp": "2024-05-16T09:02:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124000", + "Timestamp": "2024-05-16T09:02:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.575700", + "Timestamp": "2024-05-16T09:02:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.613500", + "Timestamp": "2024-05-16T09:02:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.608500", + "Timestamp": "2024-05-16T09:02:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.483500", + "Timestamp": "2024-05-16T09:02:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.473500", + "Timestamp": "2024-05-16T09:02:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.635100", + "Timestamp": "2024-05-16T09:02:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.753500", + "Timestamp": "2024-05-16T09:02:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.471600", + "Timestamp": "2024-05-16T09:02:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.466600", + "Timestamp": "2024-05-16T09:02:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.341600", + "Timestamp": "2024-05-16T09:02:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134800", + "Timestamp": "2024-05-16T09:02:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130800", + "Timestamp": "2024-05-16T09:02:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074800", + "Timestamp": "2024-05-16T09:02:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.428700", + "Timestamp": "2024-05-16T09:01:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.423700", + "Timestamp": "2024-05-16T09:01:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.298700", + "Timestamp": "2024-05-16T09:01:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.706600", + "Timestamp": "2024-05-16T09:01:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.701600", + "Timestamp": "2024-05-16T09:01:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.576600", + "Timestamp": "2024-05-16T09:01:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.696600", + "Timestamp": "2024-05-16T09:01:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068200", + "Timestamp": "2024-05-16T09:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039200", + "Timestamp": "2024-05-16T09:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008200", + "Timestamp": "2024-05-16T09:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.885700", + "Timestamp": "2024-05-16T09:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.880700", + "Timestamp": "2024-05-16T09:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.755700", + "Timestamp": "2024-05-16T09:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.827000", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.822000", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.697000", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.302200", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.819400", + "Timestamp": "2024-05-16T09:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.297600", + "Timestamp": "2024-05-16T09:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.504500", + "Timestamp": "2024-05-16T09:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.499500", + "Timestamp": "2024-05-16T09:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.374500", + "Timestamp": "2024-05-16T09:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.601900", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.596900", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.471900", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.650100", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.645100", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.520100", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.759000", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.396600", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207900", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.016300", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.011300", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.886300", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.440700", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116500", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056500", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.434200", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092300", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036000", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.647100", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.642100", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.517100", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.569600", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.223700", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.685000", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.862200", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.436200", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.431200", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.306200", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.361700", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.356700", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.231700", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.423500", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.418500", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.293500", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.251000", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.221000", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121000", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.282800", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.252800", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.152800", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.864800", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.284000", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.279000", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.154000", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.657300", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.652300", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.527300", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.429000", + "Timestamp": "2024-05-16T09:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.458500", + "Timestamp": "2024-05-16T09:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.424000", + "Timestamp": "2024-05-16T09:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.453500", + "Timestamp": "2024-05-16T09:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.299000", + "Timestamp": "2024-05-16T09:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.328500", + "Timestamp": "2024-05-16T09:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.353200", + "Timestamp": "2024-05-16T09:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.348200", + "Timestamp": "2024-05-16T09:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.223200", + "Timestamp": "2024-05-16T09:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T08:48:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.413600", + "Timestamp": "2024-05-16T08:47:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.824400", + "Timestamp": "2024-05-16T08:47:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.817600", + "Timestamp": "2024-05-16T08:47:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.747300", + "Timestamp": "2024-05-16T08:47:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.787600", + "Timestamp": "2024-05-16T08:47:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.717300", + "Timestamp": "2024-05-16T08:47:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.687600", + "Timestamp": "2024-05-16T08:47:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.617300", + "Timestamp": "2024-05-16T08:47:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.226100", + "Timestamp": "2024-05-16T08:47:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.221100", + "Timestamp": "2024-05-16T08:47:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096100", + "Timestamp": "2024-05-16T08:47:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324100", + "Timestamp": "2024-05-16T08:47:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319100", + "Timestamp": "2024-05-16T08:47:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194100", + "Timestamp": "2024-05-16T08:47:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.681400", + "Timestamp": "2024-05-16T08:47:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.676400", + "Timestamp": "2024-05-16T08:47:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.551400", + "Timestamp": "2024-05-16T08:47:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.983100", + "Timestamp": "2024-05-16T08:47:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T08:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100600", + "Timestamp": "2024-05-16T08:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044600", + "Timestamp": "2024-05-16T08:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.389000", + "Timestamp": "2024-05-16T08:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.627600", + "Timestamp": "2024-05-16T08:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.622600", + "Timestamp": "2024-05-16T08:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.497600", + "Timestamp": "2024-05-16T08:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.391200", + "Timestamp": "2024-05-16T08:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.386200", + "Timestamp": "2024-05-16T08:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.261200", + "Timestamp": "2024-05-16T08:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360500", + "Timestamp": "2024-05-16T08:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.355500", + "Timestamp": "2024-05-16T08:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230500", + "Timestamp": "2024-05-16T08:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.919200", + "Timestamp": "2024-05-16T08:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.914200", + "Timestamp": "2024-05-16T08:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.789200", + "Timestamp": "2024-05-16T08:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.786600", + "Timestamp": "2024-05-16T08:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.101400", + "Timestamp": "2024-05-16T08:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.192600", + "Timestamp": "2024-05-16T08:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114700", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054700", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.237200", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.232200", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.107200", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.242600", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.802000", + "Timestamp": "2024-05-16T08:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.798700", + "Timestamp": "2024-05-16T08:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.793700", + "Timestamp": "2024-05-16T08:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.668700", + "Timestamp": "2024-05-16T08:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.881800", + "Timestamp": "2024-05-16T08:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.851800", + "Timestamp": "2024-05-16T08:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.751800", + "Timestamp": "2024-05-16T08:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.720000", + "Timestamp": "2024-05-16T08:47:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.191300", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.187600", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131300", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.950400", + "Timestamp": "2024-05-16T08:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.945400", + "Timestamp": "2024-05-16T08:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.820400", + "Timestamp": "2024-05-16T08:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.394700", + "Timestamp": "2024-05-16T08:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.389700", + "Timestamp": "2024-05-16T08:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.264700", + "Timestamp": "2024-05-16T08:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.635200", + "Timestamp": "2024-05-16T08:47:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.630200", + "Timestamp": "2024-05-16T08:47:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.505200", + "Timestamp": "2024-05-16T08:47:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130300", + "Timestamp": "2024-05-16T08:47:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T08:47:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070300", + "Timestamp": "2024-05-16T08:47:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.490400", + "Timestamp": "2024-05-16T08:47:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.485400", + "Timestamp": "2024-05-16T08:47:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.360400", + "Timestamp": "2024-05-16T08:47:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154700", + "Timestamp": "2024-05-16T08:47:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151000", + "Timestamp": "2024-05-16T08:47:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094700", + "Timestamp": "2024-05-16T08:47:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.807200", + "Timestamp": "2024-05-16T08:47:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.013700", + "Timestamp": "2024-05-16T08:47:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.983700", + "Timestamp": "2024-05-16T08:47:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.883700", + "Timestamp": "2024-05-16T08:47:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113100", + "Timestamp": "2024-05-16T08:47:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T08:47:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053100", + "Timestamp": "2024-05-16T08:47:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.568200", + "Timestamp": "2024-05-16T08:47:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.563200", + "Timestamp": "2024-05-16T08:47:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.438200", + "Timestamp": "2024-05-16T08:47:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.325900", + "Timestamp": "2024-05-16T08:47:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.320900", + "Timestamp": "2024-05-16T08:47:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195900", + "Timestamp": "2024-05-16T08:47:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.818300", + "Timestamp": "2024-05-16T08:47:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.813300", + "Timestamp": "2024-05-16T08:47:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.688300", + "Timestamp": "2024-05-16T08:47:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.757000", + "Timestamp": "2024-05-16T08:46:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.845900", + "Timestamp": "2024-05-16T08:46:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.413800", + "Timestamp": "2024-05-16T08:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099000", + "Timestamp": "2024-05-16T08:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095000", + "Timestamp": "2024-05-16T08:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039000", + "Timestamp": "2024-05-16T08:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.363500", + "Timestamp": "2024-05-16T08:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.358500", + "Timestamp": "2024-05-16T08:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.233500", + "Timestamp": "2024-05-16T08:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.845100", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.840100", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.715100", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T08:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099700", + "Timestamp": "2024-05-16T08:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043700", + "Timestamp": "2024-05-16T08:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.890200", + "Timestamp": "2024-05-16T08:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.885200", + "Timestamp": "2024-05-16T08:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.760200", + "Timestamp": "2024-05-16T08:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.525700", + "Timestamp": "2024-05-16T08:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.756000", + "Timestamp": "2024-05-16T08:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.962400", + "Timestamp": "2024-05-16T08:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.412600", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.407600", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.282600", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.802600", + "Timestamp": "2024-05-16T08:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.299000", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.974000", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.969000", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.844000", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.781900", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.776900", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.651900", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.423200", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.418200", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.293200", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.363700", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.218100", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.213100", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.088100", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.811500", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.806500", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.681500", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.308600", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.278600", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.178600", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.695100", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.409600", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.404600", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.279600", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.759500", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.669000", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.639000", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.539000", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.292400", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.437100", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.799600", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.794600", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.669600", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.335200", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.330200", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.205200", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.902100", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.062500", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.057500", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.932500", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.696300", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.430900", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.425900", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.300900", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360500", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.355500", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230500", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.272200", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268200", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212200", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.808600", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.803600", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.678600", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.990000", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.985000", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.860000", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152400", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192400", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092400", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139200", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135200", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079200", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432300", + "Timestamp": "2024-05-16T08:32:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.549800", + "Timestamp": "2024-05-16T08:32:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.455100", + "Timestamp": "2024-05-16T08:32:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.450100", + "Timestamp": "2024-05-16T08:32:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.325100", + "Timestamp": "2024-05-16T08:32:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.336900", + "Timestamp": "2024-05-16T08:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.331900", + "Timestamp": "2024-05-16T08:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.206900", + "Timestamp": "2024-05-16T08:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.566300", + "Timestamp": "2024-05-16T08:32:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.561300", + "Timestamp": "2024-05-16T08:32:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.436300", + "Timestamp": "2024-05-16T08:32:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.539800", + "Timestamp": "2024-05-16T08:32:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.534800", + "Timestamp": "2024-05-16T08:32:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.409800", + "Timestamp": "2024-05-16T08:32:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.084200", + "Timestamp": "2024-05-16T08:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.557200", + "Timestamp": "2024-05-16T08:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.659000", + "Timestamp": "2024-05-16T08:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.079200", + "Timestamp": "2024-05-16T08:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.552200", + "Timestamp": "2024-05-16T08:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.654000", + "Timestamp": "2024-05-16T08:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.954200", + "Timestamp": "2024-05-16T08:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.427200", + "Timestamp": "2024-05-16T08:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.529000", + "Timestamp": "2024-05-16T08:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.438700", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.882400", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.141800", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.861900", + "Timestamp": "2024-05-16T08:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.081200", + "Timestamp": "2024-05-16T08:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.453800", + "Timestamp": "2024-05-16T08:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.623500", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.618500", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.493500", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.230600", + "Timestamp": "2024-05-16T08:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.200600", + "Timestamp": "2024-05-16T08:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.100600", + "Timestamp": "2024-05-16T08:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.108300", + "Timestamp": "2024-05-16T08:32:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.079000", + "Timestamp": "2024-05-16T08:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.074000", + "Timestamp": "2024-05-16T08:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.949000", + "Timestamp": "2024-05-16T08:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153900", + "Timestamp": "2024-05-16T08:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150200", + "Timestamp": "2024-05-16T08:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093900", + "Timestamp": "2024-05-16T08:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090000", + "Timestamp": "2024-05-16T08:32:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086000", + "Timestamp": "2024-05-16T08:32:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030000", + "Timestamp": "2024-05-16T08:32:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.771300", + "Timestamp": "2024-05-16T08:32:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.741300", + "Timestamp": "2024-05-16T08:32:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.641300", + "Timestamp": "2024-05-16T08:32:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.572000", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.720000", + "Timestamp": "2024-05-16T08:32:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.010100", + "Timestamp": "2024-05-16T08:32:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.081600", + "Timestamp": "2024-05-16T08:32:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.185100", + "Timestamp": "2024-05-16T08:32:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180100", + "Timestamp": "2024-05-16T08:32:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055100", + "Timestamp": "2024-05-16T08:32:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.232100", + "Timestamp": "2024-05-16T08:32:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.303200", + "Timestamp": "2024-05-16T08:32:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.273200", + "Timestamp": "2024-05-16T08:32:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.173200", + "Timestamp": "2024-05-16T08:32:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.356600", + "Timestamp": "2024-05-16T08:32:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.351600", + "Timestamp": "2024-05-16T08:32:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.226600", + "Timestamp": "2024-05-16T08:32:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.699900", + "Timestamp": "2024-05-16T08:31:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.619700", + "Timestamp": "2024-05-16T08:31:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.520300", + "Timestamp": "2024-05-16T08:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.059200", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.331800", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099900", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039900", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.223900", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.249200", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.218900", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.244200", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.093900", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.119200", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.248000", + "Timestamp": "2024-05-16T08:31:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.244000", + "Timestamp": "2024-05-16T08:31:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.188000", + "Timestamp": "2024-05-16T08:31:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.493500", + "Timestamp": "2024-05-16T08:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.206000", + "Timestamp": "2024-05-16T08:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.190200", + "Timestamp": "2024-05-16T08:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.201000", + "Timestamp": "2024-05-16T08:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.185200", + "Timestamp": "2024-05-16T08:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.076000", + "Timestamp": "2024-05-16T08:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.060200", + "Timestamp": "2024-05-16T08:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.895100", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.890100", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.765100", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.703600", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.698600", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.573600", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.406100", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160200", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156200", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.451000", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.020000", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.015000", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.890000", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.530800", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.957400", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.914000", + "Timestamp": "2024-05-16T08:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.909000", + "Timestamp": "2024-05-16T08:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.784000", + "Timestamp": "2024-05-16T08:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.749000", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.744000", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.619000", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354600", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.394600", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.294600", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.331700", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.326700", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.201700", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.431700", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.426700", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.301700", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.047700", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.042700", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.917700", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.275200", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.245200", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145200", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.665400", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.478600", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.727400", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473600", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.722400", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.348600", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.597400", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145900", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141900", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085900", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.849900", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.844900", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.719900", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.427800", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.464900", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.459900", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.334900", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088900", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032600", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.877700", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.872700", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.747700", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.896400", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.866400", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.766400", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158900", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198900", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098900", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.046900", + "Timestamp": "2024-05-16T08:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.016900", + "Timestamp": "2024-05-16T08:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.916900", + "Timestamp": "2024-05-16T08:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.501400", + "Timestamp": "2024-05-16T08:31:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.471400", + "Timestamp": "2024-05-16T08:31:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.371400", + "Timestamp": "2024-05-16T08:31:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.189300", + "Timestamp": "2024-05-16T08:25:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.237400", + "Timestamp": "2024-05-16T08:18:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.829300", + "Timestamp": "2024-05-16T08:18:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.708800", + "Timestamp": "2024-05-16T08:17:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.703800", + "Timestamp": "2024-05-16T08:17:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.578800", + "Timestamp": "2024-05-16T08:17:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.609200", + "Timestamp": "2024-05-16T08:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.579200", + "Timestamp": "2024-05-16T08:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.479200", + "Timestamp": "2024-05-16T08:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.613400", + "Timestamp": "2024-05-16T08:17:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.026000", + "Timestamp": "2024-05-16T08:17:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.414100", + "Timestamp": "2024-05-16T08:17:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.384100", + "Timestamp": "2024-05-16T08:17:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.284100", + "Timestamp": "2024-05-16T08:17:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.674500", + "Timestamp": "2024-05-16T08:17:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.669500", + "Timestamp": "2024-05-16T08:17:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.544500", + "Timestamp": "2024-05-16T08:17:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.040000", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.019500", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.655100", + "Timestamp": "2024-05-16T08:17:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.726600", + "Timestamp": "2024-05-16T08:17:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.721600", + "Timestamp": "2024-05-16T08:17:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.596600", + "Timestamp": "2024-05-16T08:17:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.186200", + "Timestamp": "2024-05-16T08:17:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.181200", + "Timestamp": "2024-05-16T08:17:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.056200", + "Timestamp": "2024-05-16T08:17:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.701200", + "Timestamp": "2024-05-16T08:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.671200", + "Timestamp": "2024-05-16T08:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.571200", + "Timestamp": "2024-05-16T08:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440100", + "Timestamp": "2024-05-16T08:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.616700", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.355700", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.350700", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.225700", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.450600", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.445600", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.320600", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.365900", + "Timestamp": "2024-05-16T08:17:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.360900", + "Timestamp": "2024-05-16T08:17:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.235900", + "Timestamp": "2024-05-16T08:17:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.308600", + "Timestamp": "2024-05-16T08:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165200", + "Timestamp": "2024-05-16T08:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161200", + "Timestamp": "2024-05-16T08:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T08:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298600", + "Timestamp": "2024-05-16T08:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293600", + "Timestamp": "2024-05-16T08:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168600", + "Timestamp": "2024-05-16T08:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.363400", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.392700", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.387700", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.262700", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.069500", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.064500", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.939500", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.601200", + "Timestamp": "2024-05-16T08:17:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.596200", + "Timestamp": "2024-05-16T08:17:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.471200", + "Timestamp": "2024-05-16T08:17:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.691600", + "Timestamp": "2024-05-16T08:17:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.686600", + "Timestamp": "2024-05-16T08:17:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.561600", + "Timestamp": "2024-05-16T08:17:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.606100", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.658300", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.601100", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.653300", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.476100", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.528300", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.815200", + "Timestamp": "2024-05-16T08:17:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.754500", + "Timestamp": "2024-05-16T08:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.564600", + "Timestamp": "2024-05-16T08:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.749500", + "Timestamp": "2024-05-16T08:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.559600", + "Timestamp": "2024-05-16T08:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.624500", + "Timestamp": "2024-05-16T08:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.434600", + "Timestamp": "2024-05-16T08:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088400", + "Timestamp": "2024-05-16T08:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084700", + "Timestamp": "2024-05-16T08:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028400", + "Timestamp": "2024-05-16T08:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.430400", + "Timestamp": "2024-05-16T08:17:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.868800", + "Timestamp": "2024-05-16T08:17:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.838800", + "Timestamp": "2024-05-16T08:17:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.738800", + "Timestamp": "2024-05-16T08:17:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091600", + "Timestamp": "2024-05-16T08:17:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089600", + "Timestamp": "2024-05-16T08:17:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087900", + "Timestamp": "2024-05-16T08:17:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085900", + "Timestamp": "2024-05-16T08:17:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031600", + "Timestamp": "2024-05-16T08:17:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029600", + "Timestamp": "2024-05-16T08:17:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138200", + "Timestamp": "2024-05-16T08:17:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134500", + "Timestamp": "2024-05-16T08:17:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078200", + "Timestamp": "2024-05-16T08:17:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.291700", + "Timestamp": "2024-05-16T08:17:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.286700", + "Timestamp": "2024-05-16T08:17:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.161700", + "Timestamp": "2024-05-16T08:17:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.447800", + "Timestamp": "2024-05-16T08:17:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.612700", + "Timestamp": "2024-05-16T08:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.014000", + "Timestamp": "2024-05-16T08:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.009000", + "Timestamp": "2024-05-16T08:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.884000", + "Timestamp": "2024-05-16T08:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.145600", + "Timestamp": "2024-05-16T08:17:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.140600", + "Timestamp": "2024-05-16T08:17:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.015600", + "Timestamp": "2024-05-16T08:17:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.379800", + "Timestamp": "2024-05-16T08:17:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.374800", + "Timestamp": "2024-05-16T08:17:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.249800", + "Timestamp": "2024-05-16T08:17:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.834100", + "Timestamp": "2024-05-16T08:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.829100", + "Timestamp": "2024-05-16T08:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.704100", + "Timestamp": "2024-05-16T08:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.746400", + "Timestamp": "2024-05-16T08:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.741400", + "Timestamp": "2024-05-16T08:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.616400", + "Timestamp": "2024-05-16T08:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "11.543200", + "Timestamp": "2024-05-16T08:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "11.513200", + "Timestamp": "2024-05-16T08:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "11.413200", + "Timestamp": "2024-05-16T08:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.384400", + "Timestamp": "2024-05-16T08:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.379400", + "Timestamp": "2024-05-16T08:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.254400", + "Timestamp": "2024-05-16T08:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.878900", + "Timestamp": "2024-05-16T08:16:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.873900", + "Timestamp": "2024-05-16T08:16:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.748900", + "Timestamp": "2024-05-16T08:16:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.750000", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.697400", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.692400", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.567400", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.380700", + "Timestamp": "2024-05-16T08:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.858100", + "Timestamp": "2024-05-16T08:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.697100", + "Timestamp": "2024-05-16T08:16:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.681200", + "Timestamp": "2024-05-16T08:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.676200", + "Timestamp": "2024-05-16T08:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.551200", + "Timestamp": "2024-05-16T08:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.740200", + "Timestamp": "2024-05-16T08:16:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.685300", + "Timestamp": "2024-05-16T08:16:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.956600", + "Timestamp": "2024-05-16T08:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.982900", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.342900", + "Timestamp": "2024-05-16T08:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.337900", + "Timestamp": "2024-05-16T08:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212900", + "Timestamp": "2024-05-16T08:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.732100", + "Timestamp": "2024-05-16T08:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.203100", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.243100", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143100", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.628300", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.623300", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.498300", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091500", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087800", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031500", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314700", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.309700", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184700", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.232700", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.001600", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.996600", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.871600", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.050300", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.045300", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.920300", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212400", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.224200", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.219200", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.094200", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.140600", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.135600", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.010600", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.126500", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.121500", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.996500", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.323900", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.318900", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.193900", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.370100", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.340100", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.240100", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111100", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151100", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051100", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.550400", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.555000", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114700", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.893700", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.863700", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.763700", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T08:04:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.406900", + "Timestamp": "2024-05-16T08:02:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.401900", + "Timestamp": "2024-05-16T08:02:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.276900", + "Timestamp": "2024-05-16T08:02:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.883400", + "Timestamp": "2024-05-16T08:02:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.704100", + "Timestamp": "2024-05-16T08:02:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.557400", + "Timestamp": "2024-05-16T08:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.251900", + "Timestamp": "2024-05-16T08:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.246900", + "Timestamp": "2024-05-16T08:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.121900", + "Timestamp": "2024-05-16T08:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.280400", + "Timestamp": "2024-05-16T08:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.230200", + "Timestamp": "2024-05-16T08:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.225200", + "Timestamp": "2024-05-16T08:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-16T08:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141900", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138200", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081900", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.461600", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.791800", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.786800", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.661800", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.197600", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.238000", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.233000", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170500", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166500", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.815600", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.232200", + "Timestamp": "2024-05-16T08:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.239100", + "Timestamp": "2024-05-16T08:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.695700", + "Timestamp": "2024-05-16T08:02:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.287200", + "Timestamp": "2024-05-16T08:02:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.257200", + "Timestamp": "2024-05-16T08:02:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157200", + "Timestamp": "2024-05-16T08:02:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.308500", + "Timestamp": "2024-05-16T08:02:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.303500", + "Timestamp": "2024-05-16T08:02:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.178500", + "Timestamp": "2024-05-16T08:02:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.167700", + "Timestamp": "2024-05-16T08:02:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.162700", + "Timestamp": "2024-05-16T08:02:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.037700", + "Timestamp": "2024-05-16T08:02:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.370600", + "Timestamp": "2024-05-16T08:02:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.410600", + "Timestamp": "2024-05-16T08:02:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.310600", + "Timestamp": "2024-05-16T08:02:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.486300", + "Timestamp": "2024-05-16T08:02:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.238700", + "Timestamp": "2024-05-16T08:02:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.233700", + "Timestamp": "2024-05-16T08:02:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.108700", + "Timestamp": "2024-05-16T08:02:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.529700", + "Timestamp": "2024-05-16T08:02:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136700", + "Timestamp": "2024-05-16T08:02:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132700", + "Timestamp": "2024-05-16T08:02:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076700", + "Timestamp": "2024-05-16T08:02:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117600", + "Timestamp": "2024-05-16T08:02:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113600", + "Timestamp": "2024-05-16T08:02:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057600", + "Timestamp": "2024-05-16T08:02:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.218600", + "Timestamp": "2024-05-16T08:02:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.213600", + "Timestamp": "2024-05-16T08:02:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.088600", + "Timestamp": "2024-05-16T08:02:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.251300", + "Timestamp": "2024-05-16T08:01:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.246300", + "Timestamp": "2024-05-16T08:01:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121300", + "Timestamp": "2024-05-16T08:01:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.104900", + "Timestamp": "2024-05-16T08:01:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.099900", + "Timestamp": "2024-05-16T08:01:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.974900", + "Timestamp": "2024-05-16T08:01:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.845500", + "Timestamp": "2024-05-16T08:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.815500", + "Timestamp": "2024-05-16T08:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.715500", + "Timestamp": "2024-05-16T08:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.729600", + "Timestamp": "2024-05-16T08:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.724600", + "Timestamp": "2024-05-16T08:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.599600", + "Timestamp": "2024-05-16T08:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "14.510000", + "Timestamp": "2024-05-16T08:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.234200", + "Timestamp": "2024-05-16T08:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.311400", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.093500", + "Timestamp": "2024-05-16T08:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.063500", + "Timestamp": "2024-05-16T08:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.963500", + "Timestamp": "2024-05-16T08:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.738400", + "Timestamp": "2024-05-16T08:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135300", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131600", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075300", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.335700", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.704100", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.674100", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.574100", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.254300", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.249300", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124300", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.829900", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.596600", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.591600", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.466600", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122900", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118900", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062900", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.318900", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.736100", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.553100", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.914700", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.303200", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.298200", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.173200", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.659300", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.654300", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.529300", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.773600", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.768600", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.643600", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091500", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087800", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031500", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.520100", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.515100", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.390100", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.842400", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.638900", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.466800", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.461800", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.336800", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.667300", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.862000", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.850200", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125600", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121600", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065600", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.166200", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.161200", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.036200", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133000", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129000", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073000", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.605600", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.600600", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.475600", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.404900", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.386900", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.381900", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.256900", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439300", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.314900", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.309900", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.184900", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.445600", + "Timestamp": "2024-05-16T08:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.185500", + "Timestamp": "2024-05-16T08:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.180500", + "Timestamp": "2024-05-16T08:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.055500", + "Timestamp": "2024-05-16T08:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.678800", + "Timestamp": "2024-05-16T08:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.648800", + "Timestamp": "2024-05-16T08:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.548800", + "Timestamp": "2024-05-16T08:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.767500", + "Timestamp": "2024-05-16T07:47:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.762500", + "Timestamp": "2024-05-16T07:47:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.637500", + "Timestamp": "2024-05-16T07:47:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.403100", + "Timestamp": "2024-05-16T07:47:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.741500", + "Timestamp": "2024-05-16T07:47:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.365300", + "Timestamp": "2024-05-16T07:47:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.736500", + "Timestamp": "2024-05-16T07:47:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.360300", + "Timestamp": "2024-05-16T07:47:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.611500", + "Timestamp": "2024-05-16T07:47:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.235300", + "Timestamp": "2024-05-16T07:47:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099100", + "Timestamp": "2024-05-16T07:47:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139100", + "Timestamp": "2024-05-16T07:47:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039100", + "Timestamp": "2024-05-16T07:47:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.267200", + "Timestamp": "2024-05-16T07:47:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262200", + "Timestamp": "2024-05-16T07:47:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137200", + "Timestamp": "2024-05-16T07:47:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.663200", + "Timestamp": "2024-05-16T07:47:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.658200", + "Timestamp": "2024-05-16T07:47:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.533200", + "Timestamp": "2024-05-16T07:47:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214400", + "Timestamp": "2024-05-16T07:47:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.823900", + "Timestamp": "2024-05-16T07:47:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.339800", + "Timestamp": "2024-05-16T07:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.334800", + "Timestamp": "2024-05-16T07:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.209800", + "Timestamp": "2024-05-16T07:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.276400", + "Timestamp": "2024-05-16T07:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.272400", + "Timestamp": "2024-05-16T07:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.216400", + "Timestamp": "2024-05-16T07:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.834000", + "Timestamp": "2024-05-16T07:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.804000", + "Timestamp": "2024-05-16T07:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.704000", + "Timestamp": "2024-05-16T07:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.263500", + "Timestamp": "2024-05-16T07:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.258500", + "Timestamp": "2024-05-16T07:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.133500", + "Timestamp": "2024-05-16T07:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.104700", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.099700", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.974700", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.218200", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.213200", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.088200", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.730600", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.725600", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.600600", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.435800", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.430800", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.305800", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.520600", + "Timestamp": "2024-05-16T07:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.515600", + "Timestamp": "2024-05-16T07:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.390600", + "Timestamp": "2024-05-16T07:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099900", + "Timestamp": "2024-05-16T07:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096200", + "Timestamp": "2024-05-16T07:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039900", + "Timestamp": "2024-05-16T07:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.912900", + "Timestamp": "2024-05-16T07:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.907900", + "Timestamp": "2024-05-16T07:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.782900", + "Timestamp": "2024-05-16T07:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.521500", + "Timestamp": "2024-05-16T07:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.541700", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.511700", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.411700", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.048700", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.043700", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.918700", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.653600", + "Timestamp": "2024-05-16T07:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.648600", + "Timestamp": "2024-05-16T07:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.523600", + "Timestamp": "2024-05-16T07:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.801400", + "Timestamp": "2024-05-16T07:47:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.649600", + "Timestamp": "2024-05-16T07:47:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.644600", + "Timestamp": "2024-05-16T07:47:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.519600", + "Timestamp": "2024-05-16T07:47:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.681500", + "Timestamp": "2024-05-16T07:47:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.676500", + "Timestamp": "2024-05-16T07:47:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.551500", + "Timestamp": "2024-05-16T07:47:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.702300", + "Timestamp": "2024-05-16T07:47:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.697300", + "Timestamp": "2024-05-16T07:47:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.572300", + "Timestamp": "2024-05-16T07:47:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.284800", + "Timestamp": "2024-05-16T07:47:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.279800", + "Timestamp": "2024-05-16T07:47:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.154800", + "Timestamp": "2024-05-16T07:47:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.802800", + "Timestamp": "2024-05-16T07:47:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.072300", + "Timestamp": "2024-05-16T07:47:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.761500", + "Timestamp": "2024-05-16T07:46:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.256900", + "Timestamp": "2024-05-16T07:46:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.930300", + "Timestamp": "2024-05-16T07:46:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.900300", + "Timestamp": "2024-05-16T07:46:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.800300", + "Timestamp": "2024-05-16T07:46:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.634300", + "Timestamp": "2024-05-16T07:46:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "16.243200", + "Timestamp": "2024-05-16T07:46:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.397600", + "Timestamp": "2024-05-16T07:46:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.289900", + "Timestamp": "2024-05-16T07:46:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.259900", + "Timestamp": "2024-05-16T07:46:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159900", + "Timestamp": "2024-05-16T07:46:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T07:46:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092000", + "Timestamp": "2024-05-16T07:46:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036000", + "Timestamp": "2024-05-16T07:46:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.358000", + "Timestamp": "2024-05-16T07:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.353000", + "Timestamp": "2024-05-16T07:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.228000", + "Timestamp": "2024-05-16T07:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.628700", + "Timestamp": "2024-05-16T07:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.623700", + "Timestamp": "2024-05-16T07:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.498700", + "Timestamp": "2024-05-16T07:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.708900", + "Timestamp": "2024-05-16T07:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.703900", + "Timestamp": "2024-05-16T07:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.578900", + "Timestamp": "2024-05-16T07:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360200", + "Timestamp": "2024-05-16T07:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.355200", + "Timestamp": "2024-05-16T07:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230200", + "Timestamp": "2024-05-16T07:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.020900", + "Timestamp": "2024-05-16T07:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.987300", + "Timestamp": "2024-05-16T07:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.982300", + "Timestamp": "2024-05-16T07:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.857300", + "Timestamp": "2024-05-16T07:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.438400", + "Timestamp": "2024-05-16T07:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.433400", + "Timestamp": "2024-05-16T07:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.308400", + "Timestamp": "2024-05-16T07:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.344400", + "Timestamp": "2024-05-16T07:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.303400", + "Timestamp": "2024-05-16T07:46:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273400", + "Timestamp": "2024-05-16T07:46:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.173400", + "Timestamp": "2024-05-16T07:46:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.561000", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.531000", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.431000", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.773100", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.768100", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.643100", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.789900", + "Timestamp": "2024-05-16T07:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.633200", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.628200", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.503200", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.087300", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.082300", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.957300", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.652600", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.231200", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.226200", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.101200", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.747000", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.742000", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.617000", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.493200", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.789600", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.784600", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.659600", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.787600", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.443000", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.089500", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.830000", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106700", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.927500", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.922500", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.797500", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.395100", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.408800", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.365100", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.378800", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.265100", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.278800", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.248300", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.243300", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.118300", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098200", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094200", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038200", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.760400", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297400", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.292400", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167400", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214500", + "Timestamp": "2024-05-16T07:42:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.439200", + "Timestamp": "2024-05-16T07:39:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.439200", + "Timestamp": "2024-05-16T07:39:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.097200", + "Timestamp": "2024-05-16T07:39:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.097200", + "Timestamp": "2024-05-16T07:39:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.067200", + "Timestamp": "2024-05-16T07:39:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.067200", + "Timestamp": "2024-05-16T07:39:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967200", + "Timestamp": "2024-05-16T07:39:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967200", + "Timestamp": "2024-05-16T07:39:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.038200", + "Timestamp": "2024-05-16T07:35:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.980100", + "Timestamp": "2024-05-16T07:33:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.505500", + "Timestamp": "2024-05-16T07:32:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.500500", + "Timestamp": "2024-05-16T07:32:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.375500", + "Timestamp": "2024-05-16T07:32:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.007600", + "Timestamp": "2024-05-16T07:32:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.002600", + "Timestamp": "2024-05-16T07:32:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.877600", + "Timestamp": "2024-05-16T07:32:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.001900", + "Timestamp": "2024-05-16T07:32:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.996900", + "Timestamp": "2024-05-16T07:32:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.871900", + "Timestamp": "2024-05-16T07:32:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080900", + "Timestamp": "2024-05-16T07:32:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077200", + "Timestamp": "2024-05-16T07:32:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020900", + "Timestamp": "2024-05-16T07:32:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.153100", + "Timestamp": "2024-05-16T07:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.079700", + "Timestamp": "2024-05-16T07:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.025800", + "Timestamp": "2024-05-16T07:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.846400", + "Timestamp": "2024-05-16T07:32:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.693300", + "Timestamp": "2024-05-16T07:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.249900", + "Timestamp": "2024-05-16T07:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.244900", + "Timestamp": "2024-05-16T07:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119900", + "Timestamp": "2024-05-16T07:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278100", + "Timestamp": "2024-05-16T07:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273100", + "Timestamp": "2024-05-16T07:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148100", + "Timestamp": "2024-05-16T07:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.273100", + "Timestamp": "2024-05-16T07:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.184600", + "Timestamp": "2024-05-16T07:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.179600", + "Timestamp": "2024-05-16T07:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.054600", + "Timestamp": "2024-05-16T07:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.268100", + "Timestamp": "2024-05-16T07:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.088600", + "Timestamp": "2024-05-16T07:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.263100", + "Timestamp": "2024-05-16T07:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.083600", + "Timestamp": "2024-05-16T07:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.138100", + "Timestamp": "2024-05-16T07:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.958600", + "Timestamp": "2024-05-16T07:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.290200", + "Timestamp": "2024-05-16T07:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.260200", + "Timestamp": "2024-05-16T07:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.160200", + "Timestamp": "2024-05-16T07:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.847600", + "Timestamp": "2024-05-16T07:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.386500", + "Timestamp": "2024-05-16T07:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138300", + "Timestamp": "2024-05-16T07:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T07:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078300", + "Timestamp": "2024-05-16T07:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.812200", + "Timestamp": "2024-05-16T07:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.807200", + "Timestamp": "2024-05-16T07:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.682200", + "Timestamp": "2024-05-16T07:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.085700", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.080700", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.955700", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.872300", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.867300", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.742300", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.837100", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.490800", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.892200", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.485800", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.887200", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.360800", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.762200", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.654300", + "Timestamp": "2024-05-16T07:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.286300", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.347500", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281300", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.342500", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156300", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.217500", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311200", + "Timestamp": "2024-05-16T07:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.306200", + "Timestamp": "2024-05-16T07:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181200", + "Timestamp": "2024-05-16T07:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.769200", + "Timestamp": "2024-05-16T07:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.764200", + "Timestamp": "2024-05-16T07:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.639200", + "Timestamp": "2024-05-16T07:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.039800", + "Timestamp": "2024-05-16T07:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.034800", + "Timestamp": "2024-05-16T07:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.909800", + "Timestamp": "2024-05-16T07:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.891700", + "Timestamp": "2024-05-16T07:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.886700", + "Timestamp": "2024-05-16T07:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.761700", + "Timestamp": "2024-05-16T07:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.187600", + "Timestamp": "2024-05-16T07:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183900", + "Timestamp": "2024-05-16T07:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127600", + "Timestamp": "2024-05-16T07:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.025100", + "Timestamp": "2024-05-16T07:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.020100", + "Timestamp": "2024-05-16T07:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.895100", + "Timestamp": "2024-05-16T07:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.395900", + "Timestamp": "2024-05-16T07:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.365900", + "Timestamp": "2024-05-16T07:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.265900", + "Timestamp": "2024-05-16T07:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.002800", + "Timestamp": "2024-05-16T07:32:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T07:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100000", + "Timestamp": "2024-05-16T07:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043700", + "Timestamp": "2024-05-16T07:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.953400", + "Timestamp": "2024-05-16T07:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.948400", + "Timestamp": "2024-05-16T07:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.823400", + "Timestamp": "2024-05-16T07:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.791600", + "Timestamp": "2024-05-16T07:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.404900", + "Timestamp": "2024-05-16T07:32:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.399900", + "Timestamp": "2024-05-16T07:32:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.274900", + "Timestamp": "2024-05-16T07:32:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.989900", + "Timestamp": "2024-05-16T07:32:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431200", + "Timestamp": "2024-05-16T07:32:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.326000", + "Timestamp": "2024-05-16T07:32:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.321000", + "Timestamp": "2024-05-16T07:32:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196000", + "Timestamp": "2024-05-16T07:32:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.428800", + "Timestamp": "2024-05-16T07:32:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.423800", + "Timestamp": "2024-05-16T07:32:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.298800", + "Timestamp": "2024-05-16T07:32:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.193000", + "Timestamp": "2024-05-16T07:32:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.189000", + "Timestamp": "2024-05-16T07:32:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133000", + "Timestamp": "2024-05-16T07:32:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.852400", + "Timestamp": "2024-05-16T07:32:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.847400", + "Timestamp": "2024-05-16T07:32:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.722400", + "Timestamp": "2024-05-16T07:32:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.736500", + "Timestamp": "2024-05-16T07:32:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.731500", + "Timestamp": "2024-05-16T07:32:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.606500", + "Timestamp": "2024-05-16T07:32:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.417600", + "Timestamp": "2024-05-16T07:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.412600", + "Timestamp": "2024-05-16T07:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.287600", + "Timestamp": "2024-05-16T07:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.545600", + "Timestamp": "2024-05-16T07:31:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.515600", + "Timestamp": "2024-05-16T07:31:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.415600", + "Timestamp": "2024-05-16T07:31:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.493200", + "Timestamp": "2024-05-16T07:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.884100", + "Timestamp": "2024-05-16T07:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.526900", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.684900", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.679900", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.554900", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.632000", + "Timestamp": "2024-05-16T07:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.255800", + "Timestamp": "2024-05-16T07:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.250800", + "Timestamp": "2024-05-16T07:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125800", + "Timestamp": "2024-05-16T07:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219800", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.575300", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.685000", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.680000", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.555000", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.710200", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.686600", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.681600", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.556600", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.421300", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069800", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066100", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009800", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.805800", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.821700", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.800800", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.816700", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.675800", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.691700", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.713300", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.708300", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.583300", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.725600", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.720600", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.595600", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T07:28:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T07:28:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.424000", + "Timestamp": "2024-05-16T07:21:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.687700", + "Timestamp": "2024-05-16T07:17:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.682700", + "Timestamp": "2024-05-16T07:17:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.557700", + "Timestamp": "2024-05-16T07:17:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.412900", + "Timestamp": "2024-05-16T07:17:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.772200", + "Timestamp": "2024-05-16T07:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.508000", + "Timestamp": "2024-05-16T07:17:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.503000", + "Timestamp": "2024-05-16T07:17:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.378000", + "Timestamp": "2024-05-16T07:17:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.462300", + "Timestamp": "2024-05-16T07:17:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.528700", + "Timestamp": "2024-05-16T07:17:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.523700", + "Timestamp": "2024-05-16T07:17:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.398700", + "Timestamp": "2024-05-16T07:17:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.346800", + "Timestamp": "2024-05-16T07:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.341800", + "Timestamp": "2024-05-16T07:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.216800", + "Timestamp": "2024-05-16T07:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.698500", + "Timestamp": "2024-05-16T07:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.693500", + "Timestamp": "2024-05-16T07:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.568500", + "Timestamp": "2024-05-16T07:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.305000", + "Timestamp": "2024-05-16T07:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.300000", + "Timestamp": "2024-05-16T07:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175000", + "Timestamp": "2024-05-16T07:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066200", + "Timestamp": "2024-05-16T07:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.062500", + "Timestamp": "2024-05-16T07:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006200", + "Timestamp": "2024-05-16T07:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.309900", + "Timestamp": "2024-05-16T07:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.304900", + "Timestamp": "2024-05-16T07:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.179900", + "Timestamp": "2024-05-16T07:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125900", + "Timestamp": "2024-05-16T07:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122200", + "Timestamp": "2024-05-16T07:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065900", + "Timestamp": "2024-05-16T07:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.524300", + "Timestamp": "2024-05-16T07:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.519300", + "Timestamp": "2024-05-16T07:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.394300", + "Timestamp": "2024-05-16T07:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.125300", + "Timestamp": "2024-05-16T07:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.870400", + "Timestamp": "2024-05-16T07:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.138400", + "Timestamp": "2024-05-16T07:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.133400", + "Timestamp": "2024-05-16T07:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.008400", + "Timestamp": "2024-05-16T07:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.770800", + "Timestamp": "2024-05-16T07:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070100", + "Timestamp": "2024-05-16T07:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041100", + "Timestamp": "2024-05-16T07:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010100", + "Timestamp": "2024-05-16T07:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.664400", + "Timestamp": "2024-05-16T07:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.659400", + "Timestamp": "2024-05-16T07:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.534400", + "Timestamp": "2024-05-16T07:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089700", + "Timestamp": "2024-05-16T07:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086000", + "Timestamp": "2024-05-16T07:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029700", + "Timestamp": "2024-05-16T07:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.355500", + "Timestamp": "2024-05-16T07:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.359600", + "Timestamp": "2024-05-16T07:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.350500", + "Timestamp": "2024-05-16T07:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.354600", + "Timestamp": "2024-05-16T07:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.225500", + "Timestamp": "2024-05-16T07:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.229600", + "Timestamp": "2024-05-16T07:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.306500", + "Timestamp": "2024-05-16T07:17:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.301500", + "Timestamp": "2024-05-16T07:17:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.176500", + "Timestamp": "2024-05-16T07:17:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.560800", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.582700", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.577700", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.452700", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.240900", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.848200", + "Timestamp": "2024-05-16T07:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.091400", + "Timestamp": "2024-05-16T07:17:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.061400", + "Timestamp": "2024-05-16T07:17:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.961400", + "Timestamp": "2024-05-16T07:17:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.427900", + "Timestamp": "2024-05-16T07:17:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.969800", + "Timestamp": "2024-05-16T07:17:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.964800", + "Timestamp": "2024-05-16T07:17:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.839800", + "Timestamp": "2024-05-16T07:17:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.327600", + "Timestamp": "2024-05-16T07:17:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.322600", + "Timestamp": "2024-05-16T07:17:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.197600", + "Timestamp": "2024-05-16T07:17:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.491100", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.486100", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.361100", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.082000", + "Timestamp": "2024-05-16T07:17:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.284700", + "Timestamp": "2024-05-16T07:17:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.279700", + "Timestamp": "2024-05-16T07:17:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.154700", + "Timestamp": "2024-05-16T07:17:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.507300", + "Timestamp": "2024-05-16T07:17:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.506200", + "Timestamp": "2024-05-16T07:17:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423500", + "Timestamp": "2024-05-16T07:17:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.649100", + "Timestamp": "2024-05-16T07:16:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.225700", + "Timestamp": "2024-05-16T07:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.220700", + "Timestamp": "2024-05-16T07:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.095700", + "Timestamp": "2024-05-16T07:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.898900", + "Timestamp": "2024-05-16T07:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.975400", + "Timestamp": "2024-05-16T07:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.819100", + "Timestamp": "2024-05-16T07:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.789100", + "Timestamp": "2024-05-16T07:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.689100", + "Timestamp": "2024-05-16T07:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.912100", + "Timestamp": "2024-05-16T07:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.907100", + "Timestamp": "2024-05-16T07:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.782100", + "Timestamp": "2024-05-16T07:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.569900", + "Timestamp": "2024-05-16T07:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.810100", + "Timestamp": "2024-05-16T07:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.805100", + "Timestamp": "2024-05-16T07:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.680100", + "Timestamp": "2024-05-16T07:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124300", + "Timestamp": "2024-05-16T07:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120600", + "Timestamp": "2024-05-16T07:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064300", + "Timestamp": "2024-05-16T07:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.584400", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.579400", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.454400", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.299300", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.269300", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.169300", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132600", + "Timestamp": "2024-05-16T07:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128900", + "Timestamp": "2024-05-16T07:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072600", + "Timestamp": "2024-05-16T07:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.956200", + "Timestamp": "2024-05-16T07:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.891000", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.790600", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.785600", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.660600", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.834400", + "Timestamp": "2024-05-16T07:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.829400", + "Timestamp": "2024-05-16T07:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.704400", + "Timestamp": "2024-05-16T07:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.186100", + "Timestamp": "2024-05-16T07:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.181100", + "Timestamp": "2024-05-16T07:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.056100", + "Timestamp": "2024-05-16T07:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.635600", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.630600", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.505600", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.341000", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.336000", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.211000", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.709800", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.679800", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.579800", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.304100", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.668800", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.663800", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.538800", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.644000", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.639000", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.514000", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.763300", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099400", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095700", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039400", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.857300", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.908800", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.903800", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.778800", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.485000", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.102900", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.097900", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.972900", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.268300", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.238300", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.138300", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155800", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152100", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095800", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.207400", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135100", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131100", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075100", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.892400", + "Timestamp": "2024-05-16T07:16:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.887400", + "Timestamp": "2024-05-16T07:16:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.762400", + "Timestamp": "2024-05-16T07:16:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.248900", + "Timestamp": "2024-05-16T07:16:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.243900", + "Timestamp": "2024-05-16T07:16:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118900", + "Timestamp": "2024-05-16T07:16:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107800", + "Timestamp": "2024-05-16T07:03:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208800", + "Timestamp": "2024-05-16T07:02:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.008500", + "Timestamp": "2024-05-16T07:02:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.456800", + "Timestamp": "2024-05-16T07:02:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.451800", + "Timestamp": "2024-05-16T07:02:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.326800", + "Timestamp": "2024-05-16T07:02:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206600", + "Timestamp": "2024-05-16T07:02:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.185000", + "Timestamp": "2024-05-16T07:02:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.531400", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.695000", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.322500", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.422000", + "Timestamp": "2024-05-16T07:02:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.417000", + "Timestamp": "2024-05-16T07:02:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.292000", + "Timestamp": "2024-05-16T07:02:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.253100", + "Timestamp": "2024-05-16T07:02:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.248100", + "Timestamp": "2024-05-16T07:02:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.123100", + "Timestamp": "2024-05-16T07:02:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.923800", + "Timestamp": "2024-05-16T07:02:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.918800", + "Timestamp": "2024-05-16T07:02:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.793800", + "Timestamp": "2024-05-16T07:02:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.049000", + "Timestamp": "2024-05-16T07:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.562500", + "Timestamp": "2024-05-16T07:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.618700", + "Timestamp": "2024-05-16T07:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.613700", + "Timestamp": "2024-05-16T07:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.488700", + "Timestamp": "2024-05-16T07:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.405500", + "Timestamp": "2024-05-16T07:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.400500", + "Timestamp": "2024-05-16T07:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.275500", + "Timestamp": "2024-05-16T07:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.492000", + "Timestamp": "2024-05-16T07:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.487000", + "Timestamp": "2024-05-16T07:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.362000", + "Timestamp": "2024-05-16T07:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.304800", + "Timestamp": "2024-05-16T07:02:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.299800", + "Timestamp": "2024-05-16T07:02:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.174800", + "Timestamp": "2024-05-16T07:02:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.425100", + "Timestamp": "2024-05-16T07:02:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.420100", + "Timestamp": "2024-05-16T07:02:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.295100", + "Timestamp": "2024-05-16T07:02:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.925000", + "Timestamp": "2024-05-16T07:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "9.059200", + "Timestamp": "2024-05-16T07:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "9.054200", + "Timestamp": "2024-05-16T07:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "8.929200", + "Timestamp": "2024-05-16T07:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.879900", + "Timestamp": "2024-05-16T07:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.280600", + "Timestamp": "2024-05-16T07:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217500", + "Timestamp": "2024-05-16T07:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.558100", + "Timestamp": "2024-05-16T07:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.553100", + "Timestamp": "2024-05-16T07:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.428100", + "Timestamp": "2024-05-16T07:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.655400", + "Timestamp": "2024-05-16T07:02:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.280900", + "Timestamp": "2024-05-16T07:02:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.275900", + "Timestamp": "2024-05-16T07:02:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150900", + "Timestamp": "2024-05-16T07:02:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.292400", + "Timestamp": "2024-05-16T07:02:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.287400", + "Timestamp": "2024-05-16T07:02:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.162400", + "Timestamp": "2024-05-16T07:02:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.958500", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.928500", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.828500", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.879100", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.193800", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.189800", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133800", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.771500", + "Timestamp": "2024-05-16T07:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.741500", + "Timestamp": "2024-05-16T07:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.641500", + "Timestamp": "2024-05-16T07:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.398700", + "Timestamp": "2024-05-16T07:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.393700", + "Timestamp": "2024-05-16T07:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.268700", + "Timestamp": "2024-05-16T07:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.012200", + "Timestamp": "2024-05-16T07:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.007200", + "Timestamp": "2024-05-16T07:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.882200", + "Timestamp": "2024-05-16T07:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.359500", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.354500", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.229500", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116100", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.698300", + "Timestamp": "2024-05-16T07:02:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.693300", + "Timestamp": "2024-05-16T07:02:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.568300", + "Timestamp": "2024-05-16T07:02:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271800", + "Timestamp": "2024-05-16T07:02:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266800", + "Timestamp": "2024-05-16T07:02:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141800", + "Timestamp": "2024-05-16T07:02:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.120400", + "Timestamp": "2024-05-16T07:02:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.090400", + "Timestamp": "2024-05-16T07:02:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.990400", + "Timestamp": "2024-05-16T07:02:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.372000", + "Timestamp": "2024-05-16T07:02:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.367000", + "Timestamp": "2024-05-16T07:02:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242000", + "Timestamp": "2024-05-16T07:02:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T07:02:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-16T07:02:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042500", + "Timestamp": "2024-05-16T07:02:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.773800", + "Timestamp": "2024-05-16T07:02:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.378900", + "Timestamp": "2024-05-16T07:02:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.348900", + "Timestamp": "2024-05-16T07:02:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.248900", + "Timestamp": "2024-05-16T07:02:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.150100", + "Timestamp": "2024-05-16T07:02:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.145100", + "Timestamp": "2024-05-16T07:02:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.020100", + "Timestamp": "2024-05-16T07:02:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.256500", + "Timestamp": "2024-05-16T07:01:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.252500", + "Timestamp": "2024-05-16T07:01:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196500", + "Timestamp": "2024-05-16T07:01:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.864100", + "Timestamp": "2024-05-16T07:01:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.859100", + "Timestamp": "2024-05-16T07:01:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.734100", + "Timestamp": "2024-05-16T07:01:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.410900", + "Timestamp": "2024-05-16T07:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.380900", + "Timestamp": "2024-05-16T07:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.280900", + "Timestamp": "2024-05-16T07:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.024200", + "Timestamp": "2024-05-16T07:01:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.335500", + "Timestamp": "2024-05-16T07:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098600", + "Timestamp": "2024-05-16T07:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094600", + "Timestamp": "2024-05-16T07:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038600", + "Timestamp": "2024-05-16T07:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.710400", + "Timestamp": "2024-05-16T07:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.705400", + "Timestamp": "2024-05-16T07:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.580400", + "Timestamp": "2024-05-16T07:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080000", + "Timestamp": "2024-05-16T07:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076300", + "Timestamp": "2024-05-16T07:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020000", + "Timestamp": "2024-05-16T07:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.885200", + "Timestamp": "2024-05-16T07:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.880200", + "Timestamp": "2024-05-16T07:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.755200", + "Timestamp": "2024-05-16T07:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.840300", + "Timestamp": "2024-05-16T07:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.669300", + "Timestamp": "2024-05-16T07:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.014600", + "Timestamp": "2024-05-16T07:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T07:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-16T07:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045400", + "Timestamp": "2024-05-16T07:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.414000", + "Timestamp": "2024-05-16T07:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.335100", + "Timestamp": "2024-05-16T07:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.304100", + "Timestamp": "2024-05-16T07:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.273600", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.243600", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.143600", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.609000", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.604000", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.479000", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.853000", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.848000", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.723000", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096300", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036300", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129200", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093400", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125500", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037100", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069200", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.644500", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.639500", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.514500", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164000", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170700", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160300", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167000", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.420100", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.864100", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.795600", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.865400", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.867700", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.332100", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302100", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.202100", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.237400", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.233000", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.232400", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.228000", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.107400", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.103000", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.711800", + "Timestamp": "2024-05-16T06:48:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.708500", + "Timestamp": "2024-05-16T06:47:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.678500", + "Timestamp": "2024-05-16T06:47:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.578500", + "Timestamp": "2024-05-16T06:47:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099800", + "Timestamp": "2024-05-16T06:47:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096100", + "Timestamp": "2024-05-16T06:47:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039800", + "Timestamp": "2024-05-16T06:47:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.507500", + "Timestamp": "2024-05-16T06:47:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.502500", + "Timestamp": "2024-05-16T06:47:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.377500", + "Timestamp": "2024-05-16T06:47:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.010200", + "Timestamp": "2024-05-16T06:47:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.419300", + "Timestamp": "2024-05-16T06:47:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.414300", + "Timestamp": "2024-05-16T06:47:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.289300", + "Timestamp": "2024-05-16T06:47:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.134700", + "Timestamp": "2024-05-16T06:47:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.129700", + "Timestamp": "2024-05-16T06:47:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.004700", + "Timestamp": "2024-05-16T06:47:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107800", + "Timestamp": "2024-05-16T06:47:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.575500", + "Timestamp": "2024-05-16T06:47:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.570500", + "Timestamp": "2024-05-16T06:47:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.445500", + "Timestamp": "2024-05-16T06:47:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159200", + "Timestamp": "2024-05-16T06:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.199200", + "Timestamp": "2024-05-16T06:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T06:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.574100", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.569100", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.444100", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.103000", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.098000", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.973000", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.874100", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.869100", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.744100", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.539200", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.534200", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.409200", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.217300", + "Timestamp": "2024-05-16T06:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.212300", + "Timestamp": "2024-05-16T06:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.087300", + "Timestamp": "2024-05-16T06:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.421400", + "Timestamp": "2024-05-16T06:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.411600", + "Timestamp": "2024-05-16T06:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.406600", + "Timestamp": "2024-05-16T06:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.281600", + "Timestamp": "2024-05-16T06:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.635700", + "Timestamp": "2024-05-16T06:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-16T06:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301000", + "Timestamp": "2024-05-16T06:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296000", + "Timestamp": "2024-05-16T06:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171000", + "Timestamp": "2024-05-16T06:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.461300", + "Timestamp": "2024-05-16T06:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.456300", + "Timestamp": "2024-05-16T06:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.331300", + "Timestamp": "2024-05-16T06:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.397500", + "Timestamp": "2024-05-16T06:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.392500", + "Timestamp": "2024-05-16T06:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.267500", + "Timestamp": "2024-05-16T06:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.083100", + "Timestamp": "2024-05-16T06:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T06:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.405100", + "Timestamp": "2024-05-16T06:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.529600", + "Timestamp": "2024-05-16T06:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.524600", + "Timestamp": "2024-05-16T06:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.399600", + "Timestamp": "2024-05-16T06:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220800", + "Timestamp": "2024-05-16T06:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220400", + "Timestamp": "2024-05-16T06:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439000", + "Timestamp": "2024-05-16T06:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.343200", + "Timestamp": "2024-05-16T06:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.698100", + "Timestamp": "2024-05-16T06:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.693100", + "Timestamp": "2024-05-16T06:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.568100", + "Timestamp": "2024-05-16T06:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140800", + "Timestamp": "2024-05-16T06:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137100", + "Timestamp": "2024-05-16T06:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080800", + "Timestamp": "2024-05-16T06:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.023200", + "Timestamp": "2024-05-16T06:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.018200", + "Timestamp": "2024-05-16T06:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.893200", + "Timestamp": "2024-05-16T06:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.501700", + "Timestamp": "2024-05-16T06:47:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.689700", + "Timestamp": "2024-05-16T06:47:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.496700", + "Timestamp": "2024-05-16T06:47:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.684700", + "Timestamp": "2024-05-16T06:47:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.371700", + "Timestamp": "2024-05-16T06:47:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.559700", + "Timestamp": "2024-05-16T06:47:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.407500", + "Timestamp": "2024-05-16T06:47:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.402500", + "Timestamp": "2024-05-16T06:47:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.277500", + "Timestamp": "2024-05-16T06:47:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.446700", + "Timestamp": "2024-05-16T06:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.441700", + "Timestamp": "2024-05-16T06:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.316700", + "Timestamp": "2024-05-16T06:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093400", + "Timestamp": "2024-05-16T06:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089400", + "Timestamp": "2024-05-16T06:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033400", + "Timestamp": "2024-05-16T06:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432100", + "Timestamp": "2024-05-16T06:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.620600", + "Timestamp": "2024-05-16T06:47:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.590600", + "Timestamp": "2024-05-16T06:47:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.490600", + "Timestamp": "2024-05-16T06:47:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.780300", + "Timestamp": "2024-05-16T06:47:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.775300", + "Timestamp": "2024-05-16T06:47:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.650300", + "Timestamp": "2024-05-16T06:47:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.449000", + "Timestamp": "2024-05-16T06:47:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.419000", + "Timestamp": "2024-05-16T06:47:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.319000", + "Timestamp": "2024-05-16T06:47:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.467500", + "Timestamp": "2024-05-16T06:47:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.572200", + "Timestamp": "2024-05-16T06:47:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.567200", + "Timestamp": "2024-05-16T06:47:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.442200", + "Timestamp": "2024-05-16T06:47:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.747900", + "Timestamp": "2024-05-16T06:47:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.742900", + "Timestamp": "2024-05-16T06:47:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.617900", + "Timestamp": "2024-05-16T06:47:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.584200", + "Timestamp": "2024-05-16T06:47:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.257700", + "Timestamp": "2024-05-16T06:47:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.252700", + "Timestamp": "2024-05-16T06:47:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127700", + "Timestamp": "2024-05-16T06:47:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.086900", + "Timestamp": "2024-05-16T06:47:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.081900", + "Timestamp": "2024-05-16T06:47:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.956900", + "Timestamp": "2024-05-16T06:47:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.879200", + "Timestamp": "2024-05-16T06:46:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.901700", + "Timestamp": "2024-05-16T06:46:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.094200", + "Timestamp": "2024-05-16T06:46:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.328700", + "Timestamp": "2024-05-16T06:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323700", + "Timestamp": "2024-05-16T06:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.198700", + "Timestamp": "2024-05-16T06:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.327400", + "Timestamp": "2024-05-16T06:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.322400", + "Timestamp": "2024-05-16T06:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.197400", + "Timestamp": "2024-05-16T06:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.347700", + "Timestamp": "2024-05-16T06:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.342700", + "Timestamp": "2024-05-16T06:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.217700", + "Timestamp": "2024-05-16T06:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.910100", + "Timestamp": "2024-05-16T06:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.905100", + "Timestamp": "2024-05-16T06:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.780100", + "Timestamp": "2024-05-16T06:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.401200", + "Timestamp": "2024-05-16T06:46:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.505000", + "Timestamp": "2024-05-16T06:46:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.307400", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.526700", + "Timestamp": "2024-05-16T06:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.521700", + "Timestamp": "2024-05-16T06:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.396700", + "Timestamp": "2024-05-16T06:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.118100", + "Timestamp": "2024-05-16T06:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.113100", + "Timestamp": "2024-05-16T06:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.988100", + "Timestamp": "2024-05-16T06:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.632500", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.762700", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.292600", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262600", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162600", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.852000", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.847000", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.722000", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161400", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157700", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101400", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.290900", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.260900", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.160900", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.146500", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.141500", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.016500", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.494500", + "Timestamp": "2024-05-16T06:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.489500", + "Timestamp": "2024-05-16T06:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.364500", + "Timestamp": "2024-05-16T06:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218700", + "Timestamp": "2024-05-16T06:38:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T06:33:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.449400", + "Timestamp": "2024-05-16T06:32:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.759800", + "Timestamp": "2024-05-16T06:32:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098600", + "Timestamp": "2024-05-16T06:32:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094600", + "Timestamp": "2024-05-16T06:32:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038600", + "Timestamp": "2024-05-16T06:32:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.766900", + "Timestamp": "2024-05-16T06:32:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.736900", + "Timestamp": "2024-05-16T06:32:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.636900", + "Timestamp": "2024-05-16T06:32:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298800", + "Timestamp": "2024-05-16T06:32:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.338800", + "Timestamp": "2024-05-16T06:32:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.238800", + "Timestamp": "2024-05-16T06:32:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.242300", + "Timestamp": "2024-05-16T06:32:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.295700", + "Timestamp": "2024-05-16T06:32:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.290700", + "Timestamp": "2024-05-16T06:32:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165700", + "Timestamp": "2024-05-16T06:32:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.531800", + "Timestamp": "2024-05-16T06:32:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.526800", + "Timestamp": "2024-05-16T06:32:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.401800", + "Timestamp": "2024-05-16T06:32:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.424100", + "Timestamp": "2024-05-16T06:32:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.424300", + "Timestamp": "2024-05-16T06:32:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.595100", + "Timestamp": "2024-05-16T06:32:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.590100", + "Timestamp": "2024-05-16T06:32:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.465100", + "Timestamp": "2024-05-16T06:32:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.408300", + "Timestamp": "2024-05-16T06:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.403300", + "Timestamp": "2024-05-16T06:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.278300", + "Timestamp": "2024-05-16T06:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.679600", + "Timestamp": "2024-05-16T06:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224400", + "Timestamp": "2024-05-16T06:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.426200", + "Timestamp": "2024-05-16T06:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.432600", + "Timestamp": "2024-05-16T06:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.427600", + "Timestamp": "2024-05-16T06:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.302600", + "Timestamp": "2024-05-16T06:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.177000", + "Timestamp": "2024-05-16T06:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173300", + "Timestamp": "2024-05-16T06:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.117000", + "Timestamp": "2024-05-16T06:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.177800", + "Timestamp": "2024-05-16T06:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.172800", + "Timestamp": "2024-05-16T06:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.047800", + "Timestamp": "2024-05-16T06:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.154700", + "Timestamp": "2024-05-16T06:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.149700", + "Timestamp": "2024-05-16T06:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.024700", + "Timestamp": "2024-05-16T06:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.266600", + "Timestamp": "2024-05-16T06:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.261600", + "Timestamp": "2024-05-16T06:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.136600", + "Timestamp": "2024-05-16T06:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.810300", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.805300", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.680300", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.249300", + "Timestamp": "2024-05-16T06:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.244300", + "Timestamp": "2024-05-16T06:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119300", + "Timestamp": "2024-05-16T06:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.214700", + "Timestamp": "2024-05-16T06:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.209700", + "Timestamp": "2024-05-16T06:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.084700", + "Timestamp": "2024-05-16T06:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.847600", + "Timestamp": "2024-05-16T06:32:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.875100", + "Timestamp": "2024-05-16T06:32:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088000", + "Timestamp": "2024-05-16T06:32:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084300", + "Timestamp": "2024-05-16T06:32:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028000", + "Timestamp": "2024-05-16T06:32:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.935400", + "Timestamp": "2024-05-16T06:32:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.930400", + "Timestamp": "2024-05-16T06:32:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.805400", + "Timestamp": "2024-05-16T06:32:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.680400", + "Timestamp": "2024-05-16T06:32:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.675400", + "Timestamp": "2024-05-16T06:32:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.550400", + "Timestamp": "2024-05-16T06:32:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.445200", + "Timestamp": "2024-05-16T06:32:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.503900", + "Timestamp": "2024-05-16T06:32:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.498900", + "Timestamp": "2024-05-16T06:32:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.373900", + "Timestamp": "2024-05-16T06:32:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.474800", + "Timestamp": "2024-05-16T06:32:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.469800", + "Timestamp": "2024-05-16T06:32:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.344800", + "Timestamp": "2024-05-16T06:32:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.007700", + "Timestamp": "2024-05-16T06:32:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.002700", + "Timestamp": "2024-05-16T06:32:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.877700", + "Timestamp": "2024-05-16T06:32:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.195100", + "Timestamp": "2024-05-16T06:32:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.699500", + "Timestamp": "2024-05-16T06:31:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.001600", + "Timestamp": "2024-05-16T06:31:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.578800", + "Timestamp": "2024-05-16T06:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.573800", + "Timestamp": "2024-05-16T06:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.448800", + "Timestamp": "2024-05-16T06:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.593800", + "Timestamp": "2024-05-16T06:31:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.588800", + "Timestamp": "2024-05-16T06:31:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.463800", + "Timestamp": "2024-05-16T06:31:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112900", + "Timestamp": "2024-05-16T06:31:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109200", + "Timestamp": "2024-05-16T06:31:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052900", + "Timestamp": "2024-05-16T06:31:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.077700", + "Timestamp": "2024-05-16T06:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.072700", + "Timestamp": "2024-05-16T06:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.947700", + "Timestamp": "2024-05-16T06:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124800", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121100", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064800", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.495500", + "Timestamp": "2024-05-16T06:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161000", + "Timestamp": "2024-05-16T06:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157300", + "Timestamp": "2024-05-16T06:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101000", + "Timestamp": "2024-05-16T06:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.524500", + "Timestamp": "2024-05-16T06:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.519500", + "Timestamp": "2024-05-16T06:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.394500", + "Timestamp": "2024-05-16T06:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154100", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.194100", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094100", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.712000", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.068500", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.038500", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.938500", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.397900", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090400", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086700", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030400", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.861100", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.624500", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167200", + "Timestamp": "2024-05-16T06:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163500", + "Timestamp": "2024-05-16T06:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-16T06:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.979400", + "Timestamp": "2024-05-16T06:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.851900", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.527800", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098500", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094500", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038500", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.669600", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.664600", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.539600", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138600", + "Timestamp": "2024-05-16T06:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134600", + "Timestamp": "2024-05-16T06:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078600", + "Timestamp": "2024-05-16T06:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.191600", + "Timestamp": "2024-05-16T06:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.609800", + "Timestamp": "2024-05-16T06:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.609800", + "Timestamp": "2024-05-16T06:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.609800", + "Timestamp": "2024-05-16T06:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T06:24:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T06:21:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-16T06:21:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044200", + "Timestamp": "2024-05-16T06:21:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423900", + "Timestamp": "2024-05-16T06:18:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.750200", + "Timestamp": "2024-05-16T06:17:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.351600", + "Timestamp": "2024-05-16T06:17:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.346600", + "Timestamp": "2024-05-16T06:17:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.221600", + "Timestamp": "2024-05-16T06:17:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.001300", + "Timestamp": "2024-05-16T06:17:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.996300", + "Timestamp": "2024-05-16T06:17:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.871300", + "Timestamp": "2024-05-16T06:17:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229400", + "Timestamp": "2024-05-16T06:17:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.674500", + "Timestamp": "2024-05-16T06:17:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.644500", + "Timestamp": "2024-05-16T06:17:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.544500", + "Timestamp": "2024-05-16T06:17:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.407700", + "Timestamp": "2024-05-16T06:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.402700", + "Timestamp": "2024-05-16T06:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.277700", + "Timestamp": "2024-05-16T06:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088800", + "Timestamp": "2024-05-16T06:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085100", + "Timestamp": "2024-05-16T06:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028800", + "Timestamp": "2024-05-16T06:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.613100", + "Timestamp": "2024-05-16T06:17:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.608100", + "Timestamp": "2024-05-16T06:17:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.483100", + "Timestamp": "2024-05-16T06:17:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.372600", + "Timestamp": "2024-05-16T06:17:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.367600", + "Timestamp": "2024-05-16T06:17:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242600", + "Timestamp": "2024-05-16T06:17:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.423700", + "Timestamp": "2024-05-16T06:17:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068600", + "Timestamp": "2024-05-16T06:17:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.064900", + "Timestamp": "2024-05-16T06:17:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008600", + "Timestamp": "2024-05-16T06:17:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.471400", + "Timestamp": "2024-05-16T06:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212600", + "Timestamp": "2024-05-16T06:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.835500", + "Timestamp": "2024-05-16T06:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360500", + "Timestamp": "2024-05-16T06:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.330500", + "Timestamp": "2024-05-16T06:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230500", + "Timestamp": "2024-05-16T06:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.502700", + "Timestamp": "2024-05-16T06:17:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.497700", + "Timestamp": "2024-05-16T06:17:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.372700", + "Timestamp": "2024-05-16T06:17:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.579200", + "Timestamp": "2024-05-16T06:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.574200", + "Timestamp": "2024-05-16T06:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.449200", + "Timestamp": "2024-05-16T06:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T06:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.528400", + "Timestamp": "2024-05-16T06:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092200", + "Timestamp": "2024-05-16T06:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088500", + "Timestamp": "2024-05-16T06:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032200", + "Timestamp": "2024-05-16T06:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134800", + "Timestamp": "2024-05-16T06:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131100", + "Timestamp": "2024-05-16T06:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074800", + "Timestamp": "2024-05-16T06:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084300", + "Timestamp": "2024-05-16T06:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080600", + "Timestamp": "2024-05-16T06:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024300", + "Timestamp": "2024-05-16T06:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.430200", + "Timestamp": "2024-05-16T06:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.425200", + "Timestamp": "2024-05-16T06:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.300200", + "Timestamp": "2024-05-16T06:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.998100", + "Timestamp": "2024-05-16T06:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.968100", + "Timestamp": "2024-05-16T06:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.868100", + "Timestamp": "2024-05-16T06:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.583800", + "Timestamp": "2024-05-16T06:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.578800", + "Timestamp": "2024-05-16T06:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.453800", + "Timestamp": "2024-05-16T06:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098000", + "Timestamp": "2024-05-16T06:17:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094300", + "Timestamp": "2024-05-16T06:17:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038000", + "Timestamp": "2024-05-16T06:17:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.249100", + "Timestamp": "2024-05-16T06:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134200", + "Timestamp": "2024-05-16T06:17:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130500", + "Timestamp": "2024-05-16T06:17:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074200", + "Timestamp": "2024-05-16T06:17:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.389000", + "Timestamp": "2024-05-16T06:17:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.866700", + "Timestamp": "2024-05-16T06:17:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.861700", + "Timestamp": "2024-05-16T06:17:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.736700", + "Timestamp": "2024-05-16T06:17:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.391600", + "Timestamp": "2024-05-16T06:17:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.064400", + "Timestamp": "2024-05-16T06:17:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.059400", + "Timestamp": "2024-05-16T06:17:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.934400", + "Timestamp": "2024-05-16T06:17:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.994200", + "Timestamp": "2024-05-16T06:17:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299300", + "Timestamp": "2024-05-16T06:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294300", + "Timestamp": "2024-05-16T06:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169300", + "Timestamp": "2024-05-16T06:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.350800", + "Timestamp": "2024-05-16T06:17:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.345800", + "Timestamp": "2024-05-16T06:17:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.220800", + "Timestamp": "2024-05-16T06:17:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.846300", + "Timestamp": "2024-05-16T06:17:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.816300", + "Timestamp": "2024-05-16T06:17:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.716300", + "Timestamp": "2024-05-16T06:17:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.924100", + "Timestamp": "2024-05-16T06:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294400", + "Timestamp": "2024-05-16T06:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289400", + "Timestamp": "2024-05-16T06:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164400", + "Timestamp": "2024-05-16T06:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.748200", + "Timestamp": "2024-05-16T06:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.953000", + "Timestamp": "2024-05-16T06:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.923000", + "Timestamp": "2024-05-16T06:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.823000", + "Timestamp": "2024-05-16T06:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-16T06:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T06:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047200", + "Timestamp": "2024-05-16T06:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.546800", + "Timestamp": "2024-05-16T06:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128500", + "Timestamp": "2024-05-16T06:16:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124800", + "Timestamp": "2024-05-16T06:16:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068500", + "Timestamp": "2024-05-16T06:16:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.402300", + "Timestamp": "2024-05-16T06:16:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.397300", + "Timestamp": "2024-05-16T06:16:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.272300", + "Timestamp": "2024-05-16T06:16:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.732900", + "Timestamp": "2024-05-16T06:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.727900", + "Timestamp": "2024-05-16T06:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.602900", + "Timestamp": "2024-05-16T06:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.691300", + "Timestamp": "2024-05-16T06:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.543800", + "Timestamp": "2024-05-16T06:16:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.989400", + "Timestamp": "2024-05-16T06:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.984400", + "Timestamp": "2024-05-16T06:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.859400", + "Timestamp": "2024-05-16T06:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.470200", + "Timestamp": "2024-05-16T06:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.616400", + "Timestamp": "2024-05-16T06:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.586400", + "Timestamp": "2024-05-16T06:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.486400", + "Timestamp": "2024-05-16T06:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.767100", + "Timestamp": "2024-05-16T06:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.762100", + "Timestamp": "2024-05-16T06:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.637100", + "Timestamp": "2024-05-16T06:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.618400", + "Timestamp": "2024-05-16T06:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.613400", + "Timestamp": "2024-05-16T06:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.488400", + "Timestamp": "2024-05-16T06:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.425000", + "Timestamp": "2024-05-16T06:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.142400", + "Timestamp": "2024-05-16T06:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.112400", + "Timestamp": "2024-05-16T06:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.012400", + "Timestamp": "2024-05-16T06:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.241100", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.211100", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.111100", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.713100", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.926900", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.896900", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.796900", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.578400", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.548400", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.448400", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.868900", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.956500", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.951500", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.826500", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.001000", + "Timestamp": "2024-05-16T06:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.971000", + "Timestamp": "2024-05-16T06:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.871000", + "Timestamp": "2024-05-16T06:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.282400", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261300", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.277400", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.256300", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.152400", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131300", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423900", + "Timestamp": "2024-05-16T06:05:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.983800", + "Timestamp": "2024-05-16T06:02:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.978800", + "Timestamp": "2024-05-16T06:02:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.853800", + "Timestamp": "2024-05-16T06:02:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.415600", + "Timestamp": "2024-05-16T06:02:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.041900", + "Timestamp": "2024-05-16T06:02:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T06:02:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T06:02:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048100", + "Timestamp": "2024-05-16T06:02:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.423600", + "Timestamp": "2024-05-16T06:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.605700", + "Timestamp": "2024-05-16T06:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.418600", + "Timestamp": "2024-05-16T06:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.600700", + "Timestamp": "2024-05-16T06:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.293600", + "Timestamp": "2024-05-16T06:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.475700", + "Timestamp": "2024-05-16T06:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109000", + "Timestamp": "2024-05-16T06:02:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.051700", + "Timestamp": "2024-05-16T06:02:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.046700", + "Timestamp": "2024-05-16T06:02:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.921700", + "Timestamp": "2024-05-16T06:02:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.652800", + "Timestamp": "2024-05-16T06:02:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.647800", + "Timestamp": "2024-05-16T06:02:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.522800", + "Timestamp": "2024-05-16T06:02:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.621300", + "Timestamp": "2024-05-16T06:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.468300", + "Timestamp": "2024-05-16T06:02:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.463300", + "Timestamp": "2024-05-16T06:02:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.338300", + "Timestamp": "2024-05-16T06:02:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.465400", + "Timestamp": "2024-05-16T06:02:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.230200", + "Timestamp": "2024-05-16T06:02:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.153100", + "Timestamp": "2024-05-16T06:02:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.630600", + "Timestamp": "2024-05-16T06:02:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.625600", + "Timestamp": "2024-05-16T06:02:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.500600", + "Timestamp": "2024-05-16T06:02:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208900", + "Timestamp": "2024-05-16T06:02:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.892400", + "Timestamp": "2024-05-16T06:02:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.887400", + "Timestamp": "2024-05-16T06:02:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.762400", + "Timestamp": "2024-05-16T06:02:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.198300", + "Timestamp": "2024-05-16T06:02:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.194600", + "Timestamp": "2024-05-16T06:02:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.138300", + "Timestamp": "2024-05-16T06:02:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.784600", + "Timestamp": "2024-05-16T06:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.602800", + "Timestamp": "2024-05-16T06:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.597800", + "Timestamp": "2024-05-16T06:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.472800", + "Timestamp": "2024-05-16T06:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.278200", + "Timestamp": "2024-05-16T06:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.418100", + "Timestamp": "2024-05-16T06:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.413100", + "Timestamp": "2024-05-16T06:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.288100", + "Timestamp": "2024-05-16T06:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.905200", + "Timestamp": "2024-05-16T06:02:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.875200", + "Timestamp": "2024-05-16T06:02:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.775200", + "Timestamp": "2024-05-16T06:02:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071600", + "Timestamp": "2024-05-16T06:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067900", + "Timestamp": "2024-05-16T06:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011600", + "Timestamp": "2024-05-16T06:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.734000", + "Timestamp": "2024-05-16T06:02:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.845700", + "Timestamp": "2024-05-16T06:02:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.704000", + "Timestamp": "2024-05-16T06:02:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.815700", + "Timestamp": "2024-05-16T06:02:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.604000", + "Timestamp": "2024-05-16T06:02:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.715700", + "Timestamp": "2024-05-16T06:02:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.203700", + "Timestamp": "2024-05-16T06:02:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198700", + "Timestamp": "2024-05-16T06:02:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073700", + "Timestamp": "2024-05-16T06:02:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.427800", + "Timestamp": "2024-05-16T06:02:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.422800", + "Timestamp": "2024-05-16T06:02:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.297800", + "Timestamp": "2024-05-16T06:02:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.344100", + "Timestamp": "2024-05-16T06:02:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.751100", + "Timestamp": "2024-05-16T06:02:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.746100", + "Timestamp": "2024-05-16T06:02:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.621100", + "Timestamp": "2024-05-16T06:02:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.946300", + "Timestamp": "2024-05-16T06:02:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.941300", + "Timestamp": "2024-05-16T06:02:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.816300", + "Timestamp": "2024-05-16T06:02:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.418700", + "Timestamp": "2024-05-16T06:02:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.388700", + "Timestamp": "2024-05-16T06:02:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.288700", + "Timestamp": "2024-05-16T06:02:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.653700", + "Timestamp": "2024-05-16T06:01:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.648700", + "Timestamp": "2024-05-16T06:01:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.523700", + "Timestamp": "2024-05-16T06:01:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.201900", + "Timestamp": "2024-05-16T06:01:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.196900", + "Timestamp": "2024-05-16T06:01:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.071900", + "Timestamp": "2024-05-16T06:01:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.069400", + "Timestamp": "2024-05-16T06:01:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.064400", + "Timestamp": "2024-05-16T06:01:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.939400", + "Timestamp": "2024-05-16T06:01:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.417900", + "Timestamp": "2024-05-16T06:01:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.387900", + "Timestamp": "2024-05-16T06:01:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.287900", + "Timestamp": "2024-05-16T06:01:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.737700", + "Timestamp": "2024-05-16T06:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.677600", + "Timestamp": "2024-05-16T06:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.672600", + "Timestamp": "2024-05-16T06:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.547600", + "Timestamp": "2024-05-16T06:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.531800", + "Timestamp": "2024-05-16T06:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.526800", + "Timestamp": "2024-05-16T06:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.401800", + "Timestamp": "2024-05-16T06:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437600", + "Timestamp": "2024-05-16T06:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.844100", + "Timestamp": "2024-05-16T06:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.555600", + "Timestamp": "2024-05-16T06:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.565700", + "Timestamp": "2024-05-16T06:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.550600", + "Timestamp": "2024-05-16T06:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.560700", + "Timestamp": "2024-05-16T06:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.425600", + "Timestamp": "2024-05-16T06:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.435700", + "Timestamp": "2024-05-16T06:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.801400", + "Timestamp": "2024-05-16T06:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.073400", + "Timestamp": "2024-05-16T06:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.796400", + "Timestamp": "2024-05-16T06:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.068400", + "Timestamp": "2024-05-16T06:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.671400", + "Timestamp": "2024-05-16T06:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.943400", + "Timestamp": "2024-05-16T06:01:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.520300", + "Timestamp": "2024-05-16T06:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.490300", + "Timestamp": "2024-05-16T06:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.390300", + "Timestamp": "2024-05-16T06:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.319800", + "Timestamp": "2024-05-16T06:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061800", + "Timestamp": "2024-05-16T06:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001800", + "Timestamp": "2024-05-16T06:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001800", + "Timestamp": "2024-05-16T06:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.279300", + "Timestamp": "2024-05-16T06:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.275300", + "Timestamp": "2024-05-16T06:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219300", + "Timestamp": "2024-05-16T06:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.551900", + "Timestamp": "2024-05-16T06:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.546900", + "Timestamp": "2024-05-16T06:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.421900", + "Timestamp": "2024-05-16T06:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.631000", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.626000", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.501000", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.411500", + "Timestamp": "2024-05-16T05:47:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.835400", + "Timestamp": "2024-05-16T05:47:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.824400", + "Timestamp": "2024-05-16T05:47:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.819400", + "Timestamp": "2024-05-16T05:47:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.694400", + "Timestamp": "2024-05-16T05:47:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.107200", + "Timestamp": "2024-05-16T05:47:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.102200", + "Timestamp": "2024-05-16T05:47:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.977200", + "Timestamp": "2024-05-16T05:47:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T05:47:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122200", + "Timestamp": "2024-05-16T05:47:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118200", + "Timestamp": "2024-05-16T05:47:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062200", + "Timestamp": "2024-05-16T05:47:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.423900", + "Timestamp": "2024-05-16T05:47:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.418900", + "Timestamp": "2024-05-16T05:47:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.293900", + "Timestamp": "2024-05-16T05:47:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.527500", + "Timestamp": "2024-05-16T05:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.522500", + "Timestamp": "2024-05-16T05:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.397500", + "Timestamp": "2024-05-16T05:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.453500", + "Timestamp": "2024-05-16T05:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.448500", + "Timestamp": "2024-05-16T05:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.323500", + "Timestamp": "2024-05-16T05:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.151200", + "Timestamp": "2024-05-16T05:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.929900", + "Timestamp": "2024-05-16T05:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.146200", + "Timestamp": "2024-05-16T05:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.924900", + "Timestamp": "2024-05-16T05:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.021200", + "Timestamp": "2024-05-16T05:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.799900", + "Timestamp": "2024-05-16T05:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.457300", + "Timestamp": "2024-05-16T05:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.452300", + "Timestamp": "2024-05-16T05:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.327300", + "Timestamp": "2024-05-16T05:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.428100", + "Timestamp": "2024-05-16T05:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.423100", + "Timestamp": "2024-05-16T05:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.298100", + "Timestamp": "2024-05-16T05:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.987600", + "Timestamp": "2024-05-16T05:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.957600", + "Timestamp": "2024-05-16T05:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.857600", + "Timestamp": "2024-05-16T05:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.385700", + "Timestamp": "2024-05-16T05:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.380700", + "Timestamp": "2024-05-16T05:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.255700", + "Timestamp": "2024-05-16T05:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.205500", + "Timestamp": "2024-05-16T05:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.201500", + "Timestamp": "2024-05-16T05:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145500", + "Timestamp": "2024-05-16T05:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.879800", + "Timestamp": "2024-05-16T05:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.684800", + "Timestamp": "2024-05-16T05:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.679800", + "Timestamp": "2024-05-16T05:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.554800", + "Timestamp": "2024-05-16T05:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165500", + "Timestamp": "2024-05-16T05:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161500", + "Timestamp": "2024-05-16T05:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105500", + "Timestamp": "2024-05-16T05:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.695100", + "Timestamp": "2024-05-16T05:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.690100", + "Timestamp": "2024-05-16T05:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.565100", + "Timestamp": "2024-05-16T05:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097800", + "Timestamp": "2024-05-16T05:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094400", + "Timestamp": "2024-05-16T05:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094100", + "Timestamp": "2024-05-16T05:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090700", + "Timestamp": "2024-05-16T05:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037800", + "Timestamp": "2024-05-16T05:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034400", + "Timestamp": "2024-05-16T05:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.367300", + "Timestamp": "2024-05-16T05:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.362300", + "Timestamp": "2024-05-16T05:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.237300", + "Timestamp": "2024-05-16T05:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.693400", + "Timestamp": "2024-05-16T05:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.663400", + "Timestamp": "2024-05-16T05:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.563400", + "Timestamp": "2024-05-16T05:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113400", + "Timestamp": "2024-05-16T05:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T05:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053400", + "Timestamp": "2024-05-16T05:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.629200", + "Timestamp": "2024-05-16T05:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.624200", + "Timestamp": "2024-05-16T05:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.499200", + "Timestamp": "2024-05-16T05:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114100", + "Timestamp": "2024-05-16T05:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110400", + "Timestamp": "2024-05-16T05:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054100", + "Timestamp": "2024-05-16T05:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129600", + "Timestamp": "2024-05-16T05:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125600", + "Timestamp": "2024-05-16T05:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069600", + "Timestamp": "2024-05-16T05:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154800", + "Timestamp": "2024-05-16T05:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150800", + "Timestamp": "2024-05-16T05:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094800", + "Timestamp": "2024-05-16T05:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.713800", + "Timestamp": "2024-05-16T05:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.708800", + "Timestamp": "2024-05-16T05:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.583800", + "Timestamp": "2024-05-16T05:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.249500", + "Timestamp": "2024-05-16T05:47:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.477000", + "Timestamp": "2024-05-16T05:47:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.780000", + "Timestamp": "2024-05-16T05:47:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.739200", + "Timestamp": "2024-05-16T05:46:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.734200", + "Timestamp": "2024-05-16T05:46:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.609200", + "Timestamp": "2024-05-16T05:46:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.275100", + "Timestamp": "2024-05-16T05:46:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270100", + "Timestamp": "2024-05-16T05:46:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145100", + "Timestamp": "2024-05-16T05:46:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.999600", + "Timestamp": "2024-05-16T05:46:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094200", + "Timestamp": "2024-05-16T05:46:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090200", + "Timestamp": "2024-05-16T05:46:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034200", + "Timestamp": "2024-05-16T05:46:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141300", + "Timestamp": "2024-05-16T05:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137600", + "Timestamp": "2024-05-16T05:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081300", + "Timestamp": "2024-05-16T05:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.994000", + "Timestamp": "2024-05-16T05:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.989000", + "Timestamp": "2024-05-16T05:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.864000", + "Timestamp": "2024-05-16T05:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.495700", + "Timestamp": "2024-05-16T05:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.665500", + "Timestamp": "2024-05-16T05:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.660500", + "Timestamp": "2024-05-16T05:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.535500", + "Timestamp": "2024-05-16T05:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.515200", + "Timestamp": "2024-05-16T05:46:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.485200", + "Timestamp": "2024-05-16T05:46:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.385200", + "Timestamp": "2024-05-16T05:46:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.875600", + "Timestamp": "2024-05-16T05:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.870600", + "Timestamp": "2024-05-16T05:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.745600", + "Timestamp": "2024-05-16T05:46:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147100", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143400", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087100", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.866600", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.836600", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.736600", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121100", + "Timestamp": "2024-05-16T05:33:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233400", + "Timestamp": "2024-05-16T05:32:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.567900", + "Timestamp": "2024-05-16T05:32:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.562900", + "Timestamp": "2024-05-16T05:32:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.437900", + "Timestamp": "2024-05-16T05:32:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.827100", + "Timestamp": "2024-05-16T05:32:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.822100", + "Timestamp": "2024-05-16T05:32:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.697100", + "Timestamp": "2024-05-16T05:32:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.888800", + "Timestamp": "2024-05-16T05:32:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.713100", + "Timestamp": "2024-05-16T05:32:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.655900", + "Timestamp": "2024-05-16T05:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.650900", + "Timestamp": "2024-05-16T05:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.525900", + "Timestamp": "2024-05-16T05:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.285100", + "Timestamp": "2024-05-16T05:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.224800", + "Timestamp": "2024-05-16T05:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.280100", + "Timestamp": "2024-05-16T05:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.219800", + "Timestamp": "2024-05-16T05:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.155100", + "Timestamp": "2024-05-16T05:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094800", + "Timestamp": "2024-05-16T05:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.071100", + "Timestamp": "2024-05-16T05:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.472100", + "Timestamp": "2024-05-16T05:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.066100", + "Timestamp": "2024-05-16T05:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.467100", + "Timestamp": "2024-05-16T05:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.941100", + "Timestamp": "2024-05-16T05:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.342100", + "Timestamp": "2024-05-16T05:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.810400", + "Timestamp": "2024-05-16T05:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.805400", + "Timestamp": "2024-05-16T05:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.680400", + "Timestamp": "2024-05-16T05:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.810100", + "Timestamp": "2024-05-16T05:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.230500", + "Timestamp": "2024-05-16T05:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.329700", + "Timestamp": "2024-05-16T05:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.203100", + "Timestamp": "2024-05-16T05:32:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.121000", + "Timestamp": "2024-05-16T05:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.091000", + "Timestamp": "2024-05-16T05:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.991000", + "Timestamp": "2024-05-16T05:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108800", + "Timestamp": "2024-05-16T05:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148800", + "Timestamp": "2024-05-16T05:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048800", + "Timestamp": "2024-05-16T05:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.850600", + "Timestamp": "2024-05-16T05:32:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.845600", + "Timestamp": "2024-05-16T05:32:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.720600", + "Timestamp": "2024-05-16T05:32:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.086800", + "Timestamp": "2024-05-16T05:32:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.081800", + "Timestamp": "2024-05-16T05:32:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.956800", + "Timestamp": "2024-05-16T05:32:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.973000", + "Timestamp": "2024-05-16T05:32:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.943000", + "Timestamp": "2024-05-16T05:32:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.843000", + "Timestamp": "2024-05-16T05:32:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.285700", + "Timestamp": "2024-05-16T05:32:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.280700", + "Timestamp": "2024-05-16T05:32:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.155700", + "Timestamp": "2024-05-16T05:32:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.510000", + "Timestamp": "2024-05-16T05:32:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.298000", + "Timestamp": "2024-05-16T05:31:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.293000", + "Timestamp": "2024-05-16T05:31:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.168000", + "Timestamp": "2024-05-16T05:31:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.013200", + "Timestamp": "2024-05-16T05:31:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.754100", + "Timestamp": "2024-05-16T05:31:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.749100", + "Timestamp": "2024-05-16T05:31:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.624100", + "Timestamp": "2024-05-16T05:31:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.468800", + "Timestamp": "2024-05-16T05:31:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270400", + "Timestamp": "2024-05-16T05:31:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265400", + "Timestamp": "2024-05-16T05:31:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140400", + "Timestamp": "2024-05-16T05:31:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441100", + "Timestamp": "2024-05-16T05:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.355100", + "Timestamp": "2024-05-16T05:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.831700", + "Timestamp": "2024-05-16T05:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.587100", + "Timestamp": "2024-05-16T05:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.582100", + "Timestamp": "2024-05-16T05:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.457100", + "Timestamp": "2024-05-16T05:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065400", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.036400", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005400", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.531900", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.130900", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.125900", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.000900", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.221500", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.216500", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091500", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.993900", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.821200", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.816200", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.691200", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.625600", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.620600", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.495600", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.676300", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441200", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441200", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441200", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441200", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.440000", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.410000", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.310000", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.127000", + "Timestamp": "2024-05-16T05:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.950000", + "Timestamp": "2024-05-16T05:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.920000", + "Timestamp": "2024-05-16T05:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.820000", + "Timestamp": "2024-05-16T05:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131800", + "Timestamp": "2024-05-16T05:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127800", + "Timestamp": "2024-05-16T05:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071800", + "Timestamp": "2024-05-16T05:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.133900", + "Timestamp": "2024-05-16T05:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.128900", + "Timestamp": "2024-05-16T05:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.003900", + "Timestamp": "2024-05-16T05:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211900", + "Timestamp": "2024-05-16T05:22:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211800", + "Timestamp": "2024-05-16T05:22:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.717200", + "Timestamp": "2024-05-16T05:17:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.687200", + "Timestamp": "2024-05-16T05:17:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.587200", + "Timestamp": "2024-05-16T05:17:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.539800", + "Timestamp": "2024-05-16T05:17:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.244400", + "Timestamp": "2024-05-16T05:17:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.239400", + "Timestamp": "2024-05-16T05:17:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.114400", + "Timestamp": "2024-05-16T05:17:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.503000", + "Timestamp": "2024-05-16T05:17:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.498000", + "Timestamp": "2024-05-16T05:17:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.373000", + "Timestamp": "2024-05-16T05:17:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.486100", + "Timestamp": "2024-05-16T05:17:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.456100", + "Timestamp": "2024-05-16T05:17:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.356100", + "Timestamp": "2024-05-16T05:17:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.427800", + "Timestamp": "2024-05-16T05:17:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.841200", + "Timestamp": "2024-05-16T05:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133500", + "Timestamp": "2024-05-16T05:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129800", + "Timestamp": "2024-05-16T05:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073500", + "Timestamp": "2024-05-16T05:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151100", + "Timestamp": "2024-05-16T05:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147400", + "Timestamp": "2024-05-16T05:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091100", + "Timestamp": "2024-05-16T05:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.827800", + "Timestamp": "2024-05-16T05:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084000", + "Timestamp": "2024-05-16T05:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080300", + "Timestamp": "2024-05-16T05:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024000", + "Timestamp": "2024-05-16T05:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219700", + "Timestamp": "2024-05-16T05:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.283200", + "Timestamp": "2024-05-16T05:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.278200", + "Timestamp": "2024-05-16T05:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.153200", + "Timestamp": "2024-05-16T05:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.380200", + "Timestamp": "2024-05-16T05:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.375200", + "Timestamp": "2024-05-16T05:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.250200", + "Timestamp": "2024-05-16T05:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.448700", + "Timestamp": "2024-05-16T05:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.418700", + "Timestamp": "2024-05-16T05:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.318700", + "Timestamp": "2024-05-16T05:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.981800", + "Timestamp": "2024-05-16T05:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.976800", + "Timestamp": "2024-05-16T05:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.851800", + "Timestamp": "2024-05-16T05:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223300", + "Timestamp": "2024-05-16T05:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273800", + "Timestamp": "2024-05-16T05:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268800", + "Timestamp": "2024-05-16T05:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143800", + "Timestamp": "2024-05-16T05:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.189500", + "Timestamp": "2024-05-16T05:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185800", + "Timestamp": "2024-05-16T05:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129500", + "Timestamp": "2024-05-16T05:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.337900", + "Timestamp": "2024-05-16T05:17:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.307900", + "Timestamp": "2024-05-16T05:17:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.207900", + "Timestamp": "2024-05-16T05:17:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.884600", + "Timestamp": "2024-05-16T05:17:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.661800", + "Timestamp": "2024-05-16T05:17:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.004600", + "Timestamp": "2024-05-16T05:17:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.396400", + "Timestamp": "2024-05-16T05:17:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.145500", + "Timestamp": "2024-05-16T05:17:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.140500", + "Timestamp": "2024-05-16T05:17:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.015500", + "Timestamp": "2024-05-16T05:17:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.347300", + "Timestamp": "2024-05-16T05:17:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.317300", + "Timestamp": "2024-05-16T05:17:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.217300", + "Timestamp": "2024-05-16T05:17:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.647400", + "Timestamp": "2024-05-16T05:16:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.646800", + "Timestamp": "2024-05-16T05:16:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.277200", + "Timestamp": "2024-05-16T05:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.247200", + "Timestamp": "2024-05-16T05:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.147200", + "Timestamp": "2024-05-16T05:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.929900", + "Timestamp": "2024-05-16T05:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.800000", + "Timestamp": "2024-05-16T05:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.795000", + "Timestamp": "2024-05-16T05:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.670000", + "Timestamp": "2024-05-16T05:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.474500", + "Timestamp": "2024-05-16T05:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.352700", + "Timestamp": "2024-05-16T05:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.347700", + "Timestamp": "2024-05-16T05:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.222700", + "Timestamp": "2024-05-16T05:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.212100", + "Timestamp": "2024-05-16T05:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.103900", + "Timestamp": "2024-05-16T05:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.271000", + "Timestamp": "2024-05-16T05:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.803900", + "Timestamp": "2024-05-16T05:16:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.691700", + "Timestamp": "2024-05-16T05:16:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.096100", + "Timestamp": "2024-05-16T05:16:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297900", + "Timestamp": "2024-05-16T05:16:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.292900", + "Timestamp": "2024-05-16T05:16:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167900", + "Timestamp": "2024-05-16T05:16:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.334800", + "Timestamp": "2024-05-16T05:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.304800", + "Timestamp": "2024-05-16T05:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.204800", + "Timestamp": "2024-05-16T05:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.001400", + "Timestamp": "2024-05-16T05:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.861600", + "Timestamp": "2024-05-16T05:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.175600", + "Timestamp": "2024-05-16T05:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.171600", + "Timestamp": "2024-05-16T05:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115600", + "Timestamp": "2024-05-16T05:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.645900", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.640900", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.515900", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081900", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078200", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021900", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102200", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045900", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101400", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141400", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041400", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.830000", + "Timestamp": "2024-05-16T05:02:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.286800", + "Timestamp": "2024-05-16T05:02:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.805600", + "Timestamp": "2024-05-16T05:02:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.160400", + "Timestamp": "2024-05-16T05:02:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.779100", + "Timestamp": "2024-05-16T05:02:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429400", + "Timestamp": "2024-05-16T05:02:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.338300", + "Timestamp": "2024-05-16T05:02:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.611200", + "Timestamp": "2024-05-16T05:02:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111900", + "Timestamp": "2024-05-16T05:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.023400", + "Timestamp": "2024-05-16T05:02:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.993400", + "Timestamp": "2024-05-16T05:02:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.893400", + "Timestamp": "2024-05-16T05:02:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.830800", + "Timestamp": "2024-05-16T05:02:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.825800", + "Timestamp": "2024-05-16T05:02:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.700800", + "Timestamp": "2024-05-16T05:02:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.487000", + "Timestamp": "2024-05-16T05:02:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.051200", + "Timestamp": "2024-05-16T05:02:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.524600", + "Timestamp": "2024-05-16T05:02:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140100", + "Timestamp": "2024-05-16T05:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136100", + "Timestamp": "2024-05-16T05:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080100", + "Timestamp": "2024-05-16T05:02:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.998100", + "Timestamp": "2024-05-16T05:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.968100", + "Timestamp": "2024-05-16T05:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.868100", + "Timestamp": "2024-05-16T05:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.664100", + "Timestamp": "2024-05-16T05:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.659100", + "Timestamp": "2024-05-16T05:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.534100", + "Timestamp": "2024-05-16T05:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.755500", + "Timestamp": "2024-05-16T05:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.750500", + "Timestamp": "2024-05-16T05:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.625500", + "Timestamp": "2024-05-16T05:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.583600", + "Timestamp": "2024-05-16T05:02:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.578600", + "Timestamp": "2024-05-16T05:02:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.453600", + "Timestamp": "2024-05-16T05:02:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.445300", + "Timestamp": "2024-05-16T05:02:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.440300", + "Timestamp": "2024-05-16T05:02:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.315300", + "Timestamp": "2024-05-16T05:02:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083900", + "Timestamp": "2024-05-16T05:02:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080200", + "Timestamp": "2024-05-16T05:02:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023900", + "Timestamp": "2024-05-16T05:02:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130200", + "Timestamp": "2024-05-16T05:02:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126500", + "Timestamp": "2024-05-16T05:02:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070200", + "Timestamp": "2024-05-16T05:02:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.202800", + "Timestamp": "2024-05-16T05:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T05:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109100", + "Timestamp": "2024-05-16T05:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052800", + "Timestamp": "2024-05-16T05:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.998800", + "Timestamp": "2024-05-16T05:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.993800", + "Timestamp": "2024-05-16T05:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.868800", + "Timestamp": "2024-05-16T05:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.266200", + "Timestamp": "2024-05-16T05:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.261200", + "Timestamp": "2024-05-16T05:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136200", + "Timestamp": "2024-05-16T05:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.822100", + "Timestamp": "2024-05-16T05:02:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.817100", + "Timestamp": "2024-05-16T05:02:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.692100", + "Timestamp": "2024-05-16T05:02:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T05:02:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143800", + "Timestamp": "2024-05-16T05:02:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043800", + "Timestamp": "2024-05-16T05:02:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.367900", + "Timestamp": "2024-05-16T05:02:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.337900", + "Timestamp": "2024-05-16T05:02:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.237900", + "Timestamp": "2024-05-16T05:02:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.413300", + "Timestamp": "2024-05-16T05:02:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.383300", + "Timestamp": "2024-05-16T05:02:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.283300", + "Timestamp": "2024-05-16T05:02:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062600", + "Timestamp": "2024-05-16T05:02:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-16T05:02:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-16T05:02:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.207400", + "Timestamp": "2024-05-16T05:02:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.202400", + "Timestamp": "2024-05-16T05:02:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.077400", + "Timestamp": "2024-05-16T05:02:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.041300", + "Timestamp": "2024-05-16T05:01:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.011300", + "Timestamp": "2024-05-16T05:01:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.911300", + "Timestamp": "2024-05-16T05:01:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.762300", + "Timestamp": "2024-05-16T05:01:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.757300", + "Timestamp": "2024-05-16T05:01:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.632300", + "Timestamp": "2024-05-16T05:01:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.440900", + "Timestamp": "2024-05-16T05:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.435900", + "Timestamp": "2024-05-16T05:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.310900", + "Timestamp": "2024-05-16T05:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.058800", + "Timestamp": "2024-05-16T05:01:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128800", + "Timestamp": "2024-05-16T05:01:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124800", + "Timestamp": "2024-05-16T05:01:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-16T05:01:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.772700", + "Timestamp": "2024-05-16T05:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.216200", + "Timestamp": "2024-05-16T05:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.767700", + "Timestamp": "2024-05-16T05:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.211200", + "Timestamp": "2024-05-16T05:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.642700", + "Timestamp": "2024-05-16T05:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.086200", + "Timestamp": "2024-05-16T05:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.930000", + "Timestamp": "2024-05-16T05:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.900000", + "Timestamp": "2024-05-16T05:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.800000", + "Timestamp": "2024-05-16T05:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.140800", + "Timestamp": "2024-05-16T05:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090000", + "Timestamp": "2024-05-16T05:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086300", + "Timestamp": "2024-05-16T05:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030000", + "Timestamp": "2024-05-16T05:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103600", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099900", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043600", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.224800", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.219800", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094800", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216200", + "Timestamp": "2024-05-16T04:56:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216100", + "Timestamp": "2024-05-16T04:56:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.189400", + "Timestamp": "2024-05-16T04:48:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.727300", + "Timestamp": "2024-05-16T04:47:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.722300", + "Timestamp": "2024-05-16T04:47:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.597300", + "Timestamp": "2024-05-16T04:47:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.065000", + "Timestamp": "2024-05-16T04:47:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.035000", + "Timestamp": "2024-05-16T04:47:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.935000", + "Timestamp": "2024-05-16T04:47:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.025800", + "Timestamp": "2024-05-16T04:47:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.528600", + "Timestamp": "2024-05-16T04:47:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.880200", + "Timestamp": "2024-05-16T04:47:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.261400", + "Timestamp": "2024-05-16T04:47:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.256400", + "Timestamp": "2024-05-16T04:47:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.131400", + "Timestamp": "2024-05-16T04:47:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.675700", + "Timestamp": "2024-05-16T04:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.585700", + "Timestamp": "2024-05-16T04:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.580700", + "Timestamp": "2024-05-16T04:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.455700", + "Timestamp": "2024-05-16T04:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.295900", + "Timestamp": "2024-05-16T04:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.290900", + "Timestamp": "2024-05-16T04:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165900", + "Timestamp": "2024-05-16T04:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.043200", + "Timestamp": "2024-05-16T04:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.038200", + "Timestamp": "2024-05-16T04:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.913200", + "Timestamp": "2024-05-16T04:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.752900", + "Timestamp": "2024-05-16T04:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.747900", + "Timestamp": "2024-05-16T04:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.622900", + "Timestamp": "2024-05-16T04:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.189900", + "Timestamp": "2024-05-16T04:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.348600", + "Timestamp": "2024-05-16T04:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.343600", + "Timestamp": "2024-05-16T04:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.218600", + "Timestamp": "2024-05-16T04:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.202600", + "Timestamp": "2024-05-16T04:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198600", + "Timestamp": "2024-05-16T04:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142600", + "Timestamp": "2024-05-16T04:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.931100", + "Timestamp": "2024-05-16T04:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.901100", + "Timestamp": "2024-05-16T04:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.801100", + "Timestamp": "2024-05-16T04:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.554600", + "Timestamp": "2024-05-16T04:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.549600", + "Timestamp": "2024-05-16T04:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.424600", + "Timestamp": "2024-05-16T04:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.729200", + "Timestamp": "2024-05-16T04:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.724200", + "Timestamp": "2024-05-16T04:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.599200", + "Timestamp": "2024-05-16T04:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068700", + "Timestamp": "2024-05-16T04:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065000", + "Timestamp": "2024-05-16T04:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008700", + "Timestamp": "2024-05-16T04:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148500", + "Timestamp": "2024-05-16T04:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144500", + "Timestamp": "2024-05-16T04:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088500", + "Timestamp": "2024-05-16T04:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.165200", + "Timestamp": "2024-05-16T04:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.812700", + "Timestamp": "2024-05-16T04:47:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-16T04:47:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088600", + "Timestamp": "2024-05-16T04:47:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032600", + "Timestamp": "2024-05-16T04:47:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.644400", + "Timestamp": "2024-05-16T04:47:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.639400", + "Timestamp": "2024-05-16T04:47:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.514400", + "Timestamp": "2024-05-16T04:47:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.878300", + "Timestamp": "2024-05-16T04:47:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.093100", + "Timestamp": "2024-05-16T04:47:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.088100", + "Timestamp": "2024-05-16T04:47:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.963100", + "Timestamp": "2024-05-16T04:47:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145000", + "Timestamp": "2024-05-16T04:47:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185000", + "Timestamp": "2024-05-16T04:47:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085000", + "Timestamp": "2024-05-16T04:47:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.928800", + "Timestamp": "2024-05-16T04:47:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.923800", + "Timestamp": "2024-05-16T04:47:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.798800", + "Timestamp": "2024-05-16T04:47:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.687900", + "Timestamp": "2024-05-16T04:47:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.682900", + "Timestamp": "2024-05-16T04:47:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.557900", + "Timestamp": "2024-05-16T04:47:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.003700", + "Timestamp": "2024-05-16T04:46:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.024300", + "Timestamp": "2024-05-16T04:46:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088700", + "Timestamp": "2024-05-16T04:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085000", + "Timestamp": "2024-05-16T04:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028700", + "Timestamp": "2024-05-16T04:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.698000", + "Timestamp": "2024-05-16T04:46:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.280900", + "Timestamp": "2024-05-16T04:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.275900", + "Timestamp": "2024-05-16T04:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150900", + "Timestamp": "2024-05-16T04:46:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.304600", + "Timestamp": "2024-05-16T04:46:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.299600", + "Timestamp": "2024-05-16T04:46:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.174600", + "Timestamp": "2024-05-16T04:46:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.502700", + "Timestamp": "2024-05-16T04:46:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.497700", + "Timestamp": "2024-05-16T04:46:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.372700", + "Timestamp": "2024-05-16T04:46:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.225700", + "Timestamp": "2024-05-16T04:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.220700", + "Timestamp": "2024-05-16T04:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.095700", + "Timestamp": "2024-05-16T04:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.302000", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.116100", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.086100", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.986100", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.285400", + "Timestamp": "2024-05-16T04:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.280400", + "Timestamp": "2024-05-16T04:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.155400", + "Timestamp": "2024-05-16T04:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.842600", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.837600", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.712600", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.333800", + "Timestamp": "2024-05-16T04:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.328800", + "Timestamp": "2024-05-16T04:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.203800", + "Timestamp": "2024-05-16T04:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.038200", + "Timestamp": "2024-05-16T04:33:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.880700", + "Timestamp": "2024-05-16T04:32:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.875700", + "Timestamp": "2024-05-16T04:32:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.750700", + "Timestamp": "2024-05-16T04:32:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.332300", + "Timestamp": "2024-05-16T04:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.327300", + "Timestamp": "2024-05-16T04:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.202300", + "Timestamp": "2024-05-16T04:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.134500", + "Timestamp": "2024-05-16T04:32:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.129500", + "Timestamp": "2024-05-16T04:32:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.004500", + "Timestamp": "2024-05-16T04:32:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.112100", + "Timestamp": "2024-05-16T04:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.963600", + "Timestamp": "2024-05-16T04:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.958600", + "Timestamp": "2024-05-16T04:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.833600", + "Timestamp": "2024-05-16T04:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.812800", + "Timestamp": "2024-05-16T04:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.807800", + "Timestamp": "2024-05-16T04:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.682800", + "Timestamp": "2024-05-16T04:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.847400", + "Timestamp": "2024-05-16T04:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.842400", + "Timestamp": "2024-05-16T04:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.717400", + "Timestamp": "2024-05-16T04:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.962200", + "Timestamp": "2024-05-16T04:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.957200", + "Timestamp": "2024-05-16T04:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.832200", + "Timestamp": "2024-05-16T04:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.639900", + "Timestamp": "2024-05-16T04:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.609900", + "Timestamp": "2024-05-16T04:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.509900", + "Timestamp": "2024-05-16T04:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.814800", + "Timestamp": "2024-05-16T04:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089700", + "Timestamp": "2024-05-16T04:32:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086000", + "Timestamp": "2024-05-16T04:32:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029700", + "Timestamp": "2024-05-16T04:32:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.411000", + "Timestamp": "2024-05-16T04:32:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.625300", + "Timestamp": "2024-05-16T04:32:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.620300", + "Timestamp": "2024-05-16T04:32:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.495300", + "Timestamp": "2024-05-16T04:32:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094400", + "Timestamp": "2024-05-16T04:32:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091400", + "Timestamp": "2024-05-16T04:32:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034400", + "Timestamp": "2024-05-16T04:32:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.785300", + "Timestamp": "2024-05-16T04:32:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.150500", + "Timestamp": "2024-05-16T04:31:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298900", + "Timestamp": "2024-05-16T04:31:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293900", + "Timestamp": "2024-05-16T04:31:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168900", + "Timestamp": "2024-05-16T04:31:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.820800", + "Timestamp": "2024-05-16T04:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.790800", + "Timestamp": "2024-05-16T04:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.690800", + "Timestamp": "2024-05-16T04:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416500", + "Timestamp": "2024-05-16T04:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.456100", + "Timestamp": "2024-05-16T04:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.451100", + "Timestamp": "2024-05-16T04:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.326100", + "Timestamp": "2024-05-16T04:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.177900", + "Timestamp": "2024-05-16T04:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174200", + "Timestamp": "2024-05-16T04:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.117900", + "Timestamp": "2024-05-16T04:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.582500", + "Timestamp": "2024-05-16T04:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.718100", + "Timestamp": "2024-05-16T04:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157100", + "Timestamp": "2024-05-16T04:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153400", + "Timestamp": "2024-05-16T04:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T04:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.392800", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130300", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070300", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.331100", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.326100", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.201100", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.628800", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.716500", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.586800", + "Timestamp": "2024-05-16T04:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.583100", + "Timestamp": "2024-05-16T04:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.526800", + "Timestamp": "2024-05-16T04:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.432600", + "Timestamp": "2024-05-16T04:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090600", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086900", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030600", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.318700", + "Timestamp": "2024-05-16T04:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.313700", + "Timestamp": "2024-05-16T04:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.188700", + "Timestamp": "2024-05-16T04:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.427900", + "Timestamp": "2024-05-16T04:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.422900", + "Timestamp": "2024-05-16T04:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.297900", + "Timestamp": "2024-05-16T04:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.679000", + "Timestamp": "2024-05-16T04:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.365300", + "Timestamp": "2024-05-16T04:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.674000", + "Timestamp": "2024-05-16T04:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.360300", + "Timestamp": "2024-05-16T04:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.549000", + "Timestamp": "2024-05-16T04:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.235300", + "Timestamp": "2024-05-16T04:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.827700", + "Timestamp": "2024-05-16T04:31:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.822700", + "Timestamp": "2024-05-16T04:31:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.697700", + "Timestamp": "2024-05-16T04:31:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T04:18:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.448700", + "Timestamp": "2024-05-16T04:17:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.963800", + "Timestamp": "2024-05-16T04:17:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.958800", + "Timestamp": "2024-05-16T04:17:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.833800", + "Timestamp": "2024-05-16T04:17:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314200", + "Timestamp": "2024-05-16T04:17:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.309200", + "Timestamp": "2024-05-16T04:17:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184200", + "Timestamp": "2024-05-16T04:17:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.839100", + "Timestamp": "2024-05-16T04:17:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229300", + "Timestamp": "2024-05-16T04:17:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.501500", + "Timestamp": "2024-05-16T04:17:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.471500", + "Timestamp": "2024-05-16T04:17:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.371500", + "Timestamp": "2024-05-16T04:17:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.510200", + "Timestamp": "2024-05-16T04:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.505200", + "Timestamp": "2024-05-16T04:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.380200", + "Timestamp": "2024-05-16T04:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.432100", + "Timestamp": "2024-05-16T04:17:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.961200", + "Timestamp": "2024-05-16T04:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.956200", + "Timestamp": "2024-05-16T04:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.831200", + "Timestamp": "2024-05-16T04:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.488400", + "Timestamp": "2024-05-16T04:17:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.483400", + "Timestamp": "2024-05-16T04:17:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.358400", + "Timestamp": "2024-05-16T04:17:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.393900", + "Timestamp": "2024-05-16T04:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.388900", + "Timestamp": "2024-05-16T04:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.263900", + "Timestamp": "2024-05-16T04:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.175000", + "Timestamp": "2024-05-16T04:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.171300", + "Timestamp": "2024-05-16T04:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115000", + "Timestamp": "2024-05-16T04:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.154100", + "Timestamp": "2024-05-16T04:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.149100", + "Timestamp": "2024-05-16T04:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.024100", + "Timestamp": "2024-05-16T04:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.584500", + "Timestamp": "2024-05-16T04:17:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.323600", + "Timestamp": "2024-05-16T04:17:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293600", + "Timestamp": "2024-05-16T04:17:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.193600", + "Timestamp": "2024-05-16T04:17:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.638800", + "Timestamp": "2024-05-16T04:17:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161200", + "Timestamp": "2024-05-16T04:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157200", + "Timestamp": "2024-05-16T04:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T04:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429700", + "Timestamp": "2024-05-16T04:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.367100", + "Timestamp": "2024-05-16T04:17:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.362100", + "Timestamp": "2024-05-16T04:17:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.237100", + "Timestamp": "2024-05-16T04:17:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093900", + "Timestamp": "2024-05-16T04:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090200", + "Timestamp": "2024-05-16T04:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033900", + "Timestamp": "2024-05-16T04:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.304900", + "Timestamp": "2024-05-16T04:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.274900", + "Timestamp": "2024-05-16T04:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.174900", + "Timestamp": "2024-05-16T04:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.782600", + "Timestamp": "2024-05-16T04:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.777600", + "Timestamp": "2024-05-16T04:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.652600", + "Timestamp": "2024-05-16T04:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.003800", + "Timestamp": "2024-05-16T04:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.998800", + "Timestamp": "2024-05-16T04:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.873800", + "Timestamp": "2024-05-16T04:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.665100", + "Timestamp": "2024-05-16T04:17:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098400", + "Timestamp": "2024-05-16T04:17:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094700", + "Timestamp": "2024-05-16T04:17:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038400", + "Timestamp": "2024-05-16T04:17:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.637800", + "Timestamp": "2024-05-16T04:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.632800", + "Timestamp": "2024-05-16T04:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.507800", + "Timestamp": "2024-05-16T04:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.656200", + "Timestamp": "2024-05-16T04:17:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.651200", + "Timestamp": "2024-05-16T04:17:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.526200", + "Timestamp": "2024-05-16T04:17:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.685800", + "Timestamp": "2024-05-16T04:17:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.655800", + "Timestamp": "2024-05-16T04:17:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.555800", + "Timestamp": "2024-05-16T04:17:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.040500", + "Timestamp": "2024-05-16T04:16:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.766000", + "Timestamp": "2024-05-16T04:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.761000", + "Timestamp": "2024-05-16T04:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.636000", + "Timestamp": "2024-05-16T04:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.396200", + "Timestamp": "2024-05-16T04:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.391200", + "Timestamp": "2024-05-16T04:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.266200", + "Timestamp": "2024-05-16T04:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.609100", + "Timestamp": "2024-05-16T04:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.604100", + "Timestamp": "2024-05-16T04:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.479100", + "Timestamp": "2024-05-16T04:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091000", + "Timestamp": "2024-05-16T04:16:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087000", + "Timestamp": "2024-05-16T04:16:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031000", + "Timestamp": "2024-05-16T04:16:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.713700", + "Timestamp": "2024-05-16T04:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096300", + "Timestamp": "2024-05-16T04:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092300", + "Timestamp": "2024-05-16T04:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036300", + "Timestamp": "2024-05-16T04:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.493200", + "Timestamp": "2024-05-16T04:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.488200", + "Timestamp": "2024-05-16T04:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.363200", + "Timestamp": "2024-05-16T04:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.167900", + "Timestamp": "2024-05-16T04:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.162900", + "Timestamp": "2024-05-16T04:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.037900", + "Timestamp": "2024-05-16T04:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.540500", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.535500", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.410500", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044800", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083300", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079600", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023300", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324300", + "Timestamp": "2024-05-16T04:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319300", + "Timestamp": "2024-05-16T04:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194300", + "Timestamp": "2024-05-16T04:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.303000", + "Timestamp": "2024-05-16T04:02:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.298000", + "Timestamp": "2024-05-16T04:02:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.173000", + "Timestamp": "2024-05-16T04:02:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.304600", + "Timestamp": "2024-05-16T04:02:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.981400", + "Timestamp": "2024-05-16T04:02:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.252300", + "Timestamp": "2024-05-16T04:02:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.247300", + "Timestamp": "2024-05-16T04:02:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122300", + "Timestamp": "2024-05-16T04:02:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.240100", + "Timestamp": "2024-05-16T04:02:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.190000", + "Timestamp": "2024-05-16T04:02:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.185000", + "Timestamp": "2024-05-16T04:02:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.060000", + "Timestamp": "2024-05-16T04:02:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.693300", + "Timestamp": "2024-05-16T04:02:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.621700", + "Timestamp": "2024-05-16T04:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.616700", + "Timestamp": "2024-05-16T04:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.491700", + "Timestamp": "2024-05-16T04:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.580000", + "Timestamp": "2024-05-16T04:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.575000", + "Timestamp": "2024-05-16T04:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.450000", + "Timestamp": "2024-05-16T04:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.662000", + "Timestamp": "2024-05-16T04:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.452900", + "Timestamp": "2024-05-16T04:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.447900", + "Timestamp": "2024-05-16T04:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.322900", + "Timestamp": "2024-05-16T04:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.784500", + "Timestamp": "2024-05-16T04:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.779500", + "Timestamp": "2024-05-16T04:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.654500", + "Timestamp": "2024-05-16T04:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.234500", + "Timestamp": "2024-05-16T04:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.229500", + "Timestamp": "2024-05-16T04:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.104500", + "Timestamp": "2024-05-16T04:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.848700", + "Timestamp": "2024-05-16T04:02:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.728800", + "Timestamp": "2024-05-16T04:02:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.723800", + "Timestamp": "2024-05-16T04:02:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.598800", + "Timestamp": "2024-05-16T04:02:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.897300", + "Timestamp": "2024-05-16T04:02:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.892300", + "Timestamp": "2024-05-16T04:02:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.767300", + "Timestamp": "2024-05-16T04:02:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.940000", + "Timestamp": "2024-05-16T04:02:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.910000", + "Timestamp": "2024-05-16T04:02:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.810000", + "Timestamp": "2024-05-16T04:02:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.430500", + "Timestamp": "2024-05-16T04:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.425500", + "Timestamp": "2024-05-16T04:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.300500", + "Timestamp": "2024-05-16T04:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.977300", + "Timestamp": "2024-05-16T04:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.972300", + "Timestamp": "2024-05-16T04:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.847300", + "Timestamp": "2024-05-16T04:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068200", + "Timestamp": "2024-05-16T04:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039200", + "Timestamp": "2024-05-16T04:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008200", + "Timestamp": "2024-05-16T04:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115500", + "Timestamp": "2024-05-16T04:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111800", + "Timestamp": "2024-05-16T04:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055500", + "Timestamp": "2024-05-16T04:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.341400", + "Timestamp": "2024-05-16T04:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099800", + "Timestamp": "2024-05-16T04:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139800", + "Timestamp": "2024-05-16T04:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039800", + "Timestamp": "2024-05-16T04:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.070800", + "Timestamp": "2024-05-16T04:02:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.338700", + "Timestamp": "2024-05-16T04:02:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.333700", + "Timestamp": "2024-05-16T04:02:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.208700", + "Timestamp": "2024-05-16T04:02:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.386600", + "Timestamp": "2024-05-16T04:02:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.381600", + "Timestamp": "2024-05-16T04:02:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.256600", + "Timestamp": "2024-05-16T04:02:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.497200", + "Timestamp": "2024-05-16T04:02:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.492200", + "Timestamp": "2024-05-16T04:02:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.367200", + "Timestamp": "2024-05-16T04:02:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166100", + "Timestamp": "2024-05-16T04:02:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162400", + "Timestamp": "2024-05-16T04:02:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-16T04:02:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.713500", + "Timestamp": "2024-05-16T04:02:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.708500", + "Timestamp": "2024-05-16T04:02:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.583500", + "Timestamp": "2024-05-16T04:02:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.953300", + "Timestamp": "2024-05-16T04:01:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.948300", + "Timestamp": "2024-05-16T04:01:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.823300", + "Timestamp": "2024-05-16T04:01:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.407200", + "Timestamp": "2024-05-16T04:01:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101000", + "Timestamp": "2024-05-16T04:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097000", + "Timestamp": "2024-05-16T04:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041000", + "Timestamp": "2024-05-16T04:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.765500", + "Timestamp": "2024-05-16T04:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.342800", + "Timestamp": "2024-05-16T04:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.337800", + "Timestamp": "2024-05-16T04:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212800", + "Timestamp": "2024-05-16T04:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211400", + "Timestamp": "2024-05-16T04:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.769700", + "Timestamp": "2024-05-16T04:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.739700", + "Timestamp": "2024-05-16T04:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.639700", + "Timestamp": "2024-05-16T04:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.639300", + "Timestamp": "2024-05-16T04:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.634300", + "Timestamp": "2024-05-16T04:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.509300", + "Timestamp": "2024-05-16T04:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124100", + "Timestamp": "2024-05-16T04:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120100", + "Timestamp": "2024-05-16T04:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064100", + "Timestamp": "2024-05-16T04:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440000", + "Timestamp": "2024-05-16T03:48:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.805700", + "Timestamp": "2024-05-16T03:47:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.376800", + "Timestamp": "2024-05-16T03:47:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.371800", + "Timestamp": "2024-05-16T03:47:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.246800", + "Timestamp": "2024-05-16T03:47:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.458200", + "Timestamp": "2024-05-16T03:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.453200", + "Timestamp": "2024-05-16T03:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.328200", + "Timestamp": "2024-05-16T03:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.950500", + "Timestamp": "2024-05-16T03:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.920500", + "Timestamp": "2024-05-16T03:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.820500", + "Timestamp": "2024-05-16T03:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.632300", + "Timestamp": "2024-05-16T03:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.569900", + "Timestamp": "2024-05-16T03:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.566200", + "Timestamp": "2024-05-16T03:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.509900", + "Timestamp": "2024-05-16T03:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.260600", + "Timestamp": "2024-05-16T03:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.255600", + "Timestamp": "2024-05-16T03:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.130600", + "Timestamp": "2024-05-16T03:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.649800", + "Timestamp": "2024-05-16T03:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.644800", + "Timestamp": "2024-05-16T03:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.519800", + "Timestamp": "2024-05-16T03:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.572600", + "Timestamp": "2024-05-16T03:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.567600", + "Timestamp": "2024-05-16T03:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.442600", + "Timestamp": "2024-05-16T03:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.545300", + "Timestamp": "2024-05-16T03:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.879100", + "Timestamp": "2024-05-16T03:47:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.849100", + "Timestamp": "2024-05-16T03:47:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.749100", + "Timestamp": "2024-05-16T03:47:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.683100", + "Timestamp": "2024-05-16T03:47:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.653400", + "Timestamp": "2024-05-16T03:47:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100100", + "Timestamp": "2024-05-16T03:46:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096100", + "Timestamp": "2024-05-16T03:46:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040100", + "Timestamp": "2024-05-16T03:46:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.629200", + "Timestamp": "2024-05-16T03:46:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.267200", + "Timestamp": "2024-05-16T03:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.237200", + "Timestamp": "2024-05-16T03:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.137200", + "Timestamp": "2024-05-16T03:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.626600", + "Timestamp": "2024-05-16T03:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.621600", + "Timestamp": "2024-05-16T03:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.496600", + "Timestamp": "2024-05-16T03:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.475100", + "Timestamp": "2024-05-16T03:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.470100", + "Timestamp": "2024-05-16T03:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.345100", + "Timestamp": "2024-05-16T03:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.284600", + "Timestamp": "2024-05-16T03:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.254600", + "Timestamp": "2024-05-16T03:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.154600", + "Timestamp": "2024-05-16T03:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.455700", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T03:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T03:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049700", + "Timestamp": "2024-05-16T03:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.149300", + "Timestamp": "2024-05-16T03:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.310200", + "Timestamp": "2024-05-16T03:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.305200", + "Timestamp": "2024-05-16T03:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180200", + "Timestamp": "2024-05-16T03:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.617700", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.587700", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.487700", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.422100", + "Timestamp": "2024-05-16T03:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.417100", + "Timestamp": "2024-05-16T03:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.292100", + "Timestamp": "2024-05-16T03:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.786200", + "Timestamp": "2024-05-16T03:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.781200", + "Timestamp": "2024-05-16T03:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.656200", + "Timestamp": "2024-05-16T03:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093200", + "Timestamp": "2024-05-16T03:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089500", + "Timestamp": "2024-05-16T03:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033200", + "Timestamp": "2024-05-16T03:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-16T03:43:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.406500", + "Timestamp": "2024-05-16T03:37:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062300", + "Timestamp": "2024-05-16T03:36:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002300", + "Timestamp": "2024-05-16T03:36:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002300", + "Timestamp": "2024-05-16T03:36:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.974700", + "Timestamp": "2024-05-16T03:32:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.969700", + "Timestamp": "2024-05-16T03:32:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.844700", + "Timestamp": "2024-05-16T03:32:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.835600", + "Timestamp": "2024-05-16T03:32:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.559200", + "Timestamp": "2024-05-16T03:32:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.554200", + "Timestamp": "2024-05-16T03:32:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.429200", + "Timestamp": "2024-05-16T03:32:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.370800", + "Timestamp": "2024-05-16T03:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.365800", + "Timestamp": "2024-05-16T03:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.240800", + "Timestamp": "2024-05-16T03:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.317600", + "Timestamp": "2024-05-16T03:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.312600", + "Timestamp": "2024-05-16T03:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.187600", + "Timestamp": "2024-05-16T03:32:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.373400", + "Timestamp": "2024-05-16T03:32:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.368400", + "Timestamp": "2024-05-16T03:32:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.243400", + "Timestamp": "2024-05-16T03:32:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.420000", + "Timestamp": "2024-05-16T03:32:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.415000", + "Timestamp": "2024-05-16T03:32:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.290000", + "Timestamp": "2024-05-16T03:32:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.154800", + "Timestamp": "2024-05-16T03:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.476300", + "Timestamp": "2024-05-16T03:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.435900", + "Timestamp": "2024-05-16T03:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.430900", + "Timestamp": "2024-05-16T03:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.305900", + "Timestamp": "2024-05-16T03:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439400", + "Timestamp": "2024-05-16T03:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.253800", + "Timestamp": "2024-05-16T03:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.248800", + "Timestamp": "2024-05-16T03:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123800", + "Timestamp": "2024-05-16T03:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.612000", + "Timestamp": "2024-05-16T03:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.288400", + "Timestamp": "2024-05-16T03:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.279500", + "Timestamp": "2024-05-16T03:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.283400", + "Timestamp": "2024-05-16T03:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.274500", + "Timestamp": "2024-05-16T03:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158400", + "Timestamp": "2024-05-16T03:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149500", + "Timestamp": "2024-05-16T03:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.668500", + "Timestamp": "2024-05-16T03:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104100", + "Timestamp": "2024-05-16T03:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100400", + "Timestamp": "2024-05-16T03:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044100", + "Timestamp": "2024-05-16T03:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.964300", + "Timestamp": "2024-05-16T03:32:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.959300", + "Timestamp": "2024-05-16T03:32:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.834300", + "Timestamp": "2024-05-16T03:32:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.572400", + "Timestamp": "2024-05-16T03:32:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.567400", + "Timestamp": "2024-05-16T03:32:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.442400", + "Timestamp": "2024-05-16T03:32:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.670700", + "Timestamp": "2024-05-16T03:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.665700", + "Timestamp": "2024-05-16T03:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.540700", + "Timestamp": "2024-05-16T03:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.993600", + "Timestamp": "2024-05-16T03:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.963600", + "Timestamp": "2024-05-16T03:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.863600", + "Timestamp": "2024-05-16T03:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.921100", + "Timestamp": "2024-05-16T03:32:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.257600", + "Timestamp": "2024-05-16T03:32:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.227600", + "Timestamp": "2024-05-16T03:32:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.127600", + "Timestamp": "2024-05-16T03:32:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.069000", + "Timestamp": "2024-05-16T03:32:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.039000", + "Timestamp": "2024-05-16T03:32:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.939000", + "Timestamp": "2024-05-16T03:32:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.454700", + "Timestamp": "2024-05-16T03:31:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.449700", + "Timestamp": "2024-05-16T03:31:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.324700", + "Timestamp": "2024-05-16T03:31:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.881100", + "Timestamp": "2024-05-16T03:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.305800", + "Timestamp": "2024-05-16T03:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.160200", + "Timestamp": "2024-05-16T03:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.155200", + "Timestamp": "2024-05-16T03:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.030200", + "Timestamp": "2024-05-16T03:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.488400", + "Timestamp": "2024-05-16T03:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.458400", + "Timestamp": "2024-05-16T03:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.358400", + "Timestamp": "2024-05-16T03:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.084800", + "Timestamp": "2024-05-16T03:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.079800", + "Timestamp": "2024-05-16T03:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.954800", + "Timestamp": "2024-05-16T03:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107900", + "Timestamp": "2024-05-16T03:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T03:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047900", + "Timestamp": "2024-05-16T03:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088800", + "Timestamp": "2024-05-16T03:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085100", + "Timestamp": "2024-05-16T03:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028800", + "Timestamp": "2024-05-16T03:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209700", + "Timestamp": "2024-05-16T03:25:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065700", + "Timestamp": "2024-05-16T03:18:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037000", + "Timestamp": "2024-05-16T03:18:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005700", + "Timestamp": "2024-05-16T03:18:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.847500", + "Timestamp": "2024-05-16T03:18:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.848100", + "Timestamp": "2024-05-16T03:17:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155900", + "Timestamp": "2024-05-16T03:17:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152200", + "Timestamp": "2024-05-16T03:17:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-16T03:17:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T03:17:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T03:17:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052100", + "Timestamp": "2024-05-16T03:17:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094100", + "Timestamp": "2024-05-16T03:17:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086200", + "Timestamp": "2024-05-16T03:17:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090400", + "Timestamp": "2024-05-16T03:17:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082500", + "Timestamp": "2024-05-16T03:17:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034100", + "Timestamp": "2024-05-16T03:17:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026200", + "Timestamp": "2024-05-16T03:17:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.031800", + "Timestamp": "2024-05-16T03:17:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.001800", + "Timestamp": "2024-05-16T03:17:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.901800", + "Timestamp": "2024-05-16T03:17:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.540900", + "Timestamp": "2024-05-16T03:17:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.651000", + "Timestamp": "2024-05-16T03:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.646000", + "Timestamp": "2024-05-16T03:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.521000", + "Timestamp": "2024-05-16T03:16:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.287100", + "Timestamp": "2024-05-16T03:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.282100", + "Timestamp": "2024-05-16T03:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157100", + "Timestamp": "2024-05-16T03:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417000", + "Timestamp": "2024-05-16T03:16:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.846600", + "Timestamp": "2024-05-16T03:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.414700", + "Timestamp": "2024-05-16T03:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g5g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134600", + "Timestamp": "2024-05-16T03:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g5g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130900", + "Timestamp": "2024-05-16T03:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g5g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074600", + "Timestamp": "2024-05-16T03:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.214400", + "Timestamp": "2024-05-16T03:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.210400", + "Timestamp": "2024-05-16T03:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.154400", + "Timestamp": "2024-05-16T03:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153700", + "Timestamp": "2024-05-16T03:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149700", + "Timestamp": "2024-05-16T03:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093700", + "Timestamp": "2024-05-16T03:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098000", + "Timestamp": "2024-05-16T03:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094000", + "Timestamp": "2024-05-16T03:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038000", + "Timestamp": "2024-05-16T03:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.416800", + "Timestamp": "2024-05-16T03:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.656700", + "Timestamp": "2024-05-16T03:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122300", + "Timestamp": "2024-05-16T03:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118600", + "Timestamp": "2024-05-16T03:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062300", + "Timestamp": "2024-05-16T03:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.710000", + "Timestamp": "2024-05-16T03:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.281200", + "Timestamp": "2024-05-16T03:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276200", + "Timestamp": "2024-05-16T03:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.151200", + "Timestamp": "2024-05-16T03:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T03:06:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T03:06:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T03:06:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.758200", + "Timestamp": "2024-05-16T03:02:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224000", + "Timestamp": "2024-05-16T03:02:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.304100", + "Timestamp": "2024-05-16T03:02:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.274100", + "Timestamp": "2024-05-16T03:02:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.174100", + "Timestamp": "2024-05-16T03:02:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.734300", + "Timestamp": "2024-05-16T03:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.729300", + "Timestamp": "2024-05-16T03:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.604300", + "Timestamp": "2024-05-16T03:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.039200", + "Timestamp": "2024-05-16T03:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158700", + "Timestamp": "2024-05-16T03:02:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156800", + "Timestamp": "2024-05-16T03:02:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154700", + "Timestamp": "2024-05-16T03:02:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152800", + "Timestamp": "2024-05-16T03:02:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098700", + "Timestamp": "2024-05-16T03:02:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096800", + "Timestamp": "2024-05-16T03:02:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.836300", + "Timestamp": "2024-05-16T03:02:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354100", + "Timestamp": "2024-05-16T03:02:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324100", + "Timestamp": "2024-05-16T03:02:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224100", + "Timestamp": "2024-05-16T03:02:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131200", + "Timestamp": "2024-05-16T03:02:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127500", + "Timestamp": "2024-05-16T03:02:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071200", + "Timestamp": "2024-05-16T03:02:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.901600", + "Timestamp": "2024-05-16T03:02:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.468400", + "Timestamp": "2024-05-16T03:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.483500", + "Timestamp": "2024-05-16T03:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209400", + "Timestamp": "2024-05-16T03:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212400", + "Timestamp": "2024-05-16T03:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131300", + "Timestamp": "2024-05-16T03:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127300", + "Timestamp": "2024-05-16T03:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071300", + "Timestamp": "2024-05-16T03:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.884600", + "Timestamp": "2024-05-16T03:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T03:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095500", + "Timestamp": "2024-05-16T03:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039200", + "Timestamp": "2024-05-16T03:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114200", + "Timestamp": "2024-05-16T02:48:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T02:48:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054200", + "Timestamp": "2024-05-16T02:48:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.402500", + "Timestamp": "2024-05-16T02:47:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.428900", + "Timestamp": "2024-05-16T02:47:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108300", + "Timestamp": "2024-05-16T02:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148300", + "Timestamp": "2024-05-16T02:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048300", + "Timestamp": "2024-05-16T02:47:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.332700", + "Timestamp": "2024-05-16T02:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302700", + "Timestamp": "2024-05-16T02:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.202700", + "Timestamp": "2024-05-16T02:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068400", + "Timestamp": "2024-05-16T02:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.064700", + "Timestamp": "2024-05-16T02:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008400", + "Timestamp": "2024-05-16T02:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.239100", + "Timestamp": "2024-05-16T02:47:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.881700", + "Timestamp": "2024-05-16T02:47:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091200", + "Timestamp": "2024-05-16T02:47:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087500", + "Timestamp": "2024-05-16T02:47:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031200", + "Timestamp": "2024-05-16T02:47:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.449700", + "Timestamp": "2024-05-16T02:47:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-16T02:47:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084100", + "Timestamp": "2024-05-16T02:47:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028100", + "Timestamp": "2024-05-16T02:47:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.826300", + "Timestamp": "2024-05-16T02:47:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.821300", + "Timestamp": "2024-05-16T02:47:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.696300", + "Timestamp": "2024-05-16T02:47:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.848400", + "Timestamp": "2024-05-16T02:46:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.733200", + "Timestamp": "2024-05-16T02:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.728200", + "Timestamp": "2024-05-16T02:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.603200", + "Timestamp": "2024-05-16T02:46:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.687400", + "Timestamp": "2024-05-16T02:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.860000", + "Timestamp": "2024-05-16T02:46:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.727300", + "Timestamp": "2024-05-16T02:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207800", + "Timestamp": "2024-05-16T02:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.348200", + "Timestamp": "2024-05-16T02:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.343200", + "Timestamp": "2024-05-16T02:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.218200", + "Timestamp": "2024-05-16T02:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.838000", + "Timestamp": "2024-05-16T02:33:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152900", + "Timestamp": "2024-05-16T02:32:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149200", + "Timestamp": "2024-05-16T02:32:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092900", + "Timestamp": "2024-05-16T02:32:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.716000", + "Timestamp": "2024-05-16T02:32:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.023600", + "Timestamp": "2024-05-16T02:32:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.626300", + "Timestamp": "2024-05-16T02:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087600", + "Timestamp": "2024-05-16T02:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083900", + "Timestamp": "2024-05-16T02:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027600", + "Timestamp": "2024-05-16T02:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219900", + "Timestamp": "2024-05-16T02:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096100", + "Timestamp": "2024-05-16T02:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092100", + "Timestamp": "2024-05-16T02:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036100", + "Timestamp": "2024-05-16T02:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.853800", + "Timestamp": "2024-05-16T02:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.848800", + "Timestamp": "2024-05-16T02:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.723800", + "Timestamp": "2024-05-16T02:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.434100", + "Timestamp": "2024-05-16T02:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.429100", + "Timestamp": "2024-05-16T02:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.304100", + "Timestamp": "2024-05-16T02:17:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160400", + "Timestamp": "2024-05-16T02:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.200400", + "Timestamp": "2024-05-16T02:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100400", + "Timestamp": "2024-05-16T02:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098500", + "Timestamp": "2024-05-16T02:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138500", + "Timestamp": "2024-05-16T02:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038500", + "Timestamp": "2024-05-16T02:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082100", + "Timestamp": "2024-05-16T02:17:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078400", + "Timestamp": "2024-05-16T02:17:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022100", + "Timestamp": "2024-05-16T02:17:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.811200", + "Timestamp": "2024-05-16T02:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.415500", + "Timestamp": "2024-05-16T02:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.419600", + "Timestamp": "2024-05-16T02:17:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.253100", + "Timestamp": "2024-05-16T02:17:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.248100", + "Timestamp": "2024-05-16T02:17:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123100", + "Timestamp": "2024-05-16T02:17:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.834400", + "Timestamp": "2024-05-16T02:17:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.614200", + "Timestamp": "2024-05-16T02:17:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.584200", + "Timestamp": "2024-05-16T02:17:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.484200", + "Timestamp": "2024-05-16T02:17:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.998600", + "Timestamp": "2024-05-16T02:16:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.413200", + "Timestamp": "2024-05-16T02:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.415400", + "Timestamp": "2024-05-16T02:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.824100", + "Timestamp": "2024-05-16T02:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.877300", + "Timestamp": "2024-05-16T02:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.070700", + "Timestamp": "2024-05-16T02:16:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207700", + "Timestamp": "2024-05-16T02:13:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010500", + "Timestamp": "2024-05-16T02:11:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010500", + "Timestamp": "2024-05-16T02:11:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010500", + "Timestamp": "2024-05-16T02:11:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010500", + "Timestamp": "2024-05-16T02:11:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T02:02:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-16T02:02:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041200", + "Timestamp": "2024-05-16T02:02:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118000", + "Timestamp": "2024-05-16T02:02:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114000", + "Timestamp": "2024-05-16T02:02:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058000", + "Timestamp": "2024-05-16T02:02:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069500", + "Timestamp": "2024-05-16T02:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065800", + "Timestamp": "2024-05-16T02:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009500", + "Timestamp": "2024-05-16T02:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.655500", + "Timestamp": "2024-05-16T02:02:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095600", + "Timestamp": "2024-05-16T02:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091900", + "Timestamp": "2024-05-16T02:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035600", + "Timestamp": "2024-05-16T02:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092100", + "Timestamp": "2024-05-16T02:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088400", + "Timestamp": "2024-05-16T02:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032100", + "Timestamp": "2024-05-16T02:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T02:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T02:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048100", + "Timestamp": "2024-05-16T02:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439700", + "Timestamp": "2024-05-16T01:48:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.483500", + "Timestamp": "2024-05-16T01:47:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.478500", + "Timestamp": "2024-05-16T01:47:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.353500", + "Timestamp": "2024-05-16T01:47:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.890000", + "Timestamp": "2024-05-16T01:47:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.520100", + "Timestamp": "2024-05-16T01:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.203600", + "Timestamp": "2024-05-16T01:47:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121800", + "Timestamp": "2024-05-16T01:47:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118100", + "Timestamp": "2024-05-16T01:47:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061800", + "Timestamp": "2024-05-16T01:47:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.690100", + "Timestamp": "2024-05-16T01:47:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.685100", + "Timestamp": "2024-05-16T01:47:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.560100", + "Timestamp": "2024-05-16T01:47:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.835100", + "Timestamp": "2024-05-16T01:47:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.830100", + "Timestamp": "2024-05-16T01:47:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.705100", + "Timestamp": "2024-05-16T01:47:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140300", + "Timestamp": "2024-05-16T01:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136600", + "Timestamp": "2024-05-16T01:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080300", + "Timestamp": "2024-05-16T01:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074100", + "Timestamp": "2024-05-16T01:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114100", + "Timestamp": "2024-05-16T01:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014100", + "Timestamp": "2024-05-16T01:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.459300", + "Timestamp": "2024-05-16T01:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.031300", + "Timestamp": "2024-05-16T01:44:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.031200", + "Timestamp": "2024-05-16T01:44:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.031200", + "Timestamp": "2024-05-16T01:44:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.026300", + "Timestamp": "2024-05-16T01:44:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.026200", + "Timestamp": "2024-05-16T01:44:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.026200", + "Timestamp": "2024-05-16T01:44:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.901300", + "Timestamp": "2024-05-16T01:44:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.901200", + "Timestamp": "2024-05-16T01:44:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.901200", + "Timestamp": "2024-05-16T01:44:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.317200", + "Timestamp": "2024-05-16T01:44:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.317200", + "Timestamp": "2024-05-16T01:44:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.317200", + "Timestamp": "2024-05-16T01:44:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.100600", + "Timestamp": "2024-05-16T01:37:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106200", + "Timestamp": "2024-05-16T01:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.855300", + "Timestamp": "2024-05-16T01:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.667600", + "Timestamp": "2024-05-16T01:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.637600", + "Timestamp": "2024-05-16T01:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.537600", + "Timestamp": "2024-05-16T01:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117400", + "Timestamp": "2024-05-16T01:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113400", + "Timestamp": "2024-05-16T01:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057400", + "Timestamp": "2024-05-16T01:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.848000", + "Timestamp": "2024-05-16T01:32:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.699600", + "Timestamp": "2024-05-16T01:32:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.694600", + "Timestamp": "2024-05-16T01:32:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.569600", + "Timestamp": "2024-05-16T01:32:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211300", + "Timestamp": "2024-05-16T01:31:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062600", + "Timestamp": "2024-05-16T01:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-16T01:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-16T01:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.844900", + "Timestamp": "2024-05-16T01:24:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.837300", + "Timestamp": "2024-05-16T01:17:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099400", + "Timestamp": "2024-05-16T01:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095400", + "Timestamp": "2024-05-16T01:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039400", + "Timestamp": "2024-05-16T01:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.856800", + "Timestamp": "2024-05-16T01:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.239200", + "Timestamp": "2024-05-16T01:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.235200", + "Timestamp": "2024-05-16T01:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.179200", + "Timestamp": "2024-05-16T01:17:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.522100", + "Timestamp": "2024-05-16T01:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.517100", + "Timestamp": "2024-05-16T01:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.392100", + "Timestamp": "2024-05-16T01:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.237300", + "Timestamp": "2024-05-16T01:17:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.990600", + "Timestamp": "2024-05-16T01:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.492800", + "Timestamp": "2024-05-16T01:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.812700", + "Timestamp": "2024-05-16T01:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.023100", + "Timestamp": "2024-05-16T01:06:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.023100", + "Timestamp": "2024-05-16T01:06:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.094200", + "Timestamp": "2024-05-16T01:02:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090000", + "Timestamp": "2024-05-16T01:02:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086300", + "Timestamp": "2024-05-16T01:02:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030000", + "Timestamp": "2024-05-16T01:02:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138600", + "Timestamp": "2024-05-16T01:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134900", + "Timestamp": "2024-05-16T01:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078600", + "Timestamp": "2024-05-16T01:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T01:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121700", + "Timestamp": "2024-05-16T01:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065400", + "Timestamp": "2024-05-16T01:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.511900", + "Timestamp": "2024-05-16T01:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.377200", + "Timestamp": "2024-05-16T01:02:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.347200", + "Timestamp": "2024-05-16T01:02:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.247200", + "Timestamp": "2024-05-16T01:02:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.101400", + "Timestamp": "2024-05-16T01:02:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071400", + "Timestamp": "2024-05-16T01:02:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042400", + "Timestamp": "2024-05-16T01:02:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011400", + "Timestamp": "2024-05-16T01:02:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.460300", + "Timestamp": "2024-05-16T01:01:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.829500", + "Timestamp": "2024-05-16T01:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132500", + "Timestamp": "2024-05-16T01:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128500", + "Timestamp": "2024-05-16T01:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072500", + "Timestamp": "2024-05-16T01:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.064100", + "Timestamp": "2024-05-16T00:59:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.064100", + "Timestamp": "2024-05-16T00:59:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.911100", + "Timestamp": "2024-05-16T00:56:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.097100", + "Timestamp": "2024-05-16T00:56:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.067100", + "Timestamp": "2024-05-16T00:56:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967100", + "Timestamp": "2024-05-16T00:56:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.412200", + "Timestamp": "2024-05-16T00:49:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-16T00:48:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-16T00:48:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040200", + "Timestamp": "2024-05-16T00:48:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067000", + "Timestamp": "2024-05-16T00:47:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.063300", + "Timestamp": "2024-05-16T00:47:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007000", + "Timestamp": "2024-05-16T00:47:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-16T00:47:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417500", + "Timestamp": "2024-05-16T00:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.659900", + "Timestamp": "2024-05-16T00:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.654900", + "Timestamp": "2024-05-16T00:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.529900", + "Timestamp": "2024-05-16T00:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T00:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.251100", + "Timestamp": "2024-05-16T00:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.247400", + "Timestamp": "2024-05-16T00:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.191100", + "Timestamp": "2024-05-16T00:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.610800", + "Timestamp": "2024-05-16T00:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.891800", + "Timestamp": "2024-05-16T00:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.317300", + "Timestamp": "2024-05-16T00:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.287300", + "Timestamp": "2024-05-16T00:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.187300", + "Timestamp": "2024-05-16T00:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.257400", + "Timestamp": "2024-05-16T00:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.227400", + "Timestamp": "2024-05-16T00:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127400", + "Timestamp": "2024-05-16T00:47:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081400", + "Timestamp": "2024-05-16T00:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077700", + "Timestamp": "2024-05-16T00:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021400", + "Timestamp": "2024-05-16T00:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.777700", + "Timestamp": "2024-05-16T00:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.831400", + "Timestamp": "2024-05-16T00:47:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439800", + "Timestamp": "2024-05-16T00:47:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440700", + "Timestamp": "2024-05-16T00:47:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226600", + "Timestamp": "2024-05-16T00:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.797900", + "Timestamp": "2024-05-16T00:46:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214500", + "Timestamp": "2024-05-16T00:41:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T00:36:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439700", + "Timestamp": "2024-05-16T00:33:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.857800", + "Timestamp": "2024-05-16T00:32:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135500", + "Timestamp": "2024-05-16T00:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131800", + "Timestamp": "2024-05-16T00:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075500", + "Timestamp": "2024-05-16T00:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.462100", + "Timestamp": "2024-05-16T00:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.457100", + "Timestamp": "2024-05-16T00:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.332100", + "Timestamp": "2024-05-16T00:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101400", + "Timestamp": "2024-05-16T00:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097700", + "Timestamp": "2024-05-16T00:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041400", + "Timestamp": "2024-05-16T00:32:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090500", + "Timestamp": "2024-05-16T00:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086800", + "Timestamp": "2024-05-16T00:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030500", + "Timestamp": "2024-05-16T00:32:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.607300", + "Timestamp": "2024-05-16T00:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.602300", + "Timestamp": "2024-05-16T00:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.477300", + "Timestamp": "2024-05-16T00:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.044900", + "Timestamp": "2024-05-16T00:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114000", + "Timestamp": "2024-05-16T00:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T00:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054000", + "Timestamp": "2024-05-16T00:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063200", + "Timestamp": "2024-05-16T00:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003200", + "Timestamp": "2024-05-16T00:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003200", + "Timestamp": "2024-05-16T00:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.150200", + "Timestamp": "2024-05-16T00:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.882400", + "Timestamp": "2024-05-16T00:24:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.882400", + "Timestamp": "2024-05-16T00:24:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.882400", + "Timestamp": "2024-05-16T00:24:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.882400", + "Timestamp": "2024-05-16T00:24:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T00:24:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T00:24:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T00:24:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T00:24:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.829000", + "Timestamp": "2024-05-16T00:20:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.857800", + "Timestamp": "2024-05-16T00:17:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072000", + "Timestamp": "2024-05-16T00:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043000", + "Timestamp": "2024-05-16T00:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012000", + "Timestamp": "2024-05-16T00:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.527100", + "Timestamp": "2024-05-16T00:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070200", + "Timestamp": "2024-05-16T00:17:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066500", + "Timestamp": "2024-05-16T00:17:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010200", + "Timestamp": "2024-05-16T00:17:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T00:17:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.652900", + "Timestamp": "2024-05-16T00:17:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.315200", + "Timestamp": "2024-05-16T00:17:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.310200", + "Timestamp": "2024-05-16T00:17:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.185200", + "Timestamp": "2024-05-16T00:17:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.439100", + "Timestamp": "2024-05-16T00:17:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096700", + "Timestamp": "2024-05-16T00:17:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136700", + "Timestamp": "2024-05-16T00:17:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036700", + "Timestamp": "2024-05-16T00:17:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.194000", + "Timestamp": "2024-05-16T00:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117600", + "Timestamp": "2024-05-16T00:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157600", + "Timestamp": "2024-05-16T00:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057600", + "Timestamp": "2024-05-16T00:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096900", + "Timestamp": "2024-05-16T00:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093200", + "Timestamp": "2024-05-16T00:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036900", + "Timestamp": "2024-05-16T00:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104700", + "Timestamp": "2024-05-16T00:09:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104700", + "Timestamp": "2024-05-16T00:09:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102700", + "Timestamp": "2024-05-16T00:03:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432500", + "Timestamp": "2024-05-16T00:02:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.205400", + "Timestamp": "2024-05-16T00:02:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.876900", + "Timestamp": "2024-05-16T00:02:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-16T00:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107800", + "Timestamp": "2024-05-16T00:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051500", + "Timestamp": "2024-05-16T00:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.402900", + "Timestamp": "2024-05-16T00:02:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.392900", + "Timestamp": "2024-05-16T00:02:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.362900", + "Timestamp": "2024-05-16T00:02:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.262900", + "Timestamp": "2024-05-16T00:02:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.764000", + "Timestamp": "2024-05-16T00:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.617200", + "Timestamp": "2024-05-16T00:00:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.612200", + "Timestamp": "2024-05-16T00:00:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.487200", + "Timestamp": "2024-05-16T00:00:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.695200", + "Timestamp": "2024-05-16T00:00:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.097100", + "Timestamp": "2024-05-15T23:58:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.092100", + "Timestamp": "2024-05-15T23:58:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967100", + "Timestamp": "2024-05-15T23:58:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.911100", + "Timestamp": "2024-05-15T23:57:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.911100", + "Timestamp": "2024-05-15T23:57:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.911100", + "Timestamp": "2024-05-15T23:57:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103900", + "Timestamp": "2024-05-15T23:50:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069800", + "Timestamp": "2024-05-15T23:48:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040800", + "Timestamp": "2024-05-15T23:48:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009800", + "Timestamp": "2024-05-15T23:48:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.356000", + "Timestamp": "2024-05-15T23:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.326000", + "Timestamp": "2024-05-15T23:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.226000", + "Timestamp": "2024-05-15T23:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.665100", + "Timestamp": "2024-05-15T23:47:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-15T23:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093800", + "Timestamp": "2024-05-15T23:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037500", + "Timestamp": "2024-05-15T23:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.455800", + "Timestamp": "2024-05-15T23:41:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.450800", + "Timestamp": "2024-05-15T23:41:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.325800", + "Timestamp": "2024-05-15T23:41:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.476400", + "Timestamp": "2024-05-15T23:41:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.474800", + "Timestamp": "2024-05-15T23:41:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.474500", + "Timestamp": "2024-05-15T23:41:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.038500", + "Timestamp": "2024-05-15T23:33:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.728400", + "Timestamp": "2024-05-15T23:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093600", + "Timestamp": "2024-05-15T23:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089900", + "Timestamp": "2024-05-15T23:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033600", + "Timestamp": "2024-05-15T23:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.404300", + "Timestamp": "2024-05-15T23:32:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.374300", + "Timestamp": "2024-05-15T23:32:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.274300", + "Timestamp": "2024-05-15T23:32:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.433000", + "Timestamp": "2024-05-15T23:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.428000", + "Timestamp": "2024-05-15T23:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.303000", + "Timestamp": "2024-05-15T23:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.268200", + "Timestamp": "2024-05-15T23:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.263200", + "Timestamp": "2024-05-15T23:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.138200", + "Timestamp": "2024-05-15T23:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063600", + "Timestamp": "2024-05-15T23:24:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003600", + "Timestamp": "2024-05-15T23:24:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003600", + "Timestamp": "2024-05-15T23:24:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010400", + "Timestamp": "2024-05-15T23:24:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010400", + "Timestamp": "2024-05-15T23:24:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158700", + "Timestamp": "2024-05-15T23:17:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154700", + "Timestamp": "2024-05-15T23:17:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098700", + "Timestamp": "2024-05-15T23:17:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093300", + "Timestamp": "2024-05-15T23:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089600", + "Timestamp": "2024-05-15T23:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033300", + "Timestamp": "2024-05-15T23:17:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-15T23:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.608800", + "Timestamp": "2024-05-15T23:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.578800", + "Timestamp": "2024-05-15T23:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.478800", + "Timestamp": "2024-05-15T23:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080400", + "Timestamp": "2024-05-15T23:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076700", + "Timestamp": "2024-05-15T23:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020400", + "Timestamp": "2024-05-15T23:16:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.605500", + "Timestamp": "2024-05-15T23:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.575500", + "Timestamp": "2024-05-15T23:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.475500", + "Timestamp": "2024-05-15T23:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.712000", + "Timestamp": "2024-05-15T23:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.449900", + "Timestamp": "2024-05-15T23:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.886300", + "Timestamp": "2024-05-15T23:02:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121900", + "Timestamp": "2024-05-15T23:02:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161900", + "Timestamp": "2024-05-15T23:02:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061900", + "Timestamp": "2024-05-15T23:02:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078300", + "Timestamp": "2024-05-15T23:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074600", + "Timestamp": "2024-05-15T23:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018300", + "Timestamp": "2024-05-15T23:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121400", + "Timestamp": "2024-05-15T23:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122600", + "Timestamp": "2024-05-15T23:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118900", + "Timestamp": "2024-05-15T23:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062600", + "Timestamp": "2024-05-15T23:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-15T23:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-15T23:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105500", + "Timestamp": "2024-05-15T22:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101800", + "Timestamp": "2024-05-15T22:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045500", + "Timestamp": "2024-05-15T22:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062200", + "Timestamp": "2024-05-15T22:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002200", + "Timestamp": "2024-05-15T22:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002200", + "Timestamp": "2024-05-15T22:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.439100", + "Timestamp": "2024-05-15T22:44:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.439100", + "Timestamp": "2024-05-15T22:44:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.439100", + "Timestamp": "2024-05-15T22:44:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.097100", + "Timestamp": "2024-05-15T22:44:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.092100", + "Timestamp": "2024-05-15T22:44:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967100", + "Timestamp": "2024-05-15T22:44:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207700", + "Timestamp": "2024-05-15T22:39:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-15T22:38:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-15T22:38:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118600", + "Timestamp": "2024-05-15T22:38:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118600", + "Timestamp": "2024-05-15T22:38:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118600", + "Timestamp": "2024-05-15T22:38:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118600", + "Timestamp": "2024-05-15T22:38:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106000", + "Timestamp": "2024-05-15T22:34:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.518800", + "Timestamp": "2024-05-15T22:32:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.513800", + "Timestamp": "2024-05-15T22:32:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.388800", + "Timestamp": "2024-05-15T22:32:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.451800", + "Timestamp": "2024-05-15T22:32:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.446800", + "Timestamp": "2024-05-15T22:32:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.321800", + "Timestamp": "2024-05-15T22:32:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.886800", + "Timestamp": "2024-05-15T22:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129700", + "Timestamp": "2024-05-15T22:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126000", + "Timestamp": "2024-05-15T22:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069700", + "Timestamp": "2024-05-15T22:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.422900", + "Timestamp": "2024-05-15T22:31:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.422900", + "Timestamp": "2024-05-15T22:31:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092400", + "Timestamp": "2024-05-15T22:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088700", + "Timestamp": "2024-05-15T22:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032400", + "Timestamp": "2024-05-15T22:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.827500", + "Timestamp": "2024-05-15T22:17:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.812900", + "Timestamp": "2024-05-15T22:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.024300", + "Timestamp": "2024-05-15T22:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.402700", + "Timestamp": "2024-05-15T22:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.899700", + "Timestamp": "2024-05-15T22:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132000", + "Timestamp": "2024-05-15T22:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128300", + "Timestamp": "2024-05-15T22:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072000", + "Timestamp": "2024-05-15T22:17:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-15T22:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-15T22:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.415300", + "Timestamp": "2024-05-15T22:17:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.872700", + "Timestamp": "2024-05-15T22:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.023900", + "Timestamp": "2024-05-15T22:12:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-15T22:11:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-15T22:11:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.378400", + "Timestamp": "2024-05-15T22:05:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.378400", + "Timestamp": "2024-05-15T22:05:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.378400", + "Timestamp": "2024-05-15T22:05:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068200", + "Timestamp": "2024-05-15T22:03:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039200", + "Timestamp": "2024-05-15T22:03:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008200", + "Timestamp": "2024-05-15T22:03:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.711900", + "Timestamp": "2024-05-15T22:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-15T22:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-15T22:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092500", + "Timestamp": "2024-05-15T22:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036500", + "Timestamp": "2024-05-15T22:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.203200", + "Timestamp": "2024-05-15T22:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068500", + "Timestamp": "2024-05-15T22:02:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.064800", + "Timestamp": "2024-05-15T22:02:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008500", + "Timestamp": "2024-05-15T22:02:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106000", + "Timestamp": "2024-05-15T22:02:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.384200", + "Timestamp": "2024-05-15T22:02:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.847800", + "Timestamp": "2024-05-15T22:01:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090400", + "Timestamp": "2024-05-15T22:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086400", + "Timestamp": "2024-05-15T22:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030400", + "Timestamp": "2024-05-15T22:01:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063500", + "Timestamp": "2024-05-15T22:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003500", + "Timestamp": "2024-05-15T22:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003500", + "Timestamp": "2024-05-15T22:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429000", + "Timestamp": "2024-05-15T21:58:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.428900", + "Timestamp": "2024-05-15T21:58:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-15T21:58:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.689200", + "Timestamp": "2024-05-15T21:57:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.689200", + "Timestamp": "2024-05-15T21:57:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.689200", + "Timestamp": "2024-05-15T21:57:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.012200", + "Timestamp": "2024-05-15T21:48:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067400", + "Timestamp": "2024-05-15T21:48:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.063700", + "Timestamp": "2024-05-15T21:48:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007400", + "Timestamp": "2024-05-15T21:48:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.422700", + "Timestamp": "2024-05-15T21:47:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068700", + "Timestamp": "2024-05-15T21:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065000", + "Timestamp": "2024-05-15T21:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008700", + "Timestamp": "2024-05-15T21:47:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162100", + "Timestamp": "2024-05-15T21:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158100", + "Timestamp": "2024-05-15T21:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-15T21:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.574900", + "Timestamp": "2024-05-15T21:47:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.257900", + "Timestamp": "2024-05-15T21:47:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068500", + "Timestamp": "2024-05-15T21:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039500", + "Timestamp": "2024-05-15T21:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008500", + "Timestamp": "2024-05-15T21:47:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.255200", + "Timestamp": "2024-05-15T21:47:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.250200", + "Timestamp": "2024-05-15T21:47:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125200", + "Timestamp": "2024-05-15T21:47:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221000", + "Timestamp": "2024-05-15T21:47:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-15T21:46:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102400", + "Timestamp": "2024-05-15T21:46:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046100", + "Timestamp": "2024-05-15T21:46:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.337500", + "Timestamp": "2024-05-15T21:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.332500", + "Timestamp": "2024-05-15T21:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.207500", + "Timestamp": "2024-05-15T21:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146200", + "Timestamp": "2024-05-15T21:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142200", + "Timestamp": "2024-05-15T21:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086200", + "Timestamp": "2024-05-15T21:46:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.515500", + "Timestamp": "2024-05-15T21:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.064100", + "Timestamp": "2024-05-15T21:45:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.064100", + "Timestamp": "2024-05-15T21:45:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.064100", + "Timestamp": "2024-05-15T21:45:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.059100", + "Timestamp": "2024-05-15T21:45:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.059100", + "Timestamp": "2024-05-15T21:45:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.059100", + "Timestamp": "2024-05-15T21:45:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.934100", + "Timestamp": "2024-05-15T21:45:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.934100", + "Timestamp": "2024-05-15T21:45:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.934100", + "Timestamp": "2024-05-15T21:45:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.878100", + "Timestamp": "2024-05-15T21:45:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.878100", + "Timestamp": "2024-05-15T21:45:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.878100", + "Timestamp": "2024-05-15T21:45:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.413600", + "Timestamp": "2024-05-15T21:37:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.944000", + "Timestamp": "2024-05-15T21:37:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.944000", + "Timestamp": "2024-05-15T21:37:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206800", + "Timestamp": "2024-05-15T21:37:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206900", + "Timestamp": "2024-05-15T21:37:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211300", + "Timestamp": "2024-05-15T21:36:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220600", + "Timestamp": "2024-05-15T21:35:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220600", + "Timestamp": "2024-05-15T21:35:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220600", + "Timestamp": "2024-05-15T21:35:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220600", + "Timestamp": "2024-05-15T21:35:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.715600", + "Timestamp": "2024-05-15T21:35:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.715600", + "Timestamp": "2024-05-15T21:35:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.715600", + "Timestamp": "2024-05-15T21:35:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.685600", + "Timestamp": "2024-05-15T21:35:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.685600", + "Timestamp": "2024-05-15T21:35:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.685600", + "Timestamp": "2024-05-15T21:35:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.585600", + "Timestamp": "2024-05-15T21:35:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.585600", + "Timestamp": "2024-05-15T21:35:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.585600", + "Timestamp": "2024-05-15T21:35:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.529600", + "Timestamp": "2024-05-15T21:35:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.529600", + "Timestamp": "2024-05-15T21:35:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.529600", + "Timestamp": "2024-05-15T21:35:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.423900", + "Timestamp": "2024-05-15T21:35:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.423400", + "Timestamp": "2024-05-15T21:35:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417600", + "Timestamp": "2024-05-15T21:35:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221800", + "Timestamp": "2024-05-15T21:32:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.465300", + "Timestamp": "2024-05-15T21:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098600", + "Timestamp": "2024-05-15T21:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138600", + "Timestamp": "2024-05-15T21:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038600", + "Timestamp": "2024-05-15T21:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-15T21:32:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.876900", + "Timestamp": "2024-05-15T21:32:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.824500", + "Timestamp": "2024-05-15T21:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.441800", + "Timestamp": "2024-05-15T21:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.436800", + "Timestamp": "2024-05-15T21:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.311800", + "Timestamp": "2024-05-15T21:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207700", + "Timestamp": "2024-05-15T21:20:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063400", + "Timestamp": "2024-05-15T21:20:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003400", + "Timestamp": "2024-05-15T21:20:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003400", + "Timestamp": "2024-05-15T21:20:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.844900", + "Timestamp": "2024-05-15T21:18:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101500", + "Timestamp": "2024-05-15T21:17:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097800", + "Timestamp": "2024-05-15T21:17:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041500", + "Timestamp": "2024-05-15T21:17:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.695200", + "Timestamp": "2024-05-15T21:17:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.320300", + "Timestamp": "2024-05-15T21:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.315300", + "Timestamp": "2024-05-15T21:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190300", + "Timestamp": "2024-05-15T21:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067300", + "Timestamp": "2024-05-15T21:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038600", + "Timestamp": "2024-05-15T21:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007300", + "Timestamp": "2024-05-15T21:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104100", + "Timestamp": "2024-05-15T21:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.415400", + "Timestamp": "2024-05-15T21:17:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.715600", + "Timestamp": "2024-05-15T21:17:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069500", + "Timestamp": "2024-05-15T21:17:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065800", + "Timestamp": "2024-05-15T21:17:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009500", + "Timestamp": "2024-05-15T21:17:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112200", + "Timestamp": "2024-05-15T21:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152200", + "Timestamp": "2024-05-15T21:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052200", + "Timestamp": "2024-05-15T21:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136200", + "Timestamp": "2024-05-15T21:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132200", + "Timestamp": "2024-05-15T21:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076200", + "Timestamp": "2024-05-15T21:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.467500", + "Timestamp": "2024-05-15T21:14:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.467500", + "Timestamp": "2024-05-15T21:14:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.462500", + "Timestamp": "2024-05-15T21:14:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.462500", + "Timestamp": "2024-05-15T21:14:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.337500", + "Timestamp": "2024-05-15T21:14:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.337500", + "Timestamp": "2024-05-15T21:14:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298800", + "Timestamp": "2024-05-15T21:14:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298800", + "Timestamp": "2024-05-15T21:14:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293800", + "Timestamp": "2024-05-15T21:14:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293800", + "Timestamp": "2024-05-15T21:14:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168800", + "Timestamp": "2024-05-15T21:14:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168800", + "Timestamp": "2024-05-15T21:14:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079100", + "Timestamp": "2024-05-15T21:14:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075400", + "Timestamp": "2024-05-15T21:14:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019100", + "Timestamp": "2024-05-15T21:14:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224600", + "Timestamp": "2024-05-15T21:14:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224700", + "Timestamp": "2024-05-15T21:14:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224600", + "Timestamp": "2024-05-15T21:14:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432100", + "Timestamp": "2024-05-15T21:12:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432100", + "Timestamp": "2024-05-15T21:12:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.479300", + "Timestamp": "2024-05-15T21:12:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.479300", + "Timestamp": "2024-05-15T21:12:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.479300", + "Timestamp": "2024-05-15T21:12:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-15T21:12:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-15T21:12:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.764800", + "Timestamp": "2024-05-15T21:12:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.764800", + "Timestamp": "2024-05-15T21:12:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.764800", + "Timestamp": "2024-05-15T21:12:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.764800", + "Timestamp": "2024-05-15T21:12:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.064100", + "Timestamp": "2024-05-15T21:12:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.064100", + "Timestamp": "2024-05-15T21:12:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.064100", + "Timestamp": "2024-05-15T21:12:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.059100", + "Timestamp": "2024-05-15T21:12:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.059100", + "Timestamp": "2024-05-15T21:12:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.059100", + "Timestamp": "2024-05-15T21:12:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.934100", + "Timestamp": "2024-05-15T21:12:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.934100", + "Timestamp": "2024-05-15T21:12:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.934100", + "Timestamp": "2024-05-15T21:12:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.822100", + "Timestamp": "2024-05-15T21:12:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.822100", + "Timestamp": "2024-05-15T21:12:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.822100", + "Timestamp": "2024-05-15T21:12:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208900", + "Timestamp": "2024-05-15T21:09:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206000", + "Timestamp": "2024-05-15T21:07:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206100", + "Timestamp": "2024-05-15T21:07:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.791400", + "Timestamp": "2024-05-15T21:05:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.712200", + "Timestamp": "2024-05-15T21:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.304900", + "Timestamp": "2024-05-15T21:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.304900", + "Timestamp": "2024-05-15T21:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213800", + "Timestamp": "2024-05-15T21:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068500", + "Timestamp": "2024-05-15T21:02:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039500", + "Timestamp": "2024-05-15T21:02:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008500", + "Timestamp": "2024-05-15T21:02:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069100", + "Timestamp": "2024-05-15T21:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040100", + "Timestamp": "2024-05-15T21:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009100", + "Timestamp": "2024-05-15T21:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-15T21:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-15T20:57:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-15T20:57:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062000", + "Timestamp": "2024-05-15T20:49:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002000", + "Timestamp": "2024-05-15T20:49:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002000", + "Timestamp": "2024-05-15T20:49:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069200", + "Timestamp": "2024-05-15T20:48:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040500", + "Timestamp": "2024-05-15T20:48:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009200", + "Timestamp": "2024-05-15T20:48:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093000", + "Timestamp": "2024-05-15T20:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089000", + "Timestamp": "2024-05-15T20:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033000", + "Timestamp": "2024-05-15T20:47:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-15T20:47:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.406700", + "Timestamp": "2024-05-15T20:47:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.381300", + "Timestamp": "2024-05-15T20:47:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.376300", + "Timestamp": "2024-05-15T20:47:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.251300", + "Timestamp": "2024-05-15T20:47:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123700", + "Timestamp": "2024-05-15T20:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120000", + "Timestamp": "2024-05-15T20:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063700", + "Timestamp": "2024-05-15T20:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078200", + "Timestamp": "2024-05-15T20:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074500", + "Timestamp": "2024-05-15T20:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018200", + "Timestamp": "2024-05-15T20:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216100", + "Timestamp": "2024-05-15T20:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062200", + "Timestamp": "2024-05-15T20:35:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002200", + "Timestamp": "2024-05-15T20:35:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002200", + "Timestamp": "2024-05-15T20:35:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.824100", + "Timestamp": "2024-05-15T20:32:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.838100", + "Timestamp": "2024-05-15T20:32:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.450400", + "Timestamp": "2024-05-15T20:32:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.879600", + "Timestamp": "2024-05-15T20:32:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.323400", + "Timestamp": "2024-05-15T20:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.318400", + "Timestamp": "2024-05-15T20:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.193400", + "Timestamp": "2024-05-15T20:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.845100", + "Timestamp": "2024-05-15T20:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.823200", + "Timestamp": "2024-05-15T20:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224200", + "Timestamp": "2024-05-15T20:32:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.331000", + "Timestamp": "2024-05-15T20:32:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.326000", + "Timestamp": "2024-05-15T20:32:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.201000", + "Timestamp": "2024-05-15T20:32:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.070500", + "Timestamp": "2024-05-15T20:32:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.844700", + "Timestamp": "2024-05-15T20:31:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.414800", + "Timestamp": "2024-05-15T20:31:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.391800", + "Timestamp": "2024-05-15T20:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.201300", + "Timestamp": "2024-05-15T20:28:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.201300", + "Timestamp": "2024-05-15T20:28:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.201300", + "Timestamp": "2024-05-15T20:28:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219700", + "Timestamp": "2024-05-15T20:21:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219700", + "Timestamp": "2024-05-15T20:21:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.203800", + "Timestamp": "2024-05-15T20:20:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.020900", + "Timestamp": "2024-05-15T20:20:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021800", + "Timestamp": "2024-05-15T20:20:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-15T20:19:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-15T20:19:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209500", + "Timestamp": "2024-05-15T20:18:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-15T20:17:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.286200", + "Timestamp": "2024-05-15T20:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.256200", + "Timestamp": "2024-05-15T20:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156200", + "Timestamp": "2024-05-15T20:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148100", + "Timestamp": "2024-05-15T20:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144100", + "Timestamp": "2024-05-15T20:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-15T20:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.866000", + "Timestamp": "2024-05-15T20:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091000", + "Timestamp": "2024-05-15T20:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087000", + "Timestamp": "2024-05-15T20:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031000", + "Timestamp": "2024-05-15T20:17:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-15T20:17:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087900", + "Timestamp": "2024-05-15T20:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084200", + "Timestamp": "2024-05-15T20:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027900", + "Timestamp": "2024-05-15T20:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.037700", + "Timestamp": "2024-05-15T20:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219100", + "Timestamp": "2024-05-15T20:02:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.731700", + "Timestamp": "2024-05-15T20:02:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135700", + "Timestamp": "2024-05-15T20:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131700", + "Timestamp": "2024-05-15T20:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075700", + "Timestamp": "2024-05-15T20:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103200", + "Timestamp": "2024-05-15T20:02:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-15T20:02:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.833200", + "Timestamp": "2024-05-15T19:47:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073800", + "Timestamp": "2024-05-15T19:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113800", + "Timestamp": "2024-05-15T19:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013800", + "Timestamp": "2024-05-15T19:47:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.616600", + "Timestamp": "2024-05-15T19:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.586600", + "Timestamp": "2024-05-15T19:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.486600", + "Timestamp": "2024-05-15T19:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096300", + "Timestamp": "2024-05-15T19:47:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-15T19:47:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036300", + "Timestamp": "2024-05-15T19:47:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.006100", + "Timestamp": "2024-05-15T19:33:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226400", + "Timestamp": "2024-05-15T19:32:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-15T19:32:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100500", + "Timestamp": "2024-05-15T19:32:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044200", + "Timestamp": "2024-05-15T19:32:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.371900", + "Timestamp": "2024-05-15T19:19:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.341900", + "Timestamp": "2024-05-15T19:19:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.241900", + "Timestamp": "2024-05-15T19:19:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.658000", + "Timestamp": "2024-05-15T19:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105500", + "Timestamp": "2024-05-15T19:17:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101800", + "Timestamp": "2024-05-15T19:17:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045500", + "Timestamp": "2024-05-15T19:17:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080700", + "Timestamp": "2024-05-15T19:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077000", + "Timestamp": "2024-05-15T19:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020700", + "Timestamp": "2024-05-15T19:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063000", + "Timestamp": "2024-05-15T19:14:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003000", + "Timestamp": "2024-05-15T19:14:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003000", + "Timestamp": "2024-05-15T19:14:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-15T19:10:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104300", + "Timestamp": "2024-05-15T19:10:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-15T19:10:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-15T19:07:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.180900", + "Timestamp": "2024-05-15T19:06:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177200", + "Timestamp": "2024-05-15T19:06:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120900", + "Timestamp": "2024-05-15T19:06:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.304900", + "Timestamp": "2024-05-15T19:05:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.304900", + "Timestamp": "2024-05-15T19:05:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.304900", + "Timestamp": "2024-05-15T19:05:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104300", + "Timestamp": "2024-05-15T19:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-15T19:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044300", + "Timestamp": "2024-05-15T19:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141600", + "Timestamp": "2024-05-15T19:02:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137900", + "Timestamp": "2024-05-15T19:02:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081600", + "Timestamp": "2024-05-15T19:02:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061900", + "Timestamp": "2024-05-15T19:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001900", + "Timestamp": "2024-05-15T19:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001900", + "Timestamp": "2024-05-15T19:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.438200", + "Timestamp": "2024-05-15T19:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.449100", + "Timestamp": "2024-05-15T18:47:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.356900", + "Timestamp": "2024-05-15T18:47:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-15T18:47:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-15T18:47:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050500", + "Timestamp": "2024-05-15T18:47:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-15T18:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094800", + "Timestamp": "2024-05-15T18:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038800", + "Timestamp": "2024-05-15T18:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429100", + "Timestamp": "2024-05-15T18:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.513700", + "Timestamp": "2024-05-15T18:46:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106200", + "Timestamp": "2024-05-15T18:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.580600", + "Timestamp": "2024-05-15T18:45:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.580600", + "Timestamp": "2024-05-15T18:45:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.580600", + "Timestamp": "2024-05-15T18:45:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.575600", + "Timestamp": "2024-05-15T18:45:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.575600", + "Timestamp": "2024-05-15T18:45:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.575600", + "Timestamp": "2024-05-15T18:45:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.450600", + "Timestamp": "2024-05-15T18:45:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.450600", + "Timestamp": "2024-05-15T18:45:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.450600", + "Timestamp": "2024-05-15T18:45:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.866600", + "Timestamp": "2024-05-15T18:44:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.866600", + "Timestamp": "2024-05-15T18:44:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.866600", + "Timestamp": "2024-05-15T18:44:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.830800", + "Timestamp": "2024-05-15T18:41:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.830800", + "Timestamp": "2024-05-15T18:41:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206300", + "Timestamp": "2024-05-15T18:35:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215800", + "Timestamp": "2024-05-15T18:34:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.805600", + "Timestamp": "2024-05-15T18:33:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.759300", + "Timestamp": "2024-05-15T18:32:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.237400", + "Timestamp": "2024-05-15T18:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232400", + "Timestamp": "2024-05-15T18:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-15T18:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-15T18:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176200", + "Timestamp": "2024-05-15T18:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172200", + "Timestamp": "2024-05-15T18:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116200", + "Timestamp": "2024-05-15T18:32:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-15T18:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088600", + "Timestamp": "2024-05-15T18:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032600", + "Timestamp": "2024-05-15T18:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219800", + "Timestamp": "2024-05-15T18:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107000", + "Timestamp": "2024-05-15T18:17:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.575800", + "Timestamp": "2024-05-15T18:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.422600", + "Timestamp": "2024-05-15T18:16:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005300", + "Timestamp": "2024-05-15T18:11:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005300", + "Timestamp": "2024-05-15T18:11:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005300", + "Timestamp": "2024-05-15T18:11:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005300", + "Timestamp": "2024-05-15T18:11:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.100600", + "Timestamp": "2024-05-15T18:03:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.100600", + "Timestamp": "2024-05-15T18:03:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061700", + "Timestamp": "2024-05-15T18:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001700", + "Timestamp": "2024-05-15T18:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001700", + "Timestamp": "2024-05-15T18:02:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214600", + "Timestamp": "2024-05-15T18:02:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090500", + "Timestamp": "2024-05-15T18:02:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086800", + "Timestamp": "2024-05-15T18:02:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030500", + "Timestamp": "2024-05-15T18:02:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184400", + "Timestamp": "2024-05-15T18:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179400", + "Timestamp": "2024-05-15T18:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054400", + "Timestamp": "2024-05-15T18:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133900", + "Timestamp": "2024-05-15T18:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173900", + "Timestamp": "2024-05-15T18:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073900", + "Timestamp": "2024-05-15T18:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065200", + "Timestamp": "2024-05-15T17:48:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.061500", + "Timestamp": "2024-05-15T17:48:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-15T17:48:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068300", + "Timestamp": "2024-05-15T17:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.064600", + "Timestamp": "2024-05-15T17:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008300", + "Timestamp": "2024-05-15T17:47:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099900", + "Timestamp": "2024-05-15T17:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-15T17:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039900", + "Timestamp": "2024-05-15T17:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150500", + "Timestamp": "2024-05-15T17:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190500", + "Timestamp": "2024-05-15T17:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090500", + "Timestamp": "2024-05-15T17:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.609800", + "Timestamp": "2024-05-15T17:45:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.609800", + "Timestamp": "2024-05-15T17:45:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.038200", + "Timestamp": "2024-05-15T17:41:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068300", + "Timestamp": "2024-05-15T17:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038300", + "Timestamp": "2024-05-15T17:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008300", + "Timestamp": "2024-05-15T17:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-15T17:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088600", + "Timestamp": "2024-05-15T17:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032600", + "Timestamp": "2024-05-15T17:32:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062200", + "Timestamp": "2024-05-15T17:31:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002200", + "Timestamp": "2024-05-15T17:31:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002200", + "Timestamp": "2024-05-15T17:31:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.095000", + "Timestamp": "2024-05-15T17:24:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.095000", + "Timestamp": "2024-05-15T17:24:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094000", + "Timestamp": "2024-05-15T17:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090300", + "Timestamp": "2024-05-15T17:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034000", + "Timestamp": "2024-05-15T17:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219200", + "Timestamp": "2024-05-15T17:17:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061700", + "Timestamp": "2024-05-15T17:03:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001700", + "Timestamp": "2024-05-15T17:03:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001700", + "Timestamp": "2024-05-15T17:03:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-15T16:59:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-15T16:59:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065600", + "Timestamp": "2024-05-15T16:51:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.036600", + "Timestamp": "2024-05-15T16:51:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005600", + "Timestamp": "2024-05-15T16:51:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067900", + "Timestamp": "2024-05-15T16:47:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037900", + "Timestamp": "2024-05-15T16:47:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007900", + "Timestamp": "2024-05-15T16:47:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.184700", + "Timestamp": "2024-05-15T16:41:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-15T16:40:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219700", + "Timestamp": "2024-05-15T16:38:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073500", + "Timestamp": "2024-05-15T16:32:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069800", + "Timestamp": "2024-05-15T16:32:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013500", + "Timestamp": "2024-05-15T16:32:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.219500", + "Timestamp": "2024-05-15T16:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.219500", + "Timestamp": "2024-05-15T16:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.219500", + "Timestamp": "2024-05-15T16:32:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.881700", + "Timestamp": "2024-05-15T16:17:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067400", + "Timestamp": "2024-05-15T16:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.063700", + "Timestamp": "2024-05-15T16:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007400", + "Timestamp": "2024-05-15T16:16:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.812800", + "Timestamp": "2024-05-15T16:05:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.812800", + "Timestamp": "2024-05-15T16:05:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068400", + "Timestamp": "2024-05-15T16:01:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039400", + "Timestamp": "2024-05-15T16:01:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008400", + "Timestamp": "2024-05-15T16:01:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095200", + "Timestamp": "2024-05-15T16:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091500", + "Timestamp": "2024-05-15T16:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035200", + "Timestamp": "2024-05-15T16:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062100", + "Timestamp": "2024-05-15T15:49:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002100", + "Timestamp": "2024-05-15T15:49:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002100", + "Timestamp": "2024-05-15T15:49:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061900", + "Timestamp": "2024-05-15T15:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001900", + "Timestamp": "2024-05-15T15:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001900", + "Timestamp": "2024-05-15T15:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.023700", + "Timestamp": "2024-05-15T15:45:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.023800", + "Timestamp": "2024-05-15T15:45:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.237200", + "Timestamp": "2024-05-15T15:40:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.165600", + "Timestamp": "2024-05-15T15:36:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021100", + "Timestamp": "2024-05-15T15:36:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021000", + "Timestamp": "2024-05-15T15:36:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021000", + "Timestamp": "2024-05-15T15:36:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021000", + "Timestamp": "2024-05-15T15:36:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-15T15:33:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.529600", + "Timestamp": "2024-05-15T15:33:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.529600", + "Timestamp": "2024-05-15T15:33:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.529600", + "Timestamp": "2024-05-15T15:33:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.529600", + "Timestamp": "2024-05-15T15:33:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.715600", + "Timestamp": "2024-05-15T15:32:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.685600", + "Timestamp": "2024-05-15T15:32:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.585600", + "Timestamp": "2024-05-15T15:32:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.092500", + "Timestamp": "2024-05-15T15:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.998200", + "Timestamp": "2024-05-15T15:31:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.998200", + "Timestamp": "2024-05-15T15:31:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.998200", + "Timestamp": "2024-05-15T15:31:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.993200", + "Timestamp": "2024-05-15T15:31:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.993200", + "Timestamp": "2024-05-15T15:31:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.993200", + "Timestamp": "2024-05-15T15:31:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.868200", + "Timestamp": "2024-05-15T15:31:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.868200", + "Timestamp": "2024-05-15T15:31:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.868200", + "Timestamp": "2024-05-15T15:31:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.756200", + "Timestamp": "2024-05-15T15:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.756200", + "Timestamp": "2024-05-15T15:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.756200", + "Timestamp": "2024-05-15T15:31:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416900", + "Timestamp": "2024-05-15T15:30:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416900", + "Timestamp": "2024-05-15T15:30:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-15T15:30:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.438700", + "Timestamp": "2024-05-15T15:29:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.878000", + "Timestamp": "2024-05-15T15:28:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.878000", + "Timestamp": "2024-05-15T15:28:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-15T15:24:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076600", + "Timestamp": "2024-05-15T15:23:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047600", + "Timestamp": "2024-05-15T15:23:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016600", + "Timestamp": "2024-05-15T15:23:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214400", + "Timestamp": "2024-05-15T15:22:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416400", + "Timestamp": "2024-05-15T15:17:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-15T15:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-15T15:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054600", + "Timestamp": "2024-05-15T15:17:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095300", + "Timestamp": "2024-05-15T15:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091300", + "Timestamp": "2024-05-15T15:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035300", + "Timestamp": "2024-05-15T15:16:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.824400", + "Timestamp": "2024-05-15T15:16:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.012100", + "Timestamp": "2024-05-15T15:06:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-15T15:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-15T15:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050300", + "Timestamp": "2024-05-15T15:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224900", + "Timestamp": "2024-05-15T14:47:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-15T14:47:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-15T14:47:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-15T14:47:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224800", + "Timestamp": "2024-05-15T14:47:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.088700", + "Timestamp": "2024-05-15T14:46:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102000", + "Timestamp": "2024-05-15T14:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-15T14:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-15T14:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.857800", + "Timestamp": "2024-05-15T14:32:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.717900", + "Timestamp": "2024-05-15T14:32:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-15T14:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208500", + "Timestamp": "2024-05-15T14:24:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208500", + "Timestamp": "2024-05-15T14:24:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g5g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.467500", + "Timestamp": "2024-05-15T14:24:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g5g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.462500", + "Timestamp": "2024-05-15T14:24:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g5g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.337500", + "Timestamp": "2024-05-15T14:24:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.248700", + "Timestamp": "2024-05-15T14:23:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.248700", + "Timestamp": "2024-05-15T14:23:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099500", + "Timestamp": "2024-05-15T14:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139500", + "Timestamp": "2024-05-15T14:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039500", + "Timestamp": "2024-05-15T14:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-15T14:17:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-15T14:17:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031800", + "Timestamp": "2024-05-15T14:17:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079100", + "Timestamp": "2024-05-15T14:17:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075400", + "Timestamp": "2024-05-15T14:17:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019100", + "Timestamp": "2024-05-15T14:17:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224000", + "Timestamp": "2024-05-15T14:06:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206000", + "Timestamp": "2024-05-15T14:05:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.412300", + "Timestamp": "2024-05-15T14:03:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.691900", + "Timestamp": "2024-05-15T14:01:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429200", + "Timestamp": "2024-05-15T14:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062100", + "Timestamp": "2024-05-15T14:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002100", + "Timestamp": "2024-05-15T14:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002100", + "Timestamp": "2024-05-15T14:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.023600", + "Timestamp": "2024-05-15T13:57:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.325900", + "Timestamp": "2024-05-15T13:46:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.739700", + "Timestamp": "2024-05-15T13:45:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.739700", + "Timestamp": "2024-05-15T13:45:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112200", + "Timestamp": "2024-05-15T13:38:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-15T13:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173400", + "Timestamp": "2024-05-15T13:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169400", + "Timestamp": "2024-05-15T13:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113400", + "Timestamp": "2024-05-15T13:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068300", + "Timestamp": "2024-05-15T13:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.064600", + "Timestamp": "2024-05-15T13:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008300", + "Timestamp": "2024-05-15T13:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073300", + "Timestamp": "2024-05-15T13:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069600", + "Timestamp": "2024-05-15T13:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013300", + "Timestamp": "2024-05-15T13:02:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-15T13:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-15T13:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045200", + "Timestamp": "2024-05-15T13:02:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.856100", + "Timestamp": "2024-05-15T13:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062500", + "Timestamp": "2024-05-15T13:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-15T13:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-15T13:01:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.006100", + "Timestamp": "2024-05-15T12:51:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-15T12:51:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.902400", + "Timestamp": "2024-05-15T12:46:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095600", + "Timestamp": "2024-05-15T12:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091600", + "Timestamp": "2024-05-15T12:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035600", + "Timestamp": "2024-05-15T12:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-15T12:46:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218800", + "Timestamp": "2024-05-15T12:36:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103100", + "Timestamp": "2024-05-15T12:34:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104100", + "Timestamp": "2024-05-15T12:32:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.459700", + "Timestamp": "2024-05-15T12:32:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139400", + "Timestamp": "2024-05-15T12:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135700", + "Timestamp": "2024-05-15T12:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079400", + "Timestamp": "2024-05-15T12:32:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098900", + "Timestamp": "2024-05-15T12:32:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094900", + "Timestamp": "2024-05-15T12:32:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038900", + "Timestamp": "2024-05-15T12:32:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095600", + "Timestamp": "2024-05-15T12:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091900", + "Timestamp": "2024-05-15T12:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035600", + "Timestamp": "2024-05-15T12:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-15T12:17:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-15T12:17:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.658600", + "Timestamp": "2024-05-15T12:17:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437700", + "Timestamp": "2024-05-15T12:17:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113100", + "Timestamp": "2024-05-15T12:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068300", + "Timestamp": "2024-05-15T12:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039300", + "Timestamp": "2024-05-15T12:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2b", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008300", + "Timestamp": "2024-05-15T12:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092100", + "Timestamp": "2024-05-15T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088400", + "Timestamp": "2024-05-15T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032100", + "Timestamp": "2024-05-15T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215700", + "Timestamp": "2024-05-15T11:27:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.736200", + "Timestamp": "2024-05-05T13:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.731200", + "Timestamp": "2024-05-05T13:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.606200", + "Timestamp": "2024-05-05T13:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2d", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.917700", + "Timestamp": "2024-05-05T09:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.462700", + "Timestamp": "2024-03-24T02:47:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "p2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.432700", + "Timestamp": "2024-03-24T02:47:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.332700", + "Timestamp": "2024-03-24T02:47:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-2a", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.807500", + "Timestamp": "2024-03-23T22:02:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.266800", + "Timestamp": "2024-05-16T14:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.261800", + "Timestamp": "2024-05-16T14:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.136800", + "Timestamp": "2024-05-16T14:01:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128700", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.798500", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.793500", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.668500", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.945100", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.915100", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.815100", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.212700", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.207700", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.082700", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.539300", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.720300", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.618200", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.588200", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.488200", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.800000", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.795000", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.670000", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.532900", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.527900", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.402900", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.955600", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.475100", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.847000", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.842000", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.717000", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.399300", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.369300", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.269300", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.296200", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266200", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.166200", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.326700", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.254300", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.080900", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.075900", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.950900", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.632300", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.627300", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.502300", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116500", + "Timestamp": "2024-05-16T14:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T14:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.529400", + "Timestamp": "2024-05-16T14:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-16T14:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.747600", + "Timestamp": "2024-05-16T14:01:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.899800", + "Timestamp": "2024-05-16T14:01:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.894800", + "Timestamp": "2024-05-16T14:01:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.769800", + "Timestamp": "2024-05-16T14:01:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.232600", + "Timestamp": "2024-05-16T14:01:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.227600", + "Timestamp": "2024-05-16T14:01:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-16T14:01:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.415700", + "Timestamp": "2024-05-16T14:00:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.196400", + "Timestamp": "2024-05-16T14:00:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.191400", + "Timestamp": "2024-05-16T14:00:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.066400", + "Timestamp": "2024-05-16T14:00:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.562300", + "Timestamp": "2024-05-16T14:00:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.532300", + "Timestamp": "2024-05-16T14:00:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.432300", + "Timestamp": "2024-05-16T14:00:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116800", + "Timestamp": "2024-05-16T14:00:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T14:00:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056800", + "Timestamp": "2024-05-16T14:00:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072800", + "Timestamp": "2024-05-16T14:00:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069100", + "Timestamp": "2024-05-16T14:00:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012800", + "Timestamp": "2024-05-16T14:00:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.529600", + "Timestamp": "2024-05-16T13:54:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.529600", + "Timestamp": "2024-05-16T13:54:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.529600", + "Timestamp": "2024-05-16T13:54:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.715600", + "Timestamp": "2024-05-16T13:54:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.715600", + "Timestamp": "2024-05-16T13:54:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.685600", + "Timestamp": "2024-05-16T13:54:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.685600", + "Timestamp": "2024-05-16T13:54:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.585600", + "Timestamp": "2024-05-16T13:54:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.585600", + "Timestamp": "2024-05-16T13:54:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T13:46:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.931900", + "Timestamp": "2024-05-16T13:46:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.926900", + "Timestamp": "2024-05-16T13:46:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.801900", + "Timestamp": "2024-05-16T13:46:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.234000", + "Timestamp": "2024-05-16T13:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.229000", + "Timestamp": "2024-05-16T13:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T13:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.860800", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.855800", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.730800", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.371800", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.341800", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.241800", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.494200", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086600", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082900", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026600", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.546700", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.382600", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.377600", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.252600", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.559200", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123900", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119900", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063900", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.890700", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119800", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116100", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059800", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070900", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067200", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010900", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.562600", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.970900", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.458700", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.453700", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.328700", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.664100", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.858100", + "Timestamp": "2024-05-16T13:46:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.444000", + "Timestamp": "2024-05-16T13:46:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079400", + "Timestamp": "2024-05-16T13:46:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075700", + "Timestamp": "2024-05-16T13:46:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019400", + "Timestamp": "2024-05-16T13:46:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154100", + "Timestamp": "2024-05-16T13:46:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150100", + "Timestamp": "2024-05-16T13:46:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094100", + "Timestamp": "2024-05-16T13:46:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.838600", + "Timestamp": "2024-05-16T13:46:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116200", + "Timestamp": "2024-05-16T13:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T13:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056200", + "Timestamp": "2024-05-16T13:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062500", + "Timestamp": "2024-05-16T13:46:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-16T13:46:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-16T13:46:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.037800", + "Timestamp": "2024-05-16T13:45:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.690900", + "Timestamp": "2024-05-16T13:45:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.685900", + "Timestamp": "2024-05-16T13:45:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.560900", + "Timestamp": "2024-05-16T13:45:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.870200", + "Timestamp": "2024-05-16T13:45:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.840200", + "Timestamp": "2024-05-16T13:45:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.740200", + "Timestamp": "2024-05-16T13:45:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.211300", + "Timestamp": "2024-05-16T13:45:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.206300", + "Timestamp": "2024-05-16T13:45:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081300", + "Timestamp": "2024-05-16T13:45:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.811800", + "Timestamp": "2024-05-16T13:45:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.781800", + "Timestamp": "2024-05-16T13:45:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.681800", + "Timestamp": "2024-05-16T13:45:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.444800", + "Timestamp": "2024-05-16T13:45:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.481600", + "Timestamp": "2024-05-16T13:45:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.236000", + "Timestamp": "2024-05-16T13:45:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.935000", + "Timestamp": "2024-05-16T13:45:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.930000", + "Timestamp": "2024-05-16T13:45:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.805000", + "Timestamp": "2024-05-16T13:45:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.678900", + "Timestamp": "2024-05-16T13:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.673900", + "Timestamp": "2024-05-16T13:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.548900", + "Timestamp": "2024-05-16T13:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213400", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "14.008800", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.450200", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.967200", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.994400", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.989400", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.864400", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.666500", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.661500", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.536500", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.566200", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.780700", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.775700", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.650700", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.092400", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.087400", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.962400", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151000", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147000", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091000", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119500", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.585400", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115100", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111100", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055100", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225000", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115100", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055100", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.604000", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.599000", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.474000", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.252200", + "Timestamp": "2024-05-16T13:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.247200", + "Timestamp": "2024-05-16T13:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122200", + "Timestamp": "2024-05-16T13:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.314400", + "Timestamp": "2024-05-16T13:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096800", + "Timestamp": "2024-05-16T13:31:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136800", + "Timestamp": "2024-05-16T13:31:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036800", + "Timestamp": "2024-05-16T13:31:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.442100", + "Timestamp": "2024-05-16T13:31:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.437100", + "Timestamp": "2024-05-16T13:31:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.312100", + "Timestamp": "2024-05-16T13:31:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.477000", + "Timestamp": "2024-05-16T13:31:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.472000", + "Timestamp": "2024-05-16T13:31:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.347000", + "Timestamp": "2024-05-16T13:31:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.544700", + "Timestamp": "2024-05-16T13:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.539700", + "Timestamp": "2024-05-16T13:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.414700", + "Timestamp": "2024-05-16T13:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.234200", + "Timestamp": "2024-05-16T13:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.722900", + "Timestamp": "2024-05-16T13:31:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.717900", + "Timestamp": "2024-05-16T13:31:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.592900", + "Timestamp": "2024-05-16T13:31:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.893700", + "Timestamp": "2024-05-16T13:31:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.888700", + "Timestamp": "2024-05-16T13:31:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.763700", + "Timestamp": "2024-05-16T13:31:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.462500", + "Timestamp": "2024-05-16T13:31:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.069600", + "Timestamp": "2024-05-16T13:31:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.039600", + "Timestamp": "2024-05-16T13:31:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.939600", + "Timestamp": "2024-05-16T13:31:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.204700", + "Timestamp": "2024-05-16T13:31:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174700", + "Timestamp": "2024-05-16T13:31:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074700", + "Timestamp": "2024-05-16T13:31:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432300", + "Timestamp": "2024-05-16T13:30:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.618000", + "Timestamp": "2024-05-16T13:30:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.879700", + "Timestamp": "2024-05-16T13:30:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.248200", + "Timestamp": "2024-05-16T13:30:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.218200", + "Timestamp": "2024-05-16T13:30:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118200", + "Timestamp": "2024-05-16T13:30:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.310300", + "Timestamp": "2024-05-16T13:30:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.280300", + "Timestamp": "2024-05-16T13:30:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180300", + "Timestamp": "2024-05-16T13:30:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.537900", + "Timestamp": "2024-05-16T13:30:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.532900", + "Timestamp": "2024-05-16T13:30:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.407900", + "Timestamp": "2024-05-16T13:30:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072900", + "Timestamp": "2024-05-16T13:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069200", + "Timestamp": "2024-05-16T13:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012900", + "Timestamp": "2024-05-16T13:17:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.181900", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.176900", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.051900", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.216500", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.211500", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086500", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.492900", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.487900", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.362900", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.974600", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.535100", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299900", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269900", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169900", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.234900", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.229900", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.348600", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343600", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.218600", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.848800", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.843800", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.718800", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.357300", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.352300", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.227300", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.253700", + "Timestamp": "2024-05-16T13:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.248700", + "Timestamp": "2024-05-16T13:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123700", + "Timestamp": "2024-05-16T13:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.929600", + "Timestamp": "2024-05-16T13:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.419100", + "Timestamp": "2024-05-16T13:16:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.414100", + "Timestamp": "2024-05-16T13:16:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.289100", + "Timestamp": "2024-05-16T13:16:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.437100", + "Timestamp": "2024-05-16T13:16:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.432100", + "Timestamp": "2024-05-16T13:16:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.307100", + "Timestamp": "2024-05-16T13:16:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.949300", + "Timestamp": "2024-05-16T13:15:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.928500", + "Timestamp": "2024-05-16T13:15:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.956300", + "Timestamp": "2024-05-16T13:15:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.965700", + "Timestamp": "2024-05-16T13:15:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.935700", + "Timestamp": "2024-05-16T13:15:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.835700", + "Timestamp": "2024-05-16T13:15:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.084200", + "Timestamp": "2024-05-16T13:15:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.925000", + "Timestamp": "2024-05-16T13:15:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.726100", + "Timestamp": "2024-05-16T13:15:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.696100", + "Timestamp": "2024-05-16T13:15:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.596100", + "Timestamp": "2024-05-16T13:15:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.821000", + "Timestamp": "2024-05-16T13:15:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.791000", + "Timestamp": "2024-05-16T13:15:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.691000", + "Timestamp": "2024-05-16T13:15:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.219700", + "Timestamp": "2024-05-16T13:15:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.215700", + "Timestamp": "2024-05-16T13:15:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159700", + "Timestamp": "2024-05-16T13:15:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.898600", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.728600", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.698600", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.598600", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.345000", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.340000", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.215000", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.782100", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.777100", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.652100", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.876400", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.465100", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.153200", + "Timestamp": "2024-05-16T13:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.995100", + "Timestamp": "2024-05-16T13:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.467100", + "Timestamp": "2024-05-16T13:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.694500", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115500", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055500", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101900", + "Timestamp": "2024-05-16T13:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098200", + "Timestamp": "2024-05-16T13:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041900", + "Timestamp": "2024-05-16T13:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.457000", + "Timestamp": "2024-05-16T13:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.736000", + "Timestamp": "2024-05-16T13:00:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.731000", + "Timestamp": "2024-05-16T13:00:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.606000", + "Timestamp": "2024-05-16T13:00:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135300", + "Timestamp": "2024-05-16T13:00:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131300", + "Timestamp": "2024-05-16T13:00:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075300", + "Timestamp": "2024-05-16T13:00:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.250400", + "Timestamp": "2024-05-16T13:00:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.245400", + "Timestamp": "2024-05-16T13:00:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.120400", + "Timestamp": "2024-05-16T13:00:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.865500", + "Timestamp": "2024-05-16T13:00:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.860500", + "Timestamp": "2024-05-16T13:00:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.735500", + "Timestamp": "2024-05-16T13:00:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.009900", + "Timestamp": "2024-05-16T13:00:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.686100", + "Timestamp": "2024-05-16T13:00:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.619200", + "Timestamp": "2024-05-16T13:00:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.656100", + "Timestamp": "2024-05-16T13:00:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.589200", + "Timestamp": "2024-05-16T13:00:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.556100", + "Timestamp": "2024-05-16T13:00:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.489200", + "Timestamp": "2024-05-16T13:00:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.889400", + "Timestamp": "2024-05-16T13:00:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215500", + "Timestamp": "2024-05-16T13:00:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.316500", + "Timestamp": "2024-05-16T13:00:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.311500", + "Timestamp": "2024-05-16T13:00:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186500", + "Timestamp": "2024-05-16T13:00:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.842900", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.812900", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.712900", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.348300", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343300", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.218300", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.840100", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.810100", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.710100", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.226400", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196400", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096400", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.346000", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108500", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.129900", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.959600", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.240600", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.622300", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.948300", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.834200", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.695200", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.329300", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324300", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199300", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136800", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133100", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076800", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.804200", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.089600", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.366200", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.361200", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.236200", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-16T12:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113200", + "Timestamp": "2024-05-16T12:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056900", + "Timestamp": "2024-05-16T12:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.513800", + "Timestamp": "2024-05-16T12:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.508800", + "Timestamp": "2024-05-16T12:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.383800", + "Timestamp": "2024-05-16T12:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.546600", + "Timestamp": "2024-05-16T12:46:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.516600", + "Timestamp": "2024-05-16T12:46:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.416600", + "Timestamp": "2024-05-16T12:46:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.494700", + "Timestamp": "2024-05-16T12:46:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.489700", + "Timestamp": "2024-05-16T12:46:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.364700", + "Timestamp": "2024-05-16T12:46:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.027000", + "Timestamp": "2024-05-16T12:46:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.022000", + "Timestamp": "2024-05-16T12:46:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.897000", + "Timestamp": "2024-05-16T12:46:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.288100", + "Timestamp": "2024-05-16T12:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.283100", + "Timestamp": "2024-05-16T12:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158100", + "Timestamp": "2024-05-16T12:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.068700", + "Timestamp": "2024-05-16T12:46:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.063700", + "Timestamp": "2024-05-16T12:46:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.938700", + "Timestamp": "2024-05-16T12:46:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441500", + "Timestamp": "2024-05-16T12:45:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.449400", + "Timestamp": "2024-05-16T12:45:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.476600", + "Timestamp": "2024-05-16T12:45:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.471600", + "Timestamp": "2024-05-16T12:45:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.346600", + "Timestamp": "2024-05-16T12:45:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.949400", + "Timestamp": "2024-05-16T12:45:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261900", + "Timestamp": "2024-05-16T12:45:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.256900", + "Timestamp": "2024-05-16T12:45:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131900", + "Timestamp": "2024-05-16T12:45:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074500", + "Timestamp": "2024-05-16T12:43:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074700", + "Timestamp": "2024-05-16T12:43:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074900", + "Timestamp": "2024-05-16T12:43:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070800", + "Timestamp": "2024-05-16T12:43:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071000", + "Timestamp": "2024-05-16T12:43:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071200", + "Timestamp": "2024-05-16T12:43:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014500", + "Timestamp": "2024-05-16T12:43:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014700", + "Timestamp": "2024-05-16T12:43:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014900", + "Timestamp": "2024-05-16T12:43:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071500", + "Timestamp": "2024-05-16T12:42:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076300", + "Timestamp": "2024-05-16T12:42:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073800", + "Timestamp": "2024-05-16T12:42:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067800", + "Timestamp": "2024-05-16T12:42:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.072600", + "Timestamp": "2024-05-16T12:42:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070100", + "Timestamp": "2024-05-16T12:42:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011500", + "Timestamp": "2024-05-16T12:42:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016300", + "Timestamp": "2024-05-16T12:42:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013800", + "Timestamp": "2024-05-16T12:42:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.276100", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.271100", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.146100", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.590200", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.585200", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.460200", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.218300", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.213300", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088300", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.004300", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207500", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.221100", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.216100", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091100", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.546000", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.541000", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.416000", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225500", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.233800", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.228800", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.852500", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.822500", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.722500", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.386700", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.381700", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.256700", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.406500", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.550000", + "Timestamp": "2024-05-16T12:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135000", + "Timestamp": "2024-05-16T12:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131300", + "Timestamp": "2024-05-16T12:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075000", + "Timestamp": "2024-05-16T12:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.652100", + "Timestamp": "2024-05-16T12:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.647100", + "Timestamp": "2024-05-16T12:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.522100", + "Timestamp": "2024-05-16T12:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087300", + "Timestamp": "2024-05-16T12:31:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083600", + "Timestamp": "2024-05-16T12:31:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027300", + "Timestamp": "2024-05-16T12:31:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.981800", + "Timestamp": "2024-05-16T12:31:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.976800", + "Timestamp": "2024-05-16T12:31:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.851800", + "Timestamp": "2024-05-16T12:31:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.930100", + "Timestamp": "2024-05-16T12:31:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117100", + "Timestamp": "2024-05-16T12:31:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113100", + "Timestamp": "2024-05-16T12:31:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057100", + "Timestamp": "2024-05-16T12:31:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.985000", + "Timestamp": "2024-05-16T12:31:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.955000", + "Timestamp": "2024-05-16T12:31:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.855000", + "Timestamp": "2024-05-16T12:31:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.019200", + "Timestamp": "2024-05-16T12:30:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.989200", + "Timestamp": "2024-05-16T12:30:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.889200", + "Timestamp": "2024-05-16T12:30:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.295700", + "Timestamp": "2024-05-16T12:30:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.290700", + "Timestamp": "2024-05-16T12:30:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.165700", + "Timestamp": "2024-05-16T12:30:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.244700", + "Timestamp": "2024-05-16T12:30:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082400", + "Timestamp": "2024-05-16T12:30:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078700", + "Timestamp": "2024-05-16T12:30:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022400", + "Timestamp": "2024-05-16T12:30:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271200", + "Timestamp": "2024-05-16T12:30:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.241200", + "Timestamp": "2024-05-16T12:30:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141200", + "Timestamp": "2024-05-16T12:30:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.745600", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.231200", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.226200", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.115600", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.209000", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.179000", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.079000", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437900", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.234300", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.197400", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115100", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111100", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055100", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.651000", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.646000", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.521000", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.880800", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.869900", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.103300", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.969400", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.939400", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.839400", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.024900", + "Timestamp": "2024-05-16T12:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.319300", + "Timestamp": "2024-05-16T12:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.059600", + "Timestamp": "2024-05-16T12:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.672400", + "Timestamp": "2024-05-16T12:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.277400", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.404200", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.374200", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.274200", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.984100", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.979100", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.854100", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.910100", + "Timestamp": "2024-05-16T12:16:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.905100", + "Timestamp": "2024-05-16T12:16:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.780100", + "Timestamp": "2024-05-16T12:16:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.517400", + "Timestamp": "2024-05-16T12:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.201900", + "Timestamp": "2024-05-16T12:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.184900", + "Timestamp": "2024-05-16T12:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.196900", + "Timestamp": "2024-05-16T12:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.179900", + "Timestamp": "2024-05-16T12:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.071900", + "Timestamp": "2024-05-16T12:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.054900", + "Timestamp": "2024-05-16T12:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.718600", + "Timestamp": "2024-05-16T12:16:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.713600", + "Timestamp": "2024-05-16T12:16:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.588600", + "Timestamp": "2024-05-16T12:16:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.770900", + "Timestamp": "2024-05-16T12:16:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.487200", + "Timestamp": "2024-05-16T12:15:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.482200", + "Timestamp": "2024-05-16T12:15:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.357200", + "Timestamp": "2024-05-16T12:15:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.874600", + "Timestamp": "2024-05-16T12:15:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.344200", + "Timestamp": "2024-05-16T12:15:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.339200", + "Timestamp": "2024-05-16T12:15:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.214200", + "Timestamp": "2024-05-16T12:15:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.411000", + "Timestamp": "2024-05-16T12:15:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.406000", + "Timestamp": "2024-05-16T12:15:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.281000", + "Timestamp": "2024-05-16T12:15:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T12:15:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088800", + "Timestamp": "2024-05-16T12:15:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031800", + "Timestamp": "2024-05-16T12:15:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.951600", + "Timestamp": "2024-05-16T12:15:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.009200", + "Timestamp": "2024-05-16T12:15:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.004200", + "Timestamp": "2024-05-16T12:15:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.879200", + "Timestamp": "2024-05-16T12:15:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214800", + "Timestamp": "2024-05-16T12:15:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.738900", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.733900", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.608900", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.220700", + "Timestamp": "2024-05-16T12:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190700", + "Timestamp": "2024-05-16T12:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090700", + "Timestamp": "2024-05-16T12:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.710000", + "Timestamp": "2024-05-16T12:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.470600", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.440600", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.340600", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107900", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047900", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.054900", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.049900", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.924900", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.017300", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.203900", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173900", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073900", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.276800", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.271800", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146800", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.360600", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.582000", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.577000", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.452000", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.426100", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.221100", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.216100", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091100", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114700", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314000", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.309000", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184000", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.433900", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.305200", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.275200", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175200", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.111100", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.106100", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.981100", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235400", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.882300", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144200", + "Timestamp": "2024-05-16T12:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.184200", + "Timestamp": "2024-05-16T12:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084200", + "Timestamp": "2024-05-16T12:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121700", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065400", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.928900", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.451700", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.446700", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.321700", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.342100", + "Timestamp": "2024-05-16T12:01:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.337100", + "Timestamp": "2024-05-16T12:01:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.212100", + "Timestamp": "2024-05-16T12:01:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131500", + "Timestamp": "2024-05-16T12:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.171500", + "Timestamp": "2024-05-16T12:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071500", + "Timestamp": "2024-05-16T12:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089600", + "Timestamp": "2024-05-16T12:01:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129600", + "Timestamp": "2024-05-16T12:01:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029600", + "Timestamp": "2024-05-16T12:01:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "11.229700", + "Timestamp": "2024-05-16T12:01:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "11.224700", + "Timestamp": "2024-05-16T12:01:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "11.099700", + "Timestamp": "2024-05-16T12:01:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.427600", + "Timestamp": "2024-05-16T12:01:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T12:01:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099000", + "Timestamp": "2024-05-16T12:01:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043000", + "Timestamp": "2024-05-16T12:01:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.492700", + "Timestamp": "2024-05-16T12:00:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.233200", + "Timestamp": "2024-05-16T12:00:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.518200", + "Timestamp": "2024-05-16T12:00:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.488200", + "Timestamp": "2024-05-16T12:00:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.388200", + "Timestamp": "2024-05-16T12:00:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.187200", + "Timestamp": "2024-05-16T12:00:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157200", + "Timestamp": "2024-05-16T12:00:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057200", + "Timestamp": "2024-05-16T12:00:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T12:00:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147700", + "Timestamp": "2024-05-16T12:00:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047700", + "Timestamp": "2024-05-16T12:00:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.128100", + "Timestamp": "2024-05-16T12:00:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.349200", + "Timestamp": "2024-05-16T12:00:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.344200", + "Timestamp": "2024-05-16T12:00:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219200", + "Timestamp": "2024-05-16T12:00:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.043800", + "Timestamp": "2024-05-16T12:00:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.226000", + "Timestamp": "2024-05-16T11:46:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.222000", + "Timestamp": "2024-05-16T11:46:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.166000", + "Timestamp": "2024-05-16T11:46:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.711900", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.706900", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.581900", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.233900", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.228900", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.103900", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.685800", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.655800", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.555800", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.971500", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.966500", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.841500", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.064900", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.957900", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.536600", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.531600", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.406600", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.400200", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.370200", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.270200", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.480200", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.475200", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.350200", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.188500", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183500", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058500", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085100", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.081400", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025100", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.416700", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.411700", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.286700", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.750600", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.851700", + "Timestamp": "2024-05-16T11:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.006800", + "Timestamp": "2024-05-16T11:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.001800", + "Timestamp": "2024-05-16T11:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.876800", + "Timestamp": "2024-05-16T11:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.075100", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.070100", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.945100", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.571200", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.566200", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.441200", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.250000", + "Timestamp": "2024-05-16T11:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.480900", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.475900", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.350900", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.125900", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.120900", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.995900", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.951900", + "Timestamp": "2024-05-16T11:46:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.896600", + "Timestamp": "2024-05-16T11:46:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082700", + "Timestamp": "2024-05-16T11:45:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079000", + "Timestamp": "2024-05-16T11:45:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022700", + "Timestamp": "2024-05-16T11:45:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.213300", + "Timestamp": "2024-05-16T11:45:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.903400", + "Timestamp": "2024-05-16T11:45:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.873400", + "Timestamp": "2024-05-16T11:45:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.773400", + "Timestamp": "2024-05-16T11:45:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.299700", + "Timestamp": "2024-05-16T11:45:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.294700", + "Timestamp": "2024-05-16T11:45:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.169700", + "Timestamp": "2024-05-16T11:45:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.722500", + "Timestamp": "2024-05-16T11:45:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.219600", + "Timestamp": "2024-05-16T11:43:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.219600", + "Timestamp": "2024-05-16T11:43:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.613600", + "Timestamp": "2024-05-16T11:43:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.613600", + "Timestamp": "2024-05-16T11:43:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.608600", + "Timestamp": "2024-05-16T11:43:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.608600", + "Timestamp": "2024-05-16T11:43:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.483600", + "Timestamp": "2024-05-16T11:43:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.483600", + "Timestamp": "2024-05-16T11:43:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.662500", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.632500", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.532500", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.866600", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.053000", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.260700", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.255700", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130700", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092400", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088700", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032400", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.345700", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219900", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.568200", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.563200", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.438200", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078200", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074500", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018200", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.055700", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.050700", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.925700", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.785700", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.780700", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.655700", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.888000", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.883000", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.758000", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.727800", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.697800", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.597800", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.968700", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.197700", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167700", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067700", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.475800", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.470800", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.345800", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.373600", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.368600", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.243600", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.949300", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.944300", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.819300", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095000", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091000", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035000", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.727400", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.722400", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.597400", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.889200", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.634700", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.032400", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.027400", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.902400", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.347800", + "Timestamp": "2024-05-16T11:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.342800", + "Timestamp": "2024-05-16T11:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.217800", + "Timestamp": "2024-05-16T11:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.789200", + "Timestamp": "2024-05-16T11:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.784200", + "Timestamp": "2024-05-16T11:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.659200", + "Timestamp": "2024-05-16T11:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.544200", + "Timestamp": "2024-05-16T11:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.539200", + "Timestamp": "2024-05-16T11:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.414200", + "Timestamp": "2024-05-16T11:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.753500", + "Timestamp": "2024-05-16T11:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.748500", + "Timestamp": "2024-05-16T11:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.623500", + "Timestamp": "2024-05-16T11:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.248900", + "Timestamp": "2024-05-16T11:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.555300", + "Timestamp": "2024-05-16T11:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.950500", + "Timestamp": "2024-05-16T11:31:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.945500", + "Timestamp": "2024-05-16T11:31:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.820500", + "Timestamp": "2024-05-16T11:31:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.960800", + "Timestamp": "2024-05-16T11:31:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.955800", + "Timestamp": "2024-05-16T11:31:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.830800", + "Timestamp": "2024-05-16T11:31:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.562600", + "Timestamp": "2024-05-16T11:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093800", + "Timestamp": "2024-05-16T11:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090100", + "Timestamp": "2024-05-16T11:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033800", + "Timestamp": "2024-05-16T11:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.573000", + "Timestamp": "2024-05-16T11:31:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.543000", + "Timestamp": "2024-05-16T11:31:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.443000", + "Timestamp": "2024-05-16T11:31:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362500", + "Timestamp": "2024-05-16T11:31:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.357500", + "Timestamp": "2024-05-16T11:31:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.232500", + "Timestamp": "2024-05-16T11:31:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.987400", + "Timestamp": "2024-05-16T11:30:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.634300", + "Timestamp": "2024-05-16T11:30:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.629300", + "Timestamp": "2024-05-16T11:30:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.504300", + "Timestamp": "2024-05-16T11:30:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.844600", + "Timestamp": "2024-05-16T11:30:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.839600", + "Timestamp": "2024-05-16T11:30:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.714600", + "Timestamp": "2024-05-16T11:30:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.731100", + "Timestamp": "2024-05-16T11:30:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.904600", + "Timestamp": "2024-05-16T11:30:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.743100", + "Timestamp": "2024-05-16T11:30:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.738100", + "Timestamp": "2024-05-16T11:30:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.613100", + "Timestamp": "2024-05-16T11:30:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110400", + "Timestamp": "2024-05-16T11:30:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106700", + "Timestamp": "2024-05-16T11:30:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050400", + "Timestamp": "2024-05-16T11:30:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.931700", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.901700", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.801700", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132200", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128200", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072200", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.392300", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.362300", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.262300", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.576500", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.848300", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.507100", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.180100", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.902200", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.634700", + "Timestamp": "2024-05-16T11:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.629700", + "Timestamp": "2024-05-16T11:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.504700", + "Timestamp": "2024-05-16T11:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.255600", + "Timestamp": "2024-05-16T11:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.890900", + "Timestamp": "2024-05-16T11:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090000", + "Timestamp": "2024-05-16T11:16:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086300", + "Timestamp": "2024-05-16T11:16:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030000", + "Timestamp": "2024-05-16T11:16:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.562100", + "Timestamp": "2024-05-16T11:16:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.557100", + "Timestamp": "2024-05-16T11:16:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.432100", + "Timestamp": "2024-05-16T11:16:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.557100", + "Timestamp": "2024-05-16T11:16:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.481000", + "Timestamp": "2024-05-16T11:16:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.476000", + "Timestamp": "2024-05-16T11:16:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.351000", + "Timestamp": "2024-05-16T11:16:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.610700", + "Timestamp": "2024-05-16T11:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.605700", + "Timestamp": "2024-05-16T11:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.480700", + "Timestamp": "2024-05-16T11:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090300", + "Timestamp": "2024-05-16T11:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086600", + "Timestamp": "2024-05-16T11:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030300", + "Timestamp": "2024-05-16T11:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-16T11:16:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-16T11:16:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053000", + "Timestamp": "2024-05-16T11:16:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.631400", + "Timestamp": "2024-05-16T11:15:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.626400", + "Timestamp": "2024-05-16T11:15:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.501400", + "Timestamp": "2024-05-16T11:15:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.549500", + "Timestamp": "2024-05-16T11:15:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-16T11:15:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T11:15:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046900", + "Timestamp": "2024-05-16T11:15:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.555500", + "Timestamp": "2024-05-16T11:15:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.550500", + "Timestamp": "2024-05-16T11:15:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.425500", + "Timestamp": "2024-05-16T11:15:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.452200", + "Timestamp": "2024-05-16T11:15:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.493200", + "Timestamp": "2024-05-16T11:15:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.295400", + "Timestamp": "2024-05-16T11:15:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.265400", + "Timestamp": "2024-05-16T11:15:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.165400", + "Timestamp": "2024-05-16T11:15:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.293700", + "Timestamp": "2024-05-16T11:15:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065600", + "Timestamp": "2024-05-16T11:15:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.036600", + "Timestamp": "2024-05-16T11:15:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005600", + "Timestamp": "2024-05-16T11:15:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.839800", + "Timestamp": "2024-05-16T11:15:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.834800", + "Timestamp": "2024-05-16T11:15:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.709800", + "Timestamp": "2024-05-16T11:15:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.369900", + "Timestamp": "2024-05-16T11:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.364900", + "Timestamp": "2024-05-16T11:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.239900", + "Timestamp": "2024-05-16T11:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.864800", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.859800", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.734800", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082900", + "Timestamp": "2024-05-16T11:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079200", + "Timestamp": "2024-05-16T11:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022900", + "Timestamp": "2024-05-16T11:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092300", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088600", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032300", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.948700", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.943700", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.818700", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.243000", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.238000", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.911000", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.101200", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.096200", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.971200", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.211600", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.181600", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.081600", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221400", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.426900", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.822600", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.792600", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.692600", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.810200", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.505100", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.207900", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.202900", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.077900", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.502500", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.497500", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.372500", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.959600", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.040600", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.035600", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.910600", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.203300", + "Timestamp": "2024-05-16T11:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.198300", + "Timestamp": "2024-05-16T11:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.073300", + "Timestamp": "2024-05-16T11:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.797800", + "Timestamp": "2024-05-16T11:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.780900", + "Timestamp": "2024-05-16T11:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138800", + "Timestamp": "2024-05-16T11:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135100", + "Timestamp": "2024-05-16T11:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078800", + "Timestamp": "2024-05-16T11:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.799500", + "Timestamp": "2024-05-16T11:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.769500", + "Timestamp": "2024-05-16T11:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.669500", + "Timestamp": "2024-05-16T11:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062000", + "Timestamp": "2024-05-16T11:01:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002000", + "Timestamp": "2024-05-16T11:01:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002000", + "Timestamp": "2024-05-16T11:01:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Windows", + "SpotPrice": "13.066500", + "Timestamp": "2024-05-16T11:01:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081100", + "Timestamp": "2024-05-16T11:01:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077400", + "Timestamp": "2024-05-16T11:01:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021100", + "Timestamp": "2024-05-16T11:01:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.034200", + "Timestamp": "2024-05-16T11:01:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.029200", + "Timestamp": "2024-05-16T11:01:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.904200", + "Timestamp": "2024-05-16T11:01:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-16T11:00:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113200", + "Timestamp": "2024-05-16T11:00:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056900", + "Timestamp": "2024-05-16T11:00:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.020400", + "Timestamp": "2024-05-16T11:00:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.015400", + "Timestamp": "2024-05-16T11:00:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.890400", + "Timestamp": "2024-05-16T11:00:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.586400", + "Timestamp": "2024-05-16T11:00:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.346000", + "Timestamp": "2024-05-16T11:00:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.341000", + "Timestamp": "2024-05-16T11:00:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.216000", + "Timestamp": "2024-05-16T11:00:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.240100", + "Timestamp": "2024-05-16T11:00:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.740700", + "Timestamp": "2024-05-16T11:00:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.710700", + "Timestamp": "2024-05-16T11:00:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.610700", + "Timestamp": "2024-05-16T11:00:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.186600", + "Timestamp": "2024-05-16T11:00:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.181600", + "Timestamp": "2024-05-16T11:00:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.056600", + "Timestamp": "2024-05-16T11:00:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.309400", + "Timestamp": "2024-05-16T11:00:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.219600", + "Timestamp": "2024-05-16T10:53:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.219600", + "Timestamp": "2024-05-16T10:53:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.613600", + "Timestamp": "2024-05-16T10:53:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.613600", + "Timestamp": "2024-05-16T10:53:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.608600", + "Timestamp": "2024-05-16T10:53:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.608600", + "Timestamp": "2024-05-16T10:53:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.483600", + "Timestamp": "2024-05-16T10:53:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.483600", + "Timestamp": "2024-05-16T10:53:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.031300", + "Timestamp": "2024-05-16T10:53:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.026300", + "Timestamp": "2024-05-16T10:53:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.901300", + "Timestamp": "2024-05-16T10:53:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117500", + "Timestamp": "2024-05-16T10:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157500", + "Timestamp": "2024-05-16T10:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057500", + "Timestamp": "2024-05-16T10:46:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.844100", + "Timestamp": "2024-05-16T10:46:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090200", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086500", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030200", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.500500", + "Timestamp": "2024-05-16T10:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.665400", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.450600", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.257900", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.227900", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127900", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.614800", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.945900", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.915900", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.815900", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.892100", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.887100", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.762100", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.774500", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113500", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.905300", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.900300", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.775300", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.102500", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.097500", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.972500", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.421900", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.801100", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.796100", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.671100", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.798900", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.768900", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.668900", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089500", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085800", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029500", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.749000", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.744000", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.619000", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.124500", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.119500", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.994500", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.706400", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.701400", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.576400", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.506200", + "Timestamp": "2024-05-16T10:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146300", + "Timestamp": "2024-05-16T10:46:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142300", + "Timestamp": "2024-05-16T10:46:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086300", + "Timestamp": "2024-05-16T10:46:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.327200", + "Timestamp": "2024-05-16T10:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.368800", + "Timestamp": "2024-05-16T10:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.363800", + "Timestamp": "2024-05-16T10:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.238800", + "Timestamp": "2024-05-16T10:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.588500", + "Timestamp": "2024-05-16T10:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.391500", + "Timestamp": "2024-05-16T10:46:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.361500", + "Timestamp": "2024-05-16T10:46:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.261500", + "Timestamp": "2024-05-16T10:46:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.712400", + "Timestamp": "2024-05-16T10:45:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.707400", + "Timestamp": "2024-05-16T10:45:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.582400", + "Timestamp": "2024-05-16T10:45:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.420600", + "Timestamp": "2024-05-16T10:45:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.805700", + "Timestamp": "2024-05-16T10:45:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.891700", + "Timestamp": "2024-05-16T10:45:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.886700", + "Timestamp": "2024-05-16T10:45:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.761700", + "Timestamp": "2024-05-16T10:45:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.930200", + "Timestamp": "2024-05-16T10:45:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100700", + "Timestamp": "2024-05-16T10:45:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140700", + "Timestamp": "2024-05-16T10:45:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040700", + "Timestamp": "2024-05-16T10:45:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.304300", + "Timestamp": "2024-05-16T10:45:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213500", + "Timestamp": "2024-05-16T10:43:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.458900", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.428900", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.328900", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.357600", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.352600", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.227600", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.798800", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.793800", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.668800", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.304500", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.299500", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.174500", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118100", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114400", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058100", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.520100", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.376000", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.350300", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.345300", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.220300", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.443200", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.413200", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.313200", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.801300", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114700", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054700", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.691500", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.686500", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.561500", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095500", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035500", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.243200", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093500", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089500", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033500", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.140900", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.574600", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.092900", + "Timestamp": "2024-05-16T10:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T10:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-16T10:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044200", + "Timestamp": "2024-05-16T10:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.221400", + "Timestamp": "2024-05-16T10:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.216400", + "Timestamp": "2024-05-16T10:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091400", + "Timestamp": "2024-05-16T10:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.232800", + "Timestamp": "2024-05-16T10:31:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.227800", + "Timestamp": "2024-05-16T10:31:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T10:31:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.831200", + "Timestamp": "2024-05-16T10:31:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.826200", + "Timestamp": "2024-05-16T10:31:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.701200", + "Timestamp": "2024-05-16T10:31:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.768900", + "Timestamp": "2024-05-16T10:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.763900", + "Timestamp": "2024-05-16T10:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.638900", + "Timestamp": "2024-05-16T10:31:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.615200", + "Timestamp": "2024-05-16T10:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.610200", + "Timestamp": "2024-05-16T10:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.485200", + "Timestamp": "2024-05-16T10:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.312000", + "Timestamp": "2024-05-16T10:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.307000", + "Timestamp": "2024-05-16T10:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.182000", + "Timestamp": "2024-05-16T10:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.806100", + "Timestamp": "2024-05-16T10:30:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.573400", + "Timestamp": "2024-05-16T10:30:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.568400", + "Timestamp": "2024-05-16T10:30:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.443400", + "Timestamp": "2024-05-16T10:30:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.439300", + "Timestamp": "2024-05-16T10:30:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.434300", + "Timestamp": "2024-05-16T10:30:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.309300", + "Timestamp": "2024-05-16T10:30:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.291400", + "Timestamp": "2024-05-16T10:30:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.286400", + "Timestamp": "2024-05-16T10:30:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.161400", + "Timestamp": "2024-05-16T10:30:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.855500", + "Timestamp": "2024-05-16T10:30:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.940600", + "Timestamp": "2024-05-16T10:30:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.935600", + "Timestamp": "2024-05-16T10:30:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.810600", + "Timestamp": "2024-05-16T10:30:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.389200", + "Timestamp": "2024-05-16T10:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.359200", + "Timestamp": "2024-05-16T10:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.259200", + "Timestamp": "2024-05-16T10:16:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.413100", + "Timestamp": "2024-05-16T10:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.745400", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.740400", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.615400", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.922200", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.460200", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.044600", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.039600", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.914600", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.257400", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.252400", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127400", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.449500", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.525700", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.400300", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.370300", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.270300", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.740700", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.540200", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.473500", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.468500", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.343500", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.359400", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.354400", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.229400", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.859300", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.966500", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.211500", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.206500", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081500", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.858900", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.338800", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.333800", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.208800", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.737000", + "Timestamp": "2024-05-16T10:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.050500", + "Timestamp": "2024-05-16T10:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.045500", + "Timestamp": "2024-05-16T10:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.920500", + "Timestamp": "2024-05-16T10:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.050300", + "Timestamp": "2024-05-16T10:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156600", + "Timestamp": "2024-05-16T10:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152600", + "Timestamp": "2024-05-16T10:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096600", + "Timestamp": "2024-05-16T10:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090600", + "Timestamp": "2024-05-16T10:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086600", + "Timestamp": "2024-05-16T10:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030600", + "Timestamp": "2024-05-16T10:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.413500", + "Timestamp": "2024-05-16T10:16:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.408500", + "Timestamp": "2024-05-16T10:16:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.283500", + "Timestamp": "2024-05-16T10:16:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.738500", + "Timestamp": "2024-05-16T10:16:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.531500", + "Timestamp": "2024-05-16T10:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.526500", + "Timestamp": "2024-05-16T10:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.401500", + "Timestamp": "2024-05-16T10:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.586900", + "Timestamp": "2024-05-16T10:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.409800", + "Timestamp": "2024-05-16T10:16:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.113500", + "Timestamp": "2024-05-16T10:16:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.083500", + "Timestamp": "2024-05-16T10:16:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.983500", + "Timestamp": "2024-05-16T10:16:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.885600", + "Timestamp": "2024-05-16T10:15:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133500", + "Timestamp": "2024-05-16T10:15:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129500", + "Timestamp": "2024-05-16T10:15:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073500", + "Timestamp": "2024-05-16T10:15:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.155300", + "Timestamp": "2024-05-16T10:15:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.150300", + "Timestamp": "2024-05-16T10:15:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.025300", + "Timestamp": "2024-05-16T10:15:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T10:15:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099800", + "Timestamp": "2024-05-16T10:15:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043800", + "Timestamp": "2024-05-16T10:15:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219600", + "Timestamp": "2024-05-16T10:15:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.720400", + "Timestamp": "2024-05-16T10:15:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.715400", + "Timestamp": "2024-05-16T10:15:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.590400", + "Timestamp": "2024-05-16T10:15:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.690500", + "Timestamp": "2024-05-16T10:15:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.660500", + "Timestamp": "2024-05-16T10:15:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.560500", + "Timestamp": "2024-05-16T10:15:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123000", + "Timestamp": "2024-05-16T10:15:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119300", + "Timestamp": "2024-05-16T10:15:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063000", + "Timestamp": "2024-05-16T10:15:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.778700", + "Timestamp": "2024-05-16T10:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.773700", + "Timestamp": "2024-05-16T10:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.648700", + "Timestamp": "2024-05-16T10:01:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.970300", + "Timestamp": "2024-05-16T10:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.377800", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372800", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.247800", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.042600", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.245800", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.503400", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.481800", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.784100", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.779100", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.654100", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.112600", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.107600", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.982600", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.725600", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.698900", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.730900", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.700900", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.600900", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.655800", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.650800", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.525800", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.890800", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.855000", + "Timestamp": "2024-05-16T10:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.532400", + "Timestamp": "2024-05-16T10:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.099400", + "Timestamp": "2024-05-16T10:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.094400", + "Timestamp": "2024-05-16T10:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.969400", + "Timestamp": "2024-05-16T10:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.497500", + "Timestamp": "2024-05-16T10:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.560900", + "Timestamp": "2024-05-16T10:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.819200", + "Timestamp": "2024-05-16T10:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.814200", + "Timestamp": "2024-05-16T10:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.689200", + "Timestamp": "2024-05-16T10:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.668000", + "Timestamp": "2024-05-16T10:01:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.663000", + "Timestamp": "2024-05-16T10:01:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.538000", + "Timestamp": "2024-05-16T10:01:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.727000", + "Timestamp": "2024-05-16T10:00:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.697000", + "Timestamp": "2024-05-16T10:00:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.597000", + "Timestamp": "2024-05-16T10:00:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.372200", + "Timestamp": "2024-05-16T10:00:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.367200", + "Timestamp": "2024-05-16T10:00:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242200", + "Timestamp": "2024-05-16T10:00:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120100", + "Timestamp": "2024-05-16T10:00:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-16T10:00:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060100", + "Timestamp": "2024-05-16T10:00:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T09:55:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T09:55:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T09:55:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.064200", + "Timestamp": "2024-05-16T09:53:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.064200", + "Timestamp": "2024-05-16T09:53:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.059200", + "Timestamp": "2024-05-16T09:53:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.059200", + "Timestamp": "2024-05-16T09:53:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.934200", + "Timestamp": "2024-05-16T09:53:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.934200", + "Timestamp": "2024-05-16T09:53:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.822200", + "Timestamp": "2024-05-16T09:53:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.491300", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.486300", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.361300", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.742700", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.318400", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.288400", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.188400", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.041600", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431400", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.814600", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.784600", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.684600", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.470400", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.870400", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261100", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.256100", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131100", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.664100", + "Timestamp": "2024-05-16T09:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.659100", + "Timestamp": "2024-05-16T09:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.534100", + "Timestamp": "2024-05-16T09:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.885700", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.669900", + "Timestamp": "2024-05-16T09:46:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.664900", + "Timestamp": "2024-05-16T09:46:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.539900", + "Timestamp": "2024-05-16T09:46:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.265400", + "Timestamp": "2024-05-16T09:46:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.260400", + "Timestamp": "2024-05-16T09:46:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.135400", + "Timestamp": "2024-05-16T09:46:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.558800", + "Timestamp": "2024-05-16T09:46:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.458600", + "Timestamp": "2024-05-16T09:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.502700", + "Timestamp": "2024-05-16T09:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T09:46:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-16T09:46:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056600", + "Timestamp": "2024-05-16T09:46:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.335800", + "Timestamp": "2024-05-16T09:46:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.335200", + "Timestamp": "2024-05-16T09:46:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.305800", + "Timestamp": "2024-05-16T09:46:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.305200", + "Timestamp": "2024-05-16T09:46:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.205800", + "Timestamp": "2024-05-16T09:46:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.205200", + "Timestamp": "2024-05-16T09:46:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.071900", + "Timestamp": "2024-05-16T09:46:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.041900", + "Timestamp": "2024-05-16T09:46:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.941900", + "Timestamp": "2024-05-16T09:46:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.902500", + "Timestamp": "2024-05-16T09:45:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.897500", + "Timestamp": "2024-05-16T09:45:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.772500", + "Timestamp": "2024-05-16T09:45:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.578800", + "Timestamp": "2024-05-16T09:45:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.548800", + "Timestamp": "2024-05-16T09:45:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.448800", + "Timestamp": "2024-05-16T09:45:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.699900", + "Timestamp": "2024-05-16T09:45:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.694900", + "Timestamp": "2024-05-16T09:45:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.569900", + "Timestamp": "2024-05-16T09:45:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097400", + "Timestamp": "2024-05-16T09:45:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137400", + "Timestamp": "2024-05-16T09:45:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037400", + "Timestamp": "2024-05-16T09:45:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.925000", + "Timestamp": "2024-05-16T09:45:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.967300", + "Timestamp": "2024-05-16T09:45:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.962300", + "Timestamp": "2024-05-16T09:45:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.837300", + "Timestamp": "2024-05-16T09:45:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.337900", + "Timestamp": "2024-05-16T09:43:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.377900", + "Timestamp": "2024-05-16T09:43:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.277900", + "Timestamp": "2024-05-16T09:43:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.463300", + "Timestamp": "2024-05-16T09:43:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.602300", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.658100", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.597300", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.653100", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.472300", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.528100", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.889600", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.540300", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.774000", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.744000", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.644000", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.113500", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.108500", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.983500", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.192600", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.187600", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062600", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.096300", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.091300", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.966300", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.514300", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.509300", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.384300", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.288900", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299600", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.283900", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294600", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158900", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169600", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.265100", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.260100", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.135100", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.371300", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.366300", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.241300", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091700", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087700", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031700", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.854200", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.824200", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.724200", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.255400", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.225400", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.171300", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.166300", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.041300", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.478900", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.906300", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.901300", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.776300", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127600", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123900", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067600", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.248100", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.243100", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118100", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141500", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137500", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081500", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.489200", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116800", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.695300", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131700", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127700", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071700", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.085400", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.080400", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.955400", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.951700", + "Timestamp": "2024-05-16T09:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.599200", + "Timestamp": "2024-05-16T09:31:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.247800", + "Timestamp": "2024-05-16T09:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.242800", + "Timestamp": "2024-05-16T09:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.117800", + "Timestamp": "2024-05-16T09:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "17.027400", + "Timestamp": "2024-05-16T09:30:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.958400", + "Timestamp": "2024-05-16T09:30:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.305600", + "Timestamp": "2024-05-16T09:30:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.275600", + "Timestamp": "2024-05-16T09:30:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175600", + "Timestamp": "2024-05-16T09:30:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.283300", + "Timestamp": "2024-05-16T09:30:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.278300", + "Timestamp": "2024-05-16T09:30:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.153300", + "Timestamp": "2024-05-16T09:30:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.242400", + "Timestamp": "2024-05-16T09:30:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.237400", + "Timestamp": "2024-05-16T09:30:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.112400", + "Timestamp": "2024-05-16T09:30:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.017100", + "Timestamp": "2024-05-16T09:30:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.012100", + "Timestamp": "2024-05-16T09:30:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.887100", + "Timestamp": "2024-05-16T09:30:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.029100", + "Timestamp": "2024-05-16T09:30:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.024100", + "Timestamp": "2024-05-16T09:30:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.899100", + "Timestamp": "2024-05-16T09:30:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354900", + "Timestamp": "2024-05-16T09:30:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349900", + "Timestamp": "2024-05-16T09:30:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224900", + "Timestamp": "2024-05-16T09:30:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.632400", + "Timestamp": "2024-05-16T09:30:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.627400", + "Timestamp": "2024-05-16T09:30:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.502400", + "Timestamp": "2024-05-16T09:30:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.423500", + "Timestamp": "2024-05-16T09:30:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.418500", + "Timestamp": "2024-05-16T09:30:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.293500", + "Timestamp": "2024-05-16T09:30:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.816700", + "Timestamp": "2024-05-16T09:30:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.811700", + "Timestamp": "2024-05-16T09:30:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.686700", + "Timestamp": "2024-05-16T09:30:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.687400", + "Timestamp": "2024-05-16T09:30:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.657400", + "Timestamp": "2024-05-16T09:30:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.557400", + "Timestamp": "2024-05-16T09:30:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.852000", + "Timestamp": "2024-05-16T09:30:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.856800", + "Timestamp": "2024-05-16T09:30:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.851800", + "Timestamp": "2024-05-16T09:30:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.726800", + "Timestamp": "2024-05-16T09:30:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.840600", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.810600", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.710600", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.338800", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.333800", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.208800", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.085300", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.080300", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.955300", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.265000", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.477700", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.472700", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.347700", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.840600", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.835600", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.710600", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.891400", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.110800", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.080800", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.980800", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.027300", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.022300", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.897300", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.895400", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.878100", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.873100", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.748100", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.420300", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.625500", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.964800", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.303600", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324800", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319800", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194800", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.257200", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.252200", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127200", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121700", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065400", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.996500", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.633200", + "Timestamp": "2024-05-16T09:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.692800", + "Timestamp": "2024-05-16T09:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.628200", + "Timestamp": "2024-05-16T09:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.687800", + "Timestamp": "2024-05-16T09:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.503200", + "Timestamp": "2024-05-16T09:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.562800", + "Timestamp": "2024-05-16T09:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210000", + "Timestamp": "2024-05-16T09:16:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-16T09:16:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091900", + "Timestamp": "2024-05-16T09:16:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035900", + "Timestamp": "2024-05-16T09:16:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.495500", + "Timestamp": "2024-05-16T09:16:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.971700", + "Timestamp": "2024-05-16T09:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T09:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-16T09:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046300", + "Timestamp": "2024-05-16T09:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.611000", + "Timestamp": "2024-05-16T09:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.383000", + "Timestamp": "2024-05-16T09:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.378000", + "Timestamp": "2024-05-16T09:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.253000", + "Timestamp": "2024-05-16T09:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.017400", + "Timestamp": "2024-05-16T09:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.012400", + "Timestamp": "2024-05-16T09:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.887400", + "Timestamp": "2024-05-16T09:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330600", + "Timestamp": "2024-05-16T09:15:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.300600", + "Timestamp": "2024-05-16T09:15:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200600", + "Timestamp": "2024-05-16T09:15:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "12.539300", + "Timestamp": "2024-05-16T09:15:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "12.509300", + "Timestamp": "2024-05-16T09:15:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "12.409300", + "Timestamp": "2024-05-16T09:15:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.000300", + "Timestamp": "2024-05-16T09:15:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.995300", + "Timestamp": "2024-05-16T09:15:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.870300", + "Timestamp": "2024-05-16T09:15:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.061400", + "Timestamp": "2024-05-16T09:15:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.546900", + "Timestamp": "2024-05-16T09:15:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.751300", + "Timestamp": "2024-05-16T09:15:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.831400", + "Timestamp": "2024-05-16T09:15:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.826400", + "Timestamp": "2024-05-16T09:15:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.701400", + "Timestamp": "2024-05-16T09:15:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.890700", + "Timestamp": "2024-05-16T09:15:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.276500", + "Timestamp": "2024-05-16T09:01:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.467800", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.437800", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.337800", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.979800", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.974800", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.849800", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.257000", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.835900", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.830900", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.705900", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.445000", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.457100", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.974800", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.746500", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.399600", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.394600", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.269600", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031800", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.843400", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.838400", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.713400", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.971800", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.418800", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.388800", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.288800", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.251300", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.246300", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121300", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.327000", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.322000", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.197000", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208400", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.527900", + "Timestamp": "2024-05-16T09:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.203400", + "Timestamp": "2024-05-16T09:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.198400", + "Timestamp": "2024-05-16T09:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.073400", + "Timestamp": "2024-05-16T09:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138800", + "Timestamp": "2024-05-16T09:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135100", + "Timestamp": "2024-05-16T09:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078800", + "Timestamp": "2024-05-16T09:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.698500", + "Timestamp": "2024-05-16T09:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.693500", + "Timestamp": "2024-05-16T09:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.568500", + "Timestamp": "2024-05-16T09:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.515400", + "Timestamp": "2024-05-16T09:01:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.510400", + "Timestamp": "2024-05-16T09:01:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.385400", + "Timestamp": "2024-05-16T09:01:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.941200", + "Timestamp": "2024-05-16T09:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.936200", + "Timestamp": "2024-05-16T09:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.811200", + "Timestamp": "2024-05-16T09:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129100", + "Timestamp": "2024-05-16T09:01:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T09:01:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069100", + "Timestamp": "2024-05-16T09:01:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.672800", + "Timestamp": "2024-05-16T09:00:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.618800", + "Timestamp": "2024-05-16T09:00:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.588800", + "Timestamp": "2024-05-16T09:00:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.488800", + "Timestamp": "2024-05-16T09:00:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.875600", + "Timestamp": "2024-05-16T09:00:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.220400", + "Timestamp": "2024-05-16T09:00:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.216400", + "Timestamp": "2024-05-16T09:00:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.160400", + "Timestamp": "2024-05-16T09:00:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215600", + "Timestamp": "2024-05-16T09:00:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005800", + "Timestamp": "2024-05-16T08:55:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005600", + "Timestamp": "2024-05-16T08:55:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.255300", + "Timestamp": "2024-05-16T08:46:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.247900", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.200600", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.465300", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.101800", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.059500", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.029500", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.929500", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.781200", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.776200", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.651200", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.931100", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.893200", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.888200", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.763200", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.607300", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.577300", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.477300", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270500", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265500", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140500", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151200", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147200", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091200", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.447900", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.417900", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.317900", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106000", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102000", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046000", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.862900", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.857900", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.732900", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.489400", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.484400", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.359400", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.500000", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.929900", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127700", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123700", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067700", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.748200", + "Timestamp": "2024-05-16T08:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.216700", + "Timestamp": "2024-05-16T08:46:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.211700", + "Timestamp": "2024-05-16T08:46:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086700", + "Timestamp": "2024-05-16T08:46:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089700", + "Timestamp": "2024-05-16T08:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129700", + "Timestamp": "2024-05-16T08:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029700", + "Timestamp": "2024-05-16T08:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.987100", + "Timestamp": "2024-05-16T08:46:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.957100", + "Timestamp": "2024-05-16T08:46:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.857100", + "Timestamp": "2024-05-16T08:46:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.256300", + "Timestamp": "2024-05-16T08:45:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.251300", + "Timestamp": "2024-05-16T08:45:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T08:45:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.537800", + "Timestamp": "2024-05-16T08:45:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.532800", + "Timestamp": "2024-05-16T08:45:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.407800", + "Timestamp": "2024-05-16T08:45:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.589900", + "Timestamp": "2024-05-16T08:45:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.559900", + "Timestamp": "2024-05-16T08:45:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.459900", + "Timestamp": "2024-05-16T08:45:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.816800", + "Timestamp": "2024-05-16T08:45:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.329900", + "Timestamp": "2024-05-16T08:45:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324900", + "Timestamp": "2024-05-16T08:45:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199900", + "Timestamp": "2024-05-16T08:45:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.235000", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.230000", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "14.017700", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.905800", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.312700", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.452400", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.422400", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.322400", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.056400", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.130000", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.774000", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.769000", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.644000", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.863100", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.858100", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.733100", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.874200", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.477700", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.447700", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.347700", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.855600", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081000", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077300", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021000", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154300", + "Timestamp": "2024-05-16T08:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150300", + "Timestamp": "2024-05-16T08:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094300", + "Timestamp": "2024-05-16T08:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.240200", + "Timestamp": "2024-05-16T08:31:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.210200", + "Timestamp": "2024-05-16T08:31:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.110200", + "Timestamp": "2024-05-16T08:31:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.540800", + "Timestamp": "2024-05-16T08:31:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.535800", + "Timestamp": "2024-05-16T08:31:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.410800", + "Timestamp": "2024-05-16T08:31:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "11.247800", + "Timestamp": "2024-05-16T08:31:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "11.242800", + "Timestamp": "2024-05-16T08:31:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "11.117800", + "Timestamp": "2024-05-16T08:31:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082000", + "Timestamp": "2024-05-16T08:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078300", + "Timestamp": "2024-05-16T08:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022000", + "Timestamp": "2024-05-16T08:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.931700", + "Timestamp": "2024-05-16T08:31:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.926700", + "Timestamp": "2024-05-16T08:31:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.801700", + "Timestamp": "2024-05-16T08:31:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.525800", + "Timestamp": "2024-05-16T08:31:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.495800", + "Timestamp": "2024-05-16T08:31:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.395800", + "Timestamp": "2024-05-16T08:31:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.204800", + "Timestamp": "2024-05-16T08:31:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174800", + "Timestamp": "2024-05-16T08:31:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074800", + "Timestamp": "2024-05-16T08:31:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.274100", + "Timestamp": "2024-05-16T08:30:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269100", + "Timestamp": "2024-05-16T08:30:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144100", + "Timestamp": "2024-05-16T08:30:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.969200", + "Timestamp": "2024-05-16T08:30:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.951100", + "Timestamp": "2024-05-16T08:30:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298000", + "Timestamp": "2024-05-16T08:30:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293000", + "Timestamp": "2024-05-16T08:30:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168000", + "Timestamp": "2024-05-16T08:30:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101800", + "Timestamp": "2024-05-16T08:30:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141800", + "Timestamp": "2024-05-16T08:30:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041800", + "Timestamp": "2024-05-16T08:30:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108300", + "Timestamp": "2024-05-16T08:30:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T08:30:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048300", + "Timestamp": "2024-05-16T08:30:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124700", + "Timestamp": "2024-05-16T08:16:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139900", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136200", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079900", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.357200", + "Timestamp": "2024-05-16T08:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.327200", + "Timestamp": "2024-05-16T08:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.227200", + "Timestamp": "2024-05-16T08:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.846000", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.276300", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.271300", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.146300", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.534900", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.529900", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.404900", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.750800", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.870300", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.840300", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.740300", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.476800", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.471800", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.346800", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.373900", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.368900", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.243900", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.960400", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.017600", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.012600", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.887600", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.849100", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.844100", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.719100", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.238900", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114700", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.842700", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.234300", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.229300", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104300", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135200", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131500", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075200", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.346100", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.341100", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.216100", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.333700", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.328700", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.203700", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.542000", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.537000", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.412000", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050500", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.728300", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.723300", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.598300", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.546200", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.541200", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.416200", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.211400", + "Timestamp": "2024-05-16T08:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.181400", + "Timestamp": "2024-05-16T08:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.081400", + "Timestamp": "2024-05-16T08:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176300", + "Timestamp": "2024-05-16T08:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.171300", + "Timestamp": "2024-05-16T08:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046300", + "Timestamp": "2024-05-16T08:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086800", + "Timestamp": "2024-05-16T08:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083100", + "Timestamp": "2024-05-16T08:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026800", + "Timestamp": "2024-05-16T08:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.657600", + "Timestamp": "2024-05-16T08:16:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.652600", + "Timestamp": "2024-05-16T08:16:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.527600", + "Timestamp": "2024-05-16T08:16:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.696000", + "Timestamp": "2024-05-16T08:16:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.691000", + "Timestamp": "2024-05-16T08:16:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.566000", + "Timestamp": "2024-05-16T08:16:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.416100", + "Timestamp": "2024-05-16T08:16:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.411100", + "Timestamp": "2024-05-16T08:16:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.286100", + "Timestamp": "2024-05-16T08:16:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.252900", + "Timestamp": "2024-05-16T08:15:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.247900", + "Timestamp": "2024-05-16T08:15:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.122900", + "Timestamp": "2024-05-16T08:15:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.694800", + "Timestamp": "2024-05-16T08:15:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.689800", + "Timestamp": "2024-05-16T08:15:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.564800", + "Timestamp": "2024-05-16T08:15:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.063000", + "Timestamp": "2024-05-16T08:15:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.611400", + "Timestamp": "2024-05-16T08:15:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.581400", + "Timestamp": "2024-05-16T08:15:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.481400", + "Timestamp": "2024-05-16T08:15:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.409200", + "Timestamp": "2024-05-16T08:15:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.946700", + "Timestamp": "2024-05-16T08:15:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.941700", + "Timestamp": "2024-05-16T08:15:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.816700", + "Timestamp": "2024-05-16T08:15:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.159500", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.877200", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.847200", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.747200", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.542700", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.537700", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.412700", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.065500", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.248300", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.218300", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118300", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.462700", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.369000", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.364000", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.239000", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.561800", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.556800", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.431800", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.838400", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.771300", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.234400", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.414900", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.154400", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.502600", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.472600", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.372600", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.446000", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.805600", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149000", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145000", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089000", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.671100", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.666100", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.541100", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.590700", + "Timestamp": "2024-05-16T08:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.585700", + "Timestamp": "2024-05-16T08:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.460700", + "Timestamp": "2024-05-16T08:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231700", + "Timestamp": "2024-05-16T08:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.958300", + "Timestamp": "2024-05-16T08:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.480000", + "Timestamp": "2024-05-16T08:01:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.585600", + "Timestamp": "2024-05-16T08:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.678700", + "Timestamp": "2024-05-16T08:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.580600", + "Timestamp": "2024-05-16T08:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.673700", + "Timestamp": "2024-05-16T08:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.455600", + "Timestamp": "2024-05-16T08:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.548700", + "Timestamp": "2024-05-16T08:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.260900", + "Timestamp": "2024-05-16T08:00:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.277300", + "Timestamp": "2024-05-16T08:00:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.255900", + "Timestamp": "2024-05-16T08:00:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.272300", + "Timestamp": "2024-05-16T08:00:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130900", + "Timestamp": "2024-05-16T08:00:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147300", + "Timestamp": "2024-05-16T08:00:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090300", + "Timestamp": "2024-05-16T08:00:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087300", + "Timestamp": "2024-05-16T08:00:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030300", + "Timestamp": "2024-05-16T08:00:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.056500", + "Timestamp": "2024-05-16T08:00:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.051500", + "Timestamp": "2024-05-16T08:00:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.926500", + "Timestamp": "2024-05-16T08:00:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.376500", + "Timestamp": "2024-05-16T08:00:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.371500", + "Timestamp": "2024-05-16T08:00:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.246500", + "Timestamp": "2024-05-16T08:00:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109100", + "Timestamp": "2024-05-16T08:00:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149100", + "Timestamp": "2024-05-16T08:00:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049100", + "Timestamp": "2024-05-16T08:00:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314800", + "Timestamp": "2024-05-16T08:00:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.309800", + "Timestamp": "2024-05-16T08:00:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184800", + "Timestamp": "2024-05-16T08:00:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.078600", + "Timestamp": "2024-05-16T07:46:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075100", + "Timestamp": "2024-05-16T07:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115100", + "Timestamp": "2024-05-16T07:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015100", + "Timestamp": "2024-05-16T07:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.475300", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.338700", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.308700", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.208700", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.347100", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.401100", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.396100", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.271100", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.975300", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082600", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078900", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022600", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.354400", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.679800", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.674800", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.549800", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.876800", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.451500", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.446500", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.321500", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119900", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116200", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059900", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.293500", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.288500", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.163500", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.104100", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.534800", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.529800", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.404800", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070600", + "Timestamp": "2024-05-16T07:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066900", + "Timestamp": "2024-05-16T07:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010600", + "Timestamp": "2024-05-16T07:46:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116700", + "Timestamp": "2024-05-16T07:46:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124200", + "Timestamp": "2024-05-16T07:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120200", + "Timestamp": "2024-05-16T07:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064200", + "Timestamp": "2024-05-16T07:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.577700", + "Timestamp": "2024-05-16T07:45:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.547700", + "Timestamp": "2024-05-16T07:45:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.447700", + "Timestamp": "2024-05-16T07:45:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.587500", + "Timestamp": "2024-05-16T07:45:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.069900", + "Timestamp": "2024-05-16T07:45:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.632100", + "Timestamp": "2024-05-16T07:45:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.602100", + "Timestamp": "2024-05-16T07:45:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.502100", + "Timestamp": "2024-05-16T07:45:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.822500", + "Timestamp": "2024-05-16T07:45:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.792500", + "Timestamp": "2024-05-16T07:45:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.692500", + "Timestamp": "2024-05-16T07:45:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.564100", + "Timestamp": "2024-05-16T07:45:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.534100", + "Timestamp": "2024-05-16T07:45:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.434100", + "Timestamp": "2024-05-16T07:45:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.211700", + "Timestamp": "2024-05-16T07:45:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.206700", + "Timestamp": "2024-05-16T07:45:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081700", + "Timestamp": "2024-05-16T07:45:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.132900", + "Timestamp": "2024-05-16T07:45:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.127900", + "Timestamp": "2024-05-16T07:45:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.002900", + "Timestamp": "2024-05-16T07:45:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214500", + "Timestamp": "2024-05-16T07:45:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108800", + "Timestamp": "2024-05-16T07:32:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.227000", + "Timestamp": "2024-05-16T07:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.223000", + "Timestamp": "2024-05-16T07:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167000", + "Timestamp": "2024-05-16T07:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085400", + "Timestamp": "2024-05-16T07:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.081700", + "Timestamp": "2024-05-16T07:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025400", + "Timestamp": "2024-05-16T07:31:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.929900", + "Timestamp": "2024-05-16T07:31:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.924900", + "Timestamp": "2024-05-16T07:31:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.799900", + "Timestamp": "2024-05-16T07:31:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.454100", + "Timestamp": "2024-05-16T07:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085700", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082000", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025700", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.782900", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.018100", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.417500", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.268800", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.263800", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.138800", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079100", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075400", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019100", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.453400", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.535200", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144400", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140400", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084400", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.912900", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.446700", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.552100", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.428300", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.827700", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081600", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121600", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021600", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074700", + "Timestamp": "2024-05-16T07:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071000", + "Timestamp": "2024-05-16T07:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014700", + "Timestamp": "2024-05-16T07:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.537200", + "Timestamp": "2024-05-16T07:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.532200", + "Timestamp": "2024-05-16T07:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.407200", + "Timestamp": "2024-05-16T07:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.850300", + "Timestamp": "2024-05-16T07:31:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120500", + "Timestamp": "2024-05-16T07:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.443900", + "Timestamp": "2024-05-16T07:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.438900", + "Timestamp": "2024-05-16T07:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.313900", + "Timestamp": "2024-05-16T07:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.893800", + "Timestamp": "2024-05-16T07:31:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112700", + "Timestamp": "2024-05-16T07:31:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T07:31:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052700", + "Timestamp": "2024-05-16T07:31:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.426800", + "Timestamp": "2024-05-16T07:30:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.421800", + "Timestamp": "2024-05-16T07:30:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.296800", + "Timestamp": "2024-05-16T07:30:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.176800", + "Timestamp": "2024-05-16T07:30:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223400", + "Timestamp": "2024-05-16T07:30:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.081200", + "Timestamp": "2024-05-16T07:30:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.979500", + "Timestamp": "2024-05-16T07:30:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.076200", + "Timestamp": "2024-05-16T07:30:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.974500", + "Timestamp": "2024-05-16T07:30:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.951200", + "Timestamp": "2024-05-16T07:30:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.849500", + "Timestamp": "2024-05-16T07:30:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.048300", + "Timestamp": "2024-05-16T07:30:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.043300", + "Timestamp": "2024-05-16T07:30:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.918300", + "Timestamp": "2024-05-16T07:30:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.393300", + "Timestamp": "2024-05-16T07:30:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.363300", + "Timestamp": "2024-05-16T07:30:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.263300", + "Timestamp": "2024-05-16T07:30:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.898500", + "Timestamp": "2024-05-16T07:23:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.898500", + "Timestamp": "2024-05-16T07:23:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.457200", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.872300", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.867300", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.742300", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.321200", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.872100", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.842100", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.742100", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.768200", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.069600", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.635200", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119100", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115400", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059100", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.377200", + "Timestamp": "2024-05-16T07:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372200", + "Timestamp": "2024-05-16T07:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.247200", + "Timestamp": "2024-05-16T07:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130500", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126500", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070500", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140400", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136400", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080400", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102200", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098500", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042200", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.348300", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343300", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.218300", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.209300", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.204300", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079300", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.227200", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.848900", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.843900", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.718900", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.493700", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.488700", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.363700", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.873900", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.868900", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.743900", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.664300", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.681700", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.676700", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.551700", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.400100", + "Timestamp": "2024-05-16T07:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.370100", + "Timestamp": "2024-05-16T07:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.270100", + "Timestamp": "2024-05-16T07:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184700", + "Timestamp": "2024-05-16T07:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179700", + "Timestamp": "2024-05-16T07:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054700", + "Timestamp": "2024-05-16T07:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.899800", + "Timestamp": "2024-05-16T07:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.912900", + "Timestamp": "2024-05-16T07:16:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.907900", + "Timestamp": "2024-05-16T07:16:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.782900", + "Timestamp": "2024-05-16T07:16:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.858300", + "Timestamp": "2024-05-16T07:16:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.427700", + "Timestamp": "2024-05-16T07:16:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.836100", + "Timestamp": "2024-05-16T07:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.831100", + "Timestamp": "2024-05-16T07:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.706100", + "Timestamp": "2024-05-16T07:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.649500", + "Timestamp": "2024-05-16T07:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.619500", + "Timestamp": "2024-05-16T07:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.519500", + "Timestamp": "2024-05-16T07:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271100", + "Timestamp": "2024-05-16T07:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.241100", + "Timestamp": "2024-05-16T07:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141100", + "Timestamp": "2024-05-16T07:16:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T07:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099800", + "Timestamp": "2024-05-16T07:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043800", + "Timestamp": "2024-05-16T07:16:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.709600", + "Timestamp": "2024-05-16T07:16:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.704600", + "Timestamp": "2024-05-16T07:16:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.579600", + "Timestamp": "2024-05-16T07:16:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.925300", + "Timestamp": "2024-05-16T07:15:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081500", + "Timestamp": "2024-05-16T07:15:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077800", + "Timestamp": "2024-05-16T07:15:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021500", + "Timestamp": "2024-05-16T07:15:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.250700", + "Timestamp": "2024-05-16T07:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.220600", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.215600", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.090600", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.034400", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.029400", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.904400", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113300", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109600", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053300", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.726700", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.696700", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.596700", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.208200", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.178200", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078200", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.300400", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270400", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170400", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.494800", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.415300", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.385300", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.285300", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.296700", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.291700", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.166700", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.357700", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.352700", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.227700", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.127600", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.459100", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.454100", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.329100", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.708100", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.902300", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.213600", + "Timestamp": "2024-05-16T07:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.208600", + "Timestamp": "2024-05-16T07:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.083600", + "Timestamp": "2024-05-16T07:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.723500", + "Timestamp": "2024-05-16T07:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.718500", + "Timestamp": "2024-05-16T07:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.593500", + "Timestamp": "2024-05-16T07:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.495500", + "Timestamp": "2024-05-16T07:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.524700", + "Timestamp": "2024-05-16T07:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103600", + "Timestamp": "2024-05-16T07:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099600", + "Timestamp": "2024-05-16T07:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043600", + "Timestamp": "2024-05-16T07:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.516300", + "Timestamp": "2024-05-16T07:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.511300", + "Timestamp": "2024-05-16T07:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.386300", + "Timestamp": "2024-05-16T07:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.901600", + "Timestamp": "2024-05-16T07:01:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.871600", + "Timestamp": "2024-05-16T07:01:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.771600", + "Timestamp": "2024-05-16T07:01:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.969100", + "Timestamp": "2024-05-16T07:01:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225100", + "Timestamp": "2024-05-16T07:01:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.839200", + "Timestamp": "2024-05-16T07:01:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.090600", + "Timestamp": "2024-05-16T07:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.208500", + "Timestamp": "2024-05-16T07:00:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.178500", + "Timestamp": "2024-05-16T07:00:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078500", + "Timestamp": "2024-05-16T07:00:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.147000", + "Timestamp": "2024-05-16T07:00:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.992000", + "Timestamp": "2024-05-16T07:00:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.435300", + "Timestamp": "2024-05-16T07:00:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.562700", + "Timestamp": "2024-05-16T07:00:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.479700", + "Timestamp": "2024-05-16T07:00:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.449700", + "Timestamp": "2024-05-16T07:00:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.349700", + "Timestamp": "2024-05-16T07:00:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111300", + "Timestamp": "2024-05-16T07:00:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151300", + "Timestamp": "2024-05-16T07:00:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051300", + "Timestamp": "2024-05-16T07:00:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.933700", + "Timestamp": "2024-05-16T06:46:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.236400", + "Timestamp": "2024-05-16T06:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.231400", + "Timestamp": "2024-05-16T06:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T06:46:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.201100", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.171100", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071100", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.070400", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.065400", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.940400", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.453300", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.729400", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.663300", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.699400", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.633300", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.599400", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.533300", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.111700", + "Timestamp": "2024-05-16T06:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.106700", + "Timestamp": "2024-05-16T06:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.981700", + "Timestamp": "2024-05-16T06:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.801700", + "Timestamp": "2024-05-16T06:46:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.796700", + "Timestamp": "2024-05-16T06:46:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.671700", + "Timestamp": "2024-05-16T06:46:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.677900", + "Timestamp": "2024-05-16T06:46:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.713900", + "Timestamp": "2024-05-16T06:46:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.708900", + "Timestamp": "2024-05-16T06:46:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.583900", + "Timestamp": "2024-05-16T06:46:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.110000", + "Timestamp": "2024-05-16T06:46:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.105000", + "Timestamp": "2024-05-16T06:46:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.980000", + "Timestamp": "2024-05-16T06:46:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.437500", + "Timestamp": "2024-05-16T06:45:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.432500", + "Timestamp": "2024-05-16T06:45:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.307500", + "Timestamp": "2024-05-16T06:45:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065500", + "Timestamp": "2024-05-16T06:45:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.036500", + "Timestamp": "2024-05-16T06:45:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005500", + "Timestamp": "2024-05-16T06:45:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.021200", + "Timestamp": "2024-05-16T06:45:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.991200", + "Timestamp": "2024-05-16T06:45:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.891200", + "Timestamp": "2024-05-16T06:45:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.723900", + "Timestamp": "2024-05-16T06:45:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.982800", + "Timestamp": "2024-05-16T06:31:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.977800", + "Timestamp": "2024-05-16T06:31:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.852800", + "Timestamp": "2024-05-16T06:31:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.234600", + "Timestamp": "2024-05-16T06:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.902700", + "Timestamp": "2024-05-16T06:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.843300", + "Timestamp": "2024-05-16T06:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.813300", + "Timestamp": "2024-05-16T06:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.713300", + "Timestamp": "2024-05-16T06:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.363300", + "Timestamp": "2024-05-16T06:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.358300", + "Timestamp": "2024-05-16T06:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.233300", + "Timestamp": "2024-05-16T06:31:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.711300", + "Timestamp": "2024-05-16T06:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.480900", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.475900", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.350900", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.199900", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169900", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069900", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225600", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115400", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111700", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055400", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102200", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098500", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042200", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093100", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089400", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033100", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.818800", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112900", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056900", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118400", + "Timestamp": "2024-05-16T06:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114700", + "Timestamp": "2024-05-16T06:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058400", + "Timestamp": "2024-05-16T06:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.548000", + "Timestamp": "2024-05-16T06:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.006700", + "Timestamp": "2024-05-16T06:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.001700", + "Timestamp": "2024-05-16T06:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.876700", + "Timestamp": "2024-05-16T06:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.857900", + "Timestamp": "2024-05-16T06:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.827900", + "Timestamp": "2024-05-16T06:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.727900", + "Timestamp": "2024-05-16T06:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.782600", + "Timestamp": "2024-05-16T06:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.838300", + "Timestamp": "2024-05-16T06:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.777600", + "Timestamp": "2024-05-16T06:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.833300", + "Timestamp": "2024-05-16T06:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.652600", + "Timestamp": "2024-05-16T06:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.708300", + "Timestamp": "2024-05-16T06:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.637500", + "Timestamp": "2024-05-16T06:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094700", + "Timestamp": "2024-05-16T06:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090700", + "Timestamp": "2024-05-16T06:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034700", + "Timestamp": "2024-05-16T06:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.611500", + "Timestamp": "2024-05-16T06:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.606500", + "Timestamp": "2024-05-16T06:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.481500", + "Timestamp": "2024-05-16T06:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.223500", + "Timestamp": "2024-05-16T06:31:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193500", + "Timestamp": "2024-05-16T06:31:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093500", + "Timestamp": "2024-05-16T06:31:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.317300", + "Timestamp": "2024-05-16T06:31:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.956600", + "Timestamp": "2024-05-16T06:30:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.694900", + "Timestamp": "2024-05-16T06:30:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.689900", + "Timestamp": "2024-05-16T06:30:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.564900", + "Timestamp": "2024-05-16T06:30:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.919200", + "Timestamp": "2024-05-16T06:30:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.914200", + "Timestamp": "2024-05-16T06:30:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.789200", + "Timestamp": "2024-05-16T06:30:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.951600", + "Timestamp": "2024-05-16T06:30:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.497400", + "Timestamp": "2024-05-16T06:30:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.953000", + "Timestamp": "2024-05-16T06:30:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.472200", + "Timestamp": "2024-05-16T06:24:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.472200", + "Timestamp": "2024-05-16T06:24:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.889500", + "Timestamp": "2024-05-16T06:16:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.220800", + "Timestamp": "2024-05-16T06:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190800", + "Timestamp": "2024-05-16T06:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090800", + "Timestamp": "2024-05-16T06:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.421500", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.416500", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.291500", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.281500", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125300", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121600", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065300", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.348500", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.343500", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.218500", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.895100", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.890100", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.765100", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.880900", + "Timestamp": "2024-05-16T06:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.197400", + "Timestamp": "2024-05-16T06:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.192400", + "Timestamp": "2024-05-16T06:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.067400", + "Timestamp": "2024-05-16T06:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.244200", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094000", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090000", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034000", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.480000", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.475000", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.350000", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.211600", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.206600", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081600", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112900", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056900", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.507000", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.502000", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.377000", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.872600", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.949800", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.475200", + "Timestamp": "2024-05-16T06:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.470200", + "Timestamp": "2024-05-16T06:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.345200", + "Timestamp": "2024-05-16T06:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131300", + "Timestamp": "2024-05-16T06:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.171300", + "Timestamp": "2024-05-16T06:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071300", + "Timestamp": "2024-05-16T06:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005400", + "Timestamp": "2024-05-16T06:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120400", + "Timestamp": "2024-05-16T06:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-16T06:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060400", + "Timestamp": "2024-05-16T06:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.183600", + "Timestamp": "2024-05-16T06:16:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.178600", + "Timestamp": "2024-05-16T06:16:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.053600", + "Timestamp": "2024-05-16T06:16:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093900", + "Timestamp": "2024-05-16T06:16:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090200", + "Timestamp": "2024-05-16T06:16:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033900", + "Timestamp": "2024-05-16T06:16:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.961900", + "Timestamp": "2024-05-16T06:15:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.956900", + "Timestamp": "2024-05-16T06:15:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.831900", + "Timestamp": "2024-05-16T06:15:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.255700", + "Timestamp": "2024-05-16T06:15:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.109700", + "Timestamp": "2024-05-16T06:15:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.937100", + "Timestamp": "2024-05-16T06:15:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.932100", + "Timestamp": "2024-05-16T06:15:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.807100", + "Timestamp": "2024-05-16T06:15:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.293300", + "Timestamp": "2024-05-16T06:15:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.471000", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.441000", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.341000", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.740100", + "Timestamp": "2024-05-16T06:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.735100", + "Timestamp": "2024-05-16T06:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.610100", + "Timestamp": "2024-05-16T06:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.318000", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.371800", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.313000", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.366800", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.188000", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.241800", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.064800", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.059800", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.934800", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081100", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077400", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021100", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.483800", + "Timestamp": "2024-05-16T06:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.453800", + "Timestamp": "2024-05-16T06:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.353800", + "Timestamp": "2024-05-16T06:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.316400", + "Timestamp": "2024-05-16T06:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.311400", + "Timestamp": "2024-05-16T06:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186400", + "Timestamp": "2024-05-16T06:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132600", + "Timestamp": "2024-05-16T06:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128600", + "Timestamp": "2024-05-16T06:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072600", + "Timestamp": "2024-05-16T06:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.784600", + "Timestamp": "2024-05-16T06:01:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.967700", + "Timestamp": "2024-05-16T06:01:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.937700", + "Timestamp": "2024-05-16T06:01:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.837700", + "Timestamp": "2024-05-16T06:01:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.404400", + "Timestamp": "2024-05-16T06:01:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.374400", + "Timestamp": "2024-05-16T06:01:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.274400", + "Timestamp": "2024-05-16T06:01:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.853900", + "Timestamp": "2024-05-16T06:00:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.823900", + "Timestamp": "2024-05-16T06:00:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.723900", + "Timestamp": "2024-05-16T06:00:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.549400", + "Timestamp": "2024-05-16T06:00:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.951500", + "Timestamp": "2024-05-16T06:00:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.719800", + "Timestamp": "2024-05-16T06:00:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.635200", + "Timestamp": "2024-05-16T06:00:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.630200", + "Timestamp": "2024-05-16T06:00:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.505200", + "Timestamp": "2024-05-16T06:00:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.233900", + "Timestamp": "2024-05-16T06:00:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.228900", + "Timestamp": "2024-05-16T06:00:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103900", + "Timestamp": "2024-05-16T06:00:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.145300", + "Timestamp": "2024-05-16T06:00:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.127100", + "Timestamp": "2024-05-16T06:00:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.122100", + "Timestamp": "2024-05-16T06:00:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.997100", + "Timestamp": "2024-05-16T06:00:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119600", + "Timestamp": "2024-05-16T06:00:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.925200", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.154100", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.438200", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.188700", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183700", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058700", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330000", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.316800", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325000", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.311800", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200000", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186800", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.221400", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.216400", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091400", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.556300", + "Timestamp": "2024-05-16T05:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.551300", + "Timestamp": "2024-05-16T05:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.426300", + "Timestamp": "2024-05-16T05:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080600", + "Timestamp": "2024-05-16T05:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076900", + "Timestamp": "2024-05-16T05:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020600", + "Timestamp": "2024-05-16T05:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.950200", + "Timestamp": "2024-05-16T05:46:07.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.061400", + "Timestamp": "2024-05-16T05:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.846900", + "Timestamp": "2024-05-16T05:45:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.841900", + "Timestamp": "2024-05-16T05:45:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.716900", + "Timestamp": "2024-05-16T05:45:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T05:45:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.227000", + "Timestamp": "2024-05-16T05:45:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.303400", + "Timestamp": "2024-05-16T05:45:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.298400", + "Timestamp": "2024-05-16T05:45:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.173400", + "Timestamp": "2024-05-16T05:45:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.970700", + "Timestamp": "2024-05-16T05:45:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.940700", + "Timestamp": "2024-05-16T05:45:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.840700", + "Timestamp": "2024-05-16T05:45:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.344200", + "Timestamp": "2024-05-16T05:45:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.339200", + "Timestamp": "2024-05-16T05:45:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.214200", + "Timestamp": "2024-05-16T05:45:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.958100", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.103400", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.525500", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.721100", + "Timestamp": "2024-05-16T05:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.716100", + "Timestamp": "2024-05-16T05:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.591100", + "Timestamp": "2024-05-16T05:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.814600", + "Timestamp": "2024-05-16T05:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.784600", + "Timestamp": "2024-05-16T05:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.684600", + "Timestamp": "2024-05-16T05:31:13.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.557900", + "Timestamp": "2024-05-16T05:31:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137000", + "Timestamp": "2024-05-16T05:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125200", + "Timestamp": "2024-05-16T05:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133300", + "Timestamp": "2024-05-16T05:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121500", + "Timestamp": "2024-05-16T05:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077000", + "Timestamp": "2024-05-16T05:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065200", + "Timestamp": "2024-05-16T05:31:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.934900", + "Timestamp": "2024-05-16T05:30:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.929900", + "Timestamp": "2024-05-16T05:30:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.804900", + "Timestamp": "2024-05-16T05:30:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.571000", + "Timestamp": "2024-05-16T05:30:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.566000", + "Timestamp": "2024-05-16T05:30:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.441000", + "Timestamp": "2024-05-16T05:30:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.478200", + "Timestamp": "2024-05-16T05:30:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473200", + "Timestamp": "2024-05-16T05:30:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.348200", + "Timestamp": "2024-05-16T05:30:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116500", + "Timestamp": "2024-05-16T05:30:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.566700", + "Timestamp": "2024-05-16T05:30:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.279600", + "Timestamp": "2024-05-16T05:30:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306200", + "Timestamp": "2024-05-16T05:30:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301200", + "Timestamp": "2024-05-16T05:30:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176200", + "Timestamp": "2024-05-16T05:30:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061300", + "Timestamp": "2024-05-16T05:24:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061500", + "Timestamp": "2024-05-16T05:24:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061500", + "Timestamp": "2024-05-16T05:24:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001300", + "Timestamp": "2024-05-16T05:24:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001500", + "Timestamp": "2024-05-16T05:24:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001500", + "Timestamp": "2024-05-16T05:24:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001300", + "Timestamp": "2024-05-16T05:24:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001500", + "Timestamp": "2024-05-16T05:24:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001500", + "Timestamp": "2024-05-16T05:24:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.225500", + "Timestamp": "2024-05-16T05:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.221500", + "Timestamp": "2024-05-16T05:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165500", + "Timestamp": "2024-05-16T05:16:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.544500", + "Timestamp": "2024-05-16T05:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.539500", + "Timestamp": "2024-05-16T05:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.414500", + "Timestamp": "2024-05-16T05:16:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.226600", + "Timestamp": "2024-05-16T05:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196600", + "Timestamp": "2024-05-16T05:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096600", + "Timestamp": "2024-05-16T05:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.349400", + "Timestamp": "2024-05-16T05:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.344400", + "Timestamp": "2024-05-16T05:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219400", + "Timestamp": "2024-05-16T05:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.494900", + "Timestamp": "2024-05-16T05:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.489900", + "Timestamp": "2024-05-16T05:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.364900", + "Timestamp": "2024-05-16T05:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.985300", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.980300", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.855300", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115000", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055000", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135100", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131400", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075100", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.240900", + "Timestamp": "2024-05-16T05:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.904800", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.002700", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.507200", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235500", + "Timestamp": "2024-05-16T05:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.249900", + "Timestamp": "2024-05-16T05:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.928100", + "Timestamp": "2024-05-16T05:16:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.005800", + "Timestamp": "2024-05-16T05:15:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.900500", + "Timestamp": "2024-05-16T05:01:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116300", + "Timestamp": "2024-05-16T05:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112300", + "Timestamp": "2024-05-16T05:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056300", + "Timestamp": "2024-05-16T05:01:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045200", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.231400", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.226400", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101400", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220000", + "Timestamp": "2024-05-16T05:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.234600", + "Timestamp": "2024-05-16T05:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.229600", + "Timestamp": "2024-05-16T05:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T05:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.250900", + "Timestamp": "2024-05-16T05:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.220900", + "Timestamp": "2024-05-16T05:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120900", + "Timestamp": "2024-05-16T05:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-16T05:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104300", + "Timestamp": "2024-05-16T05:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048000", + "Timestamp": "2024-05-16T05:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.236100", + "Timestamp": "2024-05-16T05:01:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.635100", + "Timestamp": "2024-05-16T05:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.630100", + "Timestamp": "2024-05-16T05:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.505100", + "Timestamp": "2024-05-16T05:01:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.897800", + "Timestamp": "2024-05-16T05:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.302000", + "Timestamp": "2024-05-16T05:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.297000", + "Timestamp": "2024-05-16T05:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172000", + "Timestamp": "2024-05-16T05:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.234100", + "Timestamp": "2024-05-16T05:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061700", + "Timestamp": "2024-05-16T05:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001700", + "Timestamp": "2024-05-16T05:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001700", + "Timestamp": "2024-05-16T05:01:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.178500", + "Timestamp": "2024-05-16T05:01:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173500", + "Timestamp": "2024-05-16T05:01:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048500", + "Timestamp": "2024-05-16T05:01:02.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.267600", + "Timestamp": "2024-05-16T05:00:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262600", + "Timestamp": "2024-05-16T05:00:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137600", + "Timestamp": "2024-05-16T05:00:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073800", + "Timestamp": "2024-05-16T05:00:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070100", + "Timestamp": "2024-05-16T05:00:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013800", + "Timestamp": "2024-05-16T05:00:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.664100", + "Timestamp": "2024-05-16T05:00:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.659100", + "Timestamp": "2024-05-16T05:00:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.534100", + "Timestamp": "2024-05-16T05:00:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.084600", + "Timestamp": "2024-05-16T05:00:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.966400", + "Timestamp": "2024-05-16T05:00:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.961400", + "Timestamp": "2024-05-16T05:00:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.836400", + "Timestamp": "2024-05-16T05:00:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.736500", + "Timestamp": "2024-05-16T05:00:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.731500", + "Timestamp": "2024-05-16T05:00:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.606500", + "Timestamp": "2024-05-16T05:00:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062600", + "Timestamp": "2024-05-16T04:54:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-16T04:54:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-16T04:54:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.006900", + "Timestamp": "2024-05-16T04:54:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.595900", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.590900", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.465900", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.619000", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.562800", + "Timestamp": "2024-05-16T04:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441600", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.487700", + "Timestamp": "2024-05-16T04:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.482700", + "Timestamp": "2024-05-16T04:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.357700", + "Timestamp": "2024-05-16T04:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.973300", + "Timestamp": "2024-05-16T04:46:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.968300", + "Timestamp": "2024-05-16T04:46:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.843300", + "Timestamp": "2024-05-16T04:46:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090500", + "Timestamp": "2024-05-16T04:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130500", + "Timestamp": "2024-05-16T04:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030500", + "Timestamp": "2024-05-16T04:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.310400", + "Timestamp": "2024-05-16T04:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.280400", + "Timestamp": "2024-05-16T04:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180400", + "Timestamp": "2024-05-16T04:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117000", + "Timestamp": "2024-05-16T04:45:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113300", + "Timestamp": "2024-05-16T04:45:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057000", + "Timestamp": "2024-05-16T04:45:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.869000", + "Timestamp": "2024-05-16T04:45:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.864000", + "Timestamp": "2024-05-16T04:45:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.739000", + "Timestamp": "2024-05-16T04:45:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.620200", + "Timestamp": "2024-05-16T04:45:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.590200", + "Timestamp": "2024-05-16T04:45:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.490200", + "Timestamp": "2024-05-16T04:45:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096900", + "Timestamp": "2024-05-16T04:45:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136900", + "Timestamp": "2024-05-16T04:45:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036900", + "Timestamp": "2024-05-16T04:45:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098000", + "Timestamp": "2024-05-16T04:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094300", + "Timestamp": "2024-05-16T04:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038000", + "Timestamp": "2024-05-16T04:31:46.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.605100", + "Timestamp": "2024-05-16T04:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.600100", + "Timestamp": "2024-05-16T04:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.475100", + "Timestamp": "2024-05-16T04:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.244900", + "Timestamp": "2024-05-16T04:31:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.935000", + "Timestamp": "2024-05-16T04:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.905000", + "Timestamp": "2024-05-16T04:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.805000", + "Timestamp": "2024-05-16T04:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120900", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060900", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.200600", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.349400", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.344400", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219400", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.234500", + "Timestamp": "2024-05-16T04:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.867300", + "Timestamp": "2024-05-16T04:31:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.997400", + "Timestamp": "2024-05-16T04:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.992400", + "Timestamp": "2024-05-16T04:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.867400", + "Timestamp": "2024-05-16T04:31:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.043100", + "Timestamp": "2024-05-16T04:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.442100", + "Timestamp": "2024-05-16T04:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.727500", + "Timestamp": "2024-05-16T04:30:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.204000", + "Timestamp": "2024-05-16T04:30:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174000", + "Timestamp": "2024-05-16T04:30:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074000", + "Timestamp": "2024-05-16T04:30:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.221300", + "Timestamp": "2024-05-16T04:30:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.216300", + "Timestamp": "2024-05-16T04:30:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091300", + "Timestamp": "2024-05-16T04:30:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109600", + "Timestamp": "2024-05-16T04:30:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T04:30:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049600", + "Timestamp": "2024-05-16T04:30:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065500", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.036500", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005500", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.891800", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087400", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083700", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027400", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235900", + "Timestamp": "2024-05-16T04:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.889800", + "Timestamp": "2024-05-16T04:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.884800", + "Timestamp": "2024-05-16T04:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.759800", + "Timestamp": "2024-05-16T04:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.928900", + "Timestamp": "2024-05-16T04:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.254000", + "Timestamp": "2024-05-16T04:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.249000", + "Timestamp": "2024-05-16T04:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124000", + "Timestamp": "2024-05-16T04:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T04:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087800", + "Timestamp": "2024-05-16T04:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031800", + "Timestamp": "2024-05-16T04:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.411100", + "Timestamp": "2024-05-16T04:15:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.406100", + "Timestamp": "2024-05-16T04:15:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.281100", + "Timestamp": "2024-05-16T04:15:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.467500", + "Timestamp": "2024-05-16T04:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128800", + "Timestamp": "2024-05-16T04:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.389100", + "Timestamp": "2024-05-16T04:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.384100", + "Timestamp": "2024-05-16T04:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.259100", + "Timestamp": "2024-05-16T04:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432600", + "Timestamp": "2024-05-16T04:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.185900", + "Timestamp": "2024-05-16T04:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.180900", + "Timestamp": "2024-05-16T04:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.055900", + "Timestamp": "2024-05-16T04:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.055600", + "Timestamp": "2024-05-16T04:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.050600", + "Timestamp": "2024-05-16T04:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.925600", + "Timestamp": "2024-05-16T04:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.651700", + "Timestamp": "2024-05-16T04:01:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.646700", + "Timestamp": "2024-05-16T04:01:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.521700", + "Timestamp": "2024-05-16T04:01:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.804900", + "Timestamp": "2024-05-16T04:00:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157900", + "Timestamp": "2024-05-16T04:00:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154200", + "Timestamp": "2024-05-16T04:00:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097900", + "Timestamp": "2024-05-16T04:00:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.695600", + "Timestamp": "2024-05-16T04:00:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.117800", + "Timestamp": "2024-05-16T03:46:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.426300", + "Timestamp": "2024-05-16T03:46:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.728200", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.723200", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.598200", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.870600", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.686500", + "Timestamp": "2024-05-16T03:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.656500", + "Timestamp": "2024-05-16T03:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.556500", + "Timestamp": "2024-05-16T03:46:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.569500", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.564500", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.439500", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.948600", + "Timestamp": "2024-05-16T03:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113400", + "Timestamp": "2024-05-16T03:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087700", + "Timestamp": "2024-05-16T03:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084000", + "Timestamp": "2024-05-16T03:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027700", + "Timestamp": "2024-05-16T03:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079000", + "Timestamp": "2024-05-16T03:46:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075300", + "Timestamp": "2024-05-16T03:46:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019000", + "Timestamp": "2024-05-16T03:46:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091300", + "Timestamp": "2024-05-16T03:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131300", + "Timestamp": "2024-05-16T03:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031300", + "Timestamp": "2024-05-16T03:46:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.786000", + "Timestamp": "2024-05-16T03:45:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.781000", + "Timestamp": "2024-05-16T03:45:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.656000", + "Timestamp": "2024-05-16T03:45:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.950100", + "Timestamp": "2024-05-16T03:45:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.945100", + "Timestamp": "2024-05-16T03:45:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.820100", + "Timestamp": "2024-05-16T03:45:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.790500", + "Timestamp": "2024-05-16T03:45:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.785500", + "Timestamp": "2024-05-16T03:45:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.660500", + "Timestamp": "2024-05-16T03:45:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083000", + "Timestamp": "2024-05-16T03:45:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079300", + "Timestamp": "2024-05-16T03:45:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023000", + "Timestamp": "2024-05-16T03:45:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.076300", + "Timestamp": "2024-05-16T03:45:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.071300", + "Timestamp": "2024-05-16T03:45:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.946300", + "Timestamp": "2024-05-16T03:45:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134600", + "Timestamp": "2024-05-16T03:45:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130600", + "Timestamp": "2024-05-16T03:45:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074600", + "Timestamp": "2024-05-16T03:45:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.054800", + "Timestamp": "2024-05-16T03:31:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T03:31:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.482400", + "Timestamp": "2024-05-16T03:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.848400", + "Timestamp": "2024-05-16T03:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091900", + "Timestamp": "2024-05-16T03:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088900", + "Timestamp": "2024-05-16T03:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031900", + "Timestamp": "2024-05-16T03:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.127200", + "Timestamp": "2024-05-16T03:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.122200", + "Timestamp": "2024-05-16T03:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.997200", + "Timestamp": "2024-05-16T03:31:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.479800", + "Timestamp": "2024-05-16T03:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.474800", + "Timestamp": "2024-05-16T03:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.349800", + "Timestamp": "2024-05-16T03:31:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.045300", + "Timestamp": "2024-05-16T03:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144300", + "Timestamp": "2024-05-16T03:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.184300", + "Timestamp": "2024-05-16T03:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084300", + "Timestamp": "2024-05-16T03:31:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.230700", + "Timestamp": "2024-05-16T03:31:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.480700", + "Timestamp": "2024-05-16T03:31:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.475700", + "Timestamp": "2024-05-16T03:31:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.350700", + "Timestamp": "2024-05-16T03:31:11.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.469500", + "Timestamp": "2024-05-16T03:25:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.469500", + "Timestamp": "2024-05-16T03:25:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.246800", + "Timestamp": "2024-05-16T03:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094000", + "Timestamp": "2024-05-16T03:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090300", + "Timestamp": "2024-05-16T03:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034000", + "Timestamp": "2024-05-16T03:16:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.581400", + "Timestamp": "2024-05-16T03:16:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086700", + "Timestamp": "2024-05-16T03:16:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083000", + "Timestamp": "2024-05-16T03:16:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026700", + "Timestamp": "2024-05-16T03:16:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076300", + "Timestamp": "2024-05-16T03:16:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.072600", + "Timestamp": "2024-05-16T03:16:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016300", + "Timestamp": "2024-05-16T03:16:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107800", + "Timestamp": "2024-05-16T03:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147800", + "Timestamp": "2024-05-16T03:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047800", + "Timestamp": "2024-05-16T03:16:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.181800", + "Timestamp": "2024-05-16T03:15:41.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.237700", + "Timestamp": "2024-05-16T03:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.232700", + "Timestamp": "2024-05-16T03:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.107700", + "Timestamp": "2024-05-16T03:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218200", + "Timestamp": "2024-05-16T03:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.574600", + "Timestamp": "2024-05-16T03:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.544600", + "Timestamp": "2024-05-16T03:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.444600", + "Timestamp": "2024-05-16T03:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.581200", + "Timestamp": "2024-05-16T03:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.576200", + "Timestamp": "2024-05-16T03:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.451200", + "Timestamp": "2024-05-16T03:01:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.750700", + "Timestamp": "2024-05-16T03:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.217000", + "Timestamp": "2024-05-16T03:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.518300", + "Timestamp": "2024-05-16T03:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.488300", + "Timestamp": "2024-05-16T03:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.388300", + "Timestamp": "2024-05-16T03:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103200", + "Timestamp": "2024-05-16T03:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T03:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043200", + "Timestamp": "2024-05-16T03:01:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306000", + "Timestamp": "2024-05-16T03:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276000", + "Timestamp": "2024-05-16T03:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176000", + "Timestamp": "2024-05-16T03:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170100", + "Timestamp": "2024-05-16T03:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165100", + "Timestamp": "2024-05-16T03:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040100", + "Timestamp": "2024-05-16T03:01:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.852000", + "Timestamp": "2024-05-16T03:01:14.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.838500", + "Timestamp": "2024-05-16T03:00:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.833500", + "Timestamp": "2024-05-16T03:00:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.708500", + "Timestamp": "2024-05-16T03:00:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.514400", + "Timestamp": "2024-05-16T02:46:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-16T02:46:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.754200", + "Timestamp": "2024-05-16T02:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.749200", + "Timestamp": "2024-05-16T02:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.624200", + "Timestamp": "2024-05-16T02:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085600", + "Timestamp": "2024-05-16T02:45:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.081900", + "Timestamp": "2024-05-16T02:45:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025600", + "Timestamp": "2024-05-16T02:45:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.197500", + "Timestamp": "2024-05-16T02:45:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167500", + "Timestamp": "2024-05-16T02:45:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067500", + "Timestamp": "2024-05-16T02:45:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.180900", + "Timestamp": "2024-05-16T02:42:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.180900", + "Timestamp": "2024-05-16T02:42:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177200", + "Timestamp": "2024-05-16T02:42:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177200", + "Timestamp": "2024-05-16T02:42:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120900", + "Timestamp": "2024-05-16T02:42:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120900", + "Timestamp": "2024-05-16T02:42:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.304900", + "Timestamp": "2024-05-16T02:42:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.304900", + "Timestamp": "2024-05-16T02:42:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.956100", + "Timestamp": "2024-05-16T02:31:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.556000", + "Timestamp": "2024-05-16T02:31:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.562600", + "Timestamp": "2024-05-16T02:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.557600", + "Timestamp": "2024-05-16T02:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.432600", + "Timestamp": "2024-05-16T02:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.743200", + "Timestamp": "2024-05-16T02:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.738200", + "Timestamp": "2024-05-16T02:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.613200", + "Timestamp": "2024-05-16T02:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116700", + "Timestamp": "2024-05-16T02:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076600", + "Timestamp": "2024-05-16T02:31:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.072900", + "Timestamp": "2024-05-16T02:31:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016600", + "Timestamp": "2024-05-16T02:31:10.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.998400", + "Timestamp": "2024-05-16T02:24:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.998400", + "Timestamp": "2024-05-16T02:24:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.993400", + "Timestamp": "2024-05-16T02:24:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.993400", + "Timestamp": "2024-05-16T02:24:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.868400", + "Timestamp": "2024-05-16T02:24:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.868400", + "Timestamp": "2024-05-16T02:24:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.756400", + "Timestamp": "2024-05-16T02:24:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.715600", + "Timestamp": "2024-05-16T02:24:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.685600", + "Timestamp": "2024-05-16T02:24:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.585600", + "Timestamp": "2024-05-16T02:24:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.529600", + "Timestamp": "2024-05-16T02:24:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.529600", + "Timestamp": "2024-05-16T02:24:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.529600", + "Timestamp": "2024-05-16T02:24:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.290000", + "Timestamp": "2024-05-16T02:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.260000", + "Timestamp": "2024-05-16T02:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.160000", + "Timestamp": "2024-05-16T02:16:44.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.026300", + "Timestamp": "2024-05-16T02:16:36.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096800", + "Timestamp": "2024-05-16T02:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093100", + "Timestamp": "2024-05-16T02:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036800", + "Timestamp": "2024-05-16T02:16:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.372600", + "Timestamp": "2024-05-16T02:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118200", + "Timestamp": "2024-05-16T02:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-16T02:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058200", + "Timestamp": "2024-05-16T02:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.633100", + "Timestamp": "2024-05-16T02:15:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.628100", + "Timestamp": "2024-05-16T02:15:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.503100", + "Timestamp": "2024-05-16T02:15:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090300", + "Timestamp": "2024-05-16T02:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086600", + "Timestamp": "2024-05-16T02:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030300", + "Timestamp": "2024-05-16T02:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.580700", + "Timestamp": "2024-05-16T01:54:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.580700", + "Timestamp": "2024-05-16T01:54:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.575700", + "Timestamp": "2024-05-16T01:54:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.575700", + "Timestamp": "2024-05-16T01:54:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.450700", + "Timestamp": "2024-05-16T01:54:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.450700", + "Timestamp": "2024-05-16T01:54:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.866700", + "Timestamp": "2024-05-16T01:54:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.866700", + "Timestamp": "2024-05-16T01:54:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T01:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110900", + "Timestamp": "2024-05-16T01:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054600", + "Timestamp": "2024-05-16T01:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T01:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093000", + "Timestamp": "2024-05-16T01:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089000", + "Timestamp": "2024-05-16T01:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033000", + "Timestamp": "2024-05-16T01:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.133400", + "Timestamp": "2024-05-16T01:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118600", + "Timestamp": "2024-05-16T01:31:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120600", + "Timestamp": "2024-05-16T01:31:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.430200", + "Timestamp": "2024-05-16T01:16:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.929000", + "Timestamp": "2024-05-16T01:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.464200", + "Timestamp": "2024-05-16T01:16:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107000", + "Timestamp": "2024-05-16T01:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T01:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047000", + "Timestamp": "2024-05-16T01:16:17.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.546700", + "Timestamp": "2024-05-16T01:16:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.516700", + "Timestamp": "2024-05-16T01:16:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.416700", + "Timestamp": "2024-05-16T01:16:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.262200", + "Timestamp": "2024-05-16T01:16:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.257200", + "Timestamp": "2024-05-16T01:16:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.132200", + "Timestamp": "2024-05-16T01:16:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098500", + "Timestamp": "2024-05-16T01:15:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094800", + "Timestamp": "2024-05-16T01:15:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038500", + "Timestamp": "2024-05-16T01:15:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.296500", + "Timestamp": "2024-05-16T01:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266500", + "Timestamp": "2024-05-16T01:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.166500", + "Timestamp": "2024-05-16T01:01:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211900", + "Timestamp": "2024-05-16T01:01:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.547000", + "Timestamp": "2024-05-16T01:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.542000", + "Timestamp": "2024-05-16T01:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.417000", + "Timestamp": "2024-05-16T01:01:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091700", + "Timestamp": "2024-05-16T01:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087700", + "Timestamp": "2024-05-16T01:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031700", + "Timestamp": "2024-05-16T01:01:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.344900", + "Timestamp": "2024-05-16T01:00:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.339900", + "Timestamp": "2024-05-16T01:00:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.214900", + "Timestamp": "2024-05-16T01:00:55.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441200", + "Timestamp": "2024-05-16T00:54:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441200", + "Timestamp": "2024-05-16T00:54:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441200", + "Timestamp": "2024-05-16T00:54:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.227600", + "Timestamp": "2024-05-16T00:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.197600", + "Timestamp": "2024-05-16T00:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097600", + "Timestamp": "2024-05-16T00:46:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149400", + "Timestamp": "2024-05-16T00:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145400", + "Timestamp": "2024-05-16T00:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089400", + "Timestamp": "2024-05-16T00:46:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072300", + "Timestamp": "2024-05-16T00:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068600", + "Timestamp": "2024-05-16T00:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012300", + "Timestamp": "2024-05-16T00:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T00:45:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.363600", + "Timestamp": "2024-05-16T00:45:50.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010800", + "Timestamp": "2024-05-16T00:31:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.227000", + "Timestamp": "2024-05-16T00:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.349200", + "Timestamp": "2024-05-16T00:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.344200", + "Timestamp": "2024-05-16T00:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219200", + "Timestamp": "2024-05-16T00:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119400", + "Timestamp": "2024-05-16T00:16:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.571700", + "Timestamp": "2024-05-16T00:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.566700", + "Timestamp": "2024-05-16T00:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.441700", + "Timestamp": "2024-05-16T00:16:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098600", + "Timestamp": "2024-05-16T00:15:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094900", + "Timestamp": "2024-05-16T00:15:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038600", + "Timestamp": "2024-05-16T00:15:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078900", + "Timestamp": "2024-05-16T00:02:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075200", + "Timestamp": "2024-05-16T00:02:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018900", + "Timestamp": "2024-05-16T00:02:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.545400", + "Timestamp": "2024-05-16T00:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.540400", + "Timestamp": "2024-05-16T00:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.415400", + "Timestamp": "2024-05-16T00:01:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115700", + "Timestamp": "2024-05-16T00:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111700", + "Timestamp": "2024-05-16T00:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055700", + "Timestamp": "2024-05-16T00:01:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.204800", + "Timestamp": "2024-05-16T00:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.042100", + "Timestamp": "2024-05-16T00:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T00:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082300", + "Timestamp": "2024-05-16T00:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078600", + "Timestamp": "2024-05-16T00:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022300", + "Timestamp": "2024-05-16T00:01:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.204000", + "Timestamp": "2024-05-16T00:00:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174000", + "Timestamp": "2024-05-16T00:00:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074000", + "Timestamp": "2024-05-16T00:00:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093900", + "Timestamp": "2024-05-15T23:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090200", + "Timestamp": "2024-05-15T23:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033900", + "Timestamp": "2024-05-15T23:46:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083500", + "Timestamp": "2024-05-15T23:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079800", + "Timestamp": "2024-05-15T23:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023500", + "Timestamp": "2024-05-15T23:31:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091200", + "Timestamp": "2024-05-15T23:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088200", + "Timestamp": "2024-05-15T23:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031200", + "Timestamp": "2024-05-15T23:31:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.040700", + "Timestamp": "2024-05-15T23:31:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-15T23:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-15T23:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050200", + "Timestamp": "2024-05-15T23:31:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.254200", + "Timestamp": "2024-05-15T23:31:15.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085200", + "Timestamp": "2024-05-15T23:30:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.081500", + "Timestamp": "2024-05-15T23:30:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025200", + "Timestamp": "2024-05-15T23:30:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.187300", + "Timestamp": "2024-05-15T23:30:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157300", + "Timestamp": "2024-05-15T23:30:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057300", + "Timestamp": "2024-05-15T23:30:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.998400", + "Timestamp": "2024-05-15T23:24:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.993400", + "Timestamp": "2024-05-15T23:24:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.868400", + "Timestamp": "2024-05-15T23:24:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.756400", + "Timestamp": "2024-05-15T23:24:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-15T23:16:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.254400", + "Timestamp": "2024-05-15T23:16:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066000", + "Timestamp": "2024-05-15T23:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037300", + "Timestamp": "2024-05-15T23:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006000", + "Timestamp": "2024-05-15T23:16:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.011000", + "Timestamp": "2024-05-15T23:15:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010800", + "Timestamp": "2024-05-15T23:15:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062400", + "Timestamp": "2024-05-15T23:15:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062200", + "Timestamp": "2024-05-15T23:15:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062600", + "Timestamp": "2024-05-15T23:15:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002400", + "Timestamp": "2024-05-15T23:15:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002200", + "Timestamp": "2024-05-15T23:15:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-15T23:15:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002400", + "Timestamp": "2024-05-15T23:15:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002200", + "Timestamp": "2024-05-15T23:15:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-15T23:15:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091100", + "Timestamp": "2024-05-15T23:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087400", + "Timestamp": "2024-05-15T23:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031100", + "Timestamp": "2024-05-15T23:01:09.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.609800", + "Timestamp": "2024-05-15T22:54:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.026200", + "Timestamp": "2024-05-15T22:42:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.371800", + "Timestamp": "2024-05-15T22:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.371800", + "Timestamp": "2024-05-15T22:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.366800", + "Timestamp": "2024-05-15T22:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.366800", + "Timestamp": "2024-05-15T22:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.241800", + "Timestamp": "2024-05-15T22:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.241800", + "Timestamp": "2024-05-15T22:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.609800", + "Timestamp": "2024-05-15T22:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.609800", + "Timestamp": "2024-05-15T22:31:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.450400", + "Timestamp": "2024-05-15T22:16:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079500", + "Timestamp": "2024-05-15T22:16:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075800", + "Timestamp": "2024-05-15T22:16:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019500", + "Timestamp": "2024-05-15T22:16:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-15T22:15:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061600", + "Timestamp": "2024-05-15T22:15:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001600", + "Timestamp": "2024-05-15T22:15:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001600", + "Timestamp": "2024-05-15T22:15:35.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.531500", + "Timestamp": "2024-05-15T22:07:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.531500", + "Timestamp": "2024-05-15T22:07:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.064200", + "Timestamp": "2024-05-15T22:07:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.064200", + "Timestamp": "2024-05-15T22:07:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.059200", + "Timestamp": "2024-05-15T22:07:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.059200", + "Timestamp": "2024-05-15T22:07:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.934200", + "Timestamp": "2024-05-15T22:07:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.934200", + "Timestamp": "2024-05-15T22:07:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.822200", + "Timestamp": "2024-05-15T22:07:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.822200", + "Timestamp": "2024-05-15T22:07:12.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147400", + "Timestamp": "2024-05-15T22:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143700", + "Timestamp": "2024-05-15T22:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087400", + "Timestamp": "2024-05-15T22:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115200", + "Timestamp": "2024-05-15T22:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111200", + "Timestamp": "2024-05-15T22:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055200", + "Timestamp": "2024-05-15T22:01:30.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071500", + "Timestamp": "2024-05-15T22:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067800", + "Timestamp": "2024-05-15T22:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011500", + "Timestamp": "2024-05-15T22:01:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.994900", + "Timestamp": "2024-05-15T22:00:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.388100", + "Timestamp": "2024-05-15T21:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.358100", + "Timestamp": "2024-05-15T21:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.258100", + "Timestamp": "2024-05-15T21:46:33.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.660000", + "Timestamp": "2024-05-15T21:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.630000", + "Timestamp": "2024-05-15T21:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.530000", + "Timestamp": "2024-05-15T21:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.434000", + "Timestamp": "2024-05-15T21:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113500", + "Timestamp": "2024-05-15T21:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-15T21:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053500", + "Timestamp": "2024-05-15T21:46:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.764800", + "Timestamp": "2024-05-15T21:41:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.764800", + "Timestamp": "2024-05-15T21:41:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.764800", + "Timestamp": "2024-05-15T21:41:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.765800", + "Timestamp": "2024-05-15T21:41:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.765800", + "Timestamp": "2024-05-15T21:41:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.022300", + "Timestamp": "2024-05-15T21:21:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.022100", + "Timestamp": "2024-05-15T21:21:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021700", + "Timestamp": "2024-05-15T21:21:28.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065200", + "Timestamp": "2024-05-15T21:21:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.036200", + "Timestamp": "2024-05-15T21:21:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-15T21:21:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.237700", + "Timestamp": "2024-05-15T21:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232700", + "Timestamp": "2024-05-15T21:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-15T21:16:42.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-15T21:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.218400", + "Timestamp": "2024-05-15T21:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.213400", + "Timestamp": "2024-05-15T21:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088400", + "Timestamp": "2024-05-15T21:16:29.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.127700", + "Timestamp": "2024-05-15T21:15:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.243800", + "Timestamp": "2024-05-15T21:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.238800", + "Timestamp": "2024-05-15T21:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113800", + "Timestamp": "2024-05-15T21:01:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.880800", + "Timestamp": "2024-05-15T21:01:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-15T21:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094900", + "Timestamp": "2024-05-15T21:01:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090900", + "Timestamp": "2024-05-15T21:01:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034900", + "Timestamp": "2024-05-15T21:01:04.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092500", + "Timestamp": "2024-05-15T20:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088500", + "Timestamp": "2024-05-15T20:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032500", + "Timestamp": "2024-05-15T20:46:22.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-15T20:31:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135400", + "Timestamp": "2024-05-15T20:16:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131400", + "Timestamp": "2024-05-15T20:16:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075400", + "Timestamp": "2024-05-15T20:16:00.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.882500", + "Timestamp": "2024-05-15T20:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063100", + "Timestamp": "2024-05-15T20:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.034400", + "Timestamp": "2024-05-15T20:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003100", + "Timestamp": "2024-05-15T20:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-15T20:01:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074500", + "Timestamp": "2024-05-15T20:01:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074900", + "Timestamp": "2024-05-15T20:01:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070800", + "Timestamp": "2024-05-15T20:01:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071200", + "Timestamp": "2024-05-15T20:01:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014500", + "Timestamp": "2024-05-15T20:01:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014900", + "Timestamp": "2024-05-15T20:01:01.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095700", + "Timestamp": "2024-05-15T20:00:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092000", + "Timestamp": "2024-05-15T20:00:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035700", + "Timestamp": "2024-05-15T20:00:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.427400", + "Timestamp": "2024-05-15T19:46:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.344600", + "Timestamp": "2024-05-15T19:46:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.339600", + "Timestamp": "2024-05-15T19:46:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.214600", + "Timestamp": "2024-05-15T19:46:16.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104700", + "Timestamp": "2024-05-15T19:45:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101000", + "Timestamp": "2024-05-15T19:45:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044700", + "Timestamp": "2024-05-15T19:45:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078600", + "Timestamp": "2024-05-15T19:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074900", + "Timestamp": "2024-05-15T19:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018600", + "Timestamp": "2024-05-15T19:31:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.123200", + "Timestamp": "2024-05-15T19:30:34.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072800", + "Timestamp": "2024-05-15T19:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069100", + "Timestamp": "2024-05-15T19:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012800", + "Timestamp": "2024-05-15T19:01:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.128200", + "Timestamp": "2024-05-15T19:00:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.276400", + "Timestamp": "2024-05-15T18:54:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.276400", + "Timestamp": "2024-05-15T18:54:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.276400", + "Timestamp": "2024-05-15T18:54:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.246400", + "Timestamp": "2024-05-15T18:54:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.246400", + "Timestamp": "2024-05-15T18:54:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.246400", + "Timestamp": "2024-05-15T18:54:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146400", + "Timestamp": "2024-05-15T18:54:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146400", + "Timestamp": "2024-05-15T18:54:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146400", + "Timestamp": "2024-05-15T18:54:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.882400", + "Timestamp": "2024-05-15T18:54:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.882400", + "Timestamp": "2024-05-15T18:54:40.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-15T18:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-15T18:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042100", + "Timestamp": "2024-05-15T18:46:06.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102000", + "Timestamp": "2024-05-15T18:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098300", + "Timestamp": "2024-05-15T18:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042000", + "Timestamp": "2024-05-15T18:31:05.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.026000", + "Timestamp": "2024-05-15T18:16:47.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066900", + "Timestamp": "2024-05-15T18:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038200", + "Timestamp": "2024-05-15T18:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006900", + "Timestamp": "2024-05-15T18:16:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.252400", + "Timestamp": "2024-05-15T18:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.247400", + "Timestamp": "2024-05-15T18:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122400", + "Timestamp": "2024-05-15T18:16:32.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128800", + "Timestamp": "2024-05-15T18:15:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362900", + "Timestamp": "2024-05-15T18:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.357900", + "Timestamp": "2024-05-15T18:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.232900", + "Timestamp": "2024-05-15T18:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.060600", + "Timestamp": "2024-05-15T17:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.000600", + "Timestamp": "2024-05-15T17:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.000600", + "Timestamp": "2024-05-15T17:16:20.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.452600", + "Timestamp": "2024-05-15T17:16:08.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.304900", + "Timestamp": "2024-05-15T17:09:38.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.736100", + "Timestamp": "2024-05-15T17:09:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.736100", + "Timestamp": "2024-05-15T17:09:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096700", + "Timestamp": "2024-05-15T17:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093000", + "Timestamp": "2024-05-15T17:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036700", + "Timestamp": "2024-05-15T17:01:26.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076600", + "Timestamp": "2024-05-15T17:00:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.072900", + "Timestamp": "2024-05-15T17:00:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016600", + "Timestamp": "2024-05-15T17:00:59.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.064200", + "Timestamp": "2024-05-15T16:55:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.059200", + "Timestamp": "2024-05-15T16:55:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.934200", + "Timestamp": "2024-05-15T16:55:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.878200", + "Timestamp": "2024-05-15T16:55:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.013100", + "Timestamp": "2024-05-15T16:55:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064800", + "Timestamp": "2024-05-15T16:55:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.034800", + "Timestamp": "2024-05-15T16:55:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004800", + "Timestamp": "2024-05-15T16:55:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.439100", + "Timestamp": "2024-05-15T16:54:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.097100", + "Timestamp": "2024-05-15T16:54:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.092100", + "Timestamp": "2024-05-15T16:54:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967100", + "Timestamp": "2024-05-15T16:54:53.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092500", + "Timestamp": "2024-05-15T16:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088800", + "Timestamp": "2024-05-15T16:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032500", + "Timestamp": "2024-05-15T16:31:24.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070000", + "Timestamp": "2024-05-15T16:01:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066300", + "Timestamp": "2024-05-15T16:01:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010000", + "Timestamp": "2024-05-15T16:01:03.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214900", + "Timestamp": "2024-05-15T15:31:43.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220600", + "Timestamp": "2024-05-15T15:29:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220600", + "Timestamp": "2024-05-15T15:29:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220600", + "Timestamp": "2024-05-15T15:29:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.911100", + "Timestamp": "2024-05-15T15:29:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.911100", + "Timestamp": "2024-05-15T15:29:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.097100", + "Timestamp": "2024-05-15T15:29:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.097100", + "Timestamp": "2024-05-15T15:29:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.092100", + "Timestamp": "2024-05-15T15:29:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.092100", + "Timestamp": "2024-05-15T15:29:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967100", + "Timestamp": "2024-05-15T15:29:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967100", + "Timestamp": "2024-05-15T15:29:23.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.060700", + "Timestamp": "2024-05-15T15:29:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.060600", + "Timestamp": "2024-05-15T15:29:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.000700", + "Timestamp": "2024-05-15T15:29:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.000600", + "Timestamp": "2024-05-15T15:29:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.000700", + "Timestamp": "2024-05-15T15:29:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.000600", + "Timestamp": "2024-05-15T15:29:18.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074300", + "Timestamp": "2024-05-15T15:15:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070600", + "Timestamp": "2024-05-15T15:15:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014300", + "Timestamp": "2024-05-15T15:15:45.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207600", + "Timestamp": "2024-05-15T14:45:54.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083000", + "Timestamp": "2024-05-15T14:43:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079300", + "Timestamp": "2024-05-15T14:43:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023000", + "Timestamp": "2024-05-15T14:43:52.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.025000", + "Timestamp": "2024-05-15T14:43:37.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.371900", + "Timestamp": "2024-05-15T14:00:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.341900", + "Timestamp": "2024-05-15T14:00:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.241900", + "Timestamp": "2024-05-15T14:00:51.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.715600", + "Timestamp": "2024-05-15T13:54:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.715600", + "Timestamp": "2024-05-15T13:54:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.685600", + "Timestamp": "2024-05-15T13:54:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.685600", + "Timestamp": "2024-05-15T13:54:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.585600", + "Timestamp": "2024-05-15T13:54:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.585600", + "Timestamp": "2024-05-15T13:54:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.529600", + "Timestamp": "2024-05-15T13:54:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.529600", + "Timestamp": "2024-05-15T13:54:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.529600", + "Timestamp": "2024-05-15T13:54:39.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070900", + "Timestamp": "2024-05-15T13:45:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067200", + "Timestamp": "2024-05-15T13:45:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010900", + "Timestamp": "2024-05-15T13:45:49.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113100", + "Timestamp": "2024-05-15T13:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-15T13:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053100", + "Timestamp": "2024-05-15T13:31:27.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072900", + "Timestamp": "2024-05-15T13:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069200", + "Timestamp": "2024-05-15T13:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012900", + "Timestamp": "2024-05-15T13:16:31.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-15T12:01:21.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078200", + "Timestamp": "2024-05-15T11:30:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074500", + "Timestamp": "2024-05-15T11:30:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018200", + "Timestamp": "2024-05-15T11:30:58.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090000", + "Timestamp": "2024-05-15T11:15:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086300", + "Timestamp": "2024-05-15T11:15:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3b", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030000", + "Timestamp": "2024-05-15T11:15:48.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.320300", + "Timestamp": "2024-05-15T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.725500", + "Timestamp": "2024-05-15T09:30:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.720500", + "Timestamp": "2024-05-15T09:30:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3c", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.595500", + "Timestamp": "2024-05-15T09:30:56.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.948300", + "Timestamp": "2024-02-24T16:45:57.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.729900", + "Timestamp": "2024-02-24T13:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.699900", + "Timestamp": "2024-02-24T13:46:19.000Z" + }, + { + "AvailabilityZone": "ap-northeast-3a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.599900", + "Timestamp": "2024-02-24T13:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.347200", + "Timestamp": "2024-05-16T14:04:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.057300", + "Timestamp": "2024-05-16T14:04:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.041600", + "Timestamp": "2024-05-16T14:04:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.023800", + "Timestamp": "2024-05-16T14:02:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.795000", + "Timestamp": "2024-05-16T14:02:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.653600", + "Timestamp": "2024-05-16T14:02:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.648600", + "Timestamp": "2024-05-16T14:02:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.523600", + "Timestamp": "2024-05-16T14:02:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.183700", + "Timestamp": "2024-05-16T14:02:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.223700", + "Timestamp": "2024-05-16T14:02:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123700", + "Timestamp": "2024-05-16T14:02:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.020300", + "Timestamp": "2024-05-16T14:02:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.015300", + "Timestamp": "2024-05-16T14:02:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.890300", + "Timestamp": "2024-05-16T14:02:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.276300", + "Timestamp": "2024-05-16T14:02:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.271300", + "Timestamp": "2024-05-16T14:02:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.146300", + "Timestamp": "2024-05-16T14:02:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211000", + "Timestamp": "2024-05-16T14:02:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.755100", + "Timestamp": "2024-05-16T14:02:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.750100", + "Timestamp": "2024-05-16T14:02:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.625100", + "Timestamp": "2024-05-16T14:02:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.045900", + "Timestamp": "2024-05-16T14:02:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.040900", + "Timestamp": "2024-05-16T14:02:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.915900", + "Timestamp": "2024-05-16T14:02:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.827300", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.822300", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.697300", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.295600", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.290600", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.165600", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.823300", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.818300", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.693300", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.672800", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.489500", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.667800", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.484500", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.542800", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.359500", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.855800", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.850800", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.725800", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.182000", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179000", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122000", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.274100", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.269100", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.144100", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416000", + "Timestamp": "2024-05-16T14:02:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.312000", + "Timestamp": "2024-05-16T14:02:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162000", + "Timestamp": "2024-05-16T14:02:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158300", + "Timestamp": "2024-05-16T14:02:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102000", + "Timestamp": "2024-05-16T14:02:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.953600", + "Timestamp": "2024-05-16T14:02:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.615400", + "Timestamp": "2024-05-16T14:02:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.141100", + "Timestamp": "2024-05-16T14:02:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.585400", + "Timestamp": "2024-05-16T14:02:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.111100", + "Timestamp": "2024-05-16T14:02:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.485400", + "Timestamp": "2024-05-16T14:02:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.011100", + "Timestamp": "2024-05-16T14:02:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071800", + "Timestamp": "2024-05-16T14:02:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068100", + "Timestamp": "2024-05-16T14:02:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011800", + "Timestamp": "2024-05-16T14:02:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.678700", + "Timestamp": "2024-05-16T14:02:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.758400", + "Timestamp": "2024-05-16T14:02:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.528000", + "Timestamp": "2024-05-16T14:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.523000", + "Timestamp": "2024-05-16T14:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.398000", + "Timestamp": "2024-05-16T14:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102200", + "Timestamp": "2024-05-16T14:02:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098500", + "Timestamp": "2024-05-16T14:02:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042200", + "Timestamp": "2024-05-16T14:02:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.880700", + "Timestamp": "2024-05-16T14:02:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.850700", + "Timestamp": "2024-05-16T14:02:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.750700", + "Timestamp": "2024-05-16T14:02:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.506600", + "Timestamp": "2024-05-16T14:02:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.501600", + "Timestamp": "2024-05-16T14:02:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.376600", + "Timestamp": "2024-05-16T14:02:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.450800", + "Timestamp": "2024-05-16T14:02:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.445800", + "Timestamp": "2024-05-16T14:02:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.320800", + "Timestamp": "2024-05-16T14:02:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.781500", + "Timestamp": "2024-05-16T14:02:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.728500", + "Timestamp": "2024-05-16T14:02:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.723500", + "Timestamp": "2024-05-16T14:02:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.598500", + "Timestamp": "2024-05-16T14:02:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.186700", + "Timestamp": "2024-05-16T14:02:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183000", + "Timestamp": "2024-05-16T14:02:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126700", + "Timestamp": "2024-05-16T14:02:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.156000", + "Timestamp": "2024-05-16T14:02:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.126000", + "Timestamp": "2024-05-16T14:02:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.026000", + "Timestamp": "2024-05-16T14:02:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.064100", + "Timestamp": "2024-05-16T14:02:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.059100", + "Timestamp": "2024-05-16T14:02:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.934100", + "Timestamp": "2024-05-16T14:02:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.137400", + "Timestamp": "2024-05-16T14:02:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.680000", + "Timestamp": "2024-05-16T14:01:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.675000", + "Timestamp": "2024-05-16T14:01:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.550000", + "Timestamp": "2024-05-16T14:01:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093700", + "Timestamp": "2024-05-16T14:01:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090000", + "Timestamp": "2024-05-16T14:01:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033700", + "Timestamp": "2024-05-16T14:01:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.228400", + "Timestamp": "2024-05-16T14:01:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.224700", + "Timestamp": "2024-05-16T14:01:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168400", + "Timestamp": "2024-05-16T14:01:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.924800", + "Timestamp": "2024-05-16T14:01:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.919800", + "Timestamp": "2024-05-16T14:01:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.794800", + "Timestamp": "2024-05-16T14:01:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.260300", + "Timestamp": "2024-05-16T14:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.300300", + "Timestamp": "2024-05-16T14:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200300", + "Timestamp": "2024-05-16T14:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T14:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104700", + "Timestamp": "2024-05-16T14:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048400", + "Timestamp": "2024-05-16T14:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081800", + "Timestamp": "2024-05-16T14:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078100", + "Timestamp": "2024-05-16T14:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021800", + "Timestamp": "2024-05-16T14:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.979100", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.974100", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.849100", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.754500", + "Timestamp": "2024-05-16T14:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.749500", + "Timestamp": "2024-05-16T14:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.624500", + "Timestamp": "2024-05-16T14:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.852800", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.487100", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.457100", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.357100", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.329700", + "Timestamp": "2024-05-16T14:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.324700", + "Timestamp": "2024-05-16T14:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.199700", + "Timestamp": "2024-05-16T14:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.298200", + "Timestamp": "2024-05-16T14:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.293200", + "Timestamp": "2024-05-16T14:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.168200", + "Timestamp": "2024-05-16T14:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.651100", + "Timestamp": "2024-05-16T14:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.646100", + "Timestamp": "2024-05-16T14:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.521100", + "Timestamp": "2024-05-16T14:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.834600", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.829600", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.704600", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.391400", + "Timestamp": "2024-05-16T14:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.386400", + "Timestamp": "2024-05-16T14:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.261400", + "Timestamp": "2024-05-16T14:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.398400", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.438400", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.338400", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.556200", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.526200", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.426200", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.735000", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.730000", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.605000", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.493600", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.488600", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.363600", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.325100", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.320100", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.195100", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214500", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.452400", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.185200", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181200", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125200", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.486800", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.322300", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.481800", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.317300", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.356800", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.192300", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.633200", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.628200", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.503200", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.473400", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.468400", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.343400", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101300", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045000", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.322400", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.292400", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.192400", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117000", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108300", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113300", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052000", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057000", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.258000", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.253000", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.128000", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.410600", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.380600", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.280600", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.404400", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.399400", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.274400", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099600", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043300", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120600", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060600", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047700", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103400", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047400", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.893900", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.888900", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.763900", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.777100", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.772100", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.647100", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.201100", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.197100", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141100", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "16.772200", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.124400", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.119400", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.994400", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.784500", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.779500", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.654500", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.886400", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.197500", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.197700", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193500", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193700", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137500", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137700", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.120000", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.115000", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.990000", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.496000", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.823100", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.823800", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.360800", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.355800", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.230800", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.751300", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.762100", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.746300", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.757100", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.621300", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.632100", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.490800", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.485800", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.360800", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.638300", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.608300", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.508300", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.858300", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.853300", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.728300", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "13.813300", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "p2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "13.783300", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "13.683300", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.974800", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.969800", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.844800", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.334900", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.304900", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.204900", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.523300", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.518300", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.393300", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147600", + "Timestamp": "2024-05-16T14:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143900", + "Timestamp": "2024-05-16T14:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087600", + "Timestamp": "2024-05-16T14:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.342000", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.337000", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212000", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115700", + "Timestamp": "2024-05-16T14:01:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-16T14:01:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055700", + "Timestamp": "2024-05-16T14:01:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.485800", + "Timestamp": "2024-05-16T14:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.480800", + "Timestamp": "2024-05-16T14:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.355800", + "Timestamp": "2024-05-16T14:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.452500", + "Timestamp": "2024-05-16T13:49:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.068800", + "Timestamp": "2024-05-16T13:49:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T13:48:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.057300", + "Timestamp": "2024-05-16T13:48:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.834800", + "Timestamp": "2024-05-16T13:47:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.829800", + "Timestamp": "2024-05-16T13:47:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.704800", + "Timestamp": "2024-05-16T13:47:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.677600", + "Timestamp": "2024-05-16T13:47:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.826100", + "Timestamp": "2024-05-16T13:47:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.443600", + "Timestamp": "2024-05-16T13:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.573900", + "Timestamp": "2024-05-16T13:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.568900", + "Timestamp": "2024-05-16T13:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.443900", + "Timestamp": "2024-05-16T13:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.681800", + "Timestamp": "2024-05-16T13:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.383500", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.002800", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.666800", + "Timestamp": "2024-05-16T13:47:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360800", + "Timestamp": "2024-05-16T13:47:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.330800", + "Timestamp": "2024-05-16T13:47:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230800", + "Timestamp": "2024-05-16T13:47:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139600", + "Timestamp": "2024-05-16T13:47:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179600", + "Timestamp": "2024-05-16T13:47:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079600", + "Timestamp": "2024-05-16T13:47:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.608100", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.603100", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.478100", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.479900", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.474900", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.349900", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.122300", + "Timestamp": "2024-05-16T13:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.117300", + "Timestamp": "2024-05-16T13:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.992300", + "Timestamp": "2024-05-16T13:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.147800", + "Timestamp": "2024-05-16T13:47:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.647700", + "Timestamp": "2024-05-16T13:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.642700", + "Timestamp": "2024-05-16T13:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.517700", + "Timestamp": "2024-05-16T13:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110400", + "Timestamp": "2024-05-16T13:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.044700", + "Timestamp": "2024-05-16T13:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.816700", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.811700", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.686700", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148600", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.188600", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088600", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.267900", + "Timestamp": "2024-05-16T13:47:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.845200", + "Timestamp": "2024-05-16T13:47:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.840200", + "Timestamp": "2024-05-16T13:47:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.715200", + "Timestamp": "2024-05-16T13:47:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.754700", + "Timestamp": "2024-05-16T13:47:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.749700", + "Timestamp": "2024-05-16T13:47:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.624700", + "Timestamp": "2024-05-16T13:47:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.646100", + "Timestamp": "2024-05-16T13:47:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.514200", + "Timestamp": "2024-05-16T13:47:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.511000", + "Timestamp": "2024-05-16T13:47:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.290500", + "Timestamp": "2024-05-16T13:47:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.285500", + "Timestamp": "2024-05-16T13:47:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.160500", + "Timestamp": "2024-05-16T13:47:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.476200", + "Timestamp": "2024-05-16T13:47:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.471200", + "Timestamp": "2024-05-16T13:47:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.346200", + "Timestamp": "2024-05-16T13:47:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.440600", + "Timestamp": "2024-05-16T13:47:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.435600", + "Timestamp": "2024-05-16T13:47:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.310600", + "Timestamp": "2024-05-16T13:47:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.102000", + "Timestamp": "2024-05-16T13:47:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.097000", + "Timestamp": "2024-05-16T13:47:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.972000", + "Timestamp": "2024-05-16T13:47:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.850900", + "Timestamp": "2024-05-16T13:47:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.075200", + "Timestamp": "2024-05-16T13:47:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.070200", + "Timestamp": "2024-05-16T13:47:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.945200", + "Timestamp": "2024-05-16T13:47:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.580800", + "Timestamp": "2024-05-16T13:47:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.575800", + "Timestamp": "2024-05-16T13:47:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.450800", + "Timestamp": "2024-05-16T13:47:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.205700", + "Timestamp": "2024-05-16T13:47:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.517100", + "Timestamp": "2024-05-16T13:47:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.512100", + "Timestamp": "2024-05-16T13:47:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.387100", + "Timestamp": "2024-05-16T13:47:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.100100", + "Timestamp": "2024-05-16T13:47:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.970700", + "Timestamp": "2024-05-16T13:47:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.965700", + "Timestamp": "2024-05-16T13:47:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.840700", + "Timestamp": "2024-05-16T13:47:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.534400", + "Timestamp": "2024-05-16T13:47:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "11.062500", + "Timestamp": "2024-05-16T13:47:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "11.057500", + "Timestamp": "2024-05-16T13:47:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "10.932500", + "Timestamp": "2024-05-16T13:47:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.558300", + "Timestamp": "2024-05-16T13:47:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.528300", + "Timestamp": "2024-05-16T13:47:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.428300", + "Timestamp": "2024-05-16T13:47:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-16T13:47:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T13:47:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046900", + "Timestamp": "2024-05-16T13:47:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.306500", + "Timestamp": "2024-05-16T13:47:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.301500", + "Timestamp": "2024-05-16T13:47:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.176500", + "Timestamp": "2024-05-16T13:47:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123100", + "Timestamp": "2024-05-16T13:47:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119100", + "Timestamp": "2024-05-16T13:47:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063100", + "Timestamp": "2024-05-16T13:47:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.778100", + "Timestamp": "2024-05-16T13:47:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.712700", + "Timestamp": "2024-05-16T13:47:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.460600", + "Timestamp": "2024-05-16T13:47:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.455600", + "Timestamp": "2024-05-16T13:47:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.330600", + "Timestamp": "2024-05-16T13:47:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.090000", + "Timestamp": "2024-05-16T13:47:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.085000", + "Timestamp": "2024-05-16T13:47:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.960000", + "Timestamp": "2024-05-16T13:47:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074400", + "Timestamp": "2024-05-16T13:47:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070700", + "Timestamp": "2024-05-16T13:47:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014400", + "Timestamp": "2024-05-16T13:47:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.460000", + "Timestamp": "2024-05-16T13:46:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063800", + "Timestamp": "2024-05-16T13:46:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003800", + "Timestamp": "2024-05-16T13:46:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003800", + "Timestamp": "2024-05-16T13:46:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098300", + "Timestamp": "2024-05-16T13:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094600", + "Timestamp": "2024-05-16T13:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038300", + "Timestamp": "2024-05-16T13:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.638600", + "Timestamp": "2024-05-16T13:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.633600", + "Timestamp": "2024-05-16T13:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.508600", + "Timestamp": "2024-05-16T13:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.233800", + "Timestamp": "2024-05-16T13:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.365200", + "Timestamp": "2024-05-16T13:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.228800", + "Timestamp": "2024-05-16T13:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.360200", + "Timestamp": "2024-05-16T13:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T13:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235200", + "Timestamp": "2024-05-16T13:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.204300", + "Timestamp": "2024-05-16T13:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.412800", + "Timestamp": "2024-05-16T13:46:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.483400", + "Timestamp": "2024-05-16T13:46:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.478400", + "Timestamp": "2024-05-16T13:46:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.353400", + "Timestamp": "2024-05-16T13:46:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.432800", + "Timestamp": "2024-05-16T13:46:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.427800", + "Timestamp": "2024-05-16T13:46:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.302800", + "Timestamp": "2024-05-16T13:46:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.836200", + "Timestamp": "2024-05-16T13:46:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.037100", + "Timestamp": "2024-05-16T13:46:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.844500", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.839500", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.714500", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157600", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153600", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097600", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.287500", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.282500", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157500", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.549800", + "Timestamp": "2024-05-16T13:46:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.544800", + "Timestamp": "2024-05-16T13:46:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.419800", + "Timestamp": "2024-05-16T13:46:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.496100", + "Timestamp": "2024-05-16T13:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.358200", + "Timestamp": "2024-05-16T13:46:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.405700", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.388900", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g5g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.726300", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g5g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.721300", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g5g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.596300", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.475800", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.470800", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.345800", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.160400", + "Timestamp": "2024-05-16T13:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.483100", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.478100", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.353100", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.823300", + "Timestamp": "2024-05-16T13:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.226400", + "Timestamp": "2024-05-16T13:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.221400", + "Timestamp": "2024-05-16T13:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.096400", + "Timestamp": "2024-05-16T13:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.727200", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.722200", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.597200", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.561900", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.423500", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.418500", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.293500", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.368800", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.363800", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.238800", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.286900", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281900", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156900", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.782900", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.777900", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.652900", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.647600", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109200", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.460700", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.689700", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.756000", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.751000", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.626000", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.044300", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.039300", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.914300", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077300", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073600", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017300", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.434600", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.429600", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.304600", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.364300", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.175300", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.171600", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115300", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104300", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.829600", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.824600", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.699600", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.012200", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.177100", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.777100", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.772100", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.647100", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.799900", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.769900", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.669900", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.849500", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.429400", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.424400", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.299400", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.581800", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.763600", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.758600", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.633600", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.103500", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.098500", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.973500", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.307100", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.302100", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.177100", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.456500", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.562000", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.532000", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.432000", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.590700", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.980000", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.950000", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.850000", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.832100", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.376400", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.346400", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.246400", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.452800", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298700", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299300", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293700", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294300", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168700", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169300", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.198800", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.660800", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.655800", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.530800", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.711100", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.706100", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.581100", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093500", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037200", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.805100", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.775100", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.675100", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.992400", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.987400", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.862400", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106200", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146200", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046200", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.960300", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.955300", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.830300", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133000", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129300", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073000", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.361400", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.356400", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.231400", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148500", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144800", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088500", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.134400", + "Timestamp": "2024-05-16T13:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.129400", + "Timestamp": "2024-05-16T13:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.004400", + "Timestamp": "2024-05-16T13:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.671000", + "Timestamp": "2024-05-16T13:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.666000", + "Timestamp": "2024-05-16T13:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.541000", + "Timestamp": "2024-05-16T13:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.349400", + "Timestamp": "2024-05-16T13:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.344400", + "Timestamp": "2024-05-16T13:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219400", + "Timestamp": "2024-05-16T13:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158800", + "Timestamp": "2024-05-16T13:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155100", + "Timestamp": "2024-05-16T13:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-16T13:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.328000", + "Timestamp": "2024-05-16T13:37:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.328000", + "Timestamp": "2024-05-16T13:37:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.636600", + "Timestamp": "2024-05-16T13:36:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.546400", + "Timestamp": "2024-05-16T13:35:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.832400", + "Timestamp": "2024-05-16T13:35:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.415600", + "Timestamp": "2024-05-16T13:34:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.097100", + "Timestamp": "2024-05-16T13:34:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.092100", + "Timestamp": "2024-05-16T13:34:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967100", + "Timestamp": "2024-05-16T13:34:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.558400", + "Timestamp": "2024-05-16T13:33:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.179200", + "Timestamp": "2024-05-16T13:33:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.090000", + "Timestamp": "2024-05-16T13:33:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.328000", + "Timestamp": "2024-05-16T13:33:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.514000", + "Timestamp": "2024-05-16T13:33:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.509000", + "Timestamp": "2024-05-16T13:33:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.384000", + "Timestamp": "2024-05-16T13:33:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416000", + "Timestamp": "2024-05-16T13:33:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.037000", + "Timestamp": "2024-05-16T13:32:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.573600", + "Timestamp": "2024-05-16T13:32:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432100", + "Timestamp": "2024-05-16T13:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.879800", + "Timestamp": "2024-05-16T13:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.180800", + "Timestamp": "2024-05-16T13:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.176800", + "Timestamp": "2024-05-16T13:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120800", + "Timestamp": "2024-05-16T13:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.569700", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.564700", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.439700", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121200", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117200", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061200", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.345700", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.340700", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.215700", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.861300", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126100", + "Timestamp": "2024-05-16T13:32:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122100", + "Timestamp": "2024-05-16T13:32:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066100", + "Timestamp": "2024-05-16T13:32:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.903100", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.898100", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.773100", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.037000", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.032000", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.907000", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.441100", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.436100", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.311100", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.190000", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.185000", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.060000", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.874200", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.175400", + "Timestamp": "2024-05-16T13:32:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.836200", + "Timestamp": "2024-05-16T13:32:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.145900", + "Timestamp": "2024-05-16T13:32:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T13:32:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-16T13:32:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048200", + "Timestamp": "2024-05-16T13:32:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.238300", + "Timestamp": "2024-05-16T13:32:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.747000", + "Timestamp": "2024-05-16T13:32:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070000", + "Timestamp": "2024-05-16T13:32:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066300", + "Timestamp": "2024-05-16T13:32:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010000", + "Timestamp": "2024-05-16T13:32:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.211200", + "Timestamp": "2024-05-16T13:32:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.206200", + "Timestamp": "2024-05-16T13:32:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.081200", + "Timestamp": "2024-05-16T13:32:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.947100", + "Timestamp": "2024-05-16T13:32:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.942100", + "Timestamp": "2024-05-16T13:32:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.817100", + "Timestamp": "2024-05-16T13:32:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213600", + "Timestamp": "2024-05-16T13:32:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.656000", + "Timestamp": "2024-05-16T13:32:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.137800", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.634000", + "Timestamp": "2024-05-16T13:32:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.635600", + "Timestamp": "2024-05-16T13:32:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.414800", + "Timestamp": "2024-05-16T13:32:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.301600", + "Timestamp": "2024-05-16T13:31:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.665000", + "Timestamp": "2024-05-16T13:31:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.660000", + "Timestamp": "2024-05-16T13:31:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.535000", + "Timestamp": "2024-05-16T13:31:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.780900", + "Timestamp": "2024-05-16T13:31:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.750900", + "Timestamp": "2024-05-16T13:31:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.650900", + "Timestamp": "2024-05-16T13:31:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.157100", + "Timestamp": "2024-05-16T13:31:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.891700", + "Timestamp": "2024-05-16T13:31:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.546000", + "Timestamp": "2024-05-16T13:31:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.541000", + "Timestamp": "2024-05-16T13:31:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.416000", + "Timestamp": "2024-05-16T13:31:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.533500", + "Timestamp": "2024-05-16T13:31:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.528500", + "Timestamp": "2024-05-16T13:31:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.403500", + "Timestamp": "2024-05-16T13:31:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.683700", + "Timestamp": "2024-05-16T13:31:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.947400", + "Timestamp": "2024-05-16T13:31:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.942400", + "Timestamp": "2024-05-16T13:31:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.817400", + "Timestamp": "2024-05-16T13:31:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115900", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055900", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.740000", + "Timestamp": "2024-05-16T13:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.735100", + "Timestamp": "2024-05-16T13:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.171500", + "Timestamp": "2024-05-16T13:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.166500", + "Timestamp": "2024-05-16T13:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.041500", + "Timestamp": "2024-05-16T13:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.865900", + "Timestamp": "2024-05-16T13:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.860900", + "Timestamp": "2024-05-16T13:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.735900", + "Timestamp": "2024-05-16T13:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311800", + "Timestamp": "2024-05-16T13:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.351800", + "Timestamp": "2024-05-16T13:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.251800", + "Timestamp": "2024-05-16T13:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.425600", + "Timestamp": "2024-05-16T13:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.420600", + "Timestamp": "2024-05-16T13:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.295600", + "Timestamp": "2024-05-16T13:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.804400", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.536700", + "Timestamp": "2024-05-16T13:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.531700", + "Timestamp": "2024-05-16T13:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.406700", + "Timestamp": "2024-05-16T13:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.222000", + "Timestamp": "2024-05-16T13:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.218300", + "Timestamp": "2024-05-16T13:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162000", + "Timestamp": "2024-05-16T13:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.501000", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.237300", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.232300", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.107300", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.990300", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.397700", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.760800", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.245700", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.240700", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.115700", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.978800", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.948800", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.848800", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.585300", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.580300", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.455300", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.425500", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.645400", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.991000", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.986000", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.861000", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.053500", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.048500", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.923500", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.830700", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.904900", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103100", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099400", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043100", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.765500", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042900", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.194000", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.203800", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069000", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040300", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009000", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.205300", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.201300", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145300", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.403900", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.398900", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.273900", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.050300", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056600", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099700", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039700", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152600", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148900", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.494100", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.489100", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.364100", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147600", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143900", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087600", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.328500", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.323500", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.198500", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.035300", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.030300", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.905300", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075400", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071700", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015400", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.269200", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.264200", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.139200", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123500", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119800", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063500", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152100", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148400", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092100", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.879500", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135700", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132000", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075700", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.954600", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.949600", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.824600", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.451600", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.382900", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.331800", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150200", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050200", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T13:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101300", + "Timestamp": "2024-05-16T13:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045000", + "Timestamp": "2024-05-16T13:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.563300", + "Timestamp": "2024-05-16T13:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.558300", + "Timestamp": "2024-05-16T13:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.433300", + "Timestamp": "2024-05-16T13:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.835500", + "Timestamp": "2024-05-16T13:20:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.835200", + "Timestamp": "2024-05-16T13:19:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T13:18:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.934400", + "Timestamp": "2024-05-16T13:18:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.490600", + "Timestamp": "2024-05-16T13:18:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.530000", + "Timestamp": "2024-05-16T13:17:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.500000", + "Timestamp": "2024-05-16T13:17:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.400000", + "Timestamp": "2024-05-16T13:17:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.415000", + "Timestamp": "2024-05-16T13:17:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206400", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.618000", + "Timestamp": "2024-05-16T13:17:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.588000", + "Timestamp": "2024-05-16T13:17:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.488000", + "Timestamp": "2024-05-16T13:17:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.634700", + "Timestamp": "2024-05-16T13:17:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.629700", + "Timestamp": "2024-05-16T13:17:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.504700", + "Timestamp": "2024-05-16T13:17:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.046500", + "Timestamp": "2024-05-16T13:17:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.016500", + "Timestamp": "2024-05-16T13:17:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.916500", + "Timestamp": "2024-05-16T13:17:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.975100", + "Timestamp": "2024-05-16T13:17:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.970100", + "Timestamp": "2024-05-16T13:17:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.845100", + "Timestamp": "2024-05-16T13:17:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069300", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040300", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009300", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164400", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160700", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.660200", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.611500", + "Timestamp": "2024-05-16T13:17:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.606500", + "Timestamp": "2024-05-16T13:17:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.481500", + "Timestamp": "2024-05-16T13:17:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130900", + "Timestamp": "2024-05-16T13:17:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126900", + "Timestamp": "2024-05-16T13:17:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070900", + "Timestamp": "2024-05-16T13:17:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.259100", + "Timestamp": "2024-05-16T13:17:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.229100", + "Timestamp": "2024-05-16T13:17:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.129100", + "Timestamp": "2024-05-16T13:17:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101800", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041800", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159000", + "Timestamp": "2024-05-16T13:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155300", + "Timestamp": "2024-05-16T13:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099000", + "Timestamp": "2024-05-16T13:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.828400", + "Timestamp": "2024-05-16T13:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.274600", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.269600", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.144600", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162100", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158400", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "8.235500", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "8.205500", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "8.105500", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135200", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131500", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075200", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.201600", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.197600", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141600", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.060400", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.055400", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.930400", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103100", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047100", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079600", + "Timestamp": "2024-05-16T13:17:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119600", + "Timestamp": "2024-05-16T13:17:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019600", + "Timestamp": "2024-05-16T13:17:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.484400", + "Timestamp": "2024-05-16T13:17:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.479400", + "Timestamp": "2024-05-16T13:17:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.354400", + "Timestamp": "2024-05-16T13:17:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.547400", + "Timestamp": "2024-05-16T13:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.542400", + "Timestamp": "2024-05-16T13:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.417400", + "Timestamp": "2024-05-16T13:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.329600", + "Timestamp": "2024-05-16T13:17:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324600", + "Timestamp": "2024-05-16T13:17:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199600", + "Timestamp": "2024-05-16T13:17:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.231200", + "Timestamp": "2024-05-16T13:17:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.227500", + "Timestamp": "2024-05-16T13:17:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171200", + "Timestamp": "2024-05-16T13:17:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.657000", + "Timestamp": "2024-05-16T13:17:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.627000", + "Timestamp": "2024-05-16T13:17:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.527000", + "Timestamp": "2024-05-16T13:17:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.722200", + "Timestamp": "2024-05-16T13:17:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.717200", + "Timestamp": "2024-05-16T13:17:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.592200", + "Timestamp": "2024-05-16T13:17:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-16T13:17:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.271200", + "Timestamp": "2024-05-16T13:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.266200", + "Timestamp": "2024-05-16T13:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.141200", + "Timestamp": "2024-05-16T13:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.528800", + "Timestamp": "2024-05-16T13:17:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.523800", + "Timestamp": "2024-05-16T13:17:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.398800", + "Timestamp": "2024-05-16T13:17:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.832000", + "Timestamp": "2024-05-16T13:17:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.429300", + "Timestamp": "2024-05-16T13:17:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.399300", + "Timestamp": "2024-05-16T13:17:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.299300", + "Timestamp": "2024-05-16T13:17:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.836800", + "Timestamp": "2024-05-16T13:17:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.449500", + "Timestamp": "2024-05-16T13:17:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.156400", + "Timestamp": "2024-05-16T13:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.126400", + "Timestamp": "2024-05-16T13:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.026400", + "Timestamp": "2024-05-16T13:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.526100", + "Timestamp": "2024-05-16T13:17:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.521100", + "Timestamp": "2024-05-16T13:17:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.396100", + "Timestamp": "2024-05-16T13:17:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.821000", + "Timestamp": "2024-05-16T13:16:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.816000", + "Timestamp": "2024-05-16T13:16:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.691000", + "Timestamp": "2024-05-16T13:16:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.484800", + "Timestamp": "2024-05-16T13:16:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.479800", + "Timestamp": "2024-05-16T13:16:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.354800", + "Timestamp": "2024-05-16T13:16:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270700", + "Timestamp": "2024-05-16T13:16:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265700", + "Timestamp": "2024-05-16T13:16:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140700", + "Timestamp": "2024-05-16T13:16:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208100", + "Timestamp": "2024-05-16T13:16:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.608500", + "Timestamp": "2024-05-16T13:16:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.603500", + "Timestamp": "2024-05-16T13:16:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.478500", + "Timestamp": "2024-05-16T13:16:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.999600", + "Timestamp": "2024-05-16T13:16:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.969600", + "Timestamp": "2024-05-16T13:16:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.869600", + "Timestamp": "2024-05-16T13:16:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.257600", + "Timestamp": "2024-05-16T13:16:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147900", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144200", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087900", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.370000", + "Timestamp": "2024-05-16T13:16:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.340000", + "Timestamp": "2024-05-16T13:16:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.240000", + "Timestamp": "2024-05-16T13:16:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.398900", + "Timestamp": "2024-05-16T13:16:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.393900", + "Timestamp": "2024-05-16T13:16:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.268900", + "Timestamp": "2024-05-16T13:16:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.822400", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148600", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048600", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061800", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001800", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001800", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.254300", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.249300", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.124300", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.065100", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.060100", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.935100", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.309400", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.304400", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.179400", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.830100", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.825100", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.700100", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.335200", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.330200", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.205200", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441100", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.946100", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.941100", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.816100", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.465600", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.460600", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.335600", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.575700", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.587200", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118000", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114300", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058000", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.023800", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.489100", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.224400", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.219400", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.094400", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.210100", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.206100", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150100", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162300", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158300", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102300", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115400", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055400", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.351900", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.346900", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.221900", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.185400", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.180400", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.055400", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.692400", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.662400", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.562400", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098900", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095200", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038900", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.767900", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163500", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159500", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152900", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149200", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092900", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.215400", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.210400", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085400", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069900", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041200", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009900", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.309900", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.304900", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.179900", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.173400", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.168400", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.043400", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.759400", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044000", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050500", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.027400", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.997400", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.897400", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.208100", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.203100", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.078100", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.461900", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.456900", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.331900", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.750200", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.745200", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.620200", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.953100", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.948100", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.823100", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070100", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041100", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010100", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.989100", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.984100", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.859100", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.562300", + "Timestamp": "2024-05-16T13:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.557300", + "Timestamp": "2024-05-16T13:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.432300", + "Timestamp": "2024-05-16T13:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.904500", + "Timestamp": "2024-05-16T13:12:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-16T13:08:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-16T13:08:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-16T13:08:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112700", + "Timestamp": "2024-05-16T13:05:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.347200", + "Timestamp": "2024-05-16T13:04:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.419600", + "Timestamp": "2024-05-16T13:04:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.947400", + "Timestamp": "2024-05-16T13:04:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.917400", + "Timestamp": "2024-05-16T13:04:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.817400", + "Timestamp": "2024-05-16T13:04:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.364200", + "Timestamp": "2024-05-16T13:03:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.515200", + "Timestamp": "2024-05-16T13:02:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.215800", + "Timestamp": "2024-05-16T13:02:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.210800", + "Timestamp": "2024-05-16T13:02:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.085800", + "Timestamp": "2024-05-16T13:02:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.428100", + "Timestamp": "2024-05-16T13:02:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215100", + "Timestamp": "2024-05-16T13:02:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.680300", + "Timestamp": "2024-05-16T13:02:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432200", + "Timestamp": "2024-05-16T13:02:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.827200", + "Timestamp": "2024-05-16T13:02:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.413400", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.383400", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.283400", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.944500", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.939500", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.814500", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.363200", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.358200", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.233200", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114800", + "Timestamp": "2024-05-16T13:02:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.379600", + "Timestamp": "2024-05-16T13:02:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.672600", + "Timestamp": "2024-05-16T13:02:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.667600", + "Timestamp": "2024-05-16T13:02:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.542600", + "Timestamp": "2024-05-16T13:02:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.756900", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223400", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.697700", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.422300", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.417300", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.292300", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.893300", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.604900", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.888300", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.599900", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.763300", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.474900", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.036700", + "Timestamp": "2024-05-16T13:02:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.234500", + "Timestamp": "2024-05-16T13:02:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.031700", + "Timestamp": "2024-05-16T13:02:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.229500", + "Timestamp": "2024-05-16T13:02:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.906700", + "Timestamp": "2024-05-16T13:02:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.104500", + "Timestamp": "2024-05-16T13:02:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T13:02:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.243000", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.238000", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.113000", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.919000", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.914000", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.789000", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.599400", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.594400", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.469400", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.179100", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.175400", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119100", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.204100", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.199100", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.074100", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.412800", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.407800", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.282800", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.624600", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.619600", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.494600", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.194000", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190000", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134000", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169500", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165800", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.573400", + "Timestamp": "2024-05-16T13:02:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.568400", + "Timestamp": "2024-05-16T13:02:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.443400", + "Timestamp": "2024-05-16T13:02:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071300", + "Timestamp": "2024-05-16T13:02:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042300", + "Timestamp": "2024-05-16T13:02:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011300", + "Timestamp": "2024-05-16T13:02:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.331700", + "Timestamp": "2024-05-16T13:02:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.326700", + "Timestamp": "2024-05-16T13:02:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.201700", + "Timestamp": "2024-05-16T13:02:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.452200", + "Timestamp": "2024-05-16T13:02:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.321600", + "Timestamp": "2024-05-16T13:02:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.316600", + "Timestamp": "2024-05-16T13:02:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.191600", + "Timestamp": "2024-05-16T13:02:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.743200", + "Timestamp": "2024-05-16T13:02:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.697500", + "Timestamp": "2024-05-16T13:02:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.667500", + "Timestamp": "2024-05-16T13:02:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.567500", + "Timestamp": "2024-05-16T13:02:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102000", + "Timestamp": "2024-05-16T13:02:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-16T13:02:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098300", + "Timestamp": "2024-05-16T13:02:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108300", + "Timestamp": "2024-05-16T13:02:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042000", + "Timestamp": "2024-05-16T13:02:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052000", + "Timestamp": "2024-05-16T13:02:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.427700", + "Timestamp": "2024-05-16T13:02:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.422700", + "Timestamp": "2024-05-16T13:02:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.297700", + "Timestamp": "2024-05-16T13:02:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.350600", + "Timestamp": "2024-05-16T13:02:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.345600", + "Timestamp": "2024-05-16T13:02:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.220600", + "Timestamp": "2024-05-16T13:02:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.944100", + "Timestamp": "2024-05-16T13:02:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.914100", + "Timestamp": "2024-05-16T13:02:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.814100", + "Timestamp": "2024-05-16T13:02:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.443500", + "Timestamp": "2024-05-16T13:02:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.438500", + "Timestamp": "2024-05-16T13:02:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.313500", + "Timestamp": "2024-05-16T13:02:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.311500", + "Timestamp": "2024-05-16T13:02:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.306500", + "Timestamp": "2024-05-16T13:02:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.181500", + "Timestamp": "2024-05-16T13:02:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.202200", + "Timestamp": "2024-05-16T13:02:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198500", + "Timestamp": "2024-05-16T13:02:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142200", + "Timestamp": "2024-05-16T13:02:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.833400", + "Timestamp": "2024-05-16T13:02:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153500", + "Timestamp": "2024-05-16T13:02:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149500", + "Timestamp": "2024-05-16T13:02:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093500", + "Timestamp": "2024-05-16T13:02:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.580900", + "Timestamp": "2024-05-16T13:02:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.575900", + "Timestamp": "2024-05-16T13:02:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.450900", + "Timestamp": "2024-05-16T13:02:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.206400", + "Timestamp": "2024-05-16T13:02:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.429000", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.424000", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.299000", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.666000", + "Timestamp": "2024-05-16T13:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.661000", + "Timestamp": "2024-05-16T13:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.536000", + "Timestamp": "2024-05-16T13:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.719400", + "Timestamp": "2024-05-16T13:01:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.714400", + "Timestamp": "2024-05-16T13:01:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.589400", + "Timestamp": "2024-05-16T13:01:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.688400", + "Timestamp": "2024-05-16T13:01:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.666100", + "Timestamp": "2024-05-16T13:01:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.280700", + "Timestamp": "2024-05-16T13:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.275700", + "Timestamp": "2024-05-16T13:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.150700", + "Timestamp": "2024-05-16T13:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.570100", + "Timestamp": "2024-05-16T13:01:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.565100", + "Timestamp": "2024-05-16T13:01:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.440100", + "Timestamp": "2024-05-16T13:01:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.989700", + "Timestamp": "2024-05-16T13:01:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.628100", + "Timestamp": "2024-05-16T13:01:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.623100", + "Timestamp": "2024-05-16T13:01:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.498100", + "Timestamp": "2024-05-16T13:01:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.272900", + "Timestamp": "2024-05-16T13:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267900", + "Timestamp": "2024-05-16T13:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142900", + "Timestamp": "2024-05-16T13:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.703800", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.698800", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.573800", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.879600", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.340400", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.310400", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.210400", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145100", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141400", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085100", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.056000", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.051000", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.926000", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.408000", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.448000", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.348000", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.679100", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.929800", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.302900", + "Timestamp": "2024-05-16T13:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.297900", + "Timestamp": "2024-05-16T13:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.172900", + "Timestamp": "2024-05-16T13:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.141300", + "Timestamp": "2024-05-16T13:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.225600", + "Timestamp": "2024-05-16T13:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.221900", + "Timestamp": "2024-05-16T13:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165600", + "Timestamp": "2024-05-16T13:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.459300", + "Timestamp": "2024-05-16T13:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.185800", + "Timestamp": "2024-05-16T13:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.880300", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.875300", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.750300", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.829700", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.824700", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.699700", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.458500", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.276000", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.271000", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146000", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.465600", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144300", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140600", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084300", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206200", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.642200", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.637200", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.512200", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088900", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032600", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225500", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.626300", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.596300", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.496300", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102400", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098700", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042400", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115700", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111700", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055700", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.498600", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.493600", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.368600", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.768800", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.763800", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.638800", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.901000", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.411900", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307600", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302600", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177600", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.620000", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.615000", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.490000", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174600", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170600", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.831300", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.826300", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.701300", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.672300", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.642300", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.542300", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.570400", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.565400", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.440400", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.202400", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198700", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142400", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140100", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136400", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080100", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.827100", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.822100", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.697100", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.260400", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.255400", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.130400", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.823100", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.578300", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.573300", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.448300", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.655700", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.650700", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.525700", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.742200", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.737200", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.612200", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.811600", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.806600", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.681600", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.690800", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150700", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147000", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090700", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103600", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047300", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.032700", + "Timestamp": "2024-05-16T13:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.027700", + "Timestamp": "2024-05-16T13:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.902700", + "Timestamp": "2024-05-16T13:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.476000", + "Timestamp": "2024-05-16T13:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.471000", + "Timestamp": "2024-05-16T13:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.346000", + "Timestamp": "2024-05-16T13:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.939300", + "Timestamp": "2024-05-16T13:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.476800", + "Timestamp": "2024-05-16T13:01:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102300", + "Timestamp": "2024-05-16T13:00:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.608800", + "Timestamp": "2024-05-16T12:51:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.832000", + "Timestamp": "2024-05-16T12:50:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.499800", + "Timestamp": "2024-05-16T12:49:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432000", + "Timestamp": "2024-05-16T12:49:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213600", + "Timestamp": "2024-05-16T12:49:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.515200", + "Timestamp": "2024-05-16T12:48:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.640600", + "Timestamp": "2024-05-16T12:48:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.403400", + "Timestamp": "2024-05-16T12:48:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.846700", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.841700", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.716700", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200400", + "Timestamp": "2024-05-16T12:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.240400", + "Timestamp": "2024-05-16T12:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140400", + "Timestamp": "2024-05-16T12:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T12:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102700", + "Timestamp": "2024-05-16T12:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046400", + "Timestamp": "2024-05-16T12:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.962200", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.957200", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.832200", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.612900", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.607900", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.482900", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050300", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.314800", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.309800", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.184800", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.496900", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.491900", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.366900", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.528200", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.523200", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.398200", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.469900", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.464900", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.339900", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.353200", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.348200", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.223200", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.089800", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.084800", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.959800", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.971600", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.532800", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.477800", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.966600", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.527800", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.472800", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.841600", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.402800", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.347800", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.374700", + "Timestamp": "2024-05-16T12:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.369700", + "Timestamp": "2024-05-16T12:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.244700", + "Timestamp": "2024-05-16T12:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.859600", + "Timestamp": "2024-05-16T12:47:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.854600", + "Timestamp": "2024-05-16T12:47:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.729600", + "Timestamp": "2024-05-16T12:47:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161100", + "Timestamp": "2024-05-16T12:47:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157400", + "Timestamp": "2024-05-16T12:47:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101100", + "Timestamp": "2024-05-16T12:47:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.043000", + "Timestamp": "2024-05-16T12:47:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.038000", + "Timestamp": "2024-05-16T12:47:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.913000", + "Timestamp": "2024-05-16T12:47:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.449600", + "Timestamp": "2024-05-16T12:47:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.671300", + "Timestamp": "2024-05-16T12:47:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.666300", + "Timestamp": "2024-05-16T12:47:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.541300", + "Timestamp": "2024-05-16T12:47:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098500", + "Timestamp": "2024-05-16T12:47:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094500", + "Timestamp": "2024-05-16T12:47:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038500", + "Timestamp": "2024-05-16T12:47:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.628800", + "Timestamp": "2024-05-16T12:47:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-16T12:47:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154500", + "Timestamp": "2024-05-16T12:47:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054500", + "Timestamp": "2024-05-16T12:47:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117800", + "Timestamp": "2024-05-16T12:47:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114100", + "Timestamp": "2024-05-16T12:47:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057800", + "Timestamp": "2024-05-16T12:47:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116200", + "Timestamp": "2024-05-16T12:47:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T12:47:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056200", + "Timestamp": "2024-05-16T12:47:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.473500", + "Timestamp": "2024-05-16T12:46:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.468500", + "Timestamp": "2024-05-16T12:46:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.343500", + "Timestamp": "2024-05-16T12:46:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.339500", + "Timestamp": "2024-05-16T12:46:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334500", + "Timestamp": "2024-05-16T12:46:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.209500", + "Timestamp": "2024-05-16T12:46:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.274500", + "Timestamp": "2024-05-16T12:46:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269500", + "Timestamp": "2024-05-16T12:46:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144500", + "Timestamp": "2024-05-16T12:46:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.366400", + "Timestamp": "2024-05-16T12:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.361400", + "Timestamp": "2024-05-16T12:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.236400", + "Timestamp": "2024-05-16T12:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.432800", + "Timestamp": "2024-05-16T12:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.441200", + "Timestamp": "2024-05-16T12:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.427800", + "Timestamp": "2024-05-16T12:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.436200", + "Timestamp": "2024-05-16T12:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.302800", + "Timestamp": "2024-05-16T12:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.311200", + "Timestamp": "2024-05-16T12:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.605300", + "Timestamp": "2024-05-16T12:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.600300", + "Timestamp": "2024-05-16T12:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.475300", + "Timestamp": "2024-05-16T12:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.696300", + "Timestamp": "2024-05-16T12:46:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.691300", + "Timestamp": "2024-05-16T12:46:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.566300", + "Timestamp": "2024-05-16T12:46:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.154600", + "Timestamp": "2024-05-16T12:46:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.149600", + "Timestamp": "2024-05-16T12:46:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.024600", + "Timestamp": "2024-05-16T12:46:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.003600", + "Timestamp": "2024-05-16T12:46:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.998600", + "Timestamp": "2024-05-16T12:46:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.873600", + "Timestamp": "2024-05-16T12:46:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.458100", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.453100", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.328100", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.507800", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.502800", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.377800", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154800", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151100", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094800", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.668900", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.663900", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.538900", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.768500", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.763500", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.638500", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.365400", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.360400", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.235400", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127100", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123100", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067100", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.989200", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.984200", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.859200", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.859500", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.854500", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.729500", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.221000", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.216000", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.091000", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.460000", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.455000", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.330000", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.196100", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192400", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136100", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.619400", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.614400", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.489400", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.118200", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.687500", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.682500", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.557500", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137000", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133300", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077000", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.613700", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.608700", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.483700", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.923200", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.918200", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.793200", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.664900", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.659900", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.534900", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153600", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193600", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093600", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.868800", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.060300", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.055300", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.930300", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150000", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050000", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.328300", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323300", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.198300", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.320500", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.290500", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190500", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097300", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093600", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037300", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.368100", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.338100", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.238100", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.946600", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.916600", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.816600", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.960900", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.955900", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.830900", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.433500", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.428500", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.303500", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.838400", + "Timestamp": "2024-05-16T12:34:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.145600", + "Timestamp": "2024-05-16T12:33:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T12:33:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.100000", + "Timestamp": "2024-05-16T12:33:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.201600", + "Timestamp": "2024-05-16T12:33:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107900", + "Timestamp": "2024-05-16T12:33:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.179200", + "Timestamp": "2024-05-16T12:32:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.430400", + "Timestamp": "2024-05-16T12:32:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.676600", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.671600", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.546600", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.762500", + "Timestamp": "2024-05-16T12:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.495300", + "Timestamp": "2024-05-16T12:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.490300", + "Timestamp": "2024-05-16T12:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.365300", + "Timestamp": "2024-05-16T12:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174800", + "Timestamp": "2024-05-16T12:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.171100", + "Timestamp": "2024-05-16T12:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114800", + "Timestamp": "2024-05-16T12:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.208600", + "Timestamp": "2024-05-16T12:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.248600", + "Timestamp": "2024-05-16T12:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148600", + "Timestamp": "2024-05-16T12:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.888900", + "Timestamp": "2024-05-16T12:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.387200", + "Timestamp": "2024-05-16T12:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.382200", + "Timestamp": "2024-05-16T12:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.257200", + "Timestamp": "2024-05-16T12:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216100", + "Timestamp": "2024-05-16T12:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.483000", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.478000", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.353000", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.186300", + "Timestamp": "2024-05-16T12:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.182600", + "Timestamp": "2024-05-16T12:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T12:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217400", + "Timestamp": "2024-05-16T12:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.797600", + "Timestamp": "2024-05-16T12:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.792000", + "Timestamp": "2024-05-16T12:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216200", + "Timestamp": "2024-05-16T12:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.499200", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.494200", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.369200", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.923400", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306000", + "Timestamp": "2024-05-16T12:32:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301000", + "Timestamp": "2024-05-16T12:32:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176000", + "Timestamp": "2024-05-16T12:32:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.882500", + "Timestamp": "2024-05-16T12:32:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.097100", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.092100", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967100", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.460200", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.430200", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.330200", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116800", + "Timestamp": "2024-05-16T12:32:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T12:32:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056800", + "Timestamp": "2024-05-16T12:32:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.937800", + "Timestamp": "2024-05-16T12:32:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.932800", + "Timestamp": "2024-05-16T12:32:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.807800", + "Timestamp": "2024-05-16T12:32:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.077800", + "Timestamp": "2024-05-16T12:32:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.733100", + "Timestamp": "2024-05-16T12:32:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.703100", + "Timestamp": "2024-05-16T12:32:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.603100", + "Timestamp": "2024-05-16T12:32:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.492700", + "Timestamp": "2024-05-16T12:32:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.425700", + "Timestamp": "2024-05-16T12:32:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.551700", + "Timestamp": "2024-05-16T12:32:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.546700", + "Timestamp": "2024-05-16T12:32:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.421700", + "Timestamp": "2024-05-16T12:32:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.201900", + "Timestamp": "2024-05-16T12:32:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.960100", + "Timestamp": "2024-05-16T12:32:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.955100", + "Timestamp": "2024-05-16T12:32:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.830100", + "Timestamp": "2024-05-16T12:32:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.614600", + "Timestamp": "2024-05-16T12:32:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.556600", + "Timestamp": "2024-05-16T12:32:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.551600", + "Timestamp": "2024-05-16T12:32:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.426600", + "Timestamp": "2024-05-16T12:32:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.527600", + "Timestamp": "2024-05-16T12:31:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.370600", + "Timestamp": "2024-05-16T12:31:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.365600", + "Timestamp": "2024-05-16T12:31:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.240600", + "Timestamp": "2024-05-16T12:31:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021000", + "Timestamp": "2024-05-16T12:31:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.603200", + "Timestamp": "2024-05-16T12:31:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.880500", + "Timestamp": "2024-05-16T12:31:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.876300", + "Timestamp": "2024-05-16T12:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.871300", + "Timestamp": "2024-05-16T12:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.746300", + "Timestamp": "2024-05-16T12:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.462000", + "Timestamp": "2024-05-16T12:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.760800", + "Timestamp": "2024-05-16T12:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.432000", + "Timestamp": "2024-05-16T12:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.730800", + "Timestamp": "2024-05-16T12:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.332000", + "Timestamp": "2024-05-16T12:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.630800", + "Timestamp": "2024-05-16T12:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.717800", + "Timestamp": "2024-05-16T12:31:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.912900", + "Timestamp": "2024-05-16T12:31:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.401800", + "Timestamp": "2024-05-16T12:31:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.396800", + "Timestamp": "2024-05-16T12:31:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.271800", + "Timestamp": "2024-05-16T12:31:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.403500", + "Timestamp": "2024-05-16T12:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g5g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.528200", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g5g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.523200", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g5g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.398200", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.809100", + "Timestamp": "2024-05-16T12:31:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.804100", + "Timestamp": "2024-05-16T12:31:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.679100", + "Timestamp": "2024-05-16T12:31:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.438300", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.031600", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.026600", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.901600", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101000", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097300", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041000", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301800", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296800", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171800", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.462900", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.457900", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.332900", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.448600", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.443600", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.318600", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.442500", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.metal", + "ProductDescription": "Windows", + "SpotPrice": "1.206000", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.343200", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.313200", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.213200", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.580500", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131400", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127700", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071400", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.239500", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.234500", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.109500", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062600", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.038300", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.123700", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.118700", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.993700", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.476900", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225200", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067100", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038100", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007100", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.086000", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.081000", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.956000", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.704200", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.699200", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.574200", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071400", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042400", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011400", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.363600", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.358600", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.233600", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.595300", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.521300", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.516300", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.391300", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360700", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.330700", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230700", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208300", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.218500", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.213500", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.088500", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.782000", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.900300", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.895300", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.770300", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.050000", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.020000", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.920000", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.444500", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.439500", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.314500", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074600", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070900", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014600", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "p2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.233400", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273400", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "p2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.173400", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.242400", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.237400", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.983800", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.978800", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.853800", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047300", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077900", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074200", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017900", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041200", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.991500", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.961500", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.861500", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.298100", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.268100", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.168100", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.161600", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.541000", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.536000", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.411000", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.401500", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.396500", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.271500", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.035700", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145500", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141800", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085500", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.546700", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.541700", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.416700", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.423700", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.198800", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.181600", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177900", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121600", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156500", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152800", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118800", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115100", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058800", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.839400", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.215900", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.211900", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.155900", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.572100", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.542100", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.442100", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.560100", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.555100", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.430100", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.150900", + "Timestamp": "2024-05-16T12:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.480100", + "Timestamp": "2024-05-16T12:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.213700", + "Timestamp": "2024-05-16T12:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.208700", + "Timestamp": "2024-05-16T12:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.083700", + "Timestamp": "2024-05-16T12:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.404500", + "Timestamp": "2024-05-16T12:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.374500", + "Timestamp": "2024-05-16T12:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.274500", + "Timestamp": "2024-05-16T12:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.311300", + "Timestamp": "2024-05-16T12:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.306300", + "Timestamp": "2024-05-16T12:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.181300", + "Timestamp": "2024-05-16T12:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.660400", + "Timestamp": "2024-05-16T12:31:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.655400", + "Timestamp": "2024-05-16T12:31:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.530400", + "Timestamp": "2024-05-16T12:31:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159700", + "Timestamp": "2024-05-16T12:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.199700", + "Timestamp": "2024-05-16T12:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099700", + "Timestamp": "2024-05-16T12:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T12:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145400", + "Timestamp": "2024-05-16T12:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045400", + "Timestamp": "2024-05-16T12:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.758400", + "Timestamp": "2024-05-16T12:28:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089300", + "Timestamp": "2024-05-16T12:19:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.060300", + "Timestamp": "2024-05-16T12:19:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029300", + "Timestamp": "2024-05-16T12:19:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070000", + "Timestamp": "2024-05-16T12:17:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041000", + "Timestamp": "2024-05-16T12:17:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010000", + "Timestamp": "2024-05-16T12:17:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.424300", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.419300", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.294300", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.424200", + "Timestamp": "2024-05-16T12:17:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.831300", + "Timestamp": "2024-05-16T12:17:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.826300", + "Timestamp": "2024-05-16T12:17:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.701300", + "Timestamp": "2024-05-16T12:17:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-16T12:17:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T12:17:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T12:17:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047500", + "Timestamp": "2024-05-16T12:17:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.320400", + "Timestamp": "2024-05-16T12:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.315400", + "Timestamp": "2024-05-16T12:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190400", + "Timestamp": "2024-05-16T12:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.145400", + "Timestamp": "2024-05-16T12:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.140400", + "Timestamp": "2024-05-16T12:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.015400", + "Timestamp": "2024-05-16T12:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.405000", + "Timestamp": "2024-05-16T12:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.400000", + "Timestamp": "2024-05-16T12:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.275000", + "Timestamp": "2024-05-16T12:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.274700", + "Timestamp": "2024-05-16T12:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423500", + "Timestamp": "2024-05-16T12:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.962500", + "Timestamp": "2024-05-16T12:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.957500", + "Timestamp": "2024-05-16T12:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.832500", + "Timestamp": "2024-05-16T12:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103900", + "Timestamp": "2024-05-16T12:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209400", + "Timestamp": "2024-05-16T12:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.901300", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.896300", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.771300", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.203100", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.243100", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143100", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.354100", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.956300", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.926300", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.826300", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.308100", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.278100", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.178100", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297600", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.292600", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167600", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.089000", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209000", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.473500", + "Timestamp": "2024-05-16T12:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.854400", + "Timestamp": "2024-05-16T12:17:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.849400", + "Timestamp": "2024-05-16T12:17:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.724400", + "Timestamp": "2024-05-16T12:17:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.737000", + "Timestamp": "2024-05-16T12:17:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.732000", + "Timestamp": "2024-05-16T12:17:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.607000", + "Timestamp": "2024-05-16T12:17:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.444100", + "Timestamp": "2024-05-16T12:17:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.439100", + "Timestamp": "2024-05-16T12:17:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.314100", + "Timestamp": "2024-05-16T12:17:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.964400", + "Timestamp": "2024-05-16T12:17:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.419700", + "Timestamp": "2024-05-16T12:17:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.478700", + "Timestamp": "2024-05-16T12:17:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.473700", + "Timestamp": "2024-05-16T12:17:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.348700", + "Timestamp": "2024-05-16T12:17:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.662300", + "Timestamp": "2024-05-16T12:17:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.632300", + "Timestamp": "2024-05-16T12:17:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.532300", + "Timestamp": "2024-05-16T12:17:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.159700", + "Timestamp": "2024-05-16T12:17:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.154700", + "Timestamp": "2024-05-16T12:17:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.029700", + "Timestamp": "2024-05-16T12:17:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.858700", + "Timestamp": "2024-05-16T12:17:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.891100", + "Timestamp": "2024-05-16T12:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.886100", + "Timestamp": "2024-05-16T12:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.761100", + "Timestamp": "2024-05-16T12:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.283300", + "Timestamp": "2024-05-16T12:17:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.278300", + "Timestamp": "2024-05-16T12:17:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.153300", + "Timestamp": "2024-05-16T12:17:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.472300", + "Timestamp": "2024-05-16T12:17:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.442300", + "Timestamp": "2024-05-16T12:17:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.342300", + "Timestamp": "2024-05-16T12:17:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103100", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099400", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043100", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.199900", + "Timestamp": "2024-05-16T12:17:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.194900", + "Timestamp": "2024-05-16T12:17:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.069900", + "Timestamp": "2024-05-16T12:17:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.586000", + "Timestamp": "2024-05-16T12:17:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.581000", + "Timestamp": "2024-05-16T12:17:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.456000", + "Timestamp": "2024-05-16T12:17:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.216500", + "Timestamp": "2024-05-16T12:17:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.211500", + "Timestamp": "2024-05-16T12:17:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.086500", + "Timestamp": "2024-05-16T12:17:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.106100", + "Timestamp": "2024-05-16T12:16:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.101100", + "Timestamp": "2024-05-16T12:16:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.976100", + "Timestamp": "2024-05-16T12:16:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.753900", + "Timestamp": "2024-05-16T12:16:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.161600", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.156600", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.031600", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.521900", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.713400", + "Timestamp": "2024-05-16T12:16:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.708400", + "Timestamp": "2024-05-16T12:16:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.583400", + "Timestamp": "2024-05-16T12:16:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.444000", + "Timestamp": "2024-05-16T12:16:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.439000", + "Timestamp": "2024-05-16T12:16:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.314000", + "Timestamp": "2024-05-16T12:16:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079900", + "Timestamp": "2024-05-16T12:16:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119900", + "Timestamp": "2024-05-16T12:16:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019900", + "Timestamp": "2024-05-16T12:16:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.472400", + "Timestamp": "2024-05-16T12:16:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.467400", + "Timestamp": "2024-05-16T12:16:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.342400", + "Timestamp": "2024-05-16T12:16:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.458400", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.453400", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.328400", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.182500", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.178500", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122500", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.227400", + "Timestamp": "2024-05-16T12:16:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.454000", + "Timestamp": "2024-05-16T12:16:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.241400", + "Timestamp": "2024-05-16T12:16:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.236400", + "Timestamp": "2024-05-16T12:16:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.111400", + "Timestamp": "2024-05-16T12:16:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.576900", + "Timestamp": "2024-05-16T12:16:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.593900", + "Timestamp": "2024-05-16T12:16:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.350600", + "Timestamp": "2024-05-16T12:16:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.588900", + "Timestamp": "2024-05-16T12:16:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.345600", + "Timestamp": "2024-05-16T12:16:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.463900", + "Timestamp": "2024-05-16T12:16:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.220600", + "Timestamp": "2024-05-16T12:16:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.002600", + "Timestamp": "2024-05-16T12:16:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.997600", + "Timestamp": "2024-05-16T12:16:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.872600", + "Timestamp": "2024-05-16T12:16:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.425700", + "Timestamp": "2024-05-16T12:16:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.420700", + "Timestamp": "2024-05-16T12:16:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.295700", + "Timestamp": "2024-05-16T12:16:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.339700", + "Timestamp": "2024-05-16T12:16:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.334700", + "Timestamp": "2024-05-16T12:16:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.209700", + "Timestamp": "2024-05-16T12:16:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164600", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160900", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.258100", + "Timestamp": "2024-05-16T12:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.696900", + "Timestamp": "2024-05-16T12:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.101600", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.275500", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.501000", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362000", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.357000", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.232000", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.630100", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.625100", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.500100", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160100", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156400", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100100", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.678200", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.597100", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.673200", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.592100", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.548200", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.467100", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.812400", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.807400", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.682400", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.208200", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.248200", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148200", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.635200", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.630200", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.505200", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.078700", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.073700", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.948700", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095200", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091500", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035200", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.761400", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.756400", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.631400", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.603000", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.598000", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.473000", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.036200", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048000", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.182000", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.178000", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122000", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.354000", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.107200", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.102200", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.977200", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138500", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.178500", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078500", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.607500", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.602500", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.477500", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.846000", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.841000", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.716000", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.519700", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.419900", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.231300", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.196800", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.191800", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.066800", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.390300", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.385300", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.260300", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.700000", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.695000", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.570000", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046600", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.606700", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.601700", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.476700", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432000", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.185200", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.180200", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.055200", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101000", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097300", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041000", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.248500", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.244500", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.188500", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.493900", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.463900", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.363900", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133100", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129400", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073100", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.291400", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099300", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043300", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093900", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090200", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033900", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.619800", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.478500", + "Timestamp": "2024-05-16T12:10:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.455800", + "Timestamp": "2024-05-16T12:10:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.473400", + "Timestamp": "2024-05-16T12:10:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473500", + "Timestamp": "2024-05-16T12:10:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.450800", + "Timestamp": "2024-05-16T12:10:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.468400", + "Timestamp": "2024-05-16T12:10:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.348500", + "Timestamp": "2024-05-16T12:10:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.325800", + "Timestamp": "2024-05-16T12:10:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.343400", + "Timestamp": "2024-05-16T12:10:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439200", + "Timestamp": "2024-05-16T12:10:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439200", + "Timestamp": "2024-05-16T12:10:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439200", + "Timestamp": "2024-05-16T12:10:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418300", + "Timestamp": "2024-05-16T12:10:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418300", + "Timestamp": "2024-05-16T12:10:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.439100", + "Timestamp": "2024-05-16T12:09:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.818300", + "Timestamp": "2024-05-16T12:04:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.344000", + "Timestamp": "2024-05-16T12:04:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.745300", + "Timestamp": "2024-05-16T12:03:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212200", + "Timestamp": "2024-05-16T12:03:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109100", + "Timestamp": "2024-05-16T12:03:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.351800", + "Timestamp": "2024-05-16T12:03:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418000", + "Timestamp": "2024-05-16T12:02:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.696100", + "Timestamp": "2024-05-16T12:02:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.681600", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.676600", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.551600", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.227600", + "Timestamp": "2024-05-16T12:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.017800", + "Timestamp": "2024-05-16T12:02:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.987800", + "Timestamp": "2024-05-16T12:02:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.887800", + "Timestamp": "2024-05-16T12:02:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.660200", + "Timestamp": "2024-05-16T12:02:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.999600", + "Timestamp": "2024-05-16T12:02:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.999600", + "Timestamp": "2024-05-16T12:02:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.472700", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.467700", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.342700", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.934000", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.929000", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.804000", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.564900", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.578600", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.559900", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.573600", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.434900", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.448600", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.553500", + "Timestamp": "2024-05-16T12:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.284300", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.279300", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.154300", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.844500", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.839500", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.714500", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.510600", + "Timestamp": "2024-05-16T12:02:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.006700", + "Timestamp": "2024-05-16T12:02:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.001700", + "Timestamp": "2024-05-16T12:02:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.876700", + "Timestamp": "2024-05-16T12:02:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.804800", + "Timestamp": "2024-05-16T12:02:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.799800", + "Timestamp": "2024-05-16T12:02:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.674800", + "Timestamp": "2024-05-16T12:02:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139000", + "Timestamp": "2024-05-16T12:02:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135300", + "Timestamp": "2024-05-16T12:02:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079000", + "Timestamp": "2024-05-16T12:02:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.427700", + "Timestamp": "2024-05-16T12:02:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.046000", + "Timestamp": "2024-05-16T12:02:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.666600", + "Timestamp": "2024-05-16T12:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.661600", + "Timestamp": "2024-05-16T12:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.536600", + "Timestamp": "2024-05-16T12:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.229500", + "Timestamp": "2024-05-16T12:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.225500", + "Timestamp": "2024-05-16T12:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169500", + "Timestamp": "2024-05-16T12:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.370400", + "Timestamp": "2024-05-16T12:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.340400", + "Timestamp": "2024-05-16T12:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.240400", + "Timestamp": "2024-05-16T12:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213200", + "Timestamp": "2024-05-16T12:02:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.836500", + "Timestamp": "2024-05-16T12:02:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.831500", + "Timestamp": "2024-05-16T12:02:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.706500", + "Timestamp": "2024-05-16T12:02:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.232100", + "Timestamp": "2024-05-16T12:02:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.890300", + "Timestamp": "2024-05-16T12:02:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.885300", + "Timestamp": "2024-05-16T12:02:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.760300", + "Timestamp": "2024-05-16T12:02:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138200", + "Timestamp": "2024-05-16T12:01:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134500", + "Timestamp": "2024-05-16T12:01:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078200", + "Timestamp": "2024-05-16T12:01:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.857100", + "Timestamp": "2024-05-16T12:01:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.852100", + "Timestamp": "2024-05-16T12:01:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.727100", + "Timestamp": "2024-05-16T12:01:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.878400", + "Timestamp": "2024-05-16T12:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.881300", + "Timestamp": "2024-05-16T12:01:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.876300", + "Timestamp": "2024-05-16T12:01:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.751300", + "Timestamp": "2024-05-16T12:01:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120900", + "Timestamp": "2024-05-16T12:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-16T12:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060900", + "Timestamp": "2024-05-16T12:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.878800", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.873800", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.748800", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.746100", + "Timestamp": "2024-05-16T12:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.739000", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.709000", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.609000", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.041300", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.077900", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.036300", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.072900", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.911300", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.947900", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.037200", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.032200", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.907200", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.589900", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.302300", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.297300", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.172300", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150000", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146300", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090000", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.442600", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.437600", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.312600", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.075200", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.598400", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.593400", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.468400", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.754700", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.749700", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.624700", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054600", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.260200", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.255200", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.130200", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.504000", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.499000", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.374000", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.409400", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.404400", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.279400", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042900", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.478100", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473100", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.348100", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.760900", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.755900", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.630900", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.414200", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.409200", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.284200", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119900", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159900", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059900", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.546200", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.541200", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.416200", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.764400", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.759400", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.634400", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354000", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349000", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224000", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.680100", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.675100", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.550100", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147800", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.187800", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087800", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.468900", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.463900", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.338900", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "15.157200", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.437100", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.432100", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.307100", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.854400", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.412900", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.407900", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.282900", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088600", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084900", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028600", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159100", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155400", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099100", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094600", + "Timestamp": "2024-05-16T12:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090900", + "Timestamp": "2024-05-16T12:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034600", + "Timestamp": "2024-05-16T12:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.468400", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.463400", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.338400", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.646500", + "Timestamp": "2024-05-16T11:48:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.839200", + "Timestamp": "2024-05-16T11:48:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.513600", + "Timestamp": "2024-05-16T11:47:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.179500", + "Timestamp": "2024-05-16T11:47:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.174500", + "Timestamp": "2024-05-16T11:47:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.049500", + "Timestamp": "2024-05-16T11:47:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.376300", + "Timestamp": "2024-05-16T11:47:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.371300", + "Timestamp": "2024-05-16T11:47:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.246300", + "Timestamp": "2024-05-16T11:47:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.519100", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.514100", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.389100", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.684300", + "Timestamp": "2024-05-16T11:47:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.679300", + "Timestamp": "2024-05-16T11:47:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.554300", + "Timestamp": "2024-05-16T11:47:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.822400", + "Timestamp": "2024-05-16T11:47:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.239700", + "Timestamp": "2024-05-16T11:47:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.236000", + "Timestamp": "2024-05-16T11:47:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.179700", + "Timestamp": "2024-05-16T11:47:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.785900", + "Timestamp": "2024-05-16T11:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.780900", + "Timestamp": "2024-05-16T11:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.655900", + "Timestamp": "2024-05-16T11:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.901200", + "Timestamp": "2024-05-16T11:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.896200", + "Timestamp": "2024-05-16T11:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.771200", + "Timestamp": "2024-05-16T11:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.078800", + "Timestamp": "2024-05-16T11:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.073800", + "Timestamp": "2024-05-16T11:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.948800", + "Timestamp": "2024-05-16T11:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.165400", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.135400", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.035400", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125000", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121300", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065000", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.893200", + "Timestamp": "2024-05-16T11:47:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.945200", + "Timestamp": "2024-05-16T11:47:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.678400", + "Timestamp": "2024-05-16T11:47:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159100", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.199100", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099100", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.832400", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.472000", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.467000", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.342000", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.913100", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.908100", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.783100", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.811600", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.806600", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.681600", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.127500", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.122500", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.997500", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.722400", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.717400", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.592400", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.237000", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232000", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107000", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.420900", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.828800", + "Timestamp": "2024-05-16T11:47:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.823800", + "Timestamp": "2024-05-16T11:47:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.698800", + "Timestamp": "2024-05-16T11:47:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.204000", + "Timestamp": "2024-05-16T11:47:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.230900", + "Timestamp": "2024-05-16T11:47:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.191900", + "Timestamp": "2024-05-16T11:47:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.227200", + "Timestamp": "2024-05-16T11:47:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.188200", + "Timestamp": "2024-05-16T11:47:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170900", + "Timestamp": "2024-05-16T11:47:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131900", + "Timestamp": "2024-05-16T11:47:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.439400", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.434400", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.309400", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155800", + "Timestamp": "2024-05-16T11:47:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152100", + "Timestamp": "2024-05-16T11:47:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095800", + "Timestamp": "2024-05-16T11:47:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.283400", + "Timestamp": "2024-05-16T11:47:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.278400", + "Timestamp": "2024-05-16T11:47:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.153400", + "Timestamp": "2024-05-16T11:47:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.788200", + "Timestamp": "2024-05-16T11:47:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.758200", + "Timestamp": "2024-05-16T11:47:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.658200", + "Timestamp": "2024-05-16T11:47:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.212900", + "Timestamp": "2024-05-16T11:47:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.209200", + "Timestamp": "2024-05-16T11:47:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.152900", + "Timestamp": "2024-05-16T11:47:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.298400", + "Timestamp": "2024-05-16T11:47:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.293400", + "Timestamp": "2024-05-16T11:47:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.168400", + "Timestamp": "2024-05-16T11:47:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.198200", + "Timestamp": "2024-05-16T11:47:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.194500", + "Timestamp": "2024-05-16T11:47:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.138200", + "Timestamp": "2024-05-16T11:47:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.764600", + "Timestamp": "2024-05-16T11:47:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.759600", + "Timestamp": "2024-05-16T11:47:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.634600", + "Timestamp": "2024-05-16T11:47:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.994100", + "Timestamp": "2024-05-16T11:47:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.989100", + "Timestamp": "2024-05-16T11:47:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.864100", + "Timestamp": "2024-05-16T11:47:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.342200", + "Timestamp": "2024-05-16T11:47:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166200", + "Timestamp": "2024-05-16T11:46:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162200", + "Timestamp": "2024-05-16T11:46:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106200", + "Timestamp": "2024-05-16T11:46:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.091400", + "Timestamp": "2024-05-16T11:46:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.086400", + "Timestamp": "2024-05-16T11:46:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.961400", + "Timestamp": "2024-05-16T11:46:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.243900", + "Timestamp": "2024-05-16T11:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.238900", + "Timestamp": "2024-05-16T11:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.113900", + "Timestamp": "2024-05-16T11:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.491500", + "Timestamp": "2024-05-16T11:46:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.309500", + "Timestamp": "2024-05-16T11:46:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.304500", + "Timestamp": "2024-05-16T11:46:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.179500", + "Timestamp": "2024-05-16T11:46:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.991100", + "Timestamp": "2024-05-16T11:46:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.986100", + "Timestamp": "2024-05-16T11:46:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.861100", + "Timestamp": "2024-05-16T11:46:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.800400", + "Timestamp": "2024-05-16T11:46:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.795400", + "Timestamp": "2024-05-16T11:46:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.670400", + "Timestamp": "2024-05-16T11:46:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.698700", + "Timestamp": "2024-05-16T11:46:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.693700", + "Timestamp": "2024-05-16T11:46:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.568700", + "Timestamp": "2024-05-16T11:46:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.548600", + "Timestamp": "2024-05-16T11:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.543600", + "Timestamp": "2024-05-16T11:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.418600", + "Timestamp": "2024-05-16T11:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T11:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.186800", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.156800", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.056800", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074200", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.045200", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014200", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.074000", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.069000", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.944000", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.250100", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.245100", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.120100", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.239100", + "Timestamp": "2024-05-16T11:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.187500", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183800", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127500", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.284200", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.618000", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.613000", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.488000", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171500", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167800", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.092800", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.208000", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.178000", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.078000", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.375500", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.370500", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.245500", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.173400", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.143400", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.043400", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.103500", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.098500", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.973500", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.670100", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.665100", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.540100", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207500", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.483100", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.478100", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.353100", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278600", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.248600", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148600", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.187400", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183400", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127400", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.345600", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.340600", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.215600", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.866600", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.861600", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.736600", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.900800", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.870800", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.770800", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.065200", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.060200", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.935200", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.274500", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269500", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144500", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.405400", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.400400", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.275400", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.031800", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.050200", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.026800", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.045200", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.901800", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.920200", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140300", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136600", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080300", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.666700", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.661700", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.536700", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.902000", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.897000", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.772000", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.212300", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.207300", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.082300", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.088900", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.058900", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.958900", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152400", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148700", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092400", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.852900", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.847900", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.722900", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.668700", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.663700", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.538700", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.300000", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.270000", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.170000", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.276600", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.271600", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146600", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.668000", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.663000", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.538000", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.821100", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.816100", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.691100", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140000", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136000", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080000", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.444900", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.439900", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.314900", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.510500", + "Timestamp": "2024-05-16T11:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.505500", + "Timestamp": "2024-05-16T11:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.380500", + "Timestamp": "2024-05-16T11:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.143400", + "Timestamp": "2024-05-16T11:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.138400", + "Timestamp": "2024-05-16T11:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.013400", + "Timestamp": "2024-05-16T11:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307600", + "Timestamp": "2024-05-16T11:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297600", + "Timestamp": "2024-05-16T11:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.303600", + "Timestamp": "2024-05-16T11:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293600", + "Timestamp": "2024-05-16T11:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.247600", + "Timestamp": "2024-05-16T11:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.237600", + "Timestamp": "2024-05-16T11:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068700", + "Timestamp": "2024-05-16T11:46:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039700", + "Timestamp": "2024-05-16T11:46:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008700", + "Timestamp": "2024-05-16T11:46:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.716800", + "Timestamp": "2024-05-16T11:35:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.981200", + "Timestamp": "2024-05-16T11:34:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.546400", + "Timestamp": "2024-05-16T11:34:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.420100", + "Timestamp": "2024-05-16T11:33:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.467200", + "Timestamp": "2024-05-16T11:33:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T11:32:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.470600", + "Timestamp": "2024-05-16T11:32:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.465600", + "Timestamp": "2024-05-16T11:32:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.340600", + "Timestamp": "2024-05-16T11:32:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.395000", + "Timestamp": "2024-05-16T11:32:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.365000", + "Timestamp": "2024-05-16T11:32:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.265000", + "Timestamp": "2024-05-16T11:32:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.500800", + "Timestamp": "2024-05-16T11:32:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.992000", + "Timestamp": "2024-05-16T11:32:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362700", + "Timestamp": "2024-05-16T11:32:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.332700", + "Timestamp": "2024-05-16T11:32:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.232700", + "Timestamp": "2024-05-16T11:32:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.858400", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069000", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065300", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009000", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.181600", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177600", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121600", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.983400", + "Timestamp": "2024-05-16T11:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.978400", + "Timestamp": "2024-05-16T11:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.853400", + "Timestamp": "2024-05-16T11:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120400", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116700", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060400", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.504900", + "Timestamp": "2024-05-16T11:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.134500", + "Timestamp": "2024-05-16T11:32:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.129500", + "Timestamp": "2024-05-16T11:32:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.004500", + "Timestamp": "2024-05-16T11:32:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.243600", + "Timestamp": "2024-05-16T11:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.238600", + "Timestamp": "2024-05-16T11:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113600", + "Timestamp": "2024-05-16T11:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126400", + "Timestamp": "2024-05-16T11:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122400", + "Timestamp": "2024-05-16T11:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066400", + "Timestamp": "2024-05-16T11:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.508800", + "Timestamp": "2024-05-16T11:32:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.503800", + "Timestamp": "2024-05-16T11:32:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.378800", + "Timestamp": "2024-05-16T11:32:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.411500", + "Timestamp": "2024-05-16T11:32:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.406500", + "Timestamp": "2024-05-16T11:32:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.281500", + "Timestamp": "2024-05-16T11:32:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172700", + "Timestamp": "2024-05-16T11:32:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168700", + "Timestamp": "2024-05-16T11:32:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112700", + "Timestamp": "2024-05-16T11:32:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.992000", + "Timestamp": "2024-05-16T11:32:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.987000", + "Timestamp": "2024-05-16T11:32:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.862000", + "Timestamp": "2024-05-16T11:32:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.641400", + "Timestamp": "2024-05-16T11:32:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.418800", + "Timestamp": "2024-05-16T11:32:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.636400", + "Timestamp": "2024-05-16T11:32:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.413800", + "Timestamp": "2024-05-16T11:32:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.511400", + "Timestamp": "2024-05-16T11:32:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.288800", + "Timestamp": "2024-05-16T11:32:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154700", + "Timestamp": "2024-05-16T11:32:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150700", + "Timestamp": "2024-05-16T11:32:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094700", + "Timestamp": "2024-05-16T11:32:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.963600", + "Timestamp": "2024-05-16T11:32:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.958600", + "Timestamp": "2024-05-16T11:32:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.833600", + "Timestamp": "2024-05-16T11:32:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.832000", + "Timestamp": "2024-05-16T11:32:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.117000", + "Timestamp": "2024-05-16T11:32:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.087000", + "Timestamp": "2024-05-16T11:32:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.987000", + "Timestamp": "2024-05-16T11:32:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.409200", + "Timestamp": "2024-05-16T11:32:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148500", + "Timestamp": "2024-05-16T11:32:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144800", + "Timestamp": "2024-05-16T11:32:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088500", + "Timestamp": "2024-05-16T11:32:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.322500", + "Timestamp": "2024-05-16T11:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.860000", + "Timestamp": "2024-05-16T11:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.855000", + "Timestamp": "2024-05-16T11:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.730000", + "Timestamp": "2024-05-16T11:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.884900", + "Timestamp": "2024-05-16T11:32:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.716800", + "Timestamp": "2024-05-16T11:32:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.921500", + "Timestamp": "2024-05-16T11:31:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.891500", + "Timestamp": "2024-05-16T11:31:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.791500", + "Timestamp": "2024-05-16T11:31:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.572300", + "Timestamp": "2024-05-16T11:31:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.567300", + "Timestamp": "2024-05-16T11:31:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.442300", + "Timestamp": "2024-05-16T11:31:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.573500", + "Timestamp": "2024-05-16T11:31:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.786200", + "Timestamp": "2024-05-16T11:31:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.781200", + "Timestamp": "2024-05-16T11:31:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.656200", + "Timestamp": "2024-05-16T11:31:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.822600", + "Timestamp": "2024-05-16T11:31:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.817600", + "Timestamp": "2024-05-16T11:31:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.692600", + "Timestamp": "2024-05-16T11:31:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.664000", + "Timestamp": "2024-05-16T11:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.745300", + "Timestamp": "2024-05-16T11:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.938200", + "Timestamp": "2024-05-16T11:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.933200", + "Timestamp": "2024-05-16T11:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.808200", + "Timestamp": "2024-05-16T11:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.396900", + "Timestamp": "2024-05-16T11:31:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.391900", + "Timestamp": "2024-05-16T11:31:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.266900", + "Timestamp": "2024-05-16T11:31:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.211500", + "Timestamp": "2024-05-16T11:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.206500", + "Timestamp": "2024-05-16T11:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.081500", + "Timestamp": "2024-05-16T11:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.300300", + "Timestamp": "2024-05-16T11:31:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296300", + "Timestamp": "2024-05-16T11:31:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.240300", + "Timestamp": "2024-05-16T11:31:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.009200", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.004200", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.879200", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.689900", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.595300", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.659900", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.565300", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.559900", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.465300", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.412100", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.407100", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.282100", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165900", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162200", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122900", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162900", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062900", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.328700", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323700", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.198700", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.080500", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.075500", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.950500", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.579200", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.938100", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.933100", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.808100", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.272000", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267000", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142000", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.751900", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.746900", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.621900", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.473800", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.468800", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.343800", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.416100", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.453400", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.386100", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.423400", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.286100", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.323400", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153000", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149000", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093000", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.403100", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.398100", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.273100", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184000", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180300", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124000", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311300", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281300", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181300", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.306900", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.301900", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.176900", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.550500", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.545500", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.420500", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.408700", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.403700", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.278700", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.283600", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.278600", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.153600", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.899000", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.894000", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.769000", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.401000", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.396000", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.271000", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.569600", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.791200", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.564600", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.786200", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.439600", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.661200", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.236500", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.380100", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.375100", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.250100", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.627200", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.594000", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.622200", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.589000", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.497200", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.464000", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.212400", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.208700", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.152400", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.231300", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.227600", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171300", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.197400", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193400", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137400", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.002400", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.997400", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.872400", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.802600", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.797600", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.672600", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074900", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.045900", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014900", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093000", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089300", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033000", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.962400", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.932400", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.832400", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.641800", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.636800", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.511800", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.107100", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.102100", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.977100", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093400", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089700", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033400", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131200", + "Timestamp": "2024-05-16T11:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127500", + "Timestamp": "2024-05-16T11:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071200", + "Timestamp": "2024-05-16T11:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103200", + "Timestamp": "2024-05-16T11:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099500", + "Timestamp": "2024-05-16T11:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043200", + "Timestamp": "2024-05-16T11:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.064100", + "Timestamp": "2024-05-16T11:25:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.059100", + "Timestamp": "2024-05-16T11:25:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.934100", + "Timestamp": "2024-05-16T11:25:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214400", + "Timestamp": "2024-05-16T11:19:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.636600", + "Timestamp": "2024-05-16T11:19:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.756800", + "Timestamp": "2024-05-16T11:19:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.716800", + "Timestamp": "2024-05-16T11:19:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.270400", + "Timestamp": "2024-05-16T11:18:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.102800", + "Timestamp": "2024-05-16T11:18:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.097800", + "Timestamp": "2024-05-16T11:18:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.972800", + "Timestamp": "2024-05-16T11:18:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T11:17:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.293000", + "Timestamp": "2024-05-16T11:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.427700", + "Timestamp": "2024-05-16T11:17:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.514200", + "Timestamp": "2024-05-16T11:17:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.509200", + "Timestamp": "2024-05-16T11:17:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.384200", + "Timestamp": "2024-05-16T11:17:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210600", + "Timestamp": "2024-05-16T11:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121900", + "Timestamp": "2024-05-16T11:17:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118200", + "Timestamp": "2024-05-16T11:17:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061900", + "Timestamp": "2024-05-16T11:17:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.144700", + "Timestamp": "2024-05-16T11:17:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.139700", + "Timestamp": "2024-05-16T11:17:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.014700", + "Timestamp": "2024-05-16T11:17:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.376000", + "Timestamp": "2024-05-16T11:17:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.237200", + "Timestamp": "2024-05-16T11:17:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.233500", + "Timestamp": "2024-05-16T11:17:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177200", + "Timestamp": "2024-05-16T11:17:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.656200", + "Timestamp": "2024-05-16T11:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.651200", + "Timestamp": "2024-05-16T11:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.526200", + "Timestamp": "2024-05-16T11:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.503000", + "Timestamp": "2024-05-16T11:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.498000", + "Timestamp": "2024-05-16T11:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.373000", + "Timestamp": "2024-05-16T11:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.273300", + "Timestamp": "2024-05-16T11:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.525700", + "Timestamp": "2024-05-16T11:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.550200", + "Timestamp": "2024-05-16T11:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.545200", + "Timestamp": "2024-05-16T11:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.420200", + "Timestamp": "2024-05-16T11:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.072900", + "Timestamp": "2024-05-16T11:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.067900", + "Timestamp": "2024-05-16T11:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.942900", + "Timestamp": "2024-05-16T11:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.369200", + "Timestamp": "2024-05-16T11:17:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.364200", + "Timestamp": "2024-05-16T11:17:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.239200", + "Timestamp": "2024-05-16T11:17:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090900", + "Timestamp": "2024-05-16T11:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087200", + "Timestamp": "2024-05-16T11:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030900", + "Timestamp": "2024-05-16T11:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115400", + "Timestamp": "2024-05-16T11:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T11:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055400", + "Timestamp": "2024-05-16T11:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.538300", + "Timestamp": "2024-05-16T11:17:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.929500", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.899500", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.799500", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.638700", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.633700", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.508700", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.322300", + "Timestamp": "2024-05-16T11:17:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.317300", + "Timestamp": "2024-05-16T11:17:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.192300", + "Timestamp": "2024-05-16T11:17:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.563500", + "Timestamp": "2024-05-16T11:17:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.558500", + "Timestamp": "2024-05-16T11:17:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.433500", + "Timestamp": "2024-05-16T11:17:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.952100", + "Timestamp": "2024-05-16T11:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.947100", + "Timestamp": "2024-05-16T11:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.822100", + "Timestamp": "2024-05-16T11:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.613100", + "Timestamp": "2024-05-16T11:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.608100", + "Timestamp": "2024-05-16T11:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.483100", + "Timestamp": "2024-05-16T11:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.742800", + "Timestamp": "2024-05-16T11:17:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.737800", + "Timestamp": "2024-05-16T11:17:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.612800", + "Timestamp": "2024-05-16T11:17:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.145600", + "Timestamp": "2024-05-16T11:17:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.040700", + "Timestamp": "2024-05-16T11:17:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.228300", + "Timestamp": "2024-05-16T11:17:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.223300", + "Timestamp": "2024-05-16T11:17:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.098300", + "Timestamp": "2024-05-16T11:17:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.858600", + "Timestamp": "2024-05-16T11:17:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.853600", + "Timestamp": "2024-05-16T11:17:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.728600", + "Timestamp": "2024-05-16T11:17:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.703500", + "Timestamp": "2024-05-16T11:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.201200", + "Timestamp": "2024-05-16T11:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196200", + "Timestamp": "2024-05-16T11:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071200", + "Timestamp": "2024-05-16T11:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.894300", + "Timestamp": "2024-05-16T11:16:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.889300", + "Timestamp": "2024-05-16T11:16:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.764300", + "Timestamp": "2024-05-16T11:16:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.722900", + "Timestamp": "2024-05-16T11:16:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.692900", + "Timestamp": "2024-05-16T11:16:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.592900", + "Timestamp": "2024-05-16T11:16:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.593300", + "Timestamp": "2024-05-16T11:16:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.563300", + "Timestamp": "2024-05-16T11:16:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.463300", + "Timestamp": "2024-05-16T11:16:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127400", + "Timestamp": "2024-05-16T11:16:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123700", + "Timestamp": "2024-05-16T11:16:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067400", + "Timestamp": "2024-05-16T11:16:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.030800", + "Timestamp": "2024-05-16T11:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.025800", + "Timestamp": "2024-05-16T11:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.900800", + "Timestamp": "2024-05-16T11:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.373700", + "Timestamp": "2024-05-16T11:16:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.368700", + "Timestamp": "2024-05-16T11:16:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.243700", + "Timestamp": "2024-05-16T11:16:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.445900", + "Timestamp": "2024-05-16T11:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.415900", + "Timestamp": "2024-05-16T11:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.315900", + "Timestamp": "2024-05-16T11:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T11:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.057300", + "Timestamp": "2024-05-16T11:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.797100", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.792100", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.667100", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.326200", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296200", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196200", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.073600", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.113600", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.013600", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.358300", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.353300", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.228300", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.313600", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.308600", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.183600", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.363900", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.358900", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.233900", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224500", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.070900", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.065900", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.940900", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.372400", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.367400", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242400", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099300", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149400", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139300", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049400", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039300", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.973500", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.968500", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.843500", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.992000", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.790800", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.785800", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.660800", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.995500", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.990500", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.865500", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.025500", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.262800", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.257800", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.132800", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.434900", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.429900", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.304900", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.452400", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.447400", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.322400", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.385200", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.380200", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.255200", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.355300", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.350300", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.225300", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.899200", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.869200", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.769200", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.388300", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.358300", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.258300", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.735800", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.730800", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.605800", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101800", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097800", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041800", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.432500", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.427500", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.302500", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.281800", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276800", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.151800", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.224500", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.220500", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164500", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.319000", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.314000", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.189000", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.738900", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.733900", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.608900", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073000", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069300", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013000", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.875200", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146500", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046500", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.430800", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.425800", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.300800", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.404200", + "Timestamp": "2024-05-16T11:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.399200", + "Timestamp": "2024-05-16T11:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.274200", + "Timestamp": "2024-05-16T11:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.954400", + "Timestamp": "2024-05-16T11:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.949400", + "Timestamp": "2024-05-16T11:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.824400", + "Timestamp": "2024-05-16T11:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.492000", + "Timestamp": "2024-05-16T11:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.487000", + "Timestamp": "2024-05-16T11:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.362000", + "Timestamp": "2024-05-16T11:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061600", + "Timestamp": "2024-05-16T11:16:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001600", + "Timestamp": "2024-05-16T11:16:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001600", + "Timestamp": "2024-05-16T11:16:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T11:10:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T11:10:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T11:10:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116700", + "Timestamp": "2024-05-16T11:10:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115600", + "Timestamp": "2024-05-16T11:10:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118400", + "Timestamp": "2024-05-16T11:10:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112700", + "Timestamp": "2024-05-16T11:10:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111600", + "Timestamp": "2024-05-16T11:10:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114400", + "Timestamp": "2024-05-16T11:10:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056700", + "Timestamp": "2024-05-16T11:10:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055600", + "Timestamp": "2024-05-16T11:10:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058400", + "Timestamp": "2024-05-16T11:10:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215800", + "Timestamp": "2024-05-16T11:05:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.953600", + "Timestamp": "2024-05-16T11:04:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.756800", + "Timestamp": "2024-05-16T11:04:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.934400", + "Timestamp": "2024-05-16T11:03:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.434800", + "Timestamp": "2024-05-16T11:03:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.490600", + "Timestamp": "2024-05-16T11:03:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.478400", + "Timestamp": "2024-05-16T11:02:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.953600", + "Timestamp": "2024-05-16T11:02:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.476400", + "Timestamp": "2024-05-16T11:02:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.715200", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.145600", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.949200", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.944200", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.819200", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.704600", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.699600", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.574600", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.370000", + "Timestamp": "2024-05-16T11:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.365000", + "Timestamp": "2024-05-16T11:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.240000", + "Timestamp": "2024-05-16T11:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.542900", + "Timestamp": "2024-05-16T11:02:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.947000", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.942000", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.817000", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117100", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113400", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057100", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.112600", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.216100", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144700", + "Timestamp": "2024-05-16T11:02:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140700", + "Timestamp": "2024-05-16T11:02:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084700", + "Timestamp": "2024-05-16T11:02:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116700", + "Timestamp": "2024-05-16T11:02:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112700", + "Timestamp": "2024-05-16T11:02:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056700", + "Timestamp": "2024-05-16T11:02:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.345000", + "Timestamp": "2024-05-16T11:02:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.340000", + "Timestamp": "2024-05-16T11:02:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.215000", + "Timestamp": "2024-05-16T11:02:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.417800", + "Timestamp": "2024-05-16T11:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.589000", + "Timestamp": "2024-05-16T11:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.584000", + "Timestamp": "2024-05-16T11:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.459000", + "Timestamp": "2024-05-16T11:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.485800", + "Timestamp": "2024-05-16T11:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.480800", + "Timestamp": "2024-05-16T11:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.355800", + "Timestamp": "2024-05-16T11:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.358300", + "Timestamp": "2024-05-16T11:02:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.328300", + "Timestamp": "2024-05-16T11:02:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.228300", + "Timestamp": "2024-05-16T11:02:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121600", + "Timestamp": "2024-05-16T11:02:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117900", + "Timestamp": "2024-05-16T11:02:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061600", + "Timestamp": "2024-05-16T11:02:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.627500", + "Timestamp": "2024-05-16T11:02:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.622500", + "Timestamp": "2024-05-16T11:02:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.497500", + "Timestamp": "2024-05-16T11:02:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.653700", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.648700", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.523700", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.597900", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.592900", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.467900", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214700", + "Timestamp": "2024-05-16T11:01:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174300", + "Timestamp": "2024-05-16T11:01:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170600", + "Timestamp": "2024-05-16T11:01:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114300", + "Timestamp": "2024-05-16T11:01:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160700", + "Timestamp": "2024-05-16T11:01:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157000", + "Timestamp": "2024-05-16T11:01:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100700", + "Timestamp": "2024-05-16T11:01:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.836000", + "Timestamp": "2024-05-16T11:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.874300", + "Timestamp": "2024-05-16T11:01:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.869300", + "Timestamp": "2024-05-16T11:01:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.744300", + "Timestamp": "2024-05-16T11:01:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.909900", + "Timestamp": "2024-05-16T11:01:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.769600", + "Timestamp": "2024-05-16T11:01:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.906300", + "Timestamp": "2024-05-16T11:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.901300", + "Timestamp": "2024-05-16T11:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.776300", + "Timestamp": "2024-05-16T11:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.878700", + "Timestamp": "2024-05-16T11:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.672500", + "Timestamp": "2024-05-16T11:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.667500", + "Timestamp": "2024-05-16T11:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.542500", + "Timestamp": "2024-05-16T11:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.193100", + "Timestamp": "2024-05-16T11:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.188100", + "Timestamp": "2024-05-16T11:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.063100", + "Timestamp": "2024-05-16T11:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.272800", + "Timestamp": "2024-05-16T11:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.267800", + "Timestamp": "2024-05-16T11:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.142800", + "Timestamp": "2024-05-16T11:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.610400", + "Timestamp": "2024-05-16T11:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.970000", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.965000", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.840000", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083900", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080200", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023900", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.417200", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.412200", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.287200", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.067600", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.062600", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.937600", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.430100", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.645300", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.640300", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.515300", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.702200", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.697200", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.572200", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.218600", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.214600", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158600", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119600", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115600", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059600", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.423900", + "Timestamp": "2024-05-16T11:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.393900", + "Timestamp": "2024-05-16T11:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.293900", + "Timestamp": "2024-05-16T11:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168000", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.208000", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.286200", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.281200", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.156200", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.741800", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.414600", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.736800", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.409600", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.611800", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.284600", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.331600", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.326600", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.201600", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.520600", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.515600", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.390600", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.936100", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.931100", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.806100", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.648700", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.643700", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.518700", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.914700", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.909700", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.784700", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.057600", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.052600", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.927600", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.724300", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.719300", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.594300", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.866000", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097400", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137400", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037400", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080700", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077000", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020700", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.028400", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.023400", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.898400", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214600", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.415600", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.648900", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.643900", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.518900", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.788400", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.783400", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.658400", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.478800", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473800", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.348800", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.147900", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.142900", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.017900", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.835100", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.830100", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.705100", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.720900", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.715900", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.590900", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.320200", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.290200", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190200", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144800", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140800", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084800", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.309900", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.279900", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.179900", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165200", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161500", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.956700", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.951700", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.826700", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.464700", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.459700", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.334700", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.485100", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.455100", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.355100", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.489100", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.484100", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.359100", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069400", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040400", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009400", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T11:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099000", + "Timestamp": "2024-05-16T11:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043000", + "Timestamp": "2024-05-16T11:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.094600", + "Timestamp": "2024-05-16T11:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.089600", + "Timestamp": "2024-05-16T11:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.964600", + "Timestamp": "2024-05-16T11:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T11:01:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T11:01:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049500", + "Timestamp": "2024-05-16T11:01:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.703400", + "Timestamp": "2024-05-16T11:01:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.444100", + "Timestamp": "2024-05-16T11:01:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.698400", + "Timestamp": "2024-05-16T11:01:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.439100", + "Timestamp": "2024-05-16T11:01:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.573400", + "Timestamp": "2024-05-16T11:01:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.314100", + "Timestamp": "2024-05-16T11:01:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.031200", + "Timestamp": "2024-05-16T10:57:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.031200", + "Timestamp": "2024-05-16T10:57:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.026200", + "Timestamp": "2024-05-16T10:57:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.026200", + "Timestamp": "2024-05-16T10:57:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.901200", + "Timestamp": "2024-05-16T10:57:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.901200", + "Timestamp": "2024-05-16T10:57:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.317200", + "Timestamp": "2024-05-16T10:57:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.317200", + "Timestamp": "2024-05-16T10:57:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.326700", + "Timestamp": "2024-05-16T10:55:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.267200", + "Timestamp": "2024-05-16T10:49:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.726400", + "Timestamp": "2024-05-16T10:48:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.612800", + "Timestamp": "2024-05-16T10:48:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.705600", + "Timestamp": "2024-05-16T10:48:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.857600", + "Timestamp": "2024-05-16T10:48:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102300", + "Timestamp": "2024-05-16T10:48:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.286400", + "Timestamp": "2024-05-16T10:48:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281400", + "Timestamp": "2024-05-16T10:48:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156400", + "Timestamp": "2024-05-16T10:48:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.520500", + "Timestamp": "2024-05-16T10:48:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.678700", + "Timestamp": "2024-05-16T10:47:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.308500", + "Timestamp": "2024-05-16T10:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.303500", + "Timestamp": "2024-05-16T10:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.178500", + "Timestamp": "2024-05-16T10:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.927500", + "Timestamp": "2024-05-16T10:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.922500", + "Timestamp": "2024-05-16T10:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.797500", + "Timestamp": "2024-05-16T10:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431800", + "Timestamp": "2024-05-16T10:47:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207100", + "Timestamp": "2024-05-16T10:47:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099600", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039600", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.437700", + "Timestamp": "2024-05-16T10:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.432700", + "Timestamp": "2024-05-16T10:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.307700", + "Timestamp": "2024-05-16T10:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.202300", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198300", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142300", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044500", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131500", + "Timestamp": "2024-05-16T10:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.171500", + "Timestamp": "2024-05-16T10:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071500", + "Timestamp": "2024-05-16T10:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.695300", + "Timestamp": "2024-05-16T10:47:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.665300", + "Timestamp": "2024-05-16T10:47:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.565300", + "Timestamp": "2024-05-16T10:47:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157600", + "Timestamp": "2024-05-16T10:47:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153900", + "Timestamp": "2024-05-16T10:47:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097600", + "Timestamp": "2024-05-16T10:47:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.428000", + "Timestamp": "2024-05-16T10:47:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.423000", + "Timestamp": "2024-05-16T10:47:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.298000", + "Timestamp": "2024-05-16T10:47:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.576800", + "Timestamp": "2024-05-16T10:47:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.571800", + "Timestamp": "2024-05-16T10:47:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.446800", + "Timestamp": "2024-05-16T10:47:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.519400", + "Timestamp": "2024-05-16T10:47:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.514400", + "Timestamp": "2024-05-16T10:47:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.389400", + "Timestamp": "2024-05-16T10:47:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.588600", + "Timestamp": "2024-05-16T10:47:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.583600", + "Timestamp": "2024-05-16T10:47:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.458600", + "Timestamp": "2024-05-16T10:47:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.398800", + "Timestamp": "2024-05-16T10:47:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.393800", + "Timestamp": "2024-05-16T10:47:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.268800", + "Timestamp": "2024-05-16T10:47:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-16T10:46:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.275000", + "Timestamp": "2024-05-16T10:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270000", + "Timestamp": "2024-05-16T10:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145000", + "Timestamp": "2024-05-16T10:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.237800", + "Timestamp": "2024-05-16T10:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.234100", + "Timestamp": "2024-05-16T10:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177800", + "Timestamp": "2024-05-16T10:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.382900", + "Timestamp": "2024-05-16T10:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.352900", + "Timestamp": "2024-05-16T10:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.252900", + "Timestamp": "2024-05-16T10:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.726400", + "Timestamp": "2024-05-16T10:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.721400", + "Timestamp": "2024-05-16T10:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.596400", + "Timestamp": "2024-05-16T10:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.401200", + "Timestamp": "2024-05-16T10:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.396200", + "Timestamp": "2024-05-16T10:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.271200", + "Timestamp": "2024-05-16T10:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324200", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319200", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194200", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.671000", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.666000", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.541000", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.403300", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.064300", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.216400", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.212700", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156400", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.625200", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.595200", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.495200", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.594200", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.564200", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.464200", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115100", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055100", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.481300", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.476300", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.351300", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.861900", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.856900", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.731900", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.756800", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.774400", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.769400", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.644400", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.204900", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.200900", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144900", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.706500", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.701500", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.576500", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.973800", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.968800", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.843800", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.231800", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.227800", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171800", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.615300", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.610300", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.485300", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.557700", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.581400", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.552700", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.576400", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.427700", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.451400", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.401000", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.396000", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.271000", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.154300", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.149300", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.024300", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.886400", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.186400", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.182700", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126400", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170300", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.210300", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.303900", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298900", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.173900", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.342000", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.337000", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.212000", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.496400", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.491400", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.366400", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.185500", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.417100", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.391600", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.412100", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.386600", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.287100", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.261600", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.799300", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.830700", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.794300", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.825700", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.669300", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.700700", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.255200", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.825800", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.795800", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.695800", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.279700", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319700", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219700", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.527900", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.522900", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.397900", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.895800", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.890800", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.765800", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.658900", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.653900", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.528900", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.240700", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.235700", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.110700", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g5g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130000", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g5g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g5g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070000", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.071400", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.066400", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.941400", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.894600", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.889600", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.764600", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.351700", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.346700", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.221700", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.440200", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.435200", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.310200", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.497500", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.467500", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.367500", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.401200", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.396200", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.271200", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.230400", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.200400", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.100400", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.272300", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267300", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142300", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120800", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117100", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060800", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.441600", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.436600", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.311600", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.478000", + "Timestamp": "2024-05-16T10:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473000", + "Timestamp": "2024-05-16T10:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.348000", + "Timestamp": "2024-05-16T10:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.322700", + "Timestamp": "2024-05-16T10:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.292700", + "Timestamp": "2024-05-16T10:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.192700", + "Timestamp": "2024-05-16T10:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.192900", + "Timestamp": "2024-05-16T10:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.188900", + "Timestamp": "2024-05-16T10:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.132900", + "Timestamp": "2024-05-16T10:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.871800", + "Timestamp": "2024-05-16T10:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.841800", + "Timestamp": "2024-05-16T10:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.741800", + "Timestamp": "2024-05-16T10:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.289800", + "Timestamp": "2024-05-16T10:46:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.284800", + "Timestamp": "2024-05-16T10:46:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.159800", + "Timestamp": "2024-05-16T10:46:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.767800", + "Timestamp": "2024-05-16T10:46:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.762800", + "Timestamp": "2024-05-16T10:46:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.637800", + "Timestamp": "2024-05-16T10:46:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.164600", + "Timestamp": "2024-05-16T10:46:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.904500", + "Timestamp": "2024-05-16T10:35:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.072600", + "Timestamp": "2024-05-16T10:34:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.882200", + "Timestamp": "2024-05-16T10:33:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-16T10:33:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216000", + "Timestamp": "2024-05-16T10:33:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.953600", + "Timestamp": "2024-05-16T10:33:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.646500", + "Timestamp": "2024-05-16T10:32:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.360600", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.204500", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.544300", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.514300", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.414300", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.509100", + "Timestamp": "2024-05-16T10:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.504100", + "Timestamp": "2024-05-16T10:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.379100", + "Timestamp": "2024-05-16T10:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.102200", + "Timestamp": "2024-05-16T10:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.531300", + "Timestamp": "2024-05-16T10:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.526300", + "Timestamp": "2024-05-16T10:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.401300", + "Timestamp": "2024-05-16T10:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.181700", + "Timestamp": "2024-05-16T10:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.176700", + "Timestamp": "2024-05-16T10:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.051700", + "Timestamp": "2024-05-16T10:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.792200", + "Timestamp": "2024-05-16T10:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.787200", + "Timestamp": "2024-05-16T10:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.662200", + "Timestamp": "2024-05-16T10:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.540800", + "Timestamp": "2024-05-16T10:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.798400", + "Timestamp": "2024-05-16T10:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.430800", + "Timestamp": "2024-05-16T10:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.425800", + "Timestamp": "2024-05-16T10:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.300800", + "Timestamp": "2024-05-16T10:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.142700", + "Timestamp": "2024-05-16T10:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.137700", + "Timestamp": "2024-05-16T10:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.012700", + "Timestamp": "2024-05-16T10:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.195900", + "Timestamp": "2024-05-16T10:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192200", + "Timestamp": "2024-05-16T10:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.135900", + "Timestamp": "2024-05-16T10:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.346000", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.780600", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.341000", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.775600", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.216000", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.650600", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.022000", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.017000", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.892000", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.524900", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.519900", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.394900", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.625400", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.620400", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.495400", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.570800", + "Timestamp": "2024-05-16T10:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.565800", + "Timestamp": "2024-05-16T10:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.440800", + "Timestamp": "2024-05-16T10:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.303500", + "Timestamp": "2024-05-16T10:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298500", + "Timestamp": "2024-05-16T10:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.173500", + "Timestamp": "2024-05-16T10:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.442700", + "Timestamp": "2024-05-16T10:32:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068500", + "Timestamp": "2024-05-16T10:32:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039500", + "Timestamp": "2024-05-16T10:32:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008500", + "Timestamp": "2024-05-16T10:32:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.273700", + "Timestamp": "2024-05-16T10:32:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306500", + "Timestamp": "2024-05-16T10:32:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301500", + "Timestamp": "2024-05-16T10:32:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176500", + "Timestamp": "2024-05-16T10:32:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.233800", + "Timestamp": "2024-05-16T10:32:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.228800", + "Timestamp": "2024-05-16T10:32:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.103800", + "Timestamp": "2024-05-16T10:32:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156000", + "Timestamp": "2024-05-16T10:32:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196000", + "Timestamp": "2024-05-16T10:32:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T10:32:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T10:32:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T10:32:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040800", + "Timestamp": "2024-05-16T10:32:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.054200", + "Timestamp": "2024-05-16T10:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.049200", + "Timestamp": "2024-05-16T10:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.924200", + "Timestamp": "2024-05-16T10:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.328100", + "Timestamp": "2024-05-16T10:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.606200", + "Timestamp": "2024-05-16T10:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.601200", + "Timestamp": "2024-05-16T10:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.476200", + "Timestamp": "2024-05-16T10:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.309800", + "Timestamp": "2024-05-16T10:32:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.304800", + "Timestamp": "2024-05-16T10:32:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.179800", + "Timestamp": "2024-05-16T10:32:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.484400", + "Timestamp": "2024-05-16T10:31:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.479400", + "Timestamp": "2024-05-16T10:31:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.354400", + "Timestamp": "2024-05-16T10:31:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089400", + "Timestamp": "2024-05-16T10:31:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085700", + "Timestamp": "2024-05-16T10:31:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029400", + "Timestamp": "2024-05-16T10:31:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129100", + "Timestamp": "2024-05-16T10:31:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T10:31:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069100", + "Timestamp": "2024-05-16T10:31:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.202100", + "Timestamp": "2024-05-16T10:31:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.197100", + "Timestamp": "2024-05-16T10:31:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.072100", + "Timestamp": "2024-05-16T10:31:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.382400", + "Timestamp": "2024-05-16T10:31:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.621500", + "Timestamp": "2024-05-16T10:31:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.377400", + "Timestamp": "2024-05-16T10:31:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.616500", + "Timestamp": "2024-05-16T10:31:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.252400", + "Timestamp": "2024-05-16T10:31:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.491500", + "Timestamp": "2024-05-16T10:31:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.531200", + "Timestamp": "2024-05-16T10:31:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.793800", + "Timestamp": "2024-05-16T10:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.794500", + "Timestamp": "2024-05-16T10:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.788800", + "Timestamp": "2024-05-16T10:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.789500", + "Timestamp": "2024-05-16T10:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.663800", + "Timestamp": "2024-05-16T10:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.664500", + "Timestamp": "2024-05-16T10:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.743900", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.738900", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.613900", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.272500", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.267500", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.142500", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.455100", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.450100", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.325100", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.060800", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.055800", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.930800", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.414300", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.409300", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.284300", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.430800", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.425800", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.300800", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.986800", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.981800", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.856800", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.360600", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.360600", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301900", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.376100", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296900", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.371100", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171900", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.246100", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.825400", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.820400", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.695400", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.904700", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.874700", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.774700", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099400", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095700", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039400", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118800", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115100", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058800", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109200", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105500", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049200", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.420200", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.415200", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.290200", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.522000", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.492000", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.392000", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.836100", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.831100", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.706100", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046900", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149600", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.189600", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089600", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080800", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077100", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020800", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.890900", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.395100", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.390100", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.265100", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.337800", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.332800", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.207800", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.399900", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.394900", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.269900", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.424200", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.419200", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.294200", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093800", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090100", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033800", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.258800", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.254800", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.198800", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.455800", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.450800", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.325800", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072800", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043800", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012800", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.709800", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.704800", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.579800", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081000", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077300", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021000", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045400", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130000", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070000", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118800", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114800", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058800", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.295600", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.291600", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235600", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.341000", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.336000", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.211000", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.430000", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.400000", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.300000", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.290700", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.441700", + "Timestamp": "2024-05-16T10:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.436700", + "Timestamp": "2024-05-16T10:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.311700", + "Timestamp": "2024-05-16T10:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.430400", + "Timestamp": "2024-05-16T10:18:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.448000", + "Timestamp": "2024-05-16T10:18:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.892300", + "Timestamp": "2024-05-16T10:18:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.953600", + "Timestamp": "2024-05-16T10:17:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.131800", + "Timestamp": "2024-05-16T10:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.126800", + "Timestamp": "2024-05-16T10:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.001800", + "Timestamp": "2024-05-16T10:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.922100", + "Timestamp": "2024-05-16T10:17:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.917100", + "Timestamp": "2024-05-16T10:17:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.792100", + "Timestamp": "2024-05-16T10:17:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.023700", + "Timestamp": "2024-05-16T10:17:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.434800", + "Timestamp": "2024-05-16T10:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.111600", + "Timestamp": "2024-05-16T10:17:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.106600", + "Timestamp": "2024-05-16T10:17:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.981600", + "Timestamp": "2024-05-16T10:17:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.820600", + "Timestamp": "2024-05-16T10:17:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.319500", + "Timestamp": "2024-05-16T10:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.314500", + "Timestamp": "2024-05-16T10:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.189500", + "Timestamp": "2024-05-16T10:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.279900", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.249900", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149900", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.570200", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.638100", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.540200", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.608100", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.440200", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.508100", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.437400", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.432400", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.307400", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.334700", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.329700", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.204700", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.448300", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.443300", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.318300", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.073900", + "Timestamp": "2024-05-16T10:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.068900", + "Timestamp": "2024-05-16T10:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.943900", + "Timestamp": "2024-05-16T10:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.246100", + "Timestamp": "2024-05-16T10:17:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.241100", + "Timestamp": "2024-05-16T10:17:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.116100", + "Timestamp": "2024-05-16T10:17:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.140300", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.135300", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.010300", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.841000", + "Timestamp": "2024-05-16T10:17:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.840800", + "Timestamp": "2024-05-16T10:17:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166200", + "Timestamp": "2024-05-16T10:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162500", + "Timestamp": "2024-05-16T10:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106200", + "Timestamp": "2024-05-16T10:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.521500", + "Timestamp": "2024-05-16T10:17:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.516500", + "Timestamp": "2024-05-16T10:17:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.391500", + "Timestamp": "2024-05-16T10:17:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.545400", + "Timestamp": "2024-05-16T10:17:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.540400", + "Timestamp": "2024-05-16T10:17:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.415400", + "Timestamp": "2024-05-16T10:17:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.593300", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.966900", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.766400", + "Timestamp": "2024-05-16T10:17:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.761400", + "Timestamp": "2024-05-16T10:17:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.636400", + "Timestamp": "2024-05-16T10:17:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.635800", + "Timestamp": "2024-05-16T10:17:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.630800", + "Timestamp": "2024-05-16T10:17:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.505800", + "Timestamp": "2024-05-16T10:17:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.703300", + "Timestamp": "2024-05-16T10:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.698300", + "Timestamp": "2024-05-16T10:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.573300", + "Timestamp": "2024-05-16T10:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.449000", + "Timestamp": "2024-05-16T10:16:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.444000", + "Timestamp": "2024-05-16T10:16:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.319000", + "Timestamp": "2024-05-16T10:16:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.007500", + "Timestamp": "2024-05-16T10:16:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.002500", + "Timestamp": "2024-05-16T10:16:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.877500", + "Timestamp": "2024-05-16T10:16:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097300", + "Timestamp": "2024-05-16T10:16:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093600", + "Timestamp": "2024-05-16T10:16:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037300", + "Timestamp": "2024-05-16T10:16:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.195900", + "Timestamp": "2024-05-16T10:16:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.191900", + "Timestamp": "2024-05-16T10:16:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.135900", + "Timestamp": "2024-05-16T10:16:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.679400", + "Timestamp": "2024-05-16T10:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.674400", + "Timestamp": "2024-05-16T10:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.549400", + "Timestamp": "2024-05-16T10:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154400", + "Timestamp": "2024-05-16T10:16:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150700", + "Timestamp": "2024-05-16T10:16:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094400", + "Timestamp": "2024-05-16T10:16:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.536600", + "Timestamp": "2024-05-16T10:16:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.531600", + "Timestamp": "2024-05-16T10:16:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.406600", + "Timestamp": "2024-05-16T10:16:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.974900", + "Timestamp": "2024-05-16T10:16:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.969900", + "Timestamp": "2024-05-16T10:16:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.844900", + "Timestamp": "2024-05-16T10:16:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.661900", + "Timestamp": "2024-05-16T10:16:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.656900", + "Timestamp": "2024-05-16T10:16:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.531900", + "Timestamp": "2024-05-16T10:16:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.220200", + "Timestamp": "2024-05-16T10:16:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.215200", + "Timestamp": "2024-05-16T10:16:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.090200", + "Timestamp": "2024-05-16T10:16:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153000", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149000", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093000", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.309900", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349900", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.249900", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.758800", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.753800", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.628800", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.404600", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.399600", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.274600", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.583400", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.964900", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.959900", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.834900", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.563000", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.558000", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.433000", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.194900", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.189900", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.064900", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.813800", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.808800", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.683800", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.399800", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.439800", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.339800", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.714600", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314600", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.284600", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184600", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.186400", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.182400", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126400", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.323400", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.039500", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.293400", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.009500", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.193400", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.909500", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.419200", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.704900", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.657100", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.652100", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.527100", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.583300", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.578300", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.453300", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.536300", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.531300", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.406300", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103900", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.464500", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.459500", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.334500", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.185300", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.180300", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.055300", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144100", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140400", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084100", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324400", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319400", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194400", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.332400", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.327400", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.202400", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.616300", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.586300", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.486300", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.651500", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.173000", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.168000", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.043000", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.836900", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.831900", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.706900", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.830600", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.825600", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.700600", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099700", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039700", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.400500", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.395500", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.270500", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.320700", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.315700", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190700", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099100", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095400", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039100", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156800", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153100", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096800", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126800", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122800", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066800", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.107300", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.077300", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.977300", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.370300", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.365300", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.240300", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.786400", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.781400", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.656400", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.317600", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.287600", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.187600", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.538500", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.533500", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.408500", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.500900", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.495900", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.370900", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.889400", + "Timestamp": "2024-05-16T10:16:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.884400", + "Timestamp": "2024-05-16T10:16:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.759400", + "Timestamp": "2024-05-16T10:16:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.022200", + "Timestamp": "2024-05-16T10:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.017200", + "Timestamp": "2024-05-16T10:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.892200", + "Timestamp": "2024-05-16T10:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122400", + "Timestamp": "2024-05-16T10:16:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118400", + "Timestamp": "2024-05-16T10:16:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062400", + "Timestamp": "2024-05-16T10:16:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.794100", + "Timestamp": "2024-05-16T10:10:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.800600", + "Timestamp": "2024-05-16T10:10:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.130700", + "Timestamp": "2024-05-16T10:10:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.789100", + "Timestamp": "2024-05-16T10:10:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.795600", + "Timestamp": "2024-05-16T10:10:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.125700", + "Timestamp": "2024-05-16T10:10:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.664100", + "Timestamp": "2024-05-16T10:10:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.670600", + "Timestamp": "2024-05-16T10:10:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.000700", + "Timestamp": "2024-05-16T10:10:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.618000", + "Timestamp": "2024-05-16T10:10:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.618000", + "Timestamp": "2024-05-16T10:10:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.618000", + "Timestamp": "2024-05-16T10:10:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.270400", + "Timestamp": "2024-05-16T10:08:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.676900", + "Timestamp": "2024-05-16T10:02:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.635200", + "Timestamp": "2024-05-16T10:02:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.285500", + "Timestamp": "2024-05-16T10:02:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.203600", + "Timestamp": "2024-05-16T10:02:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.085700", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.080700", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.955700", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.955700", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.950700", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.825700", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.728000", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.860800", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.879600", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.849600", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.749600", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.513600", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.406300", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.401300", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.276300", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.381800", + "Timestamp": "2024-05-16T10:02:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.363400", + "Timestamp": "2024-05-16T10:02:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.358400", + "Timestamp": "2024-05-16T10:02:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.233400", + "Timestamp": "2024-05-16T10:02:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.099400", + "Timestamp": "2024-05-16T10:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207500", + "Timestamp": "2024-05-16T10:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T10:02:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.435300", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.430300", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.305300", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.415000", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.344000", + "Timestamp": "2024-05-16T10:02:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.567100", + "Timestamp": "2024-05-16T10:02:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.562100", + "Timestamp": "2024-05-16T10:02:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.437100", + "Timestamp": "2024-05-16T10:02:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.886300", + "Timestamp": "2024-05-16T10:02:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.092800", + "Timestamp": "2024-05-16T10:02:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.088600", + "Timestamp": "2024-05-16T10:02:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.564700", + "Timestamp": "2024-05-16T10:02:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.559700", + "Timestamp": "2024-05-16T10:02:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.434700", + "Timestamp": "2024-05-16T10:02:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.998500", + "Timestamp": "2024-05-16T10:02:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.993500", + "Timestamp": "2024-05-16T10:02:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.868500", + "Timestamp": "2024-05-16T10:02:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.059800", + "Timestamp": "2024-05-16T10:02:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.054800", + "Timestamp": "2024-05-16T10:02:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.929800", + "Timestamp": "2024-05-16T10:02:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.225300", + "Timestamp": "2024-05-16T10:02:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.220300", + "Timestamp": "2024-05-16T10:02:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.095300", + "Timestamp": "2024-05-16T10:02:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151400", + "Timestamp": "2024-05-16T10:02:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147700", + "Timestamp": "2024-05-16T10:02:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091400", + "Timestamp": "2024-05-16T10:02:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152800", + "Timestamp": "2024-05-16T10:02:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149100", + "Timestamp": "2024-05-16T10:02:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092800", + "Timestamp": "2024-05-16T10:02:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121400", + "Timestamp": "2024-05-16T10:02:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117400", + "Timestamp": "2024-05-16T10:02:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061400", + "Timestamp": "2024-05-16T10:02:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.928700", + "Timestamp": "2024-05-16T10:02:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.923700", + "Timestamp": "2024-05-16T10:02:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.798700", + "Timestamp": "2024-05-16T10:02:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.577500", + "Timestamp": "2024-05-16T10:02:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.547500", + "Timestamp": "2024-05-16T10:02:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.447500", + "Timestamp": "2024-05-16T10:02:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.476900", + "Timestamp": "2024-05-16T10:02:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.155400", + "Timestamp": "2024-05-16T10:02:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.150400", + "Timestamp": "2024-05-16T10:02:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.025400", + "Timestamp": "2024-05-16T10:02:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.286200", + "Timestamp": "2024-05-16T10:02:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281200", + "Timestamp": "2024-05-16T10:02:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156200", + "Timestamp": "2024-05-16T10:02:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.890000", + "Timestamp": "2024-05-16T10:02:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.885000", + "Timestamp": "2024-05-16T10:02:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.760000", + "Timestamp": "2024-05-16T10:02:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154800", + "Timestamp": "2024-05-16T10:02:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151100", + "Timestamp": "2024-05-16T10:02:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094800", + "Timestamp": "2024-05-16T10:02:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.464400", + "Timestamp": "2024-05-16T10:01:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.459400", + "Timestamp": "2024-05-16T10:01:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.334400", + "Timestamp": "2024-05-16T10:01:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.192100", + "Timestamp": "2024-05-16T10:01:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.189100", + "Timestamp": "2024-05-16T10:01:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.132100", + "Timestamp": "2024-05-16T10:01:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.470000", + "Timestamp": "2024-05-16T10:01:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.777800", + "Timestamp": "2024-05-16T10:01:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.747800", + "Timestamp": "2024-05-16T10:01:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.647800", + "Timestamp": "2024-05-16T10:01:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.109200", + "Timestamp": "2024-05-16T10:01:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.375000", + "Timestamp": "2024-05-16T10:01:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.370000", + "Timestamp": "2024-05-16T10:01:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.245000", + "Timestamp": "2024-05-16T10:01:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.414200", + "Timestamp": "2024-05-16T10:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.409200", + "Timestamp": "2024-05-16T10:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.284200", + "Timestamp": "2024-05-16T10:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.251200", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.462500", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.457500", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.332500", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100600", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096900", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040600", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.753700", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.748700", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.623700", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.864000", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.864000", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.189800", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185800", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129800", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.206900", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.201900", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.076900", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.047700", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.042700", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.917700", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.845100", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.838400", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.625600", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.581300", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.576300", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.451300", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.373300", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343300", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.243300", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112300", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108300", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052300", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.876700", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.871700", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.746700", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166300", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.206300", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.630100", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.625100", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.500100", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.042300", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.037300", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.912300", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068700", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038700", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008700", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.032700", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.027700", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.902700", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.781600", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.776600", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.651600", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.817600", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.812600", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.687600", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155700", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.195700", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095700", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.317400", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.312400", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.187400", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.533700", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.528700", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.403700", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.126300", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.121300", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.996300", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.492400", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.487400", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.362400", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t1.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065900", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t1.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.005900", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t1.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005900", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.106900", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.076900", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.976900", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.329900", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.324900", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.199900", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044500", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.570400", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.565400", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.440400", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.399300", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.369300", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.269300", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.007000", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.002000", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.877000", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.140000", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.135000", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.010000", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.488300", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.483300", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.358300", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.447800", + "Timestamp": "2024-05-16T10:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.442800", + "Timestamp": "2024-05-16T10:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.317800", + "Timestamp": "2024-05-16T10:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.498600", + "Timestamp": "2024-05-16T10:01:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.493600", + "Timestamp": "2024-05-16T10:01:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.368600", + "Timestamp": "2024-05-16T10:01:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271200", + "Timestamp": "2024-05-16T10:01:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266200", + "Timestamp": "2024-05-16T10:01:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141200", + "Timestamp": "2024-05-16T10:01:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T10:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103100", + "Timestamp": "2024-05-16T10:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046800", + "Timestamp": "2024-05-16T10:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.355800", + "Timestamp": "2024-05-16T09:53:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.446200", + "Timestamp": "2024-05-16T09:51:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.289600", + "Timestamp": "2024-05-16T09:49:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.144800", + "Timestamp": "2024-05-16T09:48:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.572800", + "Timestamp": "2024-05-16T09:48:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-16T09:48:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.515200", + "Timestamp": "2024-05-16T09:48:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.238300", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.233300", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.108300", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.672400", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.672400", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.667400", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.667400", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.542400", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.542400", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.277400", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.272400", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.147400", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.858400", + "Timestamp": "2024-05-16T09:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.683500", + "Timestamp": "2024-05-16T09:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.678500", + "Timestamp": "2024-05-16T09:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.553500", + "Timestamp": "2024-05-16T09:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432000", + "Timestamp": "2024-05-16T09:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.719600", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.714600", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.589600", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093500", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089800", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033500", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.473200", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.353600", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.348600", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.223600", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.858900", + "Timestamp": "2024-05-16T09:47:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.828900", + "Timestamp": "2024-05-16T09:47:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.728900", + "Timestamp": "2024-05-16T09:47:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.828900", + "Timestamp": "2024-05-16T09:47:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.823900", + "Timestamp": "2024-05-16T09:47:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.698900", + "Timestamp": "2024-05-16T09:47:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.244800", + "Timestamp": "2024-05-16T09:47:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.239800", + "Timestamp": "2024-05-16T09:47:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.114800", + "Timestamp": "2024-05-16T09:47:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.204500", + "Timestamp": "2024-05-16T09:47:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.199500", + "Timestamp": "2024-05-16T09:47:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.074500", + "Timestamp": "2024-05-16T09:47:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.332400", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.327400", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.202400", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101300", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097600", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041300", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T09:47:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101000", + "Timestamp": "2024-05-16T09:47:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045000", + "Timestamp": "2024-05-16T09:47:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439200", + "Timestamp": "2024-05-16T09:47:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T09:47:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111100", + "Timestamp": "2024-05-16T09:47:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T09:47:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051100", + "Timestamp": "2024-05-16T09:47:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.209300", + "Timestamp": "2024-05-16T09:47:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.205300", + "Timestamp": "2024-05-16T09:47:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149300", + "Timestamp": "2024-05-16T09:47:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m1.small", + "ProductDescription": "Windows", + "SpotPrice": "0.051800", + "Timestamp": "2024-05-16T09:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117400", + "Timestamp": "2024-05-16T09:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113700", + "Timestamp": "2024-05-16T09:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057400", + "Timestamp": "2024-05-16T09:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T09:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145800", + "Timestamp": "2024-05-16T09:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045800", + "Timestamp": "2024-05-16T09:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.283500", + "Timestamp": "2024-05-16T09:47:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.278500", + "Timestamp": "2024-05-16T09:47:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.153500", + "Timestamp": "2024-05-16T09:47:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.402600", + "Timestamp": "2024-05-16T09:47:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.505900", + "Timestamp": "2024-05-16T09:47:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.397600", + "Timestamp": "2024-05-16T09:47:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.500900", + "Timestamp": "2024-05-16T09:47:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.272600", + "Timestamp": "2024-05-16T09:47:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.375900", + "Timestamp": "2024-05-16T09:47:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.344900", + "Timestamp": "2024-05-16T09:47:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.339900", + "Timestamp": "2024-05-16T09:47:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.214900", + "Timestamp": "2024-05-16T09:47:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.839700", + "Timestamp": "2024-05-16T09:47:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.806800", + "Timestamp": "2024-05-16T09:47:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.801800", + "Timestamp": "2024-05-16T09:47:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.676800", + "Timestamp": "2024-05-16T09:47:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.483200", + "Timestamp": "2024-05-16T09:47:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.453200", + "Timestamp": "2024-05-16T09:47:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.353200", + "Timestamp": "2024-05-16T09:47:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.444300", + "Timestamp": "2024-05-16T09:47:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.439300", + "Timestamp": "2024-05-16T09:47:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.314300", + "Timestamp": "2024-05-16T09:47:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.061100", + "Timestamp": "2024-05-16T09:47:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.056100", + "Timestamp": "2024-05-16T09:47:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.931100", + "Timestamp": "2024-05-16T09:47:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.092800", + "Timestamp": "2024-05-16T09:47:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.092800", + "Timestamp": "2024-05-16T09:47:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093500", + "Timestamp": "2024-05-16T09:47:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089800", + "Timestamp": "2024-05-16T09:47:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033500", + "Timestamp": "2024-05-16T09:47:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.893800", + "Timestamp": "2024-05-16T09:47:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.863800", + "Timestamp": "2024-05-16T09:47:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.763800", + "Timestamp": "2024-05-16T09:47:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.365200", + "Timestamp": "2024-05-16T09:47:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.360200", + "Timestamp": "2024-05-16T09:47:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.235200", + "Timestamp": "2024-05-16T09:47:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.572600", + "Timestamp": "2024-05-16T09:47:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.567600", + "Timestamp": "2024-05-16T09:47:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.442600", + "Timestamp": "2024-05-16T09:47:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.171400", + "Timestamp": "2024-05-16T09:47:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.166400", + "Timestamp": "2024-05-16T09:47:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.041400", + "Timestamp": "2024-05-16T09:47:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.551500", + "Timestamp": "2024-05-16T09:46:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.493700", + "Timestamp": "2024-05-16T09:46:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.546500", + "Timestamp": "2024-05-16T09:46:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.488700", + "Timestamp": "2024-05-16T09:46:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.421500", + "Timestamp": "2024-05-16T09:46:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.363700", + "Timestamp": "2024-05-16T09:46:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217400", + "Timestamp": "2024-05-16T09:46:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.846700", + "Timestamp": "2024-05-16T09:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.816700", + "Timestamp": "2024-05-16T09:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.716700", + "Timestamp": "2024-05-16T09:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.186500", + "Timestamp": "2024-05-16T09:46:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183500", + "Timestamp": "2024-05-16T09:46:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126500", + "Timestamp": "2024-05-16T09:46:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.467400", + "Timestamp": "2024-05-16T09:46:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.326300", + "Timestamp": "2024-05-16T09:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.321300", + "Timestamp": "2024-05-16T09:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196300", + "Timestamp": "2024-05-16T09:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.878700", + "Timestamp": "2024-05-16T09:46:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.025800", + "Timestamp": "2024-05-16T09:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.020800", + "Timestamp": "2024-05-16T09:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.895800", + "Timestamp": "2024-05-16T09:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.233400", + "Timestamp": "2024-05-16T09:46:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.228400", + "Timestamp": "2024-05-16T09:46:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103400", + "Timestamp": "2024-05-16T09:46:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.743500", + "Timestamp": "2024-05-16T09:46:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.738500", + "Timestamp": "2024-05-16T09:46:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.613500", + "Timestamp": "2024-05-16T09:46:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.702800", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.180900", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.176900", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120900", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270400", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265400", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140400", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.319300", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.314300", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.189300", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207300", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.610400", + "Timestamp": "2024-05-16T09:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120500", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116500", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060500", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "11.002700", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "10.997700", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "10.872700", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.444000", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.414000", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.314000", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.404600", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.399600", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.274600", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.222800", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.219100", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162800", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.488800", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.723600", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.878800", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.718600", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.873800", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.593600", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.748800", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.081500", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.051500", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.951500", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.754400", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.749400", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.624400", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120400", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160400", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060400", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.093100", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.088100", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.963100", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.426800", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.421800", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.296800", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125100", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121100", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065100", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146300", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046300", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.198700", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.194700", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.138700", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.252600", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.864000", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.859000", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.734000", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.740300", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.735300", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.610300", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.287000", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.282000", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.157000", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.995400", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213300", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.795000", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.361900", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.356900", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.231900", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.785100", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.780100", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.655100", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.664800", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130500", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126800", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070500", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151300", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147600", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091300", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.402800", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.397800", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.272800", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153100", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149400", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093100", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.844800", + "Timestamp": "2024-05-16T09:37:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.582400", + "Timestamp": "2024-05-16T09:34:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T09:34:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.249900", + "Timestamp": "2024-05-16T09:34:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.998200", + "Timestamp": "2024-05-16T09:33:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.993200", + "Timestamp": "2024-05-16T09:33:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.868200", + "Timestamp": "2024-05-16T09:33:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208800", + "Timestamp": "2024-05-16T09:33:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.798000", + "Timestamp": "2024-05-16T09:33:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.768000", + "Timestamp": "2024-05-16T09:33:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.668000", + "Timestamp": "2024-05-16T09:33:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.791400", + "Timestamp": "2024-05-16T09:33:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.419300", + "Timestamp": "2024-05-16T09:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.414300", + "Timestamp": "2024-05-16T09:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.289300", + "Timestamp": "2024-05-16T09:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.202100", + "Timestamp": "2024-05-16T09:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.197100", + "Timestamp": "2024-05-16T09:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.072100", + "Timestamp": "2024-05-16T09:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.779400", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.072700", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.774400", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.067700", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.649400", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.942700", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.295500", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.290500", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.165500", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150100", + "Timestamp": "2024-05-16T09:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146100", + "Timestamp": "2024-05-16T09:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090100", + "Timestamp": "2024-05-16T09:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.179300", + "Timestamp": "2024-05-16T09:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.175300", + "Timestamp": "2024-05-16T09:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119300", + "Timestamp": "2024-05-16T09:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.887100", + "Timestamp": "2024-05-16T09:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.616600", + "Timestamp": "2024-05-16T09:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.595600", + "Timestamp": "2024-05-16T09:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.611600", + "Timestamp": "2024-05-16T09:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.590600", + "Timestamp": "2024-05-16T09:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.486600", + "Timestamp": "2024-05-16T09:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.465600", + "Timestamp": "2024-05-16T09:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121100", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117100", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061100", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.713100", + "Timestamp": "2024-05-16T09:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.708100", + "Timestamp": "2024-05-16T09:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.583100", + "Timestamp": "2024-05-16T09:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.309200", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.304200", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.179200", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.990000", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.960000", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.860000", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.275000", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.180700", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.150700", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.050700", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.829400", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.824400", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.699400", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.749600", + "Timestamp": "2024-05-16T09:32:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.744600", + "Timestamp": "2024-05-16T09:32:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.619600", + "Timestamp": "2024-05-16T09:32:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.489400", + "Timestamp": "2024-05-16T09:32:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.484400", + "Timestamp": "2024-05-16T09:32:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.359400", + "Timestamp": "2024-05-16T09:32:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.086900", + "Timestamp": "2024-05-16T09:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.081900", + "Timestamp": "2024-05-16T09:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.956900", + "Timestamp": "2024-05-16T09:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.774400", + "Timestamp": "2024-05-16T09:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.769400", + "Timestamp": "2024-05-16T09:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.644400", + "Timestamp": "2024-05-16T09:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.132900", + "Timestamp": "2024-05-16T09:32:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.127900", + "Timestamp": "2024-05-16T09:32:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.002900", + "Timestamp": "2024-05-16T09:32:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.232200", + "Timestamp": "2024-05-16T09:32:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.227200", + "Timestamp": "2024-05-16T09:32:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.102200", + "Timestamp": "2024-05-16T09:32:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T09:32:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-16T09:32:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044000", + "Timestamp": "2024-05-16T09:32:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.041600", + "Timestamp": "2024-05-16T09:32:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.083800", + "Timestamp": "2024-05-16T09:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.078800", + "Timestamp": "2024-05-16T09:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.953800", + "Timestamp": "2024-05-16T09:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.904600", + "Timestamp": "2024-05-16T09:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.874600", + "Timestamp": "2024-05-16T09:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.774600", + "Timestamp": "2024-05-16T09:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.881900", + "Timestamp": "2024-05-16T09:32:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.156600", + "Timestamp": "2024-05-16T09:32:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.117000", + "Timestamp": "2024-05-16T09:32:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.151600", + "Timestamp": "2024-05-16T09:32:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.112000", + "Timestamp": "2024-05-16T09:32:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.026600", + "Timestamp": "2024-05-16T09:32:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.987000", + "Timestamp": "2024-05-16T09:32:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.515800", + "Timestamp": "2024-05-16T09:32:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.270200", + "Timestamp": "2024-05-16T09:32:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.510800", + "Timestamp": "2024-05-16T09:32:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.265200", + "Timestamp": "2024-05-16T09:32:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.385800", + "Timestamp": "2024-05-16T09:32:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.140200", + "Timestamp": "2024-05-16T09:32:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.040000", + "Timestamp": "2024-05-16T09:31:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.035000", + "Timestamp": "2024-05-16T09:31:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.910000", + "Timestamp": "2024-05-16T09:31:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.033400", + "Timestamp": "2024-05-16T09:31:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.028400", + "Timestamp": "2024-05-16T09:31:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.903400", + "Timestamp": "2024-05-16T09:31:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.835900", + "Timestamp": "2024-05-16T09:31:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.830900", + "Timestamp": "2024-05-16T09:31:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.705900", + "Timestamp": "2024-05-16T09:31:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-16T09:31:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098900", + "Timestamp": "2024-05-16T09:31:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042600", + "Timestamp": "2024-05-16T09:31:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T09:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.459100", + "Timestamp": "2024-05-16T09:31:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.108800", + "Timestamp": "2024-05-16T09:31:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.382100", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.377100", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.252100", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.039600", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t1.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079900", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t1.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.019900", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t1.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019900", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.811100", + "Timestamp": "2024-05-16T09:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.806100", + "Timestamp": "2024-05-16T09:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.681100", + "Timestamp": "2024-05-16T09:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.454600", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.407700", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.447700", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.347700", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143500", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183500", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083500", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.689500", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.684500", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.559500", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.729900", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.339800", + "Timestamp": "2024-05-16T09:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334800", + "Timestamp": "2024-05-16T09:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.209800", + "Timestamp": "2024-05-16T09:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.196300", + "Timestamp": "2024-05-16T09:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192600", + "Timestamp": "2024-05-16T09:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136300", + "Timestamp": "2024-05-16T09:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.059200", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.054200", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.929200", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.393300", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.363300", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.263300", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.110500", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.105500", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.980500", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.619800", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.614800", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.489800", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.366900", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.361900", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.236900", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.968400", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.422700", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.938400", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.392700", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.838400", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.292700", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075400", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075200", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071700", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071500", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015400", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015200", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.830000", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.825000", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.700000", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.023000", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.252400", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.222400", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.122400", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.305700", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.300700", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.175700", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.155400", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.150400", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.025400", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.448200", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.443200", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.318200", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.452300", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.449400", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.863000", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.858000", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.733000", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.863100", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.858100", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.733100", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.139800", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.134800", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.009800", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.104800", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.099800", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.974800", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439200", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.123100", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.051000", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.118100", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.046000", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.993100", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.921000", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117700", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114000", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057700", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.070800", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.065800", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.940800", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.488800", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.483800", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.358800", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.310000", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.305000", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.180000", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.185400", + "Timestamp": "2024-05-16T09:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181400", + "Timestamp": "2024-05-16T09:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T09:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.687600", + "Timestamp": "2024-05-16T09:20:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.323200", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293200", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.193200", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.957000", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.952000", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.827000", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.468700", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.463700", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.338700", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208000", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121400", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065400", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.187300", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.182300", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.057300", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115200", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111200", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055200", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.093600", + "Timestamp": "2024-05-16T09:17:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.301100", + "Timestamp": "2024-05-16T09:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.761500", + "Timestamp": "2024-05-16T09:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.756500", + "Timestamp": "2024-05-16T09:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.631500", + "Timestamp": "2024-05-16T09:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.369900", + "Timestamp": "2024-05-16T09:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.364900", + "Timestamp": "2024-05-16T09:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.239900", + "Timestamp": "2024-05-16T09:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071500", + "Timestamp": "2024-05-16T09:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042500", + "Timestamp": "2024-05-16T09:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011500", + "Timestamp": "2024-05-16T09:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.505600", + "Timestamp": "2024-05-16T09:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439200", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.491400", + "Timestamp": "2024-05-16T09:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.486400", + "Timestamp": "2024-05-16T09:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.361400", + "Timestamp": "2024-05-16T09:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.325300", + "Timestamp": "2024-05-16T09:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.320300", + "Timestamp": "2024-05-16T09:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195300", + "Timestamp": "2024-05-16T09:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.640600", + "Timestamp": "2024-05-16T09:17:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.707800", + "Timestamp": "2024-05-16T09:17:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.835200", + "Timestamp": "2024-05-16T09:17:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.443200", + "Timestamp": "2024-05-16T09:17:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114700", + "Timestamp": "2024-05-16T09:17:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154700", + "Timestamp": "2024-05-16T09:17:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054700", + "Timestamp": "2024-05-16T09:17:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T09:17:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T09:17:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047500", + "Timestamp": "2024-05-16T09:17:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.218100", + "Timestamp": "2024-05-16T09:17:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.213100", + "Timestamp": "2024-05-16T09:17:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-16T09:17:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.135500", + "Timestamp": "2024-05-16T09:17:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.130500", + "Timestamp": "2024-05-16T09:17:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.005500", + "Timestamp": "2024-05-16T09:17:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.291200", + "Timestamp": "2024-05-16T09:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.528300", + "Timestamp": "2024-05-16T09:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.523300", + "Timestamp": "2024-05-16T09:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.398300", + "Timestamp": "2024-05-16T09:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.288900", + "Timestamp": "2024-05-16T09:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.283900", + "Timestamp": "2024-05-16T09:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.158900", + "Timestamp": "2024-05-16T09:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.450400", + "Timestamp": "2024-05-16T09:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.445400", + "Timestamp": "2024-05-16T09:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.320400", + "Timestamp": "2024-05-16T09:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.848800", + "Timestamp": "2024-05-16T09:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.529600", + "Timestamp": "2024-05-16T09:17:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.524600", + "Timestamp": "2024-05-16T09:17:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.399600", + "Timestamp": "2024-05-16T09:17:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.910300", + "Timestamp": "2024-05-16T09:17:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.905300", + "Timestamp": "2024-05-16T09:17:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.780300", + "Timestamp": "2024-05-16T09:17:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122100", + "Timestamp": "2024-05-16T09:17:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118400", + "Timestamp": "2024-05-16T09:17:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062100", + "Timestamp": "2024-05-16T09:17:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.923200", + "Timestamp": "2024-05-16T09:17:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.913700", + "Timestamp": "2024-05-16T09:17:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.908700", + "Timestamp": "2024-05-16T09:17:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.783700", + "Timestamp": "2024-05-16T09:17:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.955200", + "Timestamp": "2024-05-16T09:17:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.950200", + "Timestamp": "2024-05-16T09:17:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.825200", + "Timestamp": "2024-05-16T09:17:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T09:17:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098400", + "Timestamp": "2024-05-16T09:17:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042100", + "Timestamp": "2024-05-16T09:17:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.351600", + "Timestamp": "2024-05-16T09:16:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.346600", + "Timestamp": "2024-05-16T09:16:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.221600", + "Timestamp": "2024-05-16T09:16:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.452800", + "Timestamp": "2024-05-16T09:16:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-16T09:16:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065100", + "Timestamp": "2024-05-16T09:16:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008800", + "Timestamp": "2024-05-16T09:16:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.963400", + "Timestamp": "2024-05-16T09:16:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.958400", + "Timestamp": "2024-05-16T09:16:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.833400", + "Timestamp": "2024-05-16T09:16:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.298000", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.293000", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.168000", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.110600", + "Timestamp": "2024-05-16T09:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.105600", + "Timestamp": "2024-05-16T09:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.980600", + "Timestamp": "2024-05-16T09:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.401900", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.396900", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.271900", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.291600", + "Timestamp": "2024-05-16T09:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.286600", + "Timestamp": "2024-05-16T09:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.161600", + "Timestamp": "2024-05-16T09:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.260800", + "Timestamp": "2024-05-16T09:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.882200", + "Timestamp": "2024-05-16T09:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158300", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154600", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098300", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.576900", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.571900", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.446900", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.334100", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.304100", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.204100", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.007700", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.002700", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.877700", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.981600", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.073000", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.043000", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.943000", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.714600", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.271600", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.266600", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.141600", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.490000", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.588400", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.583400", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.458400", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.869900", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.864900", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.739900", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102000", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098000", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042000", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.300600", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.295600", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170600", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161100", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157400", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101100", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.403500", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.398500", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.273500", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.924200", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.919200", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.794200", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.616300", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.611300", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.486300", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.726300", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.696300", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.596300", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155100", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.195100", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095100", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094100", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090400", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034100", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.621500", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.591500", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.491500", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099100", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095400", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039100", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g5g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.254300", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g5g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.250600", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g5g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194300", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.699000", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.694000", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.569000", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.886400", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.646600", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.641600", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.516600", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.333600", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.328600", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.203600", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.781700", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.776700", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.651700", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129300", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125600", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069300", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.061400", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.056400", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.931400", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092500", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088800", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032500", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158200", + "Timestamp": "2024-05-16T09:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154500", + "Timestamp": "2024-05-16T09:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098200", + "Timestamp": "2024-05-16T09:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.189400", + "Timestamp": "2024-05-16T09:05:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.822400", + "Timestamp": "2024-05-16T09:04:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.828400", + "Timestamp": "2024-05-16T09:04:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.602200", + "Timestamp": "2024-05-16T09:04:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.238200", + "Timestamp": "2024-05-16T09:02:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.238200", + "Timestamp": "2024-05-16T09:02:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.203800", + "Timestamp": "2024-05-16T09:02:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.198800", + "Timestamp": "2024-05-16T09:02:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.073800", + "Timestamp": "2024-05-16T09:02:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.625600", + "Timestamp": "2024-05-16T09:02:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.212200", + "Timestamp": "2024-05-16T09:02:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.207200", + "Timestamp": "2024-05-16T09:02:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.082200", + "Timestamp": "2024-05-16T09:02:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.557500", + "Timestamp": "2024-05-16T09:02:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.552500", + "Timestamp": "2024-05-16T09:02:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.427500", + "Timestamp": "2024-05-16T09:02:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.680400", + "Timestamp": "2024-05-16T09:02:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.675400", + "Timestamp": "2024-05-16T09:02:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.550400", + "Timestamp": "2024-05-16T09:02:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079700", + "Timestamp": "2024-05-16T09:02:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119700", + "Timestamp": "2024-05-16T09:02:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019700", + "Timestamp": "2024-05-16T09:02:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.664800", + "Timestamp": "2024-05-16T09:02:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.578500", + "Timestamp": "2024-05-16T09:02:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.573500", + "Timestamp": "2024-05-16T09:02:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.448500", + "Timestamp": "2024-05-16T09:02:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.581300", + "Timestamp": "2024-05-16T09:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.576300", + "Timestamp": "2024-05-16T09:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.451300", + "Timestamp": "2024-05-16T09:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.187600", + "Timestamp": "2024-05-16T09:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183900", + "Timestamp": "2024-05-16T09:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127600", + "Timestamp": "2024-05-16T09:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116100", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056100", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.442200", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.437200", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.312200", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164900", + "Timestamp": "2024-05-16T09:02:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.204900", + "Timestamp": "2024-05-16T09:02:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T09:02:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.878200", + "Timestamp": "2024-05-16T09:02:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.873200", + "Timestamp": "2024-05-16T09:02:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.748200", + "Timestamp": "2024-05-16T09:02:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.006300", + "Timestamp": "2024-05-16T09:02:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.001300", + "Timestamp": "2024-05-16T09:02:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.876300", + "Timestamp": "2024-05-16T09:02:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.640300", + "Timestamp": "2024-05-16T09:02:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.635300", + "Timestamp": "2024-05-16T09:02:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.510300", + "Timestamp": "2024-05-16T09:02:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.397000", + "Timestamp": "2024-05-16T09:02:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.392000", + "Timestamp": "2024-05-16T09:02:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.267000", + "Timestamp": "2024-05-16T09:02:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.868800", + "Timestamp": "2024-05-16T09:02:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.981100", + "Timestamp": "2024-05-16T09:02:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.976100", + "Timestamp": "2024-05-16T09:02:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.851100", + "Timestamp": "2024-05-16T09:02:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093200", + "Timestamp": "2024-05-16T09:02:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089500", + "Timestamp": "2024-05-16T09:02:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033200", + "Timestamp": "2024-05-16T09:02:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.124500", + "Timestamp": "2024-05-16T09:02:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.119500", + "Timestamp": "2024-05-16T09:02:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.994500", + "Timestamp": "2024-05-16T09:02:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.783300", + "Timestamp": "2024-05-16T09:02:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.778300", + "Timestamp": "2024-05-16T09:02:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.653300", + "Timestamp": "2024-05-16T09:02:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.614400", + "Timestamp": "2024-05-16T09:02:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.609400", + "Timestamp": "2024-05-16T09:02:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.484400", + "Timestamp": "2024-05-16T09:02:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151900", + "Timestamp": "2024-05-16T09:02:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.191900", + "Timestamp": "2024-05-16T09:02:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091900", + "Timestamp": "2024-05-16T09:02:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.734400", + "Timestamp": "2024-05-16T09:02:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.729400", + "Timestamp": "2024-05-16T09:02:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.604400", + "Timestamp": "2024-05-16T09:02:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069300", + "Timestamp": "2024-05-16T09:02:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065600", + "Timestamp": "2024-05-16T09:02:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009300", + "Timestamp": "2024-05-16T09:02:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093500", + "Timestamp": "2024-05-16T09:02:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089800", + "Timestamp": "2024-05-16T09:02:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033500", + "Timestamp": "2024-05-16T09:02:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.785700", + "Timestamp": "2024-05-16T09:02:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T09:01:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099100", + "Timestamp": "2024-05-16T09:01:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042800", + "Timestamp": "2024-05-16T09:01:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111600", + "Timestamp": "2024-05-16T09:01:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.185400", + "Timestamp": "2024-05-16T09:01:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.179200", + "Timestamp": "2024-05-16T09:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164400", + "Timestamp": "2024-05-16T09:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.175500", + "Timestamp": "2024-05-16T09:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160700", + "Timestamp": "2024-05-16T09:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119200", + "Timestamp": "2024-05-16T09:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T09:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314500", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.309500", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184500", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.232300", + "Timestamp": "2024-05-16T09:01:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.637400", + "Timestamp": "2024-05-16T09:01:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.632400", + "Timestamp": "2024-05-16T09:01:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.507400", + "Timestamp": "2024-05-16T09:01:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431600", + "Timestamp": "2024-05-16T09:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.041400", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.036400", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.911400", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.932300", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134200", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130500", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074200", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094300", + "Timestamp": "2024-05-16T09:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090600", + "Timestamp": "2024-05-16T09:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034300", + "Timestamp": "2024-05-16T09:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.618100", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.588100", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.488100", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.843100", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.838100", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.713100", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107000", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047000", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.905300", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.900300", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.775300", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138600", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.178600", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078600", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.098500", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.093500", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.968500", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.425900", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.420900", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.295900", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118200", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058200", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141800", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138100", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081800", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.385400", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.355400", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.255400", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.693500", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.688500", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.563500", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.666300", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.661300", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.536300", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.659300", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.629300", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.529300", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.272400", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267400", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142400", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215900", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.366100", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.361100", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.236100", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.295600", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.493000", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.488000", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.363000", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118400", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114400", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058400", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.727400", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099300", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095600", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039300", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.621300", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.616300", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.491300", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.435000", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.405000", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.305000", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T08:56:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.822400", + "Timestamp": "2024-05-16T08:54:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.822400", + "Timestamp": "2024-05-16T08:54:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.376000", + "Timestamp": "2024-05-16T08:51:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.886400", + "Timestamp": "2024-05-16T08:49:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.613100", + "Timestamp": "2024-05-16T08:49:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "p2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.231800", + "Timestamp": "2024-05-16T08:48:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.271800", + "Timestamp": "2024-05-16T08:48:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "p2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171800", + "Timestamp": "2024-05-16T08:48:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.758400", + "Timestamp": "2024-05-16T08:48:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.412800", + "Timestamp": "2024-05-16T08:48:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.764300", + "Timestamp": "2024-05-16T08:48:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.857600", + "Timestamp": "2024-05-16T08:47:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.069300", + "Timestamp": "2024-05-16T08:47:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.064300", + "Timestamp": "2024-05-16T08:47:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.939300", + "Timestamp": "2024-05-16T08:47:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.928500", + "Timestamp": "2024-05-16T08:47:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.923500", + "Timestamp": "2024-05-16T08:47:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.798500", + "Timestamp": "2024-05-16T08:47:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431600", + "Timestamp": "2024-05-16T08:47:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.716800", + "Timestamp": "2024-05-16T08:47:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.086600", + "Timestamp": "2024-05-16T08:47:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.081600", + "Timestamp": "2024-05-16T08:47:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.956600", + "Timestamp": "2024-05-16T08:47:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.189200", + "Timestamp": "2024-05-16T08:47:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.184200", + "Timestamp": "2024-05-16T08:47:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059200", + "Timestamp": "2024-05-16T08:47:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.452000", + "Timestamp": "2024-05-16T08:47:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.422000", + "Timestamp": "2024-05-16T08:47:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.322000", + "Timestamp": "2024-05-16T08:47:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.985200", + "Timestamp": "2024-05-16T08:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.980200", + "Timestamp": "2024-05-16T08:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.855200", + "Timestamp": "2024-05-16T08:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.448000", + "Timestamp": "2024-05-16T08:47:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.506500", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.501500", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.376500", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.198700", + "Timestamp": "2024-05-16T08:47:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.070000", + "Timestamp": "2024-05-16T08:47:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.822400", + "Timestamp": "2024-05-16T08:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.135500", + "Timestamp": "2024-05-16T08:47:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.105500", + "Timestamp": "2024-05-16T08:47:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.005500", + "Timestamp": "2024-05-16T08:47:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.613100", + "Timestamp": "2024-05-16T08:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314400", + "Timestamp": "2024-05-16T08:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.284400", + "Timestamp": "2024-05-16T08:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184400", + "Timestamp": "2024-05-16T08:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.205500", + "Timestamp": "2024-05-16T08:47:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.200500", + "Timestamp": "2024-05-16T08:47:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.075500", + "Timestamp": "2024-05-16T08:47:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.204000", + "Timestamp": "2024-05-16T08:47:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.200000", + "Timestamp": "2024-05-16T08:47:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144000", + "Timestamp": "2024-05-16T08:47:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.562500", + "Timestamp": "2024-05-16T08:47:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.557500", + "Timestamp": "2024-05-16T08:47:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.432500", + "Timestamp": "2024-05-16T08:47:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.750400", + "Timestamp": "2024-05-16T08:47:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.418000", + "Timestamp": "2024-05-16T08:47:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.413000", + "Timestamp": "2024-05-16T08:47:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.288000", + "Timestamp": "2024-05-16T08:47:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151100", + "Timestamp": "2024-05-16T08:47:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.191100", + "Timestamp": "2024-05-16T08:47:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091100", + "Timestamp": "2024-05-16T08:47:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103400", + "Timestamp": "2024-05-16T08:47:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099700", + "Timestamp": "2024-05-16T08:47:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043400", + "Timestamp": "2024-05-16T08:47:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117000", + "Timestamp": "2024-05-16T08:47:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-16T08:47:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057000", + "Timestamp": "2024-05-16T08:47:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.490200", + "Timestamp": "2024-05-16T08:47:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.511300", + "Timestamp": "2024-05-16T08:47:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.506300", + "Timestamp": "2024-05-16T08:47:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.381300", + "Timestamp": "2024-05-16T08:47:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.147400", + "Timestamp": "2024-05-16T08:47:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.142400", + "Timestamp": "2024-05-16T08:47:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.017400", + "Timestamp": "2024-05-16T08:47:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.681800", + "Timestamp": "2024-05-16T08:47:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.676800", + "Timestamp": "2024-05-16T08:47:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.551800", + "Timestamp": "2024-05-16T08:47:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.377100", + "Timestamp": "2024-05-16T08:47:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372100", + "Timestamp": "2024-05-16T08:47:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.247100", + "Timestamp": "2024-05-16T08:47:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.439800", + "Timestamp": "2024-05-16T08:47:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.434800", + "Timestamp": "2024-05-16T08:47:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.309800", + "Timestamp": "2024-05-16T08:47:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.177300", + "Timestamp": "2024-05-16T08:47:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173600", + "Timestamp": "2024-05-16T08:47:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.117300", + "Timestamp": "2024-05-16T08:47:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.204500", + "Timestamp": "2024-05-16T08:47:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.318800", + "Timestamp": "2024-05-16T08:47:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.313800", + "Timestamp": "2024-05-16T08:47:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.188800", + "Timestamp": "2024-05-16T08:47:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.275700", + "Timestamp": "2024-05-16T08:47:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.270700", + "Timestamp": "2024-05-16T08:47:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.145700", + "Timestamp": "2024-05-16T08:47:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.939700", + "Timestamp": "2024-05-16T08:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.909700", + "Timestamp": "2024-05-16T08:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.809700", + "Timestamp": "2024-05-16T08:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.313500", + "Timestamp": "2024-05-16T08:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.308500", + "Timestamp": "2024-05-16T08:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.183500", + "Timestamp": "2024-05-16T08:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.878800", + "Timestamp": "2024-05-16T08:46:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.860100", + "Timestamp": "2024-05-16T08:46:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.506900", + "Timestamp": "2024-05-16T08:46:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.501900", + "Timestamp": "2024-05-16T08:46:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.376900", + "Timestamp": "2024-05-16T08:46:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.519400", + "Timestamp": "2024-05-16T08:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.523900", + "Timestamp": "2024-05-16T08:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.365300", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.360300", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.235300", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088900", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032600", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.244100", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.239100", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.114100", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067100", + "Timestamp": "2024-05-16T08:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038100", + "Timestamp": "2024-05-16T08:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007100", + "Timestamp": "2024-05-16T08:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.261500", + "Timestamp": "2024-05-16T08:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.633000", + "Timestamp": "2024-05-16T08:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.628000", + "Timestamp": "2024-05-16T08:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.503000", + "Timestamp": "2024-05-16T08:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g5g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.740100", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g5g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.735100", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g5g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.610100", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.325500", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.320500", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.195500", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.241000", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.236000", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.111000", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.179600", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.175900", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119600", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.072600", + "Timestamp": "2024-05-16T08:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.349700", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.344700", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219700", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.975500", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.945500", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.845500", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307400", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302400", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177400", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231000", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.442200", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.365000", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.360000", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235000", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.439600", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.434600", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.309600", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072500", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012500", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041200", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095500", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039200", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.579200", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127000", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123000", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067000", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.628600", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.667200", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.623600", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.662200", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.498600", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.537200", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.350000", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.345000", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.220000", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.185000", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152600", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148600", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.188500", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.554400", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.549400", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.424400", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.023800", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147200", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143200", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087200", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071100", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042100", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011100", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.203800", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.271300", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.489200", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.484200", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.359200", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.728100", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.723100", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.598100", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.342100", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.337100", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212100", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.401000", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.396000", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.271000", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.079700", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.074700", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.949700", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.596100", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.591100", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.466100", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.221300", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.191300", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.091300", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100000", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096300", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040000", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106200", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046200", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.340400", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.335400", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.210400", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.453800", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.423800", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.323800", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154300", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150600", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094300", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.752000", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.722000", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.622000", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.248900", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.243900", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.118900", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.816800", + "Timestamp": "2024-05-16T08:34:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431800", + "Timestamp": "2024-05-16T08:34:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.992000", + "Timestamp": "2024-05-16T08:33:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.868800", + "Timestamp": "2024-05-16T08:33:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.471200", + "Timestamp": "2024-05-16T08:32:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.466200", + "Timestamp": "2024-05-16T08:32:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.341200", + "Timestamp": "2024-05-16T08:32:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.293000", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068400", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039700", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008400", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079500", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.050500", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019500", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T08:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.121600", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.091600", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.991600", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T08:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.664800", + "Timestamp": "2024-05-16T08:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.253100", + "Timestamp": "2024-05-16T08:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.248100", + "Timestamp": "2024-05-16T08:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.123100", + "Timestamp": "2024-05-16T08:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209200", + "Timestamp": "2024-05-16T08:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.196500", + "Timestamp": "2024-05-16T08:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192800", + "Timestamp": "2024-05-16T08:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136500", + "Timestamp": "2024-05-16T08:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.621800", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.591800", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.491800", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.916600", + "Timestamp": "2024-05-16T08:32:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.911600", + "Timestamp": "2024-05-16T08:32:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.786600", + "Timestamp": "2024-05-16T08:32:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T08:32:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.835500", + "Timestamp": "2024-05-16T08:32:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.563000", + "Timestamp": "2024-05-16T08:32:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.558000", + "Timestamp": "2024-05-16T08:32:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.433000", + "Timestamp": "2024-05-16T08:32:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.993400", + "Timestamp": "2024-05-16T08:32:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.963400", + "Timestamp": "2024-05-16T08:32:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.863400", + "Timestamp": "2024-05-16T08:32:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.305000", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.217200", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.300000", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.212200", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.175000", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.087200", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069100", + "Timestamp": "2024-05-16T08:32:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065400", + "Timestamp": "2024-05-16T08:32:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009100", + "Timestamp": "2024-05-16T08:32:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.447100", + "Timestamp": "2024-05-16T08:32:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.442100", + "Timestamp": "2024-05-16T08:32:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.317100", + "Timestamp": "2024-05-16T08:32:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.471300", + "Timestamp": "2024-05-16T08:32:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.494800", + "Timestamp": "2024-05-16T08:32:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.489800", + "Timestamp": "2024-05-16T08:32:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.364800", + "Timestamp": "2024-05-16T08:32:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T08:32:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103400", + "Timestamp": "2024-05-16T08:32:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047100", + "Timestamp": "2024-05-16T08:32:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.773600", + "Timestamp": "2024-05-16T08:32:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.768600", + "Timestamp": "2024-05-16T08:32:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.643600", + "Timestamp": "2024-05-16T08:32:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.777400", + "Timestamp": "2024-05-16T08:32:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.205700", + "Timestamp": "2024-05-16T08:32:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207300", + "Timestamp": "2024-05-16T08:32:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.257700", + "Timestamp": "2024-05-16T08:31:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.227700", + "Timestamp": "2024-05-16T08:31:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.127700", + "Timestamp": "2024-05-16T08:31:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.988800", + "Timestamp": "2024-05-16T08:31:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.983800", + "Timestamp": "2024-05-16T08:31:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.858800", + "Timestamp": "2024-05-16T08:31:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.812300", + "Timestamp": "2024-05-16T08:31:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.807300", + "Timestamp": "2024-05-16T08:31:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.682300", + "Timestamp": "2024-05-16T08:31:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.214100", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.209100", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084100", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.105600", + "Timestamp": "2024-05-16T08:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.100600", + "Timestamp": "2024-05-16T08:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.975600", + "Timestamp": "2024-05-16T08:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T08:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T08:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044900", + "Timestamp": "2024-05-16T08:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.437000", + "Timestamp": "2024-05-16T08:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.432000", + "Timestamp": "2024-05-16T08:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.307000", + "Timestamp": "2024-05-16T08:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.437200", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.432200", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.307200", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.656000", + "Timestamp": "2024-05-16T08:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.594300", + "Timestamp": "2024-05-16T08:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.564300", + "Timestamp": "2024-05-16T08:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.464300", + "Timestamp": "2024-05-16T08:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.187400", + "Timestamp": "2024-05-16T08:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183700", + "Timestamp": "2024-05-16T08:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127400", + "Timestamp": "2024-05-16T08:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.363700", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.358700", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.233700", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.041600", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.406200", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.401200", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.276200", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.801800", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.796800", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.671800", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.197300", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193300", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137300", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.492800", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.487800", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.362800", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.197000", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.192000", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.067000", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.252400", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.926400", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.921400", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.796400", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149500", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145500", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089500", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.187600", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183900", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127600", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155400", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.195400", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095400", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.983200", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.953200", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.853200", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.866500", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.861500", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.736500", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.714700", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.709700", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.584700", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.885500", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.880500", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.755500", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.227700", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.222700", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.097700", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.214600", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.210600", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.154600", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.657100", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.652100", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.527100", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066200", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.006200", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006200", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149700", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146000", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089700", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.193300", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.189300", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133300", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.396100", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.391100", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.266100", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.483700", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.478700", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.353700", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.461600", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.456600", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.331600", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.471000", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.906600", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.901600", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.776600", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077200", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073500", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017200", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.357800", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.327800", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.227800", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150800", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147100", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090800", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.860200", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.855200", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.730200", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.423600", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.418600", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.293600", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.214700", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.209700", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.084700", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.925700", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.301500", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.920700", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.296500", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.795700", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.171500", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118500", + "Timestamp": "2024-05-16T08:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-16T08:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058500", + "Timestamp": "2024-05-16T08:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.934400", + "Timestamp": "2024-05-16T08:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.402700", + "Timestamp": "2024-05-16T08:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125800", + "Timestamp": "2024-05-16T08:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122100", + "Timestamp": "2024-05-16T08:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065800", + "Timestamp": "2024-05-16T08:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082000", + "Timestamp": "2024-05-16T08:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078300", + "Timestamp": "2024-05-16T08:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022000", + "Timestamp": "2024-05-16T08:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.029100", + "Timestamp": "2024-05-16T08:31:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.024100", + "Timestamp": "2024-05-16T08:31:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.899100", + "Timestamp": "2024-05-16T08:31:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.190000", + "Timestamp": "2024-05-16T08:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.186000", + "Timestamp": "2024-05-16T08:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130000", + "Timestamp": "2024-05-16T08:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.458400", + "Timestamp": "2024-05-16T08:20:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T08:20:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.257600", + "Timestamp": "2024-05-16T08:19:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.750400", + "Timestamp": "2024-05-16T08:19:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.868800", + "Timestamp": "2024-05-16T08:19:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T08:18:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.886400", + "Timestamp": "2024-05-16T08:18:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.728400", + "Timestamp": "2024-05-16T08:17:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.698400", + "Timestamp": "2024-05-16T08:17:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.598400", + "Timestamp": "2024-05-16T08:17:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063100", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003100", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003100", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.586300", + "Timestamp": "2024-05-16T08:17:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.581300", + "Timestamp": "2024-05-16T08:17:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.456300", + "Timestamp": "2024-05-16T08:17:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095500", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039200", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115600", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111600", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055600", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.456000", + "Timestamp": "2024-05-16T08:17:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.528800", + "Timestamp": "2024-05-16T08:17:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.523800", + "Timestamp": "2024-05-16T08:17:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.398800", + "Timestamp": "2024-05-16T08:17:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273200", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.243200", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143200", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.586600", + "Timestamp": "2024-05-16T08:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.581600", + "Timestamp": "2024-05-16T08:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.456600", + "Timestamp": "2024-05-16T08:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.015200", + "Timestamp": "2024-05-16T08:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.010200", + "Timestamp": "2024-05-16T08:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.885200", + "Timestamp": "2024-05-16T08:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063700", + "Timestamp": "2024-05-16T08:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003700", + "Timestamp": "2024-05-16T08:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003700", + "Timestamp": "2024-05-16T08:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.911300", + "Timestamp": "2024-05-16T08:17:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.906300", + "Timestamp": "2024-05-16T08:17:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.781300", + "Timestamp": "2024-05-16T08:17:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.762100", + "Timestamp": "2024-05-16T08:17:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.757100", + "Timestamp": "2024-05-16T08:17:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.632100", + "Timestamp": "2024-05-16T08:17:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.005900", + "Timestamp": "2024-05-16T08:17:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.975900", + "Timestamp": "2024-05-16T08:17:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.875900", + "Timestamp": "2024-05-16T08:17:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.739200", + "Timestamp": "2024-05-16T08:17:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.130300", + "Timestamp": "2024-05-16T08:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.125300", + "Timestamp": "2024-05-16T08:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.000300", + "Timestamp": "2024-05-16T08:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.278700", + "Timestamp": "2024-05-16T08:17:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.273700", + "Timestamp": "2024-05-16T08:17:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.148700", + "Timestamp": "2024-05-16T08:17:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.094900", + "Timestamp": "2024-05-16T08:17:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.089900", + "Timestamp": "2024-05-16T08:17:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.964900", + "Timestamp": "2024-05-16T08:17:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213600", + "Timestamp": "2024-05-16T08:17:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171700", + "Timestamp": "2024-05-16T08:17:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167700", + "Timestamp": "2024-05-16T08:17:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111700", + "Timestamp": "2024-05-16T08:17:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115400", + "Timestamp": "2024-05-16T08:17:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T08:17:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055400", + "Timestamp": "2024-05-16T08:17:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.103400", + "Timestamp": "2024-05-16T08:17:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145200", + "Timestamp": "2024-05-16T08:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141500", + "Timestamp": "2024-05-16T08:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085200", + "Timestamp": "2024-05-16T08:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104300", + "Timestamp": "2024-05-16T08:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-16T08:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044300", + "Timestamp": "2024-05-16T08:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.291700", + "Timestamp": "2024-05-16T08:16:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.286700", + "Timestamp": "2024-05-16T08:16:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.161700", + "Timestamp": "2024-05-16T08:16:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.974400", + "Timestamp": "2024-05-16T08:16:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.969400", + "Timestamp": "2024-05-16T08:16:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.844400", + "Timestamp": "2024-05-16T08:16:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.611300", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.606300", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.481300", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.594600", + "Timestamp": "2024-05-16T08:16:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.589600", + "Timestamp": "2024-05-16T08:16:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.464600", + "Timestamp": "2024-05-16T08:16:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m1.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089600", + "Timestamp": "2024-05-16T08:16:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m1.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.059600", + "Timestamp": "2024-05-16T08:16:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m1.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029600", + "Timestamp": "2024-05-16T08:16:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.519900", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.514900", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.389900", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.026600", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.021600", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.896600", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.972300", + "Timestamp": "2024-05-16T08:16:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.727100", + "Timestamp": "2024-05-16T08:16:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.697100", + "Timestamp": "2024-05-16T08:16:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.597100", + "Timestamp": "2024-05-16T08:16:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.392300", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.387300", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.262300", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.436300", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.431300", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.306300", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.455400", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.450400", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.325400", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270900", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265900", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140900", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120900", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117200", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060900", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.549500", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.544500", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.419500", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.068700", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.063700", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.938700", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.186200", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.182500", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126200", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108900", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048900", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.012100", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.059200", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.054200", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.929200", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063200", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003200", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003200", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.580600", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.575600", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.450600", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.331900", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.329300", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.326900", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.324300", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.201900", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.199300", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.051100", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.824800", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.241600", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.211600", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.111600", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102400", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046400", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.343200", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.338200", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.213200", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.000400", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.970400", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.870400", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.286100", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.256100", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156100", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.469100", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.464100", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.339100", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099400", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095400", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039400", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074400", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070700", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014400", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.612600", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.607600", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.482600", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.496000", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.679000", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.470600", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.674000", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.465600", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.549000", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.340600", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.300700", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.295700", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170700", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.473400", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.468400", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.343400", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.396000", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144200", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140500", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084200", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.231400", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.227700", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171400", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219700", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.716700", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.711700", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.586700", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.568300", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.563300", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.438300", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160800", + "Timestamp": "2024-05-16T08:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156800", + "Timestamp": "2024-05-16T08:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T08:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T08:10:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T08:10:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T08:10:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.721300", + "Timestamp": "2024-05-16T08:10:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.484700", + "Timestamp": "2024-05-16T08:06:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.479700", + "Timestamp": "2024-05-16T08:06:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.354700", + "Timestamp": "2024-05-16T08:06:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.806400", + "Timestamp": "2024-05-16T08:06:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.806400", + "Timestamp": "2024-05-16T08:06:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.806400", + "Timestamp": "2024-05-16T08:06:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.875200", + "Timestamp": "2024-05-16T08:05:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.375200", + "Timestamp": "2024-05-16T08:04:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.879200", + "Timestamp": "2024-05-16T08:03:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "9.819800", + "Timestamp": "2024-05-16T08:02:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.728000", + "Timestamp": "2024-05-16T08:02:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118400", + "Timestamp": "2024-05-16T08:02:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114400", + "Timestamp": "2024-05-16T08:02:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058400", + "Timestamp": "2024-05-16T08:02:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.112900", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.107900", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.982900", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215800", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.265000", + "Timestamp": "2024-05-16T08:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174000", + "Timestamp": "2024-05-16T08:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170300", + "Timestamp": "2024-05-16T08:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114000", + "Timestamp": "2024-05-16T08:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.064500", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.040800", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.010800", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.910800", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.754200", + "Timestamp": "2024-05-16T08:02:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.749200", + "Timestamp": "2024-05-16T08:02:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.624200", + "Timestamp": "2024-05-16T08:02:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T08:02:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096800", + "Timestamp": "2024-05-16T08:02:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040800", + "Timestamp": "2024-05-16T08:02:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.116800", + "Timestamp": "2024-05-16T08:02:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145200", + "Timestamp": "2024-05-16T08:02:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185200", + "Timestamp": "2024-05-16T08:02:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085200", + "Timestamp": "2024-05-16T08:02:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.178600", + "Timestamp": "2024-05-16T08:02:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.173600", + "Timestamp": "2024-05-16T08:02:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.048600", + "Timestamp": "2024-05-16T08:02:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.399500", + "Timestamp": "2024-05-16T08:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.394500", + "Timestamp": "2024-05-16T08:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.269500", + "Timestamp": "2024-05-16T08:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.716900", + "Timestamp": "2024-05-16T08:02:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.711900", + "Timestamp": "2024-05-16T08:02:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.586900", + "Timestamp": "2024-05-16T08:02:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.469400", + "Timestamp": "2024-05-16T08:02:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.464400", + "Timestamp": "2024-05-16T08:02:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.339400", + "Timestamp": "2024-05-16T08:02:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.041000", + "Timestamp": "2024-05-16T08:02:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.036000", + "Timestamp": "2024-05-16T08:02:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.911000", + "Timestamp": "2024-05-16T08:02:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.412400", + "Timestamp": "2024-05-16T08:02:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.407400", + "Timestamp": "2024-05-16T08:02:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.282400", + "Timestamp": "2024-05-16T08:02:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.011500", + "Timestamp": "2024-05-16T08:02:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.006500", + "Timestamp": "2024-05-16T08:02:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.881500", + "Timestamp": "2024-05-16T08:02:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149800", + "Timestamp": "2024-05-16T08:02:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146100", + "Timestamp": "2024-05-16T08:02:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089800", + "Timestamp": "2024-05-16T08:02:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.864400", + "Timestamp": "2024-05-16T08:02:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.859400", + "Timestamp": "2024-05-16T08:02:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.734400", + "Timestamp": "2024-05-16T08:02:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097600", + "Timestamp": "2024-05-16T08:02:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137600", + "Timestamp": "2024-05-16T08:02:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037600", + "Timestamp": "2024-05-16T08:02:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.677000", + "Timestamp": "2024-05-16T08:02:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.519800", + "Timestamp": "2024-05-16T08:02:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.514800", + "Timestamp": "2024-05-16T08:02:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.389800", + "Timestamp": "2024-05-16T08:02:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.847400", + "Timestamp": "2024-05-16T08:01:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.842400", + "Timestamp": "2024-05-16T08:01:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.717400", + "Timestamp": "2024-05-16T08:01:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.422500", + "Timestamp": "2024-05-16T08:01:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.392500", + "Timestamp": "2024-05-16T08:01:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.292500", + "Timestamp": "2024-05-16T08:01:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.274800", + "Timestamp": "2024-05-16T08:01:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.269800", + "Timestamp": "2024-05-16T08:01:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.144800", + "Timestamp": "2024-05-16T08:01:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.861700", + "Timestamp": "2024-05-16T08:01:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.856700", + "Timestamp": "2024-05-16T08:01:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.731700", + "Timestamp": "2024-05-16T08:01:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.840200", + "Timestamp": "2024-05-16T08:01:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.491900", + "Timestamp": "2024-05-16T08:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.179700", + "Timestamp": "2024-05-16T08:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.174700", + "Timestamp": "2024-05-16T08:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.049700", + "Timestamp": "2024-05-16T08:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T08:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148100", + "Timestamp": "2024-05-16T08:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048100", + "Timestamp": "2024-05-16T08:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.359800", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.354800", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.229800", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100600", + "Timestamp": "2024-05-16T08:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096900", + "Timestamp": "2024-05-16T08:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040600", + "Timestamp": "2024-05-16T08:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.643600", + "Timestamp": "2024-05-16T08:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.638600", + "Timestamp": "2024-05-16T08:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.513600", + "Timestamp": "2024-05-16T08:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.558600", + "Timestamp": "2024-05-16T08:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.553600", + "Timestamp": "2024-05-16T08:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.428600", + "Timestamp": "2024-05-16T08:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.532300", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.527300", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.402300", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110400", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.464000", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.434000", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.334000", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.678600", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.673600", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.548600", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.610400", + "Timestamp": "2024-05-16T08:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.568200", + "Timestamp": "2024-05-16T08:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.563200", + "Timestamp": "2024-05-16T08:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.438200", + "Timestamp": "2024-05-16T08:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.251600", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.291600", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.191600", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.366500", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.361500", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.236500", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169900", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165900", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155700", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152000", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095700", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101900", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098200", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041900", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.293800", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.288800", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.163800", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.651400", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.646400", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.521400", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138900", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135200", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078900", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.409100", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.404100", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.279100", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.327600", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.322600", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.197600", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.957500", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.952500", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.827500", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210900", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.496000", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.491000", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.366000", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.598500", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.593500", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.468500", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.201200", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.241200", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141200", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.694400", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.689400", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.564400", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.491100", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.309000", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.486100", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.304000", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.361100", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.179000", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.250100", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.245100", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.120100", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147800", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144100", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087800", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.251000", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.246000", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.121000", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.874500", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.869500", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.744500", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046600", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.967700", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.962700", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.837700", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.464800", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.459800", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.334800", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052400", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.275500", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.270500", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.145500", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.364500", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.359500", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.234500", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.375200", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.769600", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.764600", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.639600", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.129600", + "Timestamp": "2024-05-16T08:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.124600", + "Timestamp": "2024-05-16T08:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.999600", + "Timestamp": "2024-05-16T08:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103400", + "Timestamp": "2024-05-16T08:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099700", + "Timestamp": "2024-05-16T08:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043400", + "Timestamp": "2024-05-16T08:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115800", + "Timestamp": "2024-05-16T08:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T08:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055800", + "Timestamp": "2024-05-16T08:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.693500", + "Timestamp": "2024-05-16T08:01:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.663500", + "Timestamp": "2024-05-16T08:01:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.563500", + "Timestamp": "2024-05-16T08:01:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T08:01:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144800", + "Timestamp": "2024-05-16T08:01:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044800", + "Timestamp": "2024-05-16T08:01:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.868800", + "Timestamp": "2024-05-16T07:51:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.868800", + "Timestamp": "2024-05-16T07:51:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.879200", + "Timestamp": "2024-05-16T07:48:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.363300", + "Timestamp": "2024-05-16T07:47:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.358300", + "Timestamp": "2024-05-16T07:47:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.233300", + "Timestamp": "2024-05-16T07:47:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.285600", + "Timestamp": "2024-05-16T07:47:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.280600", + "Timestamp": "2024-05-16T07:47:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.155600", + "Timestamp": "2024-05-16T07:47:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147500", + "Timestamp": "2024-05-16T07:47:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143800", + "Timestamp": "2024-05-16T07:47:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087500", + "Timestamp": "2024-05-16T07:47:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.390500", + "Timestamp": "2024-05-16T07:47:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.385500", + "Timestamp": "2024-05-16T07:47:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.260500", + "Timestamp": "2024-05-16T07:47:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.769600", + "Timestamp": "2024-05-16T07:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.739600", + "Timestamp": "2024-05-16T07:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.639600", + "Timestamp": "2024-05-16T07:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.891300", + "Timestamp": "2024-05-16T07:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.886300", + "Timestamp": "2024-05-16T07:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.761300", + "Timestamp": "2024-05-16T07:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.355000", + "Timestamp": "2024-05-16T07:47:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.350000", + "Timestamp": "2024-05-16T07:47:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.225000", + "Timestamp": "2024-05-16T07:47:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.016900", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.011900", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.886900", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.504700", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.499700", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.374700", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.395300", + "Timestamp": "2024-05-16T07:47:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.435300", + "Timestamp": "2024-05-16T07:47:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.335300", + "Timestamp": "2024-05-16T07:47:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.473200", + "Timestamp": "2024-05-16T07:47:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.129100", + "Timestamp": "2024-05-16T07:47:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.124100", + "Timestamp": "2024-05-16T07:47:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.999100", + "Timestamp": "2024-05-16T07:47:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.050600", + "Timestamp": "2024-05-16T07:47:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.045600", + "Timestamp": "2024-05-16T07:47:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.920600", + "Timestamp": "2024-05-16T07:47:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.013700", + "Timestamp": "2024-05-16T07:47:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.983700", + "Timestamp": "2024-05-16T07:47:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.883700", + "Timestamp": "2024-05-16T07:47:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437500", + "Timestamp": "2024-05-16T07:47:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.549900", + "Timestamp": "2024-05-16T07:47:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.544900", + "Timestamp": "2024-05-16T07:47:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.419900", + "Timestamp": "2024-05-16T07:47:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.291400", + "Timestamp": "2024-05-16T07:47:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.323700", + "Timestamp": "2024-05-16T07:47:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.642700", + "Timestamp": "2024-05-16T07:47:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.637700", + "Timestamp": "2024-05-16T07:47:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.512700", + "Timestamp": "2024-05-16T07:47:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.204200", + "Timestamp": "2024-05-16T07:47:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.496300", + "Timestamp": "2024-05-16T07:47:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.491300", + "Timestamp": "2024-05-16T07:47:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.366300", + "Timestamp": "2024-05-16T07:47:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.864500", + "Timestamp": "2024-05-16T07:46:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.629200", + "Timestamp": "2024-05-16T07:46:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.624200", + "Timestamp": "2024-05-16T07:46:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.499200", + "Timestamp": "2024-05-16T07:46:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.935900", + "Timestamp": "2024-05-16T07:46:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.930900", + "Timestamp": "2024-05-16T07:46:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.805900", + "Timestamp": "2024-05-16T07:46:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m1.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T07:46:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m1.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.061800", + "Timestamp": "2024-05-16T07:46:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m1.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031800", + "Timestamp": "2024-05-16T07:46:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.836000", + "Timestamp": "2024-05-16T07:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.914600", + "Timestamp": "2024-05-16T07:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.326800", + "Timestamp": "2024-05-16T07:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296800", + "Timestamp": "2024-05-16T07:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196800", + "Timestamp": "2024-05-16T07:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.226200", + "Timestamp": "2024-05-16T07:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301000", + "Timestamp": "2024-05-16T07:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.297000", + "Timestamp": "2024-05-16T07:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.241000", + "Timestamp": "2024-05-16T07:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.777700", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.772700", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.647700", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.142000", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.137000", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.012000", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418000", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.528200", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.523200", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.398200", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.060800", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.055800", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.930800", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.500600", + "Timestamp": "2024-05-16T07:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.495600", + "Timestamp": "2024-05-16T07:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.370600", + "Timestamp": "2024-05-16T07:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.747800", + "Timestamp": "2024-05-16T07:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.772500", + "Timestamp": "2024-05-16T07:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.767500", + "Timestamp": "2024-05-16T07:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.642500", + "Timestamp": "2024-05-16T07:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.318200", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.749800", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.288200", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.719800", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.188200", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.619800", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111300", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051300", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.676300", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.671300", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.546300", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.931400", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.926400", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.801400", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.423300", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.418300", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.293300", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.736400", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.731400", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.606400", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.493400", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.488400", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.363400", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143700", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140000", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083700", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.507800", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.502800", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.377800", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.043600", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.038600", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.913600", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.325100", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.320100", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195100", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.290000", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.285000", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.160000", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.824800", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.819800", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.694800", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.934600", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.929600", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.804600", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.479000", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.474000", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.349000", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.234800", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.229800", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.436200", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.431200", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.306200", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149800", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146100", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089800", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.236800", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.792900", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.787900", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.662900", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.816100", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.811100", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.686100", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148600", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048600", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.415100", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.373200", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.368200", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.243200", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.933100", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.928100", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.803100", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.405600", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.400600", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.275600", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104300", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100600", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044300", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.036800", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.031800", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.906800", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.168600", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.163600", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.038600", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.598000", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.568000", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.468000", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.538400", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.533400", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.408400", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152600", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148900", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.201800", + "Timestamp": "2024-05-16T07:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T07:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-16T07:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044600", + "Timestamp": "2024-05-16T07:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.622700", + "Timestamp": "2024-05-16T07:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.617700", + "Timestamp": "2024-05-16T07:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.492700", + "Timestamp": "2024-05-16T07:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.721300", + "Timestamp": "2024-05-16T07:46:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "9.819800", + "Timestamp": "2024-05-16T07:34:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213200", + "Timestamp": "2024-05-16T07:34:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206400", + "Timestamp": "2024-05-16T07:34:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.456000", + "Timestamp": "2024-05-16T07:34:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.220900", + "Timestamp": "2024-05-16T07:34:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.845400", + "Timestamp": "2024-05-16T07:34:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.692800", + "Timestamp": "2024-05-16T07:34:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.430800", + "Timestamp": "2024-05-16T07:33:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.425800", + "Timestamp": "2024-05-16T07:33:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.300800", + "Timestamp": "2024-05-16T07:33:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215800", + "Timestamp": "2024-05-16T07:33:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.864000", + "Timestamp": "2024-05-16T07:32:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.075300", + "Timestamp": "2024-05-16T07:32:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.916500", + "Timestamp": "2024-05-16T07:32:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.886500", + "Timestamp": "2024-05-16T07:32:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.786500", + "Timestamp": "2024-05-16T07:32:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069100", + "Timestamp": "2024-05-16T07:32:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065400", + "Timestamp": "2024-05-16T07:32:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009100", + "Timestamp": "2024-05-16T07:32:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.391900", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.386900", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.261900", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.339700", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334700", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.209700", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.026300", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.081100", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.021300", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.076100", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.896300", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.951100", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.635200", + "Timestamp": "2024-05-16T07:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330300", + "Timestamp": "2024-05-16T07:32:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325300", + "Timestamp": "2024-05-16T07:32:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200300", + "Timestamp": "2024-05-16T07:32:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.533100", + "Timestamp": "2024-05-16T07:32:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.528100", + "Timestamp": "2024-05-16T07:32:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.403100", + "Timestamp": "2024-05-16T07:32:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.331500", + "Timestamp": "2024-05-16T07:32:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.326500", + "Timestamp": "2024-05-16T07:32:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.201500", + "Timestamp": "2024-05-16T07:32:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.474000", + "Timestamp": "2024-05-16T07:32:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.469000", + "Timestamp": "2024-05-16T07:32:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.344000", + "Timestamp": "2024-05-16T07:32:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.544100", + "Timestamp": "2024-05-16T07:32:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.514100", + "Timestamp": "2024-05-16T07:32:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.414100", + "Timestamp": "2024-05-16T07:32:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.120600", + "Timestamp": "2024-05-16T07:32:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.115600", + "Timestamp": "2024-05-16T07:32:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.990600", + "Timestamp": "2024-05-16T07:32:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T07:32:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.181200", + "Timestamp": "2024-05-16T07:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177200", + "Timestamp": "2024-05-16T07:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121200", + "Timestamp": "2024-05-16T07:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.201600", + "Timestamp": "2024-05-16T07:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196600", + "Timestamp": "2024-05-16T07:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071600", + "Timestamp": "2024-05-16T07:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.535700", + "Timestamp": "2024-05-16T07:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.505700", + "Timestamp": "2024-05-16T07:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.405700", + "Timestamp": "2024-05-16T07:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138400", + "Timestamp": "2024-05-16T07:32:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134700", + "Timestamp": "2024-05-16T07:32:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078400", + "Timestamp": "2024-05-16T07:32:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.662100", + "Timestamp": "2024-05-16T07:32:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.632100", + "Timestamp": "2024-05-16T07:32:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.532100", + "Timestamp": "2024-05-16T07:32:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.391600", + "Timestamp": "2024-05-16T07:32:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.386600", + "Timestamp": "2024-05-16T07:32:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.261600", + "Timestamp": "2024-05-16T07:32:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.134800", + "Timestamp": "2024-05-16T07:32:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.129800", + "Timestamp": "2024-05-16T07:32:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.004800", + "Timestamp": "2024-05-16T07:32:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.566800", + "Timestamp": "2024-05-16T07:32:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.561800", + "Timestamp": "2024-05-16T07:32:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.436800", + "Timestamp": "2024-05-16T07:32:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.748700", + "Timestamp": "2024-05-16T07:32:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.743700", + "Timestamp": "2024-05-16T07:32:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.618700", + "Timestamp": "2024-05-16T07:32:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.490600", + "Timestamp": "2024-05-16T07:32:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.510900", + "Timestamp": "2024-05-16T07:32:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.480900", + "Timestamp": "2024-05-16T07:32:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.380900", + "Timestamp": "2024-05-16T07:32:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.867400", + "Timestamp": "2024-05-16T07:32:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.862400", + "Timestamp": "2024-05-16T07:32:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.737400", + "Timestamp": "2024-05-16T07:32:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.259000", + "Timestamp": "2024-05-16T07:32:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.254000", + "Timestamp": "2024-05-16T07:32:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.129000", + "Timestamp": "2024-05-16T07:32:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069100", + "Timestamp": "2024-05-16T07:32:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040100", + "Timestamp": "2024-05-16T07:32:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009100", + "Timestamp": "2024-05-16T07:32:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.187800", + "Timestamp": "2024-05-16T07:32:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.182800", + "Timestamp": "2024-05-16T07:32:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.057800", + "Timestamp": "2024-05-16T07:32:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114700", + "Timestamp": "2024-05-16T07:32:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T07:32:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054700", + "Timestamp": "2024-05-16T07:32:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T07:32:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.138600", + "Timestamp": "2024-05-16T07:32:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.133600", + "Timestamp": "2024-05-16T07:32:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.008600", + "Timestamp": "2024-05-16T07:32:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.253600", + "Timestamp": "2024-05-16T07:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.248600", + "Timestamp": "2024-05-16T07:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.123600", + "Timestamp": "2024-05-16T07:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.409200", + "Timestamp": "2024-05-16T07:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.009300", + "Timestamp": "2024-05-16T07:32:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.004300", + "Timestamp": "2024-05-16T07:32:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.879300", + "Timestamp": "2024-05-16T07:32:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.595300", + "Timestamp": "2024-05-16T07:32:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.590300", + "Timestamp": "2024-05-16T07:32:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.465300", + "Timestamp": "2024-05-16T07:32:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.057300", + "Timestamp": "2024-05-16T07:32:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.191100", + "Timestamp": "2024-05-16T07:32:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.187100", + "Timestamp": "2024-05-16T07:32:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131100", + "Timestamp": "2024-05-16T07:32:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.953900", + "Timestamp": "2024-05-16T07:32:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.948900", + "Timestamp": "2024-05-16T07:32:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.823900", + "Timestamp": "2024-05-16T07:32:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.640600", + "Timestamp": "2024-05-16T07:31:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.148900", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.833100", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.828100", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.703100", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.677700", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.672700", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.547700", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100700", + "Timestamp": "2024-05-16T07:31:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097000", + "Timestamp": "2024-05-16T07:31:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040700", + "Timestamp": "2024-05-16T07:31:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.880000", + "Timestamp": "2024-05-16T07:31:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.747500", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.072200", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.067200", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.942200", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.340300", + "Timestamp": "2024-05-16T07:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.335300", + "Timestamp": "2024-05-16T07:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.210300", + "Timestamp": "2024-05-16T07:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.383200", + "Timestamp": "2024-05-16T07:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.378200", + "Timestamp": "2024-05-16T07:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.253200", + "Timestamp": "2024-05-16T07:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.677000", + "Timestamp": "2024-05-16T07:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170700", + "Timestamp": "2024-05-16T07:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167000", + "Timestamp": "2024-05-16T07:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T07:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.393700", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.388700", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.263700", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.216600", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.211600", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.086600", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.287500", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.282500", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.157500", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068900", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038900", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008900", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.440500", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.435500", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.310500", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.093500", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.088500", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.963500", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.978000", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.023200", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.973000", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.018200", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.848000", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.893200", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.160600", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.130600", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.030600", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.028700", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.937300", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.932300", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.807300", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.499400", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.591900", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140100", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136400", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080100", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.429200", + "Timestamp": "2024-05-16T07:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.229200", + "Timestamp": "2024-05-16T07:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.225500", + "Timestamp": "2024-05-16T07:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169200", + "Timestamp": "2024-05-16T07:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.275700", + "Timestamp": "2024-05-16T07:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270700", + "Timestamp": "2024-05-16T07:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145700", + "Timestamp": "2024-05-16T07:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225100", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.364800", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.359800", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.234800", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.028000", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.023000", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.898000", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.126500", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.121500", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.996500", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.950900", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.945900", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.820900", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.419200", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.819100", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.814100", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.689100", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.835000", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.830000", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.705000", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.348500", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343500", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.218500", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156900", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152900", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096900", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163400", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159700", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103400", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.287800", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.257800", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.157800", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099800", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096100", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039800", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.517600", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.839700", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.044400", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.854200", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.527600", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.522600", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.397600", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.390400", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.360400", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.260400", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119000", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115300", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059000", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.433300", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.428300", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.303300", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.368900", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.363900", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.238900", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.096800", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130700", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127000", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070700", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.488900", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.483900", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.358900", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101100", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044800", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.414100", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.086700", + "Timestamp": "2024-05-16T07:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145800", + "Timestamp": "2024-05-16T07:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185800", + "Timestamp": "2024-05-16T07:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085800", + "Timestamp": "2024-05-16T07:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.031500", + "Timestamp": "2024-05-16T07:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.026500", + "Timestamp": "2024-05-16T07:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.901500", + "Timestamp": "2024-05-16T07:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.179900", + "Timestamp": "2024-05-16T07:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.176200", + "Timestamp": "2024-05-16T07:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119900", + "Timestamp": "2024-05-16T07:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.072800", + "Timestamp": "2024-05-16T07:27:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.931600", + "Timestamp": "2024-05-16T07:23:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.926600", + "Timestamp": "2024-05-16T07:23:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.801600", + "Timestamp": "2024-05-16T07:23:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.771200", + "Timestamp": "2024-05-16T07:21:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.771200", + "Timestamp": "2024-05-16T07:21:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.771200", + "Timestamp": "2024-05-16T07:21:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.854400", + "Timestamp": "2024-05-16T07:19:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.644800", + "Timestamp": "2024-05-16T07:19:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.415000", + "Timestamp": "2024-05-16T07:18:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.714600", + "Timestamp": "2024-05-16T07:18:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.430800", + "Timestamp": "2024-05-16T07:18:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.425800", + "Timestamp": "2024-05-16T07:18:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.300800", + "Timestamp": "2024-05-16T07:18:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.397500", + "Timestamp": "2024-05-16T07:17:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063100", + "Timestamp": "2024-05-16T07:17:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003100", + "Timestamp": "2024-05-16T07:17:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003100", + "Timestamp": "2024-05-16T07:17:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.754100", + "Timestamp": "2024-05-16T07:17:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.749100", + "Timestamp": "2024-05-16T07:17:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.624100", + "Timestamp": "2024-05-16T07:17:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.203600", + "Timestamp": "2024-05-16T07:17:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110400", + "Timestamp": "2024-05-16T07:17:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106700", + "Timestamp": "2024-05-16T07:17:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050400", + "Timestamp": "2024-05-16T07:17:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137500", + "Timestamp": "2024-05-16T07:17:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177500", + "Timestamp": "2024-05-16T07:17:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077500", + "Timestamp": "2024-05-16T07:17:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163100", + "Timestamp": "2024-05-16T07:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159400", + "Timestamp": "2024-05-16T07:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103100", + "Timestamp": "2024-05-16T07:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.186700", + "Timestamp": "2024-05-16T07:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.181700", + "Timestamp": "2024-05-16T07:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.056700", + "Timestamp": "2024-05-16T07:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.273300", + "Timestamp": "2024-05-16T07:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.133700", + "Timestamp": "2024-05-16T07:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.128700", + "Timestamp": "2024-05-16T07:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.003700", + "Timestamp": "2024-05-16T07:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432000", + "Timestamp": "2024-05-16T07:17:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.483700", + "Timestamp": "2024-05-16T07:17:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.478700", + "Timestamp": "2024-05-16T07:17:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.353700", + "Timestamp": "2024-05-16T07:17:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.687700", + "Timestamp": "2024-05-16T07:17:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.657700", + "Timestamp": "2024-05-16T07:17:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.557700", + "Timestamp": "2024-05-16T07:17:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.275800", + "Timestamp": "2024-05-16T07:17:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270800", + "Timestamp": "2024-05-16T07:17:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145800", + "Timestamp": "2024-05-16T07:17:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-16T07:17:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088900", + "Timestamp": "2024-05-16T07:17:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032600", + "Timestamp": "2024-05-16T07:17:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.707800", + "Timestamp": "2024-05-16T07:17:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.355800", + "Timestamp": "2024-05-16T07:17:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.350800", + "Timestamp": "2024-05-16T07:17:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.225800", + "Timestamp": "2024-05-16T07:17:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.715200", + "Timestamp": "2024-05-16T07:17:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161000", + "Timestamp": "2024-05-16T07:17:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157300", + "Timestamp": "2024-05-16T07:17:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101000", + "Timestamp": "2024-05-16T07:17:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.513200", + "Timestamp": "2024-05-16T07:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.508200", + "Timestamp": "2024-05-16T07:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.383200", + "Timestamp": "2024-05-16T07:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.470700", + "Timestamp": "2024-05-16T07:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.465700", + "Timestamp": "2024-05-16T07:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.340700", + "Timestamp": "2024-05-16T07:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127800", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124100", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067800", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.601900", + "Timestamp": "2024-05-16T07:17:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.596900", + "Timestamp": "2024-05-16T07:17:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.471900", + "Timestamp": "2024-05-16T07:17:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.027900", + "Timestamp": "2024-05-16T07:17:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.022900", + "Timestamp": "2024-05-16T07:17:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.897900", + "Timestamp": "2024-05-16T07:17:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.052300", + "Timestamp": "2024-05-16T07:17:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.047300", + "Timestamp": "2024-05-16T07:17:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.922300", + "Timestamp": "2024-05-16T07:17:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.629800", + "Timestamp": "2024-05-16T07:16:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.155900", + "Timestamp": "2024-05-16T07:16:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.125900", + "Timestamp": "2024-05-16T07:16:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.025900", + "Timestamp": "2024-05-16T07:16:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.742500", + "Timestamp": "2024-05-16T07:16:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.712500", + "Timestamp": "2024-05-16T07:16:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.612500", + "Timestamp": "2024-05-16T07:16:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.592200", + "Timestamp": "2024-05-16T07:16:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.587200", + "Timestamp": "2024-05-16T07:16:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.462200", + "Timestamp": "2024-05-16T07:16:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.857200", + "Timestamp": "2024-05-16T07:16:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.852200", + "Timestamp": "2024-05-16T07:16:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.727200", + "Timestamp": "2024-05-16T07:16:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.664100", + "Timestamp": "2024-05-16T07:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.836000", + "Timestamp": "2024-05-16T07:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.081000", + "Timestamp": "2024-05-16T07:16:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.076000", + "Timestamp": "2024-05-16T07:16:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.951000", + "Timestamp": "2024-05-16T07:16:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.163500", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.158500", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.033500", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.808300", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.708200", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.803300", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.703200", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.678300", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.578200", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.436900", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.431900", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.306900", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.244800", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.239800", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.114800", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.300200", + "Timestamp": "2024-05-16T07:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073300", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069600", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013300", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.433200", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.432300", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.428200", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.427300", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.303200", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.302300", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.073500", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.113500", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.013500", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.198600", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.193600", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.068600", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071900", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068200", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011900", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417600", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.983500", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.978500", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.853500", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226700", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.746000", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.741000", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.616000", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.926800", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.921800", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.796800", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162400", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173200", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158400", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169200", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102400", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113200", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.772600", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.767600", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.642600", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116500", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112500", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056500", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.482000", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.635000", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.477000", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.630000", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.352000", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.505000", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.853400", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.848400", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.723400", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.618300", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.588300", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.488300", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208400", + "Timestamp": "2024-05-16T07:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.251300", + "Timestamp": "2024-05-16T07:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.246300", + "Timestamp": "2024-05-16T07:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.121300", + "Timestamp": "2024-05-16T07:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.182000", + "Timestamp": "2024-05-16T07:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.178000", + "Timestamp": "2024-05-16T07:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122000", + "Timestamp": "2024-05-16T07:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.763500", + "Timestamp": "2024-05-16T07:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.596900", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.566900", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.466900", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147600", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.187600", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087600", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.310100", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.305100", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180100", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297200", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.292200", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167200", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.182900", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.178900", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122900", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.075100", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.070100", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.945100", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.863400", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.648200", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.643200", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.518200", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.335300", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.330300", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.205300", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.886400", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "13.801300", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "p2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "13.771300", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "13.671300", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149900", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049900", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.335700", + "Timestamp": "2024-05-16T07:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.305700", + "Timestamp": "2024-05-16T07:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.205700", + "Timestamp": "2024-05-16T07:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153400", + "Timestamp": "2024-05-16T07:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149700", + "Timestamp": "2024-05-16T07:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093400", + "Timestamp": "2024-05-16T07:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158900", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154900", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098900", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131600", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127900", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071600", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142600", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042600", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.558100", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.553100", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.428100", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T07:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092300", + "Timestamp": "2024-05-16T07:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036000", + "Timestamp": "2024-05-16T07:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.579500", + "Timestamp": "2024-05-16T07:16:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.574500", + "Timestamp": "2024-05-16T07:16:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.449500", + "Timestamp": "2024-05-16T07:16:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.562500", + "Timestamp": "2024-05-16T07:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.557500", + "Timestamp": "2024-05-16T07:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.432500", + "Timestamp": "2024-05-16T07:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.450800", + "Timestamp": "2024-05-16T07:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216000", + "Timestamp": "2024-05-16T07:03:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211200", + "Timestamp": "2024-05-16T07:03:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.189400", + "Timestamp": "2024-05-16T07:03:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.496000", + "Timestamp": "2024-05-16T07:02:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T07:02:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.842300", + "Timestamp": "2024-05-16T07:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.837300", + "Timestamp": "2024-05-16T07:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.712300", + "Timestamp": "2024-05-16T07:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.902600", + "Timestamp": "2024-05-16T07:02:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.858400", + "Timestamp": "2024-05-16T07:02:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.991900", + "Timestamp": "2024-05-16T07:02:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.986900", + "Timestamp": "2024-05-16T07:02:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.861900", + "Timestamp": "2024-05-16T07:02:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.975100", + "Timestamp": "2024-05-16T07:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.970100", + "Timestamp": "2024-05-16T07:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.845100", + "Timestamp": "2024-05-16T07:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.505400", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.376700", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.371700", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.246700", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.108800", + "Timestamp": "2024-05-16T07:02:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.103800", + "Timestamp": "2024-05-16T07:02:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.978800", + "Timestamp": "2024-05-16T07:02:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.677500", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.672500", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.547500", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172600", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168900", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.001000", + "Timestamp": "2024-05-16T07:02:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.996000", + "Timestamp": "2024-05-16T07:02:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.871000", + "Timestamp": "2024-05-16T07:02:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074900", + "Timestamp": "2024-05-16T07:02:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.045900", + "Timestamp": "2024-05-16T07:02:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014900", + "Timestamp": "2024-05-16T07:02:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.626500", + "Timestamp": "2024-05-16T07:02:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.621500", + "Timestamp": "2024-05-16T07:02:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.496500", + "Timestamp": "2024-05-16T07:02:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.946300", + "Timestamp": "2024-05-16T07:02:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.916300", + "Timestamp": "2024-05-16T07:02:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.816300", + "Timestamp": "2024-05-16T07:02:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122100", + "Timestamp": "2024-05-16T07:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118100", + "Timestamp": "2024-05-16T07:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062100", + "Timestamp": "2024-05-16T07:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.697600", + "Timestamp": "2024-05-16T07:02:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.734300", + "Timestamp": "2024-05-16T07:02:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.704300", + "Timestamp": "2024-05-16T07:02:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.604300", + "Timestamp": "2024-05-16T07:02:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.457200", + "Timestamp": "2024-05-16T07:02:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.753400", + "Timestamp": "2024-05-16T07:02:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.748400", + "Timestamp": "2024-05-16T07:02:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.623400", + "Timestamp": "2024-05-16T07:02:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.520500", + "Timestamp": "2024-05-16T07:02:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.990400", + "Timestamp": "2024-05-16T07:01:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.985400", + "Timestamp": "2024-05-16T07:01:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.860400", + "Timestamp": "2024-05-16T07:01:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.355600", + "Timestamp": "2024-05-16T07:01:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.350600", + "Timestamp": "2024-05-16T07:01:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.225600", + "Timestamp": "2024-05-16T07:01:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.537100", + "Timestamp": "2024-05-16T07:01:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.075800", + "Timestamp": "2024-05-16T07:01:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.070800", + "Timestamp": "2024-05-16T07:01:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.945800", + "Timestamp": "2024-05-16T07:01:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.753500", + "Timestamp": "2024-05-16T07:01:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.212700", + "Timestamp": "2024-05-16T07:01:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.208700", + "Timestamp": "2024-05-16T07:01:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.152700", + "Timestamp": "2024-05-16T07:01:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.048100", + "Timestamp": "2024-05-16T07:01:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.018100", + "Timestamp": "2024-05-16T07:01:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.918100", + "Timestamp": "2024-05-16T07:01:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.379400", + "Timestamp": "2024-05-16T07:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.374400", + "Timestamp": "2024-05-16T07:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.249400", + "Timestamp": "2024-05-16T07:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.919800", + "Timestamp": "2024-05-16T07:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.574600", + "Timestamp": "2024-05-16T07:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.238100", + "Timestamp": "2024-05-16T07:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.233100", + "Timestamp": "2024-05-16T07:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.108100", + "Timestamp": "2024-05-16T07:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.878400", + "Timestamp": "2024-05-16T07:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.656200", + "Timestamp": "2024-05-16T07:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.651200", + "Timestamp": "2024-05-16T07:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.526200", + "Timestamp": "2024-05-16T07:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g5g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.520200", + "Timestamp": "2024-05-16T07:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g5g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.515200", + "Timestamp": "2024-05-16T07:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g5g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.390200", + "Timestamp": "2024-05-16T07:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.558800", + "Timestamp": "2024-05-16T07:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.553800", + "Timestamp": "2024-05-16T07:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.428800", + "Timestamp": "2024-05-16T07:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.219500", + "Timestamp": "2024-05-16T07:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.214500", + "Timestamp": "2024-05-16T07:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.089500", + "Timestamp": "2024-05-16T07:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.540500", + "Timestamp": "2024-05-16T07:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.577500", + "Timestamp": "2024-05-16T07:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.572500", + "Timestamp": "2024-05-16T07:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.447500", + "Timestamp": "2024-05-16T07:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T07:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112900", + "Timestamp": "2024-05-16T07:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056600", + "Timestamp": "2024-05-16T07:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076900", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047900", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016900", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091500", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087800", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031500", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.191200", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.161200", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.061200", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.433000", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.428000", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.303000", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.300300", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.295300", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170300", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.386000", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.381000", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.256000", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.300800", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.295800", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170800", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.788800", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.783800", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.658800", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.049400", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.044400", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.919400", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156100", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152100", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096100", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.067600", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.037600", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.937600", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.247100", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.242100", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.117100", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.922500", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.892500", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.792500", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.066600", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.061600", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.936600", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124700", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164700", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064700", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097600", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093900", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037600", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.301800", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.271800", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.171800", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.313400", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.308400", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.183400", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.590200", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.479000", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.474000", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.349000", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.321000", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.291000", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.191000", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.434000", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.429000", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.304000", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097800", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094100", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037800", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.225800", + "Timestamp": "2024-05-16T07:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.221800", + "Timestamp": "2024-05-16T07:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165800", + "Timestamp": "2024-05-16T07:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "8.234700", + "Timestamp": "2024-05-16T07:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "8.204700", + "Timestamp": "2024-05-16T07:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "8.104700", + "Timestamp": "2024-05-16T07:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.369500", + "Timestamp": "2024-05-16T07:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.339500", + "Timestamp": "2024-05-16T07:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.239500", + "Timestamp": "2024-05-16T07:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.193700", + "Timestamp": "2024-05-16T07:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190000", + "Timestamp": "2024-05-16T07:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133700", + "Timestamp": "2024-05-16T07:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.308600", + "Timestamp": "2024-05-16T07:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.303600", + "Timestamp": "2024-05-16T07:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.178600", + "Timestamp": "2024-05-16T07:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.154700", + "Timestamp": "2024-05-16T07:01:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.149700", + "Timestamp": "2024-05-16T07:01:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.024700", + "Timestamp": "2024-05-16T07:01:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306400", + "Timestamp": "2024-05-16T07:01:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301400", + "Timestamp": "2024-05-16T07:01:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176400", + "Timestamp": "2024-05-16T07:01:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.182100", + "Timestamp": "2024-05-16T06:49:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.257600", + "Timestamp": "2024-05-16T06:48:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.832400", + "Timestamp": "2024-05-16T06:48:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224000", + "Timestamp": "2024-05-16T06:48:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416000", + "Timestamp": "2024-05-16T06:48:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.428800", + "Timestamp": "2024-05-16T06:47:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.397500", + "Timestamp": "2024-05-16T06:47:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.376000", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.568600", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.563600", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.438600", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.023700", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "16.773300", + "Timestamp": "2024-05-16T06:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.451700", + "Timestamp": "2024-05-16T06:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.421700", + "Timestamp": "2024-05-16T06:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.321700", + "Timestamp": "2024-05-16T06:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.536300", + "Timestamp": "2024-05-16T06:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.957200", + "Timestamp": "2024-05-16T06:47:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.612600", + "Timestamp": "2024-05-16T06:47:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.607600", + "Timestamp": "2024-05-16T06:47:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.482600", + "Timestamp": "2024-05-16T06:47:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.470500", + "Timestamp": "2024-05-16T06:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.539200", + "Timestamp": "2024-05-16T06:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.201700", + "Timestamp": "2024-05-16T06:47:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.197700", + "Timestamp": "2024-05-16T06:47:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141700", + "Timestamp": "2024-05-16T06:47:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.250700", + "Timestamp": "2024-05-16T06:47:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.245700", + "Timestamp": "2024-05-16T06:47:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.120700", + "Timestamp": "2024-05-16T06:47:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.423800", + "Timestamp": "2024-05-16T06:47:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.418800", + "Timestamp": "2024-05-16T06:47:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.293800", + "Timestamp": "2024-05-16T06:47:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.981200", + "Timestamp": "2024-05-16T06:47:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.951200", + "Timestamp": "2024-05-16T06:47:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.851200", + "Timestamp": "2024-05-16T06:47:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066900", + "Timestamp": "2024-05-16T06:47:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037900", + "Timestamp": "2024-05-16T06:47:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006900", + "Timestamp": "2024-05-16T06:47:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.025700", + "Timestamp": "2024-05-16T06:47:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.995700", + "Timestamp": "2024-05-16T06:47:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.895700", + "Timestamp": "2024-05-16T06:47:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.768100", + "Timestamp": "2024-05-16T06:47:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.595500", + "Timestamp": "2024-05-16T06:46:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.590500", + "Timestamp": "2024-05-16T06:46:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.465500", + "Timestamp": "2024-05-16T06:46:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.136700", + "Timestamp": "2024-05-16T06:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.361300", + "Timestamp": "2024-05-16T06:46:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.356300", + "Timestamp": "2024-05-16T06:46:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.231300", + "Timestamp": "2024-05-16T06:46:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210900", + "Timestamp": "2024-05-16T06:46:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.454900", + "Timestamp": "2024-05-16T06:46:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.449900", + "Timestamp": "2024-05-16T06:46:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.324900", + "Timestamp": "2024-05-16T06:46:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158300", + "Timestamp": "2024-05-16T06:46:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154600", + "Timestamp": "2024-05-16T06:46:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098300", + "Timestamp": "2024-05-16T06:46:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.225600", + "Timestamp": "2024-05-16T06:46:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.198000", + "Timestamp": "2024-05-16T06:46:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.194000", + "Timestamp": "2024-05-16T06:46:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.138000", + "Timestamp": "2024-05-16T06:46:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.663500", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.658500", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.533500", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.205100", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.201100", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145100", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.293200", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.288200", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.163200", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148000", + "Timestamp": "2024-05-16T06:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144300", + "Timestamp": "2024-05-16T06:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088000", + "Timestamp": "2024-05-16T06:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-16T06:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095100", + "Timestamp": "2024-05-16T06:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038800", + "Timestamp": "2024-05-16T06:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.388700", + "Timestamp": "2024-05-16T06:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.218600", + "Timestamp": "2024-05-16T06:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.214900", + "Timestamp": "2024-05-16T06:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158600", + "Timestamp": "2024-05-16T06:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.802800", + "Timestamp": "2024-05-16T06:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.797800", + "Timestamp": "2024-05-16T06:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.672800", + "Timestamp": "2024-05-16T06:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.202800", + "Timestamp": "2024-05-16T06:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.199100", + "Timestamp": "2024-05-16T06:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142800", + "Timestamp": "2024-05-16T06:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.571700", + "Timestamp": "2024-05-16T06:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.566700", + "Timestamp": "2024-05-16T06:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.441700", + "Timestamp": "2024-05-16T06:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.472000", + "Timestamp": "2024-05-16T06:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.442000", + "Timestamp": "2024-05-16T06:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.342000", + "Timestamp": "2024-05-16T06:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.242800", + "Timestamp": "2024-05-16T06:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.237800", + "Timestamp": "2024-05-16T06:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.112800", + "Timestamp": "2024-05-16T06:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.491000", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.461000", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.361000", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.486200", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.481200", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.356200", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111900", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051900", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.459700", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224800", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159800", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156100", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099800", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.381400", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.376400", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.251400", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.593300", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.867500", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.862500", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.737500", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.591300", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.586300", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.461300", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.259900", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.299900", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199900", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.400300", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.395300", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.270300", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.497700", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.492700", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.367700", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125800", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121800", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065800", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139900", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136200", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079900", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088800", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085100", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028800", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.221500", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.216500", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.091500", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047500", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330300", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325300", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200300", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.819300", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.814300", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.689300", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137200", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133500", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077200", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046500", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093800", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090100", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033800", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.373800", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.368800", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.243800", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132400", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128700", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072400", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.125500", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.095500", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.995500", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152600", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148600", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.322800", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.317800", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.192800", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.659600", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.654600", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.529600", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.366400", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.336400", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.236400", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.875200", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.941200", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.936200", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.811200", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.809900", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.804900", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.679900", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306300", + "Timestamp": "2024-05-16T06:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302300", + "Timestamp": "2024-05-16T06:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.246300", + "Timestamp": "2024-05-16T06:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.126600", + "Timestamp": "2024-05-16T06:35:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.126600", + "Timestamp": "2024-05-16T06:34:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.715200", + "Timestamp": "2024-05-16T06:32:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T06:32:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.621400", + "Timestamp": "2024-05-16T06:32:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.591400", + "Timestamp": "2024-05-16T06:32:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.491400", + "Timestamp": "2024-05-16T06:32:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.836900", + "Timestamp": "2024-05-16T06:32:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.831900", + "Timestamp": "2024-05-16T06:32:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.706900", + "Timestamp": "2024-05-16T06:32:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.249900", + "Timestamp": "2024-05-16T06:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.638700", + "Timestamp": "2024-05-16T06:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.633700", + "Timestamp": "2024-05-16T06:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.508700", + "Timestamp": "2024-05-16T06:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.412000", + "Timestamp": "2024-05-16T06:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.368400", + "Timestamp": "2024-05-16T06:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.407000", + "Timestamp": "2024-05-16T06:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.363400", + "Timestamp": "2024-05-16T06:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.282000", + "Timestamp": "2024-05-16T06:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.238400", + "Timestamp": "2024-05-16T06:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125200", + "Timestamp": "2024-05-16T06:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121500", + "Timestamp": "2024-05-16T06:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065200", + "Timestamp": "2024-05-16T06:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.633000", + "Timestamp": "2024-05-16T06:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.628000", + "Timestamp": "2024-05-16T06:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.503000", + "Timestamp": "2024-05-16T06:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.383100", + "Timestamp": "2024-05-16T06:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.892800", + "Timestamp": "2024-05-16T06:32:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.596400", + "Timestamp": "2024-05-16T06:32:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.887800", + "Timestamp": "2024-05-16T06:32:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.591400", + "Timestamp": "2024-05-16T06:32:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.762800", + "Timestamp": "2024-05-16T06:32:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.466400", + "Timestamp": "2024-05-16T06:32:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.181700", + "Timestamp": "2024-05-16T06:32:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.176700", + "Timestamp": "2024-05-16T06:32:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.051700", + "Timestamp": "2024-05-16T06:32:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.832000", + "Timestamp": "2024-05-16T06:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.387600", + "Timestamp": "2024-05-16T06:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.382600", + "Timestamp": "2024-05-16T06:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.257600", + "Timestamp": "2024-05-16T06:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.408700", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.403700", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.278700", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.254500", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.249500", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.124500", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.159100", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.152100", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.605100", + "Timestamp": "2024-05-16T06:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.600100", + "Timestamp": "2024-05-16T06:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.475100", + "Timestamp": "2024-05-16T06:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.211600", + "Timestamp": "2024-05-16T06:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.206600", + "Timestamp": "2024-05-16T06:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.081600", + "Timestamp": "2024-05-16T06:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223800", + "Timestamp": "2024-05-16T06:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.822700", + "Timestamp": "2024-05-16T06:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.576800", + "Timestamp": "2024-05-16T06:32:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.571800", + "Timestamp": "2024-05-16T06:32:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.446800", + "Timestamp": "2024-05-16T06:32:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.971900", + "Timestamp": "2024-05-16T06:32:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.941900", + "Timestamp": "2024-05-16T06:32:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.841900", + "Timestamp": "2024-05-16T06:32:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.515200", + "Timestamp": "2024-05-16T06:32:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.423900", + "Timestamp": "2024-05-16T06:32:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.418900", + "Timestamp": "2024-05-16T06:32:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.293900", + "Timestamp": "2024-05-16T06:32:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.522300", + "Timestamp": "2024-05-16T06:32:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.517300", + "Timestamp": "2024-05-16T06:32:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.392300", + "Timestamp": "2024-05-16T06:32:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147900", + "Timestamp": "2024-05-16T06:32:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144200", + "Timestamp": "2024-05-16T06:32:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087900", + "Timestamp": "2024-05-16T06:32:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.083600", + "Timestamp": "2024-05-16T06:32:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.078600", + "Timestamp": "2024-05-16T06:32:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.953600", + "Timestamp": "2024-05-16T06:32:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.209100", + "Timestamp": "2024-05-16T06:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.204100", + "Timestamp": "2024-05-16T06:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079100", + "Timestamp": "2024-05-16T06:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.417300", + "Timestamp": "2024-05-16T06:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.412300", + "Timestamp": "2024-05-16T06:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.287300", + "Timestamp": "2024-05-16T06:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.606200", + "Timestamp": "2024-05-16T06:32:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.601200", + "Timestamp": "2024-05-16T06:32:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.476200", + "Timestamp": "2024-05-16T06:32:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.469500", + "Timestamp": "2024-05-16T06:32:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.464500", + "Timestamp": "2024-05-16T06:32:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.339500", + "Timestamp": "2024-05-16T06:32:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125500", + "Timestamp": "2024-05-16T06:31:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.363000", + "Timestamp": "2024-05-16T06:31:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.358000", + "Timestamp": "2024-05-16T06:31:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.233000", + "Timestamp": "2024-05-16T06:31:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.994400", + "Timestamp": "2024-05-16T06:31:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.964400", + "Timestamp": "2024-05-16T06:31:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.864400", + "Timestamp": "2024-05-16T06:31:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.151900", + "Timestamp": "2024-05-16T06:31:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.146900", + "Timestamp": "2024-05-16T06:31:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.021900", + "Timestamp": "2024-05-16T06:31:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.857700", + "Timestamp": "2024-05-16T06:31:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.853100", + "Timestamp": "2024-05-16T06:31:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.848100", + "Timestamp": "2024-05-16T06:31:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.723100", + "Timestamp": "2024-05-16T06:31:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.467200", + "Timestamp": "2024-05-16T06:31:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.504800", + "Timestamp": "2024-05-16T06:31:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.737500", + "Timestamp": "2024-05-16T06:31:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.732500", + "Timestamp": "2024-05-16T06:31:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.607500", + "Timestamp": "2024-05-16T06:31:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.891600", + "Timestamp": "2024-05-16T06:31:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.430400", + "Timestamp": "2024-05-16T06:31:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.178000", + "Timestamp": "2024-05-16T06:31:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.148000", + "Timestamp": "2024-05-16T06:31:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.048000", + "Timestamp": "2024-05-16T06:31:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.550900", + "Timestamp": "2024-05-16T06:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.545900", + "Timestamp": "2024-05-16T06:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.420900", + "Timestamp": "2024-05-16T06:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.275400", + "Timestamp": "2024-05-16T06:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.414100", + "Timestamp": "2024-05-16T06:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.409100", + "Timestamp": "2024-05-16T06:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.284100", + "Timestamp": "2024-05-16T06:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112900", + "Timestamp": "2024-05-16T06:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.366800", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101900", + "Timestamp": "2024-05-16T06:31:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T06:31:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097900", + "Timestamp": "2024-05-16T06:31:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096800", + "Timestamp": "2024-05-16T06:31:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041900", + "Timestamp": "2024-05-16T06:31:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040800", + "Timestamp": "2024-05-16T06:31:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.802700", + "Timestamp": "2024-05-16T06:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.257800", + "Timestamp": "2024-05-16T06:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.284300", + "Timestamp": "2024-05-16T06:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218600", + "Timestamp": "2024-05-16T06:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.459500", + "Timestamp": "2024-05-16T06:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.501100", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.516100", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.448800", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.443800", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.318800", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.841700", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.836700", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.711700", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.323700", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.293700", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.193700", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.753500", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.748500", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.623500", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.595800", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.565800", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.465800", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.232700", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.229000", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172700", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.465100", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.435100", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.335100", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.360800", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.355800", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.230800", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077700", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074000", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017700", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.031900", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074300", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070600", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014300", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.688300", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.683300", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.558300", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418700", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172500", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168800", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112500", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.241000", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.236000", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.451300", + "Timestamp": "2024-05-16T06:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.411700", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050800", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.490600", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.485600", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.360600", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.875800", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.437000", + "Timestamp": "2024-05-16T06:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.432000", + "Timestamp": "2024-05-16T06:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.307000", + "Timestamp": "2024-05-16T06:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.443800", + "Timestamp": "2024-05-16T06:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.167300", + "Timestamp": "2024-05-16T06:31:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.162300", + "Timestamp": "2024-05-16T06:31:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.037300", + "Timestamp": "2024-05-16T06:31:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T06:25:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T06:25:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218800", + "Timestamp": "2024-05-16T06:20:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.682800", + "Timestamp": "2024-05-16T06:18:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.677800", + "Timestamp": "2024-05-16T06:18:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.552800", + "Timestamp": "2024-05-16T06:18:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.613600", + "Timestamp": "2024-05-16T06:18:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.583600", + "Timestamp": "2024-05-16T06:18:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.483600", + "Timestamp": "2024-05-16T06:18:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m1.large", + "ProductDescription": "Windows", + "SpotPrice": "0.204900", + "Timestamp": "2024-05-16T06:18:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.138500", + "Timestamp": "2024-05-16T06:17:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.619100", + "Timestamp": "2024-05-16T06:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.614100", + "Timestamp": "2024-05-16T06:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.489100", + "Timestamp": "2024-05-16T06:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.232700", + "Timestamp": "2024-05-16T06:17:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.229000", + "Timestamp": "2024-05-16T06:17:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172700", + "Timestamp": "2024-05-16T06:17:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.781400", + "Timestamp": "2024-05-16T06:17:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.776400", + "Timestamp": "2024-05-16T06:17:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.651400", + "Timestamp": "2024-05-16T06:17:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.498900", + "Timestamp": "2024-05-16T06:17:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208500", + "Timestamp": "2024-05-16T06:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.414300", + "Timestamp": "2024-05-16T06:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.541800", + "Timestamp": "2024-05-16T06:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-16T06:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040100", + "Timestamp": "2024-05-16T06:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008800", + "Timestamp": "2024-05-16T06:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.186600", + "Timestamp": "2024-05-16T06:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.182600", + "Timestamp": "2024-05-16T06:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126600", + "Timestamp": "2024-05-16T06:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.357700", + "Timestamp": "2024-05-16T06:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.186800", + "Timestamp": "2024-05-16T06:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183100", + "Timestamp": "2024-05-16T06:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126800", + "Timestamp": "2024-05-16T06:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.379100", + "Timestamp": "2024-05-16T06:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.156000", + "Timestamp": "2024-05-16T06:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.151000", + "Timestamp": "2024-05-16T06:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.026000", + "Timestamp": "2024-05-16T06:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.995100", + "Timestamp": "2024-05-16T06:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.990100", + "Timestamp": "2024-05-16T06:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.865100", + "Timestamp": "2024-05-16T06:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.428600", + "Timestamp": "2024-05-16T06:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.689600", + "Timestamp": "2024-05-16T06:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.237300", + "Timestamp": "2024-05-16T06:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.232300", + "Timestamp": "2024-05-16T06:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.107300", + "Timestamp": "2024-05-16T06:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.318700", + "Timestamp": "2024-05-16T06:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.313700", + "Timestamp": "2024-05-16T06:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.188700", + "Timestamp": "2024-05-16T06:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155200", + "Timestamp": "2024-05-16T06:17:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151500", + "Timestamp": "2024-05-16T06:17:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095200", + "Timestamp": "2024-05-16T06:17:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.828500", + "Timestamp": "2024-05-16T06:17:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.009700", + "Timestamp": "2024-05-16T06:17:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.004700", + "Timestamp": "2024-05-16T06:17:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.879700", + "Timestamp": "2024-05-16T06:17:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.460800", + "Timestamp": "2024-05-16T06:17:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.430800", + "Timestamp": "2024-05-16T06:17:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.330800", + "Timestamp": "2024-05-16T06:17:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.043700", + "Timestamp": "2024-05-16T06:17:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.013700", + "Timestamp": "2024-05-16T06:17:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.913700", + "Timestamp": "2024-05-16T06:17:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T06:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.622000", + "Timestamp": "2024-05-16T06:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.617000", + "Timestamp": "2024-05-16T06:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.492000", + "Timestamp": "2024-05-16T06:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.956700", + "Timestamp": "2024-05-16T06:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.951700", + "Timestamp": "2024-05-16T06:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.826700", + "Timestamp": "2024-05-16T06:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.430400", + "Timestamp": "2024-05-16T06:17:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.241600", + "Timestamp": "2024-05-16T06:16:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.072500", + "Timestamp": "2024-05-16T06:16:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.067500", + "Timestamp": "2024-05-16T06:16:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.942500", + "Timestamp": "2024-05-16T06:16:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.441600", + "Timestamp": "2024-05-16T06:16:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.411600", + "Timestamp": "2024-05-16T06:16:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.311600", + "Timestamp": "2024-05-16T06:16:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.512500", + "Timestamp": "2024-05-16T06:16:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.889700", + "Timestamp": "2024-05-16T06:16:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.527500", + "Timestamp": "2024-05-16T06:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.193000", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.188000", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.063000", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.498000", + "Timestamp": "2024-05-16T06:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.493000", + "Timestamp": "2024-05-16T06:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.368000", + "Timestamp": "2024-05-16T06:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.755400", + "Timestamp": "2024-05-16T06:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.750400", + "Timestamp": "2024-05-16T06:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.625400", + "Timestamp": "2024-05-16T06:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.652100", + "Timestamp": "2024-05-16T06:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.647100", + "Timestamp": "2024-05-16T06:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.522100", + "Timestamp": "2024-05-16T06:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.547500", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.787200", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.078500", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.073500", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.948500", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.365700", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.360700", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235700", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.693700", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.663700", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.563700", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.561700", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.531700", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.431700", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207800", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.681200", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114700", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104100", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.239500", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.234500", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.695600", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417700", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.352500", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.347500", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.222500", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437800", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.098400", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.227200", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098600", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094600", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038600", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.579700", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.635900", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.386500", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.381500", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.256500", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163200", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159200", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103200", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.676600", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.544500", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.539500", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.414500", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.895700", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.890700", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.765700", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.198000", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.194000", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.138000", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.545100", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.540100", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.415100", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093400", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037100", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.751700", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.721700", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.621700", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.419000", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.710900", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.705900", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.580900", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.870900", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.865900", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.740900", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.718500", + "Timestamp": "2024-05-16T06:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.713500", + "Timestamp": "2024-05-16T06:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.588500", + "Timestamp": "2024-05-16T06:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.928700", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.898700", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.798700", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.296200", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.291200", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.166200", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.517500", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.512500", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.387500", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133200", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129500", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073200", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440500", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.429800", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.424800", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.299800", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154600", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150600", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094600", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298400", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293400", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168400", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123400", + "Timestamp": "2024-05-16T06:16:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119700", + "Timestamp": "2024-05-16T06:16:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063400", + "Timestamp": "2024-05-16T06:16:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-16T06:13:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209200", + "Timestamp": "2024-05-16T06:11:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T06:11:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T06:11:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T06:11:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.911100", + "Timestamp": "2024-05-16T06:10:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.911100", + "Timestamp": "2024-05-16T06:10:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.911100", + "Timestamp": "2024-05-16T06:10:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.201600", + "Timestamp": "2024-05-16T06:10:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.201600", + "Timestamp": "2024-05-16T06:10:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.934400", + "Timestamp": "2024-05-16T06:04:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.728000", + "Timestamp": "2024-05-16T06:04:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224000", + "Timestamp": "2024-05-16T06:04:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.446500", + "Timestamp": "2024-05-16T06:03:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.441500", + "Timestamp": "2024-05-16T06:03:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.316500", + "Timestamp": "2024-05-16T06:03:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.217600", + "Timestamp": "2024-05-16T06:03:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.424300", + "Timestamp": "2024-05-16T06:02:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.043600", + "Timestamp": "2024-05-16T06:02:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.038600", + "Timestamp": "2024-05-16T06:02:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.913600", + "Timestamp": "2024-05-16T06:02:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.633900", + "Timestamp": "2024-05-16T06:02:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.628900", + "Timestamp": "2024-05-16T06:02:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.503900", + "Timestamp": "2024-05-16T06:02:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.433800", + "Timestamp": "2024-05-16T06:02:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.428800", + "Timestamp": "2024-05-16T06:02:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.303800", + "Timestamp": "2024-05-16T06:02:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.658800", + "Timestamp": "2024-05-16T06:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.628800", + "Timestamp": "2024-05-16T06:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.528800", + "Timestamp": "2024-05-16T06:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.979300", + "Timestamp": "2024-05-16T06:02:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.974300", + "Timestamp": "2024-05-16T06:02:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.849300", + "Timestamp": "2024-05-16T06:02:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.319100", + "Timestamp": "2024-05-16T06:02:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.314100", + "Timestamp": "2024-05-16T06:02:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.189100", + "Timestamp": "2024-05-16T06:02:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.074400", + "Timestamp": "2024-05-16T06:02:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.069400", + "Timestamp": "2024-05-16T06:02:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.944400", + "Timestamp": "2024-05-16T06:02:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T06:02:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-16T06:02:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050600", + "Timestamp": "2024-05-16T06:02:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.986400", + "Timestamp": "2024-05-16T06:01:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.235900", + "Timestamp": "2024-05-16T06:01:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.210700", + "Timestamp": "2024-05-16T06:01:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.205700", + "Timestamp": "2024-05-16T06:01:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.080700", + "Timestamp": "2024-05-16T06:01:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.150100", + "Timestamp": "2024-05-16T06:01:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.145100", + "Timestamp": "2024-05-16T06:01:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.020100", + "Timestamp": "2024-05-16T06:01:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.795300", + "Timestamp": "2024-05-16T06:01:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.790300", + "Timestamp": "2024-05-16T06:01:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.665300", + "Timestamp": "2024-05-16T06:01:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.435500", + "Timestamp": "2024-05-16T06:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.430500", + "Timestamp": "2024-05-16T06:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.305500", + "Timestamp": "2024-05-16T06:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.602100", + "Timestamp": "2024-05-16T06:01:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.823300", + "Timestamp": "2024-05-16T06:01:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.572800", + "Timestamp": "2024-05-16T06:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.476100", + "Timestamp": "2024-05-16T06:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.433400", + "Timestamp": "2024-05-16T06:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.471100", + "Timestamp": "2024-05-16T06:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.428400", + "Timestamp": "2024-05-16T06:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.346100", + "Timestamp": "2024-05-16T06:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.303400", + "Timestamp": "2024-05-16T06:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.625200", + "Timestamp": "2024-05-16T06:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.620200", + "Timestamp": "2024-05-16T06:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.495200", + "Timestamp": "2024-05-16T06:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220500", + "Timestamp": "2024-05-16T06:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.275000", + "Timestamp": "2024-05-16T06:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270000", + "Timestamp": "2024-05-16T06:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145000", + "Timestamp": "2024-05-16T06:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.334200", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.304200", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.204200", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.825000", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.820000", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.695000", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.041300", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.036300", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.911300", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.970700", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.965700", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.840700", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088900", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032600", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.307200", + "Timestamp": "2024-05-16T06:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.302200", + "Timestamp": "2024-05-16T06:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.177200", + "Timestamp": "2024-05-16T06:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "10.014100", + "Timestamp": "2024-05-16T06:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "9.984100", + "Timestamp": "2024-05-16T06:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "9.884100", + "Timestamp": "2024-05-16T06:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209800", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061700", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001700", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001700", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.828100", + "Timestamp": "2024-05-16T06:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.823100", + "Timestamp": "2024-05-16T06:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.698100", + "Timestamp": "2024-05-16T06:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.395200", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.211200", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.207500", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.151200", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.481000", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.476000", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.351000", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.931400", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.926400", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.801400", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074300", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.045300", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014300", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.099500", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.069500", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.969500", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139900", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135900", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079900", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.467900", + "Timestamp": "2024-05-16T06:01:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.462900", + "Timestamp": "2024-05-16T06:01:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.337900", + "Timestamp": "2024-05-16T06:01:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "4.909900", + "Timestamp": "2024-05-16T05:49:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.450300", + "Timestamp": "2024-05-16T05:48:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.816800", + "Timestamp": "2024-05-16T05:47:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T05:47:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103900", + "Timestamp": "2024-05-16T05:47:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047600", + "Timestamp": "2024-05-16T05:47:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.992000", + "Timestamp": "2024-05-16T05:47:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.723700", + "Timestamp": "2024-05-16T05:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.718700", + "Timestamp": "2024-05-16T05:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.593700", + "Timestamp": "2024-05-16T05:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.567500", + "Timestamp": "2024-05-16T05:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.562500", + "Timestamp": "2024-05-16T05:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.437500", + "Timestamp": "2024-05-16T05:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.767600", + "Timestamp": "2024-05-16T05:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.762600", + "Timestamp": "2024-05-16T05:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.637600", + "Timestamp": "2024-05-16T05:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.137100", + "Timestamp": "2024-05-16T05:47:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.132100", + "Timestamp": "2024-05-16T05:47:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.007100", + "Timestamp": "2024-05-16T05:47:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115600", + "Timestamp": "2024-05-16T05:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126700", + "Timestamp": "2024-05-16T05:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111600", + "Timestamp": "2024-05-16T05:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122700", + "Timestamp": "2024-05-16T05:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055600", + "Timestamp": "2024-05-16T05:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066700", + "Timestamp": "2024-05-16T05:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.529400", + "Timestamp": "2024-05-16T05:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.524400", + "Timestamp": "2024-05-16T05:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.399400", + "Timestamp": "2024-05-16T05:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.190300", + "Timestamp": "2024-05-16T05:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.205600", + "Timestamp": "2024-05-16T05:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330500", + "Timestamp": "2024-05-16T05:47:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.326800", + "Timestamp": "2024-05-16T05:47:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.270500", + "Timestamp": "2024-05-16T05:47:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.490900", + "Timestamp": "2024-05-16T05:47:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.485900", + "Timestamp": "2024-05-16T05:47:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.360900", + "Timestamp": "2024-05-16T05:47:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.330100", + "Timestamp": "2024-05-16T05:47:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.325100", + "Timestamp": "2024-05-16T05:47:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.200100", + "Timestamp": "2024-05-16T05:47:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.312200", + "Timestamp": "2024-05-16T05:47:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.408900", + "Timestamp": "2024-05-16T05:47:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.403900", + "Timestamp": "2024-05-16T05:47:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.278900", + "Timestamp": "2024-05-16T05:47:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158700", + "Timestamp": "2024-05-16T05:47:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198700", + "Timestamp": "2024-05-16T05:47:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098700", + "Timestamp": "2024-05-16T05:47:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.295500", + "Timestamp": "2024-05-16T05:47:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.265500", + "Timestamp": "2024-05-16T05:47:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.165500", + "Timestamp": "2024-05-16T05:47:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.765700", + "Timestamp": "2024-05-16T05:47:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.760700", + "Timestamp": "2024-05-16T05:47:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.635700", + "Timestamp": "2024-05-16T05:47:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125700", + "Timestamp": "2024-05-16T05:47:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122000", + "Timestamp": "2024-05-16T05:47:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065700", + "Timestamp": "2024-05-16T05:47:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.001000", + "Timestamp": "2024-05-16T05:47:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.447000", + "Timestamp": "2024-05-16T05:47:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.996000", + "Timestamp": "2024-05-16T05:47:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.442000", + "Timestamp": "2024-05-16T05:47:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.871000", + "Timestamp": "2024-05-16T05:47:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.317000", + "Timestamp": "2024-05-16T05:47:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.097100", + "Timestamp": "2024-05-16T05:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.067100", + "Timestamp": "2024-05-16T05:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967100", + "Timestamp": "2024-05-16T05:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.148100", + "Timestamp": "2024-05-16T05:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.118100", + "Timestamp": "2024-05-16T05:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.018100", + "Timestamp": "2024-05-16T05:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.565500", + "Timestamp": "2024-05-16T05:46:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.560500", + "Timestamp": "2024-05-16T05:46:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.435500", + "Timestamp": "2024-05-16T05:46:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.296600", + "Timestamp": "2024-05-16T05:46:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.291600", + "Timestamp": "2024-05-16T05:46:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.166600", + "Timestamp": "2024-05-16T05:46:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.888900", + "Timestamp": "2024-05-16T05:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.883900", + "Timestamp": "2024-05-16T05:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.758900", + "Timestamp": "2024-05-16T05:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.600600", + "Timestamp": "2024-05-16T05:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.185600", + "Timestamp": "2024-05-16T05:46:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181900", + "Timestamp": "2024-05-16T05:46:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125600", + "Timestamp": "2024-05-16T05:46:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.701700", + "Timestamp": "2024-05-16T05:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.226200", + "Timestamp": "2024-05-16T05:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.157600", + "Timestamp": "2024-05-16T05:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.152600", + "Timestamp": "2024-05-16T05:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.027600", + "Timestamp": "2024-05-16T05:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.408200", + "Timestamp": "2024-05-16T05:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.403200", + "Timestamp": "2024-05-16T05:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.278200", + "Timestamp": "2024-05-16T05:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.057300", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.052300", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.927300", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.928600", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.923600", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.798600", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.216700", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.211700", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086700", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107000", + "Timestamp": "2024-05-16T05:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T05:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047000", + "Timestamp": "2024-05-16T05:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.044500", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.039500", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.914500", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.606700", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.601700", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.476700", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149500", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049500", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.458400", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.061200", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.056200", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.931200", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.182700", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179700", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122700", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.963300", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.958300", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.833300", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.022100", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.017100", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.892100", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102400", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046400", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.197800", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193800", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137800", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.722800", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.692800", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.592800", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.755400", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.750400", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.625400", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.228400", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.224400", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168400", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.739700", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.734700", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.609700", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.312500", + "Timestamp": "2024-05-16T05:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.307500", + "Timestamp": "2024-05-16T05:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.182500", + "Timestamp": "2024-05-16T05:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067700", + "Timestamp": "2024-05-16T05:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038700", + "Timestamp": "2024-05-16T05:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007700", + "Timestamp": "2024-05-16T05:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.503900", + "Timestamp": "2024-05-16T05:46:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.498900", + "Timestamp": "2024-05-16T05:46:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.373900", + "Timestamp": "2024-05-16T05:46:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.145300", + "Timestamp": "2024-05-16T05:35:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.428800", + "Timestamp": "2024-05-16T05:32:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T05:32:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.319700", + "Timestamp": "2024-05-16T05:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.314700", + "Timestamp": "2024-05-16T05:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.189700", + "Timestamp": "2024-05-16T05:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.970700", + "Timestamp": "2024-05-16T05:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.965700", + "Timestamp": "2024-05-16T05:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.840700", + "Timestamp": "2024-05-16T05:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.936600", + "Timestamp": "2024-05-16T05:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.931600", + "Timestamp": "2024-05-16T05:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.806600", + "Timestamp": "2024-05-16T05:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.767600", + "Timestamp": "2024-05-16T05:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.762600", + "Timestamp": "2024-05-16T05:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.637600", + "Timestamp": "2024-05-16T05:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208000", + "Timestamp": "2024-05-16T05:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.265400", + "Timestamp": "2024-05-16T05:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.260400", + "Timestamp": "2024-05-16T05:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.135400", + "Timestamp": "2024-05-16T05:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.497600", + "Timestamp": "2024-05-16T05:32:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.492600", + "Timestamp": "2024-05-16T05:32:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.367600", + "Timestamp": "2024-05-16T05:32:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.652300", + "Timestamp": "2024-05-16T05:32:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.647300", + "Timestamp": "2024-05-16T05:32:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.522300", + "Timestamp": "2024-05-16T05:32:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.704200", + "Timestamp": "2024-05-16T05:32:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.540700", + "Timestamp": "2024-05-16T05:32:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.535700", + "Timestamp": "2024-05-16T05:32:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.410700", + "Timestamp": "2024-05-16T05:32:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.481200", + "Timestamp": "2024-05-16T05:32:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.476200", + "Timestamp": "2024-05-16T05:32:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.351200", + "Timestamp": "2024-05-16T05:32:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.719000", + "Timestamp": "2024-05-16T05:32:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.458300", + "Timestamp": "2024-05-16T05:32:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.453300", + "Timestamp": "2024-05-16T05:32:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.328300", + "Timestamp": "2024-05-16T05:32:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T05:32:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098400", + "Timestamp": "2024-05-16T05:32:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042100", + "Timestamp": "2024-05-16T05:32:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.320500", + "Timestamp": "2024-05-16T05:32:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.290500", + "Timestamp": "2024-05-16T05:32:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190500", + "Timestamp": "2024-05-16T05:32:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.827700", + "Timestamp": "2024-05-16T05:32:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.822700", + "Timestamp": "2024-05-16T05:32:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.697700", + "Timestamp": "2024-05-16T05:32:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.428400", + "Timestamp": "2024-05-16T05:32:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073100", + "Timestamp": "2024-05-16T05:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044100", + "Timestamp": "2024-05-16T05:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013100", + "Timestamp": "2024-05-16T05:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.521400", + "Timestamp": "2024-05-16T05:32:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.516400", + "Timestamp": "2024-05-16T05:32:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.391400", + "Timestamp": "2024-05-16T05:32:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.474300", + "Timestamp": "2024-05-16T05:32:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.469300", + "Timestamp": "2024-05-16T05:32:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.344300", + "Timestamp": "2024-05-16T05:32:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.985000", + "Timestamp": "2024-05-16T05:31:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.980000", + "Timestamp": "2024-05-16T05:31:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.855000", + "Timestamp": "2024-05-16T05:31:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.705200", + "Timestamp": "2024-05-16T05:31:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.870300", + "Timestamp": "2024-05-16T05:31:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.865300", + "Timestamp": "2024-05-16T05:31:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.740300", + "Timestamp": "2024-05-16T05:31:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.630800", + "Timestamp": "2024-05-16T05:31:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.625800", + "Timestamp": "2024-05-16T05:31:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.500800", + "Timestamp": "2024-05-16T05:31:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.209200", + "Timestamp": "2024-05-16T05:31:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.204200", + "Timestamp": "2024-05-16T05:31:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.079200", + "Timestamp": "2024-05-16T05:31:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.425600", + "Timestamp": "2024-05-16T05:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.420600", + "Timestamp": "2024-05-16T05:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.295600", + "Timestamp": "2024-05-16T05:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.717700", + "Timestamp": "2024-05-16T05:31:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.712700", + "Timestamp": "2024-05-16T05:31:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.587700", + "Timestamp": "2024-05-16T05:31:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.776400", + "Timestamp": "2024-05-16T05:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.771400", + "Timestamp": "2024-05-16T05:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.646400", + "Timestamp": "2024-05-16T05:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.225600", + "Timestamp": "2024-05-16T05:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.561700", + "Timestamp": "2024-05-16T05:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311900", + "Timestamp": "2024-05-16T05:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281900", + "Timestamp": "2024-05-16T05:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181900", + "Timestamp": "2024-05-16T05:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.492000", + "Timestamp": "2024-05-16T05:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.462000", + "Timestamp": "2024-05-16T05:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.362000", + "Timestamp": "2024-05-16T05:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.090700", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.085700", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.960700", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.658100", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.653100", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.528100", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.794800", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.764800", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.664800", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.821600", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.816600", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.691600", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.209500", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.205500", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149500", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.797000", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.792000", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.667000", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.510400", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.419600", + "Timestamp": "2024-05-16T05:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.585300", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.580300", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.455300", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.510200", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.505200", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.380200", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.190400", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.415500", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.385500", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.285500", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.351800", + "Timestamp": "2024-05-16T05:18:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.815100", + "Timestamp": "2024-05-16T05:17:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.810100", + "Timestamp": "2024-05-16T05:17:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.685100", + "Timestamp": "2024-05-16T05:17:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.676900", + "Timestamp": "2024-05-16T05:17:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "9.819800", + "Timestamp": "2024-05-16T05:17:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114900", + "Timestamp": "2024-05-16T05:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154900", + "Timestamp": "2024-05-16T05:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054900", + "Timestamp": "2024-05-16T05:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115800", + "Timestamp": "2024-05-16T05:17:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111800", + "Timestamp": "2024-05-16T05:17:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055800", + "Timestamp": "2024-05-16T05:17:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.766100", + "Timestamp": "2024-05-16T05:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.045800", + "Timestamp": "2024-05-16T05:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.015800", + "Timestamp": "2024-05-16T05:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.915800", + "Timestamp": "2024-05-16T05:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.515200", + "Timestamp": "2024-05-16T05:17:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.825700", + "Timestamp": "2024-05-16T05:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.419400", + "Timestamp": "2024-05-16T05:17:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.414400", + "Timestamp": "2024-05-16T05:17:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.289400", + "Timestamp": "2024-05-16T05:17:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.286500", + "Timestamp": "2024-05-16T05:17:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.281500", + "Timestamp": "2024-05-16T05:17:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.156500", + "Timestamp": "2024-05-16T05:17:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.896900", + "Timestamp": "2024-05-16T05:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.935100", + "Timestamp": "2024-05-16T05:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.806600", + "Timestamp": "2024-05-16T05:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.635200", + "Timestamp": "2024-05-16T05:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.626000", + "Timestamp": "2024-05-16T05:17:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.621000", + "Timestamp": "2024-05-16T05:17:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.496000", + "Timestamp": "2024-05-16T05:17:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.465000", + "Timestamp": "2024-05-16T05:17:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.460000", + "Timestamp": "2024-05-16T05:17:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.335000", + "Timestamp": "2024-05-16T05:17:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.993800", + "Timestamp": "2024-05-16T05:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.432300", + "Timestamp": "2024-05-16T05:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.988800", + "Timestamp": "2024-05-16T05:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.427300", + "Timestamp": "2024-05-16T05:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.863800", + "Timestamp": "2024-05-16T05:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.302300", + "Timestamp": "2024-05-16T05:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.554100", + "Timestamp": "2024-05-16T05:17:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.524100", + "Timestamp": "2024-05-16T05:17:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.424100", + "Timestamp": "2024-05-16T05:17:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.368100", + "Timestamp": "2024-05-16T05:17:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.338100", + "Timestamp": "2024-05-16T05:17:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.238100", + "Timestamp": "2024-05-16T05:17:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160200", + "Timestamp": "2024-05-16T05:17:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156500", + "Timestamp": "2024-05-16T05:17:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-16T05:17:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.955300", + "Timestamp": "2024-05-16T05:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.950300", + "Timestamp": "2024-05-16T05:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.825300", + "Timestamp": "2024-05-16T05:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.211200", + "Timestamp": "2024-05-16T05:17:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.181200", + "Timestamp": "2024-05-16T05:17:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.081200", + "Timestamp": "2024-05-16T05:17:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.616400", + "Timestamp": "2024-05-16T05:17:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.611400", + "Timestamp": "2024-05-16T05:17:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.486400", + "Timestamp": "2024-05-16T05:17:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.633600", + "Timestamp": "2024-05-16T05:17:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.117800", + "Timestamp": "2024-05-16T05:16:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.905700", + "Timestamp": "2024-05-16T05:16:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.900700", + "Timestamp": "2024-05-16T05:16:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.775700", + "Timestamp": "2024-05-16T05:16:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.623400", + "Timestamp": "2024-05-16T05:16:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.618400", + "Timestamp": "2024-05-16T05:16:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.493400", + "Timestamp": "2024-05-16T05:16:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219600", + "Timestamp": "2024-05-16T05:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.654400", + "Timestamp": "2024-05-16T05:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.649400", + "Timestamp": "2024-05-16T05:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.524400", + "Timestamp": "2024-05-16T05:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-16T05:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-16T05:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056400", + "Timestamp": "2024-05-16T05:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.704500", + "Timestamp": "2024-05-16T05:16:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.699500", + "Timestamp": "2024-05-16T05:16:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.574500", + "Timestamp": "2024-05-16T05:16:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.082900", + "Timestamp": "2024-05-16T05:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.077900", + "Timestamp": "2024-05-16T05:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.952900", + "Timestamp": "2024-05-16T05:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.659600", + "Timestamp": "2024-05-16T05:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.654600", + "Timestamp": "2024-05-16T05:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.529600", + "Timestamp": "2024-05-16T05:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.963100", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.958100", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.833100", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095000", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091300", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035000", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.456900", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.451900", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.326900", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147600", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.187600", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087600", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.514500", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.509500", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.384500", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.239800", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.237600", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.236100", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.233900", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.179800", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177600", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.201700", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.197700", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141700", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158700", + "Timestamp": "2024-05-16T05:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155000", + "Timestamp": "2024-05-16T05:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098700", + "Timestamp": "2024-05-16T05:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.571600", + "Timestamp": "2024-05-16T05:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.566600", + "Timestamp": "2024-05-16T05:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.441600", + "Timestamp": "2024-05-16T05:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.182700", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.222700", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122700", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098600", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042600", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101000", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097000", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041000", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.285900", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.280900", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.155900", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.635500", + "Timestamp": "2024-05-16T05:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.630500", + "Timestamp": "2024-05-16T05:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.505500", + "Timestamp": "2024-05-16T05:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.839400", + "Timestamp": "2024-05-16T05:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.650300", + "Timestamp": "2024-05-16T05:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.645300", + "Timestamp": "2024-05-16T05:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.520300", + "Timestamp": "2024-05-16T05:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139500", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135800", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079500", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.806900", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.801900", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.676900", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.760000", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.488300", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.483300", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.358300", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144000", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140300", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084000", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.323100", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293100", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.193100", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.027400", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.022400", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.897400", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.485300", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.480300", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.355300", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.893400", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.888400", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.763400", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106700", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146700", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046700", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.403200", + "Timestamp": "2024-05-16T05:16:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.440500", + "Timestamp": "2024-05-16T05:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.435500", + "Timestamp": "2024-05-16T05:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.310500", + "Timestamp": "2024-05-16T05:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.443200", + "Timestamp": "2024-05-16T05:05:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.496000", + "Timestamp": "2024-05-16T05:04:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224000", + "Timestamp": "2024-05-16T05:04:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061700", + "Timestamp": "2024-05-16T05:04:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001700", + "Timestamp": "2024-05-16T05:04:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001700", + "Timestamp": "2024-05-16T05:04:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.534400", + "Timestamp": "2024-05-16T05:03:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.857600", + "Timestamp": "2024-05-16T05:03:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.825600", + "Timestamp": "2024-05-16T05:03:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.644800", + "Timestamp": "2024-05-16T05:03:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T05:02:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.353900", + "Timestamp": "2024-05-16T05:02:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.519300", + "Timestamp": "2024-05-16T05:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.514300", + "Timestamp": "2024-05-16T05:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.389300", + "Timestamp": "2024-05-16T05:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.460200", + "Timestamp": "2024-05-16T05:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.455200", + "Timestamp": "2024-05-16T05:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.330200", + "Timestamp": "2024-05-16T05:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069900", + "Timestamp": "2024-05-16T05:02:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066200", + "Timestamp": "2024-05-16T05:02:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009900", + "Timestamp": "2024-05-16T05:02:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.646800", + "Timestamp": "2024-05-16T05:02:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.616800", + "Timestamp": "2024-05-16T05:02:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.516800", + "Timestamp": "2024-05-16T05:02:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.928500", + "Timestamp": "2024-05-16T05:02:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.923500", + "Timestamp": "2024-05-16T05:02:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.798500", + "Timestamp": "2024-05-16T05:02:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.702100", + "Timestamp": "2024-05-16T05:02:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.697100", + "Timestamp": "2024-05-16T05:02:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.572100", + "Timestamp": "2024-05-16T05:02:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.641700", + "Timestamp": "2024-05-16T05:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.636700", + "Timestamp": "2024-05-16T05:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.511700", + "Timestamp": "2024-05-16T05:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.701500", + "Timestamp": "2024-05-16T05:02:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.696500", + "Timestamp": "2024-05-16T05:02:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.571500", + "Timestamp": "2024-05-16T05:02:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.349000", + "Timestamp": "2024-05-16T05:02:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.344000", + "Timestamp": "2024-05-16T05:02:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219000", + "Timestamp": "2024-05-16T05:02:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.667500", + "Timestamp": "2024-05-16T05:02:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.662500", + "Timestamp": "2024-05-16T05:02:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.537500", + "Timestamp": "2024-05-16T05:02:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.321800", + "Timestamp": "2024-05-16T05:02:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.316800", + "Timestamp": "2024-05-16T05:02:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.191800", + "Timestamp": "2024-05-16T05:02:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.247600", + "Timestamp": "2024-05-16T05:01:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.242600", + "Timestamp": "2024-05-16T05:01:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.117600", + "Timestamp": "2024-05-16T05:01:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.344000", + "Timestamp": "2024-05-16T05:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.661000", + "Timestamp": "2024-05-16T05:01:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.656000", + "Timestamp": "2024-05-16T05:01:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.531000", + "Timestamp": "2024-05-16T05:01:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.520000", + "Timestamp": "2024-05-16T05:01:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.515000", + "Timestamp": "2024-05-16T05:01:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.390000", + "Timestamp": "2024-05-16T05:01:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.118400", + "Timestamp": "2024-05-16T05:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.823600", + "Timestamp": "2024-05-16T05:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.818600", + "Timestamp": "2024-05-16T05:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.693600", + "Timestamp": "2024-05-16T05:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073200", + "Timestamp": "2024-05-16T05:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069500", + "Timestamp": "2024-05-16T05:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013200", + "Timestamp": "2024-05-16T05:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.658300", + "Timestamp": "2024-05-16T05:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.653300", + "Timestamp": "2024-05-16T05:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.528300", + "Timestamp": "2024-05-16T05:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214200", + "Timestamp": "2024-05-16T05:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077900", + "Timestamp": "2024-05-16T05:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074200", + "Timestamp": "2024-05-16T05:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017900", + "Timestamp": "2024-05-16T05:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.070900", + "Timestamp": "2024-05-16T05:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.065900", + "Timestamp": "2024-05-16T05:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.940900", + "Timestamp": "2024-05-16T05:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.577100", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.502000", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.572100", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.497000", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.447100", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.372000", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.597500", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.592500", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.467500", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.metal", + "ProductDescription": "Windows", + "SpotPrice": "1.203800", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046900", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.083400", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.078400", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.953400", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.590700", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.246600", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.653200", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.623200", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.523200", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.843200", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.838200", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.713200", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.380000", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.375000", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.250000", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.041700", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.196700", + "Timestamp": "2024-05-16T05:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193000", + "Timestamp": "2024-05-16T05:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136700", + "Timestamp": "2024-05-16T05:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.478500", + "Timestamp": "2024-05-16T05:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473500", + "Timestamp": "2024-05-16T05:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.348500", + "Timestamp": "2024-05-16T05:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.328200", + "Timestamp": "2024-05-16T05:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.323200", + "Timestamp": "2024-05-16T05:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.198200", + "Timestamp": "2024-05-16T05:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118700", + "Timestamp": "2024-05-16T05:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115000", + "Timestamp": "2024-05-16T05:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058700", + "Timestamp": "2024-05-16T05:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.462400", + "Timestamp": "2024-05-16T05:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.457400", + "Timestamp": "2024-05-16T05:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.332400", + "Timestamp": "2024-05-16T05:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.020900", + "Timestamp": "2024-05-16T05:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.852800", + "Timestamp": "2024-05-16T04:49:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.869600", + "Timestamp": "2024-05-16T04:49:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.750400", + "Timestamp": "2024-05-16T04:48:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.879200", + "Timestamp": "2024-05-16T04:48:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.758400", + "Timestamp": "2024-05-16T04:47:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.397500", + "Timestamp": "2024-05-16T04:47:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099400", + "Timestamp": "2024-05-16T04:47:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095700", + "Timestamp": "2024-05-16T04:47:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039400", + "Timestamp": "2024-05-16T04:47:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.900800", + "Timestamp": "2024-05-16T04:47:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120500", + "Timestamp": "2024-05-16T04:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116800", + "Timestamp": "2024-05-16T04:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060500", + "Timestamp": "2024-05-16T04:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T04:47:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.320100", + "Timestamp": "2024-05-16T04:47:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.315100", + "Timestamp": "2024-05-16T04:47:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190100", + "Timestamp": "2024-05-16T04:47:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.920200", + "Timestamp": "2024-05-16T04:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.044400", + "Timestamp": "2024-05-16T04:47:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.039400", + "Timestamp": "2024-05-16T04:47:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.914400", + "Timestamp": "2024-05-16T04:47:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.241900", + "Timestamp": "2024-05-16T04:47:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.236900", + "Timestamp": "2024-05-16T04:47:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.111900", + "Timestamp": "2024-05-16T04:47:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.644800", + "Timestamp": "2024-05-16T04:47:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.439100", + "Timestamp": "2024-05-16T04:47:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.554300", + "Timestamp": "2024-05-16T04:47:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.549300", + "Timestamp": "2024-05-16T04:47:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.424300", + "Timestamp": "2024-05-16T04:47:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418000", + "Timestamp": "2024-05-16T04:47:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.419700", + "Timestamp": "2024-05-16T04:47:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.848700", + "Timestamp": "2024-05-16T04:47:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.843700", + "Timestamp": "2024-05-16T04:47:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.718700", + "Timestamp": "2024-05-16T04:47:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099400", + "Timestamp": "2024-05-16T04:47:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139400", + "Timestamp": "2024-05-16T04:47:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039400", + "Timestamp": "2024-05-16T04:47:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.820900", + "Timestamp": "2024-05-16T04:46:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.815900", + "Timestamp": "2024-05-16T04:46:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.690900", + "Timestamp": "2024-05-16T04:46:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.274300", + "Timestamp": "2024-05-16T04:46:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269300", + "Timestamp": "2024-05-16T04:46:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144300", + "Timestamp": "2024-05-16T04:46:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.466300", + "Timestamp": "2024-05-16T04:46:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.461300", + "Timestamp": "2024-05-16T04:46:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.336300", + "Timestamp": "2024-05-16T04:46:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.823200", + "Timestamp": "2024-05-16T04:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.818200", + "Timestamp": "2024-05-16T04:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.693200", + "Timestamp": "2024-05-16T04:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.291400", + "Timestamp": "2024-05-16T04:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.286400", + "Timestamp": "2024-05-16T04:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.161400", + "Timestamp": "2024-05-16T04:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.563200", + "Timestamp": "2024-05-16T04:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.558200", + "Timestamp": "2024-05-16T04:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.433200", + "Timestamp": "2024-05-16T04:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.201400", + "Timestamp": "2024-05-16T04:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.197700", + "Timestamp": "2024-05-16T04:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141400", + "Timestamp": "2024-05-16T04:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.662000", + "Timestamp": "2024-05-16T04:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.657000", + "Timestamp": "2024-05-16T04:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.532000", + "Timestamp": "2024-05-16T04:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062500", + "Timestamp": "2024-05-16T04:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-16T04:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-16T04:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.062300", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.057300", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.932300", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.671000", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.333000", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.303000", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.203000", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.310800", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.305800", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.180800", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147300", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047300", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.300700", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.295700", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.170700", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151800", + "Timestamp": "2024-05-16T04:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147800", + "Timestamp": "2024-05-16T04:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T04:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114800", + "Timestamp": "2024-05-16T04:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T04:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054800", + "Timestamp": "2024-05-16T04:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.198100", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.193100", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.068100", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.244800", + "Timestamp": "2024-05-16T04:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.239800", + "Timestamp": "2024-05-16T04:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.114800", + "Timestamp": "2024-05-16T04:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.282000", + "Timestamp": "2024-05-16T04:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.277000", + "Timestamp": "2024-05-16T04:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.152000", + "Timestamp": "2024-05-16T04:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.196000", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.191000", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.066000", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.448000", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.577800", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.572800", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.447800", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105100", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101400", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045100", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.353900", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.348900", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.223900", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.336900", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.331900", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.206900", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.438200", + "Timestamp": "2024-05-16T04:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.433200", + "Timestamp": "2024-05-16T04:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.308200", + "Timestamp": "2024-05-16T04:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.064100", + "Timestamp": "2024-05-16T04:37:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.059100", + "Timestamp": "2024-05-16T04:37:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.934100", + "Timestamp": "2024-05-16T04:37:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.664000", + "Timestamp": "2024-05-16T04:34:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.371800", + "Timestamp": "2024-05-16T04:34:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.341800", + "Timestamp": "2024-05-16T04:34:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.241800", + "Timestamp": "2024-05-16T04:34:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.625600", + "Timestamp": "2024-05-16T04:34:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.635200", + "Timestamp": "2024-05-16T04:34:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.500800", + "Timestamp": "2024-05-16T04:33:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.379200", + "Timestamp": "2024-05-16T04:33:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.664000", + "Timestamp": "2024-05-16T04:32:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441100", + "Timestamp": "2024-05-16T04:32:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.042600", + "Timestamp": "2024-05-16T04:32:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.037600", + "Timestamp": "2024-05-16T04:32:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.912600", + "Timestamp": "2024-05-16T04:32:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.688000", + "Timestamp": "2024-05-16T04:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159000", + "Timestamp": "2024-05-16T04:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.199000", + "Timestamp": "2024-05-16T04:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099000", + "Timestamp": "2024-05-16T04:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.214800", + "Timestamp": "2024-05-16T04:32:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.209800", + "Timestamp": "2024-05-16T04:32:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.084800", + "Timestamp": "2024-05-16T04:32:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.264800", + "Timestamp": "2024-05-16T04:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.234800", + "Timestamp": "2024-05-16T04:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.134800", + "Timestamp": "2024-05-16T04:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.820000", + "Timestamp": "2024-05-16T04:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.815000", + "Timestamp": "2024-05-16T04:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.690000", + "Timestamp": "2024-05-16T04:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.120900", + "Timestamp": "2024-05-16T04:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.090900", + "Timestamp": "2024-05-16T04:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.990900", + "Timestamp": "2024-05-16T04:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165300", + "Timestamp": "2024-05-16T04:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161600", + "Timestamp": "2024-05-16T04:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105300", + "Timestamp": "2024-05-16T04:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.446000", + "Timestamp": "2024-05-16T04:32:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.416000", + "Timestamp": "2024-05-16T04:32:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.316000", + "Timestamp": "2024-05-16T04:32:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.721800", + "Timestamp": "2024-05-16T04:32:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.716800", + "Timestamp": "2024-05-16T04:32:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.591800", + "Timestamp": "2024-05-16T04:32:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.254600", + "Timestamp": "2024-05-16T04:32:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.249600", + "Timestamp": "2024-05-16T04:32:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.124600", + "Timestamp": "2024-05-16T04:32:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.245600", + "Timestamp": "2024-05-16T04:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.240600", + "Timestamp": "2024-05-16T04:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.115600", + "Timestamp": "2024-05-16T04:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.771400", + "Timestamp": "2024-05-16T04:32:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.766400", + "Timestamp": "2024-05-16T04:32:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.641400", + "Timestamp": "2024-05-16T04:32:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.624600", + "Timestamp": "2024-05-16T04:32:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.619600", + "Timestamp": "2024-05-16T04:32:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.494600", + "Timestamp": "2024-05-16T04:32:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143900", + "Timestamp": "2024-05-16T04:32:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140200", + "Timestamp": "2024-05-16T04:32:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083900", + "Timestamp": "2024-05-16T04:32:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.427100", + "Timestamp": "2024-05-16T04:32:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102200", + "Timestamp": "2024-05-16T04:32:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098200", + "Timestamp": "2024-05-16T04:32:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042200", + "Timestamp": "2024-05-16T04:32:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.409200", + "Timestamp": "2024-05-16T04:32:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.444000", + "Timestamp": "2024-05-16T04:31:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.439000", + "Timestamp": "2024-05-16T04:31:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.314000", + "Timestamp": "2024-05-16T04:31:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T04:31:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T04:31:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051400", + "Timestamp": "2024-05-16T04:31:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.412000", + "Timestamp": "2024-05-16T04:31:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.289600", + "Timestamp": "2024-05-16T04:31:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.619100", + "Timestamp": "2024-05-16T04:31:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.589100", + "Timestamp": "2024-05-16T04:31:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.489100", + "Timestamp": "2024-05-16T04:31:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114800", + "Timestamp": "2024-05-16T04:31:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117600", + "Timestamp": "2024-05-16T04:31:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111100", + "Timestamp": "2024-05-16T04:31:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113900", + "Timestamp": "2024-05-16T04:31:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054800", + "Timestamp": "2024-05-16T04:31:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057600", + "Timestamp": "2024-05-16T04:31:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-16T04:31:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098000", + "Timestamp": "2024-05-16T04:31:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041700", + "Timestamp": "2024-05-16T04:31:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.656000", + "Timestamp": "2024-05-16T04:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131100", + "Timestamp": "2024-05-16T04:31:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127100", + "Timestamp": "2024-05-16T04:31:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071100", + "Timestamp": "2024-05-16T04:31:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.227400", + "Timestamp": "2024-05-16T04:31:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.275700", + "Timestamp": "2024-05-16T04:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270700", + "Timestamp": "2024-05-16T04:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145700", + "Timestamp": "2024-05-16T04:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098500", + "Timestamp": "2024-05-16T04:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094800", + "Timestamp": "2024-05-16T04:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038500", + "Timestamp": "2024-05-16T04:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.492100", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.487100", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.362100", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.304600", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.299600", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.174600", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.285600", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.280600", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.155600", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.540900", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.535900", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.410900", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.527800", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.522800", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.397800", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.402800", + "Timestamp": "2024-05-16T04:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.397800", + "Timestamp": "2024-05-16T04:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.272800", + "Timestamp": "2024-05-16T04:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.321300", + "Timestamp": "2024-05-16T04:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.291300", + "Timestamp": "2024-05-16T04:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.191300", + "Timestamp": "2024-05-16T04:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.764300", + "Timestamp": "2024-05-16T04:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.759300", + "Timestamp": "2024-05-16T04:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.634300", + "Timestamp": "2024-05-16T04:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.839400", + "Timestamp": "2024-05-16T04:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-16T04:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098000", + "Timestamp": "2024-05-16T04:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041700", + "Timestamp": "2024-05-16T04:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.244200", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.239200", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114200", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093800", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037500", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "15.154500", + "Timestamp": "2024-05-16T04:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.358700", + "Timestamp": "2024-05-16T04:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.353700", + "Timestamp": "2024-05-16T04:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.228700", + "Timestamp": "2024-05-16T04:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-16T04:30:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-16T04:30:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.138500", + "Timestamp": "2024-05-16T04:21:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.832000", + "Timestamp": "2024-05-16T04:18:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T04:18:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.707800", + "Timestamp": "2024-05-16T04:18:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.830100", + "Timestamp": "2024-05-16T04:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.827700", + "Timestamp": "2024-05-16T04:17:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.822700", + "Timestamp": "2024-05-16T04:17:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.697700", + "Timestamp": "2024-05-16T04:17:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.187700", + "Timestamp": "2024-05-16T04:17:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.184000", + "Timestamp": "2024-05-16T04:17:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127700", + "Timestamp": "2024-05-16T04:17:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.089600", + "Timestamp": "2024-05-16T04:17:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.084600", + "Timestamp": "2024-05-16T04:17:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.959600", + "Timestamp": "2024-05-16T04:17:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.589600", + "Timestamp": "2024-05-16T04:17:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.412800", + "Timestamp": "2024-05-16T04:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.020800", + "Timestamp": "2024-05-16T04:17:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.866300", + "Timestamp": "2024-05-16T04:17:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.861300", + "Timestamp": "2024-05-16T04:17:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.736300", + "Timestamp": "2024-05-16T04:17:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439200", + "Timestamp": "2024-05-16T04:17:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.562500", + "Timestamp": "2024-05-16T04:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.557500", + "Timestamp": "2024-05-16T04:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.432500", + "Timestamp": "2024-05-16T04:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.429900", + "Timestamp": "2024-05-16T04:17:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.399900", + "Timestamp": "2024-05-16T04:17:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.299900", + "Timestamp": "2024-05-16T04:17:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.204200", + "Timestamp": "2024-05-16T04:16:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.986400", + "Timestamp": "2024-05-16T04:16:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.234100", + "Timestamp": "2024-05-16T04:16:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.229100", + "Timestamp": "2024-05-16T04:16:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.104100", + "Timestamp": "2024-05-16T04:16:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362600", + "Timestamp": "2024-05-16T04:16:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.332600", + "Timestamp": "2024-05-16T04:16:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.232600", + "Timestamp": "2024-05-16T04:16:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.152800", + "Timestamp": "2024-05-16T04:16:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.122800", + "Timestamp": "2024-05-16T04:16:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.022800", + "Timestamp": "2024-05-16T04:16:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.858600", + "Timestamp": "2024-05-16T04:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.853600", + "Timestamp": "2024-05-16T04:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.728600", + "Timestamp": "2024-05-16T04:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067500", + "Timestamp": "2024-05-16T04:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.007500", + "Timestamp": "2024-05-16T04:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007500", + "Timestamp": "2024-05-16T04:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.748300", + "Timestamp": "2024-05-16T04:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.743300", + "Timestamp": "2024-05-16T04:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.618300", + "Timestamp": "2024-05-16T04:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162200", + "Timestamp": "2024-05-16T04:16:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158500", + "Timestamp": "2024-05-16T04:16:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102200", + "Timestamp": "2024-05-16T04:16:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.914600", + "Timestamp": "2024-05-16T04:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.909600", + "Timestamp": "2024-05-16T04:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.784600", + "Timestamp": "2024-05-16T04:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.758000", + "Timestamp": "2024-05-16T04:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.753000", + "Timestamp": "2024-05-16T04:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.628000", + "Timestamp": "2024-05-16T04:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.224900", + "Timestamp": "2024-05-16T04:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.219900", + "Timestamp": "2024-05-16T04:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.094900", + "Timestamp": "2024-05-16T04:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.054900", + "Timestamp": "2024-05-16T04:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.049900", + "Timestamp": "2024-05-16T04:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.924900", + "Timestamp": "2024-05-16T04:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-16T04:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T04:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046100", + "Timestamp": "2024-05-16T04:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166400", + "Timestamp": "2024-05-16T04:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162400", + "Timestamp": "2024-05-16T04:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T04:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070200", + "Timestamp": "2024-05-16T04:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066500", + "Timestamp": "2024-05-16T04:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010200", + "Timestamp": "2024-05-16T04:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.220500", + "Timestamp": "2024-05-16T04:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.215500", + "Timestamp": "2024-05-16T04:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.090500", + "Timestamp": "2024-05-16T04:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.473000", + "Timestamp": "2024-05-16T04:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.468000", + "Timestamp": "2024-05-16T04:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.343000", + "Timestamp": "2024-05-16T04:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.845300", + "Timestamp": "2024-05-16T04:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.840300", + "Timestamp": "2024-05-16T04:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.715300", + "Timestamp": "2024-05-16T04:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.903000", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.898000", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.773000", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.101100", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.096100", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.971100", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081900", + "Timestamp": "2024-05-16T04:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078200", + "Timestamp": "2024-05-16T04:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021900", + "Timestamp": "2024-05-16T04:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094300", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090600", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034300", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.426500", + "Timestamp": "2024-05-16T04:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.421500", + "Timestamp": "2024-05-16T04:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.296500", + "Timestamp": "2024-05-16T04:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155900", + "Timestamp": "2024-05-16T04:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152200", + "Timestamp": "2024-05-16T04:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-16T04:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.458700", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.453700", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.328700", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046600", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095100", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038800", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.703600", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.035200", + "Timestamp": "2024-05-16T04:10:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.035200", + "Timestamp": "2024-05-16T04:10:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.035200", + "Timestamp": "2024-05-16T04:10:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.419700", + "Timestamp": "2024-05-16T04:04:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.819800", + "Timestamp": "2024-05-16T04:03:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.756200", + "Timestamp": "2024-05-16T04:02:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102300", + "Timestamp": "2024-05-16T04:02:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098600", + "Timestamp": "2024-05-16T04:02:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042300", + "Timestamp": "2024-05-16T04:02:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.900800", + "Timestamp": "2024-05-16T04:02:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.151800", + "Timestamp": "2024-05-16T04:02:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.146800", + "Timestamp": "2024-05-16T04:02:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.021800", + "Timestamp": "2024-05-16T04:02:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.191600", + "Timestamp": "2024-05-16T04:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.187900", + "Timestamp": "2024-05-16T04:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131600", + "Timestamp": "2024-05-16T04:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.608800", + "Timestamp": "2024-05-16T04:02:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.687300", + "Timestamp": "2024-05-16T04:02:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.682300", + "Timestamp": "2024-05-16T04:02:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.557300", + "Timestamp": "2024-05-16T04:02:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T04:02:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149500", + "Timestamp": "2024-05-16T04:02:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049500", + "Timestamp": "2024-05-16T04:02:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.902000", + "Timestamp": "2024-05-16T04:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.872000", + "Timestamp": "2024-05-16T04:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.772000", + "Timestamp": "2024-05-16T04:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.671600", + "Timestamp": "2024-05-16T04:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.666600", + "Timestamp": "2024-05-16T04:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.541600", + "Timestamp": "2024-05-16T04:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.040800", + "Timestamp": "2024-05-16T04:02:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.329000", + "Timestamp": "2024-05-16T04:02:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324000", + "Timestamp": "2024-05-16T04:02:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199000", + "Timestamp": "2024-05-16T04:02:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.378100", + "Timestamp": "2024-05-16T04:02:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.373100", + "Timestamp": "2024-05-16T04:02:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.248100", + "Timestamp": "2024-05-16T04:02:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063700", + "Timestamp": "2024-05-16T04:02:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003700", + "Timestamp": "2024-05-16T04:02:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003700", + "Timestamp": "2024-05-16T04:02:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.473200", + "Timestamp": "2024-05-16T04:02:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.355600", + "Timestamp": "2024-05-16T04:02:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.350600", + "Timestamp": "2024-05-16T04:02:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.225600", + "Timestamp": "2024-05-16T04:02:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.286200", + "Timestamp": "2024-05-16T04:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.281200", + "Timestamp": "2024-05-16T04:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.156200", + "Timestamp": "2024-05-16T04:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.656000", + "Timestamp": "2024-05-16T04:02:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.656000", + "Timestamp": "2024-05-16T04:02:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.396100", + "Timestamp": "2024-05-16T04:02:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.391100", + "Timestamp": "2024-05-16T04:02:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.266100", + "Timestamp": "2024-05-16T04:02:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.309800", + "Timestamp": "2024-05-16T04:02:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.304800", + "Timestamp": "2024-05-16T04:02:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.179800", + "Timestamp": "2024-05-16T04:02:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.768700", + "Timestamp": "2024-05-16T04:02:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.763700", + "Timestamp": "2024-05-16T04:02:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.638700", + "Timestamp": "2024-05-16T04:02:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.211800", + "Timestamp": "2024-05-16T04:02:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.206800", + "Timestamp": "2024-05-16T04:02:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.081800", + "Timestamp": "2024-05-16T04:02:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.945000", + "Timestamp": "2024-05-16T04:02:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.940000", + "Timestamp": "2024-05-16T04:02:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.815000", + "Timestamp": "2024-05-16T04:02:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.414100", + "Timestamp": "2024-05-16T04:01:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.409100", + "Timestamp": "2024-05-16T04:01:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.284100", + "Timestamp": "2024-05-16T04:01:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079100", + "Timestamp": "2024-05-16T04:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119100", + "Timestamp": "2024-05-16T04:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019100", + "Timestamp": "2024-05-16T04:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.845500", + "Timestamp": "2024-05-16T04:01:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.840500", + "Timestamp": "2024-05-16T04:01:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.715500", + "Timestamp": "2024-05-16T04:01:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.180200", + "Timestamp": "2024-05-16T04:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.175200", + "Timestamp": "2024-05-16T04:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.050200", + "Timestamp": "2024-05-16T04:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159300", + "Timestamp": "2024-05-16T04:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155600", + "Timestamp": "2024-05-16T04:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099300", + "Timestamp": "2024-05-16T04:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.972700", + "Timestamp": "2024-05-16T04:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.967700", + "Timestamp": "2024-05-16T04:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.842700", + "Timestamp": "2024-05-16T04:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.181300", + "Timestamp": "2024-05-16T04:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177300", + "Timestamp": "2024-05-16T04:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121300", + "Timestamp": "2024-05-16T04:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.189400", + "Timestamp": "2024-05-16T04:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123700", + "Timestamp": "2024-05-16T04:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163700", + "Timestamp": "2024-05-16T04:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063700", + "Timestamp": "2024-05-16T04:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.465500", + "Timestamp": "2024-05-16T04:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.435500", + "Timestamp": "2024-05-16T04:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.335500", + "Timestamp": "2024-05-16T04:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.204500", + "Timestamp": "2024-05-16T04:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.199500", + "Timestamp": "2024-05-16T04:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.074500", + "Timestamp": "2024-05-16T04:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.827900", + "Timestamp": "2024-05-16T04:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.822900", + "Timestamp": "2024-05-16T04:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.697900", + "Timestamp": "2024-05-16T04:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.356500", + "Timestamp": "2024-05-16T04:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.351500", + "Timestamp": "2024-05-16T04:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.226500", + "Timestamp": "2024-05-16T04:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021000", + "Timestamp": "2024-05-16T04:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.217600", + "Timestamp": "2024-05-16T03:56:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T03:55:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.984400", + "Timestamp": "2024-05-16T03:53:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.984400", + "Timestamp": "2024-05-16T03:53:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.979400", + "Timestamp": "2024-05-16T03:53:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.979400", + "Timestamp": "2024-05-16T03:53:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.854400", + "Timestamp": "2024-05-16T03:53:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.854400", + "Timestamp": "2024-05-16T03:53:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.270400", + "Timestamp": "2024-05-16T03:52:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.270400", + "Timestamp": "2024-05-16T03:52:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.848800", + "Timestamp": "2024-05-16T03:51:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102300", + "Timestamp": "2024-05-16T03:49:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063700", + "Timestamp": "2024-05-16T03:48:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003700", + "Timestamp": "2024-05-16T03:48:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003700", + "Timestamp": "2024-05-16T03:48:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.463300", + "Timestamp": "2024-05-16T03:48:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.726400", + "Timestamp": "2024-05-16T03:48:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.795000", + "Timestamp": "2024-05-16T03:47:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.769600", + "Timestamp": "2024-05-16T03:47:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209800", + "Timestamp": "2024-05-16T03:47:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.700900", + "Timestamp": "2024-05-16T03:47:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.695900", + "Timestamp": "2024-05-16T03:47:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.570900", + "Timestamp": "2024-05-16T03:47:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208800", + "Timestamp": "2024-05-16T03:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.754300", + "Timestamp": "2024-05-16T03:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.749300", + "Timestamp": "2024-05-16T03:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.624300", + "Timestamp": "2024-05-16T03:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.333700", + "Timestamp": "2024-05-16T03:47:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.303700", + "Timestamp": "2024-05-16T03:47:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.203700", + "Timestamp": "2024-05-16T03:47:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.478000", + "Timestamp": "2024-05-16T03:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.448000", + "Timestamp": "2024-05-16T03:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.348000", + "Timestamp": "2024-05-16T03:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.698800", + "Timestamp": "2024-05-16T03:47:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.693800", + "Timestamp": "2024-05-16T03:47:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.568800", + "Timestamp": "2024-05-16T03:47:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.234600", + "Timestamp": "2024-05-16T03:47:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.229600", + "Timestamp": "2024-05-16T03:47:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.104600", + "Timestamp": "2024-05-16T03:47:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150400", + "Timestamp": "2024-05-16T03:47:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146700", + "Timestamp": "2024-05-16T03:47:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090400", + "Timestamp": "2024-05-16T03:47:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T03:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T03:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.177100", + "Timestamp": "2024-05-16T03:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173400", + "Timestamp": "2024-05-16T03:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.117100", + "Timestamp": "2024-05-16T03:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.451300", + "Timestamp": "2024-05-16T03:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220500", + "Timestamp": "2024-05-16T03:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T03:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-16T03:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050500", + "Timestamp": "2024-05-16T03:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155600", + "Timestamp": "2024-05-16T03:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151900", + "Timestamp": "2024-05-16T03:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095600", + "Timestamp": "2024-05-16T03:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.957500", + "Timestamp": "2024-05-16T03:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.952500", + "Timestamp": "2024-05-16T03:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.827500", + "Timestamp": "2024-05-16T03:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.674600", + "Timestamp": "2024-05-16T03:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.669600", + "Timestamp": "2024-05-16T03:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.544600", + "Timestamp": "2024-05-16T03:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.386000", + "Timestamp": "2024-05-16T03:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.356000", + "Timestamp": "2024-05-16T03:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.256000", + "Timestamp": "2024-05-16T03:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.452200", + "Timestamp": "2024-05-16T03:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.447200", + "Timestamp": "2024-05-16T03:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.322200", + "Timestamp": "2024-05-16T03:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.732400", + "Timestamp": "2024-05-16T03:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.727400", + "Timestamp": "2024-05-16T03:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.602400", + "Timestamp": "2024-05-16T03:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.738600", + "Timestamp": "2024-05-16T03:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.733600", + "Timestamp": "2024-05-16T03:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.608600", + "Timestamp": "2024-05-16T03:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.678700", + "Timestamp": "2024-05-16T03:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.992300", + "Timestamp": "2024-05-16T03:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229200", + "Timestamp": "2024-05-16T03:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153900", + "Timestamp": "2024-05-16T03:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193900", + "Timestamp": "2024-05-16T03:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093900", + "Timestamp": "2024-05-16T03:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.644700", + "Timestamp": "2024-05-16T03:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.639700", + "Timestamp": "2024-05-16T03:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.514700", + "Timestamp": "2024-05-16T03:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.890300", + "Timestamp": "2024-05-16T03:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.885300", + "Timestamp": "2024-05-16T03:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.760300", + "Timestamp": "2024-05-16T03:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.904600", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.899600", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.774600", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041200", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.182300", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.178300", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122300", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.283700", + "Timestamp": "2024-05-16T03:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.278700", + "Timestamp": "2024-05-16T03:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.153700", + "Timestamp": "2024-05-16T03:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.431900", + "Timestamp": "2024-05-16T03:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.426900", + "Timestamp": "2024-05-16T03:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.301900", + "Timestamp": "2024-05-16T03:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119600", + "Timestamp": "2024-05-16T03:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159600", + "Timestamp": "2024-05-16T03:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059600", + "Timestamp": "2024-05-16T03:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-16T03:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T03:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052400", + "Timestamp": "2024-05-16T03:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.830100", + "Timestamp": "2024-05-16T03:34:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.092500", + "Timestamp": "2024-05-16T03:34:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.198700", + "Timestamp": "2024-05-16T03:33:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417600", + "Timestamp": "2024-05-16T03:33:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.728400", + "Timestamp": "2024-05-16T03:32:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.698400", + "Timestamp": "2024-05-16T03:32:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.598400", + "Timestamp": "2024-05-16T03:32:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.591000", + "Timestamp": "2024-05-16T03:32:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.476800", + "Timestamp": "2024-05-16T03:32:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.405500", + "Timestamp": "2024-05-16T03:32:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.375500", + "Timestamp": "2024-05-16T03:32:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.275500", + "Timestamp": "2024-05-16T03:32:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.753300", + "Timestamp": "2024-05-16T03:32:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.748300", + "Timestamp": "2024-05-16T03:32:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.623300", + "Timestamp": "2024-05-16T03:32:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.442900", + "Timestamp": "2024-05-16T03:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.437900", + "Timestamp": "2024-05-16T03:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.312900", + "Timestamp": "2024-05-16T03:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.451000", + "Timestamp": "2024-05-16T03:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.421000", + "Timestamp": "2024-05-16T03:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.321000", + "Timestamp": "2024-05-16T03:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.359500", + "Timestamp": "2024-05-16T03:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.329500", + "Timestamp": "2024-05-16T03:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.229500", + "Timestamp": "2024-05-16T03:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.564900", + "Timestamp": "2024-05-16T03:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.559900", + "Timestamp": "2024-05-16T03:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.434900", + "Timestamp": "2024-05-16T03:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.863700", + "Timestamp": "2024-05-16T03:32:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.686100", + "Timestamp": "2024-05-16T03:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.681100", + "Timestamp": "2024-05-16T03:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.556100", + "Timestamp": "2024-05-16T03:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103100", + "Timestamp": "2024-05-16T03:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099400", + "Timestamp": "2024-05-16T03:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043100", + "Timestamp": "2024-05-16T03:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.833800", + "Timestamp": "2024-05-16T03:32:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.828800", + "Timestamp": "2024-05-16T03:32:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.703800", + "Timestamp": "2024-05-16T03:32:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.929000", + "Timestamp": "2024-05-16T03:32:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.899000", + "Timestamp": "2024-05-16T03:32:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.799000", + "Timestamp": "2024-05-16T03:32:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.492000", + "Timestamp": "2024-05-16T03:32:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.899700", + "Timestamp": "2024-05-16T03:32:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.869700", + "Timestamp": "2024-05-16T03:32:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.769700", + "Timestamp": "2024-05-16T03:32:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.755900", + "Timestamp": "2024-05-16T03:32:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.725900", + "Timestamp": "2024-05-16T03:32:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.625900", + "Timestamp": "2024-05-16T03:32:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.237300", + "Timestamp": "2024-05-16T03:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.298800", + "Timestamp": "2024-05-16T03:31:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.293800", + "Timestamp": "2024-05-16T03:31:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.168800", + "Timestamp": "2024-05-16T03:31:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077500", + "Timestamp": "2024-05-16T03:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.048500", + "Timestamp": "2024-05-16T03:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017500", + "Timestamp": "2024-05-16T03:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.136900", + "Timestamp": "2024-05-16T03:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.131900", + "Timestamp": "2024-05-16T03:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.006900", + "Timestamp": "2024-05-16T03:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.999800", + "Timestamp": "2024-05-16T03:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.994800", + "Timestamp": "2024-05-16T03:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.869800", + "Timestamp": "2024-05-16T03:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.413400", + "Timestamp": "2024-05-16T03:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.408400", + "Timestamp": "2024-05-16T03:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.283400", + "Timestamp": "2024-05-16T03:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.212600", + "Timestamp": "2024-05-16T03:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.208900", + "Timestamp": "2024-05-16T03:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.152600", + "Timestamp": "2024-05-16T03:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131300", + "Timestamp": "2024-05-16T03:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127600", + "Timestamp": "2024-05-16T03:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071300", + "Timestamp": "2024-05-16T03:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.107300", + "Timestamp": "2024-05-16T03:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093600", + "Timestamp": "2024-05-16T03:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089900", + "Timestamp": "2024-05-16T03:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033600", + "Timestamp": "2024-05-16T03:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-16T03:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T03:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052400", + "Timestamp": "2024-05-16T03:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107900", + "Timestamp": "2024-05-16T03:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147900", + "Timestamp": "2024-05-16T03:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047900", + "Timestamp": "2024-05-16T03:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.427400", + "Timestamp": "2024-05-16T03:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.422400", + "Timestamp": "2024-05-16T03:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.297400", + "Timestamp": "2024-05-16T03:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.948100", + "Timestamp": "2024-05-16T03:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.943100", + "Timestamp": "2024-05-16T03:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.818100", + "Timestamp": "2024-05-16T03:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093100", + "Timestamp": "2024-05-16T03:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089400", + "Timestamp": "2024-05-16T03:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033100", + "Timestamp": "2024-05-16T03:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.885400", + "Timestamp": "2024-05-16T03:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.880400", + "Timestamp": "2024-05-16T03:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.755400", + "Timestamp": "2024-05-16T03:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.411200", + "Timestamp": "2024-05-16T03:18:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077300", + "Timestamp": "2024-05-16T03:17:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073600", + "Timestamp": "2024-05-16T03:17:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017300", + "Timestamp": "2024-05-16T03:17:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.681900", + "Timestamp": "2024-05-16T03:17:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.094700", + "Timestamp": "2024-05-16T03:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225700", + "Timestamp": "2024-05-16T03:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.857600", + "Timestamp": "2024-05-16T03:17:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-16T03:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T03:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046500", + "Timestamp": "2024-05-16T03:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.682200", + "Timestamp": "2024-05-16T03:17:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.677200", + "Timestamp": "2024-05-16T03:17:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.552200", + "Timestamp": "2024-05-16T03:17:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.983800", + "Timestamp": "2024-05-16T03:17:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.978800", + "Timestamp": "2024-05-16T03:17:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.853800", + "Timestamp": "2024-05-16T03:17:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.206200", + "Timestamp": "2024-05-16T03:17:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.246200", + "Timestamp": "2024-05-16T03:17:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146200", + "Timestamp": "2024-05-16T03:17:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.326600", + "Timestamp": "2024-05-16T03:17:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.321600", + "Timestamp": "2024-05-16T03:17:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.196600", + "Timestamp": "2024-05-16T03:17:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.832500", + "Timestamp": "2024-05-16T03:17:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.387600", + "Timestamp": "2024-05-16T03:17:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.382600", + "Timestamp": "2024-05-16T03:17:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.257600", + "Timestamp": "2024-05-16T03:17:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.791300", + "Timestamp": "2024-05-16T03:17:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.786300", + "Timestamp": "2024-05-16T03:17:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.661300", + "Timestamp": "2024-05-16T03:17:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.364200", + "Timestamp": "2024-05-16T03:16:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.359200", + "Timestamp": "2024-05-16T03:16:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.234200", + "Timestamp": "2024-05-16T03:16:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.896600", + "Timestamp": "2024-05-16T03:16:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.891600", + "Timestamp": "2024-05-16T03:16:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.766600", + "Timestamp": "2024-05-16T03:16:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.551800", + "Timestamp": "2024-05-16T03:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.554800", + "Timestamp": "2024-05-16T03:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t1.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.002800", + "Timestamp": "2024-05-16T03:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.795500", + "Timestamp": "2024-05-16T03:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.790500", + "Timestamp": "2024-05-16T03:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.665500", + "Timestamp": "2024-05-16T03:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.939300", + "Timestamp": "2024-05-16T03:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.934300", + "Timestamp": "2024-05-16T03:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.809300", + "Timestamp": "2024-05-16T03:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066000", + "Timestamp": "2024-05-16T03:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.036000", + "Timestamp": "2024-05-16T03:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006000", + "Timestamp": "2024-05-16T03:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.582900", + "Timestamp": "2024-05-16T03:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.577900", + "Timestamp": "2024-05-16T03:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.452900", + "Timestamp": "2024-05-16T03:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.670500", + "Timestamp": "2024-05-16T03:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.665500", + "Timestamp": "2024-05-16T03:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.540500", + "Timestamp": "2024-05-16T03:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.403200", + "Timestamp": "2024-05-16T03:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.398200", + "Timestamp": "2024-05-16T03:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.273200", + "Timestamp": "2024-05-16T03:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.429600", + "Timestamp": "2024-05-16T03:10:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.424600", + "Timestamp": "2024-05-16T03:10:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.299600", + "Timestamp": "2024-05-16T03:10:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.819800", + "Timestamp": "2024-05-16T03:04:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.117100", + "Timestamp": "2024-05-16T03:02:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.112100", + "Timestamp": "2024-05-16T03:02:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.987100", + "Timestamp": "2024-05-16T03:02:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166000", + "Timestamp": "2024-05-16T03:02:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162300", + "Timestamp": "2024-05-16T03:02:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106000", + "Timestamp": "2024-05-16T03:02:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.971000", + "Timestamp": "2024-05-16T03:02:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.966000", + "Timestamp": "2024-05-16T03:02:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.841000", + "Timestamp": "2024-05-16T03:02:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.286400", + "Timestamp": "2024-05-16T03:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281400", + "Timestamp": "2024-05-16T03:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156400", + "Timestamp": "2024-05-16T03:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068200", + "Timestamp": "2024-05-16T03:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.064500", + "Timestamp": "2024-05-16T03:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008200", + "Timestamp": "2024-05-16T03:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.446500", + "Timestamp": "2024-05-16T03:02:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.441500", + "Timestamp": "2024-05-16T03:02:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.316500", + "Timestamp": "2024-05-16T03:02:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168800", + "Timestamp": "2024-05-16T03:02:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165100", + "Timestamp": "2024-05-16T03:02:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108800", + "Timestamp": "2024-05-16T03:02:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.844000", + "Timestamp": "2024-05-16T03:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.839000", + "Timestamp": "2024-05-16T03:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.714000", + "Timestamp": "2024-05-16T03:02:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.249100", + "Timestamp": "2024-05-16T03:02:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150200", + "Timestamp": "2024-05-16T03:01:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146500", + "Timestamp": "2024-05-16T03:01:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090200", + "Timestamp": "2024-05-16T03:01:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.856100", + "Timestamp": "2024-05-16T03:01:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.851100", + "Timestamp": "2024-05-16T03:01:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.726100", + "Timestamp": "2024-05-16T03:01:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.345500", + "Timestamp": "2024-05-16T03:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.340500", + "Timestamp": "2024-05-16T03:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.215500", + "Timestamp": "2024-05-16T03:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.539200", + "Timestamp": "2024-05-16T03:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.820600", + "Timestamp": "2024-05-16T03:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.815600", + "Timestamp": "2024-05-16T03:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.690600", + "Timestamp": "2024-05-16T03:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101900", + "Timestamp": "2024-05-16T03:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097900", + "Timestamp": "2024-05-16T03:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041900", + "Timestamp": "2024-05-16T03:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.472700", + "Timestamp": "2024-05-16T03:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.467700", + "Timestamp": "2024-05-16T03:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.342700", + "Timestamp": "2024-05-16T03:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.892700", + "Timestamp": "2024-05-16T03:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.887700", + "Timestamp": "2024-05-16T03:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.762700", + "Timestamp": "2024-05-16T03:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.279300", + "Timestamp": "2024-05-16T03:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.249300", + "Timestamp": "2024-05-16T03:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149300", + "Timestamp": "2024-05-16T03:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.631000", + "Timestamp": "2024-05-16T03:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.595200", + "Timestamp": "2024-05-16T03:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.626000", + "Timestamp": "2024-05-16T03:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.590200", + "Timestamp": "2024-05-16T03:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.501000", + "Timestamp": "2024-05-16T03:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.465200", + "Timestamp": "2024-05-16T03:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.984400", + "Timestamp": "2024-05-16T02:54:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.979400", + "Timestamp": "2024-05-16T02:54:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.854400", + "Timestamp": "2024-05-16T02:54:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.697600", + "Timestamp": "2024-05-16T02:50:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.328000", + "Timestamp": "2024-05-16T02:49:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-16T02:49:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.792000", + "Timestamp": "2024-05-16T02:48:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.376000", + "Timestamp": "2024-05-16T02:48:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.635200", + "Timestamp": "2024-05-16T02:48:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.716800", + "Timestamp": "2024-05-16T02:48:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T02:47:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T02:47:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145200", + "Timestamp": "2024-05-16T02:47:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141500", + "Timestamp": "2024-05-16T02:47:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085200", + "Timestamp": "2024-05-16T02:47:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.186400", + "Timestamp": "2024-05-16T02:47:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.182400", + "Timestamp": "2024-05-16T02:47:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126400", + "Timestamp": "2024-05-16T02:47:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.287600", + "Timestamp": "2024-05-16T02:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.282600", + "Timestamp": "2024-05-16T02:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.157600", + "Timestamp": "2024-05-16T02:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T02:47:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T02:47:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046800", + "Timestamp": "2024-05-16T02:47:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.237500", + "Timestamp": "2024-05-16T02:47:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232500", + "Timestamp": "2024-05-16T02:47:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T02:47:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.921900", + "Timestamp": "2024-05-16T02:47:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.916900", + "Timestamp": "2024-05-16T02:47:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.791900", + "Timestamp": "2024-05-16T02:47:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.860400", + "Timestamp": "2024-05-16T02:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.790900", + "Timestamp": "2024-05-16T02:46:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.760900", + "Timestamp": "2024-05-16T02:46:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.660900", + "Timestamp": "2024-05-16T02:46:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.583900", + "Timestamp": "2024-05-16T02:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.553900", + "Timestamp": "2024-05-16T02:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.453900", + "Timestamp": "2024-05-16T02:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075200", + "Timestamp": "2024-05-16T02:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.046200", + "Timestamp": "2024-05-16T02:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015200", + "Timestamp": "2024-05-16T02:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.149500", + "Timestamp": "2024-05-16T02:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.144500", + "Timestamp": "2024-05-16T02:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.019500", + "Timestamp": "2024-05-16T02:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.785600", + "Timestamp": "2024-05-16T02:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.780600", + "Timestamp": "2024-05-16T02:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.655600", + "Timestamp": "2024-05-16T02:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.274900", + "Timestamp": "2024-05-16T02:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176500", + "Timestamp": "2024-05-16T02:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172800", + "Timestamp": "2024-05-16T02:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116500", + "Timestamp": "2024-05-16T02:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.098900", + "Timestamp": "2024-05-16T02:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.093900", + "Timestamp": "2024-05-16T02:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.968900", + "Timestamp": "2024-05-16T02:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T02:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.584000", + "Timestamp": "2024-05-16T02:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.373100", + "Timestamp": "2024-05-16T02:32:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.368100", + "Timestamp": "2024-05-16T02:32:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.243100", + "Timestamp": "2024-05-16T02:32:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021400", + "Timestamp": "2024-05-16T02:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.381000", + "Timestamp": "2024-05-16T02:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.376000", + "Timestamp": "2024-05-16T02:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.251000", + "Timestamp": "2024-05-16T02:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068300", + "Timestamp": "2024-05-16T02:32:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039300", + "Timestamp": "2024-05-16T02:32:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008300", + "Timestamp": "2024-05-16T02:32:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.424400", + "Timestamp": "2024-05-16T02:31:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.282800", + "Timestamp": "2024-05-16T02:31:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.277800", + "Timestamp": "2024-05-16T02:31:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.152800", + "Timestamp": "2024-05-16T02:31:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.750400", + "Timestamp": "2024-05-16T02:31:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.857600", + "Timestamp": "2024-05-16T02:31:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.461500", + "Timestamp": "2024-05-16T02:31:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.456500", + "Timestamp": "2024-05-16T02:31:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.331500", + "Timestamp": "2024-05-16T02:31:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.252800", + "Timestamp": "2024-05-16T02:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.247800", + "Timestamp": "2024-05-16T02:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.122800", + "Timestamp": "2024-05-16T02:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211300", + "Timestamp": "2024-05-16T02:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.182300", + "Timestamp": "2024-05-16T02:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.178600", + "Timestamp": "2024-05-16T02:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122300", + "Timestamp": "2024-05-16T02:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.272100", + "Timestamp": "2024-05-16T02:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267100", + "Timestamp": "2024-05-16T02:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142100", + "Timestamp": "2024-05-16T02:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.406400", + "Timestamp": "2024-05-16T02:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.137900", + "Timestamp": "2024-05-16T02:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.385900", + "Timestamp": "2024-05-16T02:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.380900", + "Timestamp": "2024-05-16T02:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.255900", + "Timestamp": "2024-05-16T02:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.455000", + "Timestamp": "2024-05-16T02:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T02:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092300", + "Timestamp": "2024-05-16T02:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036000", + "Timestamp": "2024-05-16T02:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.904500", + "Timestamp": "2024-05-16T02:27:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.364200", + "Timestamp": "2024-05-16T02:19:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.452500", + "Timestamp": "2024-05-16T02:19:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.664000", + "Timestamp": "2024-05-16T02:17:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.270400", + "Timestamp": "2024-05-16T02:17:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.589900", + "Timestamp": "2024-05-16T02:17:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T02:17:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "4.909900", + "Timestamp": "2024-05-16T02:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.064600", + "Timestamp": "2024-05-16T02:17:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.587700", + "Timestamp": "2024-05-16T02:16:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.557700", + "Timestamp": "2024-05-16T02:16:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.457700", + "Timestamp": "2024-05-16T02:16:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.860800", + "Timestamp": "2024-05-16T02:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067800", + "Timestamp": "2024-05-16T02:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038800", + "Timestamp": "2024-05-16T02:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007800", + "Timestamp": "2024-05-16T02:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.569200", + "Timestamp": "2024-05-16T02:04:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.705600", + "Timestamp": "2024-05-16T02:03:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.839200", + "Timestamp": "2024-05-16T02:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138000", + "Timestamp": "2024-05-16T02:02:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T02:02:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078000", + "Timestamp": "2024-05-16T02:02:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.750400", + "Timestamp": "2024-05-16T02:01:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121000", + "Timestamp": "2024-05-16T02:01:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117000", + "Timestamp": "2024-05-16T02:01:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061000", + "Timestamp": "2024-05-16T02:01:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.415800", + "Timestamp": "2024-05-16T02:01:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.089300", + "Timestamp": "2024-05-16T02:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.059300", + "Timestamp": "2024-05-16T02:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.959300", + "Timestamp": "2024-05-16T02:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.191500", + "Timestamp": "2024-05-16T02:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.187800", + "Timestamp": "2024-05-16T02:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131500", + "Timestamp": "2024-05-16T02:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-16T02:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146100", + "Timestamp": "2024-05-16T02:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046100", + "Timestamp": "2024-05-16T02:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.792000", + "Timestamp": "2024-05-16T01:49:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.705600", + "Timestamp": "2024-05-16T01:48:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.697600", + "Timestamp": "2024-05-16T01:48:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.396600", + "Timestamp": "2024-05-16T01:47:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.391600", + "Timestamp": "2024-05-16T01:47:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.266600", + "Timestamp": "2024-05-16T01:47:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.454700", + "Timestamp": "2024-05-16T01:47:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.182100", + "Timestamp": "2024-05-16T01:47:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135500", + "Timestamp": "2024-05-16T01:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131800", + "Timestamp": "2024-05-16T01:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075500", + "Timestamp": "2024-05-16T01:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T01:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.257600", + "Timestamp": "2024-05-16T01:34:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.145600", + "Timestamp": "2024-05-16T01:34:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T01:33:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.023700", + "Timestamp": "2024-05-16T01:32:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072200", + "Timestamp": "2024-05-16T01:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043200", + "Timestamp": "2024-05-16T01:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012200", + "Timestamp": "2024-05-16T01:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071600", + "Timestamp": "2024-05-16T01:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042600", + "Timestamp": "2024-05-16T01:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011600", + "Timestamp": "2024-05-16T01:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.452500", + "Timestamp": "2024-05-16T01:32:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.784600", + "Timestamp": "2024-05-16T01:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.476900", + "Timestamp": "2024-05-16T01:22:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.900600", + "Timestamp": "2024-05-16T01:19:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.678400", + "Timestamp": "2024-05-16T01:19:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.289600", + "Timestamp": "2024-05-16T01:19:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.328000", + "Timestamp": "2024-05-16T01:19:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.900600", + "Timestamp": "2024-05-16T01:18:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.708900", + "Timestamp": "2024-05-16T01:18:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225700", + "Timestamp": "2024-05-16T01:18:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.863200", + "Timestamp": "2024-05-16T01:18:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.727400", + "Timestamp": "2024-05-16T01:17:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171800", + "Timestamp": "2024-05-16T01:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168100", + "Timestamp": "2024-05-16T01:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111800", + "Timestamp": "2024-05-16T01:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.452800", + "Timestamp": "2024-05-16T01:17:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.207200", + "Timestamp": "2024-05-16T01:17:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.247200", + "Timestamp": "2024-05-16T01:17:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147200", + "Timestamp": "2024-05-16T01:17:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102200", + "Timestamp": "2024-05-16T01:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098500", + "Timestamp": "2024-05-16T01:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042200", + "Timestamp": "2024-05-16T01:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.591000", + "Timestamp": "2024-05-16T01:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.500100", + "Timestamp": "2024-05-16T01:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.037000", + "Timestamp": "2024-05-16T01:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122100", + "Timestamp": "2024-05-16T01:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118400", + "Timestamp": "2024-05-16T01:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062100", + "Timestamp": "2024-05-16T01:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.678700", + "Timestamp": "2024-05-16T01:03:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.476600", + "Timestamp": "2024-05-16T01:02:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.878400", + "Timestamp": "2024-05-16T00:53:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.064400", + "Timestamp": "2024-05-16T00:53:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.034400", + "Timestamp": "2024-05-16T00:53:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.934400", + "Timestamp": "2024-05-16T00:53:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.235900", + "Timestamp": "2024-05-16T00:50:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.591000", + "Timestamp": "2024-05-16T00:48:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.427200", + "Timestamp": "2024-05-16T00:48:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.664000", + "Timestamp": "2024-05-16T00:47:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.738900", + "Timestamp": "2024-05-16T00:47:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.733900", + "Timestamp": "2024-05-16T00:47:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.608900", + "Timestamp": "2024-05-16T00:47:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229200", + "Timestamp": "2024-05-16T00:47:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.204500", + "Timestamp": "2024-05-16T00:47:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.846400", + "Timestamp": "2024-05-16T00:47:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.660200", + "Timestamp": "2024-05-16T00:47:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093400", + "Timestamp": "2024-05-16T00:47:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089700", + "Timestamp": "2024-05-16T00:47:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033400", + "Timestamp": "2024-05-16T00:47:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.923200", + "Timestamp": "2024-05-16T00:47:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200500", + "Timestamp": "2024-05-16T00:47:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196800", + "Timestamp": "2024-05-16T00:47:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140500", + "Timestamp": "2024-05-16T00:47:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.857600", + "Timestamp": "2024-05-16T00:46:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.841200", + "Timestamp": "2024-05-16T00:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.451400", + "Timestamp": "2024-05-16T00:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073400", + "Timestamp": "2024-05-16T00:32:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044400", + "Timestamp": "2024-05-16T00:32:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013400", + "Timestamp": "2024-05-16T00:32:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200800", + "Timestamp": "2024-05-16T00:32:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.240800", + "Timestamp": "2024-05-16T00:32:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140800", + "Timestamp": "2024-05-16T00:32:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.678700", + "Timestamp": "2024-05-16T00:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.126600", + "Timestamp": "2024-05-16T00:32:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T00:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103600", + "Timestamp": "2024-05-16T00:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047600", + "Timestamp": "2024-05-16T00:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216000", + "Timestamp": "2024-05-16T00:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.422700", + "Timestamp": "2024-05-16T00:20:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.692800", + "Timestamp": "2024-05-16T00:19:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.411200", + "Timestamp": "2024-05-16T00:18:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119900", + "Timestamp": "2024-05-16T00:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116200", + "Timestamp": "2024-05-16T00:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059900", + "Timestamp": "2024-05-16T00:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080000", + "Timestamp": "2024-05-16T00:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076300", + "Timestamp": "2024-05-16T00:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020000", + "Timestamp": "2024-05-16T00:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.855700", + "Timestamp": "2024-05-16T00:16:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.064100", + "Timestamp": "2024-05-16T00:12:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.064100", + "Timestamp": "2024-05-16T00:12:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.059100", + "Timestamp": "2024-05-16T00:12:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.059100", + "Timestamp": "2024-05-16T00:12:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.934100", + "Timestamp": "2024-05-16T00:12:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.934100", + "Timestamp": "2024-05-16T00:12:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.822100", + "Timestamp": "2024-05-16T00:12:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.822100", + "Timestamp": "2024-05-16T00:12:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.822100", + "Timestamp": "2024-05-16T00:12:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.446500", + "Timestamp": "2024-05-16T00:04:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.441500", + "Timestamp": "2024-05-16T00:04:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.316500", + "Timestamp": "2024-05-16T00:04:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T00:03:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.257600", + "Timestamp": "2024-05-16T00:02:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.892300", + "Timestamp": "2024-05-16T00:02:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.381800", + "Timestamp": "2024-05-16T00:02:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297700", + "Timestamp": "2024-05-16T00:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293700", + "Timestamp": "2024-05-16T00:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.237700", + "Timestamp": "2024-05-16T00:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107900", + "Timestamp": "2024-05-15T23:47:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.558400", + "Timestamp": "2024-05-15T23:47:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209200", + "Timestamp": "2024-05-15T23:47:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.857600", + "Timestamp": "2024-05-15T23:47:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.333400", + "Timestamp": "2024-05-15T23:47:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.303400", + "Timestamp": "2024-05-15T23:47:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.203400", + "Timestamp": "2024-05-15T23:47:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.376000", + "Timestamp": "2024-05-15T23:47:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.846400", + "Timestamp": "2024-05-15T23:47:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075000", + "Timestamp": "2024-05-15T23:47:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.046000", + "Timestamp": "2024-05-15T23:47:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015000", + "Timestamp": "2024-05-15T23:47:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.739200", + "Timestamp": "2024-05-15T23:47:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.553800", + "Timestamp": "2024-05-15T23:47:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.523800", + "Timestamp": "2024-05-15T23:47:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.423800", + "Timestamp": "2024-05-15T23:47:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.068800", + "Timestamp": "2024-05-15T23:47:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.403400", + "Timestamp": "2024-05-15T23:46:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.715200", + "Timestamp": "2024-05-15T23:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441100", + "Timestamp": "2024-05-15T23:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.927100", + "Timestamp": "2024-05-15T23:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.922100", + "Timestamp": "2024-05-15T23:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.797100", + "Timestamp": "2024-05-15T23:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097400", + "Timestamp": "2024-05-15T23:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093700", + "Timestamp": "2024-05-15T23:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037400", + "Timestamp": "2024-05-15T23:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096700", + "Timestamp": "2024-05-15T23:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136700", + "Timestamp": "2024-05-15T23:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036700", + "Timestamp": "2024-05-15T23:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.245900", + "Timestamp": "2024-05-15T23:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.241900", + "Timestamp": "2024-05-15T23:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.185900", + "Timestamp": "2024-05-15T23:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.548500", + "Timestamp": "2024-05-15T23:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.543500", + "Timestamp": "2024-05-15T23:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.418500", + "Timestamp": "2024-05-15T23:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.006100", + "Timestamp": "2024-05-15T23:34:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.563300", + "Timestamp": "2024-05-15T23:33:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213600", + "Timestamp": "2024-05-15T23:33:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.499800", + "Timestamp": "2024-05-15T23:32:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.687600", + "Timestamp": "2024-05-15T23:32:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.large", + "ProductDescription": "Windows", + "SpotPrice": "0.150500", + "Timestamp": "2024-05-15T23:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.760400", + "Timestamp": "2024-05-15T23:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.791400", + "Timestamp": "2024-05-15T23:28:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.388700", + "Timestamp": "2024-05-15T23:19:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-15T23:19:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-15T23:19:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.644800", + "Timestamp": "2024-05-15T23:19:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.194400", + "Timestamp": "2024-05-15T23:19:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.194400", + "Timestamp": "2024-05-15T23:19:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069800", + "Timestamp": "2024-05-15T23:18:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069800", + "Timestamp": "2024-05-15T23:18:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066100", + "Timestamp": "2024-05-15T23:18:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066100", + "Timestamp": "2024-05-15T23:18:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009800", + "Timestamp": "2024-05-15T23:18:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009800", + "Timestamp": "2024-05-15T23:18:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.554800", + "Timestamp": "2024-05-15T23:18:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169100", + "Timestamp": "2024-05-15T23:18:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169100", + "Timestamp": "2024-05-15T23:18:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164100", + "Timestamp": "2024-05-15T23:18:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164100", + "Timestamp": "2024-05-15T23:18:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039100", + "Timestamp": "2024-05-15T23:18:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039100", + "Timestamp": "2024-05-15T23:18:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079600", + "Timestamp": "2024-05-15T23:18:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075900", + "Timestamp": "2024-05-15T23:18:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019600", + "Timestamp": "2024-05-15T23:18:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010400", + "Timestamp": "2024-05-15T23:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070700", + "Timestamp": "2024-05-15T23:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067000", + "Timestamp": "2024-05-15T23:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010700", + "Timestamp": "2024-05-15T23:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.006100", + "Timestamp": "2024-05-15T23:17:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.563300", + "Timestamp": "2024-05-15T23:17:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206400", + "Timestamp": "2024-05-15T23:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.429200", + "Timestamp": "2024-05-15T23:10:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.429200", + "Timestamp": "2024-05-15T23:10:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-15T23:08:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-15T23:08:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-15T23:08:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.998200", + "Timestamp": "2024-05-15T23:07:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.998200", + "Timestamp": "2024-05-15T23:07:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.993200", + "Timestamp": "2024-05-15T23:07:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.993200", + "Timestamp": "2024-05-15T23:07:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.868200", + "Timestamp": "2024-05-15T23:07:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.868200", + "Timestamp": "2024-05-15T23:07:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.756200", + "Timestamp": "2024-05-15T23:07:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.756200", + "Timestamp": "2024-05-15T23:07:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119200", + "Timestamp": "2024-05-15T23:06:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119200", + "Timestamp": "2024-05-15T23:06:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.854400", + "Timestamp": "2024-05-15T23:06:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.612000", + "Timestamp": "2024-05-15T23:05:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.612000", + "Timestamp": "2024-05-15T23:05:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.909900", + "Timestamp": "2024-05-15T23:02:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.758400", + "Timestamp": "2024-05-15T23:02:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.207400", + "Timestamp": "2024-05-15T23:02:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.247400", + "Timestamp": "2024-05-15T23:02:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147400", + "Timestamp": "2024-05-15T23:02:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.678700", + "Timestamp": "2024-05-15T23:02:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-15T23:02:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-15T23:02:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046900", + "Timestamp": "2024-05-15T23:02:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.528600", + "Timestamp": "2024-05-15T23:02:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.598300", + "Timestamp": "2024-05-15T23:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.593300", + "Timestamp": "2024-05-15T23:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.468300", + "Timestamp": "2024-05-15T23:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225100", + "Timestamp": "2024-05-15T22:53:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.204200", + "Timestamp": "2024-05-15T22:50:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-15T22:49:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.422400", + "Timestamp": "2024-05-15T22:48:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.822100", + "Timestamp": "2024-05-15T22:48:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.640600", + "Timestamp": "2024-05-15T22:48:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.513600", + "Timestamp": "2024-05-15T22:48:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.476400", + "Timestamp": "2024-05-15T22:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.613100", + "Timestamp": "2024-05-15T22:47:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162600", + "Timestamp": "2024-05-15T22:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158600", + "Timestamp": "2024-05-15T22:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-15T22:47:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-15T22:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-15T22:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047500", + "Timestamp": "2024-05-15T22:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091000", + "Timestamp": "2024-05-15T22:47:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087300", + "Timestamp": "2024-05-15T22:47:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031000", + "Timestamp": "2024-05-15T22:47:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-15T22:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.020800", + "Timestamp": "2024-05-15T22:33:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.442800", + "Timestamp": "2024-05-15T22:22:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.442800", + "Timestamp": "2024-05-15T22:22:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.442800", + "Timestamp": "2024-05-15T22:22:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.628800", + "Timestamp": "2024-05-15T22:18:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129100", + "Timestamp": "2024-05-15T22:17:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-15T22:17:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069100", + "Timestamp": "2024-05-15T22:17:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.458400", + "Timestamp": "2024-05-15T22:17:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-15T22:17:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.452800", + "Timestamp": "2024-05-15T22:17:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-15T22:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152700", + "Timestamp": "2024-05-15T22:17:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148700", + "Timestamp": "2024-05-15T22:17:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092700", + "Timestamp": "2024-05-15T22:17:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.806600", + "Timestamp": "2024-05-15T22:16:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208000", + "Timestamp": "2024-05-15T22:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.023100", + "Timestamp": "2024-05-15T22:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.097200", + "Timestamp": "2024-05-15T22:08:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.097200", + "Timestamp": "2024-05-15T22:08:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.067200", + "Timestamp": "2024-05-15T22:08:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.067200", + "Timestamp": "2024-05-15T22:08:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967200", + "Timestamp": "2024-05-15T22:08:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967200", + "Timestamp": "2024-05-15T22:08:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.439200", + "Timestamp": "2024-05-15T22:08:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.439200", + "Timestamp": "2024-05-15T22:08:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.411200", + "Timestamp": "2024-05-15T22:07:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.411200", + "Timestamp": "2024-05-15T22:07:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.320300", + "Timestamp": "2024-05-15T22:07:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.320300", + "Timestamp": "2024-05-15T22:07:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212200", + "Timestamp": "2024-05-15T22:06:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.755400", + "Timestamp": "2024-05-15T22:05:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.755400", + "Timestamp": "2024-05-15T22:05:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.755400", + "Timestamp": "2024-05-15T22:05:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-15T22:05:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.092800", + "Timestamp": "2024-05-15T22:05:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.408400", + "Timestamp": "2024-05-15T22:04:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.923200", + "Timestamp": "2024-05-15T22:04:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.627600", + "Timestamp": "2024-05-15T22:03:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.622600", + "Timestamp": "2024-05-15T22:03:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.497600", + "Timestamp": "2024-05-15T22:03:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118500", + "Timestamp": "2024-05-15T22:03:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114800", + "Timestamp": "2024-05-15T22:03:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058500", + "Timestamp": "2024-05-15T22:03:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.265900", + "Timestamp": "2024-05-15T22:03:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.265900", + "Timestamp": "2024-05-15T22:03:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.572800", + "Timestamp": "2024-05-15T22:02:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212200", + "Timestamp": "2024-05-15T22:02:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.715200", + "Timestamp": "2024-05-15T22:02:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.490200", + "Timestamp": "2024-05-15T22:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.411200", + "Timestamp": "2024-05-15T22:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.023900", + "Timestamp": "2024-05-15T22:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.219500", + "Timestamp": "2024-05-15T21:53:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.219500", + "Timestamp": "2024-05-15T21:53:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.428800", + "Timestamp": "2024-05-15T21:50:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.822100", + "Timestamp": "2024-05-15T21:49:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.822100", + "Timestamp": "2024-05-15T21:49:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.450300", + "Timestamp": "2024-05-15T21:48:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.064100", + "Timestamp": "2024-05-15T21:48:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.059100", + "Timestamp": "2024-05-15T21:48:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.934100", + "Timestamp": "2024-05-15T21:48:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.613500", + "Timestamp": "2024-05-15T21:47:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.608500", + "Timestamp": "2024-05-15T21:47:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.483500", + "Timestamp": "2024-05-15T21:47:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.708900", + "Timestamp": "2024-05-15T21:47:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.584000", + "Timestamp": "2024-05-15T21:47:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079700", + "Timestamp": "2024-05-15T21:47:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119700", + "Timestamp": "2024-05-15T21:47:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019700", + "Timestamp": "2024-05-15T21:47:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.542400", + "Timestamp": "2024-05-15T21:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.542400", + "Timestamp": "2024-05-15T21:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.542400", + "Timestamp": "2024-05-15T21:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.801100", + "Timestamp": "2024-05-15T21:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068300", + "Timestamp": "2024-05-15T21:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.064600", + "Timestamp": "2024-05-15T21:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008300", + "Timestamp": "2024-05-15T21:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.902600", + "Timestamp": "2024-05-15T21:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.866600", + "Timestamp": "2024-05-15T21:44:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.866600", + "Timestamp": "2024-05-15T21:44:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.866600", + "Timestamp": "2024-05-15T21:44:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.580600", + "Timestamp": "2024-05-15T21:43:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.580600", + "Timestamp": "2024-05-15T21:43:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.575600", + "Timestamp": "2024-05-15T21:43:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.575600", + "Timestamp": "2024-05-15T21:43:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.450600", + "Timestamp": "2024-05-15T21:43:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.450600", + "Timestamp": "2024-05-15T21:43:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.331200", + "Timestamp": "2024-05-15T21:43:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.331200", + "Timestamp": "2024-05-15T21:43:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.251200", + "Timestamp": "2024-05-15T21:42:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.251200", + "Timestamp": "2024-05-15T21:42:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.116800", + "Timestamp": "2024-05-15T21:42:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.953800", + "Timestamp": "2024-05-15T21:41:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431600", + "Timestamp": "2024-05-15T21:39:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431600", + "Timestamp": "2024-05-15T21:39:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.304000", + "Timestamp": "2024-05-15T21:39:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.274000", + "Timestamp": "2024-05-15T21:39:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.174000", + "Timestamp": "2024-05-15T21:39:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.806000", + "Timestamp": "2024-05-15T21:39:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.806000", + "Timestamp": "2024-05-15T21:39:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.251200", + "Timestamp": "2024-05-15T21:39:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.304900", + "Timestamp": "2024-05-15T21:38:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.304900", + "Timestamp": "2024-05-15T21:38:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-15T21:38:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-15T21:38:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-15T21:37:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-15T21:37:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.678700", + "Timestamp": "2024-05-15T21:37:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.422700", + "Timestamp": "2024-05-15T21:37:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.981200", + "Timestamp": "2024-05-15T21:35:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214400", + "Timestamp": "2024-05-15T21:35:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214400", + "Timestamp": "2024-05-15T21:35:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.038200", + "Timestamp": "2024-05-15T21:35:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.038200", + "Timestamp": "2024-05-15T21:35:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.609800", + "Timestamp": "2024-05-15T21:34:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.609800", + "Timestamp": "2024-05-15T21:34:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.376000", + "Timestamp": "2024-05-15T21:33:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-15T21:32:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.510400", + "Timestamp": "2024-05-15T21:32:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103200", + "Timestamp": "2024-05-15T21:32:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108800", + "Timestamp": "2024-05-15T21:32:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148800", + "Timestamp": "2024-05-15T21:32:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048800", + "Timestamp": "2024-05-15T21:32:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.205600", + "Timestamp": "2024-05-15T21:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062900", + "Timestamp": "2024-05-15T21:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002900", + "Timestamp": "2024-05-15T21:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002900", + "Timestamp": "2024-05-15T21:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.572800", + "Timestamp": "2024-05-15T21:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.878100", + "Timestamp": "2024-05-15T21:27:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.878100", + "Timestamp": "2024-05-15T21:27:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.064100", + "Timestamp": "2024-05-15T21:27:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.059100", + "Timestamp": "2024-05-15T21:27:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.934100", + "Timestamp": "2024-05-15T21:27:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.907700", + "Timestamp": "2024-05-15T21:26:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.907700", + "Timestamp": "2024-05-15T21:26:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.418000", + "Timestamp": "2024-05-15T21:26:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.413000", + "Timestamp": "2024-05-15T21:26:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.288000", + "Timestamp": "2024-05-15T21:26:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211400", + "Timestamp": "2024-05-15T21:26:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.205600", + "Timestamp": "2024-05-15T21:20:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.885600", + "Timestamp": "2024-05-15T21:20:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.885600", + "Timestamp": "2024-05-15T21:20:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.885600", + "Timestamp": "2024-05-15T21:20:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.981200", + "Timestamp": "2024-05-15T21:19:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.981200", + "Timestamp": "2024-05-15T21:19:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-15T21:19:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-15T21:19:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-15T21:19:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.267200", + "Timestamp": "2024-05-15T21:18:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.223200", + "Timestamp": "2024-05-15T21:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.223200", + "Timestamp": "2024-05-15T21:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.218200", + "Timestamp": "2024-05-15T21:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.218200", + "Timestamp": "2024-05-15T21:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.093200", + "Timestamp": "2024-05-15T21:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.093200", + "Timestamp": "2024-05-15T21:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209000", + "Timestamp": "2024-05-15T21:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-15T21:17:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.633600", + "Timestamp": "2024-05-15T21:17:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140400", + "Timestamp": "2024-05-15T21:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136700", + "Timestamp": "2024-05-15T21:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080400", + "Timestamp": "2024-05-15T21:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-15T21:16:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-15T21:16:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-15T21:16:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.713500", + "Timestamp": "2024-05-15T21:16:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.428800", + "Timestamp": "2024-05-15T21:16:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.238500", + "Timestamp": "2024-05-15T21:16:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.238500", + "Timestamp": "2024-05-15T21:16:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.727200", + "Timestamp": "2024-05-15T21:15:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.727200", + "Timestamp": "2024-05-15T21:15:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.542400", + "Timestamp": "2024-05-15T21:15:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.542400", + "Timestamp": "2024-05-15T21:15:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.542400", + "Timestamp": "2024-05-15T21:15:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.903000", + "Timestamp": "2024-05-15T21:15:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.903000", + "Timestamp": "2024-05-15T21:15:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.715200", + "Timestamp": "2024-05-15T21:12:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.715200", + "Timestamp": "2024-05-15T21:12:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.182100", + "Timestamp": "2024-05-15T21:11:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.417800", + "Timestamp": "2024-05-15T21:11:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.450400", + "Timestamp": "2024-05-15T21:11:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.814400", + "Timestamp": "2024-05-15T21:11:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.510800", + "Timestamp": "2024-05-15T21:11:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.510800", + "Timestamp": "2024-05-15T21:11:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.510800", + "Timestamp": "2024-05-15T21:11:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.467200", + "Timestamp": "2024-05-15T21:11:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.411200", + "Timestamp": "2024-05-15T21:11:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.403300", + "Timestamp": "2024-05-15T21:11:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.012100", + "Timestamp": "2024-05-15T21:10:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.012100", + "Timestamp": "2024-05-15T21:10:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.844800", + "Timestamp": "2024-05-15T21:10:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.531800", + "Timestamp": "2024-05-15T21:10:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.531800", + "Timestamp": "2024-05-15T21:10:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.992000", + "Timestamp": "2024-05-15T21:09:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.992000", + "Timestamp": "2024-05-15T21:09:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103200", + "Timestamp": "2024-05-15T21:08:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223100", + "Timestamp": "2024-05-15T21:04:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061700", + "Timestamp": "2024-05-15T21:04:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001700", + "Timestamp": "2024-05-15T21:04:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001700", + "Timestamp": "2024-05-15T21:04:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.845400", + "Timestamp": "2024-05-15T21:03:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.896000", + "Timestamp": "2024-05-15T21:02:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t1.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.019900", + "Timestamp": "2024-05-15T21:02:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.882200", + "Timestamp": "2024-05-15T21:02:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.343900", + "Timestamp": "2024-05-15T21:02:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.443200", + "Timestamp": "2024-05-15T21:02:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.303200", + "Timestamp": "2024-05-15T21:01:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298200", + "Timestamp": "2024-05-15T21:01:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.173200", + "Timestamp": "2024-05-15T21:01:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.145600", + "Timestamp": "2024-05-15T21:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.392200", + "Timestamp": "2024-05-15T21:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.387200", + "Timestamp": "2024-05-15T21:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.262200", + "Timestamp": "2024-05-15T21:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.424600", + "Timestamp": "2024-05-15T21:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.419600", + "Timestamp": "2024-05-15T21:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.294600", + "Timestamp": "2024-05-15T21:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.403200", + "Timestamp": "2024-05-15T20:59:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.584000", + "Timestamp": "2024-05-15T20:49:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.145300", + "Timestamp": "2024-05-15T20:48:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.356800", + "Timestamp": "2024-05-15T20:47:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.385600", + "Timestamp": "2024-05-15T20:47:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-15T20:47:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207500", + "Timestamp": "2024-05-15T20:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.863200", + "Timestamp": "2024-05-15T20:47:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.934400", + "Timestamp": "2024-05-15T20:47:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.230800", + "Timestamp": "2024-05-15T20:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.554400", + "Timestamp": "2024-05-15T20:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062500", + "Timestamp": "2024-05-15T20:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-15T20:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-15T20:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.145600", + "Timestamp": "2024-05-15T20:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439200", + "Timestamp": "2024-05-15T20:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.116800", + "Timestamp": "2024-05-15T20:46:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.675900", + "Timestamp": "2024-05-15T20:33:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.569200", + "Timestamp": "2024-05-15T20:33:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.515200", + "Timestamp": "2024-05-15T20:33:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.068800", + "Timestamp": "2024-05-15T20:32:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.395000", + "Timestamp": "2024-05-15T20:32:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.494600", + "Timestamp": "2024-05-15T20:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.464600", + "Timestamp": "2024-05-15T20:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.364600", + "Timestamp": "2024-05-15T20:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.745300", + "Timestamp": "2024-05-15T20:32:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066300", + "Timestamp": "2024-05-15T20:32:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.006300", + "Timestamp": "2024-05-15T20:32:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006300", + "Timestamp": "2024-05-15T20:32:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.145600", + "Timestamp": "2024-05-15T20:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.949900", + "Timestamp": "2024-05-15T20:22:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.944900", + "Timestamp": "2024-05-15T20:22:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.819900", + "Timestamp": "2024-05-15T20:22:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.750400", + "Timestamp": "2024-05-15T20:18:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.528600", + "Timestamp": "2024-05-15T20:18:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.273300", + "Timestamp": "2024-05-15T20:17:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.380900", + "Timestamp": "2024-05-15T20:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.375900", + "Timestamp": "2024-05-15T20:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.250900", + "Timestamp": "2024-05-15T20:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.443200", + "Timestamp": "2024-05-15T20:17:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.147400", + "Timestamp": "2024-05-15T20:17:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.963300", + "Timestamp": "2024-05-15T20:17:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.958300", + "Timestamp": "2024-05-15T20:17:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.833300", + "Timestamp": "2024-05-15T20:17:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069400", + "Timestamp": "2024-05-15T20:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040400", + "Timestamp": "2024-05-15T20:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009400", + "Timestamp": "2024-05-15T20:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.814400", + "Timestamp": "2024-05-15T20:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079900", + "Timestamp": "2024-05-15T20:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076200", + "Timestamp": "2024-05-15T20:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019900", + "Timestamp": "2024-05-15T20:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-15T20:03:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.664000", + "Timestamp": "2024-05-15T20:02:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.462900", + "Timestamp": "2024-05-15T20:02:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.457900", + "Timestamp": "2024-05-15T20:02:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.332900", + "Timestamp": "2024-05-15T20:02:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.270400", + "Timestamp": "2024-05-15T20:02:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.020800", + "Timestamp": "2024-05-15T20:02:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.934400", + "Timestamp": "2024-05-15T20:02:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-15T20:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.204500", + "Timestamp": "2024-05-15T20:02:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.411200", + "Timestamp": "2024-05-15T20:02:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.763500", + "Timestamp": "2024-05-15T20:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.204200", + "Timestamp": "2024-05-15T19:52:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.455000", + "Timestamp": "2024-05-15T19:49:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437600", + "Timestamp": "2024-05-15T19:49:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.727400", + "Timestamp": "2024-05-15T19:48:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-15T19:47:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-15T19:47:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048700", + "Timestamp": "2024-05-15T19:47:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063900", + "Timestamp": "2024-05-15T19:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003900", + "Timestamp": "2024-05-15T19:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003900", + "Timestamp": "2024-05-15T19:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217400", + "Timestamp": "2024-05-15T19:46:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.041600", + "Timestamp": "2024-05-15T19:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.342500", + "Timestamp": "2024-05-15T19:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.312500", + "Timestamp": "2024-05-15T19:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212500", + "Timestamp": "2024-05-15T19:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.092800", + "Timestamp": "2024-05-15T19:34:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.672400", + "Timestamp": "2024-05-15T19:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.667400", + "Timestamp": "2024-05-15T19:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.542400", + "Timestamp": "2024-05-15T19:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.419200", + "Timestamp": "2024-05-15T19:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-15T19:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.980500", + "Timestamp": "2024-05-15T19:32:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100100", + "Timestamp": "2024-05-15T19:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096400", + "Timestamp": "2024-05-15T19:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040100", + "Timestamp": "2024-05-15T19:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.690900", + "Timestamp": "2024-05-15T19:18:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215900", + "Timestamp": "2024-05-15T19:18:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.776500", + "Timestamp": "2024-05-15T19:17:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.776500", + "Timestamp": "2024-05-15T19:17:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.430800", + "Timestamp": "2024-05-15T19:17:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.425800", + "Timestamp": "2024-05-15T19:17:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.300800", + "Timestamp": "2024-05-15T19:17:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.364200", + "Timestamp": "2024-05-15T19:17:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.976700", + "Timestamp": "2024-05-15T19:17:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.971700", + "Timestamp": "2024-05-15T19:17:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.846700", + "Timestamp": "2024-05-15T19:17:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099100", + "Timestamp": "2024-05-15T19:17:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139100", + "Timestamp": "2024-05-15T19:17:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039100", + "Timestamp": "2024-05-15T19:17:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.077500", + "Timestamp": "2024-05-15T19:17:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.072500", + "Timestamp": "2024-05-15T19:17:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.947500", + "Timestamp": "2024-05-15T19:17:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.878400", + "Timestamp": "2024-05-15T19:16:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.963300", + "Timestamp": "2024-05-15T19:12:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.958300", + "Timestamp": "2024-05-15T19:12:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.833300", + "Timestamp": "2024-05-15T19:12:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.703600", + "Timestamp": "2024-05-15T19:10:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.703600", + "Timestamp": "2024-05-15T19:10:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.179200", + "Timestamp": "2024-05-15T19:04:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.688000", + "Timestamp": "2024-05-15T19:03:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.926600", + "Timestamp": "2024-05-15T19:02:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.926600", + "Timestamp": "2024-05-15T19:02:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.848800", + "Timestamp": "2024-05-15T19:01:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.886400", + "Timestamp": "2024-05-15T18:34:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.546400", + "Timestamp": "2024-05-15T18:34:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.835200", + "Timestamp": "2024-05-15T18:33:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.589900", + "Timestamp": "2024-05-15T18:32:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.023100", + "Timestamp": "2024-05-15T18:32:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.635200", + "Timestamp": "2024-05-15T18:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.534400", + "Timestamp": "2024-05-15T18:32:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.636600", + "Timestamp": "2024-05-15T18:32:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.072800", + "Timestamp": "2024-05-15T18:31:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-15T18:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069700", + "Timestamp": "2024-05-15T18:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041000", + "Timestamp": "2024-05-15T18:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009700", + "Timestamp": "2024-05-15T18:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083400", + "Timestamp": "2024-05-15T18:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079700", + "Timestamp": "2024-05-15T18:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023400", + "Timestamp": "2024-05-15T18:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-15T18:29:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-15T18:29:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.099400", + "Timestamp": "2024-05-15T18:27:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.099400", + "Timestamp": "2024-05-15T18:27:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.099400", + "Timestamp": "2024-05-15T18:27:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005300", + "Timestamp": "2024-05-15T18:26:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005300", + "Timestamp": "2024-05-15T18:26:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005300", + "Timestamp": "2024-05-15T18:26:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.680300", + "Timestamp": "2024-05-15T18:18:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220500", + "Timestamp": "2024-05-15T18:18:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.496000", + "Timestamp": "2024-05-15T18:18:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.205600", + "Timestamp": "2024-05-15T18:18:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.981200", + "Timestamp": "2024-05-15T18:17:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.039700", + "Timestamp": "2024-05-15T18:17:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.191300", + "Timestamp": "2024-05-15T18:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.231300", + "Timestamp": "2024-05-15T18:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131300", + "Timestamp": "2024-05-15T18:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.320300", + "Timestamp": "2024-05-15T18:17:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.857600", + "Timestamp": "2024-05-15T18:16:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.860800", + "Timestamp": "2024-05-15T18:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.379200", + "Timestamp": "2024-05-15T18:04:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.863200", + "Timestamp": "2024-05-15T18:02:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.682800", + "Timestamp": "2024-05-15T18:02:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.677800", + "Timestamp": "2024-05-15T18:02:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.552800", + "Timestamp": "2024-05-15T18:02:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077300", + "Timestamp": "2024-05-15T18:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073600", + "Timestamp": "2024-05-15T18:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017300", + "Timestamp": "2024-05-15T18:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.836800", + "Timestamp": "2024-05-15T18:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061600", + "Timestamp": "2024-05-15T18:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001600", + "Timestamp": "2024-05-15T18:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001600", + "Timestamp": "2024-05-15T18:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.037000", + "Timestamp": "2024-05-15T18:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418400", + "Timestamp": "2024-05-15T18:00:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.145600", + "Timestamp": "2024-05-15T18:00:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.145600", + "Timestamp": "2024-05-15T18:00:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.602200", + "Timestamp": "2024-05-15T18:00:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.602200", + "Timestamp": "2024-05-15T18:00:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.133000", + "Timestamp": "2024-05-15T18:00:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.133000", + "Timestamp": "2024-05-15T18:00:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.414200", + "Timestamp": "2024-05-15T17:59:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.414200", + "Timestamp": "2024-05-15T17:59:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.430400", + "Timestamp": "2024-05-15T17:59:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.493200", + "Timestamp": "2024-05-15T17:59:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.805200", + "Timestamp": "2024-05-15T17:59:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.805200", + "Timestamp": "2024-05-15T17:59:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-15T17:59:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-15T17:59:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.293000", + "Timestamp": "2024-05-15T17:59:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.204600", + "Timestamp": "2024-05-15T17:59:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.204600", + "Timestamp": "2024-05-15T17:59:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.204600", + "Timestamp": "2024-05-15T17:59:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.552900", + "Timestamp": "2024-05-15T17:58:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.552900", + "Timestamp": "2024-05-15T17:58:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.552900", + "Timestamp": "2024-05-15T17:58:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.998200", + "Timestamp": "2024-05-15T17:58:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.993200", + "Timestamp": "2024-05-15T17:58:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.868200", + "Timestamp": "2024-05-15T17:58:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.756200", + "Timestamp": "2024-05-15T17:58:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.411900", + "Timestamp": "2024-05-15T17:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.980500", + "Timestamp": "2024-05-15T17:47:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209000", + "Timestamp": "2024-05-15T17:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.415600", + "Timestamp": "2024-05-15T17:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.902600", + "Timestamp": "2024-05-15T17:35:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214400", + "Timestamp": "2024-05-15T17:34:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.364200", + "Timestamp": "2024-05-15T17:33:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.896000", + "Timestamp": "2024-05-15T17:33:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.656000", + "Timestamp": "2024-05-15T17:33:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.064100", + "Timestamp": "2024-05-15T17:32:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.059100", + "Timestamp": "2024-05-15T17:32:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.934100", + "Timestamp": "2024-05-15T17:32:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.251200", + "Timestamp": "2024-05-15T17:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.145600", + "Timestamp": "2024-05-15T17:32:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063100", + "Timestamp": "2024-05-15T17:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003100", + "Timestamp": "2024-05-15T17:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003100", + "Timestamp": "2024-05-15T17:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.528600", + "Timestamp": "2024-05-15T17:32:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.844800", + "Timestamp": "2024-05-15T17:32:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-15T17:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.680300", + "Timestamp": "2024-05-15T17:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.238200", + "Timestamp": "2024-05-15T17:28:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.609800", + "Timestamp": "2024-05-15T17:26:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.756800", + "Timestamp": "2024-05-15T17:25:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-15T17:21:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-15T17:21:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211400", + "Timestamp": "2024-05-15T17:20:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437600", + "Timestamp": "2024-05-15T17:20:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.776500", + "Timestamp": "2024-05-15T17:18:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109100", + "Timestamp": "2024-05-15T17:18:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-15T17:18:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-15T17:18:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.896000", + "Timestamp": "2024-05-15T17:17:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.835500", + "Timestamp": "2024-05-15T17:17:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.609800", + "Timestamp": "2024-05-15T17:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.451300", + "Timestamp": "2024-05-15T17:16:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.872700", + "Timestamp": "2024-05-15T17:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.814400", + "Timestamp": "2024-05-15T17:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.270400", + "Timestamp": "2024-05-15T17:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.020800", + "Timestamp": "2024-05-15T17:13:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.972800", + "Timestamp": "2024-05-15T17:13:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-15T17:12:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-15T17:12:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-15T17:12:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221400", + "Timestamp": "2024-05-15T17:12:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221400", + "Timestamp": "2024-05-15T17:12:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221400", + "Timestamp": "2024-05-15T17:12:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.436300", + "Timestamp": "2024-05-15T17:12:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.756800", + "Timestamp": "2024-05-15T17:12:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.998800", + "Timestamp": "2024-05-15T17:12:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.968800", + "Timestamp": "2024-05-15T17:12:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.868800", + "Timestamp": "2024-05-15T17:12:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119100", + "Timestamp": "2024-05-15T17:12:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119100", + "Timestamp": "2024-05-15T17:12:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119100", + "Timestamp": "2024-05-15T17:12:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.101800", + "Timestamp": "2024-05-15T17:12:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.101800", + "Timestamp": "2024-05-15T17:12:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225300", + "Timestamp": "2024-05-15T17:11:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.490200", + "Timestamp": "2024-05-15T17:10:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.443200", + "Timestamp": "2024-05-15T17:10:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.380500", + "Timestamp": "2024-05-15T17:10:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.380500", + "Timestamp": "2024-05-15T17:10:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.375500", + "Timestamp": "2024-05-15T17:10:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.375500", + "Timestamp": "2024-05-15T17:10:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.250500", + "Timestamp": "2024-05-15T17:10:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.250500", + "Timestamp": "2024-05-15T17:10:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.138500", + "Timestamp": "2024-05-15T17:10:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.138500", + "Timestamp": "2024-05-15T17:10:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.473200", + "Timestamp": "2024-05-15T17:10:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.806600", + "Timestamp": "2024-05-15T17:04:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.219600", + "Timestamp": "2024-05-15T17:03:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.219600", + "Timestamp": "2024-05-15T17:03:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215900", + "Timestamp": "2024-05-15T17:03:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.588400", + "Timestamp": "2024-05-15T17:02:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.419700", + "Timestamp": "2024-05-15T17:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.145300", + "Timestamp": "2024-05-15T17:02:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.422400", + "Timestamp": "2024-05-15T17:02:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.424400", + "Timestamp": "2024-05-15T17:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.364200", + "Timestamp": "2024-05-15T16:54:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.364200", + "Timestamp": "2024-05-15T16:54:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.750400", + "Timestamp": "2024-05-15T16:50:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-15T16:49:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.692800", + "Timestamp": "2024-05-15T16:49:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m1.small", + "ProductDescription": "Windows", + "SpotPrice": "0.051000", + "Timestamp": "2024-05-15T16:49:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.846400", + "Timestamp": "2024-05-15T16:48:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.411200", + "Timestamp": "2024-05-15T16:48:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.097100", + "Timestamp": "2024-05-15T16:48:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.092100", + "Timestamp": "2024-05-15T16:48:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967100", + "Timestamp": "2024-05-15T16:48:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m1.large", + "ProductDescription": "Windows", + "SpotPrice": "0.199100", + "Timestamp": "2024-05-15T16:47:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010400", + "Timestamp": "2024-05-15T16:47:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307600", + "Timestamp": "2024-05-15T16:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.277600", + "Timestamp": "2024-05-15T16:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177600", + "Timestamp": "2024-05-15T16:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.863700", + "Timestamp": "2024-05-15T16:47:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074900", + "Timestamp": "2024-05-15T16:47:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071200", + "Timestamp": "2024-05-15T16:47:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014900", + "Timestamp": "2024-05-15T16:47:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208800", + "Timestamp": "2024-05-15T16:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-15T16:46:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039800", + "Timestamp": "2024-05-15T16:46:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008800", + "Timestamp": "2024-05-15T16:46:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.673600", + "Timestamp": "2024-05-15T16:44:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.673600", + "Timestamp": "2024-05-15T16:44:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.450300", + "Timestamp": "2024-05-15T16:42:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.640600", + "Timestamp": "2024-05-15T16:34:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.703600", + "Timestamp": "2024-05-15T16:33:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.225600", + "Timestamp": "2024-05-15T16:32:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071200", + "Timestamp": "2024-05-15T16:32:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042200", + "Timestamp": "2024-05-15T16:32:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011200", + "Timestamp": "2024-05-15T16:32:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.496000", + "Timestamp": "2024-05-15T16:32:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.840200", + "Timestamp": "2024-05-15T16:32:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.863700", + "Timestamp": "2024-05-15T16:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103200", + "Timestamp": "2024-05-15T16:32:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.520500", + "Timestamp": "2024-05-15T16:32:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.612800", + "Timestamp": "2024-05-15T16:19:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.878400", + "Timestamp": "2024-05-15T16:18:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.715200", + "Timestamp": "2024-05-15T16:18:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.217600", + "Timestamp": "2024-05-15T16:18:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010400", + "Timestamp": "2024-05-15T16:18:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-15T16:17:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209200", + "Timestamp": "2024-05-15T16:17:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.205600", + "Timestamp": "2024-05-15T16:17:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.830100", + "Timestamp": "2024-05-15T16:17:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.764300", + "Timestamp": "2024-05-15T16:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.644800", + "Timestamp": "2024-05-15T16:16:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.456000", + "Timestamp": "2024-05-15T16:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.646500", + "Timestamp": "2024-05-15T16:03:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.572800", + "Timestamp": "2024-05-15T16:03:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.424400", + "Timestamp": "2024-05-15T16:02:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.270400", + "Timestamp": "2024-05-15T16:02:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.756800", + "Timestamp": "2024-05-15T16:02:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.094700", + "Timestamp": "2024-05-15T16:01:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.454700", + "Timestamp": "2024-05-15T16:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.872700", + "Timestamp": "2024-05-15T15:50:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.872700", + "Timestamp": "2024-05-15T15:50:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.701700", + "Timestamp": "2024-05-15T15:48:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214400", + "Timestamp": "2024-05-15T15:47:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5zn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112700", + "Timestamp": "2024-05-15T15:47:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.726400", + "Timestamp": "2024-05-15T15:47:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "p2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.355800", + "Timestamp": "2024-05-15T15:47:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.835500", + "Timestamp": "2024-05-15T15:46:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.589600", + "Timestamp": "2024-05-15T15:46:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.454700", + "Timestamp": "2024-05-15T15:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068000", + "Timestamp": "2024-05-15T15:46:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039000", + "Timestamp": "2024-05-15T15:46:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008000", + "Timestamp": "2024-05-15T15:46:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.304900", + "Timestamp": "2024-05-15T15:44:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.304900", + "Timestamp": "2024-05-15T15:44:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.064100", + "Timestamp": "2024-05-15T15:40:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.064100", + "Timestamp": "2024-05-15T15:40:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.064100", + "Timestamp": "2024-05-15T15:40:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.034100", + "Timestamp": "2024-05-15T15:40:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.034100", + "Timestamp": "2024-05-15T15:40:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.034100", + "Timestamp": "2024-05-15T15:40:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.934100", + "Timestamp": "2024-05-15T15:40:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.934100", + "Timestamp": "2024-05-15T15:40:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.934100", + "Timestamp": "2024-05-15T15:40:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.822100", + "Timestamp": "2024-05-15T15:40:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.822100", + "Timestamp": "2024-05-15T15:40:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.822100", + "Timestamp": "2024-05-15T15:40:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.721300", + "Timestamp": "2024-05-15T15:40:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.476900", + "Timestamp": "2024-05-15T15:38:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-15T15:37:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-15T15:37:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.783000", + "Timestamp": "2024-05-15T15:36:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208000", + "Timestamp": "2024-05-15T15:36:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.097100", + "Timestamp": "2024-05-15T15:34:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.097100", + "Timestamp": "2024-05-15T15:34:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.067100", + "Timestamp": "2024-05-15T15:34:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.067100", + "Timestamp": "2024-05-15T15:34:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967100", + "Timestamp": "2024-05-15T15:34:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967100", + "Timestamp": "2024-05-15T15:34:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.911100", + "Timestamp": "2024-05-15T15:33:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.911100", + "Timestamp": "2024-05-15T15:33:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.911100", + "Timestamp": "2024-05-15T15:33:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-15T15:33:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.814400", + "Timestamp": "2024-05-15T15:33:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.289600", + "Timestamp": "2024-05-15T15:33:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.006100", + "Timestamp": "2024-05-15T15:33:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.041000", + "Timestamp": "2024-05-15T15:33:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.041000", + "Timestamp": "2024-05-15T15:33:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.517600", + "Timestamp": "2024-05-15T15:33:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.220900", + "Timestamp": "2024-05-15T15:33:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.395200", + "Timestamp": "2024-05-15T15:32:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.517600", + "Timestamp": "2024-05-15T15:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.644800", + "Timestamp": "2024-05-15T15:32:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.836800", + "Timestamp": "2024-05-15T15:32:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098200", + "Timestamp": "2024-05-15T15:32:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138200", + "Timestamp": "2024-05-15T15:32:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038200", + "Timestamp": "2024-05-15T15:32:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.041600", + "Timestamp": "2024-05-15T15:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.041600", + "Timestamp": "2024-05-15T15:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021000", + "Timestamp": "2024-05-15T15:31:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021100", + "Timestamp": "2024-05-15T15:31:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069100", + "Timestamp": "2024-05-15T15:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040100", + "Timestamp": "2024-05-15T15:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009100", + "Timestamp": "2024-05-15T15:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.090000", + "Timestamp": "2024-05-15T15:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.090000", + "Timestamp": "2024-05-15T15:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.478400", + "Timestamp": "2024-05-15T15:27:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.676900", + "Timestamp": "2024-05-15T15:27:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.931600", + "Timestamp": "2024-05-15T15:27:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.926600", + "Timestamp": "2024-05-15T15:27:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.801600", + "Timestamp": "2024-05-15T15:27:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107900", + "Timestamp": "2024-05-15T15:27:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.900600", + "Timestamp": "2024-05-15T15:26:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.420100", + "Timestamp": "2024-05-15T15:26:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "a1.metal", + "ProductDescription": "Windows", + "SpotPrice": "0.783000", + "Timestamp": "2024-05-15T15:25:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.246600", + "Timestamp": "2024-05-15T15:19:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.220900", + "Timestamp": "2024-05-15T15:18:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.356800", + "Timestamp": "2024-05-15T15:17:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.412800", + "Timestamp": "2024-05-15T15:17:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.430400", + "Timestamp": "2024-05-15T15:17:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.270400", + "Timestamp": "2024-05-15T15:17:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.678400", + "Timestamp": "2024-05-15T15:16:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.180900", + "Timestamp": "2024-05-15T15:16:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177200", + "Timestamp": "2024-05-15T15:16:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120900", + "Timestamp": "2024-05-15T15:16:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.750400", + "Timestamp": "2024-05-15T15:04:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.828400", + "Timestamp": "2024-05-15T15:03:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.430800", + "Timestamp": "2024-05-15T15:02:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.425800", + "Timestamp": "2024-05-15T15:02:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.300800", + "Timestamp": "2024-05-15T15:02:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.198700", + "Timestamp": "2024-05-15T15:02:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.251200", + "Timestamp": "2024-05-15T15:02:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.138500", + "Timestamp": "2024-05-15T15:02:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.468700", + "Timestamp": "2024-05-15T15:01:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.463700", + "Timestamp": "2024-05-15T15:01:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.338700", + "Timestamp": "2024-05-15T15:01:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062700", + "Timestamp": "2024-05-15T15:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002700", + "Timestamp": "2024-05-15T15:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002700", + "Timestamp": "2024-05-15T15:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.687600", + "Timestamp": "2024-05-15T15:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.612800", + "Timestamp": "2024-05-15T14:50:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.688000", + "Timestamp": "2024-05-15T14:49:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.205600", + "Timestamp": "2024-05-15T14:49:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.689600", + "Timestamp": "2024-05-15T14:49:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.689600", + "Timestamp": "2024-05-15T14:49:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.430800", + "Timestamp": "2024-05-15T14:49:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.425800", + "Timestamp": "2024-05-15T14:49:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.300800", + "Timestamp": "2024-05-15T14:49:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.869600", + "Timestamp": "2024-05-15T14:49:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.353900", + "Timestamp": "2024-05-15T14:48:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.953600", + "Timestamp": "2024-05-15T14:48:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.835500", + "Timestamp": "2024-05-15T14:47:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.185000", + "Timestamp": "2024-05-15T14:47:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.818300", + "Timestamp": "2024-05-15T14:47:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.860800", + "Timestamp": "2024-05-15T14:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207100", + "Timestamp": "2024-05-15T14:47:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225100", + "Timestamp": "2024-05-15T14:47:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219600", + "Timestamp": "2024-05-15T14:47:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209000", + "Timestamp": "2024-05-15T14:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229200", + "Timestamp": "2024-05-15T14:34:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219600", + "Timestamp": "2024-05-15T14:33:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.379200", + "Timestamp": "2024-05-15T14:33:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.101800", + "Timestamp": "2024-05-15T14:33:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.289600", + "Timestamp": "2024-05-15T14:33:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115400", + "Timestamp": "2024-05-15T14:33:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.825600", + "Timestamp": "2024-05-15T14:33:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.758400", + "Timestamp": "2024-05-15T14:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010500", + "Timestamp": "2024-05-15T14:21:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010500", + "Timestamp": "2024-05-15T14:21:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010500", + "Timestamp": "2024-05-15T14:21:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.716800", + "Timestamp": "2024-05-15T14:19:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-15T14:18:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-15T14:17:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.909900", + "Timestamp": "2024-05-15T14:17:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.020800", + "Timestamp": "2024-05-15T14:17:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.801100", + "Timestamp": "2024-05-15T14:17:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211200", + "Timestamp": "2024-05-15T14:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.403300", + "Timestamp": "2024-05-15T14:17:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225300", + "Timestamp": "2024-05-15T14:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.443300", + "Timestamp": "2024-05-15T14:16:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.438300", + "Timestamp": "2024-05-15T14:16:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.313300", + "Timestamp": "2024-05-15T14:16:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431800", + "Timestamp": "2024-05-15T14:16:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.582400", + "Timestamp": "2024-05-15T14:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.715200", + "Timestamp": "2024-05-15T14:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.270400", + "Timestamp": "2024-05-15T14:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.165600", + "Timestamp": "2024-05-15T14:13:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.165600", + "Timestamp": "2024-05-15T14:13:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.347200", + "Timestamp": "2024-05-15T14:04:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.057300", + "Timestamp": "2024-05-15T14:03:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.041600", + "Timestamp": "2024-05-15T14:03:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102500", + "Timestamp": "2024-05-15T14:02:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-15T14:02:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042500", + "Timestamp": "2024-05-15T14:02:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.023800", + "Timestamp": "2024-05-15T14:02:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147800", + "Timestamp": "2024-05-15T14:02:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144100", + "Timestamp": "2024-05-15T14:02:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087800", + "Timestamp": "2024-05-15T14:02:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.678700", + "Timestamp": "2024-05-15T14:01:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.795000", + "Timestamp": "2024-05-15T14:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416000", + "Timestamp": "2024-05-15T14:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.452500", + "Timestamp": "2024-05-15T13:49:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.068800", + "Timestamp": "2024-05-15T13:48:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.145300", + "Timestamp": "2024-05-15T13:47:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.832000", + "Timestamp": "2024-05-15T13:47:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.057300", + "Timestamp": "2024-05-15T13:47:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-15T13:47:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.534400", + "Timestamp": "2024-05-15T13:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.328000", + "Timestamp": "2024-05-15T13:36:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.328000", + "Timestamp": "2024-05-15T13:36:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.328000", + "Timestamp": "2024-05-15T13:36:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.636600", + "Timestamp": "2024-05-15T13:35:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.546400", + "Timestamp": "2024-05-15T13:35:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.832400", + "Timestamp": "2024-05-15T13:34:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.415600", + "Timestamp": "2024-05-15T13:34:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.097100", + "Timestamp": "2024-05-15T13:34:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.092100", + "Timestamp": "2024-05-15T13:34:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967100", + "Timestamp": "2024-05-15T13:34:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.090000", + "Timestamp": "2024-05-15T13:33:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.328000", + "Timestamp": "2024-05-15T13:33:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.558400", + "Timestamp": "2024-05-15T13:33:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.179200", + "Timestamp": "2024-05-15T13:33:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.514000", + "Timestamp": "2024-05-15T13:32:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.509000", + "Timestamp": "2024-05-15T13:32:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.384000", + "Timestamp": "2024-05-15T13:32:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416000", + "Timestamp": "2024-05-15T13:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.037000", + "Timestamp": "2024-05-15T13:32:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.182100", + "Timestamp": "2024-05-15T13:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.656000", + "Timestamp": "2024-05-15T13:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.835500", + "Timestamp": "2024-05-15T13:19:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.835200", + "Timestamp": "2024-05-15T13:19:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-15T13:18:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.490600", + "Timestamp": "2024-05-15T13:17:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.934400", + "Timestamp": "2024-05-15T13:17:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.450400", + "Timestamp": "2024-05-15T13:17:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.415000", + "Timestamp": "2024-05-15T13:17:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206400", + "Timestamp": "2024-05-15T13:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.530000", + "Timestamp": "2024-05-15T13:17:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.500000", + "Timestamp": "2024-05-15T13:17:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.400000", + "Timestamp": "2024-05-15T13:17:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.832000", + "Timestamp": "2024-05-15T13:16:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.836800", + "Timestamp": "2024-05-15T13:16:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.257600", + "Timestamp": "2024-05-15T13:16:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.023800", + "Timestamp": "2024-05-15T13:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.660200", + "Timestamp": "2024-05-15T13:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061800", + "Timestamp": "2024-05-15T13:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001800", + "Timestamp": "2024-05-15T13:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001800", + "Timestamp": "2024-05-15T13:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.904500", + "Timestamp": "2024-05-15T13:12:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-15T13:08:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-15T13:08:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-15T13:08:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112700", + "Timestamp": "2024-05-15T13:04:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.347200", + "Timestamp": "2024-05-15T13:04:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.419600", + "Timestamp": "2024-05-15T13:04:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.270400", + "Timestamp": "2024-05-15T13:04:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.947400", + "Timestamp": "2024-05-15T13:03:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.917400", + "Timestamp": "2024-05-15T13:03:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.817400", + "Timestamp": "2024-05-15T13:03:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.364200", + "Timestamp": "2024-05-15T13:02:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.515200", + "Timestamp": "2024-05-15T13:02:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.680300", + "Timestamp": "2024-05-15T13:01:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.476800", + "Timestamp": "2024-05-15T13:00:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.476800", + "Timestamp": "2024-05-15T13:00:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102300", + "Timestamp": "2024-05-15T12:59:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.608800", + "Timestamp": "2024-05-15T12:50:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.832000", + "Timestamp": "2024-05-15T12:49:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432000", + "Timestamp": "2024-05-15T12:48:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.499800", + "Timestamp": "2024-05-15T12:48:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213600", + "Timestamp": "2024-05-15T12:48:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.515200", + "Timestamp": "2024-05-15T12:47:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.640600", + "Timestamp": "2024-05-15T12:47:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.403400", + "Timestamp": "2024-05-15T12:47:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.859600", + "Timestamp": "2024-05-15T12:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.854600", + "Timestamp": "2024-05-15T12:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.729600", + "Timestamp": "2024-05-15T12:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.838400", + "Timestamp": "2024-05-15T12:33:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.145600", + "Timestamp": "2024-05-15T12:33:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.100000", + "Timestamp": "2024-05-15T12:32:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.201600", + "Timestamp": "2024-05-15T12:32:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-15T12:32:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217400", + "Timestamp": "2024-05-15T12:32:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.179200", + "Timestamp": "2024-05-15T12:32:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107900", + "Timestamp": "2024-05-15T12:32:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.097100", + "Timestamp": "2024-05-15T12:31:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.092100", + "Timestamp": "2024-05-15T12:31:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967100", + "Timestamp": "2024-05-15T12:31:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.430400", + "Timestamp": "2024-05-15T12:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.792000", + "Timestamp": "2024-05-15T12:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.758400", + "Timestamp": "2024-05-15T12:27:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089300", + "Timestamp": "2024-05-15T12:18:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.060300", + "Timestamp": "2024-05-15T12:18:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "a1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029300", + "Timestamp": "2024-05-15T12:18:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070000", + "Timestamp": "2024-05-15T12:17:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041000", + "Timestamp": "2024-05-15T12:17:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010000", + "Timestamp": "2024-05-15T12:17:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418300", + "Timestamp": "2024-05-15T12:09:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418300", + "Timestamp": "2024-05-15T12:09:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.439100", + "Timestamp": "2024-05-15T12:08:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.745300", + "Timestamp": "2024-05-15T12:03:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.818300", + "Timestamp": "2024-05-15T12:03:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.344000", + "Timestamp": "2024-05-15T12:03:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109100", + "Timestamp": "2024-05-15T12:03:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212200", + "Timestamp": "2024-05-15T12:03:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.351800", + "Timestamp": "2024-05-15T12:02:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-15T12:02:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.999600", + "Timestamp": "2024-05-15T12:02:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.999600", + "Timestamp": "2024-05-15T12:02:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418000", + "Timestamp": "2024-05-15T12:01:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.660200", + "Timestamp": "2024-05-15T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213200", + "Timestamp": "2024-05-15T12:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.646500", + "Timestamp": "2024-05-15T11:48:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.839200", + "Timestamp": "2024-05-15T11:47:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.513600", + "Timestamp": "2024-05-15T11:47:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-15T11:47:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.822400", + "Timestamp": "2024-05-15T11:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.716800", + "Timestamp": "2024-05-15T11:35:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.981200", + "Timestamp": "2024-05-15T11:34:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.546400", + "Timestamp": "2024-05-15T11:34:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.420100", + "Timestamp": "2024-05-15T11:33:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.467200", + "Timestamp": "2024-05-15T11:32:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-15T11:32:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.832000", + "Timestamp": "2024-05-15T11:31:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.409200", + "Timestamp": "2024-05-15T11:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.992000", + "Timestamp": "2024-05-15T11:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.064100", + "Timestamp": "2024-05-15T11:25:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.059100", + "Timestamp": "2024-05-15T11:25:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.934100", + "Timestamp": "2024-05-15T11:25:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214400", + "Timestamp": "2024-05-15T11:19:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.636600", + "Timestamp": "2024-05-15T11:19:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.756800", + "Timestamp": "2024-05-15T11:19:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.716800", + "Timestamp": "2024-05-15T11:18:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.270400", + "Timestamp": "2024-05-15T11:17:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-15T11:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.102800", + "Timestamp": "2024-05-15T11:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.097800", + "Timestamp": "2024-05-15T11:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.972800", + "Timestamp": "2024-05-15T11:17:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.293000", + "Timestamp": "2024-05-15T11:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.273300", + "Timestamp": "2024-05-15T11:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061600", + "Timestamp": "2024-05-15T11:16:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001600", + "Timestamp": "2024-05-15T11:16:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001600", + "Timestamp": "2024-05-15T11:16:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "14.227100", + "Timestamp": "2024-04-11T13:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "13.567000", + "Timestamp": "2024-04-11T10:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "p2.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "13.537000", + "Timestamp": "2024-04-11T10:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "13.437000", + "Timestamp": "2024-04-11T10:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.487000", + "Timestamp": "2024-02-28T06:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.482000", + "Timestamp": "2024-02-28T06:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.357000", + "Timestamp": "2024-02-28T06:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-1a", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.782500", + "Timestamp": "2024-02-28T04:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.176900", + "Timestamp": "2024-05-16T14:02:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.171900", + "Timestamp": "2024-05-16T14:02:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.046900", + "Timestamp": "2024-05-16T14:02:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.273200", + "Timestamp": "2024-05-16T14:02:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.268200", + "Timestamp": "2024-05-16T14:02:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.143200", + "Timestamp": "2024-05-16T14:02:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.217700", + "Timestamp": "2024-05-16T14:01:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.213700", + "Timestamp": "2024-05-16T14:01:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157700", + "Timestamp": "2024-05-16T14:01:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "a1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124200", + "Timestamp": "2024-05-16T14:01:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "a1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120500", + "Timestamp": "2024-05-16T14:01:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "a1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064200", + "Timestamp": "2024-05-16T14:01:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T14:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T14:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047400", + "Timestamp": "2024-05-16T14:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.190200", + "Timestamp": "2024-05-16T14:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.787600", + "Timestamp": "2024-05-16T14:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.182100", + "Timestamp": "2024-05-16T14:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.045700", + "Timestamp": "2024-05-16T14:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.040700", + "Timestamp": "2024-05-16T14:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.915700", + "Timestamp": "2024-05-16T14:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.052200", + "Timestamp": "2024-05-16T14:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.047200", + "Timestamp": "2024-05-16T14:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.922200", + "Timestamp": "2024-05-16T14:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.030300", + "Timestamp": "2024-05-16T14:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160400", + "Timestamp": "2024-05-16T14:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156700", + "Timestamp": "2024-05-16T14:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100400", + "Timestamp": "2024-05-16T14:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.736900", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.731900", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.606900", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117200", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113500", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057200", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135500", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131800", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075500", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101300", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045000", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.771400", + "Timestamp": "2024-05-16T14:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.766400", + "Timestamp": "2024-05-16T14:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.641400", + "Timestamp": "2024-05-16T14:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.406000", + "Timestamp": "2024-05-16T14:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.401000", + "Timestamp": "2024-05-16T14:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.276000", + "Timestamp": "2024-05-16T14:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.203100", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.198100", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.073100", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307000", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.277000", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177000", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.414000", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.759200", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.754200", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.629200", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.007000", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.150200", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.145200", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.020200", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.561000", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.531000", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.431000", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.693300", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432800", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.634300", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.845400", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.840400", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.715400", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.113300", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.108300", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.983300", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.937700", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.220500", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.216500", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.160500", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.495500", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.855400", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.850400", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.725400", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.626200", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.621200", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.496200", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.501300", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.515900", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.849800", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.844800", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.719800", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.500400", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.039000", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.626600", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.507800", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.502800", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.377800", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.823600", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.069100", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.064100", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.939100", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.023000", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.018000", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.893000", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.152700", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.147700", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.022700", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.147900", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.771500", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.741500", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.641500", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.880500", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.875500", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.750500", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.966100", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.273100", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.268100", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.143100", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.193700", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.188700", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.063700", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.049100", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.019100", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.919100", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.717800", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.712800", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.587800", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.327100", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.322100", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.197100", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.606900", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.601900", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.476900", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.869900", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.864900", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.739900", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133600", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129900", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073600", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.737200", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.732200", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.607200", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173500", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169800", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113500", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.755400", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.750400", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.625400", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.940800", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.207400", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.202400", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.077400", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.528100", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.818400", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.813400", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.688400", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.000000", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.995000", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.870000", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127000", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167000", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067000", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.352300", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.347300", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.222300", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.691100", + "Timestamp": "2024-05-16T14:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.661100", + "Timestamp": "2024-05-16T14:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.561100", + "Timestamp": "2024-05-16T14:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.556900", + "Timestamp": "2024-05-16T14:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.319700", + "Timestamp": "2024-05-16T14:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.314700", + "Timestamp": "2024-05-16T14:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.189700", + "Timestamp": "2024-05-16T14:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.342200", + "Timestamp": "2024-05-16T14:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.312200", + "Timestamp": "2024-05-16T14:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212200", + "Timestamp": "2024-05-16T14:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.317300", + "Timestamp": "2024-05-16T14:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.312300", + "Timestamp": "2024-05-16T14:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.187300", + "Timestamp": "2024-05-16T14:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.891100", + "Timestamp": "2024-05-16T14:01:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.887300", + "Timestamp": "2024-05-16T14:01:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.007500", + "Timestamp": "2024-05-16T14:01:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.060000", + "Timestamp": "2024-05-16T14:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.377500", + "Timestamp": "2024-05-16T14:01:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.417500", + "Timestamp": "2024-05-16T14:01:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.317500", + "Timestamp": "2024-05-16T14:01:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.825200", + "Timestamp": "2024-05-16T14:01:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.820200", + "Timestamp": "2024-05-16T14:01:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.695200", + "Timestamp": "2024-05-16T14:01:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.881100", + "Timestamp": "2024-05-16T14:01:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.876100", + "Timestamp": "2024-05-16T14:01:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.751100", + "Timestamp": "2024-05-16T14:01:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.468100", + "Timestamp": "2024-05-16T14:01:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.463100", + "Timestamp": "2024-05-16T14:01:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.338100", + "Timestamp": "2024-05-16T14:01:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.625600", + "Timestamp": "2024-05-16T14:01:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.613200", + "Timestamp": "2024-05-16T14:01:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.608200", + "Timestamp": "2024-05-16T14:01:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.483200", + "Timestamp": "2024-05-16T14:01:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.354200", + "Timestamp": "2024-05-16T14:01:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.626300", + "Timestamp": "2024-05-16T14:01:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.596300", + "Timestamp": "2024-05-16T14:01:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.496300", + "Timestamp": "2024-05-16T14:01:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160900", + "Timestamp": "2024-05-16T14:01:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157200", + "Timestamp": "2024-05-16T14:01:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-16T14:01:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127300", + "Timestamp": "2024-05-16T14:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123300", + "Timestamp": "2024-05-16T14:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067300", + "Timestamp": "2024-05-16T14:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.328800", + "Timestamp": "2024-05-16T14:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.323800", + "Timestamp": "2024-05-16T14:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.198800", + "Timestamp": "2024-05-16T14:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170800", + "Timestamp": "2024-05-16T14:01:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167100", + "Timestamp": "2024-05-16T14:01:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T14:01:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152900", + "Timestamp": "2024-05-16T14:01:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149200", + "Timestamp": "2024-05-16T14:01:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092900", + "Timestamp": "2024-05-16T14:01:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171100", + "Timestamp": "2024-05-16T14:01:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167400", + "Timestamp": "2024-05-16T14:01:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111100", + "Timestamp": "2024-05-16T14:01:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.974400", + "Timestamp": "2024-05-16T14:01:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.471700", + "Timestamp": "2024-05-16T14:01:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.466700", + "Timestamp": "2024-05-16T14:01:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.341700", + "Timestamp": "2024-05-16T14:01:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.715800", + "Timestamp": "2024-05-16T14:01:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m1.large", + "ProductDescription": "Windows", + "SpotPrice": "0.222800", + "Timestamp": "2024-05-16T14:01:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.482100", + "Timestamp": "2024-05-16T14:01:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.293300", + "Timestamp": "2024-05-16T14:00:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.288300", + "Timestamp": "2024-05-16T14:00:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.163300", + "Timestamp": "2024-05-16T14:00:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.304700", + "Timestamp": "2024-05-16T14:00:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.299700", + "Timestamp": "2024-05-16T14:00:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.174700", + "Timestamp": "2024-05-16T14:00:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.946800", + "Timestamp": "2024-05-16T14:00:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.916800", + "Timestamp": "2024-05-16T14:00:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.816800", + "Timestamp": "2024-05-16T14:00:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083600", + "Timestamp": "2024-05-16T14:00:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079900", + "Timestamp": "2024-05-16T14:00:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023600", + "Timestamp": "2024-05-16T14:00:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-16T14:00:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.888200", + "Timestamp": "2024-05-16T14:00:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.883200", + "Timestamp": "2024-05-16T14:00:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.758200", + "Timestamp": "2024-05-16T14:00:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.667100", + "Timestamp": "2024-05-16T14:00:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.662100", + "Timestamp": "2024-05-16T14:00:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.537100", + "Timestamp": "2024-05-16T14:00:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111300", + "Timestamp": "2024-05-16T14:00:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T14:00:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051300", + "Timestamp": "2024-05-16T14:00:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.504800", + "Timestamp": "2024-05-16T14:00:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.747700", + "Timestamp": "2024-05-16T13:47:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.718400", + "Timestamp": "2024-05-16T13:47:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.729000", + "Timestamp": "2024-05-16T13:47:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.742700", + "Timestamp": "2024-05-16T13:47:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.713400", + "Timestamp": "2024-05-16T13:47:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.724000", + "Timestamp": "2024-05-16T13:47:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.617700", + "Timestamp": "2024-05-16T13:47:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.588400", + "Timestamp": "2024-05-16T13:47:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.599000", + "Timestamp": "2024-05-16T13:47:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.618300", + "Timestamp": "2024-05-16T13:47:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.639000", + "Timestamp": "2024-05-16T13:47:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.618500", + "Timestamp": "2024-05-16T13:47:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-16T13:47:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.832100", + "Timestamp": "2024-05-16T13:47:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.827100", + "Timestamp": "2024-05-16T13:47:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.702100", + "Timestamp": "2024-05-16T13:47:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099600", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039600", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.244800", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.239800", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.114800", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "9.563800", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "9.558800", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "9.433800", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.366700", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.099600", + "Timestamp": "2024-05-16T13:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.094600", + "Timestamp": "2024-05-16T13:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.969600", + "Timestamp": "2024-05-16T13:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.973200", + "Timestamp": "2024-05-16T13:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.943200", + "Timestamp": "2024-05-16T13:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.843200", + "Timestamp": "2024-05-16T13:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.676100", + "Timestamp": "2024-05-16T13:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.562900", + "Timestamp": "2024-05-16T13:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.557900", + "Timestamp": "2024-05-16T13:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.432900", + "Timestamp": "2024-05-16T13:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.295300", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.290300", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165300", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131800", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127800", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071800", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.433400", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.461700", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.456700", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.331700", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.710600", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.289100", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113200", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.456400", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.304500", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.776700", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.771700", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.646700", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.134200", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.129200", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.004200", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.293500", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.261100", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.363300", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.815400", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.529500", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.671600", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.666600", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.541600", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.209000", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.205000", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149000", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.528800", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.158700", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.153700", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.028700", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.473500", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.443500", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.343500", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.465300", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.460300", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.335300", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "12.589200", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.071600", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.041600", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.941600", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.888700", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.714300", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.388900", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.358900", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.258900", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.600100", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.428900", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.423900", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.298900", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.919400", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.914400", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.789400", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.601400", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.608600", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.675200", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.865100", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.860100", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.735100", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119400", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.904000", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.593300", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.588300", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.463300", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.172500", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.167500", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.042500", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.372900", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.367900", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242900", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.483800", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.478800", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.353800", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.192500", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.187500", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.062500", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.745200", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.601800", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.596800", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.471800", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.726500", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155800", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151800", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095800", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.125900", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.120900", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.995900", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168700", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164700", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360400", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.330400", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230400", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128900", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125200", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068900", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.759100", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.754100", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.629100", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.602100", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.597100", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.472100", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233500", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.562900", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.557900", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.432900", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354800", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349800", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224800", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.455900", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.450900", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.325900", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.045600", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.608100", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.058400", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.053400", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.928400", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.724400", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.840400", + "Timestamp": "2024-05-16T13:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.846800", + "Timestamp": "2024-05-16T13:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.841800", + "Timestamp": "2024-05-16T13:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.716800", + "Timestamp": "2024-05-16T13:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.675000", + "Timestamp": "2024-05-16T13:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.670000", + "Timestamp": "2024-05-16T13:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.545000", + "Timestamp": "2024-05-16T13:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.602400", + "Timestamp": "2024-05-16T13:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.597400", + "Timestamp": "2024-05-16T13:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.472400", + "Timestamp": "2024-05-16T13:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.460700", + "Timestamp": "2024-05-16T13:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.191100", + "Timestamp": "2024-05-16T13:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.187100", + "Timestamp": "2024-05-16T13:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131100", + "Timestamp": "2024-05-16T13:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.899900", + "Timestamp": "2024-05-16T13:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.868300", + "Timestamp": "2024-05-16T13:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104300", + "Timestamp": "2024-05-16T13:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-16T13:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044300", + "Timestamp": "2024-05-16T13:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.386000", + "Timestamp": "2024-05-16T13:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.381000", + "Timestamp": "2024-05-16T13:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.256000", + "Timestamp": "2024-05-16T13:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.248400", + "Timestamp": "2024-05-16T13:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.243400", + "Timestamp": "2024-05-16T13:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.118400", + "Timestamp": "2024-05-16T13:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.887900", + "Timestamp": "2024-05-16T13:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.882900", + "Timestamp": "2024-05-16T13:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.757900", + "Timestamp": "2024-05-16T13:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.302600", + "Timestamp": "2024-05-16T13:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.297600", + "Timestamp": "2024-05-16T13:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172600", + "Timestamp": "2024-05-16T13:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.915900", + "Timestamp": "2024-05-16T13:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.778500", + "Timestamp": "2024-05-16T13:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.910900", + "Timestamp": "2024-05-16T13:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.773500", + "Timestamp": "2024-05-16T13:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.785900", + "Timestamp": "2024-05-16T13:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.648500", + "Timestamp": "2024-05-16T13:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t1.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-16T13:46:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t1.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.008800", + "Timestamp": "2024-05-16T13:46:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t1.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008800", + "Timestamp": "2024-05-16T13:46:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.981900", + "Timestamp": "2024-05-16T13:46:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.976900", + "Timestamp": "2024-05-16T13:46:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.851900", + "Timestamp": "2024-05-16T13:46:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.444800", + "Timestamp": "2024-05-16T13:46:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.303000", + "Timestamp": "2024-05-16T13:46:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.268900", + "Timestamp": "2024-05-16T13:46:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.263900", + "Timestamp": "2024-05-16T13:46:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.138900", + "Timestamp": "2024-05-16T13:46:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.348900", + "Timestamp": "2024-05-16T13:46:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.343900", + "Timestamp": "2024-05-16T13:46:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.218900", + "Timestamp": "2024-05-16T13:46:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T13:46:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110900", + "Timestamp": "2024-05-16T13:46:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054600", + "Timestamp": "2024-05-16T13:46:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.066500", + "Timestamp": "2024-05-16T13:46:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.061500", + "Timestamp": "2024-05-16T13:46:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.936500", + "Timestamp": "2024-05-16T13:46:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231100", + "Timestamp": "2024-05-16T13:46:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.546100", + "Timestamp": "2024-05-16T13:46:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103600", + "Timestamp": "2024-05-16T13:46:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099900", + "Timestamp": "2024-05-16T13:46:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043600", + "Timestamp": "2024-05-16T13:46:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.745000", + "Timestamp": "2024-05-16T13:46:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.361900", + "Timestamp": "2024-05-16T13:46:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.657300", + "Timestamp": "2024-05-16T13:46:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.652300", + "Timestamp": "2024-05-16T13:46:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.527300", + "Timestamp": "2024-05-16T13:46:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.679900", + "Timestamp": "2024-05-16T13:45:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.649900", + "Timestamp": "2024-05-16T13:45:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.549900", + "Timestamp": "2024-05-16T13:45:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.915200", + "Timestamp": "2024-05-16T13:45:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.910200", + "Timestamp": "2024-05-16T13:45:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.785200", + "Timestamp": "2024-05-16T13:45:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.593500", + "Timestamp": "2024-05-16T13:45:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.588500", + "Timestamp": "2024-05-16T13:45:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.463500", + "Timestamp": "2024-05-16T13:45:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.813800", + "Timestamp": "2024-05-16T13:45:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.255600", + "Timestamp": "2024-05-16T13:45:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.250600", + "Timestamp": "2024-05-16T13:45:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.125600", + "Timestamp": "2024-05-16T13:45:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176200", + "Timestamp": "2024-05-16T13:45:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172500", + "Timestamp": "2024-05-16T13:45:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116200", + "Timestamp": "2024-05-16T13:45:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.157000", + "Timestamp": "2024-05-16T13:45:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.741000", + "Timestamp": "2024-05-16T13:45:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.736000", + "Timestamp": "2024-05-16T13:45:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.611000", + "Timestamp": "2024-05-16T13:45:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.962600", + "Timestamp": "2024-05-16T13:45:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.831100", + "Timestamp": "2024-05-16T13:45:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.826100", + "Timestamp": "2024-05-16T13:45:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.701100", + "Timestamp": "2024-05-16T13:45:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.645600", + "Timestamp": "2024-05-16T13:35:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.904100", + "Timestamp": "2024-05-16T13:31:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.899100", + "Timestamp": "2024-05-16T13:31:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.774100", + "Timestamp": "2024-05-16T13:31:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.230800", + "Timestamp": "2024-05-16T13:31:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.428400", + "Timestamp": "2024-05-16T13:31:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.423400", + "Timestamp": "2024-05-16T13:31:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.298400", + "Timestamp": "2024-05-16T13:31:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.271800", + "Timestamp": "2024-05-16T13:31:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.241800", + "Timestamp": "2024-05-16T13:31:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.141800", + "Timestamp": "2024-05-16T13:31:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.965800", + "Timestamp": "2024-05-16T13:31:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.801200", + "Timestamp": "2024-05-16T13:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.227600", + "Timestamp": "2024-05-16T13:31:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.197600", + "Timestamp": "2024-05-16T13:31:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.097600", + "Timestamp": "2024-05-16T13:31:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.581100", + "Timestamp": "2024-05-16T13:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.384900", + "Timestamp": "2024-05-16T13:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.191700", + "Timestamp": "2024-05-16T13:31:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.161700", + "Timestamp": "2024-05-16T13:31:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.061700", + "Timestamp": "2024-05-16T13:31:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.258400", + "Timestamp": "2024-05-16T13:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.612400", + "Timestamp": "2024-05-16T13:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.240700", + "Timestamp": "2024-05-16T13:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.237000", + "Timestamp": "2024-05-16T13:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180700", + "Timestamp": "2024-05-16T13:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139400", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135700", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079400", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116800", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.786600", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.781600", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.656600", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.283500", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.959600", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.459300", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165500", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.205500", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105500", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.262000", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.324600", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.319600", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.194600", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.165200", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.160200", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.035200", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.534500", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.445800", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.415800", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.315800", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136300", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132600", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076300", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115300", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.241800", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.841900", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.836900", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.711900", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.703800", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.698800", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.573800", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.942300", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.937300", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.812300", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.840200", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.835200", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.710200", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.392600", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.387600", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.262600", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.852700", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.847700", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.722700", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.524900", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.352800", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.347800", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.222800", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.639000", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.864800", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.378600", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.348600", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.248600", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.134400", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.104400", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.004400", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.154900", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.149900", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.024900", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.229900", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.224900", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.099900", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.704100", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.699100", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.574100", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.656300", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.651300", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.526300", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.497200", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.492200", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.367200", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.449800", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.444800", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.319800", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.847200", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.647700", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.642700", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.517700", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115500", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155500", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055500", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165700", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167000", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162000", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163300", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107000", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.909000", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.904000", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.779000", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.592200", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.587200", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.462200", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.899500", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.894500", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.769500", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.524800", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140100", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136400", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080100", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.904700", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114100", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054100", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.938500", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.933500", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.808500", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.218200", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.213200", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.088200", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.254500", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221800", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.931200", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.126200", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.861400", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.082100", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.077100", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.952100", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.263000", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.865000", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.860000", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.735000", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233600", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.825800", + "Timestamp": "2024-05-16T13:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.820800", + "Timestamp": "2024-05-16T13:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.695800", + "Timestamp": "2024-05-16T13:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.682800", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.677800", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.552800", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.183400", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.223400", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123400", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.861800", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.856800", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.731800", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.240000", + "Timestamp": "2024-05-16T13:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.236300", + "Timestamp": "2024-05-16T13:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180000", + "Timestamp": "2024-05-16T13:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.729000", + "Timestamp": "2024-05-16T13:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.724000", + "Timestamp": "2024-05-16T13:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.599000", + "Timestamp": "2024-05-16T13:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.866000", + "Timestamp": "2024-05-16T13:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.861000", + "Timestamp": "2024-05-16T13:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.736000", + "Timestamp": "2024-05-16T13:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.595500", + "Timestamp": "2024-05-16T13:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.337800", + "Timestamp": "2024-05-16T13:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.307800", + "Timestamp": "2024-05-16T13:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.207800", + "Timestamp": "2024-05-16T13:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.090000", + "Timestamp": "2024-05-16T13:31:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.552400", + "Timestamp": "2024-05-16T13:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.547400", + "Timestamp": "2024-05-16T13:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.422400", + "Timestamp": "2024-05-16T13:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t1.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.005400", + "Timestamp": "2024-05-16T13:31:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.588300", + "Timestamp": "2024-05-16T13:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.361400", + "Timestamp": "2024-05-16T13:31:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.702200", + "Timestamp": "2024-05-16T13:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.697200", + "Timestamp": "2024-05-16T13:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.572200", + "Timestamp": "2024-05-16T13:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.921400", + "Timestamp": "2024-05-16T13:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173100", + "Timestamp": "2024-05-16T13:31:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169400", + "Timestamp": "2024-05-16T13:31:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113100", + "Timestamp": "2024-05-16T13:31:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.338200", + "Timestamp": "2024-05-16T13:31:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.333200", + "Timestamp": "2024-05-16T13:31:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.208200", + "Timestamp": "2024-05-16T13:31:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.068900", + "Timestamp": "2024-05-16T13:31:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.063900", + "Timestamp": "2024-05-16T13:31:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.938900", + "Timestamp": "2024-05-16T13:31:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.596500", + "Timestamp": "2024-05-16T13:31:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.591500", + "Timestamp": "2024-05-16T13:31:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.466500", + "Timestamp": "2024-05-16T13:31:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.959800", + "Timestamp": "2024-05-16T13:31:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.929800", + "Timestamp": "2024-05-16T13:31:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.829800", + "Timestamp": "2024-05-16T13:31:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.708100", + "Timestamp": "2024-05-16T13:31:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.182100", + "Timestamp": "2024-05-16T13:31:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.178100", + "Timestamp": "2024-05-16T13:31:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122100", + "Timestamp": "2024-05-16T13:31:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.352900", + "Timestamp": "2024-05-16T13:31:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.322900", + "Timestamp": "2024-05-16T13:31:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.222900", + "Timestamp": "2024-05-16T13:31:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.874400", + "Timestamp": "2024-05-16T13:31:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.360200", + "Timestamp": "2024-05-16T13:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160700", + "Timestamp": "2024-05-16T13:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.200700", + "Timestamp": "2024-05-16T13:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100700", + "Timestamp": "2024-05-16T13:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.247400", + "Timestamp": "2024-05-16T13:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.287400", + "Timestamp": "2024-05-16T13:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.187400", + "Timestamp": "2024-05-16T13:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.081000", + "Timestamp": "2024-05-16T13:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.076000", + "Timestamp": "2024-05-16T13:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.951000", + "Timestamp": "2024-05-16T13:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.364500", + "Timestamp": "2024-05-16T13:31:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162400", + "Timestamp": "2024-05-16T13:31:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158400", + "Timestamp": "2024-05-16T13:31:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102400", + "Timestamp": "2024-05-16T13:31:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.766300", + "Timestamp": "2024-05-16T13:30:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.761300", + "Timestamp": "2024-05-16T13:30:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.636300", + "Timestamp": "2024-05-16T13:30:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.719300", + "Timestamp": "2024-05-16T13:30:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.101100", + "Timestamp": "2024-05-16T13:30:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.096100", + "Timestamp": "2024-05-16T13:30:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.971100", + "Timestamp": "2024-05-16T13:30:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089800", + "Timestamp": "2024-05-16T13:30:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086100", + "Timestamp": "2024-05-16T13:30:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029800", + "Timestamp": "2024-05-16T13:30:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.762000", + "Timestamp": "2024-05-16T13:30:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.843500", + "Timestamp": "2024-05-16T13:30:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.469200", + "Timestamp": "2024-05-16T13:30:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.950800", + "Timestamp": "2024-05-16T13:16:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.920800", + "Timestamp": "2024-05-16T13:16:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.820800", + "Timestamp": "2024-05-16T13:16:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.598900", + "Timestamp": "2024-05-16T13:16:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.593900", + "Timestamp": "2024-05-16T13:16:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.468900", + "Timestamp": "2024-05-16T13:16:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108300", + "Timestamp": "2024-05-16T13:16:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.973700", + "Timestamp": "2024-05-16T13:16:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.615500", + "Timestamp": "2024-05-16T13:16:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.982200", + "Timestamp": "2024-05-16T13:16:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.643600", + "Timestamp": "2024-05-16T13:16:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.268100", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125800", + "Timestamp": "2024-05-16T13:16:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.782500", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.777500", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.652500", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.933400", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.454900", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.483300", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.265700", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.341000", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.967800", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.937800", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.837800", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137700", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134000", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077700", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.602600", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.849500", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.844500", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.719500", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115600", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111900", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055600", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162400", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158700", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102400", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.884700", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.140600", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.784600", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.779600", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.654600", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.392600", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.387600", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.262600", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.330600", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.325600", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.200600", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.951800", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.033200", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.280200", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.275200", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.150200", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "12.034200", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "13.512400", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.944800", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.136500", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.002900", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.997900", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.872900", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.193700", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.914800", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.792400", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.479100", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.397100", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.367100", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.267100", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.583400", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.445400", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.440400", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.315400", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.463100", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.424400", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.419400", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.294400", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119000", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159000", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059000", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.197900", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.075600", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.070600", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.945600", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.876800", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330900", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325900", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200900", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.281800", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.281400", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.276800", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.276400", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.151800", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.151400", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.328700", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323700", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.198700", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.649800", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.266100", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093400", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037100", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.219200", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.215200", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159200", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.905700", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.900700", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.775700", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169200", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165500", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109200", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.150000", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096300", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036300", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "f1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.854100", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "f1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.849100", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "f1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.724100", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.095500", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.722900", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.975800", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.973900", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161900", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158200", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101900", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099600", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043300", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.936000", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.931000", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.806000", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.963000", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.955100", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360200", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.355200", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230200", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.648500", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125300", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121600", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065300", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.011600", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.981600", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.881600", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.103900", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.098900", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.973900", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.998500", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.968500", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.868500", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.627600", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.622600", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.497600", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.223100", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.218100", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.093100", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126500", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122500", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066500", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.519000", + "Timestamp": "2024-05-16T13:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.514000", + "Timestamp": "2024-05-16T13:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.389000", + "Timestamp": "2024-05-16T13:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.404600", + "Timestamp": "2024-05-16T13:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.815600", + "Timestamp": "2024-05-16T13:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.196800", + "Timestamp": "2024-05-16T13:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.506400", + "Timestamp": "2024-05-16T13:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.888600", + "Timestamp": "2024-05-16T13:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.928600", + "Timestamp": "2024-05-16T13:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.828600", + "Timestamp": "2024-05-16T13:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.344400", + "Timestamp": "2024-05-16T13:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.340400", + "Timestamp": "2024-05-16T13:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.284400", + "Timestamp": "2024-05-16T13:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.705400", + "Timestamp": "2024-05-16T13:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.700400", + "Timestamp": "2024-05-16T13:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.575400", + "Timestamp": "2024-05-16T13:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.442900", + "Timestamp": "2024-05-16T13:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.466200", + "Timestamp": "2024-05-16T13:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.550800", + "Timestamp": "2024-05-16T13:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.545800", + "Timestamp": "2024-05-16T13:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.420800", + "Timestamp": "2024-05-16T13:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125600", + "Timestamp": "2024-05-16T13:16:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.285600", + "Timestamp": "2024-05-16T13:16:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.039500", + "Timestamp": "2024-05-16T13:16:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.280600", + "Timestamp": "2024-05-16T13:16:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.034500", + "Timestamp": "2024-05-16T13:16:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.155600", + "Timestamp": "2024-05-16T13:16:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.909500", + "Timestamp": "2024-05-16T13:16:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.360100", + "Timestamp": "2024-05-16T13:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.355100", + "Timestamp": "2024-05-16T13:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.230100", + "Timestamp": "2024-05-16T13:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.853600", + "Timestamp": "2024-05-16T13:16:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.848600", + "Timestamp": "2024-05-16T13:16:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.723600", + "Timestamp": "2024-05-16T13:16:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.788600", + "Timestamp": "2024-05-16T13:16:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.783600", + "Timestamp": "2024-05-16T13:16:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.658600", + "Timestamp": "2024-05-16T13:16:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T13:16:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T13:16:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047300", + "Timestamp": "2024-05-16T13:16:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324900", + "Timestamp": "2024-05-16T13:16:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319900", + "Timestamp": "2024-05-16T13:16:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194900", + "Timestamp": "2024-05-16T13:16:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.652300", + "Timestamp": "2024-05-16T13:16:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.430400", + "Timestamp": "2024-05-16T13:16:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.400400", + "Timestamp": "2024-05-16T13:16:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.300400", + "Timestamp": "2024-05-16T13:16:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134800", + "Timestamp": "2024-05-16T13:16:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131100", + "Timestamp": "2024-05-16T13:16:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074800", + "Timestamp": "2024-05-16T13:16:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.765000", + "Timestamp": "2024-05-16T13:16:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.739400", + "Timestamp": "2024-05-16T13:16:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.734400", + "Timestamp": "2024-05-16T13:16:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.609400", + "Timestamp": "2024-05-16T13:16:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.826500", + "Timestamp": "2024-05-16T13:16:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.796500", + "Timestamp": "2024-05-16T13:16:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.696500", + "Timestamp": "2024-05-16T13:16:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m1.large", + "ProductDescription": "Windows", + "SpotPrice": "0.213500", + "Timestamp": "2024-05-16T13:16:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.619100", + "Timestamp": "2024-05-16T13:16:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.614100", + "Timestamp": "2024-05-16T13:16:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.489100", + "Timestamp": "2024-05-16T13:16:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.711100", + "Timestamp": "2024-05-16T13:15:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.937000", + "Timestamp": "2024-05-16T13:15:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095100", + "Timestamp": "2024-05-16T13:15:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091400", + "Timestamp": "2024-05-16T13:15:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035100", + "Timestamp": "2024-05-16T13:15:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311700", + "Timestamp": "2024-05-16T13:15:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281700", + "Timestamp": "2024-05-16T13:15:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181700", + "Timestamp": "2024-05-16T13:15:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.688100", + "Timestamp": "2024-05-16T13:15:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119600", + "Timestamp": "2024-05-16T13:15:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115600", + "Timestamp": "2024-05-16T13:15:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059600", + "Timestamp": "2024-05-16T13:15:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.699700", + "Timestamp": "2024-05-16T13:15:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.694700", + "Timestamp": "2024-05-16T13:15:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.569700", + "Timestamp": "2024-05-16T13:15:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.219600", + "Timestamp": "2024-05-16T13:06:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.219600", + "Timestamp": "2024-05-16T13:06:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-16T13:02:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077200", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073500", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017200", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.188400", + "Timestamp": "2024-05-16T13:02:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.184400", + "Timestamp": "2024-05-16T13:02:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128400", + "Timestamp": "2024-05-16T13:02:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.561500", + "Timestamp": "2024-05-16T13:01:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.556500", + "Timestamp": "2024-05-16T13:01:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.431500", + "Timestamp": "2024-05-16T13:01:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.914900", + "Timestamp": "2024-05-16T13:01:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.201800", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.196800", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.071800", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.953600", + "Timestamp": "2024-05-16T13:01:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.262100", + "Timestamp": "2024-05-16T13:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.257100", + "Timestamp": "2024-05-16T13:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.132100", + "Timestamp": "2024-05-16T13:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.365800", + "Timestamp": "2024-05-16T13:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.360800", + "Timestamp": "2024-05-16T13:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235800", + "Timestamp": "2024-05-16T13:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.895100", + "Timestamp": "2024-05-16T13:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.890100", + "Timestamp": "2024-05-16T13:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.765100", + "Timestamp": "2024-05-16T13:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T13:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T13:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048100", + "Timestamp": "2024-05-16T13:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.325000", + "Timestamp": "2024-05-16T13:01:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.295000", + "Timestamp": "2024-05-16T13:01:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195000", + "Timestamp": "2024-05-16T13:01:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.247900", + "Timestamp": "2024-05-16T13:01:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.895700", + "Timestamp": "2024-05-16T13:01:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.152000", + "Timestamp": "2024-05-16T13:01:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.781500", + "Timestamp": "2024-05-16T13:01:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.776500", + "Timestamp": "2024-05-16T13:01:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.651500", + "Timestamp": "2024-05-16T13:01:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.821400", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.816400", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.691400", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.012800", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.276100", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.957000", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.788200", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.783200", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.658200", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.343100", + "Timestamp": "2024-05-16T13:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.313100", + "Timestamp": "2024-05-16T13:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.213100", + "Timestamp": "2024-05-16T13:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.697400", + "Timestamp": "2024-05-16T13:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.692400", + "Timestamp": "2024-05-16T13:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.567400", + "Timestamp": "2024-05-16T13:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.834900", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.829900", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.704900", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.983600", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.978600", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.853600", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.724400", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.683700", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.678700", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.553700", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.260300", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.928200", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.923200", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.798200", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.227800", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.429600", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.424600", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.299600", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.151200", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.497500", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.766700", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.714900", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.675500", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.670500", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.545500", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.473500", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.468500", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.343500", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.493900", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.463900", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.363900", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.437900", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.432900", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.307900", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.310600", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.305600", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180600", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.061400", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.663400", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.658400", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.533400", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.257100", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.889800", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.357700", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.327700", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.227700", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.855400", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.985800", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.716200", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.711200", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.586200", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.403200", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.398200", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.273200", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117300", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113600", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057300", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.330000", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.325000", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.200000", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.211000", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.841700", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.206000", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.836700", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.081000", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.711700", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.357900", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.352900", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.227900", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.453500", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081400", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.052400", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021400", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.240100", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.319300", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.314300", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.189300", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.818700", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.788700", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.688700", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.942500", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.515500", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.510500", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.385500", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.415700", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.385700", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.285700", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.482900", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.845800", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.840800", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.715800", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.545500", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.540500", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.415500", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118900", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.248300", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.243300", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.118300", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.577700", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.572700", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.447700", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.912900", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.464000", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.459000", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.334000", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.475000", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.470000", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.345000", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.502100", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.647400", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.642400", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.517400", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231500", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.058100", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.053100", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.928100", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.942300", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.047600", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.937300", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.042600", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.812300", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.917600", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.604800", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.342700", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.337700", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212700", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.351800", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.346800", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.221800", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171100", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167100", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111100", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.495300", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.489400", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.308100", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.303100", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.178100", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.905400", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.040700", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.610700", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.605700", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.480700", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.238400", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.478400", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.700700", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.695700", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.570700", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.379100", + "Timestamp": "2024-05-16T13:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.374100", + "Timestamp": "2024-05-16T13:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.249100", + "Timestamp": "2024-05-16T13:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.203400", + "Timestamp": "2024-05-16T13:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.198400", + "Timestamp": "2024-05-16T13:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.073400", + "Timestamp": "2024-05-16T13:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.545600", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.218500", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.213500", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.088500", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.264300", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.665900", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.660900", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.535900", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.635200", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.630200", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.505200", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.358800", + "Timestamp": "2024-05-16T13:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.353800", + "Timestamp": "2024-05-16T13:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.228800", + "Timestamp": "2024-05-16T13:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.541200", + "Timestamp": "2024-05-16T13:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.536200", + "Timestamp": "2024-05-16T13:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.411200", + "Timestamp": "2024-05-16T13:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.047700", + "Timestamp": "2024-05-16T13:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.139000", + "Timestamp": "2024-05-16T13:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.348900", + "Timestamp": "2024-05-16T13:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.343900", + "Timestamp": "2024-05-16T13:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.218900", + "Timestamp": "2024-05-16T13:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.677900", + "Timestamp": "2024-05-16T13:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086600", + "Timestamp": "2024-05-16T13:01:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126600", + "Timestamp": "2024-05-16T13:01:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026600", + "Timestamp": "2024-05-16T13:01:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.257300", + "Timestamp": "2024-05-16T13:01:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.252300", + "Timestamp": "2024-05-16T13:01:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127300", + "Timestamp": "2024-05-16T13:01:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115800", + "Timestamp": "2024-05-16T13:01:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.733400", + "Timestamp": "2024-05-16T13:01:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.728400", + "Timestamp": "2024-05-16T13:01:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.603400", + "Timestamp": "2024-05-16T13:01:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.461600", + "Timestamp": "2024-05-16T13:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.456600", + "Timestamp": "2024-05-16T13:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.331600", + "Timestamp": "2024-05-16T13:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.745800", + "Timestamp": "2024-05-16T13:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.740800", + "Timestamp": "2024-05-16T13:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.615800", + "Timestamp": "2024-05-16T13:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.383000", + "Timestamp": "2024-05-16T13:01:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.353000", + "Timestamp": "2024-05-16T13:01:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.253000", + "Timestamp": "2024-05-16T13:01:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.658400", + "Timestamp": "2024-05-16T13:01:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.628400", + "Timestamp": "2024-05-16T13:01:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.528400", + "Timestamp": "2024-05-16T13:01:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.009900", + "Timestamp": "2024-05-16T13:01:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.868800", + "Timestamp": "2024-05-16T13:00:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.763700", + "Timestamp": "2024-05-16T13:00:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.863800", + "Timestamp": "2024-05-16T13:00:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.758700", + "Timestamp": "2024-05-16T13:00:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.738800", + "Timestamp": "2024-05-16T13:00:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.633700", + "Timestamp": "2024-05-16T13:00:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142100", + "Timestamp": "2024-05-16T13:00:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.182100", + "Timestamp": "2024-05-16T13:00:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082100", + "Timestamp": "2024-05-16T13:00:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.236400", + "Timestamp": "2024-05-16T13:00:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.231400", + "Timestamp": "2024-05-16T13:00:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.106400", + "Timestamp": "2024-05-16T13:00:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.361500", + "Timestamp": "2024-05-16T12:48:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.364400", + "Timestamp": "2024-05-16T12:48:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.461700", + "Timestamp": "2024-05-16T12:48:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.386700", + "Timestamp": "2024-05-16T12:48:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.457700", + "Timestamp": "2024-05-16T12:48:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.382700", + "Timestamp": "2024-05-16T12:48:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.401700", + "Timestamp": "2024-05-16T12:48:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.326700", + "Timestamp": "2024-05-16T12:48:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229300", + "Timestamp": "2024-05-16T12:47:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112300", + "Timestamp": "2024-05-16T12:47:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.702900", + "Timestamp": "2024-05-16T12:46:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.697900", + "Timestamp": "2024-05-16T12:46:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.572900", + "Timestamp": "2024-05-16T12:46:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.489300", + "Timestamp": "2024-05-16T12:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.488200", + "Timestamp": "2024-05-16T12:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.830100", + "Timestamp": "2024-05-16T12:46:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.800100", + "Timestamp": "2024-05-16T12:46:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.700100", + "Timestamp": "2024-05-16T12:46:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.954400", + "Timestamp": "2024-05-16T12:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "22.474800", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "22.469800", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "22.344800", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162100", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158400", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.112900", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.107900", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.982900", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.009900", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.861000", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164000", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160000", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.998100", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.993100", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.868100", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.504100", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.580200", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.575200", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.450200", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.981700", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.304000", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.299000", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.174000", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.122300", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.618900", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.408200", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.548100", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.952200", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.947200", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.822200", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.190200", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.160200", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.060200", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439000", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.438300", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.411700", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.406700", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.281700", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437500", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.482500", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.477500", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.352500", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.988200", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.737800", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109100", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052800", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229900", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.067700", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.062700", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.937700", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.366900", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.700700", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.670700", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.570700", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.567800", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.562800", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.437800", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.722600", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.717600", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.592600", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.541100", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.863400", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.858400", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.733400", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.109400", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.546900", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.902000", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.897000", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.772000", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.941600", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.911600", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.811600", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.637700", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.632700", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.507700", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294000", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289000", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164000", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.655300", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.650300", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.525300", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.200200", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.593200", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.588200", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.463200", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.083100", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.078100", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.953100", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165800", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161800", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.267300", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.306500", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.301500", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.176500", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.496500", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.491500", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.366500", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297500", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.292500", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167500", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.187300", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.157300", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.057300", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.825300", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.045400", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.015400", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.915400", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.439700", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.434700", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.309700", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200900", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.240900", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140900", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.709300", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.704300", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.579300", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.869700", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.781500", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.776500", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.651500", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078100", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.049100", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018100", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161300", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157600", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101300", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.919400", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.875300", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.715800", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.710800", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.585800", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.462200", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.253200", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.457200", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.248200", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.332200", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.123200", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.958400", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.523200", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.518200", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.393200", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.273200", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.268200", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.143200", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.098200", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.096500", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.748000", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.743000", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.618000", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.320500", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.290500", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190500", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.562400", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.557400", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.432400", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.550000", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130700", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125800", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127000", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122100", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070700", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065800", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.138500", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.797000", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.792000", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.667000", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.030700", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.025700", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.900700", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.494200", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.535700", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.111600", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.106600", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.981600", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.205400", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.670100", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.665100", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.540100", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.816500", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.811500", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.686500", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.469700", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.511400", + "Timestamp": "2024-05-16T12:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128500", + "Timestamp": "2024-05-16T12:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.717800", + "Timestamp": "2024-05-16T12:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.712800", + "Timestamp": "2024-05-16T12:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.587800", + "Timestamp": "2024-05-16T12:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.668800", + "Timestamp": "2024-05-16T12:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.638800", + "Timestamp": "2024-05-16T12:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.538800", + "Timestamp": "2024-05-16T12:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.121700", + "Timestamp": "2024-05-16T12:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.091700", + "Timestamp": "2024-05-16T12:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.991700", + "Timestamp": "2024-05-16T12:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.780900", + "Timestamp": "2024-05-16T12:46:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.775900", + "Timestamp": "2024-05-16T12:46:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.650900", + "Timestamp": "2024-05-16T12:46:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.394500", + "Timestamp": "2024-05-16T12:46:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.364500", + "Timestamp": "2024-05-16T12:46:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.264500", + "Timestamp": "2024-05-16T12:46:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.044900", + "Timestamp": "2024-05-16T12:46:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.040200", + "Timestamp": "2024-05-16T12:46:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.035200", + "Timestamp": "2024-05-16T12:46:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.910200", + "Timestamp": "2024-05-16T12:46:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.870000", + "Timestamp": "2024-05-16T12:46:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.865000", + "Timestamp": "2024-05-16T12:46:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.740000", + "Timestamp": "2024-05-16T12:46:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.083400", + "Timestamp": "2024-05-16T12:46:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222000", + "Timestamp": "2024-05-16T12:46:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.066600", + "Timestamp": "2024-05-16T12:46:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.447700", + "Timestamp": "2024-05-16T12:46:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.442700", + "Timestamp": "2024-05-16T12:46:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.317700", + "Timestamp": "2024-05-16T12:46:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-16T12:46:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151500", + "Timestamp": "2024-05-16T12:46:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051500", + "Timestamp": "2024-05-16T12:46:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299500", + "Timestamp": "2024-05-16T12:46:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294500", + "Timestamp": "2024-05-16T12:46:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169500", + "Timestamp": "2024-05-16T12:46:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.624900", + "Timestamp": "2024-05-16T12:46:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.485400", + "Timestamp": "2024-05-16T12:46:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.480400", + "Timestamp": "2024-05-16T12:46:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.355400", + "Timestamp": "2024-05-16T12:46:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.454100", + "Timestamp": "2024-05-16T12:46:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.449100", + "Timestamp": "2024-05-16T12:46:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.973300", + "Timestamp": "2024-05-16T12:46:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.968300", + "Timestamp": "2024-05-16T12:46:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.843300", + "Timestamp": "2024-05-16T12:46:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073700", + "Timestamp": "2024-05-16T12:45:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044700", + "Timestamp": "2024-05-16T12:45:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013700", + "Timestamp": "2024-05-16T12:45:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.168300", + "Timestamp": "2024-05-16T12:45:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.066400", + "Timestamp": "2024-05-16T12:45:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.163300", + "Timestamp": "2024-05-16T12:45:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.061400", + "Timestamp": "2024-05-16T12:45:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.038300", + "Timestamp": "2024-05-16T12:45:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.936400", + "Timestamp": "2024-05-16T12:45:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076500", + "Timestamp": "2024-05-16T12:45:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047500", + "Timestamp": "2024-05-16T12:45:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016500", + "Timestamp": "2024-05-16T12:45:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231400", + "Timestamp": "2024-05-16T12:45:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.113000", + "Timestamp": "2024-05-16T12:45:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.611600", + "Timestamp": "2024-05-16T12:45:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T12:45:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T12:45:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049800", + "Timestamp": "2024-05-16T12:45:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.918000", + "Timestamp": "2024-05-16T12:45:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.603600", + "Timestamp": "2024-05-16T12:45:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.213500", + "Timestamp": "2024-05-16T12:45:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.209500", + "Timestamp": "2024-05-16T12:45:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.153500", + "Timestamp": "2024-05-16T12:45:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.060500", + "Timestamp": "2024-05-16T12:45:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.470200", + "Timestamp": "2024-05-16T12:45:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.465200", + "Timestamp": "2024-05-16T12:45:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.340200", + "Timestamp": "2024-05-16T12:45:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.255300", + "Timestamp": "2024-05-16T12:45:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273700", + "Timestamp": "2024-05-16T12:45:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270000", + "Timestamp": "2024-05-16T12:45:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.213700", + "Timestamp": "2024-05-16T12:45:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.298000", + "Timestamp": "2024-05-16T12:45:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.293000", + "Timestamp": "2024-05-16T12:45:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.168000", + "Timestamp": "2024-05-16T12:45:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.626800", + "Timestamp": "2024-05-16T12:43:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.850700", + "Timestamp": "2024-05-16T12:43:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.684900", + "Timestamp": "2024-05-16T12:43:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.004700", + "Timestamp": "2024-05-16T12:43:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.234900", + "Timestamp": "2024-05-16T12:43:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.074600", + "Timestamp": "2024-05-16T12:43:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.999700", + "Timestamp": "2024-05-16T12:43:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.229900", + "Timestamp": "2024-05-16T12:43:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.069600", + "Timestamp": "2024-05-16T12:43:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.874700", + "Timestamp": "2024-05-16T12:43:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.104900", + "Timestamp": "2024-05-16T12:43:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.944600", + "Timestamp": "2024-05-16T12:43:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.050300", + "Timestamp": "2024-05-16T12:32:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118500", + "Timestamp": "2024-05-16T12:32:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.742900", + "Timestamp": "2024-05-16T12:31:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146000", + "Timestamp": "2024-05-16T12:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.186000", + "Timestamp": "2024-05-16T12:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086000", + "Timestamp": "2024-05-16T12:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.569400", + "Timestamp": "2024-05-16T12:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.729300", + "Timestamp": "2024-05-16T12:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.380200", + "Timestamp": "2024-05-16T12:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.518300", + "Timestamp": "2024-05-16T12:31:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.044300", + "Timestamp": "2024-05-16T12:31:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.942900", + "Timestamp": "2024-05-16T12:31:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.275900", + "Timestamp": "2024-05-16T12:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.245900", + "Timestamp": "2024-05-16T12:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.145900", + "Timestamp": "2024-05-16T12:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.820200", + "Timestamp": "2024-05-16T12:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.444400", + "Timestamp": "2024-05-16T12:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.439400", + "Timestamp": "2024-05-16T12:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.314400", + "Timestamp": "2024-05-16T12:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298200", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293200", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168200", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080400", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.051400", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020400", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184200", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180500", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124200", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.640400", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.635400", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.510400", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.987400", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.495500", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.952800", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.226500", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.246600", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089500", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085800", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029500", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.966300", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.666600", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.662900", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.606600", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098200", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094500", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038200", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.718900", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.713900", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.588900", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.873400", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123000", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119300", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063000", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.941300", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106700", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050700", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.755600", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.725600", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.625600", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.947700", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.448100", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.443100", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.318100", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.022100", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.497600", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.492600", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.367600", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439400", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.437000", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.432000", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.307000", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.619800", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.614800", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.489800", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.122500", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.981700", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.035200", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.030200", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.905200", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.842900", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.515900", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.248000", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.873800", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.229700", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.224700", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.099700", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.285200", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114000", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095000", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091300", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035000", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.537800", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.532800", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.407800", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.541500", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.536500", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.411500", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.132000", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.127000", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.002000", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.015700", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.010700", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.885700", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.315900", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.310900", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.185900", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.379700", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.374700", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.249700", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.400100", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.370100", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.270100", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.227200", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.558500", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.553500", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.428500", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.014200", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.009200", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.884200", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.064400", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.059400", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.934400", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.472300", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.467300", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.342300", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.422600", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.184000", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.525300", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.520300", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.395300", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121600", + "Timestamp": "2024-05-16T12:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161600", + "Timestamp": "2024-05-16T12:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061600", + "Timestamp": "2024-05-16T12:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.129200", + "Timestamp": "2024-05-16T12:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.552100", + "Timestamp": "2024-05-16T12:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.547100", + "Timestamp": "2024-05-16T12:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.422100", + "Timestamp": "2024-05-16T12:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.913200", + "Timestamp": "2024-05-16T12:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168600", + "Timestamp": "2024-05-16T12:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.208600", + "Timestamp": "2024-05-16T12:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-16T12:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.862000", + "Timestamp": "2024-05-16T12:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.832000", + "Timestamp": "2024-05-16T12:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.732000", + "Timestamp": "2024-05-16T12:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.442000", + "Timestamp": "2024-05-16T12:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.471800", + "Timestamp": "2024-05-16T12:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.040300", + "Timestamp": "2024-05-16T12:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.233400", + "Timestamp": "2024-05-16T12:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.759700", + "Timestamp": "2024-05-16T12:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.754700", + "Timestamp": "2024-05-16T12:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.629700", + "Timestamp": "2024-05-16T12:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.579900", + "Timestamp": "2024-05-16T12:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163800", + "Timestamp": "2024-05-16T12:31:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160100", + "Timestamp": "2024-05-16T12:31:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T12:31:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.904800", + "Timestamp": "2024-05-16T12:31:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.891600", + "Timestamp": "2024-05-16T12:31:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.874800", + "Timestamp": "2024-05-16T12:31:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.861600", + "Timestamp": "2024-05-16T12:31:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.774800", + "Timestamp": "2024-05-16T12:31:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.761600", + "Timestamp": "2024-05-16T12:31:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.103400", + "Timestamp": "2024-05-16T12:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.262100", + "Timestamp": "2024-05-16T12:31:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302100", + "Timestamp": "2024-05-16T12:31:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.202100", + "Timestamp": "2024-05-16T12:31:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.408100", + "Timestamp": "2024-05-16T12:31:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.041100", + "Timestamp": "2024-05-16T12:31:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.746700", + "Timestamp": "2024-05-16T12:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.716700", + "Timestamp": "2024-05-16T12:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.616700", + "Timestamp": "2024-05-16T12:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.572200", + "Timestamp": "2024-05-16T12:31:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.542200", + "Timestamp": "2024-05-16T12:31:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.442200", + "Timestamp": "2024-05-16T12:31:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176900", + "Timestamp": "2024-05-16T12:31:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173200", + "Timestamp": "2024-05-16T12:31:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-16T12:31:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.638100", + "Timestamp": "2024-05-16T12:31:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.975900", + "Timestamp": "2024-05-16T12:31:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.564000", + "Timestamp": "2024-05-16T12:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.559000", + "Timestamp": "2024-05-16T12:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.434000", + "Timestamp": "2024-05-16T12:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071500", + "Timestamp": "2024-05-16T12:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041500", + "Timestamp": "2024-05-16T12:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011500", + "Timestamp": "2024-05-16T12:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.022100", + "Timestamp": "2024-05-16T12:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.655100", + "Timestamp": "2024-05-16T12:31:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.181100", + "Timestamp": "2024-05-16T12:31:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.187400", + "Timestamp": "2024-05-16T12:31:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183700", + "Timestamp": "2024-05-16T12:31:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127400", + "Timestamp": "2024-05-16T12:31:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.479300", + "Timestamp": "2024-05-16T12:31:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.473800", + "Timestamp": "2024-05-16T12:31:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.246100", + "Timestamp": "2024-05-16T12:30:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.241100", + "Timestamp": "2024-05-16T12:30:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.116100", + "Timestamp": "2024-05-16T12:30:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.613300", + "Timestamp": "2024-05-16T12:30:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.608300", + "Timestamp": "2024-05-16T12:30:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.483300", + "Timestamp": "2024-05-16T12:30:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.132900", + "Timestamp": "2024-05-16T12:30:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.127900", + "Timestamp": "2024-05-16T12:30:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.002900", + "Timestamp": "2024-05-16T12:30:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.500400", + "Timestamp": "2024-05-16T12:30:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.964900", + "Timestamp": "2024-05-16T12:30:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.683800", + "Timestamp": "2024-05-16T12:30:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.678800", + "Timestamp": "2024-05-16T12:30:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.553800", + "Timestamp": "2024-05-16T12:30:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.670500", + "Timestamp": "2024-05-16T12:30:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.800600", + "Timestamp": "2024-05-16T12:30:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.685400", + "Timestamp": "2024-05-16T12:30:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.680400", + "Timestamp": "2024-05-16T12:30:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.555400", + "Timestamp": "2024-05-16T12:30:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.364700", + "Timestamp": "2024-05-16T12:30:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.361000", + "Timestamp": "2024-05-16T12:30:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.304700", + "Timestamp": "2024-05-16T12:30:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062200", + "Timestamp": "2024-05-16T12:26:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002200", + "Timestamp": "2024-05-16T12:26:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002200", + "Timestamp": "2024-05-16T12:26:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.716700", + "Timestamp": "2024-05-16T12:23:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.716700", + "Timestamp": "2024-05-16T12:23:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.585200", + "Timestamp": "2024-05-16T12:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.555200", + "Timestamp": "2024-05-16T12:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.455200", + "Timestamp": "2024-05-16T12:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.342900", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.337900", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212900", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.971000", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.941000", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.841000", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.042100", + "Timestamp": "2024-05-16T12:16:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.212400", + "Timestamp": "2024-05-16T12:16:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.208400", + "Timestamp": "2024-05-16T12:16:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.152400", + "Timestamp": "2024-05-16T12:16:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.831100", + "Timestamp": "2024-05-16T12:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.826100", + "Timestamp": "2024-05-16T12:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.701100", + "Timestamp": "2024-05-16T12:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.825100", + "Timestamp": "2024-05-16T12:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.820100", + "Timestamp": "2024-05-16T12:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.695100", + "Timestamp": "2024-05-16T12:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.547700", + "Timestamp": "2024-05-16T12:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.517700", + "Timestamp": "2024-05-16T12:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.417700", + "Timestamp": "2024-05-16T12:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.992700", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.852200", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.042900", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.643700", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.766300", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.761300", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.636300", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114900", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110900", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054900", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.548500", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.698000", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.693000", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.568000", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.111300", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.106300", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.981300", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.835400", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.449500", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.444500", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.319500", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.806600", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.848100", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.818100", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.718100", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.072200", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.067200", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.942200", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.114800", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.084800", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.984800", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.597200", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.592200", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.467200", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.130400", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.125400", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.000400", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.979500", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.690500", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.685500", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.560500", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.941900", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.911900", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.811900", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.636900", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.631900", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.506900", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.240500", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.235500", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.110500", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.585800", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.580800", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.455800", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.695600", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.690600", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.565600", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.247200", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.886600", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.881600", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.756600", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.117200", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.112200", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.987200", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "a1.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.216700", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "a1.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.211700", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "a1.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086700", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.355600", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.325600", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.225600", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.271000", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.241000", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.141000", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.062300", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.057300", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.932300", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.527600", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.522600", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.397600", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176800", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173100", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116800", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.663100", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.097600", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.092600", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967600", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.193400", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.344600", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.640800", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.635800", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.510800", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.018500", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.013500", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.888500", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.931800", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.117300", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.112300", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.987300", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220300", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.310200", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.014700", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235600", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.534100", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.715100", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.685100", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.585100", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120900", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.540300", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.535300", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.410300", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172400", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168700", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134500", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130500", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074500", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.072100", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.067100", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.942100", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.751600", + "Timestamp": "2024-05-16T12:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.746600", + "Timestamp": "2024-05-16T12:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.621600", + "Timestamp": "2024-05-16T12:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.192200", + "Timestamp": "2024-05-16T12:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.188200", + "Timestamp": "2024-05-16T12:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.132200", + "Timestamp": "2024-05-16T12:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114700", + "Timestamp": "2024-05-16T12:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T12:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054700", + "Timestamp": "2024-05-16T12:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.233100", + "Timestamp": "2024-05-16T12:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.229100", + "Timestamp": "2024-05-16T12:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.173100", + "Timestamp": "2024-05-16T12:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.891600", + "Timestamp": "2024-05-16T12:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.886600", + "Timestamp": "2024-05-16T12:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.761600", + "Timestamp": "2024-05-16T12:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.004000", + "Timestamp": "2024-05-16T12:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.990700", + "Timestamp": "2024-05-16T12:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.985700", + "Timestamp": "2024-05-16T12:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.860700", + "Timestamp": "2024-05-16T12:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.573700", + "Timestamp": "2024-05-16T12:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.568700", + "Timestamp": "2024-05-16T12:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.443700", + "Timestamp": "2024-05-16T12:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.506600", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.501600", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.376600", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115900", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055900", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.235500", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.230500", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.105500", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.164000", + "Timestamp": "2024-05-16T12:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.159000", + "Timestamp": "2024-05-16T12:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.034000", + "Timestamp": "2024-05-16T12:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.430100", + "Timestamp": "2024-05-16T12:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.400100", + "Timestamp": "2024-05-16T12:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.300100", + "Timestamp": "2024-05-16T12:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069900", + "Timestamp": "2024-05-16T12:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040900", + "Timestamp": "2024-05-16T12:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009900", + "Timestamp": "2024-05-16T12:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.498700", + "Timestamp": "2024-05-16T12:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.690600", + "Timestamp": "2024-05-16T12:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.685600", + "Timestamp": "2024-05-16T12:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.560600", + "Timestamp": "2024-05-16T12:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.518900", + "Timestamp": "2024-05-16T12:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.513900", + "Timestamp": "2024-05-16T12:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.388900", + "Timestamp": "2024-05-16T12:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077300", + "Timestamp": "2024-05-16T12:16:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073600", + "Timestamp": "2024-05-16T12:16:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017300", + "Timestamp": "2024-05-16T12:16:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.285700", + "Timestamp": "2024-05-16T12:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.280700", + "Timestamp": "2024-05-16T12:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.155700", + "Timestamp": "2024-05-16T12:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.173300", + "Timestamp": "2024-05-16T12:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.168300", + "Timestamp": "2024-05-16T12:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.043300", + "Timestamp": "2024-05-16T12:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.253700", + "Timestamp": "2024-05-16T12:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231500", + "Timestamp": "2024-05-16T12:16:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.328900", + "Timestamp": "2024-05-16T12:16:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323900", + "Timestamp": "2024-05-16T12:16:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.198900", + "Timestamp": "2024-05-16T12:16:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.894200", + "Timestamp": "2024-05-16T12:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.827600", + "Timestamp": "2024-05-16T12:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.864200", + "Timestamp": "2024-05-16T12:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.797600", + "Timestamp": "2024-05-16T12:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.764200", + "Timestamp": "2024-05-16T12:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.697600", + "Timestamp": "2024-05-16T12:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.595700", + "Timestamp": "2024-05-16T12:16:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.049200", + "Timestamp": "2024-05-16T12:16:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.843200", + "Timestamp": "2024-05-16T12:16:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117000", + "Timestamp": "2024-05-16T12:16:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-16T12:16:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057000", + "Timestamp": "2024-05-16T12:16:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.657600", + "Timestamp": "2024-05-16T12:15:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.652600", + "Timestamp": "2024-05-16T12:15:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.527600", + "Timestamp": "2024-05-16T12:15:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.588400", + "Timestamp": "2024-05-16T12:15:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.295500", + "Timestamp": "2024-05-16T12:15:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.290500", + "Timestamp": "2024-05-16T12:15:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165500", + "Timestamp": "2024-05-16T12:15:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.356200", + "Timestamp": "2024-05-16T12:15:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.351200", + "Timestamp": "2024-05-16T12:15:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.226200", + "Timestamp": "2024-05-16T12:15:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.772300", + "Timestamp": "2024-05-16T12:15:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.804900", + "Timestamp": "2024-05-16T12:15:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.799900", + "Timestamp": "2024-05-16T12:15:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.674900", + "Timestamp": "2024-05-16T12:15:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.845400", + "Timestamp": "2024-05-16T12:15:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.840400", + "Timestamp": "2024-05-16T12:15:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.715400", + "Timestamp": "2024-05-16T12:15:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.178300", + "Timestamp": "2024-05-16T12:15:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174600", + "Timestamp": "2024-05-16T12:15:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118300", + "Timestamp": "2024-05-16T12:15:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.510800", + "Timestamp": "2024-05-16T12:15:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.981800", + "Timestamp": "2024-05-16T12:01:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.951800", + "Timestamp": "2024-05-16T12:01:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.851800", + "Timestamp": "2024-05-16T12:01:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.673200", + "Timestamp": "2024-05-16T12:01:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.668200", + "Timestamp": "2024-05-16T12:01:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.543200", + "Timestamp": "2024-05-16T12:01:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.300100", + "Timestamp": "2024-05-16T12:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "a1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116500", + "Timestamp": "2024-05-16T12:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "a1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T12:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "a1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056500", + "Timestamp": "2024-05-16T12:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.808400", + "Timestamp": "2024-05-16T12:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.135500", + "Timestamp": "2024-05-16T12:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.229400", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.224400", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.099400", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.443800", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.438800", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.313800", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.782400", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.959400", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.954400", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.829400", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.872600", + "Timestamp": "2024-05-16T12:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.842600", + "Timestamp": "2024-05-16T12:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.742600", + "Timestamp": "2024-05-16T12:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.938200", + "Timestamp": "2024-05-16T12:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.086000", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.500900", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.201500", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.197500", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141500", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.747700", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.742700", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.617700", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.746500", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.330800", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.567900", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218600", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.522800", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122600", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066300", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048100", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.936800", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.931800", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.806800", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.219700", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.798700", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.793700", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.668700", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.228200", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.391700", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.361700", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.261700", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.711200", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.134000", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.788900", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.783900", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.658900", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.147900", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.117900", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.017900", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.728700", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.723700", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.598700", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.443000", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.364200", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.004300", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.887100", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.976900", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.112300", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.107300", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.982300", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.040600", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.035600", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.910600", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.085600", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.955200", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.374700", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.369700", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.244700", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093600", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095600", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089900", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091900", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033600", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035600", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.994100", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.989100", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.864100", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.686700", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "f1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.681700", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.556700", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.315800", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.310800", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.185800", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.357000", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.352000", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.227000", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.580000", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.575000", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.450000", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.543000", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.538000", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.413000", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.933300", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.210900", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.180900", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.080900", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.455500", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107000", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051000", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.379300", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.374300", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.249300", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096100", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092400", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036100", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.773400", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.768400", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.643400", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.728500", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.723500", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.598500", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.497500", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.492500", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.367500", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104700", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101000", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044700", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.613100", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.608100", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.483100", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.913900", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.337800", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.332800", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.207800", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.832200", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.827200", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.702200", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.174800", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.182900", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.169800", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.177900", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.044800", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.052900", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151000", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.191000", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091000", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.705000", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.960600", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.712700", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.682700", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.582700", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138200", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134500", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078200", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.554900", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.549900", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.424900", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.235700", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.230700", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.105700", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161400", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157700", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101400", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128800", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125100", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.116500", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.925000", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.675000", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.826400", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.821400", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.696400", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298000", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268000", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168000", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094700", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091000", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034700", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119900", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116200", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059900", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.895500", + "Timestamp": "2024-05-16T12:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.778800", + "Timestamp": "2024-05-16T12:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.773800", + "Timestamp": "2024-05-16T12:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.648800", + "Timestamp": "2024-05-16T12:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.611800", + "Timestamp": "2024-05-16T12:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.606800", + "Timestamp": "2024-05-16T12:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.481800", + "Timestamp": "2024-05-16T12:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.454600", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.840700", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.273300", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231700", + "Timestamp": "2024-05-16T12:01:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.359500", + "Timestamp": "2024-05-16T12:01:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.354500", + "Timestamp": "2024-05-16T12:01:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.229500", + "Timestamp": "2024-05-16T12:01:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423800", + "Timestamp": "2024-05-16T12:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.443500", + "Timestamp": "2024-05-16T12:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.968100", + "Timestamp": "2024-05-16T12:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.963100", + "Timestamp": "2024-05-16T12:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.838100", + "Timestamp": "2024-05-16T12:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.742500", + "Timestamp": "2024-05-16T12:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.737500", + "Timestamp": "2024-05-16T12:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.612500", + "Timestamp": "2024-05-16T12:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.017600", + "Timestamp": "2024-05-16T12:01:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.765500", + "Timestamp": "2024-05-16T12:01:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.570300", + "Timestamp": "2024-05-16T12:01:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.610300", + "Timestamp": "2024-05-16T12:01:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.510300", + "Timestamp": "2024-05-16T12:01:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.739500", + "Timestamp": "2024-05-16T12:01:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.734500", + "Timestamp": "2024-05-16T12:01:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.609500", + "Timestamp": "2024-05-16T12:01:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129400", + "Timestamp": "2024-05-16T12:01:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T12:01:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069400", + "Timestamp": "2024-05-16T12:01:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.583800", + "Timestamp": "2024-05-16T12:01:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.578800", + "Timestamp": "2024-05-16T12:01:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.453800", + "Timestamp": "2024-05-16T12:01:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.288400", + "Timestamp": "2024-05-16T12:01:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.258400", + "Timestamp": "2024-05-16T12:01:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.158400", + "Timestamp": "2024-05-16T12:01:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.904900", + "Timestamp": "2024-05-16T12:01:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.065000", + "Timestamp": "2024-05-16T12:01:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.060000", + "Timestamp": "2024-05-16T12:01:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.935000", + "Timestamp": "2024-05-16T12:01:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.294200", + "Timestamp": "2024-05-16T12:01:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.289200", + "Timestamp": "2024-05-16T12:01:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.164200", + "Timestamp": "2024-05-16T12:01:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-16T12:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103200", + "Timestamp": "2024-05-16T12:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046900", + "Timestamp": "2024-05-16T12:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.831000", + "Timestamp": "2024-05-16T12:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.699400", + "Timestamp": "2024-05-16T12:00:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.694400", + "Timestamp": "2024-05-16T12:00:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.569400", + "Timestamp": "2024-05-16T12:00:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.712800", + "Timestamp": "2024-05-16T12:00:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.123700", + "Timestamp": "2024-05-16T12:00:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.900700", + "Timestamp": "2024-05-16T12:00:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.728700", + "Timestamp": "2024-05-16T12:00:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.812600", + "Timestamp": "2024-05-16T12:00:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.921700", + "Timestamp": "2024-05-16T12:00:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.445700", + "Timestamp": "2024-05-16T12:00:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.440700", + "Timestamp": "2024-05-16T12:00:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.315700", + "Timestamp": "2024-05-16T12:00:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.934000", + "Timestamp": "2024-05-16T12:00:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.076800", + "Timestamp": "2024-05-16T12:00:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074700", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071000", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014700", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219500", + "Timestamp": "2024-05-16T11:46:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.781100", + "Timestamp": "2024-05-16T11:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.895000", + "Timestamp": "2024-05-16T11:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.890000", + "Timestamp": "2024-05-16T11:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.765000", + "Timestamp": "2024-05-16T11:46:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.284000", + "Timestamp": "2024-05-16T11:46:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.731000", + "Timestamp": "2024-05-16T11:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.701000", + "Timestamp": "2024-05-16T11:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.601000", + "Timestamp": "2024-05-16T11:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124900", + "Timestamp": "2024-05-16T11:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121200", + "Timestamp": "2024-05-16T11:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064900", + "Timestamp": "2024-05-16T11:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.267700", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.732300", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.727300", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.602300", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.907900", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.948500", + "Timestamp": "2024-05-16T11:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.951300", + "Timestamp": "2024-05-16T11:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.181600", + "Timestamp": "2024-05-16T11:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.176600", + "Timestamp": "2024-05-16T11:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.051600", + "Timestamp": "2024-05-16T11:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.742500", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.737500", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.612500", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.410100", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.405100", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.280100", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.443500", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.438500", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.313500", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.578700", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.970800", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.658700", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.653700", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.528700", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.444100", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.439100", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.314100", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.595400", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.194500", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.235700", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.205700", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.875700", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.845700", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.745700", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118300", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.876100", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.871100", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.746100", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.261700", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.668900", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.638900", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.538900", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.104700", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.099700", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.974700", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.784500", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.779500", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.654500", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.981400", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.976400", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.851400", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.490300", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.485300", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.360300", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.202700", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.197700", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.072700", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.500400", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.495400", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.370400", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.553600", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.469600", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.305100", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.300100", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.175100", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.668100", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.663100", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.538100", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.740800", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.735800", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.610800", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.987200", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.982200", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.857200", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.262700", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.257700", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.132700", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.567200", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.562200", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.437200", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.829200", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119800", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116100", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059800", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159900", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156200", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099900", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.456100", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.110000", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.080000", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.980000", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.281500", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276500", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.151500", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.878300", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.761400", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.731400", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.631400", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163000", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159300", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278800", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.274800", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.218800", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.754300", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.749300", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.624300", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120600", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060600", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.120000", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.090000", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.990000", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.557000", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135300", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131600", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075300", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.754100", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.749100", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.624100", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.131300", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.476000", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.471000", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.346000", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.584100", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.579100", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.454100", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.898300", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.893300", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.768300", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.889500", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.158800", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.826300", + "Timestamp": "2024-05-16T11:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.460200", + "Timestamp": "2024-05-16T11:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.911300", + "Timestamp": "2024-05-16T11:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.647500", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.617500", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.517500", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.017700", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.012700", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.887700", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.942500", + "Timestamp": "2024-05-16T11:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.760500", + "Timestamp": "2024-05-16T11:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.755500", + "Timestamp": "2024-05-16T11:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.630500", + "Timestamp": "2024-05-16T11:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.551400", + "Timestamp": "2024-05-16T11:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.546400", + "Timestamp": "2024-05-16T11:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.421400", + "Timestamp": "2024-05-16T11:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062600", + "Timestamp": "2024-05-16T11:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-16T11:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-16T11:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.917100", + "Timestamp": "2024-05-16T11:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.320800", + "Timestamp": "2024-05-16T11:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.316700", + "Timestamp": "2024-05-16T11:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.315800", + "Timestamp": "2024-05-16T11:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.311700", + "Timestamp": "2024-05-16T11:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190800", + "Timestamp": "2024-05-16T11:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186700", + "Timestamp": "2024-05-16T11:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.042800", + "Timestamp": "2024-05-16T11:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.012800", + "Timestamp": "2024-05-16T11:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.912800", + "Timestamp": "2024-05-16T11:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.841600", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.836600", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.711600", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.526500", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.521500", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.396500", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163900", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160200", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103900", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140800", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109200", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180800", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149200", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080800", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049200", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.468900", + "Timestamp": "2024-05-16T11:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.463900", + "Timestamp": "2024-05-16T11:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.338900", + "Timestamp": "2024-05-16T11:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.374100", + "Timestamp": "2024-05-16T11:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.369100", + "Timestamp": "2024-05-16T11:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.244100", + "Timestamp": "2024-05-16T11:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.998500", + "Timestamp": "2024-05-16T11:46:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.968500", + "Timestamp": "2024-05-16T11:46:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.868500", + "Timestamp": "2024-05-16T11:46:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155900", + "Timestamp": "2024-05-16T11:46:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151900", + "Timestamp": "2024-05-16T11:46:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-16T11:46:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168300", + "Timestamp": "2024-05-16T11:46:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164600", + "Timestamp": "2024-05-16T11:46:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108300", + "Timestamp": "2024-05-16T11:46:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.814400", + "Timestamp": "2024-05-16T11:46:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.784400", + "Timestamp": "2024-05-16T11:46:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.684400", + "Timestamp": "2024-05-16T11:46:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.537600", + "Timestamp": "2024-05-16T11:46:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082700", + "Timestamp": "2024-05-16T11:46:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079000", + "Timestamp": "2024-05-16T11:46:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022700", + "Timestamp": "2024-05-16T11:46:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.974400", + "Timestamp": "2024-05-16T11:46:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.501200", + "Timestamp": "2024-05-16T11:46:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.459900", + "Timestamp": "2024-05-16T11:46:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.239200", + "Timestamp": "2024-05-16T11:46:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.232600", + "Timestamp": "2024-05-16T11:46:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.250100", + "Timestamp": "2024-05-16T11:46:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.220100", + "Timestamp": "2024-05-16T11:46:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.120100", + "Timestamp": "2024-05-16T11:46:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.130300", + "Timestamp": "2024-05-16T11:46:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.079100", + "Timestamp": "2024-05-16T11:46:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441200", + "Timestamp": "2024-05-16T11:46:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.718900", + "Timestamp": "2024-05-16T11:46:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124200", + "Timestamp": "2024-05-16T11:46:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120500", + "Timestamp": "2024-05-16T11:46:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064200", + "Timestamp": "2024-05-16T11:46:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.647800", + "Timestamp": "2024-05-16T11:46:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.373800", + "Timestamp": "2024-05-16T11:46:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343800", + "Timestamp": "2024-05-16T11:46:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.243800", + "Timestamp": "2024-05-16T11:46:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.795500", + "Timestamp": "2024-05-16T11:46:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.579300", + "Timestamp": "2024-05-16T11:46:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.563800", + "Timestamp": "2024-05-16T11:46:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.558800", + "Timestamp": "2024-05-16T11:46:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.433800", + "Timestamp": "2024-05-16T11:46:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.280100", + "Timestamp": "2024-05-16T11:46:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173500", + "Timestamp": "2024-05-16T11:46:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169500", + "Timestamp": "2024-05-16T11:46:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113500", + "Timestamp": "2024-05-16T11:46:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297000", + "Timestamp": "2024-05-16T11:45:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.292000", + "Timestamp": "2024-05-16T11:45:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167000", + "Timestamp": "2024-05-16T11:45:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T11:45:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-16T11:45:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046300", + "Timestamp": "2024-05-16T11:45:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.011600", + "Timestamp": "2024-05-16T11:45:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.006600", + "Timestamp": "2024-05-16T11:45:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.881600", + "Timestamp": "2024-05-16T11:45:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.480800", + "Timestamp": "2024-05-16T11:45:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.475800", + "Timestamp": "2024-05-16T11:45:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.350800", + "Timestamp": "2024-05-16T11:45:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.187100", + "Timestamp": "2024-05-16T11:45:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.182100", + "Timestamp": "2024-05-16T11:45:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.057100", + "Timestamp": "2024-05-16T11:45:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.715500", + "Timestamp": "2024-05-16T11:45:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.710500", + "Timestamp": "2024-05-16T11:45:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.585500", + "Timestamp": "2024-05-16T11:45:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.820800", + "Timestamp": "2024-05-16T11:45:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.815800", + "Timestamp": "2024-05-16T11:45:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.690800", + "Timestamp": "2024-05-16T11:45:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.244100", + "Timestamp": "2024-05-16T11:45:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.461700", + "Timestamp": "2024-05-16T11:45:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.457700", + "Timestamp": "2024-05-16T11:45:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.401700", + "Timestamp": "2024-05-16T11:45:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.052400", + "Timestamp": "2024-05-16T11:45:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.026900", + "Timestamp": "2024-05-16T11:31:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.171000", + "Timestamp": "2024-05-16T11:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.643600", + "Timestamp": "2024-05-16T11:31:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.638600", + "Timestamp": "2024-05-16T11:31:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.513600", + "Timestamp": "2024-05-16T11:31:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.928100", + "Timestamp": "2024-05-16T11:31:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.923100", + "Timestamp": "2024-05-16T11:31:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.798100", + "Timestamp": "2024-05-16T11:31:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.527400", + "Timestamp": "2024-05-16T11:31:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.246800", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.241800", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.116800", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.056800", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.123700", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.289100", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.474900", + "Timestamp": "2024-05-16T11:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.594100", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.589100", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.464100", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.251600", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.291600", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.191600", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.460600", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.033400", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.028400", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.903400", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.186900", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.156900", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.056900", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.844600", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.839600", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.714600", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.178000", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174300", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118000", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.101400", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042900", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.813400", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.808400", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.683400", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.900100", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.895100", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.770100", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.294500", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.305700", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.300700", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175700", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.759300", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.517800", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.748200", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.512800", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.743200", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.387800", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.618200", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.574400", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.544400", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.444400", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.117100", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.454800", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.617800", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.612800", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.487800", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.253700", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.369800", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.373400", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.339800", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343400", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.239800", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.243400", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.462100", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.457100", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.332100", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.750000", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.146900", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.116900", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.016900", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.854100", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.849100", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.724100", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.101800", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.613700", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.513400", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132700", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172700", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072700", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.539100", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222200", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.561900", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.556900", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.431900", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.658100", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.653100", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.528100", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.490900", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.485900", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.360900", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.542400", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.537400", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.412400", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.152700", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.147700", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.022700", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.044800", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.039800", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.914800", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.490000", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.485000", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.360000", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.535800", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.530800", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.405800", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.163500", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.158500", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.033500", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133900", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130200", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073900", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.155800", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.125800", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.025800", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.183500", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.178500", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.053500", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.137500", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.099000", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.094000", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.969000", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.140700", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.049600", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.044600", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.919600", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.812900", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.807900", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.682900", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176900", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173200", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151700", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148000", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091700", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.264300", + "Timestamp": "2024-05-16T11:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.259300", + "Timestamp": "2024-05-16T11:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T11:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.130300", + "Timestamp": "2024-05-16T11:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.792000", + "Timestamp": "2024-05-16T11:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.877100", + "Timestamp": "2024-05-16T11:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.455900", + "Timestamp": "2024-05-16T11:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.450900", + "Timestamp": "2024-05-16T11:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.325900", + "Timestamp": "2024-05-16T11:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.583300", + "Timestamp": "2024-05-16T11:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.578300", + "Timestamp": "2024-05-16T11:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.453300", + "Timestamp": "2024-05-16T11:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.481400", + "Timestamp": "2024-05-16T11:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.626800", + "Timestamp": "2024-05-16T11:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.190000", + "Timestamp": "2024-05-16T11:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.186000", + "Timestamp": "2024-05-16T11:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130000", + "Timestamp": "2024-05-16T11:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115200", + "Timestamp": "2024-05-16T11:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111200", + "Timestamp": "2024-05-16T11:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055200", + "Timestamp": "2024-05-16T11:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156900", + "Timestamp": "2024-05-16T11:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152900", + "Timestamp": "2024-05-16T11:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096900", + "Timestamp": "2024-05-16T11:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.669700", + "Timestamp": "2024-05-16T11:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.664700", + "Timestamp": "2024-05-16T11:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.539700", + "Timestamp": "2024-05-16T11:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.874300", + "Timestamp": "2024-05-16T11:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123800", + "Timestamp": "2024-05-16T11:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120100", + "Timestamp": "2024-05-16T11:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063800", + "Timestamp": "2024-05-16T11:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.575300", + "Timestamp": "2024-05-16T11:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.545300", + "Timestamp": "2024-05-16T11:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.445300", + "Timestamp": "2024-05-16T11:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166300", + "Timestamp": "2024-05-16T11:31:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162600", + "Timestamp": "2024-05-16T11:31:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T11:31:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.262400", + "Timestamp": "2024-05-16T11:31:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302400", + "Timestamp": "2024-05-16T11:31:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.202400", + "Timestamp": "2024-05-16T11:31:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.201700", + "Timestamp": "2024-05-16T11:31:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198700", + "Timestamp": "2024-05-16T11:31:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141700", + "Timestamp": "2024-05-16T11:31:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.845900", + "Timestamp": "2024-05-16T11:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.685400", + "Timestamp": "2024-05-16T11:31:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.488700", + "Timestamp": "2024-05-16T11:31:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.641800", + "Timestamp": "2024-05-16T11:31:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.636800", + "Timestamp": "2024-05-16T11:31:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.511800", + "Timestamp": "2024-05-16T11:31:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.728100", + "Timestamp": "2024-05-16T11:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.723100", + "Timestamp": "2024-05-16T11:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.598100", + "Timestamp": "2024-05-16T11:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.252700", + "Timestamp": "2024-05-16T11:31:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.247700", + "Timestamp": "2024-05-16T11:31:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.122700", + "Timestamp": "2024-05-16T11:31:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.501300", + "Timestamp": "2024-05-16T11:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.471300", + "Timestamp": "2024-05-16T11:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.371300", + "Timestamp": "2024-05-16T11:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.014000", + "Timestamp": "2024-05-16T11:31:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.181400", + "Timestamp": "2024-05-16T11:31:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.176400", + "Timestamp": "2024-05-16T11:31:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.051400", + "Timestamp": "2024-05-16T11:31:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.970600", + "Timestamp": "2024-05-16T11:31:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.374700", + "Timestamp": "2024-05-16T11:31:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.975300", + "Timestamp": "2024-05-16T11:30:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.970300", + "Timestamp": "2024-05-16T11:30:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.845300", + "Timestamp": "2024-05-16T11:30:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.056900", + "Timestamp": "2024-05-16T11:30:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.051900", + "Timestamp": "2024-05-16T11:30:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.926900", + "Timestamp": "2024-05-16T11:30:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.928500", + "Timestamp": "2024-05-16T11:30:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.923500", + "Timestamp": "2024-05-16T11:30:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.798500", + "Timestamp": "2024-05-16T11:30:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.458400", + "Timestamp": "2024-05-16T11:30:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.453400", + "Timestamp": "2024-05-16T11:30:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.328400", + "Timestamp": "2024-05-16T11:30:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.597300", + "Timestamp": "2024-05-16T11:30:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.335000", + "Timestamp": "2024-05-16T11:30:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.330000", + "Timestamp": "2024-05-16T11:30:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.205000", + "Timestamp": "2024-05-16T11:30:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.639100", + "Timestamp": "2024-05-16T11:30:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084500", + "Timestamp": "2024-05-16T11:30:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080800", + "Timestamp": "2024-05-16T11:30:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024500", + "Timestamp": "2024-05-16T11:30:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.175500", + "Timestamp": "2024-05-16T11:30:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.687700", + "Timestamp": "2024-05-16T11:30:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113400", + "Timestamp": "2024-05-16T11:30:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153400", + "Timestamp": "2024-05-16T11:30:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053400", + "Timestamp": "2024-05-16T11:30:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.568600", + "Timestamp": "2024-05-16T11:30:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.563600", + "Timestamp": "2024-05-16T11:30:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.438600", + "Timestamp": "2024-05-16T11:30:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "a1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080000", + "Timestamp": "2024-05-16T11:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "a1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076300", + "Timestamp": "2024-05-16T11:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "a1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020000", + "Timestamp": "2024-05-16T11:17:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.463300", + "Timestamp": "2024-05-16T11:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.433300", + "Timestamp": "2024-05-16T11:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.333300", + "Timestamp": "2024-05-16T11:17:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.959900", + "Timestamp": "2024-05-16T11:16:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T11:16:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.695100", + "Timestamp": "2024-05-16T11:16:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.681900", + "Timestamp": "2024-05-16T11:16:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.676900", + "Timestamp": "2024-05-16T11:16:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.551900", + "Timestamp": "2024-05-16T11:16:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116000", + "Timestamp": "2024-05-16T11:16:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.020300", + "Timestamp": "2024-05-16T11:16:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.015300", + "Timestamp": "2024-05-16T11:16:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.890300", + "Timestamp": "2024-05-16T11:16:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.089000", + "Timestamp": "2024-05-16T11:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.084000", + "Timestamp": "2024-05-16T11:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.959000", + "Timestamp": "2024-05-16T11:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152700", + "Timestamp": "2024-05-16T11:16:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192700", + "Timestamp": "2024-05-16T11:16:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092700", + "Timestamp": "2024-05-16T11:16:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.869500", + "Timestamp": "2024-05-16T11:16:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.576800", + "Timestamp": "2024-05-16T11:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.571800", + "Timestamp": "2024-05-16T11:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.446800", + "Timestamp": "2024-05-16T11:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.841500", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.901100", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.638500", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.633500", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.508500", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.961100", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.956100", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.831100", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.993800", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.361800", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.331800", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.231800", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.073300", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.563600", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.558600", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.433600", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118900", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115200", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058900", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.926700", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.595700", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.305400", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.300400", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.175400", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.497500", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.190000", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.537700", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.532700", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.407700", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.228700", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.812000", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.807000", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.682000", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.853100", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.768600", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.736600", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.221100", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.271800", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.823300", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.818300", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.693300", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.028900", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.023900", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.898900", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.284700", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.279700", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.154700", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.747100", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.254700", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.213600", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.208600", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.083600", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.815200", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.810200", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.685200", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.482900", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.477900", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.352900", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.117500", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.050200", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.045200", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.920200", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.178400", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.148400", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.048400", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.766300", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.761300", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.636300", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.712100", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.707100", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.582100", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.522800", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.860900", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078200", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.049200", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018200", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.153300", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.148300", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.023300", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.208000", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "a1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.203000", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078000", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.880500", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.875500", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.750500", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.262800", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.351400", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.257800", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.346400", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.132800", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.221400", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.092400", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.087400", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.962400", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.003600", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.998600", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.873600", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.872200", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.416300", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.442800", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.411300", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.437800", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.286300", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.312800", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.352700", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.347700", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.222700", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.929300", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.343000", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.338000", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.213000", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.933700", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.971300", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226700", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.934500", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.929500", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.804500", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214500", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.044200", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.039200", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.914200", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.840200", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.835200", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.710200", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.052600", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218400", + "Timestamp": "2024-05-16T11:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120200", + "Timestamp": "2024-05-16T11:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140100", + "Timestamp": "2024-05-16T11:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136400", + "Timestamp": "2024-05-16T11:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080100", + "Timestamp": "2024-05-16T11:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.761400", + "Timestamp": "2024-05-16T11:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.731400", + "Timestamp": "2024-05-16T11:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.631400", + "Timestamp": "2024-05-16T11:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.012500", + "Timestamp": "2024-05-16T11:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.374600", + "Timestamp": "2024-05-16T11:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.369600", + "Timestamp": "2024-05-16T11:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.244600", + "Timestamp": "2024-05-16T11:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166500", + "Timestamp": "2024-05-16T11:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162500", + "Timestamp": "2024-05-16T11:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-16T11:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "p2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.553900", + "Timestamp": "2024-05-16T11:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.593900", + "Timestamp": "2024-05-16T11:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "p2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.493900", + "Timestamp": "2024-05-16T11:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.554200", + "Timestamp": "2024-05-16T11:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.549200", + "Timestamp": "2024-05-16T11:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.424200", + "Timestamp": "2024-05-16T11:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.857700", + "Timestamp": "2024-05-16T11:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.834000", + "Timestamp": "2024-05-16T11:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.953300", + "Timestamp": "2024-05-16T11:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.948300", + "Timestamp": "2024-05-16T11:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.823300", + "Timestamp": "2024-05-16T11:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311200", + "Timestamp": "2024-05-16T11:16:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.306200", + "Timestamp": "2024-05-16T11:16:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181200", + "Timestamp": "2024-05-16T11:16:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.491100", + "Timestamp": "2024-05-16T11:16:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.461100", + "Timestamp": "2024-05-16T11:16:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.361100", + "Timestamp": "2024-05-16T11:16:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.435700", + "Timestamp": "2024-05-16T11:16:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.292300", + "Timestamp": "2024-05-16T11:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.287300", + "Timestamp": "2024-05-16T11:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.162300", + "Timestamp": "2024-05-16T11:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.091900", + "Timestamp": "2024-05-16T11:16:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.039800", + "Timestamp": "2024-05-16T11:16:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.025500", + "Timestamp": "2024-05-16T11:16:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.321900", + "Timestamp": "2024-05-16T11:16:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314800", + "Timestamp": "2024-05-16T11:16:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.316900", + "Timestamp": "2024-05-16T11:16:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.309800", + "Timestamp": "2024-05-16T11:16:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.191900", + "Timestamp": "2024-05-16T11:16:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184800", + "Timestamp": "2024-05-16T11:16:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.988500", + "Timestamp": "2024-05-16T11:16:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159000", + "Timestamp": "2024-05-16T11:16:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155300", + "Timestamp": "2024-05-16T11:16:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099000", + "Timestamp": "2024-05-16T11:16:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231500", + "Timestamp": "2024-05-16T11:16:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153400", + "Timestamp": "2024-05-16T11:16:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149700", + "Timestamp": "2024-05-16T11:16:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093400", + "Timestamp": "2024-05-16T11:16:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.514900", + "Timestamp": "2024-05-16T11:16:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.761700", + "Timestamp": "2024-05-16T11:16:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.756700", + "Timestamp": "2024-05-16T11:16:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.631700", + "Timestamp": "2024-05-16T11:16:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158400", + "Timestamp": "2024-05-16T11:16:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154700", + "Timestamp": "2024-05-16T11:16:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098400", + "Timestamp": "2024-05-16T11:16:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.509700", + "Timestamp": "2024-05-16T11:15:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.286300", + "Timestamp": "2024-05-16T11:15:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.281300", + "Timestamp": "2024-05-16T11:15:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.156300", + "Timestamp": "2024-05-16T11:15:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.992500", + "Timestamp": "2024-05-16T11:15:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.309600", + "Timestamp": "2024-05-16T11:15:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.304600", + "Timestamp": "2024-05-16T11:15:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.179600", + "Timestamp": "2024-05-16T11:15:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.205800", + "Timestamp": "2024-05-16T11:15:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.122700", + "Timestamp": "2024-05-16T11:15:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.117700", + "Timestamp": "2024-05-16T11:15:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.992700", + "Timestamp": "2024-05-16T11:15:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.118800", + "Timestamp": "2024-05-16T11:15:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.113800", + "Timestamp": "2024-05-16T11:15:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.988800", + "Timestamp": "2024-05-16T11:15:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.817300", + "Timestamp": "2024-05-16T11:15:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.519700", + "Timestamp": "2024-05-16T11:15:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.979500", + "Timestamp": "2024-05-16T11:15:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.974500", + "Timestamp": "2024-05-16T11:15:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.849500", + "Timestamp": "2024-05-16T11:15:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.277300", + "Timestamp": "2024-05-16T11:15:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.272300", + "Timestamp": "2024-05-16T11:15:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.147300", + "Timestamp": "2024-05-16T11:15:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T11:15:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T11:15:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052100", + "Timestamp": "2024-05-16T11:15:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.339200", + "Timestamp": "2024-05-16T11:02:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334200", + "Timestamp": "2024-05-16T11:02:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.209200", + "Timestamp": "2024-05-16T11:02:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.934500", + "Timestamp": "2024-05-16T11:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.614400", + "Timestamp": "2024-05-16T11:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.929500", + "Timestamp": "2024-05-16T11:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.609400", + "Timestamp": "2024-05-16T11:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.804500", + "Timestamp": "2024-05-16T11:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.484400", + "Timestamp": "2024-05-16T11:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.692200", + "Timestamp": "2024-05-16T11:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.684900", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.679900", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.554900", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.054900", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.049900", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.924900", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.529300", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.524300", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.399300", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.331200", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.231100", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.951000", + "Timestamp": "2024-05-16T11:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.921000", + "Timestamp": "2024-05-16T11:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.821000", + "Timestamp": "2024-05-16T11:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.491500", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.872100", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.867100", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.742100", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.008400", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.978400", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.878400", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.778000", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.773000", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.648000", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.773400", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.768400", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.643400", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.042700", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.037700", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.912700", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.294600", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.466200", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.461200", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.336200", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.813800", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.808800", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.683800", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141300", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147300", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181300", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.187300", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081300", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087300", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.148400", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.138500", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.093600", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.778100", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130100", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126400", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070100", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.764600", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.759600", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.634600", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.967000", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.460200", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.430200", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.330200", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.967200", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.962200", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.837200", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.092800", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.087800", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.962800", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.782700", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.777700", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.652700", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.680900", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.675900", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.550900", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.249100", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.199800", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.920400", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.100900", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.102000", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.097000", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.972000", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.447600", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.377300", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.347300", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.247300", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.867300", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.963600", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.985200", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301000", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296000", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171000", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.161200", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.131200", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.031200", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.926100", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.921100", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.796100", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070800", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041800", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010800", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229500", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.264300", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.234300", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.589700", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.584700", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.459700", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.373500", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.368500", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.243500", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044900", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.392400", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.387400", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.262400", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158500", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154500", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098500", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.203900", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.200200", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143900", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132600", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128600", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072600", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.143800", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.113800", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.013800", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.725700", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.508900", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.503900", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.378900", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.633100", + "Timestamp": "2024-05-16T11:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.628100", + "Timestamp": "2024-05-16T11:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.503100", + "Timestamp": "2024-05-16T11:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.977600", + "Timestamp": "2024-05-16T11:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.972600", + "Timestamp": "2024-05-16T11:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.847600", + "Timestamp": "2024-05-16T11:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.902000", + "Timestamp": "2024-05-16T11:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.897000", + "Timestamp": "2024-05-16T11:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.772000", + "Timestamp": "2024-05-16T11:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.405200", + "Timestamp": "2024-05-16T11:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.817000", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.493400", + "Timestamp": "2024-05-16T11:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.923700", + "Timestamp": "2024-05-16T11:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.918700", + "Timestamp": "2024-05-16T11:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.793700", + "Timestamp": "2024-05-16T11:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235300", + "Timestamp": "2024-05-16T11:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.451800", + "Timestamp": "2024-05-16T11:01:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.446800", + "Timestamp": "2024-05-16T11:01:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.321800", + "Timestamp": "2024-05-16T11:01:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102000", + "Timestamp": "2024-05-16T11:01:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098300", + "Timestamp": "2024-05-16T11:01:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042000", + "Timestamp": "2024-05-16T11:01:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.166700", + "Timestamp": "2024-05-16T11:01:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437900", + "Timestamp": "2024-05-16T11:01:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126600", + "Timestamp": "2024-05-16T11:01:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166600", + "Timestamp": "2024-05-16T11:01:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066600", + "Timestamp": "2024-05-16T11:01:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.149100", + "Timestamp": "2024-05-16T11:01:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.144100", + "Timestamp": "2024-05-16T11:01:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.019100", + "Timestamp": "2024-05-16T11:01:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.789700", + "Timestamp": "2024-05-16T11:01:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.784700", + "Timestamp": "2024-05-16T11:01:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.659700", + "Timestamp": "2024-05-16T11:01:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.965800", + "Timestamp": "2024-05-16T11:01:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.257400", + "Timestamp": "2024-05-16T11:01:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.252400", + "Timestamp": "2024-05-16T11:01:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.127400", + "Timestamp": "2024-05-16T11:01:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.737900", + "Timestamp": "2024-05-16T11:01:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.707900", + "Timestamp": "2024-05-16T11:01:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.607900", + "Timestamp": "2024-05-16T11:01:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.021800", + "Timestamp": "2024-05-16T11:01:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.614600", + "Timestamp": "2024-05-16T11:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119000", + "Timestamp": "2024-05-16T11:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159000", + "Timestamp": "2024-05-16T11:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059000", + "Timestamp": "2024-05-16T11:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.542000", + "Timestamp": "2024-05-16T11:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.230300", + "Timestamp": "2024-05-16T11:01:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.226600", + "Timestamp": "2024-05-16T11:01:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170300", + "Timestamp": "2024-05-16T11:01:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.624200", + "Timestamp": "2024-05-16T11:01:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.619200", + "Timestamp": "2024-05-16T11:01:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.494200", + "Timestamp": "2024-05-16T11:01:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.143800", + "Timestamp": "2024-05-16T11:01:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.460500", + "Timestamp": "2024-05-16T11:00:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.455500", + "Timestamp": "2024-05-16T11:00:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.330500", + "Timestamp": "2024-05-16T11:00:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158600", + "Timestamp": "2024-05-16T11:00:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155600", + "Timestamp": "2024-05-16T11:00:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098600", + "Timestamp": "2024-05-16T11:00:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.232800", + "Timestamp": "2024-05-16T11:00:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.106600", + "Timestamp": "2024-05-16T11:00:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.035600", + "Timestamp": "2024-05-16T11:00:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.030600", + "Timestamp": "2024-05-16T11:00:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.905600", + "Timestamp": "2024-05-16T11:00:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.353800", + "Timestamp": "2024-05-16T11:00:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.348800", + "Timestamp": "2024-05-16T11:00:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.223800", + "Timestamp": "2024-05-16T11:00:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096400", + "Timestamp": "2024-05-16T11:00:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092700", + "Timestamp": "2024-05-16T11:00:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036400", + "Timestamp": "2024-05-16T11:00:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113600", + "Timestamp": "2024-05-16T10:47:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.297000", + "Timestamp": "2024-05-16T10:46:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.439800", + "Timestamp": "2024-05-16T10:46:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.434800", + "Timestamp": "2024-05-16T10:46:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.309800", + "Timestamp": "2024-05-16T10:46:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.231700", + "Timestamp": "2024-05-16T10:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.226700", + "Timestamp": "2024-05-16T10:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.101700", + "Timestamp": "2024-05-16T10:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.105300", + "Timestamp": "2024-05-16T10:46:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.561500", + "Timestamp": "2024-05-16T10:46:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.512200", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.456100", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.451100", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.326100", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.043700", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.038700", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.913700", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.224500", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.219500", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.094500", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.373600", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.368600", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.243600", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.695400", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.690400", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.565400", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.433500", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.428500", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.303500", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.207100", + "Timestamp": "2024-05-16T10:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.203400", + "Timestamp": "2024-05-16T10:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147100", + "Timestamp": "2024-05-16T10:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.829600", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.824600", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.699600", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.917500", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.887500", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.787500", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.386300", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.250800", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.220800", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.120800", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.422900", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.417900", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.292900", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.890200", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.885200", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.760200", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.767000", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.220000", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.215000", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.090000", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.953400", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.798300", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.604600", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.574600", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.474600", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.541700", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.511700", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.411700", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.329300", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324300", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199300", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.905300", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.875300", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.775300", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.702900", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.697900", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.572900", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.967600", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.962600", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.837600", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.927400", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.514000", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.368600", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.282700", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.277700", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.152700", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.646100", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.641100", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.516100", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.937300", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.699000", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.694000", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.569000", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.493900", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.488900", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.363900", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141300", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137600", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081300", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.495300", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.105400", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.100400", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.975400", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.514200", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051400", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.271800", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.266800", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.141800", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "a1.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.290700", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "a1.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.285700", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "a1.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.160700", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.804500", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.799500", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.674500", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.877200", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.872200", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.747200", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.460800", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.228700", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.223700", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098700", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.033100", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.959500", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.602800", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231400", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.174400", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.707900", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.702900", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.577900", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.283800", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.278800", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.153800", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.133700", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.628200", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.623200", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.498200", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161100", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157400", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101100", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.015700", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135100", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131400", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075100", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.430100", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.099400", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.425100", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.094400", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.300100", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.969400", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.464300", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.434300", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.334300", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.775800", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.886600", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.881600", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.756600", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.607000", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.602000", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.477000", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.695000", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.690000", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.565000", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.010600", + "Timestamp": "2024-05-16T10:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.723600", + "Timestamp": "2024-05-16T10:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.718600", + "Timestamp": "2024-05-16T10:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.593600", + "Timestamp": "2024-05-16T10:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.328800", + "Timestamp": "2024-05-16T10:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323800", + "Timestamp": "2024-05-16T10:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.198800", + "Timestamp": "2024-05-16T10:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.477900", + "Timestamp": "2024-05-16T10:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.340100", + "Timestamp": "2024-05-16T10:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.335100", + "Timestamp": "2024-05-16T10:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.210100", + "Timestamp": "2024-05-16T10:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.306500", + "Timestamp": "2024-05-16T10:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.301500", + "Timestamp": "2024-05-16T10:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.176500", + "Timestamp": "2024-05-16T10:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.236300", + "Timestamp": "2024-05-16T10:46:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432400", + "Timestamp": "2024-05-16T10:46:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294200", + "Timestamp": "2024-05-16T10:46:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "a1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289200", + "Timestamp": "2024-05-16T10:46:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164200", + "Timestamp": "2024-05-16T10:46:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.220100", + "Timestamp": "2024-05-16T10:46:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.260100", + "Timestamp": "2024-05-16T10:46:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.160100", + "Timestamp": "2024-05-16T10:46:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.006900", + "Timestamp": "2024-05-16T10:46:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.372600", + "Timestamp": "2024-05-16T10:46:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.367600", + "Timestamp": "2024-05-16T10:46:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242600", + "Timestamp": "2024-05-16T10:46:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.664600", + "Timestamp": "2024-05-16T10:46:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.659600", + "Timestamp": "2024-05-16T10:46:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.534600", + "Timestamp": "2024-05-16T10:46:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.032000", + "Timestamp": "2024-05-16T10:46:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.627000", + "Timestamp": "2024-05-16T10:46:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.774400", + "Timestamp": "2024-05-16T10:46:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.206800", + "Timestamp": "2024-05-16T10:46:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.176800", + "Timestamp": "2024-05-16T10:46:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.076800", + "Timestamp": "2024-05-16T10:46:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.792500", + "Timestamp": "2024-05-16T10:46:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.021800", + "Timestamp": "2024-05-16T10:46:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.282900", + "Timestamp": "2024-05-16T10:46:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166800", + "Timestamp": "2024-05-16T10:46:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163800", + "Timestamp": "2024-05-16T10:46:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T10:46:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.193300", + "Timestamp": "2024-05-16T10:46:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.188300", + "Timestamp": "2024-05-16T10:46:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.063300", + "Timestamp": "2024-05-16T10:46:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T10:45:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T10:45:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044800", + "Timestamp": "2024-05-16T10:45:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.533600", + "Timestamp": "2024-05-16T10:45:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.528600", + "Timestamp": "2024-05-16T10:45:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.403600", + "Timestamp": "2024-05-16T10:45:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.926300", + "Timestamp": "2024-05-16T10:45:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.706400", + "Timestamp": "2024-05-16T10:45:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.701400", + "Timestamp": "2024-05-16T10:45:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.576400", + "Timestamp": "2024-05-16T10:45:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.873300", + "Timestamp": "2024-05-16T10:45:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.868300", + "Timestamp": "2024-05-16T10:45:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.743300", + "Timestamp": "2024-05-16T10:45:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.937200", + "Timestamp": "2024-05-16T10:45:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.932200", + "Timestamp": "2024-05-16T10:45:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.807200", + "Timestamp": "2024-05-16T10:45:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.274000", + "Timestamp": "2024-05-16T10:45:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.269000", + "Timestamp": "2024-05-16T10:45:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.144000", + "Timestamp": "2024-05-16T10:45:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.848300", + "Timestamp": "2024-05-16T10:45:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.598400", + "Timestamp": "2024-05-16T10:45:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.690900", + "Timestamp": "2024-05-16T10:45:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.685900", + "Timestamp": "2024-05-16T10:45:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.560900", + "Timestamp": "2024-05-16T10:45:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.880800", + "Timestamp": "2024-05-16T10:45:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431500", + "Timestamp": "2024-05-16T10:45:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314200", + "Timestamp": "2024-05-16T10:45:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.284200", + "Timestamp": "2024-05-16T10:45:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184200", + "Timestamp": "2024-05-16T10:45:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.351100", + "Timestamp": "2024-05-16T10:45:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.346100", + "Timestamp": "2024-05-16T10:45:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.221100", + "Timestamp": "2024-05-16T10:45:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.560800", + "Timestamp": "2024-05-16T10:45:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.555800", + "Timestamp": "2024-05-16T10:45:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.430800", + "Timestamp": "2024-05-16T10:45:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076900", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073200", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016900", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095000", + "Timestamp": "2024-05-16T10:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091300", + "Timestamp": "2024-05-16T10:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035000", + "Timestamp": "2024-05-16T10:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.328300", + "Timestamp": "2024-05-16T10:31:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.887800", + "Timestamp": "2024-05-16T10:31:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.247700", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.922100", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.196400", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192400", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136400", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.856400", + "Timestamp": "2024-05-16T10:31:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040900", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.638200", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.633200", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.508200", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.608900", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.578900", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.478900", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.341700", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.135100", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.130100", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.005100", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.899200", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.974600", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.259400", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.229400", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.129400", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.735000", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.730000", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.605000", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164700", + "Timestamp": "2024-05-16T10:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.204700", + "Timestamp": "2024-05-16T10:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104700", + "Timestamp": "2024-05-16T10:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.116700", + "Timestamp": "2024-05-16T10:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.882600", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.877600", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.752600", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.252400", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.982800", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.977800", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.852800", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.890000", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.885000", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.760000", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.434600", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121600", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117600", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061600", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.667200", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.662200", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.537200", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.318900", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.288900", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.188900", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.451900", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.116000", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174500", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170800", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.010400", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.005400", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.880400", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.187600", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.424200", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.800000", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.693200", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108800", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.637100", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.632100", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.507100", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.479700", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.474700", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.349700", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.483800", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.107900", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.901000", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.896000", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.771000", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.868400", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.863400", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.738400", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.772700", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.912800", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.907800", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.782800", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143800", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140100", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083800", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.246400", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.503800", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.247100", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.036200", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.936500", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.931500", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.806500", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.463500", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.458500", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.333500", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044600", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.508000", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047500", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.180900", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177200", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120900", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.466200", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.461200", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.336200", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.511700", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.506700", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.381700", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.133300", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "9.196700", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "9.191700", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "9.066700", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095100", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091400", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035100", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.426800", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.361800", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.356800", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.231800", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.777900", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.772900", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.647900", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099800", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043500", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136500", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132500", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076500", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047200", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.581800", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.576800", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.451800", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.418200", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.388200", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.288200", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.964500", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.934500", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.834500", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160700", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157000", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100700", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.460100", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184500", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180500", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124500", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.738500", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.733500", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.608500", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.623300", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.618300", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.493300", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.738400", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.849400", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.185000", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181000", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125000", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.005300", + "Timestamp": "2024-05-16T10:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.198500", + "Timestamp": "2024-05-16T10:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.493000", + "Timestamp": "2024-05-16T10:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.115300", + "Timestamp": "2024-05-16T10:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.830500", + "Timestamp": "2024-05-16T10:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.060300", + "Timestamp": "2024-05-16T10:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.049300", + "Timestamp": "2024-05-16T10:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.055300", + "Timestamp": "2024-05-16T10:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.044300", + "Timestamp": "2024-05-16T10:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.930300", + "Timestamp": "2024-05-16T10:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.919300", + "Timestamp": "2024-05-16T10:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.296600", + "Timestamp": "2024-05-16T10:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.291600", + "Timestamp": "2024-05-16T10:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.166600", + "Timestamp": "2024-05-16T10:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.515500", + "Timestamp": "2024-05-16T10:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.510500", + "Timestamp": "2024-05-16T10:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.385500", + "Timestamp": "2024-05-16T10:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.303300", + "Timestamp": "2024-05-16T10:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.273300", + "Timestamp": "2024-05-16T10:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.173300", + "Timestamp": "2024-05-16T10:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.518900", + "Timestamp": "2024-05-16T10:31:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.250700", + "Timestamp": "2024-05-16T10:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.227000", + "Timestamp": "2024-05-16T10:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.247700", + "Timestamp": "2024-05-16T10:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.224000", + "Timestamp": "2024-05-16T10:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190700", + "Timestamp": "2024-05-16T10:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167000", + "Timestamp": "2024-05-16T10:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.038300", + "Timestamp": "2024-05-16T10:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.033300", + "Timestamp": "2024-05-16T10:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.908300", + "Timestamp": "2024-05-16T10:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "16.539100", + "Timestamp": "2024-05-16T10:31:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064100", + "Timestamp": "2024-05-16T10:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004100", + "Timestamp": "2024-05-16T10:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004100", + "Timestamp": "2024-05-16T10:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.130600", + "Timestamp": "2024-05-16T10:31:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.841000", + "Timestamp": "2024-05-16T10:31:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.836000", + "Timestamp": "2024-05-16T10:31:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.711000", + "Timestamp": "2024-05-16T10:31:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.717000", + "Timestamp": "2024-05-16T10:31:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.075800", + "Timestamp": "2024-05-16T10:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.070800", + "Timestamp": "2024-05-16T10:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.945800", + "Timestamp": "2024-05-16T10:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.020600", + "Timestamp": "2024-05-16T10:31:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.332200", + "Timestamp": "2024-05-16T10:31:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.459600", + "Timestamp": "2024-05-16T10:31:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.327200", + "Timestamp": "2024-05-16T10:31:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.454600", + "Timestamp": "2024-05-16T10:31:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.202200", + "Timestamp": "2024-05-16T10:31:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.329600", + "Timestamp": "2024-05-16T10:31:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.975800", + "Timestamp": "2024-05-16T10:31:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.357400", + "Timestamp": "2024-05-16T10:30:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.352400", + "Timestamp": "2024-05-16T10:30:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.227400", + "Timestamp": "2024-05-16T10:30:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.047100", + "Timestamp": "2024-05-16T10:30:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.317100", + "Timestamp": "2024-05-16T10:30:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.810500", + "Timestamp": "2024-05-16T10:30:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.512600", + "Timestamp": "2024-05-16T10:30:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.507600", + "Timestamp": "2024-05-16T10:30:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.382600", + "Timestamp": "2024-05-16T10:30:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.527100", + "Timestamp": "2024-05-16T10:30:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.684700", + "Timestamp": "2024-05-16T10:30:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.039700", + "Timestamp": "2024-05-16T10:30:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.272300", + "Timestamp": "2024-05-16T10:30:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268600", + "Timestamp": "2024-05-16T10:30:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212300", + "Timestamp": "2024-05-16T10:30:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.691400", + "Timestamp": "2024-05-16T10:16:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108800", + "Timestamp": "2024-05-16T10:16:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105100", + "Timestamp": "2024-05-16T10:16:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048800", + "Timestamp": "2024-05-16T10:16:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.799200", + "Timestamp": "2024-05-16T10:16:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.794200", + "Timestamp": "2024-05-16T10:16:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.669200", + "Timestamp": "2024-05-16T10:16:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.787000", + "Timestamp": "2024-05-16T10:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.452600", + "Timestamp": "2024-05-16T10:16:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.447600", + "Timestamp": "2024-05-16T10:16:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.322600", + "Timestamp": "2024-05-16T10:16:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.117400", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.677200", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.727100", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.722100", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.597100", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.254300", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.250300", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194300", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.944200", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.009500", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.004500", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.879500", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.213900", + "Timestamp": "2024-05-16T10:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.444300", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.150700", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.145700", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.020700", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.988400", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.958400", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.858400", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123500", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119800", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063500", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.826600", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.394700", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.364700", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.264700", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.054200", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.049200", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.924200", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.302400", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.297400", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.172400", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.462000", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.944800", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.939800", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.814800", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301300", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296300", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171300", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.680500", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.650500", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.550500", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119300", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.745100", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.740100", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.615100", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.295100", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.290100", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165100", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.115500", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t1.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068700", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t1.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.008700", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t1.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008700", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.332600", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.327600", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.202600", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.062500", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.215700", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "a1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.210700", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085700", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.203900", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.198900", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.073900", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134500", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174500", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074500", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200600", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.240600", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140600", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097800", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094100", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037800", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.200200", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.195200", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.070200", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.854800", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163000", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159300", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136200", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132500", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076200", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.190900", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.185900", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.060900", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.742600", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.160800", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.155800", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.030800", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.490500", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.485500", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.360500", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.239000", + "Timestamp": "2024-05-16T10:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.239900", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.236200", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.179900", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131200", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127500", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071200", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110400", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150400", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050400", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.874300", + "Timestamp": "2024-05-16T10:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.020100", + "Timestamp": "2024-05-16T10:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.015100", + "Timestamp": "2024-05-16T10:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.890100", + "Timestamp": "2024-05-16T10:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.301900", + "Timestamp": "2024-05-16T10:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.296900", + "Timestamp": "2024-05-16T10:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.171900", + "Timestamp": "2024-05-16T10:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.679700", + "Timestamp": "2024-05-16T10:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.674700", + "Timestamp": "2024-05-16T10:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.549700", + "Timestamp": "2024-05-16T10:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.340000", + "Timestamp": "2024-05-16T10:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.310000", + "Timestamp": "2024-05-16T10:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.210000", + "Timestamp": "2024-05-16T10:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.567700", + "Timestamp": "2024-05-16T10:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.537700", + "Timestamp": "2024-05-16T10:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.437700", + "Timestamp": "2024-05-16T10:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.760300", + "Timestamp": "2024-05-16T10:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.857200", + "Timestamp": "2024-05-16T10:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.852200", + "Timestamp": "2024-05-16T10:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.727200", + "Timestamp": "2024-05-16T10:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.251100", + "Timestamp": "2024-05-16T10:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.246100", + "Timestamp": "2024-05-16T10:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.121100", + "Timestamp": "2024-05-16T10:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-16T10:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.833500", + "Timestamp": "2024-05-16T10:16:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.828500", + "Timestamp": "2024-05-16T10:16:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.703500", + "Timestamp": "2024-05-16T10:16:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162500", + "Timestamp": "2024-05-16T10:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158500", + "Timestamp": "2024-05-16T10:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T10:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.425700", + "Timestamp": "2024-05-16T10:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.395700", + "Timestamp": "2024-05-16T10:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.295700", + "Timestamp": "2024-05-16T10:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.587200", + "Timestamp": "2024-05-16T10:16:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.361100", + "Timestamp": "2024-05-16T10:16:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.978000", + "Timestamp": "2024-05-16T10:16:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.219300", + "Timestamp": "2024-05-16T10:16:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "a1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085400", + "Timestamp": "2024-05-16T10:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "a1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.081700", + "Timestamp": "2024-05-16T10:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "a1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025400", + "Timestamp": "2024-05-16T10:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.540200", + "Timestamp": "2024-05-16T10:16:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.535200", + "Timestamp": "2024-05-16T10:16:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.410200", + "Timestamp": "2024-05-16T10:16:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.921200", + "Timestamp": "2024-05-16T10:16:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.891200", + "Timestamp": "2024-05-16T10:16:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.791200", + "Timestamp": "2024-05-16T10:16:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.075300", + "Timestamp": "2024-05-16T10:16:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.731900", + "Timestamp": "2024-05-16T10:16:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.394500", + "Timestamp": "2024-05-16T10:16:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.389500", + "Timestamp": "2024-05-16T10:16:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.264500", + "Timestamp": "2024-05-16T10:16:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.164500", + "Timestamp": "2024-05-16T10:16:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.876000", + "Timestamp": "2024-05-16T10:15:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.465000", + "Timestamp": "2024-05-16T10:15:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.014400", + "Timestamp": "2024-05-16T10:15:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.009400", + "Timestamp": "2024-05-16T10:15:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.884400", + "Timestamp": "2024-05-16T10:15:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160400", + "Timestamp": "2024-05-16T10:15:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156700", + "Timestamp": "2024-05-16T10:15:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100400", + "Timestamp": "2024-05-16T10:15:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.966800", + "Timestamp": "2024-05-16T10:15:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.607200", + "Timestamp": "2024-05-16T10:15:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.602200", + "Timestamp": "2024-05-16T10:15:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.477200", + "Timestamp": "2024-05-16T10:15:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.677100", + "Timestamp": "2024-05-16T10:15:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.233300", + "Timestamp": "2024-05-16T10:15:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.154700", + "Timestamp": "2024-05-16T10:15:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.149700", + "Timestamp": "2024-05-16T10:15:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.024700", + "Timestamp": "2024-05-16T10:15:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120800", + "Timestamp": "2024-05-16T10:15:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116800", + "Timestamp": "2024-05-16T10:15:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060800", + "Timestamp": "2024-05-16T10:15:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.194800", + "Timestamp": "2024-05-16T10:02:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.234800", + "Timestamp": "2024-05-16T10:02:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134800", + "Timestamp": "2024-05-16T10:02:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.007000", + "Timestamp": "2024-05-16T10:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.977000", + "Timestamp": "2024-05-16T10:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.877000", + "Timestamp": "2024-05-16T10:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.240800", + "Timestamp": "2024-05-16T10:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.235800", + "Timestamp": "2024-05-16T10:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.110800", + "Timestamp": "2024-05-16T10:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.930200", + "Timestamp": "2024-05-16T10:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.943300", + "Timestamp": "2024-05-16T10:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.501000", + "Timestamp": "2024-05-16T10:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.496000", + "Timestamp": "2024-05-16T10:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.371000", + "Timestamp": "2024-05-16T10:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119900", + "Timestamp": "2024-05-16T10:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.255000", + "Timestamp": "2024-05-16T10:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.296900", + "Timestamp": "2024-05-16T10:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.493200", + "Timestamp": "2024-05-16T10:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.376100", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.371100", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.246100", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.481500", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.919200", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.025900", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.710100", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.313400", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.353400", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.253400", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.241400", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.612800", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.607800", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.482800", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.549300", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.290900", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.624100", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.551800", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.594100", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.521800", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.494100", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.421800", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.174000", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.822700", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.169000", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.817700", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.044000", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.692700", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.744100", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.714100", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.614100", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.154700", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.491000", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.824800", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.337400", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.307400", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.207400", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.108900", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.327800", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.322800", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.197800", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.998800", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.993800", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.868800", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.073400", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.068400", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.943400", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.789800", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.961600", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.370900", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.898800", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.332000", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.327000", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.202000", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.339600", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334600", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.209600", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.471200", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.466200", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.341200", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114400", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054400", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.055900", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.724800", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.719800", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.594800", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.162600", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.157600", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.032600", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.450300", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.622800", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.617800", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.492800", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.064900", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.059900", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.934900", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.832300", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.356600", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.351600", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.226600", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.005300", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.101500", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.096500", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.971500", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.432800", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.402800", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.302800", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.915700", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.592100", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.587100", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.462100", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.137600", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.870300", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.003200", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.998200", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.873200", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.073400", + "Timestamp": "2024-05-16T10:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.695700", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.690700", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.565700", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.775400", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.770400", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.645400", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.974200", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.969200", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.844200", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120500", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116500", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060500", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.902200", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T10:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T10:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054600", + "Timestamp": "2024-05-16T10:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.582600", + "Timestamp": "2024-05-16T10:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.927500", + "Timestamp": "2024-05-16T10:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.922500", + "Timestamp": "2024-05-16T10:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.797500", + "Timestamp": "2024-05-16T10:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.887100", + "Timestamp": "2024-05-16T10:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.191000", + "Timestamp": "2024-05-16T10:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.186000", + "Timestamp": "2024-05-16T10:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.061000", + "Timestamp": "2024-05-16T10:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.170500", + "Timestamp": "2024-05-16T10:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.165500", + "Timestamp": "2024-05-16T10:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.040500", + "Timestamp": "2024-05-16T10:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.372000", + "Timestamp": "2024-05-16T10:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.367000", + "Timestamp": "2024-05-16T10:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.242000", + "Timestamp": "2024-05-16T10:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.605200", + "Timestamp": "2024-05-16T10:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.066100", + "Timestamp": "2024-05-16T10:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.061100", + "Timestamp": "2024-05-16T10:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.936100", + "Timestamp": "2024-05-16T10:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.887200", + "Timestamp": "2024-05-16T10:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.927200", + "Timestamp": "2024-05-16T10:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.827200", + "Timestamp": "2024-05-16T10:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.181600", + "Timestamp": "2024-05-16T10:01:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.293900", + "Timestamp": "2024-05-16T10:01:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.288900", + "Timestamp": "2024-05-16T10:01:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.163900", + "Timestamp": "2024-05-16T10:01:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.193800", + "Timestamp": "2024-05-16T10:01:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190100", + "Timestamp": "2024-05-16T10:01:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133800", + "Timestamp": "2024-05-16T10:01:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.506700", + "Timestamp": "2024-05-16T10:01:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.501700", + "Timestamp": "2024-05-16T10:01:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.376700", + "Timestamp": "2024-05-16T10:01:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080700", + "Timestamp": "2024-05-16T10:01:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077000", + "Timestamp": "2024-05-16T10:01:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020700", + "Timestamp": "2024-05-16T10:01:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.845000", + "Timestamp": "2024-05-16T10:01:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.129500", + "Timestamp": "2024-05-16T10:01:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.156300", + "Timestamp": "2024-05-16T10:01:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.151300", + "Timestamp": "2024-05-16T10:01:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.026300", + "Timestamp": "2024-05-16T10:01:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144700", + "Timestamp": "2024-05-16T10:01:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.184700", + "Timestamp": "2024-05-16T10:01:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084700", + "Timestamp": "2024-05-16T10:01:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.622800", + "Timestamp": "2024-05-16T10:01:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.094500", + "Timestamp": "2024-05-16T10:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.908100", + "Timestamp": "2024-05-16T10:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.903100", + "Timestamp": "2024-05-16T10:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.778100", + "Timestamp": "2024-05-16T10:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.177800", + "Timestamp": "2024-05-16T10:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.217800", + "Timestamp": "2024-05-16T10:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.117800", + "Timestamp": "2024-05-16T10:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.427100", + "Timestamp": "2024-05-16T10:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.422100", + "Timestamp": "2024-05-16T10:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.297100", + "Timestamp": "2024-05-16T10:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.803600", + "Timestamp": "2024-05-16T10:01:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.664400", + "Timestamp": "2024-05-16T10:01:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.634400", + "Timestamp": "2024-05-16T10:01:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.534400", + "Timestamp": "2024-05-16T10:01:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.513000", + "Timestamp": "2024-05-16T10:01:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.873800", + "Timestamp": "2024-05-16T10:01:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.868800", + "Timestamp": "2024-05-16T10:01:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.743800", + "Timestamp": "2024-05-16T10:01:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.181700", + "Timestamp": "2024-05-16T10:01:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.193500", + "Timestamp": "2024-05-16T10:01:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.178000", + "Timestamp": "2024-05-16T10:01:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.189800", + "Timestamp": "2024-05-16T10:01:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121700", + "Timestamp": "2024-05-16T10:01:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133500", + "Timestamp": "2024-05-16T10:01:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.018300", + "Timestamp": "2024-05-16T10:00:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.013300", + "Timestamp": "2024-05-16T10:00:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.888300", + "Timestamp": "2024-05-16T10:00:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164800", + "Timestamp": "2024-05-16T10:00:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161100", + "Timestamp": "2024-05-16T10:00:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T10:00:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129900", + "Timestamp": "2024-05-16T10:00:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125900", + "Timestamp": "2024-05-16T10:00:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069900", + "Timestamp": "2024-05-16T10:00:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.247500", + "Timestamp": "2024-05-16T10:00:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.242500", + "Timestamp": "2024-05-16T10:00:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.117500", + "Timestamp": "2024-05-16T10:00:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.049800", + "Timestamp": "2024-05-16T10:00:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.019800", + "Timestamp": "2024-05-16T10:00:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.919800", + "Timestamp": "2024-05-16T10:00:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133900", + "Timestamp": "2024-05-16T10:00:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173900", + "Timestamp": "2024-05-16T10:00:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073900", + "Timestamp": "2024-05-16T10:00:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.257600", + "Timestamp": "2024-05-16T10:00:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.278000", + "Timestamp": "2024-05-16T10:00:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.273000", + "Timestamp": "2024-05-16T10:00:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.148000", + "Timestamp": "2024-05-16T10:00:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118500", + "Timestamp": "2024-05-16T10:00:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-16T10:00:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058500", + "Timestamp": "2024-05-16T10:00:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.712700", + "Timestamp": "2024-05-16T10:00:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.319500", + "Timestamp": "2024-05-16T10:00:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.314500", + "Timestamp": "2024-05-16T10:00:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.189500", + "Timestamp": "2024-05-16T10:00:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.207000", + "Timestamp": "2024-05-16T10:00:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.211000", + "Timestamp": "2024-05-16T10:00:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.203000", + "Timestamp": "2024-05-16T10:00:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.207000", + "Timestamp": "2024-05-16T10:00:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147000", + "Timestamp": "2024-05-16T10:00:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.151000", + "Timestamp": "2024-05-16T10:00:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114300", + "Timestamp": "2024-05-16T10:00:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T10:00:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054300", + "Timestamp": "2024-05-16T10:00:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.666500", + "Timestamp": "2024-05-16T09:48:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.806900", + "Timestamp": "2024-05-16T09:48:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.661500", + "Timestamp": "2024-05-16T09:48:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.801900", + "Timestamp": "2024-05-16T09:48:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.536500", + "Timestamp": "2024-05-16T09:48:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.676900", + "Timestamp": "2024-05-16T09:48:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.876900", + "Timestamp": "2024-05-16T09:48:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.775900", + "Timestamp": "2024-05-16T09:48:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.892000", + "Timestamp": "2024-05-16T09:48:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075000", + "Timestamp": "2024-05-16T09:48:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071300", + "Timestamp": "2024-05-16T09:48:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015000", + "Timestamp": "2024-05-16T09:48:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.893700", + "Timestamp": "2024-05-16T09:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.888700", + "Timestamp": "2024-05-16T09:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.763700", + "Timestamp": "2024-05-16T09:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.229500", + "Timestamp": "2024-05-16T09:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.546700", + "Timestamp": "2024-05-16T09:46:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.331600", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.301900", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.675300", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.670300", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.545300", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147000", + "Timestamp": "2024-05-16T09:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.187000", + "Timestamp": "2024-05-16T09:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087000", + "Timestamp": "2024-05-16T09:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.550900", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.751000", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.259500", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.257300", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.960200", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.309800", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "a1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.304800", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.179800", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.361300", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.405600", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.356300", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.400600", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.231300", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.275600", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.261300", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.459000", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.636400", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.606400", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.506400", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172200", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168500", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.790300", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.785300", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.660300", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.872300", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.867300", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.742300", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.113500", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.108500", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.983500", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.533700", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.528700", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.403700", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.852100", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.847100", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.722100", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109000", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105300", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049000", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.682200", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.652200", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.552200", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.844800", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170500", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166800", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.540100", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.535100", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.410100", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.767400", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.336100", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.331100", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.206100", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.930500", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.925500", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.800500", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.444500", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.840200", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.835200", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.710200", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.470700", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.465700", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.340700", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.715800", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.710800", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.585800", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.249100", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.244100", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.119100", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.579600", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.574600", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.449600", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.564100", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.559100", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.434100", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.608200", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.603200", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.478200", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.249000", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.244000", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.119000", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047500", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.030000", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.025000", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.900000", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226100", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.726400", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.236500", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416500", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.956900", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.922900", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.147400", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.305000", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.300000", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175000", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.799000", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324100", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319100", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194100", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.770100", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.740100", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.640100", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.388400", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.358400", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.258400", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.324000", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.319000", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.194000", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.955600", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.950600", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.825600", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.396500", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.391500", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.266500", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.284100", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.279100", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.154100", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.875300", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.870300", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.745300", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.365600", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.360600", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235600", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.670700", + "Timestamp": "2024-05-16T09:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.640700", + "Timestamp": "2024-05-16T09:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.540700", + "Timestamp": "2024-05-16T09:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.664900", + "Timestamp": "2024-05-16T09:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.822600", + "Timestamp": "2024-05-16T09:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.817600", + "Timestamp": "2024-05-16T09:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.692600", + "Timestamp": "2024-05-16T09:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.700100", + "Timestamp": "2024-05-16T09:46:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.614900", + "Timestamp": "2024-05-16T09:46:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.609900", + "Timestamp": "2024-05-16T09:46:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.484900", + "Timestamp": "2024-05-16T09:46:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.625000", + "Timestamp": "2024-05-16T09:46:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.048000", + "Timestamp": "2024-05-16T09:46:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.515400", + "Timestamp": "2024-05-16T09:46:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.510400", + "Timestamp": "2024-05-16T09:46:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.385400", + "Timestamp": "2024-05-16T09:46:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.232400", + "Timestamp": "2024-05-16T09:46:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.353500", + "Timestamp": "2024-05-16T09:46:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162400", + "Timestamp": "2024-05-16T09:46:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.202400", + "Timestamp": "2024-05-16T09:46:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102400", + "Timestamp": "2024-05-16T09:46:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.079000", + "Timestamp": "2024-05-16T09:46:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.996700", + "Timestamp": "2024-05-16T09:46:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.991700", + "Timestamp": "2024-05-16T09:46:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.866700", + "Timestamp": "2024-05-16T09:46:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.049900", + "Timestamp": "2024-05-16T09:46:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.018100", + "Timestamp": "2024-05-16T09:46:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.293300", + "Timestamp": "2024-05-16T09:45:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.288300", + "Timestamp": "2024-05-16T09:45:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.163300", + "Timestamp": "2024-05-16T09:45:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.351900", + "Timestamp": "2024-05-16T09:45:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.346900", + "Timestamp": "2024-05-16T09:45:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.221900", + "Timestamp": "2024-05-16T09:45:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T09:45:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106000", + "Timestamp": "2024-05-16T09:45:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050000", + "Timestamp": "2024-05-16T09:45:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.209100", + "Timestamp": "2024-05-16T09:45:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.205100", + "Timestamp": "2024-05-16T09:45:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149100", + "Timestamp": "2024-05-16T09:45:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.479900", + "Timestamp": "2024-05-16T09:45:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.474900", + "Timestamp": "2024-05-16T09:45:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.349900", + "Timestamp": "2024-05-16T09:45:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.153900", + "Timestamp": "2024-05-16T09:45:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.148900", + "Timestamp": "2024-05-16T09:45:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.023900", + "Timestamp": "2024-05-16T09:45:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.280400", + "Timestamp": "2024-05-16T09:45:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.250400", + "Timestamp": "2024-05-16T09:45:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.150400", + "Timestamp": "2024-05-16T09:45:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.797200", + "Timestamp": "2024-05-16T09:45:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.183200", + "Timestamp": "2024-05-16T09:32:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.223200", + "Timestamp": "2024-05-16T09:32:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123200", + "Timestamp": "2024-05-16T09:32:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.489200", + "Timestamp": "2024-05-16T09:31:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119200", + "Timestamp": "2024-05-16T09:31:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.964600", + "Timestamp": "2024-05-16T09:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.959600", + "Timestamp": "2024-05-16T09:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.834600", + "Timestamp": "2024-05-16T09:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.842100", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.020200", + "Timestamp": "2024-05-16T09:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "22.467100", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "22.462100", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "22.337100", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.345200", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.315200", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.215200", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.825800", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.504000", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.612200", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.534800", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.266000", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097800", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094100", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037800", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.396900", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.497400", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.950900", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.892900", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.887900", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.762900", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.394200", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.364200", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.264200", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.785800", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.217100", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.213100", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157100", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.529000", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.524000", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.399000", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.702900", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.672900", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.572900", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.605600", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.575600", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.475600", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.987900", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.680200", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.675200", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.550200", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.890600", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.885600", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.760600", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120600", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.123200", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118800", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.480800", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.475800", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.350800", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.834500", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.777500", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.747500", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.647500", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.958300", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.761000", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.756000", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.631000", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.528100", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.499900", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.318300", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.299300", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.313300", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.294300", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.188300", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.169300", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.010100", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.980100", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.880100", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161500", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157800", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101500", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.760900", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.755900", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.630900", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.549600", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.914800", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.909800", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.784800", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.004700", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.999700", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.874700", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.654300", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.649300", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.524300", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.495300", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.912100", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.907100", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.782100", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.503000", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473000", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.373000", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.347300", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.317300", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.217300", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.065000", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.060000", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.935000", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.746600", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.741600", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.616600", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217700", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.958500", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.928500", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.828500", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.462200", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162300", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158600", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102300", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.398700", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.405800", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.877200", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.872200", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.747200", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.279600", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.274600", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.149600", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.280000", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.515700", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.510700", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.385700", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.092500", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.087500", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.962500", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.619500", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.614500", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.489500", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.279100", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.274100", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.149100", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.108900", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.928400", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.199800", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.239800", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139800", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.352000", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.347000", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.222000", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.615400", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.610400", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.485400", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.361500", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.375200", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.370200", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.245200", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.554200", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.549200", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.424200", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.200200", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.214000", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.209000", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.084000", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.448700", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.443700", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.318700", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.116700", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.086700", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.986700", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.175600", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.679400", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.924200", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.087000", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.418100", + "Timestamp": "2024-05-16T09:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.388100", + "Timestamp": "2024-05-16T09:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.288100", + "Timestamp": "2024-05-16T09:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093900", + "Timestamp": "2024-05-16T09:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090200", + "Timestamp": "2024-05-16T09:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033900", + "Timestamp": "2024-05-16T09:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.850700", + "Timestamp": "2024-05-16T09:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.118100", + "Timestamp": "2024-05-16T09:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.721100", + "Timestamp": "2024-05-16T09:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160500", + "Timestamp": "2024-05-16T09:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.200500", + "Timestamp": "2024-05-16T09:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100500", + "Timestamp": "2024-05-16T09:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.931000", + "Timestamp": "2024-05-16T09:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.500100", + "Timestamp": "2024-05-16T09:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.495100", + "Timestamp": "2024-05-16T09:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.370100", + "Timestamp": "2024-05-16T09:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.378100", + "Timestamp": "2024-05-16T09:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.348100", + "Timestamp": "2024-05-16T09:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.248100", + "Timestamp": "2024-05-16T09:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.083000", + "Timestamp": "2024-05-16T09:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.078000", + "Timestamp": "2024-05-16T09:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.953000", + "Timestamp": "2024-05-16T09:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.293700", + "Timestamp": "2024-05-16T09:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.099400", + "Timestamp": "2024-05-16T09:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.418100", + "Timestamp": "2024-05-16T09:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.388100", + "Timestamp": "2024-05-16T09:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.288100", + "Timestamp": "2024-05-16T09:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.736600", + "Timestamp": "2024-05-16T09:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.731600", + "Timestamp": "2024-05-16T09:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.606600", + "Timestamp": "2024-05-16T09:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.217600", + "Timestamp": "2024-05-16T09:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.213900", + "Timestamp": "2024-05-16T09:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157600", + "Timestamp": "2024-05-16T09:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126800", + "Timestamp": "2024-05-16T09:31:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166800", + "Timestamp": "2024-05-16T09:31:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066800", + "Timestamp": "2024-05-16T09:31:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "9.299300", + "Timestamp": "2024-05-16T09:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p2.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "9.269300", + "Timestamp": "2024-05-16T09:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "9.169300", + "Timestamp": "2024-05-16T09:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.496000", + "Timestamp": "2024-05-16T09:31:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120100", + "Timestamp": "2024-05-16T09:31:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.341600", + "Timestamp": "2024-05-16T09:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.311600", + "Timestamp": "2024-05-16T09:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.211600", + "Timestamp": "2024-05-16T09:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.332800", + "Timestamp": "2024-05-16T09:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.327800", + "Timestamp": "2024-05-16T09:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.202800", + "Timestamp": "2024-05-16T09:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T09:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100500", + "Timestamp": "2024-05-16T09:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044200", + "Timestamp": "2024-05-16T09:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.390500", + "Timestamp": "2024-05-16T09:31:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.872400", + "Timestamp": "2024-05-16T09:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.842400", + "Timestamp": "2024-05-16T09:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.742400", + "Timestamp": "2024-05-16T09:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.476200", + "Timestamp": "2024-05-16T09:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.596300", + "Timestamp": "2024-05-16T09:31:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.591300", + "Timestamp": "2024-05-16T09:31:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.466300", + "Timestamp": "2024-05-16T09:31:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.881400", + "Timestamp": "2024-05-16T09:31:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.673800", + "Timestamp": "2024-05-16T09:31:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-16T09:31:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T09:31:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048000", + "Timestamp": "2024-05-16T09:31:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075300", + "Timestamp": "2024-05-16T09:31:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.046300", + "Timestamp": "2024-05-16T09:31:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015300", + "Timestamp": "2024-05-16T09:31:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.656300", + "Timestamp": "2024-05-16T09:30:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.278400", + "Timestamp": "2024-05-16T09:30:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.651300", + "Timestamp": "2024-05-16T09:30:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.273400", + "Timestamp": "2024-05-16T09:30:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.526300", + "Timestamp": "2024-05-16T09:30:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.148400", + "Timestamp": "2024-05-16T09:30:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.509600", + "Timestamp": "2024-05-16T09:30:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.963000", + "Timestamp": "2024-05-16T09:30:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.935700", + "Timestamp": "2024-05-16T09:30:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.449500", + "Timestamp": "2024-05-16T09:30:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.444500", + "Timestamp": "2024-05-16T09:30:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.319500", + "Timestamp": "2024-05-16T09:30:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.609200", + "Timestamp": "2024-05-16T09:30:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.277500", + "Timestamp": "2024-05-16T09:30:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.272500", + "Timestamp": "2024-05-16T09:30:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.147500", + "Timestamp": "2024-05-16T09:30:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.883700", + "Timestamp": "2024-05-16T09:30:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.878700", + "Timestamp": "2024-05-16T09:30:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.753700", + "Timestamp": "2024-05-16T09:30:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.503200", + "Timestamp": "2024-05-16T09:30:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.760400", + "Timestamp": "2024-05-16T09:17:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.755400", + "Timestamp": "2024-05-16T09:17:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.630400", + "Timestamp": "2024-05-16T09:17:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.569900", + "Timestamp": "2024-05-16T09:16:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.564900", + "Timestamp": "2024-05-16T09:16:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.439900", + "Timestamp": "2024-05-16T09:16:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.152000", + "Timestamp": "2024-05-16T09:16:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.427700", + "Timestamp": "2024-05-16T09:16:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.296500", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.291500", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.166500", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.968100", + "Timestamp": "2024-05-16T09:16:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.963100", + "Timestamp": "2024-05-16T09:16:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.838100", + "Timestamp": "2024-05-16T09:16:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.573500", + "Timestamp": "2024-05-16T09:16:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.737300", + "Timestamp": "2024-05-16T09:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121800", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.211100", + "Timestamp": "2024-05-16T09:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.065900", + "Timestamp": "2024-05-16T09:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.943600", + "Timestamp": "2024-05-16T09:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.987800", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.068300", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.063300", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.938300", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.562300", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.557300", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.432300", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229800", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.426500", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.421500", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.296500", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.637200", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.633500", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.577200", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.413400", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.825500", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.998600", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.549900", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.358000", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.195500", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.353000", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.190500", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.228000", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.065500", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.834700", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.829700", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.704700", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.840000", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.835000", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.710000", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096200", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092500", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036200", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.134600", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.104600", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.004600", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.904100", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.899100", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.774100", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.831800", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.826800", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.701800", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.884500", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.879500", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.754500", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.875400", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.676200", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.646200", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.546200", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.983300", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.714800", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.536800", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.709800", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.531800", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.584800", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.406800", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.716100", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.711100", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.586100", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273400", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268400", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143400", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167500", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163800", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.932900", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330000", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.300000", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200000", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362400", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.357400", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.232400", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.706000", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.701000", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.576000", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "16.859700", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.404800", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.972300", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.420400", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417600", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.602000", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.597000", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.472000", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174100", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.214100", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114100", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.377700", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372700", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.247700", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.919500", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.115200", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.110200", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.985200", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.047500", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.042500", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.917500", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139200", + "Timestamp": "2024-05-16T09:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135500", + "Timestamp": "2024-05-16T09:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079200", + "Timestamp": "2024-05-16T09:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.216500", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.211500", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.086500", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120200", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116500", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060200", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.094400", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.089400", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.964400", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.781200", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.776200", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.651200", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.218300", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.214600", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158300", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.729600", + "Timestamp": "2024-05-16T09:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.724600", + "Timestamp": "2024-05-16T09:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.599600", + "Timestamp": "2024-05-16T09:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.482200", + "Timestamp": "2024-05-16T09:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.477200", + "Timestamp": "2024-05-16T09:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.352200", + "Timestamp": "2024-05-16T09:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.276300", + "Timestamp": "2024-05-16T09:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133500", + "Timestamp": "2024-05-16T09:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129800", + "Timestamp": "2024-05-16T09:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073500", + "Timestamp": "2024-05-16T09:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.261000", + "Timestamp": "2024-05-16T09:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.005900", + "Timestamp": "2024-05-16T09:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.699900", + "Timestamp": "2024-05-16T09:16:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.694900", + "Timestamp": "2024-05-16T09:16:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.569900", + "Timestamp": "2024-05-16T09:16:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324700", + "Timestamp": "2024-05-16T09:16:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319700", + "Timestamp": "2024-05-16T09:16:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194700", + "Timestamp": "2024-05-16T09:16:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.303100", + "Timestamp": "2024-05-16T09:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298100", + "Timestamp": "2024-05-16T09:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.173100", + "Timestamp": "2024-05-16T09:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.324400", + "Timestamp": "2024-05-16T09:16:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.319400", + "Timestamp": "2024-05-16T09:16:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.194400", + "Timestamp": "2024-05-16T09:16:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.716300", + "Timestamp": "2024-05-16T09:16:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.802600", + "Timestamp": "2024-05-16T09:16:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.711300", + "Timestamp": "2024-05-16T09:16:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.797600", + "Timestamp": "2024-05-16T09:16:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.586300", + "Timestamp": "2024-05-16T09:16:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.672600", + "Timestamp": "2024-05-16T09:16:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.936600", + "Timestamp": "2024-05-16T09:16:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.931600", + "Timestamp": "2024-05-16T09:16:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.806600", + "Timestamp": "2024-05-16T09:16:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.288300", + "Timestamp": "2024-05-16T09:16:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.504600", + "Timestamp": "2024-05-16T09:16:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.236900", + "Timestamp": "2024-05-16T09:16:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.126000", + "Timestamp": "2024-05-16T09:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.865200", + "Timestamp": "2024-05-16T09:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.860200", + "Timestamp": "2024-05-16T09:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.735200", + "Timestamp": "2024-05-16T09:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.317400", + "Timestamp": "2024-05-16T09:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.312400", + "Timestamp": "2024-05-16T09:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.187400", + "Timestamp": "2024-05-16T09:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.210900", + "Timestamp": "2024-05-16T09:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.180900", + "Timestamp": "2024-05-16T09:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.080900", + "Timestamp": "2024-05-16T09:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.444700", + "Timestamp": "2024-05-16T09:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.583400", + "Timestamp": "2024-05-16T09:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.578400", + "Timestamp": "2024-05-16T09:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.453400", + "Timestamp": "2024-05-16T09:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.321100", + "Timestamp": "2024-05-16T09:16:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.316100", + "Timestamp": "2024-05-16T09:16:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.191100", + "Timestamp": "2024-05-16T09:16:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.025500", + "Timestamp": "2024-05-16T09:16:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.020500", + "Timestamp": "2024-05-16T09:16:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.895500", + "Timestamp": "2024-05-16T09:16:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.983500", + "Timestamp": "2024-05-16T09:16:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.703200", + "Timestamp": "2024-05-16T09:16:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.698200", + "Timestamp": "2024-05-16T09:16:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.573200", + "Timestamp": "2024-05-16T09:16:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.022000", + "Timestamp": "2024-05-16T09:16:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.399800", + "Timestamp": "2024-05-16T09:16:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.175600", + "Timestamp": "2024-05-16T09:16:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.215600", + "Timestamp": "2024-05-16T09:16:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115600", + "Timestamp": "2024-05-16T09:16:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.282700", + "Timestamp": "2024-05-16T09:16:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119500", + "Timestamp": "2024-05-16T09:16:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159500", + "Timestamp": "2024-05-16T09:16:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059500", + "Timestamp": "2024-05-16T09:16:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.338300", + "Timestamp": "2024-05-16T09:16:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.308300", + "Timestamp": "2024-05-16T09:16:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.208300", + "Timestamp": "2024-05-16T09:16:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.232800", + "Timestamp": "2024-05-16T09:16:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.175700", + "Timestamp": "2024-05-16T09:16:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172700", + "Timestamp": "2024-05-16T09:16:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115700", + "Timestamp": "2024-05-16T09:16:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.515700", + "Timestamp": "2024-05-16T09:15:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.510700", + "Timestamp": "2024-05-16T09:15:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.385700", + "Timestamp": "2024-05-16T09:15:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132300", + "Timestamp": "2024-05-16T09:15:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128600", + "Timestamp": "2024-05-16T09:15:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072300", + "Timestamp": "2024-05-16T09:15:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.966200", + "Timestamp": "2024-05-16T09:15:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.961200", + "Timestamp": "2024-05-16T09:15:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.836200", + "Timestamp": "2024-05-16T09:15:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.046100", + "Timestamp": "2024-05-16T09:15:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.096100", + "Timestamp": "2024-05-16T09:15:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.662800", + "Timestamp": "2024-05-16T09:15:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.657800", + "Timestamp": "2024-05-16T09:15:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.532800", + "Timestamp": "2024-05-16T09:15:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.583500", + "Timestamp": "2024-05-16T09:15:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.557300", + "Timestamp": "2024-05-16T09:15:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.552300", + "Timestamp": "2024-05-16T09:15:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.427300", + "Timestamp": "2024-05-16T09:15:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.284700", + "Timestamp": "2024-05-16T09:15:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.279700", + "Timestamp": "2024-05-16T09:15:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.154700", + "Timestamp": "2024-05-16T09:15:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.037400", + "Timestamp": "2024-05-16T09:15:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.278000", + "Timestamp": "2024-05-16T09:15:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.273000", + "Timestamp": "2024-05-16T09:15:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.148000", + "Timestamp": "2024-05-16T09:15:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.822100", + "Timestamp": "2024-05-16T09:02:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.822100", + "Timestamp": "2024-05-16T09:02:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.952400", + "Timestamp": "2024-05-16T09:01:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.756500", + "Timestamp": "2024-05-16T09:01:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.627000", + "Timestamp": "2024-05-16T09:01:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.622000", + "Timestamp": "2024-05-16T09:01:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.497000", + "Timestamp": "2024-05-16T09:01:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.846600", + "Timestamp": "2024-05-16T09:01:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.575700", + "Timestamp": "2024-05-16T09:01:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.545700", + "Timestamp": "2024-05-16T09:01:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.445700", + "Timestamp": "2024-05-16T09:01:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.686600", + "Timestamp": "2024-05-16T09:01:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.681600", + "Timestamp": "2024-05-16T09:01:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.556600", + "Timestamp": "2024-05-16T09:01:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.199500", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.194500", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.069500", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.966300", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.614600", + "Timestamp": "2024-05-16T09:01:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.459900", + "Timestamp": "2024-05-16T09:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.188300", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.184300", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128300", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.228800", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.223800", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.098800", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.105100", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.624900", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.100100", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.619900", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.975100", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.494900", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116100", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.326700", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096900", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093200", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036900", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148000", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144300", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088000", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.056000", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.051000", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.926000", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.039900", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.084100", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.654900", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.649900", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.524900", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174100", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170400", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114100", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.286800", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.329300", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324300", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199300", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.285100", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.871000", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.941400", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.866000", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.936400", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.741000", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.811400", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.915300", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.910300", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.785300", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.130800", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.125800", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.000800", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.920000", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.915000", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.790000", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.824100", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.071800", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.066800", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.941800", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.727800", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.270300", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "12.586300", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.716300", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.711300", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.586300", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.488800", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.209800", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.204800", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.079800", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.526700", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "a1.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.216600", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "a1.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.211600", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "a1.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086600", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.614000", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.650100", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.584000", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.620100", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.484000", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.520100", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.466600", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.593000", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.588000", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.463000", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134700", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131000", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074700", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.544500", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.539500", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.414500", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.064900", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.059900", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.934900", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.495700", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.490700", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.365700", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.344000", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.340000", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.284000", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.546300", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.541300", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.416300", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.715500", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.710500", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.585500", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.228300", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.982200", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.727400", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.722400", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.597400", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.200000", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.195000", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.070000", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.577200", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.572200", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.447200", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.592500", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.587500", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.462500", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.044100", + "Timestamp": "2024-05-16T09:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.428400", + "Timestamp": "2024-05-16T09:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.423400", + "Timestamp": "2024-05-16T09:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.298400", + "Timestamp": "2024-05-16T09:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.229600", + "Timestamp": "2024-05-16T09:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.224600", + "Timestamp": "2024-05-16T09:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.099600", + "Timestamp": "2024-05-16T09:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169800", + "Timestamp": "2024-05-16T09:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166100", + "Timestamp": "2024-05-16T09:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T09:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115600", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418900", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.422500", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082700", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122700", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022700", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.600000", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124700", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120700", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064700", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.190900", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.186900", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130900", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065000", + "Timestamp": "2024-05-16T09:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.005000", + "Timestamp": "2024-05-16T09:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005000", + "Timestamp": "2024-05-16T09:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.891100", + "Timestamp": "2024-05-16T09:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.492900", + "Timestamp": "2024-05-16T09:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.487900", + "Timestamp": "2024-05-16T09:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.362900", + "Timestamp": "2024-05-16T09:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.913000", + "Timestamp": "2024-05-16T09:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.510300", + "Timestamp": "2024-05-16T09:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.505300", + "Timestamp": "2024-05-16T09:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.380300", + "Timestamp": "2024-05-16T09:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.293300", + "Timestamp": "2024-05-16T09:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.288300", + "Timestamp": "2024-05-16T09:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.163300", + "Timestamp": "2024-05-16T09:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.512900", + "Timestamp": "2024-05-16T09:01:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.507900", + "Timestamp": "2024-05-16T09:01:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.382900", + "Timestamp": "2024-05-16T09:01:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.886500", + "Timestamp": "2024-05-16T09:01:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.881500", + "Timestamp": "2024-05-16T09:01:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.756500", + "Timestamp": "2024-05-16T09:01:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.253000", + "Timestamp": "2024-05-16T09:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.316100", + "Timestamp": "2024-05-16T09:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.311100", + "Timestamp": "2024-05-16T09:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186100", + "Timestamp": "2024-05-16T09:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.057200", + "Timestamp": "2024-05-16T09:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.092800", + "Timestamp": "2024-05-16T09:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.087800", + "Timestamp": "2024-05-16T09:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.962800", + "Timestamp": "2024-05-16T09:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.236200", + "Timestamp": "2024-05-16T09:01:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126900", + "Timestamp": "2024-05-16T09:01:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122900", + "Timestamp": "2024-05-16T09:01:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066900", + "Timestamp": "2024-05-16T09:01:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136000", + "Timestamp": "2024-05-16T09:01:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132300", + "Timestamp": "2024-05-16T09:01:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076000", + "Timestamp": "2024-05-16T09:01:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.519700", + "Timestamp": "2024-05-16T09:01:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.514700", + "Timestamp": "2024-05-16T09:01:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.389700", + "Timestamp": "2024-05-16T09:01:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.747100", + "Timestamp": "2024-05-16T09:01:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.742100", + "Timestamp": "2024-05-16T09:01:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.617100", + "Timestamp": "2024-05-16T09:01:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.409200", + "Timestamp": "2024-05-16T09:01:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.911100", + "Timestamp": "2024-05-16T09:01:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.443500", + "Timestamp": "2024-05-16T09:01:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.181600", + "Timestamp": "2024-05-16T09:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177600", + "Timestamp": "2024-05-16T09:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121600", + "Timestamp": "2024-05-16T09:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.078000", + "Timestamp": "2024-05-16T09:01:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.073000", + "Timestamp": "2024-05-16T09:01:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.948000", + "Timestamp": "2024-05-16T09:01:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125500", + "Timestamp": "2024-05-16T09:01:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121800", + "Timestamp": "2024-05-16T09:01:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065500", + "Timestamp": "2024-05-16T09:01:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.879800", + "Timestamp": "2024-05-16T09:01:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.325600", + "Timestamp": "2024-05-16T09:01:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.672800", + "Timestamp": "2024-05-16T09:01:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.785500", + "Timestamp": "2024-05-16T09:01:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.770000", + "Timestamp": "2024-05-16T09:01:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.780500", + "Timestamp": "2024-05-16T09:01:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.765000", + "Timestamp": "2024-05-16T09:01:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.655500", + "Timestamp": "2024-05-16T09:01:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.640000", + "Timestamp": "2024-05-16T09:01:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169000", + "Timestamp": "2024-05-16T09:00:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165000", + "Timestamp": "2024-05-16T09:00:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109000", + "Timestamp": "2024-05-16T09:00:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.259000", + "Timestamp": "2024-05-16T09:00:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.944500", + "Timestamp": "2024-05-16T09:00:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.939500", + "Timestamp": "2024-05-16T09:00:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.814500", + "Timestamp": "2024-05-16T09:00:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.671400", + "Timestamp": "2024-05-16T09:00:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.666400", + "Timestamp": "2024-05-16T09:00:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.541400", + "Timestamp": "2024-05-16T09:00:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.949500", + "Timestamp": "2024-05-16T09:00:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.001000", + "Timestamp": "2024-05-16T09:00:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273000", + "Timestamp": "2024-05-16T09:00:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269300", + "Timestamp": "2024-05-16T09:00:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.213000", + "Timestamp": "2024-05-16T09:00:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.392300", + "Timestamp": "2024-05-16T08:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.387300", + "Timestamp": "2024-05-16T08:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.262300", + "Timestamp": "2024-05-16T08:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.703900", + "Timestamp": "2024-05-16T08:46:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.698900", + "Timestamp": "2024-05-16T08:46:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.573900", + "Timestamp": "2024-05-16T08:46:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.589800", + "Timestamp": "2024-05-16T08:46:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.310300", + "Timestamp": "2024-05-16T08:46:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.305300", + "Timestamp": "2024-05-16T08:46:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180300", + "Timestamp": "2024-05-16T08:46:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.495600", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.488600", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.458600", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.358600", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.295400", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.290400", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165400", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.264700", + "Timestamp": "2024-05-16T08:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.709600", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.704600", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.579600", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.826700", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.796700", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.696700", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.444100", + "Timestamp": "2024-05-16T08:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.414100", + "Timestamp": "2024-05-16T08:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.314100", + "Timestamp": "2024-05-16T08:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.265600", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.260200", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.502000", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233200", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.692000", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.687000", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.562000", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.560600", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.530600", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.430600", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.125900", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.120900", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.995900", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137500", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133800", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077500", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.001500", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.996500", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.871500", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.547700", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.542700", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.417700", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.486500", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.861800", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.856800", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.731800", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.385200", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.028400", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.036300", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.263000", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.258000", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.133000", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.609900", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.604900", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.479900", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.691200", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.686200", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.561200", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.709100", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.752200", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.747200", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.622200", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.096200", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.355500", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.350500", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.225500", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.575600", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.828800", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048100", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.336800", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.331800", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.206800", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.592700", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.587700", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.462700", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.213900", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.209900", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.153900", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.092800", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.087800", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.962800", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.854100", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.549200", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.258100", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.254100", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.198100", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.145000", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.956200", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.172200", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133300", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129600", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073300", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.173900", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.708000", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.678000", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.578000", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.984700", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108500", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048500", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.296500", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266500", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.166500", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.691900", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.686900", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.561900", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.342800", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.337800", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.212800", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.335400", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.330400", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.205400", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.812900", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.861700", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.856700", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.731700", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.040500", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.436500", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.431500", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.306500", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.061700", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.031700", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.931700", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.202100", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.197100", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.072100", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.844800", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.500100", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.120800", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.090800", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.990800", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.853600", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.848600", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.723600", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.680900", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.675900", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.550900", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.241200", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.237500", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181200", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.785100", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.780100", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.655100", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099500", + "Timestamp": "2024-05-16T08:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095800", + "Timestamp": "2024-05-16T08:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039500", + "Timestamp": "2024-05-16T08:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.322100", + "Timestamp": "2024-05-16T08:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.318100", + "Timestamp": "2024-05-16T08:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.262100", + "Timestamp": "2024-05-16T08:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.933700", + "Timestamp": "2024-05-16T08:46:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.928700", + "Timestamp": "2024-05-16T08:46:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.803700", + "Timestamp": "2024-05-16T08:46:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.227100", + "Timestamp": "2024-05-16T08:46:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.465200", + "Timestamp": "2024-05-16T08:46:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.460200", + "Timestamp": "2024-05-16T08:46:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.335200", + "Timestamp": "2024-05-16T08:46:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.259700", + "Timestamp": "2024-05-16T08:46:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.037500", + "Timestamp": "2024-05-16T08:46:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.921200", + "Timestamp": "2024-05-16T08:46:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.659600", + "Timestamp": "2024-05-16T08:46:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.350400", + "Timestamp": "2024-05-16T08:46:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.345400", + "Timestamp": "2024-05-16T08:46:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.220400", + "Timestamp": "2024-05-16T08:46:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.045200", + "Timestamp": "2024-05-16T08:46:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.198300", + "Timestamp": "2024-05-16T08:46:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.192300", + "Timestamp": "2024-05-16T08:46:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.188300", + "Timestamp": "2024-05-16T08:46:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.132300", + "Timestamp": "2024-05-16T08:46:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.441800", + "Timestamp": "2024-05-16T08:46:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.100100", + "Timestamp": "2024-05-16T08:46:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.107500", + "Timestamp": "2024-05-16T08:46:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.078800", + "Timestamp": "2024-05-16T08:46:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.073800", + "Timestamp": "2024-05-16T08:46:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.948800", + "Timestamp": "2024-05-16T08:46:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.639000", + "Timestamp": "2024-05-16T08:46:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.474300", + "Timestamp": "2024-05-16T08:45:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.092700", + "Timestamp": "2024-05-16T08:45:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.212800", + "Timestamp": "2024-05-16T08:45:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.912300", + "Timestamp": "2024-05-16T08:45:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.274500", + "Timestamp": "2024-05-16T08:45:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.269500", + "Timestamp": "2024-05-16T08:45:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.144500", + "Timestamp": "2024-05-16T08:45:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.710300", + "Timestamp": "2024-05-16T08:45:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.705300", + "Timestamp": "2024-05-16T08:45:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.580300", + "Timestamp": "2024-05-16T08:45:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.058500", + "Timestamp": "2024-05-16T08:45:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.824200", + "Timestamp": "2024-05-16T08:45:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311500", + "Timestamp": "2024-05-16T08:45:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281500", + "Timestamp": "2024-05-16T08:45:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181500", + "Timestamp": "2024-05-16T08:45:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134900", + "Timestamp": "2024-05-16T08:45:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131200", + "Timestamp": "2024-05-16T08:45:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074900", + "Timestamp": "2024-05-16T08:45:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.877100", + "Timestamp": "2024-05-16T08:45:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.055000", + "Timestamp": "2024-05-16T08:45:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010700", + "Timestamp": "2024-05-16T08:37:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.070400", + "Timestamp": "2024-05-16T08:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.040400", + "Timestamp": "2024-05-16T08:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.940400", + "Timestamp": "2024-05-16T08:32:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118400", + "Timestamp": "2024-05-16T08:31:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.035900", + "Timestamp": "2024-05-16T08:31:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.030900", + "Timestamp": "2024-05-16T08:31:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.905900", + "Timestamp": "2024-05-16T08:31:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T08:31:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.975500", + "Timestamp": "2024-05-16T08:31:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.970500", + "Timestamp": "2024-05-16T08:31:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.845500", + "Timestamp": "2024-05-16T08:31:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.694500", + "Timestamp": "2024-05-16T08:31:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.689500", + "Timestamp": "2024-05-16T08:31:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.564500", + "Timestamp": "2024-05-16T08:31:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.696400", + "Timestamp": "2024-05-16T08:31:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.691400", + "Timestamp": "2024-05-16T08:31:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.566400", + "Timestamp": "2024-05-16T08:31:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.759500", + "Timestamp": "2024-05-16T08:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.754500", + "Timestamp": "2024-05-16T08:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.629500", + "Timestamp": "2024-05-16T08:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.570000", + "Timestamp": "2024-05-16T08:31:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.121400", + "Timestamp": "2024-05-16T08:31:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.087800", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.668500", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.638500", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.538500", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.953600", + "Timestamp": "2024-05-16T08:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.790000", + "Timestamp": "2024-05-16T08:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.760000", + "Timestamp": "2024-05-16T08:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.660000", + "Timestamp": "2024-05-16T08:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "22.809900", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.430300", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.400300", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.300300", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.267600", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.302300", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.297300", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.172300", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.879600", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.084800", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.874600", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.079800", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.749600", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.954800", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.113200", + "Timestamp": "2024-05-16T08:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.108200", + "Timestamp": "2024-05-16T08:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.983200", + "Timestamp": "2024-05-16T08:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.467500", + "Timestamp": "2024-05-16T08:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.183000", + "Timestamp": "2024-05-16T08:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.456600", + "Timestamp": "2024-05-16T08:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.185400", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.268100", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.155400", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.238100", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.055400", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.138100", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.486100", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116700", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.122100", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.693200", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.663200", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.563200", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.389800", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.384800", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.259800", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.147800", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.449900", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.673200", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.668200", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.543200", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.421200", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.567100", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.981400", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.976400", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.851400", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.117000", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.391500", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.361500", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.261500", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.222700", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.218700", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162700", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.831500", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.531000", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.748000", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.868500", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.734700", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.704700", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.604700", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.056300", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.914400", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.909400", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.784400", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221600", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.732400", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.702400", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.602400", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.936900", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.303600", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298600", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.173600", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.453100", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.423100", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.323100", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094900", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091200", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034900", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.406200", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.401200", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.276200", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.541600", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.809400", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094400", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038100", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.473400", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.468400", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.343400", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.372400", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.367400", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242400", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115700", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.955800", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.950800", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.825800", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.475900", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.781400", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.776400", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.651400", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094000", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090300", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034000", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171800", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168100", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111800", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.386700", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.382700", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.326700", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.659200", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.654200", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.529200", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.544400", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.016100", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.011100", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.886100", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134100", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130400", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074100", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.208700", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.204700", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148700", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.246300", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.241300", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.116300", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.193600", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.189600", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133600", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.861400", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.722800", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.532700", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.234300", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.111300", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.106300", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.981300", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.996800", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.966800", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.866800", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.108300", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.103300", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.978300", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128000", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.727800", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.722800", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.597800", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.356000", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.351000", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.226000", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145500", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141800", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085500", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.234700", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.266100", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.229700", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.261100", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.104700", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.136100", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294600", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289600", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164600", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.363300", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.333300", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.233300", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.752000", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.516500", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.511500", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.386500", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.315500", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.310500", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.185500", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.138400", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.897200", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.011800", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.006800", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.881800", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.344400", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.339400", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.214400", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.219500", + "Timestamp": "2024-05-16T08:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.214500", + "Timestamp": "2024-05-16T08:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.089500", + "Timestamp": "2024-05-16T08:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.464700", + "Timestamp": "2024-05-16T08:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.593000", + "Timestamp": "2024-05-16T08:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.591700", + "Timestamp": "2024-05-16T08:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.262200", + "Timestamp": "2024-05-16T08:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258200", + "Timestamp": "2024-05-16T08:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.202200", + "Timestamp": "2024-05-16T08:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.517400", + "Timestamp": "2024-05-16T08:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.552300", + "Timestamp": "2024-05-16T08:31:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.547300", + "Timestamp": "2024-05-16T08:31:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.422300", + "Timestamp": "2024-05-16T08:31:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.941900", + "Timestamp": "2024-05-16T08:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.936900", + "Timestamp": "2024-05-16T08:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.811900", + "Timestamp": "2024-05-16T08:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.357300", + "Timestamp": "2024-05-16T08:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.327300", + "Timestamp": "2024-05-16T08:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.227300", + "Timestamp": "2024-05-16T08:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.088800", + "Timestamp": "2024-05-16T08:31:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.941900", + "Timestamp": "2024-05-16T08:31:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.473200", + "Timestamp": "2024-05-16T08:31:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.448400", + "Timestamp": "2024-05-16T08:31:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.443400", + "Timestamp": "2024-05-16T08:31:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.318400", + "Timestamp": "2024-05-16T08:31:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231000", + "Timestamp": "2024-05-16T08:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441100", + "Timestamp": "2024-05-16T08:31:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.744700", + "Timestamp": "2024-05-16T08:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.275100", + "Timestamp": "2024-05-16T08:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.270100", + "Timestamp": "2024-05-16T08:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.145100", + "Timestamp": "2024-05-16T08:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.810300", + "Timestamp": "2024-05-16T08:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.805300", + "Timestamp": "2024-05-16T08:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.680300", + "Timestamp": "2024-05-16T08:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216300", + "Timestamp": "2024-05-16T08:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.818200", + "Timestamp": "2024-05-16T08:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135200", + "Timestamp": "2024-05-16T08:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131500", + "Timestamp": "2024-05-16T08:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075200", + "Timestamp": "2024-05-16T08:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-16T08:30:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.593100", + "Timestamp": "2024-05-16T08:30:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.563100", + "Timestamp": "2024-05-16T08:30:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.463100", + "Timestamp": "2024-05-16T08:30:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.378800", + "Timestamp": "2024-05-16T08:30:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111300", + "Timestamp": "2024-05-16T08:30:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T08:30:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051300", + "Timestamp": "2024-05-16T08:30:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.558400", + "Timestamp": "2024-05-16T08:30:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.553400", + "Timestamp": "2024-05-16T08:30:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.428400", + "Timestamp": "2024-05-16T08:30:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.971800", + "Timestamp": "2024-05-16T08:30:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.433300", + "Timestamp": "2024-05-16T08:30:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.839500", + "Timestamp": "2024-05-16T08:30:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.516200", + "Timestamp": "2024-05-16T08:30:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115800", + "Timestamp": "2024-05-16T08:30:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111800", + "Timestamp": "2024-05-16T08:30:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055800", + "Timestamp": "2024-05-16T08:30:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.860300", + "Timestamp": "2024-05-16T08:30:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.830300", + "Timestamp": "2024-05-16T08:30:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.730300", + "Timestamp": "2024-05-16T08:30:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.304900", + "Timestamp": "2024-05-16T08:29:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.304900", + "Timestamp": "2024-05-16T08:29:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.202700", + "Timestamp": "2024-05-16T08:16:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198700", + "Timestamp": "2024-05-16T08:16:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142700", + "Timestamp": "2024-05-16T08:16:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.639100", + "Timestamp": "2024-05-16T08:16:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.634100", + "Timestamp": "2024-05-16T08:16:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.509100", + "Timestamp": "2024-05-16T08:16:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.947500", + "Timestamp": "2024-05-16T08:16:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.671400", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.666400", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.541400", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.304200", + "Timestamp": "2024-05-16T08:16:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.299200", + "Timestamp": "2024-05-16T08:16:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.174200", + "Timestamp": "2024-05-16T08:16:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.244700", + "Timestamp": "2024-05-16T08:16:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.091400", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.086400", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.961400", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.609500", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.957500", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.952500", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.827500", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.014200", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.912500", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.882500", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.782500", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161200", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.201200", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.531400", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.526400", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.401400", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.442400", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.437400", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.312400", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.545400", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.981300", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.976300", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.851300", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.740000", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.735000", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.610000", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.271800", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.208400", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.204400", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148400", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.354400", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.947400", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.805600", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.775600", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.675600", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.237200", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.494900", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.489900", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.364900", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.664100", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.660400", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.604100", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.003300", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.973300", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.873300", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.374200", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.369200", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.244200", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111100", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051100", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.795300", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.790300", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.665300", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.518000", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.513000", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.388000", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.957800", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.927800", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.827800", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159900", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.199900", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099900", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.594600", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.589600", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.464600", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.044500", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.039500", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.914500", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.350200", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.345200", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.220200", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.767700", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.762700", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.637700", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130400", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126700", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070400", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.323200", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.318200", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.193200", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.536600", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.531600", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.406600", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.936000", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.931000", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.806000", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119800", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116100", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059800", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.188500", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.184500", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128500", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.267100", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.190500", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.186800", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130500", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.109700", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.104700", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.979700", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.968800", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.938800", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.838800", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.566500", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.561500", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.436500", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.240500", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.236800", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180500", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.615000", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.854600", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.909600", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.904600", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.779600", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.010200", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.980200", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.880200", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.925700", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.734400", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.729400", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.604400", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.070800", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.065800", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.940800", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139300", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135600", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079300", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.823000", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.818000", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.693000", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.306800", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.606600", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.601600", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.476600", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.247300", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.866100", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.861100", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.736100", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.379500", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.374500", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.249500", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.494800", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.941900", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.936900", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.811900", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.257300", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.252300", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.127300", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.417600", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.412600", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.287600", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.161600", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.156600", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.031600", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.528000", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.201100", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.196100", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.071100", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.043400", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.013400", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.913400", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231600", + "Timestamp": "2024-05-16T08:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.263800", + "Timestamp": "2024-05-16T08:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.382200", + "Timestamp": "2024-05-16T08:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.481900", + "Timestamp": "2024-05-16T08:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.671100", + "Timestamp": "2024-05-16T08:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.666100", + "Timestamp": "2024-05-16T08:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.541100", + "Timestamp": "2024-05-16T08:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T08:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101100", + "Timestamp": "2024-05-16T08:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044800", + "Timestamp": "2024-05-16T08:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.839500", + "Timestamp": "2024-05-16T08:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.834500", + "Timestamp": "2024-05-16T08:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.709500", + "Timestamp": "2024-05-16T08:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.863200", + "Timestamp": "2024-05-16T08:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.858200", + "Timestamp": "2024-05-16T08:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.733200", + "Timestamp": "2024-05-16T08:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.934200", + "Timestamp": "2024-05-16T08:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.957600", + "Timestamp": "2024-05-16T08:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.952600", + "Timestamp": "2024-05-16T08:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.827600", + "Timestamp": "2024-05-16T08:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.517800", + "Timestamp": "2024-05-16T08:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.512800", + "Timestamp": "2024-05-16T08:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.387800", + "Timestamp": "2024-05-16T08:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.171700", + "Timestamp": "2024-05-16T08:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.676800", + "Timestamp": "2024-05-16T08:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.646800", + "Timestamp": "2024-05-16T08:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.546800", + "Timestamp": "2024-05-16T08:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.270200", + "Timestamp": "2024-05-16T08:16:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.265200", + "Timestamp": "2024-05-16T08:16:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.140200", + "Timestamp": "2024-05-16T08:16:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.331800", + "Timestamp": "2024-05-16T08:16:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.326800", + "Timestamp": "2024-05-16T08:16:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.201800", + "Timestamp": "2024-05-16T08:16:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.688600", + "Timestamp": "2024-05-16T08:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.838600", + "Timestamp": "2024-05-16T08:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.658600", + "Timestamp": "2024-05-16T08:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.808600", + "Timestamp": "2024-05-16T08:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.558600", + "Timestamp": "2024-05-16T08:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.708600", + "Timestamp": "2024-05-16T08:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.039700", + "Timestamp": "2024-05-16T08:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162900", + "Timestamp": "2024-05-16T08:16:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159200", + "Timestamp": "2024-05-16T08:16:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T08:16:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088900", + "Timestamp": "2024-05-16T08:16:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128900", + "Timestamp": "2024-05-16T08:16:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028900", + "Timestamp": "2024-05-16T08:16:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.919400", + "Timestamp": "2024-05-16T08:16:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.914400", + "Timestamp": "2024-05-16T08:16:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.789400", + "Timestamp": "2024-05-16T08:16:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.551400", + "Timestamp": "2024-05-16T08:16:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.546400", + "Timestamp": "2024-05-16T08:16:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.421400", + "Timestamp": "2024-05-16T08:16:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.500800", + "Timestamp": "2024-05-16T08:16:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.095100", + "Timestamp": "2024-05-16T08:16:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.090100", + "Timestamp": "2024-05-16T08:16:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.965100", + "Timestamp": "2024-05-16T08:16:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.028100", + "Timestamp": "2024-05-16T08:16:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.348600", + "Timestamp": "2024-05-16T08:16:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343600", + "Timestamp": "2024-05-16T08:16:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.218600", + "Timestamp": "2024-05-16T08:16:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.626300", + "Timestamp": "2024-05-16T08:16:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.967800", + "Timestamp": "2024-05-16T08:16:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.962800", + "Timestamp": "2024-05-16T08:16:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.837800", + "Timestamp": "2024-05-16T08:16:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.119600", + "Timestamp": "2024-05-16T08:16:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.114600", + "Timestamp": "2024-05-16T08:16:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.989600", + "Timestamp": "2024-05-16T08:16:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.975300", + "Timestamp": "2024-05-16T08:16:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.178700", + "Timestamp": "2024-05-16T08:16:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.173700", + "Timestamp": "2024-05-16T08:16:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.048700", + "Timestamp": "2024-05-16T08:16:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.279800", + "Timestamp": "2024-05-16T08:15:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.396500", + "Timestamp": "2024-05-16T08:15:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.274800", + "Timestamp": "2024-05-16T08:15:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.391500", + "Timestamp": "2024-05-16T08:15:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.149800", + "Timestamp": "2024-05-16T08:15:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.266500", + "Timestamp": "2024-05-16T08:15:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.382800", + "Timestamp": "2024-05-16T08:15:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.352800", + "Timestamp": "2024-05-16T08:15:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.252800", + "Timestamp": "2024-05-16T08:15:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.374000", + "Timestamp": "2024-05-16T08:15:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.344000", + "Timestamp": "2024-05-16T08:15:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.244000", + "Timestamp": "2024-05-16T08:15:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.927100", + "Timestamp": "2024-05-16T08:15:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.922100", + "Timestamp": "2024-05-16T08:15:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.797100", + "Timestamp": "2024-05-16T08:15:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.500300", + "Timestamp": "2024-05-16T08:15:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141900", + "Timestamp": "2024-05-16T08:15:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181900", + "Timestamp": "2024-05-16T08:15:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081900", + "Timestamp": "2024-05-16T08:15:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.351700", + "Timestamp": "2024-05-16T08:15:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.346700", + "Timestamp": "2024-05-16T08:15:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.221700", + "Timestamp": "2024-05-16T08:15:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.899700", + "Timestamp": "2024-05-16T08:15:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324200", + "Timestamp": "2024-05-16T08:15:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294200", + "Timestamp": "2024-05-16T08:15:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194200", + "Timestamp": "2024-05-16T08:15:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.113700", + "Timestamp": "2024-05-16T08:15:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.108700", + "Timestamp": "2024-05-16T08:15:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.983700", + "Timestamp": "2024-05-16T08:15:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T08:15:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154600", + "Timestamp": "2024-05-16T08:15:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054600", + "Timestamp": "2024-05-16T08:15:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075900", + "Timestamp": "2024-05-16T08:01:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.072200", + "Timestamp": "2024-05-16T08:01:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015900", + "Timestamp": "2024-05-16T08:01:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.133900", + "Timestamp": "2024-05-16T08:01:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152600", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052600", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.879700", + "Timestamp": "2024-05-16T08:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.874700", + "Timestamp": "2024-05-16T08:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.749700", + "Timestamp": "2024-05-16T08:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.537300", + "Timestamp": "2024-05-16T08:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.532300", + "Timestamp": "2024-05-16T08:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.407300", + "Timestamp": "2024-05-16T08:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.898600", + "Timestamp": "2024-05-16T08:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.893600", + "Timestamp": "2024-05-16T08:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.768600", + "Timestamp": "2024-05-16T08:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.782700", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.791800", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.976500", + "Timestamp": "2024-05-16T08:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.047400", + "Timestamp": "2024-05-16T08:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.042400", + "Timestamp": "2024-05-16T08:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.917400", + "Timestamp": "2024-05-16T08:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.518100", + "Timestamp": "2024-05-16T08:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.970900", + "Timestamp": "2024-05-16T08:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.940900", + "Timestamp": "2024-05-16T08:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.840900", + "Timestamp": "2024-05-16T08:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.572100", + "Timestamp": "2024-05-16T08:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.542100", + "Timestamp": "2024-05-16T08:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.442100", + "Timestamp": "2024-05-16T08:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.570700", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.565700", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.440700", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121800", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.903900", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.903800", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.954400", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.898900", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.898800", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.949400", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.773900", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.773800", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.824400", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.258300", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.793000", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.788000", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.663000", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.305800", + "Timestamp": "2024-05-16T08:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.300800", + "Timestamp": "2024-05-16T08:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.175800", + "Timestamp": "2024-05-16T08:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064200", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004200", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004200", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.349600", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.319600", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.219600", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.299000", + "Timestamp": "2024-05-16T08:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.956300", + "Timestamp": "2024-05-16T08:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.451800", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.281400", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.459900", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.213700", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.208700", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.083700", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.461000", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125200", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121200", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065200", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.148200", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.123700", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.317500", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.312500", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.187500", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.060800", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.055800", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.930800", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.282400", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.277400", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.152400", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.387400", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.709800", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.803900", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.700000", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.670000", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.570000", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.265100", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.150700", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.145700", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.020700", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.053400", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.048400", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.923400", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152800", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149100", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092800", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.098200", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.093200", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.968200", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.106300", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.648000", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.643000", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.518000", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.493600", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.843300", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.857000", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.838300", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.852000", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.713300", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.727000", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.618300", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.893000", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.888000", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.763000", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.033000", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.028000", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.903000", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.585000", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.670000", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.665000", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.540000", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.432900", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.528000", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.438600", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.433600", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.308600", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.426000", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214900", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.610200", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.605200", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.480200", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.932700", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.437000", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.407000", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.307000", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.461800", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.456800", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.331800", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160300", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156600", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.889800", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.884800", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.759800", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.511800", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.521700", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.909500", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.954000", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.924000", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.824000", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.580100", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.575100", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.450100", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.912600", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.907600", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.782600", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.136400", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.951700", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.946700", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.821700", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.888900", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.473000", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "f1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.852200", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "f1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.847200", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "f1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.722200", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.343100", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.874600", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.740500", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.735500", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.610500", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169000", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165300", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109000", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.944400", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166900", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163200", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.518700", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.513700", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.388700", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162000", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.202000", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102000", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.408000", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.403000", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.278000", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.662000", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.657000", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.532000", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.857800", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.827800", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.727800", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.839400", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.834400", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.709400", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.233100", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.228100", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103100", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.844200", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.839200", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.714200", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152100", + "Timestamp": "2024-05-16T08:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148400", + "Timestamp": "2024-05-16T08:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092100", + "Timestamp": "2024-05-16T08:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.882400", + "Timestamp": "2024-05-16T08:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T08:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149800", + "Timestamp": "2024-05-16T08:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049800", + "Timestamp": "2024-05-16T08:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.467500", + "Timestamp": "2024-05-16T08:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.462500", + "Timestamp": "2024-05-16T08:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.337500", + "Timestamp": "2024-05-16T08:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.942800", + "Timestamp": "2024-05-16T08:01:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.377700", + "Timestamp": "2024-05-16T08:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372700", + "Timestamp": "2024-05-16T08:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.247700", + "Timestamp": "2024-05-16T08:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.945500", + "Timestamp": "2024-05-16T08:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.940500", + "Timestamp": "2024-05-16T08:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.815500", + "Timestamp": "2024-05-16T08:01:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.723700", + "Timestamp": "2024-05-16T08:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.718700", + "Timestamp": "2024-05-16T08:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.593700", + "Timestamp": "2024-05-16T08:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.280000", + "Timestamp": "2024-05-16T08:01:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.275000", + "Timestamp": "2024-05-16T08:01:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.150000", + "Timestamp": "2024-05-16T08:01:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.901500", + "Timestamp": "2024-05-16T08:01:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.871500", + "Timestamp": "2024-05-16T08:01:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.771500", + "Timestamp": "2024-05-16T08:01:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.459500", + "Timestamp": "2024-05-16T08:01:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.454500", + "Timestamp": "2024-05-16T08:01:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.329500", + "Timestamp": "2024-05-16T08:01:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.521300", + "Timestamp": "2024-05-16T08:01:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.516300", + "Timestamp": "2024-05-16T08:01:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.391300", + "Timestamp": "2024-05-16T08:01:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.890900", + "Timestamp": "2024-05-16T08:01:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.108900", + "Timestamp": "2024-05-16T08:01:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.472100", + "Timestamp": "2024-05-16T08:01:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.491300", + "Timestamp": "2024-05-16T08:01:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.684100", + "Timestamp": "2024-05-16T08:01:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.679100", + "Timestamp": "2024-05-16T08:01:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.554100", + "Timestamp": "2024-05-16T08:01:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.080300", + "Timestamp": "2024-05-16T08:01:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.232800", + "Timestamp": "2024-05-16T08:01:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152500", + "Timestamp": "2024-05-16T08:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192500", + "Timestamp": "2024-05-16T08:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092500", + "Timestamp": "2024-05-16T08:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.875200", + "Timestamp": "2024-05-16T08:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.243500", + "Timestamp": "2024-05-16T08:01:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.236500", + "Timestamp": "2024-05-16T08:01:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.351500", + "Timestamp": "2024-05-16T08:01:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.346500", + "Timestamp": "2024-05-16T08:01:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.221500", + "Timestamp": "2024-05-16T08:01:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.172600", + "Timestamp": "2024-05-16T08:01:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.167600", + "Timestamp": "2024-05-16T08:01:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.042600", + "Timestamp": "2024-05-16T08:01:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.470800", + "Timestamp": "2024-05-16T08:00:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.465800", + "Timestamp": "2024-05-16T08:00:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.340800", + "Timestamp": "2024-05-16T08:00:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.059700", + "Timestamp": "2024-05-16T08:00:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.054700", + "Timestamp": "2024-05-16T08:00:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.929700", + "Timestamp": "2024-05-16T08:00:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135800", + "Timestamp": "2024-05-16T08:00:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131800", + "Timestamp": "2024-05-16T08:00:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075800", + "Timestamp": "2024-05-16T08:00:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.936200", + "Timestamp": "2024-05-16T08:00:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116500", + "Timestamp": "2024-05-16T08:00:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T08:00:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056500", + "Timestamp": "2024-05-16T08:00:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.148000", + "Timestamp": "2024-05-16T08:00:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124700", + "Timestamp": "2024-05-16T08:00:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120700", + "Timestamp": "2024-05-16T08:00:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064700", + "Timestamp": "2024-05-16T08:00:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.178400", + "Timestamp": "2024-05-16T08:00:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174700", + "Timestamp": "2024-05-16T08:00:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118400", + "Timestamp": "2024-05-16T08:00:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.089300", + "Timestamp": "2024-05-16T08:00:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090800", + "Timestamp": "2024-05-16T08:00:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087100", + "Timestamp": "2024-05-16T08:00:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030800", + "Timestamp": "2024-05-16T08:00:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.207900", + "Timestamp": "2024-05-16T07:47:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "a1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.202900", + "Timestamp": "2024-05-16T07:47:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077900", + "Timestamp": "2024-05-16T07:47:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.196600", + "Timestamp": "2024-05-16T07:46:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.068400", + "Timestamp": "2024-05-16T07:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.063400", + "Timestamp": "2024-05-16T07:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.938400", + "Timestamp": "2024-05-16T07:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.759600", + "Timestamp": "2024-05-16T07:46:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.247800", + "Timestamp": "2024-05-16T07:46:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.594200", + "Timestamp": "2024-05-16T07:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.589200", + "Timestamp": "2024-05-16T07:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.464200", + "Timestamp": "2024-05-16T07:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118300", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.652600", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.168900", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.163900", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.038900", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.456500", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.451500", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.326500", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102000", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045700", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.992800", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.987800", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.862800", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.161700", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.156700", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.031700", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073800", + "Timestamp": "2024-05-16T07:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044800", + "Timestamp": "2024-05-16T07:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013800", + "Timestamp": "2024-05-16T07:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.931200", + "Timestamp": "2024-05-16T07:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.552000", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.556900", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.637200", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.632200", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.507200", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.440100", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.435100", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.310100", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.302500", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.522100", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.988300", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.983300", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.858300", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.191900", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.187900", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131900", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.813000", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.752500", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.591900", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.586900", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.461900", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.441800", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.436800", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.311800", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.753900", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.723900", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.623900", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.556500", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.551500", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.426500", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.593000", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.588000", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.463000", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165300", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161600", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105300", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.833800", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.178000", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174000", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118000", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297400", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267400", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167400", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.551000", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.978300", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.973300", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.848300", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.320500", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.315500", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190500", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.637500", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.470500", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.465500", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.340500", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.460300", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.456300", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.400300", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.752600", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.747600", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.622600", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163000", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159000", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117200", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113500", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057200", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.555900", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.550900", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.425900", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.178600", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.218600", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118600", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.113000", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.272100", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.108000", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.267100", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.983000", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.142100", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158100", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154100", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.829300", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.584800", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.371800", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.579800", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.366800", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.454800", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.241800", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.301400", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.271400", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.171400", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.965100", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.960100", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.835100", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221900", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.437800", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.432800", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.307800", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.241700", + "Timestamp": "2024-05-16T07:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.747100", + "Timestamp": "2024-05-16T07:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.717100", + "Timestamp": "2024-05-16T07:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.617100", + "Timestamp": "2024-05-16T07:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171000", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167300", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.990400", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.960400", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.860400", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.081000", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.076000", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.951000", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.260600", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.389200", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.384200", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.259200", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.537500", + "Timestamp": "2024-05-16T07:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.944500", + "Timestamp": "2024-05-16T07:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.550100", + "Timestamp": "2024-05-16T07:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.371700", + "Timestamp": "2024-05-16T07:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044200", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.424900", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.419900", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.294900", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.353200", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323200", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.223200", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.837600", + "Timestamp": "2024-05-16T07:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.361200", + "Timestamp": "2024-05-16T07:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.549700", + "Timestamp": "2024-05-16T07:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.544700", + "Timestamp": "2024-05-16T07:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.419700", + "Timestamp": "2024-05-16T07:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139700", + "Timestamp": "2024-05-16T07:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135700", + "Timestamp": "2024-05-16T07:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079700", + "Timestamp": "2024-05-16T07:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-16T07:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084400", + "Timestamp": "2024-05-16T07:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028100", + "Timestamp": "2024-05-16T07:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.757400", + "Timestamp": "2024-05-16T07:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.752400", + "Timestamp": "2024-05-16T07:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.627400", + "Timestamp": "2024-05-16T07:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.898900", + "Timestamp": "2024-05-16T07:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.028200", + "Timestamp": "2024-05-16T07:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.814600", + "Timestamp": "2024-05-16T07:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.836500", + "Timestamp": "2024-05-16T07:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.831500", + "Timestamp": "2024-05-16T07:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.706500", + "Timestamp": "2024-05-16T07:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.224700", + "Timestamp": "2024-05-16T07:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096800", + "Timestamp": "2024-05-16T07:46:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093100", + "Timestamp": "2024-05-16T07:46:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036800", + "Timestamp": "2024-05-16T07:46:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.700100", + "Timestamp": "2024-05-16T07:46:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.217500", + "Timestamp": "2024-05-16T07:46:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.257500", + "Timestamp": "2024-05-16T07:46:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157500", + "Timestamp": "2024-05-16T07:46:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.172700", + "Timestamp": "2024-05-16T07:46:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.167700", + "Timestamp": "2024-05-16T07:46:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.042700", + "Timestamp": "2024-05-16T07:46:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.765400", + "Timestamp": "2024-05-16T07:46:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.760400", + "Timestamp": "2024-05-16T07:46:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.635400", + "Timestamp": "2024-05-16T07:46:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.359800", + "Timestamp": "2024-05-16T07:46:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.342900", + "Timestamp": "2024-05-16T07:46:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.329800", + "Timestamp": "2024-05-16T07:46:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.312900", + "Timestamp": "2024-05-16T07:46:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.229800", + "Timestamp": "2024-05-16T07:46:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212900", + "Timestamp": "2024-05-16T07:46:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.181100", + "Timestamp": "2024-05-16T07:46:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177100", + "Timestamp": "2024-05-16T07:46:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121100", + "Timestamp": "2024-05-16T07:46:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.972100", + "Timestamp": "2024-05-16T07:46:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.762900", + "Timestamp": "2024-05-16T07:46:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.757900", + "Timestamp": "2024-05-16T07:46:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.632900", + "Timestamp": "2024-05-16T07:46:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162800", + "Timestamp": "2024-05-16T07:46:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159100", + "Timestamp": "2024-05-16T07:46:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T07:46:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.678700", + "Timestamp": "2024-05-16T07:46:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.644400", + "Timestamp": "2024-05-16T07:46:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138700", + "Timestamp": "2024-05-16T07:46:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135000", + "Timestamp": "2024-05-16T07:46:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078700", + "Timestamp": "2024-05-16T07:46:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.587200", + "Timestamp": "2024-05-16T07:46:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.063300", + "Timestamp": "2024-05-16T07:45:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.058300", + "Timestamp": "2024-05-16T07:45:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.933300", + "Timestamp": "2024-05-16T07:45:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.220100", + "Timestamp": "2024-05-16T07:45:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.215100", + "Timestamp": "2024-05-16T07:45:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.090100", + "Timestamp": "2024-05-16T07:45:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172600", + "Timestamp": "2024-05-16T07:45:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168900", + "Timestamp": "2024-05-16T07:45:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-16T07:45:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.453300", + "Timestamp": "2024-05-16T07:45:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.448300", + "Timestamp": "2024-05-16T07:45:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.323300", + "Timestamp": "2024-05-16T07:45:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.636800", + "Timestamp": "2024-05-16T07:45:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.631800", + "Timestamp": "2024-05-16T07:45:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.506800", + "Timestamp": "2024-05-16T07:45:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.710400", + "Timestamp": "2024-05-16T07:45:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.138100", + "Timestamp": "2024-05-16T07:45:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113900", + "Timestamp": "2024-05-16T07:45:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-16T07:45:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053900", + "Timestamp": "2024-05-16T07:45:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.576500", + "Timestamp": "2024-05-16T07:45:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.546500", + "Timestamp": "2024-05-16T07:45:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.446500", + "Timestamp": "2024-05-16T07:45:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.351400", + "Timestamp": "2024-05-16T07:45:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.346400", + "Timestamp": "2024-05-16T07:45:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.221400", + "Timestamp": "2024-05-16T07:45:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.454700", + "Timestamp": "2024-05-16T07:45:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.706500", + "Timestamp": "2024-05-16T07:45:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.353100", + "Timestamp": "2024-05-16T07:45:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.816500", + "Timestamp": "2024-05-16T07:45:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.232400", + "Timestamp": "2024-05-16T07:45:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.228400", + "Timestamp": "2024-05-16T07:45:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172400", + "Timestamp": "2024-05-16T07:45:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.821700", + "Timestamp": "2024-05-16T07:45:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.816700", + "Timestamp": "2024-05-16T07:45:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.691700", + "Timestamp": "2024-05-16T07:45:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.199000", + "Timestamp": "2024-05-16T07:45:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.195000", + "Timestamp": "2024-05-16T07:45:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139000", + "Timestamp": "2024-05-16T07:45:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.984700", + "Timestamp": "2024-05-16T07:31:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.979700", + "Timestamp": "2024-05-16T07:31:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.854700", + "Timestamp": "2024-05-16T07:31:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.722700", + "Timestamp": "2024-05-16T07:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "a1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124000", + "Timestamp": "2024-05-16T07:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "a1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120300", + "Timestamp": "2024-05-16T07:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "a1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064000", + "Timestamp": "2024-05-16T07:31:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.759400", + "Timestamp": "2024-05-16T07:31:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.978400", + "Timestamp": "2024-05-16T07:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.036800", + "Timestamp": "2024-05-16T07:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140700", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137000", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080700", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.948300", + "Timestamp": "2024-05-16T07:31:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.171100", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.725400", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.166100", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.720400", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.041100", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.595400", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.220000", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.216000", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.160000", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.118900", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.113900", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.988900", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.639500", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.640400", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.825000", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.820000", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.695000", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.233800", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.243000", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.125700", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.120700", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.995700", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125200", + "Timestamp": "2024-05-16T07:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121500", + "Timestamp": "2024-05-16T07:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065200", + "Timestamp": "2024-05-16T07:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.457700", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.452700", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.327700", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.942200", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.937200", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.812200", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.264900", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.259900", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134900", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.539300", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.146900", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040200", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147400", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047400", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.117700", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.976000", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.971000", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.846000", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.829700", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.824700", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.699700", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.886500", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075000", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071300", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015000", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.200100", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.877900", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.872900", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.747900", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.509300", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.484400", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.253900", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297900", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.292900", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167900", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222300", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.482400", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.452400", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.352400", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.377100", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372100", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.247100", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.705100", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.700100", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.575100", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.920400", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.123000", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.118000", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.993000", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.681500", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.676500", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.551500", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.821100", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144700", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141000", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084700", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.764900", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.423100", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.418100", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.293100", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.455600", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.450600", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.325600", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.882200", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.148400", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.898800", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.893800", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.768800", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.497200", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.023800", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174700", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.171000", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114700", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167700", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.207700", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.275900", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.965600", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.751100", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.842400", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.583600", + "Timestamp": "2024-05-16T07:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.578600", + "Timestamp": "2024-05-16T07:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.453600", + "Timestamp": "2024-05-16T07:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.459200", + "Timestamp": "2024-05-16T07:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.612000", + "Timestamp": "2024-05-16T07:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.727400", + "Timestamp": "2024-05-16T07:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.826400", + "Timestamp": "2024-05-16T07:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.578600", + "Timestamp": "2024-05-16T07:31:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.376900", + "Timestamp": "2024-05-16T07:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.416900", + "Timestamp": "2024-05-16T07:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.316900", + "Timestamp": "2024-05-16T07:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.234300", + "Timestamp": "2024-05-16T07:31:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.239100", + "Timestamp": "2024-05-16T07:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.799700", + "Timestamp": "2024-05-16T07:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.937300", + "Timestamp": "2024-05-16T07:31:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.907300", + "Timestamp": "2024-05-16T07:31:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.807300", + "Timestamp": "2024-05-16T07:31:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439300", + "Timestamp": "2024-05-16T07:31:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.072200", + "Timestamp": "2024-05-16T07:31:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161200", + "Timestamp": "2024-05-16T07:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157500", + "Timestamp": "2024-05-16T07:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T07:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.411300", + "Timestamp": "2024-05-16T07:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.406300", + "Timestamp": "2024-05-16T07:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.281300", + "Timestamp": "2024-05-16T07:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330500", + "Timestamp": "2024-05-16T07:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325500", + "Timestamp": "2024-05-16T07:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200500", + "Timestamp": "2024-05-16T07:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.497100", + "Timestamp": "2024-05-16T07:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.492100", + "Timestamp": "2024-05-16T07:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.367100", + "Timestamp": "2024-05-16T07:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.830400", + "Timestamp": "2024-05-16T07:31:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.074300", + "Timestamp": "2024-05-16T07:31:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.069200", + "Timestamp": "2024-05-16T07:31:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.064200", + "Timestamp": "2024-05-16T07:31:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.939200", + "Timestamp": "2024-05-16T07:31:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T07:30:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.002300", + "Timestamp": "2024-05-16T07:30:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.908100", + "Timestamp": "2024-05-16T07:30:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.903100", + "Timestamp": "2024-05-16T07:30:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.778100", + "Timestamp": "2024-05-16T07:30:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.248500", + "Timestamp": "2024-05-16T07:30:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.029500", + "Timestamp": "2024-05-16T07:30:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.024500", + "Timestamp": "2024-05-16T07:30:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.899500", + "Timestamp": "2024-05-16T07:30:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.196200", + "Timestamp": "2024-05-16T07:30:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429000", + "Timestamp": "2024-05-16T07:30:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.701100", + "Timestamp": "2024-05-16T07:30:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.696100", + "Timestamp": "2024-05-16T07:30:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.571100", + "Timestamp": "2024-05-16T07:30:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-16T07:30:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-16T07:30:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052000", + "Timestamp": "2024-05-16T07:30:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109600", + "Timestamp": "2024-05-16T07:30:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T07:30:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049600", + "Timestamp": "2024-05-16T07:30:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079300", + "Timestamp": "2024-05-16T07:16:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075600", + "Timestamp": "2024-05-16T07:16:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019300", + "Timestamp": "2024-05-16T07:16:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.469800", + "Timestamp": "2024-05-16T07:16:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.448900", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.930100", + "Timestamp": "2024-05-16T07:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.925100", + "Timestamp": "2024-05-16T07:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.800100", + "Timestamp": "2024-05-16T07:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.783100", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.778100", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.653100", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "9.542100", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "9.537100", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "9.412100", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.829600", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.824600", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.699600", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.848400", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.953300", + "Timestamp": "2024-05-16T07:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.210000", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.180000", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.080000", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.338100", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.333100", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.208100", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354300", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349300", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224300", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.945800", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.297800", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.600600", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.595600", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.470600", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.146000", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.876300", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.871300", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.746300", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.700500", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.695500", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.570500", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.186200", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.156200", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.056200", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.869400", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.852700", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.145700", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.140700", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.015700", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.186600", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.181600", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.056600", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.698800", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.948000", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.943000", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.818000", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.538600", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.281100", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276100", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.151100", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.122200", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.252700", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.534300", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.525100", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.465200", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119800", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.930100", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.256800", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.474800", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.469800", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.344800", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211400", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.877200", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.486400", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.481400", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.356400", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.482400", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093500", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089800", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033500", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.369800", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.364800", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.239800", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.182300", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.177300", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.052300", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.877500", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.872500", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.747500", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.742200", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.737200", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.612200", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.954900", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.377800", + "Timestamp": "2024-05-16T07:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372800", + "Timestamp": "2024-05-16T07:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.247800", + "Timestamp": "2024-05-16T07:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.053100", + "Timestamp": "2024-05-16T07:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.098100", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.093100", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.968100", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.963100", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.864600", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.514200", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.493000", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.924200", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.930500", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.248800", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.218800", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.118800", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.232900", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.228900", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172900", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.061900", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.056900", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.931900", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050600", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121100", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117100", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061100", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.812200", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.807200", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.682200", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.203400", + "Timestamp": "2024-05-16T07:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.198400", + "Timestamp": "2024-05-16T07:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.073400", + "Timestamp": "2024-05-16T07:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.669300", + "Timestamp": "2024-05-16T07:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.605900", + "Timestamp": "2024-05-16T07:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.664300", + "Timestamp": "2024-05-16T07:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.600900", + "Timestamp": "2024-05-16T07:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.539300", + "Timestamp": "2024-05-16T07:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.475900", + "Timestamp": "2024-05-16T07:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.634400", + "Timestamp": "2024-05-16T07:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.629400", + "Timestamp": "2024-05-16T07:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.504400", + "Timestamp": "2024-05-16T07:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.212100", + "Timestamp": "2024-05-16T07:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.208400", + "Timestamp": "2024-05-16T07:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.152100", + "Timestamp": "2024-05-16T07:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.211700", + "Timestamp": "2024-05-16T07:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.206700", + "Timestamp": "2024-05-16T07:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.081700", + "Timestamp": "2024-05-16T07:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.181100", + "Timestamp": "2024-05-16T07:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177400", + "Timestamp": "2024-05-16T07:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121100", + "Timestamp": "2024-05-16T07:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.361600", + "Timestamp": "2024-05-16T07:16:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.331600", + "Timestamp": "2024-05-16T07:16:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.231600", + "Timestamp": "2024-05-16T07:16:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.991500", + "Timestamp": "2024-05-16T07:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.600100", + "Timestamp": "2024-05-16T07:16:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092900", + "Timestamp": "2024-05-16T07:16:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089200", + "Timestamp": "2024-05-16T07:16:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032900", + "Timestamp": "2024-05-16T07:16:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.120000", + "Timestamp": "2024-05-16T07:16:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.338600", + "Timestamp": "2024-05-16T07:15:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.333600", + "Timestamp": "2024-05-16T07:15:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.208600", + "Timestamp": "2024-05-16T07:15:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081900", + "Timestamp": "2024-05-16T07:15:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078200", + "Timestamp": "2024-05-16T07:15:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021900", + "Timestamp": "2024-05-16T07:15:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.189800", + "Timestamp": "2024-05-16T07:15:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.159800", + "Timestamp": "2024-05-16T07:15:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.059800", + "Timestamp": "2024-05-16T07:15:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.038500", + "Timestamp": "2024-05-16T07:15:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.008500", + "Timestamp": "2024-05-16T07:15:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.908500", + "Timestamp": "2024-05-16T07:15:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.300600", + "Timestamp": "2024-05-16T07:15:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.295600", + "Timestamp": "2024-05-16T07:15:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170600", + "Timestamp": "2024-05-16T07:15:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.204100", + "Timestamp": "2024-05-16T07:15:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168400", + "Timestamp": "2024-05-16T07:15:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.208400", + "Timestamp": "2024-05-16T07:15:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T07:15:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.509900", + "Timestamp": "2024-05-16T07:04:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.509900", + "Timestamp": "2024-05-16T07:04:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-16T07:03:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.955500", + "Timestamp": "2024-05-16T07:01:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.525000", + "Timestamp": "2024-05-16T07:01:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.517300", + "Timestamp": "2024-05-16T07:01:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.520000", + "Timestamp": "2024-05-16T07:01:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.512300", + "Timestamp": "2024-05-16T07:01:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.395000", + "Timestamp": "2024-05-16T07:01:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.387300", + "Timestamp": "2024-05-16T07:01:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.981000", + "Timestamp": "2024-05-16T07:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.462100", + "Timestamp": "2024-05-16T07:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.457100", + "Timestamp": "2024-05-16T07:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.332100", + "Timestamp": "2024-05-16T07:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.929900", + "Timestamp": "2024-05-16T07:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.679100", + "Timestamp": "2024-05-16T07:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.674100", + "Timestamp": "2024-05-16T07:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.549100", + "Timestamp": "2024-05-16T07:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.380700", + "Timestamp": "2024-05-16T07:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.375700", + "Timestamp": "2024-05-16T07:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.250700", + "Timestamp": "2024-05-16T07:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.371200", + "Timestamp": "2024-05-16T07:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.366200", + "Timestamp": "2024-05-16T07:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.241200", + "Timestamp": "2024-05-16T07:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.427700", + "Timestamp": "2024-05-16T07:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.832800", + "Timestamp": "2024-05-16T07:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.639600", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.634600", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.509600", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.574400", + "Timestamp": "2024-05-16T07:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.569400", + "Timestamp": "2024-05-16T07:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.444400", + "Timestamp": "2024-05-16T07:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094600", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090900", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034600", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.051800", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.751000", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.746000", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.621000", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.500700", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.509500", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.504500", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.379500", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.376300", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.371300", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.246300", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.758300", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.753300", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.628300", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.358400", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.500600", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.906400", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.901400", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.776400", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.594900", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.456100", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.677500", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.958400", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.928400", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.828400", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.481500", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.534800", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.150600", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.718400", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.713400", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.588400", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.096900", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.091900", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.966900", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.578900", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.228100", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.223100", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.098100", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106200", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046200", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.059300", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.977800", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.972800", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.847800", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.618500", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.591300", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.586300", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.461300", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172200", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168500", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.911600", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.906600", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.781600", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.941800", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.201100", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.197100", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141100", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117100", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122600", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113400", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066300", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057100", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.678300", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.673300", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.548300", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.558200", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.553200", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.428200", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.284400", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.279400", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.154400", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.349200", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.344200", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.219200", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102300", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046300", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.248000", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.243000", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.118000", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163700", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160000", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.672100", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.667100", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.542100", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.028600", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.956700", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.926700", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.826700", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.606000", + "Timestamp": "2024-05-16T07:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.601000", + "Timestamp": "2024-05-16T07:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.476000", + "Timestamp": "2024-05-16T07:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.992000", + "Timestamp": "2024-05-16T07:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.987000", + "Timestamp": "2024-05-16T07:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.862000", + "Timestamp": "2024-05-16T07:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.744200", + "Timestamp": "2024-05-16T07:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.714200", + "Timestamp": "2024-05-16T07:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.614200", + "Timestamp": "2024-05-16T07:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.493700", + "Timestamp": "2024-05-16T07:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.815700", + "Timestamp": "2024-05-16T07:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.436200", + "Timestamp": "2024-05-16T07:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.539900", + "Timestamp": "2024-05-16T07:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.992100", + "Timestamp": "2024-05-16T07:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.741900", + "Timestamp": "2024-05-16T07:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.736900", + "Timestamp": "2024-05-16T07:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.611900", + "Timestamp": "2024-05-16T07:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.244600", + "Timestamp": "2024-05-16T07:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.239600", + "Timestamp": "2024-05-16T07:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.114600", + "Timestamp": "2024-05-16T07:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.941200", + "Timestamp": "2024-05-16T07:01:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.911200", + "Timestamp": "2024-05-16T07:01:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.811200", + "Timestamp": "2024-05-16T07:01:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.488800", + "Timestamp": "2024-05-16T07:01:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160500", + "Timestamp": "2024-05-16T07:01:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156800", + "Timestamp": "2024-05-16T07:01:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100500", + "Timestamp": "2024-05-16T07:01:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.318000", + "Timestamp": "2024-05-16T07:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.313000", + "Timestamp": "2024-05-16T07:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.188000", + "Timestamp": "2024-05-16T07:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.498300", + "Timestamp": "2024-05-16T07:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.974800", + "Timestamp": "2024-05-16T07:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.303900", + "Timestamp": "2024-05-16T07:01:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298900", + "Timestamp": "2024-05-16T07:01:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.173900", + "Timestamp": "2024-05-16T07:01:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.728400", + "Timestamp": "2024-05-16T07:01:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.723400", + "Timestamp": "2024-05-16T07:01:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.598400", + "Timestamp": "2024-05-16T07:01:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.195300", + "Timestamp": "2024-05-16T07:00:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.190300", + "Timestamp": "2024-05-16T07:00:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.065300", + "Timestamp": "2024-05-16T07:00:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.867500", + "Timestamp": "2024-05-16T07:00:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.837500", + "Timestamp": "2024-05-16T07:00:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.737500", + "Timestamp": "2024-05-16T07:00:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.813000", + "Timestamp": "2024-05-16T07:00:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.748400", + "Timestamp": "2024-05-16T07:00:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.808000", + "Timestamp": "2024-05-16T07:00:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.743400", + "Timestamp": "2024-05-16T07:00:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.683000", + "Timestamp": "2024-05-16T07:00:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.618400", + "Timestamp": "2024-05-16T07:00:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.930700", + "Timestamp": "2024-05-16T07:00:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T07:00:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.054300", + "Timestamp": "2024-05-16T07:00:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.049300", + "Timestamp": "2024-05-16T07:00:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.924300", + "Timestamp": "2024-05-16T07:00:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.816100", + "Timestamp": "2024-05-16T07:00:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.811100", + "Timestamp": "2024-05-16T07:00:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.686100", + "Timestamp": "2024-05-16T07:00:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.758400", + "Timestamp": "2024-05-16T07:00:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.137600", + "Timestamp": "2024-05-16T06:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.743000", + "Timestamp": "2024-05-16T06:46:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.738000", + "Timestamp": "2024-05-16T06:46:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.613000", + "Timestamp": "2024-05-16T06:46:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.904800", + "Timestamp": "2024-05-16T06:46:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.033400", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166100", + "Timestamp": "2024-05-16T06:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162400", + "Timestamp": "2024-05-16T06:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-16T06:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.461500", + "Timestamp": "2024-05-16T06:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.456500", + "Timestamp": "2024-05-16T06:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.331500", + "Timestamp": "2024-05-16T06:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.275800", + "Timestamp": "2024-05-16T06:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.861400", + "Timestamp": "2024-05-16T06:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.856400", + "Timestamp": "2024-05-16T06:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.731400", + "Timestamp": "2024-05-16T06:46:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.359700", + "Timestamp": "2024-05-16T06:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.354700", + "Timestamp": "2024-05-16T06:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.229700", + "Timestamp": "2024-05-16T06:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.711100", + "Timestamp": "2024-05-16T06:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.648100", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.881700", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.479200", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.474200", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.349200", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.656200", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.651200", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.526200", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.246000", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.241000", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.116000", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.398100", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.368100", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.268100", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.103300", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.098300", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.973300", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.251900", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.291900", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.191900", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.864700", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.859700", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.734700", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.245800", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.240800", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.115800", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.662600", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.657600", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.532600", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.306300", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.961900", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.931900", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.831900", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.714500", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128800", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125100", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.344500", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.339500", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.214500", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.209400", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.204400", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.079400", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.299900", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.285400", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.280400", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.155400", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.985700", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.980700", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.855700", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.127000", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.045200", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.097000", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.015200", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.997000", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.915200", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.727500", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.722500", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.597500", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.503200", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.498200", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.373200", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220800", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.247100", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.811000", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.781000", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.681000", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.646300", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.641300", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.516300", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.050700", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.045700", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.920700", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.460100", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.430100", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.330100", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.822300", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.452700", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.951900", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.946900", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.821900", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.543700", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.538700", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.413700", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.933400", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.554600", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "p2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.486300", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.122300", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.245200", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.065000", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.060000", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.935000", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170500", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166800", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.560500", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.555500", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.430500", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.133500", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.685000", + "Timestamp": "2024-05-16T06:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.680000", + "Timestamp": "2024-05-16T06:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.555000", + "Timestamp": "2024-05-16T06:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.156900", + "Timestamp": "2024-05-16T06:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.151900", + "Timestamp": "2024-05-16T06:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.026900", + "Timestamp": "2024-05-16T06:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.900800", + "Timestamp": "2024-05-16T06:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.516100", + "Timestamp": "2024-05-16T06:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.224400", + "Timestamp": "2024-05-16T06:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.194400", + "Timestamp": "2024-05-16T06:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.094400", + "Timestamp": "2024-05-16T06:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.751600", + "Timestamp": "2024-05-16T06:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.006400", + "Timestamp": "2024-05-16T06:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.699100", + "Timestamp": "2024-05-16T06:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.694100", + "Timestamp": "2024-05-16T06:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.569100", + "Timestamp": "2024-05-16T06:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.759700", + "Timestamp": "2024-05-16T06:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.754700", + "Timestamp": "2024-05-16T06:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.629700", + "Timestamp": "2024-05-16T06:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.869600", + "Timestamp": "2024-05-16T06:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.864600", + "Timestamp": "2024-05-16T06:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.739600", + "Timestamp": "2024-05-16T06:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.520300", + "Timestamp": "2024-05-16T06:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.055300", + "Timestamp": "2024-05-16T06:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.277000", + "Timestamp": "2024-05-16T06:46:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.272000", + "Timestamp": "2024-05-16T06:46:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.147000", + "Timestamp": "2024-05-16T06:46:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.428000", + "Timestamp": "2024-05-16T06:46:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.859100", + "Timestamp": "2024-05-16T06:46:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129300", + "Timestamp": "2024-05-16T06:46:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125300", + "Timestamp": "2024-05-16T06:46:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069300", + "Timestamp": "2024-05-16T06:46:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.407200", + "Timestamp": "2024-05-16T06:46:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.402200", + "Timestamp": "2024-05-16T06:46:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.277200", + "Timestamp": "2024-05-16T06:46:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165200", + "Timestamp": "2024-05-16T06:46:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.205200", + "Timestamp": "2024-05-16T06:46:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T06:46:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168200", + "Timestamp": "2024-05-16T06:46:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164500", + "Timestamp": "2024-05-16T06:46:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T06:46:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155600", + "Timestamp": "2024-05-16T06:46:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151600", + "Timestamp": "2024-05-16T06:46:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095600", + "Timestamp": "2024-05-16T06:46:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437400", + "Timestamp": "2024-05-16T06:46:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440200", + "Timestamp": "2024-05-16T06:46:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.014900", + "Timestamp": "2024-05-16T06:46:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.736200", + "Timestamp": "2024-05-16T06:46:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.731200", + "Timestamp": "2024-05-16T06:46:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.606200", + "Timestamp": "2024-05-16T06:46:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.657300", + "Timestamp": "2024-05-16T06:46:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.627300", + "Timestamp": "2024-05-16T06:46:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.527300", + "Timestamp": "2024-05-16T06:46:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.541000", + "Timestamp": "2024-05-16T06:46:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.536000", + "Timestamp": "2024-05-16T06:46:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.411000", + "Timestamp": "2024-05-16T06:46:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.002500", + "Timestamp": "2024-05-16T06:46:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.373500", + "Timestamp": "2024-05-16T06:46:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343500", + "Timestamp": "2024-05-16T06:46:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.243500", + "Timestamp": "2024-05-16T06:46:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m1.large", + "ProductDescription": "Windows", + "SpotPrice": "0.213400", + "Timestamp": "2024-05-16T06:45:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.449300", + "Timestamp": "2024-05-16T06:45:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.941500", + "Timestamp": "2024-05-16T06:45:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218800", + "Timestamp": "2024-05-16T06:45:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.048700", + "Timestamp": "2024-05-16T06:45:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.043700", + "Timestamp": "2024-05-16T06:45:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.918700", + "Timestamp": "2024-05-16T06:45:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115300", + "Timestamp": "2024-05-16T06:45:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155300", + "Timestamp": "2024-05-16T06:45:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055300", + "Timestamp": "2024-05-16T06:45:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.599400", + "Timestamp": "2024-05-16T06:45:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125200", + "Timestamp": "2024-05-16T06:45:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.160900", + "Timestamp": "2024-05-16T06:45:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.130900", + "Timestamp": "2024-05-16T06:45:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.030900", + "Timestamp": "2024-05-16T06:45:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158100", + "Timestamp": "2024-05-16T06:32:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198100", + "Timestamp": "2024-05-16T06:32:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-16T06:32:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092000", + "Timestamp": "2024-05-16T06:32:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088300", + "Timestamp": "2024-05-16T06:32:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032000", + "Timestamp": "2024-05-16T06:32:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.896700", + "Timestamp": "2024-05-16T06:31:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.266300", + "Timestamp": "2024-05-16T06:31:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.236300", + "Timestamp": "2024-05-16T06:31:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.136300", + "Timestamp": "2024-05-16T06:31:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.973000", + "Timestamp": "2024-05-16T06:31:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.641800", + "Timestamp": "2024-05-16T06:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.125800", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.463400", + "Timestamp": "2024-05-16T06:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.458400", + "Timestamp": "2024-05-16T06:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.333400", + "Timestamp": "2024-05-16T06:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075700", + "Timestamp": "2024-05-16T06:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.046700", + "Timestamp": "2024-05-16T06:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015700", + "Timestamp": "2024-05-16T06:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.746500", + "Timestamp": "2024-05-16T06:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.741500", + "Timestamp": "2024-05-16T06:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.616500", + "Timestamp": "2024-05-16T06:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299400", + "Timestamp": "2024-05-16T06:31:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294400", + "Timestamp": "2024-05-16T06:31:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169400", + "Timestamp": "2024-05-16T06:31:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.476400", + "Timestamp": "2024-05-16T06:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.471400", + "Timestamp": "2024-05-16T06:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.346400", + "Timestamp": "2024-05-16T06:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.840700", + "Timestamp": "2024-05-16T06:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.790800", + "Timestamp": "2024-05-16T06:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.165200", + "Timestamp": "2024-05-16T06:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.160200", + "Timestamp": "2024-05-16T06:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.035200", + "Timestamp": "2024-05-16T06:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.662400", + "Timestamp": "2024-05-16T06:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.265800", + "Timestamp": "2024-05-16T06:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.295500", + "Timestamp": "2024-05-16T06:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.479100", + "Timestamp": "2024-05-16T06:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.849500", + "Timestamp": "2024-05-16T06:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.625400", + "Timestamp": "2024-05-16T06:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.469500", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134400", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130400", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074400", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.774900", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.769900", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.644900", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.082900", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.077900", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.952900", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.272300", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.267300", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.142300", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.624300", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.952200", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.947200", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.822200", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.199800", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.194800", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.069800", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135200", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131500", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075200", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.870500", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.865500", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.740500", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.607200", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.602200", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.477200", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.801400", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.796400", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.671400", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.938000", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.145600", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.115600", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.015600", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.529200", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.637700", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.632700", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.507700", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.201900", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198900", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141900", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083800", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080100", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023800", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.524800", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.519800", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.394800", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117100", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113400", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057100", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127000", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123000", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067000", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.530300", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102200", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045900", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.335500", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.331500", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.275500", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.928100", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.523900", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.031200", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.857100", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.464800", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.459800", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.334800", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.914300", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.909300", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.784300", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.546500", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.541500", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.416500", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.876500", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.056300", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.051300", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.926300", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.862200", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.857200", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.732200", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.913300", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.303600", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.298600", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.173600", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.744000", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.892100", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.887100", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.762100", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.355500", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.325500", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.225500", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115200", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.061600", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.056600", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.931600", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.855500", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.753800", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.748800", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.623800", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.588700", + "Timestamp": "2024-05-16T06:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.177300", + "Timestamp": "2024-05-16T06:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.172300", + "Timestamp": "2024-05-16T06:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.047300", + "Timestamp": "2024-05-16T06:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.546500", + "Timestamp": "2024-05-16T06:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-16T06:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.836000", + "Timestamp": "2024-05-16T06:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.831000", + "Timestamp": "2024-05-16T06:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.706000", + "Timestamp": "2024-05-16T06:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.723100", + "Timestamp": "2024-05-16T06:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.724700", + "Timestamp": "2024-05-16T06:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.719700", + "Timestamp": "2024-05-16T06:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.594700", + "Timestamp": "2024-05-16T06:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.282800", + "Timestamp": "2024-05-16T06:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.258000", + "Timestamp": "2024-05-16T06:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184000", + "Timestamp": "2024-05-16T06:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180300", + "Timestamp": "2024-05-16T06:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124000", + "Timestamp": "2024-05-16T06:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.569800", + "Timestamp": "2024-05-16T06:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.446800", + "Timestamp": "2024-05-16T06:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.441800", + "Timestamp": "2024-05-16T06:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.316800", + "Timestamp": "2024-05-16T06:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.822300", + "Timestamp": "2024-05-16T06:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.817300", + "Timestamp": "2024-05-16T06:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.692300", + "Timestamp": "2024-05-16T06:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.848900", + "Timestamp": "2024-05-16T06:31:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.373900", + "Timestamp": "2024-05-16T06:31:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.368900", + "Timestamp": "2024-05-16T06:31:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.243900", + "Timestamp": "2024-05-16T06:31:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.685500", + "Timestamp": "2024-05-16T06:31:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.988200", + "Timestamp": "2024-05-16T06:31:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.102900", + "Timestamp": "2024-05-16T06:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113500", + "Timestamp": "2024-05-16T06:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153500", + "Timestamp": "2024-05-16T06:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053500", + "Timestamp": "2024-05-16T06:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.872400", + "Timestamp": "2024-05-16T06:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.329500", + "Timestamp": "2024-05-16T06:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.324500", + "Timestamp": "2024-05-16T06:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.199500", + "Timestamp": "2024-05-16T06:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.132600", + "Timestamp": "2024-05-16T06:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.102600", + "Timestamp": "2024-05-16T06:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.002600", + "Timestamp": "2024-05-16T06:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084300", + "Timestamp": "2024-05-16T06:31:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080600", + "Timestamp": "2024-05-16T06:31:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024300", + "Timestamp": "2024-05-16T06:31:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T06:31:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-16T06:31:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049800", + "Timestamp": "2024-05-16T06:31:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.259500", + "Timestamp": "2024-05-16T06:31:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084500", + "Timestamp": "2024-05-16T06:30:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.055500", + "Timestamp": "2024-05-16T06:30:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024500", + "Timestamp": "2024-05-16T06:30:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231300", + "Timestamp": "2024-05-16T06:30:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.772100", + "Timestamp": "2024-05-16T06:30:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.767100", + "Timestamp": "2024-05-16T06:30:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.642100", + "Timestamp": "2024-05-16T06:30:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.869400", + "Timestamp": "2024-05-16T06:30:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.864400", + "Timestamp": "2024-05-16T06:30:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.739400", + "Timestamp": "2024-05-16T06:30:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T06:30:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103100", + "Timestamp": "2024-05-16T06:30:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047100", + "Timestamp": "2024-05-16T06:30:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.481100", + "Timestamp": "2024-05-16T06:30:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.800300", + "Timestamp": "2024-05-16T06:30:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.911100", + "Timestamp": "2024-05-16T06:28:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.911100", + "Timestamp": "2024-05-16T06:28:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.156900", + "Timestamp": "2024-05-16T06:17:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.794400", + "Timestamp": "2024-05-16T06:17:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.428600", + "Timestamp": "2024-05-16T06:16:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.423600", + "Timestamp": "2024-05-16T06:16:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.298600", + "Timestamp": "2024-05-16T06:16:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.975500", + "Timestamp": "2024-05-16T06:16:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.064100", + "Timestamp": "2024-05-16T06:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.034100", + "Timestamp": "2024-05-16T06:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.934100", + "Timestamp": "2024-05-16T06:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.041200", + "Timestamp": "2024-05-16T06:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.472600", + "Timestamp": "2024-05-16T06:16:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.467600", + "Timestamp": "2024-05-16T06:16:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.342600", + "Timestamp": "2024-05-16T06:16:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301500", + "Timestamp": "2024-05-16T06:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296500", + "Timestamp": "2024-05-16T06:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171500", + "Timestamp": "2024-05-16T06:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.584200", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.554200", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.454200", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m1.small", + "ProductDescription": "Windows", + "SpotPrice": "0.055000", + "Timestamp": "2024-05-16T06:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.012300", + "Timestamp": "2024-05-16T06:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.578300", + "Timestamp": "2024-05-16T06:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261800", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301800", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.201800", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.197300", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.192300", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.067300", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.011700", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.482500", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.338500", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.225400", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.581300", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.576300", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.451300", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.340200", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.335200", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.210200", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423000", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.933900", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.928900", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.803900", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.130100", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.125100", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.000100", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.772400", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.812900", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119500", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.478600", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.501100", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176000", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172300", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116000", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.314600", + "Timestamp": "2024-05-16T06:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.309600", + "Timestamp": "2024-05-16T06:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.184600", + "Timestamp": "2024-05-16T06:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.845100", + "Timestamp": "2024-05-16T06:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.840100", + "Timestamp": "2024-05-16T06:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.715100", + "Timestamp": "2024-05-16T06:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.234000", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.373100", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.368100", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.243100", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.031600", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.026600", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.901600", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.542400", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.744200", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.834400", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.829400", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.704400", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.300600", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.488000", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.561800", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.556800", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.431800", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.665500", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.660500", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.535500", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.403000", + "Timestamp": "2024-05-16T06:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.398000", + "Timestamp": "2024-05-16T06:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.273000", + "Timestamp": "2024-05-16T06:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.786800", + "Timestamp": "2024-05-16T06:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.781800", + "Timestamp": "2024-05-16T06:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.656800", + "Timestamp": "2024-05-16T06:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128400", + "Timestamp": "2024-05-16T06:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.655200", + "Timestamp": "2024-05-16T06:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.650200", + "Timestamp": "2024-05-16T06:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.525200", + "Timestamp": "2024-05-16T06:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078100", + "Timestamp": "2024-05-16T06:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.049100", + "Timestamp": "2024-05-16T06:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018100", + "Timestamp": "2024-05-16T06:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158100", + "Timestamp": "2024-05-16T06:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154400", + "Timestamp": "2024-05-16T06:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-16T06:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.286800", + "Timestamp": "2024-05-16T06:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.330400", + "Timestamp": "2024-05-16T06:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.613800", + "Timestamp": "2024-05-16T06:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.608800", + "Timestamp": "2024-05-16T06:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.483800", + "Timestamp": "2024-05-16T06:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.490500", + "Timestamp": "2024-05-16T06:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.485500", + "Timestamp": "2024-05-16T06:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.360500", + "Timestamp": "2024-05-16T06:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.443600", + "Timestamp": "2024-05-16T06:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.438600", + "Timestamp": "2024-05-16T06:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.313600", + "Timestamp": "2024-05-16T06:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.178400", + "Timestamp": "2024-05-16T06:16:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174700", + "Timestamp": "2024-05-16T06:16:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118400", + "Timestamp": "2024-05-16T06:16:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076000", + "Timestamp": "2024-05-16T06:16:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047000", + "Timestamp": "2024-05-16T06:16:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016000", + "Timestamp": "2024-05-16T06:16:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.852400", + "Timestamp": "2024-05-16T06:16:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.847400", + "Timestamp": "2024-05-16T06:16:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.722400", + "Timestamp": "2024-05-16T06:16:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.596400", + "Timestamp": "2024-05-16T06:16:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.591400", + "Timestamp": "2024-05-16T06:16:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.466400", + "Timestamp": "2024-05-16T06:16:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.497600", + "Timestamp": "2024-05-16T06:16:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.467600", + "Timestamp": "2024-05-16T06:16:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.367600", + "Timestamp": "2024-05-16T06:16:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.421400", + "Timestamp": "2024-05-16T06:16:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.391400", + "Timestamp": "2024-05-16T06:16:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.291400", + "Timestamp": "2024-05-16T06:16:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.318700", + "Timestamp": "2024-05-16T06:16:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.313700", + "Timestamp": "2024-05-16T06:16:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.188700", + "Timestamp": "2024-05-16T06:16:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m1.large", + "ProductDescription": "Windows", + "SpotPrice": "0.222700", + "Timestamp": "2024-05-16T06:15:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.039300", + "Timestamp": "2024-05-16T06:15:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.034300", + "Timestamp": "2024-05-16T06:15:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.909300", + "Timestamp": "2024-05-16T06:15:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.230100", + "Timestamp": "2024-05-16T06:15:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.390200", + "Timestamp": "2024-05-16T06:15:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.385200", + "Timestamp": "2024-05-16T06:15:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.260200", + "Timestamp": "2024-05-16T06:15:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.125900", + "Timestamp": "2024-05-16T06:15:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.120900", + "Timestamp": "2024-05-16T06:15:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.995900", + "Timestamp": "2024-05-16T06:15:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.688000", + "Timestamp": "2024-05-16T06:15:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.683000", + "Timestamp": "2024-05-16T06:15:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.558000", + "Timestamp": "2024-05-16T06:15:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.689300", + "Timestamp": "2024-05-16T06:15:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.669900", + "Timestamp": "2024-05-16T06:15:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153000", + "Timestamp": "2024-05-16T06:15:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149300", + "Timestamp": "2024-05-16T06:15:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093000", + "Timestamp": "2024-05-16T06:15:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.609800", + "Timestamp": "2024-05-16T06:02:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173400", + "Timestamp": "2024-05-16T06:02:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169700", + "Timestamp": "2024-05-16T06:02:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113400", + "Timestamp": "2024-05-16T06:02:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.859600", + "Timestamp": "2024-05-16T06:01:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165600", + "Timestamp": "2024-05-16T06:01:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161900", + "Timestamp": "2024-05-16T06:01:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T06:01:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.533600", + "Timestamp": "2024-05-16T06:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.973500", + "Timestamp": "2024-05-16T06:01:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T06:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.196100", + "Timestamp": "2024-05-16T06:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.843800", + "Timestamp": "2024-05-16T06:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.838800", + "Timestamp": "2024-05-16T06:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.713800", + "Timestamp": "2024-05-16T06:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.603500", + "Timestamp": "2024-05-16T06:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.244200", + "Timestamp": "2024-05-16T06:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.268000", + "Timestamp": "2024-05-16T06:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.226700", + "Timestamp": "2024-05-16T06:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.223000", + "Timestamp": "2024-05-16T06:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.166700", + "Timestamp": "2024-05-16T06:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m1.small", + "ProductDescription": "Windows", + "SpotPrice": "0.054700", + "Timestamp": "2024-05-16T06:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.855200", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.850200", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.725200", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.227600", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.563800", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.599000", + "Timestamp": "2024-05-16T06:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.407900", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.402900", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.277900", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.633100", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.583200", + "Timestamp": "2024-05-16T06:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115800", + "Timestamp": "2024-05-16T06:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T06:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055800", + "Timestamp": "2024-05-16T06:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.351000", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.336700", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.346000", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.331700", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.221000", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.206700", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.001100", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005400", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005500", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005400", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.784100", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.779100", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.654100", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.861200", + "Timestamp": "2024-05-16T06:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.443500", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.438500", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.313500", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.916600", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.698400", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.693400", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.568400", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.531000", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.526000", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.401000", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140100", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136100", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080100", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.160700", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.130700", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.030700", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.405100", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.400100", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.275100", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.579100", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.549100", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.449100", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.194800", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.234800", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134800", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.465700", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.435700", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.335700", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.681200", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.676200", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.551200", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.939400", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.959300", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.912000", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.604100", + "Timestamp": "2024-05-16T06:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139900", + "Timestamp": "2024-05-16T06:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136200", + "Timestamp": "2024-05-16T06:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079900", + "Timestamp": "2024-05-16T06:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.483100", + "Timestamp": "2024-05-16T06:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.478100", + "Timestamp": "2024-05-16T06:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.353100", + "Timestamp": "2024-05-16T06:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.658300", + "Timestamp": "2024-05-16T06:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.653300", + "Timestamp": "2024-05-16T06:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.528300", + "Timestamp": "2024-05-16T06:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167300", + "Timestamp": "2024-05-16T06:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163600", + "Timestamp": "2024-05-16T06:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T06:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.617500", + "Timestamp": "2024-05-16T06:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.612500", + "Timestamp": "2024-05-16T06:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.487500", + "Timestamp": "2024-05-16T06:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.259100", + "Timestamp": "2024-05-16T06:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.349200", + "Timestamp": "2024-05-16T06:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.254100", + "Timestamp": "2024-05-16T06:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.344200", + "Timestamp": "2024-05-16T06:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.129100", + "Timestamp": "2024-05-16T06:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.219200", + "Timestamp": "2024-05-16T06:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.514600", + "Timestamp": "2024-05-16T06:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.111200", + "Timestamp": "2024-05-16T06:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.081200", + "Timestamp": "2024-05-16T06:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.981200", + "Timestamp": "2024-05-16T06:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.497000", + "Timestamp": "2024-05-16T06:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.492000", + "Timestamp": "2024-05-16T06:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.367000", + "Timestamp": "2024-05-16T06:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.138900", + "Timestamp": "2024-05-16T06:01:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131600", + "Timestamp": "2024-05-16T06:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127600", + "Timestamp": "2024-05-16T06:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071600", + "Timestamp": "2024-05-16T06:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.450600", + "Timestamp": "2024-05-16T06:01:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.972800", + "Timestamp": "2024-05-16T06:01:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.262400", + "Timestamp": "2024-05-16T06:01:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.257400", + "Timestamp": "2024-05-16T06:01:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.132400", + "Timestamp": "2024-05-16T06:01:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062400", + "Timestamp": "2024-05-16T06:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062400", + "Timestamp": "2024-05-16T06:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002400", + "Timestamp": "2024-05-16T06:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002400", + "Timestamp": "2024-05-16T06:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002400", + "Timestamp": "2024-05-16T06:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002400", + "Timestamp": "2024-05-16T06:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.293200", + "Timestamp": "2024-05-16T06:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.288200", + "Timestamp": "2024-05-16T06:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.163200", + "Timestamp": "2024-05-16T06:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.668700", + "Timestamp": "2024-05-16T06:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.638700", + "Timestamp": "2024-05-16T06:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.538700", + "Timestamp": "2024-05-16T06:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162100", + "Timestamp": "2024-05-16T06:01:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158100", + "Timestamp": "2024-05-16T06:01:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T06:01:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.726600", + "Timestamp": "2024-05-16T06:01:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.721600", + "Timestamp": "2024-05-16T06:01:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.596600", + "Timestamp": "2024-05-16T06:01:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.903800", + "Timestamp": "2024-05-16T06:00:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.873800", + "Timestamp": "2024-05-16T06:00:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.773800", + "Timestamp": "2024-05-16T06:00:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123900", + "Timestamp": "2024-05-16T06:00:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119900", + "Timestamp": "2024-05-16T06:00:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063900", + "Timestamp": "2024-05-16T06:00:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.987000", + "Timestamp": "2024-05-16T06:00:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.045700", + "Timestamp": "2024-05-16T06:00:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.439800", + "Timestamp": "2024-05-16T06:00:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.560700", + "Timestamp": "2024-05-16T06:00:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.555700", + "Timestamp": "2024-05-16T06:00:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.430700", + "Timestamp": "2024-05-16T06:00:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.551300", + "Timestamp": "2024-05-16T06:00:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.546300", + "Timestamp": "2024-05-16T06:00:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.421300", + "Timestamp": "2024-05-16T06:00:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.119700", + "Timestamp": "2024-05-16T06:00:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.089700", + "Timestamp": "2024-05-16T06:00:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.989700", + "Timestamp": "2024-05-16T06:00:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.336900", + "Timestamp": "2024-05-16T06:00:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.331900", + "Timestamp": "2024-05-16T06:00:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.206900", + "Timestamp": "2024-05-16T06:00:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.878100", + "Timestamp": "2024-05-16T05:58:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.782400", + "Timestamp": "2024-05-16T05:46:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.777400", + "Timestamp": "2024-05-16T05:46:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.652400", + "Timestamp": "2024-05-16T05:46:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.979500", + "Timestamp": "2024-05-16T05:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.109500", + "Timestamp": "2024-05-16T05:46:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.575700", + "Timestamp": "2024-05-16T05:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.570700", + "Timestamp": "2024-05-16T05:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.445700", + "Timestamp": "2024-05-16T05:46:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.887700", + "Timestamp": "2024-05-16T05:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.882700", + "Timestamp": "2024-05-16T05:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.757700", + "Timestamp": "2024-05-16T05:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.040100", + "Timestamp": "2024-05-16T05:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124100", + "Timestamp": "2024-05-16T05:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120400", + "Timestamp": "2024-05-16T05:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064100", + "Timestamp": "2024-05-16T05:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.290500", + "Timestamp": "2024-05-16T05:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.123600", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.683400", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.678400", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.553400", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T05:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106000", + "Timestamp": "2024-05-16T05:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049700", + "Timestamp": "2024-05-16T05:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134100", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130400", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074100", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.540700", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.535700", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.410700", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.850000", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119300", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115600", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059300", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.970700", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.709800", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.704800", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.579800", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.600300", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.546600", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.570300", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.516600", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.470300", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.416600", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.679400", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.013500", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.008500", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.883500", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.710800", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078000", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.049000", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018000", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.016900", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.011900", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.886900", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.526500", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.521500", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.396500", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.253500", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.248500", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.123500", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.026000", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.021000", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.896000", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149700", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049700", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.078400", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.754800", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.302200", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.297200", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172200", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.965400", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.330200", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.325200", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.200200", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.288300", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.283300", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158300", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.903000", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.898000", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.773000", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122300", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066300", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.937500", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.515800", + "Timestamp": "2024-05-16T05:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.686100", + "Timestamp": "2024-05-16T05:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.681100", + "Timestamp": "2024-05-16T05:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.556100", + "Timestamp": "2024-05-16T05:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.675600", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.561500", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.556500", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.431500", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.427800", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.397800", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.297800", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.970700", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.013700", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.019500", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.014500", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.889500", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.415200", + "Timestamp": "2024-05-16T05:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.385200", + "Timestamp": "2024-05-16T05:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.285200", + "Timestamp": "2024-05-16T05:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.588200", + "Timestamp": "2024-05-16T05:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.583200", + "Timestamp": "2024-05-16T05:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.458200", + "Timestamp": "2024-05-16T05:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.545100", + "Timestamp": "2024-05-16T05:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.540100", + "Timestamp": "2024-05-16T05:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.415100", + "Timestamp": "2024-05-16T05:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.861200", + "Timestamp": "2024-05-16T05:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.251900", + "Timestamp": "2024-05-16T05:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.246900", + "Timestamp": "2024-05-16T05:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.121900", + "Timestamp": "2024-05-16T05:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.307800", + "Timestamp": "2024-05-16T05:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.302800", + "Timestamp": "2024-05-16T05:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.177800", + "Timestamp": "2024-05-16T05:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.532500", + "Timestamp": "2024-05-16T05:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.656200", + "Timestamp": "2024-05-16T05:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.651200", + "Timestamp": "2024-05-16T05:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.526200", + "Timestamp": "2024-05-16T05:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.895200", + "Timestamp": "2024-05-16T05:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.003600", + "Timestamp": "2024-05-16T05:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.258100", + "Timestamp": "2024-05-16T05:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.253100", + "Timestamp": "2024-05-16T05:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.128100", + "Timestamp": "2024-05-16T05:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.406200", + "Timestamp": "2024-05-16T05:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.797500", + "Timestamp": "2024-05-16T05:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.792500", + "Timestamp": "2024-05-16T05:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.667500", + "Timestamp": "2024-05-16T05:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.074600", + "Timestamp": "2024-05-16T05:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.069600", + "Timestamp": "2024-05-16T05:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.944600", + "Timestamp": "2024-05-16T05:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226600", + "Timestamp": "2024-05-16T05:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.578200", + "Timestamp": "2024-05-16T05:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.273100", + "Timestamp": "2024-05-16T05:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.253900", + "Timestamp": "2024-05-16T05:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.048900", + "Timestamp": "2024-05-16T05:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134800", + "Timestamp": "2024-05-16T05:46:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131100", + "Timestamp": "2024-05-16T05:46:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074800", + "Timestamp": "2024-05-16T05:46:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.690100", + "Timestamp": "2024-05-16T05:46:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.685100", + "Timestamp": "2024-05-16T05:46:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.560100", + "Timestamp": "2024-05-16T05:46:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086500", + "Timestamp": "2024-05-16T05:46:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126500", + "Timestamp": "2024-05-16T05:46:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026500", + "Timestamp": "2024-05-16T05:46:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.290000", + "Timestamp": "2024-05-16T05:46:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.285000", + "Timestamp": "2024-05-16T05:46:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.160000", + "Timestamp": "2024-05-16T05:46:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.479700", + "Timestamp": "2024-05-16T05:46:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.474700", + "Timestamp": "2024-05-16T05:46:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.349700", + "Timestamp": "2024-05-16T05:46:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.466100", + "Timestamp": "2024-05-16T05:46:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.962400", + "Timestamp": "2024-05-16T05:46:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.954600", + "Timestamp": "2024-05-16T05:46:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.973900", + "Timestamp": "2024-05-16T05:46:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.649700", + "Timestamp": "2024-05-16T05:46:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "12.028400", + "Timestamp": "2024-05-16T05:46:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.506900", + "Timestamp": "2024-05-16T05:45:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.501900", + "Timestamp": "2024-05-16T05:45:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.376900", + "Timestamp": "2024-05-16T05:45:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.620800", + "Timestamp": "2024-05-16T05:45:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.109800", + "Timestamp": "2024-05-16T05:45:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.310700", + "Timestamp": "2024-05-16T05:45:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.305700", + "Timestamp": "2024-05-16T05:45:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180700", + "Timestamp": "2024-05-16T05:45:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.964200", + "Timestamp": "2024-05-16T05:45:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-16T05:45:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T05:45:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054500", + "Timestamp": "2024-05-16T05:45:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.430700", + "Timestamp": "2024-05-16T05:45:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.425700", + "Timestamp": "2024-05-16T05:45:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.300700", + "Timestamp": "2024-05-16T05:45:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114700", + "Timestamp": "2024-05-16T05:43:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113200", + "Timestamp": "2024-05-16T05:43:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.887300", + "Timestamp": "2024-05-16T05:31:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.680800", + "Timestamp": "2024-05-16T05:31:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.675800", + "Timestamp": "2024-05-16T05:31:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.550800", + "Timestamp": "2024-05-16T05:31:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.965200", + "Timestamp": "2024-05-16T05:31:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.262600", + "Timestamp": "2024-05-16T05:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.807800", + "Timestamp": "2024-05-16T05:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.027400", + "Timestamp": "2024-05-16T05:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.907500", + "Timestamp": "2024-05-16T05:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.796600", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.791600", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.666600", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.454000", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.739700", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.734700", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.609700", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.610100", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.605100", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.480100", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261400", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301400", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.201400", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.187800", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183800", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127800", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.828100", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.823100", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.698100", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170800", + "Timestamp": "2024-05-16T05:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166800", + "Timestamp": "2024-05-16T05:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T05:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.768100", + "Timestamp": "2024-05-16T05:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.736400", + "Timestamp": "2024-05-16T05:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.552300", + "Timestamp": "2024-05-16T05:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.228100", + "Timestamp": "2024-05-16T05:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.666900", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.472300", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.636900", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.442300", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.536900", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.342300", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306500", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276500", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176500", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122900", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119200", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062900", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099300", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043000", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.846700", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.816700", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.716700", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.122700", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.561800", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.556800", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.431800", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.907300", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.322500", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.902300", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.317500", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.777300", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.192500", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.803500", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.798500", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.673500", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.958100", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.953100", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.828100", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306100", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301100", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176100", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.686100", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "f1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.681100", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.556100", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118200", + "Timestamp": "2024-05-16T05:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.328000", + "Timestamp": "2024-05-16T05:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323000", + "Timestamp": "2024-05-16T05:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.198000", + "Timestamp": "2024-05-16T05:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.761400", + "Timestamp": "2024-05-16T05:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.756400", + "Timestamp": "2024-05-16T05:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.631400", + "Timestamp": "2024-05-16T05:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.130700", + "Timestamp": "2024-05-16T05:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.157300", + "Timestamp": "2024-05-16T05:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.152300", + "Timestamp": "2024-05-16T05:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.027300", + "Timestamp": "2024-05-16T05:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.051800", + "Timestamp": "2024-05-16T05:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.757400", + "Timestamp": "2024-05-16T05:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231300", + "Timestamp": "2024-05-16T05:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233500", + "Timestamp": "2024-05-16T05:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168600", + "Timestamp": "2024-05-16T05:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164900", + "Timestamp": "2024-05-16T05:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-16T05:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.453900", + "Timestamp": "2024-05-16T05:31:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.914300", + "Timestamp": "2024-05-16T05:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432600", + "Timestamp": "2024-05-16T05:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354500", + "Timestamp": "2024-05-16T05:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324500", + "Timestamp": "2024-05-16T05:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224500", + "Timestamp": "2024-05-16T05:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.630400", + "Timestamp": "2024-05-16T05:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107900", + "Timestamp": "2024-05-16T05:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T05:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047900", + "Timestamp": "2024-05-16T05:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T05:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.865700", + "Timestamp": "2024-05-16T05:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.860700", + "Timestamp": "2024-05-16T05:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.735700", + "Timestamp": "2024-05-16T05:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.676900", + "Timestamp": "2024-05-16T05:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.237000", + "Timestamp": "2024-05-16T05:31:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.235600", + "Timestamp": "2024-05-16T05:31:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.205600", + "Timestamp": "2024-05-16T05:31:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T05:31:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.072900", + "Timestamp": "2024-05-16T05:31:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070500", + "Timestamp": "2024-05-16T05:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041500", + "Timestamp": "2024-05-16T05:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010500", + "Timestamp": "2024-05-16T05:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.730800", + "Timestamp": "2024-05-16T05:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.725800", + "Timestamp": "2024-05-16T05:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.600800", + "Timestamp": "2024-05-16T05:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "13.503900", + "Timestamp": "2024-05-16T05:31:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.917100", + "Timestamp": "2024-05-16T05:31:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.101400", + "Timestamp": "2024-05-16T05:31:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123900", + "Timestamp": "2024-05-16T05:30:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120200", + "Timestamp": "2024-05-16T05:30:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063900", + "Timestamp": "2024-05-16T05:30:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.047200", + "Timestamp": "2024-05-16T05:30:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166200", + "Timestamp": "2024-05-16T05:30:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162200", + "Timestamp": "2024-05-16T05:30:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106200", + "Timestamp": "2024-05-16T05:30:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.251400", + "Timestamp": "2024-05-16T05:30:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.246400", + "Timestamp": "2024-05-16T05:30:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.121400", + "Timestamp": "2024-05-16T05:30:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.482500", + "Timestamp": "2024-05-16T05:30:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.477500", + "Timestamp": "2024-05-16T05:30:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.352500", + "Timestamp": "2024-05-16T05:30:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.495500", + "Timestamp": "2024-05-16T05:30:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.469500", + "Timestamp": "2024-05-16T05:30:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.490500", + "Timestamp": "2024-05-16T05:30:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.464500", + "Timestamp": "2024-05-16T05:30:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.365500", + "Timestamp": "2024-05-16T05:30:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.339500", + "Timestamp": "2024-05-16T05:30:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.096700", + "Timestamp": "2024-05-16T05:30:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.091700", + "Timestamp": "2024-05-16T05:30:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.966700", + "Timestamp": "2024-05-16T05:30:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.822100", + "Timestamp": "2024-05-16T05:28:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089400", + "Timestamp": "2024-05-16T05:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085700", + "Timestamp": "2024-05-16T05:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029400", + "Timestamp": "2024-05-16T05:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.694600", + "Timestamp": "2024-05-16T05:16:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.568400", + "Timestamp": "2024-05-16T05:16:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.178900", + "Timestamp": "2024-05-16T05:16:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.634500", + "Timestamp": "2024-05-16T05:16:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.629500", + "Timestamp": "2024-05-16T05:16:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.504500", + "Timestamp": "2024-05-16T05:16:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.864400", + "Timestamp": "2024-05-16T05:16:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.546700", + "Timestamp": "2024-05-16T05:16:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.453900", + "Timestamp": "2024-05-16T05:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.566600", + "Timestamp": "2024-05-16T05:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.379900", + "Timestamp": "2024-05-16T05:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.384200", + "Timestamp": "2024-05-16T05:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.272500", + "Timestamp": "2024-05-16T05:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.242500", + "Timestamp": "2024-05-16T05:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.142500", + "Timestamp": "2024-05-16T05:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.232000", + "Timestamp": "2024-05-16T05:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.227000", + "Timestamp": "2024-05-16T05:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.102000", + "Timestamp": "2024-05-16T05:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.965400", + "Timestamp": "2024-05-16T05:16:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.195900", + "Timestamp": "2024-05-16T05:16:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.165900", + "Timestamp": "2024-05-16T05:16:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.065900", + "Timestamp": "2024-05-16T05:16:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.951200", + "Timestamp": "2024-05-16T05:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.771000", + "Timestamp": "2024-05-16T05:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.766000", + "Timestamp": "2024-05-16T05:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.641000", + "Timestamp": "2024-05-16T05:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.057800", + "Timestamp": "2024-05-16T05:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.052800", + "Timestamp": "2024-05-16T05:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.927800", + "Timestamp": "2024-05-16T05:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165400", + "Timestamp": "2024-05-16T05:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161400", + "Timestamp": "2024-05-16T05:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T05:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.595600", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.590600", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.465600", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.358200", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.353200", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.228200", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.861400", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.856400", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.731400", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.608000", + "Timestamp": "2024-05-16T05:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073600", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044600", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013600", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.728800", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.723800", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.598800", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115300", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111300", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055300", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.488400", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.483400", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.358400", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.076100", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.256700", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.251700", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126700", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.639100", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.634100", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.509100", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.154600", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.149600", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.024600", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.442000", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.437000", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.312000", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.462600", + "Timestamp": "2024-05-16T05:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.583100", + "Timestamp": "2024-05-16T05:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.578100", + "Timestamp": "2024-05-16T05:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.453100", + "Timestamp": "2024-05-16T05:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.550200", + "Timestamp": "2024-05-16T05:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.545200", + "Timestamp": "2024-05-16T05:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.420200", + "Timestamp": "2024-05-16T05:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140000", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137300", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136300", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133600", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080000", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077300", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.727800", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.722800", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.597800", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.812800", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.807800", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.682800", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.731200", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.908700", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T05:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.718600", + "Timestamp": "2024-05-16T05:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140600", + "Timestamp": "2024-05-16T05:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180600", + "Timestamp": "2024-05-16T05:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080600", + "Timestamp": "2024-05-16T05:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.752100", + "Timestamp": "2024-05-16T05:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.722100", + "Timestamp": "2024-05-16T05:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.622100", + "Timestamp": "2024-05-16T05:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.810700", + "Timestamp": "2024-05-16T05:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.805700", + "Timestamp": "2024-05-16T05:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.680700", + "Timestamp": "2024-05-16T05:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-16T05:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104300", + "Timestamp": "2024-05-16T05:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048000", + "Timestamp": "2024-05-16T05:16:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.472300", + "Timestamp": "2024-05-16T05:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.442300", + "Timestamp": "2024-05-16T05:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.342300", + "Timestamp": "2024-05-16T05:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.506200", + "Timestamp": "2024-05-16T05:16:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.276600", + "Timestamp": "2024-05-16T05:16:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.271600", + "Timestamp": "2024-05-16T05:16:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.146600", + "Timestamp": "2024-05-16T05:16:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.404000", + "Timestamp": "2024-05-16T05:16:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.481800", + "Timestamp": "2024-05-16T05:16:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.491500", + "Timestamp": "2024-05-16T05:16:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.476800", + "Timestamp": "2024-05-16T05:16:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.486500", + "Timestamp": "2024-05-16T05:16:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.351800", + "Timestamp": "2024-05-16T05:16:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.361500", + "Timestamp": "2024-05-16T05:16:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.492400", + "Timestamp": "2024-05-16T05:16:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.462400", + "Timestamp": "2024-05-16T05:16:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.362400", + "Timestamp": "2024-05-16T05:16:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.348700", + "Timestamp": "2024-05-16T05:16:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.343700", + "Timestamp": "2024-05-16T05:16:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.218700", + "Timestamp": "2024-05-16T05:16:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.997700", + "Timestamp": "2024-05-16T05:16:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.992700", + "Timestamp": "2024-05-16T05:16:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.867700", + "Timestamp": "2024-05-16T05:16:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.345200", + "Timestamp": "2024-05-16T05:16:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.315200", + "Timestamp": "2024-05-16T05:16:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.215200", + "Timestamp": "2024-05-16T05:16:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.286600", + "Timestamp": "2024-05-16T05:16:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114000", + "Timestamp": "2024-05-16T05:15:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T05:15:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054000", + "Timestamp": "2024-05-16T05:15:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071000", + "Timestamp": "2024-05-16T05:15:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042000", + "Timestamp": "2024-05-16T05:15:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011000", + "Timestamp": "2024-05-16T05:15:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.600900", + "Timestamp": "2024-05-16T05:01:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.187000", + "Timestamp": "2024-05-16T05:01:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183300", + "Timestamp": "2024-05-16T05:01:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127000", + "Timestamp": "2024-05-16T05:01:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.777500", + "Timestamp": "2024-05-16T05:01:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.772500", + "Timestamp": "2024-05-16T05:01:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.647500", + "Timestamp": "2024-05-16T05:01:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115400", + "Timestamp": "2024-05-16T05:01:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111700", + "Timestamp": "2024-05-16T05:01:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055400", + "Timestamp": "2024-05-16T05:01:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.823400", + "Timestamp": "2024-05-16T05:01:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.818400", + "Timestamp": "2024-05-16T05:01:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.693400", + "Timestamp": "2024-05-16T05:01:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.189100", + "Timestamp": "2024-05-16T05:01:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.047200", + "Timestamp": "2024-05-16T05:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.713500", + "Timestamp": "2024-05-16T05:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.017200", + "Timestamp": "2024-05-16T05:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.683500", + "Timestamp": "2024-05-16T05:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.917200", + "Timestamp": "2024-05-16T05:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.583500", + "Timestamp": "2024-05-16T05:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.913400", + "Timestamp": "2024-05-16T05:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.908400", + "Timestamp": "2024-05-16T05:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.783400", + "Timestamp": "2024-05-16T05:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.726000", + "Timestamp": "2024-05-16T05:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.696000", + "Timestamp": "2024-05-16T05:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.596000", + "Timestamp": "2024-05-16T05:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.928300", + "Timestamp": "2024-05-16T05:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.983100", + "Timestamp": "2024-05-16T05:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.978100", + "Timestamp": "2024-05-16T05:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.853100", + "Timestamp": "2024-05-16T05:01:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.462900", + "Timestamp": "2024-05-16T05:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.162000", + "Timestamp": "2024-05-16T05:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.157000", + "Timestamp": "2024-05-16T05:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.032000", + "Timestamp": "2024-05-16T05:01:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.813500", + "Timestamp": "2024-05-16T05:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.783500", + "Timestamp": "2024-05-16T05:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.683500", + "Timestamp": "2024-05-16T05:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.203000", + "Timestamp": "2024-05-16T05:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.763600", + "Timestamp": "2024-05-16T05:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.758600", + "Timestamp": "2024-05-16T05:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.633600", + "Timestamp": "2024-05-16T05:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.509700", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.587500", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.582500", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.457500", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044000", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.993600", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.888600", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.858600", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.758600", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.935900", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.930900", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.805900", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.261500", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.008800", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.227200", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.222200", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.097200", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150900", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190900", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090900", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.443900", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.438900", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.313900", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.344000", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.339000", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.214000", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114800", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054800", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.430800", + "Timestamp": "2024-05-16T05:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.891500", + "Timestamp": "2024-05-16T05:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.861500", + "Timestamp": "2024-05-16T05:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.761500", + "Timestamp": "2024-05-16T05:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.780700", + "Timestamp": "2024-05-16T05:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.775700", + "Timestamp": "2024-05-16T05:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.650700", + "Timestamp": "2024-05-16T05:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161200", + "Timestamp": "2024-05-16T05:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157500", + "Timestamp": "2024-05-16T05:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T05:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.094200", + "Timestamp": "2024-05-16T05:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.011800", + "Timestamp": "2024-05-16T05:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.006800", + "Timestamp": "2024-05-16T05:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.881800", + "Timestamp": "2024-05-16T05:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.261400", + "Timestamp": "2024-05-16T05:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.458200", + "Timestamp": "2024-05-16T05:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.453200", + "Timestamp": "2024-05-16T05:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.328200", + "Timestamp": "2024-05-16T05:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.932600", + "Timestamp": "2024-05-16T05:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.927600", + "Timestamp": "2024-05-16T05:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.802600", + "Timestamp": "2024-05-16T05:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.646400", + "Timestamp": "2024-05-16T05:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.616400", + "Timestamp": "2024-05-16T05:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.516400", + "Timestamp": "2024-05-16T05:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.112700", + "Timestamp": "2024-05-16T05:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.107700", + "Timestamp": "2024-05-16T05:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.982700", + "Timestamp": "2024-05-16T05:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157200", + "Timestamp": "2024-05-16T05:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153200", + "Timestamp": "2024-05-16T05:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-16T05:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.793400", + "Timestamp": "2024-05-16T05:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.130600", + "Timestamp": "2024-05-16T05:01:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.307400", + "Timestamp": "2024-05-16T05:01:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.302400", + "Timestamp": "2024-05-16T05:01:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.177400", + "Timestamp": "2024-05-16T05:01:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.212200", + "Timestamp": "2024-05-16T05:01:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.208200", + "Timestamp": "2024-05-16T05:01:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.152200", + "Timestamp": "2024-05-16T05:01:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.819800", + "Timestamp": "2024-05-16T05:01:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.814800", + "Timestamp": "2024-05-16T05:01:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.689800", + "Timestamp": "2024-05-16T05:01:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.742100", + "Timestamp": "2024-05-16T05:01:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.737100", + "Timestamp": "2024-05-16T05:01:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.612100", + "Timestamp": "2024-05-16T05:01:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.420800", + "Timestamp": "2024-05-16T05:01:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.415800", + "Timestamp": "2024-05-16T05:01:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.290800", + "Timestamp": "2024-05-16T05:01:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.296400", + "Timestamp": "2024-05-16T05:01:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.291400", + "Timestamp": "2024-05-16T05:01:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.166400", + "Timestamp": "2024-05-16T05:01:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.117400", + "Timestamp": "2024-05-16T05:01:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.917800", + "Timestamp": "2024-05-16T05:01:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.488700", + "Timestamp": "2024-05-16T05:01:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.483700", + "Timestamp": "2024-05-16T05:01:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.358700", + "Timestamp": "2024-05-16T05:01:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.729500", + "Timestamp": "2024-05-16T05:01:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.724500", + "Timestamp": "2024-05-16T05:01:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.599500", + "Timestamp": "2024-05-16T05:01:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.472000", + "Timestamp": "2024-05-16T05:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.467000", + "Timestamp": "2024-05-16T05:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.342000", + "Timestamp": "2024-05-16T05:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119500", + "Timestamp": "2024-05-16T05:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115500", + "Timestamp": "2024-05-16T05:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059500", + "Timestamp": "2024-05-16T05:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.846000", + "Timestamp": "2024-05-16T05:00:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.841000", + "Timestamp": "2024-05-16T05:00:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.716000", + "Timestamp": "2024-05-16T05:00:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.704300", + "Timestamp": "2024-05-16T05:00:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.699300", + "Timestamp": "2024-05-16T05:00:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.574300", + "Timestamp": "2024-05-16T05:00:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111200", + "Timestamp": "2024-05-16T05:00:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-16T05:00:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051200", + "Timestamp": "2024-05-16T05:00:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.626100", + "Timestamp": "2024-05-16T05:00:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.621100", + "Timestamp": "2024-05-16T05:00:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.496100", + "Timestamp": "2024-05-16T05:00:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.518600", + "Timestamp": "2024-05-16T05:00:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.513600", + "Timestamp": "2024-05-16T05:00:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.388600", + "Timestamp": "2024-05-16T05:00:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.680000", + "Timestamp": "2024-05-16T05:00:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.675000", + "Timestamp": "2024-05-16T05:00:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.550000", + "Timestamp": "2024-05-16T05:00:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.447700", + "Timestamp": "2024-05-16T05:00:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.442700", + "Timestamp": "2024-05-16T05:00:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.317700", + "Timestamp": "2024-05-16T05:00:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.067200", + "Timestamp": "2024-05-16T05:00:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.062200", + "Timestamp": "2024-05-16T05:00:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.937200", + "Timestamp": "2024-05-16T05:00:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.962500", + "Timestamp": "2024-05-16T05:00:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.439200", + "Timestamp": "2024-05-16T04:56:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.689700", + "Timestamp": "2024-05-16T04:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.684700", + "Timestamp": "2024-05-16T04:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.559700", + "Timestamp": "2024-05-16T04:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.150800", + "Timestamp": "2024-05-16T04:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.197700", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.007400", + "Timestamp": "2024-05-16T04:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.002400", + "Timestamp": "2024-05-16T04:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.877400", + "Timestamp": "2024-05-16T04:46:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124800", + "Timestamp": "2024-05-16T04:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.341300", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.336300", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.211300", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.543200", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044900", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.032300", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.027300", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.902300", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.057900", + "Timestamp": "2024-05-16T04:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.069900", + "Timestamp": "2024-05-16T04:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.064900", + "Timestamp": "2024-05-16T04:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.939900", + "Timestamp": "2024-05-16T04:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.766100", + "Timestamp": "2024-05-16T04:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.517200", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235400", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.199400", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.194400", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.069400", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.584800", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.579800", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.454800", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.580100", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.550100", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.450100", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.630100", + "Timestamp": "2024-05-16T04:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229600", + "Timestamp": "2024-05-16T04:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.364400", + "Timestamp": "2024-05-16T04:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.659600", + "Timestamp": "2024-05-16T04:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.654600", + "Timestamp": "2024-05-16T04:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.529600", + "Timestamp": "2024-05-16T04:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T04:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-16T04:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044600", + "Timestamp": "2024-05-16T04:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.614100", + "Timestamp": "2024-05-16T04:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.707900", + "Timestamp": "2024-05-16T04:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.373500", + "Timestamp": "2024-05-16T04:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.368500", + "Timestamp": "2024-05-16T04:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.243500", + "Timestamp": "2024-05-16T04:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071400", + "Timestamp": "2024-05-16T04:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041400", + "Timestamp": "2024-05-16T04:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011400", + "Timestamp": "2024-05-16T04:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112700", + "Timestamp": "2024-05-16T04:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109000", + "Timestamp": "2024-05-16T04:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052700", + "Timestamp": "2024-05-16T04:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.684900", + "Timestamp": "2024-05-16T04:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.234900", + "Timestamp": "2024-05-16T04:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.229900", + "Timestamp": "2024-05-16T04:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.104900", + "Timestamp": "2024-05-16T04:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.578600", + "Timestamp": "2024-05-16T04:46:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.573600", + "Timestamp": "2024-05-16T04:46:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.448600", + "Timestamp": "2024-05-16T04:46:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.439100", + "Timestamp": "2024-05-16T04:46:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.434100", + "Timestamp": "2024-05-16T04:46:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.309100", + "Timestamp": "2024-05-16T04:46:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.561700", + "Timestamp": "2024-05-16T04:46:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.618400", + "Timestamp": "2024-05-16T04:46:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.556700", + "Timestamp": "2024-05-16T04:46:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.613400", + "Timestamp": "2024-05-16T04:46:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.431700", + "Timestamp": "2024-05-16T04:46:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.488400", + "Timestamp": "2024-05-16T04:46:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.811000", + "Timestamp": "2024-05-16T04:46:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.407000", + "Timestamp": "2024-05-16T04:46:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231300", + "Timestamp": "2024-05-16T04:46:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.820000", + "Timestamp": "2024-05-16T04:46:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162200", + "Timestamp": "2024-05-16T04:46:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158500", + "Timestamp": "2024-05-16T04:46:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102200", + "Timestamp": "2024-05-16T04:46:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.350700", + "Timestamp": "2024-05-16T04:46:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.320700", + "Timestamp": "2024-05-16T04:46:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.220700", + "Timestamp": "2024-05-16T04:46:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.255700", + "Timestamp": "2024-05-16T04:46:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.250700", + "Timestamp": "2024-05-16T04:46:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.125700", + "Timestamp": "2024-05-16T04:46:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168300", + "Timestamp": "2024-05-16T04:45:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164300", + "Timestamp": "2024-05-16T04:45:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108300", + "Timestamp": "2024-05-16T04:45:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123600", + "Timestamp": "2024-05-16T04:45:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119900", + "Timestamp": "2024-05-16T04:45:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063600", + "Timestamp": "2024-05-16T04:45:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.293500", + "Timestamp": "2024-05-16T04:45:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.288500", + "Timestamp": "2024-05-16T04:45:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.163500", + "Timestamp": "2024-05-16T04:45:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113700", + "Timestamp": "2024-05-16T04:43:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.959700", + "Timestamp": "2024-05-16T04:31:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.158500", + "Timestamp": "2024-05-16T04:31:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.153500", + "Timestamp": "2024-05-16T04:31:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.028500", + "Timestamp": "2024-05-16T04:31:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.247900", + "Timestamp": "2024-05-16T04:31:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.800900", + "Timestamp": "2024-05-16T04:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.913900", + "Timestamp": "2024-05-16T04:31:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.120300", + "Timestamp": "2024-05-16T04:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.115300", + "Timestamp": "2024-05-16T04:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.990300", + "Timestamp": "2024-05-16T04:31:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.903500", + "Timestamp": "2024-05-16T04:31:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.634700", + "Timestamp": "2024-05-16T04:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.363900", + "Timestamp": "2024-05-16T04:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.360200", + "Timestamp": "2024-05-16T04:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.303900", + "Timestamp": "2024-05-16T04:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.085400", + "Timestamp": "2024-05-16T04:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109000", + "Timestamp": "2024-05-16T04:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149000", + "Timestamp": "2024-05-16T04:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049000", + "Timestamp": "2024-05-16T04:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.274900", + "Timestamp": "2024-05-16T04:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.269900", + "Timestamp": "2024-05-16T04:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.144900", + "Timestamp": "2024-05-16T04:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094200", + "Timestamp": "2024-05-16T04:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090500", + "Timestamp": "2024-05-16T04:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034200", + "Timestamp": "2024-05-16T04:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095500", + "Timestamp": "2024-05-16T04:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T04:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035500", + "Timestamp": "2024-05-16T04:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.054100", + "Timestamp": "2024-05-16T04:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.641900", + "Timestamp": "2024-05-16T04:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.342500", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.337500", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212500", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.879900", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147300", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047300", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.566500", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.561500", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.436500", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145900", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185900", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085900", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.116600", + "Timestamp": "2024-05-16T04:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.111600", + "Timestamp": "2024-05-16T04:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.986600", + "Timestamp": "2024-05-16T04:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.351900", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.346900", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.221900", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.226800", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.410900", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.405900", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.280900", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.103600", + "Timestamp": "2024-05-16T04:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.098600", + "Timestamp": "2024-05-16T04:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.973600", + "Timestamp": "2024-05-16T04:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.877300", + "Timestamp": "2024-05-16T04:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.835600", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.830600", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.705600", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.203100", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.085900", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.080900", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.955900", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200600", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.240600", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140600", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.170800", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.165800", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.040800", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.702500", + "Timestamp": "2024-05-16T04:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.825600", + "Timestamp": "2024-05-16T04:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.795600", + "Timestamp": "2024-05-16T04:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.695600", + "Timestamp": "2024-05-16T04:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.489300", + "Timestamp": "2024-05-16T04:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077500", + "Timestamp": "2024-05-16T04:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.048500", + "Timestamp": "2024-05-16T04:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017500", + "Timestamp": "2024-05-16T04:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.810300", + "Timestamp": "2024-05-16T04:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.696900", + "Timestamp": "2024-05-16T04:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.805300", + "Timestamp": "2024-05-16T04:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.691900", + "Timestamp": "2024-05-16T04:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.680300", + "Timestamp": "2024-05-16T04:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.566900", + "Timestamp": "2024-05-16T04:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.822100", + "Timestamp": "2024-05-16T04:31:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.357700", + "Timestamp": "2024-05-16T04:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.352700", + "Timestamp": "2024-05-16T04:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.227700", + "Timestamp": "2024-05-16T04:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.572700", + "Timestamp": "2024-05-16T04:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.567700", + "Timestamp": "2024-05-16T04:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.442700", + "Timestamp": "2024-05-16T04:31:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.436500", + "Timestamp": "2024-05-16T04:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.431500", + "Timestamp": "2024-05-16T04:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.306500", + "Timestamp": "2024-05-16T04:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.701200", + "Timestamp": "2024-05-16T04:31:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.696200", + "Timestamp": "2024-05-16T04:31:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.571200", + "Timestamp": "2024-05-16T04:31:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.038800", + "Timestamp": "2024-05-16T04:31:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.033800", + "Timestamp": "2024-05-16T04:31:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.908800", + "Timestamp": "2024-05-16T04:31:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.732900", + "Timestamp": "2024-05-16T04:31:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.727900", + "Timestamp": "2024-05-16T04:31:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.602900", + "Timestamp": "2024-05-16T04:31:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.192700", + "Timestamp": "2024-05-16T04:31:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.179300", + "Timestamp": "2024-05-16T04:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.932300", + "Timestamp": "2024-05-16T04:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.218900", + "Timestamp": "2024-05-16T04:31:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209800", + "Timestamp": "2024-05-16T04:31:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.653700", + "Timestamp": "2024-05-16T04:31:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.722000", + "Timestamp": "2024-05-16T04:30:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218300", + "Timestamp": "2024-05-16T04:30:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.719100", + "Timestamp": "2024-05-16T04:30:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.359000", + "Timestamp": "2024-05-16T04:30:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.354000", + "Timestamp": "2024-05-16T04:30:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.229000", + "Timestamp": "2024-05-16T04:30:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111200", + "Timestamp": "2024-05-16T04:17:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.287800", + "Timestamp": "2024-05-16T04:16:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.257800", + "Timestamp": "2024-05-16T04:16:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.157800", + "Timestamp": "2024-05-16T04:16:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.758200", + "Timestamp": "2024-05-16T04:16:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.753200", + "Timestamp": "2024-05-16T04:16:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.628200", + "Timestamp": "2024-05-16T04:16:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.128300", + "Timestamp": "2024-05-16T04:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.123300", + "Timestamp": "2024-05-16T04:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.998300", + "Timestamp": "2024-05-16T04:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.282800", + "Timestamp": "2024-05-16T04:16:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.867900", + "Timestamp": "2024-05-16T04:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.671500", + "Timestamp": "2024-05-16T04:16:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.666500", + "Timestamp": "2024-05-16T04:16:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.541500", + "Timestamp": "2024-05-16T04:16:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.595300", + "Timestamp": "2024-05-16T04:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.019900", + "Timestamp": "2024-05-16T04:16:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.562300", + "Timestamp": "2024-05-16T04:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.557300", + "Timestamp": "2024-05-16T04:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.432300", + "Timestamp": "2024-05-16T04:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.554800", + "Timestamp": "2024-05-16T04:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.549800", + "Timestamp": "2024-05-16T04:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.424800", + "Timestamp": "2024-05-16T04:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.233800", + "Timestamp": "2024-05-16T04:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.228800", + "Timestamp": "2024-05-16T04:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.103800", + "Timestamp": "2024-05-16T04:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.737100", + "Timestamp": "2024-05-16T04:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.657800", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.652800", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.527800", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.458600", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.453600", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.328600", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.941800", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.911800", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.811800", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.192000", + "Timestamp": "2024-05-16T04:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.219400", + "Timestamp": "2024-05-16T04:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.949500", + "Timestamp": "2024-05-16T04:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.919500", + "Timestamp": "2024-05-16T04:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.819500", + "Timestamp": "2024-05-16T04:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071400", + "Timestamp": "2024-05-16T04:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041400", + "Timestamp": "2024-05-16T04:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011400", + "Timestamp": "2024-05-16T04:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.084600", + "Timestamp": "2024-05-16T04:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.218700", + "Timestamp": "2024-05-16T04:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.214700", + "Timestamp": "2024-05-16T04:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158700", + "Timestamp": "2024-05-16T04:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161600", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157900", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101600", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054600", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.952300", + "Timestamp": "2024-05-16T04:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.542200", + "Timestamp": "2024-05-16T04:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.537200", + "Timestamp": "2024-05-16T04:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.412200", + "Timestamp": "2024-05-16T04:16:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.701700", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.696700", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.571700", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.029100", + "Timestamp": "2024-05-16T04:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.024100", + "Timestamp": "2024-05-16T04:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.899100", + "Timestamp": "2024-05-16T04:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.059100", + "Timestamp": "2024-05-16T04:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.668800", + "Timestamp": "2024-05-16T04:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.896600", + "Timestamp": "2024-05-16T04:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.891600", + "Timestamp": "2024-05-16T04:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.766600", + "Timestamp": "2024-05-16T04:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.903400", + "Timestamp": "2024-05-16T04:16:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.442800", + "Timestamp": "2024-05-16T04:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235800", + "Timestamp": "2024-05-16T04:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.746200", + "Timestamp": "2024-05-16T04:16:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.904200", + "Timestamp": "2024-05-16T04:16:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.040600", + "Timestamp": "2024-05-16T04:16:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.010600", + "Timestamp": "2024-05-16T04:16:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.910600", + "Timestamp": "2024-05-16T04:16:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103200", + "Timestamp": "2024-05-16T04:16:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099500", + "Timestamp": "2024-05-16T04:16:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043200", + "Timestamp": "2024-05-16T04:16:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.925700", + "Timestamp": "2024-05-16T04:16:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297200", + "Timestamp": "2024-05-16T04:16:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.292200", + "Timestamp": "2024-05-16T04:16:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167200", + "Timestamp": "2024-05-16T04:16:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.106400", + "Timestamp": "2024-05-16T04:16:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.076400", + "Timestamp": "2024-05-16T04:16:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.976400", + "Timestamp": "2024-05-16T04:16:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.682500", + "Timestamp": "2024-05-16T04:15:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.677500", + "Timestamp": "2024-05-16T04:15:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.552500", + "Timestamp": "2024-05-16T04:15:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.441400", + "Timestamp": "2024-05-16T04:15:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.436400", + "Timestamp": "2024-05-16T04:15:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.311400", + "Timestamp": "2024-05-16T04:15:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330200", + "Timestamp": "2024-05-16T04:15:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325200", + "Timestamp": "2024-05-16T04:15:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200200", + "Timestamp": "2024-05-16T04:15:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.087700", + "Timestamp": "2024-05-16T04:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.082700", + "Timestamp": "2024-05-16T04:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.957700", + "Timestamp": "2024-05-16T04:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.374000", + "Timestamp": "2024-05-16T04:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.872400", + "Timestamp": "2024-05-16T04:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.842400", + "Timestamp": "2024-05-16T04:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.742400", + "Timestamp": "2024-05-16T04:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.473600", + "Timestamp": "2024-05-16T04:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.495400", + "Timestamp": "2024-05-16T04:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.342200", + "Timestamp": "2024-05-16T04:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.337200", + "Timestamp": "2024-05-16T04:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212200", + "Timestamp": "2024-05-16T04:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.466700", + "Timestamp": "2024-05-16T04:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.461700", + "Timestamp": "2024-05-16T04:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.336700", + "Timestamp": "2024-05-16T04:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.487800", + "Timestamp": "2024-05-16T04:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.110400", + "Timestamp": "2024-05-16T04:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.105400", + "Timestamp": "2024-05-16T04:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.980400", + "Timestamp": "2024-05-16T04:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.288500", + "Timestamp": "2024-05-16T04:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.283500", + "Timestamp": "2024-05-16T04:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.158500", + "Timestamp": "2024-05-16T04:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-16T04:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T04:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046100", + "Timestamp": "2024-05-16T04:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.677400", + "Timestamp": "2024-05-16T04:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.672400", + "Timestamp": "2024-05-16T04:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.547400", + "Timestamp": "2024-05-16T04:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.552900", + "Timestamp": "2024-05-16T04:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423600", + "Timestamp": "2024-05-16T04:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.046900", + "Timestamp": "2024-05-16T04:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.041900", + "Timestamp": "2024-05-16T04:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.916900", + "Timestamp": "2024-05-16T04:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.572300", + "Timestamp": "2024-05-16T04:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.567300", + "Timestamp": "2024-05-16T04:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.442300", + "Timestamp": "2024-05-16T04:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.040400", + "Timestamp": "2024-05-16T04:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.035400", + "Timestamp": "2024-05-16T04:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.910400", + "Timestamp": "2024-05-16T04:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.399500", + "Timestamp": "2024-05-16T04:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.369500", + "Timestamp": "2024-05-16T04:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.269500", + "Timestamp": "2024-05-16T04:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.929500", + "Timestamp": "2024-05-16T04:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.788000", + "Timestamp": "2024-05-16T04:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.783000", + "Timestamp": "2024-05-16T04:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.658000", + "Timestamp": "2024-05-16T04:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.956900", + "Timestamp": "2024-05-16T04:01:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.096900", + "Timestamp": "2024-05-16T04:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.237100", + "Timestamp": "2024-05-16T04:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.886100", + "Timestamp": "2024-05-16T04:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111700", + "Timestamp": "2024-05-16T04:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.579900", + "Timestamp": "2024-05-16T04:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.574900", + "Timestamp": "2024-05-16T04:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.449900", + "Timestamp": "2024-05-16T04:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.360400", + "Timestamp": "2024-05-16T04:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.569700", + "Timestamp": "2024-05-16T04:01:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.609700", + "Timestamp": "2024-05-16T04:01:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.509700", + "Timestamp": "2024-05-16T04:01:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.455800", + "Timestamp": "2024-05-16T04:01:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.320400", + "Timestamp": "2024-05-16T04:01:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.290400", + "Timestamp": "2024-05-16T04:01:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190400", + "Timestamp": "2024-05-16T04:01:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155600", + "Timestamp": "2024-05-16T04:01:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151600", + "Timestamp": "2024-05-16T04:01:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095600", + "Timestamp": "2024-05-16T04:01:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.823400", + "Timestamp": "2024-05-16T04:01:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.793400", + "Timestamp": "2024-05-16T04:01:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.693400", + "Timestamp": "2024-05-16T04:01:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158100", + "Timestamp": "2024-05-16T04:01:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198100", + "Timestamp": "2024-05-16T04:01:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-16T04:01:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176600", + "Timestamp": "2024-05-16T04:01:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172900", + "Timestamp": "2024-05-16T04:01:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T04:01:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.213000", + "Timestamp": "2024-05-16T04:01:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.209000", + "Timestamp": "2024-05-16T04:01:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.153000", + "Timestamp": "2024-05-16T04:01:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.009400", + "Timestamp": "2024-05-16T04:01:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.306400", + "Timestamp": "2024-05-16T04:01:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069800", + "Timestamp": "2024-05-16T04:01:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040800", + "Timestamp": "2024-05-16T04:01:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009800", + "Timestamp": "2024-05-16T04:01:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T04:00:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103900", + "Timestamp": "2024-05-16T04:00:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047600", + "Timestamp": "2024-05-16T04:00:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.640800", + "Timestamp": "2024-05-16T04:00:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.931700", + "Timestamp": "2024-05-16T04:00:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.885600", + "Timestamp": "2024-05-16T03:47:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.880600", + "Timestamp": "2024-05-16T03:47:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.755600", + "Timestamp": "2024-05-16T03:47:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.731500", + "Timestamp": "2024-05-16T03:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.726500", + "Timestamp": "2024-05-16T03:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.601500", + "Timestamp": "2024-05-16T03:46:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.111100", + "Timestamp": "2024-05-16T03:46:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.106100", + "Timestamp": "2024-05-16T03:46:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.981100", + "Timestamp": "2024-05-16T03:46:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.171200", + "Timestamp": "2024-05-16T03:46:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.510600", + "Timestamp": "2024-05-16T03:46:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.151500", + "Timestamp": "2024-05-16T03:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.146500", + "Timestamp": "2024-05-16T03:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.021500", + "Timestamp": "2024-05-16T03:46:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.043900", + "Timestamp": "2024-05-16T03:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.038900", + "Timestamp": "2024-05-16T03:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.913900", + "Timestamp": "2024-05-16T03:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.271600", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.134100", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.552900", + "Timestamp": "2024-05-16T03:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.547900", + "Timestamp": "2024-05-16T03:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.422900", + "Timestamp": "2024-05-16T03:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218500", + "Timestamp": "2024-05-16T03:46:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094600", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090900", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034600", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.243000", + "Timestamp": "2024-05-16T03:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.653500", + "Timestamp": "2024-05-16T03:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.648500", + "Timestamp": "2024-05-16T03:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.523500", + "Timestamp": "2024-05-16T03:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.356800", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.351800", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.226800", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.377800", + "Timestamp": "2024-05-16T03:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.372800", + "Timestamp": "2024-05-16T03:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.247800", + "Timestamp": "2024-05-16T03:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T03:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092300", + "Timestamp": "2024-05-16T03:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036000", + "Timestamp": "2024-05-16T03:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "p2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.553300", + "Timestamp": "2024-05-16T03:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.593300", + "Timestamp": "2024-05-16T03:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "p2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.493300", + "Timestamp": "2024-05-16T03:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.764500", + "Timestamp": "2024-05-16T03:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.759500", + "Timestamp": "2024-05-16T03:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.634500", + "Timestamp": "2024-05-16T03:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158200", + "Timestamp": "2024-05-16T03:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154500", + "Timestamp": "2024-05-16T03:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098200", + "Timestamp": "2024-05-16T03:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.277800", + "Timestamp": "2024-05-16T03:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273800", + "Timestamp": "2024-05-16T03:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.217800", + "Timestamp": "2024-05-16T03:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.501600", + "Timestamp": "2024-05-16T03:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.471600", + "Timestamp": "2024-05-16T03:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.371600", + "Timestamp": "2024-05-16T03:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.140900", + "Timestamp": "2024-05-16T03:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.720800", + "Timestamp": "2024-05-16T03:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.715800", + "Timestamp": "2024-05-16T03:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.590800", + "Timestamp": "2024-05-16T03:46:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.224300", + "Timestamp": "2024-05-16T03:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.219300", + "Timestamp": "2024-05-16T03:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.094300", + "Timestamp": "2024-05-16T03:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.761500", + "Timestamp": "2024-05-16T03:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.235900", + "Timestamp": "2024-05-16T03:46:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.230900", + "Timestamp": "2024-05-16T03:46:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.105900", + "Timestamp": "2024-05-16T03:46:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.272000", + "Timestamp": "2024-05-16T03:46:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.037400", + "Timestamp": "2024-05-16T03:46:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T03:46:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151400", + "Timestamp": "2024-05-16T03:46:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051400", + "Timestamp": "2024-05-16T03:46:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.840300", + "Timestamp": "2024-05-16T03:46:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.712600", + "Timestamp": "2024-05-16T03:46:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.782000", + "Timestamp": "2024-05-16T03:46:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.066300", + "Timestamp": "2024-05-16T03:46:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.175300", + "Timestamp": "2024-05-16T03:46:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-16T03:45:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112900", + "Timestamp": "2024-05-16T03:45:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056900", + "Timestamp": "2024-05-16T03:45:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.539900", + "Timestamp": "2024-05-16T03:45:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.534900", + "Timestamp": "2024-05-16T03:45:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.409900", + "Timestamp": "2024-05-16T03:45:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.715100", + "Timestamp": "2024-05-16T03:45:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.710100", + "Timestamp": "2024-05-16T03:45:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.585100", + "Timestamp": "2024-05-16T03:45:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.726800", + "Timestamp": "2024-05-16T03:45:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.057200", + "Timestamp": "2024-05-16T03:45:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120700", + "Timestamp": "2024-05-16T03:45:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116700", + "Timestamp": "2024-05-16T03:45:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060700", + "Timestamp": "2024-05-16T03:45:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.586600", + "Timestamp": "2024-05-16T03:31:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.770500", + "Timestamp": "2024-05-16T03:31:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.776700", + "Timestamp": "2024-05-16T03:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.771700", + "Timestamp": "2024-05-16T03:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.646700", + "Timestamp": "2024-05-16T03:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.892700", + "Timestamp": "2024-05-16T03:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.887700", + "Timestamp": "2024-05-16T03:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.762700", + "Timestamp": "2024-05-16T03:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.041400", + "Timestamp": "2024-05-16T03:31:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.472200", + "Timestamp": "2024-05-16T03:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.467200", + "Timestamp": "2024-05-16T03:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.342200", + "Timestamp": "2024-05-16T03:31:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.696200", + "Timestamp": "2024-05-16T03:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.691200", + "Timestamp": "2024-05-16T03:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.566200", + "Timestamp": "2024-05-16T03:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.419600", + "Timestamp": "2024-05-16T03:31:40.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5zn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.117300", + "Timestamp": "2024-05-16T03:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.562900", + "Timestamp": "2024-05-16T03:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.557900", + "Timestamp": "2024-05-16T03:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.432900", + "Timestamp": "2024-05-16T03:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.537600", + "Timestamp": "2024-05-16T03:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.532600", + "Timestamp": "2024-05-16T03:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.407600", + "Timestamp": "2024-05-16T03:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.546200", + "Timestamp": "2024-05-16T03:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.980500", + "Timestamp": "2024-05-16T03:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.950500", + "Timestamp": "2024-05-16T03:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.850500", + "Timestamp": "2024-05-16T03:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.500000", + "Timestamp": "2024-05-16T03:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.495000", + "Timestamp": "2024-05-16T03:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.370000", + "Timestamp": "2024-05-16T03:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.858900", + "Timestamp": "2024-05-16T03:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.853900", + "Timestamp": "2024-05-16T03:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.728900", + "Timestamp": "2024-05-16T03:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T03:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106000", + "Timestamp": "2024-05-16T03:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049700", + "Timestamp": "2024-05-16T03:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.178000", + "Timestamp": "2024-05-16T03:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.148000", + "Timestamp": "2024-05-16T03:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.048000", + "Timestamp": "2024-05-16T03:31:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127200", + "Timestamp": "2024-05-16T03:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123200", + "Timestamp": "2024-05-16T03:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067200", + "Timestamp": "2024-05-16T03:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079800", + "Timestamp": "2024-05-16T03:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.050800", + "Timestamp": "2024-05-16T03:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019800", + "Timestamp": "2024-05-16T03:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.562700", + "Timestamp": "2024-05-16T03:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.557700", + "Timestamp": "2024-05-16T03:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.432700", + "Timestamp": "2024-05-16T03:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.639600", + "Timestamp": "2024-05-16T03:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.634600", + "Timestamp": "2024-05-16T03:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.509600", + "Timestamp": "2024-05-16T03:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-16T03:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-16T03:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050100", + "Timestamp": "2024-05-16T03:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.295200", + "Timestamp": "2024-05-16T03:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.290200", + "Timestamp": "2024-05-16T03:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165200", + "Timestamp": "2024-05-16T03:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.088400", + "Timestamp": "2024-05-16T03:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.083400", + "Timestamp": "2024-05-16T03:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.958400", + "Timestamp": "2024-05-16T03:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.507200", + "Timestamp": "2024-05-16T03:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.894800", + "Timestamp": "2024-05-16T03:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.889800", + "Timestamp": "2024-05-16T03:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.764800", + "Timestamp": "2024-05-16T03:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.987600", + "Timestamp": "2024-05-16T03:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.982600", + "Timestamp": "2024-05-16T03:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.857600", + "Timestamp": "2024-05-16T03:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.154900", + "Timestamp": "2024-05-16T03:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.195400", + "Timestamp": "2024-05-16T03:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.190400", + "Timestamp": "2024-05-16T03:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.065400", + "Timestamp": "2024-05-16T03:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.987200", + "Timestamp": "2024-05-16T03:31:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-16T03:31:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T03:31:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046500", + "Timestamp": "2024-05-16T03:31:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.458900", + "Timestamp": "2024-05-16T03:31:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.460000", + "Timestamp": "2024-05-16T03:31:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.150100", + "Timestamp": "2024-05-16T03:31:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.120100", + "Timestamp": "2024-05-16T03:31:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.020100", + "Timestamp": "2024-05-16T03:31:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.471000", + "Timestamp": "2024-05-16T03:30:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T03:18:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T03:17:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.506100", + "Timestamp": "2024-05-16T03:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.501100", + "Timestamp": "2024-05-16T03:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.376100", + "Timestamp": "2024-05-16T03:16:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115200", + "Timestamp": "2024-05-16T03:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330800", + "Timestamp": "2024-05-16T03:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325800", + "Timestamp": "2024-05-16T03:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200800", + "Timestamp": "2024-05-16T03:16:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082600", + "Timestamp": "2024-05-16T03:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078900", + "Timestamp": "2024-05-16T03:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022600", + "Timestamp": "2024-05-16T03:16:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.073200", + "Timestamp": "2024-05-16T03:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168000", + "Timestamp": "2024-05-16T03:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164300", + "Timestamp": "2024-05-16T03:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-16T03:16:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.761300", + "Timestamp": "2024-05-16T03:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.731300", + "Timestamp": "2024-05-16T03:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.631300", + "Timestamp": "2024-05-16T03:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124800", + "Timestamp": "2024-05-16T03:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121100", + "Timestamp": "2024-05-16T03:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064800", + "Timestamp": "2024-05-16T03:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094500", + "Timestamp": "2024-05-16T03:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090800", + "Timestamp": "2024-05-16T03:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034500", + "Timestamp": "2024-05-16T03:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229500", + "Timestamp": "2024-05-16T03:16:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.190500", + "Timestamp": "2024-05-16T03:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.186500", + "Timestamp": "2024-05-16T03:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130500", + "Timestamp": "2024-05-16T03:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115500", + "Timestamp": "2024-05-16T03:16:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.583400", + "Timestamp": "2024-05-16T03:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.578400", + "Timestamp": "2024-05-16T03:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.453400", + "Timestamp": "2024-05-16T03:16:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.595400", + "Timestamp": "2024-05-16T03:16:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.246500", + "Timestamp": "2024-05-16T03:16:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.286500", + "Timestamp": "2024-05-16T03:16:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186500", + "Timestamp": "2024-05-16T03:16:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.090000", + "Timestamp": "2024-05-16T03:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064200", + "Timestamp": "2024-05-16T03:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004200", + "Timestamp": "2024-05-16T03:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004200", + "Timestamp": "2024-05-16T03:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.023000", + "Timestamp": "2024-05-16T03:16:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.870800", + "Timestamp": "2024-05-16T03:16:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.856000", + "Timestamp": "2024-05-16T03:15:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079600", + "Timestamp": "2024-05-16T03:15:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075900", + "Timestamp": "2024-05-16T03:15:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019600", + "Timestamp": "2024-05-16T03:15:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.073400", + "Timestamp": "2024-05-16T03:02:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.828100", + "Timestamp": "2024-05-16T03:01:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314300", + "Timestamp": "2024-05-16T03:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.309300", + "Timestamp": "2024-05-16T03:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184300", + "Timestamp": "2024-05-16T03:01:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120100", + "Timestamp": "2024-05-16T03:01:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.366500", + "Timestamp": "2024-05-16T03:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.520100", + "Timestamp": "2024-05-16T03:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.515100", + "Timestamp": "2024-05-16T03:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.390100", + "Timestamp": "2024-05-16T03:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.337400", + "Timestamp": "2024-05-16T03:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.332400", + "Timestamp": "2024-05-16T03:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.207400", + "Timestamp": "2024-05-16T03:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.521600", + "Timestamp": "2024-05-16T03:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.642900", + "Timestamp": "2024-05-16T03:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.637900", + "Timestamp": "2024-05-16T03:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.512900", + "Timestamp": "2024-05-16T03:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.042100", + "Timestamp": "2024-05-16T03:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.037100", + "Timestamp": "2024-05-16T03:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.912100", + "Timestamp": "2024-05-16T03:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.272500", + "Timestamp": "2024-05-16T03:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.765500", + "Timestamp": "2024-05-16T03:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.831200", + "Timestamp": "2024-05-16T03:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.826200", + "Timestamp": "2024-05-16T03:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.701200", + "Timestamp": "2024-05-16T03:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.116300", + "Timestamp": "2024-05-16T03:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.117600", + "Timestamp": "2024-05-16T03:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.112600", + "Timestamp": "2024-05-16T03:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.987600", + "Timestamp": "2024-05-16T03:01:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.177100", + "Timestamp": "2024-05-16T03:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173400", + "Timestamp": "2024-05-16T03:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.117100", + "Timestamp": "2024-05-16T03:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.480100", + "Timestamp": "2024-05-16T03:01:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.475100", + "Timestamp": "2024-05-16T03:01:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.350100", + "Timestamp": "2024-05-16T03:01:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125200", + "Timestamp": "2024-05-16T03:01:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121200", + "Timestamp": "2024-05-16T03:01:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065200", + "Timestamp": "2024-05-16T03:01:07.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062800", + "Timestamp": "2024-05-16T03:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002800", + "Timestamp": "2024-05-16T03:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002800", + "Timestamp": "2024-05-16T03:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T03:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-16T03:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044600", + "Timestamp": "2024-05-16T03:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.194100", + "Timestamp": "2024-05-16T03:01:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115700", + "Timestamp": "2024-05-16T03:00:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111700", + "Timestamp": "2024-05-16T03:00:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055700", + "Timestamp": "2024-05-16T03:00:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113800", + "Timestamp": "2024-05-16T03:00:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-16T03:00:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053800", + "Timestamp": "2024-05-16T03:00:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.370900", + "Timestamp": "2024-05-16T03:00:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.340900", + "Timestamp": "2024-05-16T03:00:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.240900", + "Timestamp": "2024-05-16T03:00:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.316600", + "Timestamp": "2024-05-16T03:00:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.311600", + "Timestamp": "2024-05-16T03:00:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186600", + "Timestamp": "2024-05-16T03:00:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120500", + "Timestamp": "2024-05-16T03:00:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116800", + "Timestamp": "2024-05-16T03:00:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060500", + "Timestamp": "2024-05-16T03:00:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173200", + "Timestamp": "2024-05-16T03:00:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169200", + "Timestamp": "2024-05-16T03:00:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113200", + "Timestamp": "2024-05-16T03:00:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.619500", + "Timestamp": "2024-05-16T02:48:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.614500", + "Timestamp": "2024-05-16T02:48:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.489500", + "Timestamp": "2024-05-16T02:48:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "a1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-16T02:47:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "a1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112700", + "Timestamp": "2024-05-16T02:47:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "a1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056400", + "Timestamp": "2024-05-16T02:47:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112700", + "Timestamp": "2024-05-16T02:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.189600", + "Timestamp": "2024-05-16T02:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.034100", + "Timestamp": "2024-05-16T02:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.029100", + "Timestamp": "2024-05-16T02:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.904100", + "Timestamp": "2024-05-16T02:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.815000", + "Timestamp": "2024-05-16T02:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.810000", + "Timestamp": "2024-05-16T02:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.685000", + "Timestamp": "2024-05-16T02:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.254600", + "Timestamp": "2024-05-16T02:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.373300", + "Timestamp": "2024-05-16T02:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.368300", + "Timestamp": "2024-05-16T02:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.243300", + "Timestamp": "2024-05-16T02:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.929900", + "Timestamp": "2024-05-16T02:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132800", + "Timestamp": "2024-05-16T02:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172800", + "Timestamp": "2024-05-16T02:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072800", + "Timestamp": "2024-05-16T02:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.872000", + "Timestamp": "2024-05-16T02:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.321500", + "Timestamp": "2024-05-16T02:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.316500", + "Timestamp": "2024-05-16T02:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.191500", + "Timestamp": "2024-05-16T02:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158000", + "Timestamp": "2024-05-16T02:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154000", + "Timestamp": "2024-05-16T02:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098000", + "Timestamp": "2024-05-16T02:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.489600", + "Timestamp": "2024-05-16T02:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.459600", + "Timestamp": "2024-05-16T02:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.359600", + "Timestamp": "2024-05-16T02:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.842300", + "Timestamp": "2024-05-16T02:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.232500", + "Timestamp": "2024-05-16T02:46:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.117900", + "Timestamp": "2024-05-16T02:46:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.758900", + "Timestamp": "2024-05-16T02:46:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.728900", + "Timestamp": "2024-05-16T02:46:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.628900", + "Timestamp": "2024-05-16T02:46:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.754000", + "Timestamp": "2024-05-16T02:45:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.749000", + "Timestamp": "2024-05-16T02:45:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.624000", + "Timestamp": "2024-05-16T02:45:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.242400", + "Timestamp": "2024-05-16T02:45:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.238400", + "Timestamp": "2024-05-16T02:45:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.182400", + "Timestamp": "2024-05-16T02:45:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083500", + "Timestamp": "2024-05-16T02:45:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079800", + "Timestamp": "2024-05-16T02:45:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023500", + "Timestamp": "2024-05-16T02:45:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.709700", + "Timestamp": "2024-05-16T02:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.704700", + "Timestamp": "2024-05-16T02:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.579700", + "Timestamp": "2024-05-16T02:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.576300", + "Timestamp": "2024-05-16T02:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.546300", + "Timestamp": "2024-05-16T02:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.446300", + "Timestamp": "2024-05-16T02:31:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120000", + "Timestamp": "2024-05-16T02:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.240600", + "Timestamp": "2024-05-16T02:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.415600", + "Timestamp": "2024-05-16T02:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.410600", + "Timestamp": "2024-05-16T02:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.285600", + "Timestamp": "2024-05-16T02:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158800", + "Timestamp": "2024-05-16T02:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155100", + "Timestamp": "2024-05-16T02:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-16T02:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074000", + "Timestamp": "2024-05-16T02:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070300", + "Timestamp": "2024-05-16T02:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014000", + "Timestamp": "2024-05-16T02:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.895200", + "Timestamp": "2024-05-16T02:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.136900", + "Timestamp": "2024-05-16T02:16:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.284200", + "Timestamp": "2024-05-16T02:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.279200", + "Timestamp": "2024-05-16T02:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.154200", + "Timestamp": "2024-05-16T02:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118800", + "Timestamp": "2024-05-16T02:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.442600", + "Timestamp": "2024-05-16T02:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.437600", + "Timestamp": "2024-05-16T02:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.312600", + "Timestamp": "2024-05-16T02:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.435400", + "Timestamp": "2024-05-16T02:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.430400", + "Timestamp": "2024-05-16T02:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.305400", + "Timestamp": "2024-05-16T02:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t1.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.002800", + "Timestamp": "2024-05-16T02:16:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.149200", + "Timestamp": "2024-05-16T02:15:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095400", + "Timestamp": "2024-05-16T02:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091700", + "Timestamp": "2024-05-16T02:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035400", + "Timestamp": "2024-05-16T02:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.234000", + "Timestamp": "2024-05-16T02:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-16T02:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113900", + "Timestamp": "2024-05-16T02:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T02:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053900", + "Timestamp": "2024-05-16T02:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.588400", + "Timestamp": "2024-05-16T02:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.583400", + "Timestamp": "2024-05-16T02:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.458400", + "Timestamp": "2024-05-16T02:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120100", + "Timestamp": "2024-05-16T02:01:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138000", + "Timestamp": "2024-05-16T02:00:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T02:00:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078000", + "Timestamp": "2024-05-16T02:00:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.141800", + "Timestamp": "2024-05-16T01:46:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089900", + "Timestamp": "2024-05-16T01:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129900", + "Timestamp": "2024-05-16T01:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029900", + "Timestamp": "2024-05-16T01:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.317100", + "Timestamp": "2024-05-16T01:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.312100", + "Timestamp": "2024-05-16T01:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.187100", + "Timestamp": "2024-05-16T01:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121800", + "Timestamp": "2024-05-16T01:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.232200", + "Timestamp": "2024-05-16T01:46:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.868100", + "Timestamp": "2024-05-16T01:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.438800", + "Timestamp": "2024-05-16T01:46:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076600", + "Timestamp": "2024-05-16T01:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047600", + "Timestamp": "2024-05-16T01:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016600", + "Timestamp": "2024-05-16T01:31:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233400", + "Timestamp": "2024-05-16T01:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.855400", + "Timestamp": "2024-05-16T01:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.129100", + "Timestamp": "2024-05-16T01:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161900", + "Timestamp": "2024-05-16T01:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158200", + "Timestamp": "2024-05-16T01:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101900", + "Timestamp": "2024-05-16T01:31:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T01:31:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T01:31:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044900", + "Timestamp": "2024-05-16T01:31:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118900", + "Timestamp": "2024-05-16T01:17:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T01:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T01:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050000", + "Timestamp": "2024-05-16T01:16:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.407200", + "Timestamp": "2024-05-16T01:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.402200", + "Timestamp": "2024-05-16T01:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.277200", + "Timestamp": "2024-05-16T01:16:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.126100", + "Timestamp": "2024-05-16T01:16:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.444900", + "Timestamp": "2024-05-16T01:16:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.439900", + "Timestamp": "2024-05-16T01:16:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.314900", + "Timestamp": "2024-05-16T01:16:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-16T01:15:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112700", + "Timestamp": "2024-05-16T01:15:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056400", + "Timestamp": "2024-05-16T01:15:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115300", + "Timestamp": "2024-05-16T01:15:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.719200", + "Timestamp": "2024-05-16T01:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076300", + "Timestamp": "2024-05-16T01:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.072600", + "Timestamp": "2024-05-16T01:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016300", + "Timestamp": "2024-05-16T01:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.101700", + "Timestamp": "2024-05-16T01:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.096700", + "Timestamp": "2024-05-16T01:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.971700", + "Timestamp": "2024-05-16T01:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.192000", + "Timestamp": "2024-05-16T01:01:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.662800", + "Timestamp": "2024-05-16T01:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.657800", + "Timestamp": "2024-05-16T01:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.532800", + "Timestamp": "2024-05-16T01:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.150600", + "Timestamp": "2024-05-16T01:00:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.127100", + "Timestamp": "2024-05-16T00:46:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113200", + "Timestamp": "2024-05-16T00:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T00:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053200", + "Timestamp": "2024-05-16T00:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.100000", + "Timestamp": "2024-05-16T00:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.727100", + "Timestamp": "2024-05-16T00:46:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076100", + "Timestamp": "2024-05-16T00:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047100", + "Timestamp": "2024-05-16T00:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016100", + "Timestamp": "2024-05-16T00:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T00:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T00:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050800", + "Timestamp": "2024-05-16T00:46:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125100", + "Timestamp": "2024-05-16T00:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121400", + "Timestamp": "2024-05-16T00:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065100", + "Timestamp": "2024-05-16T00:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.911100", + "Timestamp": "2024-05-16T00:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.911100", + "Timestamp": "2024-05-16T00:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.911100", + "Timestamp": "2024-05-16T00:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074900", + "Timestamp": "2024-05-16T00:46:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071200", + "Timestamp": "2024-05-16T00:46:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014900", + "Timestamp": "2024-05-16T00:46:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.420300", + "Timestamp": "2024-05-16T00:45:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.390300", + "Timestamp": "2024-05-16T00:45:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.290300", + "Timestamp": "2024-05-16T00:45:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176600", + "Timestamp": "2024-05-16T00:32:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172900", + "Timestamp": "2024-05-16T00:32:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T00:32:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.742200", + "Timestamp": "2024-05-16T00:31:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.840500", + "Timestamp": "2024-05-16T00:31:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135400", + "Timestamp": "2024-05-16T00:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131700", + "Timestamp": "2024-05-16T00:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075400", + "Timestamp": "2024-05-16T00:31:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077200", + "Timestamp": "2024-05-16T00:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073500", + "Timestamp": "2024-05-16T00:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017200", + "Timestamp": "2024-05-16T00:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.140400", + "Timestamp": "2024-05-16T00:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T00:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101300", + "Timestamp": "2024-05-16T00:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045000", + "Timestamp": "2024-05-16T00:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103200", + "Timestamp": "2024-05-16T00:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099500", + "Timestamp": "2024-05-16T00:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043200", + "Timestamp": "2024-05-16T00:31:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.646500", + "Timestamp": "2024-05-16T00:31:06.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.834600", + "Timestamp": "2024-05-16T00:30:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418300", + "Timestamp": "2024-05-16T00:21:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081300", + "Timestamp": "2024-05-16T00:17:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077600", + "Timestamp": "2024-05-16T00:17:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021300", + "Timestamp": "2024-05-16T00:17:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.027000", + "Timestamp": "2024-05-16T00:17:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146600", + "Timestamp": "2024-05-16T00:16:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142900", + "Timestamp": "2024-05-16T00:16:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086600", + "Timestamp": "2024-05-16T00:16:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T00:16:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229300", + "Timestamp": "2024-05-16T00:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170800", + "Timestamp": "2024-05-16T00:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167100", + "Timestamp": "2024-05-16T00:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T00:16:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128700", + "Timestamp": "2024-05-16T00:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125000", + "Timestamp": "2024-05-16T00:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068700", + "Timestamp": "2024-05-16T00:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.906700", + "Timestamp": "2024-05-16T00:16:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.853600", + "Timestamp": "2024-05-16T00:15:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.848600", + "Timestamp": "2024-05-16T00:15:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.723600", + "Timestamp": "2024-05-16T00:15:59.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.219500", + "Timestamp": "2024-05-16T00:02:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "a1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067400", + "Timestamp": "2024-05-16T00:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "a1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038400", + "Timestamp": "2024-05-16T00:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "a1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007400", + "Timestamp": "2024-05-16T00:01:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125700", + "Timestamp": "2024-05-16T00:01:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.253500", + "Timestamp": "2024-05-16T00:01:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.536500", + "Timestamp": "2024-05-16T00:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235500", + "Timestamp": "2024-05-16T00:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.241400", + "Timestamp": "2024-05-16T00:01:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115800", + "Timestamp": "2024-05-16T00:01:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.887100", + "Timestamp": "2024-05-16T00:01:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086200", + "Timestamp": "2024-05-16T00:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126200", + "Timestamp": "2024-05-16T00:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026200", + "Timestamp": "2024-05-16T00:01:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.313200", + "Timestamp": "2024-05-16T00:01:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.317200", + "Timestamp": "2024-05-15T23:55:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.941900", + "Timestamp": "2024-05-15T23:46:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.517500", + "Timestamp": "2024-05-15T23:46:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.269000", + "Timestamp": "2024-05-15T23:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.264000", + "Timestamp": "2024-05-15T23:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.139000", + "Timestamp": "2024-05-15T23:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.475300", + "Timestamp": "2024-05-15T23:46:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214400", + "Timestamp": "2024-05-15T23:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.238400", + "Timestamp": "2024-05-15T23:46:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.137800", + "Timestamp": "2024-05-15T23:46:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.595500", + "Timestamp": "2024-05-15T23:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217000", + "Timestamp": "2024-05-15T23:46:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088900", + "Timestamp": "2024-05-15T23:40:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128900", + "Timestamp": "2024-05-15T23:40:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028900", + "Timestamp": "2024-05-15T23:40:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-15T23:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.181300", + "Timestamp": "2024-05-15T23:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177600", + "Timestamp": "2024-05-15T23:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121300", + "Timestamp": "2024-05-15T23:31:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117300", + "Timestamp": "2024-05-15T23:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113600", + "Timestamp": "2024-05-15T23:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057300", + "Timestamp": "2024-05-15T23:31:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133700", + "Timestamp": "2024-05-15T23:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129700", + "Timestamp": "2024-05-15T23:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073700", + "Timestamp": "2024-05-15T23:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.295900", + "Timestamp": "2024-05-15T23:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.290900", + "Timestamp": "2024-05-15T23:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165900", + "Timestamp": "2024-05-15T23:31:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126200", + "Timestamp": "2024-05-15T23:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122500", + "Timestamp": "2024-05-15T23:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066200", + "Timestamp": "2024-05-15T23:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.528000", + "Timestamp": "2024-05-15T23:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074000", + "Timestamp": "2024-05-15T23:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070300", + "Timestamp": "2024-05-15T23:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014000", + "Timestamp": "2024-05-15T23:17:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.177900", + "Timestamp": "2024-05-15T23:16:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174200", + "Timestamp": "2024-05-15T23:16:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.117900", + "Timestamp": "2024-05-15T23:16:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115200", + "Timestamp": "2024-05-15T23:16:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-15T23:16:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-15T23:16:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047200", + "Timestamp": "2024-05-15T23:16:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.342000", + "Timestamp": "2024-05-15T23:15:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.337000", + "Timestamp": "2024-05-15T23:15:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.212000", + "Timestamp": "2024-05-15T23:15:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.246600", + "Timestamp": "2024-05-15T23:02:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.084900", + "Timestamp": "2024-05-15T23:01:46.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.396800", + "Timestamp": "2024-05-15T23:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.366800", + "Timestamp": "2024-05-15T23:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.266800", + "Timestamp": "2024-05-15T23:01:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118900", + "Timestamp": "2024-05-15T23:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158900", + "Timestamp": "2024-05-15T23:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058900", + "Timestamp": "2024-05-15T23:01:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.493800", + "Timestamp": "2024-05-15T23:01:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.129000", + "Timestamp": "2024-05-15T23:01:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.446900", + "Timestamp": "2024-05-15T22:46:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.900400", + "Timestamp": "2024-05-15T22:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.205600", + "Timestamp": "2024-05-15T22:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.201600", + "Timestamp": "2024-05-15T22:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145600", + "Timestamp": "2024-05-15T22:46:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-15T22:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-15T22:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045800", + "Timestamp": "2024-05-15T22:46:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-15T22:45:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115700", + "Timestamp": "2024-05-15T22:45:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155700", + "Timestamp": "2024-05-15T22:45:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055700", + "Timestamp": "2024-05-15T22:45:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.476600", + "Timestamp": "2024-05-15T22:43:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.476600", + "Timestamp": "2024-05-15T22:43:01.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.609800", + "Timestamp": "2024-05-15T22:40:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.609800", + "Timestamp": "2024-05-15T22:40:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110400", + "Timestamp": "2024-05-15T22:31:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163600", + "Timestamp": "2024-05-15T22:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159600", + "Timestamp": "2024-05-15T22:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103600", + "Timestamp": "2024-05-15T22:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.094900", + "Timestamp": "2024-05-15T22:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.244000", + "Timestamp": "2024-05-15T22:30:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131000", + "Timestamp": "2024-05-15T22:21:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127300", + "Timestamp": "2024-05-15T22:21:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071000", + "Timestamp": "2024-05-15T22:21:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.769200", + "Timestamp": "2024-05-15T22:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231300", + "Timestamp": "2024-05-15T22:16:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.463100", + "Timestamp": "2024-05-15T22:16:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076400", + "Timestamp": "2024-05-15T22:16:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047400", + "Timestamp": "2024-05-15T22:16:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016400", + "Timestamp": "2024-05-15T22:16:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.424100", + "Timestamp": "2024-05-15T22:01:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.419100", + "Timestamp": "2024-05-15T22:01:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.294100", + "Timestamp": "2024-05-15T22:01:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.873600", + "Timestamp": "2024-05-15T22:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159800", + "Timestamp": "2024-05-15T22:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156100", + "Timestamp": "2024-05-15T22:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099800", + "Timestamp": "2024-05-15T22:01:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-15T22:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115900", + "Timestamp": "2024-05-15T22:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118700", + "Timestamp": "2024-05-15T22:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119700", + "Timestamp": "2024-05-15T22:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115000", + "Timestamp": "2024-05-15T22:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116000", + "Timestamp": "2024-05-15T22:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058700", + "Timestamp": "2024-05-15T22:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059700", + "Timestamp": "2024-05-15T22:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107900", + "Timestamp": "2024-05-15T22:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-15T22:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047900", + "Timestamp": "2024-05-15T22:01:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121900", + "Timestamp": "2024-05-15T22:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125600", + "Timestamp": "2024-05-15T22:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165600", + "Timestamp": "2024-05-15T22:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065600", + "Timestamp": "2024-05-15T22:01:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.130200", + "Timestamp": "2024-05-15T22:01:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.135000", + "Timestamp": "2024-05-15T22:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.612700", + "Timestamp": "2024-05-15T22:01:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.607700", + "Timestamp": "2024-05-15T22:01:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.482700", + "Timestamp": "2024-05-15T22:01:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.453400", + "Timestamp": "2024-05-15T22:01:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115000", + "Timestamp": "2024-05-15T22:01:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.477400", + "Timestamp": "2024-05-15T22:00:56.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066000", + "Timestamp": "2024-05-15T22:00:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065400", + "Timestamp": "2024-05-15T22:00:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065600", + "Timestamp": "2024-05-15T22:00:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.006000", + "Timestamp": "2024-05-15T22:00:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.005400", + "Timestamp": "2024-05-15T22:00:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.005600", + "Timestamp": "2024-05-15T22:00:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006000", + "Timestamp": "2024-05-15T22:00:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005400", + "Timestamp": "2024-05-15T22:00:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005600", + "Timestamp": "2024-05-15T22:00:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.007000", + "Timestamp": "2024-05-15T22:00:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.006800", + "Timestamp": "2024-05-15T22:00:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.006700", + "Timestamp": "2024-05-15T22:00:02.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.911400", + "Timestamp": "2024-05-15T21:58:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071600", + "Timestamp": "2024-05-15T21:58:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042600", + "Timestamp": "2024-05-15T21:58:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011600", + "Timestamp": "2024-05-15T21:58:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.022000", + "Timestamp": "2024-05-15T21:58:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021700", + "Timestamp": "2024-05-15T21:58:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.023800", + "Timestamp": "2024-05-15T21:58:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-15T21:46:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101100", + "Timestamp": "2024-05-15T21:46:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044800", + "Timestamp": "2024-05-15T21:46:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.438200", + "Timestamp": "2024-05-15T21:46:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.451400", + "Timestamp": "2024-05-15T21:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.421400", + "Timestamp": "2024-05-15T21:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.321400", + "Timestamp": "2024-05-15T21:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108900", + "Timestamp": "2024-05-15T21:46:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148900", + "Timestamp": "2024-05-15T21:46:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048900", + "Timestamp": "2024-05-15T21:46:08.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161000", + "Timestamp": "2024-05-15T21:45:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157300", + "Timestamp": "2024-05-15T21:45:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101000", + "Timestamp": "2024-05-15T21:45:57.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084600", + "Timestamp": "2024-05-15T21:38:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089700", + "Timestamp": "2024-05-15T21:38:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084800", + "Timestamp": "2024-05-15T21:38:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080900", + "Timestamp": "2024-05-15T21:38:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086000", + "Timestamp": "2024-05-15T21:38:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.081100", + "Timestamp": "2024-05-15T21:38:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024600", + "Timestamp": "2024-05-15T21:38:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029700", + "Timestamp": "2024-05-15T21:38:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024800", + "Timestamp": "2024-05-15T21:38:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.027400", + "Timestamp": "2024-05-15T21:38:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.028300", + "Timestamp": "2024-05-15T21:38:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.028000", + "Timestamp": "2024-05-15T21:38:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075400", + "Timestamp": "2024-05-15T21:38:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.046400", + "Timestamp": "2024-05-15T21:38:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015400", + "Timestamp": "2024-05-15T21:38:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064500", + "Timestamp": "2024-05-15T21:38:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065300", + "Timestamp": "2024-05-15T21:38:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004500", + "Timestamp": "2024-05-15T21:38:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.005300", + "Timestamp": "2024-05-15T21:38:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004500", + "Timestamp": "2024-05-15T21:38:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005300", + "Timestamp": "2024-05-15T21:38:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.011000", + "Timestamp": "2024-05-15T21:38:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.011000", + "Timestamp": "2024-05-15T21:38:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.011200", + "Timestamp": "2024-05-15T21:38:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.892600", + "Timestamp": "2024-05-15T21:38:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.892600", + "Timestamp": "2024-05-15T21:38:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.514900", + "Timestamp": "2024-05-15T21:38:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.509900", + "Timestamp": "2024-05-15T21:38:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.384900", + "Timestamp": "2024-05-15T21:38:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.495400", + "Timestamp": "2024-05-15T21:37:53.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113100", + "Timestamp": "2024-05-15T21:37:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.025200", + "Timestamp": "2024-05-15T21:37:05.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-15T21:36:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038800", + "Timestamp": "2024-05-15T21:36:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008800", + "Timestamp": "2024-05-15T21:36:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.013600", + "Timestamp": "2024-05-15T21:36:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.012800", + "Timestamp": "2024-05-15T21:36:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.014000", + "Timestamp": "2024-05-15T21:36:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.439100", + "Timestamp": "2024-05-15T21:36:38.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065200", + "Timestamp": "2024-05-15T21:36:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065600", + "Timestamp": "2024-05-15T21:36:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066200", + "Timestamp": "2024-05-15T21:36:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.036500", + "Timestamp": "2024-05-15T21:36:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.036900", + "Timestamp": "2024-05-15T21:36:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037500", + "Timestamp": "2024-05-15T21:36:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-15T21:36:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005600", + "Timestamp": "2024-05-15T21:36:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006200", + "Timestamp": "2024-05-15T21:36:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.011600", + "Timestamp": "2024-05-15T21:31:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.845100", + "Timestamp": "2024-05-15T21:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.840100", + "Timestamp": "2024-05-15T21:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.715100", + "Timestamp": "2024-05-15T21:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.123800", + "Timestamp": "2024-05-15T21:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080300", + "Timestamp": "2024-05-15T21:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.051300", + "Timestamp": "2024-05-15T21:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020300", + "Timestamp": "2024-05-15T21:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.022000", + "Timestamp": "2024-05-15T21:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.860700", + "Timestamp": "2024-05-15T21:16:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125000", + "Timestamp": "2024-05-15T21:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.255200", + "Timestamp": "2024-05-15T21:15:54.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224000", + "Timestamp": "2024-05-15T21:15:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077800", + "Timestamp": "2024-05-15T21:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.048800", + "Timestamp": "2024-05-15T21:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017800", + "Timestamp": "2024-05-15T21:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.869700", + "Timestamp": "2024-05-15T21:01:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-15T21:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103100", + "Timestamp": "2024-05-15T21:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046800", + "Timestamp": "2024-05-15T21:01:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.295700", + "Timestamp": "2024-05-15T21:00:48.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.304900", + "Timestamp": "2024-05-15T20:47:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.304900", + "Timestamp": "2024-05-15T20:47:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.822800", + "Timestamp": "2024-05-15T20:47:47.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121000", + "Timestamp": "2024-05-15T20:47:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.130400", + "Timestamp": "2024-05-15T20:46:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.279900", + "Timestamp": "2024-05-15T20:46:41.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081300", + "Timestamp": "2024-05-15T20:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.052300", + "Timestamp": "2024-05-15T20:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021300", + "Timestamp": "2024-05-15T20:46:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010900", + "Timestamp": "2024-05-15T20:46:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079200", + "Timestamp": "2024-05-15T20:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075500", + "Timestamp": "2024-05-15T20:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019200", + "Timestamp": "2024-05-15T20:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151300", + "Timestamp": "2024-05-15T20:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147600", + "Timestamp": "2024-05-15T20:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091300", + "Timestamp": "2024-05-15T20:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.141700", + "Timestamp": "2024-05-15T20:46:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.238300", + "Timestamp": "2024-05-15T20:46:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121400", + "Timestamp": "2024-05-15T20:32:43.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079300", + "Timestamp": "2024-05-15T20:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.050300", + "Timestamp": "2024-05-15T20:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019300", + "Timestamp": "2024-05-15T20:32:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.232200", + "Timestamp": "2024-05-15T20:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.056300", + "Timestamp": "2024-05-15T20:31:34.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092900", + "Timestamp": "2024-05-15T20:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089200", + "Timestamp": "2024-05-15T20:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032900", + "Timestamp": "2024-05-15T20:31:32.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.165600", + "Timestamp": "2024-05-15T20:01:45.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.442400", + "Timestamp": "2024-05-15T20:01:42.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.127900", + "Timestamp": "2024-05-15T20:01:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.981500", + "Timestamp": "2024-05-15T20:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074100", + "Timestamp": "2024-05-15T19:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070400", + "Timestamp": "2024-05-15T19:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014100", + "Timestamp": "2024-05-15T19:46:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075000", + "Timestamp": "2024-05-15T19:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071300", + "Timestamp": "2024-05-15T19:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015000", + "Timestamp": "2024-05-15T19:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062400", + "Timestamp": "2024-05-15T19:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002400", + "Timestamp": "2024-05-15T19:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002400", + "Timestamp": "2024-05-15T19:46:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010800", + "Timestamp": "2024-05-15T19:37:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120800", + "Timestamp": "2024-05-15T19:31:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076900", + "Timestamp": "2024-05-15T19:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047900", + "Timestamp": "2024-05-15T19:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016900", + "Timestamp": "2024-05-15T19:16:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217700", + "Timestamp": "2024-05-15T19:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070100", + "Timestamp": "2024-05-15T19:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041100", + "Timestamp": "2024-05-15T19:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010100", + "Timestamp": "2024-05-15T19:16:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.435500", + "Timestamp": "2024-05-15T19:02:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-15T19:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-15T19:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044600", + "Timestamp": "2024-05-15T19:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121500", + "Timestamp": "2024-05-15T19:01:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161500", + "Timestamp": "2024-05-15T19:01:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061500", + "Timestamp": "2024-05-15T19:01:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107000", + "Timestamp": "2024-05-15T19:01:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-15T19:01:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047000", + "Timestamp": "2024-05-15T19:01:09.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.790300", + "Timestamp": "2024-05-15T18:56:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.790300", + "Timestamp": "2024-05-15T18:56:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-15T18:47:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106000", + "Timestamp": "2024-05-15T18:47:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049700", + "Timestamp": "2024-05-15T18:47:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m1.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080400", + "Timestamp": "2024-05-15T18:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m1.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.050400", + "Timestamp": "2024-05-15T18:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m1.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020400", + "Timestamp": "2024-05-15T18:31:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.240000", + "Timestamp": "2024-05-15T18:16:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.542400", + "Timestamp": "2024-05-15T18:03:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.542400", + "Timestamp": "2024-05-15T18:03:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.542400", + "Timestamp": "2024-05-15T18:03:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115400", + "Timestamp": "2024-05-15T18:01:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155400", + "Timestamp": "2024-05-15T18:01:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055400", + "Timestamp": "2024-05-15T18:01:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005400", + "Timestamp": "2024-05-15T17:59:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005300", + "Timestamp": "2024-05-15T17:59:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005300", + "Timestamp": "2024-05-15T17:59:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062300", + "Timestamp": "2024-05-15T17:58:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002300", + "Timestamp": "2024-05-15T17:58:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002300", + "Timestamp": "2024-05-15T17:58:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.878400", + "Timestamp": "2024-05-15T17:57:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.755000", + "Timestamp": "2024-05-15T17:56:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.755000", + "Timestamp": "2024-05-15T17:56:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.442800", + "Timestamp": "2024-05-15T17:55:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.442800", + "Timestamp": "2024-05-15T17:55:49.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-15T17:47:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062700", + "Timestamp": "2024-05-15T17:47:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002700", + "Timestamp": "2024-05-15T17:47:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002700", + "Timestamp": "2024-05-15T17:47:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.136100", + "Timestamp": "2024-05-15T17:46:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220200", + "Timestamp": "2024-05-15T17:46:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t1.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068600", + "Timestamp": "2024-05-15T17:45:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t1.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.008600", + "Timestamp": "2024-05-15T17:45:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t1.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008600", + "Timestamp": "2024-05-15T17:45:58.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062400", + "Timestamp": "2024-05-15T17:32:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002400", + "Timestamp": "2024-05-15T17:32:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002400", + "Timestamp": "2024-05-15T17:32:03.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074500", + "Timestamp": "2024-05-15T17:31:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.045500", + "Timestamp": "2024-05-15T17:31:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014500", + "Timestamp": "2024-05-15T17:31:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223200", + "Timestamp": "2024-05-15T17:31:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.047100", + "Timestamp": "2024-05-15T17:31:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115300", + "Timestamp": "2024-05-15T17:24:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113400", + "Timestamp": "2024-05-15T17:24:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-15T17:24:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152800", + "Timestamp": "2024-05-15T17:24:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052800", + "Timestamp": "2024-05-15T17:24:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116100", + "Timestamp": "2024-05-15T17:24:12.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073300", + "Timestamp": "2024-05-15T17:22:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074300", + "Timestamp": "2024-05-15T17:22:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069600", + "Timestamp": "2024-05-15T17:22:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070600", + "Timestamp": "2024-05-15T17:22:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013300", + "Timestamp": "2024-05-15T17:22:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014300", + "Timestamp": "2024-05-15T17:22:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-15T17:17:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062500", + "Timestamp": "2024-05-15T17:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-15T17:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-15T17:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062200", + "Timestamp": "2024-05-15T17:02:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002200", + "Timestamp": "2024-05-15T17:02:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002200", + "Timestamp": "2024-05-15T17:02:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423300", + "Timestamp": "2024-05-15T17:01:50.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "a1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069100", + "Timestamp": "2024-05-15T17:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "a1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040100", + "Timestamp": "2024-05-15T17:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "a1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009100", + "Timestamp": "2024-05-15T17:01:44.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120400", + "Timestamp": "2024-05-15T17:01:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235500", + "Timestamp": "2024-05-15T17:01:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.443400", + "Timestamp": "2024-05-15T16:46:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222900", + "Timestamp": "2024-05-15T16:46:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111600", + "Timestamp": "2024-05-15T16:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-15T16:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051600", + "Timestamp": "2024-05-15T16:31:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-15T16:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092200", + "Timestamp": "2024-05-15T16:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035900", + "Timestamp": "2024-05-15T16:31:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073800", + "Timestamp": "2024-05-15T16:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070100", + "Timestamp": "2024-05-15T16:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013800", + "Timestamp": "2024-05-15T16:31:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076600", + "Timestamp": "2024-05-15T16:30:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.072900", + "Timestamp": "2024-05-15T16:30:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016600", + "Timestamp": "2024-05-15T16:30:51.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m1.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081500", + "Timestamp": "2024-05-15T16:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m1.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.051500", + "Timestamp": "2024-05-15T16:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m1.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021500", + "Timestamp": "2024-05-15T16:01:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "c5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107800", + "Timestamp": "2024-05-15T16:01:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.060600", + "Timestamp": "2024-05-15T16:01:18.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.885600", + "Timestamp": "2024-05-15T16:01:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.885600", + "Timestamp": "2024-05-15T16:01:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.885600", + "Timestamp": "2024-05-15T16:01:14.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157600", + "Timestamp": "2024-05-15T15:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153900", + "Timestamp": "2024-05-15T15:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097600", + "Timestamp": "2024-05-15T15:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219400", + "Timestamp": "2024-05-15T15:46:28.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.029700", + "Timestamp": "2024-05-15T15:46:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.227100", + "Timestamp": "2024-05-15T15:46:19.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163600", + "Timestamp": "2024-05-15T15:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159900", + "Timestamp": "2024-05-15T15:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103600", + "Timestamp": "2024-05-15T15:46:17.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078400", + "Timestamp": "2024-05-15T15:45:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074700", + "Timestamp": "2024-05-15T15:45:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018400", + "Timestamp": "2024-05-15T15:45:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-15T15:37:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.024400", + "Timestamp": "2024-05-15T15:34:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.025100", + "Timestamp": "2024-05-15T15:34:27.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.866600", + "Timestamp": "2024-05-15T15:34:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.866600", + "Timestamp": "2024-05-15T15:34:10.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.771200", + "Timestamp": "2024-05-15T15:32:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.771200", + "Timestamp": "2024-05-15T15:32:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.771200", + "Timestamp": "2024-05-15T15:32:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095700", + "Timestamp": "2024-05-15T15:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092000", + "Timestamp": "2024-05-15T15:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035700", + "Timestamp": "2024-05-15T15:31:36.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.052200", + "Timestamp": "2024-05-15T15:31:22.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062500", + "Timestamp": "2024-05-15T15:22:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-15T15:22:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-15T15:22:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149100", + "Timestamp": "2024-05-15T15:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.189100", + "Timestamp": "2024-05-15T15:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089100", + "Timestamp": "2024-05-15T15:16:13.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097000", + "Timestamp": "2024-05-15T15:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093300", + "Timestamp": "2024-05-15T15:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037000", + "Timestamp": "2024-05-15T15:01:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439100", + "Timestamp": "2024-05-15T15:01:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106000", + "Timestamp": "2024-05-15T14:47:16.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062500", + "Timestamp": "2024-05-15T14:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-15T14:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-15T14:16:24.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.131900", + "Timestamp": "2024-05-15T14:16:23.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-15T13:47:26.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.645600", + "Timestamp": "2024-05-15T13:35:15.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t1.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.005400", + "Timestamp": "2024-05-15T13:31:04.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096300", + "Timestamp": "2024-05-15T13:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-15T13:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036300", + "Timestamp": "2024-05-15T13:16:20.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.219600", + "Timestamp": "2024-05-15T13:06:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.219600", + "Timestamp": "2024-05-15T13:06:11.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-15T13:02:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077200", + "Timestamp": "2024-05-15T13:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073500", + "Timestamp": "2024-05-15T13:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017200", + "Timestamp": "2024-05-15T13:01:37.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229300", + "Timestamp": "2024-05-15T12:46:31.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076500", + "Timestamp": "2024-05-15T12:45:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047500", + "Timestamp": "2024-05-15T12:45:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016500", + "Timestamp": "2024-05-15T12:45:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299500", + "Timestamp": "2024-05-15T12:45:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294500", + "Timestamp": "2024-05-15T12:45:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169500", + "Timestamp": "2024-05-15T12:45:52.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.050300", + "Timestamp": "2024-05-15T12:32:00.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114000", + "Timestamp": "2024-05-15T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062200", + "Timestamp": "2024-05-15T12:26:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002200", + "Timestamp": "2024-05-15T12:26:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002200", + "Timestamp": "2024-05-15T12:26:33.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.716700", + "Timestamp": "2024-05-15T12:23:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.716700", + "Timestamp": "2024-05-15T12:23:35.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-15T12:16:29.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-15T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074700", + "Timestamp": "2024-05-15T11:46:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071000", + "Timestamp": "2024-05-15T11:46:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014700", + "Timestamp": "2024-05-15T11:46:55.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.117100", + "Timestamp": "2024-05-15T11:31:21.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "a1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080000", + "Timestamp": "2024-05-15T11:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "a1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076300", + "Timestamp": "2024-05-15T11:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2c", + "InstanceType": "a1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020000", + "Timestamp": "2024-05-15T11:16:39.000Z" + }, + { + "AvailabilityZone": "ap-southeast-2a", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-15T11:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.111800", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.081800", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.981800", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132700", + "Timestamp": "2024-05-16T14:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129000", + "Timestamp": "2024-05-16T14:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072700", + "Timestamp": "2024-05-16T14:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.480600", + "Timestamp": "2024-05-16T14:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.475600", + "Timestamp": "2024-05-16T14:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.350600", + "Timestamp": "2024-05-16T14:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096700", + "Timestamp": "2024-05-16T14:02:11.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096100", + "Timestamp": "2024-05-16T14:02:11.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093000", + "Timestamp": "2024-05-16T14:02:11.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092400", + "Timestamp": "2024-05-16T14:02:11.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036700", + "Timestamp": "2024-05-16T14:02:11.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036100", + "Timestamp": "2024-05-16T14:02:11.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.917600", + "Timestamp": "2024-05-16T14:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.912600", + "Timestamp": "2024-05-16T14:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.787600", + "Timestamp": "2024-05-16T14:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.446700", + "Timestamp": "2024-05-16T14:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.185800", + "Timestamp": "2024-05-16T14:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.155800", + "Timestamp": "2024-05-16T14:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.055800", + "Timestamp": "2024-05-16T14:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.623100", + "Timestamp": "2024-05-16T14:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.917500", + "Timestamp": "2024-05-16T14:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.874000", + "Timestamp": "2024-05-16T14:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.869000", + "Timestamp": "2024-05-16T14:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.744000", + "Timestamp": "2024-05-16T14:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.915400", + "Timestamp": "2024-05-16T14:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.910400", + "Timestamp": "2024-05-16T14:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.785400", + "Timestamp": "2024-05-16T14:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.105800", + "Timestamp": "2024-05-16T14:01:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.100800", + "Timestamp": "2024-05-16T14:01:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.975800", + "Timestamp": "2024-05-16T14:01:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.445800", + "Timestamp": "2024-05-16T14:01:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.415800", + "Timestamp": "2024-05-16T14:01:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.315800", + "Timestamp": "2024-05-16T14:01:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.732900", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.727900", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.602900", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.749900", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.744900", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.619900", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.245600", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.871500", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.418300", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.413300", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.288300", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.844100", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.709600", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297800", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.292800", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167800", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.747500", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.742500", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.617500", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229000", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.728600", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.723600", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.598600", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.764600", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.759600", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.634600", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172800", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168800", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.228600", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.315500", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.310500", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.185500", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.321500", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.316500", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.191500", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122100", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118100", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062100", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.962800", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.887900", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.757900", + "Timestamp": "2024-05-16T14:01:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.752900", + "Timestamp": "2024-05-16T14:01:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.627900", + "Timestamp": "2024-05-16T14:01:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162900", + "Timestamp": "2024-05-16T14:01:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.202900", + "Timestamp": "2024-05-16T14:01:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T14:01:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170200", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166200", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136000", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.176000", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076000", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.870500", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.974000", + "Timestamp": "2024-05-16T14:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.689600", + "Timestamp": "2024-05-16T14:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.296200", + "Timestamp": "2024-05-16T14:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266200", + "Timestamp": "2024-05-16T14:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.166200", + "Timestamp": "2024-05-16T14:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.570100", + "Timestamp": "2024-05-16T14:01:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.382200", + "Timestamp": "2024-05-16T14:01:17.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.377200", + "Timestamp": "2024-05-16T14:01:17.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.252200", + "Timestamp": "2024-05-16T14:01:17.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099700", + "Timestamp": "2024-05-16T14:01:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T14:01:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039700", + "Timestamp": "2024-05-16T14:01:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.732400", + "Timestamp": "2024-05-16T14:01:09.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.727400", + "Timestamp": "2024-05-16T14:01:09.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.602400", + "Timestamp": "2024-05-16T14:01:09.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.572900", + "Timestamp": "2024-05-16T14:01:08.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.873200", + "Timestamp": "2024-05-16T14:01:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.355400", + "Timestamp": "2024-05-16T14:00:55.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.350400", + "Timestamp": "2024-05-16T14:00:55.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.225400", + "Timestamp": "2024-05-16T14:00:55.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085800", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082100", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025800", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114200", + "Timestamp": "2024-05-16T13:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.691400", + "Timestamp": "2024-05-16T13:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.686400", + "Timestamp": "2024-05-16T13:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.561400", + "Timestamp": "2024-05-16T13:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.466300", + "Timestamp": "2024-05-16T13:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.461300", + "Timestamp": "2024-05-16T13:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.336300", + "Timestamp": "2024-05-16T13:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.128000", + "Timestamp": "2024-05-16T13:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.123000", + "Timestamp": "2024-05-16T13:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.998000", + "Timestamp": "2024-05-16T13:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.671300", + "Timestamp": "2024-05-16T13:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.666300", + "Timestamp": "2024-05-16T13:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.541300", + "Timestamp": "2024-05-16T13:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.119800", + "Timestamp": "2024-05-16T13:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.114800", + "Timestamp": "2024-05-16T13:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.989800", + "Timestamp": "2024-05-16T13:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.120100", + "Timestamp": "2024-05-16T13:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.264300", + "Timestamp": "2024-05-16T13:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.203400", + "Timestamp": "2024-05-16T13:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.243400", + "Timestamp": "2024-05-16T13:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143400", + "Timestamp": "2024-05-16T13:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224500", + "Timestamp": "2024-05-16T13:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.648200", + "Timestamp": "2024-05-16T13:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.479300", + "Timestamp": "2024-05-16T13:46:52.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.474300", + "Timestamp": "2024-05-16T13:46:52.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.349300", + "Timestamp": "2024-05-16T13:46:52.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217900", + "Timestamp": "2024-05-16T13:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.865700", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.860700", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.735700", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.818200", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.813200", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.688200", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.656900", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.626900", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.526900", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125200", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121200", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065200", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147100", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143400", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087100", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.176600", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.613900", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.608900", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.483900", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.726400", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.721400", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.596400", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.014400", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.076300", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.046300", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.946300", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.164600", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298400", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268400", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168400", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.563500", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.558500", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.433500", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.633400", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.628400", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.503400", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.660700", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.044700", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.039700", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.914700", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.792500", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.787500", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.662500", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.559700", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.461800", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.456800", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.331800", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.967500", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222000", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.038000", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.033000", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.908000", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.488500", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.450500", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.665700", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.660700", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.535700", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.773400", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.505600", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.475600", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.375600", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.444700", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.819900", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.814900", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.689900", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.580400", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.575400", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.450400", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.037500", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.960500", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.955500", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.830500", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.293300", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.288300", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.163300", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.521200", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.516200", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.391200", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.433000", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.428000", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.303000", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.459300", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.454300", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.329300", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.438000", + "Timestamp": "2024-05-16T13:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.433000", + "Timestamp": "2024-05-16T13:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.308000", + "Timestamp": "2024-05-16T13:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106700", + "Timestamp": "2024-05-16T13:46:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T13:46:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046700", + "Timestamp": "2024-05-16T13:46:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.751500", + "Timestamp": "2024-05-16T13:46:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103200", + "Timestamp": "2024-05-16T13:46:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T13:46:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043200", + "Timestamp": "2024-05-16T13:46:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.657000", + "Timestamp": "2024-05-16T13:46:16.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.652000", + "Timestamp": "2024-05-16T13:46:16.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.527000", + "Timestamp": "2024-05-16T13:46:16.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.793000", + "Timestamp": "2024-05-16T13:46:16.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.763000", + "Timestamp": "2024-05-16T13:46:16.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.663000", + "Timestamp": "2024-05-16T13:46:16.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.276300", + "Timestamp": "2024-05-16T13:46:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.334100", + "Timestamp": "2024-05-16T13:46:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.683200", + "Timestamp": "2024-05-16T13:46:13.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T13:46:10.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-16T13:46:10.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041200", + "Timestamp": "2024-05-16T13:46:10.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.767300", + "Timestamp": "2024-05-16T13:46:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.300500", + "Timestamp": "2024-05-16T13:46:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.295500", + "Timestamp": "2024-05-16T13:46:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170500", + "Timestamp": "2024-05-16T13:46:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.543900", + "Timestamp": "2024-05-16T13:45:58.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T13:45:58.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T13:45:58.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040800", + "Timestamp": "2024-05-16T13:45:58.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.357000", + "Timestamp": "2024-05-16T13:45:54.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152200", + "Timestamp": "2024-05-16T13:45:52.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148500", + "Timestamp": "2024-05-16T13:45:52.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092200", + "Timestamp": "2024-05-16T13:45:52.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101400", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097700", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041400", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.022500", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.017500", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.892500", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110900", + "Timestamp": "2024-05-16T13:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-16T13:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050900", + "Timestamp": "2024-05-16T13:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.444400", + "Timestamp": "2024-05-16T13:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.643200", + "Timestamp": "2024-05-16T13:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.613200", + "Timestamp": "2024-05-16T13:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.513200", + "Timestamp": "2024-05-16T13:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.071100", + "Timestamp": "2024-05-16T13:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.227000", + "Timestamp": "2024-05-16T13:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.860400", + "Timestamp": "2024-05-16T13:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.855400", + "Timestamp": "2024-05-16T13:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.730400", + "Timestamp": "2024-05-16T13:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.917100", + "Timestamp": "2024-05-16T13:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070300", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066600", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010300", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.286700", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.281700", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.156700", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224900", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.903000", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160700", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157000", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100700", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113300", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109600", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053300", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.188500", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.804000", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.799000", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.674000", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.164100", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.890000", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.885000", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.760000", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.425700", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.098900", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.017600", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.987600", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.887600", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.408100", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.571700", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.265500", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.260500", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.135500", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.357200", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.352200", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.227200", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.880000", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.850000", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.750000", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.978300", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.895800", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.890800", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.765800", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144800", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044800", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222300", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.458100", + "Timestamp": "2024-05-16T13:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.882500", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T13:31:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145800", + "Timestamp": "2024-05-16T13:31:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045800", + "Timestamp": "2024-05-16T13:31:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.833100", + "Timestamp": "2024-05-16T13:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.837000", + "Timestamp": "2024-05-16T13:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.764700", + "Timestamp": "2024-05-16T13:31:16.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.734700", + "Timestamp": "2024-05-16T13:31:16.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.634700", + "Timestamp": "2024-05-16T13:31:16.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.252100", + "Timestamp": "2024-05-16T13:31:12.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.247100", + "Timestamp": "2024-05-16T13:31:12.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122100", + "Timestamp": "2024-05-16T13:31:12.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-16T13:31:08.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148300", + "Timestamp": "2024-05-16T13:31:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.188300", + "Timestamp": "2024-05-16T13:31:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088300", + "Timestamp": "2024-05-16T13:31:07.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.697500", + "Timestamp": "2024-05-16T13:31:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.692500", + "Timestamp": "2024-05-16T13:31:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.567500", + "Timestamp": "2024-05-16T13:31:05.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.201900", + "Timestamp": "2024-05-16T13:31:02.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.196900", + "Timestamp": "2024-05-16T13:31:02.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.071900", + "Timestamp": "2024-05-16T13:31:02.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T13:31:01.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144800", + "Timestamp": "2024-05-16T13:31:01.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044800", + "Timestamp": "2024-05-16T13:31:01.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111100", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t1.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071400", + "Timestamp": "2024-05-16T13:17:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t1.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.011400", + "Timestamp": "2024-05-16T13:17:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t1.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011400", + "Timestamp": "2024-05-16T13:17:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431000", + "Timestamp": "2024-05-16T13:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.830100", + "Timestamp": "2024-05-16T13:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.825100", + "Timestamp": "2024-05-16T13:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.700100", + "Timestamp": "2024-05-16T13:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176000", + "Timestamp": "2024-05-16T13:16:59.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172300", + "Timestamp": "2024-05-16T13:16:59.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116000", + "Timestamp": "2024-05-16T13:16:59.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.288200", + "Timestamp": "2024-05-16T13:16:55.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258200", + "Timestamp": "2024-05-16T13:16:55.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158200", + "Timestamp": "2024-05-16T13:16:55.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.914400", + "Timestamp": "2024-05-16T13:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.909400", + "Timestamp": "2024-05-16T13:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.784400", + "Timestamp": "2024-05-16T13:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.012800", + "Timestamp": "2024-05-16T13:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.007800", + "Timestamp": "2024-05-16T13:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.882800", + "Timestamp": "2024-05-16T13:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.320800", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.315800", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.190800", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.931400", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.901400", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.801400", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.040900", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.035900", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.910900", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.502300", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.472300", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.372300", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.132700", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.102700", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.002700", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.892600", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.989400", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.071700", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.093600", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.427600", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.977500", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.753000", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.707600", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.175300", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.170300", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.045300", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.434800", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.931100", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.926100", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.801100", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.584300", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.554300", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.454300", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.307000", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143300", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139600", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083300", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.904300", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.843300", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.838300", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.713300", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.395500", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.365500", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.265500", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.263700", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258700", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133700", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172800", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168800", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095500", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035500", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.302500", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.297500", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172500", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.974300", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.969300", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.844300", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.619900", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.728100", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.616500", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.611500", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.486500", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.905400", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.900400", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.775400", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.064500", + "Timestamp": "2024-05-16T13:16:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.059500", + "Timestamp": "2024-05-16T13:16:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.934500", + "Timestamp": "2024-05-16T13:16:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152700", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192700", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092700", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.536900", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.430800", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.400800", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.300800", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101800", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041800", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095400", + "Timestamp": "2024-05-16T13:16:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091700", + "Timestamp": "2024-05-16T13:16:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035400", + "Timestamp": "2024-05-16T13:16:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.411500", + "Timestamp": "2024-05-16T13:16:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.406500", + "Timestamp": "2024-05-16T13:16:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.281500", + "Timestamp": "2024-05-16T13:16:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.878100", + "Timestamp": "2024-05-16T13:16:16.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.848100", + "Timestamp": "2024-05-16T13:16:16.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.748100", + "Timestamp": "2024-05-16T13:16:16.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.363700", + "Timestamp": "2024-05-16T13:16:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.691300", + "Timestamp": "2024-05-16T13:16:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.686300", + "Timestamp": "2024-05-16T13:16:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.561300", + "Timestamp": "2024-05-16T13:16:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.166500", + "Timestamp": "2024-05-16T13:16:07.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.750600", + "Timestamp": "2024-05-16T13:16:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.720600", + "Timestamp": "2024-05-16T13:16:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.620600", + "Timestamp": "2024-05-16T13:16:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117900", + "Timestamp": "2024-05-16T13:16:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114200", + "Timestamp": "2024-05-16T13:16:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057900", + "Timestamp": "2024-05-16T13:16:03.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.367400", + "Timestamp": "2024-05-16T13:16:00.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.397900", + "Timestamp": "2024-05-16T13:16:00.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.488400", + "Timestamp": "2024-05-16T13:15:55.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.483400", + "Timestamp": "2024-05-16T13:15:55.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.358400", + "Timestamp": "2024-05-16T13:15:55.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.386100", + "Timestamp": "2024-05-16T13:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.381100", + "Timestamp": "2024-05-16T13:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.256100", + "Timestamp": "2024-05-16T13:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.295500", + "Timestamp": "2024-05-16T13:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.464900", + "Timestamp": "2024-05-16T13:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.459900", + "Timestamp": "2024-05-16T13:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.334900", + "Timestamp": "2024-05-16T13:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.789500", + "Timestamp": "2024-05-16T13:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.351400", + "Timestamp": "2024-05-16T13:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.346400", + "Timestamp": "2024-05-16T13:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.221400", + "Timestamp": "2024-05-16T13:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.468100", + "Timestamp": "2024-05-16T13:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114300", + "Timestamp": "2024-05-16T13:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154300", + "Timestamp": "2024-05-16T13:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054300", + "Timestamp": "2024-05-16T13:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.667300", + "Timestamp": "2024-05-16T13:01:55.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.916200", + "Timestamp": "2024-05-16T13:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.033100", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.003100", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.903100", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.414100", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.409100", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.284100", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.434600", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.080300", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.843700", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.843800", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.782900", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.752900", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.652900", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.938100", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.078500", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.073500", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.948500", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.514700", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.509700", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.384700", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.520800", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.405500", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.400500", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.275500", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.361500", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.356500", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.231500", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.050300", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.045300", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.920300", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.847900", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.842900", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.717900", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.027300", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.022300", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.897300", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.056600", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.051600", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.926600", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149400", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145700", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089400", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.915200", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418200", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.451500", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.446500", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.321500", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.210400", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.250400", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150400", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.433600", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.428600", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.303600", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.071400", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.066400", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.941400", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.640500", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.029700", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.024700", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.899700", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.189000", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.186000", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129000", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.763000", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.144600", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.907500", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.902500", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.777500", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.555800", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.876300", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.907100", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.877100", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.777100", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.963300", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.958300", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.833300", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144700", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141000", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084700", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.059300", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.054300", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.929300", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.908400", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360700", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.330700", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230700", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.758400", + "Timestamp": "2024-05-16T13:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.728400", + "Timestamp": "2024-05-16T13:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.628400", + "Timestamp": "2024-05-16T13:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.699300", + "Timestamp": "2024-05-16T13:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.694300", + "Timestamp": "2024-05-16T13:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.569300", + "Timestamp": "2024-05-16T13:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.821700", + "Timestamp": "2024-05-16T13:01:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.816700", + "Timestamp": "2024-05-16T13:01:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.691700", + "Timestamp": "2024-05-16T13:01:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.525900", + "Timestamp": "2024-05-16T13:01:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.520900", + "Timestamp": "2024-05-16T13:01:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.395900", + "Timestamp": "2024-05-16T13:01:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.342400", + "Timestamp": "2024-05-16T13:01:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.337400", + "Timestamp": "2024-05-16T13:01:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212400", + "Timestamp": "2024-05-16T13:01:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.215500", + "Timestamp": "2024-05-16T13:01:10.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.210500", + "Timestamp": "2024-05-16T13:01:10.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085500", + "Timestamp": "2024-05-16T13:01:10.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.722000", + "Timestamp": "2024-05-16T13:01:07.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.477300", + "Timestamp": "2024-05-16T13:01:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.472300", + "Timestamp": "2024-05-16T13:01:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.347300", + "Timestamp": "2024-05-16T13:01:05.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.459700", + "Timestamp": "2024-05-16T13:01:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.454700", + "Timestamp": "2024-05-16T13:01:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.329700", + "Timestamp": "2024-05-16T13:01:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119100", + "Timestamp": "2024-05-16T13:00:58.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t1.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.016700", + "Timestamp": "2024-05-16T12:48:06.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145100", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141400", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085100", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.924400", + "Timestamp": "2024-05-16T12:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.919400", + "Timestamp": "2024-05-16T12:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.794400", + "Timestamp": "2024-05-16T12:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222200", + "Timestamp": "2024-05-16T12:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.277700", + "Timestamp": "2024-05-16T12:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.272700", + "Timestamp": "2024-05-16T12:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.147700", + "Timestamp": "2024-05-16T12:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.303000", + "Timestamp": "2024-05-16T12:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298000", + "Timestamp": "2024-05-16T12:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.173000", + "Timestamp": "2024-05-16T12:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.188400", + "Timestamp": "2024-05-16T12:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.633000", + "Timestamp": "2024-05-16T12:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.884200", + "Timestamp": "2024-05-16T12:46:51.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.414400", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.409400", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.284400", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.631000", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.568200", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.760500", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.755500", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.630500", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.414100", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.409100", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.284100", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.364200", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.131300", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.126300", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.001300", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090600", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130600", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030600", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.958000", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.743500", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.738500", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.613500", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.828900", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.005600", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.000600", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.875600", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.342800", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.337800", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212800", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.653200", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.608000", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.603000", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.478000", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.697900", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.689400", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.450600", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.809200", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.804200", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.679200", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.663700", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.658700", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.533700", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432300", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.530400", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.303100", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.756600", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047500", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.780600", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.355300", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325300", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.225300", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115000", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222000", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096300", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040300", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.929800", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173300", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.213300", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113300", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.079100", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.074100", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.949100", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.284200", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.694300", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.053700", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.689300", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.048700", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.564300", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.923700", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153500", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149500", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093500", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-16T12:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151500", + "Timestamp": "2024-05-16T12:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051500", + "Timestamp": "2024-05-16T12:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.139900", + "Timestamp": "2024-05-16T12:46:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T12:46:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112900", + "Timestamp": "2024-05-16T12:46:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056600", + "Timestamp": "2024-05-16T12:46:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.023400", + "Timestamp": "2024-05-16T12:46:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.606600", + "Timestamp": "2024-05-16T12:46:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108800", + "Timestamp": "2024-05-16T12:46:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105100", + "Timestamp": "2024-05-16T12:46:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048800", + "Timestamp": "2024-05-16T12:46:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.348000", + "Timestamp": "2024-05-16T12:46:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343000", + "Timestamp": "2024-05-16T12:46:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.218000", + "Timestamp": "2024-05-16T12:46:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.374700", + "Timestamp": "2024-05-16T12:46:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.369700", + "Timestamp": "2024-05-16T12:46:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.244700", + "Timestamp": "2024-05-16T12:46:17.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.185400", + "Timestamp": "2024-05-16T12:46:17.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181400", + "Timestamp": "2024-05-16T12:46:17.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T12:46:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.876100", + "Timestamp": "2024-05-16T12:46:16.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.216400", + "Timestamp": "2024-05-16T12:46:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.211400", + "Timestamp": "2024-05-16T12:46:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086400", + "Timestamp": "2024-05-16T12:46:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.444300", + "Timestamp": "2024-05-16T12:46:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.517500", + "Timestamp": "2024-05-16T12:46:08.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115000", + "Timestamp": "2024-05-16T12:46:00.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T12:46:00.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055000", + "Timestamp": "2024-05-16T12:46:00.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070900", + "Timestamp": "2024-05-16T12:45:55.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067200", + "Timestamp": "2024-05-16T12:45:55.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010900", + "Timestamp": "2024-05-16T12:45:55.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.353800", + "Timestamp": "2024-05-16T12:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440400", + "Timestamp": "2024-05-16T12:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.167500", + "Timestamp": "2024-05-16T12:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.162500", + "Timestamp": "2024-05-16T12:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.037500", + "Timestamp": "2024-05-16T12:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.056700", + "Timestamp": "2024-05-16T12:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.051700", + "Timestamp": "2024-05-16T12:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.926700", + "Timestamp": "2024-05-16T12:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.453600", + "Timestamp": "2024-05-16T12:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.639600", + "Timestamp": "2024-05-16T12:31:56.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.634600", + "Timestamp": "2024-05-16T12:31:56.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.509600", + "Timestamp": "2024-05-16T12:31:56.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.692400", + "Timestamp": "2024-05-16T12:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.477700", + "Timestamp": "2024-05-16T12:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.472700", + "Timestamp": "2024-05-16T12:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.347700", + "Timestamp": "2024-05-16T12:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.748800", + "Timestamp": "2024-05-16T12:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.421900", + "Timestamp": "2024-05-16T12:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416400", + "Timestamp": "2024-05-16T12:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.215000", + "Timestamp": "2024-05-16T12:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.185000", + "Timestamp": "2024-05-16T12:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.085000", + "Timestamp": "2024-05-16T12:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.070800", + "Timestamp": "2024-05-16T12:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.716200", + "Timestamp": "2024-05-16T12:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.063200", + "Timestamp": "2024-05-16T12:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.033200", + "Timestamp": "2024-05-16T12:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.933200", + "Timestamp": "2024-05-16T12:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.897700", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172700", + "Timestamp": "2024-05-16T12:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168700", + "Timestamp": "2024-05-16T12:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112700", + "Timestamp": "2024-05-16T12:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270300", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265300", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140300", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.721700", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.716700", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.591700", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.849800", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.466400", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.830300", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.825300", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.700300", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.309400", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.279400", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.179400", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211500", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.958400", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.525400", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.520400", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.395400", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157100", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153100", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.786500", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114700", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054700", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.457100", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.417100", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.412100", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.287100", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.427900", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.422900", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.297900", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100500", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040500", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.467000", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.462000", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.337000", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.496900", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.817100", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.812100", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.687100", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.055500", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.513600", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.754600", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.749600", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.624600", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.260400", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.185200", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181500", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125200", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.753800", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.748800", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.623800", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.989000", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.984000", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.859000", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.829400", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223700", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.351400", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.346400", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.221400", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.937700", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.932700", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.807700", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.647100", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.356200", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.326200", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.226200", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.587700", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.582700", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.457700", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.498400", + "Timestamp": "2024-05-16T12:31:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.340300", + "Timestamp": "2024-05-16T12:31:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.310300", + "Timestamp": "2024-05-16T12:31:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.210300", + "Timestamp": "2024-05-16T12:31:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.827800", + "Timestamp": "2024-05-16T12:31:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.915800", + "Timestamp": "2024-05-16T12:31:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.797800", + "Timestamp": "2024-05-16T12:31:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.885800", + "Timestamp": "2024-05-16T12:31:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.697800", + "Timestamp": "2024-05-16T12:31:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.785800", + "Timestamp": "2024-05-16T12:31:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.449000", + "Timestamp": "2024-05-16T12:31:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.234600", + "Timestamp": "2024-05-16T12:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.740800", + "Timestamp": "2024-05-16T12:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.253600", + "Timestamp": "2024-05-16T12:31:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.248600", + "Timestamp": "2024-05-16T12:31:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123600", + "Timestamp": "2024-05-16T12:31:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.346800", + "Timestamp": "2024-05-16T12:31:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.341800", + "Timestamp": "2024-05-16T12:31:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.216800", + "Timestamp": "2024-05-16T12:31:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.091000", + "Timestamp": "2024-05-16T12:31:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.086000", + "Timestamp": "2024-05-16T12:31:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.961000", + "Timestamp": "2024-05-16T12:31:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.569500", + "Timestamp": "2024-05-16T12:31:08.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.488300", + "Timestamp": "2024-05-16T12:31:08.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089700", + "Timestamp": "2024-05-16T12:31:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086000", + "Timestamp": "2024-05-16T12:31:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029700", + "Timestamp": "2024-05-16T12:31:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.014900", + "Timestamp": "2024-05-16T12:31:01.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.009900", + "Timestamp": "2024-05-16T12:31:01.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.884900", + "Timestamp": "2024-05-16T12:31:01.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.293500", + "Timestamp": "2024-05-16T12:30:57.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.288500", + "Timestamp": "2024-05-16T12:30:57.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.163500", + "Timestamp": "2024-05-16T12:30:57.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095400", + "Timestamp": "2024-05-16T12:30:55.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091700", + "Timestamp": "2024-05-16T12:30:55.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035400", + "Timestamp": "2024-05-16T12:30:55.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T12:18:41.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120900", + "Timestamp": "2024-05-16T12:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.926200", + "Timestamp": "2024-05-16T12:17:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.921200", + "Timestamp": "2024-05-16T12:17:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.796200", + "Timestamp": "2024-05-16T12:17:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.312400", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.307400", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.182400", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.433600", + "Timestamp": "2024-05-16T12:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.637500", + "Timestamp": "2024-05-16T12:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.632500", + "Timestamp": "2024-05-16T12:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.507500", + "Timestamp": "2024-05-16T12:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.085900", + "Timestamp": "2024-05-16T12:16:47.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.080900", + "Timestamp": "2024-05-16T12:16:47.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.955900", + "Timestamp": "2024-05-16T12:16:47.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222700", + "Timestamp": "2024-05-16T12:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.138400", + "Timestamp": "2024-05-16T12:16:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.133400", + "Timestamp": "2024-05-16T12:16:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.008400", + "Timestamp": "2024-05-16T12:16:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.963600", + "Timestamp": "2024-05-16T12:16:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.958600", + "Timestamp": "2024-05-16T12:16:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.833600", + "Timestamp": "2024-05-16T12:16:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.711100", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.925700", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.158200", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139500", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135800", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079500", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.179200", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.174200", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.049200", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229700", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278700", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273700", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148700", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.952400", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.922400", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.822400", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154100", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150400", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094100", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.304600", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.381000", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.376000", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.251000", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.846800", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.703300", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.891900", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.886900", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.761900", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.986000", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.361700", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.356700", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.231700", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.610800", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.019700", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.014700", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.889700", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.857800", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.852800", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.727800", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.973700", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.274900", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.269900", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.144900", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.514600", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.484600", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.384600", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.677400", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.647400", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.547400", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166600", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.206600", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.909100", + "Timestamp": "2024-05-16T12:16:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.257000", + "Timestamp": "2024-05-16T12:16:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.252000", + "Timestamp": "2024-05-16T12:16:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.127000", + "Timestamp": "2024-05-16T12:16:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-16T12:16:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.634400", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.604400", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.504400", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.275100", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270100", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145100", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.857900", + "Timestamp": "2024-05-16T12:16:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.578200", + "Timestamp": "2024-05-16T12:16:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.573200", + "Timestamp": "2024-05-16T12:16:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.448200", + "Timestamp": "2024-05-16T12:16:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-16T12:16:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147200", + "Timestamp": "2024-05-16T12:16:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047200", + "Timestamp": "2024-05-16T12:16:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.603000", + "Timestamp": "2024-05-16T12:16:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.598000", + "Timestamp": "2024-05-16T12:16:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.473000", + "Timestamp": "2024-05-16T12:16:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.188400", + "Timestamp": "2024-05-16T12:16:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.123300", + "Timestamp": "2024-05-16T12:16:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.257100", + "Timestamp": "2024-05-16T12:16:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.117200", + "Timestamp": "2024-05-16T12:16:01.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T12:16:00.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T12:16:00.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049500", + "Timestamp": "2024-05-16T12:16:00.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.540500", + "Timestamp": "2024-05-16T12:15:55.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.535500", + "Timestamp": "2024-05-16T12:15:55.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.410500", + "Timestamp": "2024-05-16T12:15:55.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.806500", + "Timestamp": "2024-05-16T12:15:55.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.801500", + "Timestamp": "2024-05-16T12:15:55.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.676500", + "Timestamp": "2024-05-16T12:15:55.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.622000", + "Timestamp": "2024-05-16T12:06:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.199400", + "Timestamp": "2024-05-16T12:02:16.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.194400", + "Timestamp": "2024-05-16T12:02:16.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.069400", + "Timestamp": "2024-05-16T12:02:16.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108500", + "Timestamp": "2024-05-16T12:02:10.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T12:02:10.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048500", + "Timestamp": "2024-05-16T12:02:10.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211400", + "Timestamp": "2024-05-16T12:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.244700", + "Timestamp": "2024-05-16T12:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.346200", + "Timestamp": "2024-05-16T12:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.543100", + "Timestamp": "2024-05-16T12:01:55.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.538100", + "Timestamp": "2024-05-16T12:01:55.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.413100", + "Timestamp": "2024-05-16T12:01:55.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.891900", + "Timestamp": "2024-05-16T12:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.895700", + "Timestamp": "2024-05-16T12:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.890700", + "Timestamp": "2024-05-16T12:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.765700", + "Timestamp": "2024-05-16T12:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.330500", + "Timestamp": "2024-05-16T12:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.963600", + "Timestamp": "2024-05-16T12:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.958600", + "Timestamp": "2024-05-16T12:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.833600", + "Timestamp": "2024-05-16T12:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111900", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051900", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151500", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051500", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.484700", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.292800", + "Timestamp": "2024-05-16T12:01:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.287800", + "Timestamp": "2024-05-16T12:01:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162800", + "Timestamp": "2024-05-16T12:01:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.314900", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.309900", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.184900", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.584400", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.579400", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.454400", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.199800", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094900", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091200", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034900", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.465500", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.110300", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135000", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131300", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075000", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.436300", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.040300", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.035300", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.910300", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.711200", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423200", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423200", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.890600", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.885600", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.760600", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.334600", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.329600", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.204600", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.601600", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.596600", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.471600", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.277600", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.272600", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147600", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.574700", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.569700", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.444700", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166800", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163800", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.914200", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.909200", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.784200", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.235000", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.230000", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.105000", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.820300", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.815300", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.690300", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.410200", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.405200", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.280200", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.405200", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113400", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.412800", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.008400", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.866000", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.861000", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.736000", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.615400", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.544500", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.585400", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.514500", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.485400", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.414500", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.256800", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.251800", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126800", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.516800", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.486800", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.386800", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.767300", + "Timestamp": "2024-05-16T12:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.762300", + "Timestamp": "2024-05-16T12:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.637300", + "Timestamp": "2024-05-16T12:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.942000", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.937000", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.812000", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.393800", + "Timestamp": "2024-05-16T12:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.388800", + "Timestamp": "2024-05-16T12:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.263800", + "Timestamp": "2024-05-16T12:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.667200", + "Timestamp": "2024-05-16T12:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.662200", + "Timestamp": "2024-05-16T12:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.537200", + "Timestamp": "2024-05-16T12:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150000", + "Timestamp": "2024-05-16T12:01:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190000", + "Timestamp": "2024-05-16T12:01:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090000", + "Timestamp": "2024-05-16T12:01:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088500", + "Timestamp": "2024-05-16T12:01:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084800", + "Timestamp": "2024-05-16T12:01:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028500", + "Timestamp": "2024-05-16T12:01:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.232600", + "Timestamp": "2024-05-16T12:01:16.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.281900", + "Timestamp": "2024-05-16T12:01:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276900", + "Timestamp": "2024-05-16T12:01:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.151900", + "Timestamp": "2024-05-16T12:01:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.619500", + "Timestamp": "2024-05-16T12:01:13.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.589500", + "Timestamp": "2024-05-16T12:01:13.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.489500", + "Timestamp": "2024-05-16T12:01:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.563900", + "Timestamp": "2024-05-16T12:00:58.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098000", + "Timestamp": "2024-05-16T12:00:57.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094300", + "Timestamp": "2024-05-16T12:00:57.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038000", + "Timestamp": "2024-05-16T12:00:57.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.814100", + "Timestamp": "2024-05-16T11:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.125000", + "Timestamp": "2024-05-16T11:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.100600", + "Timestamp": "2024-05-16T11:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.189300", + "Timestamp": "2024-05-16T11:46:53.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.159300", + "Timestamp": "2024-05-16T11:46:53.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.059300", + "Timestamp": "2024-05-16T11:46:53.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.002100", + "Timestamp": "2024-05-16T11:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.997100", + "Timestamp": "2024-05-16T11:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.872100", + "Timestamp": "2024-05-16T11:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235600", + "Timestamp": "2024-05-16T11:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.257900", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.252900", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127900", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.526400", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.937200", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.932200", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.807200", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.408700", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.544000", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.410900", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.405900", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.280900", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.123100", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.118100", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.993100", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.646100", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.641100", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.516100", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.438800", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.632300", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.616600", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.611600", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.486600", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.808900", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.803900", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.678900", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167200", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163200", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.011600", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.006600", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.881600", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.421800", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.416800", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.291800", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.582800", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.316300", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.311300", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.186300", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.828500", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.598400", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.311000", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.306000", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.181000", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231000", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.175500", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.170500", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.045500", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121500", + "Timestamp": "2024-05-16T11:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117800", + "Timestamp": "2024-05-16T11:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061500", + "Timestamp": "2024-05-16T11:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.429400", + "Timestamp": "2024-05-16T11:46:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.118900", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.126500", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.096500", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.996500", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.755100", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.881000", + "Timestamp": "2024-05-16T11:46:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131600", + "Timestamp": "2024-05-16T11:46:17.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127900", + "Timestamp": "2024-05-16T11:46:17.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071600", + "Timestamp": "2024-05-16T11:46:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297000", + "Timestamp": "2024-05-16T11:46:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267000", + "Timestamp": "2024-05-16T11:46:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167000", + "Timestamp": "2024-05-16T11:46:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149800", + "Timestamp": "2024-05-16T11:46:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146100", + "Timestamp": "2024-05-16T11:46:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089800", + "Timestamp": "2024-05-16T11:46:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.468800", + "Timestamp": "2024-05-16T11:46:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.438800", + "Timestamp": "2024-05-16T11:46:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.338800", + "Timestamp": "2024-05-16T11:46:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.731100", + "Timestamp": "2024-05-16T11:46:16.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.825900", + "Timestamp": "2024-05-16T11:46:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.154000", + "Timestamp": "2024-05-16T11:46:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.149000", + "Timestamp": "2024-05-16T11:46:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.024000", + "Timestamp": "2024-05-16T11:46:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.299800", + "Timestamp": "2024-05-16T11:46:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075000", + "Timestamp": "2024-05-16T11:46:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071300", + "Timestamp": "2024-05-16T11:46:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015000", + "Timestamp": "2024-05-16T11:46:06.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.507700", + "Timestamp": "2024-05-16T11:45:55.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.532500", + "Timestamp": "2024-05-16T11:45:55.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208100", + "Timestamp": "2024-05-16T11:45:54.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T11:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.641000", + "Timestamp": "2024-05-16T11:32:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.636000", + "Timestamp": "2024-05-16T11:32:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.511000", + "Timestamp": "2024-05-16T11:32:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.544900", + "Timestamp": "2024-05-16T11:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.774000", + "Timestamp": "2024-05-16T11:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.769000", + "Timestamp": "2024-05-16T11:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.644000", + "Timestamp": "2024-05-16T11:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.715600", + "Timestamp": "2024-05-16T11:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.710600", + "Timestamp": "2024-05-16T11:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.585600", + "Timestamp": "2024-05-16T11:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T11:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.417400", + "Timestamp": "2024-05-16T11:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.627600", + "Timestamp": "2024-05-16T11:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.622600", + "Timestamp": "2024-05-16T11:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.497600", + "Timestamp": "2024-05-16T11:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.450800", + "Timestamp": "2024-05-16T11:31:59.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.445800", + "Timestamp": "2024-05-16T11:31:59.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.320800", + "Timestamp": "2024-05-16T11:31:59.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171800", + "Timestamp": "2024-05-16T11:31:57.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167800", + "Timestamp": "2024-05-16T11:31:57.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111800", + "Timestamp": "2024-05-16T11:31:57.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130700", + "Timestamp": "2024-05-16T11:31:54.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127000", + "Timestamp": "2024-05-16T11:31:54.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070700", + "Timestamp": "2024-05-16T11:31:54.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.698100", + "Timestamp": "2024-05-16T11:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.863900", + "Timestamp": "2024-05-16T11:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.833900", + "Timestamp": "2024-05-16T11:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.733900", + "Timestamp": "2024-05-16T11:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.427100", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.422100", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.297100", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.269700", + "Timestamp": "2024-05-16T11:31:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.264700", + "Timestamp": "2024-05-16T11:31:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139700", + "Timestamp": "2024-05-16T11:31:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.474500", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.444500", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.344500", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.511700", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.506700", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.381700", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.741700", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.079300", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.897800", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.892800", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.767800", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.688300", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.683300", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.558300", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.445400", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.801100", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.771100", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.671100", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.074900", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.674200", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.303000", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.335500", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298000", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.330500", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.173000", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.205500", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.231200", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.226200", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.101200", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.666400", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.661400", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.536400", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.860900", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.789200", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.759200", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.659200", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.046200", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.848700", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.029600", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.024600", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.899600", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.043100", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.038100", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.913100", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144100", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140100", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084100", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.686700", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120200", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116500", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060200", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.299200", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.515100", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.161900", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.156900", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.031900", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.739500", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.776200", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.771200", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.646200", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.223900", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.218900", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093900", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.061000", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.056000", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.931000", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.049300", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.044300", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.919300", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101000", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097300", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041000", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.145000", + "Timestamp": "2024-05-16T11:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.140000", + "Timestamp": "2024-05-16T11:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.015000", + "Timestamp": "2024-05-16T11:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-16T11:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T11:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049300", + "Timestamp": "2024-05-16T11:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.243300", + "Timestamp": "2024-05-16T11:31:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.888400", + "Timestamp": "2024-05-16T11:31:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.883400", + "Timestamp": "2024-05-16T11:31:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.758400", + "Timestamp": "2024-05-16T11:31:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162300", + "Timestamp": "2024-05-16T11:31:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.202300", + "Timestamp": "2024-05-16T11:31:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102300", + "Timestamp": "2024-05-16T11:31:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.387300", + "Timestamp": "2024-05-16T11:31:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.382300", + "Timestamp": "2024-05-16T11:31:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.257300", + "Timestamp": "2024-05-16T11:31:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150900", + "Timestamp": "2024-05-16T11:31:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147200", + "Timestamp": "2024-05-16T11:31:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090900", + "Timestamp": "2024-05-16T11:31:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120000", + "Timestamp": "2024-05-16T11:31:02.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160000", + "Timestamp": "2024-05-16T11:31:02.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060000", + "Timestamp": "2024-05-16T11:31:02.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.284100", + "Timestamp": "2024-05-16T11:31:02.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.279100", + "Timestamp": "2024-05-16T11:31:02.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.154100", + "Timestamp": "2024-05-16T11:31:02.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.113500", + "Timestamp": "2024-05-16T11:31:01.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.108500", + "Timestamp": "2024-05-16T11:31:01.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.983500", + "Timestamp": "2024-05-16T11:31:01.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.031300", + "Timestamp": "2024-05-16T11:30:56.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.026300", + "Timestamp": "2024-05-16T11:30:56.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.901300", + "Timestamp": "2024-05-16T11:30:56.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066400", + "Timestamp": "2024-05-16T11:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037700", + "Timestamp": "2024-05-16T11:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006400", + "Timestamp": "2024-05-16T11:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.619200", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.589200", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.489200", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T11:17:00.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.926100", + "Timestamp": "2024-05-16T11:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.128700", + "Timestamp": "2024-05-16T11:16:47.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.788300", + "Timestamp": "2024-05-16T11:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.783300", + "Timestamp": "2024-05-16T11:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.658300", + "Timestamp": "2024-05-16T11:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.781900", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.776900", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.651900", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.505000", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.500000", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.375000", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114400", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054400", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.844000", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.129200", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.900400", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.603400", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.598400", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.473400", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.073800", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.068800", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.943800", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.394800", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.364800", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.264800", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.942600", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.937600", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.812600", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.702500", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.697500", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.572500", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.517500", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.512500", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.387500", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.430000", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170800", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.210800", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.084900", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.054900", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.954900", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.207300", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.203300", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147300", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.305600", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302600", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.245600", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.470600", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.465600", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.340600", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.279500", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.274500", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149500", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109600", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049600", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.441200", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.436200", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.311200", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085900", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082200", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025900", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.088000", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.083000", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.958000", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.906200", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.604100", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.599100", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.474100", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.196700", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.191700", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.066700", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.874500", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.013500", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.008500", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.883500", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151600", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147600", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091600", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.042400", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.037400", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.912400", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129600", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169600", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069600", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.256200", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.251200", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.126200", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.490800", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.485800", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.360800", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294700", + "Timestamp": "2024-05-16T11:16:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289700", + "Timestamp": "2024-05-16T11:16:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164700", + "Timestamp": "2024-05-16T11:16:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.953900", + "Timestamp": "2024-05-16T11:16:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.787500", + "Timestamp": "2024-05-16T11:16:17.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.757500", + "Timestamp": "2024-05-16T11:16:17.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.657500", + "Timestamp": "2024-05-16T11:16:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.523300", + "Timestamp": "2024-05-16T11:16:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.493300", + "Timestamp": "2024-05-16T11:16:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.393300", + "Timestamp": "2024-05-16T11:16:17.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.623700", + "Timestamp": "2024-05-16T11:16:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.822600", + "Timestamp": "2024-05-16T11:16:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.792600", + "Timestamp": "2024-05-16T11:16:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.692600", + "Timestamp": "2024-05-16T11:16:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.230600", + "Timestamp": "2024-05-16T11:16:09.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.319300", + "Timestamp": "2024-05-16T11:16:09.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.314300", + "Timestamp": "2024-05-16T11:16:09.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.189300", + "Timestamp": "2024-05-16T11:16:09.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167100", + "Timestamp": "2024-05-16T11:16:08.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163100", + "Timestamp": "2024-05-16T11:16:08.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T11:16:08.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.784000", + "Timestamp": "2024-05-16T11:16:06.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.621800", + "Timestamp": "2024-05-16T11:16:01.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.616800", + "Timestamp": "2024-05-16T11:16:01.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.491800", + "Timestamp": "2024-05-16T11:16:01.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.237500", + "Timestamp": "2024-05-16T11:16:01.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.232500", + "Timestamp": "2024-05-16T11:16:01.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.107500", + "Timestamp": "2024-05-16T11:16:01.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.335200", + "Timestamp": "2024-05-16T11:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.378300", + "Timestamp": "2024-05-16T11:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.330200", + "Timestamp": "2024-05-16T11:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.373300", + "Timestamp": "2024-05-16T11:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.205200", + "Timestamp": "2024-05-16T11:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.248300", + "Timestamp": "2024-05-16T11:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.364000", + "Timestamp": "2024-05-16T11:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071400", + "Timestamp": "2024-05-16T11:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042400", + "Timestamp": "2024-05-16T11:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011400", + "Timestamp": "2024-05-16T11:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.551700", + "Timestamp": "2024-05-16T11:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.569600", + "Timestamp": "2024-05-16T11:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.564600", + "Timestamp": "2024-05-16T11:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.439600", + "Timestamp": "2024-05-16T11:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.450300", + "Timestamp": "2024-05-16T11:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115000", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155000", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055000", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100700", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096700", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040700", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.996600", + "Timestamp": "2024-05-16T11:01:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.966600", + "Timestamp": "2024-05-16T11:01:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.866600", + "Timestamp": "2024-05-16T11:01:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.898800", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.893800", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.768800", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116800", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056800", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.050700", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.771800", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.766800", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.641800", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.267800", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262800", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137800", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.936000", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.931000", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.806000", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.885000", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.880000", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.755000", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.253000", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.248000", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123000", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069700", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040700", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009700", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.481900", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.653200", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.648200", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.523200", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.473500", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.518300", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.513300", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.388300", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.205100", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.200100", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.075100", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.053900", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.597500", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.592500", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.467500", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.214900", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.209900", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.084900", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.726700", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.721700", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.596700", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.385100", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.380100", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.255100", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.867600", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.862600", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.737600", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.635800", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.605800", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.505800", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.119500", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.089500", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.989500", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.808900", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.803900", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.678900", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.368100", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.743700", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.882000", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.877000", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.752000", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046600", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.472700", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.812200", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.807200", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.682200", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.518000", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.513000", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.388000", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.115500", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.085500", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.985500", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.061600", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.056600", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.931600", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.419300", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.414300", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.289300", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.081400", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.076400", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.951400", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.745500", + "Timestamp": "2024-05-16T11:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.243800", + "Timestamp": "2024-05-16T11:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.670600", + "Timestamp": "2024-05-16T11:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.640600", + "Timestamp": "2024-05-16T11:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.540600", + "Timestamp": "2024-05-16T11:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.994000", + "Timestamp": "2024-05-16T11:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.989000", + "Timestamp": "2024-05-16T11:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.864000", + "Timestamp": "2024-05-16T11:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224500", + "Timestamp": "2024-05-16T11:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.145400", + "Timestamp": "2024-05-16T11:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.333400", + "Timestamp": "2024-05-16T11:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.402200", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.397200", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.272200", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063500", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003500", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003500", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T11:01:16.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092300", + "Timestamp": "2024-05-16T11:01:16.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036000", + "Timestamp": "2024-05-16T11:01:16.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.484600", + "Timestamp": "2024-05-16T11:01:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229300", + "Timestamp": "2024-05-16T11:01:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.274700", + "Timestamp": "2024-05-16T11:01:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.269700", + "Timestamp": "2024-05-16T11:01:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.144700", + "Timestamp": "2024-05-16T11:01:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108900", + "Timestamp": "2024-05-16T11:01:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T11:01:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048900", + "Timestamp": "2024-05-16T11:01:13.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226900", + "Timestamp": "2024-05-16T11:01:09.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.060500", + "Timestamp": "2024-05-16T11:01:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217300", + "Timestamp": "2024-05-16T11:01:02.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.900800", + "Timestamp": "2024-05-16T11:01:02.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.895800", + "Timestamp": "2024-05-16T11:01:02.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.770800", + "Timestamp": "2024-05-16T11:01:02.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.205300", + "Timestamp": "2024-05-16T11:01:01.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.121900", + "Timestamp": "2024-05-16T10:47:16.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.338300", + "Timestamp": "2024-05-16T10:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.333300", + "Timestamp": "2024-05-16T10:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.208300", + "Timestamp": "2024-05-16T10:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.375900", + "Timestamp": "2024-05-16T10:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.345300", + "Timestamp": "2024-05-16T10:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.831100", + "Timestamp": "2024-05-16T10:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.826100", + "Timestamp": "2024-05-16T10:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.701100", + "Timestamp": "2024-05-16T10:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T10:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.089900", + "Timestamp": "2024-05-16T10:46:51.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.373300", + "Timestamp": "2024-05-16T10:46:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.870300", + "Timestamp": "2024-05-16T10:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.865300", + "Timestamp": "2024-05-16T10:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.740300", + "Timestamp": "2024-05-16T10:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.746900", + "Timestamp": "2024-05-16T10:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.992900", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095500", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035500", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.480500", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.593600", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.588600", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.463600", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.049400", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.000400", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.995400", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.870400", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.700200", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.871300", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.361800", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.356800", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.231800", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.396100", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.391100", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.266100", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070800", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067100", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010800", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.032800", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.213000", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.363300", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.042500", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149300", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145300", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089300", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.353600", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.323600", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.223600", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.278500", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.215000", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.185000", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.085000", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.594500", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.351700", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.021200", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.016200", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.891200", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.485600", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270000", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265000", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140000", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.884900", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.879900", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.754900", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.268600", + "Timestamp": "2024-05-16T10:46:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.238600", + "Timestamp": "2024-05-16T10:46:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.138600", + "Timestamp": "2024-05-16T10:46:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.078800", + "Timestamp": "2024-05-16T10:46:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.502300", + "Timestamp": "2024-05-16T10:46:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.497300", + "Timestamp": "2024-05-16T10:46:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.372300", + "Timestamp": "2024-05-16T10:46:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.490900", + "Timestamp": "2024-05-16T10:46:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.485900", + "Timestamp": "2024-05-16T10:46:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.360900", + "Timestamp": "2024-05-16T10:46:17.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.228100", + "Timestamp": "2024-05-16T10:46:16.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.500300", + "Timestamp": "2024-05-16T10:46:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.470300", + "Timestamp": "2024-05-16T10:46:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.370300", + "Timestamp": "2024-05-16T10:46:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.766600", + "Timestamp": "2024-05-16T10:46:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.761600", + "Timestamp": "2024-05-16T10:46:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.636600", + "Timestamp": "2024-05-16T10:46:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.383900", + "Timestamp": "2024-05-16T10:46:09.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.378900", + "Timestamp": "2024-05-16T10:46:09.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.253900", + "Timestamp": "2024-05-16T10:46:09.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.099600", + "Timestamp": "2024-05-16T10:46:08.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214200", + "Timestamp": "2024-05-16T10:46:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.722900", + "Timestamp": "2024-05-16T10:46:06.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.944600", + "Timestamp": "2024-05-16T10:46:05.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101900", + "Timestamp": "2024-05-16T10:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098200", + "Timestamp": "2024-05-16T10:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041900", + "Timestamp": "2024-05-16T10:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.898500", + "Timestamp": "2024-05-16T10:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.014500", + "Timestamp": "2024-05-16T10:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.552500", + "Timestamp": "2024-05-16T10:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.547500", + "Timestamp": "2024-05-16T10:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.422500", + "Timestamp": "2024-05-16T10:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.439200", + "Timestamp": "2024-05-16T10:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.434200", + "Timestamp": "2024-05-16T10:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.309200", + "Timestamp": "2024-05-16T10:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.035400", + "Timestamp": "2024-05-16T10:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.803100", + "Timestamp": "2024-05-16T10:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.798100", + "Timestamp": "2024-05-16T10:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.673100", + "Timestamp": "2024-05-16T10:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.302300", + "Timestamp": "2024-05-16T10:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.272300", + "Timestamp": "2024-05-16T10:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172300", + "Timestamp": "2024-05-16T10:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.783500", + "Timestamp": "2024-05-16T10:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.753500", + "Timestamp": "2024-05-16T10:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.653500", + "Timestamp": "2024-05-16T10:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.965000", + "Timestamp": "2024-05-16T10:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.960000", + "Timestamp": "2024-05-16T10:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.835000", + "Timestamp": "2024-05-16T10:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.078500", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.073500", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.948500", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.756100", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.751100", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.626100", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.424700", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.419700", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.294700", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141700", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138000", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081700", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.852800", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.847800", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.722800", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152400", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148700", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092400", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.744400", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.457300", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.203100", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.198100", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.073100", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211500", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130600", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074300", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.298300", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.293300", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.168300", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.089600", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.408200", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.403200", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.278200", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.992700", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.987700", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.862700", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.302100", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.709500", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.704500", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.579500", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.232700", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.227700", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102700", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087100", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083400", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027100", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.026800", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.021800", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.896800", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.085900", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.080900", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.955900", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.972700", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.246500", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.241500", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.116500", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.640100", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.819500", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.201100", + "Timestamp": "2024-05-16T10:31:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.196100", + "Timestamp": "2024-05-16T10:31:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.071100", + "Timestamp": "2024-05-16T10:31:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161200", + "Timestamp": "2024-05-16T10:31:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157200", + "Timestamp": "2024-05-16T10:31:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T10:31:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224200", + "Timestamp": "2024-05-16T10:31:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297800", + "Timestamp": "2024-05-16T10:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267800", + "Timestamp": "2024-05-16T10:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167800", + "Timestamp": "2024-05-16T10:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.170800", + "Timestamp": "2024-05-16T10:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099600", + "Timestamp": "2024-05-16T10:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-16T10:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039600", + "Timestamp": "2024-05-16T10:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.359100", + "Timestamp": "2024-05-16T10:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.354100", + "Timestamp": "2024-05-16T10:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.229100", + "Timestamp": "2024-05-16T10:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.214600", + "Timestamp": "2024-05-16T10:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.458900", + "Timestamp": "2024-05-16T10:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.407900", + "Timestamp": "2024-05-16T10:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.377900", + "Timestamp": "2024-05-16T10:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.277900", + "Timestamp": "2024-05-16T10:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171100", + "Timestamp": "2024-05-16T10:31:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167100", + "Timestamp": "2024-05-16T10:31:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111100", + "Timestamp": "2024-05-16T10:31:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110400", + "Timestamp": "2024-05-16T10:31:17.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106700", + "Timestamp": "2024-05-16T10:31:17.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050400", + "Timestamp": "2024-05-16T10:31:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.191100", + "Timestamp": "2024-05-16T10:31:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.187400", + "Timestamp": "2024-05-16T10:31:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131100", + "Timestamp": "2024-05-16T10:31:17.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.478100", + "Timestamp": "2024-05-16T10:31:16.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473100", + "Timestamp": "2024-05-16T10:31:16.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.348100", + "Timestamp": "2024-05-16T10:31:16.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.341300", + "Timestamp": "2024-05-16T10:31:16.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.336300", + "Timestamp": "2024-05-16T10:31:16.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.211300", + "Timestamp": "2024-05-16T10:31:16.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.390500", + "Timestamp": "2024-05-16T10:31:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.385500", + "Timestamp": "2024-05-16T10:31:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.260500", + "Timestamp": "2024-05-16T10:31:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.215700", + "Timestamp": "2024-05-16T10:31:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.210700", + "Timestamp": "2024-05-16T10:31:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.085700", + "Timestamp": "2024-05-16T10:31:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.445100", + "Timestamp": "2024-05-16T10:31:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.415100", + "Timestamp": "2024-05-16T10:31:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.315100", + "Timestamp": "2024-05-16T10:31:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.211300", + "Timestamp": "2024-05-16T10:31:10.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.251300", + "Timestamp": "2024-05-16T10:31:10.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.151300", + "Timestamp": "2024-05-16T10:31:10.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.112000", + "Timestamp": "2024-05-16T10:31:09.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.082000", + "Timestamp": "2024-05-16T10:31:09.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.982000", + "Timestamp": "2024-05-16T10:31:09.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.437500", + "Timestamp": "2024-05-16T10:31:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.052800", + "Timestamp": "2024-05-16T10:31:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.047800", + "Timestamp": "2024-05-16T10:31:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.922800", + "Timestamp": "2024-05-16T10:31:05.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.006200", + "Timestamp": "2024-05-16T10:31:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301400", + "Timestamp": "2024-05-16T10:30:57.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.271400", + "Timestamp": "2024-05-16T10:30:57.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171400", + "Timestamp": "2024-05-16T10:30:57.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085900", + "Timestamp": "2024-05-16T10:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082200", + "Timestamp": "2024-05-16T10:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025900", + "Timestamp": "2024-05-16T10:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.196100", + "Timestamp": "2024-05-16T10:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.191100", + "Timestamp": "2024-05-16T10:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.066100", + "Timestamp": "2024-05-16T10:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.960800", + "Timestamp": "2024-05-16T10:17:00.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.189500", + "Timestamp": "2024-05-16T10:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.917400", + "Timestamp": "2024-05-16T10:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.522200", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.517200", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.392200", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.075500", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.890100", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.914200", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.924100", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.919100", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.794100", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.054800", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.049800", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.924800", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120700", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.411900", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.406900", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.281900", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.514500", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.484500", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.384500", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.784600", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.112700", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.678000", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.196100", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.274500", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.244500", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.144500", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.749400", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.789400", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.759400", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.659400", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.206500", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.201500", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.076500", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.680800", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.562300", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.557300", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.432300", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.385500", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.380500", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.255500", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.364900", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.359900", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.234900", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174600", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170600", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.804900", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.587800", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.582800", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.457800", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.818500", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.813500", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.688500", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157200", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153500", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.171300", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.166300", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.041300", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.349700", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.344700", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219700", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.890700", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.885700", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.760700", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134600", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130900", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074600", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.843600", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.488000", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.765800", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.760800", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.635800", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.405700", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.400700", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.275700", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.252700", + "Timestamp": "2024-05-16T10:16:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.922800", + "Timestamp": "2024-05-16T10:16:17.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.994900", + "Timestamp": "2024-05-16T10:16:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.624300", + "Timestamp": "2024-05-16T10:16:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.619300", + "Timestamp": "2024-05-16T10:16:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.494300", + "Timestamp": "2024-05-16T10:16:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.877700", + "Timestamp": "2024-05-16T10:16:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.089700", + "Timestamp": "2024-05-16T10:16:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.059700", + "Timestamp": "2024-05-16T10:16:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.959700", + "Timestamp": "2024-05-16T10:16:13.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.967700", + "Timestamp": "2024-05-16T10:16:12.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.684300", + "Timestamp": "2024-05-16T10:16:11.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.336000", + "Timestamp": "2024-05-16T10:16:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.696500", + "Timestamp": "2024-05-16T10:16:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.461500", + "Timestamp": "2024-05-16T10:16:06.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.456500", + "Timestamp": "2024-05-16T10:16:06.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.331500", + "Timestamp": "2024-05-16T10:16:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.445000", + "Timestamp": "2024-05-16T10:16:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.725200", + "Timestamp": "2024-05-16T10:16:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.720200", + "Timestamp": "2024-05-16T10:16:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.595200", + "Timestamp": "2024-05-16T10:16:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.894500", + "Timestamp": "2024-05-16T10:16:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107900", + "Timestamp": "2024-05-16T10:16:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T10:16:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047900", + "Timestamp": "2024-05-16T10:16:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.260100", + "Timestamp": "2024-05-16T10:16:02.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.255100", + "Timestamp": "2024-05-16T10:16:02.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.130100", + "Timestamp": "2024-05-16T10:16:02.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108500", + "Timestamp": "2024-05-16T10:16:01.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-16T10:16:01.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048500", + "Timestamp": "2024-05-16T10:16:01.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.843800", + "Timestamp": "2024-05-16T10:15:57.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.265300", + "Timestamp": "2024-05-16T10:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145000", + "Timestamp": "2024-05-16T10:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141300", + "Timestamp": "2024-05-16T10:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085000", + "Timestamp": "2024-05-16T10:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087200", + "Timestamp": "2024-05-16T10:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083500", + "Timestamp": "2024-05-16T10:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027200", + "Timestamp": "2024-05-16T10:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.597500", + "Timestamp": "2024-05-16T10:01:53.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.592500", + "Timestamp": "2024-05-16T10:01:53.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.467500", + "Timestamp": "2024-05-16T10:01:53.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.459400", + "Timestamp": "2024-05-16T10:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.853000", + "Timestamp": "2024-05-16T10:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.834400", + "Timestamp": "2024-05-16T10:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.104800", + "Timestamp": "2024-05-16T10:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.099800", + "Timestamp": "2024-05-16T10:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.974800", + "Timestamp": "2024-05-16T10:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.089900", + "Timestamp": "2024-05-16T10:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.059900", + "Timestamp": "2024-05-16T10:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.959900", + "Timestamp": "2024-05-16T10:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.754800", + "Timestamp": "2024-05-16T10:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.749800", + "Timestamp": "2024-05-16T10:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.624800", + "Timestamp": "2024-05-16T10:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042800", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.765100", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.760100", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.635100", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113800", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153800", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053800", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.743700", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.757900", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.752900", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.627900", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.550100", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.497700", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.545100", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.492700", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.420100", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.367700", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.851500", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.810900", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.805900", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.680900", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.265800", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.017200", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.012200", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.887200", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.238400", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.208400", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.108400", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.529500", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.524500", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.399500", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.181200", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.293500", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.288500", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.163500", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.262800", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.257800", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.132800", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049300", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118400", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.782600", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.203400", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.198400", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.073400", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.447600", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.442600", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.317600", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.587900", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.582900", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.457900", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.832500", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.265400", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.260400", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.135400", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.445300", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.099100", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.427700", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.181700", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.151700", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.051700", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.893100", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.587900", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.153700", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.795800", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.790800", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.665800", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.784800", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.779800", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.654800", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.702200", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047700", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.241700", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.355400", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.350400", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.225400", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.623000", + "Timestamp": "2024-05-16T10:01:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.401700", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.396700", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.271700", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.920300", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.095600", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.489600", + "Timestamp": "2024-05-16T10:01:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.484600", + "Timestamp": "2024-05-16T10:01:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.359600", + "Timestamp": "2024-05-16T10:01:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.927000", + "Timestamp": "2024-05-16T10:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311000", + "Timestamp": "2024-05-16T10:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.306000", + "Timestamp": "2024-05-16T10:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181000", + "Timestamp": "2024-05-16T10:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120300", + "Timestamp": "2024-05-16T10:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T10:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060300", + "Timestamp": "2024-05-16T10:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.194600", + "Timestamp": "2024-05-16T10:01:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.164600", + "Timestamp": "2024-05-16T10:01:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.064600", + "Timestamp": "2024-05-16T10:01:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.798500", + "Timestamp": "2024-05-16T10:01:17.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.793500", + "Timestamp": "2024-05-16T10:01:17.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.668500", + "Timestamp": "2024-05-16T10:01:17.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298800", + "Timestamp": "2024-05-16T10:01:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293800", + "Timestamp": "2024-05-16T10:01:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168800", + "Timestamp": "2024-05-16T10:01:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107000", + "Timestamp": "2024-05-16T10:01:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T10:01:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047000", + "Timestamp": "2024-05-16T10:01:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.315000", + "Timestamp": "2024-05-16T10:01:09.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.310000", + "Timestamp": "2024-05-16T10:01:09.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.185000", + "Timestamp": "2024-05-16T10:01:09.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.869600", + "Timestamp": "2024-05-16T10:01:08.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148500", + "Timestamp": "2024-05-16T10:01:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.188500", + "Timestamp": "2024-05-16T10:01:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088500", + "Timestamp": "2024-05-16T10:01:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.757000", + "Timestamp": "2024-05-16T10:01:06.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.727000", + "Timestamp": "2024-05-16T10:01:06.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.627000", + "Timestamp": "2024-05-16T10:01:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.905500", + "Timestamp": "2024-05-16T10:01:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.038700", + "Timestamp": "2024-05-16T10:01:03.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114700", + "Timestamp": "2024-05-16T10:01:00.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T10:01:00.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054700", + "Timestamp": "2024-05-16T10:01:00.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.000800", + "Timestamp": "2024-05-16T10:00:55.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.995800", + "Timestamp": "2024-05-16T10:00:55.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.870800", + "Timestamp": "2024-05-16T10:00:55.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.914300", + "Timestamp": "2024-05-16T09:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.101800", + "Timestamp": "2024-05-16T09:46:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T09:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092300", + "Timestamp": "2024-05-16T09:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036000", + "Timestamp": "2024-05-16T09:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.975100", + "Timestamp": "2024-05-16T09:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.031400", + "Timestamp": "2024-05-16T09:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.859500", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.332200", + "Timestamp": "2024-05-16T09:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302200", + "Timestamp": "2024-05-16T09:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.202200", + "Timestamp": "2024-05-16T09:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.897800", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.892800", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.767800", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.468000", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.463000", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.338000", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.341000", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.336000", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.211000", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119500", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116500", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059500", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.398700", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.393700", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.268700", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.507900", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.502900", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.377900", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.284100", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.272800", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.279100", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.267800", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.154100", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.142800", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.983400", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.978400", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.853400", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.434900", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354200", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324200", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224200", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417700", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.453400", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.675900", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.670900", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.545900", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120200", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.119300", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117100", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113400", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057100", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.380000", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.375000", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.250000", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.455600", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.450600", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.325600", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.909700", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088700", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085000", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028700", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.514900", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.509900", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.384900", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173100", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168100", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043100", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.075900", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.070900", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.945900", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114900", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154900", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054900", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.352900", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.122300", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.917000", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.912000", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.787000", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.346100", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176700", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173000", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116700", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219000", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075600", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071900", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015600", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.242400", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.212400", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073300", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044300", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013300", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071100", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042100", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011100", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429300", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.564400", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.559400", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.434400", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.480300", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.475300", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.350300", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.800300", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135800", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.175800", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075800", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.318100", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.315100", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.258100", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168200", + "Timestamp": "2024-05-16T09:46:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.208200", + "Timestamp": "2024-05-16T09:46:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T09:46:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095300", + "Timestamp": "2024-05-16T09:46:16.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091600", + "Timestamp": "2024-05-16T09:46:16.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035300", + "Timestamp": "2024-05-16T09:46:16.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210900", + "Timestamp": "2024-05-16T09:46:16.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138200", + "Timestamp": "2024-05-16T09:46:12.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.178200", + "Timestamp": "2024-05-16T09:46:12.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078200", + "Timestamp": "2024-05-16T09:46:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.840500", + "Timestamp": "2024-05-16T09:46:09.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.988500", + "Timestamp": "2024-05-16T09:46:08.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.983500", + "Timestamp": "2024-05-16T09:46:08.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.858500", + "Timestamp": "2024-05-16T09:46:08.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.929500", + "Timestamp": "2024-05-16T09:46:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.924500", + "Timestamp": "2024-05-16T09:46:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.799500", + "Timestamp": "2024-05-16T09:46:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.841300", + "Timestamp": "2024-05-16T09:46:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.836300", + "Timestamp": "2024-05-16T09:46:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.711300", + "Timestamp": "2024-05-16T09:46:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437400", + "Timestamp": "2024-05-16T09:46:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.481900", + "Timestamp": "2024-05-16T09:46:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.476900", + "Timestamp": "2024-05-16T09:46:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.351900", + "Timestamp": "2024-05-16T09:46:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222500", + "Timestamp": "2024-05-16T09:46:01.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.081700", + "Timestamp": "2024-05-16T09:45:59.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429000", + "Timestamp": "2024-05-16T09:45:58.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.745700", + "Timestamp": "2024-05-16T09:45:56.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.309500", + "Timestamp": "2024-05-16T09:45:55.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.304500", + "Timestamp": "2024-05-16T09:45:55.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.179500", + "Timestamp": "2024-05-16T09:45:55.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.205100", + "Timestamp": "2024-05-16T09:45:55.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.200100", + "Timestamp": "2024-05-16T09:45:55.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.075100", + "Timestamp": "2024-05-16T09:45:55.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.783800", + "Timestamp": "2024-05-16T09:44:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.330800", + "Timestamp": "2024-05-16T09:36:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.325800", + "Timestamp": "2024-05-16T09:36:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.200800", + "Timestamp": "2024-05-16T09:36:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.098300", + "Timestamp": "2024-05-16T09:36:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.802200", + "Timestamp": "2024-05-16T09:32:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.641000", + "Timestamp": "2024-05-16T09:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.636000", + "Timestamp": "2024-05-16T09:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.511000", + "Timestamp": "2024-05-16T09:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.894000", + "Timestamp": "2024-05-16T09:32:00.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.646800", + "Timestamp": "2024-05-16T09:31:54.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.985200", + "Timestamp": "2024-05-16T09:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.492800", + "Timestamp": "2024-05-16T09:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.128500", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.123500", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.998500", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.801400", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.796400", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.671400", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.408700", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.024500", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.019500", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.894500", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.125100", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.120100", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.995100", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.028600", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.097100", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.092100", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967100", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.786200", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.374100", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.876300", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.871300", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.746300", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.121400", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.624800", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.619800", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.494800", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.011400", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.006400", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.881400", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.713300", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.683300", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.583300", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.364600", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.718900", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.713900", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.588900", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.854700", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.594600", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.821800", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.816800", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.691800", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.759800", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.754800", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.629800", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.479000", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.474000", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.349000", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.382100", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.377100", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.252100", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109600", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.178700", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.173700", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.048700", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.227500", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.865600", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184700", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180700", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124700", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.622300", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.768900", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.366700", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161700", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158000", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.975100", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.970100", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.845100", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.130500", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.316000", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.100500", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.286000", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.000500", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.186000", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.816600", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.794200", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.789200", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.664200", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.874000", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.869000", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.744000", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.424300", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.746000", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.323900", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.318900", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.193900", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.365600", + "Timestamp": "2024-05-16T09:31:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.360600", + "Timestamp": "2024-05-16T09:31:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235600", + "Timestamp": "2024-05-16T09:31:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.420100", + "Timestamp": "2024-05-16T09:31:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.415100", + "Timestamp": "2024-05-16T09:31:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.290100", + "Timestamp": "2024-05-16T09:31:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.335700", + "Timestamp": "2024-05-16T09:31:13.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.365000", + "Timestamp": "2024-05-16T09:31:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.552700", + "Timestamp": "2024-05-16T09:31:12.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.547700", + "Timestamp": "2024-05-16T09:31:12.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.422700", + "Timestamp": "2024-05-16T09:31:12.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.459500", + "Timestamp": "2024-05-16T09:31:10.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.497600", + "Timestamp": "2024-05-16T09:31:10.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.454500", + "Timestamp": "2024-05-16T09:31:10.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.492600", + "Timestamp": "2024-05-16T09:31:10.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.329500", + "Timestamp": "2024-05-16T09:31:10.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.367600", + "Timestamp": "2024-05-16T09:31:10.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.683900", + "Timestamp": "2024-05-16T09:31:08.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.678900", + "Timestamp": "2024-05-16T09:31:08.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.553900", + "Timestamp": "2024-05-16T09:31:08.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.016400", + "Timestamp": "2024-05-16T09:31:08.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.011400", + "Timestamp": "2024-05-16T09:31:08.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.886400", + "Timestamp": "2024-05-16T09:31:08.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080100", + "Timestamp": "2024-05-16T09:31:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076400", + "Timestamp": "2024-05-16T09:31:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020100", + "Timestamp": "2024-05-16T09:31:07.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.180000", + "Timestamp": "2024-05-16T09:31:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.220000", + "Timestamp": "2024-05-16T09:31:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120000", + "Timestamp": "2024-05-16T09:31:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.468300", + "Timestamp": "2024-05-16T09:31:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.307800", + "Timestamp": "2024-05-16T09:30:57.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.715700", + "Timestamp": "2024-05-16T09:30:53.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.144500", + "Timestamp": "2024-05-16T09:17:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.409500", + "Timestamp": "2024-05-16T09:17:08.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.531000", + "Timestamp": "2024-05-16T09:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.526000", + "Timestamp": "2024-05-16T09:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.401000", + "Timestamp": "2024-05-16T09:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T09:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.826100", + "Timestamp": "2024-05-16T09:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-16T09:16:58.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T09:16:58.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052400", + "Timestamp": "2024-05-16T09:16:58.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.456000", + "Timestamp": "2024-05-16T09:16:53.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.451000", + "Timestamp": "2024-05-16T09:16:53.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.326000", + "Timestamp": "2024-05-16T09:16:53.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.597100", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.592100", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.467100", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.812800", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.399900", + "Timestamp": "2024-05-16T09:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.394900", + "Timestamp": "2024-05-16T09:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.269900", + "Timestamp": "2024-05-16T09:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.631900", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.020000", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.015000", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.890000", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.812000", + "Timestamp": "2024-05-16T09:16:46.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.807000", + "Timestamp": "2024-05-16T09:16:46.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.682000", + "Timestamp": "2024-05-16T09:16:46.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.081200", + "Timestamp": "2024-05-16T09:16:46.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.076200", + "Timestamp": "2024-05-16T09:16:46.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.951200", + "Timestamp": "2024-05-16T09:16:46.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.177300", + "Timestamp": "2024-05-16T09:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.172300", + "Timestamp": "2024-05-16T09:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.047300", + "Timestamp": "2024-05-16T09:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211900", + "Timestamp": "2024-05-16T09:16:42.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.857100", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.852100", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.727100", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.685500", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.680500", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.555500", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220000", + "Timestamp": "2024-05-16T09:16:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157600", + "Timestamp": "2024-05-16T09:16:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153600", + "Timestamp": "2024-05-16T09:16:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097600", + "Timestamp": "2024-05-16T09:16:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109200", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.481900", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100500", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140500", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040500", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.818800", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.426000", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.421000", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.296000", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.024700", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.019700", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.894700", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.638800", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.316000", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.311000", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.186000", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108500", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052200", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.975700", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.970700", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.845700", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.658100", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.467800", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126200", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166200", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066200", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.694700", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.347800", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.342800", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.217800", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.819000", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.814000", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.689000", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.380700", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.375700", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.250700", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233200", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.408200", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.403200", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.278200", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.777100", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.832000", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.827000", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.702000", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.332200", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.017800", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.987800", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.887800", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.040200", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.035200", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.910200", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.241900", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.236900", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.111900", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164700", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161000", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104700", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.396800", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.391800", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.266800", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.631300", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.626300", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.501300", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.081000", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.076000", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.951000", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.981400", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.866800", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.951400", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.836800", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.851400", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.736800", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.228600", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.198600", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.098600", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.038800", + "Timestamp": "2024-05-16T09:16:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.033800", + "Timestamp": "2024-05-16T09:16:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.908800", + "Timestamp": "2024-05-16T09:16:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.758400", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.753400", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.628400", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.848800", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.843800", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.718800", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.746000", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114300", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153000", + "Timestamp": "2024-05-16T09:16:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193000", + "Timestamp": "2024-05-16T09:16:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093000", + "Timestamp": "2024-05-16T09:16:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.449300", + "Timestamp": "2024-05-16T09:16:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.731500", + "Timestamp": "2024-05-16T09:16:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.904300", + "Timestamp": "2024-05-16T09:16:17.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.201200", + "Timestamp": "2024-05-16T09:16:17.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.197500", + "Timestamp": "2024-05-16T09:16:17.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141200", + "Timestamp": "2024-05-16T09:16:17.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113100", + "Timestamp": "2024-05-16T09:16:17.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T09:16:17.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053100", + "Timestamp": "2024-05-16T09:16:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.045000", + "Timestamp": "2024-05-16T09:16:16.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.040000", + "Timestamp": "2024-05-16T09:16:16.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.915000", + "Timestamp": "2024-05-16T09:16:16.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.502800", + "Timestamp": "2024-05-16T09:16:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.472800", + "Timestamp": "2024-05-16T09:16:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.372800", + "Timestamp": "2024-05-16T09:16:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.055600", + "Timestamp": "2024-05-16T09:16:08.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.924000", + "Timestamp": "2024-05-16T09:16:06.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.648000", + "Timestamp": "2024-05-16T09:16:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.901000", + "Timestamp": "2024-05-16T09:16:00.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.460300", + "Timestamp": "2024-05-16T09:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.538700", + "Timestamp": "2024-05-16T09:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.705100", + "Timestamp": "2024-05-16T09:01:59.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.700100", + "Timestamp": "2024-05-16T09:01:59.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.575100", + "Timestamp": "2024-05-16T09:01:59.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.705800", + "Timestamp": "2024-05-16T09:01:52.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.456200", + "Timestamp": "2024-05-16T09:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.481700", + "Timestamp": "2024-05-16T09:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.476700", + "Timestamp": "2024-05-16T09:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.351700", + "Timestamp": "2024-05-16T09:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.438800", + "Timestamp": "2024-05-16T09:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.433800", + "Timestamp": "2024-05-16T09:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.308800", + "Timestamp": "2024-05-16T09:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.446300", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.416300", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.316300", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.898100", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.684300", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.233900", + "Timestamp": "2024-05-16T09:01:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.233300", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.228300", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.103300", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.418000", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.413000", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.288000", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270500", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265500", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140500", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.728000", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.844800", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.839800", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.714800", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.938800", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.375500", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.939500", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.934500", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.809500", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.035400", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.030400", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.905400", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159400", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155400", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099400", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.926400", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.921400", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.796400", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.521300", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.516300", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.391300", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.709000", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.306600", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.301600", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.176600", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.652700", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.927800", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.922800", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.797800", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052100", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.159600", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.154600", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.029600", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.529200", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.524200", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.399200", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051000", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.452900", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.823700", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222400", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.872400", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.814100", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155700", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152000", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095700", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153800", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149800", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093800", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.293800", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.263800", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.163800", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.546700", + "Timestamp": "2024-05-16T09:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.537400", + "Timestamp": "2024-05-16T09:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.125700", + "Timestamp": "2024-05-16T09:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.120700", + "Timestamp": "2024-05-16T09:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.995700", + "Timestamp": "2024-05-16T09:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T09:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145900", + "Timestamp": "2024-05-16T09:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045900", + "Timestamp": "2024-05-16T09:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.989900", + "Timestamp": "2024-05-16T09:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.984900", + "Timestamp": "2024-05-16T09:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.859900", + "Timestamp": "2024-05-16T09:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.468200", + "Timestamp": "2024-05-16T09:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.717500", + "Timestamp": "2024-05-16T09:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.712500", + "Timestamp": "2024-05-16T09:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.587500", + "Timestamp": "2024-05-16T09:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.581200", + "Timestamp": "2024-05-16T09:01:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.576200", + "Timestamp": "2024-05-16T09:01:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.451200", + "Timestamp": "2024-05-16T09:01:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.657100", + "Timestamp": "2024-05-16T09:01:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.652100", + "Timestamp": "2024-05-16T09:01:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.527100", + "Timestamp": "2024-05-16T09:01:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.472600", + "Timestamp": "2024-05-16T09:01:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152300", + "Timestamp": "2024-05-16T09:01:07.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192300", + "Timestamp": "2024-05-16T09:01:07.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092300", + "Timestamp": "2024-05-16T09:01:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T09:01:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.861400", + "Timestamp": "2024-05-16T09:01:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.856400", + "Timestamp": "2024-05-16T09:01:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.731400", + "Timestamp": "2024-05-16T09:01:03.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.457600", + "Timestamp": "2024-05-16T09:00:59.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.452600", + "Timestamp": "2024-05-16T09:00:59.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.327600", + "Timestamp": "2024-05-16T09:00:59.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m1.small", + "ProductDescription": "Windows", + "SpotPrice": "0.045900", + "Timestamp": "2024-05-16T08:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.848800", + "Timestamp": "2024-05-16T08:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.106500", + "Timestamp": "2024-05-16T08:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.546500", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.541500", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.416500", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115600", + "Timestamp": "2024-05-16T08:46:39.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111900", + "Timestamp": "2024-05-16T08:46:39.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055600", + "Timestamp": "2024-05-16T08:46:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.648800", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.643800", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.518800", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.628200", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.623200", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.498200", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.323100", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.318100", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.193100", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161700", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158000", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.849900", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.178300", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.173300", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.048300", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.366400", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.998600", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.993600", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.868600", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.913200", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.706500", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.701500", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.576500", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.874900", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.107300", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.845100", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.840100", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.715100", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108500", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048500", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.883400", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.878400", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.753400", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.988100", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130500", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126800", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070500", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.516000", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.427400", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.618100", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.262600", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.275600", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.257600", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270600", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.132600", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145600", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.260500", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.414000", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.409000", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.284000", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.178700", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174700", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118700", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.811000", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.637100", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.632100", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.507100", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.744300", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.739300", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.614300", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.268500", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.263500", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.138500", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.206000", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.246000", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146000", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.278200", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158300", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154600", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098300", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.481700", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.476700", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.351700", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.288900", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.349400", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.344400", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219400", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.258400", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.253400", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128400", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147200", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143200", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087200", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100600", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096600", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040600", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.790300", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.760300", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.660300", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.870100", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.687800", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.614200", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.609200", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.484200", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.821300", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.816300", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.691300", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.743000", + "Timestamp": "2024-05-16T08:46:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.830800", + "Timestamp": "2024-05-16T08:46:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.800800", + "Timestamp": "2024-05-16T08:46:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.700800", + "Timestamp": "2024-05-16T08:46:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.563300", + "Timestamp": "2024-05-16T08:46:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.533300", + "Timestamp": "2024-05-16T08:46:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.433300", + "Timestamp": "2024-05-16T08:46:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.515200", + "Timestamp": "2024-05-16T08:46:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.510200", + "Timestamp": "2024-05-16T08:46:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.385200", + "Timestamp": "2024-05-16T08:46:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.149800", + "Timestamp": "2024-05-16T08:46:12.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.119800", + "Timestamp": "2024-05-16T08:46:12.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.019800", + "Timestamp": "2024-05-16T08:46:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.363900", + "Timestamp": "2024-05-16T08:46:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.333900", + "Timestamp": "2024-05-16T08:46:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.233900", + "Timestamp": "2024-05-16T08:46:06.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172700", + "Timestamp": "2024-05-16T08:46:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167700", + "Timestamp": "2024-05-16T08:46:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042700", + "Timestamp": "2024-05-16T08:46:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-16T08:46:01.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T08:46:01.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049900", + "Timestamp": "2024-05-16T08:46:01.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.477200", + "Timestamp": "2024-05-16T08:45:59.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.472200", + "Timestamp": "2024-05-16T08:45:59.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.347200", + "Timestamp": "2024-05-16T08:45:59.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119200", + "Timestamp": "2024-05-16T08:45:58.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.199300", + "Timestamp": "2024-05-16T08:31:59.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T08:31:59.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112900", + "Timestamp": "2024-05-16T08:31:59.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056600", + "Timestamp": "2024-05-16T08:31:59.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.133300", + "Timestamp": "2024-05-16T08:31:57.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.128300", + "Timestamp": "2024-05-16T08:31:57.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.003300", + "Timestamp": "2024-05-16T08:31:57.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.544000", + "Timestamp": "2024-05-16T08:31:54.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.539000", + "Timestamp": "2024-05-16T08:31:54.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.414000", + "Timestamp": "2024-05-16T08:31:54.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.115900", + "Timestamp": "2024-05-16T08:31:54.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.684000", + "Timestamp": "2024-05-16T08:31:53.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.696600", + "Timestamp": "2024-05-16T08:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.409000", + "Timestamp": "2024-05-16T08:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.530700", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.525700", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.400700", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.308700", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.303700", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.178700", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.735100", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.468700", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.336000", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.331000", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.206000", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.148300", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.143300", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.018300", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.405600", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.125900", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.120900", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.995900", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.994700", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.989700", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.864700", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.122300", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.092300", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.992300", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.989600", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.068500", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.063500", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.938500", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.247300", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.731000", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.726000", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.601000", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.995000", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.990000", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.865000", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.388200", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.383200", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.258200", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.342100", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.337100", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212100", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.482500", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.477500", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.352500", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.495100", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.490100", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.365100", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111800", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051800", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.058100", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.053100", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.928100", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.030800", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.025800", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.900800", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.704900", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.265500", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.260500", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.135500", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.790200", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.755300", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.750300", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.625300", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.733500", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147500", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143800", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087500", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.616700", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.611700", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.486700", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.813400", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.052700", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.228500", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.256400", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.251400", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126400", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.961400", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.473800", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.443800", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.343800", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.805400", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.800400", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.675400", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.666200", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.661200", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.536200", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.655300", + "Timestamp": "2024-05-16T08:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.684100", + "Timestamp": "2024-05-16T08:31:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.654100", + "Timestamp": "2024-05-16T08:31:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.554100", + "Timestamp": "2024-05-16T08:31:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.247800", + "Timestamp": "2024-05-16T08:31:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.242800", + "Timestamp": "2024-05-16T08:31:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.117800", + "Timestamp": "2024-05-16T08:31:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.097600", + "Timestamp": "2024-05-16T08:31:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.067600", + "Timestamp": "2024-05-16T08:31:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967600", + "Timestamp": "2024-05-16T08:31:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111700", + "Timestamp": "2024-05-16T08:31:16.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-16T08:31:16.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051700", + "Timestamp": "2024-05-16T08:31:16.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.277800", + "Timestamp": "2024-05-16T08:31:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.272800", + "Timestamp": "2024-05-16T08:31:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147800", + "Timestamp": "2024-05-16T08:31:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149900", + "Timestamp": "2024-05-16T08:31:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146200", + "Timestamp": "2024-05-16T08:31:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089900", + "Timestamp": "2024-05-16T08:31:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.553300", + "Timestamp": "2024-05-16T08:31:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.548300", + "Timestamp": "2024-05-16T08:31:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.423300", + "Timestamp": "2024-05-16T08:31:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.415600", + "Timestamp": "2024-05-16T08:31:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.410600", + "Timestamp": "2024-05-16T08:31:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.285600", + "Timestamp": "2024-05-16T08:31:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.281900", + "Timestamp": "2024-05-16T08:31:13.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143000", + "Timestamp": "2024-05-16T08:31:13.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139000", + "Timestamp": "2024-05-16T08:31:13.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083000", + "Timestamp": "2024-05-16T08:31:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T08:31:11.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T08:31:11.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051400", + "Timestamp": "2024-05-16T08:31:11.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271100", + "Timestamp": "2024-05-16T08:31:11.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266100", + "Timestamp": "2024-05-16T08:31:11.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141100", + "Timestamp": "2024-05-16T08:31:11.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.325600", + "Timestamp": "2024-05-16T08:31:09.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.503200", + "Timestamp": "2024-05-16T08:31:09.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.928600", + "Timestamp": "2024-05-16T08:31:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112700", + "Timestamp": "2024-05-16T08:31:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.117300", + "Timestamp": "2024-05-16T08:31:01.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154700", + "Timestamp": "2024-05-16T08:30:56.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151000", + "Timestamp": "2024-05-16T08:30:56.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094700", + "Timestamp": "2024-05-16T08:30:56.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.644900", + "Timestamp": "2024-05-16T08:30:54.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210700", + "Timestamp": "2024-05-16T08:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233000", + "Timestamp": "2024-05-16T08:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.769100", + "Timestamp": "2024-05-16T08:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.764100", + "Timestamp": "2024-05-16T08:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.639100", + "Timestamp": "2024-05-16T08:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.499100", + "Timestamp": "2024-05-16T08:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.494100", + "Timestamp": "2024-05-16T08:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.369100", + "Timestamp": "2024-05-16T08:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066600", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037900", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006600", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.793300", + "Timestamp": "2024-05-16T08:16:51.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.763300", + "Timestamp": "2024-05-16T08:16:51.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.663300", + "Timestamp": "2024-05-16T08:16:51.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.069000", + "Timestamp": "2024-05-16T08:16:51.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.414500", + "Timestamp": "2024-05-16T08:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.409500", + "Timestamp": "2024-05-16T08:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.284500", + "Timestamp": "2024-05-16T08:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.805600", + "Timestamp": "2024-05-16T08:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.800600", + "Timestamp": "2024-05-16T08:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.675600", + "Timestamp": "2024-05-16T08:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.874400", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.642300", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.612300", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.512300", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.496800", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.886600", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.031900", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.189100", + "Timestamp": "2024-05-16T08:16:47.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.466100", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.500700", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.436100", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.470700", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.336100", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.370700", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.001400", + "Timestamp": "2024-05-16T08:16:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.407000", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172600", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168600", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.544000", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.539000", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.414000", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.312600", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.307600", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.182600", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.216300", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.211300", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086300", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.728100", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439200", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.829900", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.824900", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.699900", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.450800", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172700", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168700", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112700", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.079800", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.074800", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.949800", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.132700", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086800", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083100", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026800", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.300800", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.295800", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.170800", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.451600", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.446600", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.321600", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.435600", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.578700", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.573700", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.448700", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.185500", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181800", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125500", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222100", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.260300", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.230300", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130300", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.463900", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214100", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.197300", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.549300", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.544300", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.419300", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167300", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164300", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.371600", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.341600", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.241600", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.685200", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.620800", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.615800", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.490800", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.602000", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.597000", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.472000", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.249000", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.244000", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119000", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.052600", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.902500", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.022600", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.872500", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.922600", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.772500", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330600", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325600", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200600", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104700", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048400", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.268100", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.263100", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.138100", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.965500", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.960500", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.835500", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.446300", + "Timestamp": "2024-05-16T08:16:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.659000", + "Timestamp": "2024-05-16T08:16:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.022900", + "Timestamp": "2024-05-16T08:16:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.017900", + "Timestamp": "2024-05-16T08:16:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.892900", + "Timestamp": "2024-05-16T08:16:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.232400", + "Timestamp": "2024-05-16T08:16:17.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.272400", + "Timestamp": "2024-05-16T08:16:17.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172400", + "Timestamp": "2024-05-16T08:16:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.222800", + "Timestamp": "2024-05-16T08:16:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.544700", + "Timestamp": "2024-05-16T08:16:11.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.514700", + "Timestamp": "2024-05-16T08:16:11.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.414700", + "Timestamp": "2024-05-16T08:16:11.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294000", + "Timestamp": "2024-05-16T08:16:10.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289000", + "Timestamp": "2024-05-16T08:16:10.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164000", + "Timestamp": "2024-05-16T08:16:10.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.569100", + "Timestamp": "2024-05-16T08:16:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.228300", + "Timestamp": "2024-05-16T08:16:07.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.688000", + "Timestamp": "2024-05-16T08:16:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.683000", + "Timestamp": "2024-05-16T08:16:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.558000", + "Timestamp": "2024-05-16T08:16:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.589200", + "Timestamp": "2024-05-16T08:16:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.584200", + "Timestamp": "2024-05-16T08:16:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.459200", + "Timestamp": "2024-05-16T08:16:05.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437700", + "Timestamp": "2024-05-16T08:16:03.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.292600", + "Timestamp": "2024-05-16T08:16:00.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262600", + "Timestamp": "2024-05-16T08:16:00.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162600", + "Timestamp": "2024-05-16T08:16:00.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.358300", + "Timestamp": "2024-05-16T08:15:57.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.328300", + "Timestamp": "2024-05-16T08:15:57.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.228300", + "Timestamp": "2024-05-16T08:15:57.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212600", + "Timestamp": "2024-05-16T08:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.258000", + "Timestamp": "2024-05-16T08:02:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.228000", + "Timestamp": "2024-05-16T08:02:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128000", + "Timestamp": "2024-05-16T08:02:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.197000", + "Timestamp": "2024-05-16T08:02:10.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.192000", + "Timestamp": "2024-05-16T08:02:10.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.067000", + "Timestamp": "2024-05-16T08:02:10.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.308200", + "Timestamp": "2024-05-16T08:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.278200", + "Timestamp": "2024-05-16T08:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.178200", + "Timestamp": "2024-05-16T08:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.745900", + "Timestamp": "2024-05-16T08:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.790400", + "Timestamp": "2024-05-16T08:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.627100", + "Timestamp": "2024-05-16T08:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.622100", + "Timestamp": "2024-05-16T08:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.497100", + "Timestamp": "2024-05-16T08:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.959100", + "Timestamp": "2024-05-16T08:01:53.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.929100", + "Timestamp": "2024-05-16T08:01:53.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.829100", + "Timestamp": "2024-05-16T08:01:53.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.374200", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.369200", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.244200", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.801200", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140000", + "Timestamp": "2024-05-16T08:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136000", + "Timestamp": "2024-05-16T08:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080000", + "Timestamp": "2024-05-16T08:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.748400", + "Timestamp": "2024-05-16T08:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.310200", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.305200", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.180200", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159200", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155800", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155500", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152100", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095800", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.785100", + "Timestamp": "2024-05-16T08:01:41.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124400", + "Timestamp": "2024-05-16T08:01:41.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.874600", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.869600", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.744600", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.152500", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.623100", + "Timestamp": "2024-05-16T08:01:38.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.772400", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.767400", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.642400", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.494000", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.489000", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.364000", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.196000", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192000", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136000", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.727700", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.722700", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.597700", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.447800", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.844300", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.835300", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.870600", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.230900", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.225900", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.100900", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.300400", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.295400", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170400", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.476800", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.469700", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.471800", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.464700", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.346800", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.339700", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.519100", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.514100", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.389100", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.911700", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.906700", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.781700", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.666600", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.661600", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.536600", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.613900", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.608900", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.483900", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.009100", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.004100", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.879100", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.850700", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176900", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172900", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.312000", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.307000", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.182000", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.738300", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049400", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.359700", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.547700", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067600", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038600", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007600", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.531300", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.526300", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.401300", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.874500", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.844500", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.744500", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.622000", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.728500", + "Timestamp": "2024-05-16T08:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.723500", + "Timestamp": "2024-05-16T08:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.598500", + "Timestamp": "2024-05-16T08:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.122100", + "Timestamp": "2024-05-16T08:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298600", + "Timestamp": "2024-05-16T08:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293600", + "Timestamp": "2024-05-16T08:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168600", + "Timestamp": "2024-05-16T08:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.801700", + "Timestamp": "2024-05-16T08:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.796700", + "Timestamp": "2024-05-16T08:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.671700", + "Timestamp": "2024-05-16T08:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.504000", + "Timestamp": "2024-05-16T08:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.474000", + "Timestamp": "2024-05-16T08:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.374000", + "Timestamp": "2024-05-16T08:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.699300", + "Timestamp": "2024-05-16T08:01:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.694300", + "Timestamp": "2024-05-16T08:01:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.569300", + "Timestamp": "2024-05-16T08:01:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167100", + "Timestamp": "2024-05-16T08:01:16.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163100", + "Timestamp": "2024-05-16T08:01:16.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T08:01:16.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.160200", + "Timestamp": "2024-05-16T08:01:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.526600", + "Timestamp": "2024-05-16T08:01:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.521600", + "Timestamp": "2024-05-16T08:01:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.396600", + "Timestamp": "2024-05-16T08:01:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T08:01:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100700", + "Timestamp": "2024-05-16T08:01:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044400", + "Timestamp": "2024-05-16T08:01:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139700", + "Timestamp": "2024-05-16T08:01:07.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136000", + "Timestamp": "2024-05-16T08:01:07.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079700", + "Timestamp": "2024-05-16T08:01:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.872900", + "Timestamp": "2024-05-16T08:01:07.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081500", + "Timestamp": "2024-05-16T08:01:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077800", + "Timestamp": "2024-05-16T08:01:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021500", + "Timestamp": "2024-05-16T08:01:03.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m1.large", + "ProductDescription": "Windows", + "SpotPrice": "0.168700", + "Timestamp": "2024-05-16T08:01:00.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.293200", + "Timestamp": "2024-05-16T08:00:57.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.288200", + "Timestamp": "2024-05-16T08:00:57.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.163200", + "Timestamp": "2024-05-16T08:00:57.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.837300", + "Timestamp": "2024-05-16T08:00:57.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.065300", + "Timestamp": "2024-05-16T07:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.060300", + "Timestamp": "2024-05-16T07:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.935300", + "Timestamp": "2024-05-16T07:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.349600", + "Timestamp": "2024-05-16T07:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105100", + "Timestamp": "2024-05-16T07:46:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.821200", + "Timestamp": "2024-05-16T07:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.216700", + "Timestamp": "2024-05-16T07:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.186700", + "Timestamp": "2024-05-16T07:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.086700", + "Timestamp": "2024-05-16T07:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.911300", + "Timestamp": "2024-05-16T07:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.150300", + "Timestamp": "2024-05-16T07:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.145300", + "Timestamp": "2024-05-16T07:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.020300", + "Timestamp": "2024-05-16T07:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.409100", + "Timestamp": "2024-05-16T07:46:41.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.639400", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.634400", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.509400", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.465400", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.460400", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.335400", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.874200", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.844200", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.744200", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.019900", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.014900", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.889900", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.409500", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.725900", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.720900", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.595900", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.694400", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.689400", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.564400", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.075800", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.070800", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.945800", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.230200", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.193100", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.166800", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.333200", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.328200", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.203200", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.703900", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.164500", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.134500", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.034500", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.579600", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.574600", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.449600", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.300900", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.295900", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.170900", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.648600", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.027400", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.022400", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.897400", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.281900", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.276900", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.151900", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.190500", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.230500", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130500", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.185400", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181700", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.676700", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.671700", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.546700", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.702500", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.228900", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.471700", + "Timestamp": "2024-05-16T07:46:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.639900", + "Timestamp": "2024-05-16T07:46:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.634900", + "Timestamp": "2024-05-16T07:46:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.509900", + "Timestamp": "2024-05-16T07:46:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.340800", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.310800", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.210800", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.300200", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.295200", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170200", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087900", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084200", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027900", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.633300", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.756100", + "Timestamp": "2024-05-16T07:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.500700", + "Timestamp": "2024-05-16T07:46:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.470700", + "Timestamp": "2024-05-16T07:46:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.370700", + "Timestamp": "2024-05-16T07:46:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T07:46:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121700", + "Timestamp": "2024-05-16T07:46:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065400", + "Timestamp": "2024-05-16T07:46:17.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.773600", + "Timestamp": "2024-05-16T07:46:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.746800", + "Timestamp": "2024-05-16T07:46:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.355600", + "Timestamp": "2024-05-16T07:46:08.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325600", + "Timestamp": "2024-05-16T07:46:08.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.225600", + "Timestamp": "2024-05-16T07:46:08.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.295600", + "Timestamp": "2024-05-16T07:46:07.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.316400", + "Timestamp": "2024-05-16T07:46:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.311400", + "Timestamp": "2024-05-16T07:46:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.186400", + "Timestamp": "2024-05-16T07:46:03.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.559800", + "Timestamp": "2024-05-16T07:46:02.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.617000", + "Timestamp": "2024-05-16T07:46:02.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.587000", + "Timestamp": "2024-05-16T07:46:02.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.487000", + "Timestamp": "2024-05-16T07:46:02.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155800", + "Timestamp": "2024-05-16T07:45:59.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152100", + "Timestamp": "2024-05-16T07:45:59.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095800", + "Timestamp": "2024-05-16T07:45:59.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.804000", + "Timestamp": "2024-05-16T07:45:58.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.799000", + "Timestamp": "2024-05-16T07:45:58.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.674000", + "Timestamp": "2024-05-16T07:45:58.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.305800", + "Timestamp": "2024-05-16T07:45:53.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.300800", + "Timestamp": "2024-05-16T07:45:53.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.175800", + "Timestamp": "2024-05-16T07:45:53.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.277800", + "Timestamp": "2024-05-16T07:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.247800", + "Timestamp": "2024-05-16T07:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147800", + "Timestamp": "2024-05-16T07:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.391700", + "Timestamp": "2024-05-16T07:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.386700", + "Timestamp": "2024-05-16T07:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.261700", + "Timestamp": "2024-05-16T07:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.670900", + "Timestamp": "2024-05-16T07:31:56.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.640900", + "Timestamp": "2024-05-16T07:31:56.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.540900", + "Timestamp": "2024-05-16T07:31:56.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.784600", + "Timestamp": "2024-05-16T07:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.884400", + "Timestamp": "2024-05-16T07:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.960500", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115500", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.303200", + "Timestamp": "2024-05-16T07:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.843800", + "Timestamp": "2024-05-16T07:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.414700", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.409700", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.284700", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.426500", + "Timestamp": "2024-05-16T07:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.421500", + "Timestamp": "2024-05-16T07:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.296500", + "Timestamp": "2024-05-16T07:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.589000", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231100", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120500", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119100", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159100", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059100", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.079900", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223800", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.284200", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.279200", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.154200", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.387200", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.382200", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.257200", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.523300", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130000", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170000", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070000", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.764200", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.759200", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.634200", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.825900", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.820900", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.695900", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.614700", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.609700", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.484700", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.991200", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.986200", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.861200", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306100", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.303100", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.246100", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.121900", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.116900", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.991900", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.199500", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.194500", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.069500", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.505800", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.500800", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.375800", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121400", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117700", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061400", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.770100", + "Timestamp": "2024-05-16T07:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.765100", + "Timestamp": "2024-05-16T07:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.640100", + "Timestamp": "2024-05-16T07:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.620100", + "Timestamp": "2024-05-16T07:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.590100", + "Timestamp": "2024-05-16T07:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.490100", + "Timestamp": "2024-05-16T07:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.087100", + "Timestamp": "2024-05-16T07:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.057100", + "Timestamp": "2024-05-16T07:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.957100", + "Timestamp": "2024-05-16T07:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.961600", + "Timestamp": "2024-05-16T07:31:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.956600", + "Timestamp": "2024-05-16T07:31:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.831600", + "Timestamp": "2024-05-16T07:31:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.188800", + "Timestamp": "2024-05-16T07:31:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144000", + "Timestamp": "2024-05-16T07:31:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140000", + "Timestamp": "2024-05-16T07:31:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084000", + "Timestamp": "2024-05-16T07:31:13.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.304800", + "Timestamp": "2024-05-16T07:31:06.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.020500", + "Timestamp": "2024-05-16T07:31:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.649200", + "Timestamp": "2024-05-16T07:31:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.644200", + "Timestamp": "2024-05-16T07:31:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.519200", + "Timestamp": "2024-05-16T07:31:05.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.564100", + "Timestamp": "2024-05-16T07:30:57.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.892200", + "Timestamp": "2024-05-16T07:30:56.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.887200", + "Timestamp": "2024-05-16T07:30:56.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.762200", + "Timestamp": "2024-05-16T07:30:56.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062600", + "Timestamp": "2024-05-16T07:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-16T07:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-16T07:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078100", + "Timestamp": "2024-05-16T07:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118100", + "Timestamp": "2024-05-16T07:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018100", + "Timestamp": "2024-05-16T07:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.569700", + "Timestamp": "2024-05-16T07:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.508200", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.503200", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.378200", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.446600", + "Timestamp": "2024-05-16T07:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.631400", + "Timestamp": "2024-05-16T07:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.626400", + "Timestamp": "2024-05-16T07:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.501400", + "Timestamp": "2024-05-16T07:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.203100", + "Timestamp": "2024-05-16T07:16:47.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.243100", + "Timestamp": "2024-05-16T07:16:47.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143100", + "Timestamp": "2024-05-16T07:16:47.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.656000", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.651000", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.526000", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.205100", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.200100", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.075100", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174200", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170500", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114200", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.231900", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.201900", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.101900", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.226600", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.221600", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.096600", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418300", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.845800", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.130200", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.959000", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092500", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132500", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032500", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.830500", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.825500", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.700500", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.599000", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.794800", + "Timestamp": "2024-05-16T07:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.235200", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.230200", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.105200", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.537200", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.507200", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.407200", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.605200", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.600200", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.475200", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.525400", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.520400", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.395400", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.633100", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.453700", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.739900", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.734900", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.609900", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103200", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043200", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.204300", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.200300", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144300", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.289500", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.259500", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159500", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226100", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.235100", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.230100", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.105100", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.321500", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.316500", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.191500", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.842100", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.255700", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.250700", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125700", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.657200", + "Timestamp": "2024-05-16T07:16:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.970300", + "Timestamp": "2024-05-16T07:16:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.560600", + "Timestamp": "2024-05-16T07:16:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.555600", + "Timestamp": "2024-05-16T07:16:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.430600", + "Timestamp": "2024-05-16T07:16:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.648100", + "Timestamp": "2024-05-16T07:16:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.759300", + "Timestamp": "2024-05-16T07:16:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.729300", + "Timestamp": "2024-05-16T07:16:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.629300", + "Timestamp": "2024-05-16T07:16:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.989300", + "Timestamp": "2024-05-16T07:16:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.984300", + "Timestamp": "2024-05-16T07:16:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.859300", + "Timestamp": "2024-05-16T07:16:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.905600", + "Timestamp": "2024-05-16T07:16:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.900600", + "Timestamp": "2024-05-16T07:16:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.775600", + "Timestamp": "2024-05-16T07:16:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297200", + "Timestamp": "2024-05-16T07:16:12.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267200", + "Timestamp": "2024-05-16T07:16:12.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167200", + "Timestamp": "2024-05-16T07:16:12.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.428200", + "Timestamp": "2024-05-16T07:16:12.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.423200", + "Timestamp": "2024-05-16T07:16:12.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.298200", + "Timestamp": "2024-05-16T07:16:12.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.210500", + "Timestamp": "2024-05-16T07:16:09.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.250500", + "Timestamp": "2024-05-16T07:16:09.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150500", + "Timestamp": "2024-05-16T07:16:09.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.630600", + "Timestamp": "2024-05-16T07:16:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.149000", + "Timestamp": "2024-05-16T07:16:01.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.144000", + "Timestamp": "2024-05-16T07:16:01.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.019000", + "Timestamp": "2024-05-16T07:16:01.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.352500", + "Timestamp": "2024-05-16T07:15:54.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.347500", + "Timestamp": "2024-05-16T07:15:54.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.222500", + "Timestamp": "2024-05-16T07:15:54.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.144700", + "Timestamp": "2024-05-16T07:03:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.195800", + "Timestamp": "2024-05-16T07:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.165800", + "Timestamp": "2024-05-16T07:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.065800", + "Timestamp": "2024-05-16T07:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184100", + "Timestamp": "2024-05-16T07:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.224100", + "Timestamp": "2024-05-16T07:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124100", + "Timestamp": "2024-05-16T07:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.516900", + "Timestamp": "2024-05-16T07:01:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.486900", + "Timestamp": "2024-05-16T07:01:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.386900", + "Timestamp": "2024-05-16T07:01:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.420500", + "Timestamp": "2024-05-16T07:01:41.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.467500", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418700", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.852800", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.847800", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.722800", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.798800", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.347300", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.342300", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.217300", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.381400", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.376400", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.251400", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222700", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.414300", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.409300", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.284300", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.087400", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.082400", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.957400", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.464100", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.459100", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.334100", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.660000", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.655000", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.530000", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.969100", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.944100", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.450700", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.420700", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.320700", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143700", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140000", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083700", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.859800", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.121700", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.116700", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.991700", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.048300", + "Timestamp": "2024-05-16T07:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142600", + "Timestamp": "2024-05-16T07:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138900", + "Timestamp": "2024-05-16T07:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082600", + "Timestamp": "2024-05-16T07:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.752700", + "Timestamp": "2024-05-16T07:01:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.722700", + "Timestamp": "2024-05-16T07:01:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.622700", + "Timestamp": "2024-05-16T07:01:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173500", + "Timestamp": "2024-05-16T07:01:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.213500", + "Timestamp": "2024-05-16T07:01:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113500", + "Timestamp": "2024-05-16T07:01:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.836500", + "Timestamp": "2024-05-16T07:01:09.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.293000", + "Timestamp": "2024-05-16T07:01:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.737900", + "Timestamp": "2024-05-16T07:01:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118200", + "Timestamp": "2024-05-16T07:01:02.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-16T07:01:02.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058200", + "Timestamp": "2024-05-16T07:01:02.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m1.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078900", + "Timestamp": "2024-05-16T07:00:59.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m1.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.048900", + "Timestamp": "2024-05-16T07:00:59.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m1.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018900", + "Timestamp": "2024-05-16T07:00:59.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063300", + "Timestamp": "2024-05-16T06:51:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003300", + "Timestamp": "2024-05-16T06:51:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003300", + "Timestamp": "2024-05-16T06:51:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T06:47:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T06:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062400", + "Timestamp": "2024-05-16T06:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002400", + "Timestamp": "2024-05-16T06:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002400", + "Timestamp": "2024-05-16T06:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.131700", + "Timestamp": "2024-05-16T06:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.174400", + "Timestamp": "2024-05-16T06:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.778200", + "Timestamp": "2024-05-16T06:46:57.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.859600", + "Timestamp": "2024-05-16T06:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.854600", + "Timestamp": "2024-05-16T06:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.729600", + "Timestamp": "2024-05-16T06:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.592300", + "Timestamp": "2024-05-16T06:46:52.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.444500", + "Timestamp": "2024-05-16T06:46:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.677200", + "Timestamp": "2024-05-16T06:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.878700", + "Timestamp": "2024-05-16T06:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.832700", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.240800", + "Timestamp": "2024-05-16T06:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.692000", + "Timestamp": "2024-05-16T06:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.687000", + "Timestamp": "2024-05-16T06:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.562000", + "Timestamp": "2024-05-16T06:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.860800", + "Timestamp": "2024-05-16T06:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.855800", + "Timestamp": "2024-05-16T06:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.730800", + "Timestamp": "2024-05-16T06:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.309500", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.279500", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.179500", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.844200", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.839200", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.714200", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.059500", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.054500", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.929500", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.270100", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.265100", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.140100", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100400", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096400", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040400", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.366700", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.361700", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.236700", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.047700", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.042700", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.917700", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.046400", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.366300", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.396800", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144500", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140800", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084500", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092800", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089100", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032800", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.481500", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.476500", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.351500", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.742900", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.706000", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.701000", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.576000", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.458500", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.111200", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.106200", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.981200", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.682400", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.677400", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.552400", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.256900", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.251900", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126900", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.464500", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.459500", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.334500", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.445400", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048700", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131800", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128100", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071800", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.530500", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212300", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.018000", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.013000", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.888000", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.171100", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.166100", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.041100", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.348800", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343800", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.218800", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.619600", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.614600", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.489600", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107000", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047000", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.244400", + "Timestamp": "2024-05-16T06:46:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T06:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T06:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046600", + "Timestamp": "2024-05-16T06:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.982900", + "Timestamp": "2024-05-16T06:46:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.977900", + "Timestamp": "2024-05-16T06:46:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.852900", + "Timestamp": "2024-05-16T06:46:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.946700", + "Timestamp": "2024-05-16T06:46:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.941700", + "Timestamp": "2024-05-16T06:46:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.816700", + "Timestamp": "2024-05-16T06:46:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117200", + "Timestamp": "2024-05-16T06:46:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113200", + "Timestamp": "2024-05-16T06:46:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057200", + "Timestamp": "2024-05-16T06:46:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.826000", + "Timestamp": "2024-05-16T06:46:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.037800", + "Timestamp": "2024-05-16T06:46:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.007800", + "Timestamp": "2024-05-16T06:46:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.907800", + "Timestamp": "2024-05-16T06:46:12.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.467000", + "Timestamp": "2024-05-16T06:46:05.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.462000", + "Timestamp": "2024-05-16T06:46:05.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.337000", + "Timestamp": "2024-05-16T06:46:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.769300", + "Timestamp": "2024-05-16T06:46:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.028900", + "Timestamp": "2024-05-16T06:46:00.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.023900", + "Timestamp": "2024-05-16T06:46:00.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.898900", + "Timestamp": "2024-05-16T06:46:00.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152300", + "Timestamp": "2024-05-16T06:45:52.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148600", + "Timestamp": "2024-05-16T06:45:52.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092300", + "Timestamp": "2024-05-16T06:45:52.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.820500", + "Timestamp": "2024-05-16T06:45:52.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.815500", + "Timestamp": "2024-05-16T06:45:52.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.690500", + "Timestamp": "2024-05-16T06:45:52.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135300", + "Timestamp": "2024-05-16T06:36:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131300", + "Timestamp": "2024-05-16T06:36:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075300", + "Timestamp": "2024-05-16T06:36:03.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108800", + "Timestamp": "2024-05-16T06:36:03.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.558400", + "Timestamp": "2024-05-16T06:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.553400", + "Timestamp": "2024-05-16T06:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.428400", + "Timestamp": "2024-05-16T06:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.917800", + "Timestamp": "2024-05-16T06:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.912800", + "Timestamp": "2024-05-16T06:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.787800", + "Timestamp": "2024-05-16T06:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.649700", + "Timestamp": "2024-05-16T06:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.381600", + "Timestamp": "2024-05-16T06:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.558500", + "Timestamp": "2024-05-16T06:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.553500", + "Timestamp": "2024-05-16T06:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.428500", + "Timestamp": "2024-05-16T06:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.807500", + "Timestamp": "2024-05-16T06:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.783000", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.778000", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.653000", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.701200", + "Timestamp": "2024-05-16T06:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.696200", + "Timestamp": "2024-05-16T06:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.571200", + "Timestamp": "2024-05-16T06:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.143900", + "Timestamp": "2024-05-16T06:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.138900", + "Timestamp": "2024-05-16T06:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.013900", + "Timestamp": "2024-05-16T06:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.079200", + "Timestamp": "2024-05-16T06:31:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.804100", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.799100", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.674100", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.503200", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.899400", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.911700", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222100", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.383700", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.378700", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.253700", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.861700", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.409900", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.404900", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.279900", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.289000", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.259000", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159000", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297600", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.292600", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167600", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.235600", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.230600", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.105600", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.848300", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.846900", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.112400", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.107400", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.982400", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147300", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047300", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170000", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166000", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.449300", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.375900", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.370900", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.245900", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.921400", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429300", + "Timestamp": "2024-05-16T06:31:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.891200", + "Timestamp": "2024-05-16T06:31:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.886200", + "Timestamp": "2024-05-16T06:31:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.761200", + "Timestamp": "2024-05-16T06:31:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162800", + "Timestamp": "2024-05-16T06:31:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.202800", + "Timestamp": "2024-05-16T06:31:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T06:31:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.515800", + "Timestamp": "2024-05-16T06:31:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.485800", + "Timestamp": "2024-05-16T06:31:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.385800", + "Timestamp": "2024-05-16T06:31:12.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078400", + "Timestamp": "2024-05-16T06:31:11.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074700", + "Timestamp": "2024-05-16T06:31:11.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018400", + "Timestamp": "2024-05-16T06:31:11.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.509000", + "Timestamp": "2024-05-16T06:31:11.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.504000", + "Timestamp": "2024-05-16T06:31:11.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.379000", + "Timestamp": "2024-05-16T06:31:11.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169100", + "Timestamp": "2024-05-16T06:31:09.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165100", + "Timestamp": "2024-05-16T06:31:09.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109100", + "Timestamp": "2024-05-16T06:31:09.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.903100", + "Timestamp": "2024-05-16T06:31:09.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.714600", + "Timestamp": "2024-05-16T06:31:08.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.709600", + "Timestamp": "2024-05-16T06:31:08.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.584600", + "Timestamp": "2024-05-16T06:31:08.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095500", + "Timestamp": "2024-05-16T06:30:59.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T06:30:59.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035500", + "Timestamp": "2024-05-16T06:30:59.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113500", + "Timestamp": "2024-05-16T06:30:55.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.532600", + "Timestamp": "2024-05-16T06:30:54.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.455700", + "Timestamp": "2024-05-16T06:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.450700", + "Timestamp": "2024-05-16T06:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.325700", + "Timestamp": "2024-05-16T06:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.638300", + "Timestamp": "2024-05-16T06:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.608300", + "Timestamp": "2024-05-16T06:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.508300", + "Timestamp": "2024-05-16T06:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.303700", + "Timestamp": "2024-05-16T06:16:47.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083600", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123600", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023600", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.412900", + "Timestamp": "2024-05-16T06:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093900", + "Timestamp": "2024-05-16T06:16:42.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090200", + "Timestamp": "2024-05-16T06:16:42.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033900", + "Timestamp": "2024-05-16T06:16:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.691200", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.082300", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.077300", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.952300", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.895900", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.890900", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.765900", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103600", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047600", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.038700", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.509200", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.504200", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.379200", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.430900", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.400900", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.300900", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.441600", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.436600", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.311600", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.511200", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.481200", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.381200", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.980000", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.318600", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.313600", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.188600", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.706100", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.701100", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.576100", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071200", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042200", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011200", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.863800", + "Timestamp": "2024-05-16T06:16:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.858800", + "Timestamp": "2024-05-16T06:16:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.733800", + "Timestamp": "2024-05-16T06:16:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.116100", + "Timestamp": "2024-05-16T06:16:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119800", + "Timestamp": "2024-05-16T06:16:10.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159800", + "Timestamp": "2024-05-16T06:16:10.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059800", + "Timestamp": "2024-05-16T06:16:10.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.295900", + "Timestamp": "2024-05-16T06:16:10.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265900", + "Timestamp": "2024-05-16T06:16:10.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165900", + "Timestamp": "2024-05-16T06:16:10.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.394500", + "Timestamp": "2024-05-16T06:16:09.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.364500", + "Timestamp": "2024-05-16T06:16:09.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.264500", + "Timestamp": "2024-05-16T06:16:09.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.489800", + "Timestamp": "2024-05-16T06:16:07.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.051300", + "Timestamp": "2024-05-16T06:16:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.046300", + "Timestamp": "2024-05-16T06:16:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.921300", + "Timestamp": "2024-05-16T06:16:06.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.167700", + "Timestamp": "2024-05-16T06:16:05.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107800", + "Timestamp": "2024-05-16T06:16:01.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104100", + "Timestamp": "2024-05-16T06:16:01.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047800", + "Timestamp": "2024-05-16T06:16:01.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.185000", + "Timestamp": "2024-05-16T06:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181000", + "Timestamp": "2024-05-16T06:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125000", + "Timestamp": "2024-05-16T06:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.065400", + "Timestamp": "2024-05-16T06:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.035400", + "Timestamp": "2024-05-16T06:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.935400", + "Timestamp": "2024-05-16T06:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.033200", + "Timestamp": "2024-05-16T06:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.028200", + "Timestamp": "2024-05-16T06:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.903200", + "Timestamp": "2024-05-16T06:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.876200", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.125700", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.837900", + "Timestamp": "2024-05-16T06:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.215400", + "Timestamp": "2024-05-16T06:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.210400", + "Timestamp": "2024-05-16T06:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085400", + "Timestamp": "2024-05-16T06:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.123600", + "Timestamp": "2024-05-16T06:01:41.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.118600", + "Timestamp": "2024-05-16T06:01:41.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.993600", + "Timestamp": "2024-05-16T06:01:41.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107900", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047900", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.095500", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.090500", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.965500", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.421400", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.416400", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.291400", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.129300", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.086600", + "Timestamp": "2024-05-16T06:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052100", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.018000", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.013000", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.888000", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299100", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269100", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169100", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.894900", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.046000", + "Timestamp": "2024-05-16T06:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.989900", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.984900", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.859900", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.754900", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.746400", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.335300", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.330300", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.205300", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294900", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289900", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164900", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.831400", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.826400", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.701400", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362500", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.357500", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.232500", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099300", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095600", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039300", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.235900", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.230900", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.105900", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.342200", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.337200", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212200", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097900", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094200", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037900", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.382100", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.377100", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.252100", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.989100", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.984100", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.859100", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.882700", + "Timestamp": "2024-05-16T06:01:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.692200", + "Timestamp": "2024-05-16T06:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.004600", + "Timestamp": "2024-05-16T06:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.960300", + "Timestamp": "2024-05-16T06:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.955300", + "Timestamp": "2024-05-16T06:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.830300", + "Timestamp": "2024-05-16T06:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.071900", + "Timestamp": "2024-05-16T06:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135100", + "Timestamp": "2024-05-16T06:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131400", + "Timestamp": "2024-05-16T06:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075100", + "Timestamp": "2024-05-16T06:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.927000", + "Timestamp": "2024-05-16T06:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297700", + "Timestamp": "2024-05-16T06:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.292700", + "Timestamp": "2024-05-16T06:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167700", + "Timestamp": "2024-05-16T06:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.752100", + "Timestamp": "2024-05-16T06:01:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.288600", + "Timestamp": "2024-05-16T06:01:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258600", + "Timestamp": "2024-05-16T06:01:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158600", + "Timestamp": "2024-05-16T06:01:13.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.790600", + "Timestamp": "2024-05-16T06:01:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.760600", + "Timestamp": "2024-05-16T06:01:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.660600", + "Timestamp": "2024-05-16T06:01:12.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.230700", + "Timestamp": "2024-05-16T06:01:08.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.954200", + "Timestamp": "2024-05-16T06:01:07.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.981500", + "Timestamp": "2024-05-16T06:01:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.926000", + "Timestamp": "2024-05-16T06:01:02.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T06:01:00.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145000", + "Timestamp": "2024-05-16T06:01:00.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045000", + "Timestamp": "2024-05-16T06:01:00.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.147400", + "Timestamp": "2024-05-16T06:00:57.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.357500", + "Timestamp": "2024-05-16T06:00:52.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.159500", + "Timestamp": "2024-05-16T05:53:07.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.036800", + "Timestamp": "2024-05-16T05:53:07.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.031800", + "Timestamp": "2024-05-16T05:53:07.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.906800", + "Timestamp": "2024-05-16T05:53:07.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.896200", + "Timestamp": "2024-05-16T05:52:07.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.090200", + "Timestamp": "2024-05-16T05:51:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.085200", + "Timestamp": "2024-05-16T05:51:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.960200", + "Timestamp": "2024-05-16T05:51:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.617800", + "Timestamp": "2024-05-16T05:51:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.612800", + "Timestamp": "2024-05-16T05:51:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.487800", + "Timestamp": "2024-05-16T05:51:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068900", + "Timestamp": "2024-05-16T05:51:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068300", + "Timestamp": "2024-05-16T05:51:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039900", + "Timestamp": "2024-05-16T05:51:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039300", + "Timestamp": "2024-05-16T05:51:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008900", + "Timestamp": "2024-05-16T05:51:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008300", + "Timestamp": "2024-05-16T05:51:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.494400", + "Timestamp": "2024-05-16T05:50:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.698200", + "Timestamp": "2024-05-16T05:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.816500", + "Timestamp": "2024-05-16T05:47:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.811500", + "Timestamp": "2024-05-16T05:47:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.686500", + "Timestamp": "2024-05-16T05:47:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.913400", + "Timestamp": "2024-05-16T05:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.908400", + "Timestamp": "2024-05-16T05:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.783400", + "Timestamp": "2024-05-16T05:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.959200", + "Timestamp": "2024-05-16T05:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.965200", + "Timestamp": "2024-05-16T05:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.960200", + "Timestamp": "2024-05-16T05:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.835200", + "Timestamp": "2024-05-16T05:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.624100", + "Timestamp": "2024-05-16T05:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.122400", + "Timestamp": "2024-05-16T05:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.544100", + "Timestamp": "2024-05-16T05:46:57.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.001800", + "Timestamp": "2024-05-16T05:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.996800", + "Timestamp": "2024-05-16T05:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.871800", + "Timestamp": "2024-05-16T05:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.891500", + "Timestamp": "2024-05-16T05:46:54.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.886500", + "Timestamp": "2024-05-16T05:46:54.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.761500", + "Timestamp": "2024-05-16T05:46:54.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.100700", + "Timestamp": "2024-05-16T05:46:53.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.110200", + "Timestamp": "2024-05-16T05:46:51.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.080200", + "Timestamp": "2024-05-16T05:46:51.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.980200", + "Timestamp": "2024-05-16T05:46:51.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.736600", + "Timestamp": "2024-05-16T05:46:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125800", + "Timestamp": "2024-05-16T05:46:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121800", + "Timestamp": "2024-05-16T05:46:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065800", + "Timestamp": "2024-05-16T05:46:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.393400", + "Timestamp": "2024-05-16T05:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.388400", + "Timestamp": "2024-05-16T05:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.263400", + "Timestamp": "2024-05-16T05:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.643200", + "Timestamp": "2024-05-16T05:46:41.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.638200", + "Timestamp": "2024-05-16T05:46:41.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.513200", + "Timestamp": "2024-05-16T05:46:41.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.603900", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.598900", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.473900", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.193900", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.523200", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.518200", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.393200", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278800", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273800", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148800", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.417200", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.412200", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.287200", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.622800", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.617800", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.492800", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.269600", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.264600", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139600", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.930100", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.900100", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.800100", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.615500", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.610500", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.485500", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.187900", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.809400", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.804400", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.679400", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.290100", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.260100", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.160100", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.450400", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.445400", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.320400", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.060800", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.055800", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.930800", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.302500", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.297500", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172500", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.224000", + "Timestamp": "2024-05-16T05:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.219000", + "Timestamp": "2024-05-16T05:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.094000", + "Timestamp": "2024-05-16T05:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.524800", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.519800", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.394800", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.010100", + "Timestamp": "2024-05-16T05:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.302200", + "Timestamp": "2024-05-16T05:46:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109100", + "Timestamp": "2024-05-16T05:46:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235700", + "Timestamp": "2024-05-16T05:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T05:46:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144000", + "Timestamp": "2024-05-16T05:46:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044000", + "Timestamp": "2024-05-16T05:46:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.557500", + "Timestamp": "2024-05-16T05:46:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.354400", + "Timestamp": "2024-05-16T05:46:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.349400", + "Timestamp": "2024-05-16T05:46:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.224400", + "Timestamp": "2024-05-16T05:46:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109200", + "Timestamp": "2024-05-16T05:46:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106200", + "Timestamp": "2024-05-16T05:46:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049200", + "Timestamp": "2024-05-16T05:46:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.131900", + "Timestamp": "2024-05-16T05:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.101900", + "Timestamp": "2024-05-16T05:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.001900", + "Timestamp": "2024-05-16T05:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.073700", + "Timestamp": "2024-05-16T05:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.068700", + "Timestamp": "2024-05-16T05:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.943700", + "Timestamp": "2024-05-16T05:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146200", + "Timestamp": "2024-05-16T05:31:59.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142500", + "Timestamp": "2024-05-16T05:31:59.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086200", + "Timestamp": "2024-05-16T05:31:59.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111700", + "Timestamp": "2024-05-16T05:31:53.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151700", + "Timestamp": "2024-05-16T05:31:53.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051700", + "Timestamp": "2024-05-16T05:31:53.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-16T05:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432200", + "Timestamp": "2024-05-16T05:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.779700", + "Timestamp": "2024-05-16T05:31:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.774700", + "Timestamp": "2024-05-16T05:31:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.649700", + "Timestamp": "2024-05-16T05:31:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115200", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111200", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055200", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.264100", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.405500", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.375500", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.275500", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094800", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091100", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034800", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.343300", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.338300", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.213300", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.008300", + "Timestamp": "2024-05-16T05:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073900", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070200", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013900", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.916300", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.565400", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.129900", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.844200", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.250800", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.044900", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.039900", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.914900", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.521700", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.491700", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.391700", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.422000", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.788800", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.783800", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.658800", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.604900", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.599900", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.474900", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.527100", + "Timestamp": "2024-05-16T05:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.543900", + "Timestamp": "2024-05-16T05:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.042200", + "Timestamp": "2024-05-16T05:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.897900", + "Timestamp": "2024-05-16T05:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360600", + "Timestamp": "2024-05-16T05:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.330600", + "Timestamp": "2024-05-16T05:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230600", + "Timestamp": "2024-05-16T05:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161900", + "Timestamp": "2024-05-16T05:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.201900", + "Timestamp": "2024-05-16T05:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101900", + "Timestamp": "2024-05-16T05:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.585000", + "Timestamp": "2024-05-16T05:31:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.580000", + "Timestamp": "2024-05-16T05:31:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.455000", + "Timestamp": "2024-05-16T05:31:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.074900", + "Timestamp": "2024-05-16T05:31:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.044900", + "Timestamp": "2024-05-16T05:31:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.944900", + "Timestamp": "2024-05-16T05:31:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.444400", + "Timestamp": "2024-05-16T05:31:10.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.518600", + "Timestamp": "2024-05-16T05:31:07.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139600", + "Timestamp": "2024-05-16T05:31:02.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135900", + "Timestamp": "2024-05-16T05:31:02.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079600", + "Timestamp": "2024-05-16T05:31:02.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.033600", + "Timestamp": "2024-05-16T05:30:55.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.003600", + "Timestamp": "2024-05-16T05:30:55.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.903600", + "Timestamp": "2024-05-16T05:30:55.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.024700", + "Timestamp": "2024-05-16T05:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T05:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099600", + "Timestamp": "2024-05-16T05:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043300", + "Timestamp": "2024-05-16T05:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.705800", + "Timestamp": "2024-05-16T05:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.700800", + "Timestamp": "2024-05-16T05:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.575800", + "Timestamp": "2024-05-16T05:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021200", + "Timestamp": "2024-05-16T05:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.392400", + "Timestamp": "2024-05-16T05:16:51.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.362400", + "Timestamp": "2024-05-16T05:16:51.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.262400", + "Timestamp": "2024-05-16T05:16:51.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.073400", + "Timestamp": "2024-05-16T05:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054500", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.457400", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.254000", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.249000", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124000", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.737700", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.732700", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.607700", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.046200", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.041200", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.916200", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.755700", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.750700", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.625700", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.234700", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.229700", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.104700", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123000", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119300", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063000", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.103300", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.098300", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.973300", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154000", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150300", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094000", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.489400", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.653100", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.648100", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.523100", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.232800", + "Timestamp": "2024-05-16T05:16:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.849400", + "Timestamp": "2024-05-16T05:16:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.938600", + "Timestamp": "2024-05-16T05:16:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.473000", + "Timestamp": "2024-05-16T05:16:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.443000", + "Timestamp": "2024-05-16T05:16:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.343000", + "Timestamp": "2024-05-16T05:16:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.184400", + "Timestamp": "2024-05-16T05:16:09.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.907200", + "Timestamp": "2024-05-16T05:16:03.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.902200", + "Timestamp": "2024-05-16T05:16:03.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.777200", + "Timestamp": "2024-05-16T05:16:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.573100", + "Timestamp": "2024-05-16T05:16:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m1.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075800", + "Timestamp": "2024-05-16T05:15:59.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m1.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.045800", + "Timestamp": "2024-05-16T05:15:59.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m1.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015800", + "Timestamp": "2024-05-16T05:15:59.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.165000", + "Timestamp": "2024-05-16T05:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.713400", + "Timestamp": "2024-05-16T05:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.708400", + "Timestamp": "2024-05-16T05:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.583400", + "Timestamp": "2024-05-16T05:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.307200", + "Timestamp": "2024-05-16T05:01:57.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.988200", + "Timestamp": "2024-05-16T05:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218200", + "Timestamp": "2024-05-16T05:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.435600", + "Timestamp": "2024-05-16T05:01:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.430600", + "Timestamp": "2024-05-16T05:01:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.305600", + "Timestamp": "2024-05-16T05:01:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.319700", + "Timestamp": "2024-05-16T05:01:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.314700", + "Timestamp": "2024-05-16T05:01:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.189700", + "Timestamp": "2024-05-16T05:01:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.775500", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.770500", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.645500", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.764900", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.595700", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.590700", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.465700", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.352800", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.347800", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.222800", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150100", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190100", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090100", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.434800", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.662800", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.657800", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.532800", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.660800", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.141300", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.136300", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.011300", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.727000", + "Timestamp": "2024-05-16T05:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.722000", + "Timestamp": "2024-05-16T05:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.597000", + "Timestamp": "2024-05-16T05:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131800", + "Timestamp": "2024-05-16T05:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128100", + "Timestamp": "2024-05-16T05:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071800", + "Timestamp": "2024-05-16T05:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.758600", + "Timestamp": "2024-05-16T05:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.686000", + "Timestamp": "2024-05-16T05:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.681000", + "Timestamp": "2024-05-16T05:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.556000", + "Timestamp": "2024-05-16T05:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.043700", + "Timestamp": "2024-05-16T05:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.038700", + "Timestamp": "2024-05-16T05:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.913700", + "Timestamp": "2024-05-16T05:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146500", + "Timestamp": "2024-05-16T05:01:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142800", + "Timestamp": "2024-05-16T05:01:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086500", + "Timestamp": "2024-05-16T05:01:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.910600", + "Timestamp": "2024-05-16T05:01:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.974600", + "Timestamp": "2024-05-16T05:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.276400", + "Timestamp": "2024-05-16T05:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.334300", + "Timestamp": "2024-05-16T05:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.877000", + "Timestamp": "2024-05-16T05:01:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.705400", + "Timestamp": "2024-05-16T05:01:11.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.688900", + "Timestamp": "2024-05-16T05:01:10.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.464600", + "Timestamp": "2024-05-16T05:01:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.841600", + "Timestamp": "2024-05-16T05:00:59.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.836600", + "Timestamp": "2024-05-16T05:00:59.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.711600", + "Timestamp": "2024-05-16T05:00:59.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.668100", + "Timestamp": "2024-05-16T04:46:53.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.564100", + "Timestamp": "2024-05-16T04:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.559100", + "Timestamp": "2024-05-16T04:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.434100", + "Timestamp": "2024-05-16T04:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.072500", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.067500", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.942500", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.086800", + "Timestamp": "2024-05-16T04:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.081800", + "Timestamp": "2024-05-16T04:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.956800", + "Timestamp": "2024-05-16T04:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.829700", + "Timestamp": "2024-05-16T04:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.357000", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.327000", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.227000", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.465300", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.610300", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.258600", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.253600", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.128600", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.234900", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.653300", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111600", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151600", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051600", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.907200", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.877200", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.777200", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106000", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049700", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.264400", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.234400", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134400", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214100", + "Timestamp": "2024-05-16T04:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.916300", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.911300", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.786300", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.818900", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.788900", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.688900", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133600", + "Timestamp": "2024-05-16T04:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173600", + "Timestamp": "2024-05-16T04:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073600", + "Timestamp": "2024-05-16T04:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.665200", + "Timestamp": "2024-05-16T04:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.660200", + "Timestamp": "2024-05-16T04:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.535200", + "Timestamp": "2024-05-16T04:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.635000", + "Timestamp": "2024-05-16T04:46:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.605000", + "Timestamp": "2024-05-16T04:46:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.505000", + "Timestamp": "2024-05-16T04:46:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.672200", + "Timestamp": "2024-05-16T04:46:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.377100", + "Timestamp": "2024-05-16T04:46:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.372100", + "Timestamp": "2024-05-16T04:46:07.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.247100", + "Timestamp": "2024-05-16T04:46:07.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.664400", + "Timestamp": "2024-05-16T04:46:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.634400", + "Timestamp": "2024-05-16T04:46:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.534400", + "Timestamp": "2024-05-16T04:46:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.904900", + "Timestamp": "2024-05-16T04:45:58.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.783800", + "Timestamp": "2024-05-16T04:45:55.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.753800", + "Timestamp": "2024-05-16T04:45:55.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.653800", + "Timestamp": "2024-05-16T04:45:55.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.598000", + "Timestamp": "2024-05-16T04:43:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.598000", + "Timestamp": "2024-05-16T04:43:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.593000", + "Timestamp": "2024-05-16T04:43:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.593000", + "Timestamp": "2024-05-16T04:43:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.468000", + "Timestamp": "2024-05-16T04:43:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.468000", + "Timestamp": "2024-05-16T04:43:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.356000", + "Timestamp": "2024-05-16T04:43:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.356000", + "Timestamp": "2024-05-16T04:43:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.607500", + "Timestamp": "2024-05-16T04:32:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118400", + "Timestamp": "2024-05-16T04:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.252400", + "Timestamp": "2024-05-16T04:32:01.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.247400", + "Timestamp": "2024-05-16T04:32:01.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122400", + "Timestamp": "2024-05-16T04:32:01.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.544600", + "Timestamp": "2024-05-16T04:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.696300", + "Timestamp": "2024-05-16T04:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.691300", + "Timestamp": "2024-05-16T04:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.566300", + "Timestamp": "2024-05-16T04:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.938700", + "Timestamp": "2024-05-16T04:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.933700", + "Timestamp": "2024-05-16T04:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.808700", + "Timestamp": "2024-05-16T04:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.114400", + "Timestamp": "2024-05-16T04:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.434100", + "Timestamp": "2024-05-16T04:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176300", + "Timestamp": "2024-05-16T04:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172600", + "Timestamp": "2024-05-16T04:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116300", + "Timestamp": "2024-05-16T04:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T04:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103900", + "Timestamp": "2024-05-16T04:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047600", + "Timestamp": "2024-05-16T04:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.277300", + "Timestamp": "2024-05-16T04:31:41.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.272300", + "Timestamp": "2024-05-16T04:31:41.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.147300", + "Timestamp": "2024-05-16T04:31:41.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.395200", + "Timestamp": "2024-05-16T04:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.365200", + "Timestamp": "2024-05-16T04:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.265200", + "Timestamp": "2024-05-16T04:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.258400", + "Timestamp": "2024-05-16T04:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.189100", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.186100", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129100", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423300", + "Timestamp": "2024-05-16T04:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.943600", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.938600", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.813600", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.972100", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.514800", + "Timestamp": "2024-05-16T04:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108500", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048500", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.670800", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.665800", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.540800", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.343000", + "Timestamp": "2024-05-16T04:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.338000", + "Timestamp": "2024-05-16T04:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.213000", + "Timestamp": "2024-05-16T04:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440600", + "Timestamp": "2024-05-16T04:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.430900", + "Timestamp": "2024-05-16T04:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116700", + "Timestamp": "2024-05-16T04:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-16T04:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056700", + "Timestamp": "2024-05-16T04:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.880300", + "Timestamp": "2024-05-16T04:31:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.850300", + "Timestamp": "2024-05-16T04:31:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.750300", + "Timestamp": "2024-05-16T04:31:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.436400", + "Timestamp": "2024-05-16T04:31:16.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362500", + "Timestamp": "2024-05-16T04:31:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.357500", + "Timestamp": "2024-05-16T04:31:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.232500", + "Timestamp": "2024-05-16T04:31:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.692900", + "Timestamp": "2024-05-16T04:31:10.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.711200", + "Timestamp": "2024-05-16T04:31:10.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150700", + "Timestamp": "2024-05-16T04:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147000", + "Timestamp": "2024-05-16T04:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090700", + "Timestamp": "2024-05-16T04:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114000", + "Timestamp": "2024-05-16T04:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070800", + "Timestamp": "2024-05-16T04:16:55.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067100", + "Timestamp": "2024-05-16T04:16:55.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010800", + "Timestamp": "2024-05-16T04:16:55.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.170300", + "Timestamp": "2024-05-16T04:16:53.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.568300", + "Timestamp": "2024-05-16T04:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.022000", + "Timestamp": "2024-05-16T04:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.017000", + "Timestamp": "2024-05-16T04:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.892000", + "Timestamp": "2024-05-16T04:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.331700", + "Timestamp": "2024-05-16T04:16:47.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.782300", + "Timestamp": "2024-05-16T04:16:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.316600", + "Timestamp": "2024-05-16T04:16:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.311600", + "Timestamp": "2024-05-16T04:16:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.186600", + "Timestamp": "2024-05-16T04:16:38.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.497100", + "Timestamp": "2024-05-16T04:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.586900", + "Timestamp": "2024-05-16T04:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.556900", + "Timestamp": "2024-05-16T04:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.456900", + "Timestamp": "2024-05-16T04:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.354400", + "Timestamp": "2024-05-16T04:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.620700", + "Timestamp": "2024-05-16T04:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.590700", + "Timestamp": "2024-05-16T04:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.490700", + "Timestamp": "2024-05-16T04:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.398900", + "Timestamp": "2024-05-16T04:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.393900", + "Timestamp": "2024-05-16T04:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.268900", + "Timestamp": "2024-05-16T04:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.498600", + "Timestamp": "2024-05-16T04:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.493600", + "Timestamp": "2024-05-16T04:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.368600", + "Timestamp": "2024-05-16T04:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.930300", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271000", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266000", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141000", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.499400", + "Timestamp": "2024-05-16T04:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081400", + "Timestamp": "2024-05-16T04:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077700", + "Timestamp": "2024-05-16T04:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021400", + "Timestamp": "2024-05-16T04:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.823200", + "Timestamp": "2024-05-16T04:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.818200", + "Timestamp": "2024-05-16T04:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.693200", + "Timestamp": "2024-05-16T04:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157500", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153500", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.893100", + "Timestamp": "2024-05-16T04:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.888100", + "Timestamp": "2024-05-16T04:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.763100", + "Timestamp": "2024-05-16T04:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.302000", + "Timestamp": "2024-05-16T04:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.297000", + "Timestamp": "2024-05-16T04:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172000", + "Timestamp": "2024-05-16T04:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.074600", + "Timestamp": "2024-05-16T04:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.514000", + "Timestamp": "2024-05-16T04:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172800", + "Timestamp": "2024-05-16T04:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168800", + "Timestamp": "2024-05-16T04:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T04:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.416300", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.411300", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.286300", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118200", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058200", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.830000", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.723400", + "Timestamp": "2024-05-16T04:16:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.916400", + "Timestamp": "2024-05-16T04:16:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.911400", + "Timestamp": "2024-05-16T04:16:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.786400", + "Timestamp": "2024-05-16T04:16:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.509800", + "Timestamp": "2024-05-16T04:16:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.583400", + "Timestamp": "2024-05-16T04:16:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113300", + "Timestamp": "2024-05-16T04:16:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.769400", + "Timestamp": "2024-05-16T04:16:08.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.764400", + "Timestamp": "2024-05-16T04:16:08.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.639400", + "Timestamp": "2024-05-16T04:16:08.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.689900", + "Timestamp": "2024-05-16T04:16:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.677800", + "Timestamp": "2024-05-16T04:02:16.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.647800", + "Timestamp": "2024-05-16T04:02:16.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.547800", + "Timestamp": "2024-05-16T04:02:16.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.031100", + "Timestamp": "2024-05-16T04:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.026100", + "Timestamp": "2024-05-16T04:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.901100", + "Timestamp": "2024-05-16T04:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.298100", + "Timestamp": "2024-05-16T04:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102300", + "Timestamp": "2024-05-16T04:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098300", + "Timestamp": "2024-05-16T04:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042300", + "Timestamp": "2024-05-16T04:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.437600", + "Timestamp": "2024-05-16T04:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.242300", + "Timestamp": "2024-05-16T04:01:58.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115100", + "Timestamp": "2024-05-16T04:01:55.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.645400", + "Timestamp": "2024-05-16T04:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.640400", + "Timestamp": "2024-05-16T04:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.515400", + "Timestamp": "2024-05-16T04:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.055300", + "Timestamp": "2024-05-16T04:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.050300", + "Timestamp": "2024-05-16T04:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.925300", + "Timestamp": "2024-05-16T04:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.509900", + "Timestamp": "2024-05-16T04:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.504900", + "Timestamp": "2024-05-16T04:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.379900", + "Timestamp": "2024-05-16T04:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.251900", + "Timestamp": "2024-05-16T04:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.248800", + "Timestamp": "2024-05-16T04:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.632000", + "Timestamp": "2024-05-16T04:01:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.012200", + "Timestamp": "2024-05-16T04:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.007200", + "Timestamp": "2024-05-16T04:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.882200", + "Timestamp": "2024-05-16T04:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.125400", + "Timestamp": "2024-05-16T04:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.120400", + "Timestamp": "2024-05-16T04:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.995400", + "Timestamp": "2024-05-16T04:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101400", + "Timestamp": "2024-05-16T04:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097700", + "Timestamp": "2024-05-16T04:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041400", + "Timestamp": "2024-05-16T04:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149100", + "Timestamp": "2024-05-16T04:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145400", + "Timestamp": "2024-05-16T04:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089100", + "Timestamp": "2024-05-16T04:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.588800", + "Timestamp": "2024-05-16T04:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.583800", + "Timestamp": "2024-05-16T04:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.458800", + "Timestamp": "2024-05-16T04:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.640300", + "Timestamp": "2024-05-16T04:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.635300", + "Timestamp": "2024-05-16T04:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.510300", + "Timestamp": "2024-05-16T04:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T04:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.348000", + "Timestamp": "2024-05-16T04:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343000", + "Timestamp": "2024-05-16T04:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.218000", + "Timestamp": "2024-05-16T04:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.031100", + "Timestamp": "2024-05-16T04:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.026100", + "Timestamp": "2024-05-16T04:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.901100", + "Timestamp": "2024-05-16T04:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.445300", + "Timestamp": "2024-05-16T04:01:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.894300", + "Timestamp": "2024-05-16T04:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.889300", + "Timestamp": "2024-05-16T04:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.764300", + "Timestamp": "2024-05-16T04:01:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.409400", + "Timestamp": "2024-05-16T04:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.867800", + "Timestamp": "2024-05-16T04:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.862800", + "Timestamp": "2024-05-16T04:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.737800", + "Timestamp": "2024-05-16T04:01:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.257600", + "Timestamp": "2024-05-16T04:01:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.252600", + "Timestamp": "2024-05-16T04:01:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127600", + "Timestamp": "2024-05-16T04:01:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.239600", + "Timestamp": "2024-05-16T04:00:59.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218400", + "Timestamp": "2024-05-16T03:50:54.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.257600", + "Timestamp": "2024-05-16T03:46:58.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.252600", + "Timestamp": "2024-05-16T03:46:58.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.127600", + "Timestamp": "2024-05-16T03:46:58.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.884500", + "Timestamp": "2024-05-16T03:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.879500", + "Timestamp": "2024-05-16T03:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.754500", + "Timestamp": "2024-05-16T03:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.281000", + "Timestamp": "2024-05-16T03:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.276000", + "Timestamp": "2024-05-16T03:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.151000", + "Timestamp": "2024-05-16T03:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229900", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.726100", + "Timestamp": "2024-05-16T03:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.721100", + "Timestamp": "2024-05-16T03:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.596100", + "Timestamp": "2024-05-16T03:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.865200", + "Timestamp": "2024-05-16T03:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.860200", + "Timestamp": "2024-05-16T03:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.735200", + "Timestamp": "2024-05-16T03:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.160600", + "Timestamp": "2024-05-16T03:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.155600", + "Timestamp": "2024-05-16T03:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.030600", + "Timestamp": "2024-05-16T03:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T03:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.484800", + "Timestamp": "2024-05-16T03:46:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270900", + "Timestamp": "2024-05-16T03:46:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265900", + "Timestamp": "2024-05-16T03:46:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140900", + "Timestamp": "2024-05-16T03:46:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103400", + "Timestamp": "2024-05-16T03:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099400", + "Timestamp": "2024-05-16T03:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043400", + "Timestamp": "2024-05-16T03:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081400", + "Timestamp": "2024-05-16T03:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077700", + "Timestamp": "2024-05-16T03:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021400", + "Timestamp": "2024-05-16T03:46:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.917700", + "Timestamp": "2024-05-16T03:46:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.887700", + "Timestamp": "2024-05-16T03:46:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.787700", + "Timestamp": "2024-05-16T03:46:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116800", + "Timestamp": "2024-05-16T03:46:03.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113100", + "Timestamp": "2024-05-16T03:46:03.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056800", + "Timestamp": "2024-05-16T03:46:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.858100", + "Timestamp": "2024-05-16T03:46:01.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.303100", + "Timestamp": "2024-05-16T03:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298100", + "Timestamp": "2024-05-16T03:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.173100", + "Timestamp": "2024-05-16T03:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.647200", + "Timestamp": "2024-05-16T03:31:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222800", + "Timestamp": "2024-05-16T03:31:39.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.874600", + "Timestamp": "2024-05-16T03:31:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.199900", + "Timestamp": "2024-05-16T03:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062300", + "Timestamp": "2024-05-16T03:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002300", + "Timestamp": "2024-05-16T03:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002300", + "Timestamp": "2024-05-16T03:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111100", + "Timestamp": "2024-05-16T03:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T03:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051100", + "Timestamp": "2024-05-16T03:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T03:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110900", + "Timestamp": "2024-05-16T03:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054600", + "Timestamp": "2024-05-16T03:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.754500", + "Timestamp": "2024-05-16T03:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.749500", + "Timestamp": "2024-05-16T03:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.624500", + "Timestamp": "2024-05-16T03:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.319500", + "Timestamp": "2024-05-16T03:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.314500", + "Timestamp": "2024-05-16T03:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.189500", + "Timestamp": "2024-05-16T03:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.022000", + "Timestamp": "2024-05-16T03:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.017000", + "Timestamp": "2024-05-16T03:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.892000", + "Timestamp": "2024-05-16T03:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.820200", + "Timestamp": "2024-05-16T03:31:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.815200", + "Timestamp": "2024-05-16T03:31:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.690200", + "Timestamp": "2024-05-16T03:31:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146200", + "Timestamp": "2024-05-16T03:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.186200", + "Timestamp": "2024-05-16T03:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086200", + "Timestamp": "2024-05-16T03:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.448100", + "Timestamp": "2024-05-16T03:31:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.716600", + "Timestamp": "2024-05-16T03:31:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.415400", + "Timestamp": "2024-05-16T03:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.507800", + "Timestamp": "2024-05-16T03:16:56.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.190900", + "Timestamp": "2024-05-16T03:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.160900", + "Timestamp": "2024-05-16T03:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.060900", + "Timestamp": "2024-05-16T03:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.900600", + "Timestamp": "2024-05-16T03:16:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062700", + "Timestamp": "2024-05-16T03:16:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002700", + "Timestamp": "2024-05-16T03:16:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002700", + "Timestamp": "2024-05-16T03:16:38.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.603400", + "Timestamp": "2024-05-16T03:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.598400", + "Timestamp": "2024-05-16T03:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.473400", + "Timestamp": "2024-05-16T03:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.767000", + "Timestamp": "2024-05-16T03:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.762000", + "Timestamp": "2024-05-16T03:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.637000", + "Timestamp": "2024-05-16T03:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114300", + "Timestamp": "2024-05-16T03:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T03:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054300", + "Timestamp": "2024-05-16T03:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213900", + "Timestamp": "2024-05-16T03:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T03:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.469300", + "Timestamp": "2024-05-16T03:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.439300", + "Timestamp": "2024-05-16T03:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.339300", + "Timestamp": "2024-05-16T03:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-16T03:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092800", + "Timestamp": "2024-05-16T03:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036500", + "Timestamp": "2024-05-16T03:16:28.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117400", + "Timestamp": "2024-05-16T03:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157400", + "Timestamp": "2024-05-16T03:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057400", + "Timestamp": "2024-05-16T03:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184000", + "Timestamp": "2024-05-16T03:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180000", + "Timestamp": "2024-05-16T03:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124000", + "Timestamp": "2024-05-16T03:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.484800", + "Timestamp": "2024-05-16T03:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151800", + "Timestamp": "2024-05-16T03:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147800", + "Timestamp": "2024-05-16T03:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T03:16:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072800", + "Timestamp": "2024-05-16T03:16:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043800", + "Timestamp": "2024-05-16T03:16:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012800", + "Timestamp": "2024-05-16T03:16:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.859700", + "Timestamp": "2024-05-16T03:16:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.854700", + "Timestamp": "2024-05-16T03:16:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.729700", + "Timestamp": "2024-05-16T03:16:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.964300", + "Timestamp": "2024-05-16T03:16:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.959300", + "Timestamp": "2024-05-16T03:16:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.834300", + "Timestamp": "2024-05-16T03:16:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431700", + "Timestamp": "2024-05-16T03:16:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.177200", + "Timestamp": "2024-05-16T03:16:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.172200", + "Timestamp": "2024-05-16T03:16:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.047200", + "Timestamp": "2024-05-16T03:16:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.882900", + "Timestamp": "2024-05-16T03:16:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.243100", + "Timestamp": "2024-05-16T03:16:16.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167300", + "Timestamp": "2024-05-16T03:16:07.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163300", + "Timestamp": "2024-05-16T03:16:07.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T03:16:07.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.862300", + "Timestamp": "2024-05-16T03:15:56.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.832300", + "Timestamp": "2024-05-16T03:15:56.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.732300", + "Timestamp": "2024-05-16T03:15:56.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062900", + "Timestamp": "2024-05-16T03:03:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002900", + "Timestamp": "2024-05-16T03:03:27.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002900", + "Timestamp": "2024-05-16T03:03:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.013400", + "Timestamp": "2024-05-16T03:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.747200", + "Timestamp": "2024-05-16T03:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.747200", + "Timestamp": "2024-05-16T03:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.711500", + "Timestamp": "2024-05-16T03:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.300000", + "Timestamp": "2024-05-16T03:01:46.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.232700", + "Timestamp": "2024-05-16T03:01:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.128700", + "Timestamp": "2024-05-16T03:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.098700", + "Timestamp": "2024-05-16T03:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.998700", + "Timestamp": "2024-05-16T03:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.829100", + "Timestamp": "2024-05-16T03:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.411000", + "Timestamp": "2024-05-16T03:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.406000", + "Timestamp": "2024-05-16T03:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.281000", + "Timestamp": "2024-05-16T03:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.814500", + "Timestamp": "2024-05-16T03:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.898300", + "Timestamp": "2024-05-16T03:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.893300", + "Timestamp": "2024-05-16T03:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.768300", + "Timestamp": "2024-05-16T03:01:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.118800", + "Timestamp": "2024-05-16T03:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171600", + "Timestamp": "2024-05-16T03:01:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167600", + "Timestamp": "2024-05-16T03:01:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111600", + "Timestamp": "2024-05-16T03:01:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.239600", + "Timestamp": "2024-05-16T03:01:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.466500", + "Timestamp": "2024-05-16T03:01:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132500", + "Timestamp": "2024-05-16T03:01:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128800", + "Timestamp": "2024-05-16T03:01:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072500", + "Timestamp": "2024-05-16T03:01:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086000", + "Timestamp": "2024-05-16T03:01:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082300", + "Timestamp": "2024-05-16T03:01:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026000", + "Timestamp": "2024-05-16T03:01:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125300", + "Timestamp": "2024-05-16T03:01:11.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121300", + "Timestamp": "2024-05-16T03:01:11.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065300", + "Timestamp": "2024-05-16T03:01:11.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.584000", + "Timestamp": "2024-05-16T03:00:58.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.579000", + "Timestamp": "2024-05-16T03:00:58.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.454000", + "Timestamp": "2024-05-16T03:00:58.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.914900", + "Timestamp": "2024-05-16T02:46:58.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166800", + "Timestamp": "2024-05-16T02:46:53.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.206800", + "Timestamp": "2024-05-16T02:46:53.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T02:46:53.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T02:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T02:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048700", + "Timestamp": "2024-05-16T02:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.523000", + "Timestamp": "2024-05-16T02:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.493000", + "Timestamp": "2024-05-16T02:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.393000", + "Timestamp": "2024-05-16T02:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171100", + "Timestamp": "2024-05-16T02:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.211100", + "Timestamp": "2024-05-16T02:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111100", + "Timestamp": "2024-05-16T02:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.622900", + "Timestamp": "2024-05-16T02:46:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.617900", + "Timestamp": "2024-05-16T02:46:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.492900", + "Timestamp": "2024-05-16T02:46:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.059900", + "Timestamp": "2024-05-16T02:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.054900", + "Timestamp": "2024-05-16T02:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.929900", + "Timestamp": "2024-05-16T02:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.420100", + "Timestamp": "2024-05-16T02:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.238500", + "Timestamp": "2024-05-16T02:45:58.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.864000", + "Timestamp": "2024-05-16T02:45:55.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.859000", + "Timestamp": "2024-05-16T02:45:55.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.734000", + "Timestamp": "2024-05-16T02:45:55.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.339000", + "Timestamp": "2024-05-16T02:43:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218000", + "Timestamp": "2024-05-16T02:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072000", + "Timestamp": "2024-05-16T02:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043000", + "Timestamp": "2024-05-16T02:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012000", + "Timestamp": "2024-05-16T02:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.572600", + "Timestamp": "2024-05-16T02:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.422900", + "Timestamp": "2024-05-16T02:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.800400", + "Timestamp": "2024-05-16T02:31:41.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.770400", + "Timestamp": "2024-05-16T02:31:41.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.670400", + "Timestamp": "2024-05-16T02:31:41.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.789000", + "Timestamp": "2024-05-16T02:31:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.759000", + "Timestamp": "2024-05-16T02:31:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.659000", + "Timestamp": "2024-05-16T02:31:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.741400", + "Timestamp": "2024-05-16T02:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067100", + "Timestamp": "2024-05-16T02:31:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038100", + "Timestamp": "2024-05-16T02:31:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007100", + "Timestamp": "2024-05-16T02:31:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119900", + "Timestamp": "2024-05-16T02:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116200", + "Timestamp": "2024-05-16T02:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059900", + "Timestamp": "2024-05-16T02:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083400", + "Timestamp": "2024-05-16T02:31:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123400", + "Timestamp": "2024-05-16T02:31:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023400", + "Timestamp": "2024-05-16T02:31:17.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071400", + "Timestamp": "2024-05-16T02:24:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067700", + "Timestamp": "2024-05-16T02:24:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011400", + "Timestamp": "2024-05-16T02:24:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.200100", + "Timestamp": "2024-05-16T02:16:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.195100", + "Timestamp": "2024-05-16T02:16:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.070100", + "Timestamp": "2024-05-16T02:16:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-16T02:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142600", + "Timestamp": "2024-05-16T02:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042600", + "Timestamp": "2024-05-16T02:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114200", + "Timestamp": "2024-05-16T02:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T02:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054200", + "Timestamp": "2024-05-16T02:16:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.232500", + "Timestamp": "2024-05-16T02:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.279900", + "Timestamp": "2024-05-16T02:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.274900", + "Timestamp": "2024-05-16T02:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149900", + "Timestamp": "2024-05-16T02:16:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.207700", + "Timestamp": "2024-05-16T02:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.203700", + "Timestamp": "2024-05-16T02:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147700", + "Timestamp": "2024-05-16T02:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.678000", + "Timestamp": "2024-05-16T02:14:54.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.678000", + "Timestamp": "2024-05-16T02:14:54.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.464200", + "Timestamp": "2024-05-16T02:02:11.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090700", + "Timestamp": "2024-05-16T02:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130700", + "Timestamp": "2024-05-16T02:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030700", + "Timestamp": "2024-05-16T02:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.658000", + "Timestamp": "2024-05-16T02:01:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.169500", + "Timestamp": "2024-05-16T01:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.492200", + "Timestamp": "2024-05-16T01:46:54.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105500", + "Timestamp": "2024-05-16T01:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108500", + "Timestamp": "2024-05-16T01:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-16T01:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048500", + "Timestamp": "2024-05-16T01:46:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153300", + "Timestamp": "2024-05-16T01:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149300", + "Timestamp": "2024-05-16T01:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093300", + "Timestamp": "2024-05-16T01:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.350700", + "Timestamp": "2024-05-16T01:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.345700", + "Timestamp": "2024-05-16T01:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.220700", + "Timestamp": "2024-05-16T01:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.136200", + "Timestamp": "2024-05-16T01:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.908700", + "Timestamp": "2024-05-16T01:46:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.012100", + "Timestamp": "2024-05-16T01:33:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.567200", + "Timestamp": "2024-05-16T01:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095600", + "Timestamp": "2024-05-16T01:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091900", + "Timestamp": "2024-05-16T01:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035600", + "Timestamp": "2024-05-16T01:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T01:31:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097900", + "Timestamp": "2024-05-16T01:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094200", + "Timestamp": "2024-05-16T01:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037900", + "Timestamp": "2024-05-16T01:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.940300", + "Timestamp": "2024-05-16T01:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.935300", + "Timestamp": "2024-05-16T01:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.810300", + "Timestamp": "2024-05-16T01:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.844200", + "Timestamp": "2024-05-16T01:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070600", + "Timestamp": "2024-05-16T01:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066900", + "Timestamp": "2024-05-16T01:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010600", + "Timestamp": "2024-05-16T01:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-16T01:16:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.682900", + "Timestamp": "2024-05-16T01:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.677900", + "Timestamp": "2024-05-16T01:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.552900", + "Timestamp": "2024-05-16T01:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153200", + "Timestamp": "2024-05-16T01:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149200", + "Timestamp": "2024-05-16T01:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093200", + "Timestamp": "2024-05-16T01:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085700", + "Timestamp": "2024-05-16T01:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082000", + "Timestamp": "2024-05-16T01:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025700", + "Timestamp": "2024-05-16T01:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111600", + "Timestamp": "2024-05-16T01:01:13.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T01:01:13.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051600", + "Timestamp": "2024-05-16T01:01:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075200", + "Timestamp": "2024-05-16T00:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071500", + "Timestamp": "2024-05-16T00:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015200", + "Timestamp": "2024-05-16T00:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101900", + "Timestamp": "2024-05-16T00:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098200", + "Timestamp": "2024-05-16T00:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041900", + "Timestamp": "2024-05-16T00:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075200", + "Timestamp": "2024-05-16T00:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.046200", + "Timestamp": "2024-05-16T00:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015200", + "Timestamp": "2024-05-16T00:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-16T00:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-16T00:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040900", + "Timestamp": "2024-05-16T00:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.811000", + "Timestamp": "2024-05-16T00:46:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.811000", + "Timestamp": "2024-05-16T00:46:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.281500", + "Timestamp": "2024-05-16T00:46:17.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276500", + "Timestamp": "2024-05-16T00:46:17.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.151500", + "Timestamp": "2024-05-16T00:46:17.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T00:46:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T00:46:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048200", + "Timestamp": "2024-05-16T00:46:12.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.430500", + "Timestamp": "2024-05-16T00:42:42.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.425500", + "Timestamp": "2024-05-16T00:42:42.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.300500", + "Timestamp": "2024-05-16T00:42:42.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.716500", + "Timestamp": "2024-05-16T00:42:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.716500", + "Timestamp": "2024-05-16T00:42:42.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.434100", + "Timestamp": "2024-05-16T00:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.429100", + "Timestamp": "2024-05-16T00:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.304100", + "Timestamp": "2024-05-16T00:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.406800", + "Timestamp": "2024-05-16T00:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.401800", + "Timestamp": "2024-05-16T00:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.276800", + "Timestamp": "2024-05-16T00:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441100", + "Timestamp": "2024-05-16T00:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.194300", + "Timestamp": "2024-05-16T00:31:37.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117200", + "Timestamp": "2024-05-16T00:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157200", + "Timestamp": "2024-05-16T00:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057200", + "Timestamp": "2024-05-16T00:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.848300", + "Timestamp": "2024-05-16T00:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087500", + "Timestamp": "2024-05-16T00:31:09.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083800", + "Timestamp": "2024-05-16T00:31:09.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027500", + "Timestamp": "2024-05-16T00:31:09.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.471400", + "Timestamp": "2024-05-16T00:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416600", + "Timestamp": "2024-05-16T00:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223300", + "Timestamp": "2024-05-16T00:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.405800", + "Timestamp": "2024-05-16T00:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.400800", + "Timestamp": "2024-05-16T00:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.275800", + "Timestamp": "2024-05-16T00:16:26.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.293000", + "Timestamp": "2024-05-16T00:16:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.288000", + "Timestamp": "2024-05-16T00:16:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.163000", + "Timestamp": "2024-05-16T00:16:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021500", + "Timestamp": "2024-05-16T00:04:24.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.227100", + "Timestamp": "2024-05-16T00:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.867700", + "Timestamp": "2024-05-16T00:01:00.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.862700", + "Timestamp": "2024-05-16T00:01:00.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.737700", + "Timestamp": "2024-05-16T00:01:00.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.494400", + "Timestamp": "2024-05-15T23:59:04.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.494400", + "Timestamp": "2024-05-15T23:59:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.292400", + "Timestamp": "2024-05-15T23:56:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.292400", + "Timestamp": "2024-05-15T23:56:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225000", + "Timestamp": "2024-05-15T23:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.915600", + "Timestamp": "2024-05-15T23:46:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111700", + "Timestamp": "2024-05-15T23:46:27.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.848400", + "Timestamp": "2024-05-15T23:46:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.386900", + "Timestamp": "2024-05-15T23:46:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.381900", + "Timestamp": "2024-05-15T23:46:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.256900", + "Timestamp": "2024-05-15T23:46:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089800", + "Timestamp": "2024-05-15T23:46:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086100", + "Timestamp": "2024-05-15T23:46:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029800", + "Timestamp": "2024-05-15T23:46:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.851600", + "Timestamp": "2024-05-15T23:46:13.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.846600", + "Timestamp": "2024-05-15T23:46:13.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.721600", + "Timestamp": "2024-05-15T23:46:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095700", + "Timestamp": "2024-05-15T23:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092000", + "Timestamp": "2024-05-15T23:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035700", + "Timestamp": "2024-05-15T23:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212400", + "Timestamp": "2024-05-15T23:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-15T23:31:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-15T23:31:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040900", + "Timestamp": "2024-05-15T23:31:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095500", + "Timestamp": "2024-05-15T23:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-15T23:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035500", + "Timestamp": "2024-05-15T23:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100600", + "Timestamp": "2024-05-15T23:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096600", + "Timestamp": "2024-05-15T23:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040600", + "Timestamp": "2024-05-15T23:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.283900", + "Timestamp": "2024-05-15T23:31:19.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.098000", + "Timestamp": "2024-05-15T23:21:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.391900", + "Timestamp": "2024-05-15T23:21:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224600", + "Timestamp": "2024-05-15T23:16:53.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-15T23:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.241100", + "Timestamp": "2024-05-15T23:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5zn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125200", + "Timestamp": "2024-05-15T23:01:02.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211600", + "Timestamp": "2024-05-15T22:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.099000", + "Timestamp": "2024-05-15T22:46:52.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067500", + "Timestamp": "2024-05-15T22:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037500", + "Timestamp": "2024-05-15T22:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007500", + "Timestamp": "2024-05-15T22:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-15T22:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100500", + "Timestamp": "2024-05-15T22:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044500", + "Timestamp": "2024-05-15T22:46:25.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216700", + "Timestamp": "2024-05-15T22:46:00.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130500", + "Timestamp": "2024-05-15T22:31:53.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126800", + "Timestamp": "2024-05-15T22:31:53.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070500", + "Timestamp": "2024-05-15T22:31:53.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106000", + "Timestamp": "2024-05-15T22:25:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070200", + "Timestamp": "2024-05-15T22:25:11.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041200", + "Timestamp": "2024-05-15T22:25:11.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010200", + "Timestamp": "2024-05-15T22:25:11.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.354900", + "Timestamp": "2024-05-15T22:22:52.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.354900", + "Timestamp": "2024-05-15T22:22:52.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071400", + "Timestamp": "2024-05-15T22:21:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042400", + "Timestamp": "2024-05-15T22:21:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011400", + "Timestamp": "2024-05-15T22:21:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.070800", + "Timestamp": "2024-05-15T22:20:46.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071800", + "Timestamp": "2024-05-15T22:20:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071200", + "Timestamp": "2024-05-15T22:20:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068100", + "Timestamp": "2024-05-15T22:20:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067500", + "Timestamp": "2024-05-15T22:20:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011800", + "Timestamp": "2024-05-15T22:20:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011200", + "Timestamp": "2024-05-15T22:20:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.196000", + "Timestamp": "2024-05-15T22:17:51.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115400", + "Timestamp": "2024-05-15T22:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t1.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.019300", + "Timestamp": "2024-05-15T22:16:39.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122000", + "Timestamp": "2024-05-15T22:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118000", + "Timestamp": "2024-05-15T22:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062000", + "Timestamp": "2024-05-15T22:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160300", + "Timestamp": "2024-05-15T22:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156600", + "Timestamp": "2024-05-15T22:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-15T22:16:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104700", + "Timestamp": "2024-05-15T22:16:06.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144700", + "Timestamp": "2024-05-15T22:16:06.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044700", + "Timestamp": "2024-05-15T22:16:06.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.906300", + "Timestamp": "2024-05-15T22:15:57.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t1.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068600", + "Timestamp": "2024-05-15T22:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t1.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.008600", + "Timestamp": "2024-05-15T22:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t1.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008600", + "Timestamp": "2024-05-15T22:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.864000", + "Timestamp": "2024-05-15T22:02:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.859000", + "Timestamp": "2024-05-15T22:02:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.734000", + "Timestamp": "2024-05-15T22:02:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.622000", + "Timestamp": "2024-05-15T22:02:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.622000", + "Timestamp": "2024-05-15T22:02:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.557600", + "Timestamp": "2024-05-15T22:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.557600", + "Timestamp": "2024-05-15T22:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.439800", + "Timestamp": "2024-05-15T22:01:46.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075100", + "Timestamp": "2024-05-15T22:01:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071400", + "Timestamp": "2024-05-15T22:01:40.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015100", + "Timestamp": "2024-05-15T22:01:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073400", + "Timestamp": "2024-05-15T22:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069700", + "Timestamp": "2024-05-15T22:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013400", + "Timestamp": "2024-05-15T22:01:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070000", + "Timestamp": "2024-05-15T22:01:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070000", + "Timestamp": "2024-05-15T22:01:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041000", + "Timestamp": "2024-05-15T22:01:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041000", + "Timestamp": "2024-05-15T22:01:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010000", + "Timestamp": "2024-05-15T22:01:14.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010000", + "Timestamp": "2024-05-15T22:01:14.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.677400", + "Timestamp": "2024-05-15T22:00:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.677400", + "Timestamp": "2024-05-15T22:00:36.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.038500", + "Timestamp": "2024-05-15T22:00:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070400", + "Timestamp": "2024-05-15T22:00:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066700", + "Timestamp": "2024-05-15T22:00:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010400", + "Timestamp": "2024-05-15T22:00:32.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222300", + "Timestamp": "2024-05-15T21:46:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070700", + "Timestamp": "2024-05-15T21:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040700", + "Timestamp": "2024-05-15T21:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010700", + "Timestamp": "2024-05-15T21:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-15T21:46:38.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.101600", + "Timestamp": "2024-05-15T21:45:56.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.436800", + "Timestamp": "2024-05-15T21:43:12.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064700", + "Timestamp": "2024-05-15T21:40:02.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065500", + "Timestamp": "2024-05-15T21:40:02.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004700", + "Timestamp": "2024-05-15T21:40:02.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.005500", + "Timestamp": "2024-05-15T21:40:02.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004700", + "Timestamp": "2024-05-15T21:40:02.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005500", + "Timestamp": "2024-05-15T21:40:02.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010400", + "Timestamp": "2024-05-15T21:40:02.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010800", + "Timestamp": "2024-05-15T21:40:02.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063200", + "Timestamp": "2024-05-15T21:40:01.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063500", + "Timestamp": "2024-05-15T21:40:01.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003200", + "Timestamp": "2024-05-15T21:40:01.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003500", + "Timestamp": "2024-05-15T21:40:01.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003200", + "Timestamp": "2024-05-15T21:40:01.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003500", + "Timestamp": "2024-05-15T21:40:01.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010600", + "Timestamp": "2024-05-15T21:40:01.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010700", + "Timestamp": "2024-05-15T21:40:01.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-15T21:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084400", + "Timestamp": "2024-05-15T21:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028100", + "Timestamp": "2024-05-15T21:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.264000", + "Timestamp": "2024-05-15T21:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.259000", + "Timestamp": "2024-05-15T21:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134000", + "Timestamp": "2024-05-15T21:31:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148000", + "Timestamp": "2024-05-15T21:30:58.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.188000", + "Timestamp": "2024-05-15T21:30:58.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088000", + "Timestamp": "2024-05-15T21:30:58.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-15T21:30:56.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-15T21:30:56.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047700", + "Timestamp": "2024-05-15T21:30:56.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075200", + "Timestamp": "2024-05-15T21:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071500", + "Timestamp": "2024-05-15T21:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015200", + "Timestamp": "2024-05-15T21:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.080400", + "Timestamp": "2024-05-15T21:16:59.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107000", + "Timestamp": "2024-05-15T21:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072600", + "Timestamp": "2024-05-15T21:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068900", + "Timestamp": "2024-05-15T21:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012600", + "Timestamp": "2024-05-15T21:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.071200", + "Timestamp": "2024-05-15T21:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062200", + "Timestamp": "2024-05-15T21:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002200", + "Timestamp": "2024-05-15T21:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002200", + "Timestamp": "2024-05-15T21:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.027500", + "Timestamp": "2024-05-15T20:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.223800", + "Timestamp": "2024-05-15T20:46:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.218800", + "Timestamp": "2024-05-15T20:46:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093800", + "Timestamp": "2024-05-15T20:46:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209900", + "Timestamp": "2024-05-15T20:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.430300", + "Timestamp": "2024-05-15T20:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.781800", + "Timestamp": "2024-05-15T20:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.776800", + "Timestamp": "2024-05-15T20:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.651800", + "Timestamp": "2024-05-15T20:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.043200", + "Timestamp": "2024-05-15T20:16:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311700", + "Timestamp": "2024-05-15T20:16:02.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.306700", + "Timestamp": "2024-05-15T20:16:02.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181700", + "Timestamp": "2024-05-15T20:16:02.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209000", + "Timestamp": "2024-05-15T20:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m1.small", + "ProductDescription": "Windows", + "SpotPrice": "0.039700", + "Timestamp": "2024-05-15T20:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113200", + "Timestamp": "2024-05-15T20:01:52.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.880500", + "Timestamp": "2024-05-15T19:59:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.880500", + "Timestamp": "2024-05-15T19:59:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-15T19:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-15T19:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049700", + "Timestamp": "2024-05-15T19:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109600", + "Timestamp": "2024-05-15T19:46:08.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114200", + "Timestamp": "2024-05-15T19:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154200", + "Timestamp": "2024-05-15T19:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054200", + "Timestamp": "2024-05-15T19:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094400", + "Timestamp": "2024-05-15T19:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090700", + "Timestamp": "2024-05-15T19:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034400", + "Timestamp": "2024-05-15T19:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.697800", + "Timestamp": "2024-05-15T19:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-15T19:31:02.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146500", + "Timestamp": "2024-05-15T19:31:02.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046500", + "Timestamp": "2024-05-15T19:31:02.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.139800", + "Timestamp": "2024-05-15T19:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.466200", + "Timestamp": "2024-05-15T19:00:22.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.466200", + "Timestamp": "2024-05-15T19:00:22.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113300", + "Timestamp": "2024-05-15T18:31:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.778800", + "Timestamp": "2024-05-15T18:29:52.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.778800", + "Timestamp": "2024-05-15T18:29:52.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.006400", + "Timestamp": "2024-05-15T18:26:13.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.006100", + "Timestamp": "2024-05-15T18:26:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063700", + "Timestamp": "2024-05-15T18:26:13.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063600", + "Timestamp": "2024-05-15T18:26:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003700", + "Timestamp": "2024-05-15T18:26:13.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003600", + "Timestamp": "2024-05-15T18:26:13.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003700", + "Timestamp": "2024-05-15T18:26:13.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003600", + "Timestamp": "2024-05-15T18:26:13.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-15T18:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079500", + "Timestamp": "2024-05-15T18:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.050500", + "Timestamp": "2024-05-15T18:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019500", + "Timestamp": "2024-05-15T18:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-15T18:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431700", + "Timestamp": "2024-05-15T18:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073600", + "Timestamp": "2024-05-15T17:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044600", + "Timestamp": "2024-05-15T17:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013600", + "Timestamp": "2024-05-15T17:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.392400", + "Timestamp": "2024-05-15T17:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.442300", + "Timestamp": "2024-05-15T17:46:41.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079800", + "Timestamp": "2024-05-15T17:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119800", + "Timestamp": "2024-05-15T17:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019800", + "Timestamp": "2024-05-15T17:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120400", + "Timestamp": "2024-05-15T17:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-15T17:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.733100", + "Timestamp": "2024-05-15T17:23:20.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110900", + "Timestamp": "2024-05-15T17:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212400", + "Timestamp": "2024-05-15T17:16:21.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.710100", + "Timestamp": "2024-05-15T16:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128700", + "Timestamp": "2024-05-15T16:46:09.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.247200", + "Timestamp": "2024-05-15T16:46:05.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.071600", + "Timestamp": "2024-05-15T16:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071500", + "Timestamp": "2024-05-15T16:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067800", + "Timestamp": "2024-05-15T16:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011500", + "Timestamp": "2024-05-15T16:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114300", + "Timestamp": "2024-05-15T16:31:24.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124200", + "Timestamp": "2024-05-15T16:16:56.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109200", + "Timestamp": "2024-05-15T16:05:56.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.024900", + "Timestamp": "2024-05-15T16:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-15T16:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-15T15:50:29.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081400", + "Timestamp": "2024-05-15T15:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077700", + "Timestamp": "2024-05-15T15:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021400", + "Timestamp": "2024-05-15T15:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208200", + "Timestamp": "2024-05-15T15:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.123400", + "Timestamp": "2024-05-15T15:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.584800", + "Timestamp": "2024-05-15T15:40:18.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.584800", + "Timestamp": "2024-05-15T15:40:18.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-15T15:35:48.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.024800", + "Timestamp": "2024-05-15T15:35:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.731000", + "Timestamp": "2024-05-15T15:33:44.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.731000", + "Timestamp": "2024-05-15T15:33:44.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.726000", + "Timestamp": "2024-05-15T15:33:44.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.726000", + "Timestamp": "2024-05-15T15:33:44.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.601000", + "Timestamp": "2024-05-15T15:33:44.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.601000", + "Timestamp": "2024-05-15T15:33:44.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.017000", + "Timestamp": "2024-05-15T15:33:44.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.017000", + "Timestamp": "2024-05-15T15:33:44.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m1.large", + "ProductDescription": "Windows", + "SpotPrice": "0.143000", + "Timestamp": "2024-05-15T15:33:42.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.889400", + "Timestamp": "2024-05-15T15:33:12.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.889400", + "Timestamp": "2024-05-15T15:33:12.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.598000", + "Timestamp": "2024-05-15T15:29:58.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.593000", + "Timestamp": "2024-05-15T15:29:58.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.468000", + "Timestamp": "2024-05-15T15:29:58.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.873600", + "Timestamp": "2024-05-15T15:29:11.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.873600", + "Timestamp": "2024-05-15T15:29:11.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.356000", + "Timestamp": "2024-05-15T15:28:58.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.356000", + "Timestamp": "2024-05-15T15:28:58.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.020800", + "Timestamp": "2024-05-15T15:07:59.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021400", + "Timestamp": "2024-05-15T15:07:59.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-15T15:03:54.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113400", + "Timestamp": "2024-05-15T15:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-15T15:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053400", + "Timestamp": "2024-05-15T15:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.284400", + "Timestamp": "2024-05-15T15:01:37.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108300", + "Timestamp": "2024-05-15T15:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.024900", + "Timestamp": "2024-05-15T14:51:21.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073000", + "Timestamp": "2024-05-15T14:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069300", + "Timestamp": "2024-05-15T14:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013000", + "Timestamp": "2024-05-15T14:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-15T14:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.153700", + "Timestamp": "2024-05-15T14:31:28.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.301100", + "Timestamp": "2024-05-15T14:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.433800", + "Timestamp": "2024-05-15T14:16:23.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096700", + "Timestamp": "2024-05-15T14:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093000", + "Timestamp": "2024-05-15T14:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036700", + "Timestamp": "2024-05-15T14:01:20.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085800", + "Timestamp": "2024-05-15T13:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082100", + "Timestamp": "2024-05-15T13:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025800", + "Timestamp": "2024-05-15T13:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101500", + "Timestamp": "2024-05-15T13:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097800", + "Timestamp": "2024-05-15T13:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041500", + "Timestamp": "2024-05-15T13:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t1.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071400", + "Timestamp": "2024-05-15T13:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t1.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.011400", + "Timestamp": "2024-05-15T13:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t1.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011400", + "Timestamp": "2024-05-15T13:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111100", + "Timestamp": "2024-05-15T13:16:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "t1.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.016700", + "Timestamp": "2024-05-15T12:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145100", + "Timestamp": "2024-05-15T12:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141400", + "Timestamp": "2024-05-15T12:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085100", + "Timestamp": "2024-05-15T12:46:30.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.023400", + "Timestamp": "2024-05-15T12:45:50.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088600", + "Timestamp": "2024-05-15T12:31:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084900", + "Timestamp": "2024-05-15T12:31:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028600", + "Timestamp": "2024-05-15T12:31:26.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-15T12:17:56.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120900", + "Timestamp": "2024-05-15T12:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.622000", + "Timestamp": "2024-05-15T12:06:31.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423300", + "Timestamp": "2024-05-15T12:01:25.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-15T11:31:40.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-15T11:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-15T11:31:23.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066400", + "Timestamp": "2024-05-15T11:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037700", + "Timestamp": "2024-05-15T11:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-1c", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006400", + "Timestamp": "2024-05-15T11:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.923700", + "Timestamp": "2024-05-16T14:05:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.913900", + "Timestamp": "2024-05-16T14:05:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.875400", + "Timestamp": "2024-05-16T14:05:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.892100", + "Timestamp": "2024-05-16T14:05:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.719100", + "Timestamp": "2024-05-16T14:05:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.995600", + "Timestamp": "2024-05-16T14:05:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.124700", + "Timestamp": "2024-05-16T14:05:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.698200", + "Timestamp": "2024-05-16T14:05:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.714100", + "Timestamp": "2024-05-16T14:05:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.990600", + "Timestamp": "2024-05-16T14:05:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.119700", + "Timestamp": "2024-05-16T14:05:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.693200", + "Timestamp": "2024-05-16T14:05:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.589100", + "Timestamp": "2024-05-16T14:05:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.865600", + "Timestamp": "2024-05-16T14:05:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.994700", + "Timestamp": "2024-05-16T14:05:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.568200", + "Timestamp": "2024-05-16T14:05:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.519400", + "Timestamp": "2024-05-16T14:03:00.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.514400", + "Timestamp": "2024-05-16T14:03:00.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.389400", + "Timestamp": "2024-05-16T14:03:00.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072500", + "Timestamp": "2024-05-16T14:02:58.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-16T14:02:58.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012500", + "Timestamp": "2024-05-16T14:02:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.795000", + "Timestamp": "2024-05-16T14:02:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.790000", + "Timestamp": "2024-05-16T14:02:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.665000", + "Timestamp": "2024-05-16T14:02:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.990500", + "Timestamp": "2024-05-16T14:02:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.670200", + "Timestamp": "2024-05-16T14:02:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.665200", + "Timestamp": "2024-05-16T14:02:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.540200", + "Timestamp": "2024-05-16T14:02:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.054600", + "Timestamp": "2024-05-16T14:02:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.049600", + "Timestamp": "2024-05-16T14:02:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.924600", + "Timestamp": "2024-05-16T14:02:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089200", + "Timestamp": "2024-05-16T14:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129200", + "Timestamp": "2024-05-16T14:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029200", + "Timestamp": "2024-05-16T14:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.883200", + "Timestamp": "2024-05-16T14:02:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.493300", + "Timestamp": "2024-05-16T14:02:53.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.064600", + "Timestamp": "2024-05-16T14:02:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.034600", + "Timestamp": "2024-05-16T14:02:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.934600", + "Timestamp": "2024-05-16T14:02:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.164600", + "Timestamp": "2024-05-16T14:02:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.159600", + "Timestamp": "2024-05-16T14:02:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.034600", + "Timestamp": "2024-05-16T14:02:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.908800", + "Timestamp": "2024-05-16T14:02:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.071300", + "Timestamp": "2024-05-16T14:02:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.066300", + "Timestamp": "2024-05-16T14:02:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.941300", + "Timestamp": "2024-05-16T14:02:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113600", + "Timestamp": "2024-05-16T14:02:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.718000", + "Timestamp": "2024-05-16T14:02:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.910200", + "Timestamp": "2024-05-16T14:02:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.905200", + "Timestamp": "2024-05-16T14:02:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.780200", + "Timestamp": "2024-05-16T14:02:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.447500", + "Timestamp": "2024-05-16T14:02:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.235800", + "Timestamp": "2024-05-16T14:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.231800", + "Timestamp": "2024-05-16T14:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175800", + "Timestamp": "2024-05-16T14:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.433900", + "Timestamp": "2024-05-16T14:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.089600", + "Timestamp": "2024-05-16T14:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.118200", + "Timestamp": "2024-05-16T14:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.663000", + "Timestamp": "2024-05-16T14:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.563800", + "Timestamp": "2024-05-16T14:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.378300", + "Timestamp": "2024-05-16T14:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.348300", + "Timestamp": "2024-05-16T14:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.248300", + "Timestamp": "2024-05-16T14:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.914200", + "Timestamp": "2024-05-16T14:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.909200", + "Timestamp": "2024-05-16T14:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.784200", + "Timestamp": "2024-05-16T14:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.994200", + "Timestamp": "2024-05-16T14:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.989200", + "Timestamp": "2024-05-16T14:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.864200", + "Timestamp": "2024-05-16T14:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.607500", + "Timestamp": "2024-05-16T14:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.540600", + "Timestamp": "2024-05-16T14:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131500", + "Timestamp": "2024-05-16T14:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127800", + "Timestamp": "2024-05-16T14:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071500", + "Timestamp": "2024-05-16T14:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.078900", + "Timestamp": "2024-05-16T14:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.073900", + "Timestamp": "2024-05-16T14:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.948900", + "Timestamp": "2024-05-16T14:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.981400", + "Timestamp": "2024-05-16T14:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.455400", + "Timestamp": "2024-05-16T14:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.813900", + "Timestamp": "2024-05-16T14:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T14:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.479400", + "Timestamp": "2024-05-16T14:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.449400", + "Timestamp": "2024-05-16T14:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.349400", + "Timestamp": "2024-05-16T14:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.246300", + "Timestamp": "2024-05-16T14:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.485400", + "Timestamp": "2024-05-16T14:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.480400", + "Timestamp": "2024-05-16T14:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.355400", + "Timestamp": "2024-05-16T14:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.732300", + "Timestamp": "2024-05-16T14:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.727300", + "Timestamp": "2024-05-16T14:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.602300", + "Timestamp": "2024-05-16T14:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.263000", + "Timestamp": "2024-05-16T14:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.258000", + "Timestamp": "2024-05-16T14:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.133000", + "Timestamp": "2024-05-16T14:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.730800", + "Timestamp": "2024-05-16T14:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.729800", + "Timestamp": "2024-05-16T14:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.644700", + "Timestamp": "2024-05-16T14:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.449300", + "Timestamp": "2024-05-16T14:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.408200", + "Timestamp": "2024-05-16T14:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.394800", + "Timestamp": "2024-05-16T14:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.403200", + "Timestamp": "2024-05-16T14:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.389800", + "Timestamp": "2024-05-16T14:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.278200", + "Timestamp": "2024-05-16T14:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.264800", + "Timestamp": "2024-05-16T14:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T14:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.505000", + "Timestamp": "2024-05-16T14:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.500000", + "Timestamp": "2024-05-16T14:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.375000", + "Timestamp": "2024-05-16T14:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T14:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.888400", + "Timestamp": "2024-05-16T14:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.883400", + "Timestamp": "2024-05-16T14:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.758400", + "Timestamp": "2024-05-16T14:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.094000", + "Timestamp": "2024-05-16T14:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.089000", + "Timestamp": "2024-05-16T14:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.964000", + "Timestamp": "2024-05-16T14:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.534100", + "Timestamp": "2024-05-16T14:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.529100", + "Timestamp": "2024-05-16T14:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.404100", + "Timestamp": "2024-05-16T14:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.950100", + "Timestamp": "2024-05-16T14:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.920100", + "Timestamp": "2024-05-16T14:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.820100", + "Timestamp": "2024-05-16T14:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.395800", + "Timestamp": "2024-05-16T14:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.380200", + "Timestamp": "2024-05-16T14:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.661400", + "Timestamp": "2024-05-16T14:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.466300", + "Timestamp": "2024-05-16T14:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.461300", + "Timestamp": "2024-05-16T14:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.336300", + "Timestamp": "2024-05-16T14:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.171900", + "Timestamp": "2024-05-16T14:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.977800", + "Timestamp": "2024-05-16T14:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.531400", + "Timestamp": "2024-05-16T14:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.972800", + "Timestamp": "2024-05-16T14:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.526400", + "Timestamp": "2024-05-16T14:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.847800", + "Timestamp": "2024-05-16T14:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.401400", + "Timestamp": "2024-05-16T14:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.269900", + "Timestamp": "2024-05-16T14:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.264900", + "Timestamp": "2024-05-16T14:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.139900", + "Timestamp": "2024-05-16T14:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.858500", + "Timestamp": "2024-05-16T14:02:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.266000", + "Timestamp": "2024-05-16T14:02:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207600", + "Timestamp": "2024-05-16T14:02:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.200400", + "Timestamp": "2024-05-16T14:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.337900", + "Timestamp": "2024-05-16T14:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.332900", + "Timestamp": "2024-05-16T14:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.207900", + "Timestamp": "2024-05-16T14:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.677100", + "Timestamp": "2024-05-16T14:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.647100", + "Timestamp": "2024-05-16T14:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.547100", + "Timestamp": "2024-05-16T14:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.996700", + "Timestamp": "2024-05-16T14:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.646600", + "Timestamp": "2024-05-16T14:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.388700", + "Timestamp": "2024-05-16T14:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.692900", + "Timestamp": "2024-05-16T14:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.756300", + "Timestamp": "2024-05-16T14:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.425400", + "Timestamp": "2024-05-16T14:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.014600", + "Timestamp": "2024-05-16T14:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.988600", + "Timestamp": "2024-05-16T14:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137300", + "Timestamp": "2024-05-16T14:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133600", + "Timestamp": "2024-05-16T14:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077300", + "Timestamp": "2024-05-16T14:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.920000", + "Timestamp": "2024-05-16T14:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.890000", + "Timestamp": "2024-05-16T14:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.790000", + "Timestamp": "2024-05-16T14:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115000", + "Timestamp": "2024-05-16T14:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104700", + "Timestamp": "2024-05-16T14:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136000", + "Timestamp": "2024-05-16T14:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144700", + "Timestamp": "2024-05-16T14:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.176000", + "Timestamp": "2024-05-16T14:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044700", + "Timestamp": "2024-05-16T14:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076000", + "Timestamp": "2024-05-16T14:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.411400", + "Timestamp": "2024-05-16T14:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.406400", + "Timestamp": "2024-05-16T14:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.281400", + "Timestamp": "2024-05-16T14:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.332700", + "Timestamp": "2024-05-16T14:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.327700", + "Timestamp": "2024-05-16T14:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.202700", + "Timestamp": "2024-05-16T14:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.452100", + "Timestamp": "2024-05-16T14:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.194300", + "Timestamp": "2024-05-16T14:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.189300", + "Timestamp": "2024-05-16T14:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.064300", + "Timestamp": "2024-05-16T14:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214500", + "Timestamp": "2024-05-16T14:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.429600", + "Timestamp": "2024-05-16T14:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.229000", + "Timestamp": "2024-05-16T14:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.225000", + "Timestamp": "2024-05-16T14:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169000", + "Timestamp": "2024-05-16T14:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.953700", + "Timestamp": "2024-05-16T14:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.281000", + "Timestamp": "2024-05-16T14:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.434900", + "Timestamp": "2024-05-16T14:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324600", + "Timestamp": "2024-05-16T14:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319600", + "Timestamp": "2024-05-16T14:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194600", + "Timestamp": "2024-05-16T14:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.058900", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.053900", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.928900", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.247300", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.243600", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.187300", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.598000", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.593000", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.468000", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115600", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111900", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055600", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.390900", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.389700", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.385900", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.384700", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.260900", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.259700", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.944200", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.290200", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.260200", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.160200", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113300", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.951700", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.946700", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.821700", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.640300", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.635300", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.510300", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105300", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049300", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.055900", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.886900", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.025900", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.856900", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.925900", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.756900", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.475200", + "Timestamp": "2024-05-16T14:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.470200", + "Timestamp": "2024-05-16T14:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.345200", + "Timestamp": "2024-05-16T14:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.126700", + "Timestamp": "2024-05-16T14:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.121700", + "Timestamp": "2024-05-16T14:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.996700", + "Timestamp": "2024-05-16T14:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.362900", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.357900", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.232900", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.701800", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.696800", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.571800", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.450000", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.445000", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.320000", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.177700", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.849700", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.912200", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.844700", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.907200", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.719700", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.782200", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.735700", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.730700", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.605700", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.507900", + "Timestamp": "2024-05-16T14:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.477900", + "Timestamp": "2024-05-16T14:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.377900", + "Timestamp": "2024-05-16T14:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.487100", + "Timestamp": "2024-05-16T14:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.482100", + "Timestamp": "2024-05-16T14:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.357100", + "Timestamp": "2024-05-16T14:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.802100", + "Timestamp": "2024-05-16T14:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.797100", + "Timestamp": "2024-05-16T14:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.672100", + "Timestamp": "2024-05-16T14:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.638100", + "Timestamp": "2024-05-16T14:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.419200", + "Timestamp": "2024-05-16T14:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.414200", + "Timestamp": "2024-05-16T14:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.289200", + "Timestamp": "2024-05-16T14:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.250700", + "Timestamp": "2024-05-16T14:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.245700", + "Timestamp": "2024-05-16T14:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120700", + "Timestamp": "2024-05-16T14:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.420000", + "Timestamp": "2024-05-16T14:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.213100", + "Timestamp": "2024-05-16T14:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.208100", + "Timestamp": "2024-05-16T14:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083100", + "Timestamp": "2024-05-16T14:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.684900", + "Timestamp": "2024-05-16T14:02:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.679900", + "Timestamp": "2024-05-16T14:02:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.554900", + "Timestamp": "2024-05-16T14:02:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082100", + "Timestamp": "2024-05-16T14:02:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078400", + "Timestamp": "2024-05-16T14:02:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022100", + "Timestamp": "2024-05-16T14:02:16.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.688700", + "Timestamp": "2024-05-16T14:02:16.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.658700", + "Timestamp": "2024-05-16T14:02:16.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.558700", + "Timestamp": "2024-05-16T14:02:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.663700", + "Timestamp": "2024-05-16T14:02:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095100", + "Timestamp": "2024-05-16T14:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091400", + "Timestamp": "2024-05-16T14:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035100", + "Timestamp": "2024-05-16T14:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.468000", + "Timestamp": "2024-05-16T14:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.463000", + "Timestamp": "2024-05-16T14:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.338000", + "Timestamp": "2024-05-16T14:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215600", + "Timestamp": "2024-05-16T14:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.645000", + "Timestamp": "2024-05-16T14:02:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.640000", + "Timestamp": "2024-05-16T14:02:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.515000", + "Timestamp": "2024-05-16T14:02:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.621400", + "Timestamp": "2024-05-16T14:02:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.616400", + "Timestamp": "2024-05-16T14:02:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.491400", + "Timestamp": "2024-05-16T14:02:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.302900", + "Timestamp": "2024-05-16T14:02:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.297900", + "Timestamp": "2024-05-16T14:02:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.172900", + "Timestamp": "2024-05-16T14:02:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T14:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.406700", + "Timestamp": "2024-05-16T14:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.648000", + "Timestamp": "2024-05-16T14:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.533400", + "Timestamp": "2024-05-16T14:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.528400", + "Timestamp": "2024-05-16T14:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.403400", + "Timestamp": "2024-05-16T14:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.326600", + "Timestamp": "2024-05-16T14:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.321600", + "Timestamp": "2024-05-16T14:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.196600", + "Timestamp": "2024-05-16T14:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156800", + "Timestamp": "2024-05-16T14:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152800", + "Timestamp": "2024-05-16T14:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096800", + "Timestamp": "2024-05-16T14:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.475800", + "Timestamp": "2024-05-16T14:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m1.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074200", + "Timestamp": "2024-05-16T14:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m1.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044200", + "Timestamp": "2024-05-16T14:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m1.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014200", + "Timestamp": "2024-05-16T14:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.318700", + "Timestamp": "2024-05-16T14:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.313700", + "Timestamp": "2024-05-16T14:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.188700", + "Timestamp": "2024-05-16T14:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.906000", + "Timestamp": "2024-05-16T14:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.901000", + "Timestamp": "2024-05-16T14:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.776000", + "Timestamp": "2024-05-16T14:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.485400", + "Timestamp": "2024-05-16T14:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.480400", + "Timestamp": "2024-05-16T14:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.355400", + "Timestamp": "2024-05-16T14:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091700", + "Timestamp": "2024-05-16T14:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087700", + "Timestamp": "2024-05-16T14:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031700", + "Timestamp": "2024-05-16T14:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.428600", + "Timestamp": "2024-05-16T14:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.827500", + "Timestamp": "2024-05-16T14:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.822500", + "Timestamp": "2024-05-16T14:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.697500", + "Timestamp": "2024-05-16T14:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.455900", + "Timestamp": "2024-05-16T14:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.425900", + "Timestamp": "2024-05-16T14:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.325900", + "Timestamp": "2024-05-16T14:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299100", + "Timestamp": "2024-05-16T14:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294100", + "Timestamp": "2024-05-16T14:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169100", + "Timestamp": "2024-05-16T14:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.873400", + "Timestamp": "2024-05-16T14:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.656900", + "Timestamp": "2024-05-16T14:01:59.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.651900", + "Timestamp": "2024-05-16T14:01:59.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.526900", + "Timestamp": "2024-05-16T14:01:59.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.392400", + "Timestamp": "2024-05-16T14:01:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.362400", + "Timestamp": "2024-05-16T14:01:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.262400", + "Timestamp": "2024-05-16T14:01:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.178000", + "Timestamp": "2024-05-16T14:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.779400", + "Timestamp": "2024-05-16T14:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.774400", + "Timestamp": "2024-05-16T14:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.649400", + "Timestamp": "2024-05-16T14:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.060600", + "Timestamp": "2024-05-16T14:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.615300", + "Timestamp": "2024-05-16T14:01:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.293500", + "Timestamp": "2024-05-16T14:01:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.288500", + "Timestamp": "2024-05-16T14:01:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.163500", + "Timestamp": "2024-05-16T14:01:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.639900", + "Timestamp": "2024-05-16T14:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.634900", + "Timestamp": "2024-05-16T14:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.509900", + "Timestamp": "2024-05-16T14:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.841500", + "Timestamp": "2024-05-16T14:01:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.858200", + "Timestamp": "2024-05-16T14:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.636700", + "Timestamp": "2024-05-16T14:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.631700", + "Timestamp": "2024-05-16T14:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.506700", + "Timestamp": "2024-05-16T14:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.885700", + "Timestamp": "2024-05-16T14:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.880700", + "Timestamp": "2024-05-16T14:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.755700", + "Timestamp": "2024-05-16T14:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.383200", + "Timestamp": "2024-05-16T14:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.820500", + "Timestamp": "2024-05-16T14:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.933100", + "Timestamp": "2024-05-16T14:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.928100", + "Timestamp": "2024-05-16T14:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.803100", + "Timestamp": "2024-05-16T14:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.501100", + "Timestamp": "2024-05-16T14:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.496100", + "Timestamp": "2024-05-16T14:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.371100", + "Timestamp": "2024-05-16T14:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.877300", + "Timestamp": "2024-05-16T14:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.508300", + "Timestamp": "2024-05-16T14:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.431600", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.426600", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.301600", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125300", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121600", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065300", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093500", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037500", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m1.large", + "ProductDescription": "Windows", + "SpotPrice": "0.141500", + "Timestamp": "2024-05-16T13:58:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m1.large", + "ProductDescription": "Windows", + "SpotPrice": "0.141500", + "Timestamp": "2024-05-16T13:58:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m1.large", + "ProductDescription": "Windows", + "SpotPrice": "0.141500", + "Timestamp": "2024-05-16T13:58:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.208800", + "Timestamp": "2024-05-16T13:56:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.208800", + "Timestamp": "2024-05-16T13:56:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.208800", + "Timestamp": "2024-05-16T13:56:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115200", + "Timestamp": "2024-05-16T13:48:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155200", + "Timestamp": "2024-05-16T13:48:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055200", + "Timestamp": "2024-05-16T13:48:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.764800", + "Timestamp": "2024-05-16T13:48:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.097900", + "Timestamp": "2024-05-16T13:47:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.219300", + "Timestamp": "2024-05-16T13:47:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.214300", + "Timestamp": "2024-05-16T13:47:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.089300", + "Timestamp": "2024-05-16T13:47:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.741500", + "Timestamp": "2024-05-16T13:47:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.736500", + "Timestamp": "2024-05-16T13:47:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.611500", + "Timestamp": "2024-05-16T13:47:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.148500", + "Timestamp": "2024-05-16T13:47:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.143500", + "Timestamp": "2024-05-16T13:47:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.018500", + "Timestamp": "2024-05-16T13:47:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.641600", + "Timestamp": "2024-05-16T13:47:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.094900", + "Timestamp": "2024-05-16T13:47:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.089900", + "Timestamp": "2024-05-16T13:47:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.964900", + "Timestamp": "2024-05-16T13:47:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.094700", + "Timestamp": "2024-05-16T13:47:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.701600", + "Timestamp": "2024-05-16T13:47:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.698800", + "Timestamp": "2024-05-16T13:47:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.914900", + "Timestamp": "2024-05-16T13:47:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.820600", + "Timestamp": "2024-05-16T13:47:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.485300", + "Timestamp": "2024-05-16T13:47:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.739800", + "Timestamp": "2024-05-16T13:47:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.734800", + "Timestamp": "2024-05-16T13:47:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.609800", + "Timestamp": "2024-05-16T13:47:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.604700", + "Timestamp": "2024-05-16T13:47:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.093100", + "Timestamp": "2024-05-16T13:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.492500", + "Timestamp": "2024-05-16T13:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.088100", + "Timestamp": "2024-05-16T13:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.487500", + "Timestamp": "2024-05-16T13:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.963100", + "Timestamp": "2024-05-16T13:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.362500", + "Timestamp": "2024-05-16T13:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146700", + "Timestamp": "2024-05-16T13:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.186700", + "Timestamp": "2024-05-16T13:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086700", + "Timestamp": "2024-05-16T13:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.332300", + "Timestamp": "2024-05-16T13:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.416400", + "Timestamp": "2024-05-16T13:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.411400", + "Timestamp": "2024-05-16T13:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.286400", + "Timestamp": "2024-05-16T13:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.686300", + "Timestamp": "2024-05-16T13:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.290100", + "Timestamp": "2024-05-16T13:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.285100", + "Timestamp": "2024-05-16T13:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.160100", + "Timestamp": "2024-05-16T13:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416800", + "Timestamp": "2024-05-16T13:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.433000", + "Timestamp": "2024-05-16T13:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072300", + "Timestamp": "2024-05-16T13:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043300", + "Timestamp": "2024-05-16T13:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012300", + "Timestamp": "2024-05-16T13:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.011400", + "Timestamp": "2024-05-16T13:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.006400", + "Timestamp": "2024-05-16T13:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.881400", + "Timestamp": "2024-05-16T13:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.839400", + "Timestamp": "2024-05-16T13:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.510200", + "Timestamp": "2024-05-16T13:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.095300", + "Timestamp": "2024-05-16T13:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.014700", + "Timestamp": "2024-05-16T13:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.009700", + "Timestamp": "2024-05-16T13:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.884700", + "Timestamp": "2024-05-16T13:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.546700", + "Timestamp": "2024-05-16T13:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.525000", + "Timestamp": "2024-05-16T13:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.649800", + "Timestamp": "2024-05-16T13:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.495000", + "Timestamp": "2024-05-16T13:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.619800", + "Timestamp": "2024-05-16T13:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.395000", + "Timestamp": "2024-05-16T13:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.519800", + "Timestamp": "2024-05-16T13:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.415100", + "Timestamp": "2024-05-16T13:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.905200", + "Timestamp": "2024-05-16T13:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.690400", + "Timestamp": "2024-05-16T13:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.549400", + "Timestamp": "2024-05-16T13:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.838200", + "Timestamp": "2024-05-16T13:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.544400", + "Timestamp": "2024-05-16T13:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.833200", + "Timestamp": "2024-05-16T13:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.419400", + "Timestamp": "2024-05-16T13:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.708200", + "Timestamp": "2024-05-16T13:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.765900", + "Timestamp": "2024-05-16T13:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.452600", + "Timestamp": "2024-05-16T13:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.809700", + "Timestamp": "2024-05-16T13:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.824800", + "Timestamp": "2024-05-16T13:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.819800", + "Timestamp": "2024-05-16T13:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.694800", + "Timestamp": "2024-05-16T13:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.978700", + "Timestamp": "2024-05-16T13:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.973700", + "Timestamp": "2024-05-16T13:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.848700", + "Timestamp": "2024-05-16T13:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-16T13:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107800", + "Timestamp": "2024-05-16T13:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051500", + "Timestamp": "2024-05-16T13:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.083700", + "Timestamp": "2024-05-16T13:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.906100", + "Timestamp": "2024-05-16T13:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.800700", + "Timestamp": "2024-05-16T13:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.601900", + "Timestamp": "2024-05-16T13:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.596900", + "Timestamp": "2024-05-16T13:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.471900", + "Timestamp": "2024-05-16T13:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.284100", + "Timestamp": "2024-05-16T13:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.839200", + "Timestamp": "2024-05-16T13:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.693400", + "Timestamp": "2024-05-16T13:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.471500", + "Timestamp": "2024-05-16T13:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.441500", + "Timestamp": "2024-05-16T13:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.341500", + "Timestamp": "2024-05-16T13:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.663900", + "Timestamp": "2024-05-16T13:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.816900", + "Timestamp": "2024-05-16T13:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.811900", + "Timestamp": "2024-05-16T13:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.686900", + "Timestamp": "2024-05-16T13:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.914200", + "Timestamp": "2024-05-16T13:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.884200", + "Timestamp": "2024-05-16T13:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.784200", + "Timestamp": "2024-05-16T13:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.617100", + "Timestamp": "2024-05-16T13:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231200", + "Timestamp": "2024-05-16T13:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.865500", + "Timestamp": "2024-05-16T13:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.860500", + "Timestamp": "2024-05-16T13:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.735500", + "Timestamp": "2024-05-16T13:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T13:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.502200", + "Timestamp": "2024-05-16T13:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.542200", + "Timestamp": "2024-05-16T13:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.994000", + "Timestamp": "2024-05-16T13:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.989000", + "Timestamp": "2024-05-16T13:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.864000", + "Timestamp": "2024-05-16T13:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.740900", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.228800", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.303100", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.298100", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.173100", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.702500", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.364700", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.697500", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.359700", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.572500", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.234700", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.737300", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.732300", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.607300", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133400", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173400", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073400", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.265500", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.260500", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.135500", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.933300", + "Timestamp": "2024-05-16T13:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.928300", + "Timestamp": "2024-05-16T13:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.803300", + "Timestamp": "2024-05-16T13:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.869200", + "Timestamp": "2024-05-16T13:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.864200", + "Timestamp": "2024-05-16T13:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.739200", + "Timestamp": "2024-05-16T13:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.477700", + "Timestamp": "2024-05-16T13:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.900600", + "Timestamp": "2024-05-16T13:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.895600", + "Timestamp": "2024-05-16T13:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.770600", + "Timestamp": "2024-05-16T13:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.211100", + "Timestamp": "2024-05-16T13:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.206100", + "Timestamp": "2024-05-16T13:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.081100", + "Timestamp": "2024-05-16T13:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.948900", + "Timestamp": "2024-05-16T13:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.204300", + "Timestamp": "2024-05-16T13:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.462700", + "Timestamp": "2024-05-16T13:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.459100", + "Timestamp": "2024-05-16T13:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127600", + "Timestamp": "2024-05-16T13:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123600", + "Timestamp": "2024-05-16T13:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067600", + "Timestamp": "2024-05-16T13:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.344600", + "Timestamp": "2024-05-16T13:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.314600", + "Timestamp": "2024-05-16T13:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.214600", + "Timestamp": "2024-05-16T13:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.744800", + "Timestamp": "2024-05-16T13:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.714800", + "Timestamp": "2024-05-16T13:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.614800", + "Timestamp": "2024-05-16T13:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.313400", + "Timestamp": "2024-05-16T13:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.308400", + "Timestamp": "2024-05-16T13:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.183400", + "Timestamp": "2024-05-16T13:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.181300", + "Timestamp": "2024-05-16T13:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.151300", + "Timestamp": "2024-05-16T13:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.051300", + "Timestamp": "2024-05-16T13:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T13:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098400", + "Timestamp": "2024-05-16T13:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042100", + "Timestamp": "2024-05-16T13:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.262100", + "Timestamp": "2024-05-16T13:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.257100", + "Timestamp": "2024-05-16T13:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.132100", + "Timestamp": "2024-05-16T13:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314800", + "Timestamp": "2024-05-16T13:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.309800", + "Timestamp": "2024-05-16T13:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184800", + "Timestamp": "2024-05-16T13:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.100100", + "Timestamp": "2024-05-16T13:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.642200", + "Timestamp": "2024-05-16T13:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.637200", + "Timestamp": "2024-05-16T13:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.512200", + "Timestamp": "2024-05-16T13:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221400", + "Timestamp": "2024-05-16T13:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.691400", + "Timestamp": "2024-05-16T13:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.686400", + "Timestamp": "2024-05-16T13:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.561400", + "Timestamp": "2024-05-16T13:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.086000", + "Timestamp": "2024-05-16T13:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.081000", + "Timestamp": "2024-05-16T13:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.956000", + "Timestamp": "2024-05-16T13:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.244800", + "Timestamp": "2024-05-16T13:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.239800", + "Timestamp": "2024-05-16T13:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.114800", + "Timestamp": "2024-05-16T13:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.476600", + "Timestamp": "2024-05-16T13:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.471600", + "Timestamp": "2024-05-16T13:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.346600", + "Timestamp": "2024-05-16T13:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.194500", + "Timestamp": "2024-05-16T13:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.888600", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.883600", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.758600", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.382900", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.832100", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.827100", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.702100", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.020900", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.015900", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.890900", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.569700", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.564700", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.439700", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.864400", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.834400", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.734400", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.337900", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.332900", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.207900", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.612700", + "Timestamp": "2024-05-16T13:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.607700", + "Timestamp": "2024-05-16T13:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.482700", + "Timestamp": "2024-05-16T13:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.897700", + "Timestamp": "2024-05-16T13:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.586600", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.556600", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.456600", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.560400", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.371700", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.511500", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.366700", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.506500", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.241700", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.381500", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.479600", + "Timestamp": "2024-05-16T13:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.474600", + "Timestamp": "2024-05-16T13:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.349600", + "Timestamp": "2024-05-16T13:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.882500", + "Timestamp": "2024-05-16T13:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.622200", + "Timestamp": "2024-05-16T13:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.617200", + "Timestamp": "2024-05-16T13:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.492200", + "Timestamp": "2024-05-16T13:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.933800", + "Timestamp": "2024-05-16T13:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.928800", + "Timestamp": "2024-05-16T13:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.803800", + "Timestamp": "2024-05-16T13:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.674600", + "Timestamp": "2024-05-16T13:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.669600", + "Timestamp": "2024-05-16T13:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.544600", + "Timestamp": "2024-05-16T13:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.588600", + "Timestamp": "2024-05-16T13:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.583600", + "Timestamp": "2024-05-16T13:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.458600", + "Timestamp": "2024-05-16T13:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.778500", + "Timestamp": "2024-05-16T13:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.773500", + "Timestamp": "2024-05-16T13:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.648500", + "Timestamp": "2024-05-16T13:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.424400", + "Timestamp": "2024-05-16T13:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.419400", + "Timestamp": "2024-05-16T13:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.294400", + "Timestamp": "2024-05-16T13:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.209300", + "Timestamp": "2024-05-16T13:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.206300", + "Timestamp": "2024-05-16T13:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149300", + "Timestamp": "2024-05-16T13:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "4.975700", + "Timestamp": "2024-05-16T13:47:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.285200", + "Timestamp": "2024-05-16T13:47:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.280200", + "Timestamp": "2024-05-16T13:47:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.155200", + "Timestamp": "2024-05-16T13:47:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097000", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093300", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037000", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.231800", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.226800", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.101800", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105100", + "Timestamp": "2024-05-16T13:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101400", + "Timestamp": "2024-05-16T13:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045100", + "Timestamp": "2024-05-16T13:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.996100", + "Timestamp": "2024-05-16T13:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.991100", + "Timestamp": "2024-05-16T13:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.866100", + "Timestamp": "2024-05-16T13:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.484500", + "Timestamp": "2024-05-16T13:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.554900", + "Timestamp": "2024-05-16T13:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.479500", + "Timestamp": "2024-05-16T13:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.549900", + "Timestamp": "2024-05-16T13:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.354500", + "Timestamp": "2024-05-16T13:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.424900", + "Timestamp": "2024-05-16T13:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.398900", + "Timestamp": "2024-05-16T13:47:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.393900", + "Timestamp": "2024-05-16T13:47:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.268900", + "Timestamp": "2024-05-16T13:47:16.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.442500", + "Timestamp": "2024-05-16T13:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.219900", + "Timestamp": "2024-05-16T13:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.214900", + "Timestamp": "2024-05-16T13:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.089900", + "Timestamp": "2024-05-16T13:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.682500", + "Timestamp": "2024-05-16T13:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.750200", + "Timestamp": "2024-05-16T13:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.435800", + "Timestamp": "2024-05-16T13:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.430800", + "Timestamp": "2024-05-16T13:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.305800", + "Timestamp": "2024-05-16T13:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.987600", + "Timestamp": "2024-05-16T13:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.292600", + "Timestamp": "2024-05-16T13:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.287900", + "Timestamp": "2024-05-16T13:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.647800", + "Timestamp": "2024-05-16T13:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.171400", + "Timestamp": "2024-05-16T13:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.141400", + "Timestamp": "2024-05-16T13:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.041400", + "Timestamp": "2024-05-16T13:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.186000", + "Timestamp": "2024-05-16T13:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.182300", + "Timestamp": "2024-05-16T13:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126000", + "Timestamp": "2024-05-16T13:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.985200", + "Timestamp": "2024-05-16T13:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.980200", + "Timestamp": "2024-05-16T13:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.855200", + "Timestamp": "2024-05-16T13:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.617700", + "Timestamp": "2024-05-16T13:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.673600", + "Timestamp": "2024-05-16T13:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.612700", + "Timestamp": "2024-05-16T13:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.668600", + "Timestamp": "2024-05-16T13:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.487700", + "Timestamp": "2024-05-16T13:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.543600", + "Timestamp": "2024-05-16T13:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.507200", + "Timestamp": "2024-05-16T13:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.502200", + "Timestamp": "2024-05-16T13:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.377200", + "Timestamp": "2024-05-16T13:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.304400", + "Timestamp": "2024-05-16T13:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.274400", + "Timestamp": "2024-05-16T13:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.174400", + "Timestamp": "2024-05-16T13:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.010400", + "Timestamp": "2024-05-16T13:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.820600", + "Timestamp": "2024-05-16T13:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.657000", + "Timestamp": "2024-05-16T13:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.627000", + "Timestamp": "2024-05-16T13:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.527000", + "Timestamp": "2024-05-16T13:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.405800", + "Timestamp": "2024-05-16T13:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.264100", + "Timestamp": "2024-05-16T13:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.259100", + "Timestamp": "2024-05-16T13:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134100", + "Timestamp": "2024-05-16T13:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.233600", + "Timestamp": "2024-05-16T13:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.228600", + "Timestamp": "2024-05-16T13:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.103600", + "Timestamp": "2024-05-16T13:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138100", + "Timestamp": "2024-05-16T13:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134400", + "Timestamp": "2024-05-16T13:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078100", + "Timestamp": "2024-05-16T13:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.376900", + "Timestamp": "2024-05-16T13:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.371900", + "Timestamp": "2024-05-16T13:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.246900", + "Timestamp": "2024-05-16T13:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.481300", + "Timestamp": "2024-05-16T13:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.451300", + "Timestamp": "2024-05-16T13:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.351300", + "Timestamp": "2024-05-16T13:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129200", + "Timestamp": "2024-05-16T13:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125500", + "Timestamp": "2024-05-16T13:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069200", + "Timestamp": "2024-05-16T13:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m1.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076900", + "Timestamp": "2024-05-16T13:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m1.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.046900", + "Timestamp": "2024-05-16T13:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m1.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016900", + "Timestamp": "2024-05-16T13:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.801200", + "Timestamp": "2024-05-16T13:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162100", + "Timestamp": "2024-05-16T13:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158100", + "Timestamp": "2024-05-16T13:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T13:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.552400", + "Timestamp": "2024-05-16T13:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.547400", + "Timestamp": "2024-05-16T13:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.422400", + "Timestamp": "2024-05-16T13:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.526000", + "Timestamp": "2024-05-16T13:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.496000", + "Timestamp": "2024-05-16T13:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.396000", + "Timestamp": "2024-05-16T13:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.947700", + "Timestamp": "2024-05-16T13:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.942700", + "Timestamp": "2024-05-16T13:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.817700", + "Timestamp": "2024-05-16T13:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-16T13:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T13:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054500", + "Timestamp": "2024-05-16T13:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.422300", + "Timestamp": "2024-05-16T13:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.421300", + "Timestamp": "2024-05-16T13:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.417300", + "Timestamp": "2024-05-16T13:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.416300", + "Timestamp": "2024-05-16T13:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.292300", + "Timestamp": "2024-05-16T13:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.291300", + "Timestamp": "2024-05-16T13:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214300", + "Timestamp": "2024-05-16T13:47:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.402800", + "Timestamp": "2024-05-16T13:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.397800", + "Timestamp": "2024-05-16T13:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.272800", + "Timestamp": "2024-05-16T13:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.706400", + "Timestamp": "2024-05-16T13:46:59.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142400", + "Timestamp": "2024-05-16T13:46:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138700", + "Timestamp": "2024-05-16T13:46:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082400", + "Timestamp": "2024-05-16T13:46:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.190300", + "Timestamp": "2024-05-16T13:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.186300", + "Timestamp": "2024-05-16T13:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130300", + "Timestamp": "2024-05-16T13:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.754900", + "Timestamp": "2024-05-16T13:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.749900", + "Timestamp": "2024-05-16T13:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.624900", + "Timestamp": "2024-05-16T13:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T13:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119300", + "Timestamp": "2024-05-16T13:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159300", + "Timestamp": "2024-05-16T13:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059300", + "Timestamp": "2024-05-16T13:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.413400", + "Timestamp": "2024-05-16T13:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206500", + "Timestamp": "2024-05-16T13:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.695500", + "Timestamp": "2024-05-16T13:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.698200", + "Timestamp": "2024-05-16T13:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.767800", + "Timestamp": "2024-05-16T13:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.762800", + "Timestamp": "2024-05-16T13:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.637800", + "Timestamp": "2024-05-16T13:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.190900", + "Timestamp": "2024-05-16T13:46:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.186900", + "Timestamp": "2024-05-16T13:46:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130900", + "Timestamp": "2024-05-16T13:46:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.757000", + "Timestamp": "2024-05-16T13:46:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.752000", + "Timestamp": "2024-05-16T13:46:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.627000", + "Timestamp": "2024-05-16T13:46:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141000", + "Timestamp": "2024-05-16T13:46:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137000", + "Timestamp": "2024-05-16T13:46:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081000", + "Timestamp": "2024-05-16T13:46:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.790900", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.760900", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.660900", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.300800", + "Timestamp": "2024-05-16T13:46:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.803100", + "Timestamp": "2024-05-16T13:46:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.484000", + "Timestamp": "2024-05-16T13:46:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.454000", + "Timestamp": "2024-05-16T13:46:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.354000", + "Timestamp": "2024-05-16T13:46:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.623600", + "Timestamp": "2024-05-16T13:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.618600", + "Timestamp": "2024-05-16T13:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.493600", + "Timestamp": "2024-05-16T13:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.428500", + "Timestamp": "2024-05-16T13:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.423500", + "Timestamp": "2024-05-16T13:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.298500", + "Timestamp": "2024-05-16T13:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.942100", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.503500", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.498500", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.373500", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.012400", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.433800", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129100", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069100", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101000", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097300", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041000", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218100", + "Timestamp": "2024-05-16T13:33:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068200", + "Timestamp": "2024-05-16T13:33:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038200", + "Timestamp": "2024-05-16T13:33:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008200", + "Timestamp": "2024-05-16T13:33:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077700", + "Timestamp": "2024-05-16T13:33:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074000", + "Timestamp": "2024-05-16T13:33:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017700", + "Timestamp": "2024-05-16T13:33:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.085100", + "Timestamp": "2024-05-16T13:32:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.080100", + "Timestamp": "2024-05-16T13:32:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.955100", + "Timestamp": "2024-05-16T13:32:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.810500", + "Timestamp": "2024-05-16T13:32:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106700", + "Timestamp": "2024-05-16T13:32:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.703800", + "Timestamp": "2024-05-16T13:32:55.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.880900", + "Timestamp": "2024-05-16T13:32:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.875900", + "Timestamp": "2024-05-16T13:32:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.750900", + "Timestamp": "2024-05-16T13:32:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.329200", + "Timestamp": "2024-05-16T13:32:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.324200", + "Timestamp": "2024-05-16T13:32:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.199200", + "Timestamp": "2024-05-16T13:32:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173500", + "Timestamp": "2024-05-16T13:32:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169800", + "Timestamp": "2024-05-16T13:32:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113500", + "Timestamp": "2024-05-16T13:32:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.309600", + "Timestamp": "2024-05-16T13:32:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.304600", + "Timestamp": "2024-05-16T13:32:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.179600", + "Timestamp": "2024-05-16T13:32:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.597600", + "Timestamp": "2024-05-16T13:32:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.366400", + "Timestamp": "2024-05-16T13:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.361400", + "Timestamp": "2024-05-16T13:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.236400", + "Timestamp": "2024-05-16T13:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.137900", + "Timestamp": "2024-05-16T13:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.123300", + "Timestamp": "2024-05-16T13:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.908900", + "Timestamp": "2024-05-16T13:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.903900", + "Timestamp": "2024-05-16T13:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.778900", + "Timestamp": "2024-05-16T13:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.108300", + "Timestamp": "2024-05-16T13:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.103300", + "Timestamp": "2024-05-16T13:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.978300", + "Timestamp": "2024-05-16T13:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.916600", + "Timestamp": "2024-05-16T13:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.911600", + "Timestamp": "2024-05-16T13:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.786600", + "Timestamp": "2024-05-16T13:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.141400", + "Timestamp": "2024-05-16T13:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.136400", + "Timestamp": "2024-05-16T13:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.011400", + "Timestamp": "2024-05-16T13:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.233600", + "Timestamp": "2024-05-16T13:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.203600", + "Timestamp": "2024-05-16T13:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.103600", + "Timestamp": "2024-05-16T13:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.099800", + "Timestamp": "2024-05-16T13:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.980500", + "Timestamp": "2024-05-16T13:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.094800", + "Timestamp": "2024-05-16T13:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.975500", + "Timestamp": "2024-05-16T13:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.969800", + "Timestamp": "2024-05-16T13:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.850500", + "Timestamp": "2024-05-16T13:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.775200", + "Timestamp": "2024-05-16T13:32:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.770200", + "Timestamp": "2024-05-16T13:32:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.645200", + "Timestamp": "2024-05-16T13:32:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.459600", + "Timestamp": "2024-05-16T13:32:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.454600", + "Timestamp": "2024-05-16T13:32:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.329600", + "Timestamp": "2024-05-16T13:32:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.252000", + "Timestamp": "2024-05-16T13:32:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219500", + "Timestamp": "2024-05-16T13:32:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.563700", + "Timestamp": "2024-05-16T13:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.516600", + "Timestamp": "2024-05-16T13:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.511600", + "Timestamp": "2024-05-16T13:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.386600", + "Timestamp": "2024-05-16T13:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.636600", + "Timestamp": "2024-05-16T13:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.494800", + "Timestamp": "2024-05-16T13:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.498300", + "Timestamp": "2024-05-16T13:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.412900", + "Timestamp": "2024-05-16T13:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.366900", + "Timestamp": "2024-05-16T13:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.361900", + "Timestamp": "2024-05-16T13:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.236900", + "Timestamp": "2024-05-16T13:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107000", + "Timestamp": "2024-05-16T13:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.081800", + "Timestamp": "2024-05-16T13:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.076800", + "Timestamp": "2024-05-16T13:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.951800", + "Timestamp": "2024-05-16T13:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.892600", + "Timestamp": "2024-05-16T13:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.183800", + "Timestamp": "2024-05-16T13:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180100", + "Timestamp": "2024-05-16T13:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123800", + "Timestamp": "2024-05-16T13:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.738500", + "Timestamp": "2024-05-16T13:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.798700", + "Timestamp": "2024-05-16T13:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.741800", + "Timestamp": "2024-05-16T13:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.793700", + "Timestamp": "2024-05-16T13:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.736800", + "Timestamp": "2024-05-16T13:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.668700", + "Timestamp": "2024-05-16T13:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.611800", + "Timestamp": "2024-05-16T13:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.266900", + "Timestamp": "2024-05-16T13:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.261900", + "Timestamp": "2024-05-16T13:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.136900", + "Timestamp": "2024-05-16T13:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.707100", + "Timestamp": "2024-05-16T13:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.702100", + "Timestamp": "2024-05-16T13:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.577100", + "Timestamp": "2024-05-16T13:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.653300", + "Timestamp": "2024-05-16T13:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.280500", + "Timestamp": "2024-05-16T13:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.275500", + "Timestamp": "2024-05-16T13:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.150500", + "Timestamp": "2024-05-16T13:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121600", + "Timestamp": "2024-05-16T13:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117900", + "Timestamp": "2024-05-16T13:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061600", + "Timestamp": "2024-05-16T13:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.241900", + "Timestamp": "2024-05-16T13:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.200800", + "Timestamp": "2024-05-16T13:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.236900", + "Timestamp": "2024-05-16T13:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.195800", + "Timestamp": "2024-05-16T13:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.111900", + "Timestamp": "2024-05-16T13:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.070800", + "Timestamp": "2024-05-16T13:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.461400", + "Timestamp": "2024-05-16T13:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.456400", + "Timestamp": "2024-05-16T13:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.331400", + "Timestamp": "2024-05-16T13:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144700", + "Timestamp": "2024-05-16T13:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141000", + "Timestamp": "2024-05-16T13:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084700", + "Timestamp": "2024-05-16T13:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.959800", + "Timestamp": "2024-05-16T13:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.954800", + "Timestamp": "2024-05-16T13:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.829800", + "Timestamp": "2024-05-16T13:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.861300", + "Timestamp": "2024-05-16T13:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161500", + "Timestamp": "2024-05-16T13:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.201500", + "Timestamp": "2024-05-16T13:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101500", + "Timestamp": "2024-05-16T13:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.840700", + "Timestamp": "2024-05-16T13:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.461700", + "Timestamp": "2024-05-16T13:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.456700", + "Timestamp": "2024-05-16T13:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.331700", + "Timestamp": "2024-05-16T13:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.152200", + "Timestamp": "2024-05-16T13:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.147200", + "Timestamp": "2024-05-16T13:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.022200", + "Timestamp": "2024-05-16T13:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.575300", + "Timestamp": "2024-05-16T13:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.570300", + "Timestamp": "2024-05-16T13:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.445300", + "Timestamp": "2024-05-16T13:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.272300", + "Timestamp": "2024-05-16T13:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.620800", + "Timestamp": "2024-05-16T13:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.590800", + "Timestamp": "2024-05-16T13:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.490800", + "Timestamp": "2024-05-16T13:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.632300", + "Timestamp": "2024-05-16T13:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218500", + "Timestamp": "2024-05-16T13:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.263300", + "Timestamp": "2024-05-16T13:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258300", + "Timestamp": "2024-05-16T13:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133300", + "Timestamp": "2024-05-16T13:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116500", + "Timestamp": "2024-05-16T13:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T13:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056500", + "Timestamp": "2024-05-16T13:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156800", + "Timestamp": "2024-05-16T13:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153100", + "Timestamp": "2024-05-16T13:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096800", + "Timestamp": "2024-05-16T13:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.749500", + "Timestamp": "2024-05-16T13:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.744500", + "Timestamp": "2024-05-16T13:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.619500", + "Timestamp": "2024-05-16T13:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.093700", + "Timestamp": "2024-05-16T13:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.088700", + "Timestamp": "2024-05-16T13:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.963700", + "Timestamp": "2024-05-16T13:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.281700", + "Timestamp": "2024-05-16T13:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.195000", + "Timestamp": "2024-05-16T13:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.604800", + "Timestamp": "2024-05-16T13:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210700", + "Timestamp": "2024-05-16T13:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.707900", + "Timestamp": "2024-05-16T13:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.702900", + "Timestamp": "2024-05-16T13:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.577900", + "Timestamp": "2024-05-16T13:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.928000", + "Timestamp": "2024-05-16T13:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.923000", + "Timestamp": "2024-05-16T13:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.798000", + "Timestamp": "2024-05-16T13:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176800", + "Timestamp": "2024-05-16T13:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172800", + "Timestamp": "2024-05-16T13:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116800", + "Timestamp": "2024-05-16T13:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.478200", + "Timestamp": "2024-05-16T13:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473200", + "Timestamp": "2024-05-16T13:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.348200", + "Timestamp": "2024-05-16T13:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.045300", + "Timestamp": "2024-05-16T13:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.040300", + "Timestamp": "2024-05-16T13:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.915300", + "Timestamp": "2024-05-16T13:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.289900", + "Timestamp": "2024-05-16T13:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.284900", + "Timestamp": "2024-05-16T13:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159900", + "Timestamp": "2024-05-16T13:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.715400", + "Timestamp": "2024-05-16T13:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.710400", + "Timestamp": "2024-05-16T13:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.585400", + "Timestamp": "2024-05-16T13:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.489000", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164300", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154700", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160600", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151000", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104300", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094700", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.204000", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T13:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.299600", + "Timestamp": "2024-05-16T13:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.294600", + "Timestamp": "2024-05-16T13:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.169600", + "Timestamp": "2024-05-16T13:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.820000", + "Timestamp": "2024-05-16T13:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173000", + "Timestamp": "2024-05-16T13:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169000", + "Timestamp": "2024-05-16T13:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-16T13:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.491200", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.461200", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.361200", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093200", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089500", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033200", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.260100", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.255100", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.130100", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.396400", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.579000", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.391400", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.574000", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.266400", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.449000", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.678900", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.787400", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.757400", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.657400", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.484900", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.835000", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.830000", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.705000", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.372500", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.367500", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.242500", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.102200", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.097200", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.972200", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.683300", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.678300", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.553300", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.818000", + "Timestamp": "2024-05-16T13:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.601100", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.571100", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.471100", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "8.382300", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.323900", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "8.377300", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.318900", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "8.252300", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.193900", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.200100", + "Timestamp": "2024-05-16T13:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.195100", + "Timestamp": "2024-05-16T13:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.070100", + "Timestamp": "2024-05-16T13:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.327000", + "Timestamp": "2024-05-16T13:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.509200", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.504200", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.379200", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "a1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088500", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "a1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084800", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "a1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028500", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.182500", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.110500", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.080500", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.980500", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.352100", + "Timestamp": "2024-05-16T13:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131200", + "Timestamp": "2024-05-16T13:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127200", + "Timestamp": "2024-05-16T13:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071200", + "Timestamp": "2024-05-16T13:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.425900", + "Timestamp": "2024-05-16T13:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.710900", + "Timestamp": "2024-05-16T13:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T13:32:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-16T13:32:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050200", + "Timestamp": "2024-05-16T13:32:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.518400", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.513400", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.388400", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.465800", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.460800", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.335800", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.877400", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.872400", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.747400", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.847700", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.291300", + "Timestamp": "2024-05-16T13:32:15.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.286300", + "Timestamp": "2024-05-16T13:32:15.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.161300", + "Timestamp": "2024-05-16T13:32:15.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.822200", + "Timestamp": "2024-05-16T13:32:15.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.817200", + "Timestamp": "2024-05-16T13:32:15.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.692200", + "Timestamp": "2024-05-16T13:32:15.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.870800", + "Timestamp": "2024-05-16T13:32:14.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.131500", + "Timestamp": "2024-05-16T13:32:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.126500", + "Timestamp": "2024-05-16T13:32:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.001500", + "Timestamp": "2024-05-16T13:32:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.239500", + "Timestamp": "2024-05-16T13:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.234500", + "Timestamp": "2024-05-16T13:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.109500", + "Timestamp": "2024-05-16T13:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.523200", + "Timestamp": "2024-05-16T13:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.518200", + "Timestamp": "2024-05-16T13:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.393200", + "Timestamp": "2024-05-16T13:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.389800", + "Timestamp": "2024-05-16T13:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.389100", + "Timestamp": "2024-05-16T13:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.384800", + "Timestamp": "2024-05-16T13:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.384100", + "Timestamp": "2024-05-16T13:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.259800", + "Timestamp": "2024-05-16T13:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.259100", + "Timestamp": "2024-05-16T13:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.419600", + "Timestamp": "2024-05-16T13:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.414600", + "Timestamp": "2024-05-16T13:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.289600", + "Timestamp": "2024-05-16T13:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121100", + "Timestamp": "2024-05-16T13:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161100", + "Timestamp": "2024-05-16T13:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061100", + "Timestamp": "2024-05-16T13:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.327000", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.322000", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.197000", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.374700", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.369700", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.244700", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095000", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091300", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035000", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.194500", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190500", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134500", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.824600", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.819600", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.694600", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.793700", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.788700", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.663700", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.656300", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.651300", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.526300", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113900", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053900", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.901800", + "Timestamp": "2024-05-16T13:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.285400", + "Timestamp": "2024-05-16T13:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.344700", + "Timestamp": "2024-05-16T13:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.280400", + "Timestamp": "2024-05-16T13:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.339700", + "Timestamp": "2024-05-16T13:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.155400", + "Timestamp": "2024-05-16T13:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.214700", + "Timestamp": "2024-05-16T13:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.571700", + "Timestamp": "2024-05-16T13:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.566700", + "Timestamp": "2024-05-16T13:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.441700", + "Timestamp": "2024-05-16T13:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T13:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T13:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044800", + "Timestamp": "2024-05-16T13:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.327600", + "Timestamp": "2024-05-16T13:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.322600", + "Timestamp": "2024-05-16T13:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.197600", + "Timestamp": "2024-05-16T13:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.859900", + "Timestamp": "2024-05-16T13:32:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.851800", + "Timestamp": "2024-05-16T13:32:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.852300", + "Timestamp": "2024-05-16T13:32:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.850700", + "Timestamp": "2024-05-16T13:32:01.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.935000", + "Timestamp": "2024-05-16T13:32:01.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.930000", + "Timestamp": "2024-05-16T13:32:01.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.805000", + "Timestamp": "2024-05-16T13:32:01.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.880300", + "Timestamp": "2024-05-16T13:32:00.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.850300", + "Timestamp": "2024-05-16T13:32:00.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.750300", + "Timestamp": "2024-05-16T13:32:00.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.675000", + "Timestamp": "2024-05-16T13:32:00.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.767900", + "Timestamp": "2024-05-16T13:31:59.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "4.936200", + "Timestamp": "2024-05-16T13:31:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.853900", + "Timestamp": "2024-05-16T13:31:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088700", + "Timestamp": "2024-05-16T13:31:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084700", + "Timestamp": "2024-05-16T13:31:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028700", + "Timestamp": "2024-05-16T13:31:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.972800", + "Timestamp": "2024-05-16T13:31:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.097900", + "Timestamp": "2024-05-16T13:31:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.733600", + "Timestamp": "2024-05-16T13:31:55.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.701300", + "Timestamp": "2024-05-16T13:31:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.056900", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.051900", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.926900", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.576900", + "Timestamp": "2024-05-16T13:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.439600", + "Timestamp": "2024-05-16T13:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.434600", + "Timestamp": "2024-05-16T13:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.309600", + "Timestamp": "2024-05-16T13:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417000", + "Timestamp": "2024-05-16T13:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.453900", + "Timestamp": "2024-05-16T13:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.448900", + "Timestamp": "2024-05-16T13:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.323900", + "Timestamp": "2024-05-16T13:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.260300", + "Timestamp": "2024-05-16T13:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.255300", + "Timestamp": "2024-05-16T13:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130300", + "Timestamp": "2024-05-16T13:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.061700", + "Timestamp": "2024-05-16T13:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.056700", + "Timestamp": "2024-05-16T13:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.931700", + "Timestamp": "2024-05-16T13:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073800", + "Timestamp": "2024-05-16T13:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070100", + "Timestamp": "2024-05-16T13:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013800", + "Timestamp": "2024-05-16T13:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.371600", + "Timestamp": "2024-05-16T13:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.366600", + "Timestamp": "2024-05-16T13:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.241600", + "Timestamp": "2024-05-16T13:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.734300", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.729300", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.604300", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.809900", + "Timestamp": "2024-05-16T13:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.944600", + "Timestamp": "2024-05-16T13:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.939600", + "Timestamp": "2024-05-16T13:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.814600", + "Timestamp": "2024-05-16T13:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.035700", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.952400", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.030700", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.947400", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.905700", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.822400", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.031900", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.026900", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.901900", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.353600", + "Timestamp": "2024-05-16T13:20:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.020700", + "Timestamp": "2024-05-16T13:19:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.278900", + "Timestamp": "2024-05-16T13:18:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.273900", + "Timestamp": "2024-05-16T13:18:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.148900", + "Timestamp": "2024-05-16T13:18:11.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T13:18:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.938800", + "Timestamp": "2024-05-16T13:18:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.933800", + "Timestamp": "2024-05-16T13:18:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.808800", + "Timestamp": "2024-05-16T13:18:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.552100", + "Timestamp": "2024-05-16T13:18:01.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.293800", + "Timestamp": "2024-05-16T13:17:59.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.288800", + "Timestamp": "2024-05-16T13:17:59.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.163800", + "Timestamp": "2024-05-16T13:17:59.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.249900", + "Timestamp": "2024-05-16T13:17:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.244900", + "Timestamp": "2024-05-16T13:17:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119900", + "Timestamp": "2024-05-16T13:17:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.682000", + "Timestamp": "2024-05-16T13:17:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.625500", + "Timestamp": "2024-05-16T13:17:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.620500", + "Timestamp": "2024-05-16T13:17:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.495500", + "Timestamp": "2024-05-16T13:17:55.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135900", + "Timestamp": "2024-05-16T13:17:55.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132200", + "Timestamp": "2024-05-16T13:17:55.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075900", + "Timestamp": "2024-05-16T13:17:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Windows", + "SpotPrice": "7.333100", + "Timestamp": "2024-05-16T13:17:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.400400", + "Timestamp": "2024-05-16T13:17:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.499800", + "Timestamp": "2024-05-16T13:17:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.494800", + "Timestamp": "2024-05-16T13:17:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.369800", + "Timestamp": "2024-05-16T13:17:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.867200", + "Timestamp": "2024-05-16T13:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T13:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.474000", + "Timestamp": "2024-05-16T13:17:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.469000", + "Timestamp": "2024-05-16T13:17:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.344000", + "Timestamp": "2024-05-16T13:17:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.617100", + "Timestamp": "2024-05-16T13:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.612100", + "Timestamp": "2024-05-16T13:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.487100", + "Timestamp": "2024-05-16T13:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "h1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.921900", + "Timestamp": "2024-05-16T13:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "h1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.891900", + "Timestamp": "2024-05-16T13:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "h1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.791900", + "Timestamp": "2024-05-16T13:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.481300", + "Timestamp": "2024-05-16T13:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.476300", + "Timestamp": "2024-05-16T13:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.351300", + "Timestamp": "2024-05-16T13:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.004400", + "Timestamp": "2024-05-16T13:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.566600", + "Timestamp": "2024-05-16T13:17:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.561600", + "Timestamp": "2024-05-16T13:17:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.436600", + "Timestamp": "2024-05-16T13:17:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.789600", + "Timestamp": "2024-05-16T13:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.310400", + "Timestamp": "2024-05-16T13:17:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.511400", + "Timestamp": "2024-05-16T13:17:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.048300", + "Timestamp": "2024-05-16T13:17:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.659600", + "Timestamp": "2024-05-16T13:17:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439800", + "Timestamp": "2024-05-16T13:17:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T13:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T13:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042900", + "Timestamp": "2024-05-16T13:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.555800", + "Timestamp": "2024-05-16T13:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.790600", + "Timestamp": "2024-05-16T13:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.217100", + "Timestamp": "2024-05-16T13:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.526100", + "Timestamp": "2024-05-16T13:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.629400", + "Timestamp": "2024-05-16T13:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.316500", + "Timestamp": "2024-05-16T13:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.174600", + "Timestamp": "2024-05-16T13:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.311500", + "Timestamp": "2024-05-16T13:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.169600", + "Timestamp": "2024-05-16T13:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.186500", + "Timestamp": "2024-05-16T13:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.044600", + "Timestamp": "2024-05-16T13:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.363400", + "Timestamp": "2024-05-16T13:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.338400", + "Timestamp": "2024-05-16T13:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.932800", + "Timestamp": "2024-05-16T13:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.902800", + "Timestamp": "2024-05-16T13:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.802800", + "Timestamp": "2024-05-16T13:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.248600", + "Timestamp": "2024-05-16T13:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.306800", + "Timestamp": "2024-05-16T13:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225200", + "Timestamp": "2024-05-16T13:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.839500", + "Timestamp": "2024-05-16T13:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.752000", + "Timestamp": "2024-05-16T13:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "f1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.722000", + "Timestamp": "2024-05-16T13:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.622000", + "Timestamp": "2024-05-16T13:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.495300", + "Timestamp": "2024-05-16T13:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.239100", + "Timestamp": "2024-05-16T13:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.235400", + "Timestamp": "2024-05-16T13:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.179100", + "Timestamp": "2024-05-16T13:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.706000", + "Timestamp": "2024-05-16T13:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.701000", + "Timestamp": "2024-05-16T13:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.576000", + "Timestamp": "2024-05-16T13:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.484900", + "Timestamp": "2024-05-16T13:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.479900", + "Timestamp": "2024-05-16T13:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.354900", + "Timestamp": "2024-05-16T13:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.630200", + "Timestamp": "2024-05-16T13:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.625200", + "Timestamp": "2024-05-16T13:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.500200", + "Timestamp": "2024-05-16T13:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.480900", + "Timestamp": "2024-05-16T13:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.747100", + "Timestamp": "2024-05-16T13:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.742100", + "Timestamp": "2024-05-16T13:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.617100", + "Timestamp": "2024-05-16T13:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.058200", + "Timestamp": "2024-05-16T13:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168000", + "Timestamp": "2024-05-16T13:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164300", + "Timestamp": "2024-05-16T13:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-16T13:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.265700", + "Timestamp": "2024-05-16T13:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.286600", + "Timestamp": "2024-05-16T13:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.281600", + "Timestamp": "2024-05-16T13:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.156600", + "Timestamp": "2024-05-16T13:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.529200", + "Timestamp": "2024-05-16T13:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.524200", + "Timestamp": "2024-05-16T13:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.399200", + "Timestamp": "2024-05-16T13:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.872400", + "Timestamp": "2024-05-16T13:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120900", + "Timestamp": "2024-05-16T13:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117200", + "Timestamp": "2024-05-16T13:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060900", + "Timestamp": "2024-05-16T13:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153700", + "Timestamp": "2024-05-16T13:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150000", + "Timestamp": "2024-05-16T13:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093700", + "Timestamp": "2024-05-16T13:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225400", + "Timestamp": "2024-05-16T13:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.469400", + "Timestamp": "2024-05-16T13:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.688900", + "Timestamp": "2024-05-16T13:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.840300", + "Timestamp": "2024-05-16T13:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.835300", + "Timestamp": "2024-05-16T13:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.710300", + "Timestamp": "2024-05-16T13:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.203000", + "Timestamp": "2024-05-16T13:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.519400", + "Timestamp": "2024-05-16T13:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.514400", + "Timestamp": "2024-05-16T13:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.389400", + "Timestamp": "2024-05-16T13:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.218000", + "Timestamp": "2024-05-16T13:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.213000", + "Timestamp": "2024-05-16T13:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.088000", + "Timestamp": "2024-05-16T13:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.212700", + "Timestamp": "2024-05-16T13:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.207700", + "Timestamp": "2024-05-16T13:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.082700", + "Timestamp": "2024-05-16T13:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.586800", + "Timestamp": "2024-05-16T13:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.581800", + "Timestamp": "2024-05-16T13:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.456800", + "Timestamp": "2024-05-16T13:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.944000", + "Timestamp": "2024-05-16T13:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.393000", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.388000", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.263000", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.598700", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.456800", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.451800", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.326800", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131900", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127900", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071900", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.936700", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.931700", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.806700", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.487700", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.482700", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.357700", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.639900", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.634900", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.509900", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.255300", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.250300", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125300", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.803000", + "Timestamp": "2024-05-16T13:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "h1.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.436100", + "Timestamp": "2024-05-16T13:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.667600", + "Timestamp": "2024-05-16T13:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.689000", + "Timestamp": "2024-05-16T13:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.428600", + "Timestamp": "2024-05-16T13:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.381700", + "Timestamp": "2024-05-16T13:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T13:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.053600", + "Timestamp": "2024-05-16T13:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.972500", + "Timestamp": "2024-05-16T13:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.048600", + "Timestamp": "2024-05-16T13:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.967500", + "Timestamp": "2024-05-16T13:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.923600", + "Timestamp": "2024-05-16T13:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.842500", + "Timestamp": "2024-05-16T13:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.693200", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.283400", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.253400", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.153400", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.274300", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269300", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144300", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.443500", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.438500", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.313500", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.528900", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.523900", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.398900", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.370900", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.365900", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.240900", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.944400", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.914400", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.814400", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.090300", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.085300", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.960300", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.042400", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.275400", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270400", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145400", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.728400", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.713300", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.727000", + "Timestamp": "2024-05-16T13:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.722000", + "Timestamp": "2024-05-16T13:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.597000", + "Timestamp": "2024-05-16T13:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.271900", + "Timestamp": "2024-05-16T13:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.241900", + "Timestamp": "2024-05-16T13:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.141900", + "Timestamp": "2024-05-16T13:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.265100", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147500", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149500", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143800", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145800", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087500", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089500", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.748800", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.743800", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.618800", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.937400", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.349300", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.344300", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219300", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.138800", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.187400", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.133800", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.182400", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.008800", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.057400", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297700", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.292700", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167700", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.537300", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.507300", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.407300", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090600", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086900", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030600", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.216300", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.211300", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.086300", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130300", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126600", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070300", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.988300", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.983300", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.858300", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.624300", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.619300", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.494300", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.619600", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.614600", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.489600", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.341600", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.336600", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.211600", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128000", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124300", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068000", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "4.979400", + "Timestamp": "2024-05-16T13:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.552700", + "Timestamp": "2024-05-16T13:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.547700", + "Timestamp": "2024-05-16T13:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.422700", + "Timestamp": "2024-05-16T13:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.668300", + "Timestamp": "2024-05-16T13:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.576000", + "Timestamp": "2024-05-16T13:17:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.122900", + "Timestamp": "2024-05-16T13:17:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.590300", + "Timestamp": "2024-05-16T13:17:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.585300", + "Timestamp": "2024-05-16T13:17:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.460300", + "Timestamp": "2024-05-16T13:17:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.128000", + "Timestamp": "2024-05-16T13:17:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.123000", + "Timestamp": "2024-05-16T13:17:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.998000", + "Timestamp": "2024-05-16T13:17:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T13:17:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121500", + "Timestamp": "2024-05-16T13:17:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T13:17:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117800", + "Timestamp": "2024-05-16T13:17:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048700", + "Timestamp": "2024-05-16T13:17:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061500", + "Timestamp": "2024-05-16T13:17:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.407400", + "Timestamp": "2024-05-16T13:17:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.152500", + "Timestamp": "2024-05-16T13:17:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.695800", + "Timestamp": "2024-05-16T13:17:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.448900", + "Timestamp": "2024-05-16T13:17:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.443900", + "Timestamp": "2024-05-16T13:17:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.318900", + "Timestamp": "2024-05-16T13:17:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.808500", + "Timestamp": "2024-05-16T13:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.803500", + "Timestamp": "2024-05-16T13:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.678500", + "Timestamp": "2024-05-16T13:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.797100", + "Timestamp": "2024-05-16T13:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.792100", + "Timestamp": "2024-05-16T13:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.667100", + "Timestamp": "2024-05-16T13:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.437400", + "Timestamp": "2024-05-16T13:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.432400", + "Timestamp": "2024-05-16T13:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.307400", + "Timestamp": "2024-05-16T13:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.877200", + "Timestamp": "2024-05-16T13:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.317300", + "Timestamp": "2024-05-16T13:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.313300", + "Timestamp": "2024-05-16T13:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.257300", + "Timestamp": "2024-05-16T13:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.287000", + "Timestamp": "2024-05-16T13:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.815500", + "Timestamp": "2024-05-16T13:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.810500", + "Timestamp": "2024-05-16T13:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.685500", + "Timestamp": "2024-05-16T13:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109600", + "Timestamp": "2024-05-16T13:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.659600", + "Timestamp": "2024-05-16T13:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.246700", + "Timestamp": "2024-05-16T13:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.241700", + "Timestamp": "2024-05-16T13:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.116700", + "Timestamp": "2024-05-16T13:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.641500", + "Timestamp": "2024-05-16T13:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.636500", + "Timestamp": "2024-05-16T13:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.511500", + "Timestamp": "2024-05-16T13:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.702500", + "Timestamp": "2024-05-16T13:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211600", + "Timestamp": "2024-05-16T13:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.443700", + "Timestamp": "2024-05-16T13:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.454900", + "Timestamp": "2024-05-16T13:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.142200", + "Timestamp": "2024-05-16T13:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.494400", + "Timestamp": "2024-05-16T13:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.464400", + "Timestamp": "2024-05-16T13:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.364400", + "Timestamp": "2024-05-16T13:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.026100", + "Timestamp": "2024-05-16T13:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.465100", + "Timestamp": "2024-05-16T13:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.460100", + "Timestamp": "2024-05-16T13:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.335100", + "Timestamp": "2024-05-16T13:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.122100", + "Timestamp": "2024-05-16T13:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.927800", + "Timestamp": "2024-05-16T13:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.922800", + "Timestamp": "2024-05-16T13:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.797800", + "Timestamp": "2024-05-16T13:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.437800", + "Timestamp": "2024-05-16T13:17:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.432800", + "Timestamp": "2024-05-16T13:17:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.307800", + "Timestamp": "2024-05-16T13:17:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209100", + "Timestamp": "2024-05-16T13:17:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.367200", + "Timestamp": "2024-05-16T13:17:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.563700", + "Timestamp": "2024-05-16T13:16:59.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.533700", + "Timestamp": "2024-05-16T13:16:59.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.433700", + "Timestamp": "2024-05-16T13:16:59.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.288100", + "Timestamp": "2024-05-16T13:16:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258100", + "Timestamp": "2024-05-16T13:16:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158100", + "Timestamp": "2024-05-16T13:16:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.482500", + "Timestamp": "2024-05-16T13:16:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.452500", + "Timestamp": "2024-05-16T13:16:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.352500", + "Timestamp": "2024-05-16T13:16:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.759100", + "Timestamp": "2024-05-16T13:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.754100", + "Timestamp": "2024-05-16T13:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.629100", + "Timestamp": "2024-05-16T13:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.740700", + "Timestamp": "2024-05-16T13:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.735700", + "Timestamp": "2024-05-16T13:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.610700", + "Timestamp": "2024-05-16T13:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.668800", + "Timestamp": "2024-05-16T13:16:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.663800", + "Timestamp": "2024-05-16T13:16:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.538800", + "Timestamp": "2024-05-16T13:16:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.294500", + "Timestamp": "2024-05-16T13:16:53.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.898200", + "Timestamp": "2024-05-16T13:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.868200", + "Timestamp": "2024-05-16T13:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.768200", + "Timestamp": "2024-05-16T13:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.394800", + "Timestamp": "2024-05-16T13:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.869800", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.864800", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.739800", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307200", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.277200", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177200", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.199500", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.195800", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139500", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.456700", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.451700", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.326700", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.484800", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.479800", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.354800", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105300", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.527600", + "Timestamp": "2024-05-16T13:03:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.522600", + "Timestamp": "2024-05-16T13:03:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.397600", + "Timestamp": "2024-05-16T13:03:00.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.551700", + "Timestamp": "2024-05-16T13:02:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.703700", + "Timestamp": "2024-05-16T13:02:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.698700", + "Timestamp": "2024-05-16T13:02:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.573700", + "Timestamp": "2024-05-16T13:02:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.147800", + "Timestamp": "2024-05-16T13:02:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.142800", + "Timestamp": "2024-05-16T13:02:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.017800", + "Timestamp": "2024-05-16T13:02:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T13:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.288800", + "Timestamp": "2024-05-16T13:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.283800", + "Timestamp": "2024-05-16T13:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158800", + "Timestamp": "2024-05-16T13:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Windows", + "SpotPrice": "7.355600", + "Timestamp": "2024-05-16T13:02:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.898100", + "Timestamp": "2024-05-16T13:02:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.669900", + "Timestamp": "2024-05-16T13:02:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.929900", + "Timestamp": "2024-05-16T13:02:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.292700", + "Timestamp": "2024-05-16T13:02:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.991600", + "Timestamp": "2024-05-16T13:02:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.986600", + "Timestamp": "2024-05-16T13:02:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.861600", + "Timestamp": "2024-05-16T13:02:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.449000", + "Timestamp": "2024-05-16T13:02:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.829000", + "Timestamp": "2024-05-16T13:02:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.134000", + "Timestamp": "2024-05-16T13:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.057700", + "Timestamp": "2024-05-16T13:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.205800", + "Timestamp": "2024-05-16T13:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.667600", + "Timestamp": "2024-05-16T13:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429600", + "Timestamp": "2024-05-16T13:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.688300", + "Timestamp": "2024-05-16T13:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.683300", + "Timestamp": "2024-05-16T13:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.558300", + "Timestamp": "2024-05-16T13:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.710800", + "Timestamp": "2024-05-16T13:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.610700", + "Timestamp": "2024-05-16T13:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.605700", + "Timestamp": "2024-05-16T13:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.480700", + "Timestamp": "2024-05-16T13:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.832800", + "Timestamp": "2024-05-16T13:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.827800", + "Timestamp": "2024-05-16T13:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.702800", + "Timestamp": "2024-05-16T13:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.788100", + "Timestamp": "2024-05-16T13:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.449800", + "Timestamp": "2024-05-16T13:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.343500", + "Timestamp": "2024-05-16T13:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.313500", + "Timestamp": "2024-05-16T13:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.213500", + "Timestamp": "2024-05-16T13:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.074600", + "Timestamp": "2024-05-16T13:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.069600", + "Timestamp": "2024-05-16T13:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.944600", + "Timestamp": "2024-05-16T13:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.514000", + "Timestamp": "2024-05-16T13:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.977500", + "Timestamp": "2024-05-16T13:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.392800", + "Timestamp": "2024-05-16T13:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.387800", + "Timestamp": "2024-05-16T13:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.262800", + "Timestamp": "2024-05-16T13:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416200", + "Timestamp": "2024-05-16T13:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.434700", + "Timestamp": "2024-05-16T13:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.264300", + "Timestamp": "2024-05-16T13:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.234300", + "Timestamp": "2024-05-16T13:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T13:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.152000", + "Timestamp": "2024-05-16T13:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.147000", + "Timestamp": "2024-05-16T13:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.022000", + "Timestamp": "2024-05-16T13:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.944700", + "Timestamp": "2024-05-16T13:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.914700", + "Timestamp": "2024-05-16T13:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.814700", + "Timestamp": "2024-05-16T13:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.901800", + "Timestamp": "2024-05-16T13:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.789100", + "Timestamp": "2024-05-16T13:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.784100", + "Timestamp": "2024-05-16T13:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.659100", + "Timestamp": "2024-05-16T13:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217400", + "Timestamp": "2024-05-16T13:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221000", + "Timestamp": "2024-05-16T13:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.959800", + "Timestamp": "2024-05-16T13:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.954800", + "Timestamp": "2024-05-16T13:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.829800", + "Timestamp": "2024-05-16T13:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.142600", + "Timestamp": "2024-05-16T13:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Windows", + "SpotPrice": "3.628600", + "Timestamp": "2024-05-16T13:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.816100", + "Timestamp": "2024-05-16T13:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.811100", + "Timestamp": "2024-05-16T13:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.686100", + "Timestamp": "2024-05-16T13:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.257400", + "Timestamp": "2024-05-16T13:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.423100", + "Timestamp": "2024-05-16T13:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.252400", + "Timestamp": "2024-05-16T13:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.418100", + "Timestamp": "2024-05-16T13:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127400", + "Timestamp": "2024-05-16T13:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.293100", + "Timestamp": "2024-05-16T13:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T13:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.983400", + "Timestamp": "2024-05-16T13:02:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.978400", + "Timestamp": "2024-05-16T13:02:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.853400", + "Timestamp": "2024-05-16T13:02:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209700", + "Timestamp": "2024-05-16T13:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085100", + "Timestamp": "2024-05-16T13:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089200", + "Timestamp": "2024-05-16T13:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.081400", + "Timestamp": "2024-05-16T13:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085500", + "Timestamp": "2024-05-16T13:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025100", + "Timestamp": "2024-05-16T13:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029200", + "Timestamp": "2024-05-16T13:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.343400", + "Timestamp": "2024-05-16T13:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.203700", + "Timestamp": "2024-05-16T13:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.627300", + "Timestamp": "2024-05-16T13:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111300", + "Timestamp": "2024-05-16T13:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.877300", + "Timestamp": "2024-05-16T13:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.872300", + "Timestamp": "2024-05-16T13:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.747300", + "Timestamp": "2024-05-16T13:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.233700", + "Timestamp": "2024-05-16T13:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.228700", + "Timestamp": "2024-05-16T13:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.103700", + "Timestamp": "2024-05-16T13:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.919400", + "Timestamp": "2024-05-16T13:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.802200", + "Timestamp": "2024-05-16T13:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.797200", + "Timestamp": "2024-05-16T13:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.672200", + "Timestamp": "2024-05-16T13:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "vt1.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.424000", + "Timestamp": "2024-05-16T13:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "vt1.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.394000", + "Timestamp": "2024-05-16T13:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "vt1.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.294000", + "Timestamp": "2024-05-16T13:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.119000", + "Timestamp": "2024-05-16T13:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.331400", + "Timestamp": "2024-05-16T13:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.326400", + "Timestamp": "2024-05-16T13:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.201400", + "Timestamp": "2024-05-16T13:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068600", + "Timestamp": "2024-05-16T13:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039600", + "Timestamp": "2024-05-16T13:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008600", + "Timestamp": "2024-05-16T13:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.034700", + "Timestamp": "2024-05-16T13:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.394000", + "Timestamp": "2024-05-16T13:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.479400", + "Timestamp": "2024-05-16T13:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.631400", + "Timestamp": "2024-05-16T13:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.626400", + "Timestamp": "2024-05-16T13:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.501400", + "Timestamp": "2024-05-16T13:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.053500", + "Timestamp": "2024-05-16T13:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.048500", + "Timestamp": "2024-05-16T13:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.923500", + "Timestamp": "2024-05-16T13:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.981300", + "Timestamp": "2024-05-16T13:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.976300", + "Timestamp": "2024-05-16T13:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.851300", + "Timestamp": "2024-05-16T13:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.856000", + "Timestamp": "2024-05-16T13:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.851000", + "Timestamp": "2024-05-16T13:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.726000", + "Timestamp": "2024-05-16T13:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157700", + "Timestamp": "2024-05-16T13:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154000", + "Timestamp": "2024-05-16T13:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097700", + "Timestamp": "2024-05-16T13:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.241100", + "Timestamp": "2024-05-16T13:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.269400", + "Timestamp": "2024-05-16T13:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.264400", + "Timestamp": "2024-05-16T13:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139400", + "Timestamp": "2024-05-16T13:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.411300", + "Timestamp": "2024-05-16T13:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.406300", + "Timestamp": "2024-05-16T13:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.281300", + "Timestamp": "2024-05-16T13:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.125300", + "Timestamp": "2024-05-16T13:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.120300", + "Timestamp": "2024-05-16T13:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.995300", + "Timestamp": "2024-05-16T13:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061200", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001200", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001200", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418100", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.044500", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.039500", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.914500", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.709100", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.704100", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.579100", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.985800", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.029900", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.024900", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.899900", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135700", + "Timestamp": "2024-05-16T13:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132000", + "Timestamp": "2024-05-16T13:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075700", + "Timestamp": "2024-05-16T13:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.709200", + "Timestamp": "2024-05-16T13:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.704200", + "Timestamp": "2024-05-16T13:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.579200", + "Timestamp": "2024-05-16T13:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.947500", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273900", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268900", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143900", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.724500", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.719500", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.594500", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.139200", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.610100", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.827100", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.822100", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.697100", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.238100", + "Timestamp": "2024-05-16T13:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.233100", + "Timestamp": "2024-05-16T13:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.108100", + "Timestamp": "2024-05-16T13:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.324700", + "Timestamp": "2024-05-16T13:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.436300", + "Timestamp": "2024-05-16T13:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.543100", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.538100", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.413100", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.827200", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.822200", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.697200", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.041800", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362400", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.357400", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.232400", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.569500", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.564500", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.439500", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.743100", + "Timestamp": "2024-05-16T13:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.752400", + "Timestamp": "2024-05-16T13:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.766800", + "Timestamp": "2024-05-16T13:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128900", + "Timestamp": "2024-05-16T13:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125200", + "Timestamp": "2024-05-16T13:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068900", + "Timestamp": "2024-05-16T13:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.351200", + "Timestamp": "2024-05-16T13:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.396000", + "Timestamp": "2024-05-16T13:02:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.391000", + "Timestamp": "2024-05-16T13:02:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.266000", + "Timestamp": "2024-05-16T13:02:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.418800", + "Timestamp": "2024-05-16T13:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.413800", + "Timestamp": "2024-05-16T13:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.288800", + "Timestamp": "2024-05-16T13:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.747700", + "Timestamp": "2024-05-16T13:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.720400", + "Timestamp": "2024-05-16T13:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.742700", + "Timestamp": "2024-05-16T13:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.715400", + "Timestamp": "2024-05-16T13:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.617700", + "Timestamp": "2024-05-16T13:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.590400", + "Timestamp": "2024-05-16T13:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127200", + "Timestamp": "2024-05-16T13:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123500", + "Timestamp": "2024-05-16T13:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067200", + "Timestamp": "2024-05-16T13:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.607600", + "Timestamp": "2024-05-16T13:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.798500", + "Timestamp": "2024-05-16T13:02:11.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.793500", + "Timestamp": "2024-05-16T13:02:11.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.668500", + "Timestamp": "2024-05-16T13:02:11.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.933000", + "Timestamp": "2024-05-16T13:02:11.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.928000", + "Timestamp": "2024-05-16T13:02:11.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.803000", + "Timestamp": "2024-05-16T13:02:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098300", + "Timestamp": "2024-05-16T13:02:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094600", + "Timestamp": "2024-05-16T13:02:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038300", + "Timestamp": "2024-05-16T13:02:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.262100", + "Timestamp": "2024-05-16T13:02:10.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.274300", + "Timestamp": "2024-05-16T13:02:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.257100", + "Timestamp": "2024-05-16T13:02:10.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269300", + "Timestamp": "2024-05-16T13:02:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.132100", + "Timestamp": "2024-05-16T13:02:10.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144300", + "Timestamp": "2024-05-16T13:02:10.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.115600", + "Timestamp": "2024-05-16T13:02:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.027200", + "Timestamp": "2024-05-16T13:02:10.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.110600", + "Timestamp": "2024-05-16T13:02:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.022200", + "Timestamp": "2024-05-16T13:02:10.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.985600", + "Timestamp": "2024-05-16T13:02:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.897200", + "Timestamp": "2024-05-16T13:02:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.183400", + "Timestamp": "2024-05-16T13:02:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179400", + "Timestamp": "2024-05-16T13:02:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123400", + "Timestamp": "2024-05-16T13:02:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.098000", + "Timestamp": "2024-05-16T13:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.093000", + "Timestamp": "2024-05-16T13:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.968000", + "Timestamp": "2024-05-16T13:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.508900", + "Timestamp": "2024-05-16T13:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.824700", + "Timestamp": "2024-05-16T13:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.819700", + "Timestamp": "2024-05-16T13:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.694700", + "Timestamp": "2024-05-16T13:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.285100", + "Timestamp": "2024-05-16T13:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.299100", + "Timestamp": "2024-05-16T13:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.280100", + "Timestamp": "2024-05-16T13:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.294100", + "Timestamp": "2024-05-16T13:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.155100", + "Timestamp": "2024-05-16T13:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.169100", + "Timestamp": "2024-05-16T13:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.424200", + "Timestamp": "2024-05-16T13:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.419200", + "Timestamp": "2024-05-16T13:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.294200", + "Timestamp": "2024-05-16T13:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417100", + "Timestamp": "2024-05-16T13:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.592500", + "Timestamp": "2024-05-16T13:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.587500", + "Timestamp": "2024-05-16T13:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.462500", + "Timestamp": "2024-05-16T13:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.042800", + "Timestamp": "2024-05-16T13:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.012800", + "Timestamp": "2024-05-16T13:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.912800", + "Timestamp": "2024-05-16T13:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.612100", + "Timestamp": "2024-05-16T13:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158600", + "Timestamp": "2024-05-16T13:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154900", + "Timestamp": "2024-05-16T13:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098600", + "Timestamp": "2024-05-16T13:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088300", + "Timestamp": "2024-05-16T13:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084600", + "Timestamp": "2024-05-16T13:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028300", + "Timestamp": "2024-05-16T13:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T13:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T13:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104700", + "Timestamp": "2024-05-16T13:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048400", + "Timestamp": "2024-05-16T13:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070900", + "Timestamp": "2024-05-16T13:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041900", + "Timestamp": "2024-05-16T13:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010900", + "Timestamp": "2024-05-16T13:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.829800", + "Timestamp": "2024-05-16T13:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184100", + "Timestamp": "2024-05-16T13:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180400", + "Timestamp": "2024-05-16T13:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124100", + "Timestamp": "2024-05-16T13:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.317300", + "Timestamp": "2024-05-16T13:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.295800", + "Timestamp": "2024-05-16T13:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.287300", + "Timestamp": "2024-05-16T13:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265800", + "Timestamp": "2024-05-16T13:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.187300", + "Timestamp": "2024-05-16T13:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165800", + "Timestamp": "2024-05-16T13:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.648700", + "Timestamp": "2024-05-16T13:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.643700", + "Timestamp": "2024-05-16T13:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.518700", + "Timestamp": "2024-05-16T13:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.415100", + "Timestamp": "2024-05-16T13:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.410100", + "Timestamp": "2024-05-16T13:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.285100", + "Timestamp": "2024-05-16T13:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.882400", + "Timestamp": "2024-05-16T13:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.155300", + "Timestamp": "2024-05-16T13:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.150300", + "Timestamp": "2024-05-16T13:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.025300", + "Timestamp": "2024-05-16T13:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.713600", + "Timestamp": "2024-05-16T13:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.461500", + "Timestamp": "2024-05-16T13:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.456500", + "Timestamp": "2024-05-16T13:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.331500", + "Timestamp": "2024-05-16T13:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.718300", + "Timestamp": "2024-05-16T13:01:59.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128100", + "Timestamp": "2024-05-16T13:01:59.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124100", + "Timestamp": "2024-05-16T13:01:59.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068100", + "Timestamp": "2024-05-16T13:01:59.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.574200", + "Timestamp": "2024-05-16T13:01:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.569200", + "Timestamp": "2024-05-16T13:01:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.444200", + "Timestamp": "2024-05-16T13:01:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112700", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056400", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.468900", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.438900", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.338900", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.911500", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.881500", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.781500", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.243600", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207100", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.754400", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.357600", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "h1.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.724400", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "h1.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.327600", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.624400", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.227600", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.426900", + "Timestamp": "2024-05-16T13:01:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.421900", + "Timestamp": "2024-05-16T13:01:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.296900", + "Timestamp": "2024-05-16T13:01:55.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.443000", + "Timestamp": "2024-05-16T13:01:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.446200", + "Timestamp": "2024-05-16T13:01:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.722600", + "Timestamp": "2024-05-16T13:01:55.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.633300", + "Timestamp": "2024-05-16T13:01:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.628300", + "Timestamp": "2024-05-16T13:01:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.503300", + "Timestamp": "2024-05-16T13:01:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.565600", + "Timestamp": "2024-05-16T13:01:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.560600", + "Timestamp": "2024-05-16T13:01:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.435600", + "Timestamp": "2024-05-16T13:01:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.474100", + "Timestamp": "2024-05-16T13:01:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T13:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T13:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048700", + "Timestamp": "2024-05-16T13:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.493100", + "Timestamp": "2024-05-16T13:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.241000", + "Timestamp": "2024-05-16T13:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281000", + "Timestamp": "2024-05-16T13:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181000", + "Timestamp": "2024-05-16T13:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.831600", + "Timestamp": "2024-05-16T13:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.801600", + "Timestamp": "2024-05-16T13:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.701600", + "Timestamp": "2024-05-16T13:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.969100", + "Timestamp": "2024-05-16T13:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.797700", + "Timestamp": "2024-05-16T13:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.767700", + "Timestamp": "2024-05-16T13:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.667700", + "Timestamp": "2024-05-16T13:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.991400", + "Timestamp": "2024-05-16T13:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.986400", + "Timestamp": "2024-05-16T13:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.861400", + "Timestamp": "2024-05-16T13:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.650200", + "Timestamp": "2024-05-16T13:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.387300", + "Timestamp": "2024-05-16T13:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.382300", + "Timestamp": "2024-05-16T13:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.257300", + "Timestamp": "2024-05-16T13:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.478000", + "Timestamp": "2024-05-16T13:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473000", + "Timestamp": "2024-05-16T13:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.348000", + "Timestamp": "2024-05-16T13:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.818900", + "Timestamp": "2024-05-16T13:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.425200", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.607400", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.602400", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.477400", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129200", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125500", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069200", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.325600", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.295600", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195600", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140500", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136800", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080500", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133100", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129400", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073100", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.081200", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.076200", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.951200", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.865600", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.860600", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.735600", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045800", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065200", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.061500", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.328300", + "Timestamp": "2024-05-16T13:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.306100", + "Timestamp": "2024-05-16T13:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.298400", + "Timestamp": "2024-05-16T13:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.347300", + "Timestamp": "2024-05-16T13:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.829500", + "Timestamp": "2024-05-16T13:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.020500", + "Timestamp": "2024-05-16T13:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.894600", + "Timestamp": "2024-05-16T13:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.720900", + "Timestamp": "2024-05-16T13:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.799500", + "Timestamp": "2024-05-16T13:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.990500", + "Timestamp": "2024-05-16T13:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.864600", + "Timestamp": "2024-05-16T13:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.690900", + "Timestamp": "2024-05-16T13:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.699500", + "Timestamp": "2024-05-16T13:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.890500", + "Timestamp": "2024-05-16T13:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.764600", + "Timestamp": "2024-05-16T13:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.590900", + "Timestamp": "2024-05-16T13:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.400000", + "Timestamp": "2024-05-16T12:47:59.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.395000", + "Timestamp": "2024-05-16T12:47:59.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.270000", + "Timestamp": "2024-05-16T12:47:59.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.974000", + "Timestamp": "2024-05-16T12:47:57.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.422400", + "Timestamp": "2024-05-16T12:47:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.599200", + "Timestamp": "2024-05-16T12:47:53.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iezn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.594200", + "Timestamp": "2024-05-16T12:47:53.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.469200", + "Timestamp": "2024-05-16T12:47:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.093100", + "Timestamp": "2024-05-16T12:47:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.847800", + "Timestamp": "2024-05-16T12:47:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.817800", + "Timestamp": "2024-05-16T12:47:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.717800", + "Timestamp": "2024-05-16T12:47:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "h1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.060100", + "Timestamp": "2024-05-16T12:47:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.991700", + "Timestamp": "2024-05-16T12:47:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.221600", + "Timestamp": "2024-05-16T12:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.216600", + "Timestamp": "2024-05-16T12:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.091600", + "Timestamp": "2024-05-16T12:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T12:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T12:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.236400", + "Timestamp": "2024-05-16T12:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151900", + "Timestamp": "2024-05-16T12:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162700", + "Timestamp": "2024-05-16T12:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.191900", + "Timestamp": "2024-05-16T12:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.202700", + "Timestamp": "2024-05-16T12:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091900", + "Timestamp": "2024-05-16T12:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102700", + "Timestamp": "2024-05-16T12:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.374800", + "Timestamp": "2024-05-16T12:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.102400", + "Timestamp": "2024-05-16T12:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.592200", + "Timestamp": "2024-05-16T12:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.587200", + "Timestamp": "2024-05-16T12:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.462200", + "Timestamp": "2024-05-16T12:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121600", + "Timestamp": "2024-05-16T12:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117900", + "Timestamp": "2024-05-16T12:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061600", + "Timestamp": "2024-05-16T12:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.794200", + "Timestamp": "2024-05-16T12:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.789200", + "Timestamp": "2024-05-16T12:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.664200", + "Timestamp": "2024-05-16T12:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.972200", + "Timestamp": "2024-05-16T12:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T12:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092300", + "Timestamp": "2024-05-16T12:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036000", + "Timestamp": "2024-05-16T12:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-16T12:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.622400", + "Timestamp": "2024-05-16T12:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.592400", + "Timestamp": "2024-05-16T12:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.492400", + "Timestamp": "2024-05-16T12:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.242000", + "Timestamp": "2024-05-16T12:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.871000", + "Timestamp": "2024-05-16T12:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.885700", + "Timestamp": "2024-05-16T12:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.880700", + "Timestamp": "2024-05-16T12:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.755700", + "Timestamp": "2024-05-16T12:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.915500", + "Timestamp": "2024-05-16T12:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.910500", + "Timestamp": "2024-05-16T12:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.785500", + "Timestamp": "2024-05-16T12:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.954800", + "Timestamp": "2024-05-16T12:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.065700", + "Timestamp": "2024-05-16T12:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.949800", + "Timestamp": "2024-05-16T12:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.060700", + "Timestamp": "2024-05-16T12:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.824800", + "Timestamp": "2024-05-16T12:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.935700", + "Timestamp": "2024-05-16T12:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.945400", + "Timestamp": "2024-05-16T12:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.940400", + "Timestamp": "2024-05-16T12:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.815400", + "Timestamp": "2024-05-16T12:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.060700", + "Timestamp": "2024-05-16T12:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.019900", + "Timestamp": "2024-05-16T12:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.140200", + "Timestamp": "2024-05-16T12:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.135200", + "Timestamp": "2024-05-16T12:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.010200", + "Timestamp": "2024-05-16T12:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222000", + "Timestamp": "2024-05-16T12:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432200", + "Timestamp": "2024-05-16T12:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.420700", + "Timestamp": "2024-05-16T12:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.160100", + "Timestamp": "2024-05-16T12:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.155100", + "Timestamp": "2024-05-16T12:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.030100", + "Timestamp": "2024-05-16T12:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.585100", + "Timestamp": "2024-05-16T12:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "h1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.555100", + "Timestamp": "2024-05-16T12:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.455100", + "Timestamp": "2024-05-16T12:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123700", + "Timestamp": "2024-05-16T12:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120000", + "Timestamp": "2024-05-16T12:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063700", + "Timestamp": "2024-05-16T12:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110400", + "Timestamp": "2024-05-16T12:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T12:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050400", + "Timestamp": "2024-05-16T12:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.722200", + "Timestamp": "2024-05-16T12:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.672500", + "Timestamp": "2024-05-16T12:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.667500", + "Timestamp": "2024-05-16T12:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.542500", + "Timestamp": "2024-05-16T12:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.895300", + "Timestamp": "2024-05-16T12:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.448800", + "Timestamp": "2024-05-16T12:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.555500", + "Timestamp": "2024-05-16T12:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.443800", + "Timestamp": "2024-05-16T12:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.550500", + "Timestamp": "2024-05-16T12:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.318800", + "Timestamp": "2024-05-16T12:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.425500", + "Timestamp": "2024-05-16T12:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T12:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T12:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047500", + "Timestamp": "2024-05-16T12:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.735100", + "Timestamp": "2024-05-16T12:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.429800", + "Timestamp": "2024-05-16T12:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.812800", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.807800", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.682800", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.290800", + "Timestamp": "2024-05-16T12:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.285800", + "Timestamp": "2024-05-16T12:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.160800", + "Timestamp": "2024-05-16T12:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.099900", + "Timestamp": "2024-05-16T12:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.492900", + "Timestamp": "2024-05-16T12:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.813900", + "Timestamp": "2024-05-16T12:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.949100", + "Timestamp": "2024-05-16T12:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.205800", + "Timestamp": "2024-05-16T12:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.700400", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.653100", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.648100", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.523100", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.175400", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.170400", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.045400", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.249500", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.244500", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.119500", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.534800", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.529800", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.404800", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.392700", + "Timestamp": "2024-05-16T12:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.387700", + "Timestamp": "2024-05-16T12:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.262700", + "Timestamp": "2024-05-16T12:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.452100", + "Timestamp": "2024-05-16T12:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.447100", + "Timestamp": "2024-05-16T12:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.322100", + "Timestamp": "2024-05-16T12:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.439500", + "Timestamp": "2024-05-16T12:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.434500", + "Timestamp": "2024-05-16T12:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.309500", + "Timestamp": "2024-05-16T12:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.897300", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.892300", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.767300", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.984500", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.444700", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.411200", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.025900", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.020900", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.895900", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301700", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.271700", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171700", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.137600", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.204100", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.923700", + "Timestamp": "2024-05-16T12:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.869700", + "Timestamp": "2024-05-16T12:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.839700", + "Timestamp": "2024-05-16T12:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.739700", + "Timestamp": "2024-05-16T12:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.445200", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.440200", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.315200", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.355200", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.328000", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.350200", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323000", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.225200", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.198000", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.448300", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.443300", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.318300", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.257100", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.252100", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.127100", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.539200", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.534200", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.409200", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.378500", + "Timestamp": "2024-05-16T12:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.373500", + "Timestamp": "2024-05-16T12:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.248500", + "Timestamp": "2024-05-16T12:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.616300", + "Timestamp": "2024-05-16T12:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.402200", + "Timestamp": "2024-05-16T12:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372200", + "Timestamp": "2024-05-16T12:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.272200", + "Timestamp": "2024-05-16T12:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.595300", + "Timestamp": "2024-05-16T12:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.590300", + "Timestamp": "2024-05-16T12:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.465300", + "Timestamp": "2024-05-16T12:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.398700", + "Timestamp": "2024-05-16T12:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.619800", + "Timestamp": "2024-05-16T12:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.614800", + "Timestamp": "2024-05-16T12:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.489800", + "Timestamp": "2024-05-16T12:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.607600", + "Timestamp": "2024-05-16T12:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.577600", + "Timestamp": "2024-05-16T12:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.477600", + "Timestamp": "2024-05-16T12:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.824900", + "Timestamp": "2024-05-16T12:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.452800", + "Timestamp": "2024-05-16T12:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.447800", + "Timestamp": "2024-05-16T12:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.322800", + "Timestamp": "2024-05-16T12:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.240000", + "Timestamp": "2024-05-16T12:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261700", + "Timestamp": "2024-05-16T12:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.235000", + "Timestamp": "2024-05-16T12:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.256700", + "Timestamp": "2024-05-16T12:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T12:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131700", + "Timestamp": "2024-05-16T12:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.532200", + "Timestamp": "2024-05-16T12:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.527200", + "Timestamp": "2024-05-16T12:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.402200", + "Timestamp": "2024-05-16T12:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.863200", + "Timestamp": "2024-05-16T12:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.051700", + "Timestamp": "2024-05-16T12:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.021700", + "Timestamp": "2024-05-16T12:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.921700", + "Timestamp": "2024-05-16T12:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.726800", + "Timestamp": "2024-05-16T12:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103100", + "Timestamp": "2024-05-16T12:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.812500", + "Timestamp": "2024-05-16T12:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.522400", + "Timestamp": "2024-05-16T12:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.517400", + "Timestamp": "2024-05-16T12:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.392400", + "Timestamp": "2024-05-16T12:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.814800", + "Timestamp": "2024-05-16T12:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.856800", + "Timestamp": "2024-05-16T12:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.851800", + "Timestamp": "2024-05-16T12:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.726800", + "Timestamp": "2024-05-16T12:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.911500", + "Timestamp": "2024-05-16T12:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.599600", + "Timestamp": "2024-05-16T12:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.812500", + "Timestamp": "2024-05-16T12:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.406400", + "Timestamp": "2024-05-16T12:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.401400", + "Timestamp": "2024-05-16T12:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.276400", + "Timestamp": "2024-05-16T12:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.213000", + "Timestamp": "2024-05-16T12:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.253000", + "Timestamp": "2024-05-16T12:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.153000", + "Timestamp": "2024-05-16T12:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.639800", + "Timestamp": "2024-05-16T12:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.634800", + "Timestamp": "2024-05-16T12:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.509800", + "Timestamp": "2024-05-16T12:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.191800", + "Timestamp": "2024-05-16T12:46:59.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079800", + "Timestamp": "2024-05-16T12:46:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.050800", + "Timestamp": "2024-05-16T12:46:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019800", + "Timestamp": "2024-05-16T12:46:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273700", + "Timestamp": "2024-05-16T12:46:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.243700", + "Timestamp": "2024-05-16T12:46:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143700", + "Timestamp": "2024-05-16T12:46:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.639100", + "Timestamp": "2024-05-16T12:46:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.659900", + "Timestamp": "2024-05-16T12:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.663200", + "Timestamp": "2024-05-16T12:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.658200", + "Timestamp": "2024-05-16T12:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.533200", + "Timestamp": "2024-05-16T12:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.780500", + "Timestamp": "2024-05-16T12:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.750500", + "Timestamp": "2024-05-16T12:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.650500", + "Timestamp": "2024-05-16T12:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089100", + "Timestamp": "2024-05-16T12:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098400", + "Timestamp": "2024-05-16T12:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085100", + "Timestamp": "2024-05-16T12:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094400", + "Timestamp": "2024-05-16T12:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029100", + "Timestamp": "2024-05-16T12:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038400", + "Timestamp": "2024-05-16T12:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.002600", + "Timestamp": "2024-05-16T12:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.997600", + "Timestamp": "2024-05-16T12:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.872600", + "Timestamp": "2024-05-16T12:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.608500", + "Timestamp": "2024-05-16T12:46:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.603500", + "Timestamp": "2024-05-16T12:46:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.478500", + "Timestamp": "2024-05-16T12:46:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.836900", + "Timestamp": "2024-05-16T12:46:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.833100", + "Timestamp": "2024-05-16T12:46:53.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.415200", + "Timestamp": "2024-05-16T12:46:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.885800", + "Timestamp": "2024-05-16T12:46:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.859100", + "Timestamp": "2024-05-16T12:46:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.565100", + "Timestamp": "2024-05-16T12:46:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "14.001200", + "Timestamp": "2024-05-16T12:46:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.995600", + "Timestamp": "2024-05-16T12:46:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.990600", + "Timestamp": "2024-05-16T12:46:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.865600", + "Timestamp": "2024-05-16T12:46:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.376500", + "Timestamp": "2024-05-16T12:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.371500", + "Timestamp": "2024-05-16T12:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.246500", + "Timestamp": "2024-05-16T12:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.313400", + "Timestamp": "2024-05-16T12:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.308400", + "Timestamp": "2024-05-16T12:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.183400", + "Timestamp": "2024-05-16T12:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.822500", + "Timestamp": "2024-05-16T12:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.388600", + "Timestamp": "2024-05-16T12:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.383600", + "Timestamp": "2024-05-16T12:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.258600", + "Timestamp": "2024-05-16T12:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113900", + "Timestamp": "2024-05-16T12:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T12:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053900", + "Timestamp": "2024-05-16T12:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.918600", + "Timestamp": "2024-05-16T12:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.913600", + "Timestamp": "2024-05-16T12:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.788600", + "Timestamp": "2024-05-16T12:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145500", + "Timestamp": "2024-05-16T12:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141800", + "Timestamp": "2024-05-16T12:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085500", + "Timestamp": "2024-05-16T12:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.792600", + "Timestamp": "2024-05-16T12:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.646900", + "Timestamp": "2024-05-16T12:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.718700", + "Timestamp": "2024-05-16T12:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.743300", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.738300", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.613300", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.784800", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.779800", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.654800", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.928900", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.923900", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.798900", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.348700", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343700", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.218700", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.051100", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.046100", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.921100", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.002900", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.972900", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.872900", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.243000", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.238000", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.113000", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212400", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.201800", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.197800", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141800", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.823200", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.462400", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.191700", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.187700", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131700", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.268500", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.468100", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.263500", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.463100", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.138500", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.338100", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.348200", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.363300", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343200", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.358300", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.218200", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.233300", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093400", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089700", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033400", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.750900", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.568400", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.496800", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.466800", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.366800", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071200", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042200", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011200", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.300900", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.295900", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.170900", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.642000", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218200", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.099800", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.094800", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.969800", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122400", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118400", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062400", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.435500", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.519300", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.514300", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.389300", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154500", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054500", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066200", + "Timestamp": "2024-05-16T12:33:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.062500", + "Timestamp": "2024-05-16T12:33:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006200", + "Timestamp": "2024-05-16T12:33:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.193200", + "Timestamp": "2024-05-16T12:33:17.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.763100", + "Timestamp": "2024-05-16T12:32:59.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.355600", + "Timestamp": "2024-05-16T12:32:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.860000", + "Timestamp": "2024-05-16T12:32:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.855000", + "Timestamp": "2024-05-16T12:32:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.730000", + "Timestamp": "2024-05-16T12:32:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086800", + "Timestamp": "2024-05-16T12:32:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126800", + "Timestamp": "2024-05-16T12:32:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026800", + "Timestamp": "2024-05-16T12:32:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.086800", + "Timestamp": "2024-05-16T12:32:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.352900", + "Timestamp": "2024-05-16T12:32:53.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.322900", + "Timestamp": "2024-05-16T12:32:53.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.222900", + "Timestamp": "2024-05-16T12:32:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.476900", + "Timestamp": "2024-05-16T12:32:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.471900", + "Timestamp": "2024-05-16T12:32:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.346900", + "Timestamp": "2024-05-16T12:32:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.939600", + "Timestamp": "2024-05-16T12:32:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "h1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.748600", + "Timestamp": "2024-05-16T12:32:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218500", + "Timestamp": "2024-05-16T12:32:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.947800", + "Timestamp": "2024-05-16T12:32:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.332200", + "Timestamp": "2024-05-16T12:32:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.327200", + "Timestamp": "2024-05-16T12:32:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.202200", + "Timestamp": "2024-05-16T12:32:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.081200", + "Timestamp": "2024-05-16T12:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.076200", + "Timestamp": "2024-05-16T12:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.951200", + "Timestamp": "2024-05-16T12:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.520800", + "Timestamp": "2024-05-16T12:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.551300", + "Timestamp": "2024-05-16T12:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.515800", + "Timestamp": "2024-05-16T12:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.546300", + "Timestamp": "2024-05-16T12:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.390800", + "Timestamp": "2024-05-16T12:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.421300", + "Timestamp": "2024-05-16T12:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.750600", + "Timestamp": "2024-05-16T12:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.745600", + "Timestamp": "2024-05-16T12:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.620600", + "Timestamp": "2024-05-16T12:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.469400", + "Timestamp": "2024-05-16T12:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.445600", + "Timestamp": "2024-05-16T12:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.125300", + "Timestamp": "2024-05-16T12:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.663800", + "Timestamp": "2024-05-16T12:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233700", + "Timestamp": "2024-05-16T12:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.384500", + "Timestamp": "2024-05-16T12:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.379500", + "Timestamp": "2024-05-16T12:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.254500", + "Timestamp": "2024-05-16T12:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.011700", + "Timestamp": "2024-05-16T12:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.133800", + "Timestamp": "2024-05-16T12:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.833400", + "Timestamp": "2024-05-16T12:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-16T12:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.511400", + "Timestamp": "2024-05-16T12:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.701700", + "Timestamp": "2024-05-16T12:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.696700", + "Timestamp": "2024-05-16T12:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.571700", + "Timestamp": "2024-05-16T12:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121600", + "Timestamp": "2024-05-16T12:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.021400", + "Timestamp": "2024-05-16T12:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.016400", + "Timestamp": "2024-05-16T12:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.891400", + "Timestamp": "2024-05-16T12:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.244500", + "Timestamp": "2024-05-16T12:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.239500", + "Timestamp": "2024-05-16T12:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-16T12:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.826800", + "Timestamp": "2024-05-16T12:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439100", + "Timestamp": "2024-05-16T12:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.419400", + "Timestamp": "2024-05-16T12:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.003300", + "Timestamp": "2024-05-16T12:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.998300", + "Timestamp": "2024-05-16T12:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.873300", + "Timestamp": "2024-05-16T12:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.722300", + "Timestamp": "2024-05-16T12:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.699900", + "Timestamp": "2024-05-16T12:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.717300", + "Timestamp": "2024-05-16T12:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.694900", + "Timestamp": "2024-05-16T12:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.592300", + "Timestamp": "2024-05-16T12:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.569900", + "Timestamp": "2024-05-16T12:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.237700", + "Timestamp": "2024-05-16T12:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.738600", + "Timestamp": "2024-05-16T12:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.733600", + "Timestamp": "2024-05-16T12:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.608600", + "Timestamp": "2024-05-16T12:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.381800", + "Timestamp": "2024-05-16T12:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.840900", + "Timestamp": "2024-05-16T12:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.835900", + "Timestamp": "2024-05-16T12:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.710900", + "Timestamp": "2024-05-16T12:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.925800", + "Timestamp": "2024-05-16T12:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.920800", + "Timestamp": "2024-05-16T12:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.795800", + "Timestamp": "2024-05-16T12:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.550600", + "Timestamp": "2024-05-16T12:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.545600", + "Timestamp": "2024-05-16T12:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.420600", + "Timestamp": "2024-05-16T12:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.315000", + "Timestamp": "2024-05-16T12:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.310000", + "Timestamp": "2024-05-16T12:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.185000", + "Timestamp": "2024-05-16T12:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.151600", + "Timestamp": "2024-05-16T12:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.146600", + "Timestamp": "2024-05-16T12:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.021600", + "Timestamp": "2024-05-16T12:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.168900", + "Timestamp": "2024-05-16T12:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.191300", + "Timestamp": "2024-05-16T12:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145100", + "Timestamp": "2024-05-16T12:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141400", + "Timestamp": "2024-05-16T12:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085100", + "Timestamp": "2024-05-16T12:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.142900", + "Timestamp": "2024-05-16T12:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.137900", + "Timestamp": "2024-05-16T12:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.012900", + "Timestamp": "2024-05-16T12:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.807200", + "Timestamp": "2024-05-16T12:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.802200", + "Timestamp": "2024-05-16T12:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.677200", + "Timestamp": "2024-05-16T12:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.178000", + "Timestamp": "2024-05-16T12:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174300", + "Timestamp": "2024-05-16T12:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118000", + "Timestamp": "2024-05-16T12:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.616300", + "Timestamp": "2024-05-16T12:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.611300", + "Timestamp": "2024-05-16T12:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.486300", + "Timestamp": "2024-05-16T12:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.233500", + "Timestamp": "2024-05-16T12:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.228500", + "Timestamp": "2024-05-16T12:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.103500", + "Timestamp": "2024-05-16T12:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.639500", + "Timestamp": "2024-05-16T12:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.062000", + "Timestamp": "2024-05-16T12:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070500", + "Timestamp": "2024-05-16T12:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066800", + "Timestamp": "2024-05-16T12:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010500", + "Timestamp": "2024-05-16T12:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.009500", + "Timestamp": "2024-05-16T12:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.004500", + "Timestamp": "2024-05-16T12:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.879500", + "Timestamp": "2024-05-16T12:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.369700", + "Timestamp": "2024-05-16T12:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.364700", + "Timestamp": "2024-05-16T12:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.239700", + "Timestamp": "2024-05-16T12:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.438500", + "Timestamp": "2024-05-16T12:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.293800", + "Timestamp": "2024-05-16T12:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.288800", + "Timestamp": "2024-05-16T12:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.163800", + "Timestamp": "2024-05-16T12:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.634300", + "Timestamp": "2024-05-16T12:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.629300", + "Timestamp": "2024-05-16T12:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.504300", + "Timestamp": "2024-05-16T12:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.432900", + "Timestamp": "2024-05-16T12:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.427900", + "Timestamp": "2024-05-16T12:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.302900", + "Timestamp": "2024-05-16T12:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.319100", + "Timestamp": "2024-05-16T12:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.314100", + "Timestamp": "2024-05-16T12:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.189100", + "Timestamp": "2024-05-16T12:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.028900", + "Timestamp": "2024-05-16T12:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.023900", + "Timestamp": "2024-05-16T12:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.898900", + "Timestamp": "2024-05-16T12:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.209400", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.205700", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149400", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.091900", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.086900", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.961900", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.563300", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.558300", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.433300", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.934000", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.657800", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.406200", + "Timestamp": "2024-05-16T12:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.768900", + "Timestamp": "2024-05-16T12:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.763900", + "Timestamp": "2024-05-16T12:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.638900", + "Timestamp": "2024-05-16T12:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-16T12:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096600", + "Timestamp": "2024-05-16T12:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040300", + "Timestamp": "2024-05-16T12:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T12:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.892500", + "Timestamp": "2024-05-16T12:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.887500", + "Timestamp": "2024-05-16T12:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.762500", + "Timestamp": "2024-05-16T12:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.674700", + "Timestamp": "2024-05-16T12:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.669700", + "Timestamp": "2024-05-16T12:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.544700", + "Timestamp": "2024-05-16T12:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311800", + "Timestamp": "2024-05-16T12:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.306800", + "Timestamp": "2024-05-16T12:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181800", + "Timestamp": "2024-05-16T12:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.982700", + "Timestamp": "2024-05-16T12:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.768500", + "Timestamp": "2024-05-16T12:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.763500", + "Timestamp": "2024-05-16T12:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.638500", + "Timestamp": "2024-05-16T12:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T12:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.487300", + "Timestamp": "2024-05-16T12:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.482300", + "Timestamp": "2024-05-16T12:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.357300", + "Timestamp": "2024-05-16T12:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.733100", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.728100", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.603100", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.390100", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.385100", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.260100", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.320800", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.290800", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.190800", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.293000", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.469400", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.464400", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.339400", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.199100", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.460100", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.455100", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.330100", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.233400", + "Timestamp": "2024-05-16T12:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.228400", + "Timestamp": "2024-05-16T12:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.103400", + "Timestamp": "2024-05-16T12:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.914400", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.909400", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.784400", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.822900", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171800", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.211800", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111800", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.277400", + "Timestamp": "2024-05-16T12:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.272400", + "Timestamp": "2024-05-16T12:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.147400", + "Timestamp": "2024-05-16T12:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.784000", + "Timestamp": "2024-05-16T12:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.779000", + "Timestamp": "2024-05-16T12:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.654000", + "Timestamp": "2024-05-16T12:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.190800", + "Timestamp": "2024-05-16T12:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.185800", + "Timestamp": "2024-05-16T12:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.060800", + "Timestamp": "2024-05-16T12:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.244000", + "Timestamp": "2024-05-16T12:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.239000", + "Timestamp": "2024-05-16T12:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114000", + "Timestamp": "2024-05-16T12:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.113200", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.108200", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.983200", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.751200", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.671600", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.130000", + "Timestamp": "2024-05-16T12:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.125000", + "Timestamp": "2024-05-16T12:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.000000", + "Timestamp": "2024-05-16T12:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.801100", + "Timestamp": "2024-05-16T12:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.771100", + "Timestamp": "2024-05-16T12:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.671100", + "Timestamp": "2024-05-16T12:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.571100", + "Timestamp": "2024-05-16T12:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160900", + "Timestamp": "2024-05-16T12:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157200", + "Timestamp": "2024-05-16T12:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-16T12:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.475200", + "Timestamp": "2024-05-16T12:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.470200", + "Timestamp": "2024-05-16T12:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.345200", + "Timestamp": "2024-05-16T12:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.554000", + "Timestamp": "2024-05-16T12:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.549000", + "Timestamp": "2024-05-16T12:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.424000", + "Timestamp": "2024-05-16T12:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.618800", + "Timestamp": "2024-05-16T12:32:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298100", + "Timestamp": "2024-05-16T12:32:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293100", + "Timestamp": "2024-05-16T12:32:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168100", + "Timestamp": "2024-05-16T12:32:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.668600", + "Timestamp": "2024-05-16T12:32:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.081200", + "Timestamp": "2024-05-16T12:32:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.076200", + "Timestamp": "2024-05-16T12:32:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.951200", + "Timestamp": "2024-05-16T12:32:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.078600", + "Timestamp": "2024-05-16T12:32:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.048600", + "Timestamp": "2024-05-16T12:32:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.948600", + "Timestamp": "2024-05-16T12:32:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.367400", + "Timestamp": "2024-05-16T12:32:14.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.362400", + "Timestamp": "2024-05-16T12:32:14.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.237400", + "Timestamp": "2024-05-16T12:32:14.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.387300", + "Timestamp": "2024-05-16T12:32:14.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.382300", + "Timestamp": "2024-05-16T12:32:14.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.257300", + "Timestamp": "2024-05-16T12:32:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.503300", + "Timestamp": "2024-05-16T12:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.498300", + "Timestamp": "2024-05-16T12:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.373300", + "Timestamp": "2024-05-16T12:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.991800", + "Timestamp": "2024-05-16T12:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.399900", + "Timestamp": "2024-05-16T12:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.394900", + "Timestamp": "2024-05-16T12:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.269900", + "Timestamp": "2024-05-16T12:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.165100", + "Timestamp": "2024-05-16T12:32:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.160100", + "Timestamp": "2024-05-16T12:32:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.035100", + "Timestamp": "2024-05-16T12:32:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.466900", + "Timestamp": "2024-05-16T12:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123200", + "Timestamp": "2024-05-16T12:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134700", + "Timestamp": "2024-05-16T12:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119200", + "Timestamp": "2024-05-16T12:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130700", + "Timestamp": "2024-05-16T12:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063200", + "Timestamp": "2024-05-16T12:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074700", + "Timestamp": "2024-05-16T12:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.061500", + "Timestamp": "2024-05-16T12:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.056500", + "Timestamp": "2024-05-16T12:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.931500", + "Timestamp": "2024-05-16T12:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299700", + "Timestamp": "2024-05-16T12:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.268700", + "Timestamp": "2024-05-16T12:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294700", + "Timestamp": "2024-05-16T12:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.263700", + "Timestamp": "2024-05-16T12:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169700", + "Timestamp": "2024-05-16T12:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.138700", + "Timestamp": "2024-05-16T12:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.115700", + "Timestamp": "2024-05-16T12:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.110700", + "Timestamp": "2024-05-16T12:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.985700", + "Timestamp": "2024-05-16T12:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.621600", + "Timestamp": "2024-05-16T12:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.433300", + "Timestamp": "2024-05-16T12:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.529200", + "Timestamp": "2024-05-16T12:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.524200", + "Timestamp": "2024-05-16T12:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.399200", + "Timestamp": "2024-05-16T12:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184100", + "Timestamp": "2024-05-16T12:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180400", + "Timestamp": "2024-05-16T12:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124100", + "Timestamp": "2024-05-16T12:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.671300", + "Timestamp": "2024-05-16T12:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.641300", + "Timestamp": "2024-05-16T12:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.541300", + "Timestamp": "2024-05-16T12:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.960400", + "Timestamp": "2024-05-16T12:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.955400", + "Timestamp": "2024-05-16T12:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.830400", + "Timestamp": "2024-05-16T12:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.003200", + "Timestamp": "2024-05-16T12:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.973200", + "Timestamp": "2024-05-16T12:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.873200", + "Timestamp": "2024-05-16T12:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160300", + "Timestamp": "2024-05-16T12:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142900", + "Timestamp": "2024-05-16T12:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156300", + "Timestamp": "2024-05-16T12:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138900", + "Timestamp": "2024-05-16T12:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-16T12:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082900", + "Timestamp": "2024-05-16T12:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102000", + "Timestamp": "2024-05-16T12:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098000", + "Timestamp": "2024-05-16T12:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042000", + "Timestamp": "2024-05-16T12:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.127200", + "Timestamp": "2024-05-16T12:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.122200", + "Timestamp": "2024-05-16T12:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.997200", + "Timestamp": "2024-05-16T12:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081100", + "Timestamp": "2024-05-16T12:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121100", + "Timestamp": "2024-05-16T12:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021100", + "Timestamp": "2024-05-16T12:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128400", + "Timestamp": "2024-05-16T12:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124700", + "Timestamp": "2024-05-16T12:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068400", + "Timestamp": "2024-05-16T12:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.645800", + "Timestamp": "2024-05-16T12:31:59.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.640800", + "Timestamp": "2024-05-16T12:31:59.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.515800", + "Timestamp": "2024-05-16T12:31:59.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.207000", + "Timestamp": "2024-05-16T12:31:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.347400", + "Timestamp": "2024-05-16T12:31:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.424500", + "Timestamp": "2024-05-16T12:31:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.395600", + "Timestamp": "2024-05-16T12:31:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.390600", + "Timestamp": "2024-05-16T12:31:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.265600", + "Timestamp": "2024-05-16T12:31:53.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.386100", + "Timestamp": "2024-05-16T12:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.356100", + "Timestamp": "2024-05-16T12:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.256100", + "Timestamp": "2024-05-16T12:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.338000", + "Timestamp": "2024-05-16T12:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.333000", + "Timestamp": "2024-05-16T12:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.208000", + "Timestamp": "2024-05-16T12:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.719100", + "Timestamp": "2024-05-16T12:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.714100", + "Timestamp": "2024-05-16T12:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.589100", + "Timestamp": "2024-05-16T12:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.181700", + "Timestamp": "2024-05-16T12:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.191700", + "Timestamp": "2024-05-16T12:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.176700", + "Timestamp": "2024-05-16T12:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.186700", + "Timestamp": "2024-05-16T12:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051700", + "Timestamp": "2024-05-16T12:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061700", + "Timestamp": "2024-05-16T12:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298300", + "Timestamp": "2024-05-16T12:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268300", + "Timestamp": "2024-05-16T12:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168300", + "Timestamp": "2024-05-16T12:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.476200", + "Timestamp": "2024-05-16T12:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.425700", + "Timestamp": "2024-05-16T12:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.420700", + "Timestamp": "2024-05-16T12:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.295700", + "Timestamp": "2024-05-16T12:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.203000", + "Timestamp": "2024-05-16T12:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.407000", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.402000", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.277000", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.581300", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.576300", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.451300", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.448900", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.443900", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.318900", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.436000", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.449700", + "Timestamp": "2024-05-16T12:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.419700", + "Timestamp": "2024-05-16T12:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.319700", + "Timestamp": "2024-05-16T12:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.695000", + "Timestamp": "2024-05-16T12:18:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.112900", + "Timestamp": "2024-05-16T12:18:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.730800", + "Timestamp": "2024-05-16T12:18:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.706600", + "Timestamp": "2024-05-16T12:17:59.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.713300", + "Timestamp": "2024-05-16T12:17:59.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.334000", + "Timestamp": "2024-05-16T12:17:59.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.052800", + "Timestamp": "2024-05-16T12:17:59.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.329000", + "Timestamp": "2024-05-16T12:17:59.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.047800", + "Timestamp": "2024-05-16T12:17:59.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.204000", + "Timestamp": "2024-05-16T12:17:59.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.922800", + "Timestamp": "2024-05-16T12:17:59.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.359800", + "Timestamp": "2024-05-16T12:17:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.250900", + "Timestamp": "2024-05-16T12:17:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.246900", + "Timestamp": "2024-05-16T12:17:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190900", + "Timestamp": "2024-05-16T12:17:57.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099300", + "Timestamp": "2024-05-16T12:17:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139300", + "Timestamp": "2024-05-16T12:17:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039300", + "Timestamp": "2024-05-16T12:17:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.749300", + "Timestamp": "2024-05-16T12:17:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.719300", + "Timestamp": "2024-05-16T12:17:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.619300", + "Timestamp": "2024-05-16T12:17:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.412300", + "Timestamp": "2024-05-16T12:17:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.959600", + "Timestamp": "2024-05-16T12:17:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.954600", + "Timestamp": "2024-05-16T12:17:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.829600", + "Timestamp": "2024-05-16T12:17:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.890900", + "Timestamp": "2024-05-16T12:17:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.885900", + "Timestamp": "2024-05-16T12:17:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.760900", + "Timestamp": "2024-05-16T12:17:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.559000", + "Timestamp": "2024-05-16T12:17:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225900", + "Timestamp": "2024-05-16T12:17:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.259400", + "Timestamp": "2024-05-16T12:17:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.254400", + "Timestamp": "2024-05-16T12:17:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129400", + "Timestamp": "2024-05-16T12:17:53.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.285300", + "Timestamp": "2024-05-16T12:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.862700", + "Timestamp": "2024-05-16T12:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "trn1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.421200", + "Timestamp": "2024-05-16T12:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "trn1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.391200", + "Timestamp": "2024-05-16T12:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "trn1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.291200", + "Timestamp": "2024-05-16T12:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.983800", + "Timestamp": "2024-05-16T12:17:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.978800", + "Timestamp": "2024-05-16T12:17:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.853800", + "Timestamp": "2024-05-16T12:17:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.865600", + "Timestamp": "2024-05-16T12:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.702200", + "Timestamp": "2024-05-16T12:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.697200", + "Timestamp": "2024-05-16T12:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.572200", + "Timestamp": "2024-05-16T12:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.433200", + "Timestamp": "2024-05-16T12:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.690500", + "Timestamp": "2024-05-16T12:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.685500", + "Timestamp": "2024-05-16T12:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.560500", + "Timestamp": "2024-05-16T12:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.399400", + "Timestamp": "2024-05-16T12:17:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218600", + "Timestamp": "2024-05-16T12:17:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.230400", + "Timestamp": "2024-05-16T12:17:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.635700", + "Timestamp": "2024-05-16T12:17:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.600900", + "Timestamp": "2024-05-16T12:17:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.280500", + "Timestamp": "2024-05-16T12:17:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.275500", + "Timestamp": "2024-05-16T12:17:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150500", + "Timestamp": "2024-05-16T12:17:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.386300", + "Timestamp": "2024-05-16T12:17:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.381300", + "Timestamp": "2024-05-16T12:17:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.256300", + "Timestamp": "2024-05-16T12:17:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.327100", + "Timestamp": "2024-05-16T12:17:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207100", + "Timestamp": "2024-05-16T12:17:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143300", + "Timestamp": "2024-05-16T12:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183300", + "Timestamp": "2024-05-16T12:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083300", + "Timestamp": "2024-05-16T12:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.878800", + "Timestamp": "2024-05-16T12:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.433700", + "Timestamp": "2024-05-16T12:17:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.391100", + "Timestamp": "2024-05-16T12:17:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.436800", + "Timestamp": "2024-05-16T12:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.644900", + "Timestamp": "2024-05-16T12:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.671900", + "Timestamp": "2024-05-16T12:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.353300", + "Timestamp": "2024-05-16T12:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.948400", + "Timestamp": "2024-05-16T12:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.943400", + "Timestamp": "2024-05-16T12:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.818400", + "Timestamp": "2024-05-16T12:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106000", + "Timestamp": "2024-05-16T12:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102000", + "Timestamp": "2024-05-16T12:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046000", + "Timestamp": "2024-05-16T12:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.878100", + "Timestamp": "2024-05-16T12:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.873100", + "Timestamp": "2024-05-16T12:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.748100", + "Timestamp": "2024-05-16T12:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.712000", + "Timestamp": "2024-05-16T12:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.298700", + "Timestamp": "2024-05-16T12:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.293700", + "Timestamp": "2024-05-16T12:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.168700", + "Timestamp": "2024-05-16T12:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.274900", + "Timestamp": "2024-05-16T12:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269900", + "Timestamp": "2024-05-16T12:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144900", + "Timestamp": "2024-05-16T12:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.193200", + "Timestamp": "2024-05-16T12:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190200", + "Timestamp": "2024-05-16T12:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133200", + "Timestamp": "2024-05-16T12:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.043700", + "Timestamp": "2024-05-16T12:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439500", + "Timestamp": "2024-05-16T12:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104100", + "Timestamp": "2024-05-16T12:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.458700", + "Timestamp": "2024-05-16T12:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.485900", + "Timestamp": "2024-05-16T12:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.480900", + "Timestamp": "2024-05-16T12:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.355900", + "Timestamp": "2024-05-16T12:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.118100", + "Timestamp": "2024-05-16T12:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.113100", + "Timestamp": "2024-05-16T12:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.988100", + "Timestamp": "2024-05-16T12:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.673200", + "Timestamp": "2024-05-16T12:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.668200", + "Timestamp": "2024-05-16T12:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.543200", + "Timestamp": "2024-05-16T12:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.070700", + "Timestamp": "2024-05-16T12:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.070700", + "Timestamp": "2024-05-16T12:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.070700", + "Timestamp": "2024-05-16T12:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.512600", + "Timestamp": "2024-05-16T12:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136800", + "Timestamp": "2024-05-16T12:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133100", + "Timestamp": "2024-05-16T12:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076800", + "Timestamp": "2024-05-16T12:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.774200", + "Timestamp": "2024-05-16T12:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.050500", + "Timestamp": "2024-05-16T12:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.045500", + "Timestamp": "2024-05-16T12:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.920500", + "Timestamp": "2024-05-16T12:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.242100", + "Timestamp": "2024-05-16T12:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.717100", + "Timestamp": "2024-05-16T12:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.712100", + "Timestamp": "2024-05-16T12:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.587100", + "Timestamp": "2024-05-16T12:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225400", + "Timestamp": "2024-05-16T12:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.780000", + "Timestamp": "2024-05-16T12:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.377800", + "Timestamp": "2024-05-16T12:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372800", + "Timestamp": "2024-05-16T12:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.247800", + "Timestamp": "2024-05-16T12:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219900", + "Timestamp": "2024-05-16T12:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.440600", + "Timestamp": "2024-05-16T12:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.765000", + "Timestamp": "2024-05-16T12:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.735000", + "Timestamp": "2024-05-16T12:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.635000", + "Timestamp": "2024-05-16T12:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429300", + "Timestamp": "2024-05-16T12:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.995100", + "Timestamp": "2024-05-16T12:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.990100", + "Timestamp": "2024-05-16T12:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.865100", + "Timestamp": "2024-05-16T12:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.125100", + "Timestamp": "2024-05-16T12:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.120100", + "Timestamp": "2024-05-16T12:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.995100", + "Timestamp": "2024-05-16T12:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.427600", + "Timestamp": "2024-05-16T12:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.422600", + "Timestamp": "2024-05-16T12:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.297600", + "Timestamp": "2024-05-16T12:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083900", + "Timestamp": "2024-05-16T12:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.054900", + "Timestamp": "2024-05-16T12:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023900", + "Timestamp": "2024-05-16T12:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.241400", + "Timestamp": "2024-05-16T12:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.716000", + "Timestamp": "2024-05-16T12:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.806000", + "Timestamp": "2024-05-16T12:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.801000", + "Timestamp": "2024-05-16T12:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.676000", + "Timestamp": "2024-05-16T12:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.535800", + "Timestamp": "2024-05-16T12:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.530800", + "Timestamp": "2024-05-16T12:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.405800", + "Timestamp": "2024-05-16T12:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.413100", + "Timestamp": "2024-05-16T12:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.413000", + "Timestamp": "2024-05-16T12:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.869900", + "Timestamp": "2024-05-16T12:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.864900", + "Timestamp": "2024-05-16T12:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.739900", + "Timestamp": "2024-05-16T12:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.617600", + "Timestamp": "2024-05-16T12:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.174100", + "Timestamp": "2024-05-16T12:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.144100", + "Timestamp": "2024-05-16T12:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.044100", + "Timestamp": "2024-05-16T12:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.601800", + "Timestamp": "2024-05-16T12:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.596800", + "Timestamp": "2024-05-16T12:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.471800", + "Timestamp": "2024-05-16T12:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416800", + "Timestamp": "2024-05-16T12:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.502400", + "Timestamp": "2024-05-16T12:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.497400", + "Timestamp": "2024-05-16T12:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.372400", + "Timestamp": "2024-05-16T12:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "trn1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.073900", + "Timestamp": "2024-05-16T12:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "trn1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.043900", + "Timestamp": "2024-05-16T12:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "trn1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.943900", + "Timestamp": "2024-05-16T12:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.436100", + "Timestamp": "2024-05-16T12:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.059000", + "Timestamp": "2024-05-16T12:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.694000", + "Timestamp": "2024-05-16T12:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.689000", + "Timestamp": "2024-05-16T12:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.564000", + "Timestamp": "2024-05-16T12:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.859700", + "Timestamp": "2024-05-16T12:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.854700", + "Timestamp": "2024-05-16T12:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.729700", + "Timestamp": "2024-05-16T12:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.332400", + "Timestamp": "2024-05-16T12:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.302400", + "Timestamp": "2024-05-16T12:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.202400", + "Timestamp": "2024-05-16T12:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.801500", + "Timestamp": "2024-05-16T12:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.796500", + "Timestamp": "2024-05-16T12:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.671500", + "Timestamp": "2024-05-16T12:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.405500", + "Timestamp": "2024-05-16T12:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.400500", + "Timestamp": "2024-05-16T12:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.275500", + "Timestamp": "2024-05-16T12:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.449600", + "Timestamp": "2024-05-16T12:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.417000", + "Timestamp": "2024-05-16T12:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.412000", + "Timestamp": "2024-05-16T12:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.287000", + "Timestamp": "2024-05-16T12:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.179400", + "Timestamp": "2024-05-16T12:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.219400", + "Timestamp": "2024-05-16T12:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119400", + "Timestamp": "2024-05-16T12:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.617700", + "Timestamp": "2024-05-16T12:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.587700", + "Timestamp": "2024-05-16T12:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.487700", + "Timestamp": "2024-05-16T12:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.753000", + "Timestamp": "2024-05-16T12:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.245000", + "Timestamp": "2024-05-16T12:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.240000", + "Timestamp": "2024-05-16T12:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.115000", + "Timestamp": "2024-05-16T12:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214600", + "Timestamp": "2024-05-16T12:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215800", + "Timestamp": "2024-05-16T12:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.421000", + "Timestamp": "2024-05-16T12:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.416000", + "Timestamp": "2024-05-16T12:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.291000", + "Timestamp": "2024-05-16T12:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.852500", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.847500", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.722500", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.968000", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.963000", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.838000", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.361800", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.356800", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.231800", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.411900", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.406900", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.281900", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.164100", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.159100", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.034100", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.816100", + "Timestamp": "2024-05-16T12:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.950700", + "Timestamp": "2024-05-16T12:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.945700", + "Timestamp": "2024-05-16T12:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.820700", + "Timestamp": "2024-05-16T12:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.399200", + "Timestamp": "2024-05-16T12:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.394200", + "Timestamp": "2024-05-16T12:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.269200", + "Timestamp": "2024-05-16T12:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130900", + "Timestamp": "2024-05-16T12:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127200", + "Timestamp": "2024-05-16T12:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070900", + "Timestamp": "2024-05-16T12:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209400", + "Timestamp": "2024-05-16T12:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143900", + "Timestamp": "2024-05-16T12:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140200", + "Timestamp": "2024-05-16T12:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083900", + "Timestamp": "2024-05-16T12:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.491600", + "Timestamp": "2024-05-16T12:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.486600", + "Timestamp": "2024-05-16T12:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.361600", + "Timestamp": "2024-05-16T12:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.946200", + "Timestamp": "2024-05-16T12:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.916200", + "Timestamp": "2024-05-16T12:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.816200", + "Timestamp": "2024-05-16T12:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.947300", + "Timestamp": "2024-05-16T12:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.331300", + "Timestamp": "2024-05-16T12:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.869900", + "Timestamp": "2024-05-16T12:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.875300", + "Timestamp": "2024-05-16T12:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.355200", + "Timestamp": "2024-05-16T12:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.350200", + "Timestamp": "2024-05-16T12:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.225200", + "Timestamp": "2024-05-16T12:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.450500", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.430100", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.495300", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.285200", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.481700", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.476700", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.351700", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.065700", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.060700", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.935700", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.220700", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.190700", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.090700", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115300", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111300", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055300", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.406100", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.401100", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.276100", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.179400", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.174400", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.049400", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.662200", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.657200", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.532200", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.562100", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.557100", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.432100", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.335500", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.652900", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.647900", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.522900", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.535600", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.594000", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.530600", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.589000", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.405600", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.464000", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.666700", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.636700", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.536700", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119300", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115600", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059300", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299600", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294600", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169600", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.879100", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.874100", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.749100", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166200", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162500", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106200", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.913900", + "Timestamp": "2024-05-16T12:17:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.207500", + "Timestamp": "2024-05-16T12:17:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.203800", + "Timestamp": "2024-05-16T12:17:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147500", + "Timestamp": "2024-05-16T12:17:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.687100", + "Timestamp": "2024-05-16T12:17:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.328500", + "Timestamp": "2024-05-16T12:17:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.323500", + "Timestamp": "2024-05-16T12:17:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.198500", + "Timestamp": "2024-05-16T12:17:19.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.284100", + "Timestamp": "2024-05-16T12:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.279100", + "Timestamp": "2024-05-16T12:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.154100", + "Timestamp": "2024-05-16T12:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.040000", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.035000", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.910000", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.660700", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.655700", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.530700", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.140400", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.934500", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.929500", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.804500", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.888700", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128900", + "Timestamp": "2024-05-16T12:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124900", + "Timestamp": "2024-05-16T12:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068900", + "Timestamp": "2024-05-16T12:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.754700", + "Timestamp": "2024-05-16T12:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "trn1n.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.931000", + "Timestamp": "2024-05-16T12:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "trn1n.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.901000", + "Timestamp": "2024-05-16T12:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "trn1n.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.801000", + "Timestamp": "2024-05-16T12:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092200", + "Timestamp": "2024-05-16T12:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088500", + "Timestamp": "2024-05-16T12:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032200", + "Timestamp": "2024-05-16T12:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.803000", + "Timestamp": "2024-05-16T12:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.149100", + "Timestamp": "2024-05-16T12:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.798000", + "Timestamp": "2024-05-16T12:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.144100", + "Timestamp": "2024-05-16T12:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.673000", + "Timestamp": "2024-05-16T12:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.019100", + "Timestamp": "2024-05-16T12:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.159700", + "Timestamp": "2024-05-16T12:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.129700", + "Timestamp": "2024-05-16T12:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.029700", + "Timestamp": "2024-05-16T12:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.783000", + "Timestamp": "2024-05-16T12:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.778000", + "Timestamp": "2024-05-16T12:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.653000", + "Timestamp": "2024-05-16T12:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.935400", + "Timestamp": "2024-05-16T12:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.930400", + "Timestamp": "2024-05-16T12:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.805400", + "Timestamp": "2024-05-16T12:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.573600", + "Timestamp": "2024-05-16T12:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.543600", + "Timestamp": "2024-05-16T12:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.443600", + "Timestamp": "2024-05-16T12:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.180500", + "Timestamp": "2024-05-16T12:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.182600", + "Timestamp": "2024-05-16T12:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160100", + "Timestamp": "2024-05-16T12:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156100", + "Timestamp": "2024-05-16T12:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100100", + "Timestamp": "2024-05-16T12:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217800", + "Timestamp": "2024-05-16T12:17:08.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.395200", + "Timestamp": "2024-05-16T12:17:08.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.636900", + "Timestamp": "2024-05-16T12:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.631900", + "Timestamp": "2024-05-16T12:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.506900", + "Timestamp": "2024-05-16T12:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.286300", + "Timestamp": "2024-05-16T12:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281300", + "Timestamp": "2024-05-16T12:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156300", + "Timestamp": "2024-05-16T12:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.727800", + "Timestamp": "2024-05-16T12:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137000", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133000", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077000", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.791000", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.786000", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.661000", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.196800", + "Timestamp": "2024-05-16T12:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.573300", + "Timestamp": "2024-05-16T12:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075800", + "Timestamp": "2024-05-16T12:17:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115800", + "Timestamp": "2024-05-16T12:17:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015800", + "Timestamp": "2024-05-16T12:17:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.053300", + "Timestamp": "2024-05-16T12:17:00.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116700", + "Timestamp": "2024-05-16T12:16:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112700", + "Timestamp": "2024-05-16T12:16:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056700", + "Timestamp": "2024-05-16T12:16:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-16T12:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088600", + "Timestamp": "2024-05-16T12:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032600", + "Timestamp": "2024-05-16T12:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.110000", + "Timestamp": "2024-05-16T12:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.080000", + "Timestamp": "2024-05-16T12:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.980000", + "Timestamp": "2024-05-16T12:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.466600", + "Timestamp": "2024-05-16T12:16:55.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.461600", + "Timestamp": "2024-05-16T12:16:55.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.336600", + "Timestamp": "2024-05-16T12:16:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143600", + "Timestamp": "2024-05-16T12:16:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183600", + "Timestamp": "2024-05-16T12:16:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083600", + "Timestamp": "2024-05-16T12:16:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.397200", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.392200", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.267200", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.205300", + "Timestamp": "2024-05-16T12:03:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115100", + "Timestamp": "2024-05-16T12:03:14.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111100", + "Timestamp": "2024-05-16T12:03:14.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055100", + "Timestamp": "2024-05-16T12:03:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113500", + "Timestamp": "2024-05-16T12:03:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T12:03:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053500", + "Timestamp": "2024-05-16T12:03:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.673600", + "Timestamp": "2024-05-16T12:03:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.082200", + "Timestamp": "2024-05-16T12:02:58.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.818100", + "Timestamp": "2024-05-16T12:02:58.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.813100", + "Timestamp": "2024-05-16T12:02:58.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.688100", + "Timestamp": "2024-05-16T12:02:58.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.241300", + "Timestamp": "2024-05-16T12:02:58.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.211300", + "Timestamp": "2024-05-16T12:02:58.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.111300", + "Timestamp": "2024-05-16T12:02:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.457900", + "Timestamp": "2024-05-16T12:02:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.737100", + "Timestamp": "2024-05-16T12:02:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.657700", + "Timestamp": "2024-05-16T12:02:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.627700", + "Timestamp": "2024-05-16T12:02:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.527700", + "Timestamp": "2024-05-16T12:02:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.194100", + "Timestamp": "2024-05-16T12:02:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095600", + "Timestamp": "2024-05-16T12:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091900", + "Timestamp": "2024-05-16T12:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035600", + "Timestamp": "2024-05-16T12:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.113600", + "Timestamp": "2024-05-16T12:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.108600", + "Timestamp": "2024-05-16T12:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.983600", + "Timestamp": "2024-05-16T12:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.730600", + "Timestamp": "2024-05-16T12:02:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.710100", + "Timestamp": "2024-05-16T12:02:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.705100", + "Timestamp": "2024-05-16T12:02:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.580100", + "Timestamp": "2024-05-16T12:02:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.850200", + "Timestamp": "2024-05-16T12:02:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.095700", + "Timestamp": "2024-05-16T12:02:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.950000", + "Timestamp": "2024-05-16T12:02:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.817600", + "Timestamp": "2024-05-16T12:02:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.520700", + "Timestamp": "2024-05-16T12:02:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.855000", + "Timestamp": "2024-05-16T12:02:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.552300", + "Timestamp": "2024-05-16T12:02:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.428200", + "Timestamp": "2024-05-16T12:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.423200", + "Timestamp": "2024-05-16T12:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.298200", + "Timestamp": "2024-05-16T12:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.285700", + "Timestamp": "2024-05-16T12:02:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.422100", + "Timestamp": "2024-05-16T12:02:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.417100", + "Timestamp": "2024-05-16T12:02:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.292100", + "Timestamp": "2024-05-16T12:02:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.681800", + "Timestamp": "2024-05-16T12:02:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.205400", + "Timestamp": "2024-05-16T12:02:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.175400", + "Timestamp": "2024-05-16T12:02:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.075400", + "Timestamp": "2024-05-16T12:02:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.531100", + "Timestamp": "2024-05-16T12:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.527400", + "Timestamp": "2024-05-16T12:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.471100", + "Timestamp": "2024-05-16T12:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.510100", + "Timestamp": "2024-05-16T12:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.538400", + "Timestamp": "2024-05-16T12:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.691600", + "Timestamp": "2024-05-16T12:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.686600", + "Timestamp": "2024-05-16T12:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.561600", + "Timestamp": "2024-05-16T12:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.799800", + "Timestamp": "2024-05-16T12:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.794800", + "Timestamp": "2024-05-16T12:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.669800", + "Timestamp": "2024-05-16T12:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.610300", + "Timestamp": "2024-05-16T12:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.605300", + "Timestamp": "2024-05-16T12:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.480300", + "Timestamp": "2024-05-16T12:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.638300", + "Timestamp": "2024-05-16T12:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.510200", + "Timestamp": "2024-05-16T12:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.004400", + "Timestamp": "2024-05-16T12:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.555500", + "Timestamp": "2024-05-16T12:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.550500", + "Timestamp": "2024-05-16T12:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.425500", + "Timestamp": "2024-05-16T12:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.702300", + "Timestamp": "2024-05-16T12:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.882900", + "Timestamp": "2024-05-16T12:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.237600", + "Timestamp": "2024-05-16T12:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.115700", + "Timestamp": "2024-05-16T12:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.627500", + "Timestamp": "2024-05-16T12:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.622500", + "Timestamp": "2024-05-16T12:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.497500", + "Timestamp": "2024-05-16T12:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.909400", + "Timestamp": "2024-05-16T12:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172300", + "Timestamp": "2024-05-16T12:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168300", + "Timestamp": "2024-05-16T12:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112300", + "Timestamp": "2024-05-16T12:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.777400", + "Timestamp": "2024-05-16T12:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.446600", + "Timestamp": "2024-05-16T12:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.947100", + "Timestamp": "2024-05-16T12:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.917100", + "Timestamp": "2024-05-16T12:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.817100", + "Timestamp": "2024-05-16T12:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126600", + "Timestamp": "2024-05-16T12:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122900", + "Timestamp": "2024-05-16T12:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066600", + "Timestamp": "2024-05-16T12:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.823300", + "Timestamp": "2024-05-16T12:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "8.025500", + "Timestamp": "2024-05-16T12:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.995500", + "Timestamp": "2024-05-16T12:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.895500", + "Timestamp": "2024-05-16T12:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.521900", + "Timestamp": "2024-05-16T12:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.491900", + "Timestamp": "2024-05-16T12:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.391900", + "Timestamp": "2024-05-16T12:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.367100", + "Timestamp": "2024-05-16T12:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.362100", + "Timestamp": "2024-05-16T12:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.237100", + "Timestamp": "2024-05-16T12:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.042100", + "Timestamp": "2024-05-16T12:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.299500", + "Timestamp": "2024-05-16T12:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.012100", + "Timestamp": "2024-05-16T12:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.269500", + "Timestamp": "2024-05-16T12:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.912100", + "Timestamp": "2024-05-16T12:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.169500", + "Timestamp": "2024-05-16T12:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.850800", + "Timestamp": "2024-05-16T12:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.230400", + "Timestamp": "2024-05-16T12:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.225400", + "Timestamp": "2024-05-16T12:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.100400", + "Timestamp": "2024-05-16T12:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.037600", + "Timestamp": "2024-05-16T12:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.032600", + "Timestamp": "2024-05-16T12:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.907600", + "Timestamp": "2024-05-16T12:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.572600", + "Timestamp": "2024-05-16T12:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.619100", + "Timestamp": "2024-05-16T12:02:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.335600", + "Timestamp": "2024-05-16T12:02:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.305600", + "Timestamp": "2024-05-16T12:02:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.205600", + "Timestamp": "2024-05-16T12:02:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.463000", + "Timestamp": "2024-05-16T12:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.458000", + "Timestamp": "2024-05-16T12:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.333000", + "Timestamp": "2024-05-16T12:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.433300", + "Timestamp": "2024-05-16T12:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.404600", + "Timestamp": "2024-05-16T12:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.399600", + "Timestamp": "2024-05-16T12:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.274600", + "Timestamp": "2024-05-16T12:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.341000", + "Timestamp": "2024-05-16T12:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.549200", + "Timestamp": "2024-05-16T12:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.336000", + "Timestamp": "2024-05-16T12:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.544200", + "Timestamp": "2024-05-16T12:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.211000", + "Timestamp": "2024-05-16T12:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.419200", + "Timestamp": "2024-05-16T12:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090200", + "Timestamp": "2024-05-16T12:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086500", + "Timestamp": "2024-05-16T12:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030200", + "Timestamp": "2024-05-16T12:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.298000", + "Timestamp": "2024-05-16T12:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.932800", + "Timestamp": "2024-05-16T12:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.927800", + "Timestamp": "2024-05-16T12:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.802800", + "Timestamp": "2024-05-16T12:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171000", + "Timestamp": "2024-05-16T12:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.211000", + "Timestamp": "2024-05-16T12:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T12:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.263600", + "Timestamp": "2024-05-16T12:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.390200", + "Timestamp": "2024-05-16T12:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.385200", + "Timestamp": "2024-05-16T12:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.260200", + "Timestamp": "2024-05-16T12:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.955200", + "Timestamp": "2024-05-16T12:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.950200", + "Timestamp": "2024-05-16T12:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.825200", + "Timestamp": "2024-05-16T12:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.438100", + "Timestamp": "2024-05-16T12:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.596900", + "Timestamp": "2024-05-16T12:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216900", + "Timestamp": "2024-05-16T12:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.778700", + "Timestamp": "2024-05-16T12:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.396400", + "Timestamp": "2024-05-16T12:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.391400", + "Timestamp": "2024-05-16T12:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.266400", + "Timestamp": "2024-05-16T12:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.843800", + "Timestamp": "2024-05-16T12:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.813800", + "Timestamp": "2024-05-16T12:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.713800", + "Timestamp": "2024-05-16T12:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.916300", + "Timestamp": "2024-05-16T12:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.939500", + "Timestamp": "2024-05-16T12:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.909500", + "Timestamp": "2024-05-16T12:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.809500", + "Timestamp": "2024-05-16T12:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.739800", + "Timestamp": "2024-05-16T12:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.734800", + "Timestamp": "2024-05-16T12:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.609800", + "Timestamp": "2024-05-16T12:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157200", + "Timestamp": "2024-05-16T12:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153500", + "Timestamp": "2024-05-16T12:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-16T12:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.515600", + "Timestamp": "2024-05-16T12:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.073000", + "Timestamp": "2024-05-16T12:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.411900", + "Timestamp": "2024-05-16T12:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.406900", + "Timestamp": "2024-05-16T12:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.281900", + "Timestamp": "2024-05-16T12:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.827000", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.822000", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.697000", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261000", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.256000", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131000", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.390600", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.385800", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089200", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085500", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029200", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.984800", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.979800", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.854800", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.718700", + "Timestamp": "2024-05-16T12:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.713700", + "Timestamp": "2024-05-16T12:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.588700", + "Timestamp": "2024-05-16T12:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.865600", + "Timestamp": "2024-05-16T12:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.176300", + "Timestamp": "2024-05-16T12:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.146300", + "Timestamp": "2024-05-16T12:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.046300", + "Timestamp": "2024-05-16T12:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.564900", + "Timestamp": "2024-05-16T12:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.559900", + "Timestamp": "2024-05-16T12:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.434900", + "Timestamp": "2024-05-16T12:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "dl2q.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.307200", + "Timestamp": "2024-05-16T12:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "dl2q.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.302200", + "Timestamp": "2024-05-16T12:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "dl2q.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.177200", + "Timestamp": "2024-05-16T12:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.303800", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.355500", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.350500", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.225500", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.742400", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.737400", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.612400", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.995200", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.990200", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.865200", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.218500", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.214800", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158500", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.448200", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.443200", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.318200", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.893200", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.888200", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.763200", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.787000", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.782000", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.657000", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.627600", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.452200", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.639600", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.634600", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.509600", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.676600", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.671600", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.546600", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.908000", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.336100", + "Timestamp": "2024-05-16T12:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.168900", + "Timestamp": "2024-05-16T12:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.163900", + "Timestamp": "2024-05-16T12:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.038900", + "Timestamp": "2024-05-16T12:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.473100", + "Timestamp": "2024-05-16T12:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.293800", + "Timestamp": "2024-05-16T12:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.468100", + "Timestamp": "2024-05-16T12:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.288800", + "Timestamp": "2024-05-16T12:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.343100", + "Timestamp": "2024-05-16T12:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.163800", + "Timestamp": "2024-05-16T12:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.426600", + "Timestamp": "2024-05-16T12:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.454600", + "Timestamp": "2024-05-16T12:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.383000", + "Timestamp": "2024-05-16T12:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.400200", + "Timestamp": "2024-05-16T12:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.353000", + "Timestamp": "2024-05-16T12:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.370200", + "Timestamp": "2024-05-16T12:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.253000", + "Timestamp": "2024-05-16T12:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.270200", + "Timestamp": "2024-05-16T12:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.711000", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "f1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.869900", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "f1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.839900", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "f1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.739900", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.328200", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.428100", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.423100", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.298100", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.317400", + "Timestamp": "2024-05-16T12:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.312400", + "Timestamp": "2024-05-16T12:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.187400", + "Timestamp": "2024-05-16T12:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.933400", + "Timestamp": "2024-05-16T12:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.377000", + "Timestamp": "2024-05-16T12:02:16.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.372000", + "Timestamp": "2024-05-16T12:02:16.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.247000", + "Timestamp": "2024-05-16T12:02:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.403600", + "Timestamp": "2024-05-16T12:02:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.398600", + "Timestamp": "2024-05-16T12:02:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.273600", + "Timestamp": "2024-05-16T12:02:15.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.217800", + "Timestamp": "2024-05-16T12:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.213800", + "Timestamp": "2024-05-16T12:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157800", + "Timestamp": "2024-05-16T12:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.715300", + "Timestamp": "2024-05-16T12:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.710300", + "Timestamp": "2024-05-16T12:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.585300", + "Timestamp": "2024-05-16T12:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126800", + "Timestamp": "2024-05-16T12:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123100", + "Timestamp": "2024-05-16T12:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066800", + "Timestamp": "2024-05-16T12:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "32.668000", + "Timestamp": "2024-05-16T12:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "32.663000", + "Timestamp": "2024-05-16T12:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "32.538000", + "Timestamp": "2024-05-16T12:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-16T12:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T12:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054500", + "Timestamp": "2024-05-16T12:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.858800", + "Timestamp": "2024-05-16T12:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.828800", + "Timestamp": "2024-05-16T12:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.728800", + "Timestamp": "2024-05-16T12:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.394600", + "Timestamp": "2024-05-16T12:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.389600", + "Timestamp": "2024-05-16T12:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.264600", + "Timestamp": "2024-05-16T12:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.551400", + "Timestamp": "2024-05-16T12:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.521400", + "Timestamp": "2024-05-16T12:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.421400", + "Timestamp": "2024-05-16T12:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T12:02:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170000", + "Timestamp": "2024-05-16T12:02:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.210000", + "Timestamp": "2024-05-16T12:02:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T12:02:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.699400", + "Timestamp": "2024-05-16T12:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.694400", + "Timestamp": "2024-05-16T12:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.569400", + "Timestamp": "2024-05-16T12:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.879900", + "Timestamp": "2024-05-16T12:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.281700", + "Timestamp": "2024-05-16T12:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.312200", + "Timestamp": "2024-05-16T12:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.307200", + "Timestamp": "2024-05-16T12:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.182200", + "Timestamp": "2024-05-16T12:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118800", + "Timestamp": "2024-05-16T12:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115100", + "Timestamp": "2024-05-16T12:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058800", + "Timestamp": "2024-05-16T12:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.209400", + "Timestamp": "2024-05-16T12:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.205700", + "Timestamp": "2024-05-16T12:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149400", + "Timestamp": "2024-05-16T12:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.258100", + "Timestamp": "2024-05-16T12:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.253100", + "Timestamp": "2024-05-16T12:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.128100", + "Timestamp": "2024-05-16T12:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.995500", + "Timestamp": "2024-05-16T12:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.990500", + "Timestamp": "2024-05-16T12:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.865500", + "Timestamp": "2024-05-16T12:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301400", + "Timestamp": "2024-05-16T12:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.271400", + "Timestamp": "2024-05-16T12:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171400", + "Timestamp": "2024-05-16T12:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099800", + "Timestamp": "2024-05-16T12:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096100", + "Timestamp": "2024-05-16T12:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039800", + "Timestamp": "2024-05-16T12:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.305600", + "Timestamp": "2024-05-16T12:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.481700", + "Timestamp": "2024-05-16T12:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.476700", + "Timestamp": "2024-05-16T12:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.351700", + "Timestamp": "2024-05-16T12:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.880000", + "Timestamp": "2024-05-16T12:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.779900", + "Timestamp": "2024-05-16T12:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p2.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.749900", + "Timestamp": "2024-05-16T12:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.649900", + "Timestamp": "2024-05-16T12:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.828800", + "Timestamp": "2024-05-16T12:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.287600", + "Timestamp": "2024-05-16T12:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.257600", + "Timestamp": "2024-05-16T12:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157600", + "Timestamp": "2024-05-16T12:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.811300", + "Timestamp": "2024-05-16T12:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093900", + "Timestamp": "2024-05-16T12:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089900", + "Timestamp": "2024-05-16T12:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033900", + "Timestamp": "2024-05-16T12:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.570000", + "Timestamp": "2024-05-16T12:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.565000", + "Timestamp": "2024-05-16T12:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.440000", + "Timestamp": "2024-05-16T12:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.513800", + "Timestamp": "2024-05-16T12:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122900", + "Timestamp": "2024-05-16T12:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119200", + "Timestamp": "2024-05-16T12:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062900", + "Timestamp": "2024-05-16T12:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.451200", + "Timestamp": "2024-05-16T12:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.421200", + "Timestamp": "2024-05-16T12:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.321200", + "Timestamp": "2024-05-16T12:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.846700", + "Timestamp": "2024-05-16T12:01:59.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.371800", + "Timestamp": "2024-05-16T12:01:59.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091400", + "Timestamp": "2024-05-16T12:01:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-16T12:01:58.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087700", + "Timestamp": "2024-05-16T12:01:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093800", + "Timestamp": "2024-05-16T12:01:58.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031400", + "Timestamp": "2024-05-16T12:01:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037500", + "Timestamp": "2024-05-16T12:01:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.627700", + "Timestamp": "2024-05-16T12:01:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.622700", + "Timestamp": "2024-05-16T12:01:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.497700", + "Timestamp": "2024-05-16T12:01:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.600500", + "Timestamp": "2024-05-16T12:01:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096300", + "Timestamp": "2024-05-16T12:01:57.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-16T12:01:57.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036300", + "Timestamp": "2024-05-16T12:01:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.608500", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.603500", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.478500", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101300", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123100", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105500", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097300", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119100", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049500", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041300", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063100", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.026400", + "Timestamp": "2024-05-16T12:01:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301000", + "Timestamp": "2024-05-16T12:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298100", + "Timestamp": "2024-05-16T12:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296000", + "Timestamp": "2024-05-16T12:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293100", + "Timestamp": "2024-05-16T12:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171000", + "Timestamp": "2024-05-16T12:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168100", + "Timestamp": "2024-05-16T12:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.857400", + "Timestamp": "2024-05-16T12:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.852800", + "Timestamp": "2024-05-16T12:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.847800", + "Timestamp": "2024-05-16T12:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.722800", + "Timestamp": "2024-05-16T12:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.908700", + "Timestamp": "2024-05-16T12:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.903700", + "Timestamp": "2024-05-16T12:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.778700", + "Timestamp": "2024-05-16T12:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.507900", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.863300", + "Timestamp": "2024-05-16T12:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.561200", + "Timestamp": "2024-05-16T12:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.556200", + "Timestamp": "2024-05-16T12:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.431200", + "Timestamp": "2024-05-16T12:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.627800", + "Timestamp": "2024-05-16T12:00:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.773700", + "Timestamp": "2024-05-16T12:00:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.670100", + "Timestamp": "2024-05-16T12:00:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.686200", + "Timestamp": "2024-05-16T12:00:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.622800", + "Timestamp": "2024-05-16T12:00:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.768700", + "Timestamp": "2024-05-16T12:00:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.665100", + "Timestamp": "2024-05-16T12:00:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.681200", + "Timestamp": "2024-05-16T12:00:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.497800", + "Timestamp": "2024-05-16T12:00:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.643700", + "Timestamp": "2024-05-16T12:00:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.540100", + "Timestamp": "2024-05-16T12:00:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.556200", + "Timestamp": "2024-05-16T12:00:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.460800", + "Timestamp": "2024-05-16T11:59:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.460800", + "Timestamp": "2024-05-16T11:59:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.460800", + "Timestamp": "2024-05-16T11:59:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.729000", + "Timestamp": "2024-05-16T11:47:59.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.724000", + "Timestamp": "2024-05-16T11:47:59.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.599000", + "Timestamp": "2024-05-16T11:47:59.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138000", + "Timestamp": "2024-05-16T11:47:59.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T11:47:59.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078000", + "Timestamp": "2024-05-16T11:47:59.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.372100", + "Timestamp": "2024-05-16T11:47:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T11:47:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.458500", + "Timestamp": "2024-05-16T11:47:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.934500", + "Timestamp": "2024-05-16T11:47:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.929500", + "Timestamp": "2024-05-16T11:47:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.804500", + "Timestamp": "2024-05-16T11:47:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.267000", + "Timestamp": "2024-05-16T11:47:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.263000", + "Timestamp": "2024-05-16T11:47:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.207000", + "Timestamp": "2024-05-16T11:47:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.554600", + "Timestamp": "2024-05-16T11:47:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.549600", + "Timestamp": "2024-05-16T11:47:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.424600", + "Timestamp": "2024-05-16T11:47:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.097800", + "Timestamp": "2024-05-16T11:47:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.522700", + "Timestamp": "2024-05-16T11:47:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.492700", + "Timestamp": "2024-05-16T11:47:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.392700", + "Timestamp": "2024-05-16T11:47:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.481700", + "Timestamp": "2024-05-16T11:47:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.476700", + "Timestamp": "2024-05-16T11:47:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.351700", + "Timestamp": "2024-05-16T11:47:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167100", + "Timestamp": "2024-05-16T11:47:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163100", + "Timestamp": "2024-05-16T11:47:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T11:47:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223900", + "Timestamp": "2024-05-16T11:47:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.894800", + "Timestamp": "2024-05-16T11:47:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.141300", + "Timestamp": "2024-05-16T11:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.111300", + "Timestamp": "2024-05-16T11:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.011300", + "Timestamp": "2024-05-16T11:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "h1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.855000", + "Timestamp": "2024-05-16T11:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "h1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.825000", + "Timestamp": "2024-05-16T11:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "h1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.725000", + "Timestamp": "2024-05-16T11:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.576600", + "Timestamp": "2024-05-16T11:47:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.598500", + "Timestamp": "2024-05-16T11:47:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.918900", + "Timestamp": "2024-05-16T11:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.913900", + "Timestamp": "2024-05-16T11:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.788900", + "Timestamp": "2024-05-16T11:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.662000", + "Timestamp": "2024-05-16T11:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.576200", + "Timestamp": "2024-05-16T11:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.375400", + "Timestamp": "2024-05-16T11:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.370400", + "Timestamp": "2024-05-16T11:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.245400", + "Timestamp": "2024-05-16T11:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.223100", + "Timestamp": "2024-05-16T11:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.219100", + "Timestamp": "2024-05-16T11:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.163100", + "Timestamp": "2024-05-16T11:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.313300", + "Timestamp": "2024-05-16T11:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.308300", + "Timestamp": "2024-05-16T11:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.183300", + "Timestamp": "2024-05-16T11:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.657400", + "Timestamp": "2024-05-16T11:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.391300", + "Timestamp": "2024-05-16T11:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.386300", + "Timestamp": "2024-05-16T11:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.261300", + "Timestamp": "2024-05-16T11:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107800", + "Timestamp": "2024-05-16T11:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.406100", + "Timestamp": "2024-05-16T11:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.849100", + "Timestamp": "2024-05-16T11:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.464800", + "Timestamp": "2024-05-16T11:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.536100", + "Timestamp": "2024-05-16T11:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.298800", + "Timestamp": "2024-05-16T11:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.293800", + "Timestamp": "2024-05-16T11:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.168800", + "Timestamp": "2024-05-16T11:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.201600", + "Timestamp": "2024-05-16T11:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.626600", + "Timestamp": "2024-05-16T11:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.033300", + "Timestamp": "2024-05-16T11:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.028300", + "Timestamp": "2024-05-16T11:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.903300", + "Timestamp": "2024-05-16T11:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.345300", + "Timestamp": "2024-05-16T11:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.993400", + "Timestamp": "2024-05-16T11:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.165900", + "Timestamp": "2024-05-16T11:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.517600", + "Timestamp": "2024-05-16T11:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.512600", + "Timestamp": "2024-05-16T11:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.387600", + "Timestamp": "2024-05-16T11:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.533600", + "Timestamp": "2024-05-16T11:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.528600", + "Timestamp": "2024-05-16T11:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.403600", + "Timestamp": "2024-05-16T11:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.767100", + "Timestamp": "2024-05-16T11:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.762100", + "Timestamp": "2024-05-16T11:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.637100", + "Timestamp": "2024-05-16T11:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113400", + "Timestamp": "2024-05-16T11:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T11:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053400", + "Timestamp": "2024-05-16T11:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.892600", + "Timestamp": "2024-05-16T11:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.584300", + "Timestamp": "2024-05-16T11:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Windows", + "SpotPrice": "3.590400", + "Timestamp": "2024-05-16T11:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.794700", + "Timestamp": "2024-05-16T11:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.789700", + "Timestamp": "2024-05-16T11:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.664700", + "Timestamp": "2024-05-16T11:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.969100", + "Timestamp": "2024-05-16T11:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.964100", + "Timestamp": "2024-05-16T11:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.839100", + "Timestamp": "2024-05-16T11:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.553700", + "Timestamp": "2024-05-16T11:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.548700", + "Timestamp": "2024-05-16T11:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.423700", + "Timestamp": "2024-05-16T11:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.825800", + "Timestamp": "2024-05-16T11:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.940600", + "Timestamp": "2024-05-16T11:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.951600", + "Timestamp": "2024-05-16T11:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.935600", + "Timestamp": "2024-05-16T11:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.946600", + "Timestamp": "2024-05-16T11:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.810600", + "Timestamp": "2024-05-16T11:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.821600", + "Timestamp": "2024-05-16T11:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.483200", + "Timestamp": "2024-05-16T11:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.478200", + "Timestamp": "2024-05-16T11:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.353200", + "Timestamp": "2024-05-16T11:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211700", + "Timestamp": "2024-05-16T11:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.981900", + "Timestamp": "2024-05-16T11:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.065000", + "Timestamp": "2024-05-16T11:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.951900", + "Timestamp": "2024-05-16T11:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.035000", + "Timestamp": "2024-05-16T11:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.851900", + "Timestamp": "2024-05-16T11:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.935000", + "Timestamp": "2024-05-16T11:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.713400", + "Timestamp": "2024-05-16T11:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.484600", + "Timestamp": "2024-05-16T11:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.454600", + "Timestamp": "2024-05-16T11:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.354600", + "Timestamp": "2024-05-16T11:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.479700", + "Timestamp": "2024-05-16T11:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.474700", + "Timestamp": "2024-05-16T11:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.349700", + "Timestamp": "2024-05-16T11:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.714100", + "Timestamp": "2024-05-16T11:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.709100", + "Timestamp": "2024-05-16T11:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.584100", + "Timestamp": "2024-05-16T11:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.402700", + "Timestamp": "2024-05-16T11:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.397700", + "Timestamp": "2024-05-16T11:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.272700", + "Timestamp": "2024-05-16T11:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.646400", + "Timestamp": "2024-05-16T11:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.641400", + "Timestamp": "2024-05-16T11:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.516400", + "Timestamp": "2024-05-16T11:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.431200", + "Timestamp": "2024-05-16T11:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.426200", + "Timestamp": "2024-05-16T11:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.301200", + "Timestamp": "2024-05-16T11:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.067400", + "Timestamp": "2024-05-16T11:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223200", + "Timestamp": "2024-05-16T11:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.734000", + "Timestamp": "2024-05-16T11:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.704000", + "Timestamp": "2024-05-16T11:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.604000", + "Timestamp": "2024-05-16T11:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216400", + "Timestamp": "2024-05-16T11:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.805600", + "Timestamp": "2024-05-16T11:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.800600", + "Timestamp": "2024-05-16T11:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.675600", + "Timestamp": "2024-05-16T11:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.993700", + "Timestamp": "2024-05-16T11:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.988700", + "Timestamp": "2024-05-16T11:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.863700", + "Timestamp": "2024-05-16T11:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.415700", + "Timestamp": "2024-05-16T11:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.018300", + "Timestamp": "2024-05-16T11:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.988300", + "Timestamp": "2024-05-16T11:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.888300", + "Timestamp": "2024-05-16T11:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.551700", + "Timestamp": "2024-05-16T11:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.546700", + "Timestamp": "2024-05-16T11:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.421700", + "Timestamp": "2024-05-16T11:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.458600", + "Timestamp": "2024-05-16T11:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.453600", + "Timestamp": "2024-05-16T11:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.328600", + "Timestamp": "2024-05-16T11:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.228100", + "Timestamp": "2024-05-16T11:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268100", + "Timestamp": "2024-05-16T11:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168100", + "Timestamp": "2024-05-16T11:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.369400", + "Timestamp": "2024-05-16T11:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.364400", + "Timestamp": "2024-05-16T11:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.239400", + "Timestamp": "2024-05-16T11:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.509900", + "Timestamp": "2024-05-16T11:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.506200", + "Timestamp": "2024-05-16T11:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.449900", + "Timestamp": "2024-05-16T11:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.506000", + "Timestamp": "2024-05-16T11:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.501000", + "Timestamp": "2024-05-16T11:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.376000", + "Timestamp": "2024-05-16T11:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.446300", + "Timestamp": "2024-05-16T11:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.441300", + "Timestamp": "2024-05-16T11:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.316300", + "Timestamp": "2024-05-16T11:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.753000", + "Timestamp": "2024-05-16T11:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.121100", + "Timestamp": "2024-05-16T11:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.582300", + "Timestamp": "2024-05-16T11:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.577300", + "Timestamp": "2024-05-16T11:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.452300", + "Timestamp": "2024-05-16T11:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.137000", + "Timestamp": "2024-05-16T11:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.287300", + "Timestamp": "2024-05-16T11:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.282300", + "Timestamp": "2024-05-16T11:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157300", + "Timestamp": "2024-05-16T11:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.183700", + "Timestamp": "2024-05-16T11:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.178700", + "Timestamp": "2024-05-16T11:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.053700", + "Timestamp": "2024-05-16T11:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.310600", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.305600", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180600", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.412400", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.256300", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.251300", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129900", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126200", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069900", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.444200", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.934900", + "Timestamp": "2024-05-16T11:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.633700", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.628700", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.503700", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.720100", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220900", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.205700", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.202000", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145700", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.770500", + "Timestamp": "2024-05-16T11:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.354800", + "Timestamp": "2024-05-16T11:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.349800", + "Timestamp": "2024-05-16T11:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.224800", + "Timestamp": "2024-05-16T11:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.272300", + "Timestamp": "2024-05-16T11:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.315800", + "Timestamp": "2024-05-16T11:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.310800", + "Timestamp": "2024-05-16T11:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.185800", + "Timestamp": "2024-05-16T11:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.909500", + "Timestamp": "2024-05-16T11:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.904500", + "Timestamp": "2024-05-16T11:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.779500", + "Timestamp": "2024-05-16T11:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122000", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118000", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062000", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166400", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162400", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.444400", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.439400", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.314400", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.182500", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.173600", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.177500", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.168600", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.052500", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.043600", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.234400", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.229400", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.104400", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.317100", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.312100", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.187100", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423900", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.304700", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.274700", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.174700", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.379200", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.379200", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.541400", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.536400", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.411400", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.254900", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.249900", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124900", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.589600", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.229700", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.224700", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.099700", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.168600", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.982500", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.977500", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.852500", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.687700", + "Timestamp": "2024-05-16T11:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.682700", + "Timestamp": "2024-05-16T11:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.557700", + "Timestamp": "2024-05-16T11:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115900", + "Timestamp": "2024-05-16T11:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111900", + "Timestamp": "2024-05-16T11:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055900", + "Timestamp": "2024-05-16T11:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156100", + "Timestamp": "2024-05-16T11:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152400", + "Timestamp": "2024-05-16T11:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096100", + "Timestamp": "2024-05-16T11:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.574600", + "Timestamp": "2024-05-16T11:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.471400", + "Timestamp": "2024-05-16T11:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.466400", + "Timestamp": "2024-05-16T11:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.341400", + "Timestamp": "2024-05-16T11:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.703800", + "Timestamp": "2024-05-16T11:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.012500", + "Timestamp": "2024-05-16T11:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "9.982800", + "Timestamp": "2024-05-16T11:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.146600", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.141600", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.016600", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.810400", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.805400", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.680400", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297300", + "Timestamp": "2024-05-16T11:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267300", + "Timestamp": "2024-05-16T11:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167300", + "Timestamp": "2024-05-16T11:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.092500", + "Timestamp": "2024-05-16T11:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.087500", + "Timestamp": "2024-05-16T11:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.962500", + "Timestamp": "2024-05-16T11:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131200", + "Timestamp": "2024-05-16T11:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127500", + "Timestamp": "2024-05-16T11:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071200", + "Timestamp": "2024-05-16T11:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.881900", + "Timestamp": "2024-05-16T11:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.876900", + "Timestamp": "2024-05-16T11:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.751900", + "Timestamp": "2024-05-16T11:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.214200", + "Timestamp": "2024-05-16T11:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.209200", + "Timestamp": "2024-05-16T11:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.084200", + "Timestamp": "2024-05-16T11:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.823300", + "Timestamp": "2024-05-16T11:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.793300", + "Timestamp": "2024-05-16T11:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.693300", + "Timestamp": "2024-05-16T11:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.430400", + "Timestamp": "2024-05-16T11:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.425400", + "Timestamp": "2024-05-16T11:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.300400", + "Timestamp": "2024-05-16T11:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.861300", + "Timestamp": "2024-05-16T11:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.644400", + "Timestamp": "2024-05-16T11:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.639400", + "Timestamp": "2024-05-16T11:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.514400", + "Timestamp": "2024-05-16T11:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.317300", + "Timestamp": "2024-05-16T11:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.312300", + "Timestamp": "2024-05-16T11:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.187300", + "Timestamp": "2024-05-16T11:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.554900", + "Timestamp": "2024-05-16T11:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.549900", + "Timestamp": "2024-05-16T11:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.424900", + "Timestamp": "2024-05-16T11:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.878500", + "Timestamp": "2024-05-16T11:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.428300", + "Timestamp": "2024-05-16T11:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.284400", + "Timestamp": "2024-05-16T11:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.279400", + "Timestamp": "2024-05-16T11:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.154400", + "Timestamp": "2024-05-16T11:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.389500", + "Timestamp": "2024-05-16T11:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.384500", + "Timestamp": "2024-05-16T11:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.259500", + "Timestamp": "2024-05-16T11:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084100", + "Timestamp": "2024-05-16T11:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080400", + "Timestamp": "2024-05-16T11:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024100", + "Timestamp": "2024-05-16T11:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.774500", + "Timestamp": "2024-05-16T11:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.769500", + "Timestamp": "2024-05-16T11:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.644500", + "Timestamp": "2024-05-16T11:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.703100", + "Timestamp": "2024-05-16T11:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167200", + "Timestamp": "2024-05-16T11:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164700", + "Timestamp": "2024-05-16T11:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163500", + "Timestamp": "2024-05-16T11:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161000", + "Timestamp": "2024-05-16T11:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-16T11:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104700", + "Timestamp": "2024-05-16T11:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.826100", + "Timestamp": "2024-05-16T11:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.263900", + "Timestamp": "2024-05-16T11:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258900", + "Timestamp": "2024-05-16T11:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133900", + "Timestamp": "2024-05-16T11:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.244200", + "Timestamp": "2024-05-16T11:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.239200", + "Timestamp": "2024-05-16T11:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114200", + "Timestamp": "2024-05-16T11:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136900", + "Timestamp": "2024-05-16T11:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133200", + "Timestamp": "2024-05-16T11:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076900", + "Timestamp": "2024-05-16T11:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.481700", + "Timestamp": "2024-05-16T11:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.440000", + "Timestamp": "2024-05-16T11:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.451700", + "Timestamp": "2024-05-16T11:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.410000", + "Timestamp": "2024-05-16T11:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.351700", + "Timestamp": "2024-05-16T11:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.310000", + "Timestamp": "2024-05-16T11:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.090700", + "Timestamp": "2024-05-16T11:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.085700", + "Timestamp": "2024-05-16T11:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.960700", + "Timestamp": "2024-05-16T11:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.718900", + "Timestamp": "2024-05-16T11:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.759900", + "Timestamp": "2024-05-16T11:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.754900", + "Timestamp": "2024-05-16T11:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.629900", + "Timestamp": "2024-05-16T11:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-16T11:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093700", + "Timestamp": "2024-05-16T11:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090000", + "Timestamp": "2024-05-16T11:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033700", + "Timestamp": "2024-05-16T11:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105300", + "Timestamp": "2024-05-16T11:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101300", + "Timestamp": "2024-05-16T11:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045300", + "Timestamp": "2024-05-16T11:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270900", + "Timestamp": "2024-05-16T11:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265900", + "Timestamp": "2024-05-16T11:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140900", + "Timestamp": "2024-05-16T11:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.989400", + "Timestamp": "2024-05-16T11:46:59.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135800", + "Timestamp": "2024-05-16T11:46:58.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132100", + "Timestamp": "2024-05-16T11:46:58.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075800", + "Timestamp": "2024-05-16T11:46:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.648600", + "Timestamp": "2024-05-16T11:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.618600", + "Timestamp": "2024-05-16T11:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.518600", + "Timestamp": "2024-05-16T11:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.984500", + "Timestamp": "2024-05-16T11:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.979500", + "Timestamp": "2024-05-16T11:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.854500", + "Timestamp": "2024-05-16T11:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121800", + "Timestamp": "2024-05-16T11:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118100", + "Timestamp": "2024-05-16T11:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061800", + "Timestamp": "2024-05-16T11:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.397500", + "Timestamp": "2024-05-16T11:46:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.392500", + "Timestamp": "2024-05-16T11:46:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.267500", + "Timestamp": "2024-05-16T11:46:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.259500", + "Timestamp": "2024-05-16T11:46:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.741200", + "Timestamp": "2024-05-16T11:46:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.736200", + "Timestamp": "2024-05-16T11:46:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.611200", + "Timestamp": "2024-05-16T11:46:53.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.694100", + "Timestamp": "2024-05-16T11:46:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.813300", + "Timestamp": "2024-05-16T11:46:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.397800", + "Timestamp": "2024-05-16T11:46:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.392800", + "Timestamp": "2024-05-16T11:46:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.267800", + "Timestamp": "2024-05-16T11:46:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.243100", + "Timestamp": "2024-05-16T11:46:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.238100", + "Timestamp": "2024-05-16T11:46:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.113100", + "Timestamp": "2024-05-16T11:46:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.490200", + "Timestamp": "2024-05-16T11:46:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.576400", + "Timestamp": "2024-05-16T11:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.571400", + "Timestamp": "2024-05-16T11:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.446400", + "Timestamp": "2024-05-16T11:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.035400", + "Timestamp": "2024-05-16T11:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.383400", + "Timestamp": "2024-05-16T11:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.030400", + "Timestamp": "2024-05-16T11:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.378400", + "Timestamp": "2024-05-16T11:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.905400", + "Timestamp": "2024-05-16T11:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.253400", + "Timestamp": "2024-05-16T11:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.838400", + "Timestamp": "2024-05-16T11:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.833400", + "Timestamp": "2024-05-16T11:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.708400", + "Timestamp": "2024-05-16T11:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.285300", + "Timestamp": "2024-05-16T11:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.144900", + "Timestamp": "2024-05-16T11:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.139900", + "Timestamp": "2024-05-16T11:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.014900", + "Timestamp": "2024-05-16T11:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146800", + "Timestamp": "2024-05-16T11:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143100", + "Timestamp": "2024-05-16T11:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086800", + "Timestamp": "2024-05-16T11:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.409600", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.404600", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.279600", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.251000", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.246000", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.121000", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.711600", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.774600", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.769600", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.644600", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.018800", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.013800", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.888800", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.420800", + "Timestamp": "2024-05-16T11:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.404600", + "Timestamp": "2024-05-16T11:32:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120400", + "Timestamp": "2024-05-16T11:32:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207200", + "Timestamp": "2024-05-16T11:32:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.373300", + "Timestamp": "2024-05-16T11:32:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.843700", + "Timestamp": "2024-05-16T11:32:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.368300", + "Timestamp": "2024-05-16T11:32:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.838700", + "Timestamp": "2024-05-16T11:32:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.243300", + "Timestamp": "2024-05-16T11:32:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.713700", + "Timestamp": "2024-05-16T11:32:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431800", + "Timestamp": "2024-05-16T11:32:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "dl1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.568800", + "Timestamp": "2024-05-16T11:32:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "dl1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.538800", + "Timestamp": "2024-05-16T11:32:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "dl1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.438800", + "Timestamp": "2024-05-16T11:32:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.282000", + "Timestamp": "2024-05-16T11:32:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.507400", + "Timestamp": "2024-05-16T11:32:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.661100", + "Timestamp": "2024-05-16T11:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.656100", + "Timestamp": "2024-05-16T11:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.531100", + "Timestamp": "2024-05-16T11:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.481200", + "Timestamp": "2024-05-16T11:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418500", + "Timestamp": "2024-05-16T11:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.409200", + "Timestamp": "2024-05-16T11:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.485800", + "Timestamp": "2024-05-16T11:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.106800", + "Timestamp": "2024-05-16T11:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.076800", + "Timestamp": "2024-05-16T11:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.976800", + "Timestamp": "2024-05-16T11:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.960700", + "Timestamp": "2024-05-16T11:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.955700", + "Timestamp": "2024-05-16T11:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.830700", + "Timestamp": "2024-05-16T11:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.679500", + "Timestamp": "2024-05-16T11:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.663200", + "Timestamp": "2024-05-16T11:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.633200", + "Timestamp": "2024-05-16T11:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.533200", + "Timestamp": "2024-05-16T11:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.519700", + "Timestamp": "2024-05-16T11:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.614100", + "Timestamp": "2024-05-16T11:32:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.609100", + "Timestamp": "2024-05-16T11:32:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.484100", + "Timestamp": "2024-05-16T11:32:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T11:32:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.666900", + "Timestamp": "2024-05-16T11:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.837200", + "Timestamp": "2024-05-16T11:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.806500", + "Timestamp": "2024-05-16T11:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.229000", + "Timestamp": "2024-05-16T11:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120100", + "Timestamp": "2024-05-16T11:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119900", + "Timestamp": "2024-05-16T11:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-16T11:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116200", + "Timestamp": "2024-05-16T11:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060100", + "Timestamp": "2024-05-16T11:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059900", + "Timestamp": "2024-05-16T11:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.987600", + "Timestamp": "2024-05-16T11:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.982600", + "Timestamp": "2024-05-16T11:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.857600", + "Timestamp": "2024-05-16T11:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.419200", + "Timestamp": "2024-05-16T11:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.065100", + "Timestamp": "2024-05-16T11:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.060100", + "Timestamp": "2024-05-16T11:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.935100", + "Timestamp": "2024-05-16T11:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214500", + "Timestamp": "2024-05-16T11:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.074300", + "Timestamp": "2024-05-16T11:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330000", + "Timestamp": "2024-05-16T11:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325000", + "Timestamp": "2024-05-16T11:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200000", + "Timestamp": "2024-05-16T11:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.527900", + "Timestamp": "2024-05-16T11:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.832000", + "Timestamp": "2024-05-16T11:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.827000", + "Timestamp": "2024-05-16T11:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.702000", + "Timestamp": "2024-05-16T11:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.310700", + "Timestamp": "2024-05-16T11:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.280700", + "Timestamp": "2024-05-16T11:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180700", + "Timestamp": "2024-05-16T11:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098900", + "Timestamp": "2024-05-16T11:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095200", + "Timestamp": "2024-05-16T11:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038900", + "Timestamp": "2024-05-16T11:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.182300", + "Timestamp": "2024-05-16T11:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.178600", + "Timestamp": "2024-05-16T11:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122300", + "Timestamp": "2024-05-16T11:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.471300", + "Timestamp": "2024-05-16T11:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.466300", + "Timestamp": "2024-05-16T11:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.341300", + "Timestamp": "2024-05-16T11:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.412800", + "Timestamp": "2024-05-16T11:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.407800", + "Timestamp": "2024-05-16T11:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.282800", + "Timestamp": "2024-05-16T11:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.647300", + "Timestamp": "2024-05-16T11:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.642300", + "Timestamp": "2024-05-16T11:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.517300", + "Timestamp": "2024-05-16T11:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.440800", + "Timestamp": "2024-05-16T11:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.435800", + "Timestamp": "2024-05-16T11:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.310800", + "Timestamp": "2024-05-16T11:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.200000", + "Timestamp": "2024-05-16T11:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.054300", + "Timestamp": "2024-05-16T11:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.049300", + "Timestamp": "2024-05-16T11:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.924300", + "Timestamp": "2024-05-16T11:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.252700", + "Timestamp": "2024-05-16T11:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.247700", + "Timestamp": "2024-05-16T11:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.122700", + "Timestamp": "2024-05-16T11:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.046900", + "Timestamp": "2024-05-16T11:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.041900", + "Timestamp": "2024-05-16T11:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.916900", + "Timestamp": "2024-05-16T11:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.230900", + "Timestamp": "2024-05-16T11:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270900", + "Timestamp": "2024-05-16T11:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170900", + "Timestamp": "2024-05-16T11:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.458800", + "Timestamp": "2024-05-16T11:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.457500", + "Timestamp": "2024-05-16T11:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171900", + "Timestamp": "2024-05-16T11:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.211900", + "Timestamp": "2024-05-16T11:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111900", + "Timestamp": "2024-05-16T11:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.647000", + "Timestamp": "2024-05-16T11:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.642000", + "Timestamp": "2024-05-16T11:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.517000", + "Timestamp": "2024-05-16T11:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.748200", + "Timestamp": "2024-05-16T11:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.215100", + "Timestamp": "2024-05-16T11:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.210100", + "Timestamp": "2024-05-16T11:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.085100", + "Timestamp": "2024-05-16T11:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.260500", + "Timestamp": "2024-05-16T11:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.230500", + "Timestamp": "2024-05-16T11:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130500", + "Timestamp": "2024-05-16T11:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.568100", + "Timestamp": "2024-05-16T11:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.563100", + "Timestamp": "2024-05-16T11:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.438100", + "Timestamp": "2024-05-16T11:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.178500", + "Timestamp": "2024-05-16T11:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.218500", + "Timestamp": "2024-05-16T11:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118500", + "Timestamp": "2024-05-16T11:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083400", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079700", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023400", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "vt1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.667700", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "vt1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.637700", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "vt1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.537700", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.776500", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.771500", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.646500", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.781200", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.738700", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.733700", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.608700", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.446700", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.625900", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.384800", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.595900", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.354800", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.495900", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.254800", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.537700", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.532700", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.407700", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.455200", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218600", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.880500", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.875500", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.750500", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.823500", + "Timestamp": "2024-05-16T11:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.034400", + "Timestamp": "2024-05-16T11:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.029400", + "Timestamp": "2024-05-16T11:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.904400", + "Timestamp": "2024-05-16T11:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.494300", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.489300", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.364300", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.954500", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.674600", + "Timestamp": "2024-05-16T11:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.669600", + "Timestamp": "2024-05-16T11:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.544600", + "Timestamp": "2024-05-16T11:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.351000", + "Timestamp": "2024-05-16T11:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.321000", + "Timestamp": "2024-05-16T11:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.221000", + "Timestamp": "2024-05-16T11:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360900", + "Timestamp": "2024-05-16T11:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.355900", + "Timestamp": "2024-05-16T11:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230900", + "Timestamp": "2024-05-16T11:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.668200", + "Timestamp": "2024-05-16T11:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.638200", + "Timestamp": "2024-05-16T11:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.538200", + "Timestamp": "2024-05-16T11:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.321000", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.316000", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.191000", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.086900", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.686200", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.681200", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.556200", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.847900", + "Timestamp": "2024-05-16T11:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.900700", + "Timestamp": "2024-05-16T11:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.895700", + "Timestamp": "2024-05-16T11:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.770700", + "Timestamp": "2024-05-16T11:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.157100", + "Timestamp": "2024-05-16T11:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.821200", + "Timestamp": "2024-05-16T11:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T11:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109200", + "Timestamp": "2024-05-16T11:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T11:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049200", + "Timestamp": "2024-05-16T11:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.414100", + "Timestamp": "2024-05-16T11:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.409100", + "Timestamp": "2024-05-16T11:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.284100", + "Timestamp": "2024-05-16T11:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.531600", + "Timestamp": "2024-05-16T11:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.526600", + "Timestamp": "2024-05-16T11:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.401600", + "Timestamp": "2024-05-16T11:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.696300", + "Timestamp": "2024-05-16T11:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.408800", + "Timestamp": "2024-05-16T11:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.560500", + "Timestamp": "2024-05-16T11:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.825200", + "Timestamp": "2024-05-16T11:32:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T11:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095500", + "Timestamp": "2024-05-16T11:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039200", + "Timestamp": "2024-05-16T11:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.789700", + "Timestamp": "2024-05-16T11:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.784700", + "Timestamp": "2024-05-16T11:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.659700", + "Timestamp": "2024-05-16T11:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.667500", + "Timestamp": "2024-05-16T11:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.605200", + "Timestamp": "2024-05-16T11:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113800", + "Timestamp": "2024-05-16T11:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-16T11:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053800", + "Timestamp": "2024-05-16T11:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.825500", + "Timestamp": "2024-05-16T11:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330100", + "Timestamp": "2024-05-16T11:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325100", + "Timestamp": "2024-05-16T11:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200100", + "Timestamp": "2024-05-16T11:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200600", + "Timestamp": "2024-05-16T11:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196900", + "Timestamp": "2024-05-16T11:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140600", + "Timestamp": "2024-05-16T11:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140400", + "Timestamp": "2024-05-16T11:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136700", + "Timestamp": "2024-05-16T11:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080400", + "Timestamp": "2024-05-16T11:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.762600", + "Timestamp": "2024-05-16T11:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.757600", + "Timestamp": "2024-05-16T11:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.632600", + "Timestamp": "2024-05-16T11:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.847400", + "Timestamp": "2024-05-16T11:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.842400", + "Timestamp": "2024-05-16T11:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.717400", + "Timestamp": "2024-05-16T11:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.561500", + "Timestamp": "2024-05-16T11:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116000", + "Timestamp": "2024-05-16T11:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-16T11:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056000", + "Timestamp": "2024-05-16T11:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.186100", + "Timestamp": "2024-05-16T11:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.182100", + "Timestamp": "2024-05-16T11:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126100", + "Timestamp": "2024-05-16T11:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.685300", + "Timestamp": "2024-05-16T11:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.513400", + "Timestamp": "2024-05-16T11:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.508400", + "Timestamp": "2024-05-16T11:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.383400", + "Timestamp": "2024-05-16T11:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.478300", + "Timestamp": "2024-05-16T11:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.473300", + "Timestamp": "2024-05-16T11:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.348300", + "Timestamp": "2024-05-16T11:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.725300", + "Timestamp": "2024-05-16T11:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.224100", + "Timestamp": "2024-05-16T11:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314100", + "Timestamp": "2024-05-16T11:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.309100", + "Timestamp": "2024-05-16T11:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184100", + "Timestamp": "2024-05-16T11:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.391800", + "Timestamp": "2024-05-16T11:32:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.361800", + "Timestamp": "2024-05-16T11:32:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.261800", + "Timestamp": "2024-05-16T11:32:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.830700", + "Timestamp": "2024-05-16T11:32:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.569000", + "Timestamp": "2024-05-16T11:32:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.197500", + "Timestamp": "2024-05-16T11:32:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.237500", + "Timestamp": "2024-05-16T11:32:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137500", + "Timestamp": "2024-05-16T11:32:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.714900", + "Timestamp": "2024-05-16T11:32:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.709900", + "Timestamp": "2024-05-16T11:32:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.584900", + "Timestamp": "2024-05-16T11:32:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.369400", + "Timestamp": "2024-05-16T11:31:59.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.637300", + "Timestamp": "2024-05-16T11:31:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.632300", + "Timestamp": "2024-05-16T11:31:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.507300", + "Timestamp": "2024-05-16T11:31:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.063400", + "Timestamp": "2024-05-16T11:31:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.058400", + "Timestamp": "2024-05-16T11:31:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.933400", + "Timestamp": "2024-05-16T11:31:57.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.591600", + "Timestamp": "2024-05-16T11:31:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.257800", + "Timestamp": "2024-05-16T11:31:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.882200", + "Timestamp": "2024-05-16T11:31:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.877200", + "Timestamp": "2024-05-16T11:31:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.752200", + "Timestamp": "2024-05-16T11:31:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.012400", + "Timestamp": "2024-05-16T11:31:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.254100", + "Timestamp": "2024-05-16T11:31:55.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.597600", + "Timestamp": "2024-05-16T11:31:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.231400", + "Timestamp": "2024-05-16T11:31:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.145600", + "Timestamp": "2024-05-16T11:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111300", + "Timestamp": "2024-05-16T11:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111700", + "Timestamp": "2024-05-16T11:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.118900", + "Timestamp": "2024-05-16T11:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.113900", + "Timestamp": "2024-05-16T11:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.988900", + "Timestamp": "2024-05-16T11:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.201500", + "Timestamp": "2024-05-16T11:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.197800", + "Timestamp": "2024-05-16T11:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141500", + "Timestamp": "2024-05-16T11:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.411800", + "Timestamp": "2024-05-16T11:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273400", + "Timestamp": "2024-05-16T11:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268400", + "Timestamp": "2024-05-16T11:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143400", + "Timestamp": "2024-05-16T11:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.155900", + "Timestamp": "2024-05-16T11:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.109100", + "Timestamp": "2024-05-16T11:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.150900", + "Timestamp": "2024-05-16T11:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.104100", + "Timestamp": "2024-05-16T11:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.025900", + "Timestamp": "2024-05-16T11:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.979100", + "Timestamp": "2024-05-16T11:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102400", + "Timestamp": "2024-05-16T11:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098700", + "Timestamp": "2024-05-16T11:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042400", + "Timestamp": "2024-05-16T11:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.955000", + "Timestamp": "2024-05-16T11:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.950000", + "Timestamp": "2024-05-16T11:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.825000", + "Timestamp": "2024-05-16T11:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.236200", + "Timestamp": "2024-05-16T11:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.247800", + "Timestamp": "2024-05-16T11:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.242800", + "Timestamp": "2024-05-16T11:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.117800", + "Timestamp": "2024-05-16T11:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129700", + "Timestamp": "2024-05-16T11:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126000", + "Timestamp": "2024-05-16T11:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069700", + "Timestamp": "2024-05-16T11:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.862200", + "Timestamp": "2024-05-16T11:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314400", + "Timestamp": "2024-05-16T11:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.309400", + "Timestamp": "2024-05-16T11:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184400", + "Timestamp": "2024-05-16T11:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.405500", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.375500", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.275500", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.468000", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.438000", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.338000", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.046500", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.041500", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.916500", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129500", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125500", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069500", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.329800", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324800", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199800", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.136600", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.131600", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.006600", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.420000", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.390000", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.290000", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.899800", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.894800", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.769800", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130300", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133000", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126600", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129300", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070300", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073000", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.229700", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.199700", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099700", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133700", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129700", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073700", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.517900", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.512900", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.387900", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.970200", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.965200", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.840200", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.247400", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.242400", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.117400", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.742100", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.712100", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.612100", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.901500", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.658200", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.653200", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.528200", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.244500", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.239500", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.114500", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.807600", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118200", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058200", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133800", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130100", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073800", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.185400", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181700", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273100", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.243100", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143100", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.613400", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.608400", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.483400", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.969600", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.964600", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.839600", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112900", + "Timestamp": "2024-05-16T11:18:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107000", + "Timestamp": "2024-05-16T11:18:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.676300", + "Timestamp": "2024-05-16T11:18:00.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.478600", + "Timestamp": "2024-05-16T11:17:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.473600", + "Timestamp": "2024-05-16T11:17:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.348600", + "Timestamp": "2024-05-16T11:17:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.660500", + "Timestamp": "2024-05-16T11:17:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.655500", + "Timestamp": "2024-05-16T11:17:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.530500", + "Timestamp": "2024-05-16T11:17:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.083000", + "Timestamp": "2024-05-16T11:17:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.078700", + "Timestamp": "2024-05-16T11:17:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.552200", + "Timestamp": "2024-05-16T11:17:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.372600", + "Timestamp": "2024-05-16T11:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.950300", + "Timestamp": "2024-05-16T11:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.830700", + "Timestamp": "2024-05-16T11:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.508500", + "Timestamp": "2024-05-16T11:17:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.603400", + "Timestamp": "2024-05-16T11:17:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.656800", + "Timestamp": "2024-05-16T11:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.651800", + "Timestamp": "2024-05-16T11:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.526800", + "Timestamp": "2024-05-16T11:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.323100", + "Timestamp": "2024-05-16T11:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.603800", + "Timestamp": "2024-05-16T11:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.598800", + "Timestamp": "2024-05-16T11:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.473800", + "Timestamp": "2024-05-16T11:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.284400", + "Timestamp": "2024-05-16T11:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.667200", + "Timestamp": "2024-05-16T11:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.632100", + "Timestamp": "2024-05-16T11:17:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.706300", + "Timestamp": "2024-05-16T11:17:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.330300", + "Timestamp": "2024-05-16T11:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.959500", + "Timestamp": "2024-05-16T11:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.954500", + "Timestamp": "2024-05-16T11:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.829500", + "Timestamp": "2024-05-16T11:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.044400", + "Timestamp": "2024-05-16T11:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.667000", + "Timestamp": "2024-05-16T11:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.392600", + "Timestamp": "2024-05-16T11:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.387600", + "Timestamp": "2024-05-16T11:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.262600", + "Timestamp": "2024-05-16T11:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.775700", + "Timestamp": "2024-05-16T11:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.189000", + "Timestamp": "2024-05-16T11:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.229000", + "Timestamp": "2024-05-16T11:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129000", + "Timestamp": "2024-05-16T11:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.809100", + "Timestamp": "2024-05-16T11:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.234100", + "Timestamp": "2024-05-16T11:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.229100", + "Timestamp": "2024-05-16T11:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.104100", + "Timestamp": "2024-05-16T11:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.679100", + "Timestamp": "2024-05-16T11:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.654900", + "Timestamp": "2024-05-16T11:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.674100", + "Timestamp": "2024-05-16T11:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.649900", + "Timestamp": "2024-05-16T11:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.549100", + "Timestamp": "2024-05-16T11:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.524900", + "Timestamp": "2024-05-16T11:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.724500", + "Timestamp": "2024-05-16T11:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.719500", + "Timestamp": "2024-05-16T11:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.594500", + "Timestamp": "2024-05-16T11:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.204500", + "Timestamp": "2024-05-16T11:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.027800", + "Timestamp": "2024-05-16T11:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.022800", + "Timestamp": "2024-05-16T11:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.897800", + "Timestamp": "2024-05-16T11:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.601700", + "Timestamp": "2024-05-16T11:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.596700", + "Timestamp": "2024-05-16T11:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.471700", + "Timestamp": "2024-05-16T11:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.641200", + "Timestamp": "2024-05-16T11:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.636200", + "Timestamp": "2024-05-16T11:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.511200", + "Timestamp": "2024-05-16T11:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.274000", + "Timestamp": "2024-05-16T11:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.902000", + "Timestamp": "2024-05-16T11:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163300", + "Timestamp": "2024-05-16T11:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.203300", + "Timestamp": "2024-05-16T11:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T11:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.382300", + "Timestamp": "2024-05-16T11:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.352300", + "Timestamp": "2024-05-16T11:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.252300", + "Timestamp": "2024-05-16T11:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.486000", + "Timestamp": "2024-05-16T11:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.481000", + "Timestamp": "2024-05-16T11:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.356000", + "Timestamp": "2024-05-16T11:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.976100", + "Timestamp": "2024-05-16T11:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.971100", + "Timestamp": "2024-05-16T11:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.846100", + "Timestamp": "2024-05-16T11:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.960400", + "Timestamp": "2024-05-16T11:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.150200", + "Timestamp": "2024-05-16T11:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.670000", + "Timestamp": "2024-05-16T11:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.665000", + "Timestamp": "2024-05-16T11:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.540000", + "Timestamp": "2024-05-16T11:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.804600", + "Timestamp": "2024-05-16T11:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.234300", + "Timestamp": "2024-05-16T11:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.229300", + "Timestamp": "2024-05-16T11:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.104300", + "Timestamp": "2024-05-16T11:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.625200", + "Timestamp": "2024-05-16T11:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.620200", + "Timestamp": "2024-05-16T11:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.495200", + "Timestamp": "2024-05-16T11:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.809400", + "Timestamp": "2024-05-16T11:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306700", + "Timestamp": "2024-05-16T11:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301700", + "Timestamp": "2024-05-16T11:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176700", + "Timestamp": "2024-05-16T11:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.252700", + "Timestamp": "2024-05-16T11:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.247700", + "Timestamp": "2024-05-16T11:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.122700", + "Timestamp": "2024-05-16T11:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.404700", + "Timestamp": "2024-05-16T11:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.399700", + "Timestamp": "2024-05-16T11:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.274700", + "Timestamp": "2024-05-16T11:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.581700", + "Timestamp": "2024-05-16T11:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "8.067800", + "Timestamp": "2024-05-16T11:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "8.037800", + "Timestamp": "2024-05-16T11:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.937800", + "Timestamp": "2024-05-16T11:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.841700", + "Timestamp": "2024-05-16T11:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.280000", + "Timestamp": "2024-05-16T11:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.836600", + "Timestamp": "2024-05-16T11:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.271600", + "Timestamp": "2024-05-16T11:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.117800", + "Timestamp": "2024-05-16T11:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.112800", + "Timestamp": "2024-05-16T11:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.987800", + "Timestamp": "2024-05-16T11:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271800", + "Timestamp": "2024-05-16T11:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266800", + "Timestamp": "2024-05-16T11:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141800", + "Timestamp": "2024-05-16T11:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.451800", + "Timestamp": "2024-05-16T11:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.446800", + "Timestamp": "2024-05-16T11:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.321800", + "Timestamp": "2024-05-16T11:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.649500", + "Timestamp": "2024-05-16T11:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.228200", + "Timestamp": "2024-05-16T11:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.224500", + "Timestamp": "2024-05-16T11:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168200", + "Timestamp": "2024-05-16T11:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298700", + "Timestamp": "2024-05-16T11:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293700", + "Timestamp": "2024-05-16T11:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168700", + "Timestamp": "2024-05-16T11:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.313700", + "Timestamp": "2024-05-16T11:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.308700", + "Timestamp": "2024-05-16T11:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.183700", + "Timestamp": "2024-05-16T11:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.494000", + "Timestamp": "2024-05-16T11:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.489000", + "Timestamp": "2024-05-16T11:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.364000", + "Timestamp": "2024-05-16T11:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105300", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101600", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045300", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.867400", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.326300", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.914100", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.421500", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.416500", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.291500", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.236300", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.206300", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.106300", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140300", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136300", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080300", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.773700", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.768700", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.643700", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.381400", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.376400", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.251400", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.542400", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.537400", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.412400", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125200", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121200", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065200", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.456900", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.451900", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.326900", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.167700", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.137700", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.037700", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134400", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130700", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074400", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.298900", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.293900", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.168900", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.190000", + "Timestamp": "2024-05-16T11:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.186300", + "Timestamp": "2024-05-16T11:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130000", + "Timestamp": "2024-05-16T11:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.176600", + "Timestamp": "2024-05-16T11:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.171600", + "Timestamp": "2024-05-16T11:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.046600", + "Timestamp": "2024-05-16T11:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.190800", + "Timestamp": "2024-05-16T11:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.230800", + "Timestamp": "2024-05-16T11:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130800", + "Timestamp": "2024-05-16T11:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.417500", + "Timestamp": "2024-05-16T11:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.412500", + "Timestamp": "2024-05-16T11:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.287500", + "Timestamp": "2024-05-16T11:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.500300", + "Timestamp": "2024-05-16T11:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.495300", + "Timestamp": "2024-05-16T11:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.370300", + "Timestamp": "2024-05-16T11:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.868300", + "Timestamp": "2024-05-16T11:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.863300", + "Timestamp": "2024-05-16T11:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.738300", + "Timestamp": "2024-05-16T11:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.276700", + "Timestamp": "2024-05-16T11:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.447000", + "Timestamp": "2024-05-16T11:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.425900", + "Timestamp": "2024-05-16T11:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.386200", + "Timestamp": "2024-05-16T11:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.381200", + "Timestamp": "2024-05-16T11:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.256200", + "Timestamp": "2024-05-16T11:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-16T11:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T11:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050100", + "Timestamp": "2024-05-16T11:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.418800", + "Timestamp": "2024-05-16T11:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.413800", + "Timestamp": "2024-05-16T11:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.288800", + "Timestamp": "2024-05-16T11:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094100", + "Timestamp": "2024-05-16T11:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090400", + "Timestamp": "2024-05-16T11:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034100", + "Timestamp": "2024-05-16T11:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.398100", + "Timestamp": "2024-05-16T11:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.393100", + "Timestamp": "2024-05-16T11:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.268100", + "Timestamp": "2024-05-16T11:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165200", + "Timestamp": "2024-05-16T11:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161200", + "Timestamp": "2024-05-16T11:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T11:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "h1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.319600", + "Timestamp": "2024-05-16T11:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "h1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289600", + "Timestamp": "2024-05-16T11:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "h1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.189600", + "Timestamp": "2024-05-16T11:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099900", + "Timestamp": "2024-05-16T11:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096200", + "Timestamp": "2024-05-16T11:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039900", + "Timestamp": "2024-05-16T11:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.958700", + "Timestamp": "2024-05-16T11:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121500", + "Timestamp": "2024-05-16T11:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117500", + "Timestamp": "2024-05-16T11:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061500", + "Timestamp": "2024-05-16T11:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.890700", + "Timestamp": "2024-05-16T11:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.885700", + "Timestamp": "2024-05-16T11:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.760700", + "Timestamp": "2024-05-16T11:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t1.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.009500", + "Timestamp": "2024-05-16T11:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.076600", + "Timestamp": "2024-05-16T11:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.071600", + "Timestamp": "2024-05-16T11:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.946600", + "Timestamp": "2024-05-16T11:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.394800", + "Timestamp": "2024-05-16T11:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.389800", + "Timestamp": "2024-05-16T11:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.264800", + "Timestamp": "2024-05-16T11:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.902900", + "Timestamp": "2024-05-16T11:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.865500", + "Timestamp": "2024-05-16T11:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123400", + "Timestamp": "2024-05-16T11:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119700", + "Timestamp": "2024-05-16T11:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063400", + "Timestamp": "2024-05-16T11:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.117600", + "Timestamp": "2024-05-16T11:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.112600", + "Timestamp": "2024-05-16T11:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.987600", + "Timestamp": "2024-05-16T11:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.410100", + "Timestamp": "2024-05-16T11:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.563700", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.558700", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.433700", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.671000", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.188900", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185200", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128900", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.875400", + "Timestamp": "2024-05-16T11:17:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.533600", + "Timestamp": "2024-05-16T11:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.529900", + "Timestamp": "2024-05-16T11:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.473600", + "Timestamp": "2024-05-16T11:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.073000", + "Timestamp": "2024-05-16T11:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.068000", + "Timestamp": "2024-05-16T11:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.943000", + "Timestamp": "2024-05-16T11:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.706900", + "Timestamp": "2024-05-16T11:17:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.701900", + "Timestamp": "2024-05-16T11:17:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.576900", + "Timestamp": "2024-05-16T11:17:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.110600", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.105600", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.980600", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129600", + "Timestamp": "2024-05-16T11:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125900", + "Timestamp": "2024-05-16T11:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069600", + "Timestamp": "2024-05-16T11:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T11:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.827500", + "Timestamp": "2024-05-16T11:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.822500", + "Timestamp": "2024-05-16T11:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.697500", + "Timestamp": "2024-05-16T11:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.638000", + "Timestamp": "2024-05-16T11:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132500", + "Timestamp": "2024-05-16T11:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128800", + "Timestamp": "2024-05-16T11:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072500", + "Timestamp": "2024-05-16T11:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.951700", + "Timestamp": "2024-05-16T11:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.946700", + "Timestamp": "2024-05-16T11:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.821700", + "Timestamp": "2024-05-16T11:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.542400", + "Timestamp": "2024-05-16T11:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.537400", + "Timestamp": "2024-05-16T11:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.412400", + "Timestamp": "2024-05-16T11:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.243400", + "Timestamp": "2024-05-16T11:17:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.238400", + "Timestamp": "2024-05-16T11:17:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.113400", + "Timestamp": "2024-05-16T11:17:08.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.654500", + "Timestamp": "2024-05-16T11:17:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.405000", + "Timestamp": "2024-05-16T11:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271900", + "Timestamp": "2024-05-16T11:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266900", + "Timestamp": "2024-05-16T11:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141900", + "Timestamp": "2024-05-16T11:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.718700", + "Timestamp": "2024-05-16T11:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.449600", + "Timestamp": "2024-05-16T11:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096100", + "Timestamp": "2024-05-16T11:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092100", + "Timestamp": "2024-05-16T11:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036100", + "Timestamp": "2024-05-16T11:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.272200", + "Timestamp": "2024-05-16T11:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.626100", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.621100", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.496100", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.289100", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.284100", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159100", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.032600", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.027600", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.902600", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.440600", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.435600", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.310600", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.208300", + "Timestamp": "2024-05-16T11:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.204300", + "Timestamp": "2024-05-16T11:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148300", + "Timestamp": "2024-05-16T11:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.434400", + "Timestamp": "2024-05-16T11:17:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.404400", + "Timestamp": "2024-05-16T11:17:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.304400", + "Timestamp": "2024-05-16T11:17:00.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.723800", + "Timestamp": "2024-05-16T11:16:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121400", + "Timestamp": "2024-05-16T11:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117400", + "Timestamp": "2024-05-16T11:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061400", + "Timestamp": "2024-05-16T11:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.501500", + "Timestamp": "2024-05-16T11:16:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.496500", + "Timestamp": "2024-05-16T11:16:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.371500", + "Timestamp": "2024-05-16T11:16:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.725000", + "Timestamp": "2024-05-16T11:16:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208000", + "Timestamp": "2024-05-16T11:16:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.107900", + "Timestamp": "2024-05-16T11:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.077900", + "Timestamp": "2024-05-16T11:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.977900", + "Timestamp": "2024-05-16T11:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.593500", + "Timestamp": "2024-05-16T11:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.588500", + "Timestamp": "2024-05-16T11:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.463500", + "Timestamp": "2024-05-16T11:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "vt1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.020500", + "Timestamp": "2024-05-16T11:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "vt1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.990500", + "Timestamp": "2024-05-16T11:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "vt1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.890500", + "Timestamp": "2024-05-16T11:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.835000", + "Timestamp": "2024-05-16T11:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.911800", + "Timestamp": "2024-05-16T11:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.906800", + "Timestamp": "2024-05-16T11:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.781800", + "Timestamp": "2024-05-16T11:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T11:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148100", + "Timestamp": "2024-05-16T11:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048100", + "Timestamp": "2024-05-16T11:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.256100", + "Timestamp": "2024-05-16T11:16:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.251100", + "Timestamp": "2024-05-16T11:16:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.126100", + "Timestamp": "2024-05-16T11:16:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.138900", + "Timestamp": "2024-05-16T11:14:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.138900", + "Timestamp": "2024-05-16T11:14:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.138900", + "Timestamp": "2024-05-16T11:14:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.483000", + "Timestamp": "2024-05-16T11:04:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.488600", + "Timestamp": "2024-05-16T11:04:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.477500", + "Timestamp": "2024-05-16T11:04:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.446100", + "Timestamp": "2024-05-16T11:04:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.043800", + "Timestamp": "2024-05-16T11:04:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.883600", + "Timestamp": "2024-05-16T11:04:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.721300", + "Timestamp": "2024-05-16T11:04:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.973600", + "Timestamp": "2024-05-16T11:04:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.038800", + "Timestamp": "2024-05-16T11:04:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.878600", + "Timestamp": "2024-05-16T11:04:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.716300", + "Timestamp": "2024-05-16T11:04:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.968600", + "Timestamp": "2024-05-16T11:04:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.913800", + "Timestamp": "2024-05-16T11:04:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.753600", + "Timestamp": "2024-05-16T11:04:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.591300", + "Timestamp": "2024-05-16T11:04:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.843600", + "Timestamp": "2024-05-16T11:04:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.551900", + "Timestamp": "2024-05-16T11:02:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.674400", + "Timestamp": "2024-05-16T11:02:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.669400", + "Timestamp": "2024-05-16T11:02:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.544400", + "Timestamp": "2024-05-16T11:02:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.482900", + "Timestamp": "2024-05-16T11:02:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.376600", + "Timestamp": "2024-05-16T11:02:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.371600", + "Timestamp": "2024-05-16T11:02:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.246600", + "Timestamp": "2024-05-16T11:02:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.430200", + "Timestamp": "2024-05-16T11:02:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.834200", + "Timestamp": "2024-05-16T11:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.358900", + "Timestamp": "2024-05-16T11:02:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.505100", + "Timestamp": "2024-05-16T11:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.800700", + "Timestamp": "2024-05-16T11:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.795700", + "Timestamp": "2024-05-16T11:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.670700", + "Timestamp": "2024-05-16T11:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.056600", + "Timestamp": "2024-05-16T11:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.051600", + "Timestamp": "2024-05-16T11:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.926600", + "Timestamp": "2024-05-16T11:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.473800", + "Timestamp": "2024-05-16T11:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115400", + "Timestamp": "2024-05-16T11:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.665800", + "Timestamp": "2024-05-16T11:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.660800", + "Timestamp": "2024-05-16T11:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.535800", + "Timestamp": "2024-05-16T11:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.471100", + "Timestamp": "2024-05-16T11:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iezn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.466100", + "Timestamp": "2024-05-16T11:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.341100", + "Timestamp": "2024-05-16T11:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416100", + "Timestamp": "2024-05-16T11:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.440200", + "Timestamp": "2024-05-16T11:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.746300", + "Timestamp": "2024-05-16T11:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.739200", + "Timestamp": "2024-05-16T11:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.734200", + "Timestamp": "2024-05-16T11:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.609200", + "Timestamp": "2024-05-16T11:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.819000", + "Timestamp": "2024-05-16T11:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.185800", + "Timestamp": "2024-05-16T11:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.152600", + "Timestamp": "2024-05-16T11:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.147600", + "Timestamp": "2024-05-16T11:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.022600", + "Timestamp": "2024-05-16T11:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416500", + "Timestamp": "2024-05-16T11:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.678200", + "Timestamp": "2024-05-16T11:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.824300", + "Timestamp": "2024-05-16T11:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.378900", + "Timestamp": "2024-05-16T11:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.732600", + "Timestamp": "2024-05-16T11:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.727600", + "Timestamp": "2024-05-16T11:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.602600", + "Timestamp": "2024-05-16T11:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.325300", + "Timestamp": "2024-05-16T11:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.637300", + "Timestamp": "2024-05-16T11:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.907400", + "Timestamp": "2024-05-16T11:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.178700", + "Timestamp": "2024-05-16T11:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.173700", + "Timestamp": "2024-05-16T11:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.048700", + "Timestamp": "2024-05-16T11:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.424900", + "Timestamp": "2024-05-16T11:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.969000", + "Timestamp": "2024-05-16T11:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.597500", + "Timestamp": "2024-05-16T11:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.702900", + "Timestamp": "2024-05-16T11:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.743300", + "Timestamp": "2024-05-16T11:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.713300", + "Timestamp": "2024-05-16T11:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.613300", + "Timestamp": "2024-05-16T11:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.825300", + "Timestamp": "2024-05-16T11:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.483000", + "Timestamp": "2024-05-16T11:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.478000", + "Timestamp": "2024-05-16T11:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.353000", + "Timestamp": "2024-05-16T11:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.722600", + "Timestamp": "2024-05-16T11:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065900", + "Timestamp": "2024-05-16T11:02:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.062200", + "Timestamp": "2024-05-16T11:02:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005900", + "Timestamp": "2024-05-16T11:02:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.269100", + "Timestamp": "2024-05-16T11:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.221000", + "Timestamp": "2024-05-16T11:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113300", + "Timestamp": "2024-05-16T11:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153300", + "Timestamp": "2024-05-16T11:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053300", + "Timestamp": "2024-05-16T11:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.035500", + "Timestamp": "2024-05-16T11:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.030500", + "Timestamp": "2024-05-16T11:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.905500", + "Timestamp": "2024-05-16T11:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.937000", + "Timestamp": "2024-05-16T11:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.932000", + "Timestamp": "2024-05-16T11:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.807000", + "Timestamp": "2024-05-16T11:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278700", + "Timestamp": "2024-05-16T11:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273700", + "Timestamp": "2024-05-16T11:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148700", + "Timestamp": "2024-05-16T11:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.256700", + "Timestamp": "2024-05-16T11:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.251700", + "Timestamp": "2024-05-16T11:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.126700", + "Timestamp": "2024-05-16T11:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.178800", + "Timestamp": "2024-05-16T11:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.173800", + "Timestamp": "2024-05-16T11:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.048800", + "Timestamp": "2024-05-16T11:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.606100", + "Timestamp": "2024-05-16T11:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.601100", + "Timestamp": "2024-05-16T11:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.476100", + "Timestamp": "2024-05-16T11:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.500100", + "Timestamp": "2024-05-16T11:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.509600", + "Timestamp": "2024-05-16T11:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.646200", + "Timestamp": "2024-05-16T11:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "trn1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.345900", + "Timestamp": "2024-05-16T11:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "trn1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.315900", + "Timestamp": "2024-05-16T11:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "trn1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.215900", + "Timestamp": "2024-05-16T11:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.305400", + "Timestamp": "2024-05-16T11:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.300400", + "Timestamp": "2024-05-16T11:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.175400", + "Timestamp": "2024-05-16T11:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.234500", + "Timestamp": "2024-05-16T11:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.229500", + "Timestamp": "2024-05-16T11:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.104500", + "Timestamp": "2024-05-16T11:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.193400", + "Timestamp": "2024-05-16T11:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.163400", + "Timestamp": "2024-05-16T11:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.063400", + "Timestamp": "2024-05-16T11:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.605600", + "Timestamp": "2024-05-16T11:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.434500", + "Timestamp": "2024-05-16T11:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.429500", + "Timestamp": "2024-05-16T11:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.304500", + "Timestamp": "2024-05-16T11:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.212200", + "Timestamp": "2024-05-16T11:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.213900", + "Timestamp": "2024-05-16T11:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.740800", + "Timestamp": "2024-05-16T11:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.797500", + "Timestamp": "2024-05-16T11:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.802500", + "Timestamp": "2024-05-16T11:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.922500", + "Timestamp": "2024-05-16T11:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.527500", + "Timestamp": "2024-05-16T11:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.522500", + "Timestamp": "2024-05-16T11:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.397500", + "Timestamp": "2024-05-16T11:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.461300", + "Timestamp": "2024-05-16T11:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.994800", + "Timestamp": "2024-05-16T11:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.865700", + "Timestamp": "2024-05-16T11:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.860700", + "Timestamp": "2024-05-16T11:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.735700", + "Timestamp": "2024-05-16T11:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.732400", + "Timestamp": "2024-05-16T11:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.979600", + "Timestamp": "2024-05-16T11:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.758900", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.753900", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.628900", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.476500", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.973400", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.968400", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.843400", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.864300", + "Timestamp": "2024-05-16T11:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.008800", + "Timestamp": "2024-05-16T11:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.003800", + "Timestamp": "2024-05-16T11:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.878800", + "Timestamp": "2024-05-16T11:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.450000", + "Timestamp": "2024-05-16T11:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.416900", + "Timestamp": "2024-05-16T11:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.411900", + "Timestamp": "2024-05-16T11:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.286900", + "Timestamp": "2024-05-16T11:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.913800", + "Timestamp": "2024-05-16T11:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.883800", + "Timestamp": "2024-05-16T11:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.783800", + "Timestamp": "2024-05-16T11:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297000", + "Timestamp": "2024-05-16T11:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.292000", + "Timestamp": "2024-05-16T11:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167000", + "Timestamp": "2024-05-16T11:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.577800", + "Timestamp": "2024-05-16T11:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.054800", + "Timestamp": "2024-05-16T11:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.049800", + "Timestamp": "2024-05-16T11:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.924800", + "Timestamp": "2024-05-16T11:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.887000", + "Timestamp": "2024-05-16T11:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.882000", + "Timestamp": "2024-05-16T11:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.757000", + "Timestamp": "2024-05-16T11:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.934100", + "Timestamp": "2024-05-16T11:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.929100", + "Timestamp": "2024-05-16T11:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.804100", + "Timestamp": "2024-05-16T11:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.397400", + "Timestamp": "2024-05-16T11:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.392400", + "Timestamp": "2024-05-16T11:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.267400", + "Timestamp": "2024-05-16T11:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.455300", + "Timestamp": "2024-05-16T11:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.450300", + "Timestamp": "2024-05-16T11:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.325300", + "Timestamp": "2024-05-16T11:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271200", + "Timestamp": "2024-05-16T11:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266200", + "Timestamp": "2024-05-16T11:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141200", + "Timestamp": "2024-05-16T11:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.242300", + "Timestamp": "2024-05-16T11:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.237300", + "Timestamp": "2024-05-16T11:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112300", + "Timestamp": "2024-05-16T11:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206500", + "Timestamp": "2024-05-16T11:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160000", + "Timestamp": "2024-05-16T11:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156300", + "Timestamp": "2024-05-16T11:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100000", + "Timestamp": "2024-05-16T11:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.049900", + "Timestamp": "2024-05-16T11:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.044900", + "Timestamp": "2024-05-16T11:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.919900", + "Timestamp": "2024-05-16T11:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.849100", + "Timestamp": "2024-05-16T11:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.844100", + "Timestamp": "2024-05-16T11:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.719100", + "Timestamp": "2024-05-16T11:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.140100", + "Timestamp": "2024-05-16T11:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.949400", + "Timestamp": "2024-05-16T11:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.273200", + "Timestamp": "2024-05-16T11:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.834900", + "Timestamp": "2024-05-16T11:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.770100", + "Timestamp": "2024-05-16T11:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.765100", + "Timestamp": "2024-05-16T11:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.640100", + "Timestamp": "2024-05-16T11:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T11:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096800", + "Timestamp": "2024-05-16T11:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040800", + "Timestamp": "2024-05-16T11:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.266200", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.261200", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136200", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.816800", + "Timestamp": "2024-05-16T11:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.396600", + "Timestamp": "2024-05-16T11:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.391600", + "Timestamp": "2024-05-16T11:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.266600", + "Timestamp": "2024-05-16T11:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.491500", + "Timestamp": "2024-05-16T11:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.461500", + "Timestamp": "2024-05-16T11:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.361500", + "Timestamp": "2024-05-16T11:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.248500", + "Timestamp": "2024-05-16T11:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.243500", + "Timestamp": "2024-05-16T11:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118500", + "Timestamp": "2024-05-16T11:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207000", + "Timestamp": "2024-05-16T11:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.826700", + "Timestamp": "2024-05-16T11:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160700", + "Timestamp": "2024-05-16T11:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157000", + "Timestamp": "2024-05-16T11:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100700", + "Timestamp": "2024-05-16T11:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.854400", + "Timestamp": "2024-05-16T11:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.849400", + "Timestamp": "2024-05-16T11:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.724400", + "Timestamp": "2024-05-16T11:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080700", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077000", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020700", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.405700", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.402400", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170800", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166800", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.227000", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.222000", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.097000", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.723800", + "Timestamp": "2024-05-16T11:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.718800", + "Timestamp": "2024-05-16T11:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.593800", + "Timestamp": "2024-05-16T11:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.180600", + "Timestamp": "2024-05-16T11:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.176900", + "Timestamp": "2024-05-16T11:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120600", + "Timestamp": "2024-05-16T11:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.569900", + "Timestamp": "2024-05-16T11:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.564900", + "Timestamp": "2024-05-16T11:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.439900", + "Timestamp": "2024-05-16T11:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.909100", + "Timestamp": "2024-05-16T11:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.904100", + "Timestamp": "2024-05-16T11:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.779100", + "Timestamp": "2024-05-16T11:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.140900", + "Timestamp": "2024-05-16T11:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.191700", + "Timestamp": "2024-05-16T11:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.186700", + "Timestamp": "2024-05-16T11:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.061700", + "Timestamp": "2024-05-16T11:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311400", + "Timestamp": "2024-05-16T11:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.306400", + "Timestamp": "2024-05-16T11:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181400", + "Timestamp": "2024-05-16T11:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.426900", + "Timestamp": "2024-05-16T11:02:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.217900", + "Timestamp": "2024-05-16T11:02:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.187900", + "Timestamp": "2024-05-16T11:02:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.087900", + "Timestamp": "2024-05-16T11:02:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.438000", + "Timestamp": "2024-05-16T11:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.433000", + "Timestamp": "2024-05-16T11:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.308000", + "Timestamp": "2024-05-16T11:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.430400", + "Timestamp": "2024-05-16T11:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.426400", + "Timestamp": "2024-05-16T11:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.370400", + "Timestamp": "2024-05-16T11:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271200", + "Timestamp": "2024-05-16T11:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266200", + "Timestamp": "2024-05-16T11:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141200", + "Timestamp": "2024-05-16T11:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.585000", + "Timestamp": "2024-05-16T11:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.580000", + "Timestamp": "2024-05-16T11:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.455000", + "Timestamp": "2024-05-16T11:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.860700", + "Timestamp": "2024-05-16T11:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.855700", + "Timestamp": "2024-05-16T11:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.730700", + "Timestamp": "2024-05-16T11:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176800", + "Timestamp": "2024-05-16T11:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173100", + "Timestamp": "2024-05-16T11:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116800", + "Timestamp": "2024-05-16T11:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123900", + "Timestamp": "2024-05-16T11:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120200", + "Timestamp": "2024-05-16T11:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063900", + "Timestamp": "2024-05-16T11:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.452200", + "Timestamp": "2024-05-16T11:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.447200", + "Timestamp": "2024-05-16T11:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.322200", + "Timestamp": "2024-05-16T11:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.802100", + "Timestamp": "2024-05-16T11:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.797100", + "Timestamp": "2024-05-16T11:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.672100", + "Timestamp": "2024-05-16T11:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.192300", + "Timestamp": "2024-05-16T11:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.187300", + "Timestamp": "2024-05-16T11:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.062300", + "Timestamp": "2024-05-16T11:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.148600", + "Timestamp": "2024-05-16T11:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.143600", + "Timestamp": "2024-05-16T11:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.018600", + "Timestamp": "2024-05-16T11:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.827500", + "Timestamp": "2024-05-16T11:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.797500", + "Timestamp": "2024-05-16T11:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.697500", + "Timestamp": "2024-05-16T11:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.810600", + "Timestamp": "2024-05-16T11:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113400", + "Timestamp": "2024-05-16T11:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T11:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053400", + "Timestamp": "2024-05-16T11:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.104900", + "Timestamp": "2024-05-16T11:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.099900", + "Timestamp": "2024-05-16T11:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.974900", + "Timestamp": "2024-05-16T11:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.267400", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262400", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137400", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.428700", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.423700", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.298700", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085800", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082100", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025800", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.906900", + "Timestamp": "2024-05-16T11:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.901900", + "Timestamp": "2024-05-16T11:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.776900", + "Timestamp": "2024-05-16T11:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.819800", + "Timestamp": "2024-05-16T11:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.203800", + "Timestamp": "2024-05-16T11:01:59.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.526500", + "Timestamp": "2024-05-16T11:01:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.521500", + "Timestamp": "2024-05-16T11:01:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.396500", + "Timestamp": "2024-05-16T11:01:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158900", + "Timestamp": "2024-05-16T11:01:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155200", + "Timestamp": "2024-05-16T11:01:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098900", + "Timestamp": "2024-05-16T11:01:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.149200", + "Timestamp": "2024-05-16T11:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.119200", + "Timestamp": "2024-05-16T11:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.019200", + "Timestamp": "2024-05-16T11:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.612400", + "Timestamp": "2024-05-16T11:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.607400", + "Timestamp": "2024-05-16T11:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.482400", + "Timestamp": "2024-05-16T11:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.230200", + "Timestamp": "2024-05-16T11:01:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.942600", + "Timestamp": "2024-05-16T11:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.912600", + "Timestamp": "2024-05-16T11:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.812600", + "Timestamp": "2024-05-16T11:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.409300", + "Timestamp": "2024-05-16T11:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.404300", + "Timestamp": "2024-05-16T11:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.279300", + "Timestamp": "2024-05-16T11:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.374900", + "Timestamp": "2024-05-16T11:01:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.259100", + "Timestamp": "2024-05-16T11:01:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.998700", + "Timestamp": "2024-05-16T11:01:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.993700", + "Timestamp": "2024-05-16T11:01:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.868700", + "Timestamp": "2024-05-16T11:01:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.911300", + "Timestamp": "2024-05-16T11:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.906300", + "Timestamp": "2024-05-16T11:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.781300", + "Timestamp": "2024-05-16T11:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137300", + "Timestamp": "2024-05-16T11:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133300", + "Timestamp": "2024-05-16T11:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077300", + "Timestamp": "2024-05-16T11:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.494000", + "Timestamp": "2024-05-16T11:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.112800", + "Timestamp": "2024-05-16T11:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.107800", + "Timestamp": "2024-05-16T11:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.982800", + "Timestamp": "2024-05-16T11:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.664300", + "Timestamp": "2024-05-16T11:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.634300", + "Timestamp": "2024-05-16T11:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.534300", + "Timestamp": "2024-05-16T11:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.510500", + "Timestamp": "2024-05-16T11:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.505500", + "Timestamp": "2024-05-16T11:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.380500", + "Timestamp": "2024-05-16T11:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.313700", + "Timestamp": "2024-05-16T11:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.308700", + "Timestamp": "2024-05-16T11:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.183700", + "Timestamp": "2024-05-16T11:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065600", + "Timestamp": "2024-05-16T11:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.036600", + "Timestamp": "2024-05-16T11:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005600", + "Timestamp": "2024-05-16T11:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.218000", + "Timestamp": "2024-05-16T11:01:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.213000", + "Timestamp": "2024-05-16T11:01:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.088000", + "Timestamp": "2024-05-16T11:01:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.496900", + "Timestamp": "2024-05-16T11:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.717000", + "Timestamp": "2024-05-16T11:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145000", + "Timestamp": "2024-05-16T11:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185000", + "Timestamp": "2024-05-16T11:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085000", + "Timestamp": "2024-05-16T11:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137300", + "Timestamp": "2024-05-16T11:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133300", + "Timestamp": "2024-05-16T11:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077300", + "Timestamp": "2024-05-16T11:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.790600", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.785600", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.660600", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100600", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044600", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.650600", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.645600", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.520600", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273200", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.243200", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143200", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.221800", + "Timestamp": "2024-05-16T10:55:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.221800", + "Timestamp": "2024-05-16T10:55:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005300", + "Timestamp": "2024-05-16T10:50:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.188500", + "Timestamp": "2024-05-16T10:47:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.183500", + "Timestamp": "2024-05-16T10:47:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.058500", + "Timestamp": "2024-05-16T10:47:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.945200", + "Timestamp": "2024-05-16T10:47:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.940200", + "Timestamp": "2024-05-16T10:47:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.815200", + "Timestamp": "2024-05-16T10:47:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "a1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116800", + "Timestamp": "2024-05-16T10:47:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "a1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113100", + "Timestamp": "2024-05-16T10:47:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "a1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056800", + "Timestamp": "2024-05-16T10:47:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.648500", + "Timestamp": "2024-05-16T10:47:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.643500", + "Timestamp": "2024-05-16T10:47:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.518500", + "Timestamp": "2024-05-16T10:47:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.486600", + "Timestamp": "2024-05-16T10:47:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.336900", + "Timestamp": "2024-05-16T10:47:53.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.331900", + "Timestamp": "2024-05-16T10:47:53.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.206900", + "Timestamp": "2024-05-16T10:47:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.493100", + "Timestamp": "2024-05-16T10:47:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.469600", + "Timestamp": "2024-05-16T10:47:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T10:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.583900", + "Timestamp": "2024-05-16T10:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.454100", + "Timestamp": "2024-05-16T10:47:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.449100", + "Timestamp": "2024-05-16T10:47:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.324100", + "Timestamp": "2024-05-16T10:47:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T10:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.740300", + "Timestamp": "2024-05-16T10:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.232100", + "Timestamp": "2024-05-16T10:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.228100", + "Timestamp": "2024-05-16T10:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172100", + "Timestamp": "2024-05-16T10:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.465300", + "Timestamp": "2024-05-16T10:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.460300", + "Timestamp": "2024-05-16T10:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.335300", + "Timestamp": "2024-05-16T10:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.997000", + "Timestamp": "2024-05-16T10:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.992000", + "Timestamp": "2024-05-16T10:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.867000", + "Timestamp": "2024-05-16T10:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.974400", + "Timestamp": "2024-05-16T10:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.969400", + "Timestamp": "2024-05-16T10:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.844400", + "Timestamp": "2024-05-16T10:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.532700", + "Timestamp": "2024-05-16T10:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.676400", + "Timestamp": "2024-05-16T10:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.419600", + "Timestamp": "2024-05-16T10:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.528300", + "Timestamp": "2024-05-16T10:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.276600", + "Timestamp": "2024-05-16T10:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iezn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.271600", + "Timestamp": "2024-05-16T10:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.146600", + "Timestamp": "2024-05-16T10:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.236100", + "Timestamp": "2024-05-16T10:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.179600", + "Timestamp": "2024-05-16T10:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.351300", + "Timestamp": "2024-05-16T10:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.346300", + "Timestamp": "2024-05-16T10:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.221300", + "Timestamp": "2024-05-16T10:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.402200", + "Timestamp": "2024-05-16T10:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.397200", + "Timestamp": "2024-05-16T10:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.272200", + "Timestamp": "2024-05-16T10:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.738400", + "Timestamp": "2024-05-16T10:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.708400", + "Timestamp": "2024-05-16T10:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.608400", + "Timestamp": "2024-05-16T10:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.069700", + "Timestamp": "2024-05-16T10:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.704500", + "Timestamp": "2024-05-16T10:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.699500", + "Timestamp": "2024-05-16T10:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.574500", + "Timestamp": "2024-05-16T10:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.126000", + "Timestamp": "2024-05-16T10:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.647600", + "Timestamp": "2024-05-16T10:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094600", + "Timestamp": "2024-05-16T10:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090900", + "Timestamp": "2024-05-16T10:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034600", + "Timestamp": "2024-05-16T10:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.449700", + "Timestamp": "2024-05-16T10:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.444700", + "Timestamp": "2024-05-16T10:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.319700", + "Timestamp": "2024-05-16T10:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.648000", + "Timestamp": "2024-05-16T10:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "f1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.618000", + "Timestamp": "2024-05-16T10:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.518000", + "Timestamp": "2024-05-16T10:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.072500", + "Timestamp": "2024-05-16T10:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.067500", + "Timestamp": "2024-05-16T10:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.942500", + "Timestamp": "2024-05-16T10:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429100", + "Timestamp": "2024-05-16T10:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Windows", + "SpotPrice": "3.575000", + "Timestamp": "2024-05-16T10:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.448100", + "Timestamp": "2024-05-16T10:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.443100", + "Timestamp": "2024-05-16T10:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.318100", + "Timestamp": "2024-05-16T10:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.090700", + "Timestamp": "2024-05-16T10:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.085700", + "Timestamp": "2024-05-16T10:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.960700", + "Timestamp": "2024-05-16T10:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.321200", + "Timestamp": "2024-05-16T10:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.316200", + "Timestamp": "2024-05-16T10:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.191200", + "Timestamp": "2024-05-16T10:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.519000", + "Timestamp": "2024-05-16T10:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.514000", + "Timestamp": "2024-05-16T10:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.389000", + "Timestamp": "2024-05-16T10:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.514200", + "Timestamp": "2024-05-16T10:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.509200", + "Timestamp": "2024-05-16T10:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.384200", + "Timestamp": "2024-05-16T10:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.144400", + "Timestamp": "2024-05-16T10:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.491800", + "Timestamp": "2024-05-16T10:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.486800", + "Timestamp": "2024-05-16T10:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.361800", + "Timestamp": "2024-05-16T10:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.499200", + "Timestamp": "2024-05-16T10:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.494200", + "Timestamp": "2024-05-16T10:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.369200", + "Timestamp": "2024-05-16T10:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.514200", + "Timestamp": "2024-05-16T10:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.509200", + "Timestamp": "2024-05-16T10:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.384200", + "Timestamp": "2024-05-16T10:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212600", + "Timestamp": "2024-05-16T10:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.409900", + "Timestamp": "2024-05-16T10:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.404900", + "Timestamp": "2024-05-16T10:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.279900", + "Timestamp": "2024-05-16T10:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.314700", + "Timestamp": "2024-05-16T10:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.147100", + "Timestamp": "2024-05-16T10:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.309700", + "Timestamp": "2024-05-16T10:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.142100", + "Timestamp": "2024-05-16T10:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.184700", + "Timestamp": "2024-05-16T10:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.017100", + "Timestamp": "2024-05-16T10:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.001900", + "Timestamp": "2024-05-16T10:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.996900", + "Timestamp": "2024-05-16T10:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.871900", + "Timestamp": "2024-05-16T10:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.713100", + "Timestamp": "2024-05-16T10:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.708100", + "Timestamp": "2024-05-16T10:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.583100", + "Timestamp": "2024-05-16T10:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.463000", + "Timestamp": "2024-05-16T10:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.458000", + "Timestamp": "2024-05-16T10:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.333000", + "Timestamp": "2024-05-16T10:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.460100", + "Timestamp": "2024-05-16T10:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.323500", + "Timestamp": "2024-05-16T10:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299800", + "Timestamp": "2024-05-16T10:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294800", + "Timestamp": "2024-05-16T10:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169800", + "Timestamp": "2024-05-16T10:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.473100", + "Timestamp": "2024-05-16T10:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.651700", + "Timestamp": "2024-05-16T10:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.646700", + "Timestamp": "2024-05-16T10:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.521700", + "Timestamp": "2024-05-16T10:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278600", + "Timestamp": "2024-05-16T10:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273600", + "Timestamp": "2024-05-16T10:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148600", + "Timestamp": "2024-05-16T10:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.572100", + "Timestamp": "2024-05-16T10:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.567100", + "Timestamp": "2024-05-16T10:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.442100", + "Timestamp": "2024-05-16T10:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.432600", + "Timestamp": "2024-05-16T10:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.427600", + "Timestamp": "2024-05-16T10:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.302600", + "Timestamp": "2024-05-16T10:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.438000", + "Timestamp": "2024-05-16T10:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.433000", + "Timestamp": "2024-05-16T10:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.308000", + "Timestamp": "2024-05-16T10:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.029400", + "Timestamp": "2024-05-16T10:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.024400", + "Timestamp": "2024-05-16T10:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.899400", + "Timestamp": "2024-05-16T10:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.346300", + "Timestamp": "2024-05-16T10:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.308200", + "Timestamp": "2024-05-16T10:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.278200", + "Timestamp": "2024-05-16T10:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.178200", + "Timestamp": "2024-05-16T10:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.285700", + "Timestamp": "2024-05-16T10:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.280700", + "Timestamp": "2024-05-16T10:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.155700", + "Timestamp": "2024-05-16T10:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.019600", + "Timestamp": "2024-05-16T10:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.903900", + "Timestamp": "2024-05-16T10:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.898900", + "Timestamp": "2024-05-16T10:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.773900", + "Timestamp": "2024-05-16T10:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215800", + "Timestamp": "2024-05-16T10:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.984800", + "Timestamp": "2024-05-16T10:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.979800", + "Timestamp": "2024-05-16T10:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.854800", + "Timestamp": "2024-05-16T10:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.904900", + "Timestamp": "2024-05-16T10:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.899900", + "Timestamp": "2024-05-16T10:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.774900", + "Timestamp": "2024-05-16T10:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.272600", + "Timestamp": "2024-05-16T10:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.267600", + "Timestamp": "2024-05-16T10:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.142600", + "Timestamp": "2024-05-16T10:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.433600", + "Timestamp": "2024-05-16T10:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.428600", + "Timestamp": "2024-05-16T10:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.303600", + "Timestamp": "2024-05-16T10:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.902800", + "Timestamp": "2024-05-16T10:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.531600", + "Timestamp": "2024-05-16T10:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.526600", + "Timestamp": "2024-05-16T10:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.401600", + "Timestamp": "2024-05-16T10:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.808400", + "Timestamp": "2024-05-16T10:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.750000", + "Timestamp": "2024-05-16T10:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.047900", + "Timestamp": "2024-05-16T10:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.042900", + "Timestamp": "2024-05-16T10:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.917900", + "Timestamp": "2024-05-16T10:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.912400", + "Timestamp": "2024-05-16T10:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.907400", + "Timestamp": "2024-05-16T10:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.782400", + "Timestamp": "2024-05-16T10:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.249800", + "Timestamp": "2024-05-16T10:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.721900", + "Timestamp": "2024-05-16T10:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.952900", + "Timestamp": "2024-05-16T10:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.947900", + "Timestamp": "2024-05-16T10:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.822900", + "Timestamp": "2024-05-16T10:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.194700", + "Timestamp": "2024-05-16T10:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.191000", + "Timestamp": "2024-05-16T10:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134700", + "Timestamp": "2024-05-16T10:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.659900", + "Timestamp": "2024-05-16T10:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.014900", + "Timestamp": "2024-05-16T10:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.009900", + "Timestamp": "2024-05-16T10:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.884900", + "Timestamp": "2024-05-16T10:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.222800", + "Timestamp": "2024-05-16T10:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.126100", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.121100", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.996100", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.312300", + "Timestamp": "2024-05-16T10:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.282300", + "Timestamp": "2024-05-16T10:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.182300", + "Timestamp": "2024-05-16T10:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.419000", + "Timestamp": "2024-05-16T10:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.557000", + "Timestamp": "2024-05-16T10:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.552000", + "Timestamp": "2024-05-16T10:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.427000", + "Timestamp": "2024-05-16T10:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109200", + "Timestamp": "2024-05-16T10:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T10:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049200", + "Timestamp": "2024-05-16T10:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.822300", + "Timestamp": "2024-05-16T10:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.817300", + "Timestamp": "2024-05-16T10:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.692300", + "Timestamp": "2024-05-16T10:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.246400", + "Timestamp": "2024-05-16T10:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.241400", + "Timestamp": "2024-05-16T10:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-16T10:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.127500", + "Timestamp": "2024-05-16T10:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.122500", + "Timestamp": "2024-05-16T10:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.997500", + "Timestamp": "2024-05-16T10:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.821100", + "Timestamp": "2024-05-16T10:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.816100", + "Timestamp": "2024-05-16T10:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.691100", + "Timestamp": "2024-05-16T10:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122000", + "Timestamp": "2024-05-16T10:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118300", + "Timestamp": "2024-05-16T10:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062000", + "Timestamp": "2024-05-16T10:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.258900", + "Timestamp": "2024-05-16T10:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.253900", + "Timestamp": "2024-05-16T10:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128900", + "Timestamp": "2024-05-16T10:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "f1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.270000", + "Timestamp": "2024-05-16T10:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "f1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.240000", + "Timestamp": "2024-05-16T10:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "f1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.140000", + "Timestamp": "2024-05-16T10:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.707500", + "Timestamp": "2024-05-16T10:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.702500", + "Timestamp": "2024-05-16T10:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.577500", + "Timestamp": "2024-05-16T10:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.427300", + "Timestamp": "2024-05-16T10:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.422300", + "Timestamp": "2024-05-16T10:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.297300", + "Timestamp": "2024-05-16T10:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.562100", + "Timestamp": "2024-05-16T10:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.557100", + "Timestamp": "2024-05-16T10:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.432100", + "Timestamp": "2024-05-16T10:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.682800", + "Timestamp": "2024-05-16T10:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.652800", + "Timestamp": "2024-05-16T10:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.552800", + "Timestamp": "2024-05-16T10:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.452200", + "Timestamp": "2024-05-16T10:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.422200", + "Timestamp": "2024-05-16T10:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.322200", + "Timestamp": "2024-05-16T10:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.891800", + "Timestamp": "2024-05-16T10:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.886800", + "Timestamp": "2024-05-16T10:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.761800", + "Timestamp": "2024-05-16T10:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.798700", + "Timestamp": "2024-05-16T10:47:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.793700", + "Timestamp": "2024-05-16T10:47:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.668700", + "Timestamp": "2024-05-16T10:47:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T10:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T10:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051000", + "Timestamp": "2024-05-16T10:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.687900", + "Timestamp": "2024-05-16T10:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.657900", + "Timestamp": "2024-05-16T10:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.557900", + "Timestamp": "2024-05-16T10:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.280400", + "Timestamp": "2024-05-16T10:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.250400", + "Timestamp": "2024-05-16T10:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150400", + "Timestamp": "2024-05-16T10:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T10:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093400", + "Timestamp": "2024-05-16T10:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037100", + "Timestamp": "2024-05-16T10:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T10:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.890000", + "Timestamp": "2024-05-16T10:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.175200", + "Timestamp": "2024-05-16T10:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.171500", + "Timestamp": "2024-05-16T10:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115200", + "Timestamp": "2024-05-16T10:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.630500", + "Timestamp": "2024-05-16T10:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.625500", + "Timestamp": "2024-05-16T10:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.500500", + "Timestamp": "2024-05-16T10:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.755300", + "Timestamp": "2024-05-16T10:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.725300", + "Timestamp": "2024-05-16T10:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.625300", + "Timestamp": "2024-05-16T10:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.683900", + "Timestamp": "2024-05-16T10:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.451400", + "Timestamp": "2024-05-16T10:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.446400", + "Timestamp": "2024-05-16T10:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.321400", + "Timestamp": "2024-05-16T10:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168500", + "Timestamp": "2024-05-16T10:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164800", + "Timestamp": "2024-05-16T10:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108500", + "Timestamp": "2024-05-16T10:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.365300", + "Timestamp": "2024-05-16T10:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.360300", + "Timestamp": "2024-05-16T10:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235300", + "Timestamp": "2024-05-16T10:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.870300", + "Timestamp": "2024-05-16T10:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.570700", + "Timestamp": "2024-05-16T10:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.565700", + "Timestamp": "2024-05-16T10:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.440700", + "Timestamp": "2024-05-16T10:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.009000", + "Timestamp": "2024-05-16T10:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.004000", + "Timestamp": "2024-05-16T10:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.879000", + "Timestamp": "2024-05-16T10:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141300", + "Timestamp": "2024-05-16T10:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137600", + "Timestamp": "2024-05-16T10:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081300", + "Timestamp": "2024-05-16T10:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.037500", + "Timestamp": "2024-05-16T10:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.024900", + "Timestamp": "2024-05-16T10:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.407800", + "Timestamp": "2024-05-16T10:47:01.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.402800", + "Timestamp": "2024-05-16T10:47:01.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.277800", + "Timestamp": "2024-05-16T10:47:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.735800", + "Timestamp": "2024-05-16T10:47:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.705800", + "Timestamp": "2024-05-16T10:47:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.605800", + "Timestamp": "2024-05-16T10:47:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-16T10:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096600", + "Timestamp": "2024-05-16T10:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092900", + "Timestamp": "2024-05-16T10:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036600", + "Timestamp": "2024-05-16T10:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.413100", + "Timestamp": "2024-05-16T10:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.383100", + "Timestamp": "2024-05-16T10:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.283100", + "Timestamp": "2024-05-16T10:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.850400", + "Timestamp": "2024-05-16T10:46:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137100", + "Timestamp": "2024-05-16T10:46:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133100", + "Timestamp": "2024-05-16T10:46:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077100", + "Timestamp": "2024-05-16T10:46:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.957300", + "Timestamp": "2024-05-16T10:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.927300", + "Timestamp": "2024-05-16T10:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.827300", + "Timestamp": "2024-05-16T10:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.410600", + "Timestamp": "2024-05-16T10:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.802400", + "Timestamp": "2024-05-16T10:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.797400", + "Timestamp": "2024-05-16T10:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.672400", + "Timestamp": "2024-05-16T10:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.914700", + "Timestamp": "2024-05-16T10:46:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.909700", + "Timestamp": "2024-05-16T10:46:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.784700", + "Timestamp": "2024-05-16T10:46:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.409200", + "Timestamp": "2024-05-16T10:46:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.283600", + "Timestamp": "2024-05-16T10:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.234700", + "Timestamp": "2024-05-16T10:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.229700", + "Timestamp": "2024-05-16T10:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.104700", + "Timestamp": "2024-05-16T10:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.525300", + "Timestamp": "2024-05-16T10:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.520300", + "Timestamp": "2024-05-16T10:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.395300", + "Timestamp": "2024-05-16T10:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.449900", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.444900", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.319900", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101900", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098200", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041900", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.704400", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.699400", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.574400", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.143500", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.113500", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.013500", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.842100", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200800", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.197100", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140800", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.302300", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.272300", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172300", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.293500", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.288500", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.163500", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.020500", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.990500", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.890500", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.434900", + "Timestamp": "2024-05-16T10:32:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.429900", + "Timestamp": "2024-05-16T10:32:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.304900", + "Timestamp": "2024-05-16T10:32:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.806200", + "Timestamp": "2024-05-16T10:32:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.460500", + "Timestamp": "2024-05-16T10:32:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.404400", + "Timestamp": "2024-05-16T10:32:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.811200", + "Timestamp": "2024-05-16T10:32:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.806200", + "Timestamp": "2024-05-16T10:32:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.681200", + "Timestamp": "2024-05-16T10:32:55.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.233300", + "Timestamp": "2024-05-16T10:32:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.228300", + "Timestamp": "2024-05-16T10:32:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T10:32:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.493200", + "Timestamp": "2024-05-16T10:32:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.227800", + "Timestamp": "2024-05-16T10:32:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.748800", + "Timestamp": "2024-05-16T10:32:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.832800", + "Timestamp": "2024-05-16T10:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.415700", + "Timestamp": "2024-05-16T10:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.556800", + "Timestamp": "2024-05-16T10:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.602600", + "Timestamp": "2024-05-16T10:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.597600", + "Timestamp": "2024-05-16T10:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.472600", + "Timestamp": "2024-05-16T10:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.638300", + "Timestamp": "2024-05-16T10:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.633300", + "Timestamp": "2024-05-16T10:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.508300", + "Timestamp": "2024-05-16T10:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.897200", + "Timestamp": "2024-05-16T10:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.892200", + "Timestamp": "2024-05-16T10:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.767200", + "Timestamp": "2024-05-16T10:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.775800", + "Timestamp": "2024-05-16T10:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.175100", + "Timestamp": "2024-05-16T10:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.215100", + "Timestamp": "2024-05-16T10:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115100", + "Timestamp": "2024-05-16T10:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.346600", + "Timestamp": "2024-05-16T10:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.341600", + "Timestamp": "2024-05-16T10:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.216600", + "Timestamp": "2024-05-16T10:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.560600", + "Timestamp": "2024-05-16T10:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.555600", + "Timestamp": "2024-05-16T10:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.430600", + "Timestamp": "2024-05-16T10:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.375200", + "Timestamp": "2024-05-16T10:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.370200", + "Timestamp": "2024-05-16T10:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.245200", + "Timestamp": "2024-05-16T10:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.685900", + "Timestamp": "2024-05-16T10:32:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.885000", + "Timestamp": "2024-05-16T10:32:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.115300", + "Timestamp": "2024-05-16T10:32:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T10:32:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.726900", + "Timestamp": "2024-05-16T10:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.721900", + "Timestamp": "2024-05-16T10:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.596900", + "Timestamp": "2024-05-16T10:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.501300", + "Timestamp": "2024-05-16T10:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.496300", + "Timestamp": "2024-05-16T10:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.371300", + "Timestamp": "2024-05-16T10:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.637400", + "Timestamp": "2024-05-16T10:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.770400", + "Timestamp": "2024-05-16T10:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.451700", + "Timestamp": "2024-05-16T10:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.617300", + "Timestamp": "2024-05-16T10:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.587300", + "Timestamp": "2024-05-16T10:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.487300", + "Timestamp": "2024-05-16T10:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.325100", + "Timestamp": "2024-05-16T10:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.320100", + "Timestamp": "2024-05-16T10:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.195100", + "Timestamp": "2024-05-16T10:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.688400", + "Timestamp": "2024-05-16T10:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.620400", + "Timestamp": "2024-05-16T10:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.615400", + "Timestamp": "2024-05-16T10:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.490400", + "Timestamp": "2024-05-16T10:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.465200", + "Timestamp": "2024-05-16T10:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.460200", + "Timestamp": "2024-05-16T10:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.335200", + "Timestamp": "2024-05-16T10:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.629300", + "Timestamp": "2024-05-16T10:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.624300", + "Timestamp": "2024-05-16T10:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.499300", + "Timestamp": "2024-05-16T10:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.894000", + "Timestamp": "2024-05-16T10:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.802100", + "Timestamp": "2024-05-16T10:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.605200", + "Timestamp": "2024-05-16T10:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.108200", + "Timestamp": "2024-05-16T10:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.103200", + "Timestamp": "2024-05-16T10:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.978200", + "Timestamp": "2024-05-16T10:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T10:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098400", + "Timestamp": "2024-05-16T10:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042100", + "Timestamp": "2024-05-16T10:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.926200", + "Timestamp": "2024-05-16T10:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.896200", + "Timestamp": "2024-05-16T10:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.796200", + "Timestamp": "2024-05-16T10:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.414000", + "Timestamp": "2024-05-16T10:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.409000", + "Timestamp": "2024-05-16T10:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.284000", + "Timestamp": "2024-05-16T10:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314500", + "Timestamp": "2024-05-16T10:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.309500", + "Timestamp": "2024-05-16T10:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184500", + "Timestamp": "2024-05-16T10:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.601400", + "Timestamp": "2024-05-16T10:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.596400", + "Timestamp": "2024-05-16T10:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.471400", + "Timestamp": "2024-05-16T10:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.699800", + "Timestamp": "2024-05-16T10:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.694800", + "Timestamp": "2024-05-16T10:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.569800", + "Timestamp": "2024-05-16T10:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.717900", + "Timestamp": "2024-05-16T10:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.162700", + "Timestamp": "2024-05-16T10:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.157700", + "Timestamp": "2024-05-16T10:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.032700", + "Timestamp": "2024-05-16T10:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.340800", + "Timestamp": "2024-05-16T10:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.335800", + "Timestamp": "2024-05-16T10:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.210800", + "Timestamp": "2024-05-16T10:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.897800", + "Timestamp": "2024-05-16T10:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137800", + "Timestamp": "2024-05-16T10:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134100", + "Timestamp": "2024-05-16T10:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077800", + "Timestamp": "2024-05-16T10:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122500", + "Timestamp": "2024-05-16T10:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118800", + "Timestamp": "2024-05-16T10:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062500", + "Timestamp": "2024-05-16T10:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.185300", + "Timestamp": "2024-05-16T10:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.618000", + "Timestamp": "2024-05-16T10:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.456200", + "Timestamp": "2024-05-16T10:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.066700", + "Timestamp": "2024-05-16T10:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.061700", + "Timestamp": "2024-05-16T10:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.936700", + "Timestamp": "2024-05-16T10:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.570200", + "Timestamp": "2024-05-16T10:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.540200", + "Timestamp": "2024-05-16T10:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.440200", + "Timestamp": "2024-05-16T10:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.794000", + "Timestamp": "2024-05-16T10:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.789000", + "Timestamp": "2024-05-16T10:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.664000", + "Timestamp": "2024-05-16T10:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.483100", + "Timestamp": "2024-05-16T10:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.478100", + "Timestamp": "2024-05-16T10:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.353100", + "Timestamp": "2024-05-16T10:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.011400", + "Timestamp": "2024-05-16T10:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.006400", + "Timestamp": "2024-05-16T10:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.881400", + "Timestamp": "2024-05-16T10:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.458600", + "Timestamp": "2024-05-16T10:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.453600", + "Timestamp": "2024-05-16T10:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.328600", + "Timestamp": "2024-05-16T10:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.645100", + "Timestamp": "2024-05-16T10:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.689000", + "Timestamp": "2024-05-16T10:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.275700", + "Timestamp": "2024-05-16T10:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270700", + "Timestamp": "2024-05-16T10:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145700", + "Timestamp": "2024-05-16T10:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.229500", + "Timestamp": "2024-05-16T10:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.419500", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.462800", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.971800", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.966800", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.841800", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091600", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087600", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031600", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "f1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.429200", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "f1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.399200", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "f1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.299200", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.838300", + "Timestamp": "2024-05-16T10:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.833300", + "Timestamp": "2024-05-16T10:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.708300", + "Timestamp": "2024-05-16T10:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.708900", + "Timestamp": "2024-05-16T10:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082100", + "Timestamp": "2024-05-16T10:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078400", + "Timestamp": "2024-05-16T10:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022100", + "Timestamp": "2024-05-16T10:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.424600", + "Timestamp": "2024-05-16T10:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.471900", + "Timestamp": "2024-05-16T10:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.743400", + "Timestamp": "2024-05-16T10:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.863000", + "Timestamp": "2024-05-16T10:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.833000", + "Timestamp": "2024-05-16T10:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.733000", + "Timestamp": "2024-05-16T10:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.009600", + "Timestamp": "2024-05-16T10:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.855800", + "Timestamp": "2024-05-16T10:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.850800", + "Timestamp": "2024-05-16T10:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.725800", + "Timestamp": "2024-05-16T10:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.847000", + "Timestamp": "2024-05-16T10:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.290500", + "Timestamp": "2024-05-16T10:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.260500", + "Timestamp": "2024-05-16T10:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.160500", + "Timestamp": "2024-05-16T10:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.237900", + "Timestamp": "2024-05-16T10:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.232900", + "Timestamp": "2024-05-16T10:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.107900", + "Timestamp": "2024-05-16T10:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.498100", + "Timestamp": "2024-05-16T10:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.493100", + "Timestamp": "2024-05-16T10:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.368100", + "Timestamp": "2024-05-16T10:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "a1.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.182200", + "Timestamp": "2024-05-16T10:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "a1.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177200", + "Timestamp": "2024-05-16T10:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "a1.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052200", + "Timestamp": "2024-05-16T10:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.871500", + "Timestamp": "2024-05-16T10:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.866500", + "Timestamp": "2024-05-16T10:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.741500", + "Timestamp": "2024-05-16T10:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.385700", + "Timestamp": "2024-05-16T10:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.723100", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091200", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093800", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087500", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090100", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031200", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033800", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.435800", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.430800", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.305800", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.592700", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.587700", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.462700", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.840900", + "Timestamp": "2024-05-16T10:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.871500", + "Timestamp": "2024-05-16T10:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.866500", + "Timestamp": "2024-05-16T10:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.741500", + "Timestamp": "2024-05-16T10:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.943600", + "Timestamp": "2024-05-16T10:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.938600", + "Timestamp": "2024-05-16T10:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.813600", + "Timestamp": "2024-05-16T10:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123700", + "Timestamp": "2024-05-16T10:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120000", + "Timestamp": "2024-05-16T10:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063700", + "Timestamp": "2024-05-16T10:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.964600", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120600", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060600", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.205400", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.023200", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.792400", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.018200", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.787400", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.893200", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.662400", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.426400", + "Timestamp": "2024-05-16T10:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.421400", + "Timestamp": "2024-05-16T10:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.296400", + "Timestamp": "2024-05-16T10:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.842300", + "Timestamp": "2024-05-16T10:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.812300", + "Timestamp": "2024-05-16T10:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.712300", + "Timestamp": "2024-05-16T10:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103600", + "Timestamp": "2024-05-16T10:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099900", + "Timestamp": "2024-05-16T10:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043600", + "Timestamp": "2024-05-16T10:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.724600", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.719600", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.594600", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.732400", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.702400", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.602400", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.967200", + "Timestamp": "2024-05-16T10:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.962200", + "Timestamp": "2024-05-16T10:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.837200", + "Timestamp": "2024-05-16T10:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.372200", + "Timestamp": "2024-05-16T10:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.370800", + "Timestamp": "2024-05-16T10:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.367200", + "Timestamp": "2024-05-16T10:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.365800", + "Timestamp": "2024-05-16T10:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242200", + "Timestamp": "2024-05-16T10:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.240800", + "Timestamp": "2024-05-16T10:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.980200", + "Timestamp": "2024-05-16T10:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.975200", + "Timestamp": "2024-05-16T10:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.850200", + "Timestamp": "2024-05-16T10:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.818500", + "Timestamp": "2024-05-16T10:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.813500", + "Timestamp": "2024-05-16T10:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.688500", + "Timestamp": "2024-05-16T10:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126400", + "Timestamp": "2024-05-16T10:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122700", + "Timestamp": "2024-05-16T10:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066400", + "Timestamp": "2024-05-16T10:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.296300", + "Timestamp": "2024-05-16T10:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.635200", + "Timestamp": "2024-05-16T10:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440000", + "Timestamp": "2024-05-16T10:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.015600", + "Timestamp": "2024-05-16T10:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.010600", + "Timestamp": "2024-05-16T10:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.885600", + "Timestamp": "2024-05-16T10:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.433300", + "Timestamp": "2024-05-16T10:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.506900", + "Timestamp": "2024-05-16T10:32:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.501900", + "Timestamp": "2024-05-16T10:32:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.376900", + "Timestamp": "2024-05-16T10:32:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.314500", + "Timestamp": "2024-05-16T10:32:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.408300", + "Timestamp": "2024-05-16T10:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.403300", + "Timestamp": "2024-05-16T10:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.278300", + "Timestamp": "2024-05-16T10:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.503200", + "Timestamp": "2024-05-16T10:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.498200", + "Timestamp": "2024-05-16T10:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.373200", + "Timestamp": "2024-05-16T10:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.027500", + "Timestamp": "2024-05-16T10:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.022500", + "Timestamp": "2024-05-16T10:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.897500", + "Timestamp": "2024-05-16T10:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.369000", + "Timestamp": "2024-05-16T10:32:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.364000", + "Timestamp": "2024-05-16T10:32:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.239000", + "Timestamp": "2024-05-16T10:32:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.488100", + "Timestamp": "2024-05-16T10:32:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.458100", + "Timestamp": "2024-05-16T10:32:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.358100", + "Timestamp": "2024-05-16T10:32:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.755800", + "Timestamp": "2024-05-16T10:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095700", + "Timestamp": "2024-05-16T10:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092000", + "Timestamp": "2024-05-16T10:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035700", + "Timestamp": "2024-05-16T10:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.160600", + "Timestamp": "2024-05-16T10:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.859300", + "Timestamp": "2024-05-16T10:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108900", + "Timestamp": "2024-05-16T10:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.647000", + "Timestamp": "2024-05-16T10:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135100", + "Timestamp": "2024-05-16T10:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131100", + "Timestamp": "2024-05-16T10:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075100", + "Timestamp": "2024-05-16T10:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.379700", + "Timestamp": "2024-05-16T10:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349700", + "Timestamp": "2024-05-16T10:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.249700", + "Timestamp": "2024-05-16T10:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.816300", + "Timestamp": "2024-05-16T10:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.414300", + "Timestamp": "2024-05-16T10:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.409300", + "Timestamp": "2024-05-16T10:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.284300", + "Timestamp": "2024-05-16T10:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.154500", + "Timestamp": "2024-05-16T10:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.234600", + "Timestamp": "2024-05-16T10:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.229600", + "Timestamp": "2024-05-16T10:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T10:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.579100", + "Timestamp": "2024-05-16T10:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.574100", + "Timestamp": "2024-05-16T10:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.449100", + "Timestamp": "2024-05-16T10:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168800", + "Timestamp": "2024-05-16T10:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164800", + "Timestamp": "2024-05-16T10:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108800", + "Timestamp": "2024-05-16T10:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.313000", + "Timestamp": "2024-05-16T10:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.452100", + "Timestamp": "2024-05-16T10:32:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.422100", + "Timestamp": "2024-05-16T10:32:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.322100", + "Timestamp": "2024-05-16T10:32:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.789600", + "Timestamp": "2024-05-16T10:32:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131000", + "Timestamp": "2024-05-16T10:32:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127300", + "Timestamp": "2024-05-16T10:32:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071000", + "Timestamp": "2024-05-16T10:32:01.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "4.921900", + "Timestamp": "2024-05-16T10:31:57.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.594900", + "Timestamp": "2024-05-16T10:31:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.698200", + "Timestamp": "2024-05-16T10:31:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.693200", + "Timestamp": "2024-05-16T10:31:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.568200", + "Timestamp": "2024-05-16T10:31:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.515300", + "Timestamp": "2024-05-16T10:31:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.510300", + "Timestamp": "2024-05-16T10:31:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.385300", + "Timestamp": "2024-05-16T10:31:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.528300", + "Timestamp": "2024-05-16T10:31:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.523300", + "Timestamp": "2024-05-16T10:31:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.398300", + "Timestamp": "2024-05-16T10:31:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.742600", + "Timestamp": "2024-05-16T10:31:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.885900", + "Timestamp": "2024-05-16T10:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.880900", + "Timestamp": "2024-05-16T10:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.755900", + "Timestamp": "2024-05-16T10:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298600", + "Timestamp": "2024-05-16T10:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293600", + "Timestamp": "2024-05-16T10:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168600", + "Timestamp": "2024-05-16T10:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.835100", + "Timestamp": "2024-05-16T10:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.830100", + "Timestamp": "2024-05-16T10:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.705100", + "Timestamp": "2024-05-16T10:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.306100", + "Timestamp": "2024-05-16T10:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.698900", + "Timestamp": "2024-05-16T10:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.693900", + "Timestamp": "2024-05-16T10:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.568900", + "Timestamp": "2024-05-16T10:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.414600", + "Timestamp": "2024-05-16T10:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207700", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.668600", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.342600", + "Timestamp": "2024-05-16T10:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.337600", + "Timestamp": "2024-05-16T10:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.212600", + "Timestamp": "2024-05-16T10:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.421100", + "Timestamp": "2024-05-16T10:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.293100", + "Timestamp": "2024-05-16T10:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.288100", + "Timestamp": "2024-05-16T10:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.163100", + "Timestamp": "2024-05-16T10:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.675900", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.670900", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.545900", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T10:18:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.433800", + "Timestamp": "2024-05-16T10:18:00.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.428800", + "Timestamp": "2024-05-16T10:18:00.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.303800", + "Timestamp": "2024-05-16T10:18:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.388500", + "Timestamp": "2024-05-16T10:17:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.383500", + "Timestamp": "2024-05-16T10:17:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.258500", + "Timestamp": "2024-05-16T10:17:58.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.245800", + "Timestamp": "2024-05-16T10:17:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.006100", + "Timestamp": "2024-05-16T10:17:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.001100", + "Timestamp": "2024-05-16T10:17:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.876100", + "Timestamp": "2024-05-16T10:17:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Windows", + "SpotPrice": "7.291300", + "Timestamp": "2024-05-16T10:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.908200", + "Timestamp": "2024-05-16T10:17:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.903200", + "Timestamp": "2024-05-16T10:17:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.778200", + "Timestamp": "2024-05-16T10:17:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.876900", + "Timestamp": "2024-05-16T10:17:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.871900", + "Timestamp": "2024-05-16T10:17:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.746900", + "Timestamp": "2024-05-16T10:17:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120800", + "Timestamp": "2024-05-16T10:17:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160800", + "Timestamp": "2024-05-16T10:17:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060800", + "Timestamp": "2024-05-16T10:17:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.637600", + "Timestamp": "2024-05-16T10:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.632600", + "Timestamp": "2024-05-16T10:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.507600", + "Timestamp": "2024-05-16T10:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.385100", + "Timestamp": "2024-05-16T10:17:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.235400", + "Timestamp": "2024-05-16T10:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.231400", + "Timestamp": "2024-05-16T10:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175400", + "Timestamp": "2024-05-16T10:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.468800", + "Timestamp": "2024-05-16T10:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.463800", + "Timestamp": "2024-05-16T10:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.338800", + "Timestamp": "2024-05-16T10:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.636000", + "Timestamp": "2024-05-16T10:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.531800", + "Timestamp": "2024-05-16T10:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105500", + "Timestamp": "2024-05-16T10:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.997000", + "Timestamp": "2024-05-16T10:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.992000", + "Timestamp": "2024-05-16T10:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.867000", + "Timestamp": "2024-05-16T10:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176800", + "Timestamp": "2024-05-16T10:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.171800", + "Timestamp": "2024-05-16T10:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046800", + "Timestamp": "2024-05-16T10:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.472700", + "Timestamp": "2024-05-16T10:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.699500", + "Timestamp": "2024-05-16T10:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.508100", + "Timestamp": "2024-05-16T10:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.538800", + "Timestamp": "2024-05-16T10:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.533800", + "Timestamp": "2024-05-16T10:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.408800", + "Timestamp": "2024-05-16T10:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.460000", + "Timestamp": "2024-05-16T10:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.630700", + "Timestamp": "2024-05-16T10:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.625700", + "Timestamp": "2024-05-16T10:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.500700", + "Timestamp": "2024-05-16T10:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.448000", + "Timestamp": "2024-05-16T10:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.526300", + "Timestamp": "2024-05-16T10:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T10:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.725800", + "Timestamp": "2024-05-16T10:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.802300", + "Timestamp": "2024-05-16T10:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.045700", + "Timestamp": "2024-05-16T10:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.290400", + "Timestamp": "2024-05-16T10:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.285400", + "Timestamp": "2024-05-16T10:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.160400", + "Timestamp": "2024-05-16T10:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299500", + "Timestamp": "2024-05-16T10:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269500", + "Timestamp": "2024-05-16T10:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169500", + "Timestamp": "2024-05-16T10:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170800", + "Timestamp": "2024-05-16T10:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.210800", + "Timestamp": "2024-05-16T10:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T10:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.227800", + "Timestamp": "2024-05-16T10:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.222800", + "Timestamp": "2024-05-16T10:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.097800", + "Timestamp": "2024-05-16T10:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.199100", + "Timestamp": "2024-05-16T10:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.109400", + "Timestamp": "2024-05-16T10:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.104400", + "Timestamp": "2024-05-16T10:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.979400", + "Timestamp": "2024-05-16T10:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T10:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144800", + "Timestamp": "2024-05-16T10:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044800", + "Timestamp": "2024-05-16T10:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.263200", + "Timestamp": "2024-05-16T10:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258200", + "Timestamp": "2024-05-16T10:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133200", + "Timestamp": "2024-05-16T10:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.395100", + "Timestamp": "2024-05-16T10:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.390100", + "Timestamp": "2024-05-16T10:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.265100", + "Timestamp": "2024-05-16T10:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.606000", + "Timestamp": "2024-05-16T10:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.688300", + "Timestamp": "2024-05-16T10:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.683300", + "Timestamp": "2024-05-16T10:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.558300", + "Timestamp": "2024-05-16T10:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.600800", + "Timestamp": "2024-05-16T10:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.117900", + "Timestamp": "2024-05-16T10:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.112900", + "Timestamp": "2024-05-16T10:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.987900", + "Timestamp": "2024-05-16T10:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.026800", + "Timestamp": "2024-05-16T10:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.021800", + "Timestamp": "2024-05-16T10:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.896800", + "Timestamp": "2024-05-16T10:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.796400", + "Timestamp": "2024-05-16T10:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.492000", + "Timestamp": "2024-05-16T10:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.292200", + "Timestamp": "2024-05-16T10:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.287200", + "Timestamp": "2024-05-16T10:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.162200", + "Timestamp": "2024-05-16T10:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.017600", + "Timestamp": "2024-05-16T10:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "trn1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.316000", + "Timestamp": "2024-05-16T10:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "trn1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.286000", + "Timestamp": "2024-05-16T10:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "trn1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186000", + "Timestamp": "2024-05-16T10:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.850300", + "Timestamp": "2024-05-16T10:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.562800", + "Timestamp": "2024-05-16T10:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.488700", + "Timestamp": "2024-05-16T10:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.557800", + "Timestamp": "2024-05-16T10:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.483700", + "Timestamp": "2024-05-16T10:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.432800", + "Timestamp": "2024-05-16T10:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.358700", + "Timestamp": "2024-05-16T10:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.939000", + "Timestamp": "2024-05-16T10:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.969400", + "Timestamp": "2024-05-16T10:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.275000", + "Timestamp": "2024-05-16T10:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.760700", + "Timestamp": "2024-05-16T10:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.425300", + "Timestamp": "2024-05-16T10:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.782600", + "Timestamp": "2024-05-16T10:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.777600", + "Timestamp": "2024-05-16T10:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.652600", + "Timestamp": "2024-05-16T10:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.277500", + "Timestamp": "2024-05-16T10:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.272500", + "Timestamp": "2024-05-16T10:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147500", + "Timestamp": "2024-05-16T10:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093800", + "Timestamp": "2024-05-16T10:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090100", + "Timestamp": "2024-05-16T10:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033800", + "Timestamp": "2024-05-16T10:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t1.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063300", + "Timestamp": "2024-05-16T10:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t1.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003300", + "Timestamp": "2024-05-16T10:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t1.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003300", + "Timestamp": "2024-05-16T10:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.736700", + "Timestamp": "2024-05-16T10:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.675200", + "Timestamp": "2024-05-16T10:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.384300", + "Timestamp": "2024-05-16T10:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.379300", + "Timestamp": "2024-05-16T10:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.254300", + "Timestamp": "2024-05-16T10:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213100", + "Timestamp": "2024-05-16T10:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.123600", + "Timestamp": "2024-05-16T10:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.118600", + "Timestamp": "2024-05-16T10:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.993600", + "Timestamp": "2024-05-16T10:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.148800", + "Timestamp": "2024-05-16T10:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.118800", + "Timestamp": "2024-05-16T10:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.018800", + "Timestamp": "2024-05-16T10:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089000", + "Timestamp": "2024-05-16T10:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085000", + "Timestamp": "2024-05-16T10:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029000", + "Timestamp": "2024-05-16T10:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.030300", + "Timestamp": "2024-05-16T10:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.025300", + "Timestamp": "2024-05-16T10:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.900300", + "Timestamp": "2024-05-16T10:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.502300", + "Timestamp": "2024-05-16T10:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.093100", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.088100", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.963100", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.666500", + "Timestamp": "2024-05-16T10:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.413700", + "Timestamp": "2024-05-16T10:17:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.383700", + "Timestamp": "2024-05-16T10:17:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.283700", + "Timestamp": "2024-05-16T10:17:19.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.934800", + "Timestamp": "2024-05-16T10:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.929800", + "Timestamp": "2024-05-16T10:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.804800", + "Timestamp": "2024-05-16T10:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.636000", + "Timestamp": "2024-05-16T10:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.631000", + "Timestamp": "2024-05-16T10:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.506000", + "Timestamp": "2024-05-16T10:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.372200", + "Timestamp": "2024-05-16T10:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.367200", + "Timestamp": "2024-05-16T10:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242200", + "Timestamp": "2024-05-16T10:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T10:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099800", + "Timestamp": "2024-05-16T10:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043800", + "Timestamp": "2024-05-16T10:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.749700", + "Timestamp": "2024-05-16T10:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.744700", + "Timestamp": "2024-05-16T10:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.619700", + "Timestamp": "2024-05-16T10:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.502200", + "Timestamp": "2024-05-16T10:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.254300", + "Timestamp": "2024-05-16T10:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.249300", + "Timestamp": "2024-05-16T10:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124300", + "Timestamp": "2024-05-16T10:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.413000", + "Timestamp": "2024-05-16T10:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.552600", + "Timestamp": "2024-05-16T10:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.547600", + "Timestamp": "2024-05-16T10:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.422600", + "Timestamp": "2024-05-16T10:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.189400", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.219100", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.186400", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.216100", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129400", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159100", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.367200", + "Timestamp": "2024-05-16T10:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.362200", + "Timestamp": "2024-05-16T10:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.237200", + "Timestamp": "2024-05-16T10:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.605800", + "Timestamp": "2024-05-16T10:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063300", + "Timestamp": "2024-05-16T10:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003300", + "Timestamp": "2024-05-16T10:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003300", + "Timestamp": "2024-05-16T10:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.226100", + "Timestamp": "2024-05-16T10:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.340700", + "Timestamp": "2024-05-16T10:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.335700", + "Timestamp": "2024-05-16T10:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.210700", + "Timestamp": "2024-05-16T10:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.749900", + "Timestamp": "2024-05-16T10:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.744900", + "Timestamp": "2024-05-16T10:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.619900", + "Timestamp": "2024-05-16T10:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.757900", + "Timestamp": "2024-05-16T10:17:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.752900", + "Timestamp": "2024-05-16T10:17:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.627900", + "Timestamp": "2024-05-16T10:17:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.361500", + "Timestamp": "2024-05-16T10:17:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.356500", + "Timestamp": "2024-05-16T10:17:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.231500", + "Timestamp": "2024-05-16T10:17:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.409000", + "Timestamp": "2024-05-16T10:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.903400", + "Timestamp": "2024-05-16T10:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.873400", + "Timestamp": "2024-05-16T10:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.773400", + "Timestamp": "2024-05-16T10:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.652800", + "Timestamp": "2024-05-16T10:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.647800", + "Timestamp": "2024-05-16T10:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.522800", + "Timestamp": "2024-05-16T10:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.716200", + "Timestamp": "2024-05-16T10:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.869800", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.864800", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.739800", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.501000", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.570700", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.496000", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.565700", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.371000", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.440700", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156700", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152700", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096700", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145300", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141300", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085300", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.630800", + "Timestamp": "2024-05-16T10:17:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278300", + "Timestamp": "2024-05-16T10:17:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.248300", + "Timestamp": "2024-05-16T10:17:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148300", + "Timestamp": "2024-05-16T10:17:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.521500", + "Timestamp": "2024-05-16T10:17:00.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.317700", + "Timestamp": "2024-05-16T10:16:59.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.312700", + "Timestamp": "2024-05-16T10:16:59.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.187700", + "Timestamp": "2024-05-16T10:16:59.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.295300", + "Timestamp": "2024-05-16T10:16:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.290300", + "Timestamp": "2024-05-16T10:16:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.165300", + "Timestamp": "2024-05-16T10:16:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.852300", + "Timestamp": "2024-05-16T10:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.361900", + "Timestamp": "2024-05-16T10:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "4.934900", + "Timestamp": "2024-05-16T10:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.657400", + "Timestamp": "2024-05-16T10:16:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.290700", + "Timestamp": "2024-05-16T10:16:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.260700", + "Timestamp": "2024-05-16T10:16:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.160700", + "Timestamp": "2024-05-16T10:16:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097900", + "Timestamp": "2024-05-16T10:16:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137900", + "Timestamp": "2024-05-16T10:16:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037900", + "Timestamp": "2024-05-16T10:16:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.243300", + "Timestamp": "2024-05-16T10:16:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.519700", + "Timestamp": "2024-05-16T10:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.471400", + "Timestamp": "2024-05-16T10:16:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.516500", + "Timestamp": "2024-05-16T10:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.467100", + "Timestamp": "2024-05-16T10:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.691400", + "Timestamp": "2024-05-16T10:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.686400", + "Timestamp": "2024-05-16T10:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.561400", + "Timestamp": "2024-05-16T10:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216000", + "Timestamp": "2024-05-16T10:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.923100", + "Timestamp": "2024-05-16T10:16:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.918100", + "Timestamp": "2024-05-16T10:16:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.793100", + "Timestamp": "2024-05-16T10:16:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146200", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142500", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086200", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.606100", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.601100", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.476100", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.378000", + "Timestamp": "2024-05-16T10:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.373000", + "Timestamp": "2024-05-16T10:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.248000", + "Timestamp": "2024-05-16T10:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.184900", + "Timestamp": "2024-05-16T10:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.179900", + "Timestamp": "2024-05-16T10:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.054900", + "Timestamp": "2024-05-16T10:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.663300", + "Timestamp": "2024-05-16T10:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097400", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093400", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037400", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.183100", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179100", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123100", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133100", + "Timestamp": "2024-05-16T10:16:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129100", + "Timestamp": "2024-05-16T10:16:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073100", + "Timestamp": "2024-05-16T10:16:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.649000", + "Timestamp": "2024-05-16T10:16:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.619000", + "Timestamp": "2024-05-16T10:16:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.519000", + "Timestamp": "2024-05-16T10:16:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.766100", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.394300", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.389300", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.264300", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.289900", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.285900", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.229900", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.389000", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.384000", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.259000", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.568700", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.563700", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.438700", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.830700", + "Timestamp": "2024-05-16T10:04:00.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.825700", + "Timestamp": "2024-05-16T10:04:00.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.700700", + "Timestamp": "2024-05-16T10:04:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.134100", + "Timestamp": "2024-05-16T10:03:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.129100", + "Timestamp": "2024-05-16T10:03:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.004100", + "Timestamp": "2024-05-16T10:03:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.858300", + "Timestamp": "2024-05-16T10:03:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.809400", + "Timestamp": "2024-05-16T10:03:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.201800", + "Timestamp": "2024-05-16T10:03:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.135900", + "Timestamp": "2024-05-16T10:03:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Windows", + "SpotPrice": "7.240100", + "Timestamp": "2024-05-16T10:03:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.736300", + "Timestamp": "2024-05-16T10:03:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.731300", + "Timestamp": "2024-05-16T10:03:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.606300", + "Timestamp": "2024-05-16T10:03:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.949700", + "Timestamp": "2024-05-16T10:03:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.899600", + "Timestamp": "2024-05-16T10:03:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.193900", + "Timestamp": "2024-05-16T10:03:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.188900", + "Timestamp": "2024-05-16T10:03:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.063900", + "Timestamp": "2024-05-16T10:03:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.624700", + "Timestamp": "2024-05-16T10:03:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.571700", + "Timestamp": "2024-05-16T10:03:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.566700", + "Timestamp": "2024-05-16T10:03:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.441700", + "Timestamp": "2024-05-16T10:03:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.547500", + "Timestamp": "2024-05-16T10:03:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.542500", + "Timestamp": "2024-05-16T10:03:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.417500", + "Timestamp": "2024-05-16T10:03:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.586600", + "Timestamp": "2024-05-16T10:03:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.581600", + "Timestamp": "2024-05-16T10:03:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.456600", + "Timestamp": "2024-05-16T10:03:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.569300", + "Timestamp": "2024-05-16T10:03:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.658600", + "Timestamp": "2024-05-16T10:03:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.653600", + "Timestamp": "2024-05-16T10:03:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.528600", + "Timestamp": "2024-05-16T10:03:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089300", + "Timestamp": "2024-05-16T10:03:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085600", + "Timestamp": "2024-05-16T10:03:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029300", + "Timestamp": "2024-05-16T10:03:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146900", + "Timestamp": "2024-05-16T10:03:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143200", + "Timestamp": "2024-05-16T10:03:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086900", + "Timestamp": "2024-05-16T10:03:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.406400", + "Timestamp": "2024-05-16T10:03:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-16T10:03:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112700", + "Timestamp": "2024-05-16T10:03:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056400", + "Timestamp": "2024-05-16T10:03:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.123900", + "Timestamp": "2024-05-16T10:03:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.118900", + "Timestamp": "2024-05-16T10:03:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.993900", + "Timestamp": "2024-05-16T10:03:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.140800", + "Timestamp": "2024-05-16T10:03:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.452500", + "Timestamp": "2024-05-16T10:03:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.409200", + "Timestamp": "2024-05-16T10:03:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.404200", + "Timestamp": "2024-05-16T10:03:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.279200", + "Timestamp": "2024-05-16T10:03:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440200", + "Timestamp": "2024-05-16T10:03:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.115400", + "Timestamp": "2024-05-16T10:03:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206500", + "Timestamp": "2024-05-16T10:03:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219200", + "Timestamp": "2024-05-16T10:03:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.706200", + "Timestamp": "2024-05-16T10:03:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.606300", + "Timestamp": "2024-05-16T10:03:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.701200", + "Timestamp": "2024-05-16T10:03:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.601300", + "Timestamp": "2024-05-16T10:03:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.576200", + "Timestamp": "2024-05-16T10:03:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.476300", + "Timestamp": "2024-05-16T10:03:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.695200", + "Timestamp": "2024-05-16T10:03:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.281100", + "Timestamp": "2024-05-16T10:03:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.276100", + "Timestamp": "2024-05-16T10:03:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.151100", + "Timestamp": "2024-05-16T10:03:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.823400", + "Timestamp": "2024-05-16T10:03:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.920800", + "Timestamp": "2024-05-16T10:03:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.818400", + "Timestamp": "2024-05-16T10:03:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.915800", + "Timestamp": "2024-05-16T10:03:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.693400", + "Timestamp": "2024-05-16T10:03:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.790800", + "Timestamp": "2024-05-16T10:03:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.862200", + "Timestamp": "2024-05-16T10:03:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.936900", + "Timestamp": "2024-05-16T10:03:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.794800", + "Timestamp": "2024-05-16T10:03:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.931900", + "Timestamp": "2024-05-16T10:03:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.789800", + "Timestamp": "2024-05-16T10:03:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.806900", + "Timestamp": "2024-05-16T10:03:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.664800", + "Timestamp": "2024-05-16T10:03:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148200", + "Timestamp": "2024-05-16T10:03:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144500", + "Timestamp": "2024-05-16T10:03:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088200", + "Timestamp": "2024-05-16T10:03:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.037700", + "Timestamp": "2024-05-16T10:03:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.613100", + "Timestamp": "2024-05-16T10:03:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.608100", + "Timestamp": "2024-05-16T10:03:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.483100", + "Timestamp": "2024-05-16T10:03:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.631400", + "Timestamp": "2024-05-16T10:03:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.474300", + "Timestamp": "2024-05-16T10:03:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.889600", + "Timestamp": "2024-05-16T10:03:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.884600", + "Timestamp": "2024-05-16T10:03:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.759600", + "Timestamp": "2024-05-16T10:03:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "f1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.408200", + "Timestamp": "2024-05-16T10:03:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "f1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.378200", + "Timestamp": "2024-05-16T10:03:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "f1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.278200", + "Timestamp": "2024-05-16T10:03:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.535200", + "Timestamp": "2024-05-16T10:03:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.530200", + "Timestamp": "2024-05-16T10:03:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.405200", + "Timestamp": "2024-05-16T10:03:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.581700", + "Timestamp": "2024-05-16T10:03:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.576700", + "Timestamp": "2024-05-16T10:03:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.451700", + "Timestamp": "2024-05-16T10:03:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.190600", + "Timestamp": "2024-05-16T10:03:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.186600", + "Timestamp": "2024-05-16T10:03:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130600", + "Timestamp": "2024-05-16T10:03:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T10:03:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T10:03:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047400", + "Timestamp": "2024-05-16T10:03:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.124000", + "Timestamp": "2024-05-16T10:03:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.094000", + "Timestamp": "2024-05-16T10:03:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.994000", + "Timestamp": "2024-05-16T10:03:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.943600", + "Timestamp": "2024-05-16T10:03:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.343700", + "Timestamp": "2024-05-16T10:03:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.338700", + "Timestamp": "2024-05-16T10:03:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.213700", + "Timestamp": "2024-05-16T10:03:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.668200", + "Timestamp": "2024-05-16T10:03:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.433000", + "Timestamp": "2024-05-16T10:03:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.473600", + "Timestamp": "2024-05-16T10:03:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T10:03:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095500", + "Timestamp": "2024-05-16T10:03:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039200", + "Timestamp": "2024-05-16T10:03:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.358500", + "Timestamp": "2024-05-16T10:03:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.353500", + "Timestamp": "2024-05-16T10:03:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.228500", + "Timestamp": "2024-05-16T10:03:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.239900", + "Timestamp": "2024-05-16T10:03:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.234900", + "Timestamp": "2024-05-16T10:03:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-16T10:03:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127400", + "Timestamp": "2024-05-16T10:03:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123400", + "Timestamp": "2024-05-16T10:03:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067400", + "Timestamp": "2024-05-16T10:03:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146200", + "Timestamp": "2024-05-16T10:03:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.186200", + "Timestamp": "2024-05-16T10:03:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086200", + "Timestamp": "2024-05-16T10:03:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165000", + "Timestamp": "2024-05-16T10:03:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161000", + "Timestamp": "2024-05-16T10:03:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T10:03:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094100", + "Timestamp": "2024-05-16T10:03:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090400", + "Timestamp": "2024-05-16T10:03:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034100", + "Timestamp": "2024-05-16T10:03:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.437200", + "Timestamp": "2024-05-16T10:03:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.407200", + "Timestamp": "2024-05-16T10:03:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.307200", + "Timestamp": "2024-05-16T10:03:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.659200", + "Timestamp": "2024-05-16T10:03:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.988300", + "Timestamp": "2024-05-16T10:03:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.453100", + "Timestamp": "2024-05-16T10:03:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.396100", + "Timestamp": "2024-05-16T10:03:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.391100", + "Timestamp": "2024-05-16T10:03:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.266100", + "Timestamp": "2024-05-16T10:03:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.055800", + "Timestamp": "2024-05-16T10:03:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.050800", + "Timestamp": "2024-05-16T10:03:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.925800", + "Timestamp": "2024-05-16T10:03:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.776600", + "Timestamp": "2024-05-16T10:03:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.746600", + "Timestamp": "2024-05-16T10:03:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.646600", + "Timestamp": "2024-05-16T10:03:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135400", + "Timestamp": "2024-05-16T10:03:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131700", + "Timestamp": "2024-05-16T10:03:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075400", + "Timestamp": "2024-05-16T10:03:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.744600", + "Timestamp": "2024-05-16T10:03:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.739600", + "Timestamp": "2024-05-16T10:03:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.614600", + "Timestamp": "2024-05-16T10:03:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.292100", + "Timestamp": "2024-05-16T10:03:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.287100", + "Timestamp": "2024-05-16T10:03:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162100", + "Timestamp": "2024-05-16T10:03:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.875900", + "Timestamp": "2024-05-16T10:03:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.728100", + "Timestamp": "2024-05-16T10:03:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.712900", + "Timestamp": "2024-05-16T10:03:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306700", + "Timestamp": "2024-05-16T10:03:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301700", + "Timestamp": "2024-05-16T10:03:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176700", + "Timestamp": "2024-05-16T10:03:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.830400", + "Timestamp": "2024-05-16T10:03:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.825400", + "Timestamp": "2024-05-16T10:03:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.700400", + "Timestamp": "2024-05-16T10:03:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.397200", + "Timestamp": "2024-05-16T10:03:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.367200", + "Timestamp": "2024-05-16T10:03:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.267200", + "Timestamp": "2024-05-16T10:03:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.815600", + "Timestamp": "2024-05-16T10:03:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.368100", + "Timestamp": "2024-05-16T10:03:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.338100", + "Timestamp": "2024-05-16T10:03:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.238100", + "Timestamp": "2024-05-16T10:03:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.208100", + "Timestamp": "2024-05-16T10:03:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.203100", + "Timestamp": "2024-05-16T10:03:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.078100", + "Timestamp": "2024-05-16T10:03:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.930300", + "Timestamp": "2024-05-16T10:03:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.925300", + "Timestamp": "2024-05-16T10:03:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.800300", + "Timestamp": "2024-05-16T10:03:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.161200", + "Timestamp": "2024-05-16T10:03:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.634700", + "Timestamp": "2024-05-16T10:03:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.284700", + "Timestamp": "2024-05-16T10:03:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.279700", + "Timestamp": "2024-05-16T10:03:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.154700", + "Timestamp": "2024-05-16T10:03:19.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.914300", + "Timestamp": "2024-05-16T10:03:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138900", + "Timestamp": "2024-05-16T10:03:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135200", + "Timestamp": "2024-05-16T10:03:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078900", + "Timestamp": "2024-05-16T10:03:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.834300", + "Timestamp": "2024-05-16T10:03:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.829300", + "Timestamp": "2024-05-16T10:03:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.704300", + "Timestamp": "2024-05-16T10:03:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.380500", + "Timestamp": "2024-05-16T10:03:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.375500", + "Timestamp": "2024-05-16T10:03:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.250500", + "Timestamp": "2024-05-16T10:03:16.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.809300", + "Timestamp": "2024-05-16T10:03:16.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.804300", + "Timestamp": "2024-05-16T10:03:16.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.679300", + "Timestamp": "2024-05-16T10:03:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.208000", + "Timestamp": "2024-05-16T10:03:15.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.204300", + "Timestamp": "2024-05-16T10:03:15.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148000", + "Timestamp": "2024-05-16T10:03:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.431800", + "Timestamp": "2024-05-16T10:03:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.426800", + "Timestamp": "2024-05-16T10:03:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.301800", + "Timestamp": "2024-05-16T10:03:11.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.973600", + "Timestamp": "2024-05-16T10:03:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.100300", + "Timestamp": "2024-05-16T10:03:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.968600", + "Timestamp": "2024-05-16T10:03:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.095300", + "Timestamp": "2024-05-16T10:03:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.843600", + "Timestamp": "2024-05-16T10:03:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.970300", + "Timestamp": "2024-05-16T10:03:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.282000", + "Timestamp": "2024-05-16T10:03:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.277000", + "Timestamp": "2024-05-16T10:03:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.152000", + "Timestamp": "2024-05-16T10:03:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121500", + "Timestamp": "2024-05-16T10:03:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117800", + "Timestamp": "2024-05-16T10:03:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061500", + "Timestamp": "2024-05-16T10:03:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.454500", + "Timestamp": "2024-05-16T10:03:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.424500", + "Timestamp": "2024-05-16T10:03:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.324500", + "Timestamp": "2024-05-16T10:03:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.281600", + "Timestamp": "2024-05-16T10:03:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.071000", + "Timestamp": "2024-05-16T10:03:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.066000", + "Timestamp": "2024-05-16T10:03:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.941000", + "Timestamp": "2024-05-16T10:03:08.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.694800", + "Timestamp": "2024-05-16T10:03:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.878600", + "Timestamp": "2024-05-16T10:03:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.873600", + "Timestamp": "2024-05-16T10:03:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.748600", + "Timestamp": "2024-05-16T10:03:07.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.130600", + "Timestamp": "2024-05-16T10:03:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.125600", + "Timestamp": "2024-05-16T10:03:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.000600", + "Timestamp": "2024-05-16T10:03:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.289400", + "Timestamp": "2024-05-16T10:03:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.284400", + "Timestamp": "2024-05-16T10:03:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159400", + "Timestamp": "2024-05-16T10:03:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.742100", + "Timestamp": "2024-05-16T10:03:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.468400", + "Timestamp": "2024-05-16T10:03:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.438400", + "Timestamp": "2024-05-16T10:03:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.338400", + "Timestamp": "2024-05-16T10:03:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271000", + "Timestamp": "2024-05-16T10:03:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266000", + "Timestamp": "2024-05-16T10:03:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141000", + "Timestamp": "2024-05-16T10:03:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.274800", + "Timestamp": "2024-05-16T10:03:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.244800", + "Timestamp": "2024-05-16T10:03:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144800", + "Timestamp": "2024-05-16T10:03:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.326800", + "Timestamp": "2024-05-16T10:03:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.321800", + "Timestamp": "2024-05-16T10:03:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196800", + "Timestamp": "2024-05-16T10:03:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.418300", + "Timestamp": "2024-05-16T10:03:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.413300", + "Timestamp": "2024-05-16T10:03:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.288300", + "Timestamp": "2024-05-16T10:03:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093100", + "Timestamp": "2024-05-16T10:03:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089400", + "Timestamp": "2024-05-16T10:03:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033100", + "Timestamp": "2024-05-16T10:03:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.891900", + "Timestamp": "2024-05-16T10:02:59.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.653600", + "Timestamp": "2024-05-16T10:02:59.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.648600", + "Timestamp": "2024-05-16T10:02:59.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.523600", + "Timestamp": "2024-05-16T10:02:59.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.746000", + "Timestamp": "2024-05-16T10:02:59.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.741000", + "Timestamp": "2024-05-16T10:02:59.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.616000", + "Timestamp": "2024-05-16T10:02:59.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.475600", + "Timestamp": "2024-05-16T10:02:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.470600", + "Timestamp": "2024-05-16T10:02:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.345600", + "Timestamp": "2024-05-16T10:02:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-16T10:02:57.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137500", + "Timestamp": "2024-05-16T10:02:57.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037500", + "Timestamp": "2024-05-16T10:02:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.300000", + "Timestamp": "2024-05-16T10:02:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.295000", + "Timestamp": "2024-05-16T10:02:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170000", + "Timestamp": "2024-05-16T10:02:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.204600", + "Timestamp": "2024-05-16T10:02:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.199600", + "Timestamp": "2024-05-16T10:02:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.074600", + "Timestamp": "2024-05-16T10:02:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.283200", + "Timestamp": "2024-05-16T10:02:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.173200", + "Timestamp": "2024-05-16T10:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.168200", + "Timestamp": "2024-05-16T10:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.043200", + "Timestamp": "2024-05-16T10:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.759000", + "Timestamp": "2024-05-16T10:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.754000", + "Timestamp": "2024-05-16T10:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.629000", + "Timestamp": "2024-05-16T10:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.185000", + "Timestamp": "2024-05-16T10:02:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.180000", + "Timestamp": "2024-05-16T10:02:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.055000", + "Timestamp": "2024-05-16T10:02:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.480100", + "Timestamp": "2024-05-16T10:02:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.475100", + "Timestamp": "2024-05-16T10:02:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.350100", + "Timestamp": "2024-05-16T10:02:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.561000", + "Timestamp": "2024-05-16T10:02:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.610100", + "Timestamp": "2024-05-16T10:02:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.467300", + "Timestamp": "2024-05-16T10:02:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103600", + "Timestamp": "2024-05-16T10:02:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.853200", + "Timestamp": "2024-05-16T10:02:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.328300", + "Timestamp": "2024-05-16T10:02:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.316400", + "Timestamp": "2024-05-16T10:02:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.503900", + "Timestamp": "2024-05-16T10:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.498900", + "Timestamp": "2024-05-16T10:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.373900", + "Timestamp": "2024-05-16T10:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.530700", + "Timestamp": "2024-05-16T10:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.525700", + "Timestamp": "2024-05-16T10:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.400700", + "Timestamp": "2024-05-16T10:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.483300", + "Timestamp": "2024-05-16T10:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.486500", + "Timestamp": "2024-05-16T10:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.481500", + "Timestamp": "2024-05-16T10:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.356500", + "Timestamp": "2024-05-16T10:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.129000", + "Timestamp": "2024-05-16T10:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.124000", + "Timestamp": "2024-05-16T10:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.999000", + "Timestamp": "2024-05-16T10:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.985600", + "Timestamp": "2024-05-16T10:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.980600", + "Timestamp": "2024-05-16T10:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.855600", + "Timestamp": "2024-05-16T10:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.426800", + "Timestamp": "2024-05-16T10:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306300", + "Timestamp": "2024-05-16T10:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276300", + "Timestamp": "2024-05-16T10:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176300", + "Timestamp": "2024-05-16T10:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.600000", + "Timestamp": "2024-05-16T10:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.703900", + "Timestamp": "2024-05-16T10:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.570000", + "Timestamp": "2024-05-16T10:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.673900", + "Timestamp": "2024-05-16T10:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.470000", + "Timestamp": "2024-05-16T10:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.573900", + "Timestamp": "2024-05-16T10:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.662500", + "Timestamp": "2024-05-16T10:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.657500", + "Timestamp": "2024-05-16T10:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.532500", + "Timestamp": "2024-05-16T10:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.375500", + "Timestamp": "2024-05-16T10:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.370500", + "Timestamp": "2024-05-16T10:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.245500", + "Timestamp": "2024-05-16T10:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.091800", + "Timestamp": "2024-05-16T10:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.624300", + "Timestamp": "2024-05-16T10:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.086800", + "Timestamp": "2024-05-16T10:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.619300", + "Timestamp": "2024-05-16T10:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.961800", + "Timestamp": "2024-05-16T10:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.494300", + "Timestamp": "2024-05-16T10:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.201000", + "Timestamp": "2024-05-16T10:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.367600", + "Timestamp": "2024-05-16T10:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.362600", + "Timestamp": "2024-05-16T10:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.237600", + "Timestamp": "2024-05-16T10:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166800", + "Timestamp": "2024-05-16T10:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163100", + "Timestamp": "2024-05-16T10:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T10:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.594000", + "Timestamp": "2024-05-16T10:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.312800", + "Timestamp": "2024-05-16T10:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.307800", + "Timestamp": "2024-05-16T10:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.182800", + "Timestamp": "2024-05-16T10:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.322300", + "Timestamp": "2024-05-16T10:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.317300", + "Timestamp": "2024-05-16T10:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.192300", + "Timestamp": "2024-05-16T10:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.667800", + "Timestamp": "2024-05-16T10:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.662800", + "Timestamp": "2024-05-16T10:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.537800", + "Timestamp": "2024-05-16T10:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110900", + "Timestamp": "2024-05-16T10:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150900", + "Timestamp": "2024-05-16T10:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050900", + "Timestamp": "2024-05-16T10:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.589100", + "Timestamp": "2024-05-16T10:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.584100", + "Timestamp": "2024-05-16T10:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.459100", + "Timestamp": "2024-05-16T10:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.666500", + "Timestamp": "2024-05-16T10:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.415700", + "Timestamp": "2024-05-16T10:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.244300", + "Timestamp": "2024-05-16T10:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.239300", + "Timestamp": "2024-05-16T10:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.114300", + "Timestamp": "2024-05-16T10:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.185900", + "Timestamp": "2024-05-16T10:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.182200", + "Timestamp": "2024-05-16T10:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125900", + "Timestamp": "2024-05-16T10:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.032600", + "Timestamp": "2024-05-16T10:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.982700", + "Timestamp": "2024-05-16T10:02:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.977700", + "Timestamp": "2024-05-16T10:02:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.852700", + "Timestamp": "2024-05-16T10:02:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.274100", + "Timestamp": "2024-05-16T10:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269100", + "Timestamp": "2024-05-16T10:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144100", + "Timestamp": "2024-05-16T10:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.445800", + "Timestamp": "2024-05-16T10:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.440800", + "Timestamp": "2024-05-16T10:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.315800", + "Timestamp": "2024-05-16T10:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T10:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092000", + "Timestamp": "2024-05-16T10:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036000", + "Timestamp": "2024-05-16T10:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.809300", + "Timestamp": "2024-05-16T10:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.804300", + "Timestamp": "2024-05-16T10:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.679300", + "Timestamp": "2024-05-16T10:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.432100", + "Timestamp": "2024-05-16T10:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.402100", + "Timestamp": "2024-05-16T10:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.302100", + "Timestamp": "2024-05-16T10:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.801000", + "Timestamp": "2024-05-16T10:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.771000", + "Timestamp": "2024-05-16T10:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.671000", + "Timestamp": "2024-05-16T10:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.656700", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.626700", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.526700", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m1.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073200", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m1.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043200", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m1.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013200", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090500", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086800", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030500", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.488100", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.483100", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.358100", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114300", + "Timestamp": "2024-05-16T10:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T10:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054300", + "Timestamp": "2024-05-16T10:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083100", + "Timestamp": "2024-05-16T10:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094200", + "Timestamp": "2024-05-16T10:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T10:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102000", + "Timestamp": "2024-05-16T10:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079400", + "Timestamp": "2024-05-16T10:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090500", + "Timestamp": "2024-05-16T10:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-16T10:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098300", + "Timestamp": "2024-05-16T10:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023100", + "Timestamp": "2024-05-16T10:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034200", + "Timestamp": "2024-05-16T10:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050200", + "Timestamp": "2024-05-16T10:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042000", + "Timestamp": "2024-05-16T10:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.242200", + "Timestamp": "2024-05-16T09:47:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.703600", + "Timestamp": "2024-05-16T09:47:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.684700", + "Timestamp": "2024-05-16T09:47:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.913000", + "Timestamp": "2024-05-16T09:47:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.106400", + "Timestamp": "2024-05-16T09:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.101400", + "Timestamp": "2024-05-16T09:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.976400", + "Timestamp": "2024-05-16T09:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.822000", + "Timestamp": "2024-05-16T09:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.817000", + "Timestamp": "2024-05-16T09:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.692000", + "Timestamp": "2024-05-16T09:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156600", + "Timestamp": "2024-05-16T09:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152900", + "Timestamp": "2024-05-16T09:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096600", + "Timestamp": "2024-05-16T09:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.130800", + "Timestamp": "2024-05-16T09:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.125800", + "Timestamp": "2024-05-16T09:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.000800", + "Timestamp": "2024-05-16T09:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.741600", + "Timestamp": "2024-05-16T09:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.860700", + "Timestamp": "2024-05-16T09:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.805100", + "Timestamp": "2024-05-16T09:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.443300", + "Timestamp": "2024-05-16T09:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.438300", + "Timestamp": "2024-05-16T09:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.313300", + "Timestamp": "2024-05-16T09:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.020800", + "Timestamp": "2024-05-16T09:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.657100", + "Timestamp": "2024-05-16T09:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.627100", + "Timestamp": "2024-05-16T09:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.527100", + "Timestamp": "2024-05-16T09:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.591000", + "Timestamp": "2024-05-16T09:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.414000", + "Timestamp": "2024-05-16T09:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.509500", + "Timestamp": "2024-05-16T09:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.690000", + "Timestamp": "2024-05-16T09:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.046100", + "Timestamp": "2024-05-16T09:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.016100", + "Timestamp": "2024-05-16T09:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.916100", + "Timestamp": "2024-05-16T09:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.427400", + "Timestamp": "2024-05-16T09:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.422400", + "Timestamp": "2024-05-16T09:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.297400", + "Timestamp": "2024-05-16T09:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.275500", + "Timestamp": "2024-05-16T09:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.394900", + "Timestamp": "2024-05-16T09:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.364900", + "Timestamp": "2024-05-16T09:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.264900", + "Timestamp": "2024-05-16T09:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273600", + "Timestamp": "2024-05-16T09:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268600", + "Timestamp": "2024-05-16T09:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143600", + "Timestamp": "2024-05-16T09:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.560100", + "Timestamp": "2024-05-16T09:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.335200", + "Timestamp": "2024-05-16T09:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.330200", + "Timestamp": "2024-05-16T09:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.205200", + "Timestamp": "2024-05-16T09:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.181600", + "Timestamp": "2024-05-16T09:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177900", + "Timestamp": "2024-05-16T09:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121600", + "Timestamp": "2024-05-16T09:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294600", + "Timestamp": "2024-05-16T09:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.264600", + "Timestamp": "2024-05-16T09:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164600", + "Timestamp": "2024-05-16T09:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.179700", + "Timestamp": "2024-05-16T09:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.838600", + "Timestamp": "2024-05-16T09:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.833600", + "Timestamp": "2024-05-16T09:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.708600", + "Timestamp": "2024-05-16T09:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139200", + "Timestamp": "2024-05-16T09:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179200", + "Timestamp": "2024-05-16T09:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079200", + "Timestamp": "2024-05-16T09:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "h1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.380300", + "Timestamp": "2024-05-16T09:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "h1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.350300", + "Timestamp": "2024-05-16T09:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "h1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.250300", + "Timestamp": "2024-05-16T09:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.381500", + "Timestamp": "2024-05-16T09:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.376500", + "Timestamp": "2024-05-16T09:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.251500", + "Timestamp": "2024-05-16T09:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.093600", + "Timestamp": "2024-05-16T09:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.088600", + "Timestamp": "2024-05-16T09:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.963600", + "Timestamp": "2024-05-16T09:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.483900", + "Timestamp": "2024-05-16T09:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.478900", + "Timestamp": "2024-05-16T09:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.353900", + "Timestamp": "2024-05-16T09:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.195900", + "Timestamp": "2024-05-16T09:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.190900", + "Timestamp": "2024-05-16T09:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.065900", + "Timestamp": "2024-05-16T09:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.755800", + "Timestamp": "2024-05-16T09:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-16T09:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143300", + "Timestamp": "2024-05-16T09:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183300", + "Timestamp": "2024-05-16T09:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083300", + "Timestamp": "2024-05-16T09:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.277400", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.718500", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.713500", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.588500", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.243600", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.283600", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.183600", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.474900", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.469900", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.344900", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.640200", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.635200", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.510200", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.017000", + "Timestamp": "2024-05-16T09:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.012000", + "Timestamp": "2024-05-16T09:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.887000", + "Timestamp": "2024-05-16T09:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.245200", + "Timestamp": "2024-05-16T09:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.285200", + "Timestamp": "2024-05-16T09:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.185200", + "Timestamp": "2024-05-16T09:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.117500", + "Timestamp": "2024-05-16T09:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.112500", + "Timestamp": "2024-05-16T09:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.987500", + "Timestamp": "2024-05-16T09:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113600", + "Timestamp": "2024-05-16T09:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-16T09:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053600", + "Timestamp": "2024-05-16T09:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.332500", + "Timestamp": "2024-05-16T09:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.327500", + "Timestamp": "2024-05-16T09:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.202500", + "Timestamp": "2024-05-16T09:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T09:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.421000", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.416000", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.291000", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.249300", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.244300", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119300", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.458800", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.453800", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.328800", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.318500", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.313500", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.188500", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.927100", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.922100", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.797100", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429500", + "Timestamp": "2024-05-16T09:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.068700", + "Timestamp": "2024-05-16T09:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.063700", + "Timestamp": "2024-05-16T09:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.938700", + "Timestamp": "2024-05-16T09:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.027300", + "Timestamp": "2024-05-16T09:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.022300", + "Timestamp": "2024-05-16T09:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.897300", + "Timestamp": "2024-05-16T09:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.863400", + "Timestamp": "2024-05-16T09:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.588500", + "Timestamp": "2024-05-16T09:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.858400", + "Timestamp": "2024-05-16T09:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.583500", + "Timestamp": "2024-05-16T09:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.733400", + "Timestamp": "2024-05-16T09:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.458500", + "Timestamp": "2024-05-16T09:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.197100", + "Timestamp": "2024-05-16T09:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.863800", + "Timestamp": "2024-05-16T09:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.714200", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101900", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045600", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.106700", + "Timestamp": "2024-05-16T09:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.101700", + "Timestamp": "2024-05-16T09:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.976700", + "Timestamp": "2024-05-16T09:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.325900", + "Timestamp": "2024-05-16T09:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209500", + "Timestamp": "2024-05-16T09:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418800", + "Timestamp": "2024-05-16T09:47:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439200", + "Timestamp": "2024-05-16T09:47:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166200", + "Timestamp": "2024-05-16T09:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162200", + "Timestamp": "2024-05-16T09:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106200", + "Timestamp": "2024-05-16T09:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.071800", + "Timestamp": "2024-05-16T09:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.066800", + "Timestamp": "2024-05-16T09:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.941800", + "Timestamp": "2024-05-16T09:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.475300", + "Timestamp": "2024-05-16T09:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.470300", + "Timestamp": "2024-05-16T09:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.345300", + "Timestamp": "2024-05-16T09:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115100", + "Timestamp": "2024-05-16T09:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T09:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055100", + "Timestamp": "2024-05-16T09:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.742600", + "Timestamp": "2024-05-16T09:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.941100", + "Timestamp": "2024-05-16T09:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.787900", + "Timestamp": "2024-05-16T09:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.782900", + "Timestamp": "2024-05-16T09:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.657900", + "Timestamp": "2024-05-16T09:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.398600", + "Timestamp": "2024-05-16T09:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.393600", + "Timestamp": "2024-05-16T09:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.268600", + "Timestamp": "2024-05-16T09:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.389200", + "Timestamp": "2024-05-16T09:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.384200", + "Timestamp": "2024-05-16T09:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.259200", + "Timestamp": "2024-05-16T09:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T09:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.772900", + "Timestamp": "2024-05-16T09:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.742900", + "Timestamp": "2024-05-16T09:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.642900", + "Timestamp": "2024-05-16T09:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.055500", + "Timestamp": "2024-05-16T09:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.025500", + "Timestamp": "2024-05-16T09:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.925500", + "Timestamp": "2024-05-16T09:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.381000", + "Timestamp": "2024-05-16T09:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.241000", + "Timestamp": "2024-05-16T09:47:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.236000", + "Timestamp": "2024-05-16T09:47:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.111000", + "Timestamp": "2024-05-16T09:47:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.678500", + "Timestamp": "2024-05-16T09:47:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.658400", + "Timestamp": "2024-05-16T09:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.082400", + "Timestamp": "2024-05-16T09:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.077400", + "Timestamp": "2024-05-16T09:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.952400", + "Timestamp": "2024-05-16T09:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.758700", + "Timestamp": "2024-05-16T09:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.637800", + "Timestamp": "2024-05-16T09:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.632800", + "Timestamp": "2024-05-16T09:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.507800", + "Timestamp": "2024-05-16T09:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.309600", + "Timestamp": "2024-05-16T09:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.869100", + "Timestamp": "2024-05-16T09:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.864100", + "Timestamp": "2024-05-16T09:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.739100", + "Timestamp": "2024-05-16T09:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.579900", + "Timestamp": "2024-05-16T09:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.583700", + "Timestamp": "2024-05-16T09:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.689800", + "Timestamp": "2024-05-16T09:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.399200", + "Timestamp": "2024-05-16T09:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.394200", + "Timestamp": "2024-05-16T09:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.269200", + "Timestamp": "2024-05-16T09:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126600", + "Timestamp": "2024-05-16T09:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122900", + "Timestamp": "2024-05-16T09:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066600", + "Timestamp": "2024-05-16T09:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.452600", + "Timestamp": "2024-05-16T09:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.447600", + "Timestamp": "2024-05-16T09:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.322600", + "Timestamp": "2024-05-16T09:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.357800", + "Timestamp": "2024-05-16T09:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.327800", + "Timestamp": "2024-05-16T09:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.227800", + "Timestamp": "2024-05-16T09:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.823400", + "Timestamp": "2024-05-16T09:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.107900", + "Timestamp": "2024-05-16T09:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.102900", + "Timestamp": "2024-05-16T09:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.977900", + "Timestamp": "2024-05-16T09:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.722100", + "Timestamp": "2024-05-16T09:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.717100", + "Timestamp": "2024-05-16T09:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.592100", + "Timestamp": "2024-05-16T09:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.319700", + "Timestamp": "2024-05-16T09:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.314700", + "Timestamp": "2024-05-16T09:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.189700", + "Timestamp": "2024-05-16T09:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.111800", + "Timestamp": "2024-05-16T09:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.501700", + "Timestamp": "2024-05-16T09:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.496700", + "Timestamp": "2024-05-16T09:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.371700", + "Timestamp": "2024-05-16T09:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.192300", + "Timestamp": "2024-05-16T09:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.863200", + "Timestamp": "2024-05-16T09:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.335800", + "Timestamp": "2024-05-16T09:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T09:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103900", + "Timestamp": "2024-05-16T09:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047600", + "Timestamp": "2024-05-16T09:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.793500", + "Timestamp": "2024-05-16T09:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.788500", + "Timestamp": "2024-05-16T09:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.663500", + "Timestamp": "2024-05-16T09:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.554200", + "Timestamp": "2024-05-16T09:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.420300", + "Timestamp": "2024-05-16T09:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.415300", + "Timestamp": "2024-05-16T09:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.290300", + "Timestamp": "2024-05-16T09:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.674600", + "Timestamp": "2024-05-16T09:46:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.984800", + "Timestamp": "2024-05-16T09:46:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.674300", + "Timestamp": "2024-05-16T09:46:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.669300", + "Timestamp": "2024-05-16T09:46:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.544300", + "Timestamp": "2024-05-16T09:46:57.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.277800", + "Timestamp": "2024-05-16T09:46:57.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.317800", + "Timestamp": "2024-05-16T09:46:57.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.217800", + "Timestamp": "2024-05-16T09:46:57.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.337400", + "Timestamp": "2024-05-16T09:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.332400", + "Timestamp": "2024-05-16T09:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.207400", + "Timestamp": "2024-05-16T09:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.446800", + "Timestamp": "2024-05-16T09:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135500", + "Timestamp": "2024-05-16T09:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131800", + "Timestamp": "2024-05-16T09:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075500", + "Timestamp": "2024-05-16T09:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.449500", + "Timestamp": "2024-05-16T09:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.444500", + "Timestamp": "2024-05-16T09:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.319500", + "Timestamp": "2024-05-16T09:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.095600", + "Timestamp": "2024-05-16T09:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.634500", + "Timestamp": "2024-05-16T09:46:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.432000", + "Timestamp": "2024-05-16T09:46:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.878500", + "Timestamp": "2024-05-16T09:46:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.873500", + "Timestamp": "2024-05-16T09:46:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.748500", + "Timestamp": "2024-05-16T09:46:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.274400", + "Timestamp": "2024-05-16T09:46:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.244400", + "Timestamp": "2024-05-16T09:46:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144400", + "Timestamp": "2024-05-16T09:46:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.370200", + "Timestamp": "2024-05-16T09:46:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.365200", + "Timestamp": "2024-05-16T09:46:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.240200", + "Timestamp": "2024-05-16T09:46:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.836500", + "Timestamp": "2024-05-16T09:46:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.860200", + "Timestamp": "2024-05-16T09:46:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.615000", + "Timestamp": "2024-05-16T09:46:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.690200", + "Timestamp": "2024-05-16T09:46:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432100", + "Timestamp": "2024-05-16T09:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.347300", + "Timestamp": "2024-05-16T09:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.876400", + "Timestamp": "2024-05-16T09:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102300", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142300", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042300", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.874500", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.869500", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.744500", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.857400", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.827400", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.727400", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.239700", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.236700", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.179700", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.797300", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.871600", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.792300", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.866600", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.667300", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.741600", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.394600", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.389600", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.264600", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.482300", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.452300", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.352300", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.517500", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.487500", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.387500", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.509000", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.504000", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.379000", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147100", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047100", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.001800", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.996800", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.871800", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.136600", + "Timestamp": "2024-05-16T09:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.131600", + "Timestamp": "2024-05-16T09:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.006600", + "Timestamp": "2024-05-16T09:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209200", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087800", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127800", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027800", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.399800", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.394800", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.269800", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.196800", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192800", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136800", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086400", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082700", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026400", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.819500", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.267700", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.264000", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.207700", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.338900", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.308900", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.208900", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.862800", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.857800", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.732800", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.643900", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.480500", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.475500", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.350500", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.477300", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.866200", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.472300", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.861200", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.347300", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.736200", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.304100", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.274100", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.174100", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.330600", + "Timestamp": "2024-05-16T09:32:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.212800", + "Timestamp": "2024-05-16T09:32:53.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.207800", + "Timestamp": "2024-05-16T09:32:53.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082800", + "Timestamp": "2024-05-16T09:32:53.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.089600", + "Timestamp": "2024-05-16T09:32:53.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.084600", + "Timestamp": "2024-05-16T09:32:53.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.959600", + "Timestamp": "2024-05-16T09:32:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.220100", + "Timestamp": "2024-05-16T09:32:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.215100", + "Timestamp": "2024-05-16T09:32:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.090100", + "Timestamp": "2024-05-16T09:32:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.640300", + "Timestamp": "2024-05-16T09:32:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113500", + "Timestamp": "2024-05-16T09:32:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.658900", + "Timestamp": "2024-05-16T09:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.653900", + "Timestamp": "2024-05-16T09:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.528900", + "Timestamp": "2024-05-16T09:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.444200", + "Timestamp": "2024-05-16T09:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.789500", + "Timestamp": "2024-05-16T09:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.230300", + "Timestamp": "2024-05-16T09:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.226300", + "Timestamp": "2024-05-16T09:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170300", + "Timestamp": "2024-05-16T09:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151800", + "Timestamp": "2024-05-16T09:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.191800", + "Timestamp": "2024-05-16T09:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T09:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.732200", + "Timestamp": "2024-05-16T09:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.727200", + "Timestamp": "2024-05-16T09:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.602200", + "Timestamp": "2024-05-16T09:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207600", + "Timestamp": "2024-05-16T09:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126100", + "Timestamp": "2024-05-16T09:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122400", + "Timestamp": "2024-05-16T09:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066100", + "Timestamp": "2024-05-16T09:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.094900", + "Timestamp": "2024-05-16T09:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416100", + "Timestamp": "2024-05-16T09:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.502100", + "Timestamp": "2024-05-16T09:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.930900", + "Timestamp": "2024-05-16T09:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437700", + "Timestamp": "2024-05-16T09:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.979000", + "Timestamp": "2024-05-16T09:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.727400", + "Timestamp": "2024-05-16T09:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.060100", + "Timestamp": "2024-05-16T09:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.030100", + "Timestamp": "2024-05-16T09:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.930100", + "Timestamp": "2024-05-16T09:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.691600", + "Timestamp": "2024-05-16T09:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.836600", + "Timestamp": "2024-05-16T09:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "4.977500", + "Timestamp": "2024-05-16T09:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.275100", + "Timestamp": "2024-05-16T09:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270100", + "Timestamp": "2024-05-16T09:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145100", + "Timestamp": "2024-05-16T09:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.444700", + "Timestamp": "2024-05-16T09:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.439700", + "Timestamp": "2024-05-16T09:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.314700", + "Timestamp": "2024-05-16T09:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.433300", + "Timestamp": "2024-05-16T09:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.615900", + "Timestamp": "2024-05-16T09:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.927100", + "Timestamp": "2024-05-16T09:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.922100", + "Timestamp": "2024-05-16T09:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.797100", + "Timestamp": "2024-05-16T09:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136300", + "Timestamp": "2024-05-16T09:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132600", + "Timestamp": "2024-05-16T09:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076300", + "Timestamp": "2024-05-16T09:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.079500", + "Timestamp": "2024-05-16T09:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.074500", + "Timestamp": "2024-05-16T09:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.949500", + "Timestamp": "2024-05-16T09:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.425300", + "Timestamp": "2024-05-16T09:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.737700", + "Timestamp": "2024-05-16T09:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.631100", + "Timestamp": "2024-05-16T09:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.692400", + "Timestamp": "2024-05-16T09:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.687400", + "Timestamp": "2024-05-16T09:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.562400", + "Timestamp": "2024-05-16T09:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111300", + "Timestamp": "2024-05-16T09:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T09:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051300", + "Timestamp": "2024-05-16T09:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113200", + "Timestamp": "2024-05-16T09:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.971800", + "Timestamp": "2024-05-16T09:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130200", + "Timestamp": "2024-05-16T09:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126500", + "Timestamp": "2024-05-16T09:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070200", + "Timestamp": "2024-05-16T09:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.650500", + "Timestamp": "2024-05-16T09:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.645500", + "Timestamp": "2024-05-16T09:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.520500", + "Timestamp": "2024-05-16T09:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.905400", + "Timestamp": "2024-05-16T09:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.696300", + "Timestamp": "2024-05-16T09:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.691300", + "Timestamp": "2024-05-16T09:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.566300", + "Timestamp": "2024-05-16T09:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.792700", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.458900", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.256400", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.453900", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.251400", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.328900", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.126400", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.772000", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.767000", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.642000", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.872600", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.867600", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.742600", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.397500", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.142800", + "Timestamp": "2024-05-16T09:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.112800", + "Timestamp": "2024-05-16T09:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.012800", + "Timestamp": "2024-05-16T09:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.426300", + "Timestamp": "2024-05-16T09:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.559400", + "Timestamp": "2024-05-16T09:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.554400", + "Timestamp": "2024-05-16T09:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.429400", + "Timestamp": "2024-05-16T09:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.470100", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.465100", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.340100", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.205700", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.805000", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099300", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095600", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039300", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.055200", + "Timestamp": "2024-05-16T09:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.050200", + "Timestamp": "2024-05-16T09:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.925200", + "Timestamp": "2024-05-16T09:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.285100", + "Timestamp": "2024-05-16T09:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.255100", + "Timestamp": "2024-05-16T09:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.155100", + "Timestamp": "2024-05-16T09:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.771500", + "Timestamp": "2024-05-16T09:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.766500", + "Timestamp": "2024-05-16T09:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.641500", + "Timestamp": "2024-05-16T09:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.020500", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.015500", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.890500", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.847300", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.842300", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.717300", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.503200", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.529500", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.498200", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.524500", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.373200", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.399500", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.431000", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.426000", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.301000", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.036800", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.006800", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.906800", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.253400", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.048800", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.223400", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.018800", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.123400", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.918800", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.927000", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.922000", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.797000", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.721600", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109200", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105500", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049200", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.672400", + "Timestamp": "2024-05-16T09:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.973200", + "Timestamp": "2024-05-16T09:32:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.674600", + "Timestamp": "2024-05-16T09:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.731700", + "Timestamp": "2024-05-16T09:32:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.726700", + "Timestamp": "2024-05-16T09:32:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.601700", + "Timestamp": "2024-05-16T09:32:15.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.263800", + "Timestamp": "2024-05-16T09:32:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258800", + "Timestamp": "2024-05-16T09:32:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133800", + "Timestamp": "2024-05-16T09:32:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.316700", + "Timestamp": "2024-05-16T09:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.286700", + "Timestamp": "2024-05-16T09:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186700", + "Timestamp": "2024-05-16T09:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311000", + "Timestamp": "2024-05-16T09:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.306000", + "Timestamp": "2024-05-16T09:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181000", + "Timestamp": "2024-05-16T09:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.805300", + "Timestamp": "2024-05-16T09:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.573600", + "Timestamp": "2024-05-16T09:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.568600", + "Timestamp": "2024-05-16T09:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.443600", + "Timestamp": "2024-05-16T09:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.007900", + "Timestamp": "2024-05-16T09:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.977900", + "Timestamp": "2024-05-16T09:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.877900", + "Timestamp": "2024-05-16T09:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.823400", + "Timestamp": "2024-05-16T09:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.820100", + "Timestamp": "2024-05-16T09:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.815100", + "Timestamp": "2024-05-16T09:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.690100", + "Timestamp": "2024-05-16T09:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.972200", + "Timestamp": "2024-05-16T09:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.246000", + "Timestamp": "2024-05-16T09:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.735400", + "Timestamp": "2024-05-16T09:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.730400", + "Timestamp": "2024-05-16T09:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.605400", + "Timestamp": "2024-05-16T09:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.137900", + "Timestamp": "2024-05-16T09:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.156900", + "Timestamp": "2024-05-16T09:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.090900", + "Timestamp": "2024-05-16T09:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.085900", + "Timestamp": "2024-05-16T09:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.960900", + "Timestamp": "2024-05-16T09:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.290200", + "Timestamp": "2024-05-16T09:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.421800", + "Timestamp": "2024-05-16T09:32:00.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.416800", + "Timestamp": "2024-05-16T09:32:00.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.291800", + "Timestamp": "2024-05-16T09:32:00.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.740000", + "Timestamp": "2024-05-16T09:32:00.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.710000", + "Timestamp": "2024-05-16T09:32:00.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.610000", + "Timestamp": "2024-05-16T09:32:00.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.349100", + "Timestamp": "2024-05-16T09:31:59.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.344100", + "Timestamp": "2024-05-16T09:31:59.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219100", + "Timestamp": "2024-05-16T09:31:59.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.123200", + "Timestamp": "2024-05-16T09:31:59.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.546700", + "Timestamp": "2024-05-16T09:31:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.801800", + "Timestamp": "2024-05-16T09:31:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161100", + "Timestamp": "2024-05-16T09:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.201100", + "Timestamp": "2024-05-16T09:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101100", + "Timestamp": "2024-05-16T09:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.993900", + "Timestamp": "2024-05-16T09:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.988900", + "Timestamp": "2024-05-16T09:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.863900", + "Timestamp": "2024-05-16T09:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.658300", + "Timestamp": "2024-05-16T09:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.836500", + "Timestamp": "2024-05-16T09:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.693300", + "Timestamp": "2024-05-16T09:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.452100", + "Timestamp": "2024-05-16T09:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.422100", + "Timestamp": "2024-05-16T09:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.322100", + "Timestamp": "2024-05-16T09:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.073700", + "Timestamp": "2024-05-16T09:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.422800", + "Timestamp": "2024-05-16T09:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107900", + "Timestamp": "2024-05-16T09:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.849400", + "Timestamp": "2024-05-16T09:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.516000", + "Timestamp": "2024-05-16T09:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.511000", + "Timestamp": "2024-05-16T09:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.386000", + "Timestamp": "2024-05-16T09:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.505400", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.984500", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.979500", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.854500", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099400", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095700", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039400", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.295600", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.290600", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165600", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.877900", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.872900", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.747900", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145200", + "Timestamp": "2024-05-16T09:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185200", + "Timestamp": "2024-05-16T09:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085200", + "Timestamp": "2024-05-16T09:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.444000", + "Timestamp": "2024-05-16T09:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.414000", + "Timestamp": "2024-05-16T09:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.314000", + "Timestamp": "2024-05-16T09:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127600", + "Timestamp": "2024-05-16T09:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123900", + "Timestamp": "2024-05-16T09:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067600", + "Timestamp": "2024-05-16T09:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.847500", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.842500", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.717500", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.230100", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.225100", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.100100", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.083800", + "Timestamp": "2024-05-16T09:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.078800", + "Timestamp": "2024-05-16T09:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.953800", + "Timestamp": "2024-05-16T09:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149200", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145200", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089200", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.628300", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.389200", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.384200", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.259200", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.069200", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101300", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097300", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041300", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.195000", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.698500", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.668500", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.568500", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.756200", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.751200", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.626200", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.251700", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.462200", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105100", + "Timestamp": "2024-05-16T09:31:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.828700", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.823700", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.698700", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.265000", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.260000", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.135000", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220800", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.189100", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.461400", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.456400", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.331400", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.527300", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.522300", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.397300", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.293900", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.446600", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.416600", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.316600", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.663800", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.415100", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.410100", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.285100", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.419900", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.297300", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.292300", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.167300", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099100", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042800", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.107600", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.077600", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.977600", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.702200", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.405200", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.400200", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.275200", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.961400", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.931400", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.831400", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.208600", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.205600", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148600", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099900", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096200", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039900", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113700", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053700", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.371000", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.366000", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.241000", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.469600", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.439600", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.339600", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.564400", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.534400", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.434400", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261600", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.256600", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131600", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.780800", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164800", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160800", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063700", + "Timestamp": "2024-05-16T09:18:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003700", + "Timestamp": "2024-05-16T09:18:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003700", + "Timestamp": "2024-05-16T09:18:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T09:18:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214200", + "Timestamp": "2024-05-16T09:18:00.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.763000", + "Timestamp": "2024-05-16T09:17:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.212300", + "Timestamp": "2024-05-16T09:17:58.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.422200", + "Timestamp": "2024-05-16T09:17:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.587800", + "Timestamp": "2024-05-16T09:17:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.582800", + "Timestamp": "2024-05-16T09:17:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.457800", + "Timestamp": "2024-05-16T09:17:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226600", + "Timestamp": "2024-05-16T09:17:53.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.988300", + "Timestamp": "2024-05-16T09:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.983300", + "Timestamp": "2024-05-16T09:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.858300", + "Timestamp": "2024-05-16T09:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.248200", + "Timestamp": "2024-05-16T09:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.609000", + "Timestamp": "2024-05-16T09:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.604000", + "Timestamp": "2024-05-16T09:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.479000", + "Timestamp": "2024-05-16T09:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074900", + "Timestamp": "2024-05-16T09:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071200", + "Timestamp": "2024-05-16T09:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014900", + "Timestamp": "2024-05-16T09:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125700", + "Timestamp": "2024-05-16T09:17:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122000", + "Timestamp": "2024-05-16T09:17:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065700", + "Timestamp": "2024-05-16T09:17:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T09:17:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T09:17:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049700", + "Timestamp": "2024-05-16T09:17:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.424500", + "Timestamp": "2024-05-16T09:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.338900", + "Timestamp": "2024-05-16T09:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.308900", + "Timestamp": "2024-05-16T09:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.208900", + "Timestamp": "2024-05-16T09:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.101000", + "Timestamp": "2024-05-16T09:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.848000", + "Timestamp": "2024-05-16T09:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.843000", + "Timestamp": "2024-05-16T09:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.718000", + "Timestamp": "2024-05-16T09:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.828800", + "Timestamp": "2024-05-16T09:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.619500", + "Timestamp": "2024-05-16T09:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.411500", + "Timestamp": "2024-05-16T09:17:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.390700", + "Timestamp": "2024-05-16T09:17:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.385700", + "Timestamp": "2024-05-16T09:17:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.260700", + "Timestamp": "2024-05-16T09:17:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.479700", + "Timestamp": "2024-05-16T09:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.631000", + "Timestamp": "2024-05-16T09:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.976000", + "Timestamp": "2024-05-16T09:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.971000", + "Timestamp": "2024-05-16T09:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.846000", + "Timestamp": "2024-05-16T09:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.138300", + "Timestamp": "2024-05-16T09:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360900", + "Timestamp": "2024-05-16T09:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.355900", + "Timestamp": "2024-05-16T09:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230900", + "Timestamp": "2024-05-16T09:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.497600", + "Timestamp": "2024-05-16T09:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T09:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.819100", + "Timestamp": "2024-05-16T09:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T09:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102700", + "Timestamp": "2024-05-16T09:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046400", + "Timestamp": "2024-05-16T09:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.555300", + "Timestamp": "2024-05-16T09:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174600", + "Timestamp": "2024-05-16T09:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.214600", + "Timestamp": "2024-05-16T09:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T09:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.394300", + "Timestamp": "2024-05-16T09:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.389300", + "Timestamp": "2024-05-16T09:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.264300", + "Timestamp": "2024-05-16T09:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.826600", + "Timestamp": "2024-05-16T09:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.212800", + "Timestamp": "2024-05-16T09:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.207800", + "Timestamp": "2024-05-16T09:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.082800", + "Timestamp": "2024-05-16T09:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.905300", + "Timestamp": "2024-05-16T09:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.097600", + "Timestamp": "2024-05-16T09:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.092600", + "Timestamp": "2024-05-16T09:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967600", + "Timestamp": "2024-05-16T09:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.197900", + "Timestamp": "2024-05-16T09:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.192900", + "Timestamp": "2024-05-16T09:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.067900", + "Timestamp": "2024-05-16T09:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.409600", + "Timestamp": "2024-05-16T09:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.404600", + "Timestamp": "2024-05-16T09:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.279600", + "Timestamp": "2024-05-16T09:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.542700", + "Timestamp": "2024-05-16T09:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.537700", + "Timestamp": "2024-05-16T09:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.412700", + "Timestamp": "2024-05-16T09:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.478900", + "Timestamp": "2024-05-16T09:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473900", + "Timestamp": "2024-05-16T09:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.348900", + "Timestamp": "2024-05-16T09:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.527200", + "Timestamp": "2024-05-16T09:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.409200", + "Timestamp": "2024-05-16T09:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.404200", + "Timestamp": "2024-05-16T09:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.279200", + "Timestamp": "2024-05-16T09:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.473500", + "Timestamp": "2024-05-16T09:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115400", + "Timestamp": "2024-05-16T09:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155400", + "Timestamp": "2024-05-16T09:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055400", + "Timestamp": "2024-05-16T09:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.020700", + "Timestamp": "2024-05-16T09:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.015700", + "Timestamp": "2024-05-16T09:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.890700", + "Timestamp": "2024-05-16T09:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.283100", + "Timestamp": "2024-05-16T09:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.278100", + "Timestamp": "2024-05-16T09:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.153100", + "Timestamp": "2024-05-16T09:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.791700", + "Timestamp": "2024-05-16T09:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.761700", + "Timestamp": "2024-05-16T09:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.661700", + "Timestamp": "2024-05-16T09:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.265900", + "Timestamp": "2024-05-16T09:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.597500", + "Timestamp": "2024-05-16T09:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.592500", + "Timestamp": "2024-05-16T09:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.467500", + "Timestamp": "2024-05-16T09:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.474900", + "Timestamp": "2024-05-16T09:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.469900", + "Timestamp": "2024-05-16T09:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.344900", + "Timestamp": "2024-05-16T09:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.484400", + "Timestamp": "2024-05-16T09:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.454400", + "Timestamp": "2024-05-16T09:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.354400", + "Timestamp": "2024-05-16T09:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.619400", + "Timestamp": "2024-05-16T09:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.589400", + "Timestamp": "2024-05-16T09:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.489400", + "Timestamp": "2024-05-16T09:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.453100", + "Timestamp": "2024-05-16T09:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.448100", + "Timestamp": "2024-05-16T09:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.323100", + "Timestamp": "2024-05-16T09:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.447300", + "Timestamp": "2024-05-16T09:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.996600", + "Timestamp": "2024-05-16T09:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.966600", + "Timestamp": "2024-05-16T09:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.866600", + "Timestamp": "2024-05-16T09:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.575100", + "Timestamp": "2024-05-16T09:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218400", + "Timestamp": "2024-05-16T09:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.329500", + "Timestamp": "2024-05-16T09:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.092700", + "Timestamp": "2024-05-16T09:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.087700", + "Timestamp": "2024-05-16T09:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.962700", + "Timestamp": "2024-05-16T09:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.352500", + "Timestamp": "2024-05-16T09:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.347500", + "Timestamp": "2024-05-16T09:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.222500", + "Timestamp": "2024-05-16T09:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.418300", + "Timestamp": "2024-05-16T09:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.413300", + "Timestamp": "2024-05-16T09:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.288300", + "Timestamp": "2024-05-16T09:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.726200", + "Timestamp": "2024-05-16T09:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.497600", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.492600", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.367600", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.736300", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.731300", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.606300", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.722100", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.425400", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.762700", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.732700", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.632700", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.585300", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.580300", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.455300", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.629600", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.624600", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.499600", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087700", + "Timestamp": "2024-05-16T09:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084000", + "Timestamp": "2024-05-16T09:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027700", + "Timestamp": "2024-05-16T09:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110400", + "Timestamp": "2024-05-16T09:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115500", + "Timestamp": "2024-05-16T09:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111800", + "Timestamp": "2024-05-16T09:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055500", + "Timestamp": "2024-05-16T09:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.826100", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.821100", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.696100", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.624000", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.619000", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.494000", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104100", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100400", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044100", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109000", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.948800", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.528700", + "Timestamp": "2024-05-16T09:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.523700", + "Timestamp": "2024-05-16T09:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.398700", + "Timestamp": "2024-05-16T09:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.674800", + "Timestamp": "2024-05-16T09:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.664900", + "Timestamp": "2024-05-16T09:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.634900", + "Timestamp": "2024-05-16T09:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.534900", + "Timestamp": "2024-05-16T09:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.599600", + "Timestamp": "2024-05-16T09:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.594600", + "Timestamp": "2024-05-16T09:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.469600", + "Timestamp": "2024-05-16T09:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.061700", + "Timestamp": "2024-05-16T09:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.056700", + "Timestamp": "2024-05-16T09:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.931700", + "Timestamp": "2024-05-16T09:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.926200", + "Timestamp": "2024-05-16T09:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.921200", + "Timestamp": "2024-05-16T09:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.796200", + "Timestamp": "2024-05-16T09:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.718400", + "Timestamp": "2024-05-16T09:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.922200", + "Timestamp": "2024-05-16T09:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221900", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.202600", + "Timestamp": "2024-05-16T09:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.197600", + "Timestamp": "2024-05-16T09:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.072600", + "Timestamp": "2024-05-16T09:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.382200", + "Timestamp": "2024-05-16T09:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.485400", + "Timestamp": "2024-05-16T09:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.480400", + "Timestamp": "2024-05-16T09:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.355400", + "Timestamp": "2024-05-16T09:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.758100", + "Timestamp": "2024-05-16T09:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.753100", + "Timestamp": "2024-05-16T09:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.628100", + "Timestamp": "2024-05-16T09:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.719700", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.714700", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.589700", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.295000", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.290000", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.165000", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.902300", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.897300", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.772300", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.153700", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.864900", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.859900", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.734900", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096400", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092400", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036400", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.922800", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.892800", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.792800", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.435000", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.430000", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.305000", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.638700", + "Timestamp": "2024-05-16T09:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.633700", + "Timestamp": "2024-05-16T09:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.508700", + "Timestamp": "2024-05-16T09:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.394500", + "Timestamp": "2024-05-16T09:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.491300", + "Timestamp": "2024-05-16T09:17:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.486300", + "Timestamp": "2024-05-16T09:17:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.361300", + "Timestamp": "2024-05-16T09:17:19.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151900", + "Timestamp": "2024-05-16T09:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148200", + "Timestamp": "2024-05-16T09:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091900", + "Timestamp": "2024-05-16T09:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.223100", + "Timestamp": "2024-05-16T09:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.218100", + "Timestamp": "2024-05-16T09:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093100", + "Timestamp": "2024-05-16T09:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.795700", + "Timestamp": "2024-05-16T09:17:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.790700", + "Timestamp": "2024-05-16T09:17:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.665700", + "Timestamp": "2024-05-16T09:17:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.802300", + "Timestamp": "2024-05-16T09:17:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.797300", + "Timestamp": "2024-05-16T09:17:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.672300", + "Timestamp": "2024-05-16T09:17:16.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T09:17:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.685400", + "Timestamp": "2024-05-16T09:17:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.680400", + "Timestamp": "2024-05-16T09:17:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.555400", + "Timestamp": "2024-05-16T09:17:15.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.567200", + "Timestamp": "2024-05-16T09:17:15.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.414800", + "Timestamp": "2024-05-16T09:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.409800", + "Timestamp": "2024-05-16T09:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.284800", + "Timestamp": "2024-05-16T09:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.336100", + "Timestamp": "2024-05-16T09:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.317300", + "Timestamp": "2024-05-16T09:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.331100", + "Timestamp": "2024-05-16T09:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.312300", + "Timestamp": "2024-05-16T09:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.206100", + "Timestamp": "2024-05-16T09:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.187300", + "Timestamp": "2024-05-16T09:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.636300", + "Timestamp": "2024-05-16T09:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.606300", + "Timestamp": "2024-05-16T09:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.506300", + "Timestamp": "2024-05-16T09:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.877000", + "Timestamp": "2024-05-16T09:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.850100", + "Timestamp": "2024-05-16T09:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.845100", + "Timestamp": "2024-05-16T09:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.720100", + "Timestamp": "2024-05-16T09:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083300", + "Timestamp": "2024-05-16T09:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079600", + "Timestamp": "2024-05-16T09:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023300", + "Timestamp": "2024-05-16T09:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.644300", + "Timestamp": "2024-05-16T09:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298300", + "Timestamp": "2024-05-16T09:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293300", + "Timestamp": "2024-05-16T09:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168300", + "Timestamp": "2024-05-16T09:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.732600", + "Timestamp": "2024-05-16T09:17:08.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.727600", + "Timestamp": "2024-05-16T09:17:08.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.602600", + "Timestamp": "2024-05-16T09:17:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.443600", + "Timestamp": "2024-05-16T09:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.253900", + "Timestamp": "2024-05-16T09:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.248900", + "Timestamp": "2024-05-16T09:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123900", + "Timestamp": "2024-05-16T09:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.187500", + "Timestamp": "2024-05-16T09:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183500", + "Timestamp": "2024-05-16T09:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127500", + "Timestamp": "2024-05-16T09:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.178400", + "Timestamp": "2024-05-16T09:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174700", + "Timestamp": "2024-05-16T09:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118400", + "Timestamp": "2024-05-16T09:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "9.819000", + "Timestamp": "2024-05-16T09:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.395600", + "Timestamp": "2024-05-16T09:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.390600", + "Timestamp": "2024-05-16T09:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.265600", + "Timestamp": "2024-05-16T09:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.425400", + "Timestamp": "2024-05-16T09:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.281400", + "Timestamp": "2024-05-16T09:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p2.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.251400", + "Timestamp": "2024-05-16T09:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.151400", + "Timestamp": "2024-05-16T09:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.786900", + "Timestamp": "2024-05-16T09:17:01.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.781900", + "Timestamp": "2024-05-16T09:17:01.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.656900", + "Timestamp": "2024-05-16T09:17:01.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Windows", + "SpotPrice": "3.649700", + "Timestamp": "2024-05-16T09:17:00.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.415400", + "Timestamp": "2024-05-16T09:16:59.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.410400", + "Timestamp": "2024-05-16T09:16:59.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.285400", + "Timestamp": "2024-05-16T09:16:59.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.378800", + "Timestamp": "2024-05-16T09:16:59.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.348800", + "Timestamp": "2024-05-16T09:16:59.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.248800", + "Timestamp": "2024-05-16T09:16:59.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.824600", + "Timestamp": "2024-05-16T09:16:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.859400", + "Timestamp": "2024-05-16T09:16:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.061400", + "Timestamp": "2024-05-16T09:16:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.604900", + "Timestamp": "2024-05-16T09:16:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.599900", + "Timestamp": "2024-05-16T09:16:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.474900", + "Timestamp": "2024-05-16T09:16:55.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.154200", + "Timestamp": "2024-05-16T09:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.149200", + "Timestamp": "2024-05-16T09:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.024200", + "Timestamp": "2024-05-16T09:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.179800", + "Timestamp": "2024-05-16T09:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.219800", + "Timestamp": "2024-05-16T09:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119800", + "Timestamp": "2024-05-16T09:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.888700", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.883700", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.758700", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.871800", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.866800", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.741800", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.852800", + "Timestamp": "2024-05-16T09:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.151500", + "Timestamp": "2024-05-16T09:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.146500", + "Timestamp": "2024-05-16T09:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.021500", + "Timestamp": "2024-05-16T09:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.475500", + "Timestamp": "2024-05-16T09:16:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.445500", + "Timestamp": "2024-05-16T09:16:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.345500", + "Timestamp": "2024-05-16T09:16:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.001300", + "Timestamp": "2024-05-16T09:16:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.971300", + "Timestamp": "2024-05-16T09:16:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.871300", + "Timestamp": "2024-05-16T09:16:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.844700", + "Timestamp": "2024-05-16T09:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.839700", + "Timestamp": "2024-05-16T09:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.714700", + "Timestamp": "2024-05-16T09:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T09:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150700", + "Timestamp": "2024-05-16T09:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050700", + "Timestamp": "2024-05-16T09:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.087100", + "Timestamp": "2024-05-16T09:02:59.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.872800", + "Timestamp": "2024-05-16T09:02:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169800", + "Timestamp": "2024-05-16T09:02:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166100", + "Timestamp": "2024-05-16T09:02:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T09:02:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.561200", + "Timestamp": "2024-05-16T09:02:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.333700", + "Timestamp": "2024-05-16T09:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.328700", + "Timestamp": "2024-05-16T09:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.203700", + "Timestamp": "2024-05-16T09:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.816500", + "Timestamp": "2024-05-16T09:02:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.489000", + "Timestamp": "2024-05-16T09:02:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.811500", + "Timestamp": "2024-05-16T09:02:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.484000", + "Timestamp": "2024-05-16T09:02:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.686500", + "Timestamp": "2024-05-16T09:02:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.359000", + "Timestamp": "2024-05-16T09:02:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.434100", + "Timestamp": "2024-05-16T09:02:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Windows", + "SpotPrice": "7.355200", + "Timestamp": "2024-05-16T09:02:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.410000", + "Timestamp": "2024-05-16T09:02:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.288000", + "Timestamp": "2024-05-16T09:02:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.526400", + "Timestamp": "2024-05-16T09:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.587500", + "Timestamp": "2024-05-16T09:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.639200", + "Timestamp": "2024-05-16T09:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.634200", + "Timestamp": "2024-05-16T09:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.509200", + "Timestamp": "2024-05-16T09:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.994000", + "Timestamp": "2024-05-16T09:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.989000", + "Timestamp": "2024-05-16T09:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.864000", + "Timestamp": "2024-05-16T09:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.877900", + "Timestamp": "2024-05-16T09:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.872900", + "Timestamp": "2024-05-16T09:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.747900", + "Timestamp": "2024-05-16T09:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.919700", + "Timestamp": "2024-05-16T09:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.748200", + "Timestamp": "2024-05-16T09:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.743200", + "Timestamp": "2024-05-16T09:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.618200", + "Timestamp": "2024-05-16T09:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416500", + "Timestamp": "2024-05-16T09:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.624300", + "Timestamp": "2024-05-16T09:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.528500", + "Timestamp": "2024-05-16T09:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.523500", + "Timestamp": "2024-05-16T09:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.398500", + "Timestamp": "2024-05-16T09:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.662800", + "Timestamp": "2024-05-16T09:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.829100", + "Timestamp": "2024-05-16T09:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.628700", + "Timestamp": "2024-05-16T09:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.623700", + "Timestamp": "2024-05-16T09:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.498700", + "Timestamp": "2024-05-16T09:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.528100", + "Timestamp": "2024-05-16T09:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.523100", + "Timestamp": "2024-05-16T09:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.398100", + "Timestamp": "2024-05-16T09:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.684200", + "Timestamp": "2024-05-16T09:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.654200", + "Timestamp": "2024-05-16T09:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.554200", + "Timestamp": "2024-05-16T09:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235900", + "Timestamp": "2024-05-16T09:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.796900", + "Timestamp": "2024-05-16T09:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.791900", + "Timestamp": "2024-05-16T09:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.666900", + "Timestamp": "2024-05-16T09:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.631400", + "Timestamp": "2024-05-16T09:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.715000", + "Timestamp": "2024-05-16T09:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.124700", + "Timestamp": "2024-05-16T09:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.710000", + "Timestamp": "2024-05-16T09:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.119700", + "Timestamp": "2024-05-16T09:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.585000", + "Timestamp": "2024-05-16T09:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.994700", + "Timestamp": "2024-05-16T09:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.231800", + "Timestamp": "2024-05-16T09:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.228100", + "Timestamp": "2024-05-16T09:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171800", + "Timestamp": "2024-05-16T09:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102400", + "Timestamp": "2024-05-16T09:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.313700", + "Timestamp": "2024-05-16T09:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.308700", + "Timestamp": "2024-05-16T09:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.183700", + "Timestamp": "2024-05-16T09:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.729100", + "Timestamp": "2024-05-16T09:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.724100", + "Timestamp": "2024-05-16T09:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.599100", + "Timestamp": "2024-05-16T09:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.546300", + "Timestamp": "2024-05-16T09:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.816500", + "Timestamp": "2024-05-16T09:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.510500", + "Timestamp": "2024-05-16T09:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.505500", + "Timestamp": "2024-05-16T09:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.380500", + "Timestamp": "2024-05-16T09:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.673200", + "Timestamp": "2024-05-16T09:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.942900", + "Timestamp": "2024-05-16T09:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.937900", + "Timestamp": "2024-05-16T09:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.812900", + "Timestamp": "2024-05-16T09:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.446500", + "Timestamp": "2024-05-16T09:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.441500", + "Timestamp": "2024-05-16T09:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.316500", + "Timestamp": "2024-05-16T09:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113700", + "Timestamp": "2024-05-16T09:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.395900", + "Timestamp": "2024-05-16T09:02:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.678800", + "Timestamp": "2024-05-16T09:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.673800", + "Timestamp": "2024-05-16T09:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.548800", + "Timestamp": "2024-05-16T09:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.296200", + "Timestamp": "2024-05-16T09:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.291200", + "Timestamp": "2024-05-16T09:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.166200", + "Timestamp": "2024-05-16T09:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.204600", + "Timestamp": "2024-05-16T09:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.283400", + "Timestamp": "2024-05-16T09:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.267900", + "Timestamp": "2024-05-16T09:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.686700", + "Timestamp": "2024-05-16T09:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.659500", + "Timestamp": "2024-05-16T09:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.912700", + "Timestamp": "2024-05-16T09:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.882700", + "Timestamp": "2024-05-16T09:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.782700", + "Timestamp": "2024-05-16T09:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.015300", + "Timestamp": "2024-05-16T09:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.448300", + "Timestamp": "2024-05-16T09:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.640000", + "Timestamp": "2024-05-16T09:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.019000", + "Timestamp": "2024-05-16T09:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.442300", + "Timestamp": "2024-05-16T09:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.437300", + "Timestamp": "2024-05-16T09:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.312300", + "Timestamp": "2024-05-16T09:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.412300", + "Timestamp": "2024-05-16T09:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.407300", + "Timestamp": "2024-05-16T09:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.282300", + "Timestamp": "2024-05-16T09:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.495700", + "Timestamp": "2024-05-16T09:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.490700", + "Timestamp": "2024-05-16T09:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.365700", + "Timestamp": "2024-05-16T09:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.847200", + "Timestamp": "2024-05-16T09:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.859200", + "Timestamp": "2024-05-16T09:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.854200", + "Timestamp": "2024-05-16T09:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.729200", + "Timestamp": "2024-05-16T09:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.735500", + "Timestamp": "2024-05-16T09:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.730500", + "Timestamp": "2024-05-16T09:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.605500", + "Timestamp": "2024-05-16T09:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261600", + "Timestamp": "2024-05-16T09:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.231600", + "Timestamp": "2024-05-16T09:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131600", + "Timestamp": "2024-05-16T09:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.459000", + "Timestamp": "2024-05-16T09:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.598200", + "Timestamp": "2024-05-16T09:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.424100", + "Timestamp": "2024-05-16T09:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.419100", + "Timestamp": "2024-05-16T09:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.294100", + "Timestamp": "2024-05-16T09:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.239900", + "Timestamp": "2024-05-16T09:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.236500", + "Timestamp": "2024-05-16T09:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073000", + "Timestamp": "2024-05-16T09:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069300", + "Timestamp": "2024-05-16T09:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013000", + "Timestamp": "2024-05-16T09:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.461500", + "Timestamp": "2024-05-16T09:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.664400", + "Timestamp": "2024-05-16T09:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.410900", + "Timestamp": "2024-05-16T09:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.171300", + "Timestamp": "2024-05-16T09:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.141300", + "Timestamp": "2024-05-16T09:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.041300", + "Timestamp": "2024-05-16T09:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.719900", + "Timestamp": "2024-05-16T09:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.714900", + "Timestamp": "2024-05-16T09:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.589900", + "Timestamp": "2024-05-16T09:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.260800", + "Timestamp": "2024-05-16T09:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.255800", + "Timestamp": "2024-05-16T09:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130800", + "Timestamp": "2024-05-16T09:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.181200", + "Timestamp": "2024-05-16T09:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.151200", + "Timestamp": "2024-05-16T09:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.051200", + "Timestamp": "2024-05-16T09:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.190100", + "Timestamp": "2024-05-16T09:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.186100", + "Timestamp": "2024-05-16T09:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130100", + "Timestamp": "2024-05-16T09:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.950500", + "Timestamp": "2024-05-16T09:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.945500", + "Timestamp": "2024-05-16T09:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.820500", + "Timestamp": "2024-05-16T09:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T09:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-16T09:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048200", + "Timestamp": "2024-05-16T09:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.947100", + "Timestamp": "2024-05-16T09:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.259500", + "Timestamp": "2024-05-16T09:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.254500", + "Timestamp": "2024-05-16T09:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.129500", + "Timestamp": "2024-05-16T09:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137000", + "Timestamp": "2024-05-16T09:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133300", + "Timestamp": "2024-05-16T09:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077000", + "Timestamp": "2024-05-16T09:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124200", + "Timestamp": "2024-05-16T09:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120200", + "Timestamp": "2024-05-16T09:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064200", + "Timestamp": "2024-05-16T09:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.897200", + "Timestamp": "2024-05-16T09:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.564200", + "Timestamp": "2024-05-16T09:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.559200", + "Timestamp": "2024-05-16T09:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.434200", + "Timestamp": "2024-05-16T09:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416700", + "Timestamp": "2024-05-16T09:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.609400", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.766600", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.761600", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.636600", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "a1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085000", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "a1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.081300", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "a1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025000", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439300", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.407100", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.560300", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.181700", + "Timestamp": "2024-05-16T09:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.176700", + "Timestamp": "2024-05-16T09:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.051700", + "Timestamp": "2024-05-16T09:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.681900", + "Timestamp": "2024-05-16T09:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.676900", + "Timestamp": "2024-05-16T09:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.551900", + "Timestamp": "2024-05-16T09:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.359300", + "Timestamp": "2024-05-16T09:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.354300", + "Timestamp": "2024-05-16T09:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.229300", + "Timestamp": "2024-05-16T09:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.659900", + "Timestamp": "2024-05-16T09:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.683300", + "Timestamp": "2024-05-16T09:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.143400", + "Timestamp": "2024-05-16T09:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.138400", + "Timestamp": "2024-05-16T09:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.013400", + "Timestamp": "2024-05-16T09:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.773900", + "Timestamp": "2024-05-16T09:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.768900", + "Timestamp": "2024-05-16T09:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.643900", + "Timestamp": "2024-05-16T09:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118300", + "Timestamp": "2024-05-16T09:02:16.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T09:02:16.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058300", + "Timestamp": "2024-05-16T09:02:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.276100", + "Timestamp": "2024-05-16T09:02:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158200", + "Timestamp": "2024-05-16T09:02:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154200", + "Timestamp": "2024-05-16T09:02:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098200", + "Timestamp": "2024-05-16T09:02:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.715700", + "Timestamp": "2024-05-16T09:02:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.710700", + "Timestamp": "2024-05-16T09:02:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.585700", + "Timestamp": "2024-05-16T09:02:15.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116200", + "Timestamp": "2024-05-16T09:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156200", + "Timestamp": "2024-05-16T09:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056200", + "Timestamp": "2024-05-16T09:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "41.473400", + "Timestamp": "2024-05-16T09:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "41.468400", + "Timestamp": "2024-05-16T09:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "41.343400", + "Timestamp": "2024-05-16T09:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311500", + "Timestamp": "2024-05-16T09:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.307500", + "Timestamp": "2024-05-16T09:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.251500", + "Timestamp": "2024-05-16T09:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.293800", + "Timestamp": "2024-05-16T09:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.505200", + "Timestamp": "2024-05-16T09:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.500200", + "Timestamp": "2024-05-16T09:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.375200", + "Timestamp": "2024-05-16T09:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T09:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.394600", + "Timestamp": "2024-05-16T09:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.389600", + "Timestamp": "2024-05-16T09:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.264600", + "Timestamp": "2024-05-16T09:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429700", + "Timestamp": "2024-05-16T09:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.385400", + "Timestamp": "2024-05-16T09:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.380400", + "Timestamp": "2024-05-16T09:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.255400", + "Timestamp": "2024-05-16T09:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128000", + "Timestamp": "2024-05-16T09:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124000", + "Timestamp": "2024-05-16T09:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068000", + "Timestamp": "2024-05-16T09:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.088400", + "Timestamp": "2024-05-16T09:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.083400", + "Timestamp": "2024-05-16T09:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.958400", + "Timestamp": "2024-05-16T09:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.087700", + "Timestamp": "2024-05-16T09:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.082700", + "Timestamp": "2024-05-16T09:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.957700", + "Timestamp": "2024-05-16T09:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072900", + "Timestamp": "2024-05-16T09:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069200", + "Timestamp": "2024-05-16T09:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012900", + "Timestamp": "2024-05-16T09:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.591300", + "Timestamp": "2024-05-16T09:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.586300", + "Timestamp": "2024-05-16T09:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.461300", + "Timestamp": "2024-05-16T09:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.512500", + "Timestamp": "2024-05-16T09:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.438300", + "Timestamp": "2024-05-16T09:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.415900", + "Timestamp": "2024-05-16T09:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.410900", + "Timestamp": "2024-05-16T09:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.285900", + "Timestamp": "2024-05-16T09:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.532400", + "Timestamp": "2024-05-16T09:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093300", + "Timestamp": "2024-05-16T09:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089600", + "Timestamp": "2024-05-16T09:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033300", + "Timestamp": "2024-05-16T09:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T09:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143300", + "Timestamp": "2024-05-16T09:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183300", + "Timestamp": "2024-05-16T09:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083300", + "Timestamp": "2024-05-16T09:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.478700", + "Timestamp": "2024-05-16T09:01:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473700", + "Timestamp": "2024-05-16T09:01:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.348700", + "Timestamp": "2024-05-16T09:01:58.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.878600", + "Timestamp": "2024-05-16T09:01:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.105900", + "Timestamp": "2024-05-16T09:01:57.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.848600", + "Timestamp": "2024-05-16T09:01:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.075900", + "Timestamp": "2024-05-16T09:01:57.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.748600", + "Timestamp": "2024-05-16T09:01:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.975900", + "Timestamp": "2024-05-16T09:01:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.244600", + "Timestamp": "2024-05-16T09:01:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.284600", + "Timestamp": "2024-05-16T09:01:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184600", + "Timestamp": "2024-05-16T09:01:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.288600", + "Timestamp": "2024-05-16T09:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.283600", + "Timestamp": "2024-05-16T09:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158600", + "Timestamp": "2024-05-16T09:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.677200", + "Timestamp": "2024-05-16T09:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.750100", + "Timestamp": "2024-05-16T09:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.771800", + "Timestamp": "2024-05-16T09:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.745100", + "Timestamp": "2024-05-16T09:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.766800", + "Timestamp": "2024-05-16T09:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.620100", + "Timestamp": "2024-05-16T09:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.641800", + "Timestamp": "2024-05-16T09:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.798900", + "Timestamp": "2024-05-16T09:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.424300", + "Timestamp": "2024-05-16T09:01:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.734400", + "Timestamp": "2024-05-16T09:01:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215000", + "Timestamp": "2024-05-16T09:01:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.471600", + "Timestamp": "2024-05-16T09:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.466600", + "Timestamp": "2024-05-16T09:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.341600", + "Timestamp": "2024-05-16T09:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.234500", + "Timestamp": "2024-05-16T09:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.702000", + "Timestamp": "2024-05-16T09:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.157200", + "Timestamp": "2024-05-16T09:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.152200", + "Timestamp": "2024-05-16T09:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.027200", + "Timestamp": "2024-05-16T09:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.477800", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.472800", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.347800", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094500", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090800", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034500", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137600", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139700", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133600", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135700", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077600", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079700", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.057200", + "Timestamp": "2024-05-16T09:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.198000", + "Timestamp": "2024-05-16T09:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.191500", + "Timestamp": "2024-05-16T09:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193000", + "Timestamp": "2024-05-16T09:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.186500", + "Timestamp": "2024-05-16T09:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068000", + "Timestamp": "2024-05-16T09:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061500", + "Timestamp": "2024-05-16T09:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.488700", + "Timestamp": "2024-05-16T09:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.181600", + "Timestamp": "2024-05-16T09:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177900", + "Timestamp": "2024-05-16T09:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121600", + "Timestamp": "2024-05-16T09:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.882800", + "Timestamp": "2024-05-16T09:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.436600", + "Timestamp": "2024-05-16T09:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.428400", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.423400", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.298400", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.999700", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.994700", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.869700", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.473900", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.468900", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.343900", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080800", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120800", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020800", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.243600", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.238600", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113600", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.755600", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.500300", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.495300", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.370300", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.679900", + "Timestamp": "2024-05-16T09:01:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.649900", + "Timestamp": "2024-05-16T09:01:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.549900", + "Timestamp": "2024-05-16T09:01:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.573200", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.543200", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.443200", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.797600", + "Timestamp": "2024-05-16T08:49:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.792600", + "Timestamp": "2024-05-16T08:49:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.667600", + "Timestamp": "2024-05-16T08:49:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.462100", + "Timestamp": "2024-05-16T08:47:59.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.457100", + "Timestamp": "2024-05-16T08:47:59.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.332100", + "Timestamp": "2024-05-16T08:47:59.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.868600", + "Timestamp": "2024-05-16T08:47:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.739900", + "Timestamp": "2024-05-16T08:47:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.607400", + "Timestamp": "2024-05-16T08:47:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.602400", + "Timestamp": "2024-05-16T08:47:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.477400", + "Timestamp": "2024-05-16T08:47:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.876700", + "Timestamp": "2024-05-16T08:47:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.871700", + "Timestamp": "2024-05-16T08:47:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.746700", + "Timestamp": "2024-05-16T08:47:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.438500", + "Timestamp": "2024-05-16T08:47:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.246400", + "Timestamp": "2024-05-16T08:47:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.124200", + "Timestamp": "2024-05-16T08:47:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.241400", + "Timestamp": "2024-05-16T08:47:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.119200", + "Timestamp": "2024-05-16T08:47:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.116400", + "Timestamp": "2024-05-16T08:47:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.994200", + "Timestamp": "2024-05-16T08:47:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.520700", + "Timestamp": "2024-05-16T08:47:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.515700", + "Timestamp": "2024-05-16T08:47:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.390700", + "Timestamp": "2024-05-16T08:47:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.377100", + "Timestamp": "2024-05-16T08:47:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.601600", + "Timestamp": "2024-05-16T08:47:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.571600", + "Timestamp": "2024-05-16T08:47:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.471600", + "Timestamp": "2024-05-16T08:47:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.925500", + "Timestamp": "2024-05-16T08:47:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.920500", + "Timestamp": "2024-05-16T08:47:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.795500", + "Timestamp": "2024-05-16T08:47:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.680000", + "Timestamp": "2024-05-16T08:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.682400", + "Timestamp": "2024-05-16T08:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "8.360700", + "Timestamp": "2024-05-16T08:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "8.355700", + "Timestamp": "2024-05-16T08:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "8.230700", + "Timestamp": "2024-05-16T08:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.409500", + "Timestamp": "2024-05-16T08:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.404500", + "Timestamp": "2024-05-16T08:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.279500", + "Timestamp": "2024-05-16T08:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.798300", + "Timestamp": "2024-05-16T08:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.793300", + "Timestamp": "2024-05-16T08:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.668300", + "Timestamp": "2024-05-16T08:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.597000", + "Timestamp": "2024-05-16T08:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.733100", + "Timestamp": "2024-05-16T08:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.216100", + "Timestamp": "2024-05-16T08:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.154100", + "Timestamp": "2024-05-16T08:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.149100", + "Timestamp": "2024-05-16T08:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.024100", + "Timestamp": "2024-05-16T08:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.056700", + "Timestamp": "2024-05-16T08:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.840600", + "Timestamp": "2024-05-16T08:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.835600", + "Timestamp": "2024-05-16T08:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.710600", + "Timestamp": "2024-05-16T08:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.542100", + "Timestamp": "2024-05-16T08:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.932700", + "Timestamp": "2024-05-16T08:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.902700", + "Timestamp": "2024-05-16T08:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.802700", + "Timestamp": "2024-05-16T08:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.682700", + "Timestamp": "2024-05-16T08:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.677700", + "Timestamp": "2024-05-16T08:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.552700", + "Timestamp": "2024-05-16T08:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.646500", + "Timestamp": "2024-05-16T08:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.641500", + "Timestamp": "2024-05-16T08:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.516500", + "Timestamp": "2024-05-16T08:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.851900", + "Timestamp": "2024-05-16T08:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.909400", + "Timestamp": "2024-05-16T08:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.477700", + "Timestamp": "2024-05-16T08:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.472700", + "Timestamp": "2024-05-16T08:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.347700", + "Timestamp": "2024-05-16T08:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.227100", + "Timestamp": "2024-05-16T08:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "a1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.222100", + "Timestamp": "2024-05-16T08:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T08:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.744100", + "Timestamp": "2024-05-16T08:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.639500", + "Timestamp": "2024-05-16T08:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.739100", + "Timestamp": "2024-05-16T08:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.634500", + "Timestamp": "2024-05-16T08:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.614100", + "Timestamp": "2024-05-16T08:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.509500", + "Timestamp": "2024-05-16T08:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.415500", + "Timestamp": "2024-05-16T08:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.656200", + "Timestamp": "2024-05-16T08:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.909100", + "Timestamp": "2024-05-16T08:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.912100", + "Timestamp": "2024-05-16T08:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.936300", + "Timestamp": "2024-05-16T08:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T08:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "4.944900", + "Timestamp": "2024-05-16T08:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.830800", + "Timestamp": "2024-05-16T08:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.778300", + "Timestamp": "2024-05-16T08:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.592900", + "Timestamp": "2024-05-16T08:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.587900", + "Timestamp": "2024-05-16T08:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.462900", + "Timestamp": "2024-05-16T08:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.727200", + "Timestamp": "2024-05-16T08:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.722200", + "Timestamp": "2024-05-16T08:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.597200", + "Timestamp": "2024-05-16T08:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.272800", + "Timestamp": "2024-05-16T08:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.841900", + "Timestamp": "2024-05-16T08:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.836900", + "Timestamp": "2024-05-16T08:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.711900", + "Timestamp": "2024-05-16T08:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.425700", + "Timestamp": "2024-05-16T08:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.899000", + "Timestamp": "2024-05-16T08:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.894000", + "Timestamp": "2024-05-16T08:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.769000", + "Timestamp": "2024-05-16T08:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.849300", + "Timestamp": "2024-05-16T08:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.844300", + "Timestamp": "2024-05-16T08:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.719300", + "Timestamp": "2024-05-16T08:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.238900", + "Timestamp": "2024-05-16T08:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.697300", + "Timestamp": "2024-05-16T08:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.692300", + "Timestamp": "2024-05-16T08:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.567300", + "Timestamp": "2024-05-16T08:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T08:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-16T08:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084400", + "Timestamp": "2024-05-16T08:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028100", + "Timestamp": "2024-05-16T08:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218200", + "Timestamp": "2024-05-16T08:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.139700", + "Timestamp": "2024-05-16T08:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.565600", + "Timestamp": "2024-05-16T08:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.560600", + "Timestamp": "2024-05-16T08:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.435600", + "Timestamp": "2024-05-16T08:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.654700", + "Timestamp": "2024-05-16T08:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.649700", + "Timestamp": "2024-05-16T08:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.524700", + "Timestamp": "2024-05-16T08:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.838800", + "Timestamp": "2024-05-16T08:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.820200", + "Timestamp": "2024-05-16T08:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.821400", + "Timestamp": "2024-05-16T08:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.300800", + "Timestamp": "2024-05-16T08:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.295800", + "Timestamp": "2024-05-16T08:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.170800", + "Timestamp": "2024-05-16T08:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.206300", + "Timestamp": "2024-05-16T08:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.201300", + "Timestamp": "2024-05-16T08:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.076300", + "Timestamp": "2024-05-16T08:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.984600", + "Timestamp": "2024-05-16T08:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.979600", + "Timestamp": "2024-05-16T08:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.854600", + "Timestamp": "2024-05-16T08:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.868500", + "Timestamp": "2024-05-16T08:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.744600", + "Timestamp": "2024-05-16T08:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.739600", + "Timestamp": "2024-05-16T08:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.614600", + "Timestamp": "2024-05-16T08:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.858400", + "Timestamp": "2024-05-16T08:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.292300", + "Timestamp": "2024-05-16T08:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.334300", + "Timestamp": "2024-05-16T08:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090200", + "Timestamp": "2024-05-16T08:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086500", + "Timestamp": "2024-05-16T08:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030200", + "Timestamp": "2024-05-16T08:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221700", + "Timestamp": "2024-05-16T08:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.312400", + "Timestamp": "2024-05-16T08:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.307400", + "Timestamp": "2024-05-16T08:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.182400", + "Timestamp": "2024-05-16T08:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.412600", + "Timestamp": "2024-05-16T08:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.677500", + "Timestamp": "2024-05-16T08:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.672500", + "Timestamp": "2024-05-16T08:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.547500", + "Timestamp": "2024-05-16T08:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148000", + "Timestamp": "2024-05-16T08:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143500", + "Timestamp": "2024-05-16T08:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.188000", + "Timestamp": "2024-05-16T08:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183500", + "Timestamp": "2024-05-16T08:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088000", + "Timestamp": "2024-05-16T08:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083500", + "Timestamp": "2024-05-16T08:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121900", + "Timestamp": "2024-05-16T08:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118200", + "Timestamp": "2024-05-16T08:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061900", + "Timestamp": "2024-05-16T08:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.199400", + "Timestamp": "2024-05-16T08:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "a1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.194400", + "Timestamp": "2024-05-16T08:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069400", + "Timestamp": "2024-05-16T08:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.541800", + "Timestamp": "2024-05-16T08:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.781200", + "Timestamp": "2024-05-16T08:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.751200", + "Timestamp": "2024-05-16T08:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.651200", + "Timestamp": "2024-05-16T08:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.341800", + "Timestamp": "2024-05-16T08:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.311800", + "Timestamp": "2024-05-16T08:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.211800", + "Timestamp": "2024-05-16T08:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.220300", + "Timestamp": "2024-05-16T08:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.260300", + "Timestamp": "2024-05-16T08:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.160300", + "Timestamp": "2024-05-16T08:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.012200", + "Timestamp": "2024-05-16T08:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.706600", + "Timestamp": "2024-05-16T08:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.601100", + "Timestamp": "2024-05-16T08:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.296600", + "Timestamp": "2024-05-16T08:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.291600", + "Timestamp": "2024-05-16T08:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.166600", + "Timestamp": "2024-05-16T08:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.909200", + "Timestamp": "2024-05-16T08:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.478400", + "Timestamp": "2024-05-16T08:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.932500", + "Timestamp": "2024-05-16T08:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.927500", + "Timestamp": "2024-05-16T08:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.802500", + "Timestamp": "2024-05-16T08:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.963400", + "Timestamp": "2024-05-16T08:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.839800", + "Timestamp": "2024-05-16T08:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.834800", + "Timestamp": "2024-05-16T08:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.709800", + "Timestamp": "2024-05-16T08:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.490400", + "Timestamp": "2024-05-16T08:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.460400", + "Timestamp": "2024-05-16T08:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.360400", + "Timestamp": "2024-05-16T08:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.260500", + "Timestamp": "2024-05-16T08:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.256800", + "Timestamp": "2024-05-16T08:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200500", + "Timestamp": "2024-05-16T08:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.031600", + "Timestamp": "2024-05-16T08:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.026600", + "Timestamp": "2024-05-16T08:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.901600", + "Timestamp": "2024-05-16T08:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127700", + "Timestamp": "2024-05-16T08:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124000", + "Timestamp": "2024-05-16T08:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067700", + "Timestamp": "2024-05-16T08:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.240400", + "Timestamp": "2024-05-16T08:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.424700", + "Timestamp": "2024-05-16T08:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.772800", + "Timestamp": "2024-05-16T08:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.824600", + "Timestamp": "2024-05-16T08:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.819600", + "Timestamp": "2024-05-16T08:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.694600", + "Timestamp": "2024-05-16T08:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.246200", + "Timestamp": "2024-05-16T08:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.241200", + "Timestamp": "2024-05-16T08:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116200", + "Timestamp": "2024-05-16T08:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-16T08:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102400", + "Timestamp": "2024-05-16T08:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046100", + "Timestamp": "2024-05-16T08:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.425100", + "Timestamp": "2024-05-16T08:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.520700", + "Timestamp": "2024-05-16T08:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.515700", + "Timestamp": "2024-05-16T08:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.390700", + "Timestamp": "2024-05-16T08:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.976300", + "Timestamp": "2024-05-16T08:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.971300", + "Timestamp": "2024-05-16T08:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.846300", + "Timestamp": "2024-05-16T08:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.972800", + "Timestamp": "2024-05-16T08:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.560000", + "Timestamp": "2024-05-16T08:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.555000", + "Timestamp": "2024-05-16T08:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.430000", + "Timestamp": "2024-05-16T08:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.363100", + "Timestamp": "2024-05-16T08:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.358100", + "Timestamp": "2024-05-16T08:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.233100", + "Timestamp": "2024-05-16T08:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.959000", + "Timestamp": "2024-05-16T08:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.954000", + "Timestamp": "2024-05-16T08:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.829000", + "Timestamp": "2024-05-16T08:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.566500", + "Timestamp": "2024-05-16T08:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.561500", + "Timestamp": "2024-05-16T08:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.436500", + "Timestamp": "2024-05-16T08:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.444600", + "Timestamp": "2024-05-16T08:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073600", + "Timestamp": "2024-05-16T08:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044600", + "Timestamp": "2024-05-16T08:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013600", + "Timestamp": "2024-05-16T08:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.378900", + "Timestamp": "2024-05-16T08:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.348900", + "Timestamp": "2024-05-16T08:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.248900", + "Timestamp": "2024-05-16T08:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.454300", + "Timestamp": "2024-05-16T08:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.422300", + "Timestamp": "2024-05-16T08:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.751100", + "Timestamp": "2024-05-16T08:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.373100", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.343100", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.243100", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.465900", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.460900", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.335900", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.730700", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.725700", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.600700", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.389800", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.359800", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.259800", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.389500", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.384500", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.259500", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138800", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135100", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078800", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.295000", + "Timestamp": "2024-05-16T08:47:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.290000", + "Timestamp": "2024-05-16T08:47:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.165000", + "Timestamp": "2024-05-16T08:47:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.943300", + "Timestamp": "2024-05-16T08:47:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.913300", + "Timestamp": "2024-05-16T08:47:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.813300", + "Timestamp": "2024-05-16T08:47:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131300", + "Timestamp": "2024-05-16T08:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127600", + "Timestamp": "2024-05-16T08:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071300", + "Timestamp": "2024-05-16T08:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.399100", + "Timestamp": "2024-05-16T08:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.394100", + "Timestamp": "2024-05-16T08:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.269100", + "Timestamp": "2024-05-16T08:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.011700", + "Timestamp": "2024-05-16T08:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.006700", + "Timestamp": "2024-05-16T08:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.881700", + "Timestamp": "2024-05-16T08:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.284600", + "Timestamp": "2024-05-16T08:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.279600", + "Timestamp": "2024-05-16T08:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.154600", + "Timestamp": "2024-05-16T08:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.486200", + "Timestamp": "2024-05-16T08:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.552500", + "Timestamp": "2024-05-16T08:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.481200", + "Timestamp": "2024-05-16T08:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.547500", + "Timestamp": "2024-05-16T08:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.356200", + "Timestamp": "2024-05-16T08:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.422500", + "Timestamp": "2024-05-16T08:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261900", + "Timestamp": "2024-05-16T08:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.256900", + "Timestamp": "2024-05-16T08:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131900", + "Timestamp": "2024-05-16T08:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.172300", + "Timestamp": "2024-05-16T08:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.167300", + "Timestamp": "2024-05-16T08:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.042300", + "Timestamp": "2024-05-16T08:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.925700", + "Timestamp": "2024-05-16T08:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.920700", + "Timestamp": "2024-05-16T08:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.795700", + "Timestamp": "2024-05-16T08:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T08:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T08:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050800", + "Timestamp": "2024-05-16T08:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.426800", + "Timestamp": "2024-05-16T08:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.421800", + "Timestamp": "2024-05-16T08:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.296800", + "Timestamp": "2024-05-16T08:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149800", + "Timestamp": "2024-05-16T08:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145800", + "Timestamp": "2024-05-16T08:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089800", + "Timestamp": "2024-05-16T08:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.212500", + "Timestamp": "2024-05-16T08:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.209500", + "Timestamp": "2024-05-16T08:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.152500", + "Timestamp": "2024-05-16T08:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162000", + "Timestamp": "2024-05-16T08:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158000", + "Timestamp": "2024-05-16T08:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102000", + "Timestamp": "2024-05-16T08:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.400500", + "Timestamp": "2024-05-16T08:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.750300", + "Timestamp": "2024-05-16T08:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116300", + "Timestamp": "2024-05-16T08:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-16T08:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056300", + "Timestamp": "2024-05-16T08:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.237300", + "Timestamp": "2024-05-16T08:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.228900", + "Timestamp": "2024-05-16T08:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.207300", + "Timestamp": "2024-05-16T08:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198900", + "Timestamp": "2024-05-16T08:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T08:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098900", + "Timestamp": "2024-05-16T08:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097600", + "Timestamp": "2024-05-16T08:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137600", + "Timestamp": "2024-05-16T08:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037600", + "Timestamp": "2024-05-16T08:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.160700", + "Timestamp": "2024-05-16T08:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.802600", + "Timestamp": "2024-05-16T08:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.155700", + "Timestamp": "2024-05-16T08:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.797600", + "Timestamp": "2024-05-16T08:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.030700", + "Timestamp": "2024-05-16T08:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.672600", + "Timestamp": "2024-05-16T08:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136900", + "Timestamp": "2024-05-16T08:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133200", + "Timestamp": "2024-05-16T08:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076900", + "Timestamp": "2024-05-16T08:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.244300", + "Timestamp": "2024-05-16T08:47:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.239300", + "Timestamp": "2024-05-16T08:47:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.114300", + "Timestamp": "2024-05-16T08:47:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.388800", + "Timestamp": "2024-05-16T08:47:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.383800", + "Timestamp": "2024-05-16T08:47:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.258800", + "Timestamp": "2024-05-16T08:47:01.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117400", + "Timestamp": "2024-05-16T08:46:59.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113700", + "Timestamp": "2024-05-16T08:46:59.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057400", + "Timestamp": "2024-05-16T08:46:59.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.050300", + "Timestamp": "2024-05-16T08:46:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.045300", + "Timestamp": "2024-05-16T08:46:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.920300", + "Timestamp": "2024-05-16T08:46:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.827000", + "Timestamp": "2024-05-16T08:46:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273400", + "Timestamp": "2024-05-16T08:46:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.243400", + "Timestamp": "2024-05-16T08:46:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143400", + "Timestamp": "2024-05-16T08:46:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.603100", + "Timestamp": "2024-05-16T08:46:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.283600", + "Timestamp": "2024-05-16T08:46:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.060600", + "Timestamp": "2024-05-16T08:46:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.055600", + "Timestamp": "2024-05-16T08:46:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.930600", + "Timestamp": "2024-05-16T08:46:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.206800", + "Timestamp": "2024-05-16T08:46:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.203100", + "Timestamp": "2024-05-16T08:46:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146800", + "Timestamp": "2024-05-16T08:46:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.234700", + "Timestamp": "2024-05-16T08:46:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.071200", + "Timestamp": "2024-05-16T08:46:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.767400", + "Timestamp": "2024-05-16T08:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.762400", + "Timestamp": "2024-05-16T08:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.637400", + "Timestamp": "2024-05-16T08:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.268600", + "Timestamp": "2024-05-16T08:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.263600", + "Timestamp": "2024-05-16T08:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.138600", + "Timestamp": "2024-05-16T08:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040900", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.319700", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.314700", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.189700", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.955100", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.925100", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.825100", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.410500", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.405500", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.280500", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.667300", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.405400", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.381300", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128200", + "Timestamp": "2024-05-16T08:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124200", + "Timestamp": "2024-05-16T08:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068200", + "Timestamp": "2024-05-16T08:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129600", + "Timestamp": "2024-05-16T08:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125600", + "Timestamp": "2024-05-16T08:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069600", + "Timestamp": "2024-05-16T08:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208900", + "Timestamp": "2024-05-16T08:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.672200", + "Timestamp": "2024-05-16T08:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.667200", + "Timestamp": "2024-05-16T08:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.542200", + "Timestamp": "2024-05-16T08:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113700", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053700", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095600", + "Timestamp": "2024-05-16T08:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091600", + "Timestamp": "2024-05-16T08:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035600", + "Timestamp": "2024-05-16T08:46:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.555600", + "Timestamp": "2024-05-16T08:43:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.555600", + "Timestamp": "2024-05-16T08:43:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.390100", + "Timestamp": "2024-05-16T08:32:58.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.385100", + "Timestamp": "2024-05-16T08:32:58.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.260100", + "Timestamp": "2024-05-16T08:32:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.196000", + "Timestamp": "2024-05-16T08:32:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.451500", + "Timestamp": "2024-05-16T08:32:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T08:32:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147300", + "Timestamp": "2024-05-16T08:32:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047300", + "Timestamp": "2024-05-16T08:32:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.202900", + "Timestamp": "2024-05-16T08:32:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198900", + "Timestamp": "2024-05-16T08:32:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142900", + "Timestamp": "2024-05-16T08:32:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.925400", + "Timestamp": "2024-05-16T08:32:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.920400", + "Timestamp": "2024-05-16T08:32:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.795400", + "Timestamp": "2024-05-16T08:32:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.362100", + "Timestamp": "2024-05-16T08:32:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.357100", + "Timestamp": "2024-05-16T08:32:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.232100", + "Timestamp": "2024-05-16T08:32:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225600", + "Timestamp": "2024-05-16T08:32:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.020100", + "Timestamp": "2024-05-16T08:32:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.015100", + "Timestamp": "2024-05-16T08:32:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.890100", + "Timestamp": "2024-05-16T08:32:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.339700", + "Timestamp": "2024-05-16T08:32:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.208500", + "Timestamp": "2024-05-16T08:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.203500", + "Timestamp": "2024-05-16T08:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.078500", + "Timestamp": "2024-05-16T08:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.829900", + "Timestamp": "2024-05-16T08:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.215400", + "Timestamp": "2024-05-16T08:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.211400", + "Timestamp": "2024-05-16T08:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.155400", + "Timestamp": "2024-05-16T08:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223900", + "Timestamp": "2024-05-16T08:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.808300", + "Timestamp": "2024-05-16T08:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.639100", + "Timestamp": "2024-05-16T08:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.803300", + "Timestamp": "2024-05-16T08:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.634100", + "Timestamp": "2024-05-16T08:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.678300", + "Timestamp": "2024-05-16T08:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.509100", + "Timestamp": "2024-05-16T08:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144000", + "Timestamp": "2024-05-16T08:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140000", + "Timestamp": "2024-05-16T08:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084000", + "Timestamp": "2024-05-16T08:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.746800", + "Timestamp": "2024-05-16T08:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.828700", + "Timestamp": "2024-05-16T08:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.849500", + "Timestamp": "2024-05-16T08:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235800", + "Timestamp": "2024-05-16T08:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.317500", + "Timestamp": "2024-05-16T08:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.312500", + "Timestamp": "2024-05-16T08:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.187500", + "Timestamp": "2024-05-16T08:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439300", + "Timestamp": "2024-05-16T08:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.475600", + "Timestamp": "2024-05-16T08:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.617000", + "Timestamp": "2024-05-16T08:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.612000", + "Timestamp": "2024-05-16T08:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.487000", + "Timestamp": "2024-05-16T08:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.838400", + "Timestamp": "2024-05-16T08:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.051500", + "Timestamp": "2024-05-16T08:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.021500", + "Timestamp": "2024-05-16T08:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.921500", + "Timestamp": "2024-05-16T08:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.302000", + "Timestamp": "2024-05-16T08:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416900", + "Timestamp": "2024-05-16T08:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.880700", + "Timestamp": "2024-05-16T08:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T08:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.825400", + "Timestamp": "2024-05-16T08:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.820400", + "Timestamp": "2024-05-16T08:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.695400", + "Timestamp": "2024-05-16T08:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.126800", + "Timestamp": "2024-05-16T08:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.052600", + "Timestamp": "2024-05-16T08:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.047600", + "Timestamp": "2024-05-16T08:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.922600", + "Timestamp": "2024-05-16T08:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.241800", + "Timestamp": "2024-05-16T08:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.079500", + "Timestamp": "2024-05-16T08:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146700", + "Timestamp": "2024-05-16T08:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143000", + "Timestamp": "2024-05-16T08:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086700", + "Timestamp": "2024-05-16T08:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.410600", + "Timestamp": "2024-05-16T08:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.405600", + "Timestamp": "2024-05-16T08:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.280600", + "Timestamp": "2024-05-16T08:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.849900", + "Timestamp": "2024-05-16T08:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207500", + "Timestamp": "2024-05-16T08:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.859900", + "Timestamp": "2024-05-16T08:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.750800", + "Timestamp": "2024-05-16T08:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "f1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.829900", + "Timestamp": "2024-05-16T08:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "f1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.720800", + "Timestamp": "2024-05-16T08:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.729900", + "Timestamp": "2024-05-16T08:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.620800", + "Timestamp": "2024-05-16T08:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.129200", + "Timestamp": "2024-05-16T08:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.124200", + "Timestamp": "2024-05-16T08:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.999200", + "Timestamp": "2024-05-16T08:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.963500", + "Timestamp": "2024-05-16T08:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.958500", + "Timestamp": "2024-05-16T08:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.833500", + "Timestamp": "2024-05-16T08:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.745500", + "Timestamp": "2024-05-16T08:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.418400", + "Timestamp": "2024-05-16T08:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.413400", + "Timestamp": "2024-05-16T08:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.288400", + "Timestamp": "2024-05-16T08:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.143000", + "Timestamp": "2024-05-16T08:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-16T08:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112700", + "Timestamp": "2024-05-16T08:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056400", + "Timestamp": "2024-05-16T08:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.928000", + "Timestamp": "2024-05-16T08:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.923000", + "Timestamp": "2024-05-16T08:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.798000", + "Timestamp": "2024-05-16T08:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.596600", + "Timestamp": "2024-05-16T08:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.263300", + "Timestamp": "2024-05-16T08:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.471800", + "Timestamp": "2024-05-16T08:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.466800", + "Timestamp": "2024-05-16T08:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.341800", + "Timestamp": "2024-05-16T08:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.770900", + "Timestamp": "2024-05-16T08:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.740900", + "Timestamp": "2024-05-16T08:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.640900", + "Timestamp": "2024-05-16T08:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.907600", + "Timestamp": "2024-05-16T08:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.389500", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.384500", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.259500", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.393400", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.042100", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.037100", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.912100", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.896100", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.891100", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.766100", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.639900", + "Timestamp": "2024-05-16T08:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.634900", + "Timestamp": "2024-05-16T08:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.509900", + "Timestamp": "2024-05-16T08:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.280600", + "Timestamp": "2024-05-16T08:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.275600", + "Timestamp": "2024-05-16T08:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150600", + "Timestamp": "2024-05-16T08:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.188100", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.184400", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128100", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.339300", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.334300", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.209300", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.416200", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.411200", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.286200", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.392300", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.387300", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.262300", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105300", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114100", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110400", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054100", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.536400", + "Timestamp": "2024-05-16T08:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.531400", + "Timestamp": "2024-05-16T08:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.406400", + "Timestamp": "2024-05-16T08:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.716200", + "Timestamp": "2024-05-16T08:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.662300", + "Timestamp": "2024-05-16T08:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.657300", + "Timestamp": "2024-05-16T08:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.532300", + "Timestamp": "2024-05-16T08:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.889100", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.884100", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.759100", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.910300", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.905300", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.780300", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.484900", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.479900", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.354900", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.833000", + "Timestamp": "2024-05-16T08:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.697000", + "Timestamp": "2024-05-16T08:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.813500", + "Timestamp": "2024-05-16T08:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.692000", + "Timestamp": "2024-05-16T08:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.808500", + "Timestamp": "2024-05-16T08:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.567000", + "Timestamp": "2024-05-16T08:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.683500", + "Timestamp": "2024-05-16T08:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.256700", + "Timestamp": "2024-05-16T08:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271800", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266800", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141800", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.372500", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.342500", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242500", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074900", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071200", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014900", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.974800", + "Timestamp": "2024-05-16T08:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.969800", + "Timestamp": "2024-05-16T08:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.844800", + "Timestamp": "2024-05-16T08:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.634300", + "Timestamp": "2024-05-16T08:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.629300", + "Timestamp": "2024-05-16T08:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.504300", + "Timestamp": "2024-05-16T08:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.907800", + "Timestamp": "2024-05-16T08:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.484700", + "Timestamp": "2024-05-16T08:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.119600", + "Timestamp": "2024-05-16T08:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.089600", + "Timestamp": "2024-05-16T08:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.989600", + "Timestamp": "2024-05-16T08:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.088800", + "Timestamp": "2024-05-16T08:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.058800", + "Timestamp": "2024-05-16T08:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.958800", + "Timestamp": "2024-05-16T08:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.628300", + "Timestamp": "2024-05-16T08:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.622100", + "Timestamp": "2024-05-16T08:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.243500", + "Timestamp": "2024-05-16T08:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.238500", + "Timestamp": "2024-05-16T08:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113500", + "Timestamp": "2024-05-16T08:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210900", + "Timestamp": "2024-05-16T08:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.892100", + "Timestamp": "2024-05-16T08:32:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.710800", + "Timestamp": "2024-05-16T08:32:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.705800", + "Timestamp": "2024-05-16T08:32:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.580800", + "Timestamp": "2024-05-16T08:32:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.005600", + "Timestamp": "2024-05-16T08:32:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.000600", + "Timestamp": "2024-05-16T08:32:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.875600", + "Timestamp": "2024-05-16T08:32:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066300", + "Timestamp": "2024-05-16T08:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037600", + "Timestamp": "2024-05-16T08:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006300", + "Timestamp": "2024-05-16T08:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.289500", + "Timestamp": "2024-05-16T08:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307700", + "Timestamp": "2024-05-16T08:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.284500", + "Timestamp": "2024-05-16T08:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302700", + "Timestamp": "2024-05-16T08:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159500", + "Timestamp": "2024-05-16T08:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177700", + "Timestamp": "2024-05-16T08:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.283000", + "Timestamp": "2024-05-16T08:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.757100", + "Timestamp": "2024-05-16T08:32:15.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.752100", + "Timestamp": "2024-05-16T08:32:15.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.627100", + "Timestamp": "2024-05-16T08:32:15.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.558500", + "Timestamp": "2024-05-16T08:32:15.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.810200", + "Timestamp": "2024-05-16T08:32:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.805200", + "Timestamp": "2024-05-16T08:32:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.680200", + "Timestamp": "2024-05-16T08:32:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T08:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.912600", + "Timestamp": "2024-05-16T08:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.907600", + "Timestamp": "2024-05-16T08:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.782600", + "Timestamp": "2024-05-16T08:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.453500", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.448500", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.323500", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.549000", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.544000", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.419000", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.043600", + "Timestamp": "2024-05-16T08:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.942800", + "Timestamp": "2024-05-16T08:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.937800", + "Timestamp": "2024-05-16T08:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.812800", + "Timestamp": "2024-05-16T08:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.449400", + "Timestamp": "2024-05-16T08:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.464400", + "Timestamp": "2024-05-16T08:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.650800", + "Timestamp": "2024-05-16T08:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.645800", + "Timestamp": "2024-05-16T08:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.520800", + "Timestamp": "2024-05-16T08:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.394600", + "Timestamp": "2024-05-16T08:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081900", + "Timestamp": "2024-05-16T08:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078200", + "Timestamp": "2024-05-16T08:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021900", + "Timestamp": "2024-05-16T08:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-16T08:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140200", + "Timestamp": "2024-05-16T08:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040200", + "Timestamp": "2024-05-16T08:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.247500", + "Timestamp": "2024-05-16T08:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.481200", + "Timestamp": "2024-05-16T08:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.476200", + "Timestamp": "2024-05-16T08:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.351200", + "Timestamp": "2024-05-16T08:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.375800", + "Timestamp": "2024-05-16T08:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.370800", + "Timestamp": "2024-05-16T08:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.245800", + "Timestamp": "2024-05-16T08:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.143400", + "Timestamp": "2024-05-16T08:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.138400", + "Timestamp": "2024-05-16T08:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.013400", + "Timestamp": "2024-05-16T08:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134400", + "Timestamp": "2024-05-16T08:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174400", + "Timestamp": "2024-05-16T08:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074400", + "Timestamp": "2024-05-16T08:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.826000", + "Timestamp": "2024-05-16T08:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.821000", + "Timestamp": "2024-05-16T08:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.696000", + "Timestamp": "2024-05-16T08:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.302000", + "Timestamp": "2024-05-16T08:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.297000", + "Timestamp": "2024-05-16T08:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172000", + "Timestamp": "2024-05-16T08:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.007500", + "Timestamp": "2024-05-16T08:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.002500", + "Timestamp": "2024-05-16T08:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.877500", + "Timestamp": "2024-05-16T08:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.396000", + "Timestamp": "2024-05-16T08:32:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.391000", + "Timestamp": "2024-05-16T08:32:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.266000", + "Timestamp": "2024-05-16T08:32:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.338900", + "Timestamp": "2024-05-16T08:32:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.333900", + "Timestamp": "2024-05-16T08:32:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.208900", + "Timestamp": "2024-05-16T08:32:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.606800", + "Timestamp": "2024-05-16T08:32:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.601800", + "Timestamp": "2024-05-16T08:32:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.476800", + "Timestamp": "2024-05-16T08:32:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.947800", + "Timestamp": "2024-05-16T08:32:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.942800", + "Timestamp": "2024-05-16T08:32:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.817800", + "Timestamp": "2024-05-16T08:32:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.627800", + "Timestamp": "2024-05-16T08:32:00.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.673800", + "Timestamp": "2024-05-16T08:32:00.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.668800", + "Timestamp": "2024-05-16T08:32:00.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.543800", + "Timestamp": "2024-05-16T08:32:00.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.592200", + "Timestamp": "2024-05-16T08:31:59.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.587200", + "Timestamp": "2024-05-16T08:31:59.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.462200", + "Timestamp": "2024-05-16T08:31:59.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.948900", + "Timestamp": "2024-05-16T08:31:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.729600", + "Timestamp": "2024-05-16T08:31:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "8.379200", + "Timestamp": "2024-05-16T08:31:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.724600", + "Timestamp": "2024-05-16T08:31:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "8.374200", + "Timestamp": "2024-05-16T08:31:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.599600", + "Timestamp": "2024-05-16T08:31:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "8.249200", + "Timestamp": "2024-05-16T08:31:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.336700", + "Timestamp": "2024-05-16T08:31:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.331700", + "Timestamp": "2024-05-16T08:31:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.206700", + "Timestamp": "2024-05-16T08:31:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.948000", + "Timestamp": "2024-05-16T08:31:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.918000", + "Timestamp": "2024-05-16T08:31:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.818000", + "Timestamp": "2024-05-16T08:31:57.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.780800", + "Timestamp": "2024-05-16T08:31:57.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.775800", + "Timestamp": "2024-05-16T08:31:57.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.650800", + "Timestamp": "2024-05-16T08:31:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.659600", + "Timestamp": "2024-05-16T08:31:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.467000", + "Timestamp": "2024-05-16T08:31:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.462000", + "Timestamp": "2024-05-16T08:31:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.337000", + "Timestamp": "2024-05-16T08:31:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.697100", + "Timestamp": "2024-05-16T08:31:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.605300", + "Timestamp": "2024-05-16T08:31:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.600300", + "Timestamp": "2024-05-16T08:31:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.475300", + "Timestamp": "2024-05-16T08:31:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.122800", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.117800", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.992800", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.155800", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.596400", + "Timestamp": "2024-05-16T08:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.591400", + "Timestamp": "2024-05-16T08:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.466400", + "Timestamp": "2024-05-16T08:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.858800", + "Timestamp": "2024-05-16T08:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.088600", + "Timestamp": "2024-05-16T08:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113300", + "Timestamp": "2024-05-16T08:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-16T08:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053300", + "Timestamp": "2024-05-16T08:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.868600", + "Timestamp": "2024-05-16T08:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.865600", + "Timestamp": "2024-05-16T08:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.863600", + "Timestamp": "2024-05-16T08:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.860600", + "Timestamp": "2024-05-16T08:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.738600", + "Timestamp": "2024-05-16T08:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.735600", + "Timestamp": "2024-05-16T08:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.409600", + "Timestamp": "2024-05-16T08:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.789500", + "Timestamp": "2024-05-16T08:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.759500", + "Timestamp": "2024-05-16T08:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.659500", + "Timestamp": "2024-05-16T08:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.254300", + "Timestamp": "2024-05-16T08:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.218900", + "Timestamp": "2024-05-16T08:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.213900", + "Timestamp": "2024-05-16T08:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.088900", + "Timestamp": "2024-05-16T08:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.493600", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.488600", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.363600", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.326600", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.321600", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.196600", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.509200", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.484100", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.275600", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.270600", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.145600", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067900", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038900", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007900", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.481000", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.476000", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.351000", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.678300", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.507700", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.794800", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.789800", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.664800", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.604400", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.858000", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.828000", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.728000", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.722500", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.717500", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.592500", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139600", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179600", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079600", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.671400", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.641400", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.541400", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.318400", + "Timestamp": "2024-05-16T08:31:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.313400", + "Timestamp": "2024-05-16T08:31:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.188400", + "Timestamp": "2024-05-16T08:31:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.247000", + "Timestamp": "2024-05-16T08:31:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.646500", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.832900", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.858300", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.827900", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.853300", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.702900", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.728300", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.873200", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.868200", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.743200", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114400", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154400", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054400", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417800", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.183900", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180200", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123900", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.405000", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.087400", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.400000", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.082400", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.275000", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.957400", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.347700", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.342700", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.217700", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.709600", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.704600", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.579600", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.011500", + "Timestamp": "2024-05-16T08:25:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010600", + "Timestamp": "2024-05-16T08:19:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087500", + "Timestamp": "2024-05-16T08:18:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083800", + "Timestamp": "2024-05-16T08:18:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027500", + "Timestamp": "2024-05-16T08:18:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.029000", + "Timestamp": "2024-05-16T08:17:58.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.881900", + "Timestamp": "2024-05-16T08:17:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.874700", + "Timestamp": "2024-05-16T08:17:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.402600", + "Timestamp": "2024-05-16T08:17:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.397600", + "Timestamp": "2024-05-16T08:17:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.272600", + "Timestamp": "2024-05-16T08:17:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.937500", + "Timestamp": "2024-05-16T08:17:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.235100", + "Timestamp": "2024-05-16T08:17:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.343100", + "Timestamp": "2024-05-16T08:17:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.313100", + "Timestamp": "2024-05-16T08:17:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.213100", + "Timestamp": "2024-05-16T08:17:53.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207000", + "Timestamp": "2024-05-16T08:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160800", + "Timestamp": "2024-05-16T08:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157100", + "Timestamp": "2024-05-16T08:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T08:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.565600", + "Timestamp": "2024-05-16T08:17:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.560600", + "Timestamp": "2024-05-16T08:17:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.435600", + "Timestamp": "2024-05-16T08:17:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.818600", + "Timestamp": "2024-05-16T08:17:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131400", + "Timestamp": "2024-05-16T08:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127700", + "Timestamp": "2024-05-16T08:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071400", + "Timestamp": "2024-05-16T08:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.846500", + "Timestamp": "2024-05-16T08:17:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.841500", + "Timestamp": "2024-05-16T08:17:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.716500", + "Timestamp": "2024-05-16T08:17:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.315000", + "Timestamp": "2024-05-16T08:17:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.488700", + "Timestamp": "2024-05-16T08:17:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.483700", + "Timestamp": "2024-05-16T08:17:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.358700", + "Timestamp": "2024-05-16T08:17:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.797100", + "Timestamp": "2024-05-16T08:17:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.792100", + "Timestamp": "2024-05-16T08:17:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.667100", + "Timestamp": "2024-05-16T08:17:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.540500", + "Timestamp": "2024-05-16T08:17:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.619200", + "Timestamp": "2024-05-16T08:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.614200", + "Timestamp": "2024-05-16T08:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.489200", + "Timestamp": "2024-05-16T08:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.819900", + "Timestamp": "2024-05-16T08:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106700", + "Timestamp": "2024-05-16T08:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.328300", + "Timestamp": "2024-05-16T08:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.323300", + "Timestamp": "2024-05-16T08:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.198300", + "Timestamp": "2024-05-16T08:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.783500", + "Timestamp": "2024-05-16T08:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.753500", + "Timestamp": "2024-05-16T08:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.653500", + "Timestamp": "2024-05-16T08:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.178600", + "Timestamp": "2024-05-16T08:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.218600", + "Timestamp": "2024-05-16T08:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118600", + "Timestamp": "2024-05-16T08:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129400", + "Timestamp": "2024-05-16T08:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125700", + "Timestamp": "2024-05-16T08:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069400", + "Timestamp": "2024-05-16T08:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.916800", + "Timestamp": "2024-05-16T08:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.911800", + "Timestamp": "2024-05-16T08:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.786800", + "Timestamp": "2024-05-16T08:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.474400", + "Timestamp": "2024-05-16T08:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.444400", + "Timestamp": "2024-05-16T08:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.344400", + "Timestamp": "2024-05-16T08:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.643300", + "Timestamp": "2024-05-16T08:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.638300", + "Timestamp": "2024-05-16T08:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.513300", + "Timestamp": "2024-05-16T08:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.817800", + "Timestamp": "2024-05-16T08:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.415000", + "Timestamp": "2024-05-16T08:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416100", + "Timestamp": "2024-05-16T08:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.892900", + "Timestamp": "2024-05-16T08:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.887900", + "Timestamp": "2024-05-16T08:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.762900", + "Timestamp": "2024-05-16T08:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.169800", + "Timestamp": "2024-05-16T08:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.316700", + "Timestamp": "2024-05-16T08:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.311700", + "Timestamp": "2024-05-16T08:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186700", + "Timestamp": "2024-05-16T08:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.260200", + "Timestamp": "2024-05-16T08:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.255200", + "Timestamp": "2024-05-16T08:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130200", + "Timestamp": "2024-05-16T08:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.175800", + "Timestamp": "2024-05-16T08:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.174700", + "Timestamp": "2024-05-16T08:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.614100", + "Timestamp": "2024-05-16T08:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-16T08:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T08:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047200", + "Timestamp": "2024-05-16T08:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121500", + "Timestamp": "2024-05-16T08:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117800", + "Timestamp": "2024-05-16T08:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061500", + "Timestamp": "2024-05-16T08:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.274600", + "Timestamp": "2024-05-16T08:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269600", + "Timestamp": "2024-05-16T08:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144600", + "Timestamp": "2024-05-16T08:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.984400", + "Timestamp": "2024-05-16T08:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.979400", + "Timestamp": "2024-05-16T08:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.854400", + "Timestamp": "2024-05-16T08:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.018200", + "Timestamp": "2024-05-16T08:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169600", + "Timestamp": "2024-05-16T08:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165900", + "Timestamp": "2024-05-16T08:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109600", + "Timestamp": "2024-05-16T08:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "8.251800", + "Timestamp": "2024-05-16T08:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "8.221800", + "Timestamp": "2024-05-16T08:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "8.121800", + "Timestamp": "2024-05-16T08:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.810300", + "Timestamp": "2024-05-16T08:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.805300", + "Timestamp": "2024-05-16T08:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.680300", + "Timestamp": "2024-05-16T08:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.205700", + "Timestamp": "2024-05-16T08:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.178100", + "Timestamp": "2024-05-16T08:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.148100", + "Timestamp": "2024-05-16T08:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.048100", + "Timestamp": "2024-05-16T08:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.548100", + "Timestamp": "2024-05-16T08:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.525800", + "Timestamp": "2024-05-16T08:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.518100", + "Timestamp": "2024-05-16T08:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.495800", + "Timestamp": "2024-05-16T08:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.418100", + "Timestamp": "2024-05-16T08:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.395800", + "Timestamp": "2024-05-16T08:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.968200", + "Timestamp": "2024-05-16T08:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.963200", + "Timestamp": "2024-05-16T08:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.838200", + "Timestamp": "2024-05-16T08:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094300", + "Timestamp": "2024-05-16T08:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090300", + "Timestamp": "2024-05-16T08:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034300", + "Timestamp": "2024-05-16T08:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.655800", + "Timestamp": "2024-05-16T08:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216200", + "Timestamp": "2024-05-16T08:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.457500", + "Timestamp": "2024-05-16T08:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.528000", + "Timestamp": "2024-05-16T08:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.523000", + "Timestamp": "2024-05-16T08:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.398000", + "Timestamp": "2024-05-16T08:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.387700", + "Timestamp": "2024-05-16T08:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.688500", + "Timestamp": "2024-05-16T08:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.598100", + "Timestamp": "2024-05-16T08:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.593100", + "Timestamp": "2024-05-16T08:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.468100", + "Timestamp": "2024-05-16T08:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.786900", + "Timestamp": "2024-05-16T08:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.781900", + "Timestamp": "2024-05-16T08:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.656900", + "Timestamp": "2024-05-16T08:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.548800", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "h1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.518800", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.418800", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.435600", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115000", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111300", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055000", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.353100", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.348100", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.223100", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.640700", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.635700", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.510700", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.627800", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.622800", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.497800", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.724700", + "Timestamp": "2024-05-16T08:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.719700", + "Timestamp": "2024-05-16T08:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.594700", + "Timestamp": "2024-05-16T08:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.422000", + "Timestamp": "2024-05-16T08:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.417000", + "Timestamp": "2024-05-16T08:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.292000", + "Timestamp": "2024-05-16T08:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.682000", + "Timestamp": "2024-05-16T08:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.677000", + "Timestamp": "2024-05-16T08:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.552000", + "Timestamp": "2024-05-16T08:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "h1.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429400", + "Timestamp": "2024-05-16T08:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.954800", + "Timestamp": "2024-05-16T08:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.428200", + "Timestamp": "2024-05-16T08:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T08:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.056200", + "Timestamp": "2024-05-16T08:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.051200", + "Timestamp": "2024-05-16T08:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.926200", + "Timestamp": "2024-05-16T08:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066800", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037800", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006800", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200400", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196700", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140400", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.987100", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.804900", + "Timestamp": "2024-05-16T08:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.799900", + "Timestamp": "2024-05-16T08:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.674900", + "Timestamp": "2024-05-16T08:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.209500", + "Timestamp": "2024-05-16T08:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.205800", + "Timestamp": "2024-05-16T08:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149500", + "Timestamp": "2024-05-16T08:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.501400", + "Timestamp": "2024-05-16T08:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.813200", + "Timestamp": "2024-05-16T08:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164100", + "Timestamp": "2024-05-16T08:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167500", + "Timestamp": "2024-05-16T08:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160400", + "Timestamp": "2024-05-16T08:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163800", + "Timestamp": "2024-05-16T08:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104100", + "Timestamp": "2024-05-16T08:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T08:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.698500", + "Timestamp": "2024-05-16T08:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.582100", + "Timestamp": "2024-05-16T08:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.577100", + "Timestamp": "2024-05-16T08:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.452100", + "Timestamp": "2024-05-16T08:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.668300", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.968300", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.638300", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.938300", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.538300", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.838300", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.890700", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.885700", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.760700", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.910700", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.905700", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.780700", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.480000", + "Timestamp": "2024-05-16T08:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.475000", + "Timestamp": "2024-05-16T08:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.350000", + "Timestamp": "2024-05-16T08:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.456700", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.451700", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.326700", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.175200", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.170200", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.045200", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.682400", + "Timestamp": "2024-05-16T08:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.677400", + "Timestamp": "2024-05-16T08:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.552400", + "Timestamp": "2024-05-16T08:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.244700", + "Timestamp": "2024-05-16T08:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.880400", + "Timestamp": "2024-05-16T08:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.004200", + "Timestamp": "2024-05-16T08:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437300", + "Timestamp": "2024-05-16T08:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.317300", + "Timestamp": "2024-05-16T08:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.131900", + "Timestamp": "2024-05-16T08:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.312300", + "Timestamp": "2024-05-16T08:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.126900", + "Timestamp": "2024-05-16T08:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.187300", + "Timestamp": "2024-05-16T08:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.001900", + "Timestamp": "2024-05-16T08:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.220000", + "Timestamp": "2024-05-16T08:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.645400", + "Timestamp": "2024-05-16T08:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.640400", + "Timestamp": "2024-05-16T08:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.515400", + "Timestamp": "2024-05-16T08:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.414700", + "Timestamp": "2024-05-16T08:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.409700", + "Timestamp": "2024-05-16T08:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.284700", + "Timestamp": "2024-05-16T08:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.922400", + "Timestamp": "2024-05-16T08:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.429500", + "Timestamp": "2024-05-16T08:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.424500", + "Timestamp": "2024-05-16T08:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.299500", + "Timestamp": "2024-05-16T08:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.734400", + "Timestamp": "2024-05-16T08:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.729400", + "Timestamp": "2024-05-16T08:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.604400", + "Timestamp": "2024-05-16T08:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.283400", + "Timestamp": "2024-05-16T08:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.864100", + "Timestamp": "2024-05-16T08:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.859100", + "Timestamp": "2024-05-16T08:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.734100", + "Timestamp": "2024-05-16T08:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.927600", + "Timestamp": "2024-05-16T08:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.922600", + "Timestamp": "2024-05-16T08:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.797600", + "Timestamp": "2024-05-16T08:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147400", + "Timestamp": "2024-05-16T08:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143700", + "Timestamp": "2024-05-16T08:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087400", + "Timestamp": "2024-05-16T08:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.838500", + "Timestamp": "2024-05-16T08:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.833500", + "Timestamp": "2024-05-16T08:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.708500", + "Timestamp": "2024-05-16T08:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.606600", + "Timestamp": "2024-05-16T08:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159800", + "Timestamp": "2024-05-16T08:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155800", + "Timestamp": "2024-05-16T08:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099800", + "Timestamp": "2024-05-16T08:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.931900", + "Timestamp": "2024-05-16T08:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.926900", + "Timestamp": "2024-05-16T08:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.801900", + "Timestamp": "2024-05-16T08:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.895400", + "Timestamp": "2024-05-16T08:17:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.274900", + "Timestamp": "2024-05-16T08:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269900", + "Timestamp": "2024-05-16T08:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144900", + "Timestamp": "2024-05-16T08:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.010700", + "Timestamp": "2024-05-16T08:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.346900", + "Timestamp": "2024-05-16T08:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.005700", + "Timestamp": "2024-05-16T08:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.341900", + "Timestamp": "2024-05-16T08:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.880700", + "Timestamp": "2024-05-16T08:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.216900", + "Timestamp": "2024-05-16T08:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.642700", + "Timestamp": "2024-05-16T08:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.637700", + "Timestamp": "2024-05-16T08:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.512700", + "Timestamp": "2024-05-16T08:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.389900", + "Timestamp": "2024-05-16T08:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.434700", + "Timestamp": "2024-05-16T08:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.359900", + "Timestamp": "2024-05-16T08:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.404700", + "Timestamp": "2024-05-16T08:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.259900", + "Timestamp": "2024-05-16T08:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.304700", + "Timestamp": "2024-05-16T08:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.694000", + "Timestamp": "2024-05-16T08:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.727200", + "Timestamp": "2024-05-16T08:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115400", + "Timestamp": "2024-05-16T08:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T08:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055400", + "Timestamp": "2024-05-16T08:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.950700", + "Timestamp": "2024-05-16T08:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.945700", + "Timestamp": "2024-05-16T08:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.820700", + "Timestamp": "2024-05-16T08:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164400", + "Timestamp": "2024-05-16T08:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160700", + "Timestamp": "2024-05-16T08:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T08:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131100", + "Timestamp": "2024-05-16T08:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127100", + "Timestamp": "2024-05-16T08:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071100", + "Timestamp": "2024-05-16T08:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.272900", + "Timestamp": "2024-05-16T08:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.242900", + "Timestamp": "2024-05-16T08:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142900", + "Timestamp": "2024-05-16T08:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.857500", + "Timestamp": "2024-05-16T08:17:01.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.599000", + "Timestamp": "2024-05-16T08:17:00.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.513400", + "Timestamp": "2024-05-16T08:16:59.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.668700", + "Timestamp": "2024-05-16T08:16:59.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.663700", + "Timestamp": "2024-05-16T08:16:59.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.538700", + "Timestamp": "2024-05-16T08:16:59.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.726500", + "Timestamp": "2024-05-16T08:16:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.721500", + "Timestamp": "2024-05-16T08:16:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.596500", + "Timestamp": "2024-05-16T08:16:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.706200", + "Timestamp": "2024-05-16T08:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.705600", + "Timestamp": "2024-05-16T08:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.510900", + "Timestamp": "2024-05-16T08:16:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.505900", + "Timestamp": "2024-05-16T08:16:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.380900", + "Timestamp": "2024-05-16T08:16:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.358400", + "Timestamp": "2024-05-16T08:16:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.353400", + "Timestamp": "2024-05-16T08:16:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.228400", + "Timestamp": "2024-05-16T08:16:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.205900", + "Timestamp": "2024-05-16T08:16:53.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.697900", + "Timestamp": "2024-05-16T08:16:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.700700", + "Timestamp": "2024-05-16T08:16:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.849900", + "Timestamp": "2024-05-16T08:16:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.592900", + "Timestamp": "2024-05-16T08:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.587900", + "Timestamp": "2024-05-16T08:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.462900", + "Timestamp": "2024-05-16T08:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.565000", + "Timestamp": "2024-05-16T08:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.862500", + "Timestamp": "2024-05-16T08:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069900", + "Timestamp": "2024-05-16T08:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066200", + "Timestamp": "2024-05-16T08:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009900", + "Timestamp": "2024-05-16T08:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.832000", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306700", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301700", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176700", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354200", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349200", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224200", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.370200", + "Timestamp": "2024-05-16T08:16:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.365200", + "Timestamp": "2024-05-16T08:16:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.240200", + "Timestamp": "2024-05-16T08:16:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.406600", + "Timestamp": "2024-05-16T08:16:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.401600", + "Timestamp": "2024-05-16T08:16:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.276600", + "Timestamp": "2024-05-16T08:16:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.322900", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.317900", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.192900", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330500", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325500", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200500", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.719600", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.714600", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.589600", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075600", + "Timestamp": "2024-05-16T08:04:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076300", + "Timestamp": "2024-05-16T08:04:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083800", + "Timestamp": "2024-05-16T08:04:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.046600", + "Timestamp": "2024-05-16T08:04:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047300", + "Timestamp": "2024-05-16T08:04:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.054800", + "Timestamp": "2024-05-16T08:04:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015600", + "Timestamp": "2024-05-16T08:04:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016300", + "Timestamp": "2024-05-16T08:04:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023800", + "Timestamp": "2024-05-16T08:04:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t1.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.009500", + "Timestamp": "2024-05-16T08:03:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.263500", + "Timestamp": "2024-05-16T08:02:59.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258500", + "Timestamp": "2024-05-16T08:02:59.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133500", + "Timestamp": "2024-05-16T08:02:59.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.038300", + "Timestamp": "2024-05-16T08:02:58.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.762800", + "Timestamp": "2024-05-16T08:02:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.040800", + "Timestamp": "2024-05-16T08:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.035800", + "Timestamp": "2024-05-16T08:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.910800", + "Timestamp": "2024-05-16T08:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.254000", + "Timestamp": "2024-05-16T08:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.250000", + "Timestamp": "2024-05-16T08:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194000", + "Timestamp": "2024-05-16T08:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.083700", + "Timestamp": "2024-05-16T08:02:53.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.347300", + "Timestamp": "2024-05-16T08:02:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.445700", + "Timestamp": "2024-05-16T08:02:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168500", + "Timestamp": "2024-05-16T08:02:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164800", + "Timestamp": "2024-05-16T08:02:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108500", + "Timestamp": "2024-05-16T08:02:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Windows", + "SpotPrice": "7.331200", + "Timestamp": "2024-05-16T08:02:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.498400", + "Timestamp": "2024-05-16T08:02:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.493400", + "Timestamp": "2024-05-16T08:02:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.368400", + "Timestamp": "2024-05-16T08:02:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.428000", + "Timestamp": "2024-05-16T08:02:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.908200", + "Timestamp": "2024-05-16T08:02:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.171000", + "Timestamp": "2024-05-16T08:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.141000", + "Timestamp": "2024-05-16T08:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.041000", + "Timestamp": "2024-05-16T08:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.936100", + "Timestamp": "2024-05-16T08:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.957800", + "Timestamp": "2024-05-16T08:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.931100", + "Timestamp": "2024-05-16T08:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.952800", + "Timestamp": "2024-05-16T08:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.806100", + "Timestamp": "2024-05-16T08:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.827800", + "Timestamp": "2024-05-16T08:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.495100", + "Timestamp": "2024-05-16T08:02:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.267700", + "Timestamp": "2024-05-16T08:02:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.262700", + "Timestamp": "2024-05-16T08:02:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.137700", + "Timestamp": "2024-05-16T08:02:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.203900", + "Timestamp": "2024-05-16T08:02:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.143700", + "Timestamp": "2024-05-16T08:02:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.138700", + "Timestamp": "2024-05-16T08:02:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.013700", + "Timestamp": "2024-05-16T08:02:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.185400", + "Timestamp": "2024-05-16T08:02:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181400", + "Timestamp": "2024-05-16T08:02:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T08:02:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417200", + "Timestamp": "2024-05-16T08:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.732400", + "Timestamp": "2024-05-16T08:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.727400", + "Timestamp": "2024-05-16T08:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.602400", + "Timestamp": "2024-05-16T08:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.654600", + "Timestamp": "2024-05-16T08:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.649600", + "Timestamp": "2024-05-16T08:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.524600", + "Timestamp": "2024-05-16T08:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.421100", + "Timestamp": "2024-05-16T08:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.416100", + "Timestamp": "2024-05-16T08:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.291100", + "Timestamp": "2024-05-16T08:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.902000", + "Timestamp": "2024-05-16T08:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.805100", + "Timestamp": "2024-05-16T08:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.897000", + "Timestamp": "2024-05-16T08:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.800100", + "Timestamp": "2024-05-16T08:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.772000", + "Timestamp": "2024-05-16T08:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.675100", + "Timestamp": "2024-05-16T08:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-16T08:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-16T08:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040200", + "Timestamp": "2024-05-16T08:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135500", + "Timestamp": "2024-05-16T08:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131800", + "Timestamp": "2024-05-16T08:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075500", + "Timestamp": "2024-05-16T08:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.687800", + "Timestamp": "2024-05-16T08:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.682800", + "Timestamp": "2024-05-16T08:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.557800", + "Timestamp": "2024-05-16T08:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.227200", + "Timestamp": "2024-05-16T08:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094900", + "Timestamp": "2024-05-16T08:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091200", + "Timestamp": "2024-05-16T08:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034900", + "Timestamp": "2024-05-16T08:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311600", + "Timestamp": "2024-05-16T08:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.306600", + "Timestamp": "2024-05-16T08:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181600", + "Timestamp": "2024-05-16T08:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.565700", + "Timestamp": "2024-05-16T08:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.764700", + "Timestamp": "2024-05-16T08:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.511900", + "Timestamp": "2024-05-16T08:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T08:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-16T08:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044600", + "Timestamp": "2024-05-16T08:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.780800", + "Timestamp": "2024-05-16T08:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.775800", + "Timestamp": "2024-05-16T08:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.650800", + "Timestamp": "2024-05-16T08:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.253300", + "Timestamp": "2024-05-16T08:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.892100", + "Timestamp": "2024-05-16T08:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.419800", + "Timestamp": "2024-05-16T08:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "4.957300", + "Timestamp": "2024-05-16T08:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.739400", + "Timestamp": "2024-05-16T08:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.009100", + "Timestamp": "2024-05-16T08:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.945100", + "Timestamp": "2024-05-16T08:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.940100", + "Timestamp": "2024-05-16T08:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.815100", + "Timestamp": "2024-05-16T08:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.192400", + "Timestamp": "2024-05-16T08:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.058800", + "Timestamp": "2024-05-16T08:02:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.053800", + "Timestamp": "2024-05-16T08:02:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.928800", + "Timestamp": "2024-05-16T08:02:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.842100", + "Timestamp": "2024-05-16T08:02:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.837100", + "Timestamp": "2024-05-16T08:02:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.712100", + "Timestamp": "2024-05-16T08:02:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.898000", + "Timestamp": "2024-05-16T08:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.551300", + "Timestamp": "2024-05-16T08:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.546300", + "Timestamp": "2024-05-16T08:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.421300", + "Timestamp": "2024-05-16T08:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.182600", + "Timestamp": "2024-05-16T08:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.178900", + "Timestamp": "2024-05-16T08:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122600", + "Timestamp": "2024-05-16T08:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.633300", + "Timestamp": "2024-05-16T08:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.628300", + "Timestamp": "2024-05-16T08:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.503300", + "Timestamp": "2024-05-16T08:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.359000", + "Timestamp": "2024-05-16T08:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.354000", + "Timestamp": "2024-05-16T08:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.229000", + "Timestamp": "2024-05-16T08:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.617400", + "Timestamp": "2024-05-16T08:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.678800", + "Timestamp": "2024-05-16T08:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.673800", + "Timestamp": "2024-05-16T08:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.548800", + "Timestamp": "2024-05-16T08:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.651000", + "Timestamp": "2024-05-16T08:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.646000", + "Timestamp": "2024-05-16T08:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.521000", + "Timestamp": "2024-05-16T08:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.181200", + "Timestamp": "2024-05-16T08:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.176200", + "Timestamp": "2024-05-16T08:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.051200", + "Timestamp": "2024-05-16T08:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.283300", + "Timestamp": "2024-05-16T08:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.287100", + "Timestamp": "2024-05-16T08:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.205000", + "Timestamp": "2024-05-16T08:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.059800", + "Timestamp": "2024-05-16T08:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.054800", + "Timestamp": "2024-05-16T08:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.929800", + "Timestamp": "2024-05-16T08:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.392700", + "Timestamp": "2024-05-16T08:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.387700", + "Timestamp": "2024-05-16T08:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.262700", + "Timestamp": "2024-05-16T08:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.897000", + "Timestamp": "2024-05-16T08:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.803200", + "Timestamp": "2024-05-16T08:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.892000", + "Timestamp": "2024-05-16T08:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.798200", + "Timestamp": "2024-05-16T08:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.767000", + "Timestamp": "2024-05-16T08:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.673200", + "Timestamp": "2024-05-16T08:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.324500", + "Timestamp": "2024-05-16T08:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.068600", + "Timestamp": "2024-05-16T08:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.306800", + "Timestamp": "2024-05-16T08:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.511100", + "Timestamp": "2024-05-16T08:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.329500", + "Timestamp": "2024-05-16T08:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.324500", + "Timestamp": "2024-05-16T08:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.199500", + "Timestamp": "2024-05-16T08:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T08:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101900", + "Timestamp": "2024-05-16T08:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045900", + "Timestamp": "2024-05-16T08:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.707000", + "Timestamp": "2024-05-16T08:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.557300", + "Timestamp": "2024-05-16T08:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.702000", + "Timestamp": "2024-05-16T08:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.552300", + "Timestamp": "2024-05-16T08:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.577000", + "Timestamp": "2024-05-16T08:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.427300", + "Timestamp": "2024-05-16T08:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.328200", + "Timestamp": "2024-05-16T08:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.932000", + "Timestamp": "2024-05-16T08:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.927000", + "Timestamp": "2024-05-16T08:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.802000", + "Timestamp": "2024-05-16T08:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T08:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.582300", + "Timestamp": "2024-05-16T08:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.247800", + "Timestamp": "2024-05-16T08:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.242800", + "Timestamp": "2024-05-16T08:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.117800", + "Timestamp": "2024-05-16T08:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135900", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.175900", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075900", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050800", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.924900", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.919900", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.794900", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.063100", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.033100", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.933100", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.380100", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.488800", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.483800", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.358800", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154700", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151000", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094700", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213100", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.245300", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.240300", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.115300", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.062200", + "Timestamp": "2024-05-16T08:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.057200", + "Timestamp": "2024-05-16T08:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.932200", + "Timestamp": "2024-05-16T08:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.735100", + "Timestamp": "2024-05-16T08:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.838700", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.863000", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.552300", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.547300", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.422300", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.274200", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269200", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144200", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.217400", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.213400", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157400", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417900", + "Timestamp": "2024-05-16T08:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.293400", + "Timestamp": "2024-05-16T08:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.288400", + "Timestamp": "2024-05-16T08:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.163400", + "Timestamp": "2024-05-16T08:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.560700", + "Timestamp": "2024-05-16T08:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.555700", + "Timestamp": "2024-05-16T08:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.430700", + "Timestamp": "2024-05-16T08:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.939200", + "Timestamp": "2024-05-16T08:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.909200", + "Timestamp": "2024-05-16T08:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.809200", + "Timestamp": "2024-05-16T08:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-16T08:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-16T08:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053000", + "Timestamp": "2024-05-16T08:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.931200", + "Timestamp": "2024-05-16T08:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.926200", + "Timestamp": "2024-05-16T08:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.801200", + "Timestamp": "2024-05-16T08:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081600", + "Timestamp": "2024-05-16T08:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077900", + "Timestamp": "2024-05-16T08:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021600", + "Timestamp": "2024-05-16T08:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.177900", + "Timestamp": "2024-05-16T08:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174200", + "Timestamp": "2024-05-16T08:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.117900", + "Timestamp": "2024-05-16T08:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.204200", + "Timestamp": "2024-05-16T08:02:15.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.800800", + "Timestamp": "2024-05-16T08:02:15.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.795800", + "Timestamp": "2024-05-16T08:02:15.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.670800", + "Timestamp": "2024-05-16T08:02:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.392100", + "Timestamp": "2024-05-16T08:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.387100", + "Timestamp": "2024-05-16T08:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.262100", + "Timestamp": "2024-05-16T08:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.143200", + "Timestamp": "2024-05-16T08:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.138200", + "Timestamp": "2024-05-16T08:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.013200", + "Timestamp": "2024-05-16T08:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.349200", + "Timestamp": "2024-05-16T08:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.344200", + "Timestamp": "2024-05-16T08:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219200", + "Timestamp": "2024-05-16T08:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.268400", + "Timestamp": "2024-05-16T08:02:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.263400", + "Timestamp": "2024-05-16T08:02:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.138400", + "Timestamp": "2024-05-16T08:02:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172900", + "Timestamp": "2024-05-16T08:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168900", + "Timestamp": "2024-05-16T08:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112900", + "Timestamp": "2024-05-16T08:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.737500", + "Timestamp": "2024-05-16T08:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.732500", + "Timestamp": "2024-05-16T08:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.607500", + "Timestamp": "2024-05-16T08:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.655100", + "Timestamp": "2024-05-16T08:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.445000", + "Timestamp": "2024-05-16T08:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.440000", + "Timestamp": "2024-05-16T08:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.315000", + "Timestamp": "2024-05-16T08:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.405000", + "Timestamp": "2024-05-16T08:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.444900", + "Timestamp": "2024-05-16T08:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.439900", + "Timestamp": "2024-05-16T08:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.314900", + "Timestamp": "2024-05-16T08:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.267800", + "Timestamp": "2024-05-16T08:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262800", + "Timestamp": "2024-05-16T08:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137800", + "Timestamp": "2024-05-16T08:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.549900", + "Timestamp": "2024-05-16T08:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.544900", + "Timestamp": "2024-05-16T08:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.419900", + "Timestamp": "2024-05-16T08:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123000", + "Timestamp": "2024-05-16T08:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119000", + "Timestamp": "2024-05-16T08:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063000", + "Timestamp": "2024-05-16T08:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095800", + "Timestamp": "2024-05-16T08:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T08:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035800", + "Timestamp": "2024-05-16T08:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094000", + "Timestamp": "2024-05-16T08:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090300", + "Timestamp": "2024-05-16T08:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034000", + "Timestamp": "2024-05-16T08:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.856900", + "Timestamp": "2024-05-16T08:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.518700", + "Timestamp": "2024-05-16T08:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.513700", + "Timestamp": "2024-05-16T08:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.388700", + "Timestamp": "2024-05-16T08:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.821200", + "Timestamp": "2024-05-16T08:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.816200", + "Timestamp": "2024-05-16T08:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.691200", + "Timestamp": "2024-05-16T08:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.596000", + "Timestamp": "2024-05-16T08:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iezn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.591000", + "Timestamp": "2024-05-16T08:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.466000", + "Timestamp": "2024-05-16T08:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.230900", + "Timestamp": "2024-05-16T08:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p2.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.200900", + "Timestamp": "2024-05-16T08:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.100900", + "Timestamp": "2024-05-16T08:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.371900", + "Timestamp": "2024-05-16T08:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.366900", + "Timestamp": "2024-05-16T08:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.241900", + "Timestamp": "2024-05-16T08:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.959600", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.883400", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.954600", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.878400", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.829600", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.753400", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.437600", + "Timestamp": "2024-05-16T08:01:59.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.432600", + "Timestamp": "2024-05-16T08:01:59.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.307600", + "Timestamp": "2024-05-16T08:01:59.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.873700", + "Timestamp": "2024-05-16T08:01:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.288000", + "Timestamp": "2024-05-16T08:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258000", + "Timestamp": "2024-05-16T08:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158000", + "Timestamp": "2024-05-16T08:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.178600", + "Timestamp": "2024-05-16T08:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174900", + "Timestamp": "2024-05-16T08:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118600", + "Timestamp": "2024-05-16T08:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T08:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-16T08:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049800", + "Timestamp": "2024-05-16T08:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.713000", + "Timestamp": "2024-05-16T08:01:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.708000", + "Timestamp": "2024-05-16T08:01:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.583000", + "Timestamp": "2024-05-16T08:01:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.732400", + "Timestamp": "2024-05-16T08:01:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.695300", + "Timestamp": "2024-05-16T08:01:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.442300", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.437300", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.312300", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.015700", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.465200", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.010700", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.460200", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.885700", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.335200", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.862400", + "Timestamp": "2024-05-16T08:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.862700", + "Timestamp": "2024-05-16T08:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.857700", + "Timestamp": "2024-05-16T08:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.732700", + "Timestamp": "2024-05-16T08:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.504600", + "Timestamp": "2024-05-16T08:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.654900", + "Timestamp": "2024-05-16T08:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.649900", + "Timestamp": "2024-05-16T08:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.524900", + "Timestamp": "2024-05-16T08:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.255900", + "Timestamp": "2024-05-16T08:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.250900", + "Timestamp": "2024-05-16T08:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.125900", + "Timestamp": "2024-05-16T08:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.936200", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.931200", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.806200", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.748500", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.743500", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.618500", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.692800", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.687800", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.562800", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069900", + "Timestamp": "2024-05-16T07:50:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040900", + "Timestamp": "2024-05-16T07:50:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009900", + "Timestamp": "2024-05-16T07:50:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103400", + "Timestamp": "2024-05-16T07:49:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074300", + "Timestamp": "2024-05-16T07:48:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.045300", + "Timestamp": "2024-05-16T07:48:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014300", + "Timestamp": "2024-05-16T07:48:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.100000", + "Timestamp": "2024-05-16T07:48:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.420000", + "Timestamp": "2024-05-16T07:47:58.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.423600", + "Timestamp": "2024-05-16T07:47:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.361200", + "Timestamp": "2024-05-16T07:47:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.356200", + "Timestamp": "2024-05-16T07:47:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.231200", + "Timestamp": "2024-05-16T07:47:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.601100", + "Timestamp": "2024-05-16T07:47:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.412200", + "Timestamp": "2024-05-16T07:47:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.454500", + "Timestamp": "2024-05-16T07:47:53.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.985500", + "Timestamp": "2024-05-16T07:47:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.963800", + "Timestamp": "2024-05-16T07:47:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T07:47:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207700", + "Timestamp": "2024-05-16T07:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.113800", + "Timestamp": "2024-05-16T07:47:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.993900", + "Timestamp": "2024-05-16T07:47:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.108800", + "Timestamp": "2024-05-16T07:47:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.988900", + "Timestamp": "2024-05-16T07:47:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.983800", + "Timestamp": "2024-05-16T07:47:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.863900", + "Timestamp": "2024-05-16T07:47:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.563600", + "Timestamp": "2024-05-16T07:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.096100", + "Timestamp": "2024-05-16T07:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.207700", + "Timestamp": "2024-05-16T07:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.202700", + "Timestamp": "2024-05-16T07:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.077700", + "Timestamp": "2024-05-16T07:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.655300", + "Timestamp": "2024-05-16T07:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.717000", + "Timestamp": "2024-05-16T07:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.470000", + "Timestamp": "2024-05-16T07:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.318900", + "Timestamp": "2024-05-16T07:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.313900", + "Timestamp": "2024-05-16T07:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.188900", + "Timestamp": "2024-05-16T07:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.513200", + "Timestamp": "2024-05-16T07:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.508200", + "Timestamp": "2024-05-16T07:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.383200", + "Timestamp": "2024-05-16T07:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.330700", + "Timestamp": "2024-05-16T07:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.987700", + "Timestamp": "2024-05-16T07:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "9.985300", + "Timestamp": "2024-05-16T07:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.710000", + "Timestamp": "2024-05-16T07:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T07:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.970000", + "Timestamp": "2024-05-16T07:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.965000", + "Timestamp": "2024-05-16T07:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.840000", + "Timestamp": "2024-05-16T07:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.455600", + "Timestamp": "2024-05-16T07:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.654100", + "Timestamp": "2024-05-16T07:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.649100", + "Timestamp": "2024-05-16T07:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.524100", + "Timestamp": "2024-05-16T07:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151800", + "Timestamp": "2024-05-16T07:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148100", + "Timestamp": "2024-05-16T07:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T07:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.366000", + "Timestamp": "2024-05-16T07:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.361000", + "Timestamp": "2024-05-16T07:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.236000", + "Timestamp": "2024-05-16T07:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.557000", + "Timestamp": "2024-05-16T07:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.979500", + "Timestamp": "2024-05-16T07:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.624300", + "Timestamp": "2024-05-16T07:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.619300", + "Timestamp": "2024-05-16T07:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.494300", + "Timestamp": "2024-05-16T07:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.826700", + "Timestamp": "2024-05-16T07:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.821700", + "Timestamp": "2024-05-16T07:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.696700", + "Timestamp": "2024-05-16T07:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140500", + "Timestamp": "2024-05-16T07:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136800", + "Timestamp": "2024-05-16T07:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080500", + "Timestamp": "2024-05-16T07:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.071000", + "Timestamp": "2024-05-16T07:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.829500", + "Timestamp": "2024-05-16T07:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.799500", + "Timestamp": "2024-05-16T07:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.699500", + "Timestamp": "2024-05-16T07:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.418500", + "Timestamp": "2024-05-16T07:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.413500", + "Timestamp": "2024-05-16T07:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.288500", + "Timestamp": "2024-05-16T07:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.517800", + "Timestamp": "2024-05-16T07:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.482700", + "Timestamp": "2024-05-16T07:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.512800", + "Timestamp": "2024-05-16T07:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.477700", + "Timestamp": "2024-05-16T07:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.387800", + "Timestamp": "2024-05-16T07:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.352700", + "Timestamp": "2024-05-16T07:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.709900", + "Timestamp": "2024-05-16T07:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092200", + "Timestamp": "2024-05-16T07:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088500", + "Timestamp": "2024-05-16T07:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032200", + "Timestamp": "2024-05-16T07:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.053700", + "Timestamp": "2024-05-16T07:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.685300", + "Timestamp": "2024-05-16T07:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.503600", + "Timestamp": "2024-05-16T07:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176300", + "Timestamp": "2024-05-16T07:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172300", + "Timestamp": "2024-05-16T07:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116300", + "Timestamp": "2024-05-16T07:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.030800", + "Timestamp": "2024-05-16T07:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.025800", + "Timestamp": "2024-05-16T07:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.900800", + "Timestamp": "2024-05-16T07:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215400", + "Timestamp": "2024-05-16T07:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084200", + "Timestamp": "2024-05-16T07:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080500", + "Timestamp": "2024-05-16T07:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024200", + "Timestamp": "2024-05-16T07:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.492700", + "Timestamp": "2024-05-16T07:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.487700", + "Timestamp": "2024-05-16T07:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.362700", + "Timestamp": "2024-05-16T07:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.588100", + "Timestamp": "2024-05-16T07:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.964500", + "Timestamp": "2024-05-16T07:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.959500", + "Timestamp": "2024-05-16T07:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.834500", + "Timestamp": "2024-05-16T07:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.232800", + "Timestamp": "2024-05-16T07:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.227800", + "Timestamp": "2024-05-16T07:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.102800", + "Timestamp": "2024-05-16T07:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.933100", + "Timestamp": "2024-05-16T07:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.928100", + "Timestamp": "2024-05-16T07:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.803100", + "Timestamp": "2024-05-16T07:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.652100", + "Timestamp": "2024-05-16T07:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.647100", + "Timestamp": "2024-05-16T07:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.522100", + "Timestamp": "2024-05-16T07:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218100", + "Timestamp": "2024-05-16T07:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.364300", + "Timestamp": "2024-05-16T07:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.359300", + "Timestamp": "2024-05-16T07:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.234300", + "Timestamp": "2024-05-16T07:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.064000", + "Timestamp": "2024-05-16T07:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.059000", + "Timestamp": "2024-05-16T07:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.934000", + "Timestamp": "2024-05-16T07:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.619100", + "Timestamp": "2024-05-16T07:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.614100", + "Timestamp": "2024-05-16T07:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.489100", + "Timestamp": "2024-05-16T07:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.443800", + "Timestamp": "2024-05-16T07:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.438800", + "Timestamp": "2024-05-16T07:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.313800", + "Timestamp": "2024-05-16T07:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.007500", + "Timestamp": "2024-05-16T07:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.209400", + "Timestamp": "2024-05-16T07:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "a1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.204400", + "Timestamp": "2024-05-16T07:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079400", + "Timestamp": "2024-05-16T07:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.482800", + "Timestamp": "2024-05-16T07:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.477800", + "Timestamp": "2024-05-16T07:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.352800", + "Timestamp": "2024-05-16T07:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174200", + "Timestamp": "2024-05-16T07:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170500", + "Timestamp": "2024-05-16T07:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114200", + "Timestamp": "2024-05-16T07:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.484200", + "Timestamp": "2024-05-16T07:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.779400", + "Timestamp": "2024-05-16T07:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.736500", + "Timestamp": "2024-05-16T07:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.731500", + "Timestamp": "2024-05-16T07:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.606500", + "Timestamp": "2024-05-16T07:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.045200", + "Timestamp": "2024-05-16T07:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.693000", + "Timestamp": "2024-05-16T07:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.663000", + "Timestamp": "2024-05-16T07:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.563000", + "Timestamp": "2024-05-16T07:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.381100", + "Timestamp": "2024-05-16T07:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.376100", + "Timestamp": "2024-05-16T07:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.251100", + "Timestamp": "2024-05-16T07:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.713300", + "Timestamp": "2024-05-16T07:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.242200", + "Timestamp": "2024-05-16T07:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.237200", + "Timestamp": "2024-05-16T07:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T07:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.240300", + "Timestamp": "2024-05-16T07:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.210300", + "Timestamp": "2024-05-16T07:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.110300", + "Timestamp": "2024-05-16T07:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.743100", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.738100", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.613100", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.370700", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.365700", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.240700", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.737000", + "Timestamp": "2024-05-16T07:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.149700", + "Timestamp": "2024-05-16T07:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.144700", + "Timestamp": "2024-05-16T07:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.019700", + "Timestamp": "2024-05-16T07:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.703600", + "Timestamp": "2024-05-16T07:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.698600", + "Timestamp": "2024-05-16T07:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.573600", + "Timestamp": "2024-05-16T07:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.454100", + "Timestamp": "2024-05-16T07:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.449100", + "Timestamp": "2024-05-16T07:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.324100", + "Timestamp": "2024-05-16T07:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.243200", + "Timestamp": "2024-05-16T07:47:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.321800", + "Timestamp": "2024-05-16T07:47:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.316800", + "Timestamp": "2024-05-16T07:47:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.191800", + "Timestamp": "2024-05-16T07:47:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417000", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.482000", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.452000", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.352000", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047700", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.505300", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.500300", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.375300", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.583700", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.553700", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.453700", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.229200", + "Timestamp": "2024-05-16T07:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.224200", + "Timestamp": "2024-05-16T07:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.099200", + "Timestamp": "2024-05-16T07:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127100", + "Timestamp": "2024-05-16T07:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123100", + "Timestamp": "2024-05-16T07:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067100", + "Timestamp": "2024-05-16T07:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.140600", + "Timestamp": "2024-05-16T07:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.602700", + "Timestamp": "2024-05-16T07:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.351800", + "Timestamp": "2024-05-16T07:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.751800", + "Timestamp": "2024-05-16T07:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130400", + "Timestamp": "2024-05-16T07:47:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126700", + "Timestamp": "2024-05-16T07:47:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070400", + "Timestamp": "2024-05-16T07:47:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.222000", + "Timestamp": "2024-05-16T07:47:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.218300", + "Timestamp": "2024-05-16T07:47:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162000", + "Timestamp": "2024-05-16T07:47:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.824000", + "Timestamp": "2024-05-16T07:47:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.794000", + "Timestamp": "2024-05-16T07:47:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.694000", + "Timestamp": "2024-05-16T07:47:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.538700", + "Timestamp": "2024-05-16T07:47:16.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.550100", + "Timestamp": "2024-05-16T07:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.545100", + "Timestamp": "2024-05-16T07:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.420100", + "Timestamp": "2024-05-16T07:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.353000", + "Timestamp": "2024-05-16T07:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.348000", + "Timestamp": "2024-05-16T07:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.223000", + "Timestamp": "2024-05-16T07:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "h1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.057400", + "Timestamp": "2024-05-16T07:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.558500", + "Timestamp": "2024-05-16T07:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.519900", + "Timestamp": "2024-05-16T07:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.514900", + "Timestamp": "2024-05-16T07:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.389900", + "Timestamp": "2024-05-16T07:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.022600", + "Timestamp": "2024-05-16T07:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.017600", + "Timestamp": "2024-05-16T07:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.892600", + "Timestamp": "2024-05-16T07:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.250100", + "Timestamp": "2024-05-16T07:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.245100", + "Timestamp": "2024-05-16T07:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120100", + "Timestamp": "2024-05-16T07:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.506700", + "Timestamp": "2024-05-16T07:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.501700", + "Timestamp": "2024-05-16T07:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.376700", + "Timestamp": "2024-05-16T07:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.738100", + "Timestamp": "2024-05-16T07:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.764200", + "Timestamp": "2024-05-16T07:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.759200", + "Timestamp": "2024-05-16T07:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.634200", + "Timestamp": "2024-05-16T07:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093300", + "Timestamp": "2024-05-16T07:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089600", + "Timestamp": "2024-05-16T07:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033300", + "Timestamp": "2024-05-16T07:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.591100", + "Timestamp": "2024-05-16T07:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.586100", + "Timestamp": "2024-05-16T07:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.461100", + "Timestamp": "2024-05-16T07:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t1.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063400", + "Timestamp": "2024-05-16T07:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t1.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003400", + "Timestamp": "2024-05-16T07:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t1.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003400", + "Timestamp": "2024-05-16T07:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.098400", + "Timestamp": "2024-05-16T07:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.530100", + "Timestamp": "2024-05-16T07:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.525100", + "Timestamp": "2024-05-16T07:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.400100", + "Timestamp": "2024-05-16T07:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.649400", + "Timestamp": "2024-05-16T07:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.391100", + "Timestamp": "2024-05-16T07:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.361100", + "Timestamp": "2024-05-16T07:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.261100", + "Timestamp": "2024-05-16T07:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.583800", + "Timestamp": "2024-05-16T07:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.178600", + "Timestamp": "2024-05-16T07:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.218600", + "Timestamp": "2024-05-16T07:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118600", + "Timestamp": "2024-05-16T07:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.670500", + "Timestamp": "2024-05-16T07:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.640500", + "Timestamp": "2024-05-16T07:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.540500", + "Timestamp": "2024-05-16T07:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.640100", + "Timestamp": "2024-05-16T07:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.635100", + "Timestamp": "2024-05-16T07:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.510100", + "Timestamp": "2024-05-16T07:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.406000", + "Timestamp": "2024-05-16T07:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.263500", + "Timestamp": "2024-05-16T07:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258500", + "Timestamp": "2024-05-16T07:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133500", + "Timestamp": "2024-05-16T07:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.485200", + "Timestamp": "2024-05-16T07:46:59.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.480200", + "Timestamp": "2024-05-16T07:46:59.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.355200", + "Timestamp": "2024-05-16T07:46:59.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.459900", + "Timestamp": "2024-05-16T07:46:59.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.721100", + "Timestamp": "2024-05-16T07:46:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.716100", + "Timestamp": "2024-05-16T07:46:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.591100", + "Timestamp": "2024-05-16T07:46:57.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085000", + "Timestamp": "2024-05-16T07:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.081300", + "Timestamp": "2024-05-16T07:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025000", + "Timestamp": "2024-05-16T07:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.300800", + "Timestamp": "2024-05-16T07:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.295800", + "Timestamp": "2024-05-16T07:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170800", + "Timestamp": "2024-05-16T07:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.227900", + "Timestamp": "2024-05-16T07:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267900", + "Timestamp": "2024-05-16T07:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167900", + "Timestamp": "2024-05-16T07:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.757900", + "Timestamp": "2024-05-16T07:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.752900", + "Timestamp": "2024-05-16T07:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.627900", + "Timestamp": "2024-05-16T07:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.660800", + "Timestamp": "2024-05-16T07:46:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.184500", + "Timestamp": "2024-05-16T07:46:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.179500", + "Timestamp": "2024-05-16T07:46:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.054500", + "Timestamp": "2024-05-16T07:46:53.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133100", + "Timestamp": "2024-05-16T07:46:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129400", + "Timestamp": "2024-05-16T07:46:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073100", + "Timestamp": "2024-05-16T07:46:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136600", + "Timestamp": "2024-05-16T07:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132600", + "Timestamp": "2024-05-16T07:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076600", + "Timestamp": "2024-05-16T07:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.768800", + "Timestamp": "2024-05-16T07:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.763800", + "Timestamp": "2024-05-16T07:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.638800", + "Timestamp": "2024-05-16T07:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.445600", + "Timestamp": "2024-05-16T07:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.440600", + "Timestamp": "2024-05-16T07:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.315600", + "Timestamp": "2024-05-16T07:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.239000", + "Timestamp": "2024-05-16T07:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.234000", + "Timestamp": "2024-05-16T07:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109000", + "Timestamp": "2024-05-16T07:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.284800", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.254800", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.154800", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090900", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086900", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030900", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.385900", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.380900", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.255900", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.808400", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.803400", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.678400", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.617500", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.587500", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.487500", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.846200", + "Timestamp": "2024-05-16T07:32:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.900900", + "Timestamp": "2024-05-16T07:32:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.895900", + "Timestamp": "2024-05-16T07:32:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.770900", + "Timestamp": "2024-05-16T07:32:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.254900", + "Timestamp": "2024-05-16T07:32:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.003700", + "Timestamp": "2024-05-16T07:32:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.442900", + "Timestamp": "2024-05-16T07:32:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.509300", + "Timestamp": "2024-05-16T07:32:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.504300", + "Timestamp": "2024-05-16T07:32:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.379300", + "Timestamp": "2024-05-16T07:32:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.977300", + "Timestamp": "2024-05-16T07:32:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.947300", + "Timestamp": "2024-05-16T07:32:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.847300", + "Timestamp": "2024-05-16T07:32:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207300", + "Timestamp": "2024-05-16T07:32:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.346500", + "Timestamp": "2024-05-16T07:32:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.553600", + "Timestamp": "2024-05-16T07:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.478500", + "Timestamp": "2024-05-16T07:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.447500", + "Timestamp": "2024-05-16T07:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.436700", + "Timestamp": "2024-05-16T07:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.615700", + "Timestamp": "2024-05-16T07:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311400", + "Timestamp": "2024-05-16T07:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.306400", + "Timestamp": "2024-05-16T07:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181400", + "Timestamp": "2024-05-16T07:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.418100", + "Timestamp": "2024-05-16T07:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.413100", + "Timestamp": "2024-05-16T07:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.288100", + "Timestamp": "2024-05-16T07:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.280900", + "Timestamp": "2024-05-16T07:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.458700", + "Timestamp": "2024-05-16T07:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.554200", + "Timestamp": "2024-05-16T07:32:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.549200", + "Timestamp": "2024-05-16T07:32:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.424200", + "Timestamp": "2024-05-16T07:32:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104300", + "Timestamp": "2024-05-16T07:32:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.072900", + "Timestamp": "2024-05-16T07:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.665200", + "Timestamp": "2024-05-16T07:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.660200", + "Timestamp": "2024-05-16T07:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.535200", + "Timestamp": "2024-05-16T07:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.560500", + "Timestamp": "2024-05-16T07:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164900", + "Timestamp": "2024-05-16T07:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.204900", + "Timestamp": "2024-05-16T07:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T07:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.837600", + "Timestamp": "2024-05-16T07:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.120600", + "Timestamp": "2024-05-16T07:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.823400", + "Timestamp": "2024-05-16T07:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.818400", + "Timestamp": "2024-05-16T07:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.693400", + "Timestamp": "2024-05-16T07:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.904600", + "Timestamp": "2024-05-16T07:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.362000", + "Timestamp": "2024-05-16T07:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156400", + "Timestamp": "2024-05-16T07:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152700", + "Timestamp": "2024-05-16T07:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096400", + "Timestamp": "2024-05-16T07:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.421100", + "Timestamp": "2024-05-16T07:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.416100", + "Timestamp": "2024-05-16T07:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.291100", + "Timestamp": "2024-05-16T07:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.699800", + "Timestamp": "2024-05-16T07:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.694800", + "Timestamp": "2024-05-16T07:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.569800", + "Timestamp": "2024-05-16T07:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068300", + "Timestamp": "2024-05-16T07:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039600", + "Timestamp": "2024-05-16T07:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008300", + "Timestamp": "2024-05-16T07:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.859600", + "Timestamp": "2024-05-16T07:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206600", + "Timestamp": "2024-05-16T07:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.942800", + "Timestamp": "2024-05-16T07:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.914900", + "Timestamp": "2024-05-16T07:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.688200", + "Timestamp": "2024-05-16T07:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.683200", + "Timestamp": "2024-05-16T07:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.558200", + "Timestamp": "2024-05-16T07:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "a1.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.189300", + "Timestamp": "2024-05-16T07:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "a1.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.184300", + "Timestamp": "2024-05-16T07:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "a1.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059300", + "Timestamp": "2024-05-16T07:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.496400", + "Timestamp": "2024-05-16T07:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.885200", + "Timestamp": "2024-05-16T07:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.408900", + "Timestamp": "2024-05-16T07:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.206500", + "Timestamp": "2024-05-16T07:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.202800", + "Timestamp": "2024-05-16T07:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146500", + "Timestamp": "2024-05-16T07:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061700", + "Timestamp": "2024-05-16T07:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001700", + "Timestamp": "2024-05-16T07:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001700", + "Timestamp": "2024-05-16T07:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.943100", + "Timestamp": "2024-05-16T07:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.938100", + "Timestamp": "2024-05-16T07:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.813100", + "Timestamp": "2024-05-16T07:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.222800", + "Timestamp": "2024-05-16T07:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.217800", + "Timestamp": "2024-05-16T07:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.092800", + "Timestamp": "2024-05-16T07:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.822600", + "Timestamp": "2024-05-16T07:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.389200", + "Timestamp": "2024-05-16T07:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.137400", + "Timestamp": "2024-05-16T07:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.132400", + "Timestamp": "2024-05-16T07:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.007400", + "Timestamp": "2024-05-16T07:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.644300", + "Timestamp": "2024-05-16T07:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.735300", + "Timestamp": "2024-05-16T07:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.056000", + "Timestamp": "2024-05-16T07:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.705300", + "Timestamp": "2024-05-16T07:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.026000", + "Timestamp": "2024-05-16T07:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.605300", + "Timestamp": "2024-05-16T07:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.926000", + "Timestamp": "2024-05-16T07:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.057600", + "Timestamp": "2024-05-16T07:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.468700", + "Timestamp": "2024-05-16T07:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.659300", + "Timestamp": "2024-05-16T07:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "f1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.423500", + "Timestamp": "2024-05-16T07:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "f1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.393500", + "Timestamp": "2024-05-16T07:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "f1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.293500", + "Timestamp": "2024-05-16T07:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.082500", + "Timestamp": "2024-05-16T07:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.936900", + "Timestamp": "2024-05-16T07:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.906900", + "Timestamp": "2024-05-16T07:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.806900", + "Timestamp": "2024-05-16T07:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.778100", + "Timestamp": "2024-05-16T07:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.748100", + "Timestamp": "2024-05-16T07:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.648100", + "Timestamp": "2024-05-16T07:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.861400", + "Timestamp": "2024-05-16T07:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.281600", + "Timestamp": "2024-05-16T07:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.604500", + "Timestamp": "2024-05-16T07:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.894000", + "Timestamp": "2024-05-16T07:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.206700", + "Timestamp": "2024-05-16T07:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.201700", + "Timestamp": "2024-05-16T07:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.076700", + "Timestamp": "2024-05-16T07:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135800", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132100", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075800", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.750600", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.745600", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.620600", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.877000", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.872000", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.747000", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.429500", + "Timestamp": "2024-05-16T07:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.424500", + "Timestamp": "2024-05-16T07:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.299500", + "Timestamp": "2024-05-16T07:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.617300", + "Timestamp": "2024-05-16T07:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.587300", + "Timestamp": "2024-05-16T07:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.487300", + "Timestamp": "2024-05-16T07:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.491500", + "Timestamp": "2024-05-16T07:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.486500", + "Timestamp": "2024-05-16T07:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.361500", + "Timestamp": "2024-05-16T07:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.468400", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.438400", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.338400", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.792300", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294900", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.787300", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289900", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.662300", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164900", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.951100", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.946100", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.821100", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.424400", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.496700", + "Timestamp": "2024-05-16T07:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.491700", + "Timestamp": "2024-05-16T07:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.366700", + "Timestamp": "2024-05-16T07:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098700", + "Timestamp": "2024-05-16T07:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095000", + "Timestamp": "2024-05-16T07:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038700", + "Timestamp": "2024-05-16T07:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.864600", + "Timestamp": "2024-05-16T07:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.016000", + "Timestamp": "2024-05-16T07:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.011000", + "Timestamp": "2024-05-16T07:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.886000", + "Timestamp": "2024-05-16T07:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.405100", + "Timestamp": "2024-05-16T07:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314800", + "Timestamp": "2024-05-16T07:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.309800", + "Timestamp": "2024-05-16T07:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184800", + "Timestamp": "2024-05-16T07:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.380900", + "Timestamp": "2024-05-16T07:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136900", + "Timestamp": "2024-05-16T07:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132900", + "Timestamp": "2024-05-16T07:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076900", + "Timestamp": "2024-05-16T07:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.932400", + "Timestamp": "2024-05-16T07:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.927400", + "Timestamp": "2024-05-16T07:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.802400", + "Timestamp": "2024-05-16T07:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.239300", + "Timestamp": "2024-05-16T07:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.234300", + "Timestamp": "2024-05-16T07:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.109300", + "Timestamp": "2024-05-16T07:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.139300", + "Timestamp": "2024-05-16T07:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.412000", + "Timestamp": "2024-05-16T07:32:15.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.407000", + "Timestamp": "2024-05-16T07:32:15.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.282000", + "Timestamp": "2024-05-16T07:32:15.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.802700", + "Timestamp": "2024-05-16T07:32:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "a1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088400", + "Timestamp": "2024-05-16T07:32:14.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "a1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084700", + "Timestamp": "2024-05-16T07:32:14.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "a1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028400", + "Timestamp": "2024-05-16T07:32:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.894400", + "Timestamp": "2024-05-16T07:32:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.889400", + "Timestamp": "2024-05-16T07:32:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.764400", + "Timestamp": "2024-05-16T07:32:14.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095000", + "Timestamp": "2024-05-16T07:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091300", + "Timestamp": "2024-05-16T07:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035000", + "Timestamp": "2024-05-16T07:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.467300", + "Timestamp": "2024-05-16T07:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.462300", + "Timestamp": "2024-05-16T07:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.337300", + "Timestamp": "2024-05-16T07:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.771200", + "Timestamp": "2024-05-16T07:32:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.766200", + "Timestamp": "2024-05-16T07:32:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.641200", + "Timestamp": "2024-05-16T07:32:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.569400", + "Timestamp": "2024-05-16T07:32:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.564400", + "Timestamp": "2024-05-16T07:32:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.439400", + "Timestamp": "2024-05-16T07:32:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.750100", + "Timestamp": "2024-05-16T07:32:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.768000", + "Timestamp": "2024-05-16T07:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.763000", + "Timestamp": "2024-05-16T07:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.638000", + "Timestamp": "2024-05-16T07:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.578300", + "Timestamp": "2024-05-16T07:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.573300", + "Timestamp": "2024-05-16T07:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.448300", + "Timestamp": "2024-05-16T07:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.473600", + "Timestamp": "2024-05-16T07:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.228700", + "Timestamp": "2024-05-16T07:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.223700", + "Timestamp": "2024-05-16T07:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.098700", + "Timestamp": "2024-05-16T07:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.648400", + "Timestamp": "2024-05-16T07:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.269600", + "Timestamp": "2024-05-16T07:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.264600", + "Timestamp": "2024-05-16T07:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.139600", + "Timestamp": "2024-05-16T07:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.730000", + "Timestamp": "2024-05-16T07:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.725000", + "Timestamp": "2024-05-16T07:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.600000", + "Timestamp": "2024-05-16T07:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-16T07:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104300", + "Timestamp": "2024-05-16T07:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048000", + "Timestamp": "2024-05-16T07:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.507200", + "Timestamp": "2024-05-16T07:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.530900", + "Timestamp": "2024-05-16T07:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.680300", + "Timestamp": "2024-05-16T07:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.525900", + "Timestamp": "2024-05-16T07:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.675300", + "Timestamp": "2024-05-16T07:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.400900", + "Timestamp": "2024-05-16T07:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.550300", + "Timestamp": "2024-05-16T07:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.441800", + "Timestamp": "2024-05-16T07:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.436800", + "Timestamp": "2024-05-16T07:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.311800", + "Timestamp": "2024-05-16T07:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.326500", + "Timestamp": "2024-05-16T07:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.321500", + "Timestamp": "2024-05-16T07:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196500", + "Timestamp": "2024-05-16T07:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.250000", + "Timestamp": "2024-05-16T07:32:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.245000", + "Timestamp": "2024-05-16T07:32:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.120000", + "Timestamp": "2024-05-16T07:32:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.466000", + "Timestamp": "2024-05-16T07:32:00.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.461000", + "Timestamp": "2024-05-16T07:32:00.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.336000", + "Timestamp": "2024-05-16T07:32:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.484200", + "Timestamp": "2024-05-16T07:31:59.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.479200", + "Timestamp": "2024-05-16T07:31:59.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.354200", + "Timestamp": "2024-05-16T07:31:59.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.203900", + "Timestamp": "2024-05-16T07:31:59.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141400", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137700", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081400", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.349300", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319300", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219300", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.040100", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.010100", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.910100", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.806600", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.806300", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.617700", + "Timestamp": "2024-05-16T07:31:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.587700", + "Timestamp": "2024-05-16T07:31:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.487700", + "Timestamp": "2024-05-16T07:31:57.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.360600", + "Timestamp": "2024-05-16T07:31:55.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.355600", + "Timestamp": "2024-05-16T07:31:55.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.230600", + "Timestamp": "2024-05-16T07:31:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.258100", + "Timestamp": "2024-05-16T07:31:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098900", + "Timestamp": "2024-05-16T07:31:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138900", + "Timestamp": "2024-05-16T07:31:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038900", + "Timestamp": "2024-05-16T07:31:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.097800", + "Timestamp": "2024-05-16T07:31:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.254600", + "Timestamp": "2024-05-16T07:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.294200", + "Timestamp": "2024-05-16T07:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.473600", + "Timestamp": "2024-05-16T07:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.424000", + "Timestamp": "2024-05-16T07:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.447800", + "Timestamp": "2024-05-16T07:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.442800", + "Timestamp": "2024-05-16T07:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.317800", + "Timestamp": "2024-05-16T07:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.049900", + "Timestamp": "2024-05-16T07:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.108000", + "Timestamp": "2024-05-16T07:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.519100", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.482800", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.477800", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.352800", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.577000", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.547000", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.447000", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.796100", + "Timestamp": "2024-05-16T07:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.766100", + "Timestamp": "2024-05-16T07:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.666100", + "Timestamp": "2024-05-16T07:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-16T07:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T07:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048600", + "Timestamp": "2024-05-16T07:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082300", + "Timestamp": "2024-05-16T07:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078600", + "Timestamp": "2024-05-16T07:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022300", + "Timestamp": "2024-05-16T07:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.876900", + "Timestamp": "2024-05-16T07:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.708300", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.703300", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.578300", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.396000", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.391000", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.266000", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.323500", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.318500", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.193500", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095100", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091100", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035100", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111800", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148200", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048200", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.257300", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.252300", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127300", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.761500", + "Timestamp": "2024-05-16T07:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.756500", + "Timestamp": "2024-05-16T07:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.631500", + "Timestamp": "2024-05-16T07:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.417600", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.412600", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.287600", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.169700", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166300", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162600", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.248400", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120800", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117100", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060800", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.793000", + "Timestamp": "2024-05-16T07:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.763000", + "Timestamp": "2024-05-16T07:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.663000", + "Timestamp": "2024-05-16T07:31:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098700", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094700", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038700", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.268100", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.263100", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.138100", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.741000", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.711000", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.611000", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.339700", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334700", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.209700", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.438200", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132800", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129100", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072800", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143100", + "Timestamp": "2024-05-16T07:18:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183100", + "Timestamp": "2024-05-16T07:18:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083100", + "Timestamp": "2024-05-16T07:18:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.370100", + "Timestamp": "2024-05-16T07:17:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.365100", + "Timestamp": "2024-05-16T07:17:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.240100", + "Timestamp": "2024-05-16T07:17:57.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.541600", + "Timestamp": "2024-05-16T07:17:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.250800", + "Timestamp": "2024-05-16T07:17:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.246800", + "Timestamp": "2024-05-16T07:17:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190800", + "Timestamp": "2024-05-16T07:17:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.807100", + "Timestamp": "2024-05-16T07:17:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.591600", + "Timestamp": "2024-05-16T07:17:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.931700", + "Timestamp": "2024-05-16T07:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.426800", + "Timestamp": "2024-05-16T07:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.423300", + "Timestamp": "2024-05-16T07:17:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.246900", + "Timestamp": "2024-05-16T07:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.243200", + "Timestamp": "2024-05-16T07:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186900", + "Timestamp": "2024-05-16T07:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.675500", + "Timestamp": "2024-05-16T07:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.092000", + "Timestamp": "2024-05-16T07:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.863700", + "Timestamp": "2024-05-16T07:17:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.858700", + "Timestamp": "2024-05-16T07:17:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.733700", + "Timestamp": "2024-05-16T07:17:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122700", + "Timestamp": "2024-05-16T07:17:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119000", + "Timestamp": "2024-05-16T07:17:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062700", + "Timestamp": "2024-05-16T07:17:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.432200", + "Timestamp": "2024-05-16T07:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.448400", + "Timestamp": "2024-05-16T07:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.056600", + "Timestamp": "2024-05-16T07:17:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.051600", + "Timestamp": "2024-05-16T07:17:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.926600", + "Timestamp": "2024-05-16T07:17:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432900", + "Timestamp": "2024-05-16T07:17:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.488800", + "Timestamp": "2024-05-16T07:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.578700", + "Timestamp": "2024-05-16T07:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.320800", + "Timestamp": "2024-05-16T07:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.048400", + "Timestamp": "2024-05-16T07:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.315800", + "Timestamp": "2024-05-16T07:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.043400", + "Timestamp": "2024-05-16T07:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.190800", + "Timestamp": "2024-05-16T07:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.918400", + "Timestamp": "2024-05-16T07:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.871100", + "Timestamp": "2024-05-16T07:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.866100", + "Timestamp": "2024-05-16T07:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.741100", + "Timestamp": "2024-05-16T07:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.276700", + "Timestamp": "2024-05-16T07:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.518800", + "Timestamp": "2024-05-16T07:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.513800", + "Timestamp": "2024-05-16T07:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.388800", + "Timestamp": "2024-05-16T07:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.946400", + "Timestamp": "2024-05-16T07:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.916400", + "Timestamp": "2024-05-16T07:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.816400", + "Timestamp": "2024-05-16T07:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074600", + "Timestamp": "2024-05-16T07:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070900", + "Timestamp": "2024-05-16T07:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014600", + "Timestamp": "2024-05-16T07:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153600", + "Timestamp": "2024-05-16T07:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149900", + "Timestamp": "2024-05-16T07:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093600", + "Timestamp": "2024-05-16T07:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.441600", + "Timestamp": "2024-05-16T07:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.436600", + "Timestamp": "2024-05-16T07:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.311600", + "Timestamp": "2024-05-16T07:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.141200", + "Timestamp": "2024-05-16T07:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.419800", + "Timestamp": "2024-05-16T07:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.455300", + "Timestamp": "2024-05-16T07:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200600", + "Timestamp": "2024-05-16T07:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.240600", + "Timestamp": "2024-05-16T07:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140600", + "Timestamp": "2024-05-16T07:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129100", + "Timestamp": "2024-05-16T07:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T07:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069100", + "Timestamp": "2024-05-16T07:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.337900", + "Timestamp": "2024-05-16T07:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.697300", + "Timestamp": "2024-05-16T07:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.827500", + "Timestamp": "2024-05-16T07:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.232700", + "Timestamp": "2024-05-16T07:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.227700", + "Timestamp": "2024-05-16T07:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.102700", + "Timestamp": "2024-05-16T07:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.729600", + "Timestamp": "2024-05-16T07:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.301800", + "Timestamp": "2024-05-16T07:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.372100", + "Timestamp": "2024-05-16T07:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.697400", + "Timestamp": "2024-05-16T07:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.625600", + "Timestamp": "2024-05-16T07:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.643600", + "Timestamp": "2024-05-16T07:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.620600", + "Timestamp": "2024-05-16T07:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.638600", + "Timestamp": "2024-05-16T07:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.495600", + "Timestamp": "2024-05-16T07:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.513600", + "Timestamp": "2024-05-16T07:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.385700", + "Timestamp": "2024-05-16T07:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.355700", + "Timestamp": "2024-05-16T07:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.255700", + "Timestamp": "2024-05-16T07:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.188200", + "Timestamp": "2024-05-16T07:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.675900", + "Timestamp": "2024-05-16T07:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T07:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-16T07:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031800", + "Timestamp": "2024-05-16T07:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.201200", + "Timestamp": "2024-05-16T07:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.197200", + "Timestamp": "2024-05-16T07:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141200", + "Timestamp": "2024-05-16T07:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.893200", + "Timestamp": "2024-05-16T07:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.882000", + "Timestamp": "2024-05-16T07:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.793200", + "Timestamp": "2024-05-16T07:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071000", + "Timestamp": "2024-05-16T07:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042000", + "Timestamp": "2024-05-16T07:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011000", + "Timestamp": "2024-05-16T07:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.638200", + "Timestamp": "2024-05-16T07:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.633200", + "Timestamp": "2024-05-16T07:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.508200", + "Timestamp": "2024-05-16T07:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.167100", + "Timestamp": "2024-05-16T07:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.662600", + "Timestamp": "2024-05-16T07:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.657600", + "Timestamp": "2024-05-16T07:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.532600", + "Timestamp": "2024-05-16T07:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.394600", + "Timestamp": "2024-05-16T07:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.389600", + "Timestamp": "2024-05-16T07:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.264600", + "Timestamp": "2024-05-16T07:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116800", + "Timestamp": "2024-05-16T07:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T07:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056800", + "Timestamp": "2024-05-16T07:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.639200", + "Timestamp": "2024-05-16T07:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.343200", + "Timestamp": "2024-05-16T07:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.268200", + "Timestamp": "2024-05-16T07:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.996000", + "Timestamp": "2024-05-16T07:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.029300", + "Timestamp": "2024-05-16T07:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216300", + "Timestamp": "2024-05-16T07:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.767200", + "Timestamp": "2024-05-16T07:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.762200", + "Timestamp": "2024-05-16T07:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.637200", + "Timestamp": "2024-05-16T07:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.605500", + "Timestamp": "2024-05-16T07:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.600500", + "Timestamp": "2024-05-16T07:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.475500", + "Timestamp": "2024-05-16T07:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.405000", + "Timestamp": "2024-05-16T07:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.400000", + "Timestamp": "2024-05-16T07:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.275000", + "Timestamp": "2024-05-16T07:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.067100", + "Timestamp": "2024-05-16T07:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.265100", + "Timestamp": "2024-05-16T07:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.260100", + "Timestamp": "2024-05-16T07:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.135100", + "Timestamp": "2024-05-16T07:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.680400", + "Timestamp": "2024-05-16T07:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.675400", + "Timestamp": "2024-05-16T07:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.550400", + "Timestamp": "2024-05-16T07:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.415800", + "Timestamp": "2024-05-16T07:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.215100", + "Timestamp": "2024-05-16T07:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.210100", + "Timestamp": "2024-05-16T07:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.085100", + "Timestamp": "2024-05-16T07:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.397900", + "Timestamp": "2024-05-16T07:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.690200", + "Timestamp": "2024-05-16T07:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.685200", + "Timestamp": "2024-05-16T07:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.560200", + "Timestamp": "2024-05-16T07:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095500", + "Timestamp": "2024-05-16T07:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T07:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035500", + "Timestamp": "2024-05-16T07:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.892700", + "Timestamp": "2024-05-16T07:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.875700", + "Timestamp": "2024-05-16T07:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.870700", + "Timestamp": "2024-05-16T07:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.745700", + "Timestamp": "2024-05-16T07:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137200", + "Timestamp": "2024-05-16T07:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133500", + "Timestamp": "2024-05-16T07:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077200", + "Timestamp": "2024-05-16T07:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.051500", + "Timestamp": "2024-05-16T07:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.046500", + "Timestamp": "2024-05-16T07:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.921500", + "Timestamp": "2024-05-16T07:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.487800", + "Timestamp": "2024-05-16T07:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.814300", + "Timestamp": "2024-05-16T07:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.164100", + "Timestamp": "2024-05-16T07:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.159100", + "Timestamp": "2024-05-16T07:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.034100", + "Timestamp": "2024-05-16T07:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.123900", + "Timestamp": "2024-05-16T07:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.032500", + "Timestamp": "2024-05-16T07:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.027500", + "Timestamp": "2024-05-16T07:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.902500", + "Timestamp": "2024-05-16T07:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221300", + "Timestamp": "2024-05-16T07:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.607500", + "Timestamp": "2024-05-16T07:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.602500", + "Timestamp": "2024-05-16T07:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.477500", + "Timestamp": "2024-05-16T07:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217100", + "Timestamp": "2024-05-16T07:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.125000", + "Timestamp": "2024-05-16T07:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.120000", + "Timestamp": "2024-05-16T07:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.995000", + "Timestamp": "2024-05-16T07:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.414200", + "Timestamp": "2024-05-16T07:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.409200", + "Timestamp": "2024-05-16T07:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.284200", + "Timestamp": "2024-05-16T07:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362500", + "Timestamp": "2024-05-16T07:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g3s.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.358500", + "Timestamp": "2024-05-16T07:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.302500", + "Timestamp": "2024-05-16T07:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.626000", + "Timestamp": "2024-05-16T07:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.621000", + "Timestamp": "2024-05-16T07:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.496000", + "Timestamp": "2024-05-16T07:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099300", + "Timestamp": "2024-05-16T07:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095600", + "Timestamp": "2024-05-16T07:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039300", + "Timestamp": "2024-05-16T07:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.657300", + "Timestamp": "2024-05-16T07:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.652300", + "Timestamp": "2024-05-16T07:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.527300", + "Timestamp": "2024-05-16T07:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.447300", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.811200", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.806200", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.681200", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.622000", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.307000", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.302000", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.177000", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.414200", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.409200", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.284200", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.316300", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.312300", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.256300", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.128900", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.123900", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.998900", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.677900", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.647900", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.547900", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.184600", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.179600", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.054600", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.298400", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.470700", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.465700", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.340700", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "a1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069500", + "Timestamp": "2024-05-16T07:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "a1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040500", + "Timestamp": "2024-05-16T07:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "a1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009500", + "Timestamp": "2024-05-16T07:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.300300", + "Timestamp": "2024-05-16T07:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.295300", + "Timestamp": "2024-05-16T07:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.170300", + "Timestamp": "2024-05-16T07:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.976100", + "Timestamp": "2024-05-16T07:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.971100", + "Timestamp": "2024-05-16T07:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.846100", + "Timestamp": "2024-05-16T07:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261300", + "Timestamp": "2024-05-16T07:17:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.256300", + "Timestamp": "2024-05-16T07:17:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131300", + "Timestamp": "2024-05-16T07:17:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.269000", + "Timestamp": "2024-05-16T07:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.264000", + "Timestamp": "2024-05-16T07:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139000", + "Timestamp": "2024-05-16T07:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.359700", + "Timestamp": "2024-05-16T07:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.354700", + "Timestamp": "2024-05-16T07:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.229700", + "Timestamp": "2024-05-16T07:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.967200", + "Timestamp": "2024-05-16T07:17:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.693800", + "Timestamp": "2024-05-16T07:17:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.533200", + "Timestamp": "2024-05-16T07:17:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.528200", + "Timestamp": "2024-05-16T07:17:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.403200", + "Timestamp": "2024-05-16T07:17:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.287300", + "Timestamp": "2024-05-16T07:17:15.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.127500", + "Timestamp": "2024-05-16T07:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.122500", + "Timestamp": "2024-05-16T07:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.997500", + "Timestamp": "2024-05-16T07:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.241600", + "Timestamp": "2024-05-16T07:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.236600", + "Timestamp": "2024-05-16T07:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111600", + "Timestamp": "2024-05-16T07:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.474400", + "Timestamp": "2024-05-16T07:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.469400", + "Timestamp": "2024-05-16T07:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.344400", + "Timestamp": "2024-05-16T07:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.240100", + "Timestamp": "2024-05-16T07:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.235100", + "Timestamp": "2024-05-16T07:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.110100", + "Timestamp": "2024-05-16T07:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307300", + "Timestamp": "2024-05-16T07:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302300", + "Timestamp": "2024-05-16T07:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177300", + "Timestamp": "2024-05-16T07:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121400", + "Timestamp": "2024-05-16T07:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117700", + "Timestamp": "2024-05-16T07:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061400", + "Timestamp": "2024-05-16T07:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.258600", + "Timestamp": "2024-05-16T07:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.682500", + "Timestamp": "2024-05-16T07:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.677500", + "Timestamp": "2024-05-16T07:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.552500", + "Timestamp": "2024-05-16T07:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075100", + "Timestamp": "2024-05-16T07:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115100", + "Timestamp": "2024-05-16T07:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015100", + "Timestamp": "2024-05-16T07:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.427100", + "Timestamp": "2024-05-16T07:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.316500", + "Timestamp": "2024-05-16T07:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.286500", + "Timestamp": "2024-05-16T07:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186500", + "Timestamp": "2024-05-16T07:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.238000", + "Timestamp": "2024-05-16T07:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.089500", + "Timestamp": "2024-05-16T07:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.208000", + "Timestamp": "2024-05-16T07:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.059500", + "Timestamp": "2024-05-16T07:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.108000", + "Timestamp": "2024-05-16T07:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.959500", + "Timestamp": "2024-05-16T07:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.954000", + "Timestamp": "2024-05-16T07:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.924000", + "Timestamp": "2024-05-16T07:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.824000", + "Timestamp": "2024-05-16T07:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.697600", + "Timestamp": "2024-05-16T07:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.667600", + "Timestamp": "2024-05-16T07:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.567600", + "Timestamp": "2024-05-16T07:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.729800", + "Timestamp": "2024-05-16T07:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.263800", + "Timestamp": "2024-05-16T07:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.260300", + "Timestamp": "2024-05-16T07:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.233800", + "Timestamp": "2024-05-16T07:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.230300", + "Timestamp": "2024-05-16T07:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133800", + "Timestamp": "2024-05-16T07:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130300", + "Timestamp": "2024-05-16T07:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-16T07:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084100", + "Timestamp": "2024-05-16T07:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028100", + "Timestamp": "2024-05-16T07:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.470400", + "Timestamp": "2024-05-16T07:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.465400", + "Timestamp": "2024-05-16T07:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.340400", + "Timestamp": "2024-05-16T07:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151600", + "Timestamp": "2024-05-16T07:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147600", + "Timestamp": "2024-05-16T07:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091600", + "Timestamp": "2024-05-16T07:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.563200", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.802400", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.772400", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.672400", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311900", + "Timestamp": "2024-05-16T07:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.306900", + "Timestamp": "2024-05-16T07:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181900", + "Timestamp": "2024-05-16T07:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.674100", + "Timestamp": "2024-05-16T07:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165100", + "Timestamp": "2024-05-16T07:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161400", + "Timestamp": "2024-05-16T07:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105100", + "Timestamp": "2024-05-16T07:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.813300", + "Timestamp": "2024-05-16T07:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.808300", + "Timestamp": "2024-05-16T07:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.683300", + "Timestamp": "2024-05-16T07:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.283200", + "Timestamp": "2024-05-16T07:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.253200", + "Timestamp": "2024-05-16T07:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.153200", + "Timestamp": "2024-05-16T07:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.596100", + "Timestamp": "2024-05-16T07:17:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.591100", + "Timestamp": "2024-05-16T07:17:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.466100", + "Timestamp": "2024-05-16T07:17:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t1.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.009400", + "Timestamp": "2024-05-16T07:17:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.237200", + "Timestamp": "2024-05-16T07:17:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.821900", + "Timestamp": "2024-05-16T07:17:00.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.816900", + "Timestamp": "2024-05-16T07:17:00.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.691900", + "Timestamp": "2024-05-16T07:17:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T07:17:00.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.850600", + "Timestamp": "2024-05-16T07:16:59.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.127000", + "Timestamp": "2024-05-16T07:16:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.428400", + "Timestamp": "2024-05-16T07:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.423400", + "Timestamp": "2024-05-16T07:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.298400", + "Timestamp": "2024-05-16T07:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.435400", + "Timestamp": "2024-05-16T07:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.405400", + "Timestamp": "2024-05-16T07:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.305400", + "Timestamp": "2024-05-16T07:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.852200", + "Timestamp": "2024-05-16T07:16:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.638400", + "Timestamp": "2024-05-16T07:16:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432000", + "Timestamp": "2024-05-16T07:16:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.809000", + "Timestamp": "2024-05-16T07:16:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113100", + "Timestamp": "2024-05-16T07:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T07:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053100", + "Timestamp": "2024-05-16T07:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.589500", + "Timestamp": "2024-05-16T07:16:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.584500", + "Timestamp": "2024-05-16T07:16:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.459500", + "Timestamp": "2024-05-16T07:16:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.575500", + "Timestamp": "2024-05-16T07:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.660100", + "Timestamp": "2024-05-16T07:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.655100", + "Timestamp": "2024-05-16T07:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.530100", + "Timestamp": "2024-05-16T07:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.291100", + "Timestamp": "2024-05-16T07:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.286100", + "Timestamp": "2024-05-16T07:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.161100", + "Timestamp": "2024-05-16T07:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.477300", + "Timestamp": "2024-05-16T07:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.472300", + "Timestamp": "2024-05-16T07:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.347300", + "Timestamp": "2024-05-16T07:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.467800", + "Timestamp": "2024-05-16T07:16:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.462800", + "Timestamp": "2024-05-16T07:16:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.337800", + "Timestamp": "2024-05-16T07:16:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.232200", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.670100", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.665100", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.540100", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.579800", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.574800", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.449800", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074400", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070700", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014400", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.394800", + "Timestamp": "2024-05-16T07:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.389800", + "Timestamp": "2024-05-16T07:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.264800", + "Timestamp": "2024-05-16T07:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080200", + "Timestamp": "2024-05-16T07:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076500", + "Timestamp": "2024-05-16T07:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020200", + "Timestamp": "2024-05-16T07:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.028700", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.023700", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.898700", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.908600", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.878600", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.778600", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.433400", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107000", + "Timestamp": "2024-05-16T07:03:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.207800", + "Timestamp": "2024-05-16T07:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.202800", + "Timestamp": "2024-05-16T07:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.077800", + "Timestamp": "2024-05-16T07:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.451300", + "Timestamp": "2024-05-16T07:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.446300", + "Timestamp": "2024-05-16T07:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.321300", + "Timestamp": "2024-05-16T07:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.476200", + "Timestamp": "2024-05-16T07:02:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.471200", + "Timestamp": "2024-05-16T07:02:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.346200", + "Timestamp": "2024-05-16T07:02:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136000", + "Timestamp": "2024-05-16T07:02:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132300", + "Timestamp": "2024-05-16T07:02:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076000", + "Timestamp": "2024-05-16T07:02:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.984900", + "Timestamp": "2024-05-16T07:02:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.892400", + "Timestamp": "2024-05-16T07:02:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.218000", + "Timestamp": "2024-05-16T07:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.213000", + "Timestamp": "2024-05-16T07:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.088000", + "Timestamp": "2024-05-16T07:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.464500", + "Timestamp": "2024-05-16T07:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439600", + "Timestamp": "2024-05-16T07:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.336600", + "Timestamp": "2024-05-16T07:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.200900", + "Timestamp": "2024-05-16T07:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.170900", + "Timestamp": "2024-05-16T07:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.070900", + "Timestamp": "2024-05-16T07:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.585900", + "Timestamp": "2024-05-16T07:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.580900", + "Timestamp": "2024-05-16T07:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.455900", + "Timestamp": "2024-05-16T07:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.966400", + "Timestamp": "2024-05-16T07:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.936400", + "Timestamp": "2024-05-16T07:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.836400", + "Timestamp": "2024-05-16T07:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T07:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156300", + "Timestamp": "2024-05-16T07:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152600", + "Timestamp": "2024-05-16T07:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096300", + "Timestamp": "2024-05-16T07:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.452500", + "Timestamp": "2024-05-16T07:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.447500", + "Timestamp": "2024-05-16T07:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.322500", + "Timestamp": "2024-05-16T07:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.993500", + "Timestamp": "2024-05-16T07:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.988500", + "Timestamp": "2024-05-16T07:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.863500", + "Timestamp": "2024-05-16T07:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.754500", + "Timestamp": "2024-05-16T07:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.749500", + "Timestamp": "2024-05-16T07:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.624500", + "Timestamp": "2024-05-16T07:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T07:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.787700", + "Timestamp": "2024-05-16T07:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083300", + "Timestamp": "2024-05-16T07:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079600", + "Timestamp": "2024-05-16T07:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023300", + "Timestamp": "2024-05-16T07:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.276900", + "Timestamp": "2024-05-16T07:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.244200", + "Timestamp": "2024-05-16T07:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.239200", + "Timestamp": "2024-05-16T07:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114200", + "Timestamp": "2024-05-16T07:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.393700", + "Timestamp": "2024-05-16T07:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.388700", + "Timestamp": "2024-05-16T07:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.263700", + "Timestamp": "2024-05-16T07:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.720800", + "Timestamp": "2024-05-16T07:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.715800", + "Timestamp": "2024-05-16T07:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.590800", + "Timestamp": "2024-05-16T07:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.412800", + "Timestamp": "2024-05-16T07:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.080400", + "Timestamp": "2024-05-16T07:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.075400", + "Timestamp": "2024-05-16T07:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.950400", + "Timestamp": "2024-05-16T07:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155400", + "Timestamp": "2024-05-16T07:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151700", + "Timestamp": "2024-05-16T07:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095400", + "Timestamp": "2024-05-16T07:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.460200", + "Timestamp": "2024-05-16T07:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.455200", + "Timestamp": "2024-05-16T07:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.330200", + "Timestamp": "2024-05-16T07:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.297400", + "Timestamp": "2024-05-16T07:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.502900", + "Timestamp": "2024-05-16T07:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.497900", + "Timestamp": "2024-05-16T07:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.372900", + "Timestamp": "2024-05-16T07:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.592000", + "Timestamp": "2024-05-16T07:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.587000", + "Timestamp": "2024-05-16T07:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.462000", + "Timestamp": "2024-05-16T07:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.947500", + "Timestamp": "2024-05-16T07:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.372700", + "Timestamp": "2024-05-16T07:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.367700", + "Timestamp": "2024-05-16T07:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.242700", + "Timestamp": "2024-05-16T07:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.681900", + "Timestamp": "2024-05-16T07:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.651900", + "Timestamp": "2024-05-16T07:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.551900", + "Timestamp": "2024-05-16T07:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.205300", + "Timestamp": "2024-05-16T07:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.849400", + "Timestamp": "2024-05-16T07:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.376200", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.371200", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.246200", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.654800", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.649800", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.524800", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.239900", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.234900", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.369200", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.619800", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.614800", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.489800", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.366600", + "Timestamp": "2024-05-16T07:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.361600", + "Timestamp": "2024-05-16T07:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.236600", + "Timestamp": "2024-05-16T07:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.060900", + "Timestamp": "2024-05-16T07:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.446000", + "Timestamp": "2024-05-16T07:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.506100", + "Timestamp": "2024-05-16T07:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.476100", + "Timestamp": "2024-05-16T07:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.376100", + "Timestamp": "2024-05-16T07:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.684000", + "Timestamp": "2024-05-16T07:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.679000", + "Timestamp": "2024-05-16T07:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.554000", + "Timestamp": "2024-05-16T07:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.477600", + "Timestamp": "2024-05-16T07:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123400", + "Timestamp": "2024-05-16T07:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119700", + "Timestamp": "2024-05-16T07:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063400", + "Timestamp": "2024-05-16T07:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.857100", + "Timestamp": "2024-05-16T07:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.571900", + "Timestamp": "2024-05-16T07:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.741800", + "Timestamp": "2024-05-16T07:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.736800", + "Timestamp": "2024-05-16T07:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.611800", + "Timestamp": "2024-05-16T07:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.624300", + "Timestamp": "2024-05-16T07:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.594300", + "Timestamp": "2024-05-16T07:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.494300", + "Timestamp": "2024-05-16T07:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.523100", + "Timestamp": "2024-05-16T07:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.518100", + "Timestamp": "2024-05-16T07:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.393100", + "Timestamp": "2024-05-16T07:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.240800", + "Timestamp": "2024-05-16T07:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.280800", + "Timestamp": "2024-05-16T07:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180800", + "Timestamp": "2024-05-16T07:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.087400", + "Timestamp": "2024-05-16T07:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.082400", + "Timestamp": "2024-05-16T07:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.957400", + "Timestamp": "2024-05-16T07:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.946300", + "Timestamp": "2024-05-16T07:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.941300", + "Timestamp": "2024-05-16T07:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.816300", + "Timestamp": "2024-05-16T07:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.666600", + "Timestamp": "2024-05-16T07:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.671400", + "Timestamp": "2024-05-16T07:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.582900", + "Timestamp": "2024-05-16T07:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.428500", + "Timestamp": "2024-05-16T07:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.678900", + "Timestamp": "2024-05-16T07:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.440700", + "Timestamp": "2024-05-16T07:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.564300", + "Timestamp": "2024-05-16T07:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.559300", + "Timestamp": "2024-05-16T07:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.434300", + "Timestamp": "2024-05-16T07:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.370300", + "Timestamp": "2024-05-16T07:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.365300", + "Timestamp": "2024-05-16T07:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.240300", + "Timestamp": "2024-05-16T07:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103100", + "Timestamp": "2024-05-16T07:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.442800", + "Timestamp": "2024-05-16T07:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.437800", + "Timestamp": "2024-05-16T07:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.312800", + "Timestamp": "2024-05-16T07:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.094400", + "Timestamp": "2024-05-16T07:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.089400", + "Timestamp": "2024-05-16T07:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.964400", + "Timestamp": "2024-05-16T07:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "h1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.319800", + "Timestamp": "2024-05-16T07:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "h1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289800", + "Timestamp": "2024-05-16T07:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "h1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.189800", + "Timestamp": "2024-05-16T07:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069800", + "Timestamp": "2024-05-16T07:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066100", + "Timestamp": "2024-05-16T07:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009800", + "Timestamp": "2024-05-16T07:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.077300", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.072300", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.947300", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.529000", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.499000", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.399000", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.821300", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.992900", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.987900", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.862900", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.134400", + "Timestamp": "2024-05-16T07:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.129400", + "Timestamp": "2024-05-16T07:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.004400", + "Timestamp": "2024-05-16T07:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.721400", + "Timestamp": "2024-05-16T07:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.716400", + "Timestamp": "2024-05-16T07:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.591400", + "Timestamp": "2024-05-16T07:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.409800", + "Timestamp": "2024-05-16T07:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.404800", + "Timestamp": "2024-05-16T07:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.279800", + "Timestamp": "2024-05-16T07:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.561500", + "Timestamp": "2024-05-16T07:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.556500", + "Timestamp": "2024-05-16T07:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.431500", + "Timestamp": "2024-05-16T07:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.627700", + "Timestamp": "2024-05-16T07:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.832400", + "Timestamp": "2024-05-16T07:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.827400", + "Timestamp": "2024-05-16T07:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.702400", + "Timestamp": "2024-05-16T07:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.429700", + "Timestamp": "2024-05-16T07:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.877800", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.481100", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.476100", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.351100", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.170400", + "Timestamp": "2024-05-16T07:02:15.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.140400", + "Timestamp": "2024-05-16T07:02:15.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.040400", + "Timestamp": "2024-05-16T07:02:15.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100000", + "Timestamp": "2024-05-16T07:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096300", + "Timestamp": "2024-05-16T07:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040000", + "Timestamp": "2024-05-16T07:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.073100", + "Timestamp": "2024-05-16T07:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.043100", + "Timestamp": "2024-05-16T07:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.943100", + "Timestamp": "2024-05-16T07:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.537200", + "Timestamp": "2024-05-16T07:02:11.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.845300", + "Timestamp": "2024-05-16T07:02:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.608000", + "Timestamp": "2024-05-16T07:02:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.603000", + "Timestamp": "2024-05-16T07:02:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.478000", + "Timestamp": "2024-05-16T07:02:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.710500", + "Timestamp": "2024-05-16T07:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.705500", + "Timestamp": "2024-05-16T07:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.580500", + "Timestamp": "2024-05-16T07:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.355400", + "Timestamp": "2024-05-16T07:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.350400", + "Timestamp": "2024-05-16T07:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.225400", + "Timestamp": "2024-05-16T07:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.820400", + "Timestamp": "2024-05-16T07:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.500300", + "Timestamp": "2024-05-16T07:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.483800", + "Timestamp": "2024-05-16T07:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.878900", + "Timestamp": "2024-05-16T07:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.335400", + "Timestamp": "2024-05-16T07:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.305400", + "Timestamp": "2024-05-16T07:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.205400", + "Timestamp": "2024-05-16T07:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.523800", + "Timestamp": "2024-05-16T07:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.857700", + "Timestamp": "2024-05-16T07:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.197700", + "Timestamp": "2024-05-16T07:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.237700", + "Timestamp": "2024-05-16T07:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137700", + "Timestamp": "2024-05-16T07:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.708900", + "Timestamp": "2024-05-16T07:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.703900", + "Timestamp": "2024-05-16T07:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.578900", + "Timestamp": "2024-05-16T07:02:00.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.082100", + "Timestamp": "2024-05-16T07:01:57.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.107500", + "Timestamp": "2024-05-16T07:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.077500", + "Timestamp": "2024-05-16T07:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.977500", + "Timestamp": "2024-05-16T07:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.361300", + "Timestamp": "2024-05-16T07:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.356300", + "Timestamp": "2024-05-16T07:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.231300", + "Timestamp": "2024-05-16T07:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.562700", + "Timestamp": "2024-05-16T07:01:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.550800", + "Timestamp": "2024-05-16T07:01:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.545800", + "Timestamp": "2024-05-16T07:01:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.420800", + "Timestamp": "2024-05-16T07:01:55.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360800", + "Timestamp": "2024-05-16T07:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.355800", + "Timestamp": "2024-05-16T07:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230800", + "Timestamp": "2024-05-16T07:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.042400", + "Timestamp": "2024-05-16T07:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140400", + "Timestamp": "2024-05-16T07:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136400", + "Timestamp": "2024-05-16T07:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080400", + "Timestamp": "2024-05-16T07:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.288900", + "Timestamp": "2024-05-16T07:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.418700", + "Timestamp": "2024-05-16T07:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.413700", + "Timestamp": "2024-05-16T07:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.288700", + "Timestamp": "2024-05-16T07:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.183100", + "Timestamp": "2024-05-16T07:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.858100", + "Timestamp": "2024-05-16T07:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.551800", + "Timestamp": "2024-05-16T07:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.546800", + "Timestamp": "2024-05-16T07:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.421800", + "Timestamp": "2024-05-16T07:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.241200", + "Timestamp": "2024-05-16T07:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.236200", + "Timestamp": "2024-05-16T07:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111200", + "Timestamp": "2024-05-16T07:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.981500", + "Timestamp": "2024-05-16T07:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.976500", + "Timestamp": "2024-05-16T07:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.851500", + "Timestamp": "2024-05-16T07:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.720900", + "Timestamp": "2024-05-16T07:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.690900", + "Timestamp": "2024-05-16T07:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.590900", + "Timestamp": "2024-05-16T07:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.551300", + "Timestamp": "2024-05-16T07:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.065900", + "Timestamp": "2024-05-16T07:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.060900", + "Timestamp": "2024-05-16T07:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.935900", + "Timestamp": "2024-05-16T07:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.895300", + "Timestamp": "2024-05-16T07:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.890300", + "Timestamp": "2024-05-16T07:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.765300", + "Timestamp": "2024-05-16T07:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.570700", + "Timestamp": "2024-05-16T07:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.565700", + "Timestamp": "2024-05-16T07:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.440700", + "Timestamp": "2024-05-16T07:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.786900", + "Timestamp": "2024-05-16T07:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.781900", + "Timestamp": "2024-05-16T07:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.656900", + "Timestamp": "2024-05-16T07:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171600", + "Timestamp": "2024-05-16T07:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.211600", + "Timestamp": "2024-05-16T07:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111600", + "Timestamp": "2024-05-16T07:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.734800", + "Timestamp": "2024-05-16T07:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.952600", + "Timestamp": "2024-05-16T07:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.947600", + "Timestamp": "2024-05-16T07:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.822600", + "Timestamp": "2024-05-16T07:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125800", + "Timestamp": "2024-05-16T07:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122100", + "Timestamp": "2024-05-16T07:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065800", + "Timestamp": "2024-05-16T07:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.193600", + "Timestamp": "2024-05-16T07:01:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.188600", + "Timestamp": "2024-05-16T07:01:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.063600", + "Timestamp": "2024-05-16T07:01:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.524700", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.494700", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.394700", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.113600", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099600", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039600", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.213000", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.208000", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.083000", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140000", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180000", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080000", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.115000", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.110000", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.985000", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.098100", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.093100", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.968100", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.879700", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.874700", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.749700", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.549600", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.519600", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.419600", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.600600", + "Timestamp": "2024-05-16T07:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.010300", + "Timestamp": "2024-05-16T07:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.595600", + "Timestamp": "2024-05-16T07:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.005300", + "Timestamp": "2024-05-16T07:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.470600", + "Timestamp": "2024-05-16T07:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.880300", + "Timestamp": "2024-05-16T07:00:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072700", + "Timestamp": "2024-05-16T06:48:01.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043700", + "Timestamp": "2024-05-16T06:48:01.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012700", + "Timestamp": "2024-05-16T06:48:01.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217400", + "Timestamp": "2024-05-16T06:47:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417300", + "Timestamp": "2024-05-16T06:47:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.050500", + "Timestamp": "2024-05-16T06:47:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.045500", + "Timestamp": "2024-05-16T06:47:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.920500", + "Timestamp": "2024-05-16T06:47:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.216800", + "Timestamp": "2024-05-16T06:47:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.308900", + "Timestamp": "2024-05-16T06:47:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.669300", + "Timestamp": "2024-05-16T06:47:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.832900", + "Timestamp": "2024-05-16T06:47:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.904800", + "Timestamp": "2024-05-16T06:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.180200", + "Timestamp": "2024-05-16T06:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.925200", + "Timestamp": "2024-05-16T06:47:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.841400", + "Timestamp": "2024-05-16T06:47:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.836400", + "Timestamp": "2024-05-16T06:47:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.711400", + "Timestamp": "2024-05-16T06:47:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.153100", + "Timestamp": "2024-05-16T06:47:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.123100", + "Timestamp": "2024-05-16T06:47:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.023100", + "Timestamp": "2024-05-16T06:47:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.430000", + "Timestamp": "2024-05-16T06:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.315800", + "Timestamp": "2024-05-16T06:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.285800", + "Timestamp": "2024-05-16T06:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.185800", + "Timestamp": "2024-05-16T06:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071800", + "Timestamp": "2024-05-16T06:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068100", + "Timestamp": "2024-05-16T06:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011800", + "Timestamp": "2024-05-16T06:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.467700", + "Timestamp": "2024-05-16T06:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.498100", + "Timestamp": "2024-05-16T06:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.794800", + "Timestamp": "2024-05-16T06:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.789800", + "Timestamp": "2024-05-16T06:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.664800", + "Timestamp": "2024-05-16T06:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.494000", + "Timestamp": "2024-05-16T06:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.489000", + "Timestamp": "2024-05-16T06:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.364000", + "Timestamp": "2024-05-16T06:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.599500", + "Timestamp": "2024-05-16T06:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105300", + "Timestamp": "2024-05-16T06:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.270900", + "Timestamp": "2024-05-16T06:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.265900", + "Timestamp": "2024-05-16T06:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.140900", + "Timestamp": "2024-05-16T06:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.459700", + "Timestamp": "2024-05-16T06:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.454700", + "Timestamp": "2024-05-16T06:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.329700", + "Timestamp": "2024-05-16T06:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.436500", + "Timestamp": "2024-05-16T06:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.431500", + "Timestamp": "2024-05-16T06:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.306500", + "Timestamp": "2024-05-16T06:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.151600", + "Timestamp": "2024-05-16T06:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.146600", + "Timestamp": "2024-05-16T06:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.021600", + "Timestamp": "2024-05-16T06:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.428500", + "Timestamp": "2024-05-16T06:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.247800", + "Timestamp": "2024-05-16T06:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.242800", + "Timestamp": "2024-05-16T06:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.117800", + "Timestamp": "2024-05-16T06:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.656400", + "Timestamp": "2024-05-16T06:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.626400", + "Timestamp": "2024-05-16T06:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.526400", + "Timestamp": "2024-05-16T06:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.054900", + "Timestamp": "2024-05-16T06:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.049900", + "Timestamp": "2024-05-16T06:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.924900", + "Timestamp": "2024-05-16T06:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.849900", + "Timestamp": "2024-05-16T06:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.844900", + "Timestamp": "2024-05-16T06:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.719900", + "Timestamp": "2024-05-16T06:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.766200", + "Timestamp": "2024-05-16T06:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.736200", + "Timestamp": "2024-05-16T06:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.636200", + "Timestamp": "2024-05-16T06:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.729600", + "Timestamp": "2024-05-16T06:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T06:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.522900", + "Timestamp": "2024-05-16T06:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.517900", + "Timestamp": "2024-05-16T06:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.392900", + "Timestamp": "2024-05-16T06:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.309300", + "Timestamp": "2024-05-16T06:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.304300", + "Timestamp": "2024-05-16T06:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.179300", + "Timestamp": "2024-05-16T06:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.480900", + "Timestamp": "2024-05-16T06:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.475900", + "Timestamp": "2024-05-16T06:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.350900", + "Timestamp": "2024-05-16T06:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.443100", + "Timestamp": "2024-05-16T06:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219800", + "Timestamp": "2024-05-16T06:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.152600", + "Timestamp": "2024-05-16T06:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.147600", + "Timestamp": "2024-05-16T06:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.022600", + "Timestamp": "2024-05-16T06:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.754200", + "Timestamp": "2024-05-16T06:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.530300", + "Timestamp": "2024-05-16T06:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.500300", + "Timestamp": "2024-05-16T06:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.400300", + "Timestamp": "2024-05-16T06:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.563400", + "Timestamp": "2024-05-16T06:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.558400", + "Timestamp": "2024-05-16T06:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.433400", + "Timestamp": "2024-05-16T06:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169700", + "Timestamp": "2024-05-16T06:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.201600", + "Timestamp": "2024-05-16T06:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166000", + "Timestamp": "2024-05-16T06:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.197900", + "Timestamp": "2024-05-16T06:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T06:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141600", + "Timestamp": "2024-05-16T06:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.954400", + "Timestamp": "2024-05-16T06:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.949400", + "Timestamp": "2024-05-16T06:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.824400", + "Timestamp": "2024-05-16T06:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.982900", + "Timestamp": "2024-05-16T06:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.977900", + "Timestamp": "2024-05-16T06:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.852900", + "Timestamp": "2024-05-16T06:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.545000", + "Timestamp": "2024-05-16T06:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.540000", + "Timestamp": "2024-05-16T06:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.415000", + "Timestamp": "2024-05-16T06:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.704200", + "Timestamp": "2024-05-16T06:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.699200", + "Timestamp": "2024-05-16T06:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.574200", + "Timestamp": "2024-05-16T06:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.775300", + "Timestamp": "2024-05-16T06:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.770300", + "Timestamp": "2024-05-16T06:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.645300", + "Timestamp": "2024-05-16T06:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165600", + "Timestamp": "2024-05-16T06:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161600", + "Timestamp": "2024-05-16T06:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T06:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128700", + "Timestamp": "2024-05-16T06:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125000", + "Timestamp": "2024-05-16T06:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068700", + "Timestamp": "2024-05-16T06:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.018100", + "Timestamp": "2024-05-16T06:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.988100", + "Timestamp": "2024-05-16T06:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.888100", + "Timestamp": "2024-05-16T06:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.289400", + "Timestamp": "2024-05-16T06:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.284400", + "Timestamp": "2024-05-16T06:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159400", + "Timestamp": "2024-05-16T06:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.538400", + "Timestamp": "2024-05-16T06:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.533400", + "Timestamp": "2024-05-16T06:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.408400", + "Timestamp": "2024-05-16T06:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.958400", + "Timestamp": "2024-05-16T06:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.953400", + "Timestamp": "2024-05-16T06:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.828400", + "Timestamp": "2024-05-16T06:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.405800", + "Timestamp": "2024-05-16T06:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.445400", + "Timestamp": "2024-05-16T06:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.172100", + "Timestamp": "2024-05-16T06:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.142100", + "Timestamp": "2024-05-16T06:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.042100", + "Timestamp": "2024-05-16T06:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.574200", + "Timestamp": "2024-05-16T06:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.569200", + "Timestamp": "2024-05-16T06:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.444200", + "Timestamp": "2024-05-16T06:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061000", + "Timestamp": "2024-05-16T06:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001000", + "Timestamp": "2024-05-16T06:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001000", + "Timestamp": "2024-05-16T06:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "13.990100", + "Timestamp": "2024-05-16T06:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.587400", + "Timestamp": "2024-05-16T06:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.737900", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.732900", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.607900", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.633000", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.190700", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.230700", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130700", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.793400", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.788400", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.663400", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.098700", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.068700", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.968700", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144500", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044500", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.914400", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.948400", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.943400", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.818400", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165900", + "Timestamp": "2024-05-16T06:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162200", + "Timestamp": "2024-05-16T06:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T06:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.656300", + "Timestamp": "2024-05-16T06:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.651300", + "Timestamp": "2024-05-16T06:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.526300", + "Timestamp": "2024-05-16T06:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.468600", + "Timestamp": "2024-05-16T06:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.463600", + "Timestamp": "2024-05-16T06:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.338600", + "Timestamp": "2024-05-16T06:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097700", + "Timestamp": "2024-05-16T06:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137700", + "Timestamp": "2024-05-16T06:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037700", + "Timestamp": "2024-05-16T06:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.592100", + "Timestamp": "2024-05-16T06:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172100", + "Timestamp": "2024-05-16T06:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168100", + "Timestamp": "2024-05-16T06:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T06:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.442500", + "Timestamp": "2024-05-16T06:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.437500", + "Timestamp": "2024-05-16T06:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.312500", + "Timestamp": "2024-05-16T06:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071700", + "Timestamp": "2024-05-16T06:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068000", + "Timestamp": "2024-05-16T06:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011700", + "Timestamp": "2024-05-16T06:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.977600", + "Timestamp": "2024-05-16T06:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.904100", + "Timestamp": "2024-05-16T06:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061500", + "Timestamp": "2024-05-16T06:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001500", + "Timestamp": "2024-05-16T06:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001500", + "Timestamp": "2024-05-16T06:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.352700", + "Timestamp": "2024-05-16T06:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.894500", + "Timestamp": "2024-05-16T06:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.347700", + "Timestamp": "2024-05-16T06:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.889500", + "Timestamp": "2024-05-16T06:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.222700", + "Timestamp": "2024-05-16T06:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.764500", + "Timestamp": "2024-05-16T06:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.869400", + "Timestamp": "2024-05-16T06:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.359200", + "Timestamp": "2024-05-16T06:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207700", + "Timestamp": "2024-05-16T06:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.738900", + "Timestamp": "2024-05-16T06:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.733900", + "Timestamp": "2024-05-16T06:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.608900", + "Timestamp": "2024-05-16T06:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.933300", + "Timestamp": "2024-05-16T06:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.928300", + "Timestamp": "2024-05-16T06:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.803300", + "Timestamp": "2024-05-16T06:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.686800", + "Timestamp": "2024-05-16T06:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170500", + "Timestamp": "2024-05-16T06:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166500", + "Timestamp": "2024-05-16T06:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T06:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171500", + "Timestamp": "2024-05-16T06:47:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.211500", + "Timestamp": "2024-05-16T06:47:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-16T06:47:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.818000", + "Timestamp": "2024-05-16T06:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.813000", + "Timestamp": "2024-05-16T06:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.688000", + "Timestamp": "2024-05-16T06:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.422700", + "Timestamp": "2024-05-16T06:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.417700", + "Timestamp": "2024-05-16T06:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.292700", + "Timestamp": "2024-05-16T06:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "h1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.747600", + "Timestamp": "2024-05-16T06:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.409900", + "Timestamp": "2024-05-16T06:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.827000", + "Timestamp": "2024-05-16T06:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.467700", + "Timestamp": "2024-05-16T06:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.462700", + "Timestamp": "2024-05-16T06:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.337700", + "Timestamp": "2024-05-16T06:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.697100", + "Timestamp": "2024-05-16T06:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.692100", + "Timestamp": "2024-05-16T06:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.567100", + "Timestamp": "2024-05-16T06:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.563900", + "Timestamp": "2024-05-16T06:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.558900", + "Timestamp": "2024-05-16T06:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.433900", + "Timestamp": "2024-05-16T06:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.606300", + "Timestamp": "2024-05-16T06:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.413100", + "Timestamp": "2024-05-16T06:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.408100", + "Timestamp": "2024-05-16T06:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.283100", + "Timestamp": "2024-05-16T06:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.820400", + "Timestamp": "2024-05-16T06:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.825500", + "Timestamp": "2024-05-16T06:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.359400", + "Timestamp": "2024-05-16T06:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.354400", + "Timestamp": "2024-05-16T06:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.229400", + "Timestamp": "2024-05-16T06:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.313600", + "Timestamp": "2024-05-16T06:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.308600", + "Timestamp": "2024-05-16T06:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.183600", + "Timestamp": "2024-05-16T06:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.494300", + "Timestamp": "2024-05-16T06:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.464300", + "Timestamp": "2024-05-16T06:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.364300", + "Timestamp": "2024-05-16T06:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.618800", + "Timestamp": "2024-05-16T06:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.645200", + "Timestamp": "2024-05-16T06:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.915200", + "Timestamp": "2024-05-16T06:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064100", + "Timestamp": "2024-05-16T06:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.035100", + "Timestamp": "2024-05-16T06:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004100", + "Timestamp": "2024-05-16T06:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.651300", + "Timestamp": "2024-05-16T06:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.621500", + "Timestamp": "2024-05-16T06:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.611500", + "Timestamp": "2024-05-16T06:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.191400", + "Timestamp": "2024-05-16T06:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.187400", + "Timestamp": "2024-05-16T06:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131400", + "Timestamp": "2024-05-16T06:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.286100", + "Timestamp": "2024-05-16T06:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281100", + "Timestamp": "2024-05-16T06:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156100", + "Timestamp": "2024-05-16T06:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-16T06:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092200", + "Timestamp": "2024-05-16T06:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035900", + "Timestamp": "2024-05-16T06:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.848800", + "Timestamp": "2024-05-16T06:47:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.775000", + "Timestamp": "2024-05-16T06:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p2.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.745000", + "Timestamp": "2024-05-16T06:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.645000", + "Timestamp": "2024-05-16T06:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.900300", + "Timestamp": "2024-05-16T06:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.959400", + "Timestamp": "2024-05-16T06:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.954400", + "Timestamp": "2024-05-16T06:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.829400", + "Timestamp": "2024-05-16T06:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.487500", + "Timestamp": "2024-05-16T06:46:57.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.482500", + "Timestamp": "2024-05-16T06:46:57.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.357500", + "Timestamp": "2024-05-16T06:46:57.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.811100", + "Timestamp": "2024-05-16T06:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.634800", + "Timestamp": "2024-05-16T06:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.629800", + "Timestamp": "2024-05-16T06:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.504800", + "Timestamp": "2024-05-16T06:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.243000", + "Timestamp": "2024-05-16T06:46:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.219900", + "Timestamp": "2024-05-16T06:46:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "a1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.214900", + "Timestamp": "2024-05-16T06:46:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089900", + "Timestamp": "2024-05-16T06:46:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.079800", + "Timestamp": "2024-05-16T06:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093600", + "Timestamp": "2024-05-16T06:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089900", + "Timestamp": "2024-05-16T06:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033600", + "Timestamp": "2024-05-16T06:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.264300", + "Timestamp": "2024-05-16T06:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.259300", + "Timestamp": "2024-05-16T06:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T06:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.608100", + "Timestamp": "2024-05-16T06:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.578100", + "Timestamp": "2024-05-16T06:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.478100", + "Timestamp": "2024-05-16T06:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.503400", + "Timestamp": "2024-05-16T06:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.498400", + "Timestamp": "2024-05-16T06:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.373400", + "Timestamp": "2024-05-16T06:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.449100", + "Timestamp": "2024-05-16T06:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.419100", + "Timestamp": "2024-05-16T06:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.319100", + "Timestamp": "2024-05-16T06:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.645900", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.640900", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.515900", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.142700", + "Timestamp": "2024-05-16T06:33:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110400", + "Timestamp": "2024-05-16T06:33:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.837600", + "Timestamp": "2024-05-16T06:33:01.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.832600", + "Timestamp": "2024-05-16T06:33:01.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.707600", + "Timestamp": "2024-05-16T06:33:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214600", + "Timestamp": "2024-05-16T06:32:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.810200", + "Timestamp": "2024-05-16T06:32:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072700", + "Timestamp": "2024-05-16T06:32:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043700", + "Timestamp": "2024-05-16T06:32:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012700", + "Timestamp": "2024-05-16T06:32:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.295200", + "Timestamp": "2024-05-16T06:32:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.290200", + "Timestamp": "2024-05-16T06:32:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.165200", + "Timestamp": "2024-05-16T06:32:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.109300", + "Timestamp": "2024-05-16T06:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.104300", + "Timestamp": "2024-05-16T06:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.979300", + "Timestamp": "2024-05-16T06:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.303700", + "Timestamp": "2024-05-16T06:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.285000", + "Timestamp": "2024-05-16T06:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.788400", + "Timestamp": "2024-05-16T06:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.280000", + "Timestamp": "2024-05-16T06:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.783400", + "Timestamp": "2024-05-16T06:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.155000", + "Timestamp": "2024-05-16T06:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.658400", + "Timestamp": "2024-05-16T06:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.638600", + "Timestamp": "2024-05-16T06:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.633600", + "Timestamp": "2024-05-16T06:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.508600", + "Timestamp": "2024-05-16T06:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.644400", + "Timestamp": "2024-05-16T06:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.639400", + "Timestamp": "2024-05-16T06:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.514400", + "Timestamp": "2024-05-16T06:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.402500", + "Timestamp": "2024-05-16T06:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.397500", + "Timestamp": "2024-05-16T06:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.272500", + "Timestamp": "2024-05-16T06:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.399900", + "Timestamp": "2024-05-16T06:32:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.394900", + "Timestamp": "2024-05-16T06:32:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.269900", + "Timestamp": "2024-05-16T06:32:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.735200", + "Timestamp": "2024-05-16T06:32:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.730200", + "Timestamp": "2024-05-16T06:32:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.605200", + "Timestamp": "2024-05-16T06:32:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.698200", + "Timestamp": "2024-05-16T06:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.693200", + "Timestamp": "2024-05-16T06:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.568200", + "Timestamp": "2024-05-16T06:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416700", + "Timestamp": "2024-05-16T06:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.860300", + "Timestamp": "2024-05-16T06:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.776300", + "Timestamp": "2024-05-16T06:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.480600", + "Timestamp": "2024-05-16T06:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.404600", + "Timestamp": "2024-05-16T06:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.374600", + "Timestamp": "2024-05-16T06:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.274600", + "Timestamp": "2024-05-16T06:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.449700", + "Timestamp": "2024-05-16T06:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129500", + "Timestamp": "2024-05-16T06:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125800", + "Timestamp": "2024-05-16T06:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069500", + "Timestamp": "2024-05-16T06:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.673500", + "Timestamp": "2024-05-16T06:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.773400", + "Timestamp": "2024-05-16T06:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.768400", + "Timestamp": "2024-05-16T06:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.643400", + "Timestamp": "2024-05-16T06:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.822300", + "Timestamp": "2024-05-16T06:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.436200", + "Timestamp": "2024-05-16T06:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.217900", + "Timestamp": "2024-05-16T06:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.214200", + "Timestamp": "2024-05-16T06:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157900", + "Timestamp": "2024-05-16T06:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.082600", + "Timestamp": "2024-05-16T06:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.077600", + "Timestamp": "2024-05-16T06:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.952600", + "Timestamp": "2024-05-16T06:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.632100", + "Timestamp": "2024-05-16T06:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.627100", + "Timestamp": "2024-05-16T06:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.502100", + "Timestamp": "2024-05-16T06:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.690900", + "Timestamp": "2024-05-16T06:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.685900", + "Timestamp": "2024-05-16T06:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.560900", + "Timestamp": "2024-05-16T06:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104700", + "Timestamp": "2024-05-16T06:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100700", + "Timestamp": "2024-05-16T06:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044700", + "Timestamp": "2024-05-16T06:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.109900", + "Timestamp": "2024-05-16T06:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.104900", + "Timestamp": "2024-05-16T06:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.979900", + "Timestamp": "2024-05-16T06:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.872100", + "Timestamp": "2024-05-16T06:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.315600", + "Timestamp": "2024-05-16T06:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.310600", + "Timestamp": "2024-05-16T06:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.185600", + "Timestamp": "2024-05-16T06:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171300", + "Timestamp": "2024-05-16T06:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166300", + "Timestamp": "2024-05-16T06:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041300", + "Timestamp": "2024-05-16T06:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143700", + "Timestamp": "2024-05-16T06:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140000", + "Timestamp": "2024-05-16T06:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083700", + "Timestamp": "2024-05-16T06:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.447400", + "Timestamp": "2024-05-16T06:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.442400", + "Timestamp": "2024-05-16T06:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.317400", + "Timestamp": "2024-05-16T06:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.744600", + "Timestamp": "2024-05-16T06:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.739600", + "Timestamp": "2024-05-16T06:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.614600", + "Timestamp": "2024-05-16T06:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.640200", + "Timestamp": "2024-05-16T06:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.635200", + "Timestamp": "2024-05-16T06:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.510200", + "Timestamp": "2024-05-16T06:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.279400", + "Timestamp": "2024-05-16T06:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.274400", + "Timestamp": "2024-05-16T06:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.149400", + "Timestamp": "2024-05-16T06:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208800", + "Timestamp": "2024-05-16T06:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.433100", + "Timestamp": "2024-05-16T06:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.516700", + "Timestamp": "2024-05-16T06:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102300", + "Timestamp": "2024-05-16T06:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.756200", + "Timestamp": "2024-05-16T06:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.906500", + "Timestamp": "2024-05-16T06:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.901500", + "Timestamp": "2024-05-16T06:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.776500", + "Timestamp": "2024-05-16T06:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.118800", + "Timestamp": "2024-05-16T06:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.094400", + "Timestamp": "2024-05-16T06:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.089400", + "Timestamp": "2024-05-16T06:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.964400", + "Timestamp": "2024-05-16T06:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.511700", + "Timestamp": "2024-05-16T06:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.506700", + "Timestamp": "2024-05-16T06:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.381700", + "Timestamp": "2024-05-16T06:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174000", + "Timestamp": "2024-05-16T06:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170300", + "Timestamp": "2024-05-16T06:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114000", + "Timestamp": "2024-05-16T06:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.044700", + "Timestamp": "2024-05-16T06:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.898800", + "Timestamp": "2024-05-16T06:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.893800", + "Timestamp": "2024-05-16T06:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.768800", + "Timestamp": "2024-05-16T06:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.393100", + "Timestamp": "2024-05-16T06:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.450900", + "Timestamp": "2024-05-16T06:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.420900", + "Timestamp": "2024-05-16T06:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.320900", + "Timestamp": "2024-05-16T06:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218500", + "Timestamp": "2024-05-16T06:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072500", + "Timestamp": "2024-05-16T06:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043500", + "Timestamp": "2024-05-16T06:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012500", + "Timestamp": "2024-05-16T06:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094000", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090300", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034000", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.875200", + "Timestamp": "2024-05-16T06:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.896800", + "Timestamp": "2024-05-16T06:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.627500", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.316700", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.286700", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186700", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.173300", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.168300", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.043300", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.671700", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.666700", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.541700", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.264700", + "Timestamp": "2024-05-16T06:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.864300", + "Timestamp": "2024-05-16T06:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121100", + "Timestamp": "2024-05-16T06:32:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.423300", + "Timestamp": "2024-05-16T06:32:17.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.350000", + "Timestamp": "2024-05-16T06:32:15.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.235700", + "Timestamp": "2024-05-16T06:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.230700", + "Timestamp": "2024-05-16T06:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.105700", + "Timestamp": "2024-05-16T06:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.413000", + "Timestamp": "2024-05-16T06:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.120500", + "Timestamp": "2024-05-16T06:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.115500", + "Timestamp": "2024-05-16T06:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.990500", + "Timestamp": "2024-05-16T06:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.825500", + "Timestamp": "2024-05-16T06:32:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.968500", + "Timestamp": "2024-05-16T06:32:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.963500", + "Timestamp": "2024-05-16T06:32:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.838500", + "Timestamp": "2024-05-16T06:32:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "32.573600", + "Timestamp": "2024-05-16T06:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "32.568600", + "Timestamp": "2024-05-16T06:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "32.443600", + "Timestamp": "2024-05-16T06:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.401600", + "Timestamp": "2024-05-16T06:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.396600", + "Timestamp": "2024-05-16T06:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.271600", + "Timestamp": "2024-05-16T06:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138100", + "Timestamp": "2024-05-16T06:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134400", + "Timestamp": "2024-05-16T06:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078100", + "Timestamp": "2024-05-16T06:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.721300", + "Timestamp": "2024-05-16T06:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.716300", + "Timestamp": "2024-05-16T06:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.591300", + "Timestamp": "2024-05-16T06:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.601200", + "Timestamp": "2024-05-16T06:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.596200", + "Timestamp": "2024-05-16T06:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.471200", + "Timestamp": "2024-05-16T06:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.881400", + "Timestamp": "2024-05-16T06:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.469100", + "Timestamp": "2024-05-16T06:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.074300", + "Timestamp": "2024-05-16T06:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.069300", + "Timestamp": "2024-05-16T06:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.944300", + "Timestamp": "2024-05-16T06:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101900", + "Timestamp": "2024-05-16T06:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097900", + "Timestamp": "2024-05-16T06:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041900", + "Timestamp": "2024-05-16T06:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.070800", + "Timestamp": "2024-05-16T06:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.065800", + "Timestamp": "2024-05-16T06:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.940800", + "Timestamp": "2024-05-16T06:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.853900", + "Timestamp": "2024-05-16T06:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.848900", + "Timestamp": "2024-05-16T06:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.723900", + "Timestamp": "2024-05-16T06:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.398600", + "Timestamp": "2024-05-16T06:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.393600", + "Timestamp": "2024-05-16T06:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.268600", + "Timestamp": "2024-05-16T06:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.708200", + "Timestamp": "2024-05-16T06:31:59.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.703200", + "Timestamp": "2024-05-16T06:31:59.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.578200", + "Timestamp": "2024-05-16T06:31:59.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.256200", + "Timestamp": "2024-05-16T06:31:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296200", + "Timestamp": "2024-05-16T06:31:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196200", + "Timestamp": "2024-05-16T06:31:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.812400", + "Timestamp": "2024-05-16T06:31:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129000", + "Timestamp": "2024-05-16T06:31:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125300", + "Timestamp": "2024-05-16T06:31:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069000", + "Timestamp": "2024-05-16T06:31:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.559400", + "Timestamp": "2024-05-16T06:31:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.554400", + "Timestamp": "2024-05-16T06:31:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.429400", + "Timestamp": "2024-05-16T06:31:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.824300", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.819300", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.694300", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045200", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130500", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126800", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070500", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.756600", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.320000", + "Timestamp": "2024-05-16T06:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.290000", + "Timestamp": "2024-05-16T06:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.190000", + "Timestamp": "2024-05-16T06:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T06:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-16T06:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042500", + "Timestamp": "2024-05-16T06:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.483800", + "Timestamp": "2024-05-16T06:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.478800", + "Timestamp": "2024-05-16T06:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.353800", + "Timestamp": "2024-05-16T06:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.843600", + "Timestamp": "2024-05-16T06:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.835400", + "Timestamp": "2024-05-16T06:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.829100", + "Timestamp": "2024-05-16T06:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116500", + "Timestamp": "2024-05-16T06:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T06:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056500", + "Timestamp": "2024-05-16T06:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299000", + "Timestamp": "2024-05-16T06:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294000", + "Timestamp": "2024-05-16T06:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169000", + "Timestamp": "2024-05-16T06:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.210800", + "Timestamp": "2024-05-16T06:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.205800", + "Timestamp": "2024-05-16T06:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.080800", + "Timestamp": "2024-05-16T06:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.933500", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.928500", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.803500", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.290700", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.260700", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.160700", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.563000", + "Timestamp": "2024-05-16T06:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.558000", + "Timestamp": "2024-05-16T06:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.433000", + "Timestamp": "2024-05-16T06:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.369700", + "Timestamp": "2024-05-16T06:17:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.488600", + "Timestamp": "2024-05-16T06:17:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.483600", + "Timestamp": "2024-05-16T06:17:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.358600", + "Timestamp": "2024-05-16T06:17:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T06:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.008100", + "Timestamp": "2024-05-16T06:17:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.032100", + "Timestamp": "2024-05-16T06:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.027100", + "Timestamp": "2024-05-16T06:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.902100", + "Timestamp": "2024-05-16T06:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.434800", + "Timestamp": "2024-05-16T06:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.646600", + "Timestamp": "2024-05-16T06:17:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.616600", + "Timestamp": "2024-05-16T06:17:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.516600", + "Timestamp": "2024-05-16T06:17:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.507000", + "Timestamp": "2024-05-16T06:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.458700", + "Timestamp": "2024-05-16T06:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.046800", + "Timestamp": "2024-05-16T06:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.041800", + "Timestamp": "2024-05-16T06:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.916800", + "Timestamp": "2024-05-16T06:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.797800", + "Timestamp": "2024-05-16T06:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.741600", + "Timestamp": "2024-05-16T06:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.792800", + "Timestamp": "2024-05-16T06:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.736600", + "Timestamp": "2024-05-16T06:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.667800", + "Timestamp": "2024-05-16T06:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.611600", + "Timestamp": "2024-05-16T06:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.417000", + "Timestamp": "2024-05-16T06:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.412000", + "Timestamp": "2024-05-16T06:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.287000", + "Timestamp": "2024-05-16T06:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073800", + "Timestamp": "2024-05-16T06:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044800", + "Timestamp": "2024-05-16T06:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013800", + "Timestamp": "2024-05-16T06:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.502300", + "Timestamp": "2024-05-16T06:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.913600", + "Timestamp": "2024-05-16T06:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.908600", + "Timestamp": "2024-05-16T06:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.783600", + "Timestamp": "2024-05-16T06:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.175500", + "Timestamp": "2024-05-16T06:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.170500", + "Timestamp": "2024-05-16T06:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.045500", + "Timestamp": "2024-05-16T06:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.555400", + "Timestamp": "2024-05-16T06:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.550400", + "Timestamp": "2024-05-16T06:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.425400", + "Timestamp": "2024-05-16T06:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109200", + "Timestamp": "2024-05-16T06:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T06:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049200", + "Timestamp": "2024-05-16T06:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.236300", + "Timestamp": "2024-05-16T06:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.863500", + "Timestamp": "2024-05-16T06:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.858500", + "Timestamp": "2024-05-16T06:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.733500", + "Timestamp": "2024-05-16T06:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.419900", + "Timestamp": "2024-05-16T06:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.418900", + "Timestamp": "2024-05-16T06:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.415100", + "Timestamp": "2024-05-16T06:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.764800", + "Timestamp": "2024-05-16T06:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.204000", + "Timestamp": "2024-05-16T06:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.755300", + "Timestamp": "2024-05-16T06:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.750300", + "Timestamp": "2024-05-16T06:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.625300", + "Timestamp": "2024-05-16T06:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.348200", + "Timestamp": "2024-05-16T06:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343200", + "Timestamp": "2024-05-16T06:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.218200", + "Timestamp": "2024-05-16T06:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.705200", + "Timestamp": "2024-05-16T06:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.700200", + "Timestamp": "2024-05-16T06:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.575200", + "Timestamp": "2024-05-16T06:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.241300", + "Timestamp": "2024-05-16T06:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.481700", + "Timestamp": "2024-05-16T06:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.461400", + "Timestamp": "2024-05-16T06:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.431400", + "Timestamp": "2024-05-16T06:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.331400", + "Timestamp": "2024-05-16T06:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.259500", + "Timestamp": "2024-05-16T06:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.254500", + "Timestamp": "2024-05-16T06:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.129500", + "Timestamp": "2024-05-16T06:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.700700", + "Timestamp": "2024-05-16T06:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.695700", + "Timestamp": "2024-05-16T06:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.570700", + "Timestamp": "2024-05-16T06:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.929700", + "Timestamp": "2024-05-16T06:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.899700", + "Timestamp": "2024-05-16T06:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.799700", + "Timestamp": "2024-05-16T06:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129100", + "Timestamp": "2024-05-16T06:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T06:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069100", + "Timestamp": "2024-05-16T06:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.554400", + "Timestamp": "2024-05-16T06:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.549400", + "Timestamp": "2024-05-16T06:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.424400", + "Timestamp": "2024-05-16T06:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.793400", + "Timestamp": "2024-05-16T06:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.788400", + "Timestamp": "2024-05-16T06:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.663400", + "Timestamp": "2024-05-16T06:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.899100", + "Timestamp": "2024-05-16T06:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.985900", + "Timestamp": "2024-05-16T06:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.894100", + "Timestamp": "2024-05-16T06:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.980900", + "Timestamp": "2024-05-16T06:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.769100", + "Timestamp": "2024-05-16T06:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.855900", + "Timestamp": "2024-05-16T06:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.689700", + "Timestamp": "2024-05-16T06:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.939900", + "Timestamp": "2024-05-16T06:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.934900", + "Timestamp": "2024-05-16T06:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.809900", + "Timestamp": "2024-05-16T06:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.731200", + "Timestamp": "2024-05-16T06:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.726200", + "Timestamp": "2024-05-16T06:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.601200", + "Timestamp": "2024-05-16T06:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.446900", + "Timestamp": "2024-05-16T06:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.441900", + "Timestamp": "2024-05-16T06:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.316900", + "Timestamp": "2024-05-16T06:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.613400", + "Timestamp": "2024-05-16T06:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.979600", + "Timestamp": "2024-05-16T06:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.974600", + "Timestamp": "2024-05-16T06:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.849600", + "Timestamp": "2024-05-16T06:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.592100", + "Timestamp": "2024-05-16T06:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.587100", + "Timestamp": "2024-05-16T06:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.462100", + "Timestamp": "2024-05-16T06:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.692800", + "Timestamp": "2024-05-16T06:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.156000", + "Timestamp": "2024-05-16T06:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.151000", + "Timestamp": "2024-05-16T06:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.026000", + "Timestamp": "2024-05-16T06:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122300", + "Timestamp": "2024-05-16T06:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113300", + "Timestamp": "2024-05-16T06:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118300", + "Timestamp": "2024-05-16T06:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-16T06:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062300", + "Timestamp": "2024-05-16T06:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053300", + "Timestamp": "2024-05-16T06:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.567800", + "Timestamp": "2024-05-16T06:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.119500", + "Timestamp": "2024-05-16T06:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.490200", + "Timestamp": "2024-05-16T06:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.999700", + "Timestamp": "2024-05-16T06:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.722300", + "Timestamp": "2024-05-16T06:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.717300", + "Timestamp": "2024-05-16T06:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.592300", + "Timestamp": "2024-05-16T06:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.624100", + "Timestamp": "2024-05-16T06:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.619100", + "Timestamp": "2024-05-16T06:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.494100", + "Timestamp": "2024-05-16T06:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.185500", + "Timestamp": "2024-05-16T06:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.180500", + "Timestamp": "2024-05-16T06:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.055500", + "Timestamp": "2024-05-16T06:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.071700", + "Timestamp": "2024-05-16T06:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.066700", + "Timestamp": "2024-05-16T06:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.941700", + "Timestamp": "2024-05-16T06:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.256100", + "Timestamp": "2024-05-16T06:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.251100", + "Timestamp": "2024-05-16T06:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.126100", + "Timestamp": "2024-05-16T06:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070800", + "Timestamp": "2024-05-16T06:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041800", + "Timestamp": "2024-05-16T06:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010800", + "Timestamp": "2024-05-16T06:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.771100", + "Timestamp": "2024-05-16T06:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "h1.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.436000", + "Timestamp": "2024-05-16T06:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.494400", + "Timestamp": "2024-05-16T06:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.627100", + "Timestamp": "2024-05-16T06:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.597100", + "Timestamp": "2024-05-16T06:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.497100", + "Timestamp": "2024-05-16T06:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121700", + "Timestamp": "2024-05-16T06:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117700", + "Timestamp": "2024-05-16T06:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061700", + "Timestamp": "2024-05-16T06:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.257800", + "Timestamp": "2024-05-16T06:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.252800", + "Timestamp": "2024-05-16T06:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.127800", + "Timestamp": "2024-05-16T06:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096800", + "Timestamp": "2024-05-16T06:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093100", + "Timestamp": "2024-05-16T06:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036800", + "Timestamp": "2024-05-16T06:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.350700", + "Timestamp": "2024-05-16T06:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.345700", + "Timestamp": "2024-05-16T06:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.220700", + "Timestamp": "2024-05-16T06:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.280300", + "Timestamp": "2024-05-16T06:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.275300", + "Timestamp": "2024-05-16T06:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.150300", + "Timestamp": "2024-05-16T06:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.286400", + "Timestamp": "2024-05-16T06:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281400", + "Timestamp": "2024-05-16T06:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156400", + "Timestamp": "2024-05-16T06:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.040900", + "Timestamp": "2024-05-16T06:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.778000", + "Timestamp": "2024-05-16T06:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.773000", + "Timestamp": "2024-05-16T06:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.648000", + "Timestamp": "2024-05-16T06:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.488000", + "Timestamp": "2024-05-16T06:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.483000", + "Timestamp": "2024-05-16T06:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.358000", + "Timestamp": "2024-05-16T06:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.194400", + "Timestamp": "2024-05-16T06:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.811400", + "Timestamp": "2024-05-16T06:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.806400", + "Timestamp": "2024-05-16T06:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.681400", + "Timestamp": "2024-05-16T06:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.412900", + "Timestamp": "2024-05-16T06:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133800", + "Timestamp": "2024-05-16T06:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129800", + "Timestamp": "2024-05-16T06:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073800", + "Timestamp": "2024-05-16T06:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217900", + "Timestamp": "2024-05-16T06:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.246700", + "Timestamp": "2024-05-16T06:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.243000", + "Timestamp": "2024-05-16T06:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186700", + "Timestamp": "2024-05-16T06:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.135900", + "Timestamp": "2024-05-16T06:17:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.531100", + "Timestamp": "2024-05-16T06:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.526100", + "Timestamp": "2024-05-16T06:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.401100", + "Timestamp": "2024-05-16T06:17:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.325500", + "Timestamp": "2024-05-16T06:17:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.295500", + "Timestamp": "2024-05-16T06:17:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195500", + "Timestamp": "2024-05-16T06:17:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.776600", + "Timestamp": "2024-05-16T06:17:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.771600", + "Timestamp": "2024-05-16T06:17:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.646600", + "Timestamp": "2024-05-16T06:17:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.888300", + "Timestamp": "2024-05-16T06:17:15.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.275800", + "Timestamp": "2024-05-16T06:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.245800", + "Timestamp": "2024-05-16T06:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145800", + "Timestamp": "2024-05-16T06:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.474100", + "Timestamp": "2024-05-16T06:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.469100", + "Timestamp": "2024-05-16T06:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.344100", + "Timestamp": "2024-05-16T06:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.450800", + "Timestamp": "2024-05-16T06:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.445800", + "Timestamp": "2024-05-16T06:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.320800", + "Timestamp": "2024-05-16T06:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.750600", + "Timestamp": "2024-05-16T06:17:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T06:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-16T06:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045400", + "Timestamp": "2024-05-16T06:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.708100", + "Timestamp": "2024-05-16T06:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159900", + "Timestamp": "2024-05-16T06:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155900", + "Timestamp": "2024-05-16T06:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099900", + "Timestamp": "2024-05-16T06:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.839100", + "Timestamp": "2024-05-16T06:17:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.834100", + "Timestamp": "2024-05-16T06:17:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.709100", + "Timestamp": "2024-05-16T06:17:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.388100", + "Timestamp": "2024-05-16T06:17:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.383100", + "Timestamp": "2024-05-16T06:17:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.258100", + "Timestamp": "2024-05-16T06:17:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.274200", + "Timestamp": "2024-05-16T06:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269200", + "Timestamp": "2024-05-16T06:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144200", + "Timestamp": "2024-05-16T06:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082600", + "Timestamp": "2024-05-16T06:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078900", + "Timestamp": "2024-05-16T06:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022600", + "Timestamp": "2024-05-16T06:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.244300", + "Timestamp": "2024-05-16T06:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.239300", + "Timestamp": "2024-05-16T06:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114300", + "Timestamp": "2024-05-16T06:17:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.703200", + "Timestamp": "2024-05-16T06:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.778900", + "Timestamp": "2024-05-16T06:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.631500", + "Timestamp": "2024-05-16T06:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.626500", + "Timestamp": "2024-05-16T06:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.501500", + "Timestamp": "2024-05-16T06:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.642300", + "Timestamp": "2024-05-16T06:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.970700", + "Timestamp": "2024-05-16T06:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.965700", + "Timestamp": "2024-05-16T06:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.840700", + "Timestamp": "2024-05-16T06:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.886800", + "Timestamp": "2024-05-16T06:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.881800", + "Timestamp": "2024-05-16T06:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.756800", + "Timestamp": "2024-05-16T06:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090800", + "Timestamp": "2024-05-16T06:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087100", + "Timestamp": "2024-05-16T06:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030800", + "Timestamp": "2024-05-16T06:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.212600", + "Timestamp": "2024-05-16T06:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.252600", + "Timestamp": "2024-05-16T06:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.152600", + "Timestamp": "2024-05-16T06:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.348200", + "Timestamp": "2024-05-16T06:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343200", + "Timestamp": "2024-05-16T06:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.218200", + "Timestamp": "2024-05-16T06:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.329100", + "Timestamp": "2024-05-16T06:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.324100", + "Timestamp": "2024-05-16T06:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.199100", + "Timestamp": "2024-05-16T06:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.099800", + "Timestamp": "2024-05-16T06:17:00.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.069800", + "Timestamp": "2024-05-16T06:17:00.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.969800", + "Timestamp": "2024-05-16T06:17:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.515500", + "Timestamp": "2024-05-16T06:16:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.667100", + "Timestamp": "2024-05-16T06:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098300", + "Timestamp": "2024-05-16T06:16:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094300", + "Timestamp": "2024-05-16T06:16:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038300", + "Timestamp": "2024-05-16T06:16:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.530600", + "Timestamp": "2024-05-16T06:16:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.525600", + "Timestamp": "2024-05-16T06:16:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.400600", + "Timestamp": "2024-05-16T06:16:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.695100", + "Timestamp": "2024-05-16T06:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157100", + "Timestamp": "2024-05-16T06:16:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153400", + "Timestamp": "2024-05-16T06:16:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T06:16:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.982400", + "Timestamp": "2024-05-16T06:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.977400", + "Timestamp": "2024-05-16T06:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.852400", + "Timestamp": "2024-05-16T06:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095400", + "Timestamp": "2024-05-16T06:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135400", + "Timestamp": "2024-05-16T06:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035400", + "Timestamp": "2024-05-16T06:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.602200", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.572200", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.472200", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.265400", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126400", + "Timestamp": "2024-05-16T06:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122400", + "Timestamp": "2024-05-16T06:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066400", + "Timestamp": "2024-05-16T06:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136000", + "Timestamp": "2024-05-16T06:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.176000", + "Timestamp": "2024-05-16T06:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076000", + "Timestamp": "2024-05-16T06:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.412400", + "Timestamp": "2024-05-16T06:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.407400", + "Timestamp": "2024-05-16T06:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.282400", + "Timestamp": "2024-05-16T06:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215200", + "Timestamp": "2024-05-16T06:14:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215200", + "Timestamp": "2024-05-16T06:14:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.005800", + "Timestamp": "2024-05-16T06:12:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.005900", + "Timestamp": "2024-05-16T06:12:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.005800", + "Timestamp": "2024-05-16T06:12:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062800", + "Timestamp": "2024-05-16T06:12:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063100", + "Timestamp": "2024-05-16T06:12:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062300", + "Timestamp": "2024-05-16T06:12:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002800", + "Timestamp": "2024-05-16T06:12:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003100", + "Timestamp": "2024-05-16T06:12:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002300", + "Timestamp": "2024-05-16T06:12:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002800", + "Timestamp": "2024-05-16T06:12:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003100", + "Timestamp": "2024-05-16T06:12:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002300", + "Timestamp": "2024-05-16T06:12:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T06:03:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.991300", + "Timestamp": "2024-05-16T06:03:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.986300", + "Timestamp": "2024-05-16T06:03:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.861300", + "Timestamp": "2024-05-16T06:03:00.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.123700", + "Timestamp": "2024-05-16T06:02:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218500", + "Timestamp": "2024-05-16T06:02:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.634300", + "Timestamp": "2024-05-16T06:02:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.835300", + "Timestamp": "2024-05-16T06:02:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216800", + "Timestamp": "2024-05-16T06:02:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.970500", + "Timestamp": "2024-05-16T06:02:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.894400", + "Timestamp": "2024-05-16T06:02:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.889400", + "Timestamp": "2024-05-16T06:02:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.764400", + "Timestamp": "2024-05-16T06:02:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.936600", + "Timestamp": "2024-05-16T06:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.931600", + "Timestamp": "2024-05-16T06:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.806600", + "Timestamp": "2024-05-16T06:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.664500", + "Timestamp": "2024-05-16T06:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.634500", + "Timestamp": "2024-05-16T06:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.534500", + "Timestamp": "2024-05-16T06:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.272300", + "Timestamp": "2024-05-16T06:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267300", + "Timestamp": "2024-05-16T06:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142300", + "Timestamp": "2024-05-16T06:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.177200", + "Timestamp": "2024-05-16T06:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173200", + "Timestamp": "2024-05-16T06:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.117200", + "Timestamp": "2024-05-16T06:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.904200", + "Timestamp": "2024-05-16T06:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.137600", + "Timestamp": "2024-05-16T06:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.817200", + "Timestamp": "2024-05-16T06:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.974900", + "Timestamp": "2024-05-16T06:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.969900", + "Timestamp": "2024-05-16T06:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.844900", + "Timestamp": "2024-05-16T06:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.356700", + "Timestamp": "2024-05-16T06:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.351700", + "Timestamp": "2024-05-16T06:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.226700", + "Timestamp": "2024-05-16T06:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.717300", + "Timestamp": "2024-05-16T06:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.712300", + "Timestamp": "2024-05-16T06:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.587300", + "Timestamp": "2024-05-16T06:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.811700", + "Timestamp": "2024-05-16T06:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.977300", + "Timestamp": "2024-05-16T06:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.856400", + "Timestamp": "2024-05-16T06:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.851400", + "Timestamp": "2024-05-16T06:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.726400", + "Timestamp": "2024-05-16T06:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.031000", + "Timestamp": "2024-05-16T06:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.026000", + "Timestamp": "2024-05-16T06:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.901000", + "Timestamp": "2024-05-16T06:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.025300", + "Timestamp": "2024-05-16T06:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.020300", + "Timestamp": "2024-05-16T06:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.895300", + "Timestamp": "2024-05-16T06:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212100", + "Timestamp": "2024-05-16T06:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.246200", + "Timestamp": "2024-05-16T06:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120300", + "Timestamp": "2024-05-16T06:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "4.974900", + "Timestamp": "2024-05-16T06:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.941700", + "Timestamp": "2024-05-16T06:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.372000", + "Timestamp": "2024-05-16T06:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.372000", + "Timestamp": "2024-05-16T06:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.324500", + "Timestamp": "2024-05-16T06:02:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.319500", + "Timestamp": "2024-05-16T06:02:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.194500", + "Timestamp": "2024-05-16T06:02:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.585700", + "Timestamp": "2024-05-16T06:02:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.344800", + "Timestamp": "2024-05-16T06:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.339800", + "Timestamp": "2024-05-16T06:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.214800", + "Timestamp": "2024-05-16T06:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.518800", + "Timestamp": "2024-05-16T06:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.513800", + "Timestamp": "2024-05-16T06:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.388800", + "Timestamp": "2024-05-16T06:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.528800", + "Timestamp": "2024-05-16T06:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.523800", + "Timestamp": "2024-05-16T06:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.398800", + "Timestamp": "2024-05-16T06:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.871900", + "Timestamp": "2024-05-16T06:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.723700", + "Timestamp": "2024-05-16T06:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.239200", + "Timestamp": "2024-05-16T06:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.234200", + "Timestamp": "2024-05-16T06:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.109200", + "Timestamp": "2024-05-16T06:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.800300", + "Timestamp": "2024-05-16T06:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.795300", + "Timestamp": "2024-05-16T06:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.670300", + "Timestamp": "2024-05-16T06:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.398500", + "Timestamp": "2024-05-16T06:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.087000", + "Timestamp": "2024-05-16T06:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.082000", + "Timestamp": "2024-05-16T06:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.957000", + "Timestamp": "2024-05-16T06:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.931100", + "Timestamp": "2024-05-16T06:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.626600", + "Timestamp": "2024-05-16T06:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.289000", + "Timestamp": "2024-05-16T06:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.284000", + "Timestamp": "2024-05-16T06:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.159000", + "Timestamp": "2024-05-16T06:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.123800", + "Timestamp": "2024-05-16T06:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.118800", + "Timestamp": "2024-05-16T06:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.993800", + "Timestamp": "2024-05-16T06:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.102300", + "Timestamp": "2024-05-16T06:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.962300", + "Timestamp": "2024-05-16T06:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.957300", + "Timestamp": "2024-05-16T06:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.832300", + "Timestamp": "2024-05-16T06:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144400", + "Timestamp": "2024-05-16T06:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140700", + "Timestamp": "2024-05-16T06:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084400", + "Timestamp": "2024-05-16T06:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.522400", + "Timestamp": "2024-05-16T06:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.517400", + "Timestamp": "2024-05-16T06:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.392400", + "Timestamp": "2024-05-16T06:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.260100", + "Timestamp": "2024-05-16T06:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.255100", + "Timestamp": "2024-05-16T06:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130100", + "Timestamp": "2024-05-16T06:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.475900", + "Timestamp": "2024-05-16T06:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.457900", + "Timestamp": "2024-05-16T06:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.452900", + "Timestamp": "2024-05-16T06:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.327900", + "Timestamp": "2024-05-16T06:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.296500", + "Timestamp": "2024-05-16T06:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.291500", + "Timestamp": "2024-05-16T06:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.166500", + "Timestamp": "2024-05-16T06:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.368700", + "Timestamp": "2024-05-16T06:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.363700", + "Timestamp": "2024-05-16T06:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.238700", + "Timestamp": "2024-05-16T06:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.555600", + "Timestamp": "2024-05-16T06:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.555600", + "Timestamp": "2024-05-16T06:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.657600", + "Timestamp": "2024-05-16T06:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.257700", + "Timestamp": "2024-05-16T06:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.252700", + "Timestamp": "2024-05-16T06:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127700", + "Timestamp": "2024-05-16T06:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.276700", + "Timestamp": "2024-05-16T06:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.271700", + "Timestamp": "2024-05-16T06:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.146700", + "Timestamp": "2024-05-16T06:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273600", + "Timestamp": "2024-05-16T06:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268600", + "Timestamp": "2024-05-16T06:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143600", + "Timestamp": "2024-05-16T06:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.242600", + "Timestamp": "2024-05-16T06:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.238900", + "Timestamp": "2024-05-16T06:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.182600", + "Timestamp": "2024-05-16T06:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213600", + "Timestamp": "2024-05-16T06:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "f1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.150700", + "Timestamp": "2024-05-16T06:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "f1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.120700", + "Timestamp": "2024-05-16T06:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "f1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.020700", + "Timestamp": "2024-05-16T06:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.887200", + "Timestamp": "2024-05-16T06:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.882200", + "Timestamp": "2024-05-16T06:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.757200", + "Timestamp": "2024-05-16T06:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.373900", + "Timestamp": "2024-05-16T06:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.368900", + "Timestamp": "2024-05-16T06:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.243900", + "Timestamp": "2024-05-16T06:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.334200", + "Timestamp": "2024-05-16T06:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.564000", + "Timestamp": "2024-05-16T06:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.559000", + "Timestamp": "2024-05-16T06:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.434000", + "Timestamp": "2024-05-16T06:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.282500", + "Timestamp": "2024-05-16T06:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.277500", + "Timestamp": "2024-05-16T06:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.152500", + "Timestamp": "2024-05-16T06:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307800", + "Timestamp": "2024-05-16T06:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302800", + "Timestamp": "2024-05-16T06:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177800", + "Timestamp": "2024-05-16T06:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.613700", + "Timestamp": "2024-05-16T06:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.608700", + "Timestamp": "2024-05-16T06:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.483700", + "Timestamp": "2024-05-16T06:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.607300", + "Timestamp": "2024-05-16T06:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.602300", + "Timestamp": "2024-05-16T06:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.477300", + "Timestamp": "2024-05-16T06:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.918200", + "Timestamp": "2024-05-16T06:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.103900", + "Timestamp": "2024-05-16T06:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.913200", + "Timestamp": "2024-05-16T06:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.098900", + "Timestamp": "2024-05-16T06:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.788200", + "Timestamp": "2024-05-16T06:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.973900", + "Timestamp": "2024-05-16T06:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297800", + "Timestamp": "2024-05-16T06:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.292800", + "Timestamp": "2024-05-16T06:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167800", + "Timestamp": "2024-05-16T06:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.638700", + "Timestamp": "2024-05-16T06:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.247500", + "Timestamp": "2024-05-16T06:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.242500", + "Timestamp": "2024-05-16T06:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.117500", + "Timestamp": "2024-05-16T06:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.568800", + "Timestamp": "2024-05-16T06:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.563800", + "Timestamp": "2024-05-16T06:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.438800", + "Timestamp": "2024-05-16T06:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.817400", + "Timestamp": "2024-05-16T06:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.649300", + "Timestamp": "2024-05-16T06:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.504900", + "Timestamp": "2024-05-16T06:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.499900", + "Timestamp": "2024-05-16T06:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.374900", + "Timestamp": "2024-05-16T06:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.797600", + "Timestamp": "2024-05-16T06:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.792600", + "Timestamp": "2024-05-16T06:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.667600", + "Timestamp": "2024-05-16T06:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.565300", + "Timestamp": "2024-05-16T06:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.441200", + "Timestamp": "2024-05-16T06:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.436200", + "Timestamp": "2024-05-16T06:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.311200", + "Timestamp": "2024-05-16T06:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-16T06:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092800", + "Timestamp": "2024-05-16T06:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036500", + "Timestamp": "2024-05-16T06:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.726600", + "Timestamp": "2024-05-16T06:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.860300", + "Timestamp": "2024-05-16T06:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.205100", + "Timestamp": "2024-05-16T06:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.175100", + "Timestamp": "2024-05-16T06:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.075100", + "Timestamp": "2024-05-16T06:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099000", + "Timestamp": "2024-05-16T06:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095300", + "Timestamp": "2024-05-16T06:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039000", + "Timestamp": "2024-05-16T06:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.589000", + "Timestamp": "2024-05-16T06:01:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.634100", + "Timestamp": "2024-05-16T06:01:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.629100", + "Timestamp": "2024-05-16T06:01:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.504100", + "Timestamp": "2024-05-16T06:01:57.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.854400", + "Timestamp": "2024-05-16T06:01:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.033200", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.028200", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.903200", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.270900", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.240900", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.140900", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.192200", + "Timestamp": "2024-05-16T06:01:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089900", + "Timestamp": "2024-05-16T06:01:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086200", + "Timestamp": "2024-05-16T06:01:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029900", + "Timestamp": "2024-05-16T06:01:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.285100", + "Timestamp": "2024-05-16T06:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.718400", + "Timestamp": "2024-05-16T06:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.713400", + "Timestamp": "2024-05-16T06:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.588400", + "Timestamp": "2024-05-16T06:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.553700", + "Timestamp": "2024-05-16T06:01:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.287100", + "Timestamp": "2024-05-16T06:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.282100", + "Timestamp": "2024-05-16T06:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.157100", + "Timestamp": "2024-05-16T06:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T06:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T06:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049700", + "Timestamp": "2024-05-16T06:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081000", + "Timestamp": "2024-05-16T06:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121000", + "Timestamp": "2024-05-16T06:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021000", + "Timestamp": "2024-05-16T06:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.014800", + "Timestamp": "2024-05-16T06:01:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.241300", + "Timestamp": "2024-05-16T06:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.236300", + "Timestamp": "2024-05-16T06:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111300", + "Timestamp": "2024-05-16T06:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.390800", + "Timestamp": "2024-05-16T06:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.385800", + "Timestamp": "2024-05-16T06:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.260800", + "Timestamp": "2024-05-16T06:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129200", + "Timestamp": "2024-05-16T06:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125500", + "Timestamp": "2024-05-16T06:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069200", + "Timestamp": "2024-05-16T06:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131600", + "Timestamp": "2024-05-16T06:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127900", + "Timestamp": "2024-05-16T06:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071600", + "Timestamp": "2024-05-16T06:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084100", + "Timestamp": "2024-05-16T06:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080400", + "Timestamp": "2024-05-16T06:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024100", + "Timestamp": "2024-05-16T06:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m1.small", + "ProductDescription": "Windows", + "SpotPrice": "0.035400", + "Timestamp": "2024-05-16T05:59:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m1.small", + "ProductDescription": "Windows", + "SpotPrice": "0.035400", + "Timestamp": "2024-05-16T05:59:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.267400", + "Timestamp": "2024-05-16T05:53:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.267400", + "Timestamp": "2024-05-16T05:53:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.267400", + "Timestamp": "2024-05-16T05:53:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.218000", + "Timestamp": "2024-05-16T05:48:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.434500", + "Timestamp": "2024-05-16T05:48:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.429500", + "Timestamp": "2024-05-16T05:48:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.304500", + "Timestamp": "2024-05-16T05:48:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.466700", + "Timestamp": "2024-05-16T05:48:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.866600", + "Timestamp": "2024-05-16T05:48:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.861600", + "Timestamp": "2024-05-16T05:48:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.736600", + "Timestamp": "2024-05-16T05:48:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.327800", + "Timestamp": "2024-05-16T05:48:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.847200", + "Timestamp": "2024-05-16T05:48:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.842200", + "Timestamp": "2024-05-16T05:48:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.717200", + "Timestamp": "2024-05-16T05:48:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.553100", + "Timestamp": "2024-05-16T05:48:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.548100", + "Timestamp": "2024-05-16T05:48:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.423100", + "Timestamp": "2024-05-16T05:48:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.077100", + "Timestamp": "2024-05-16T05:48:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.981000", + "Timestamp": "2024-05-16T05:48:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.976000", + "Timestamp": "2024-05-16T05:48:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.851000", + "Timestamp": "2024-05-16T05:48:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223200", + "Timestamp": "2024-05-16T05:48:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.284800", + "Timestamp": "2024-05-16T05:48:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072400", + "Timestamp": "2024-05-16T05:48:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068700", + "Timestamp": "2024-05-16T05:48:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012400", + "Timestamp": "2024-05-16T05:48:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.832800", + "Timestamp": "2024-05-16T05:48:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.758200", + "Timestamp": "2024-05-16T05:48:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.449600", + "Timestamp": "2024-05-16T05:48:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T05:48:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.313700", + "Timestamp": "2024-05-16T05:48:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218400", + "Timestamp": "2024-05-16T05:48:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.133700", + "Timestamp": "2024-05-16T05:48:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.128700", + "Timestamp": "2024-05-16T05:48:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.003700", + "Timestamp": "2024-05-16T05:48:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.823700", + "Timestamp": "2024-05-16T05:48:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.254500", + "Timestamp": "2024-05-16T05:48:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.249500", + "Timestamp": "2024-05-16T05:48:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124500", + "Timestamp": "2024-05-16T05:48:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.800800", + "Timestamp": "2024-05-16T05:48:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.365900", + "Timestamp": "2024-05-16T05:48:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.360900", + "Timestamp": "2024-05-16T05:48:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.235900", + "Timestamp": "2024-05-16T05:48:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.535100", + "Timestamp": "2024-05-16T05:48:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.214000", + "Timestamp": "2024-05-16T05:48:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.209000", + "Timestamp": "2024-05-16T05:48:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.084000", + "Timestamp": "2024-05-16T05:48:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.911600", + "Timestamp": "2024-05-16T05:48:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.906600", + "Timestamp": "2024-05-16T05:48:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.781600", + "Timestamp": "2024-05-16T05:48:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.433700", + "Timestamp": "2024-05-16T05:48:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.572700", + "Timestamp": "2024-05-16T05:48:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.567700", + "Timestamp": "2024-05-16T05:48:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.442700", + "Timestamp": "2024-05-16T05:48:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.995000", + "Timestamp": "2024-05-16T05:48:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.990000", + "Timestamp": "2024-05-16T05:48:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.865000", + "Timestamp": "2024-05-16T05:48:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.690200", + "Timestamp": "2024-05-16T05:48:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.715600", + "Timestamp": "2024-05-16T05:48:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.615400", + "Timestamp": "2024-05-16T05:48:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.462400", + "Timestamp": "2024-05-16T05:48:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.610400", + "Timestamp": "2024-05-16T05:48:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.457400", + "Timestamp": "2024-05-16T05:48:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.485400", + "Timestamp": "2024-05-16T05:48:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.332400", + "Timestamp": "2024-05-16T05:48:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.994100", + "Timestamp": "2024-05-16T05:48:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.989100", + "Timestamp": "2024-05-16T05:48:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.864100", + "Timestamp": "2024-05-16T05:48:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.462000", + "Timestamp": "2024-05-16T05:48:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.457000", + "Timestamp": "2024-05-16T05:48:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.332000", + "Timestamp": "2024-05-16T05:48:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416000", + "Timestamp": "2024-05-16T05:48:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.802900", + "Timestamp": "2024-05-16T05:48:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.810900", + "Timestamp": "2024-05-16T05:48:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134500", + "Timestamp": "2024-05-16T05:48:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130800", + "Timestamp": "2024-05-16T05:48:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074500", + "Timestamp": "2024-05-16T05:48:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.672100", + "Timestamp": "2024-05-16T05:48:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.667100", + "Timestamp": "2024-05-16T05:48:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.542100", + "Timestamp": "2024-05-16T05:48:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114300", + "Timestamp": "2024-05-16T05:48:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T05:48:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054300", + "Timestamp": "2024-05-16T05:48:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.426500", + "Timestamp": "2024-05-16T05:48:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.688700", + "Timestamp": "2024-05-16T05:48:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.990300", + "Timestamp": "2024-05-16T05:48:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091700", + "Timestamp": "2024-05-16T05:48:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088000", + "Timestamp": "2024-05-16T05:48:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031700", + "Timestamp": "2024-05-16T05:48:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T05:48:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099100", + "Timestamp": "2024-05-16T05:48:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042800", + "Timestamp": "2024-05-16T05:48:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.142500", + "Timestamp": "2024-05-16T05:48:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.981400", + "Timestamp": "2024-05-16T05:48:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.922200", + "Timestamp": "2024-05-16T05:48:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.917200", + "Timestamp": "2024-05-16T05:48:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.792200", + "Timestamp": "2024-05-16T05:48:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.023300", + "Timestamp": "2024-05-16T05:48:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.960000", + "Timestamp": "2024-05-16T05:48:21.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.955000", + "Timestamp": "2024-05-16T05:48:21.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.830000", + "Timestamp": "2024-05-16T05:48:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.687100", + "Timestamp": "2024-05-16T05:48:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.682100", + "Timestamp": "2024-05-16T05:48:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.557100", + "Timestamp": "2024-05-16T05:48:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.421000", + "Timestamp": "2024-05-16T05:48:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.416000", + "Timestamp": "2024-05-16T05:48:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.291000", + "Timestamp": "2024-05-16T05:48:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297400", + "Timestamp": "2024-05-16T05:48:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.292400", + "Timestamp": "2024-05-16T05:48:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167400", + "Timestamp": "2024-05-16T05:48:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.639900", + "Timestamp": "2024-05-16T05:48:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.634900", + "Timestamp": "2024-05-16T05:48:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.509900", + "Timestamp": "2024-05-16T05:48:16.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.416900", + "Timestamp": "2024-05-16T05:48:16.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.411900", + "Timestamp": "2024-05-16T05:48:16.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.286900", + "Timestamp": "2024-05-16T05:48:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T05:48:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T05:48:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049400", + "Timestamp": "2024-05-16T05:48:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.686600", + "Timestamp": "2024-05-16T05:48:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.681600", + "Timestamp": "2024-05-16T05:48:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.556600", + "Timestamp": "2024-05-16T05:48:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.741700", + "Timestamp": "2024-05-16T05:48:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.711700", + "Timestamp": "2024-05-16T05:48:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.611700", + "Timestamp": "2024-05-16T05:48:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.174500", + "Timestamp": "2024-05-16T05:48:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.169500", + "Timestamp": "2024-05-16T05:48:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.044500", + "Timestamp": "2024-05-16T05:48:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119000", + "Timestamp": "2024-05-16T05:48:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115300", + "Timestamp": "2024-05-16T05:48:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059000", + "Timestamp": "2024-05-16T05:48:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.824800", + "Timestamp": "2024-05-16T05:48:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.826400", + "Timestamp": "2024-05-16T05:48:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.024400", + "Timestamp": "2024-05-16T05:48:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075300", + "Timestamp": "2024-05-16T05:48:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115300", + "Timestamp": "2024-05-16T05:48:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015300", + "Timestamp": "2024-05-16T05:48:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.237600", + "Timestamp": "2024-05-16T05:48:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.232600", + "Timestamp": "2024-05-16T05:48:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.107600", + "Timestamp": "2024-05-16T05:48:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.292700", + "Timestamp": "2024-05-16T05:48:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.262700", + "Timestamp": "2024-05-16T05:48:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.162700", + "Timestamp": "2024-05-16T05:48:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.195100", + "Timestamp": "2024-05-16T05:48:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.191400", + "Timestamp": "2024-05-16T05:48:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.135100", + "Timestamp": "2024-05-16T05:48:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097400", + "Timestamp": "2024-05-16T05:48:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093700", + "Timestamp": "2024-05-16T05:48:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037400", + "Timestamp": "2024-05-16T05:48:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.636500", + "Timestamp": "2024-05-16T05:48:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.631500", + "Timestamp": "2024-05-16T05:48:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.506500", + "Timestamp": "2024-05-16T05:48:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.402100", + "Timestamp": "2024-05-16T05:48:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.372100", + "Timestamp": "2024-05-16T05:48:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.272100", + "Timestamp": "2024-05-16T05:48:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.377400", + "Timestamp": "2024-05-16T05:48:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372400", + "Timestamp": "2024-05-16T05:48:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.247400", + "Timestamp": "2024-05-16T05:48:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140800", + "Timestamp": "2024-05-16T05:48:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136800", + "Timestamp": "2024-05-16T05:48:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080800", + "Timestamp": "2024-05-16T05:48:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.302400", + "Timestamp": "2024-05-16T05:48:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.297400", + "Timestamp": "2024-05-16T05:48:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172400", + "Timestamp": "2024-05-16T05:48:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.038300", + "Timestamp": "2024-05-16T05:48:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.008300", + "Timestamp": "2024-05-16T05:48:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.908300", + "Timestamp": "2024-05-16T05:48:03.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.709200", + "Timestamp": "2024-05-16T05:47:57.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.103900", + "Timestamp": "2024-05-16T05:47:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.389200", + "Timestamp": "2024-05-16T05:47:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.132700", + "Timestamp": "2024-05-16T05:47:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.762100", + "Timestamp": "2024-05-16T05:47:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.757100", + "Timestamp": "2024-05-16T05:47:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.632100", + "Timestamp": "2024-05-16T05:47:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.946500", + "Timestamp": "2024-05-16T05:47:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.916500", + "Timestamp": "2024-05-16T05:47:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.816500", + "Timestamp": "2024-05-16T05:47:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.204600", + "Timestamp": "2024-05-16T05:47:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102400", + "Timestamp": "2024-05-16T05:47:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142400", + "Timestamp": "2024-05-16T05:47:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042400", + "Timestamp": "2024-05-16T05:47:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.970600", + "Timestamp": "2024-05-16T05:47:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.014200", + "Timestamp": "2024-05-16T05:47:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.969600", + "Timestamp": "2024-05-16T05:47:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.939600", + "Timestamp": "2024-05-16T05:47:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.839600", + "Timestamp": "2024-05-16T05:47:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.839300", + "Timestamp": "2024-05-16T05:47:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.834300", + "Timestamp": "2024-05-16T05:47:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.709300", + "Timestamp": "2024-05-16T05:47:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209900", + "Timestamp": "2024-05-16T05:47:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.205700", + "Timestamp": "2024-05-16T05:47:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.200700", + "Timestamp": "2024-05-16T05:47:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.075700", + "Timestamp": "2024-05-16T05:47:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.880600", + "Timestamp": "2024-05-16T05:47:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079700", + "Timestamp": "2024-05-16T05:47:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.050700", + "Timestamp": "2024-05-16T05:47:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019700", + "Timestamp": "2024-05-16T05:47:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.709400", + "Timestamp": "2024-05-16T05:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.704400", + "Timestamp": "2024-05-16T05:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.579400", + "Timestamp": "2024-05-16T05:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.048900", + "Timestamp": "2024-05-16T05:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.043900", + "Timestamp": "2024-05-16T05:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.918900", + "Timestamp": "2024-05-16T05:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.343900", + "Timestamp": "2024-05-16T05:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.313900", + "Timestamp": "2024-05-16T05:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.213900", + "Timestamp": "2024-05-16T05:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111200", + "Timestamp": "2024-05-16T05:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.831000", + "Timestamp": "2024-05-16T05:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.185500", + "Timestamp": "2024-05-16T05:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181500", + "Timestamp": "2024-05-16T05:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125500", + "Timestamp": "2024-05-16T05:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.431000", + "Timestamp": "2024-05-16T05:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.426000", + "Timestamp": "2024-05-16T05:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.301000", + "Timestamp": "2024-05-16T05:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.433000", + "Timestamp": "2024-05-16T05:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.428000", + "Timestamp": "2024-05-16T05:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.303000", + "Timestamp": "2024-05-16T05:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114000", + "Timestamp": "2024-05-16T05:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T05:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T05:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101900", + "Timestamp": "2024-05-16T05:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054000", + "Timestamp": "2024-05-16T05:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045600", + "Timestamp": "2024-05-16T05:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063300", + "Timestamp": "2024-05-16T05:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003300", + "Timestamp": "2024-05-16T05:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003300", + "Timestamp": "2024-05-16T05:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071100", + "Timestamp": "2024-05-16T05:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042100", + "Timestamp": "2024-05-16T05:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011100", + "Timestamp": "2024-05-16T05:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114900", + "Timestamp": "2024-05-16T05:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.298700", + "Timestamp": "2024-05-16T05:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.293700", + "Timestamp": "2024-05-16T05:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.168700", + "Timestamp": "2024-05-16T05:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.536700", + "Timestamp": "2024-05-16T05:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.506700", + "Timestamp": "2024-05-16T05:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.406700", + "Timestamp": "2024-05-16T05:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.179800", + "Timestamp": "2024-05-16T05:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.731800", + "Timestamp": "2024-05-16T05:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.726800", + "Timestamp": "2024-05-16T05:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.601800", + "Timestamp": "2024-05-16T05:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.478400", + "Timestamp": "2024-05-16T05:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.448400", + "Timestamp": "2024-05-16T05:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.348400", + "Timestamp": "2024-05-16T05:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117200", + "Timestamp": "2024-05-16T05:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113500", + "Timestamp": "2024-05-16T05:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057200", + "Timestamp": "2024-05-16T05:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.313600", + "Timestamp": "2024-05-16T05:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.308600", + "Timestamp": "2024-05-16T05:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.183600", + "Timestamp": "2024-05-16T05:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.696800", + "Timestamp": "2024-05-16T05:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.691800", + "Timestamp": "2024-05-16T05:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.566800", + "Timestamp": "2024-05-16T05:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.614600", + "Timestamp": "2024-05-16T05:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.609600", + "Timestamp": "2024-05-16T05:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.484600", + "Timestamp": "2024-05-16T05:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073100", + "Timestamp": "2024-05-16T05:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069400", + "Timestamp": "2024-05-16T05:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013100", + "Timestamp": "2024-05-16T05:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206600", + "Timestamp": "2024-05-16T05:32:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-16T05:32:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T05:32:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.170900", + "Timestamp": "2024-05-16T05:32:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.933700", + "Timestamp": "2024-05-16T05:32:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.928700", + "Timestamp": "2024-05-16T05:32:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.803700", + "Timestamp": "2024-05-16T05:32:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.010500", + "Timestamp": "2024-05-16T05:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.990200", + "Timestamp": "2024-05-16T05:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.960200", + "Timestamp": "2024-05-16T05:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.860200", + "Timestamp": "2024-05-16T05:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.249500", + "Timestamp": "2024-05-16T05:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.244500", + "Timestamp": "2024-05-16T05:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119500", + "Timestamp": "2024-05-16T05:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.406200", + "Timestamp": "2024-05-16T05:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.182200", + "Timestamp": "2024-05-16T05:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441500", + "Timestamp": "2024-05-16T05:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.456400", + "Timestamp": "2024-05-16T05:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.451400", + "Timestamp": "2024-05-16T05:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.326400", + "Timestamp": "2024-05-16T05:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.216800", + "Timestamp": "2024-05-16T05:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.412900", + "Timestamp": "2024-05-16T05:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.819200", + "Timestamp": "2024-05-16T05:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416700", + "Timestamp": "2024-05-16T05:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.856500", + "Timestamp": "2024-05-16T05:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.851600", + "Timestamp": "2024-05-16T05:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.114900", + "Timestamp": "2024-05-16T05:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.563600", + "Timestamp": "2024-05-16T05:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.558600", + "Timestamp": "2024-05-16T05:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.433600", + "Timestamp": "2024-05-16T05:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147200", + "Timestamp": "2024-05-16T05:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143500", + "Timestamp": "2024-05-16T05:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087200", + "Timestamp": "2024-05-16T05:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210600", + "Timestamp": "2024-05-16T05:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.510400", + "Timestamp": "2024-05-16T05:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.506700", + "Timestamp": "2024-05-16T05:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.450400", + "Timestamp": "2024-05-16T05:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.822600", + "Timestamp": "2024-05-16T05:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.817600", + "Timestamp": "2024-05-16T05:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.692600", + "Timestamp": "2024-05-16T05:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.272100", + "Timestamp": "2024-05-16T05:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.549400", + "Timestamp": "2024-05-16T05:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.544400", + "Timestamp": "2024-05-16T05:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.419400", + "Timestamp": "2024-05-16T05:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.369600", + "Timestamp": "2024-05-16T05:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.364600", + "Timestamp": "2024-05-16T05:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.239600", + "Timestamp": "2024-05-16T05:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.218600", + "Timestamp": "2024-05-16T05:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.213600", + "Timestamp": "2024-05-16T05:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.088600", + "Timestamp": "2024-05-16T05:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-16T05:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105300", + "Timestamp": "2024-05-16T05:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049300", + "Timestamp": "2024-05-16T05:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.158500", + "Timestamp": "2024-05-16T05:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.153500", + "Timestamp": "2024-05-16T05:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.028500", + "Timestamp": "2024-05-16T05:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.844300", + "Timestamp": "2024-05-16T05:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.615800", + "Timestamp": "2024-05-16T05:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.218000", + "Timestamp": "2024-05-16T05:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.238900", + "Timestamp": "2024-05-16T05:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.214300", + "Timestamp": "2024-05-16T05:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.235200", + "Timestamp": "2024-05-16T05:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158000", + "Timestamp": "2024-05-16T05:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.178900", + "Timestamp": "2024-05-16T05:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437900", + "Timestamp": "2024-05-16T05:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.782300", + "Timestamp": "2024-05-16T05:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.777300", + "Timestamp": "2024-05-16T05:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.652300", + "Timestamp": "2024-05-16T05:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330300", + "Timestamp": "2024-05-16T05:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325300", + "Timestamp": "2024-05-16T05:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200300", + "Timestamp": "2024-05-16T05:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.875500", + "Timestamp": "2024-05-16T05:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.870500", + "Timestamp": "2024-05-16T05:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.745500", + "Timestamp": "2024-05-16T05:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.368700", + "Timestamp": "2024-05-16T05:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.363700", + "Timestamp": "2024-05-16T05:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.238700", + "Timestamp": "2024-05-16T05:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.046700", + "Timestamp": "2024-05-16T05:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144900", + "Timestamp": "2024-05-16T05:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141200", + "Timestamp": "2024-05-16T05:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084900", + "Timestamp": "2024-05-16T05:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.281300", + "Timestamp": "2024-05-16T05:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276300", + "Timestamp": "2024-05-16T05:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.151300", + "Timestamp": "2024-05-16T05:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.583100", + "Timestamp": "2024-05-16T05:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.578100", + "Timestamp": "2024-05-16T05:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.453100", + "Timestamp": "2024-05-16T05:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210100", + "Timestamp": "2024-05-16T05:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.313600", + "Timestamp": "2024-05-16T05:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.308600", + "Timestamp": "2024-05-16T05:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.183600", + "Timestamp": "2024-05-16T05:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.679300", + "Timestamp": "2024-05-16T05:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.674300", + "Timestamp": "2024-05-16T05:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.549300", + "Timestamp": "2024-05-16T05:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.098700", + "Timestamp": "2024-05-16T05:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.093700", + "Timestamp": "2024-05-16T05:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.968700", + "Timestamp": "2024-05-16T05:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.272700", + "Timestamp": "2024-05-16T05:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "dl2q.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.303100", + "Timestamp": "2024-05-16T05:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "dl2q.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.298100", + "Timestamp": "2024-05-16T05:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "dl2q.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.173100", + "Timestamp": "2024-05-16T05:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.451800", + "Timestamp": "2024-05-16T05:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.392800", + "Timestamp": "2024-05-16T05:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.362800", + "Timestamp": "2024-05-16T05:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.262800", + "Timestamp": "2024-05-16T05:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091200", + "Timestamp": "2024-05-16T05:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087500", + "Timestamp": "2024-05-16T05:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031200", + "Timestamp": "2024-05-16T05:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.822700", + "Timestamp": "2024-05-16T05:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.884600", + "Timestamp": "2024-05-16T05:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.879600", + "Timestamp": "2024-05-16T05:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.754600", + "Timestamp": "2024-05-16T05:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.435800", + "Timestamp": "2024-05-16T05:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.430800", + "Timestamp": "2024-05-16T05:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.305800", + "Timestamp": "2024-05-16T05:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.382900", + "Timestamp": "2024-05-16T05:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.286300", + "Timestamp": "2024-05-16T05:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.281300", + "Timestamp": "2024-05-16T05:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.156300", + "Timestamp": "2024-05-16T05:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123000", + "Timestamp": "2024-05-16T05:32:15.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119300", + "Timestamp": "2024-05-16T05:32:15.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063000", + "Timestamp": "2024-05-16T05:32:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.667800", + "Timestamp": "2024-05-16T05:32:14.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.824400", + "Timestamp": "2024-05-16T05:32:14.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.819400", + "Timestamp": "2024-05-16T05:32:14.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.694400", + "Timestamp": "2024-05-16T05:32:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.388300", + "Timestamp": "2024-05-16T05:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.383300", + "Timestamp": "2024-05-16T05:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.258300", + "Timestamp": "2024-05-16T05:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.026500", + "Timestamp": "2024-05-16T05:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.021500", + "Timestamp": "2024-05-16T05:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.896500", + "Timestamp": "2024-05-16T05:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.912400", + "Timestamp": "2024-05-16T05:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.882400", + "Timestamp": "2024-05-16T05:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.782400", + "Timestamp": "2024-05-16T05:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.076300", + "Timestamp": "2024-05-16T05:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.046300", + "Timestamp": "2024-05-16T05:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.946300", + "Timestamp": "2024-05-16T05:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.501700", + "Timestamp": "2024-05-16T05:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.496700", + "Timestamp": "2024-05-16T05:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.371700", + "Timestamp": "2024-05-16T05:32:08.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086300", + "Timestamp": "2024-05-16T05:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082600", + "Timestamp": "2024-05-16T05:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026300", + "Timestamp": "2024-05-16T05:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.200300", + "Timestamp": "2024-05-16T05:32:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.715600", + "Timestamp": "2024-05-16T05:32:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.852000", + "Timestamp": "2024-05-16T05:31:58.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.865400", + "Timestamp": "2024-05-16T05:31:57.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.208800", + "Timestamp": "2024-05-16T05:31:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.205100", + "Timestamp": "2024-05-16T05:31:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148800", + "Timestamp": "2024-05-16T05:31:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105500", + "Timestamp": "2024-05-16T05:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.472700", + "Timestamp": "2024-05-16T05:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.467700", + "Timestamp": "2024-05-16T05:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.342700", + "Timestamp": "2024-05-16T05:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.284400", + "Timestamp": "2024-05-16T05:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215700", + "Timestamp": "2024-05-16T05:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.086200", + "Timestamp": "2024-05-16T05:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.562500", + "Timestamp": "2024-05-16T05:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.275800", + "Timestamp": "2024-05-16T05:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.092800", + "Timestamp": "2024-05-16T05:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140300", + "Timestamp": "2024-05-16T05:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136600", + "Timestamp": "2024-05-16T05:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080300", + "Timestamp": "2024-05-16T05:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.002000", + "Timestamp": "2024-05-16T05:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.997000", + "Timestamp": "2024-05-16T05:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.872000", + "Timestamp": "2024-05-16T05:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075200", + "Timestamp": "2024-05-16T05:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071500", + "Timestamp": "2024-05-16T05:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015200", + "Timestamp": "2024-05-16T05:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.990700", + "Timestamp": "2024-05-16T05:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.882200", + "Timestamp": "2024-05-16T05:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.877200", + "Timestamp": "2024-05-16T05:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.752200", + "Timestamp": "2024-05-16T05:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.093100", + "Timestamp": "2024-05-16T05:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.088100", + "Timestamp": "2024-05-16T05:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.963100", + "Timestamp": "2024-05-16T05:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.974900", + "Timestamp": "2024-05-16T05:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.969900", + "Timestamp": "2024-05-16T05:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.844900", + "Timestamp": "2024-05-16T05:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.390100", + "Timestamp": "2024-05-16T05:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.385100", + "Timestamp": "2024-05-16T05:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.260100", + "Timestamp": "2024-05-16T05:31:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.790100", + "Timestamp": "2024-05-16T05:31:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.313300", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.308300", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.183300", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173300", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173200", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169600", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169500", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113300", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113200", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.202900", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.943600", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.763800", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.758800", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.633800", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.891300", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.886300", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.761300", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.495500", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.465500", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.365500", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.098100", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.093100", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.968100", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.481400", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.476400", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.351400", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093700", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089700", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033700", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.329700", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.324700", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.199700", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324100", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319100", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194100", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045400", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.416400", + "Timestamp": "2024-05-16T05:28:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.416400", + "Timestamp": "2024-05-16T05:28:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.416400", + "Timestamp": "2024-05-16T05:28:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.764200", + "Timestamp": "2024-05-16T05:18:57.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.011500", + "Timestamp": "2024-05-16T05:18:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.285300", + "Timestamp": "2024-05-16T05:18:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.392100", + "Timestamp": "2024-05-16T05:18:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T05:18:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.648200", + "Timestamp": "2024-05-16T05:18:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.643200", + "Timestamp": "2024-05-16T05:18:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.518200", + "Timestamp": "2024-05-16T05:18:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.350300", + "Timestamp": "2024-05-16T05:18:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.320300", + "Timestamp": "2024-05-16T05:18:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.220300", + "Timestamp": "2024-05-16T05:18:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.309700", + "Timestamp": "2024-05-16T05:18:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.133200", + "Timestamp": "2024-05-16T05:18:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.364500", + "Timestamp": "2024-05-16T05:18:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.359500", + "Timestamp": "2024-05-16T05:18:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.234500", + "Timestamp": "2024-05-16T05:18:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.424000", + "Timestamp": "2024-05-16T05:18:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.849300", + "Timestamp": "2024-05-16T05:18:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169900", + "Timestamp": "2024-05-16T05:18:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.209900", + "Timestamp": "2024-05-16T05:18:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-16T05:18:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.860200", + "Timestamp": "2024-05-16T05:18:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.855200", + "Timestamp": "2024-05-16T05:18:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.730200", + "Timestamp": "2024-05-16T05:18:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T05:18:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-16T05:18:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056600", + "Timestamp": "2024-05-16T05:18:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.881700", + "Timestamp": "2024-05-16T05:18:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.851700", + "Timestamp": "2024-05-16T05:18:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.751700", + "Timestamp": "2024-05-16T05:18:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.461400", + "Timestamp": "2024-05-16T05:18:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.456400", + "Timestamp": "2024-05-16T05:18:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.331400", + "Timestamp": "2024-05-16T05:18:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.971100", + "Timestamp": "2024-05-16T05:18:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.513900", + "Timestamp": "2024-05-16T05:18:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.701800", + "Timestamp": "2024-05-16T05:18:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.382400", + "Timestamp": "2024-05-16T05:18:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.377400", + "Timestamp": "2024-05-16T05:18:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.252400", + "Timestamp": "2024-05-16T05:18:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.809600", + "Timestamp": "2024-05-16T05:18:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.432900", + "Timestamp": "2024-05-16T05:18:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.610400", + "Timestamp": "2024-05-16T05:18:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.580400", + "Timestamp": "2024-05-16T05:18:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.480400", + "Timestamp": "2024-05-16T05:18:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.704900", + "Timestamp": "2024-05-16T05:18:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.699900", + "Timestamp": "2024-05-16T05:18:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.574900", + "Timestamp": "2024-05-16T05:18:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.752500", + "Timestamp": "2024-05-16T05:18:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.392900", + "Timestamp": "2024-05-16T05:18:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.362900", + "Timestamp": "2024-05-16T05:18:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.262900", + "Timestamp": "2024-05-16T05:18:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.483600", + "Timestamp": "2024-05-16T05:18:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.478600", + "Timestamp": "2024-05-16T05:18:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.353600", + "Timestamp": "2024-05-16T05:18:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.504900", + "Timestamp": "2024-05-16T05:18:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.499900", + "Timestamp": "2024-05-16T05:18:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.374900", + "Timestamp": "2024-05-16T05:18:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.056400", + "Timestamp": "2024-05-16T05:18:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209500", + "Timestamp": "2024-05-16T05:18:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.903300", + "Timestamp": "2024-05-16T05:18:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.898300", + "Timestamp": "2024-05-16T05:18:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.773300", + "Timestamp": "2024-05-16T05:18:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.584900", + "Timestamp": "2024-05-16T05:18:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "h1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.554900", + "Timestamp": "2024-05-16T05:18:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.454900", + "Timestamp": "2024-05-16T05:18:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.749100", + "Timestamp": "2024-05-16T05:18:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.710400", + "Timestamp": "2024-05-16T05:18:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.146300", + "Timestamp": "2024-05-16T05:18:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.141300", + "Timestamp": "2024-05-16T05:18:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.016300", + "Timestamp": "2024-05-16T05:18:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.608300", + "Timestamp": "2024-05-16T05:18:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.578300", + "Timestamp": "2024-05-16T05:18:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.478300", + "Timestamp": "2024-05-16T05:18:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.866600", + "Timestamp": "2024-05-16T05:18:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090300", + "Timestamp": "2024-05-16T05:18:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086600", + "Timestamp": "2024-05-16T05:18:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030300", + "Timestamp": "2024-05-16T05:18:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.390300", + "Timestamp": "2024-05-16T05:18:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.952700", + "Timestamp": "2024-05-16T05:18:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.395600", + "Timestamp": "2024-05-16T05:18:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113600", + "Timestamp": "2024-05-16T05:18:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-16T05:18:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053600", + "Timestamp": "2024-05-16T05:18:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.473000", + "Timestamp": "2024-05-16T05:18:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.468000", + "Timestamp": "2024-05-16T05:18:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.343000", + "Timestamp": "2024-05-16T05:18:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.232900", + "Timestamp": "2024-05-16T05:18:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.227900", + "Timestamp": "2024-05-16T05:18:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.102900", + "Timestamp": "2024-05-16T05:18:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.289300", + "Timestamp": "2024-05-16T05:18:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.284300", + "Timestamp": "2024-05-16T05:18:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.159300", + "Timestamp": "2024-05-16T05:18:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.990300", + "Timestamp": "2024-05-16T05:18:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.985300", + "Timestamp": "2024-05-16T05:18:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.860300", + "Timestamp": "2024-05-16T05:18:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.576800", + "Timestamp": "2024-05-16T05:18:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.575900", + "Timestamp": "2024-05-16T05:18:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.708200", + "Timestamp": "2024-05-16T05:18:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.703200", + "Timestamp": "2024-05-16T05:18:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.578200", + "Timestamp": "2024-05-16T05:18:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.484700", + "Timestamp": "2024-05-16T05:18:18.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.479700", + "Timestamp": "2024-05-16T05:18:18.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.354700", + "Timestamp": "2024-05-16T05:18:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.172200", + "Timestamp": "2024-05-16T05:18:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.062900", + "Timestamp": "2024-05-16T05:18:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.032900", + "Timestamp": "2024-05-16T05:18:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.932900", + "Timestamp": "2024-05-16T05:18:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.704800", + "Timestamp": "2024-05-16T05:18:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.410800", + "Timestamp": "2024-05-16T05:18:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.527100", + "Timestamp": "2024-05-16T05:18:15.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.522100", + "Timestamp": "2024-05-16T05:18:15.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.397100", + "Timestamp": "2024-05-16T05:18:15.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.754400", + "Timestamp": "2024-05-16T05:18:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.111400", + "Timestamp": "2024-05-16T05:18:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.727600", + "Timestamp": "2024-05-16T05:18:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.701200", + "Timestamp": "2024-05-16T05:18:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096200", + "Timestamp": "2024-05-16T05:18:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092500", + "Timestamp": "2024-05-16T05:18:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036200", + "Timestamp": "2024-05-16T05:18:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.824700", + "Timestamp": "2024-05-16T05:18:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082000", + "Timestamp": "2024-05-16T05:18:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078300", + "Timestamp": "2024-05-16T05:18:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022000", + "Timestamp": "2024-05-16T05:18:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.479800", + "Timestamp": "2024-05-16T05:18:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.455600", + "Timestamp": "2024-05-16T05:18:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.425600", + "Timestamp": "2024-05-16T05:18:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "gr6.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.325600", + "Timestamp": "2024-05-16T05:18:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.376800", + "Timestamp": "2024-05-16T05:18:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.371800", + "Timestamp": "2024-05-16T05:18:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.246800", + "Timestamp": "2024-05-16T05:18:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.393600", + "Timestamp": "2024-05-16T05:18:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.388600", + "Timestamp": "2024-05-16T05:18:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.263600", + "Timestamp": "2024-05-16T05:18:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229200", + "Timestamp": "2024-05-16T05:18:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.533100", + "Timestamp": "2024-05-16T05:18:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.528100", + "Timestamp": "2024-05-16T05:18:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.403100", + "Timestamp": "2024-05-16T05:18:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.432600", + "Timestamp": "2024-05-16T05:18:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.427600", + "Timestamp": "2024-05-16T05:18:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.302600", + "Timestamp": "2024-05-16T05:18:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.814600", + "Timestamp": "2024-05-16T05:18:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.119900", + "Timestamp": "2024-05-16T05:18:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.839000", + "Timestamp": "2024-05-16T05:17:59.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T05:17:59.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.938300", + "Timestamp": "2024-05-16T05:17:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.933300", + "Timestamp": "2024-05-16T05:17:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.808300", + "Timestamp": "2024-05-16T05:17:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.146800", + "Timestamp": "2024-05-16T05:17:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.508700", + "Timestamp": "2024-05-16T05:17:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067600", + "Timestamp": "2024-05-16T05:17:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038900", + "Timestamp": "2024-05-16T05:17:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007600", + "Timestamp": "2024-05-16T05:17:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.394300", + "Timestamp": "2024-05-16T05:17:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.389300", + "Timestamp": "2024-05-16T05:17:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.264300", + "Timestamp": "2024-05-16T05:17:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.909300", + "Timestamp": "2024-05-16T05:17:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.904300", + "Timestamp": "2024-05-16T05:17:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.779300", + "Timestamp": "2024-05-16T05:17:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.200000", + "Timestamp": "2024-05-16T05:17:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.195000", + "Timestamp": "2024-05-16T05:17:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.070000", + "Timestamp": "2024-05-16T05:17:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.915600", + "Timestamp": "2024-05-16T05:17:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.910600", + "Timestamp": "2024-05-16T05:17:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.785600", + "Timestamp": "2024-05-16T05:17:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.060000", + "Timestamp": "2024-05-16T05:17:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.177800", + "Timestamp": "2024-05-16T05:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.123500", + "Timestamp": "2024-05-16T05:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.118500", + "Timestamp": "2024-05-16T05:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.993500", + "Timestamp": "2024-05-16T05:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.588600", + "Timestamp": "2024-05-16T05:17:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.583600", + "Timestamp": "2024-05-16T05:17:51.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.458600", + "Timestamp": "2024-05-16T05:17:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212700", + "Timestamp": "2024-05-16T05:17:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.700300", + "Timestamp": "2024-05-16T05:17:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.894600", + "Timestamp": "2024-05-16T05:17:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.864600", + "Timestamp": "2024-05-16T05:17:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.764600", + "Timestamp": "2024-05-16T05:17:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.953700", + "Timestamp": "2024-05-16T05:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.433000", + "Timestamp": "2024-05-16T05:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.204100", + "Timestamp": "2024-05-16T05:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.402100", + "Timestamp": "2024-05-16T05:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372100", + "Timestamp": "2024-05-16T05:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.272100", + "Timestamp": "2024-05-16T05:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133000", + "Timestamp": "2024-05-16T05:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129300", + "Timestamp": "2024-05-16T05:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073000", + "Timestamp": "2024-05-16T05:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.636600", + "Timestamp": "2024-05-16T05:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.631600", + "Timestamp": "2024-05-16T05:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.506600", + "Timestamp": "2024-05-16T05:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128800", + "Timestamp": "2024-05-16T05:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124800", + "Timestamp": "2024-05-16T05:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-16T05:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T05:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-16T05:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044600", + "Timestamp": "2024-05-16T05:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416700", + "Timestamp": "2024-05-16T05:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.087700", + "Timestamp": "2024-05-16T05:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.792500", + "Timestamp": "2024-05-16T05:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.764600", + "Timestamp": "2024-05-16T05:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.734600", + "Timestamp": "2024-05-16T05:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.634600", + "Timestamp": "2024-05-16T05:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.241800", + "Timestamp": "2024-05-16T05:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.236800", + "Timestamp": "2024-05-16T05:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.111800", + "Timestamp": "2024-05-16T05:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.273800", + "Timestamp": "2024-05-16T05:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172500", + "Timestamp": "2024-05-16T05:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168500", + "Timestamp": "2024-05-16T05:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112500", + "Timestamp": "2024-05-16T05:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.805000", + "Timestamp": "2024-05-16T05:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.799600", + "Timestamp": "2024-05-16T05:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.769600", + "Timestamp": "2024-05-16T05:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.669600", + "Timestamp": "2024-05-16T05:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.716200", + "Timestamp": "2024-05-16T05:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.711200", + "Timestamp": "2024-05-16T05:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.586200", + "Timestamp": "2024-05-16T05:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086700", + "Timestamp": "2024-05-16T05:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126700", + "Timestamp": "2024-05-16T05:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026700", + "Timestamp": "2024-05-16T05:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184700", + "Timestamp": "2024-05-16T05:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.224700", + "Timestamp": "2024-05-16T05:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124700", + "Timestamp": "2024-05-16T05:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.231700", + "Timestamp": "2024-05-16T05:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.201700", + "Timestamp": "2024-05-16T05:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.101700", + "Timestamp": "2024-05-16T05:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.178900", + "Timestamp": "2024-05-16T05:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.218900", + "Timestamp": "2024-05-16T05:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118900", + "Timestamp": "2024-05-16T05:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.290800", + "Timestamp": "2024-05-16T05:10:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.290800", + "Timestamp": "2024-05-16T05:10:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.290800", + "Timestamp": "2024-05-16T05:10:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.895100", + "Timestamp": "2024-05-16T05:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111900", + "Timestamp": "2024-05-16T05:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.850600", + "Timestamp": "2024-05-16T05:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.845600", + "Timestamp": "2024-05-16T05:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.720600", + "Timestamp": "2024-05-16T05:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.494600", + "Timestamp": "2024-05-16T05:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.489600", + "Timestamp": "2024-05-16T05:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.364600", + "Timestamp": "2024-05-16T05:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.316300", + "Timestamp": "2024-05-16T05:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.311300", + "Timestamp": "2024-05-16T05:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186300", + "Timestamp": "2024-05-16T05:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.153300", + "Timestamp": "2024-05-16T05:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.123300", + "Timestamp": "2024-05-16T05:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.023300", + "Timestamp": "2024-05-16T05:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.841500", + "Timestamp": "2024-05-16T05:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.862500", + "Timestamp": "2024-05-16T05:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.832500", + "Timestamp": "2024-05-16T05:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.732500", + "Timestamp": "2024-05-16T05:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.532200", + "Timestamp": "2024-05-16T05:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.527200", + "Timestamp": "2024-05-16T05:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.402200", + "Timestamp": "2024-05-16T05:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.274000", + "Timestamp": "2024-05-16T05:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269000", + "Timestamp": "2024-05-16T05:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144000", + "Timestamp": "2024-05-16T05:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.809600", + "Timestamp": "2024-05-16T05:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.804600", + "Timestamp": "2024-05-16T05:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.679600", + "Timestamp": "2024-05-16T05:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.318400", + "Timestamp": "2024-05-16T05:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.315200", + "Timestamp": "2024-05-16T05:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.313400", + "Timestamp": "2024-05-16T05:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.310200", + "Timestamp": "2024-05-16T05:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.188400", + "Timestamp": "2024-05-16T05:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.185200", + "Timestamp": "2024-05-16T05:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.296000", + "Timestamp": "2024-05-16T05:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.291000", + "Timestamp": "2024-05-16T05:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.166000", + "Timestamp": "2024-05-16T05:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.868400", + "Timestamp": "2024-05-16T05:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.610600", + "Timestamp": "2024-05-16T05:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.605600", + "Timestamp": "2024-05-16T05:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.480600", + "Timestamp": "2024-05-16T05:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.280200", + "Timestamp": "2024-05-16T05:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.275200", + "Timestamp": "2024-05-16T05:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150200", + "Timestamp": "2024-05-16T05:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220100", + "Timestamp": "2024-05-16T05:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.330600", + "Timestamp": "2024-05-16T05:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.243900", + "Timestamp": "2024-05-16T05:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.238900", + "Timestamp": "2024-05-16T05:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.113900", + "Timestamp": "2024-05-16T05:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.254300", + "Timestamp": "2024-05-16T05:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.249300", + "Timestamp": "2024-05-16T05:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.124300", + "Timestamp": "2024-05-16T05:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.943000", + "Timestamp": "2024-05-16T05:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223400", + "Timestamp": "2024-05-16T05:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.987400", + "Timestamp": "2024-05-16T05:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.753300", + "Timestamp": "2024-05-16T05:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.958000", + "Timestamp": "2024-05-16T05:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.953000", + "Timestamp": "2024-05-16T05:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.828000", + "Timestamp": "2024-05-16T05:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.645700", + "Timestamp": "2024-05-16T05:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.289700", + "Timestamp": "2024-05-16T05:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.284700", + "Timestamp": "2024-05-16T05:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159700", + "Timestamp": "2024-05-16T05:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.412600", + "Timestamp": "2024-05-16T05:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122000", + "Timestamp": "2024-05-16T05:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118300", + "Timestamp": "2024-05-16T05:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062000", + "Timestamp": "2024-05-16T05:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.867600", + "Timestamp": "2024-05-16T05:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.862600", + "Timestamp": "2024-05-16T05:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.737600", + "Timestamp": "2024-05-16T05:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.157400", + "Timestamp": "2024-05-16T05:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.211000", + "Timestamp": "2024-05-16T05:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.206000", + "Timestamp": "2024-05-16T05:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.081000", + "Timestamp": "2024-05-16T05:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.515000", + "Timestamp": "2024-05-16T05:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.809400", + "Timestamp": "2024-05-16T05:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "a1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T05:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "a1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107000", + "Timestamp": "2024-05-16T05:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "a1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050700", + "Timestamp": "2024-05-16T05:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.641700", + "Timestamp": "2024-05-16T05:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.636700", + "Timestamp": "2024-05-16T05:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.511700", + "Timestamp": "2024-05-16T05:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213000", + "Timestamp": "2024-05-16T05:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221000", + "Timestamp": "2024-05-16T05:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.676100", + "Timestamp": "2024-05-16T05:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.646100", + "Timestamp": "2024-05-16T05:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.546100", + "Timestamp": "2024-05-16T05:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.382400", + "Timestamp": "2024-05-16T05:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.377400", + "Timestamp": "2024-05-16T05:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.252400", + "Timestamp": "2024-05-16T05:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.256400", + "Timestamp": "2024-05-16T05:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.251400", + "Timestamp": "2024-05-16T05:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.126400", + "Timestamp": "2024-05-16T05:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.698700", + "Timestamp": "2024-05-16T05:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.693700", + "Timestamp": "2024-05-16T05:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.568700", + "Timestamp": "2024-05-16T05:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.257600", + "Timestamp": "2024-05-16T05:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.252600", + "Timestamp": "2024-05-16T05:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.127600", + "Timestamp": "2024-05-16T05:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092700", + "Timestamp": "2024-05-16T05:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089000", + "Timestamp": "2024-05-16T05:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032700", + "Timestamp": "2024-05-16T05:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324400", + "Timestamp": "2024-05-16T05:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319400", + "Timestamp": "2024-05-16T05:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194400", + "Timestamp": "2024-05-16T05:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.232400", + "Timestamp": "2024-05-16T05:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.227400", + "Timestamp": "2024-05-16T05:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.102400", + "Timestamp": "2024-05-16T05:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429200", + "Timestamp": "2024-05-16T05:02:15.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.708100", + "Timestamp": "2024-05-16T05:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T05:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-16T05:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041200", + "Timestamp": "2024-05-16T05:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136700", + "Timestamp": "2024-05-16T05:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133000", + "Timestamp": "2024-05-16T05:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076700", + "Timestamp": "2024-05-16T05:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.667300", + "Timestamp": "2024-05-16T05:02:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.667800", + "Timestamp": "2024-05-16T05:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.659500", + "Timestamp": "2024-05-16T05:02:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.407700", + "Timestamp": "2024-05-16T05:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.402700", + "Timestamp": "2024-05-16T05:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.277700", + "Timestamp": "2024-05-16T05:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111700", + "Timestamp": "2024-05-16T05:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-16T05:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051700", + "Timestamp": "2024-05-16T05:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.011400", + "Timestamp": "2024-05-16T05:01:59.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.647000", + "Timestamp": "2024-05-16T05:01:59.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063900", + "Timestamp": "2024-05-16T05:01:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.034900", + "Timestamp": "2024-05-16T05:01:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003900", + "Timestamp": "2024-05-16T05:01:58.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.859800", + "Timestamp": "2024-05-16T05:01:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211800", + "Timestamp": "2024-05-16T05:01:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.371700", + "Timestamp": "2024-05-16T05:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.712400", + "Timestamp": "2024-05-16T05:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.058800", + "Timestamp": "2024-05-16T05:01:55.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.053800", + "Timestamp": "2024-05-16T05:01:55.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.928800", + "Timestamp": "2024-05-16T05:01:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.337400", + "Timestamp": "2024-05-16T05:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.332400", + "Timestamp": "2024-05-16T05:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.207400", + "Timestamp": "2024-05-16T05:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211000", + "Timestamp": "2024-05-16T05:01:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.457800", + "Timestamp": "2024-05-16T05:01:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.809300", + "Timestamp": "2024-05-16T05:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.901600", + "Timestamp": "2024-05-16T05:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113900", + "Timestamp": "2024-05-16T05:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-16T05:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053900", + "Timestamp": "2024-05-16T05:01:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.977200", + "Timestamp": "2024-05-16T05:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.972200", + "Timestamp": "2024-05-16T05:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.847200", + "Timestamp": "2024-05-16T05:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.830900", + "Timestamp": "2024-05-16T05:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072900", + "Timestamp": "2024-05-16T05:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043900", + "Timestamp": "2024-05-16T05:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012900", + "Timestamp": "2024-05-16T05:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.618500", + "Timestamp": "2024-05-16T05:01:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.613500", + "Timestamp": "2024-05-16T05:01:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.488500", + "Timestamp": "2024-05-16T05:01:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.101000", + "Timestamp": "2024-05-16T05:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.697400", + "Timestamp": "2024-05-16T05:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.527400", + "Timestamp": "2024-05-16T05:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.522400", + "Timestamp": "2024-05-16T05:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.397400", + "Timestamp": "2024-05-16T05:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127000", + "Timestamp": "2024-05-16T05:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123300", + "Timestamp": "2024-05-16T05:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067000", + "Timestamp": "2024-05-16T05:01:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.382500", + "Timestamp": "2024-05-16T05:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.399600", + "Timestamp": "2024-05-16T05:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.352500", + "Timestamp": "2024-05-16T05:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.369600", + "Timestamp": "2024-05-16T05:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.252500", + "Timestamp": "2024-05-16T05:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.269600", + "Timestamp": "2024-05-16T05:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129800", + "Timestamp": "2024-05-16T05:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126100", + "Timestamp": "2024-05-16T05:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069800", + "Timestamp": "2024-05-16T05:01:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.121800", + "Timestamp": "2024-05-16T05:01:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.663400", + "Timestamp": "2024-05-16T05:01:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.557000", + "Timestamp": "2024-05-16T05:01:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.552000", + "Timestamp": "2024-05-16T05:01:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.427000", + "Timestamp": "2024-05-16T05:01:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.227000", + "Timestamp": "2024-05-16T05:01:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.259600", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.254600", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.129600", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.746200", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.741200", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.616200", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.143000", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.942700", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.912700", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.812700", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.147100", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.142100", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.017100", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.991100", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.986100", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.861100", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.136400", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.131400", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.006400", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.216700", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.211700", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.086700", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.641600", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.616400", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.611400", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.486400", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.446600", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.441600", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.316600", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.394900", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.389900", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.264900", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.186400", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.182400", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126400", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098200", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094500", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038200", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.244900", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.239900", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.114900", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.020600", + "Timestamp": "2024-05-16T04:53:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.020600", + "Timestamp": "2024-05-16T04:53:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.408300", + "Timestamp": "2024-05-16T04:48:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T04:47:59.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.959700", + "Timestamp": "2024-05-16T04:47:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.954700", + "Timestamp": "2024-05-16T04:47:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.829700", + "Timestamp": "2024-05-16T04:47:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.948700", + "Timestamp": "2024-05-16T04:47:55.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.093700", + "Timestamp": "2024-05-16T04:47:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.327500", + "Timestamp": "2024-05-16T04:47:55.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.088700", + "Timestamp": "2024-05-16T04:47:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.322500", + "Timestamp": "2024-05-16T04:47:55.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.963700", + "Timestamp": "2024-05-16T04:47:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.197500", + "Timestamp": "2024-05-16T04:47:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.550100", + "Timestamp": "2024-05-16T04:47:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.267300", + "Timestamp": "2024-05-16T04:47:53.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.263300", + "Timestamp": "2024-05-16T04:47:53.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.207300", + "Timestamp": "2024-05-16T04:47:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.753500", + "Timestamp": "2024-05-16T04:47:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "h1.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.723500", + "Timestamp": "2024-05-16T04:47:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.623500", + "Timestamp": "2024-05-16T04:47:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103900", + "Timestamp": "2024-05-16T04:47:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.399900", + "Timestamp": "2024-05-16T04:47:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.659800", + "Timestamp": "2024-05-16T04:47:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.654800", + "Timestamp": "2024-05-16T04:47:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.529800", + "Timestamp": "2024-05-16T04:47:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.993500", + "Timestamp": "2024-05-16T04:47:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.988500", + "Timestamp": "2024-05-16T04:47:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.863500", + "Timestamp": "2024-05-16T04:47:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.373100", + "Timestamp": "2024-05-16T04:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.494600", + "Timestamp": "2024-05-16T04:47:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.829600", + "Timestamp": "2024-05-16T04:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.330400", + "Timestamp": "2024-05-16T04:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.374600", + "Timestamp": "2024-05-16T04:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.433200", + "Timestamp": "2024-05-16T04:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219300", + "Timestamp": "2024-05-16T04:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.486400", + "Timestamp": "2024-05-16T04:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.481400", + "Timestamp": "2024-05-16T04:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.356400", + "Timestamp": "2024-05-16T04:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.177500", + "Timestamp": "2024-05-16T04:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.172500", + "Timestamp": "2024-05-16T04:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.047500", + "Timestamp": "2024-05-16T04:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.508100", + "Timestamp": "2024-05-16T04:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.442400", + "Timestamp": "2024-05-16T04:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.444400", + "Timestamp": "2024-05-16T04:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.676500", + "Timestamp": "2024-05-16T04:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.843100", + "Timestamp": "2024-05-16T04:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.813100", + "Timestamp": "2024-05-16T04:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.713100", + "Timestamp": "2024-05-16T04:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.240600", + "Timestamp": "2024-05-16T04:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.452000", + "Timestamp": "2024-05-16T04:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.426900", + "Timestamp": "2024-05-16T04:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.421900", + "Timestamp": "2024-05-16T04:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.296900", + "Timestamp": "2024-05-16T04:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.169200", + "Timestamp": "2024-05-16T04:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.139200", + "Timestamp": "2024-05-16T04:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.039200", + "Timestamp": "2024-05-16T04:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.190600", + "Timestamp": "2024-05-16T04:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.293500", + "Timestamp": "2024-05-16T04:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.288500", + "Timestamp": "2024-05-16T04:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.163500", + "Timestamp": "2024-05-16T04:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.767300", + "Timestamp": "2024-05-16T04:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133300", + "Timestamp": "2024-05-16T04:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173300", + "Timestamp": "2024-05-16T04:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073300", + "Timestamp": "2024-05-16T04:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.640300", + "Timestamp": "2024-05-16T04:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271000", + "Timestamp": "2024-05-16T04:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266000", + "Timestamp": "2024-05-16T04:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141000", + "Timestamp": "2024-05-16T04:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "vt1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.666600", + "Timestamp": "2024-05-16T04:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "vt1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.636600", + "Timestamp": "2024-05-16T04:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "vt1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.536600", + "Timestamp": "2024-05-16T04:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.001700", + "Timestamp": "2024-05-16T04:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.971700", + "Timestamp": "2024-05-16T04:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.871700", + "Timestamp": "2024-05-16T04:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217300", + "Timestamp": "2024-05-16T04:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.425100", + "Timestamp": "2024-05-16T04:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.098500", + "Timestamp": "2024-05-16T04:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.093500", + "Timestamp": "2024-05-16T04:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.968500", + "Timestamp": "2024-05-16T04:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.771800", + "Timestamp": "2024-05-16T04:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.625900", + "Timestamp": "2024-05-16T04:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.766800", + "Timestamp": "2024-05-16T04:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.620900", + "Timestamp": "2024-05-16T04:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.641800", + "Timestamp": "2024-05-16T04:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.495900", + "Timestamp": "2024-05-16T04:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.039800", + "Timestamp": "2024-05-16T04:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.034800", + "Timestamp": "2024-05-16T04:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.909800", + "Timestamp": "2024-05-16T04:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.410200", + "Timestamp": "2024-05-16T04:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.405200", + "Timestamp": "2024-05-16T04:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.280200", + "Timestamp": "2024-05-16T04:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.264100", + "Timestamp": "2024-05-16T04:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.259100", + "Timestamp": "2024-05-16T04:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134100", + "Timestamp": "2024-05-16T04:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.598600", + "Timestamp": "2024-05-16T04:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.846200", + "Timestamp": "2024-05-16T04:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.816200", + "Timestamp": "2024-05-16T04:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.716200", + "Timestamp": "2024-05-16T04:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.405200", + "Timestamp": "2024-05-16T04:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.400200", + "Timestamp": "2024-05-16T04:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.275200", + "Timestamp": "2024-05-16T04:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.354800", + "Timestamp": "2024-05-16T04:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.419000", + "Timestamp": "2024-05-16T04:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.414000", + "Timestamp": "2024-05-16T04:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.289000", + "Timestamp": "2024-05-16T04:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.350700", + "Timestamp": "2024-05-16T04:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.320700", + "Timestamp": "2024-05-16T04:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.220700", + "Timestamp": "2024-05-16T04:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.626400", + "Timestamp": "2024-05-16T04:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.621400", + "Timestamp": "2024-05-16T04:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.496400", + "Timestamp": "2024-05-16T04:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.415700", + "Timestamp": "2024-05-16T04:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.643500", + "Timestamp": "2024-05-16T04:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.203600", + "Timestamp": "2024-05-16T04:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.070200", + "Timestamp": "2024-05-16T04:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.065200", + "Timestamp": "2024-05-16T04:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.940200", + "Timestamp": "2024-05-16T04:47:14.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.326900", + "Timestamp": "2024-05-16T04:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.321900", + "Timestamp": "2024-05-16T04:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.196900", + "Timestamp": "2024-05-16T04:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.445100", + "Timestamp": "2024-05-16T04:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.440100", + "Timestamp": "2024-05-16T04:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.315100", + "Timestamp": "2024-05-16T04:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.077000", + "Timestamp": "2024-05-16T04:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.072000", + "Timestamp": "2024-05-16T04:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.947000", + "Timestamp": "2024-05-16T04:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.300800", + "Timestamp": "2024-05-16T04:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298200", + "Timestamp": "2024-05-16T04:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270800", + "Timestamp": "2024-05-16T04:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268200", + "Timestamp": "2024-05-16T04:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170800", + "Timestamp": "2024-05-16T04:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168200", + "Timestamp": "2024-05-16T04:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.746500", + "Timestamp": "2024-05-16T04:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.716500", + "Timestamp": "2024-05-16T04:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.616500", + "Timestamp": "2024-05-16T04:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.807000", + "Timestamp": "2024-05-16T04:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.802000", + "Timestamp": "2024-05-16T04:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.677000", + "Timestamp": "2024-05-16T04:47:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.644600", + "Timestamp": "2024-05-16T04:47:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.639600", + "Timestamp": "2024-05-16T04:47:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.514600", + "Timestamp": "2024-05-16T04:47:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.907400", + "Timestamp": "2024-05-16T04:47:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.902400", + "Timestamp": "2024-05-16T04:47:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.777400", + "Timestamp": "2024-05-16T04:47:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.728000", + "Timestamp": "2024-05-16T04:47:01.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.008900", + "Timestamp": "2024-05-16T04:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.003900", + "Timestamp": "2024-05-16T04:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.878900", + "Timestamp": "2024-05-16T04:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.241800", + "Timestamp": "2024-05-16T04:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Windows", + "SpotPrice": "3.628000", + "Timestamp": "2024-05-16T04:46:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.547000", + "Timestamp": "2024-05-16T04:46:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.542000", + "Timestamp": "2024-05-16T04:46:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.417000", + "Timestamp": "2024-05-16T04:46:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116300", + "Timestamp": "2024-05-16T04:46:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-16T04:46:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056300", + "Timestamp": "2024-05-16T04:46:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.451200", + "Timestamp": "2024-05-16T04:46:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.669500", + "Timestamp": "2024-05-16T04:46:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.664500", + "Timestamp": "2024-05-16T04:46:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.539500", + "Timestamp": "2024-05-16T04:46:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.558900", + "Timestamp": "2024-05-16T04:46:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.694200", + "Timestamp": "2024-05-16T04:46:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.575500", + "Timestamp": "2024-05-16T04:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.616700", + "Timestamp": "2024-05-16T04:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.611700", + "Timestamp": "2024-05-16T04:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.486700", + "Timestamp": "2024-05-16T04:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.230300", + "Timestamp": "2024-05-16T04:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.233500", + "Timestamp": "2024-05-16T04:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.228500", + "Timestamp": "2024-05-16T04:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.103500", + "Timestamp": "2024-05-16T04:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.418200", + "Timestamp": "2024-05-16T04:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.413200", + "Timestamp": "2024-05-16T04:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.288200", + "Timestamp": "2024-05-16T04:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.318100", + "Timestamp": "2024-05-16T04:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.313100", + "Timestamp": "2024-05-16T04:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.188100", + "Timestamp": "2024-05-16T04:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.375500", + "Timestamp": "2024-05-16T04:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.370500", + "Timestamp": "2024-05-16T04:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.245500", + "Timestamp": "2024-05-16T04:46:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142700", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138700", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082700", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.656200", + "Timestamp": "2024-05-16T04:33:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.651200", + "Timestamp": "2024-05-16T04:33:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.526200", + "Timestamp": "2024-05-16T04:33:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.389700", + "Timestamp": "2024-05-16T04:32:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.436800", + "Timestamp": "2024-05-16T04:32:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.431800", + "Timestamp": "2024-05-16T04:32:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.306800", + "Timestamp": "2024-05-16T04:32:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.346500", + "Timestamp": "2024-05-16T04:32:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.823000", + "Timestamp": "2024-05-16T04:32:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.707500", + "Timestamp": "2024-05-16T04:32:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.702500", + "Timestamp": "2024-05-16T04:32:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.577500", + "Timestamp": "2024-05-16T04:32:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T04:32:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101400", + "Timestamp": "2024-05-16T04:32:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045400", + "Timestamp": "2024-05-16T04:32:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.036600", + "Timestamp": "2024-05-16T04:32:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.031600", + "Timestamp": "2024-05-16T04:32:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.906600", + "Timestamp": "2024-05-16T04:32:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.169700", + "Timestamp": "2024-05-16T04:32:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.139700", + "Timestamp": "2024-05-16T04:32:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.039700", + "Timestamp": "2024-05-16T04:32:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137000", + "Timestamp": "2024-05-16T04:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134000", + "Timestamp": "2024-05-16T04:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077000", + "Timestamp": "2024-05-16T04:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.110300", + "Timestamp": "2024-05-16T04:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.105300", + "Timestamp": "2024-05-16T04:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.980300", + "Timestamp": "2024-05-16T04:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.325400", + "Timestamp": "2024-05-16T04:32:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.657500", + "Timestamp": "2024-05-16T04:32:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.071300", + "Timestamp": "2024-05-16T04:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.066300", + "Timestamp": "2024-05-16T04:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.941300", + "Timestamp": "2024-05-16T04:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.600600", + "Timestamp": "2024-05-16T04:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.189100", + "Timestamp": "2024-05-16T04:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.229100", + "Timestamp": "2024-05-16T04:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129100", + "Timestamp": "2024-05-16T04:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.385500", + "Timestamp": "2024-05-16T04:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.180900", + "Timestamp": "2024-05-16T04:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "vt1.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.423000", + "Timestamp": "2024-05-16T04:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "vt1.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.393000", + "Timestamp": "2024-05-16T04:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "vt1.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.293000", + "Timestamp": "2024-05-16T04:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.848400", + "Timestamp": "2024-05-16T04:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.771000", + "Timestamp": "2024-05-16T04:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.722100", + "Timestamp": "2024-05-16T04:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.717100", + "Timestamp": "2024-05-16T04:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.592100", + "Timestamp": "2024-05-16T04:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.344400", + "Timestamp": "2024-05-16T04:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.339400", + "Timestamp": "2024-05-16T04:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.214400", + "Timestamp": "2024-05-16T04:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127200", + "Timestamp": "2024-05-16T04:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123500", + "Timestamp": "2024-05-16T04:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067200", + "Timestamp": "2024-05-16T04:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.228100", + "Timestamp": "2024-05-16T04:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.224400", + "Timestamp": "2024-05-16T04:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168100", + "Timestamp": "2024-05-16T04:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418200", + "Timestamp": "2024-05-16T04:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.043800", + "Timestamp": "2024-05-16T04:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.038800", + "Timestamp": "2024-05-16T04:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.913800", + "Timestamp": "2024-05-16T04:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.223400", + "Timestamp": "2024-05-16T04:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.219400", + "Timestamp": "2024-05-16T04:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.163400", + "Timestamp": "2024-05-16T04:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220800", + "Timestamp": "2024-05-16T04:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.226300", + "Timestamp": "2024-05-16T04:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.221300", + "Timestamp": "2024-05-16T04:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.096300", + "Timestamp": "2024-05-16T04:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.141200", + "Timestamp": "2024-05-16T04:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.767000", + "Timestamp": "2024-05-16T04:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.394500", + "Timestamp": "2024-05-16T04:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.389500", + "Timestamp": "2024-05-16T04:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.264500", + "Timestamp": "2024-05-16T04:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.720500", + "Timestamp": "2024-05-16T04:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.900300", + "Timestamp": "2024-05-16T04:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.895300", + "Timestamp": "2024-05-16T04:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.770300", + "Timestamp": "2024-05-16T04:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.861100", + "Timestamp": "2024-05-16T04:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.841800", + "Timestamp": "2024-05-16T04:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.715100", + "Timestamp": "2024-05-16T04:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.795700", + "Timestamp": "2024-05-16T04:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.790700", + "Timestamp": "2024-05-16T04:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.665700", + "Timestamp": "2024-05-16T04:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.521900", + "Timestamp": "2024-05-16T04:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.516900", + "Timestamp": "2024-05-16T04:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.391900", + "Timestamp": "2024-05-16T04:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.781600", + "Timestamp": "2024-05-16T04:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.776600", + "Timestamp": "2024-05-16T04:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.651600", + "Timestamp": "2024-05-16T04:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.555000", + "Timestamp": "2024-05-16T04:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.550000", + "Timestamp": "2024-05-16T04:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.425000", + "Timestamp": "2024-05-16T04:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099300", + "Timestamp": "2024-05-16T04:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095600", + "Timestamp": "2024-05-16T04:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039300", + "Timestamp": "2024-05-16T04:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.313500", + "Timestamp": "2024-05-16T04:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.308500", + "Timestamp": "2024-05-16T04:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.183500", + "Timestamp": "2024-05-16T04:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.198800", + "Timestamp": "2024-05-16T04:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.195100", + "Timestamp": "2024-05-16T04:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.138800", + "Timestamp": "2024-05-16T04:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.814600", + "Timestamp": "2024-05-16T04:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.809600", + "Timestamp": "2024-05-16T04:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.684600", + "Timestamp": "2024-05-16T04:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.947700", + "Timestamp": "2024-05-16T04:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.942700", + "Timestamp": "2024-05-16T04:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.817700", + "Timestamp": "2024-05-16T04:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.636000", + "Timestamp": "2024-05-16T04:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.631000", + "Timestamp": "2024-05-16T04:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.506000", + "Timestamp": "2024-05-16T04:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.687300", + "Timestamp": "2024-05-16T04:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.682300", + "Timestamp": "2024-05-16T04:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.557300", + "Timestamp": "2024-05-16T04:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.935800", + "Timestamp": "2024-05-16T04:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.398400", + "Timestamp": "2024-05-16T04:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.393400", + "Timestamp": "2024-05-16T04:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.268400", + "Timestamp": "2024-05-16T04:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-16T04:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T04:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046500", + "Timestamp": "2024-05-16T04:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.563500", + "Timestamp": "2024-05-16T04:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.533500", + "Timestamp": "2024-05-16T04:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.433500", + "Timestamp": "2024-05-16T04:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220400", + "Timestamp": "2024-05-16T04:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.826100", + "Timestamp": "2024-05-16T04:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092100", + "Timestamp": "2024-05-16T04:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088400", + "Timestamp": "2024-05-16T04:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032100", + "Timestamp": "2024-05-16T04:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.126000", + "Timestamp": "2024-05-16T04:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.121000", + "Timestamp": "2024-05-16T04:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.996000", + "Timestamp": "2024-05-16T04:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.984300", + "Timestamp": "2024-05-16T04:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.523700", + "Timestamp": "2024-05-16T04:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.493700", + "Timestamp": "2024-05-16T04:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.393700", + "Timestamp": "2024-05-16T04:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439600", + "Timestamp": "2024-05-16T04:32:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116000", + "Timestamp": "2024-05-16T04:32:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-16T04:32:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056000", + "Timestamp": "2024-05-16T04:32:17.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.876600", + "Timestamp": "2024-05-16T04:32:15.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.871600", + "Timestamp": "2024-05-16T04:32:15.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.746600", + "Timestamp": "2024-05-16T04:32:15.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121000", + "Timestamp": "2024-05-16T04:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161000", + "Timestamp": "2024-05-16T04:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061000", + "Timestamp": "2024-05-16T04:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.667100", + "Timestamp": "2024-05-16T04:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "trn1n.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.918200", + "Timestamp": "2024-05-16T04:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "trn1n.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.888200", + "Timestamp": "2024-05-16T04:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "trn1n.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.788200", + "Timestamp": "2024-05-16T04:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.585800", + "Timestamp": "2024-05-16T04:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.555800", + "Timestamp": "2024-05-16T04:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.455800", + "Timestamp": "2024-05-16T04:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.194300", + "Timestamp": "2024-05-16T04:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190300", + "Timestamp": "2024-05-16T04:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T04:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.509300", + "Timestamp": "2024-05-16T04:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093900", + "Timestamp": "2024-05-16T04:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090200", + "Timestamp": "2024-05-16T04:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033900", + "Timestamp": "2024-05-16T04:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108300", + "Timestamp": "2024-05-16T04:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T04:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048300", + "Timestamp": "2024-05-16T04:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.863100", + "Timestamp": "2024-05-16T04:32:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.851500", + "Timestamp": "2024-05-16T04:31:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.562700", + "Timestamp": "2024-05-16T04:31:57.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.189800", + "Timestamp": "2024-05-16T04:31:55.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.466200", + "Timestamp": "2024-05-16T04:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.461200", + "Timestamp": "2024-05-16T04:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.336200", + "Timestamp": "2024-05-16T04:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.565000", + "Timestamp": "2024-05-16T04:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.395300", + "Timestamp": "2024-05-16T04:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.390300", + "Timestamp": "2024-05-16T04:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.265300", + "Timestamp": "2024-05-16T04:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.137900", + "Timestamp": "2024-05-16T04:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.132900", + "Timestamp": "2024-05-16T04:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.007900", + "Timestamp": "2024-05-16T04:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.200300", + "Timestamp": "2024-05-16T04:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.036400", + "Timestamp": "2024-05-16T04:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.006400", + "Timestamp": "2024-05-16T04:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.906400", + "Timestamp": "2024-05-16T04:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.927800", + "Timestamp": "2024-05-16T04:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.922800", + "Timestamp": "2024-05-16T04:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.797800", + "Timestamp": "2024-05-16T04:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.327600", + "Timestamp": "2024-05-16T04:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.322600", + "Timestamp": "2024-05-16T04:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.197600", + "Timestamp": "2024-05-16T04:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.485300", + "Timestamp": "2024-05-16T04:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.480300", + "Timestamp": "2024-05-16T04:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.355300", + "Timestamp": "2024-05-16T04:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.292300", + "Timestamp": "2024-05-16T04:17:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083500", + "Timestamp": "2024-05-16T04:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079800", + "Timestamp": "2024-05-16T04:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023500", + "Timestamp": "2024-05-16T04:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149200", + "Timestamp": "2024-05-16T04:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145500", + "Timestamp": "2024-05-16T04:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089200", + "Timestamp": "2024-05-16T04:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.723900", + "Timestamp": "2024-05-16T04:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.718900", + "Timestamp": "2024-05-16T04:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.593900", + "Timestamp": "2024-05-16T04:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.481100", + "Timestamp": "2024-05-16T04:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.476100", + "Timestamp": "2024-05-16T04:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.351100", + "Timestamp": "2024-05-16T04:17:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.632400", + "Timestamp": "2024-05-16T04:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.788100", + "Timestamp": "2024-05-16T04:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.783100", + "Timestamp": "2024-05-16T04:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.658100", + "Timestamp": "2024-05-16T04:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.717100", + "Timestamp": "2024-05-16T04:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.501600", + "Timestamp": "2024-05-16T04:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.496600", + "Timestamp": "2024-05-16T04:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.371600", + "Timestamp": "2024-05-16T04:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.653000", + "Timestamp": "2024-05-16T04:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.648000", + "Timestamp": "2024-05-16T04:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.523000", + "Timestamp": "2024-05-16T04:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.680300", + "Timestamp": "2024-05-16T04:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T04:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.560800", + "Timestamp": "2024-05-16T04:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.101900", + "Timestamp": "2024-05-16T04:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.096900", + "Timestamp": "2024-05-16T04:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.971900", + "Timestamp": "2024-05-16T04:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.956100", + "Timestamp": "2024-05-16T04:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.951100", + "Timestamp": "2024-05-16T04:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.826100", + "Timestamp": "2024-05-16T04:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.005400", + "Timestamp": "2024-05-16T04:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "f1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.861800", + "Timestamp": "2024-05-16T04:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "f1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.831800", + "Timestamp": "2024-05-16T04:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "f1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.731800", + "Timestamp": "2024-05-16T04:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118700", + "Timestamp": "2024-05-16T04:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115000", + "Timestamp": "2024-05-16T04:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058700", + "Timestamp": "2024-05-16T04:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.492300", + "Timestamp": "2024-05-16T04:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.487300", + "Timestamp": "2024-05-16T04:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.362300", + "Timestamp": "2024-05-16T04:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.101500", + "Timestamp": "2024-05-16T04:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.035300", + "Timestamp": "2024-05-16T04:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.030300", + "Timestamp": "2024-05-16T04:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.905300", + "Timestamp": "2024-05-16T04:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.254700", + "Timestamp": "2024-05-16T04:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.249700", + "Timestamp": "2024-05-16T04:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124700", + "Timestamp": "2024-05-16T04:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.598500", + "Timestamp": "2024-05-16T04:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.421900", + "Timestamp": "2024-05-16T04:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.416900", + "Timestamp": "2024-05-16T04:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.291900", + "Timestamp": "2024-05-16T04:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.367100", + "Timestamp": "2024-05-16T04:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.362100", + "Timestamp": "2024-05-16T04:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.237100", + "Timestamp": "2024-05-16T04:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.576800", + "Timestamp": "2024-05-16T04:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.571800", + "Timestamp": "2024-05-16T04:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.446800", + "Timestamp": "2024-05-16T04:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.441400", + "Timestamp": "2024-05-16T04:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.411400", + "Timestamp": "2024-05-16T04:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.311400", + "Timestamp": "2024-05-16T04:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.256200", + "Timestamp": "2024-05-16T04:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.251200", + "Timestamp": "2024-05-16T04:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126200", + "Timestamp": "2024-05-16T04:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.866200", + "Timestamp": "2024-05-16T04:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.836200", + "Timestamp": "2024-05-16T04:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.736200", + "Timestamp": "2024-05-16T04:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.918200", + "Timestamp": "2024-05-16T04:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.776000", + "Timestamp": "2024-05-16T04:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.286300", + "Timestamp": "2024-05-16T04:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.281300", + "Timestamp": "2024-05-16T04:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.156300", + "Timestamp": "2024-05-16T04:17:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.427600", + "Timestamp": "2024-05-16T04:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.370600", + "Timestamp": "2024-05-16T04:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.365600", + "Timestamp": "2024-05-16T04:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.240600", + "Timestamp": "2024-05-16T04:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.709900", + "Timestamp": "2024-05-16T04:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.704900", + "Timestamp": "2024-05-16T04:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.579900", + "Timestamp": "2024-05-16T04:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.495000", + "Timestamp": "2024-05-16T04:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.490000", + "Timestamp": "2024-05-16T04:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.365000", + "Timestamp": "2024-05-16T04:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.855700", + "Timestamp": "2024-05-16T04:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.494000", + "Timestamp": "2024-05-16T04:17:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.563100", + "Timestamp": "2024-05-16T04:17:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.558100", + "Timestamp": "2024-05-16T04:17:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.433100", + "Timestamp": "2024-05-16T04:17:17.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.045700", + "Timestamp": "2024-05-16T04:17:16.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.040700", + "Timestamp": "2024-05-16T04:17:16.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.915700", + "Timestamp": "2024-05-16T04:17:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.411100", + "Timestamp": "2024-05-16T04:17:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.618700", + "Timestamp": "2024-05-16T04:17:15.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T04:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-16T04:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.387000", + "Timestamp": "2024-05-16T04:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.382000", + "Timestamp": "2024-05-16T04:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.257000", + "Timestamp": "2024-05-16T04:17:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.183200", + "Timestamp": "2024-05-16T04:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179200", + "Timestamp": "2024-05-16T04:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123200", + "Timestamp": "2024-05-16T04:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "h1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.919700", + "Timestamp": "2024-05-16T04:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "h1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.889700", + "Timestamp": "2024-05-16T04:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "h1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.789700", + "Timestamp": "2024-05-16T04:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.521400", + "Timestamp": "2024-05-16T04:17:10.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.851900", + "Timestamp": "2024-05-16T04:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.846900", + "Timestamp": "2024-05-16T04:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.721900", + "Timestamp": "2024-05-16T04:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109600", + "Timestamp": "2024-05-16T04:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T04:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049600", + "Timestamp": "2024-05-16T04:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.705800", + "Timestamp": "2024-05-16T04:17:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090100", + "Timestamp": "2024-05-16T04:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086400", + "Timestamp": "2024-05-16T04:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030100", + "Timestamp": "2024-05-16T04:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.024500", + "Timestamp": "2024-05-16T04:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.019500", + "Timestamp": "2024-05-16T04:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.894500", + "Timestamp": "2024-05-16T04:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121500", + "Timestamp": "2024-05-16T04:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.025000", + "Timestamp": "2024-05-16T04:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.020000", + "Timestamp": "2024-05-16T04:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.895000", + "Timestamp": "2024-05-16T04:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.183800", + "Timestamp": "2024-05-16T04:17:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180100", + "Timestamp": "2024-05-16T04:17:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123800", + "Timestamp": "2024-05-16T04:17:00.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135100", + "Timestamp": "2024-05-16T04:16:59.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131400", + "Timestamp": "2024-05-16T04:16:59.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075100", + "Timestamp": "2024-05-16T04:16:59.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Windows", + "SpotPrice": "3.591200", + "Timestamp": "2024-05-16T04:16:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.551800", + "Timestamp": "2024-05-16T04:16:58.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.759700", + "Timestamp": "2024-05-16T04:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.754700", + "Timestamp": "2024-05-16T04:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.629700", + "Timestamp": "2024-05-16T04:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.982900", + "Timestamp": "2024-05-16T04:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.952900", + "Timestamp": "2024-05-16T04:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.852900", + "Timestamp": "2024-05-16T04:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207300", + "Timestamp": "2024-05-16T04:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.255000", + "Timestamp": "2024-05-16T04:16:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.250000", + "Timestamp": "2024-05-16T04:16:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125000", + "Timestamp": "2024-05-16T04:16:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.095500", + "Timestamp": "2024-05-16T04:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.531800", + "Timestamp": "2024-05-16T04:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.526800", + "Timestamp": "2024-05-16T04:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.401800", + "Timestamp": "2024-05-16T04:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.260900", + "Timestamp": "2024-05-16T04:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.255900", + "Timestamp": "2024-05-16T04:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130900", + "Timestamp": "2024-05-16T04:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.841400", + "Timestamp": "2024-05-16T04:16:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.942600", + "Timestamp": "2024-05-16T04:16:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.912600", + "Timestamp": "2024-05-16T04:16:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.812600", + "Timestamp": "2024-05-16T04:16:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129400", + "Timestamp": "2024-05-16T04:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125700", + "Timestamp": "2024-05-16T04:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069400", + "Timestamp": "2024-05-16T04:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.229800", + "Timestamp": "2024-05-16T04:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.199800", + "Timestamp": "2024-05-16T04:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099800", + "Timestamp": "2024-05-16T04:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.468100", + "Timestamp": "2024-05-16T04:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.438100", + "Timestamp": "2024-05-16T04:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.338100", + "Timestamp": "2024-05-16T04:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080800", + "Timestamp": "2024-05-16T04:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077100", + "Timestamp": "2024-05-16T04:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020800", + "Timestamp": "2024-05-16T04:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134600", + "Timestamp": "2024-05-16T04:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130600", + "Timestamp": "2024-05-16T04:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074600", + "Timestamp": "2024-05-16T04:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144300", + "Timestamp": "2024-05-16T04:16:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140300", + "Timestamp": "2024-05-16T04:16:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084300", + "Timestamp": "2024-05-16T04:16:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.779100", + "Timestamp": "2024-05-16T04:15:14.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.689600", + "Timestamp": "2024-05-16T04:10:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.791900", + "Timestamp": "2024-05-16T04:06:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.786900", + "Timestamp": "2024-05-16T04:06:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.661900", + "Timestamp": "2024-05-16T04:06:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.051000", + "Timestamp": "2024-05-16T04:05:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.096300", + "Timestamp": "2024-05-16T04:03:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T04:03:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.070200", + "Timestamp": "2024-05-16T04:03:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233600", + "Timestamp": "2024-05-16T04:02:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "dl1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.571400", + "Timestamp": "2024-05-16T04:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "dl1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.541400", + "Timestamp": "2024-05-16T04:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "dl1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.441400", + "Timestamp": "2024-05-16T04:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010400", + "Timestamp": "2024-05-16T04:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.033500", + "Timestamp": "2024-05-16T04:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.585400", + "Timestamp": "2024-05-16T04:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.580400", + "Timestamp": "2024-05-16T04:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.455400", + "Timestamp": "2024-05-16T04:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100000", + "Timestamp": "2024-05-16T04:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096300", + "Timestamp": "2024-05-16T04:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040000", + "Timestamp": "2024-05-16T04:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223200", + "Timestamp": "2024-05-16T04:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.427100", + "Timestamp": "2024-05-16T04:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.422100", + "Timestamp": "2024-05-16T04:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.297100", + "Timestamp": "2024-05-16T04:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129100", + "Timestamp": "2024-05-16T04:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T04:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069100", + "Timestamp": "2024-05-16T04:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.432500", + "Timestamp": "2024-05-16T04:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.427500", + "Timestamp": "2024-05-16T04:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.302500", + "Timestamp": "2024-05-16T04:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.466600", + "Timestamp": "2024-05-16T04:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.712400", + "Timestamp": "2024-05-16T04:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.962500", + "Timestamp": "2024-05-16T04:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.957500", + "Timestamp": "2024-05-16T04:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.832500", + "Timestamp": "2024-05-16T04:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440700", + "Timestamp": "2024-05-16T04:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.435900", + "Timestamp": "2024-05-16T04:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.476400", + "Timestamp": "2024-05-16T04:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.389400", + "Timestamp": "2024-05-16T04:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.384400", + "Timestamp": "2024-05-16T04:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.259400", + "Timestamp": "2024-05-16T04:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.974000", + "Timestamp": "2024-05-16T04:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.230100", + "Timestamp": "2024-05-16T04:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.998900", + "Timestamp": "2024-05-16T04:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.717700", + "Timestamp": "2024-05-16T04:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.484500", + "Timestamp": "2024-05-16T04:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t1.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.009600", + "Timestamp": "2024-05-16T04:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.868000", + "Timestamp": "2024-05-16T04:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.863000", + "Timestamp": "2024-05-16T04:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.738000", + "Timestamp": "2024-05-16T04:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.809600", + "Timestamp": "2024-05-16T04:02:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.479000", + "Timestamp": "2024-05-16T04:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.027900", + "Timestamp": "2024-05-16T04:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.022900", + "Timestamp": "2024-05-16T04:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.897900", + "Timestamp": "2024-05-16T04:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.559000", + "Timestamp": "2024-05-16T04:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.554000", + "Timestamp": "2024-05-16T04:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.429000", + "Timestamp": "2024-05-16T04:02:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.384500", + "Timestamp": "2024-05-16T04:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.328200", + "Timestamp": "2024-05-16T04:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.298200", + "Timestamp": "2024-05-16T04:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.198200", + "Timestamp": "2024-05-16T04:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.376800", + "Timestamp": "2024-05-16T04:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.371800", + "Timestamp": "2024-05-16T04:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.246800", + "Timestamp": "2024-05-16T04:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.658700", + "Timestamp": "2024-05-16T04:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.653700", + "Timestamp": "2024-05-16T04:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.528700", + "Timestamp": "2024-05-16T04:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.837300", + "Timestamp": "2024-05-16T04:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.745200", + "Timestamp": "2024-05-16T04:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.720200", + "Timestamp": "2024-05-16T04:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.740200", + "Timestamp": "2024-05-16T04:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.715200", + "Timestamp": "2024-05-16T04:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.615200", + "Timestamp": "2024-05-16T04:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.590200", + "Timestamp": "2024-05-16T04:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.485800", + "Timestamp": "2024-05-16T04:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.455800", + "Timestamp": "2024-05-16T04:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.355800", + "Timestamp": "2024-05-16T04:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137800", + "Timestamp": "2024-05-16T04:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134100", + "Timestamp": "2024-05-16T04:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077800", + "Timestamp": "2024-05-16T04:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "trn1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.421100", + "Timestamp": "2024-05-16T04:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "trn1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.391100", + "Timestamp": "2024-05-16T04:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "trn1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.291100", + "Timestamp": "2024-05-16T04:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.205900", + "Timestamp": "2024-05-16T04:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.202200", + "Timestamp": "2024-05-16T04:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145900", + "Timestamp": "2024-05-16T04:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.188800", + "Timestamp": "2024-05-16T04:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.183800", + "Timestamp": "2024-05-16T04:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.058800", + "Timestamp": "2024-05-16T04:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.911000", + "Timestamp": "2024-05-16T04:02:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.696900", + "Timestamp": "2024-05-16T04:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.691900", + "Timestamp": "2024-05-16T04:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.566900", + "Timestamp": "2024-05-16T04:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.123700", + "Timestamp": "2024-05-16T04:02:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299400", + "Timestamp": "2024-05-16T04:02:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294400", + "Timestamp": "2024-05-16T04:02:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169400", + "Timestamp": "2024-05-16T04:02:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.313300", + "Timestamp": "2024-05-16T04:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.308300", + "Timestamp": "2024-05-16T04:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.183300", + "Timestamp": "2024-05-16T04:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.675000", + "Timestamp": "2024-05-16T04:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.670000", + "Timestamp": "2024-05-16T04:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.545000", + "Timestamp": "2024-05-16T04:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.405200", + "Timestamp": "2024-05-16T04:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.259200", + "Timestamp": "2024-05-16T04:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.254200", + "Timestamp": "2024-05-16T04:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129200", + "Timestamp": "2024-05-16T04:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148900", + "Timestamp": "2024-05-16T04:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145200", + "Timestamp": "2024-05-16T04:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088900", + "Timestamp": "2024-05-16T04:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "trn1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.070300", + "Timestamp": "2024-05-16T04:01:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "trn1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.040300", + "Timestamp": "2024-05-16T04:01:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "trn1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.940300", + "Timestamp": "2024-05-16T04:01:57.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.384000", + "Timestamp": "2024-05-16T04:01:57.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.354000", + "Timestamp": "2024-05-16T04:01:57.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.254000", + "Timestamp": "2024-05-16T04:01:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423600", + "Timestamp": "2024-05-16T04:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311100", + "Timestamp": "2024-05-16T04:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281100", + "Timestamp": "2024-05-16T04:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181100", + "Timestamp": "2024-05-16T04:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.790900", + "Timestamp": "2024-05-16T04:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.785900", + "Timestamp": "2024-05-16T04:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.660900", + "Timestamp": "2024-05-16T04:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.827400", + "Timestamp": "2024-05-16T04:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.121800", + "Timestamp": "2024-05-16T04:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.116800", + "Timestamp": "2024-05-16T04:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.991800", + "Timestamp": "2024-05-16T04:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417000", + "Timestamp": "2024-05-16T04:01:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151800", + "Timestamp": "2024-05-16T04:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.191800", + "Timestamp": "2024-05-16T04:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T04:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130800", + "Timestamp": "2024-05-16T04:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127100", + "Timestamp": "2024-05-16T04:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070800", + "Timestamp": "2024-05-16T04:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.295600", + "Timestamp": "2024-05-16T04:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265600", + "Timestamp": "2024-05-16T04:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165600", + "Timestamp": "2024-05-16T04:01:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.314600", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.309600", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.184600", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094600", + "Timestamp": "2024-05-16T03:47:57.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090600", + "Timestamp": "2024-05-16T03:47:57.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034600", + "Timestamp": "2024-05-16T03:47:57.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.824300", + "Timestamp": "2024-05-16T03:47:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.100400", + "Timestamp": "2024-05-16T03:47:53.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214500", + "Timestamp": "2024-05-16T03:47:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119600", + "Timestamp": "2024-05-16T03:47:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115900", + "Timestamp": "2024-05-16T03:47:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059600", + "Timestamp": "2024-05-16T03:47:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.414500", + "Timestamp": "2024-05-16T03:47:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T03:47:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.387000", + "Timestamp": "2024-05-16T03:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.357000", + "Timestamp": "2024-05-16T03:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.257000", + "Timestamp": "2024-05-16T03:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.521000", + "Timestamp": "2024-05-16T03:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.491000", + "Timestamp": "2024-05-16T03:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.391000", + "Timestamp": "2024-05-16T03:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.446800", + "Timestamp": "2024-05-16T03:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.441800", + "Timestamp": "2024-05-16T03:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.316800", + "Timestamp": "2024-05-16T03:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071400", + "Timestamp": "2024-05-16T03:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042400", + "Timestamp": "2024-05-16T03:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011400", + "Timestamp": "2024-05-16T03:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.718400", + "Timestamp": "2024-05-16T03:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.713400", + "Timestamp": "2024-05-16T03:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.588400", + "Timestamp": "2024-05-16T03:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.225300", + "Timestamp": "2024-05-16T03:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.220300", + "Timestamp": "2024-05-16T03:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.095300", + "Timestamp": "2024-05-16T03:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.711400", + "Timestamp": "2024-05-16T03:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.672200", + "Timestamp": "2024-05-16T03:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.667200", + "Timestamp": "2024-05-16T03:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.542200", + "Timestamp": "2024-05-16T03:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429800", + "Timestamp": "2024-05-16T03:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.854000", + "Timestamp": "2024-05-16T03:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.849000", + "Timestamp": "2024-05-16T03:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.724000", + "Timestamp": "2024-05-16T03:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.475200", + "Timestamp": "2024-05-16T03:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.470200", + "Timestamp": "2024-05-16T03:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.345200", + "Timestamp": "2024-05-16T03:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.492400", + "Timestamp": "2024-05-16T03:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.151000", + "Timestamp": "2024-05-16T03:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.831800", + "Timestamp": "2024-05-16T03:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.826800", + "Timestamp": "2024-05-16T03:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.701800", + "Timestamp": "2024-05-16T03:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.538300", + "Timestamp": "2024-05-16T03:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.533300", + "Timestamp": "2024-05-16T03:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.408300", + "Timestamp": "2024-05-16T03:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.892700", + "Timestamp": "2024-05-16T03:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130000", + "Timestamp": "2024-05-16T03:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T03:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070000", + "Timestamp": "2024-05-16T03:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.114000", + "Timestamp": "2024-05-16T03:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.109000", + "Timestamp": "2024-05-16T03:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.984000", + "Timestamp": "2024-05-16T03:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.259700", + "Timestamp": "2024-05-16T03:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.254700", + "Timestamp": "2024-05-16T03:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129700", + "Timestamp": "2024-05-16T03:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.051900", + "Timestamp": "2024-05-16T03:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109000", + "Timestamp": "2024-05-16T03:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104300", + "Timestamp": "2024-05-16T03:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.234500", + "Timestamp": "2024-05-16T03:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.650500", + "Timestamp": "2024-05-16T03:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.645500", + "Timestamp": "2024-05-16T03:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.520500", + "Timestamp": "2024-05-16T03:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.244000", + "Timestamp": "2024-05-16T03:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.239000", + "Timestamp": "2024-05-16T03:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.114000", + "Timestamp": "2024-05-16T03:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.607200", + "Timestamp": "2024-05-16T03:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.577200", + "Timestamp": "2024-05-16T03:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.477200", + "Timestamp": "2024-05-16T03:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.976300", + "Timestamp": "2024-05-16T03:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.971300", + "Timestamp": "2024-05-16T03:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.846300", + "Timestamp": "2024-05-16T03:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.118400", + "Timestamp": "2024-05-16T03:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.113400", + "Timestamp": "2024-05-16T03:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.988400", + "Timestamp": "2024-05-16T03:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.422000", + "Timestamp": "2024-05-16T03:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.417000", + "Timestamp": "2024-05-16T03:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.292000", + "Timestamp": "2024-05-16T03:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.028400", + "Timestamp": "2024-05-16T03:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.023400", + "Timestamp": "2024-05-16T03:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.898400", + "Timestamp": "2024-05-16T03:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.675800", + "Timestamp": "2024-05-16T03:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.670800", + "Timestamp": "2024-05-16T03:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.545800", + "Timestamp": "2024-05-16T03:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.438900", + "Timestamp": "2024-05-16T03:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.323500", + "Timestamp": "2024-05-16T03:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.318500", + "Timestamp": "2024-05-16T03:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.193500", + "Timestamp": "2024-05-16T03:47:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.648700", + "Timestamp": "2024-05-16T03:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.643700", + "Timestamp": "2024-05-16T03:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.518700", + "Timestamp": "2024-05-16T03:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.607600", + "Timestamp": "2024-05-16T03:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.602600", + "Timestamp": "2024-05-16T03:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.477600", + "Timestamp": "2024-05-16T03:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.589800", + "Timestamp": "2024-05-16T03:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211400", + "Timestamp": "2024-05-16T03:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.424700", + "Timestamp": "2024-05-16T03:47:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.344700", + "Timestamp": "2024-05-16T03:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.238100", + "Timestamp": "2024-05-16T03:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.233100", + "Timestamp": "2024-05-16T03:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T03:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.932700", + "Timestamp": "2024-05-16T03:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.634200", + "Timestamp": "2024-05-16T03:47:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.629200", + "Timestamp": "2024-05-16T03:47:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.504200", + "Timestamp": "2024-05-16T03:47:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.221900", + "Timestamp": "2024-05-16T03:47:00.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.867100", + "Timestamp": "2024-05-16T03:46:59.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.566400", + "Timestamp": "2024-05-16T03:46:59.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.026000", + "Timestamp": "2024-05-16T03:46:57.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T03:46:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T03:46:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050300", + "Timestamp": "2024-05-16T03:46:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.388200", + "Timestamp": "2024-05-16T03:46:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.383200", + "Timestamp": "2024-05-16T03:46:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.258200", + "Timestamp": "2024-05-16T03:46:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.313000", + "Timestamp": "2024-05-16T03:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.308000", + "Timestamp": "2024-05-16T03:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.183000", + "Timestamp": "2024-05-16T03:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T03:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T03:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048400", + "Timestamp": "2024-05-16T03:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.456800", + "Timestamp": "2024-05-16T03:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.451800", + "Timestamp": "2024-05-16T03:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.326800", + "Timestamp": "2024-05-16T03:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.420800", + "Timestamp": "2024-05-16T03:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.390800", + "Timestamp": "2024-05-16T03:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.290800", + "Timestamp": "2024-05-16T03:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143700", + "Timestamp": "2024-05-16T03:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140000", + "Timestamp": "2024-05-16T03:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083700", + "Timestamp": "2024-05-16T03:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T03:33:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.042300", + "Timestamp": "2024-05-16T03:33:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217700", + "Timestamp": "2024-05-16T03:32:57.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.475700", + "Timestamp": "2024-05-16T03:32:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.606100", + "Timestamp": "2024-05-16T03:32:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.204700", + "Timestamp": "2024-05-16T03:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.577000", + "Timestamp": "2024-05-16T03:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.003600", + "Timestamp": "2024-05-16T03:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297900", + "Timestamp": "2024-05-16T03:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267900", + "Timestamp": "2024-05-16T03:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167900", + "Timestamp": "2024-05-16T03:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.634300", + "Timestamp": "2024-05-16T03:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.389300", + "Timestamp": "2024-05-16T03:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.882900", + "Timestamp": "2024-05-16T03:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.877900", + "Timestamp": "2024-05-16T03:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.752900", + "Timestamp": "2024-05-16T03:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166900", + "Timestamp": "2024-05-16T03:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162900", + "Timestamp": "2024-05-16T03:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-16T03:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.942200", + "Timestamp": "2024-05-16T03:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.937200", + "Timestamp": "2024-05-16T03:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.812200", + "Timestamp": "2024-05-16T03:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.020000", + "Timestamp": "2024-05-16T03:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.015000", + "Timestamp": "2024-05-16T03:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.890000", + "Timestamp": "2024-05-16T03:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.547100", + "Timestamp": "2024-05-16T03:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.542100", + "Timestamp": "2024-05-16T03:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.417100", + "Timestamp": "2024-05-16T03:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167700", + "Timestamp": "2024-05-16T03:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164000", + "Timestamp": "2024-05-16T03:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T03:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067100", + "Timestamp": "2024-05-16T03:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038100", + "Timestamp": "2024-05-16T03:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007100", + "Timestamp": "2024-05-16T03:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.218400", + "Timestamp": "2024-05-16T03:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.188400", + "Timestamp": "2024-05-16T03:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.088400", + "Timestamp": "2024-05-16T03:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.510000", + "Timestamp": "2024-05-16T03:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223300", + "Timestamp": "2024-05-16T03:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.507400", + "Timestamp": "2024-05-16T03:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.932900", + "Timestamp": "2024-05-16T03:32:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.047700", + "Timestamp": "2024-05-16T03:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.042700", + "Timestamp": "2024-05-16T03:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.917700", + "Timestamp": "2024-05-16T03:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.802400", + "Timestamp": "2024-05-16T03:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.797400", + "Timestamp": "2024-05-16T03:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.672400", + "Timestamp": "2024-05-16T03:32:21.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.570700", + "Timestamp": "2024-05-16T03:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.730900", + "Timestamp": "2024-05-16T03:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.725900", + "Timestamp": "2024-05-16T03:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.600900", + "Timestamp": "2024-05-16T03:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.098300", + "Timestamp": "2024-05-16T03:32:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081300", + "Timestamp": "2024-05-16T03:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077600", + "Timestamp": "2024-05-16T03:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021300", + "Timestamp": "2024-05-16T03:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.681700", + "Timestamp": "2024-05-16T03:32:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "h1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.853500", + "Timestamp": "2024-05-16T03:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "h1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.823500", + "Timestamp": "2024-05-16T03:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "h1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.723500", + "Timestamp": "2024-05-16T03:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.402300", + "Timestamp": "2024-05-16T03:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.397300", + "Timestamp": "2024-05-16T03:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.272300", + "Timestamp": "2024-05-16T03:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084700", + "Timestamp": "2024-05-16T03:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.081000", + "Timestamp": "2024-05-16T03:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024700", + "Timestamp": "2024-05-16T03:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.384000", + "Timestamp": "2024-05-16T03:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.379000", + "Timestamp": "2024-05-16T03:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.254000", + "Timestamp": "2024-05-16T03:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.719500", + "Timestamp": "2024-05-16T03:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T03:31:59.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.809600", + "Timestamp": "2024-05-16T03:31:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.235400", + "Timestamp": "2024-05-16T03:31:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.230400", + "Timestamp": "2024-05-16T03:31:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.105400", + "Timestamp": "2024-05-16T03:31:53.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.146000", + "Timestamp": "2024-05-16T03:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.141000", + "Timestamp": "2024-05-16T03:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.016000", + "Timestamp": "2024-05-16T03:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.101800", + "Timestamp": "2024-05-16T03:31:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080400", + "Timestamp": "2024-05-16T03:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.051400", + "Timestamp": "2024-05-16T03:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020400", + "Timestamp": "2024-05-16T03:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.073700", + "Timestamp": "2024-05-16T03:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.068700", + "Timestamp": "2024-05-16T03:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.943700", + "Timestamp": "2024-05-16T03:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.023200", + "Timestamp": "2024-05-16T03:31:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.878600", + "Timestamp": "2024-05-16T03:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.099300", + "Timestamp": "2024-05-16T03:18:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213300", + "Timestamp": "2024-05-16T03:17:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.284400", + "Timestamp": "2024-05-16T03:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429500", + "Timestamp": "2024-05-16T03:17:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065100", + "Timestamp": "2024-05-16T03:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.035100", + "Timestamp": "2024-05-16T03:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005100", + "Timestamp": "2024-05-16T03:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218900", + "Timestamp": "2024-05-16T03:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104700", + "Timestamp": "2024-05-16T03:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073900", + "Timestamp": "2024-05-16T03:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044900", + "Timestamp": "2024-05-16T03:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013900", + "Timestamp": "2024-05-16T03:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.854800", + "Timestamp": "2024-05-16T03:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.946400", + "Timestamp": "2024-05-16T03:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.192600", + "Timestamp": "2024-05-16T03:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.189600", + "Timestamp": "2024-05-16T03:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.132600", + "Timestamp": "2024-05-16T03:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.152400", + "Timestamp": "2024-05-16T03:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.530700", + "Timestamp": "2024-05-16T03:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.527000", + "Timestamp": "2024-05-16T03:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.470700", + "Timestamp": "2024-05-16T03:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.484400", + "Timestamp": "2024-05-16T03:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.479400", + "Timestamp": "2024-05-16T03:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.354400", + "Timestamp": "2024-05-16T03:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.661900", + "Timestamp": "2024-05-16T03:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.631900", + "Timestamp": "2024-05-16T03:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.531900", + "Timestamp": "2024-05-16T03:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207600", + "Timestamp": "2024-05-16T03:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T03:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.066800", + "Timestamp": "2024-05-16T03:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.061800", + "Timestamp": "2024-05-16T03:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.936800", + "Timestamp": "2024-05-16T03:17:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.853600", + "Timestamp": "2024-05-16T03:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136900", + "Timestamp": "2024-05-16T03:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132900", + "Timestamp": "2024-05-16T03:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076900", + "Timestamp": "2024-05-16T03:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.228900", + "Timestamp": "2024-05-16T03:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.224900", + "Timestamp": "2024-05-16T03:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168900", + "Timestamp": "2024-05-16T03:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.138100", + "Timestamp": "2024-05-16T03:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.555000", + "Timestamp": "2024-05-16T03:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.550000", + "Timestamp": "2024-05-16T03:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.425000", + "Timestamp": "2024-05-16T03:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354700", + "Timestamp": "2024-05-16T03:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349700", + "Timestamp": "2024-05-16T03:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224700", + "Timestamp": "2024-05-16T03:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.419200", + "Timestamp": "2024-05-16T03:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.414200", + "Timestamp": "2024-05-16T03:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.289200", + "Timestamp": "2024-05-16T03:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109200", + "Timestamp": "2024-05-16T03:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.443800", + "Timestamp": "2024-05-16T03:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128600", + "Timestamp": "2024-05-16T03:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124900", + "Timestamp": "2024-05-16T03:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068600", + "Timestamp": "2024-05-16T03:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.757200", + "Timestamp": "2024-05-16T03:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.108500", + "Timestamp": "2024-05-16T03:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.078500", + "Timestamp": "2024-05-16T03:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.978500", + "Timestamp": "2024-05-16T03:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218500", + "Timestamp": "2024-05-16T03:17:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.926400", + "Timestamp": "2024-05-16T03:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.921400", + "Timestamp": "2024-05-16T03:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.796400", + "Timestamp": "2024-05-16T03:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.372800", + "Timestamp": "2024-05-16T03:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.246000", + "Timestamp": "2024-05-16T03:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.241000", + "Timestamp": "2024-05-16T03:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.116000", + "Timestamp": "2024-05-16T03:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.323600", + "Timestamp": "2024-05-16T03:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.970700", + "Timestamp": "2024-05-16T03:17:19.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.965700", + "Timestamp": "2024-05-16T03:17:19.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.840700", + "Timestamp": "2024-05-16T03:17:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.672200", + "Timestamp": "2024-05-16T03:17:17.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.859100", + "Timestamp": "2024-05-16T03:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T03:17:08.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-16T03:17:08.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041200", + "Timestamp": "2024-05-16T03:17:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.066100", + "Timestamp": "2024-05-16T03:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.036100", + "Timestamp": "2024-05-16T03:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.936100", + "Timestamp": "2024-05-16T03:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116100", + "Timestamp": "2024-05-16T03:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T03:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056100", + "Timestamp": "2024-05-16T03:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.240900", + "Timestamp": "2024-05-16T03:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.210900", + "Timestamp": "2024-05-16T03:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.110900", + "Timestamp": "2024-05-16T03:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.280700", + "Timestamp": "2024-05-16T03:17:00.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209300", + "Timestamp": "2024-05-16T03:16:57.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.534600", + "Timestamp": "2024-05-16T03:16:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.529600", + "Timestamp": "2024-05-16T03:16:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.404600", + "Timestamp": "2024-05-16T03:16:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.231200", + "Timestamp": "2024-05-16T03:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.271200", + "Timestamp": "2024-05-16T03:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171200", + "Timestamp": "2024-05-16T03:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.491500", + "Timestamp": "2024-05-16T03:16:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T03:03:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.202200", + "Timestamp": "2024-05-16T03:03:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.615600", + "Timestamp": "2024-05-16T03:03:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.610600", + "Timestamp": "2024-05-16T03:03:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.485600", + "Timestamp": "2024-05-16T03:03:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.821500", + "Timestamp": "2024-05-16T03:02:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.357300", + "Timestamp": "2024-05-16T03:02:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "h1.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.327300", + "Timestamp": "2024-05-16T03:02:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.227300", + "Timestamp": "2024-05-16T03:02:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.781300", + "Timestamp": "2024-05-16T03:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.678700", + "Timestamp": "2024-05-16T03:02:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.774600", + "Timestamp": "2024-05-16T03:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.769600", + "Timestamp": "2024-05-16T03:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.644600", + "Timestamp": "2024-05-16T03:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.867700", + "Timestamp": "2024-05-16T03:02:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.166800", + "Timestamp": "2024-05-16T03:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.161800", + "Timestamp": "2024-05-16T03:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.036800", + "Timestamp": "2024-05-16T03:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114700", + "Timestamp": "2024-05-16T03:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T03:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054700", + "Timestamp": "2024-05-16T03:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.216900", + "Timestamp": "2024-05-16T03:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.213200", + "Timestamp": "2024-05-16T03:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156900", + "Timestamp": "2024-05-16T03:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123900", + "Timestamp": "2024-05-16T03:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119900", + "Timestamp": "2024-05-16T03:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063900", + "Timestamp": "2024-05-16T03:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.502200", + "Timestamp": "2024-05-16T03:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.497200", + "Timestamp": "2024-05-16T03:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.372200", + "Timestamp": "2024-05-16T03:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.542900", + "Timestamp": "2024-05-16T03:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.537900", + "Timestamp": "2024-05-16T03:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.412900", + "Timestamp": "2024-05-16T03:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.234900", + "Timestamp": "2024-05-16T03:02:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.962400", + "Timestamp": "2024-05-16T03:02:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.549300", + "Timestamp": "2024-05-16T03:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.544300", + "Timestamp": "2024-05-16T03:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.419300", + "Timestamp": "2024-05-16T03:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.190300", + "Timestamp": "2024-05-16T03:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299000", + "Timestamp": "2024-05-16T03:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294000", + "Timestamp": "2024-05-16T03:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169000", + "Timestamp": "2024-05-16T03:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-16T03:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429400", + "Timestamp": "2024-05-16T03:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.193100", + "Timestamp": "2024-05-16T03:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.188100", + "Timestamp": "2024-05-16T03:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.063100", + "Timestamp": "2024-05-16T03:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.857200", + "Timestamp": "2024-05-16T03:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.602700", + "Timestamp": "2024-05-16T03:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.597700", + "Timestamp": "2024-05-16T03:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.472700", + "Timestamp": "2024-05-16T03:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.031100", + "Timestamp": "2024-05-16T03:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.026100", + "Timestamp": "2024-05-16T03:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.901100", + "Timestamp": "2024-05-16T03:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T03:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095500", + "Timestamp": "2024-05-16T03:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039200", + "Timestamp": "2024-05-16T03:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.445500", + "Timestamp": "2024-05-16T03:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.440500", + "Timestamp": "2024-05-16T03:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.315500", + "Timestamp": "2024-05-16T03:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062800", + "Timestamp": "2024-05-16T03:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002800", + "Timestamp": "2024-05-16T03:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002800", + "Timestamp": "2024-05-16T03:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099600", + "Timestamp": "2024-05-16T03:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-16T03:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039600", + "Timestamp": "2024-05-16T03:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.133300", + "Timestamp": "2024-05-16T03:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.991200", + "Timestamp": "2024-05-16T03:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.986200", + "Timestamp": "2024-05-16T03:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.861200", + "Timestamp": "2024-05-16T03:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136000", + "Timestamp": "2024-05-16T03:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132300", + "Timestamp": "2024-05-16T03:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076000", + "Timestamp": "2024-05-16T03:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.287500", + "Timestamp": "2024-05-16T03:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.257500", + "Timestamp": "2024-05-16T03:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157500", + "Timestamp": "2024-05-16T03:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.903200", + "Timestamp": "2024-05-16T03:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.436200", + "Timestamp": "2024-05-16T03:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.483700", + "Timestamp": "2024-05-16T03:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.478700", + "Timestamp": "2024-05-16T03:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.353700", + "Timestamp": "2024-05-16T03:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.458000", + "Timestamp": "2024-05-16T03:02:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116800", + "Timestamp": "2024-05-16T03:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.481900", + "Timestamp": "2024-05-16T03:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.451900", + "Timestamp": "2024-05-16T03:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.351900", + "Timestamp": "2024-05-16T03:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.651800", + "Timestamp": "2024-05-16T03:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.646800", + "Timestamp": "2024-05-16T03:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.521800", + "Timestamp": "2024-05-16T03:02:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.538500", + "Timestamp": "2024-05-16T03:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.533500", + "Timestamp": "2024-05-16T03:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.408500", + "Timestamp": "2024-05-16T03:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.117500", + "Timestamp": "2024-05-16T03:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.112500", + "Timestamp": "2024-05-16T03:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.987500", + "Timestamp": "2024-05-16T03:02:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.908000", + "Timestamp": "2024-05-16T03:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.903000", + "Timestamp": "2024-05-16T03:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.778000", + "Timestamp": "2024-05-16T03:02:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.730200", + "Timestamp": "2024-05-16T03:01:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.400000", + "Timestamp": "2024-05-16T02:58:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.400000", + "Timestamp": "2024-05-16T02:58:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.400000", + "Timestamp": "2024-05-16T02:58:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213200", + "Timestamp": "2024-05-16T02:47:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.425300", + "Timestamp": "2024-05-16T02:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.485900", + "Timestamp": "2024-05-16T02:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.398100", + "Timestamp": "2024-05-16T02:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.393100", + "Timestamp": "2024-05-16T02:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.268100", + "Timestamp": "2024-05-16T02:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.629600", + "Timestamp": "2024-05-16T02:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.599600", + "Timestamp": "2024-05-16T02:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.499600", + "Timestamp": "2024-05-16T02:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.808900", + "Timestamp": "2024-05-16T02:47:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.528400", + "Timestamp": "2024-05-16T02:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.288900", + "Timestamp": "2024-05-16T02:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.283900", + "Timestamp": "2024-05-16T02:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158900", + "Timestamp": "2024-05-16T02:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "gr6.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.902300", + "Timestamp": "2024-05-16T02:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094800", + "Timestamp": "2024-05-16T02:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090800", + "Timestamp": "2024-05-16T02:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034800", + "Timestamp": "2024-05-16T02:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120000", + "Timestamp": "2024-05-16T02:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116300", + "Timestamp": "2024-05-16T02:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060000", + "Timestamp": "2024-05-16T02:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166800", + "Timestamp": "2024-05-16T02:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162800", + "Timestamp": "2024-05-16T02:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T02:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081100", + "Timestamp": "2024-05-16T02:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121100", + "Timestamp": "2024-05-16T02:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021100", + "Timestamp": "2024-05-16T02:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105500", + "Timestamp": "2024-05-16T02:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118100", + "Timestamp": "2024-05-16T02:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114400", + "Timestamp": "2024-05-16T02:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058100", + "Timestamp": "2024-05-16T02:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.188700", + "Timestamp": "2024-05-16T02:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185000", + "Timestamp": "2024-05-16T02:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128700", + "Timestamp": "2024-05-16T02:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.808100", + "Timestamp": "2024-05-16T02:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "8.071700", + "Timestamp": "2024-05-16T02:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "8.041700", + "Timestamp": "2024-05-16T02:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.941700", + "Timestamp": "2024-05-16T02:47:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080700", + "Timestamp": "2024-05-16T02:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.051700", + "Timestamp": "2024-05-16T02:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020700", + "Timestamp": "2024-05-16T02:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089100", + "Timestamp": "2024-05-16T02:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085400", + "Timestamp": "2024-05-16T02:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029100", + "Timestamp": "2024-05-16T02:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.446900", + "Timestamp": "2024-05-16T02:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.244000", + "Timestamp": "2024-05-16T02:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.241000", + "Timestamp": "2024-05-16T02:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184000", + "Timestamp": "2024-05-16T02:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208100", + "Timestamp": "2024-05-16T02:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.657600", + "Timestamp": "2024-05-16T02:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.652600", + "Timestamp": "2024-05-16T02:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.527600", + "Timestamp": "2024-05-16T02:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.339300", + "Timestamp": "2024-05-16T02:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334300", + "Timestamp": "2024-05-16T02:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.209300", + "Timestamp": "2024-05-16T02:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.673200", + "Timestamp": "2024-05-16T02:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.667500", + "Timestamp": "2024-05-16T02:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.473900", + "Timestamp": "2024-05-16T02:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070300", + "Timestamp": "2024-05-16T02:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066600", + "Timestamp": "2024-05-16T02:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010300", + "Timestamp": "2024-05-16T02:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.902300", + "Timestamp": "2024-05-16T02:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.897300", + "Timestamp": "2024-05-16T02:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.772300", + "Timestamp": "2024-05-16T02:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215300", + "Timestamp": "2024-05-16T02:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.825600", + "Timestamp": "2024-05-16T02:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105300", + "Timestamp": "2024-05-16T02:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.515900", + "Timestamp": "2024-05-16T02:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.510900", + "Timestamp": "2024-05-16T02:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.385900", + "Timestamp": "2024-05-16T02:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094200", + "Timestamp": "2024-05-16T02:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090500", + "Timestamp": "2024-05-16T02:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034200", + "Timestamp": "2024-05-16T02:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.241900", + "Timestamp": "2024-05-16T02:46:59.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096200", + "Timestamp": "2024-05-16T02:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092200", + "Timestamp": "2024-05-16T02:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036200", + "Timestamp": "2024-05-16T02:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.723200", + "Timestamp": "2024-05-16T02:46:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.160500", + "Timestamp": "2024-05-16T02:46:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.155500", + "Timestamp": "2024-05-16T02:46:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.030500", + "Timestamp": "2024-05-16T02:46:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211100", + "Timestamp": "2024-05-16T02:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "vt1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.024000", + "Timestamp": "2024-05-16T02:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "vt1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.994000", + "Timestamp": "2024-05-16T02:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "vt1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.894000", + "Timestamp": "2024-05-16T02:46:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.534000", + "Timestamp": "2024-05-16T02:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.530300", + "Timestamp": "2024-05-16T02:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.474000", + "Timestamp": "2024-05-16T02:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.774400", + "Timestamp": "2024-05-16T02:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.769400", + "Timestamp": "2024-05-16T02:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.644400", + "Timestamp": "2024-05-16T02:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.205800", + "Timestamp": "2024-05-16T02:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.088500", + "Timestamp": "2024-05-16T02:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213700", + "Timestamp": "2024-05-16T02:46:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.345600", + "Timestamp": "2024-05-16T02:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.340600", + "Timestamp": "2024-05-16T02:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.215600", + "Timestamp": "2024-05-16T02:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T02:33:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.091900", + "Timestamp": "2024-05-16T02:33:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.205100", + "Timestamp": "2024-05-16T02:33:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.098900", + "Timestamp": "2024-05-16T02:32:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097000", + "Timestamp": "2024-05-16T02:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093300", + "Timestamp": "2024-05-16T02:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037000", + "Timestamp": "2024-05-16T02:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.619500", + "Timestamp": "2024-05-16T02:32:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.568200", + "Timestamp": "2024-05-16T02:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.563200", + "Timestamp": "2024-05-16T02:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.438200", + "Timestamp": "2024-05-16T02:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.273400", + "Timestamp": "2024-05-16T02:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.813700", + "Timestamp": "2024-05-16T02:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.272400", + "Timestamp": "2024-05-16T02:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267400", + "Timestamp": "2024-05-16T02:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142400", + "Timestamp": "2024-05-16T02:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T02:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121400", + "Timestamp": "2024-05-16T02:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065400", + "Timestamp": "2024-05-16T02:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.373800", + "Timestamp": "2024-05-16T02:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.844400", + "Timestamp": "2024-05-16T02:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.368800", + "Timestamp": "2024-05-16T02:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.839400", + "Timestamp": "2024-05-16T02:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.243800", + "Timestamp": "2024-05-16T02:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.714400", + "Timestamp": "2024-05-16T02:32:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113800", + "Timestamp": "2024-05-16T02:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-16T02:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053800", + "Timestamp": "2024-05-16T02:32:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.378500", + "Timestamp": "2024-05-16T02:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.373500", + "Timestamp": "2024-05-16T02:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.248500", + "Timestamp": "2024-05-16T02:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.404800", + "Timestamp": "2024-05-16T02:32:17.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330700", + "Timestamp": "2024-05-16T02:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325700", + "Timestamp": "2024-05-16T02:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200700", + "Timestamp": "2024-05-16T02:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.234800", + "Timestamp": "2024-05-16T02:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.458000", + "Timestamp": "2024-05-16T02:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212900", + "Timestamp": "2024-05-16T02:31:57.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.208500", + "Timestamp": "2024-05-16T02:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.204500", + "Timestamp": "2024-05-16T02:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148500", + "Timestamp": "2024-05-16T02:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129600", + "Timestamp": "2024-05-16T02:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125600", + "Timestamp": "2024-05-16T02:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069600", + "Timestamp": "2024-05-16T02:31:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.900100", + "Timestamp": "2024-05-16T02:31:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.895100", + "Timestamp": "2024-05-16T02:31:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.770100", + "Timestamp": "2024-05-16T02:31:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079000", + "Timestamp": "2024-05-16T02:31:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.050000", + "Timestamp": "2024-05-16T02:31:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019000", + "Timestamp": "2024-05-16T02:31:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098400", + "Timestamp": "2024-05-16T02:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094400", + "Timestamp": "2024-05-16T02:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038400", + "Timestamp": "2024-05-16T02:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121200", + "Timestamp": "2024-05-16T02:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117500", + "Timestamp": "2024-05-16T02:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061200", + "Timestamp": "2024-05-16T02:31:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.185600", + "Timestamp": "2024-05-16T02:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181900", + "Timestamp": "2024-05-16T02:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125600", + "Timestamp": "2024-05-16T02:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092800", + "Timestamp": "2024-05-16T02:18:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089100", + "Timestamp": "2024-05-16T02:18:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032800", + "Timestamp": "2024-05-16T02:18:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.056900", + "Timestamp": "2024-05-16T02:18:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225300", + "Timestamp": "2024-05-16T02:17:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121400", + "Timestamp": "2024-05-16T02:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.511600", + "Timestamp": "2024-05-16T02:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148100", + "Timestamp": "2024-05-16T02:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144100", + "Timestamp": "2024-05-16T02:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-16T02:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.959000", + "Timestamp": "2024-05-16T02:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.868700", + "Timestamp": "2024-05-16T02:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.863700", + "Timestamp": "2024-05-16T02:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.738700", + "Timestamp": "2024-05-16T02:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.507800", + "Timestamp": "2024-05-16T02:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063400", + "Timestamp": "2024-05-16T02:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003400", + "Timestamp": "2024-05-16T02:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003400", + "Timestamp": "2024-05-16T02:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.604400", + "Timestamp": "2024-05-16T02:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.599400", + "Timestamp": "2024-05-16T02:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.474400", + "Timestamp": "2024-05-16T02:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.190700", + "Timestamp": "2024-05-16T02:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.187000", + "Timestamp": "2024-05-16T02:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130700", + "Timestamp": "2024-05-16T02:17:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123500", + "Timestamp": "2024-05-16T02:16:59.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119800", + "Timestamp": "2024-05-16T02:16:59.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063500", + "Timestamp": "2024-05-16T02:16:59.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.837000", + "Timestamp": "2024-05-16T02:16:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.650400", + "Timestamp": "2024-05-16T02:16:53.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089100", + "Timestamp": "2024-05-16T02:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085400", + "Timestamp": "2024-05-16T02:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029100", + "Timestamp": "2024-05-16T02:16:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.376900", + "Timestamp": "2024-05-16T02:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.371900", + "Timestamp": "2024-05-16T02:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.246900", + "Timestamp": "2024-05-16T02:16:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.458400", + "Timestamp": "2024-05-16T02:16:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206300", + "Timestamp": "2024-05-16T02:16:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069000", + "Timestamp": "2024-05-16T02:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040000", + "Timestamp": "2024-05-16T02:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009000", + "Timestamp": "2024-05-16T02:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218800", + "Timestamp": "2024-05-16T02:16:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.783300", + "Timestamp": "2024-05-16T02:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146500", + "Timestamp": "2024-05-16T02:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.186500", + "Timestamp": "2024-05-16T02:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086500", + "Timestamp": "2024-05-16T02:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360700", + "Timestamp": "2024-05-16T02:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.355700", + "Timestamp": "2024-05-16T02:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230700", + "Timestamp": "2024-05-16T02:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.455000", + "Timestamp": "2024-05-16T02:02:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.910200", + "Timestamp": "2024-05-16T02:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074900", + "Timestamp": "2024-05-16T02:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.045900", + "Timestamp": "2024-05-16T02:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014900", + "Timestamp": "2024-05-16T02:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115700", + "Timestamp": "2024-05-16T02:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-16T02:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055700", + "Timestamp": "2024-05-16T02:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165600", + "Timestamp": "2024-05-16T02:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.205600", + "Timestamp": "2024-05-16T02:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T02:02:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090200", + "Timestamp": "2024-05-16T02:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086500", + "Timestamp": "2024-05-16T02:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030200", + "Timestamp": "2024-05-16T02:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T02:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.456900", + "Timestamp": "2024-05-16T02:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.451900", + "Timestamp": "2024-05-16T02:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.326900", + "Timestamp": "2024-05-16T02:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.304900", + "Timestamp": "2024-05-16T02:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.274900", + "Timestamp": "2024-05-16T02:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.174900", + "Timestamp": "2024-05-16T02:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094500", + "Timestamp": "2024-05-16T02:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090800", + "Timestamp": "2024-05-16T02:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034500", + "Timestamp": "2024-05-16T02:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091000", + "Timestamp": "2024-05-16T02:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087300", + "Timestamp": "2024-05-16T02:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031000", + "Timestamp": "2024-05-16T02:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g6.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.876900", + "Timestamp": "2024-05-16T02:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.532900", + "Timestamp": "2024-05-16T02:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.527900", + "Timestamp": "2024-05-16T02:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.402900", + "Timestamp": "2024-05-16T02:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.836300", + "Timestamp": "2024-05-16T02:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093700", + "Timestamp": "2024-05-16T02:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089700", + "Timestamp": "2024-05-16T02:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033700", + "Timestamp": "2024-05-16T02:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074800", + "Timestamp": "2024-05-16T02:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071100", + "Timestamp": "2024-05-16T02:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014800", + "Timestamp": "2024-05-16T02:01:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.455000", + "Timestamp": "2024-05-16T02:01:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.450000", + "Timestamp": "2024-05-16T02:01:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.325000", + "Timestamp": "2024-05-16T02:01:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074000", + "Timestamp": "2024-05-16T01:48:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.045000", + "Timestamp": "2024-05-16T01:48:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014000", + "Timestamp": "2024-05-16T01:48:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.366600", + "Timestamp": "2024-05-16T01:47:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.940400", + "Timestamp": "2024-05-16T01:47:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.433100", + "Timestamp": "2024-05-16T01:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162600", + "Timestamp": "2024-05-16T01:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.202600", + "Timestamp": "2024-05-16T01:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-16T01:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.183600", + "Timestamp": "2024-05-16T01:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179900", + "Timestamp": "2024-05-16T01:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123600", + "Timestamp": "2024-05-16T01:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074000", + "Timestamp": "2024-05-16T01:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.045000", + "Timestamp": "2024-05-16T01:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014000", + "Timestamp": "2024-05-16T01:47:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091200", + "Timestamp": "2024-05-16T01:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087500", + "Timestamp": "2024-05-16T01:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031200", + "Timestamp": "2024-05-16T01:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218300", + "Timestamp": "2024-05-16T01:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142000", + "Timestamp": "2024-05-16T01:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138300", + "Timestamp": "2024-05-16T01:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082000", + "Timestamp": "2024-05-16T01:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.349800", + "Timestamp": "2024-05-16T01:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.344800", + "Timestamp": "2024-05-16T01:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219800", + "Timestamp": "2024-05-16T01:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.419400", + "Timestamp": "2024-05-16T01:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.389400", + "Timestamp": "2024-05-16T01:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.289400", + "Timestamp": "2024-05-16T01:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.662300", + "Timestamp": "2024-05-16T01:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110900", + "Timestamp": "2024-05-16T01:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150900", + "Timestamp": "2024-05-16T01:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050900", + "Timestamp": "2024-05-16T01:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094900", + "Timestamp": "2024-05-16T01:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091200", + "Timestamp": "2024-05-16T01:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034900", + "Timestamp": "2024-05-16T01:47:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.438800", + "Timestamp": "2024-05-16T01:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108900", + "Timestamp": "2024-05-16T01:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T01:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048900", + "Timestamp": "2024-05-16T01:47:06.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.647200", + "Timestamp": "2024-05-16T01:47:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.405700", + "Timestamp": "2024-05-16T01:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.392900", + "Timestamp": "2024-05-16T01:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.387900", + "Timestamp": "2024-05-16T01:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.262900", + "Timestamp": "2024-05-16T01:46:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132800", + "Timestamp": "2024-05-16T01:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172800", + "Timestamp": "2024-05-16T01:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072800", + "Timestamp": "2024-05-16T01:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083000", + "Timestamp": "2024-05-16T01:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079300", + "Timestamp": "2024-05-16T01:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023000", + "Timestamp": "2024-05-16T01:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-16T01:43:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-16T01:32:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094400", + "Timestamp": "2024-05-16T01:32:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038100", + "Timestamp": "2024-05-16T01:32:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-16T01:32:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T01:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T01:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051400", + "Timestamp": "2024-05-16T01:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.766600", + "Timestamp": "2024-05-16T01:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.761600", + "Timestamp": "2024-05-16T01:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.636600", + "Timestamp": "2024-05-16T01:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.507000", + "Timestamp": "2024-05-16T01:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.502000", + "Timestamp": "2024-05-16T01:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.377000", + "Timestamp": "2024-05-16T01:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.190500", + "Timestamp": "2024-05-16T01:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225300", + "Timestamp": "2024-05-16T01:32:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213200", + "Timestamp": "2024-05-16T01:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.358100", + "Timestamp": "2024-05-16T01:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.354100", + "Timestamp": "2024-05-16T01:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.298100", + "Timestamp": "2024-05-16T01:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.196700", + "Timestamp": "2024-05-16T01:32:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.058000", + "Timestamp": "2024-05-16T01:31:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.438300", + "Timestamp": "2024-05-16T01:31:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123700", + "Timestamp": "2024-05-16T01:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119700", + "Timestamp": "2024-05-16T01:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063700", + "Timestamp": "2024-05-16T01:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.183300", + "Timestamp": "2024-05-16T01:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179300", + "Timestamp": "2024-05-16T01:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123300", + "Timestamp": "2024-05-16T01:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154600", + "Timestamp": "2024-05-16T01:31:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150900", + "Timestamp": "2024-05-16T01:31:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094600", + "Timestamp": "2024-05-16T01:31:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089100", + "Timestamp": "2024-05-16T01:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129100", + "Timestamp": "2024-05-16T01:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029100", + "Timestamp": "2024-05-16T01:31:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005100", + "Timestamp": "2024-05-16T01:21:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103400", + "Timestamp": "2024-05-16T01:18:50.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.204900", + "Timestamp": "2024-05-16T01:17:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225100", + "Timestamp": "2024-05-16T01:17:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074900", + "Timestamp": "2024-05-16T01:17:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071200", + "Timestamp": "2024-05-16T01:17:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014900", + "Timestamp": "2024-05-16T01:17:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211500", + "Timestamp": "2024-05-16T01:17:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.870900", + "Timestamp": "2024-05-16T01:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.901300", + "Timestamp": "2024-05-16T01:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158400", + "Timestamp": "2024-05-16T01:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154700", + "Timestamp": "2024-05-16T01:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098400", + "Timestamp": "2024-05-16T01:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210600", + "Timestamp": "2024-05-16T01:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157500", + "Timestamp": "2024-05-16T01:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153800", + "Timestamp": "2024-05-16T01:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-16T01:17:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218600", + "Timestamp": "2024-05-16T01:17:19.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102700", + "Timestamp": "2024-05-16T01:17:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.181600", + "Timestamp": "2024-05-16T01:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.176600", + "Timestamp": "2024-05-16T01:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051600", + "Timestamp": "2024-05-16T01:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.833200", + "Timestamp": "2024-05-16T01:17:03.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061200", + "Timestamp": "2024-05-16T01:17:00.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001200", + "Timestamp": "2024-05-16T01:17:00.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001200", + "Timestamp": "2024-05-16T01:17:00.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210000", + "Timestamp": "2024-05-16T01:16:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062300", + "Timestamp": "2024-05-16T01:12:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002300", + "Timestamp": "2024-05-16T01:12:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002300", + "Timestamp": "2024-05-16T01:12:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.020700", + "Timestamp": "2024-05-16T01:06:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.415000", + "Timestamp": "2024-05-16T01:03:22.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066500", + "Timestamp": "2024-05-16T01:03:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073900", + "Timestamp": "2024-05-16T01:03:18.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037500", + "Timestamp": "2024-05-16T01:03:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044900", + "Timestamp": "2024-05-16T01:03:18.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006500", + "Timestamp": "2024-05-16T01:03:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013900", + "Timestamp": "2024-05-16T01:03:18.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.879700", + "Timestamp": "2024-05-16T01:02:59.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.410500", + "Timestamp": "2024-05-16T01:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206600", + "Timestamp": "2024-05-16T01:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.722000", + "Timestamp": "2024-05-16T01:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.732700", + "Timestamp": "2024-05-16T01:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.727700", + "Timestamp": "2024-05-16T01:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.602700", + "Timestamp": "2024-05-16T01:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126200", + "Timestamp": "2024-05-16T01:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122200", + "Timestamp": "2024-05-16T01:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066200", + "Timestamp": "2024-05-16T01:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096800", + "Timestamp": "2024-05-16T01:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093100", + "Timestamp": "2024-05-16T01:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036800", + "Timestamp": "2024-05-16T01:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T01:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-16T01:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041200", + "Timestamp": "2024-05-16T01:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-16T01:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152600", + "Timestamp": "2024-05-16T01:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052600", + "Timestamp": "2024-05-16T01:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T01:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.097800", + "Timestamp": "2024-05-16T01:02:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221400", + "Timestamp": "2024-05-16T01:02:24.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T01:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T01:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049400", + "Timestamp": "2024-05-16T01:02:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.937000", + "Timestamp": "2024-05-16T01:02:19.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.434100", + "Timestamp": "2024-05-16T01:02:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171300", + "Timestamp": "2024-05-16T01:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167300", + "Timestamp": "2024-05-16T01:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111300", + "Timestamp": "2024-05-16T01:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.805400", + "Timestamp": "2024-05-16T00:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T00:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099300", + "Timestamp": "2024-05-16T00:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043300", + "Timestamp": "2024-05-16T00:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-16T00:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071700", + "Timestamp": "2024-05-16T00:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068000", + "Timestamp": "2024-05-16T00:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011700", + "Timestamp": "2024-05-16T00:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080600", + "Timestamp": "2024-05-16T00:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.051600", + "Timestamp": "2024-05-16T00:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020600", + "Timestamp": "2024-05-16T00:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.048000", + "Timestamp": "2024-05-16T00:47:26.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.428400", + "Timestamp": "2024-05-16T00:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.457900", + "Timestamp": "2024-05-16T00:47:19.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136500", + "Timestamp": "2024-05-16T00:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132800", + "Timestamp": "2024-05-16T00:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076500", + "Timestamp": "2024-05-16T00:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125100", + "Timestamp": "2024-05-16T00:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121400", + "Timestamp": "2024-05-16T00:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065100", + "Timestamp": "2024-05-16T00:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-16T00:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-16T00:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040200", + "Timestamp": "2024-05-16T00:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140600", + "Timestamp": "2024-05-16T00:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136600", + "Timestamp": "2024-05-16T00:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080600", + "Timestamp": "2024-05-16T00:47:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062100", + "Timestamp": "2024-05-16T00:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002100", + "Timestamp": "2024-05-16T00:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002100", + "Timestamp": "2024-05-16T00:47:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418300", + "Timestamp": "2024-05-16T00:46:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116300", + "Timestamp": "2024-05-16T00:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-16T00:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056300", + "Timestamp": "2024-05-16T00:46:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010300", + "Timestamp": "2024-05-16T00:40:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010300", + "Timestamp": "2024-05-16T00:40:40.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T00:35:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148000", + "Timestamp": "2024-05-16T00:32:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144300", + "Timestamp": "2024-05-16T00:32:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088000", + "Timestamp": "2024-05-16T00:32:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218400", + "Timestamp": "2024-05-16T00:32:53.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061000", + "Timestamp": "2024-05-16T00:32:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001000", + "Timestamp": "2024-05-16T00:32:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001000", + "Timestamp": "2024-05-16T00:32:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.841300", + "Timestamp": "2024-05-16T00:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.471000", + "Timestamp": "2024-05-16T00:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.441000", + "Timestamp": "2024-05-16T00:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.341000", + "Timestamp": "2024-05-16T00:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068500", + "Timestamp": "2024-05-16T00:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039500", + "Timestamp": "2024-05-16T00:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008500", + "Timestamp": "2024-05-16T00:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.944100", + "Timestamp": "2024-05-16T00:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T00:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.023600", + "Timestamp": "2024-05-16T00:32:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T00:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T00:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050000", + "Timestamp": "2024-05-16T00:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.236300", + "Timestamp": "2024-05-16T00:32:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T00:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099500", + "Timestamp": "2024-05-16T00:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043500", + "Timestamp": "2024-05-16T00:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.221800", + "Timestamp": "2024-05-16T00:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.221800", + "Timestamp": "2024-05-16T00:31:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.274000", + "Timestamp": "2024-05-16T00:30:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.274000", + "Timestamp": "2024-05-16T00:30:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.274000", + "Timestamp": "2024-05-16T00:30:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.484700", + "Timestamp": "2024-05-16T00:18:00.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.845600", + "Timestamp": "2024-05-16T00:17:59.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T00:17:57.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.389900", + "Timestamp": "2024-05-16T00:17:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.915900", + "Timestamp": "2024-05-16T00:17:50.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.494100", + "Timestamp": "2024-05-16T00:17:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.489100", + "Timestamp": "2024-05-16T00:17:49.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.364100", + "Timestamp": "2024-05-16T00:17:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.878800", + "Timestamp": "2024-05-16T00:17:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106200", + "Timestamp": "2024-05-16T00:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T00:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046200", + "Timestamp": "2024-05-16T00:17:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.280700", + "Timestamp": "2024-05-16T00:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010500", + "Timestamp": "2024-05-16T00:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.671600", + "Timestamp": "2024-05-16T00:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T00:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T00:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.420500", + "Timestamp": "2024-05-16T00:17:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.600600", + "Timestamp": "2024-05-16T00:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.595600", + "Timestamp": "2024-05-16T00:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.470600", + "Timestamp": "2024-05-16T00:17:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-16T00:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T00:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054500", + "Timestamp": "2024-05-16T00:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-16T00:17:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137300", + "Timestamp": "2024-05-16T00:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133300", + "Timestamp": "2024-05-16T00:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077300", + "Timestamp": "2024-05-16T00:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208300", + "Timestamp": "2024-05-16T00:17:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t1.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064200", + "Timestamp": "2024-05-16T00:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t1.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004200", + "Timestamp": "2024-05-16T00:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t1.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004200", + "Timestamp": "2024-05-16T00:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.020900", + "Timestamp": "2024-05-16T00:05:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-16T00:02:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.450300", + "Timestamp": "2024-05-16T00:02:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T00:02:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215400", + "Timestamp": "2024-05-16T00:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105300", + "Timestamp": "2024-05-16T00:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101600", + "Timestamp": "2024-05-16T00:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045300", + "Timestamp": "2024-05-16T00:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128200", + "Timestamp": "2024-05-16T00:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124500", + "Timestamp": "2024-05-16T00:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068200", + "Timestamp": "2024-05-16T00:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.394600", + "Timestamp": "2024-05-16T00:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.389600", + "Timestamp": "2024-05-16T00:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.264600", + "Timestamp": "2024-05-16T00:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207000", + "Timestamp": "2024-05-16T00:01:59.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.840600", + "Timestamp": "2024-05-16T00:01:57.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.850000", + "Timestamp": "2024-05-16T00:01:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.850000", + "Timestamp": "2024-05-16T00:01:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.850000", + "Timestamp": "2024-05-16T00:01:52.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.298700", + "Timestamp": "2024-05-16T00:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.293700", + "Timestamp": "2024-05-16T00:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.168700", + "Timestamp": "2024-05-16T00:01:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.443200", + "Timestamp": "2024-05-15T23:57:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.443200", + "Timestamp": "2024-05-15T23:57:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.443200", + "Timestamp": "2024-05-15T23:57:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.443200", + "Timestamp": "2024-05-15T23:57:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.610900", + "Timestamp": "2024-05-15T23:54:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.610900", + "Timestamp": "2024-05-15T23:54:56.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.610900", + "Timestamp": "2024-05-15T23:54:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.443200", + "Timestamp": "2024-05-15T23:51:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.443200", + "Timestamp": "2024-05-15T23:51:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.443200", + "Timestamp": "2024-05-15T23:51:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063500", + "Timestamp": "2024-05-15T23:48:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003500", + "Timestamp": "2024-05-15T23:48:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003500", + "Timestamp": "2024-05-15T23:48:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068500", + "Timestamp": "2024-05-15T23:47:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039500", + "Timestamp": "2024-05-15T23:47:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008500", + "Timestamp": "2024-05-15T23:47:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210800", + "Timestamp": "2024-05-15T23:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.205500", + "Timestamp": "2024-05-15T23:47:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-15T23:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.818600", + "Timestamp": "2024-05-15T23:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.209000", + "Timestamp": "2024-05-15T23:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.205300", + "Timestamp": "2024-05-15T23:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149000", + "Timestamp": "2024-05-15T23:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.449200", + "Timestamp": "2024-05-15T23:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.869200", + "Timestamp": "2024-05-15T23:47:12.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.312000", + "Timestamp": "2024-05-15T23:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.307000", + "Timestamp": "2024-05-15T23:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.182000", + "Timestamp": "2024-05-15T23:47:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.292300", + "Timestamp": "2024-05-15T23:47:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262300", + "Timestamp": "2024-05-15T23:47:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162300", + "Timestamp": "2024-05-15T23:47:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.201100", + "Timestamp": "2024-05-15T23:46:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196100", + "Timestamp": "2024-05-15T23:46:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071100", + "Timestamp": "2024-05-15T23:46:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.534800", + "Timestamp": "2024-05-15T23:40:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.534800", + "Timestamp": "2024-05-15T23:40:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010200", + "Timestamp": "2024-05-15T23:39:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010400", + "Timestamp": "2024-05-15T23:39:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010400", + "Timestamp": "2024-05-15T23:39:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-15T23:32:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144000", + "Timestamp": "2024-05-15T23:32:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044000", + "Timestamp": "2024-05-15T23:32:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.325300", + "Timestamp": "2024-05-15T23:32:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.716800", + "Timestamp": "2024-05-15T23:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.711800", + "Timestamp": "2024-05-15T23:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.586800", + "Timestamp": "2024-05-15T23:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.301900", + "Timestamp": "2024-05-15T23:32:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207500", + "Timestamp": "2024-05-15T23:32:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.450800", + "Timestamp": "2024-05-15T23:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301500", + "Timestamp": "2024-05-15T23:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.271500", + "Timestamp": "2024-05-15T23:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g6.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171500", + "Timestamp": "2024-05-15T23:32:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206700", + "Timestamp": "2024-05-15T23:32:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.278500", + "Timestamp": "2024-05-15T23:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.273500", + "Timestamp": "2024-05-15T23:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.148500", + "Timestamp": "2024-05-15T23:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095400", + "Timestamp": "2024-05-15T23:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091700", + "Timestamp": "2024-05-15T23:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035400", + "Timestamp": "2024-05-15T23:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.691500", + "Timestamp": "2024-05-15T23:32:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113400", + "Timestamp": "2024-05-15T23:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-15T23:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053400", + "Timestamp": "2024-05-15T23:32:04.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073600", + "Timestamp": "2024-05-15T23:32:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069900", + "Timestamp": "2024-05-15T23:32:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013600", + "Timestamp": "2024-05-15T23:32:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.503400", + "Timestamp": "2024-05-15T23:31:59.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473400", + "Timestamp": "2024-05-15T23:31:59.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.373400", + "Timestamp": "2024-05-15T23:31:59.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089000", + "Timestamp": "2024-05-15T23:31:55.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085000", + "Timestamp": "2024-05-15T23:31:55.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029000", + "Timestamp": "2024-05-15T23:31:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.556800", + "Timestamp": "2024-05-15T23:28:00.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.556800", + "Timestamp": "2024-05-15T23:28:00.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.259000", + "Timestamp": "2024-05-15T23:26:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.259000", + "Timestamp": "2024-05-15T23:26:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.534800", + "Timestamp": "2024-05-15T23:25:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.534800", + "Timestamp": "2024-05-15T23:25:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.534800", + "Timestamp": "2024-05-15T23:25:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-15T23:18:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.198400", + "Timestamp": "2024-05-15T23:18:11.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.198400", + "Timestamp": "2024-05-15T23:18:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.198400", + "Timestamp": "2024-05-15T23:18:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.198900", + "Timestamp": "2024-05-15T23:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-15T23:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119600", + "Timestamp": "2024-05-15T23:17:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229800", + "Timestamp": "2024-05-15T23:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.204600", + "Timestamp": "2024-05-15T23:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-15T23:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.825500", + "Timestamp": "2024-05-15T23:17:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.820500", + "Timestamp": "2024-05-15T23:17:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.695500", + "Timestamp": "2024-05-15T23:17:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083700", + "Timestamp": "2024-05-15T23:16:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.054700", + "Timestamp": "2024-05-15T23:16:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023700", + "Timestamp": "2024-05-15T23:16:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.436000", + "Timestamp": "2024-05-15T23:16:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.464500", + "Timestamp": "2024-05-15T23:16:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.280400", + "Timestamp": "2024-05-15T23:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.275400", + "Timestamp": "2024-05-15T23:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150400", + "Timestamp": "2024-05-15T23:16:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.540300", + "Timestamp": "2024-05-15T23:02:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.194900", + "Timestamp": "2024-05-15T23:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417800", + "Timestamp": "2024-05-15T23:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113500", + "Timestamp": "2024-05-15T23:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-15T23:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053500", + "Timestamp": "2024-05-15T23:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.814000", + "Timestamp": "2024-05-15T23:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138200", + "Timestamp": "2024-05-15T23:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134500", + "Timestamp": "2024-05-15T23:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078200", + "Timestamp": "2024-05-15T23:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-15T23:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297900", + "Timestamp": "2024-05-15T23:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.292900", + "Timestamp": "2024-05-15T23:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167900", + "Timestamp": "2024-05-15T23:02:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098000", + "Timestamp": "2024-05-15T23:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094300", + "Timestamp": "2024-05-15T23:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038000", + "Timestamp": "2024-05-15T23:02:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215500", + "Timestamp": "2024-05-15T22:48:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.482800", + "Timestamp": "2024-05-15T22:47:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-15T22:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.259100", + "Timestamp": "2024-05-15T22:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.203300", + "Timestamp": "2024-05-15T22:47:35.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-15T22:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.411300", + "Timestamp": "2024-05-15T22:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.492900", + "Timestamp": "2024-05-15T22:46:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212300", + "Timestamp": "2024-05-15T22:32:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.637900", + "Timestamp": "2024-05-15T22:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163800", + "Timestamp": "2024-05-15T22:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.203800", + "Timestamp": "2024-05-15T22:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-15T22:32:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135600", + "Timestamp": "2024-05-15T22:32:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131600", + "Timestamp": "2024-05-15T22:32:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075600", + "Timestamp": "2024-05-15T22:32:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075300", + "Timestamp": "2024-05-15T22:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071600", + "Timestamp": "2024-05-15T22:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015300", + "Timestamp": "2024-05-15T22:32:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085000", + "Timestamp": "2024-05-15T22:31:58.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.081300", + "Timestamp": "2024-05-15T22:31:58.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025000", + "Timestamp": "2024-05-15T22:31:58.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.453700", + "Timestamp": "2024-05-15T22:31:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.227700", + "Timestamp": "2024-05-15T22:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126500", + "Timestamp": "2024-05-15T22:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122800", + "Timestamp": "2024-05-15T22:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066500", + "Timestamp": "2024-05-15T22:31:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.475300", + "Timestamp": "2024-05-15T22:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.043600", + "Timestamp": "2024-05-15T22:17:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.452100", + "Timestamp": "2024-05-15T22:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217700", + "Timestamp": "2024-05-15T22:17:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-15T22:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140300", + "Timestamp": "2024-05-15T22:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040300", + "Timestamp": "2024-05-15T22:17:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.072900", + "Timestamp": "2024-05-15T22:17:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107900", + "Timestamp": "2024-05-15T22:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069000", + "Timestamp": "2024-05-15T22:09:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040000", + "Timestamp": "2024-05-15T22:09:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009000", + "Timestamp": "2024-05-15T22:09:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069000", + "Timestamp": "2024-05-15T22:08:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073100", + "Timestamp": "2024-05-15T22:08:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078000", + "Timestamp": "2024-05-15T22:08:04.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065300", + "Timestamp": "2024-05-15T22:08:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069400", + "Timestamp": "2024-05-15T22:08:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074300", + "Timestamp": "2024-05-15T22:08:04.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009000", + "Timestamp": "2024-05-15T22:08:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013100", + "Timestamp": "2024-05-15T22:08:04.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018000", + "Timestamp": "2024-05-15T22:08:04.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.421900", + "Timestamp": "2024-05-15T22:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-15T22:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103600", + "Timestamp": "2024-05-15T22:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047300", + "Timestamp": "2024-05-15T22:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-15T22:02:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432900", + "Timestamp": "2024-05-15T22:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071500", + "Timestamp": "2024-05-15T22:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067800", + "Timestamp": "2024-05-15T22:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011500", + "Timestamp": "2024-05-15T22:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.381700", + "Timestamp": "2024-05-15T22:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.403300", + "Timestamp": "2024-05-15T22:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.398300", + "Timestamp": "2024-05-15T22:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.273300", + "Timestamp": "2024-05-15T22:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.205700", + "Timestamp": "2024-05-15T22:02:10.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.750200", + "Timestamp": "2024-05-15T22:02:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121700", + "Timestamp": "2024-05-15T22:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117700", + "Timestamp": "2024-05-15T22:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061700", + "Timestamp": "2024-05-15T22:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.421000", + "Timestamp": "2024-05-15T22:01:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.416000", + "Timestamp": "2024-05-15T22:01:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.291000", + "Timestamp": "2024-05-15T22:01:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-15T21:48:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115300", + "Timestamp": "2024-05-15T21:47:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-15T21:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101900", + "Timestamp": "2024-05-15T21:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045600", + "Timestamp": "2024-05-15T21:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109000", + "Timestamp": "2024-05-15T21:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.428400", + "Timestamp": "2024-05-15T21:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145400", + "Timestamp": "2024-05-15T21:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141700", + "Timestamp": "2024-05-15T21:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085400", + "Timestamp": "2024-05-15T21:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098000", + "Timestamp": "2024-05-15T21:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094300", + "Timestamp": "2024-05-15T21:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038000", + "Timestamp": "2024-05-15T21:47:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102300", + "Timestamp": "2024-05-15T21:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098600", + "Timestamp": "2024-05-15T21:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042300", + "Timestamp": "2024-05-15T21:46:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7iz.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-15T21:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063100", + "Timestamp": "2024-05-15T21:45:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063100", + "Timestamp": "2024-05-15T21:45:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063300", + "Timestamp": "2024-05-15T21:45:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003100", + "Timestamp": "2024-05-15T21:45:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003100", + "Timestamp": "2024-05-15T21:45:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003300", + "Timestamp": "2024-05-15T21:45:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003100", + "Timestamp": "2024-05-15T21:45:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003100", + "Timestamp": "2024-05-15T21:45:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003300", + "Timestamp": "2024-05-15T21:45:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067900", + "Timestamp": "2024-05-15T21:45:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.064200", + "Timestamp": "2024-05-15T21:45:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007900", + "Timestamp": "2024-05-15T21:45:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-15T21:45:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092800", + "Timestamp": "2024-05-15T21:45:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036500", + "Timestamp": "2024-05-15T21:45:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.040900", + "Timestamp": "2024-05-15T21:45:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.023000", + "Timestamp": "2024-05-15T21:44:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.023700", + "Timestamp": "2024-05-15T21:44:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.070000", + "Timestamp": "2024-05-15T21:44:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.070200", + "Timestamp": "2024-05-15T21:44:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.230400", + "Timestamp": "2024-05-15T21:44:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.230400", + "Timestamp": "2024-05-15T21:44:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074300", + "Timestamp": "2024-05-15T21:44:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070600", + "Timestamp": "2024-05-15T21:44:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014300", + "Timestamp": "2024-05-15T21:44:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206100", + "Timestamp": "2024-05-15T21:44:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.139200", + "Timestamp": "2024-05-15T21:43:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.139200", + "Timestamp": "2024-05-15T21:43:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.696000", + "Timestamp": "2024-05-15T21:42:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.696000", + "Timestamp": "2024-05-15T21:42:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.860800", + "Timestamp": "2024-05-15T21:40:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.069500", + "Timestamp": "2024-05-15T21:38:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.069500", + "Timestamp": "2024-05-15T21:38:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.069500", + "Timestamp": "2024-05-15T21:38:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.599200", + "Timestamp": "2024-05-15T21:35:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.599200", + "Timestamp": "2024-05-15T21:35:12.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.200600", + "Timestamp": "2024-05-15T21:32:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210100", + "Timestamp": "2024-05-15T21:32:32.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096300", + "Timestamp": "2024-05-15T21:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-15T21:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036300", + "Timestamp": "2024-05-15T21:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.892700", + "Timestamp": "2024-05-15T21:32:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294500", + "Timestamp": "2024-05-15T21:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.264500", + "Timestamp": "2024-05-15T21:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164500", + "Timestamp": "2024-05-15T21:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133900", + "Timestamp": "2024-05-15T21:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130200", + "Timestamp": "2024-05-15T21:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073900", + "Timestamp": "2024-05-15T21:32:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117600", + "Timestamp": "2024-05-15T21:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113900", + "Timestamp": "2024-05-15T21:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057600", + "Timestamp": "2024-05-15T21:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-15T21:31:57.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167900", + "Timestamp": "2024-05-15T21:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164200", + "Timestamp": "2024-05-15T21:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107900", + "Timestamp": "2024-05-15T21:31:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.068800", + "Timestamp": "2024-05-15T21:26:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.416700", + "Timestamp": "2024-05-15T21:21:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.416700", + "Timestamp": "2024-05-15T21:21:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-15T21:18:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116500", + "Timestamp": "2024-05-15T21:17:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209600", + "Timestamp": "2024-05-15T21:17:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.230600", + "Timestamp": "2024-05-15T21:17:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.269100", + "Timestamp": "2024-05-15T21:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.264100", + "Timestamp": "2024-05-15T21:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139100", + "Timestamp": "2024-05-15T21:17:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.043400", + "Timestamp": "2024-05-15T21:16:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.436300", + "Timestamp": "2024-05-15T21:16:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095700", + "Timestamp": "2024-05-15T21:16:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092000", + "Timestamp": "2024-05-15T21:16:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035700", + "Timestamp": "2024-05-15T21:16:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214300", + "Timestamp": "2024-05-15T21:16:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.305300", + "Timestamp": "2024-05-15T21:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116000", + "Timestamp": "2024-05-15T21:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-15T21:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056000", + "Timestamp": "2024-05-15T21:16:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-15T21:14:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-15T21:14:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-15T21:14:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-15T21:14:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.044200", + "Timestamp": "2024-05-15T21:02:53.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-15T21:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-15T21:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054500", + "Timestamp": "2024-05-15T21:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.022300", + "Timestamp": "2024-05-15T21:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207600", + "Timestamp": "2024-05-15T21:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-15T21:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-15T20:48:26.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063300", + "Timestamp": "2024-05-15T20:48:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003300", + "Timestamp": "2024-05-15T20:48:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003300", + "Timestamp": "2024-05-15T20:48:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.101100", + "Timestamp": "2024-05-15T20:47:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-15T20:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.023200", + "Timestamp": "2024-05-15T20:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.464600", + "Timestamp": "2024-05-15T20:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.459600", + "Timestamp": "2024-05-15T20:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.334600", + "Timestamp": "2024-05-15T20:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138100", + "Timestamp": "2024-05-15T20:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134400", + "Timestamp": "2024-05-15T20:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078100", + "Timestamp": "2024-05-15T20:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231100", + "Timestamp": "2024-05-15T20:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067100", + "Timestamp": "2024-05-15T20:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038100", + "Timestamp": "2024-05-15T20:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007100", + "Timestamp": "2024-05-15T20:47:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066500", + "Timestamp": "2024-05-15T20:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037500", + "Timestamp": "2024-05-15T20:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006500", + "Timestamp": "2024-05-15T20:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123000", + "Timestamp": "2024-05-15T20:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119000", + "Timestamp": "2024-05-15T20:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063000", + "Timestamp": "2024-05-15T20:47:15.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215800", + "Timestamp": "2024-05-15T20:47:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.800500", + "Timestamp": "2024-05-15T20:46:57.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209100", + "Timestamp": "2024-05-15T20:46:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005500", + "Timestamp": "2024-05-15T20:33:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.420500", + "Timestamp": "2024-05-15T20:32:44.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.411500", + "Timestamp": "2024-05-15T20:32:36.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073000", + "Timestamp": "2024-05-15T20:20:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069300", + "Timestamp": "2024-05-15T20:20:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013000", + "Timestamp": "2024-05-15T20:20:49.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225800", + "Timestamp": "2024-05-15T20:18:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-15T20:18:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094400", + "Timestamp": "2024-05-15T20:18:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038100", + "Timestamp": "2024-05-15T20:18:42.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090000", + "Timestamp": "2024-05-15T20:18:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086300", + "Timestamp": "2024-05-15T20:18:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030000", + "Timestamp": "2024-05-15T20:18:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.011600", + "Timestamp": "2024-05-15T20:18:36.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095000", + "Timestamp": "2024-05-15T20:18:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091300", + "Timestamp": "2024-05-15T20:18:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035000", + "Timestamp": "2024-05-15T20:18:22.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083800", + "Timestamp": "2024-05-15T20:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080100", + "Timestamp": "2024-05-15T20:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023800", + "Timestamp": "2024-05-15T20:17:31.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5zn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110900", + "Timestamp": "2024-05-15T20:02:55.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.449800", + "Timestamp": "2024-05-15T20:02:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.287400", + "Timestamp": "2024-05-15T20:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.282400", + "Timestamp": "2024-05-15T20:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157400", + "Timestamp": "2024-05-15T20:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.054800", + "Timestamp": "2024-05-15T20:02:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.202900", + "Timestamp": "2024-05-15T20:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.011700", + "Timestamp": "2024-05-15T20:02:36.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105100", + "Timestamp": "2024-05-15T20:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.205500", + "Timestamp": "2024-05-15T20:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126400", + "Timestamp": "2024-05-15T20:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122700", + "Timestamp": "2024-05-15T20:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066400", + "Timestamp": "2024-05-15T20:02:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.023400", + "Timestamp": "2024-05-15T19:47:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092200", + "Timestamp": "2024-05-15T19:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088500", + "Timestamp": "2024-05-15T19:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032200", + "Timestamp": "2024-05-15T19:47:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098600", + "Timestamp": "2024-05-15T19:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138600", + "Timestamp": "2024-05-15T19:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038600", + "Timestamp": "2024-05-15T19:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093900", + "Timestamp": "2024-05-15T19:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090200", + "Timestamp": "2024-05-15T19:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033900", + "Timestamp": "2024-05-15T19:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111300", + "Timestamp": "2024-05-15T19:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073900", + "Timestamp": "2024-05-15T19:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044900", + "Timestamp": "2024-05-15T19:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013900", + "Timestamp": "2024-05-15T19:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086000", + "Timestamp": "2024-05-15T19:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082300", + "Timestamp": "2024-05-15T19:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026000", + "Timestamp": "2024-05-15T19:47:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077400", + "Timestamp": "2024-05-15T19:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073700", + "Timestamp": "2024-05-15T19:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017400", + "Timestamp": "2024-05-15T19:47:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209200", + "Timestamp": "2024-05-15T19:47:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-15T19:46:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095100", + "Timestamp": "2024-05-15T19:46:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038800", + "Timestamp": "2024-05-15T19:46:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-15T19:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101800", + "Timestamp": "2024-05-15T19:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045800", + "Timestamp": "2024-05-15T19:46:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.433200", + "Timestamp": "2024-05-15T19:32:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.433700", + "Timestamp": "2024-05-15T19:32:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-15T19:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093300", + "Timestamp": "2024-05-15T19:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089600", + "Timestamp": "2024-05-15T19:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033300", + "Timestamp": "2024-05-15T19:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.099600", + "Timestamp": "2024-05-15T19:32:00.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.721600", + "Timestamp": "2024-05-15T19:31:55.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.020700", + "Timestamp": "2024-05-15T19:21:12.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-15T19:17:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.055100", + "Timestamp": "2024-05-15T19:17:52.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147100", + "Timestamp": "2024-05-15T19:17:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143400", + "Timestamp": "2024-05-15T19:17:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087100", + "Timestamp": "2024-05-15T19:17:48.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-15T19:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.854600", + "Timestamp": "2024-05-15T19:17:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.458900", + "Timestamp": "2024-05-15T19:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.453900", + "Timestamp": "2024-05-15T19:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.328900", + "Timestamp": "2024-05-15T19:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207000", + "Timestamp": "2024-05-15T19:17:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.472600", + "Timestamp": "2024-05-15T19:17:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206400", + "Timestamp": "2024-05-15T19:17:15.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075700", + "Timestamp": "2024-05-15T19:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115700", + "Timestamp": "2024-05-15T19:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015700", + "Timestamp": "2024-05-15T19:17:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.438800", + "Timestamp": "2024-05-15T19:16:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097400", + "Timestamp": "2024-05-15T19:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093700", + "Timestamp": "2024-05-15T19:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037400", + "Timestamp": "2024-05-15T19:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.100700", + "Timestamp": "2024-05-15T19:03:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-15T19:02:53.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-15T19:02:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068300", + "Timestamp": "2024-05-15T19:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039300", + "Timestamp": "2024-05-15T19:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008300", + "Timestamp": "2024-05-15T19:02:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.200900", + "Timestamp": "2024-05-15T19:02:15.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120000", + "Timestamp": "2024-05-15T19:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116300", + "Timestamp": "2024-05-15T19:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060000", + "Timestamp": "2024-05-15T19:02:14.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073200", + "Timestamp": "2024-05-15T19:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069500", + "Timestamp": "2024-05-15T19:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013200", + "Timestamp": "2024-05-15T19:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063300", + "Timestamp": "2024-05-15T19:01:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003300", + "Timestamp": "2024-05-15T19:01:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003300", + "Timestamp": "2024-05-15T19:01:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005100", + "Timestamp": "2024-05-15T18:54:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005100", + "Timestamp": "2024-05-15T18:54:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089900", + "Timestamp": "2024-05-15T18:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086200", + "Timestamp": "2024-05-15T18:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029900", + "Timestamp": "2024-05-15T18:47:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231400", + "Timestamp": "2024-05-15T18:47:30.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095200", + "Timestamp": "2024-05-15T18:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091500", + "Timestamp": "2024-05-15T18:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035200", + "Timestamp": "2024-05-15T18:47:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.024700", + "Timestamp": "2024-05-15T18:34:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-15T18:33:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061200", + "Timestamp": "2024-05-15T18:32:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001200", + "Timestamp": "2024-05-15T18:32:58.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001200", + "Timestamp": "2024-05-15T18:32:58.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-15T18:32:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.281600", + "Timestamp": "2024-05-15T18:31:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432400", + "Timestamp": "2024-05-15T18:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.024100", + "Timestamp": "2024-05-15T18:18:12.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110900", + "Timestamp": "2024-05-15T18:17:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.183600", + "Timestamp": "2024-05-15T18:17:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.221800", + "Timestamp": "2024-05-15T18:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.221800", + "Timestamp": "2024-05-15T18:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.221800", + "Timestamp": "2024-05-15T18:17:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119200", + "Timestamp": "2024-05-15T18:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159200", + "Timestamp": "2024-05-15T18:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059200", + "Timestamp": "2024-05-15T18:17:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-15T18:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-15T18:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048600", + "Timestamp": "2024-05-15T18:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.534700", + "Timestamp": "2024-05-15T18:10:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.534700", + "Timestamp": "2024-05-15T18:10:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.534700", + "Timestamp": "2024-05-15T18:10:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.037800", + "Timestamp": "2024-05-15T18:06:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-15T18:03:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-15T18:02:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148400", + "Timestamp": "2024-05-15T18:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144700", + "Timestamp": "2024-05-15T18:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088400", + "Timestamp": "2024-05-15T18:02:25.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073400", + "Timestamp": "2024-05-15T18:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069700", + "Timestamp": "2024-05-15T18:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013400", + "Timestamp": "2024-05-15T18:02:03.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.398000", + "Timestamp": "2024-05-15T18:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.393000", + "Timestamp": "2024-05-15T18:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.268000", + "Timestamp": "2024-05-15T18:01:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.208800", + "Timestamp": "2024-05-15T18:01:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.208800", + "Timestamp": "2024-05-15T18:01:28.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.208800", + "Timestamp": "2024-05-15T18:01:28.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.283000", + "Timestamp": "2024-05-15T17:58:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.283000", + "Timestamp": "2024-05-15T17:58:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.283000", + "Timestamp": "2024-05-15T17:58:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073000", + "Timestamp": "2024-05-15T17:51:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044000", + "Timestamp": "2024-05-15T17:51:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013000", + "Timestamp": "2024-05-15T17:51:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432600", + "Timestamp": "2024-05-15T17:47:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432100", + "Timestamp": "2024-05-15T17:47:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.421800", + "Timestamp": "2024-05-15T17:47:42.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.081200", + "Timestamp": "2024-05-15T17:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-15T17:47:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-15T17:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-15T17:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053000", + "Timestamp": "2024-05-15T17:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-15T17:47:31.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.271700", + "Timestamp": "2024-05-15T17:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-15T17:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-15T17:47:25.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207600", + "Timestamp": "2024-05-15T17:46:53.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.069600", + "Timestamp": "2024-05-15T17:39:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.069600", + "Timestamp": "2024-05-15T17:39:38.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.069600", + "Timestamp": "2024-05-15T17:39:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-15T17:32:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138300", + "Timestamp": "2024-05-15T17:32:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134600", + "Timestamp": "2024-05-15T17:32:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078300", + "Timestamp": "2024-05-15T17:32:44.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.023500", + "Timestamp": "2024-05-15T17:32:41.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214400", + "Timestamp": "2024-05-15T17:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-15T17:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-15T17:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048600", + "Timestamp": "2024-05-15T17:31:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.353600", + "Timestamp": "2024-05-15T17:31:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.604400", + "Timestamp": "2024-05-15T17:22:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.604400", + "Timestamp": "2024-05-15T17:22:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.604400", + "Timestamp": "2024-05-15T17:22:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.277800", + "Timestamp": "2024-05-15T17:21:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.277800", + "Timestamp": "2024-05-15T17:21:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.277800", + "Timestamp": "2024-05-15T17:21:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214600", + "Timestamp": "2024-05-15T17:17:15.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075900", + "Timestamp": "2024-05-15T17:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.072200", + "Timestamp": "2024-05-15T17:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015900", + "Timestamp": "2024-05-15T17:17:09.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064500", + "Timestamp": "2024-05-15T17:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.034500", + "Timestamp": "2024-05-15T17:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004500", + "Timestamp": "2024-05-15T17:16:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-15T17:02:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.411900", + "Timestamp": "2024-05-15T17:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.020800", + "Timestamp": "2024-05-15T17:02:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.498000", + "Timestamp": "2024-05-15T16:56:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.498000", + "Timestamp": "2024-05-15T16:56:37.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104300", + "Timestamp": "2024-05-15T16:47:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061400", + "Timestamp": "2024-05-15T16:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001400", + "Timestamp": "2024-05-15T16:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001400", + "Timestamp": "2024-05-15T16:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096900", + "Timestamp": "2024-05-15T16:46:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093200", + "Timestamp": "2024-05-15T16:46:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036900", + "Timestamp": "2024-05-15T16:46:51.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.267400", + "Timestamp": "2024-05-15T16:37:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.267400", + "Timestamp": "2024-05-15T16:37:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.267400", + "Timestamp": "2024-05-15T16:37:17.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121500", + "Timestamp": "2024-05-15T16:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117500", + "Timestamp": "2024-05-15T16:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061500", + "Timestamp": "2024-05-15T16:32:16.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.434100", + "Timestamp": "2024-05-15T16:31:50.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "a1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070300", + "Timestamp": "2024-05-15T16:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "a1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041300", + "Timestamp": "2024-05-15T16:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "a1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010300", + "Timestamp": "2024-05-15T16:31:47.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.099800", + "Timestamp": "2024-05-15T16:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064300", + "Timestamp": "2024-05-15T16:17:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.035300", + "Timestamp": "2024-05-15T16:17:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004300", + "Timestamp": "2024-05-15T16:17:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.629900", + "Timestamp": "2024-05-15T16:15:37.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.205600", + "Timestamp": "2024-05-15T16:15:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.242800", + "Timestamp": "2024-05-15T16:14:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.237800", + "Timestamp": "2024-05-15T16:14:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.112800", + "Timestamp": "2024-05-15T16:14:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-15T16:11:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-15T16:11:16.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041200", + "Timestamp": "2024-05-15T16:11:16.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "9.944800", + "Timestamp": "2024-05-15T16:11:10.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.053900", + "Timestamp": "2024-05-15T16:11:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.053100", + "Timestamp": "2024-05-15T16:11:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.051100", + "Timestamp": "2024-05-15T16:11:01.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.052900", + "Timestamp": "2024-05-15T16:11:01.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-15T16:10:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-15T16:10:53.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065100", + "Timestamp": "2024-05-15T16:10:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.061400", + "Timestamp": "2024-05-15T16:10:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005100", + "Timestamp": "2024-05-15T16:10:52.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.817300", + "Timestamp": "2024-05-15T16:10:36.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.972400", + "Timestamp": "2024-05-15T16:10:32.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.908700", + "Timestamp": "2024-05-15T16:10:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.053200", + "Timestamp": "2024-05-15T16:10:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.053000", + "Timestamp": "2024-05-15T16:10:06.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.944800", + "Timestamp": "2024-05-15T16:09:49.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070300", + "Timestamp": "2024-05-15T16:09:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066600", + "Timestamp": "2024-05-15T16:09:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010300", + "Timestamp": "2024-05-15T16:09:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.314900", + "Timestamp": "2024-05-15T16:08:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.818100", + "Timestamp": "2024-05-15T16:08:48.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.544900", + "Timestamp": "2024-05-15T16:08:40.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.409100", + "Timestamp": "2024-05-15T16:08:17.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102400", + "Timestamp": "2024-05-15T16:07:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102300", + "Timestamp": "2024-05-15T16:07:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102700", + "Timestamp": "2024-05-15T16:07:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209000", + "Timestamp": "2024-05-15T16:06:51.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208100", + "Timestamp": "2024-05-15T16:06:51.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.115300", + "Timestamp": "2024-05-15T16:06:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.110300", + "Timestamp": "2024-05-15T16:06:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.985300", + "Timestamp": "2024-05-15T16:06:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065400", + "Timestamp": "2024-05-15T16:04:17.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.036700", + "Timestamp": "2024-05-15T16:04:17.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005400", + "Timestamp": "2024-05-15T16:04:17.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210700", + "Timestamp": "2024-05-15T16:02:39.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.420900", + "Timestamp": "2024-05-15T16:02:35.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-15T16:02:33.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061500", + "Timestamp": "2024-05-15T16:01:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001500", + "Timestamp": "2024-05-15T16:01:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001500", + "Timestamp": "2024-05-15T16:01:52.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.664400", + "Timestamp": "2024-05-15T16:00:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.659400", + "Timestamp": "2024-05-15T16:00:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "x2gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.534400", + "Timestamp": "2024-05-15T16:00:08.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131700", + "Timestamp": "2024-05-15T15:48:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127700", + "Timestamp": "2024-05-15T15:48:23.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071700", + "Timestamp": "2024-05-15T15:48:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088600", + "Timestamp": "2024-05-15T15:47:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084600", + "Timestamp": "2024-05-15T15:47:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028600", + "Timestamp": "2024-05-15T15:47:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-15T15:47:54.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.430400", + "Timestamp": "2024-05-15T15:36:08.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.856400", + "Timestamp": "2024-05-15T15:35:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.139200", + "Timestamp": "2024-05-15T15:34:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.139200", + "Timestamp": "2024-05-15T15:34:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.139200", + "Timestamp": "2024-05-15T15:34:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.069600", + "Timestamp": "2024-05-15T15:34:10.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.069600", + "Timestamp": "2024-05-15T15:34:10.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.069600", + "Timestamp": "2024-05-15T15:34:10.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.610900", + "Timestamp": "2024-05-15T15:32:53.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.610900", + "Timestamp": "2024-05-15T15:32:53.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.610900", + "Timestamp": "2024-05-15T15:32:53.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065700", + "Timestamp": "2024-05-15T15:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.036700", + "Timestamp": "2024-05-15T15:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005700", + "Timestamp": "2024-05-15T15:32:42.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.412800", + "Timestamp": "2024-05-15T15:32:02.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.278400", + "Timestamp": "2024-05-15T15:18:27.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.278400", + "Timestamp": "2024-05-15T15:18:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.413000", + "Timestamp": "2024-05-15T15:17:55.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.042600", + "Timestamp": "2024-05-15T15:17:14.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.203800", + "Timestamp": "2024-05-15T15:17:08.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "g6.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.870500", + "Timestamp": "2024-05-15T15:17:04.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.249000", + "Timestamp": "2024-05-15T15:12:54.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.249000", + "Timestamp": "2024-05-15T15:12:54.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.249000", + "Timestamp": "2024-05-15T15:12:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.124500", + "Timestamp": "2024-05-15T15:11:39.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.124500", + "Timestamp": "2024-05-15T15:11:39.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.124500", + "Timestamp": "2024-05-15T15:11:39.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218900", + "Timestamp": "2024-05-15T15:04:49.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206400", + "Timestamp": "2024-05-15T15:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-15T15:02:46.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m1.small", + "ProductDescription": "Windows", + "SpotPrice": "0.036400", + "Timestamp": "2024-05-15T15:02:28.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215300", + "Timestamp": "2024-05-15T15:02:01.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-15T15:01:56.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063300", + "Timestamp": "2024-05-15T14:50:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003300", + "Timestamp": "2024-05-15T14:50:06.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003300", + "Timestamp": "2024-05-15T14:50:06.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072700", + "Timestamp": "2024-05-15T14:48:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043700", + "Timestamp": "2024-05-15T14:48:23.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012700", + "Timestamp": "2024-05-15T14:48:23.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.285400", + "Timestamp": "2024-05-15T14:47:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211000", + "Timestamp": "2024-05-15T14:47:23.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083200", + "Timestamp": "2024-05-15T14:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079500", + "Timestamp": "2024-05-15T14:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023200", + "Timestamp": "2024-05-15T14:32:46.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072200", + "Timestamp": "2024-05-15T14:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043200", + "Timestamp": "2024-05-15T14:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012200", + "Timestamp": "2024-05-15T14:32:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-15T14:32:28.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103200", + "Timestamp": "2024-05-15T14:32:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073500", + "Timestamp": "2024-05-15T14:32:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044500", + "Timestamp": "2024-05-15T14:32:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013500", + "Timestamp": "2024-05-15T14:32:17.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.100700", + "Timestamp": "2024-05-15T14:32:15.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-15T14:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-15T14:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044900", + "Timestamp": "2024-05-15T14:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063300", + "Timestamp": "2024-05-15T14:21:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003300", + "Timestamp": "2024-05-15T14:21:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003300", + "Timestamp": "2024-05-15T14:21:47.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.700000", + "Timestamp": "2024-05-15T14:18:34.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206600", + "Timestamp": "2024-05-15T14:17:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-15T14:17:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.097300", + "Timestamp": "2024-05-15T14:16:31.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m1.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074200", + "Timestamp": "2024-05-15T14:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m1.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044200", + "Timestamp": "2024-05-15T14:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m1.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014200", + "Timestamp": "2024-05-15T14:02:07.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127800", + "Timestamp": "2024-05-15T14:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124100", + "Timestamp": "2024-05-15T14:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067800", + "Timestamp": "2024-05-15T14:02:05.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m1.large", + "ProductDescription": "Windows", + "SpotPrice": "0.141500", + "Timestamp": "2024-05-15T13:58:20.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m1.large", + "ProductDescription": "Windows", + "SpotPrice": "0.141500", + "Timestamp": "2024-05-15T13:58:20.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m1.large", + "ProductDescription": "Windows", + "SpotPrice": "0.141500", + "Timestamp": "2024-05-15T13:58:20.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.208800", + "Timestamp": "2024-05-15T13:56:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.208800", + "Timestamp": "2024-05-15T13:56:37.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.208800", + "Timestamp": "2024-05-15T13:56:37.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-15T13:48:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115200", + "Timestamp": "2024-05-15T13:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155200", + "Timestamp": "2024-05-15T13:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055200", + "Timestamp": "2024-05-15T13:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127100", + "Timestamp": "2024-05-15T13:46:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123400", + "Timestamp": "2024-05-15T13:46:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067100", + "Timestamp": "2024-05-15T13:46:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m1.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076900", + "Timestamp": "2024-05-15T13:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m1.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.046900", + "Timestamp": "2024-05-15T13:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m1.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016900", + "Timestamp": "2024-05-15T13:46:46.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218100", + "Timestamp": "2024-05-15T13:32:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068200", + "Timestamp": "2024-05-15T13:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038200", + "Timestamp": "2024-05-15T13:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008200", + "Timestamp": "2024-05-15T13:32:40.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-15T13:32:30.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077700", + "Timestamp": "2024-05-15T13:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074000", + "Timestamp": "2024-05-15T13:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017700", + "Timestamp": "2024-05-15T13:32:24.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073800", + "Timestamp": "2024-05-15T13:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070100", + "Timestamp": "2024-05-15T13:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013800", + "Timestamp": "2024-05-15T13:31:45.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.353600", + "Timestamp": "2024-05-15T13:20:22.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.020700", + "Timestamp": "2024-05-15T13:18:44.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-15T13:17:27.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.142200", + "Timestamp": "2024-05-15T13:16:38.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105300", + "Timestamp": "2024-05-15T13:16:35.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061200", + "Timestamp": "2024-05-15T13:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001200", + "Timestamp": "2024-05-15T13:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001200", + "Timestamp": "2024-05-15T13:02:29.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088300", + "Timestamp": "2024-05-15T13:01:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084600", + "Timestamp": "2024-05-15T13:01:57.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028300", + "Timestamp": "2024-05-15T13:01:57.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-15T12:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-15T12:47:27.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-15T12:47:11.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103100", + "Timestamp": "2024-05-15T12:47:01.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066200", + "Timestamp": "2024-05-15T12:33:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.062500", + "Timestamp": "2024-05-15T12:33:26.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006200", + "Timestamp": "2024-05-15T12:33:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.193200", + "Timestamp": "2024-05-15T12:32:26.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-15T12:32:11.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070500", + "Timestamp": "2024-05-15T12:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066800", + "Timestamp": "2024-05-15T12:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "c7gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010500", + "Timestamp": "2024-05-15T12:32:03.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "m1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.070700", + "Timestamp": "2024-05-15T12:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.070700", + "Timestamp": "2024-05-15T12:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.070700", + "Timestamp": "2024-05-15T12:17:33.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099300", + "Timestamp": "2024-05-15T12:16:59.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139300", + "Timestamp": "2024-05-15T12:16:59.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039300", + "Timestamp": "2024-05-15T12:16:59.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-15T12:16:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088600", + "Timestamp": "2024-05-15T12:16:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032600", + "Timestamp": "2024-05-15T12:16:56.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.205300", + "Timestamp": "2024-05-15T12:02:48.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115100", + "Timestamp": "2024-05-15T12:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111100", + "Timestamp": "2024-05-15T12:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055100", + "Timestamp": "2024-05-15T12:02:38.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-15T12:01:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.460800", + "Timestamp": "2024-05-15T11:59:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.460800", + "Timestamp": "2024-05-15T11:59:05.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.460800", + "Timestamp": "2024-05-15T11:59:05.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "c1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.097800", + "Timestamp": "2024-05-15T11:47:43.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-15T11:47:41.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223900", + "Timestamp": "2024-05-15T11:47:34.000Z" + }, + { + "AvailabilityZone": "us-west-2d", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.201600", + "Timestamp": "2024-05-15T11:47:32.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113400", + "Timestamp": "2024-05-15T11:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-15T11:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053400", + "Timestamp": "2024-05-15T11:47:18.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.379200", + "Timestamp": "2024-05-15T11:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.379200", + "Timestamp": "2024-05-15T11:47:13.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107000", + "Timestamp": "2024-05-15T11:17:43.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-15T11:16:54.000Z" + }, + { + "AvailabilityZone": "us-west-2c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.138900", + "Timestamp": "2024-05-15T11:14:21.000Z" + }, + { + "AvailabilityZone": "us-west-2a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.138900", + "Timestamp": "2024-05-15T11:14:21.000Z" + }, + { + "AvailabilityZone": "us-west-2b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.138900", + "Timestamp": "2024-05-15T11:14:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050000", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.413700", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.408700", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.283700", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.593400", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.757300", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.752300", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.627300", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.151400", + "Timestamp": "2024-05-16T14:02:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.146400", + "Timestamp": "2024-05-16T14:02:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.021400", + "Timestamp": "2024-05-16T14:02:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.901500", + "Timestamp": "2024-05-16T14:02:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.747400", + "Timestamp": "2024-05-16T14:02:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "14.519800", + "Timestamp": "2024-05-16T14:02:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.635900", + "Timestamp": "2024-05-16T14:02:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.440100", + "Timestamp": "2024-05-16T14:02:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.404400", + "Timestamp": "2024-05-16T14:02:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.412100", + "Timestamp": "2024-05-16T14:02:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.407100", + "Timestamp": "2024-05-16T14:02:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.282100", + "Timestamp": "2024-05-16T14:02:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114200", + "Timestamp": "2024-05-16T14:02:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117700", + "Timestamp": "2024-05-16T14:02:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T14:02:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113700", + "Timestamp": "2024-05-16T14:02:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054200", + "Timestamp": "2024-05-16T14:02:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057700", + "Timestamp": "2024-05-16T14:02:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.752400", + "Timestamp": "2024-05-16T14:02:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.747400", + "Timestamp": "2024-05-16T14:02:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.622400", + "Timestamp": "2024-05-16T14:02:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.405700", + "Timestamp": "2024-05-16T14:02:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.400700", + "Timestamp": "2024-05-16T14:02:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.275700", + "Timestamp": "2024-05-16T14:02:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.177500", + "Timestamp": "2024-05-16T14:02:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.026500", + "Timestamp": "2024-05-16T14:02:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.996500", + "Timestamp": "2024-05-16T14:02:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.896500", + "Timestamp": "2024-05-16T14:02:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.951500", + "Timestamp": "2024-05-16T14:02:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T14:02:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-16T14:02:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042500", + "Timestamp": "2024-05-16T14:02:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.192000", + "Timestamp": "2024-05-16T14:02:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.768200", + "Timestamp": "2024-05-16T14:02:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.868900", + "Timestamp": "2024-05-16T14:02:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Windows", + "SpotPrice": "14.993700", + "Timestamp": "2024-05-16T14:02:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.537800", + "Timestamp": "2024-05-16T14:02:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.523400", + "Timestamp": "2024-05-16T14:02:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.532800", + "Timestamp": "2024-05-16T14:02:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.518400", + "Timestamp": "2024-05-16T14:02:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.407800", + "Timestamp": "2024-05-16T14:02:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.393400", + "Timestamp": "2024-05-16T14:02:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.655500", + "Timestamp": "2024-05-16T14:02:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.379000", + "Timestamp": "2024-05-16T14:02:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.374000", + "Timestamp": "2024-05-16T14:02:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.249000", + "Timestamp": "2024-05-16T14:02:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.131300", + "Timestamp": "2024-05-16T14:02:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070900", + "Timestamp": "2024-05-16T14:01:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070800", + "Timestamp": "2024-05-16T14:01:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067200", + "Timestamp": "2024-05-16T14:01:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067100", + "Timestamp": "2024-05-16T14:01:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010900", + "Timestamp": "2024-05-16T14:01:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010800", + "Timestamp": "2024-05-16T14:01:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.356600", + "Timestamp": "2024-05-16T14:01:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.352900", + "Timestamp": "2024-05-16T14:01:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.296600", + "Timestamp": "2024-05-16T14:01:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.754500", + "Timestamp": "2024-05-16T14:01:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.749500", + "Timestamp": "2024-05-16T14:01:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.624500", + "Timestamp": "2024-05-16T14:01:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.413800", + "Timestamp": "2024-05-16T14:01:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.408800", + "Timestamp": "2024-05-16T14:01:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.283800", + "Timestamp": "2024-05-16T14:01:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.350200", + "Timestamp": "2024-05-16T14:01:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.223400", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.785100", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.780100", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.655100", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.543900", + "Timestamp": "2024-05-16T14:01:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.949400", + "Timestamp": "2024-05-16T14:01:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.944400", + "Timestamp": "2024-05-16T14:01:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.819400", + "Timestamp": "2024-05-16T14:01:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092100", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088400", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032100", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.214100", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.209100", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.084100", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.639000", + "Timestamp": "2024-05-16T14:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.634000", + "Timestamp": "2024-05-16T14:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.509000", + "Timestamp": "2024-05-16T14:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.334600", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.329600", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.204600", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.561700", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.242400", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096400", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092400", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036400", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.494700", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.266200", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.057800", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.052800", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.927800", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.430200", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.545500", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.945700", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.815200", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.785200", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.685200", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.801200", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119800", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102200", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098500", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042200", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.131700", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.345000", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.262700", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.257700", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.132700", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.541700", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.536700", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.411700", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165500", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161500", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105500", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.619800", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.614800", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.489800", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.178200", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174500", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118200", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162900", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158900", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.629200", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.624200", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.499200", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.571700", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.303100", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298100", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.173100", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.638700", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.828100", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.823100", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.698100", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.189300", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047500", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.493400", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.488400", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.363400", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.843200", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.838200", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.713200", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144100", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140400", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084100", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162500", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158800", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.675000", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.670000", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.545000", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.282500", + "Timestamp": "2024-05-16T14:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.934500", + "Timestamp": "2024-05-16T14:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.212400", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.182400", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.082400", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.392400", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.387400", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.262400", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.205700", + "Timestamp": "2024-05-16T14:01:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.200700", + "Timestamp": "2024-05-16T14:01:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075700", + "Timestamp": "2024-05-16T14:01:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.531200", + "Timestamp": "2024-05-16T14:01:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.127500", + "Timestamp": "2024-05-16T14:01:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.240000", + "Timestamp": "2024-05-16T14:01:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.122500", + "Timestamp": "2024-05-16T14:01:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.235000", + "Timestamp": "2024-05-16T14:01:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.997500", + "Timestamp": "2024-05-16T14:01:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.110000", + "Timestamp": "2024-05-16T14:01:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.180300", + "Timestamp": "2024-05-16T14:01:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.360200", + "Timestamp": "2024-05-16T14:01:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.355200", + "Timestamp": "2024-05-16T14:01:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.230200", + "Timestamp": "2024-05-16T14:01:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.211300", + "Timestamp": "2024-05-16T14:01:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.206300", + "Timestamp": "2024-05-16T14:01:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.081300", + "Timestamp": "2024-05-16T14:01:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.198300", + "Timestamp": "2024-05-16T14:01:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.973300", + "Timestamp": "2024-05-16T14:01:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.968300", + "Timestamp": "2024-05-16T14:01:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.843300", + "Timestamp": "2024-05-16T14:01:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.427800", + "Timestamp": "2024-05-16T14:01:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.204600", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.199600", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.074600", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.729900", + "Timestamp": "2024-05-16T13:47:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.724900", + "Timestamp": "2024-05-16T13:47:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.599900", + "Timestamp": "2024-05-16T13:47:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.428200", + "Timestamp": "2024-05-16T13:47:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.423200", + "Timestamp": "2024-05-16T13:47:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.298200", + "Timestamp": "2024-05-16T13:47:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.879900", + "Timestamp": "2024-05-16T13:47:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.874900", + "Timestamp": "2024-05-16T13:47:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.749900", + "Timestamp": "2024-05-16T13:47:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.640300", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.635300", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.510300", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.459900", + "Timestamp": "2024-05-16T13:47:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.889600", + "Timestamp": "2024-05-16T13:47:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.884600", + "Timestamp": "2024-05-16T13:47:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.759600", + "Timestamp": "2024-05-16T13:47:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099600", + "Timestamp": "2024-05-16T13:47:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095600", + "Timestamp": "2024-05-16T13:47:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039600", + "Timestamp": "2024-05-16T13:47:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.161200", + "Timestamp": "2024-05-16T13:47:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.156200", + "Timestamp": "2024-05-16T13:47:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.031200", + "Timestamp": "2024-05-16T13:47:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.885500", + "Timestamp": "2024-05-16T13:47:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.855500", + "Timestamp": "2024-05-16T13:47:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.755500", + "Timestamp": "2024-05-16T13:47:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.359100", + "Timestamp": "2024-05-16T13:47:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.496100", + "Timestamp": "2024-05-16T13:47:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.383600", + "Timestamp": "2024-05-16T13:47:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.926500", + "Timestamp": "2024-05-16T13:47:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.706000", + "Timestamp": "2024-05-16T13:47:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.494000", + "Timestamp": "2024-05-16T13:47:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.942300", + "Timestamp": "2024-05-16T13:47:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.937300", + "Timestamp": "2024-05-16T13:47:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.812300", + "Timestamp": "2024-05-16T13:47:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.126600", + "Timestamp": "2024-05-16T13:47:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.020400", + "Timestamp": "2024-05-16T13:47:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.341500", + "Timestamp": "2024-05-16T13:47:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.169300", + "Timestamp": "2024-05-16T13:47:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.581000", + "Timestamp": "2024-05-16T13:47:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.576000", + "Timestamp": "2024-05-16T13:47:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.451000", + "Timestamp": "2024-05-16T13:47:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.692000", + "Timestamp": "2024-05-16T13:46:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.916400", + "Timestamp": "2024-05-16T13:46:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.970700", + "Timestamp": "2024-05-16T13:46:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.886400", + "Timestamp": "2024-05-16T13:46:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.940700", + "Timestamp": "2024-05-16T13:46:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.786400", + "Timestamp": "2024-05-16T13:46:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.840700", + "Timestamp": "2024-05-16T13:46:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.756700", + "Timestamp": "2024-05-16T13:46:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.777400", + "Timestamp": "2024-05-16T13:46:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.772400", + "Timestamp": "2024-05-16T13:46:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.647400", + "Timestamp": "2024-05-16T13:46:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "15.500500", + "Timestamp": "2024-05-16T13:46:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.460200", + "Timestamp": "2024-05-16T13:46:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.340300", + "Timestamp": "2024-05-16T13:46:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.336300", + "Timestamp": "2024-05-16T13:46:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.280300", + "Timestamp": "2024-05-16T13:46:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.672400", + "Timestamp": "2024-05-16T13:46:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.667400", + "Timestamp": "2024-05-16T13:46:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.542400", + "Timestamp": "2024-05-16T13:46:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.454700", + "Timestamp": "2024-05-16T13:46:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.449700", + "Timestamp": "2024-05-16T13:46:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.324700", + "Timestamp": "2024-05-16T13:46:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.231700", + "Timestamp": "2024-05-16T13:46:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.226700", + "Timestamp": "2024-05-16T13:46:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.101700", + "Timestamp": "2024-05-16T13:46:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061300", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001300", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001300", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.766200", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.761200", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.636200", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146900", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143200", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086900", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.164000", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.181400", + "Timestamp": "2024-05-16T13:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.176400", + "Timestamp": "2024-05-16T13:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.051400", + "Timestamp": "2024-05-16T13:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.247300", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.102200", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.317900", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.779100", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.749100", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.649100", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.115700", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.110700", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.985700", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.608800", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.488000", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.215000", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.210000", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085000", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.138300", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.389000", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.384000", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.259000", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.805800", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.800800", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.675800", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.165400", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.160400", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.035400", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136500", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132800", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076500", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.236300", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.231300", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.106300", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.140100", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.156200", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.250300", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.134000", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.592600", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.587600", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.462600", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.738800", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.733800", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.608800", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.413200", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.408200", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.283200", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.398400", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.533200", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.528200", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.403200", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.074500", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.069500", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.944500", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.987000", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.967700", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.521400", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.327300", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.322300", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.197300", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.937600", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.890400", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.885400", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.760400", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096300", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092300", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036300", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.476500", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142500", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042500", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.288800", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258800", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158800", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.659300", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.654300", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.529300", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.196400", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.191400", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.066400", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.346000", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.341000", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.216000", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.697600", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.692600", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.567600", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141000", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166400", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137000", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162400", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081000", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.669000", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.664000", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.539000", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.280300", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148000", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145000", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088000", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114800", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054800", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.090000", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.085000", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.960000", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.794000", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.015500", + "Timestamp": "2024-05-16T13:46:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089900", + "Timestamp": "2024-05-16T13:46:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085900", + "Timestamp": "2024-05-16T13:46:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029900", + "Timestamp": "2024-05-16T13:46:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.514100", + "Timestamp": "2024-05-16T13:46:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.509100", + "Timestamp": "2024-05-16T13:46:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.384100", + "Timestamp": "2024-05-16T13:46:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.257900", + "Timestamp": "2024-05-16T13:46:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.106300", + "Timestamp": "2024-05-16T13:46:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150600", + "Timestamp": "2024-05-16T13:46:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146600", + "Timestamp": "2024-05-16T13:46:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090600", + "Timestamp": "2024-05-16T13:46:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.319300", + "Timestamp": "2024-05-16T13:46:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.290700", + "Timestamp": "2024-05-16T13:46:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.433100", + "Timestamp": "2024-05-16T13:46:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.403100", + "Timestamp": "2024-05-16T13:46:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.303100", + "Timestamp": "2024-05-16T13:46:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.024200", + "Timestamp": "2024-05-16T13:46:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.025100", + "Timestamp": "2024-05-16T13:38:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.017600", + "Timestamp": "2024-05-16T13:38:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.214200", + "Timestamp": "2024-05-16T13:38:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.995100", + "Timestamp": "2024-05-16T13:38:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.987600", + "Timestamp": "2024-05-16T13:38:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.184200", + "Timestamp": "2024-05-16T13:38:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.895100", + "Timestamp": "2024-05-16T13:38:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.887600", + "Timestamp": "2024-05-16T13:38:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.084200", + "Timestamp": "2024-05-16T13:38:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.980800", + "Timestamp": "2024-05-16T13:38:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.021600", + "Timestamp": "2024-05-16T13:38:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.973200", + "Timestamp": "2024-05-16T13:38:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.017200", + "Timestamp": "2024-05-16T13:33:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.447900", + "Timestamp": "2024-05-16T13:32:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.528300", + "Timestamp": "2024-05-16T13:32:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T13:32:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T13:32:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050000", + "Timestamp": "2024-05-16T13:32:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.017600", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.987600", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.887600", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.990400", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.505100", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.500100", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.375100", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.391200", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.386200", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.261200", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.572300", + "Timestamp": "2024-05-16T13:32:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.370800", + "Timestamp": "2024-05-16T13:32:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.365800", + "Timestamp": "2024-05-16T13:32:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.240800", + "Timestamp": "2024-05-16T13:32:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.267600", + "Timestamp": "2024-05-16T13:32:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.285000", + "Timestamp": "2024-05-16T13:32:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.816200", + "Timestamp": "2024-05-16T13:32:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.152300", + "Timestamp": "2024-05-16T13:32:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.196300", + "Timestamp": "2024-05-16T13:32:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.350300", + "Timestamp": "2024-05-16T13:32:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.345900", + "Timestamp": "2024-05-16T13:32:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.593500", + "Timestamp": "2024-05-16T13:32:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.462000", + "Timestamp": "2024-05-16T13:31:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.207600", + "Timestamp": "2024-05-16T13:31:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.202600", + "Timestamp": "2024-05-16T13:31:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077600", + "Timestamp": "2024-05-16T13:31:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.874800", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.869800", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.744800", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.280200", + "Timestamp": "2024-05-16T13:31:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.457700", + "Timestamp": "2024-05-16T13:31:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.015400", + "Timestamp": "2024-05-16T13:31:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.010400", + "Timestamp": "2024-05-16T13:31:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.885400", + "Timestamp": "2024-05-16T13:31:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.990100", + "Timestamp": "2024-05-16T13:31:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.985100", + "Timestamp": "2024-05-16T13:31:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.860100", + "Timestamp": "2024-05-16T13:31:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.766400", + "Timestamp": "2024-05-16T13:31:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.761400", + "Timestamp": "2024-05-16T13:31:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.636400", + "Timestamp": "2024-05-16T13:31:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.499800", + "Timestamp": "2024-05-16T13:31:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.494800", + "Timestamp": "2024-05-16T13:31:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.369800", + "Timestamp": "2024-05-16T13:31:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.003100", + "Timestamp": "2024-05-16T13:31:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.973100", + "Timestamp": "2024-05-16T13:31:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.873100", + "Timestamp": "2024-05-16T13:31:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.279300", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.063600", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.318700", + "Timestamp": "2024-05-16T13:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084400", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028100", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.211600", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.317900", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.287900", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.187900", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.078400", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.073400", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.948400", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.628700", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.623700", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.498700", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.644600", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.572800", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.617000", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.542800", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.587000", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.442800", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.487000", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.646100", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.641100", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.516100", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.244900", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.239900", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.114900", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.011700", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.384300", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.289500", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.284500", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.159500", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.822200", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.494500", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.564200", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.677200", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.986000", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.981000", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.856000", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094700", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090700", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034700", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154000", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150300", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094000", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.262300", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258300", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.202300", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.365300", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.365100", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.360300", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.360100", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235300", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235100", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088600", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084900", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028600", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.457500", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.427500", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.327500", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130100", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126400", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070100", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.227000", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.223000", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167000", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.916400", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.185000", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.911400", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.180000", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.786400", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.055000", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099500", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095800", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039500", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.251500", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.246500", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121500", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.623300", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.618300", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.493300", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.236400", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071000", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042000", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011000", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.412400", + "Timestamp": "2024-05-16T13:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.507600", + "Timestamp": "2024-05-16T13:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.407400", + "Timestamp": "2024-05-16T13:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.502600", + "Timestamp": "2024-05-16T13:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.282400", + "Timestamp": "2024-05-16T13:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.377600", + "Timestamp": "2024-05-16T13:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.302300", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.297300", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172300", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149000", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145000", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089000", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.555600", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.550600", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.425600", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.237900", + "Timestamp": "2024-05-16T13:31:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.243600", + "Timestamp": "2024-05-16T13:31:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078900", + "Timestamp": "2024-05-16T13:31:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075200", + "Timestamp": "2024-05-16T13:31:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018900", + "Timestamp": "2024-05-16T13:31:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.530600", + "Timestamp": "2024-05-16T13:31:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.498000", + "Timestamp": "2024-05-16T13:31:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.493000", + "Timestamp": "2024-05-16T13:31:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.368000", + "Timestamp": "2024-05-16T13:31:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.229800", + "Timestamp": "2024-05-16T13:31:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102700", + "Timestamp": "2024-05-16T13:31:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098700", + "Timestamp": "2024-05-16T13:31:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042700", + "Timestamp": "2024-05-16T13:31:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.282200", + "Timestamp": "2024-05-16T13:31:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.277200", + "Timestamp": "2024-05-16T13:31:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.152200", + "Timestamp": "2024-05-16T13:31:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.221100", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "13.382600", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.278400", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.273400", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.148400", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.202300", + "Timestamp": "2024-05-16T13:17:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.683700", + "Timestamp": "2024-05-16T13:17:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.723700", + "Timestamp": "2024-05-16T13:17:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.623700", + "Timestamp": "2024-05-16T13:17:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.233000", + "Timestamp": "2024-05-16T13:17:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.802300", + "Timestamp": "2024-05-16T13:17:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.764000", + "Timestamp": "2024-05-16T13:17:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.759000", + "Timestamp": "2024-05-16T13:17:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.634000", + "Timestamp": "2024-05-16T13:17:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.905200", + "Timestamp": "2024-05-16T13:17:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.539700", + "Timestamp": "2024-05-16T13:17:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.314400", + "Timestamp": "2024-05-16T13:17:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.284400", + "Timestamp": "2024-05-16T13:17:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.184400", + "Timestamp": "2024-05-16T13:17:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.983000", + "Timestamp": "2024-05-16T13:17:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.774200", + "Timestamp": "2024-05-16T13:17:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.732000", + "Timestamp": "2024-05-16T13:17:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.956300", + "Timestamp": "2024-05-16T13:17:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "9.323900", + "Timestamp": "2024-05-16T13:17:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "9.318900", + "Timestamp": "2024-05-16T13:17:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "9.193900", + "Timestamp": "2024-05-16T13:17:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220200", + "Timestamp": "2024-05-16T13:17:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.790300", + "Timestamp": "2024-05-16T13:17:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.982400", + "Timestamp": "2024-05-16T13:16:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.977400", + "Timestamp": "2024-05-16T13:16:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.852400", + "Timestamp": "2024-05-16T13:16:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.235100", + "Timestamp": "2024-05-16T13:16:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.413600", + "Timestamp": "2024-05-16T13:16:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.408600", + "Timestamp": "2024-05-16T13:16:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.283600", + "Timestamp": "2024-05-16T13:16:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "15.187800", + "Timestamp": "2024-05-16T13:16:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.254100", + "Timestamp": "2024-05-16T13:16:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.443400", + "Timestamp": "2024-05-16T13:16:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.438400", + "Timestamp": "2024-05-16T13:16:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.313400", + "Timestamp": "2024-05-16T13:16:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.626800", + "Timestamp": "2024-05-16T13:16:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.621800", + "Timestamp": "2024-05-16T13:16:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.496800", + "Timestamp": "2024-05-16T13:16:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T13:16:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.717000", + "Timestamp": "2024-05-16T13:16:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.110500", + "Timestamp": "2024-05-16T13:16:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.105500", + "Timestamp": "2024-05-16T13:16:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.980500", + "Timestamp": "2024-05-16T13:16:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.929200", + "Timestamp": "2024-05-16T13:16:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.924200", + "Timestamp": "2024-05-16T13:16:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.799200", + "Timestamp": "2024-05-16T13:16:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.755500", + "Timestamp": "2024-05-16T13:16:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.750500", + "Timestamp": "2024-05-16T13:16:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.625500", + "Timestamp": "2024-05-16T13:16:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.213400", + "Timestamp": "2024-05-16T13:16:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.507500", + "Timestamp": "2024-05-16T13:16:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106200", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046200", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.221100", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143800", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043800", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.331200", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.326200", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.201200", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.213600", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.208600", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.083600", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.295900", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.848600", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124900", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120900", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064900", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.629400", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124400", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.458400", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.453400", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.328400", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.890500", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.885500", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.760500", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.312700", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.362300", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066500", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037500", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006500", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354900", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349900", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224900", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.313000", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.283000", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.183000", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.310000", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.305000", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180000", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.179300", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.174300", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.049300", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.465500", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.314800", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.339400", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.284800", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.309400", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.184800", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.209400", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.155100", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.002600", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.972600", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.872600", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.888500", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.053100", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.048100", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.923100", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.132900", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.224600", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.183400", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.178400", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.053400", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.140500", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.619300", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.603300", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.598300", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.473300", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146700", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143000", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086700", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.708700", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.678700", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.578700", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.790000", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.785000", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.660000", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.085600", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.080600", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.955600", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.337600", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.332600", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.207600", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.530000", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273900", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268900", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143900", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.243800", + "Timestamp": "2024-05-16T13:16:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.238800", + "Timestamp": "2024-05-16T13:16:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113800", + "Timestamp": "2024-05-16T13:16:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.238100", + "Timestamp": "2024-05-16T13:16:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.233100", + "Timestamp": "2024-05-16T13:16:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T13:16:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114100", + "Timestamp": "2024-05-16T13:16:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110400", + "Timestamp": "2024-05-16T13:16:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054100", + "Timestamp": "2024-05-16T13:16:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.053900", + "Timestamp": "2024-05-16T13:16:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.746100", + "Timestamp": "2024-05-16T13:16:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.859900", + "Timestamp": "2024-05-16T13:16:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.829900", + "Timestamp": "2024-05-16T13:16:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.729900", + "Timestamp": "2024-05-16T13:16:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.548900", + "Timestamp": "2024-05-16T13:16:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.248300", + "Timestamp": "2024-05-16T13:16:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.243300", + "Timestamp": "2024-05-16T13:16:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118300", + "Timestamp": "2024-05-16T13:16:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.962800", + "Timestamp": "2024-05-16T13:16:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.957800", + "Timestamp": "2024-05-16T13:16:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.832800", + "Timestamp": "2024-05-16T13:16:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077200", + "Timestamp": "2024-05-16T13:16:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073500", + "Timestamp": "2024-05-16T13:16:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017200", + "Timestamp": "2024-05-16T13:16:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.898700", + "Timestamp": "2024-05-16T13:02:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.893700", + "Timestamp": "2024-05-16T13:02:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.768700", + "Timestamp": "2024-05-16T13:02:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.769900", + "Timestamp": "2024-05-16T13:02:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.968000", + "Timestamp": "2024-05-16T13:02:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071800", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068100", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011800", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.027800", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.197900", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.022800", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.192900", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.897800", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.067900", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.281600", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.113100", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.108100", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.983100", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.430700", + "Timestamp": "2024-05-16T13:02:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231400", + "Timestamp": "2024-05-16T13:02:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.139900", + "Timestamp": "2024-05-16T13:02:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.700500", + "Timestamp": "2024-05-16T13:02:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.939800", + "Timestamp": "2024-05-16T13:02:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.902400", + "Timestamp": "2024-05-16T13:02:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.876200", + "Timestamp": "2024-05-16T13:02:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.897400", + "Timestamp": "2024-05-16T13:02:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.871200", + "Timestamp": "2024-05-16T13:02:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.772400", + "Timestamp": "2024-05-16T13:02:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.746200", + "Timestamp": "2024-05-16T13:02:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.873400", + "Timestamp": "2024-05-16T13:02:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.761000", + "Timestamp": "2024-05-16T13:02:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298700", + "Timestamp": "2024-05-16T13:02:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293700", + "Timestamp": "2024-05-16T13:02:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168700", + "Timestamp": "2024-05-16T13:02:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168600", + "Timestamp": "2024-05-16T13:02:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.208600", + "Timestamp": "2024-05-16T13:02:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-16T13:02:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.108900", + "Timestamp": "2024-05-16T13:02:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.867500", + "Timestamp": "2024-05-16T13:02:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.885900", + "Timestamp": "2024-05-16T13:02:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.445000", + "Timestamp": "2024-05-16T13:02:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.482800", + "Timestamp": "2024-05-16T13:02:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086100", + "Timestamp": "2024-05-16T13:02:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082100", + "Timestamp": "2024-05-16T13:02:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026100", + "Timestamp": "2024-05-16T13:02:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.366200", + "Timestamp": "2024-05-16T13:02:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.305100", + "Timestamp": "2024-05-16T13:02:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.361200", + "Timestamp": "2024-05-16T13:02:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.300100", + "Timestamp": "2024-05-16T13:02:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.236200", + "Timestamp": "2024-05-16T13:02:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175100", + "Timestamp": "2024-05-16T13:02:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.467500", + "Timestamp": "2024-05-16T13:02:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.707600", + "Timestamp": "2024-05-16T13:02:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.702600", + "Timestamp": "2024-05-16T13:02:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.577600", + "Timestamp": "2024-05-16T13:02:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091400", + "Timestamp": "2024-05-16T13:01:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087700", + "Timestamp": "2024-05-16T13:01:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031400", + "Timestamp": "2024-05-16T13:01:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.212000", + "Timestamp": "2024-05-16T13:01:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.182000", + "Timestamp": "2024-05-16T13:01:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.082000", + "Timestamp": "2024-05-16T13:01:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.862600", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.276900", + "Timestamp": "2024-05-16T13:01:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.224800", + "Timestamp": "2024-05-16T13:01:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.866300", + "Timestamp": "2024-05-16T13:01:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.223000", + "Timestamp": "2024-05-16T13:01:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.218000", + "Timestamp": "2024-05-16T13:01:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093000", + "Timestamp": "2024-05-16T13:01:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.667700", + "Timestamp": "2024-05-16T13:01:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.662700", + "Timestamp": "2024-05-16T13:01:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.537700", + "Timestamp": "2024-05-16T13:01:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271800", + "Timestamp": "2024-05-16T13:01:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266800", + "Timestamp": "2024-05-16T13:01:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141800", + "Timestamp": "2024-05-16T13:01:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.389300", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.384300", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.259300", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.334200", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.374200", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.274200", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.239700", + "Timestamp": "2024-05-16T13:01:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.234700", + "Timestamp": "2024-05-16T13:01:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T13:01:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.198100", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.255200", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.250200", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.125200", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.570500", + "Timestamp": "2024-05-16T13:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.496000", + "Timestamp": "2024-05-16T13:01:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.165800", + "Timestamp": "2024-05-16T13:01:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.353600", + "Timestamp": "2024-05-16T13:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.348600", + "Timestamp": "2024-05-16T13:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.223600", + "Timestamp": "2024-05-16T13:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.784700", + "Timestamp": "2024-05-16T13:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.257800", + "Timestamp": "2024-05-16T13:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.252800", + "Timestamp": "2024-05-16T13:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.127800", + "Timestamp": "2024-05-16T13:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.853600", + "Timestamp": "2024-05-16T13:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.062300", + "Timestamp": "2024-05-16T13:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.893100", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362100", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.357100", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.232100", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.901000", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.329100", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324100", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199100", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.914400", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.909400", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.784400", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.025500", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.783600", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.284400", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.279400", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.154400", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161700", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158000", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.634700", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.894800", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.889800", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.764800", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.867200", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.051000", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.224300", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.719700", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.714700", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.589700", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.179300", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.645300", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.640300", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.515300", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.847600", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.070300", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.065300", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.940300", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.509900", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.479900", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.379900", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.368300", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.363300", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.238300", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.056500", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.051500", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.926500", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.593900", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.588900", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.463900", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.019600", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.875900", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.870900", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.745900", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.250000", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.245000", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120000", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.346000", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.380200", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.375200", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.250200", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113700", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053700", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210500", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.636400", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.660200", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.900500", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.055800", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.050800", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.925800", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.304000", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.148400", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.143400", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.018400", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.451500", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.446500", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.321500", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.584200", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.554200", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.454200", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.374300", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.369300", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.244300", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.308800", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.303800", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.178800", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.917900", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.912900", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.787900", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.272700", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.050400", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.885600", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.437500", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.266000", + "Timestamp": "2024-05-16T13:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.022000", + "Timestamp": "2024-05-16T13:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.292000", + "Timestamp": "2024-05-16T13:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.081600", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.538900", + "Timestamp": "2024-05-16T13:01:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.765600", + "Timestamp": "2024-05-16T13:01:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.178700", + "Timestamp": "2024-05-16T13:01:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174700", + "Timestamp": "2024-05-16T13:01:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118700", + "Timestamp": "2024-05-16T13:01:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.650200", + "Timestamp": "2024-05-16T13:01:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.812200", + "Timestamp": "2024-05-16T13:01:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.420800", + "Timestamp": "2024-05-16T13:01:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.415800", + "Timestamp": "2024-05-16T13:01:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.290800", + "Timestamp": "2024-05-16T13:01:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005600", + "Timestamp": "2024-05-16T12:52:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.102700", + "Timestamp": "2024-05-16T12:47:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.121600", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.116600", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.991600", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095000", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091000", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035000", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.710600", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.705600", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.580600", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.561400", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.531400", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.431400", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.214200", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.184200", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.084200", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125300", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121600", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065300", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.712900", + "Timestamp": "2024-05-16T12:47:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104700", + "Timestamp": "2024-05-16T12:47:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101000", + "Timestamp": "2024-05-16T12:47:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044700", + "Timestamp": "2024-05-16T12:47:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.846600", + "Timestamp": "2024-05-16T12:47:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.841600", + "Timestamp": "2024-05-16T12:47:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.716600", + "Timestamp": "2024-05-16T12:47:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.466300", + "Timestamp": "2024-05-16T12:47:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.461300", + "Timestamp": "2024-05-16T12:47:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.336300", + "Timestamp": "2024-05-16T12:47:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.973600", + "Timestamp": "2024-05-16T12:47:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.943600", + "Timestamp": "2024-05-16T12:47:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.843600", + "Timestamp": "2024-05-16T12:47:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089700", + "Timestamp": "2024-05-16T12:47:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086000", + "Timestamp": "2024-05-16T12:47:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029700", + "Timestamp": "2024-05-16T12:47:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.071300", + "Timestamp": "2024-05-16T12:47:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.041300", + "Timestamp": "2024-05-16T12:47:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.941300", + "Timestamp": "2024-05-16T12:47:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.426100", + "Timestamp": "2024-05-16T12:47:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.421100", + "Timestamp": "2024-05-16T12:47:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.296100", + "Timestamp": "2024-05-16T12:47:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118800", + "Timestamp": "2024-05-16T12:47:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.372900", + "Timestamp": "2024-05-16T12:47:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.367900", + "Timestamp": "2024-05-16T12:47:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242900", + "Timestamp": "2024-05-16T12:47:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.941100", + "Timestamp": "2024-05-16T12:47:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.911100", + "Timestamp": "2024-05-16T12:47:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.811100", + "Timestamp": "2024-05-16T12:47:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.955500", + "Timestamp": "2024-05-16T12:47:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.965500", + "Timestamp": "2024-05-16T12:47:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.925900", + "Timestamp": "2024-05-16T12:47:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.985800", + "Timestamp": "2024-05-16T12:47:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118100", + "Timestamp": "2024-05-16T12:47:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114400", + "Timestamp": "2024-05-16T12:47:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058100", + "Timestamp": "2024-05-16T12:47:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.127900", + "Timestamp": "2024-05-16T12:46:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.210300", + "Timestamp": "2024-05-16T12:46:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.563500", + "Timestamp": "2024-05-16T12:46:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.068100", + "Timestamp": "2024-05-16T12:46:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.200500", + "Timestamp": "2024-05-16T12:46:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.195500", + "Timestamp": "2024-05-16T12:46:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.070500", + "Timestamp": "2024-05-16T12:46:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.017100", + "Timestamp": "2024-05-16T12:46:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.451000", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.225200", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.299400", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.379000", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.248600", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.902500", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.897500", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.772500", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.537800", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.532800", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.407800", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.908800", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.903800", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.778800", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.132100", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.995400", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.990400", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.865400", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.092500", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.087500", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.962500", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.680000", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.874400", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.675000", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.869400", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.550000", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.744400", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.502600", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.487000", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.238200", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.233200", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.108200", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.894200", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.889200", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.764200", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.352200", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.322200", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.222200", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.404600", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.174300", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.993300", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.225600", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.058300", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.255100", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.812200", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.568500", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.807200", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.563500", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.682200", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.438500", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.186900", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.181900", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.056900", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.092900", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362500", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.402500", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.302500", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.035400", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.271600", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.266600", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.141600", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.719900", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.321600", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.316600", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.191600", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.203300", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.173300", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.073300", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.207500", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108500", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052200", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.260900", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.558600", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.553600", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.428600", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071200", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042200", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011200", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068000", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039000", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008000", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051400", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089100", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085400", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029100", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.339900", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334900", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.209900", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.521100", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.251200", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.246200", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.121200", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.455000", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.450000", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.325000", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086800", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083100", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026800", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.309400", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.304400", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.179400", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.678000", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.865500", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.921400", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.916400", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.791400", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.263900", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258900", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133900", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.626600", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.621600", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.496600", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.023000", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.993000", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.893000", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.347900", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.317900", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.217900", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.016200", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130100", + "Timestamp": "2024-05-16T12:46:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126400", + "Timestamp": "2024-05-16T12:46:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070100", + "Timestamp": "2024-05-16T12:46:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T12:46:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T12:46:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044900", + "Timestamp": "2024-05-16T12:46:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.114900", + "Timestamp": "2024-05-16T12:46:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.109900", + "Timestamp": "2024-05-16T12:46:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.984900", + "Timestamp": "2024-05-16T12:46:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.305800", + "Timestamp": "2024-05-16T12:46:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.300800", + "Timestamp": "2024-05-16T12:46:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175800", + "Timestamp": "2024-05-16T12:46:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.070700", + "Timestamp": "2024-05-16T12:46:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.280600", + "Timestamp": "2024-05-16T12:46:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077700", + "Timestamp": "2024-05-16T12:38:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078400", + "Timestamp": "2024-05-16T12:38:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078100", + "Timestamp": "2024-05-16T12:38:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074000", + "Timestamp": "2024-05-16T12:38:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074700", + "Timestamp": "2024-05-16T12:38:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074400", + "Timestamp": "2024-05-16T12:38:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017700", + "Timestamp": "2024-05-16T12:38:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018400", + "Timestamp": "2024-05-16T12:38:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018100", + "Timestamp": "2024-05-16T12:38:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069300", + "Timestamp": "2024-05-16T12:38:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068900", + "Timestamp": "2024-05-16T12:38:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069500", + "Timestamp": "2024-05-16T12:38:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065600", + "Timestamp": "2024-05-16T12:38:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065200", + "Timestamp": "2024-05-16T12:38:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065800", + "Timestamp": "2024-05-16T12:38:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009300", + "Timestamp": "2024-05-16T12:38:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008900", + "Timestamp": "2024-05-16T12:38:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009500", + "Timestamp": "2024-05-16T12:38:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.045200", + "Timestamp": "2024-05-16T12:38:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.043800", + "Timestamp": "2024-05-16T12:38:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.041800", + "Timestamp": "2024-05-16T12:38:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.520800", + "Timestamp": "2024-05-16T12:32:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.515800", + "Timestamp": "2024-05-16T12:32:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.390800", + "Timestamp": "2024-05-16T12:32:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.918500", + "Timestamp": "2024-05-16T12:32:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.913500", + "Timestamp": "2024-05-16T12:32:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.788500", + "Timestamp": "2024-05-16T12:32:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.072300", + "Timestamp": "2024-05-16T12:32:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.236500", + "Timestamp": "2024-05-16T12:32:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.809400", + "Timestamp": "2024-05-16T12:32:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.804400", + "Timestamp": "2024-05-16T12:32:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.679400", + "Timestamp": "2024-05-16T12:32:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.585900", + "Timestamp": "2024-05-16T12:32:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.580900", + "Timestamp": "2024-05-16T12:32:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.455900", + "Timestamp": "2024-05-16T12:32:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071100", + "Timestamp": "2024-05-16T12:32:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042100", + "Timestamp": "2024-05-16T12:32:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011100", + "Timestamp": "2024-05-16T12:32:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T12:32:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148400", + "Timestamp": "2024-05-16T12:32:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048400", + "Timestamp": "2024-05-16T12:32:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.854500", + "Timestamp": "2024-05-16T12:32:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.896400", + "Timestamp": "2024-05-16T12:32:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.866400", + "Timestamp": "2024-05-16T12:32:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.766400", + "Timestamp": "2024-05-16T12:32:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "a1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095000", + "Timestamp": "2024-05-16T12:32:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "a1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091300", + "Timestamp": "2024-05-16T12:32:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "a1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035000", + "Timestamp": "2024-05-16T12:32:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.198600", + "Timestamp": "2024-05-16T12:32:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.436600", + "Timestamp": "2024-05-16T12:32:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.406600", + "Timestamp": "2024-05-16T12:32:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.306600", + "Timestamp": "2024-05-16T12:32:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.990900", + "Timestamp": "2024-05-16T12:32:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090100", + "Timestamp": "2024-05-16T12:32:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086400", + "Timestamp": "2024-05-16T12:32:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030100", + "Timestamp": "2024-05-16T12:32:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.954200", + "Timestamp": "2024-05-16T12:31:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.924200", + "Timestamp": "2024-05-16T12:31:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.824200", + "Timestamp": "2024-05-16T12:31:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155800", + "Timestamp": "2024-05-16T12:31:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152800", + "Timestamp": "2024-05-16T12:31:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095800", + "Timestamp": "2024-05-16T12:31:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215700", + "Timestamp": "2024-05-16T12:31:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.480800", + "Timestamp": "2024-05-16T12:31:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.383500", + "Timestamp": "2024-05-16T12:31:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.908600", + "Timestamp": "2024-05-16T12:31:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.335800", + "Timestamp": "2024-05-16T12:31:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.401700", + "Timestamp": "2024-05-16T12:31:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.971300", + "Timestamp": "2024-05-16T12:31:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.966300", + "Timestamp": "2024-05-16T12:31:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.841300", + "Timestamp": "2024-05-16T12:31:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.034400", + "Timestamp": "2024-05-16T12:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.464900", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.459900", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.334900", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.205100", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.416600", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.200100", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.411600", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.075100", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.286600", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.739100", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.407800", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.402800", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.277800", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.926600", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.015500", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.541400", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.536400", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.411400", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.449000", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.444000", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.319000", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.891100", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.426100", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.515500", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.510500", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.385500", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218400", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.059300", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.054300", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.929300", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.601400", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.659400", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.654400", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.529400", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.662200", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.033200", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.083500", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.376700", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.328400", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298400", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.198400", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.444500", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.439500", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.314500", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.273000", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.243000", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.143000", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.460300", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.430300", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.330300", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301600", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296600", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171600", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.783900", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.778900", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.653900", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.305100", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.300100", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.175100", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.565500", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.561800", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.505500", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.640600", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.635600", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.510600", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.621400", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.636200", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.631200", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.506200", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.096800", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106000", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049700", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.282300", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.277300", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.152300", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.282000", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.277000", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.152000", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.585900", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.202300", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200900", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.197300", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.195900", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072300", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070900", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136800", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132800", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076800", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.353600", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.348600", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.223600", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.869900", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.864900", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.739900", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.368000", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.521600", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.516600", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.391600", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.205000", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.877300", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.872300", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.747300", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.559700", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.554700", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.429700", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.619400", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.614400", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.489400", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.610500", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.311000", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.306000", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.181000", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.779000", + "Timestamp": "2024-05-16T12:31:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121000", + "Timestamp": "2024-05-16T12:31:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117300", + "Timestamp": "2024-05-16T12:31:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061000", + "Timestamp": "2024-05-16T12:31:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-16T12:31:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103400", + "Timestamp": "2024-05-16T12:31:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T12:31:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099400", + "Timestamp": "2024-05-16T12:31:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046500", + "Timestamp": "2024-05-16T12:31:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043400", + "Timestamp": "2024-05-16T12:31:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.040800", + "Timestamp": "2024-05-16T12:31:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.010800", + "Timestamp": "2024-05-16T12:31:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.910800", + "Timestamp": "2024-05-16T12:31:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.086300", + "Timestamp": "2024-05-16T12:31:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.108600", + "Timestamp": "2024-05-16T12:31:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.081300", + "Timestamp": "2024-05-16T12:31:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.103600", + "Timestamp": "2024-05-16T12:31:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.956300", + "Timestamp": "2024-05-16T12:31:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.978600", + "Timestamp": "2024-05-16T12:31:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.765500", + "Timestamp": "2024-05-16T12:31:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.760500", + "Timestamp": "2024-05-16T12:31:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.635500", + "Timestamp": "2024-05-16T12:31:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121900", + "Timestamp": "2024-05-16T12:31:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118200", + "Timestamp": "2024-05-16T12:31:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061900", + "Timestamp": "2024-05-16T12:31:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.659600", + "Timestamp": "2024-05-16T12:31:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.654600", + "Timestamp": "2024-05-16T12:31:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.529600", + "Timestamp": "2024-05-16T12:31:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085700", + "Timestamp": "2024-05-16T12:31:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082000", + "Timestamp": "2024-05-16T12:31:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025700", + "Timestamp": "2024-05-16T12:31:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.066300", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.061300", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.936300", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.681100", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.651100", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.551100", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.474300", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.469300", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.344300", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.785300", + "Timestamp": "2024-05-16T12:17:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.785700", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "p2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.823600", + "Timestamp": "2024-05-16T12:17:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.290900", + "Timestamp": "2024-05-16T12:17:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.364300", + "Timestamp": "2024-05-16T12:17:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.987500", + "Timestamp": "2024-05-16T12:17:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.743500", + "Timestamp": "2024-05-16T12:17:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.738500", + "Timestamp": "2024-05-16T12:17:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.613500", + "Timestamp": "2024-05-16T12:17:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.973900", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.968900", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.843900", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.032500", + "Timestamp": "2024-05-16T12:17:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.002500", + "Timestamp": "2024-05-16T12:17:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.902500", + "Timestamp": "2024-05-16T12:17:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.666900", + "Timestamp": "2024-05-16T12:16:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.658000", + "Timestamp": "2024-05-16T12:16:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.653000", + "Timestamp": "2024-05-16T12:16:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.528000", + "Timestamp": "2024-05-16T12:16:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271200", + "Timestamp": "2024-05-16T12:16:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "a1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266200", + "Timestamp": "2024-05-16T12:16:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141200", + "Timestamp": "2024-05-16T12:16:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T12:16:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.926500", + "Timestamp": "2024-05-16T12:16:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.096900", + "Timestamp": "2024-05-16T12:16:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.560900", + "Timestamp": "2024-05-16T12:16:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.760900", + "Timestamp": "2024-05-16T12:16:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.269200", + "Timestamp": "2024-05-16T12:16:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.133100", + "Timestamp": "2024-05-16T12:16:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.206700", + "Timestamp": "2024-05-16T12:16:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.201700", + "Timestamp": "2024-05-16T12:16:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.076700", + "Timestamp": "2024-05-16T12:16:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.010200", + "Timestamp": "2024-05-16T12:16:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.019200", + "Timestamp": "2024-05-16T12:16:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.269200", + "Timestamp": "2024-05-16T12:16:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.919700", + "Timestamp": "2024-05-16T12:16:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.075400", + "Timestamp": "2024-05-16T12:16:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.135300", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.028800", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.023800", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.898800", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.592500", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.587500", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.462500", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.641600", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.636600", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.511600", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.193200", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.189200", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133200", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.995000", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.233500", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.228500", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.103500", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.873000", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.868000", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.743000", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.927100", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.863100", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.881000", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.876000", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.751000", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.713200", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.708200", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.583200", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.452000", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.447000", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.322000", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144500", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.184500", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084500", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074800", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.045800", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014800", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.584600", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.579600", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.454600", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.570500", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.565500", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.440500", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.520600", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.515600", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.390600", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.619000", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.614000", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.489000", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.269700", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.239700", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139700", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.691300", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.686300", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.561300", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.101700", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140200", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136500", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080200", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.243700", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.241900", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.957700", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.952700", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.827700", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.450400", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.369300", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.912800", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229800", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.589000", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.070500", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.065500", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.940500", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.816100", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.267900", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.137700", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.327800", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.035700", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.040900", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.035900", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.910900", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121600", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117900", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061600", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.255000", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.250000", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125000", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070600", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041600", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010600", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.944100", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.939100", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.814100", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.388300", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.383300", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.258300", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299100", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294100", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169100", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109000", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049000", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134500", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130800", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074500", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.190100", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.230100", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130100", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.576700", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134800", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130800", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074800", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092700", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088700", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032700", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.787700", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.843500", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.167200", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.708500", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.703500", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.578500", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.269700", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.267100", + "Timestamp": "2024-05-16T12:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262100", + "Timestamp": "2024-05-16T12:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137100", + "Timestamp": "2024-05-16T12:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.204100", + "Timestamp": "2024-05-16T12:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.199100", + "Timestamp": "2024-05-16T12:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.074100", + "Timestamp": "2024-05-16T12:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.378900", + "Timestamp": "2024-05-16T12:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.373900", + "Timestamp": "2024-05-16T12:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.248900", + "Timestamp": "2024-05-16T12:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.818500", + "Timestamp": "2024-05-16T12:16:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.777600", + "Timestamp": "2024-05-16T12:16:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.737200", + "Timestamp": "2024-05-16T12:16:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.732200", + "Timestamp": "2024-05-16T12:16:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.607200", + "Timestamp": "2024-05-16T12:16:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.211700", + "Timestamp": "2024-05-16T12:16:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.167900", + "Timestamp": "2024-05-16T12:16:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.162900", + "Timestamp": "2024-05-16T12:16:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.037900", + "Timestamp": "2024-05-16T12:16:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063900", + "Timestamp": "2024-05-16T12:16:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003900", + "Timestamp": "2024-05-16T12:16:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003900", + "Timestamp": "2024-05-16T12:16:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.011800", + "Timestamp": "2024-05-16T12:16:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.981800", + "Timestamp": "2024-05-16T12:16:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.881800", + "Timestamp": "2024-05-16T12:16:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.822700", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.817700", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.692700", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.239400", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.209400", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.502100", + "Timestamp": "2024-05-16T12:02:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.822400", + "Timestamp": "2024-05-16T12:02:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.560500", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.555500", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.430500", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063900", + "Timestamp": "2024-05-16T12:02:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003900", + "Timestamp": "2024-05-16T12:02:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003900", + "Timestamp": "2024-05-16T12:02:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.919500", + "Timestamp": "2024-05-16T12:02:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140900", + "Timestamp": "2024-05-16T12:02:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137200", + "Timestamp": "2024-05-16T12:02:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080900", + "Timestamp": "2024-05-16T12:02:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.411500", + "Timestamp": "2024-05-16T12:02:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.277500", + "Timestamp": "2024-05-16T12:02:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440600", + "Timestamp": "2024-05-16T12:02:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.979400", + "Timestamp": "2024-05-16T12:02:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.949400", + "Timestamp": "2024-05-16T12:02:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.849400", + "Timestamp": "2024-05-16T12:02:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324600", + "Timestamp": "2024-05-16T12:02:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319600", + "Timestamp": "2024-05-16T12:02:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194600", + "Timestamp": "2024-05-16T12:02:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.608900", + "Timestamp": "2024-05-16T12:02:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.351800", + "Timestamp": "2024-05-16T12:02:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.346800", + "Timestamp": "2024-05-16T12:02:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.221800", + "Timestamp": "2024-05-16T12:02:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.814900", + "Timestamp": "2024-05-16T12:02:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.729500", + "Timestamp": "2024-05-16T12:01:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.724500", + "Timestamp": "2024-05-16T12:01:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.599500", + "Timestamp": "2024-05-16T12:01:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.126700", + "Timestamp": "2024-05-16T12:01:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128500", + "Timestamp": "2024-05-16T12:01:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.836200", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.331500", + "Timestamp": "2024-05-16T12:01:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.326500", + "Timestamp": "2024-05-16T12:01:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.201500", + "Timestamp": "2024-05-16T12:01:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111200", + "Timestamp": "2024-05-16T12:01:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.455100", + "Timestamp": "2024-05-16T12:01:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.450100", + "Timestamp": "2024-05-16T12:01:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.325100", + "Timestamp": "2024-05-16T12:01:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.672200", + "Timestamp": "2024-05-16T12:01:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.667200", + "Timestamp": "2024-05-16T12:01:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.542200", + "Timestamp": "2024-05-16T12:01:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.318000", + "Timestamp": "2024-05-16T12:01:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.313000", + "Timestamp": "2024-05-16T12:01:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.188000", + "Timestamp": "2024-05-16T12:01:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.122800", + "Timestamp": "2024-05-16T12:01:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.483100", + "Timestamp": "2024-05-16T12:01:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.853900", + "Timestamp": "2024-05-16T12:01:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.250500", + "Timestamp": "2024-05-16T12:01:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.057000", + "Timestamp": "2024-05-16T12:01:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.063200", + "Timestamp": "2024-05-16T12:01:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.033200", + "Timestamp": "2024-05-16T12:01:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.933200", + "Timestamp": "2024-05-16T12:01:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.702300", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.951700", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.697300", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.946700", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.572300", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.821700", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.156000", + "Timestamp": "2024-05-16T12:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T12:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-16T12:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041200", + "Timestamp": "2024-05-16T12:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.535800", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.546600", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.199600", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.195600", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139600", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.564500", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.992800", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.078700", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.454100", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.449100", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.324100", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.080600", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.372800", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.367800", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.242800", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.033000", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.028000", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.903000", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071500", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042500", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011500", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.863400", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.049600", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.251400", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.674900", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.912100", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.882100", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.782100", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.935700", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.608300", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.797300", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.767300", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.667300", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.143200", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.498400", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.468400", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.368400", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.610900", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.605900", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.480900", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.254400", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.200400", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.195400", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.070400", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.968900", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.288900", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.670500", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.102400", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.097400", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.972400", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117400", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157400", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057400", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.421700", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.416700", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.291700", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.723700", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.575100", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.570100", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.445100", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.626500", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.621500", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.496500", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.035300", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.030300", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.905300", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.023000", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.018000", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.893000", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.093500", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.063500", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.963500", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135400", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131400", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075400", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048600", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128300", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.316900", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.311900", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186900", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.050200", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.246100", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.242100", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186100", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.026900", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.125200", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.120200", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.995200", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.610100", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.605100", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.480100", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.310500", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.305500", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180500", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097900", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094200", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037900", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.467600", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.469700", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.462600", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.464700", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.337600", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.339700", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.372400", + "Timestamp": "2024-05-16T12:01:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.367400", + "Timestamp": "2024-05-16T12:01:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242400", + "Timestamp": "2024-05-16T12:01:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.108800", + "Timestamp": "2024-05-16T12:01:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.569300", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.240500", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.235500", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.110500", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.588600", + "Timestamp": "2024-05-16T12:01:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.583600", + "Timestamp": "2024-05-16T12:01:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.458600", + "Timestamp": "2024-05-16T12:01:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.257600", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.215400", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.210400", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.085400", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.266300", + "Timestamp": "2024-05-16T12:01:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.261300", + "Timestamp": "2024-05-16T12:01:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136300", + "Timestamp": "2024-05-16T12:01:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.149000", + "Timestamp": "2024-05-16T12:01:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.503800", + "Timestamp": "2024-05-16T12:01:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.498800", + "Timestamp": "2024-05-16T12:01:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.373800", + "Timestamp": "2024-05-16T12:01:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.249400", + "Timestamp": "2024-05-16T12:01:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.244400", + "Timestamp": "2024-05-16T12:01:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119400", + "Timestamp": "2024-05-16T12:01:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115100", + "Timestamp": "2024-05-16T12:01:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111100", + "Timestamp": "2024-05-16T12:01:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055100", + "Timestamp": "2024-05-16T12:01:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079500", + "Timestamp": "2024-05-16T12:01:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075800", + "Timestamp": "2024-05-16T12:01:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019500", + "Timestamp": "2024-05-16T12:01:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.027000", + "Timestamp": "2024-05-16T11:48:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.067000", + "Timestamp": "2024-05-16T11:48:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967000", + "Timestamp": "2024-05-16T11:48:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.559900", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.574100", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.243200", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.093000", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.126000", + "Timestamp": "2024-05-16T11:47:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T11:47:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T11:47:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050500", + "Timestamp": "2024-05-16T11:47:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.263200", + "Timestamp": "2024-05-16T11:47:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.258200", + "Timestamp": "2024-05-16T11:47:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.133200", + "Timestamp": "2024-05-16T11:47:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.366900", + "Timestamp": "2024-05-16T11:47:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.633500", + "Timestamp": "2024-05-16T11:47:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T11:47:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.495300", + "Timestamp": "2024-05-16T11:47:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.490300", + "Timestamp": "2024-05-16T11:47:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.365300", + "Timestamp": "2024-05-16T11:47:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.908400", + "Timestamp": "2024-05-16T11:47:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.903400", + "Timestamp": "2024-05-16T11:47:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.778400", + "Timestamp": "2024-05-16T11:47:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.151000", + "Timestamp": "2024-05-16T11:47:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.514100", + "Timestamp": "2024-05-16T11:47:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.509100", + "Timestamp": "2024-05-16T11:47:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.384100", + "Timestamp": "2024-05-16T11:47:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.325900", + "Timestamp": "2024-05-16T11:47:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.193800", + "Timestamp": "2024-05-16T11:47:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.158200", + "Timestamp": "2024-05-16T11:47:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.426200", + "Timestamp": "2024-05-16T11:47:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.421200", + "Timestamp": "2024-05-16T11:47:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.296200", + "Timestamp": "2024-05-16T11:47:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.158500", + "Timestamp": "2024-05-16T11:47:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.455400", + "Timestamp": "2024-05-16T11:47:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.711800", + "Timestamp": "2024-05-16T11:47:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165500", + "Timestamp": "2024-05-16T11:47:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161500", + "Timestamp": "2024-05-16T11:47:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105500", + "Timestamp": "2024-05-16T11:47:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160000", + "Timestamp": "2024-05-16T11:47:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156000", + "Timestamp": "2024-05-16T11:47:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100000", + "Timestamp": "2024-05-16T11:47:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.329900", + "Timestamp": "2024-05-16T11:47:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.324900", + "Timestamp": "2024-05-16T11:47:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.199900", + "Timestamp": "2024-05-16T11:47:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.096800", + "Timestamp": "2024-05-16T11:46:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.528000", + "Timestamp": "2024-05-16T11:46:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.523000", + "Timestamp": "2024-05-16T11:46:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.398000", + "Timestamp": "2024-05-16T11:46:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.306000", + "Timestamp": "2024-05-16T11:46:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.301000", + "Timestamp": "2024-05-16T11:46:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.176000", + "Timestamp": "2024-05-16T11:46:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.606100", + "Timestamp": "2024-05-16T11:46:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.021600", + "Timestamp": "2024-05-16T11:46:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.465900", + "Timestamp": "2024-05-16T11:46:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.322800", + "Timestamp": "2024-05-16T11:46:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.292800", + "Timestamp": "2024-05-16T11:46:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.192800", + "Timestamp": "2024-05-16T11:46:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157000", + "Timestamp": "2024-05-16T11:46:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.197000", + "Timestamp": "2024-05-16T11:46:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097000", + "Timestamp": "2024-05-16T11:46:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.696900", + "Timestamp": "2024-05-16T11:46:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.691900", + "Timestamp": "2024-05-16T11:46:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.566900", + "Timestamp": "2024-05-16T11:46:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120400", + "Timestamp": "2024-05-16T11:46:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.665000", + "Timestamp": "2024-05-16T11:46:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.660000", + "Timestamp": "2024-05-16T11:46:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.535000", + "Timestamp": "2024-05-16T11:46:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.741600", + "Timestamp": "2024-05-16T11:46:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.343200", + "Timestamp": "2024-05-16T11:46:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.040900", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.454100", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.561400", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082100", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078400", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022100", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.991800", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.986800", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.861800", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.539700", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.534700", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.409700", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.363000", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.358000", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.233000", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062000", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002000", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002000", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.060700", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.718800", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.713800", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.588800", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.017400", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.856800", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.851800", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.726800", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.310100", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.305100", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180100", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.437700", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.274300", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.269300", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.144300", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.345000", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.340000", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.215000", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.958300", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.953300", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.828300", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121800", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.147600", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.131500", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100700", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097000", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040700", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.021900", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.016900", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.891900", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045400", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.371200", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.366200", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.241200", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.444900", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.439900", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.314900", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.511000", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120300", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160300", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060300", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.704400", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.590400", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.585400", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.460400", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.167900", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085300", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.081600", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025300", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134000", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130300", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074000", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119400", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115700", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059400", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.346500", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.341500", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.216500", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.210500", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.207500", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150500", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.960500", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.955500", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.830500", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.315300", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.091500", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.086500", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.961500", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.908800", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.903800", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.778800", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.570900", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.565900", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.440900", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.415500", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.385500", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.285500", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136300", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133800", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132600", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130100", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076300", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073800", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088700", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085000", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028700", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.576500", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.571500", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.446500", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.294600", + "Timestamp": "2024-05-16T11:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.400600", + "Timestamp": "2024-05-16T11:46:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.860400", + "Timestamp": "2024-05-16T11:46:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.721600", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.691600", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.591600", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164400", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159400", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034400", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.867200", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146100", + "Timestamp": "2024-05-16T11:38:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143700", + "Timestamp": "2024-05-16T11:38:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165100", + "Timestamp": "2024-05-16T11:38:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142100", + "Timestamp": "2024-05-16T11:38:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139700", + "Timestamp": "2024-05-16T11:38:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161100", + "Timestamp": "2024-05-16T11:38:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086100", + "Timestamp": "2024-05-16T11:38:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083700", + "Timestamp": "2024-05-16T11:38:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105100", + "Timestamp": "2024-05-16T11:38:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.132800", + "Timestamp": "2024-05-16T11:32:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.127800", + "Timestamp": "2024-05-16T11:32:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.002800", + "Timestamp": "2024-05-16T11:32:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.027500", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128300", + "Timestamp": "2024-05-16T11:32:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124600", + "Timestamp": "2024-05-16T11:32:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068300", + "Timestamp": "2024-05-16T11:32:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.543700", + "Timestamp": "2024-05-16T11:32:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.538700", + "Timestamp": "2024-05-16T11:32:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.413700", + "Timestamp": "2024-05-16T11:32:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.016000", + "Timestamp": "2024-05-16T11:32:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.067700", + "Timestamp": "2024-05-16T11:32:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.037700", + "Timestamp": "2024-05-16T11:32:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.937700", + "Timestamp": "2024-05-16T11:32:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.100900", + "Timestamp": "2024-05-16T11:32:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.095900", + "Timestamp": "2024-05-16T11:32:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.970900", + "Timestamp": "2024-05-16T11:32:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.511700", + "Timestamp": "2024-05-16T11:32:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.506700", + "Timestamp": "2024-05-16T11:32:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.381700", + "Timestamp": "2024-05-16T11:32:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.804200", + "Timestamp": "2024-05-16T11:32:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.126300", + "Timestamp": "2024-05-16T11:32:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068300", + "Timestamp": "2024-05-16T11:32:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039300", + "Timestamp": "2024-05-16T11:32:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008300", + "Timestamp": "2024-05-16T11:32:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.417000", + "Timestamp": "2024-05-16T11:32:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.412000", + "Timestamp": "2024-05-16T11:32:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.287000", + "Timestamp": "2024-05-16T11:32:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.146700", + "Timestamp": "2024-05-16T11:32:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T11:32:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-16T11:32:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041200", + "Timestamp": "2024-05-16T11:32:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T11:31:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075100", + "Timestamp": "2024-05-16T11:31:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.046100", + "Timestamp": "2024-05-16T11:31:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015100", + "Timestamp": "2024-05-16T11:31:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.097800", + "Timestamp": "2024-05-16T11:31:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.092800", + "Timestamp": "2024-05-16T11:31:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.967800", + "Timestamp": "2024-05-16T11:31:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "a1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079300", + "Timestamp": "2024-05-16T11:31:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "a1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075600", + "Timestamp": "2024-05-16T11:31:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "a1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019300", + "Timestamp": "2024-05-16T11:31:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.837300", + "Timestamp": "2024-05-16T11:31:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.125900", + "Timestamp": "2024-05-16T11:31:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.120900", + "Timestamp": "2024-05-16T11:31:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.995900", + "Timestamp": "2024-05-16T11:31:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.256900", + "Timestamp": "2024-05-16T11:31:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.410500", + "Timestamp": "2024-05-16T11:31:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.380500", + "Timestamp": "2024-05-16T11:31:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.280500", + "Timestamp": "2024-05-16T11:31:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.919600", + "Timestamp": "2024-05-16T11:31:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.602800", + "Timestamp": "2024-05-16T11:31:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.366800", + "Timestamp": "2024-05-16T11:31:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.361800", + "Timestamp": "2024-05-16T11:31:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.236800", + "Timestamp": "2024-05-16T11:31:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.331400", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.319300", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.326400", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.314300", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.201400", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.189300", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.721200", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.716200", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.591200", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.744100", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.714100", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.614100", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.162500", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.157500", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.032500", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.076200", + "Timestamp": "2024-05-16T11:31:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.071200", + "Timestamp": "2024-05-16T11:31:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.946200", + "Timestamp": "2024-05-16T11:31:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.155400", + "Timestamp": "2024-05-16T11:31:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.134200", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307600", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302600", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177600", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.269300", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.264300", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139300", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121100", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087300", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083600", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027300", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.200700", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.402600", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.397600", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.272600", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.495700", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.490700", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.365700", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.481900", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083500", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079800", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023500", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220200", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.725800", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.955500", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.720800", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.950500", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.595800", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.825500", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147200", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143500", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087200", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.908400", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.117000", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.112000", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.987000", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.052500", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.446200", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.275900", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270900", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145900", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.914500", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.909500", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.784500", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271700", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266700", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141700", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.719900", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134700", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131000", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074700", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.730100", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.361500", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.423500", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.418500", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.293500", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147300", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143300", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087300", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.693500", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.259000", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.254000", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129000", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.226400", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.221400", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096400", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.193200", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.150200", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.188200", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.145200", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.063200", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.020200", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114200", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054200", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.887100", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.882100", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.757100", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.305600", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.194900", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.144500", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.638700", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.633700", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.508700", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.657300", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.652300", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.527300", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.699900", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.694900", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.569900", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.108300", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.956000", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.951000", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.826000", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.969800", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.205500", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.200500", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075500", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.950300", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.945300", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.820300", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.565400", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.560400", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.435400", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.194000", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.189000", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.064000", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.869000", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.864000", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.739000", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.280800", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.621500", + "Timestamp": "2024-05-16T11:31:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.156300", + "Timestamp": "2024-05-16T11:31:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.151300", + "Timestamp": "2024-05-16T11:31:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.026300", + "Timestamp": "2024-05-16T11:31:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.984700", + "Timestamp": "2024-05-16T11:31:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.979700", + "Timestamp": "2024-05-16T11:31:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.854700", + "Timestamp": "2024-05-16T11:31:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.262600", + "Timestamp": "2024-05-16T11:31:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.686000", + "Timestamp": "2024-05-16T11:31:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.681000", + "Timestamp": "2024-05-16T11:31:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.556000", + "Timestamp": "2024-05-16T11:31:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.749400", + "Timestamp": "2024-05-16T11:31:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.744400", + "Timestamp": "2024-05-16T11:31:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.619400", + "Timestamp": "2024-05-16T11:31:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.285000", + "Timestamp": "2024-05-16T11:31:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.280000", + "Timestamp": "2024-05-16T11:31:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.155000", + "Timestamp": "2024-05-16T11:31:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.338800", + "Timestamp": "2024-05-16T11:20:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.334300", + "Timestamp": "2024-05-16T11:20:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.384400", + "Timestamp": "2024-05-16T11:20:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.333800", + "Timestamp": "2024-05-16T11:20:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.329300", + "Timestamp": "2024-05-16T11:20:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.379400", + "Timestamp": "2024-05-16T11:20:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.208800", + "Timestamp": "2024-05-16T11:20:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.204300", + "Timestamp": "2024-05-16T11:20:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.254400", + "Timestamp": "2024-05-16T11:20:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.564100", + "Timestamp": "2024-05-16T11:20:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.551700", + "Timestamp": "2024-05-16T11:20:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.570600", + "Timestamp": "2024-05-16T11:20:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.240300", + "Timestamp": "2024-05-16T11:17:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.121700", + "Timestamp": "2024-05-16T11:17:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.116700", + "Timestamp": "2024-05-16T11:17:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.991700", + "Timestamp": "2024-05-16T11:17:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.140200", + "Timestamp": "2024-05-16T11:17:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.093700", + "Timestamp": "2024-05-16T11:17:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128600", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.272200", + "Timestamp": "2024-05-16T11:17:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "p2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.629100", + "Timestamp": "2024-05-16T11:17:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.669100", + "Timestamp": "2024-05-16T11:17:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "p2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.569100", + "Timestamp": "2024-05-16T11:17:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.313700", + "Timestamp": "2024-05-16T11:17:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.786300", + "Timestamp": "2024-05-16T11:17:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.204200", + "Timestamp": "2024-05-16T11:17:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.199200", + "Timestamp": "2024-05-16T11:17:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074200", + "Timestamp": "2024-05-16T11:17:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.431200", + "Timestamp": "2024-05-16T11:17:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.426200", + "Timestamp": "2024-05-16T11:17:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.301200", + "Timestamp": "2024-05-16T11:17:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.643800", + "Timestamp": "2024-05-16T11:17:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.638800", + "Timestamp": "2024-05-16T11:17:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.513800", + "Timestamp": "2024-05-16T11:17:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073000", + "Timestamp": "2024-05-16T11:17:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069300", + "Timestamp": "2024-05-16T11:17:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013000", + "Timestamp": "2024-05-16T11:17:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.586200", + "Timestamp": "2024-05-16T11:17:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.975200", + "Timestamp": "2024-05-16T11:17:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.970200", + "Timestamp": "2024-05-16T11:17:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.845200", + "Timestamp": "2024-05-16T11:17:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.269900", + "Timestamp": "2024-05-16T11:17:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.264900", + "Timestamp": "2024-05-16T11:17:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139900", + "Timestamp": "2024-05-16T11:17:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.115500", + "Timestamp": "2024-05-16T11:17:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.666600", + "Timestamp": "2024-05-16T11:17:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.636600", + "Timestamp": "2024-05-16T11:17:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.536600", + "Timestamp": "2024-05-16T11:17:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.193200", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.449400", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.994200", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.969700", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.939700", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.839700", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.058300", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.028300", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.928300", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.332900", + "Timestamp": "2024-05-16T11:17:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.819600", + "Timestamp": "2024-05-16T11:17:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.306400", + "Timestamp": "2024-05-16T11:17:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.420000", + "Timestamp": "2024-05-16T11:17:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.415000", + "Timestamp": "2024-05-16T11:17:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.290000", + "Timestamp": "2024-05-16T11:17:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222500", + "Timestamp": "2024-05-16T11:17:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.361000", + "Timestamp": "2024-05-16T11:16:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.356000", + "Timestamp": "2024-05-16T11:16:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.231000", + "Timestamp": "2024-05-16T11:16:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.965400", + "Timestamp": "2024-05-16T11:16:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.935400", + "Timestamp": "2024-05-16T11:16:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.835400", + "Timestamp": "2024-05-16T11:16:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T11:16:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T11:16:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051000", + "Timestamp": "2024-05-16T11:16:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.507700", + "Timestamp": "2024-05-16T11:16:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.477700", + "Timestamp": "2024-05-16T11:16:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.377700", + "Timestamp": "2024-05-16T11:16:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.694500", + "Timestamp": "2024-05-16T11:16:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.689500", + "Timestamp": "2024-05-16T11:16:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.564500", + "Timestamp": "2024-05-16T11:16:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.318900", + "Timestamp": "2024-05-16T11:16:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.313900", + "Timestamp": "2024-05-16T11:16:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.188900", + "Timestamp": "2024-05-16T11:16:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.378600", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.373600", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.248600", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.121400", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.116400", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.991400", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121000", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117000", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061000", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.220700", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.215700", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090700", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.246600", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.990500", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.327000", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.322000", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.197000", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.669700", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.381900", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.664700", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.376900", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.539700", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.251900", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.329800", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.341800", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.324800", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.336800", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.199800", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.211800", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.268400", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.263400", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.138400", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.092100", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.087100", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.962100", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.051300", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.753300", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.952700", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.947700", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.822700", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.898800", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.893800", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.768800", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.693900", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.688900", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.563900", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.222600", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.430900", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.519500", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.260000", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.265200", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.122200", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.363000", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.414300", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.409300", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.284300", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.253400", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.292600", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.297200", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.292200", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.167200", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.315000", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.310000", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.185000", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143700", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140000", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083700", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.268300", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.263300", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.138300", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.642400", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.637400", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.512400", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077700", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074000", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017700", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.219200", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.648900", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.643900", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.518900", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.821700", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.816700", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.691700", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.930800", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078500", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074800", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018500", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.720500", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.101500", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.235000", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.230000", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.105000", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.507500", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.303900", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.576300", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.942400", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.146600", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116300", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056300", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.471200", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.466200", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.341200", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117500", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113800", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057500", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076900", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073200", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016900", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086700", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083000", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026700", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.733600", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.728600", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.603600", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.325600", + "Timestamp": "2024-05-16T11:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.295600", + "Timestamp": "2024-05-16T11:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.195600", + "Timestamp": "2024-05-16T11:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.753300", + "Timestamp": "2024-05-16T11:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.748300", + "Timestamp": "2024-05-16T11:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.623300", + "Timestamp": "2024-05-16T11:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.543400", + "Timestamp": "2024-05-16T11:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.941800", + "Timestamp": "2024-05-16T11:16:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.615500", + "Timestamp": "2024-05-16T11:16:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.610500", + "Timestamp": "2024-05-16T11:16:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.485500", + "Timestamp": "2024-05-16T11:16:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131300", + "Timestamp": "2024-05-16T11:16:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127600", + "Timestamp": "2024-05-16T11:16:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071300", + "Timestamp": "2024-05-16T11:16:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.394300", + "Timestamp": "2024-05-16T11:16:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.389300", + "Timestamp": "2024-05-16T11:16:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.264300", + "Timestamp": "2024-05-16T11:16:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.776500", + "Timestamp": "2024-05-16T11:16:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.771500", + "Timestamp": "2024-05-16T11:16:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.646500", + "Timestamp": "2024-05-16T11:16:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.165200", + "Timestamp": "2024-05-16T11:16:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.160200", + "Timestamp": "2024-05-16T11:16:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.035200", + "Timestamp": "2024-05-16T11:16:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.160800", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.986800", + "Timestamp": "2024-05-16T11:02:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.981800", + "Timestamp": "2024-05-16T11:02:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.856800", + "Timestamp": "2024-05-16T11:02:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.105400", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068900", + "Timestamp": "2024-05-16T11:02:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065200", + "Timestamp": "2024-05-16T11:02:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008900", + "Timestamp": "2024-05-16T11:02:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.102600", + "Timestamp": "2024-05-16T11:02:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.097600", + "Timestamp": "2024-05-16T11:02:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.972600", + "Timestamp": "2024-05-16T11:02:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.251200", + "Timestamp": "2024-05-16T11:02:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.882200", + "Timestamp": "2024-05-16T11:02:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.877200", + "Timestamp": "2024-05-16T11:02:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.752200", + "Timestamp": "2024-05-16T11:02:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.746100", + "Timestamp": "2024-05-16T11:02:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.521800", + "Timestamp": "2024-05-16T11:02:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.972600", + "Timestamp": "2024-05-16T11:02:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.046800", + "Timestamp": "2024-05-16T11:02:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.305600", + "Timestamp": "2024-05-16T11:02:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.090800", + "Timestamp": "2024-05-16T11:02:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.342700", + "Timestamp": "2024-05-16T11:02:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.337700", + "Timestamp": "2024-05-16T11:02:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.212700", + "Timestamp": "2024-05-16T11:02:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.753000", + "Timestamp": "2024-05-16T11:02:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.748000", + "Timestamp": "2024-05-16T11:02:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.623000", + "Timestamp": "2024-05-16T11:02:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.584000", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.579000", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.454000", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.681000", + "Timestamp": "2024-05-16T11:01:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.676000", + "Timestamp": "2024-05-16T11:01:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.551000", + "Timestamp": "2024-05-16T11:01:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.464600", + "Timestamp": "2024-05-16T11:01:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.035700", + "Timestamp": "2024-05-16T11:01:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.030700", + "Timestamp": "2024-05-16T11:01:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.905700", + "Timestamp": "2024-05-16T11:01:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131600", + "Timestamp": "2024-05-16T11:01:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127900", + "Timestamp": "2024-05-16T11:01:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071600", + "Timestamp": "2024-05-16T11:01:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.806400", + "Timestamp": "2024-05-16T11:01:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.238100", + "Timestamp": "2024-05-16T11:01:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.713300", + "Timestamp": "2024-05-16T11:01:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.708300", + "Timestamp": "2024-05-16T11:01:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.583300", + "Timestamp": "2024-05-16T11:01:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.188300", + "Timestamp": "2024-05-16T11:01:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143700", + "Timestamp": "2024-05-16T11:01:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139700", + "Timestamp": "2024-05-16T11:01:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083700", + "Timestamp": "2024-05-16T11:01:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.153200", + "Timestamp": "2024-05-16T11:01:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.283100", + "Timestamp": "2024-05-16T11:01:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.503100", + "Timestamp": "2024-05-16T11:01:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.371000", + "Timestamp": "2024-05-16T11:01:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.107900", + "Timestamp": "2024-05-16T11:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.093300", + "Timestamp": "2024-05-16T11:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.704400", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.699400", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.574400", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.839400", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.834400", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.709400", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.207100", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.202100", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.077100", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.069500", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.702200", + "Timestamp": "2024-05-16T11:01:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.697200", + "Timestamp": "2024-05-16T11:01:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.572200", + "Timestamp": "2024-05-16T11:01:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.620200", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.199400", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196400", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139400", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.792500", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.787500", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.662500", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.702500", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.697500", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.572500", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.377200", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.372200", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.247200", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.874600", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.104100", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.099100", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.974100", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.147500", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.142500", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.017500", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261500", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.256500", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131500", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.070900", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.065900", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.940900", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.334000", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.443400", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.413400", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.313400", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.084800", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.167500", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.079800", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.162500", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.954800", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.037500", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.681900", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.796600", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.791600", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.666600", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.805600", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.800600", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.675600", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.188000", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.300100", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.178700", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.173700", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.048700", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.354700", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.324700", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.224700", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.412700", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.382700", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.282700", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.604200", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.703100", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.698100", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.573100", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.636200", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.606200", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.506200", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229800", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.838600", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.974700", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.944700", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.844700", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.329100", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324100", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199100", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170000", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166000", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.282200", + "Timestamp": "2024-05-16T11:01:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.277200", + "Timestamp": "2024-05-16T11:01:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.152200", + "Timestamp": "2024-05-16T11:01:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.179700", + "Timestamp": "2024-05-16T11:01:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.176000", + "Timestamp": "2024-05-16T11:01:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119700", + "Timestamp": "2024-05-16T11:01:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079000", + "Timestamp": "2024-05-16T11:01:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075300", + "Timestamp": "2024-05-16T11:01:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019000", + "Timestamp": "2024-05-16T11:01:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.065200", + "Timestamp": "2024-05-16T11:01:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078000", + "Timestamp": "2024-05-16T11:01:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074300", + "Timestamp": "2024-05-16T11:01:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018000", + "Timestamp": "2024-05-16T11:01:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121700", + "Timestamp": "2024-05-16T10:47:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.660800", + "Timestamp": "2024-05-16T10:47:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.630800", + "Timestamp": "2024-05-16T10:47:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.530800", + "Timestamp": "2024-05-16T10:47:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-16T10:47:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098900", + "Timestamp": "2024-05-16T10:47:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042600", + "Timestamp": "2024-05-16T10:47:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.241700", + "Timestamp": "2024-05-16T10:47:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.355100", + "Timestamp": "2024-05-16T10:47:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.350100", + "Timestamp": "2024-05-16T10:47:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.225100", + "Timestamp": "2024-05-16T10:47:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.905200", + "Timestamp": "2024-05-16T10:47:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.268900", + "Timestamp": "2024-05-16T10:47:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.388900", + "Timestamp": "2024-05-16T10:47:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.383900", + "Timestamp": "2024-05-16T10:47:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.258900", + "Timestamp": "2024-05-16T10:47:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.150000", + "Timestamp": "2024-05-16T10:47:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.145000", + "Timestamp": "2024-05-16T10:47:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.020000", + "Timestamp": "2024-05-16T10:47:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.827700", + "Timestamp": "2024-05-16T10:47:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.822700", + "Timestamp": "2024-05-16T10:47:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.697700", + "Timestamp": "2024-05-16T10:47:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.749000", + "Timestamp": "2024-05-16T10:47:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.785900", + "Timestamp": "2024-05-16T10:47:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.982000", + "Timestamp": "2024-05-16T10:47:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.273100", + "Timestamp": "2024-05-16T10:47:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.198300", + "Timestamp": "2024-05-16T10:47:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.355000", + "Timestamp": "2024-05-16T10:47:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.350000", + "Timestamp": "2024-05-16T10:47:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.225000", + "Timestamp": "2024-05-16T10:47:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.448700", + "Timestamp": "2024-05-16T10:47:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.092400", + "Timestamp": "2024-05-16T10:47:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.087400", + "Timestamp": "2024-05-16T10:47:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.962400", + "Timestamp": "2024-05-16T10:47:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.279200", + "Timestamp": "2024-05-16T10:47:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.274200", + "Timestamp": "2024-05-16T10:47:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149200", + "Timestamp": "2024-05-16T10:47:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.165700", + "Timestamp": "2024-05-16T10:47:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.135700", + "Timestamp": "2024-05-16T10:47:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.035700", + "Timestamp": "2024-05-16T10:47:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.967500", + "Timestamp": "2024-05-16T10:46:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.937500", + "Timestamp": "2024-05-16T10:46:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.837500", + "Timestamp": "2024-05-16T10:46:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.500100", + "Timestamp": "2024-05-16T10:46:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.495100", + "Timestamp": "2024-05-16T10:46:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.370100", + "Timestamp": "2024-05-16T10:46:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.501400", + "Timestamp": "2024-05-16T10:46:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.471400", + "Timestamp": "2024-05-16T10:46:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.371400", + "Timestamp": "2024-05-16T10:46:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.806000", + "Timestamp": "2024-05-16T10:46:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.801000", + "Timestamp": "2024-05-16T10:46:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.676000", + "Timestamp": "2024-05-16T10:46:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.671800", + "Timestamp": "2024-05-16T10:46:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.666800", + "Timestamp": "2024-05-16T10:46:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.541800", + "Timestamp": "2024-05-16T10:46:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.576700", + "Timestamp": "2024-05-16T10:46:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.571700", + "Timestamp": "2024-05-16T10:46:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.446700", + "Timestamp": "2024-05-16T10:46:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091000", + "Timestamp": "2024-05-16T10:46:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087300", + "Timestamp": "2024-05-16T10:46:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031000", + "Timestamp": "2024-05-16T10:46:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.850600", + "Timestamp": "2024-05-16T10:46:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086200", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082500", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026200", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.944000", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.914000", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.814000", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.815200", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.785200", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.685200", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.561300", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.556300", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.431300", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.250200", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.253300", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.455300", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.907800", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211100", + "Timestamp": "2024-05-16T10:46:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.979000", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.474900", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.475500", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.469900", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.470500", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.344900", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.345500", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.730300", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.725300", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.600300", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184400", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181400", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124400", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103900", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043900", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.140600", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.085800", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.409500", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.404500", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.279500", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.112000", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.107000", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.982000", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.528000", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.523000", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.398000", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.957700", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.307700", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.372100", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.342100", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242100", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.805700", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.660400", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.655400", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.530400", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.529700", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.787700", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.894300", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.782700", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.889300", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.657700", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.764300", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.212400", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.207400", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.082400", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.222700", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.217700", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092700", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.365400", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.360400", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235400", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121900", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117900", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061900", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170200", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166500", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.275100", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.162900", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.823800", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.793800", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.693800", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.645200", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.129700", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140600", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136900", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080600", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.343100", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.338100", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.213100", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.171100", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.166100", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.041100", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.672400", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.669900", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.987900", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.982900", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.857900", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.003900", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.998900", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.873900", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.162100", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.326900", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.321900", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.196900", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.087900", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.057900", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.957900", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.862000", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.857000", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.732000", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.248300", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.500000", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.297100", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.649000", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.644000", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.519000", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.355700", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.390200", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.385200", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.260200", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.858500", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.553800", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.548800", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.423800", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.912600", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.222700", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.701600", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.091600", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.086600", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.961600", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.800300", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.475800", + "Timestamp": "2024-05-16T10:46:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.470800", + "Timestamp": "2024-05-16T10:46:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.345800", + "Timestamp": "2024-05-16T10:46:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.899800", + "Timestamp": "2024-05-16T10:46:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.469800", + "Timestamp": "2024-05-16T10:46:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.464800", + "Timestamp": "2024-05-16T10:46:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.339800", + "Timestamp": "2024-05-16T10:46:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T10:46:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T10:46:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052100", + "Timestamp": "2024-05-16T10:46:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.594400", + "Timestamp": "2024-05-16T10:46:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.589400", + "Timestamp": "2024-05-16T10:46:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.464400", + "Timestamp": "2024-05-16T10:46:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162500", + "Timestamp": "2024-05-16T10:46:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158500", + "Timestamp": "2024-05-16T10:46:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T10:46:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.747900", + "Timestamp": "2024-05-16T10:32:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.742900", + "Timestamp": "2024-05-16T10:32:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.617900", + "Timestamp": "2024-05-16T10:32:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.965000", + "Timestamp": "2024-05-16T10:32:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102300", + "Timestamp": "2024-05-16T10:32:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098600", + "Timestamp": "2024-05-16T10:32:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042300", + "Timestamp": "2024-05-16T10:32:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147200", + "Timestamp": "2024-05-16T10:32:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150500", + "Timestamp": "2024-05-16T10:32:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143500", + "Timestamp": "2024-05-16T10:32:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146800", + "Timestamp": "2024-05-16T10:32:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087200", + "Timestamp": "2024-05-16T10:32:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090500", + "Timestamp": "2024-05-16T10:32:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.230500", + "Timestamp": "2024-05-16T10:32:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.915900", + "Timestamp": "2024-05-16T10:32:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.910900", + "Timestamp": "2024-05-16T10:32:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.785900", + "Timestamp": "2024-05-16T10:32:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.599400", + "Timestamp": "2024-05-16T10:32:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.078100", + "Timestamp": "2024-05-16T10:32:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "9.136900", + "Timestamp": "2024-05-16T10:32:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "9.131900", + "Timestamp": "2024-05-16T10:32:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "9.006900", + "Timestamp": "2024-05-16T10:32:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "22.878400", + "Timestamp": "2024-05-16T10:32:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.233000", + "Timestamp": "2024-05-16T10:32:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081700", + "Timestamp": "2024-05-16T10:32:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078000", + "Timestamp": "2024-05-16T10:32:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021700", + "Timestamp": "2024-05-16T10:32:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.174200", + "Timestamp": "2024-05-16T10:32:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.169200", + "Timestamp": "2024-05-16T10:32:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.044200", + "Timestamp": "2024-05-16T10:32:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.970900", + "Timestamp": "2024-05-16T10:32:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.965900", + "Timestamp": "2024-05-16T10:32:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.840900", + "Timestamp": "2024-05-16T10:32:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.758400", + "Timestamp": "2024-05-16T10:32:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.753400", + "Timestamp": "2024-05-16T10:32:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.628400", + "Timestamp": "2024-05-16T10:32:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.932300", + "Timestamp": "2024-05-16T10:32:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.722800", + "Timestamp": "2024-05-16T10:32:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.576100", + "Timestamp": "2024-05-16T10:32:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.966000", + "Timestamp": "2024-05-16T10:31:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "9.222200", + "Timestamp": "2024-05-16T10:31:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "9.192200", + "Timestamp": "2024-05-16T10:31:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "9.092200", + "Timestamp": "2024-05-16T10:31:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.515200", + "Timestamp": "2024-05-16T10:31:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.510200", + "Timestamp": "2024-05-16T10:31:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.385200", + "Timestamp": "2024-05-16T10:31:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.134200", + "Timestamp": "2024-05-16T10:31:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.709200", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.215200", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.569600", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.433400", + "Timestamp": "2024-05-16T10:31:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.428400", + "Timestamp": "2024-05-16T10:31:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.303400", + "Timestamp": "2024-05-16T10:31:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173600", + "Timestamp": "2024-05-16T10:31:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169900", + "Timestamp": "2024-05-16T10:31:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113600", + "Timestamp": "2024-05-16T10:31:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.931700", + "Timestamp": "2024-05-16T10:31:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.926700", + "Timestamp": "2024-05-16T10:31:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.801700", + "Timestamp": "2024-05-16T10:31:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.965000", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.960000", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.835000", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.346800", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.341800", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.216800", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.461800", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.496900", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.456800", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.491900", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.331800", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.366900", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174700", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170700", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114700", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.657000", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.493200", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.144800", + "Timestamp": "2024-05-16T10:31:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.532000", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.378100", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.373100", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.248100", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.893400", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.888400", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.763400", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.531100", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.527400", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.471100", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.238900", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.233900", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108900", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.807500", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.802500", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.677500", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.274600", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.867100", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.862100", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.737100", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149900", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146200", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089900", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065200", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.036500", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112900", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056600", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.736000", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.731000", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.606000", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.275100", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270100", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145100", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.548700", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.518700", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.418700", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.082600", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092000", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088300", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032000", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.782300", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.777300", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.652300", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.810000", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073300", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069600", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013300", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.019600", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.223300", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.207900", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.218300", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.202900", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093300", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077900", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.751300", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.746300", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.621300", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136200", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132500", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076200", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119000", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115000", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059000", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088400", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084700", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028400", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136700", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133000", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076700", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.721500", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.347300", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.342300", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.217300", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.208400", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.203400", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.078400", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.509900", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083200", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079500", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023200", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.681500", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.243700", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.238700", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113700", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160100", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156100", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100100", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.800000", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.795000", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.670000", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.980700", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.975700", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.850700", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.634500", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.629500", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.504500", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.248300", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.192200", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.750500", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.745500", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.620500", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.555600", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.550600", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.425600", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.504000", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.361500", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.331500", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.231500", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.262700", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.221000", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.217000", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.161000", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.475800", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.844900", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.269800", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.114800", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.109800", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.984800", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.938100", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.933100", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.808100", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.432800", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.402800", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.302800", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.704800", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.938900", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.933900", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.808900", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T10:31:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087800", + "Timestamp": "2024-05-16T10:31:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031800", + "Timestamp": "2024-05-16T10:31:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.532900", + "Timestamp": "2024-05-16T10:31:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.527900", + "Timestamp": "2024-05-16T10:31:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.402900", + "Timestamp": "2024-05-16T10:31:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.380400", + "Timestamp": "2024-05-16T10:31:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.375400", + "Timestamp": "2024-05-16T10:31:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.250400", + "Timestamp": "2024-05-16T10:31:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.722600", + "Timestamp": "2024-05-16T10:31:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.717600", + "Timestamp": "2024-05-16T10:31:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.592600", + "Timestamp": "2024-05-16T10:31:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.479200", + "Timestamp": "2024-05-16T10:31:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.474200", + "Timestamp": "2024-05-16T10:31:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.349200", + "Timestamp": "2024-05-16T10:31:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.860000", + "Timestamp": "2024-05-16T10:19:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.806200", + "Timestamp": "2024-05-16T10:19:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.855000", + "Timestamp": "2024-05-16T10:19:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.801200", + "Timestamp": "2024-05-16T10:19:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.730000", + "Timestamp": "2024-05-16T10:19:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.676200", + "Timestamp": "2024-05-16T10:19:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.689700", + "Timestamp": "2024-05-16T10:19:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.630000", + "Timestamp": "2024-05-16T10:19:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.132600", + "Timestamp": "2024-05-16T10:17:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.588800", + "Timestamp": "2024-05-16T10:17:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.949300", + "Timestamp": "2024-05-16T10:17:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.177500", + "Timestamp": "2024-05-16T10:17:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173800", + "Timestamp": "2024-05-16T10:17:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.117500", + "Timestamp": "2024-05-16T10:17:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.799000", + "Timestamp": "2024-05-16T10:17:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.937000", + "Timestamp": "2024-05-16T10:17:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.794000", + "Timestamp": "2024-05-16T10:17:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.932000", + "Timestamp": "2024-05-16T10:17:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.669000", + "Timestamp": "2024-05-16T10:17:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.807000", + "Timestamp": "2024-05-16T10:17:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.509800", + "Timestamp": "2024-05-16T10:17:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115700", + "Timestamp": "2024-05-16T10:17:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.379900", + "Timestamp": "2024-05-16T10:17:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "23.439700", + "Timestamp": "2024-05-16T10:17:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "p2.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "23.409700", + "Timestamp": "2024-05-16T10:17:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "23.309700", + "Timestamp": "2024-05-16T10:17:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.252500", + "Timestamp": "2024-05-16T10:17:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.248500", + "Timestamp": "2024-05-16T10:17:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.192500", + "Timestamp": "2024-05-16T10:17:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.788800", + "Timestamp": "2024-05-16T10:17:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.064400", + "Timestamp": "2024-05-16T10:17:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.059400", + "Timestamp": "2024-05-16T10:17:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.934400", + "Timestamp": "2024-05-16T10:17:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.388000", + "Timestamp": "2024-05-16T10:17:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.276300", + "Timestamp": "2024-05-16T10:17:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.271300", + "Timestamp": "2024-05-16T10:17:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.146300", + "Timestamp": "2024-05-16T10:17:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T10:17:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165400", + "Timestamp": "2024-05-16T10:17:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065400", + "Timestamp": "2024-05-16T10:17:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.940400", + "Timestamp": "2024-05-16T10:17:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.910400", + "Timestamp": "2024-05-16T10:17:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.810400", + "Timestamp": "2024-05-16T10:17:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.025100", + "Timestamp": "2024-05-16T10:17:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.995100", + "Timestamp": "2024-05-16T10:17:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.895100", + "Timestamp": "2024-05-16T10:17:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.442000", + "Timestamp": "2024-05-16T10:17:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.950100", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.540100", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.443700", + "Timestamp": "2024-05-16T10:17:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.316900", + "Timestamp": "2024-05-16T10:16:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.311900", + "Timestamp": "2024-05-16T10:16:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186900", + "Timestamp": "2024-05-16T10:16:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.376200", + "Timestamp": "2024-05-16T10:16:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.552100", + "Timestamp": "2024-05-16T10:16:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.339600", + "Timestamp": "2024-05-16T10:16:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334600", + "Timestamp": "2024-05-16T10:16:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.209600", + "Timestamp": "2024-05-16T10:16:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.917200", + "Timestamp": "2024-05-16T10:16:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.628000", + "Timestamp": "2024-05-16T10:16:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.623000", + "Timestamp": "2024-05-16T10:16:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.498000", + "Timestamp": "2024-05-16T10:16:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.580900", + "Timestamp": "2024-05-16T10:16:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.575900", + "Timestamp": "2024-05-16T10:16:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.450900", + "Timestamp": "2024-05-16T10:16:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.139200", + "Timestamp": "2024-05-16T10:16:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.364200", + "Timestamp": "2024-05-16T10:16:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.504900", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.474900", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.374900", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.719700", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.714700", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.589700", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.254800", + "Timestamp": "2024-05-16T10:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.992800", + "Timestamp": "2024-05-16T10:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.197000", + "Timestamp": "2024-05-16T10:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.524300", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068400", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.064700", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008400", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115600", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.049900", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.260800", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.621800", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.804500", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.799500", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.674500", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.347500", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.547600", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.542600", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.417600", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.660100", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.655100", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.530100", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362600", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.357600", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.232600", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.470500", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.440500", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.340500", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.485700", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.480700", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.355700", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087800", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031800", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.639000", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.414500", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.409500", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.284500", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.337800", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.413200", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.408200", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.283200", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.940800", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115200", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155200", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055200", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.311800", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.729000", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.724000", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.599000", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.490000", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.485000", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.360000", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.474800", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091100", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087400", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031100", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.516200", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.647500", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.866800", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.868000", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.863000", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.738000", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128300", + "Timestamp": "2024-05-16T10:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.428900", + "Timestamp": "2024-05-16T10:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.378100", + "Timestamp": "2024-05-16T10:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.373100", + "Timestamp": "2024-05-16T10:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.248100", + "Timestamp": "2024-05-16T10:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.916900", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086200", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082500", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026200", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048100", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.218900", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.213900", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088900", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148900", + "Timestamp": "2024-05-16T10:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144900", + "Timestamp": "2024-05-16T10:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088900", + "Timestamp": "2024-05-16T10:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.934900", + "Timestamp": "2024-05-16T10:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.929900", + "Timestamp": "2024-05-16T10:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.804900", + "Timestamp": "2024-05-16T10:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T10:16:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T10:16:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047500", + "Timestamp": "2024-05-16T10:16:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.536000", + "Timestamp": "2024-05-16T10:16:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.506000", + "Timestamp": "2024-05-16T10:16:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.406000", + "Timestamp": "2024-05-16T10:16:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.464200", + "Timestamp": "2024-05-16T10:16:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.077600", + "Timestamp": "2024-05-16T10:16:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.571000", + "Timestamp": "2024-05-16T10:16:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.566000", + "Timestamp": "2024-05-16T10:16:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.441000", + "Timestamp": "2024-05-16T10:16:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123800", + "Timestamp": "2024-05-16T10:16:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119800", + "Timestamp": "2024-05-16T10:16:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063800", + "Timestamp": "2024-05-16T10:16:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.613200", + "Timestamp": "2024-05-16T10:16:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.608200", + "Timestamp": "2024-05-16T10:16:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.483200", + "Timestamp": "2024-05-16T10:16:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.401300", + "Timestamp": "2024-05-16T10:16:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.396300", + "Timestamp": "2024-05-16T10:16:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.271300", + "Timestamp": "2024-05-16T10:16:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.256700", + "Timestamp": "2024-05-16T10:16:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.251700", + "Timestamp": "2024-05-16T10:16:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126700", + "Timestamp": "2024-05-16T10:16:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.091700", + "Timestamp": "2024-05-16T10:16:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.626000", + "Timestamp": "2024-05-16T10:16:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.621000", + "Timestamp": "2024-05-16T10:16:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.496000", + "Timestamp": "2024-05-16T10:16:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.189500", + "Timestamp": "2024-05-16T10:02:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.229500", + "Timestamp": "2024-05-16T10:02:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129500", + "Timestamp": "2024-05-16T10:02:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.842500", + "Timestamp": "2024-05-16T10:02:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.459000", + "Timestamp": "2024-05-16T10:02:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.675100", + "Timestamp": "2024-05-16T10:02:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.670100", + "Timestamp": "2024-05-16T10:02:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.545100", + "Timestamp": "2024-05-16T10:02:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.641500", + "Timestamp": "2024-05-16T10:02:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.636500", + "Timestamp": "2024-05-16T10:02:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.511500", + "Timestamp": "2024-05-16T10:02:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.282600", + "Timestamp": "2024-05-16T10:02:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.145500", + "Timestamp": "2024-05-16T10:02:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.519400", + "Timestamp": "2024-05-16T10:02:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.495500", + "Timestamp": "2024-05-16T10:02:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.196000", + "Timestamp": "2024-05-16T10:02:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.191000", + "Timestamp": "2024-05-16T10:02:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.066000", + "Timestamp": "2024-05-16T10:02:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.126000", + "Timestamp": "2024-05-16T10:02:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.121000", + "Timestamp": "2024-05-16T10:02:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.996000", + "Timestamp": "2024-05-16T10:02:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.425900", + "Timestamp": "2024-05-16T10:02:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.340000", + "Timestamp": "2024-05-16T10:02:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.731900", + "Timestamp": "2024-05-16T10:02:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Windows", + "SpotPrice": "14.993800", + "Timestamp": "2024-05-16T10:02:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.043800", + "Timestamp": "2024-05-16T10:02:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.304500", + "Timestamp": "2024-05-16T10:01:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.299500", + "Timestamp": "2024-05-16T10:01:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.174500", + "Timestamp": "2024-05-16T10:01:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.905000", + "Timestamp": "2024-05-16T10:01:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.701000", + "Timestamp": "2024-05-16T10:01:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.671000", + "Timestamp": "2024-05-16T10:01:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.571000", + "Timestamp": "2024-05-16T10:01:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.240800", + "Timestamp": "2024-05-16T10:01:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.674000", + "Timestamp": "2024-05-16T10:01:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.379200", + "Timestamp": "2024-05-16T10:01:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.349200", + "Timestamp": "2024-05-16T10:01:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.249200", + "Timestamp": "2024-05-16T10:01:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.768000", + "Timestamp": "2024-05-16T10:01:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.935100", + "Timestamp": "2024-05-16T10:01:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.689500", + "Timestamp": "2024-05-16T10:01:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.684500", + "Timestamp": "2024-05-16T10:01:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.559500", + "Timestamp": "2024-05-16T10:01:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.126100", + "Timestamp": "2024-05-16T10:01:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.716500", + "Timestamp": "2024-05-16T10:01:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.513100", + "Timestamp": "2024-05-16T10:01:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.158200", + "Timestamp": "2024-05-16T10:01:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.153200", + "Timestamp": "2024-05-16T10:01:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.028200", + "Timestamp": "2024-05-16T10:01:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.326800", + "Timestamp": "2024-05-16T10:01:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.321800", + "Timestamp": "2024-05-16T10:01:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196800", + "Timestamp": "2024-05-16T10:01:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.110300", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.461600", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.456600", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.331600", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.801400", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.796400", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.671400", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.281800", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.276800", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.151800", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.254600", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.248400", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.468900", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.463900", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.338900", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.989000", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.304000", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.299000", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.174000", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.911400", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.906400", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.781400", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307700", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302700", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177700", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.797500", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.792500", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.667500", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.623400", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.593400", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.493400", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.232700", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.227700", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102700", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.718500", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.544100", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.837200", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.539100", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.832200", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.414100", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.707200", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.487400", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.343800", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.338800", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.213800", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.640200", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.635200", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.510200", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.522200", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.358100", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.353100", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.228100", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.247700", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.545400", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.540400", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.415400", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.140000", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.143500", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.146000", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.330400", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.300400", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.200400", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.396100", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.171500", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.166500", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.041500", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.983300", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.247100", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.468000", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.121500", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "a1.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.267300", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "a1.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262300", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "a1.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137300", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.693300", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068000", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.064300", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008000", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118200", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058200", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.204400", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "a1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.199400", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074400", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.952400", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049800", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124800", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120800", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064800", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.253400", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.267900", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.248400", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262900", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123400", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137900", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.392100", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.362100", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.262100", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.339800", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.356600", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.326600", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.226600", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.413900", + "Timestamp": "2024-05-16T10:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.383900", + "Timestamp": "2024-05-16T10:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.283900", + "Timestamp": "2024-05-16T10:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.484300", + "Timestamp": "2024-05-16T10:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.467800", + "Timestamp": "2024-05-16T10:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.462800", + "Timestamp": "2024-05-16T10:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.337800", + "Timestamp": "2024-05-16T10:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.497000", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.492000", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.367000", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431600", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.254400", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.249400", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124400", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.126800", + "Timestamp": "2024-05-16T10:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.121800", + "Timestamp": "2024-05-16T10:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.996800", + "Timestamp": "2024-05-16T10:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.485500", + "Timestamp": "2024-05-16T10:01:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.480500", + "Timestamp": "2024-05-16T10:01:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.355500", + "Timestamp": "2024-05-16T10:01:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.819100", + "Timestamp": "2024-05-16T10:01:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165200", + "Timestamp": "2024-05-16T10:01:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161200", + "Timestamp": "2024-05-16T10:01:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T10:01:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130300", + "Timestamp": "2024-05-16T10:01:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T10:01:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070300", + "Timestamp": "2024-05-16T10:01:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062000", + "Timestamp": "2024-05-16T10:01:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002000", + "Timestamp": "2024-05-16T10:01:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002000", + "Timestamp": "2024-05-16T10:01:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.272300", + "Timestamp": "2024-05-16T10:01:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.270000", + "Timestamp": "2024-05-16T09:52:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113700", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.633300", + "Timestamp": "2024-05-16T09:47:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.049100", + "Timestamp": "2024-05-16T09:47:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.044100", + "Timestamp": "2024-05-16T09:47:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.919100", + "Timestamp": "2024-05-16T09:47:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.108400", + "Timestamp": "2024-05-16T09:47:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.103400", + "Timestamp": "2024-05-16T09:47:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.978400", + "Timestamp": "2024-05-16T09:47:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.410100", + "Timestamp": "2024-05-16T09:47:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.389700", + "Timestamp": "2024-05-16T09:47:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.359700", + "Timestamp": "2024-05-16T09:47:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.259700", + "Timestamp": "2024-05-16T09:47:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.497300", + "Timestamp": "2024-05-16T09:47:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "14.474800", + "Timestamp": "2024-05-16T09:47:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.851100", + "Timestamp": "2024-05-16T09:47:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176600", + "Timestamp": "2024-05-16T09:47:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172900", + "Timestamp": "2024-05-16T09:47:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T09:47:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.593300", + "Timestamp": "2024-05-16T09:47:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.588300", + "Timestamp": "2024-05-16T09:47:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.463300", + "Timestamp": "2024-05-16T09:47:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.191700", + "Timestamp": "2024-05-16T09:47:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.022500", + "Timestamp": "2024-05-16T09:47:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.017500", + "Timestamp": "2024-05-16T09:47:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.892500", + "Timestamp": "2024-05-16T09:47:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.341300", + "Timestamp": "2024-05-16T09:47:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.265200", + "Timestamp": "2024-05-16T09:47:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.336300", + "Timestamp": "2024-05-16T09:47:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.260200", + "Timestamp": "2024-05-16T09:47:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.211300", + "Timestamp": "2024-05-16T09:47:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.135200", + "Timestamp": "2024-05-16T09:47:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.005900", + "Timestamp": "2024-05-16T09:47:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439000", + "Timestamp": "2024-05-16T09:47:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.123600", + "Timestamp": "2024-05-16T09:46:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.118600", + "Timestamp": "2024-05-16T09:46:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.993600", + "Timestamp": "2024-05-16T09:46:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.370700", + "Timestamp": "2024-05-16T09:46:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.774200", + "Timestamp": "2024-05-16T09:46:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.744200", + "Timestamp": "2024-05-16T09:46:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.644200", + "Timestamp": "2024-05-16T09:46:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "10.300000", + "Timestamp": "2024-05-16T09:46:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "10.295000", + "Timestamp": "2024-05-16T09:46:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "10.170000", + "Timestamp": "2024-05-16T09:46:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.491000", + "Timestamp": "2024-05-16T09:46:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.724100", + "Timestamp": "2024-05-16T09:46:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.358700", + "Timestamp": "2024-05-16T09:46:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.443300", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.438300", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.313300", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.150200", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.145200", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.020200", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.861500", + "Timestamp": "2024-05-16T09:46:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.366100", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.361100", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.236100", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.853400", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.854900", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147300", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047300", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.394600", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.055000", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.025000", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.925000", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261800", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.256800", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131800", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.628900", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.623900", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.498900", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082300", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080800", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078600", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077100", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022300", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020800", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.782600", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092000", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036000", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.179800", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.175800", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119800", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.694200", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.689200", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.564200", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.872700", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.867700", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.742700", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.362800", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.295000", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.290000", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165000", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.489800", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.435900", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.427300", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.273200", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.376500", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.034300", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.004300", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.904300", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.131400", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.969300", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.154000", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.124000", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.024000", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103600", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047300", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.054900", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.049900", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.924900", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.056400", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.233000", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.228000", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "a1.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.280300", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "a1.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.275300", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "a1.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150300", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.802300", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.797300", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.672300", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.769200", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.481700", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.476700", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.351700", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.195000", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "a1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190000", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065000", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.253000", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.248000", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123000", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.334200", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.304200", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.204200", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.169200", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.139200", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.039200", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.402500", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.397500", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.272500", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.928700", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.923700", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.798700", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089800", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086100", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029800", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099600", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039600", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163100", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159400", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103100", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.644800", + "Timestamp": "2024-05-16T09:46:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.966700", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.625600", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.620600", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.495600", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.151200", + "Timestamp": "2024-05-16T09:46:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.210800", + "Timestamp": "2024-05-16T09:32:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.180800", + "Timestamp": "2024-05-16T09:32:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.080800", + "Timestamp": "2024-05-16T09:32:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.964800", + "Timestamp": "2024-05-16T09:32:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068200", + "Timestamp": "2024-05-16T09:32:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.064500", + "Timestamp": "2024-05-16T09:32:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008200", + "Timestamp": "2024-05-16T09:32:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.696700", + "Timestamp": "2024-05-16T09:32:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.573000", + "Timestamp": "2024-05-16T09:32:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.776100", + "Timestamp": "2024-05-16T09:32:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.261700", + "Timestamp": "2024-05-16T09:32:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.052500", + "Timestamp": "2024-05-16T09:32:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.187500", + "Timestamp": "2024-05-16T09:32:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.047500", + "Timestamp": "2024-05-16T09:32:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.182500", + "Timestamp": "2024-05-16T09:32:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.922500", + "Timestamp": "2024-05-16T09:32:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.057500", + "Timestamp": "2024-05-16T09:32:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.400200", + "Timestamp": "2024-05-16T09:32:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.370200", + "Timestamp": "2024-05-16T09:32:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.270200", + "Timestamp": "2024-05-16T09:32:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.931300", + "Timestamp": "2024-05-16T09:32:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.962400", + "Timestamp": "2024-05-16T09:32:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.011900", + "Timestamp": "2024-05-16T09:32:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.006900", + "Timestamp": "2024-05-16T09:32:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.881900", + "Timestamp": "2024-05-16T09:32:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.803300", + "Timestamp": "2024-05-16T09:32:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.041800", + "Timestamp": "2024-05-16T09:32:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-16T09:31:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.520700", + "Timestamp": "2024-05-16T09:31:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.515700", + "Timestamp": "2024-05-16T09:31:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.390700", + "Timestamp": "2024-05-16T09:31:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.901800", + "Timestamp": "2024-05-16T09:31:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.871800", + "Timestamp": "2024-05-16T09:31:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.771800", + "Timestamp": "2024-05-16T09:31:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.209600", + "Timestamp": "2024-05-16T09:31:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.204600", + "Timestamp": "2024-05-16T09:31:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.079600", + "Timestamp": "2024-05-16T09:31:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.600400", + "Timestamp": "2024-05-16T09:31:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.601100", + "Timestamp": "2024-05-16T09:31:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.016600", + "Timestamp": "2024-05-16T09:31:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.986600", + "Timestamp": "2024-05-16T09:31:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.886600", + "Timestamp": "2024-05-16T09:31:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306300", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301300", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176300", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.010000", + "Timestamp": "2024-05-16T09:31:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.031000", + "Timestamp": "2024-05-16T09:31:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.450900", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.741600", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.736600", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.611600", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.694900", + "Timestamp": "2024-05-16T09:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.689900", + "Timestamp": "2024-05-16T09:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.564900", + "Timestamp": "2024-05-16T09:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.488100", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.178900", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.186900", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.181900", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.056900", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.250800", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.245800", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120800", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.028000", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.597300", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.757000", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102300", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098300", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042300", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.524500", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.519500", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.394500", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.019000", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.989000", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.889000", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.644100", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.478800", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.064400", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.059400", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.934400", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.256200", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.251200", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.126200", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.616800", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.611800", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.486800", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.637200", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.632200", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.507200", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.211100", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117200", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113500", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057200", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.301800", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.187200", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183200", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127200", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.316400", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.311400", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186400", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.511500", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.506500", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.381500", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.381600", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.376600", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.251600", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.113100", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.108100", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.983100", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.274500", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087400", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083700", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027400", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146300", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142600", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086300", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.612600", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.582600", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.482600", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.445800", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.440800", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.315800", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.311900", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.045600", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.040600", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.915600", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.817300", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.812300", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.687300", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.925000", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.101100", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096100", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092400", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036100", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.383800", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.249300", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.244300", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119300", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229000", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.466700", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068500", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038500", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008500", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.914400", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150100", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146400", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090100", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.704200", + "Timestamp": "2024-05-16T09:31:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.653100", + "Timestamp": "2024-05-16T09:31:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.699200", + "Timestamp": "2024-05-16T09:31:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.648100", + "Timestamp": "2024-05-16T09:31:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.574200", + "Timestamp": "2024-05-16T09:31:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.523100", + "Timestamp": "2024-05-16T09:31:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130000", + "Timestamp": "2024-05-16T09:31:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T09:31:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070000", + "Timestamp": "2024-05-16T09:31:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.848400", + "Timestamp": "2024-05-16T09:31:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145600", + "Timestamp": "2024-05-16T09:31:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141600", + "Timestamp": "2024-05-16T09:31:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085600", + "Timestamp": "2024-05-16T09:31:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "a1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093100", + "Timestamp": "2024-05-16T09:31:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "a1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089400", + "Timestamp": "2024-05-16T09:31:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "a1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033100", + "Timestamp": "2024-05-16T09:31:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.317600", + "Timestamp": "2024-05-16T09:31:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.287600", + "Timestamp": "2024-05-16T09:31:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.187600", + "Timestamp": "2024-05-16T09:31:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.447300", + "Timestamp": "2024-05-16T09:31:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.442300", + "Timestamp": "2024-05-16T09:31:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.317300", + "Timestamp": "2024-05-16T09:31:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.188600", + "Timestamp": "2024-05-16T09:20:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.184600", + "Timestamp": "2024-05-16T09:20:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128600", + "Timestamp": "2024-05-16T09:20:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.280600", + "Timestamp": "2024-05-16T09:20:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.278900", + "Timestamp": "2024-05-16T09:20:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "a1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-16T09:17:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "a1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039800", + "Timestamp": "2024-05-16T09:17:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "a1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008800", + "Timestamp": "2024-05-16T09:17:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.012700", + "Timestamp": "2024-05-16T09:17:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.797800", + "Timestamp": "2024-05-16T09:17:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.792800", + "Timestamp": "2024-05-16T09:17:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.667800", + "Timestamp": "2024-05-16T09:17:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.026900", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.021900", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.896900", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.517100", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.487100", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.387100", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.235900", + "Timestamp": "2024-05-16T09:17:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.230900", + "Timestamp": "2024-05-16T09:17:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.105900", + "Timestamp": "2024-05-16T09:17:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.701000", + "Timestamp": "2024-05-16T09:17:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.142400", + "Timestamp": "2024-05-16T09:17:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.137400", + "Timestamp": "2024-05-16T09:17:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.012400", + "Timestamp": "2024-05-16T09:17:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.261100", + "Timestamp": "2024-05-16T09:17:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.269900", + "Timestamp": "2024-05-16T09:17:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.267500", + "Timestamp": "2024-05-16T09:17:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.903700", + "Timestamp": "2024-05-16T09:17:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.898700", + "Timestamp": "2024-05-16T09:17:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.773700", + "Timestamp": "2024-05-16T09:17:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.614300", + "Timestamp": "2024-05-16T09:17:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.584300", + "Timestamp": "2024-05-16T09:17:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.484300", + "Timestamp": "2024-05-16T09:17:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.876500", + "Timestamp": "2024-05-16T09:17:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.846500", + "Timestamp": "2024-05-16T09:17:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.746500", + "Timestamp": "2024-05-16T09:17:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.962700", + "Timestamp": "2024-05-16T09:17:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.932700", + "Timestamp": "2024-05-16T09:17:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.832700", + "Timestamp": "2024-05-16T09:17:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118900", + "Timestamp": "2024-05-16T09:17:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.985600", + "Timestamp": "2024-05-16T09:17:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.241700", + "Timestamp": "2024-05-16T09:17:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.870800", + "Timestamp": "2024-05-16T09:16:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.865800", + "Timestamp": "2024-05-16T09:16:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.740800", + "Timestamp": "2024-05-16T09:16:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.288200", + "Timestamp": "2024-05-16T09:16:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.258200", + "Timestamp": "2024-05-16T09:16:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.158200", + "Timestamp": "2024-05-16T09:16:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.980800", + "Timestamp": "2024-05-16T09:16:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.820200", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.815200", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.690200", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.957100", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.805400", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.344700", + "Timestamp": "2024-05-16T09:16:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.860000", + "Timestamp": "2024-05-16T09:16:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.444800", + "Timestamp": "2024-05-16T09:16:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.439800", + "Timestamp": "2024-05-16T09:16:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.314800", + "Timestamp": "2024-05-16T09:16:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072000", + "Timestamp": "2024-05-16T09:16:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068300", + "Timestamp": "2024-05-16T09:16:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012000", + "Timestamp": "2024-05-16T09:16:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.045100", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.015100", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.915100", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.273700", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.882200", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.877200", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.752200", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.502600", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.497600", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.372600", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.551700", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.961000", + "Timestamp": "2024-05-16T09:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.505800", + "Timestamp": "2024-05-16T09:16:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.200900", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.195900", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.070900", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.902100", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.897100", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.772100", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.404600", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068700", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039700", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008700", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.428000", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.423000", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.298000", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.540800", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.535800", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.410800", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.907100", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103900", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047600", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.545300", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.893600", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.888600", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.763600", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.512600", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.507600", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.382600", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.310500", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.654900", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.649900", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.524900", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.251600", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.574300", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.139400", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.519900", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.514900", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.389900", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.546700", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.230200", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.551700", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.004200", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.974200", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.874200", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.509700", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.510200", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.062400", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.738500", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144000", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140000", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084000", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.890800", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042900", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.025600", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119200", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.270500", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.265500", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.140500", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132400", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128400", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072400", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097300", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093600", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037300", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.178400", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174400", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118400", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.425500", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.420500", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.295500", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.900700", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087600", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083600", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027600", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.113400", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.108400", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.983400", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061200", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001200", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001200", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148800", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144800", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088800", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.568400", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.564700", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.508400", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.593700", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.588700", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.463700", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.718200", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.713200", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.588200", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.444000", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.439000", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.314000", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.867700", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.536100", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.531100", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.406100", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210700", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.387100", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.382100", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.257100", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.464900", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.277200", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.272200", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147200", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270200", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265200", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140200", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.612600", + "Timestamp": "2024-05-16T09:16:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.607600", + "Timestamp": "2024-05-16T09:16:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.482600", + "Timestamp": "2024-05-16T09:16:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.932200", + "Timestamp": "2024-05-16T09:16:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094300", + "Timestamp": "2024-05-16T09:16:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090600", + "Timestamp": "2024-05-16T09:16:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034300", + "Timestamp": "2024-05-16T09:16:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.345600", + "Timestamp": "2024-05-16T09:16:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.340600", + "Timestamp": "2024-05-16T09:16:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.215600", + "Timestamp": "2024-05-16T09:16:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T09:16:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098500", + "Timestamp": "2024-05-16T09:16:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042500", + "Timestamp": "2024-05-16T09:16:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134800", + "Timestamp": "2024-05-16T09:02:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174800", + "Timestamp": "2024-05-16T09:02:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074800", + "Timestamp": "2024-05-16T09:02:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.791300", + "Timestamp": "2024-05-16T09:02:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.786300", + "Timestamp": "2024-05-16T09:02:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.661300", + "Timestamp": "2024-05-16T09:02:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.683600", + "Timestamp": "2024-05-16T09:02:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.678600", + "Timestamp": "2024-05-16T09:02:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.553600", + "Timestamp": "2024-05-16T09:02:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.627200", + "Timestamp": "2024-05-16T09:02:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.622200", + "Timestamp": "2024-05-16T09:02:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.497200", + "Timestamp": "2024-05-16T09:02:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.871000", + "Timestamp": "2024-05-16T09:02:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.908800", + "Timestamp": "2024-05-16T09:02:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.903800", + "Timestamp": "2024-05-16T09:02:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.778800", + "Timestamp": "2024-05-16T09:02:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.669300", + "Timestamp": "2024-05-16T09:02:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.635100", + "Timestamp": "2024-05-16T09:02:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.177300", + "Timestamp": "2024-05-16T09:02:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.813700", + "Timestamp": "2024-05-16T09:02:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.103700", + "Timestamp": "2024-05-16T09:02:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.068100", + "Timestamp": "2024-05-16T09:02:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.937800", + "Timestamp": "2024-05-16T09:02:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.907800", + "Timestamp": "2024-05-16T09:02:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.807800", + "Timestamp": "2024-05-16T09:02:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.621300", + "Timestamp": "2024-05-16T09:02:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "8.856300", + "Timestamp": "2024-05-16T09:02:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "8.851300", + "Timestamp": "2024-05-16T09:02:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "8.726300", + "Timestamp": "2024-05-16T09:02:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.217100", + "Timestamp": "2024-05-16T09:01:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.707500", + "Timestamp": "2024-05-16T09:01:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.702500", + "Timestamp": "2024-05-16T09:01:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.577500", + "Timestamp": "2024-05-16T09:01:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094300", + "Timestamp": "2024-05-16T09:01:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090600", + "Timestamp": "2024-05-16T09:01:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034300", + "Timestamp": "2024-05-16T09:01:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "15.183600", + "Timestamp": "2024-05-16T09:01:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.927200", + "Timestamp": "2024-05-16T09:01:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.897200", + "Timestamp": "2024-05-16T09:01:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.797200", + "Timestamp": "2024-05-16T09:01:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.483000", + "Timestamp": "2024-05-16T09:01:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.478000", + "Timestamp": "2024-05-16T09:01:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.353000", + "Timestamp": "2024-05-16T09:01:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.113000", + "Timestamp": "2024-05-16T09:01:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.108000", + "Timestamp": "2024-05-16T09:01:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.983000", + "Timestamp": "2024-05-16T09:01:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.360800", + "Timestamp": "2024-05-16T09:01:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.283800", + "Timestamp": "2024-05-16T09:01:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.229600", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.232400", + "Timestamp": "2024-05-16T09:01:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.679900", + "Timestamp": "2024-05-16T09:01:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.568000", + "Timestamp": "2024-05-16T09:01:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.419900", + "Timestamp": "2024-05-16T09:01:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.414900", + "Timestamp": "2024-05-16T09:01:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.289900", + "Timestamp": "2024-05-16T09:01:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330800", + "Timestamp": "2024-05-16T09:01:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325800", + "Timestamp": "2024-05-16T09:01:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200800", + "Timestamp": "2024-05-16T09:01:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.251800", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.246800", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121800", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.132900", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.031700", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.121200", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.233500", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.116200", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.228500", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.991200", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.103500", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.636100", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.631100", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.506100", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.817700", + "Timestamp": "2024-05-16T09:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.812700", + "Timestamp": "2024-05-16T09:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.687700", + "Timestamp": "2024-05-16T09:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.237200", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.232200", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.107200", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.971800", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.882900", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.877900", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.752900", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.941100", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.936100", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.811100", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.783300", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.166300", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.646700", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.142800", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.245000", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.240000", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.115000", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.269100", + "Timestamp": "2024-05-16T09:01:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.683500", + "Timestamp": "2024-05-16T09:01:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.678500", + "Timestamp": "2024-05-16T09:01:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.553500", + "Timestamp": "2024-05-16T09:01:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117500", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113500", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057500", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.968600", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.938600", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.838600", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.790700", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.760700", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.660700", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.322400", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.317400", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.192400", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.862800", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.710500", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.705500", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.580500", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.099400", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.094400", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.969400", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.470900", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.338800", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.333800", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.208800", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223700", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.280900", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.275900", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150900", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049400", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.431500", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.426500", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.301500", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050000", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.615600", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.610600", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.485600", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.382800", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.352800", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.252800", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.673300", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.668300", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.543300", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.659300", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119200", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.410700", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.567900", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.223700", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.564100", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.032600", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.002600", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.902600", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117000", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114000", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057000", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.825000", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.820000", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.695000", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.173300", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.416700", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.411700", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.286700", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.179200", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.257100", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.250100", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.057300", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.052300", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.927300", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.494900", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.489900", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.364900", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.962300", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.957300", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.832300", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.626200", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.621200", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.496200", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114300", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054300", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.577800", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.773600", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.768600", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.643600", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.789100", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.784100", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.659100", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.251900", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.246900", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121900", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.074700", + "Timestamp": "2024-05-16T09:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.784600", + "Timestamp": "2024-05-16T09:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.779600", + "Timestamp": "2024-05-16T09:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.654600", + "Timestamp": "2024-05-16T09:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.434600", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.473800", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.468800", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.343800", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.269000", + "Timestamp": "2024-05-16T09:01:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.435300", + "Timestamp": "2024-05-16T09:01:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.430300", + "Timestamp": "2024-05-16T09:01:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.305300", + "Timestamp": "2024-05-16T09:01:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.757700", + "Timestamp": "2024-05-16T09:01:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.562400", + "Timestamp": "2024-05-16T09:01:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.767300", + "Timestamp": "2024-05-16T09:01:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.737300", + "Timestamp": "2024-05-16T09:01:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.637300", + "Timestamp": "2024-05-16T09:01:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T09:01:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100000", + "Timestamp": "2024-05-16T09:01:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044000", + "Timestamp": "2024-05-16T09:01:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.198400", + "Timestamp": "2024-05-16T09:01:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114100", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054100", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.557500", + "Timestamp": "2024-05-16T08:47:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.552500", + "Timestamp": "2024-05-16T08:47:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.427500", + "Timestamp": "2024-05-16T08:47:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.921600", + "Timestamp": "2024-05-16T08:47:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.916600", + "Timestamp": "2024-05-16T08:47:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.791600", + "Timestamp": "2024-05-16T08:47:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.345400", + "Timestamp": "2024-05-16T08:47:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.340400", + "Timestamp": "2024-05-16T08:47:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.215400", + "Timestamp": "2024-05-16T08:47:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.220700", + "Timestamp": "2024-05-16T08:47:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.189100", + "Timestamp": "2024-05-16T08:47:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.293600", + "Timestamp": "2024-05-16T08:47:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.669100", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.079600", + "Timestamp": "2024-05-16T08:47:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.074600", + "Timestamp": "2024-05-16T08:47:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.949600", + "Timestamp": "2024-05-16T08:47:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.326500", + "Timestamp": "2024-05-16T08:47:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.503400", + "Timestamp": "2024-05-16T08:47:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.632300", + "Timestamp": "2024-05-16T08:47:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.627300", + "Timestamp": "2024-05-16T08:47:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.502300", + "Timestamp": "2024-05-16T08:47:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.889200", + "Timestamp": "2024-05-16T08:47:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.108100", + "Timestamp": "2024-05-16T08:47:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.703400", + "Timestamp": "2024-05-16T08:47:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.673400", + "Timestamp": "2024-05-16T08:47:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.573400", + "Timestamp": "2024-05-16T08:47:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120300", + "Timestamp": "2024-05-16T08:47:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.118300", + "Timestamp": "2024-05-16T08:47:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.470900", + "Timestamp": "2024-05-16T08:47:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.465900", + "Timestamp": "2024-05-16T08:47:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.340900", + "Timestamp": "2024-05-16T08:47:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.355100", + "Timestamp": "2024-05-16T08:46:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.350100", + "Timestamp": "2024-05-16T08:46:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.225100", + "Timestamp": "2024-05-16T08:46:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.820600", + "Timestamp": "2024-05-16T08:46:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.183500", + "Timestamp": "2024-05-16T08:46:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179500", + "Timestamp": "2024-05-16T08:46:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123500", + "Timestamp": "2024-05-16T08:46:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.218900", + "Timestamp": "2024-05-16T08:46:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.213900", + "Timestamp": "2024-05-16T08:46:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088900", + "Timestamp": "2024-05-16T08:46:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.459800", + "Timestamp": "2024-05-16T08:46:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.429800", + "Timestamp": "2024-05-16T08:46:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.329800", + "Timestamp": "2024-05-16T08:46:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.538700", + "Timestamp": "2024-05-16T08:46:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.533700", + "Timestamp": "2024-05-16T08:46:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.408700", + "Timestamp": "2024-05-16T08:46:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.717800", + "Timestamp": "2024-05-16T08:46:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.340300", + "Timestamp": "2024-05-16T08:46:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.336300", + "Timestamp": "2024-05-16T08:46:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.280300", + "Timestamp": "2024-05-16T08:46:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "9.405600", + "Timestamp": "2024-05-16T08:46:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "9.375600", + "Timestamp": "2024-05-16T08:46:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "9.275600", + "Timestamp": "2024-05-16T08:46:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.176300", + "Timestamp": "2024-05-16T08:46:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.146300", + "Timestamp": "2024-05-16T08:46:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.046300", + "Timestamp": "2024-05-16T08:46:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.199300", + "Timestamp": "2024-05-16T08:46:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.169300", + "Timestamp": "2024-05-16T08:46:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.069300", + "Timestamp": "2024-05-16T08:46:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.135000", + "Timestamp": "2024-05-16T08:46:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.419100", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.414100", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.289100", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.365600", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.360600", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235600", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.698300", + "Timestamp": "2024-05-16T08:46:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.693300", + "Timestamp": "2024-05-16T08:46:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.568300", + "Timestamp": "2024-05-16T08:46:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.019900", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099400", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095700", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039400", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044500", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.628900", + "Timestamp": "2024-05-16T08:46:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.623900", + "Timestamp": "2024-05-16T08:46:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.498900", + "Timestamp": "2024-05-16T08:46:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.913500", + "Timestamp": "2024-05-16T08:46:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.238300", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.234300", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.178300", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.689400", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.684400", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.559400", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.253400", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124200", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120200", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064200", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.549500", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.746100", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.425000", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.017600", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090300", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086600", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030300", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.409700", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.404700", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.279700", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.352000", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.322000", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.222000", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.032900", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.535400", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.463400", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.458400", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.333400", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.310900", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.305900", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180900", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.846900", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.869200", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.746200", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.716200", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.616200", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.927000", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.743600", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.738600", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.613600", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139100", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135100", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079100", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.421400", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.416400", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.291400", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.630900", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.625900", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.500900", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143500", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139800", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083500", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.592300", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.442500", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.437500", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.312500", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301500", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296500", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171500", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.575700", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.570700", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.445700", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090200", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086200", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030200", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153300", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149300", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093300", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.638600", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051400", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.147900", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.142900", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.017900", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108900", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048900", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.984200", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.979200", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.854200", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.153600", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.607900", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.570600", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.123700", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.118700", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.993700", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128500", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.749800", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.744800", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.619800", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.469600", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.464600", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.339600", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072600", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068900", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012600", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.656100", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.626100", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.526100", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.272900", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.242900", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.142900", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.883600", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.967400", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157100", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154100", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.454800", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.449800", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.324800", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.631700", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.626700", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.501700", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.465400", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.227500", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217600", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.628500", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.623500", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.498500", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.144000", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.139000", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.014000", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.750400", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.720400", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.620400", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.930200", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.911200", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.860500", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.906200", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.855500", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.781200", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.730500", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.462500", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.432500", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.332500", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.164100", + "Timestamp": "2024-05-16T08:46:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.158000", + "Timestamp": "2024-05-16T08:46:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.507300", + "Timestamp": "2024-05-16T08:46:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.502300", + "Timestamp": "2024-05-16T08:46:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.377300", + "Timestamp": "2024-05-16T08:46:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.491700", + "Timestamp": "2024-05-16T08:46:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.486700", + "Timestamp": "2024-05-16T08:46:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.361700", + "Timestamp": "2024-05-16T08:46:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079200", + "Timestamp": "2024-05-16T08:46:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075500", + "Timestamp": "2024-05-16T08:46:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019200", + "Timestamp": "2024-05-16T08:46:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069300", + "Timestamp": "2024-05-16T08:46:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065600", + "Timestamp": "2024-05-16T08:46:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009300", + "Timestamp": "2024-05-16T08:46:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.063000", + "Timestamp": "2024-05-16T08:32:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.063000", + "Timestamp": "2024-05-16T08:32:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.033000", + "Timestamp": "2024-05-16T08:32:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.033000", + "Timestamp": "2024-05-16T08:32:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.933000", + "Timestamp": "2024-05-16T08:32:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.933000", + "Timestamp": "2024-05-16T08:32:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064200", + "Timestamp": "2024-05-16T08:32:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004200", + "Timestamp": "2024-05-16T08:32:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004200", + "Timestamp": "2024-05-16T08:32:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.994000", + "Timestamp": "2024-05-16T08:32:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.989000", + "Timestamp": "2024-05-16T08:32:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.864000", + "Timestamp": "2024-05-16T08:32:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.753500", + "Timestamp": "2024-05-16T08:32:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.919800", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.552200", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.496600", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.491600", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.366600", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.035900", + "Timestamp": "2024-05-16T08:32:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.030900", + "Timestamp": "2024-05-16T08:32:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.905900", + "Timestamp": "2024-05-16T08:32:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.506200", + "Timestamp": "2024-05-16T08:32:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.751000", + "Timestamp": "2024-05-16T08:32:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.746000", + "Timestamp": "2024-05-16T08:32:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.621000", + "Timestamp": "2024-05-16T08:32:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.122300", + "Timestamp": "2024-05-16T08:32:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.513200", + "Timestamp": "2024-05-16T08:32:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.508200", + "Timestamp": "2024-05-16T08:32:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.383200", + "Timestamp": "2024-05-16T08:32:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.127500", + "Timestamp": "2024-05-16T08:32:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.568400", + "Timestamp": "2024-05-16T08:32:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.710100", + "Timestamp": "2024-05-16T08:32:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.990300", + "Timestamp": "2024-05-16T08:32:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.500300", + "Timestamp": "2024-05-16T08:32:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.495300", + "Timestamp": "2024-05-16T08:32:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.370300", + "Timestamp": "2024-05-16T08:32:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.108500", + "Timestamp": "2024-05-16T08:32:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.103500", + "Timestamp": "2024-05-16T08:32:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.978500", + "Timestamp": "2024-05-16T08:32:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097800", + "Timestamp": "2024-05-16T08:31:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094100", + "Timestamp": "2024-05-16T08:31:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037800", + "Timestamp": "2024-05-16T08:31:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.440300", + "Timestamp": "2024-05-16T08:31:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.435300", + "Timestamp": "2024-05-16T08:31:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.310300", + "Timestamp": "2024-05-16T08:31:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.711500", + "Timestamp": "2024-05-16T08:31:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.706500", + "Timestamp": "2024-05-16T08:31:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.581500", + "Timestamp": "2024-05-16T08:31:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.476400", + "Timestamp": "2024-05-16T08:31:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.471400", + "Timestamp": "2024-05-16T08:31:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.346400", + "Timestamp": "2024-05-16T08:31:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T08:31:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100700", + "Timestamp": "2024-05-16T08:31:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044400", + "Timestamp": "2024-05-16T08:31:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.985500", + "Timestamp": "2024-05-16T08:31:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.340000", + "Timestamp": "2024-05-16T08:31:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.336000", + "Timestamp": "2024-05-16T08:31:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.280000", + "Timestamp": "2024-05-16T08:31:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "14.880400", + "Timestamp": "2024-05-16T08:31:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.661200", + "Timestamp": "2024-05-16T08:31:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.656200", + "Timestamp": "2024-05-16T08:31:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.531200", + "Timestamp": "2024-05-16T08:31:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.087600", + "Timestamp": "2024-05-16T08:31:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.082600", + "Timestamp": "2024-05-16T08:31:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.957600", + "Timestamp": "2024-05-16T08:31:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086400", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082700", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026400", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.517300", + "Timestamp": "2024-05-16T08:31:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.666300", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.661300", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.536300", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.140700", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.258400", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.049600", + "Timestamp": "2024-05-16T08:31:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.019600", + "Timestamp": "2024-05-16T08:31:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.919600", + "Timestamp": "2024-05-16T08:31:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.222000", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.020100", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.328300", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323300", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.198300", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.644800", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.639800", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.514800", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.245400", + "Timestamp": "2024-05-16T08:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.241400", + "Timestamp": "2024-05-16T08:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.185400", + "Timestamp": "2024-05-16T08:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.042400", + "Timestamp": "2024-05-16T08:31:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.102100", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.763600", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.004800", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.603000", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.814300", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.016900", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.207800", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.202800", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077800", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.537500", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.532500", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.407500", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.139000", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.415400", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.410400", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.285400", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.860900", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.830900", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.730900", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.574400", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.544400", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.444400", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.210300", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.945500", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.721000", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.691000", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.591000", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.241800", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.277000", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.272000", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147000", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.595100", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.590100", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.465100", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103900", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047600", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.166100", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.161100", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.036100", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.269500", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.264500", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139500", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.302200", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.297200", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172200", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.655700", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.650700", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.525700", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.366300", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.361300", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.236300", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.361700", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.714000", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.709000", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.584000", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.339700", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.368000", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.363000", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.238000", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147300", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047300", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.574700", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.569700", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.444700", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.936100", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.931100", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.806100", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.887200", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.103500", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.073500", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.973500", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.654300", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.002400", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.997400", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.872400", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.390500", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.385500", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.260500", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.519200", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.514200", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.389200", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.366900", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101100", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041100", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.087700", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.057700", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.957700", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.425900", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.694700", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.689700", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.564700", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.236300", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.231300", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.106300", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.749500", + "Timestamp": "2024-05-16T08:31:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.719500", + "Timestamp": "2024-05-16T08:31:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.619500", + "Timestamp": "2024-05-16T08:31:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150400", + "Timestamp": "2024-05-16T08:31:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146400", + "Timestamp": "2024-05-16T08:31:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090400", + "Timestamp": "2024-05-16T08:31:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115500", + "Timestamp": "2024-05-16T08:31:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128300", + "Timestamp": "2024-05-16T08:31:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111800", + "Timestamp": "2024-05-16T08:31:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124600", + "Timestamp": "2024-05-16T08:31:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055500", + "Timestamp": "2024-05-16T08:31:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068300", + "Timestamp": "2024-05-16T08:31:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.662500", + "Timestamp": "2024-05-16T08:31:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.657500", + "Timestamp": "2024-05-16T08:31:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.532500", + "Timestamp": "2024-05-16T08:31:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115200", + "Timestamp": "2024-05-16T08:31:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111200", + "Timestamp": "2024-05-16T08:31:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055200", + "Timestamp": "2024-05-16T08:31:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.992300", + "Timestamp": "2024-05-16T08:31:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.288700", + "Timestamp": "2024-05-16T08:31:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.283700", + "Timestamp": "2024-05-16T08:31:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158700", + "Timestamp": "2024-05-16T08:31:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.434700", + "Timestamp": "2024-05-16T08:31:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.450100", + "Timestamp": "2024-05-16T08:31:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.429700", + "Timestamp": "2024-05-16T08:31:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.445100", + "Timestamp": "2024-05-16T08:31:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.304700", + "Timestamp": "2024-05-16T08:31:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.320100", + "Timestamp": "2024-05-16T08:31:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.056400", + "Timestamp": "2024-05-16T08:31:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111300", + "Timestamp": "2024-05-16T08:31:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T08:31:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051300", + "Timestamp": "2024-05-16T08:31:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127600", + "Timestamp": "2024-05-16T08:31:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123600", + "Timestamp": "2024-05-16T08:31:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067600", + "Timestamp": "2024-05-16T08:31:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.301000", + "Timestamp": "2024-05-16T08:27:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.301000", + "Timestamp": "2024-05-16T08:27:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.232300", + "Timestamp": "2024-05-16T08:20:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.210900", + "Timestamp": "2024-05-16T08:20:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.116600", + "Timestamp": "2024-05-16T08:20:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.205900", + "Timestamp": "2024-05-16T08:20:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.111600", + "Timestamp": "2024-05-16T08:20:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.080900", + "Timestamp": "2024-05-16T08:20:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.986600", + "Timestamp": "2024-05-16T08:20:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.152100", + "Timestamp": "2024-05-16T08:20:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.050600", + "Timestamp": "2024-05-16T08:20:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.306000", + "Timestamp": "2024-05-16T08:20:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.020600", + "Timestamp": "2024-05-16T08:20:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.276000", + "Timestamp": "2024-05-16T08:20:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.920600", + "Timestamp": "2024-05-16T08:20:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.176000", + "Timestamp": "2024-05-16T08:20:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068200", + "Timestamp": "2024-05-16T08:17:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039200", + "Timestamp": "2024-05-16T08:17:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008200", + "Timestamp": "2024-05-16T08:17:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.021500", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.016500", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.891500", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.744200", + "Timestamp": "2024-05-16T08:17:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.739200", + "Timestamp": "2024-05-16T08:17:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.614200", + "Timestamp": "2024-05-16T08:17:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.527900", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.444200", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.439200", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.314200", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.207400", + "Timestamp": "2024-05-16T08:17:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.202400", + "Timestamp": "2024-05-16T08:17:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.077400", + "Timestamp": "2024-05-16T08:17:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.345500", + "Timestamp": "2024-05-16T08:17:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "8.929300", + "Timestamp": "2024-05-16T08:17:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "8.924300", + "Timestamp": "2024-05-16T08:17:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "8.799300", + "Timestamp": "2024-05-16T08:17:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.744200", + "Timestamp": "2024-05-16T08:17:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.927800", + "Timestamp": "2024-05-16T08:17:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.405100", + "Timestamp": "2024-05-16T08:17:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.321500", + "Timestamp": "2024-05-16T08:17:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.316500", + "Timestamp": "2024-05-16T08:17:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.191500", + "Timestamp": "2024-05-16T08:17:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.525500", + "Timestamp": "2024-05-16T08:17:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.161800", + "Timestamp": "2024-05-16T08:17:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.259800", + "Timestamp": "2024-05-16T08:17:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.156800", + "Timestamp": "2024-05-16T08:17:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.254800", + "Timestamp": "2024-05-16T08:17:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.031800", + "Timestamp": "2024-05-16T08:17:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.129800", + "Timestamp": "2024-05-16T08:17:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.691800", + "Timestamp": "2024-05-16T08:17:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.807200", + "Timestamp": "2024-05-16T08:17:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.802200", + "Timestamp": "2024-05-16T08:17:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.677200", + "Timestamp": "2024-05-16T08:17:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.529400", + "Timestamp": "2024-05-16T08:17:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.769100", + "Timestamp": "2024-05-16T08:17:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.764100", + "Timestamp": "2024-05-16T08:17:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.639100", + "Timestamp": "2024-05-16T08:17:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.596100", + "Timestamp": "2024-05-16T08:17:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119300", + "Timestamp": "2024-05-16T08:17:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159300", + "Timestamp": "2024-05-16T08:17:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059300", + "Timestamp": "2024-05-16T08:17:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.975000", + "Timestamp": "2024-05-16T08:17:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.268600", + "Timestamp": "2024-05-16T08:17:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.263600", + "Timestamp": "2024-05-16T08:17:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.138600", + "Timestamp": "2024-05-16T08:17:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.881200", + "Timestamp": "2024-05-16T08:17:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.566800", + "Timestamp": "2024-05-16T08:17:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.561800", + "Timestamp": "2024-05-16T08:17:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.436800", + "Timestamp": "2024-05-16T08:17:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.402800", + "Timestamp": "2024-05-16T08:17:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.522600", + "Timestamp": "2024-05-16T08:16:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.517600", + "Timestamp": "2024-05-16T08:16:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.392600", + "Timestamp": "2024-05-16T08:16:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.585100", + "Timestamp": "2024-05-16T08:16:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.555100", + "Timestamp": "2024-05-16T08:16:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.455100", + "Timestamp": "2024-05-16T08:16:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.479200", + "Timestamp": "2024-05-16T08:16:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.474200", + "Timestamp": "2024-05-16T08:16:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.349200", + "Timestamp": "2024-05-16T08:16:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.466900", + "Timestamp": "2024-05-16T08:16:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.217300", + "Timestamp": "2024-05-16T08:16:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.212300", + "Timestamp": "2024-05-16T08:16:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.087300", + "Timestamp": "2024-05-16T08:16:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.267900", + "Timestamp": "2024-05-16T08:16:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262900", + "Timestamp": "2024-05-16T08:16:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137900", + "Timestamp": "2024-05-16T08:16:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.009100", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.979100", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.879100", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129100", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069100", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.667800", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.662800", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.537800", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.514800", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.509800", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.384800", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.013100", + "Timestamp": "2024-05-16T08:16:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.388500", + "Timestamp": "2024-05-16T08:16:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.383500", + "Timestamp": "2024-05-16T08:16:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.258500", + "Timestamp": "2024-05-16T08:16:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.256800", + "Timestamp": "2024-05-16T08:16:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.752100", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.961300", + "Timestamp": "2024-05-16T08:16:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.250500", + "Timestamp": "2024-05-16T08:16:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.245500", + "Timestamp": "2024-05-16T08:16:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120500", + "Timestamp": "2024-05-16T08:16:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.870800", + "Timestamp": "2024-05-16T08:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.865800", + "Timestamp": "2024-05-16T08:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.740800", + "Timestamp": "2024-05-16T08:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.808000", + "Timestamp": "2024-05-16T08:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.803000", + "Timestamp": "2024-05-16T08:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.678000", + "Timestamp": "2024-05-16T08:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.729000", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.155600", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.637100", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.632100", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.507100", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.502700", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.486700", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.837700", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.572900", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.542900", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.442900", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.860900", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.252700", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.247700", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122700", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.582000", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.577000", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.452000", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.758700", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.824100", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.819100", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.694100", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.958300", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.953300", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.828300", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.921000", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.286900", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281900", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156900", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.909000", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159700", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155700", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099700", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.810400", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.805400", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.680400", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.166800", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.580900", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.575900", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.450900", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.893300", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.888300", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.763300", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087100", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090100", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083400", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086400", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027100", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030100", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130000", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070000", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.195700", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.190700", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.065700", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.293400", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.263400", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.163400", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.230000", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.118200", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.874200", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.869200", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.744200", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.307300", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.901200", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.896200", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.771200", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.852500", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.847500", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.722500", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.568100", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.038600", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.090100", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.214300", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069300", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065600", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009300", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.251400", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.246400", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121400", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.435800", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.430800", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.305800", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149200", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145500", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089200", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.686000", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.681000", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.556000", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.366100", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161500", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157800", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101500", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.419300", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.414300", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.289300", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.457000", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.524500", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.427000", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.494500", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.327000", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.394500", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.954800", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.949800", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.824800", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.962100", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.957100", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.832100", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.291700", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.573900", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.568900", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.443900", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.326100", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.183200", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.059600", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.765500", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.760500", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.635500", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.900200", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.967300", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.014800", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.009800", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.884800", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086900", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083200", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026900", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040900", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.375200", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.345200", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.245200", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.331800", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.326800", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.201800", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.636700", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.537800", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.532800", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.407800", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.377100", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.974400", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.944400", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.844400", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065800", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.036800", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005800", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.010600", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.980600", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.880600", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.664600", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.659600", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.534600", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.523400", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.483900", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.478900", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.353900", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.507200", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.502200", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.377200", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.567800", + "Timestamp": "2024-05-16T08:16:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.620500", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.615500", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.490500", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.584100", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.405000", + "Timestamp": "2024-05-16T08:02:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.400000", + "Timestamp": "2024-05-16T08:02:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.275000", + "Timestamp": "2024-05-16T08:02:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.792100", + "Timestamp": "2024-05-16T08:02:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101600", + "Timestamp": "2024-05-16T08:02:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097600", + "Timestamp": "2024-05-16T08:02:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041600", + "Timestamp": "2024-05-16T08:02:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.226900", + "Timestamp": "2024-05-16T08:02:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.222900", + "Timestamp": "2024-05-16T08:02:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.166900", + "Timestamp": "2024-05-16T08:02:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.468400", + "Timestamp": "2024-05-16T08:02:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.354800", + "Timestamp": "2024-05-16T08:02:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.720100", + "Timestamp": "2024-05-16T08:02:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.637500", + "Timestamp": "2024-05-16T08:02:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.607500", + "Timestamp": "2024-05-16T08:02:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.507500", + "Timestamp": "2024-05-16T08:02:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119300", + "Timestamp": "2024-05-16T08:02:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115600", + "Timestamp": "2024-05-16T08:02:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059300", + "Timestamp": "2024-05-16T08:02:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.930100", + "Timestamp": "2024-05-16T08:02:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.911100", + "Timestamp": "2024-05-16T08:02:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.906100", + "Timestamp": "2024-05-16T08:02:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.781100", + "Timestamp": "2024-05-16T08:02:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.536500", + "Timestamp": "2024-05-16T08:02:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.323900", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.293900", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.193900", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108500", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048500", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.308200", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.303200", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.178200", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.155800", + "Timestamp": "2024-05-16T08:01:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.125800", + "Timestamp": "2024-05-16T08:01:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.025800", + "Timestamp": "2024-05-16T08:01:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.398400", + "Timestamp": "2024-05-16T08:01:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.089400", + "Timestamp": "2024-05-16T08:01:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.084400", + "Timestamp": "2024-05-16T08:01:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.959400", + "Timestamp": "2024-05-16T08:01:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.042600", + "Timestamp": "2024-05-16T08:01:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.340500", + "Timestamp": "2024-05-16T08:01:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.336800", + "Timestamp": "2024-05-16T08:01:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.280500", + "Timestamp": "2024-05-16T08:01:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.298900", + "Timestamp": "2024-05-16T08:01:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.438800", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.433800", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.308800", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.841300", + "Timestamp": "2024-05-16T08:01:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220000", + "Timestamp": "2024-05-16T08:01:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.452500", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.447500", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.322500", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.074600", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.638500", + "Timestamp": "2024-05-16T08:01:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.636800", + "Timestamp": "2024-05-16T08:01:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.633500", + "Timestamp": "2024-05-16T08:01:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.631800", + "Timestamp": "2024-05-16T08:01:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.508500", + "Timestamp": "2024-05-16T08:01:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.506800", + "Timestamp": "2024-05-16T08:01:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.787700", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.782700", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.657700", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.494200", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.487400", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.286900", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.776100", + "Timestamp": "2024-05-16T08:01:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.224800", + "Timestamp": "2024-05-16T08:01:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.865000", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.860000", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.735000", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.786900", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.391400", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.386400", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.261400", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.061400", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.031400", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.931400", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.181100", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.221100", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121100", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.388500", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.346400", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.341400", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.216400", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.628400", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.484600", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.454600", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.354600", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.962800", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.932800", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.832800", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104700", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101000", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044700", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099300", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095600", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039300", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.541100", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.194200", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.189200", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.064200", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.679900", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.674900", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.549900", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.274400", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269400", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144400", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.056800", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.026800", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.926800", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144000", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140300", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084000", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.421800", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.353200", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.348200", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.223200", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.480600", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.198100", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193100", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068100", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.520700", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.454200", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.352600", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.322600", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.222600", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.141300", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.253700", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.576100", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.571100", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.446100", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.627900", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.622900", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.497900", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.614900", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.609900", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.484900", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.839200", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.190600", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.185600", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.060600", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117300", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157300", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057300", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.263100", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258100", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133100", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.036900", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.031900", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.906900", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.237500", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232500", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.193500", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.269200", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041200", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.146500", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218300", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.866000", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.906300", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.901300", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.776300", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.801000", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.796000", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.671000", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.460500", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.455500", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.330500", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143900", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183900", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083900", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.153900", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.586300", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.581300", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.456300", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096300", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092300", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036300", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.701900", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.198300", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.193300", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.068300", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.489700", + "Timestamp": "2024-05-16T08:01:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085700", + "Timestamp": "2024-05-16T08:01:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082000", + "Timestamp": "2024-05-16T08:01:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025700", + "Timestamp": "2024-05-16T08:01:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.746800", + "Timestamp": "2024-05-16T08:01:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.716800", + "Timestamp": "2024-05-16T08:01:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.616800", + "Timestamp": "2024-05-16T08:01:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.024200", + "Timestamp": "2024-05-16T08:01:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.019200", + "Timestamp": "2024-05-16T08:01:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.894200", + "Timestamp": "2024-05-16T08:01:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.477600", + "Timestamp": "2024-05-16T08:01:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.472600", + "Timestamp": "2024-05-16T08:01:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.347600", + "Timestamp": "2024-05-16T08:01:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.467100", + "Timestamp": "2024-05-16T08:01:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.462100", + "Timestamp": "2024-05-16T08:01:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.337100", + "Timestamp": "2024-05-16T08:01:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.987900", + "Timestamp": "2024-05-16T08:01:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.982900", + "Timestamp": "2024-05-16T08:01:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.857900", + "Timestamp": "2024-05-16T08:01:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.887000", + "Timestamp": "2024-05-16T07:53:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.887000", + "Timestamp": "2024-05-16T07:53:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.927000", + "Timestamp": "2024-05-16T07:53:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.927000", + "Timestamp": "2024-05-16T07:53:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.827000", + "Timestamp": "2024-05-16T07:53:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.827000", + "Timestamp": "2024-05-16T07:53:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.011000", + "Timestamp": "2024-05-16T07:53:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.011000", + "Timestamp": "2024-05-16T07:53:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.640400", + "Timestamp": "2024-05-16T07:49:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.526500", + "Timestamp": "2024-05-16T07:47:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.092700", + "Timestamp": "2024-05-16T07:47:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.087700", + "Timestamp": "2024-05-16T07:47:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.962700", + "Timestamp": "2024-05-16T07:47:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.379900", + "Timestamp": "2024-05-16T07:47:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.419900", + "Timestamp": "2024-05-16T07:47:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.319900", + "Timestamp": "2024-05-16T07:47:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.430500", + "Timestamp": "2024-05-16T07:47:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.750200", + "Timestamp": "2024-05-16T07:47:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.745200", + "Timestamp": "2024-05-16T07:47:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.620200", + "Timestamp": "2024-05-16T07:47:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.827300", + "Timestamp": "2024-05-16T07:47:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.672100", + "Timestamp": "2024-05-16T07:47:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.696500", + "Timestamp": "2024-05-16T07:47:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.667100", + "Timestamp": "2024-05-16T07:47:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.691500", + "Timestamp": "2024-05-16T07:47:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.542100", + "Timestamp": "2024-05-16T07:47:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.566500", + "Timestamp": "2024-05-16T07:47:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "p2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.628300", + "Timestamp": "2024-05-16T07:47:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.668300", + "Timestamp": "2024-05-16T07:47:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "p2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.568300", + "Timestamp": "2024-05-16T07:47:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.416000", + "Timestamp": "2024-05-16T07:47:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.386000", + "Timestamp": "2024-05-16T07:47:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.286000", + "Timestamp": "2024-05-16T07:47:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.334400", + "Timestamp": "2024-05-16T07:47:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.529900", + "Timestamp": "2024-05-16T07:47:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.096700", + "Timestamp": "2024-05-16T07:47:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.338100", + "Timestamp": "2024-05-16T07:47:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.954900", + "Timestamp": "2024-05-16T07:47:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.949900", + "Timestamp": "2024-05-16T07:47:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.824900", + "Timestamp": "2024-05-16T07:47:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.126000", + "Timestamp": "2024-05-16T07:47:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.967700", + "Timestamp": "2024-05-16T07:47:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.937700", + "Timestamp": "2024-05-16T07:47:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.837700", + "Timestamp": "2024-05-16T07:47:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.904000", + "Timestamp": "2024-05-16T07:47:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.899000", + "Timestamp": "2024-05-16T07:47:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.774000", + "Timestamp": "2024-05-16T07:47:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.860700", + "Timestamp": "2024-05-16T07:46:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.468000", + "Timestamp": "2024-05-16T07:46:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.861600", + "Timestamp": "2024-05-16T07:46:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.856600", + "Timestamp": "2024-05-16T07:46:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.731600", + "Timestamp": "2024-05-16T07:46:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.465600", + "Timestamp": "2024-05-16T07:46:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.460600", + "Timestamp": "2024-05-16T07:46:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.335600", + "Timestamp": "2024-05-16T07:46:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.033100", + "Timestamp": "2024-05-16T07:46:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.234900", + "Timestamp": "2024-05-16T07:46:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.219900", + "Timestamp": "2024-05-16T07:46:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.214900", + "Timestamp": "2024-05-16T07:46:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.089900", + "Timestamp": "2024-05-16T07:46:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.130400", + "Timestamp": "2024-05-16T07:46:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.098200", + "Timestamp": "2024-05-16T07:46:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.093200", + "Timestamp": "2024-05-16T07:46:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.968200", + "Timestamp": "2024-05-16T07:46:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.122100", + "Timestamp": "2024-05-16T07:46:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.686200", + "Timestamp": "2024-05-16T07:46:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.248900", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.243900", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.118900", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.879400", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.795100", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.765100", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.665100", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.840800", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.835800", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.710800", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.483000", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.695000", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.690000", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.565000", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.588400", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.583400", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.458400", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.160200", + "Timestamp": "2024-05-16T07:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.155200", + "Timestamp": "2024-05-16T07:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.030200", + "Timestamp": "2024-05-16T07:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.471900", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.255200", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299700", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.269000", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294700", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.264000", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169700", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139000", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.461700", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.332900", + "Timestamp": "2024-05-16T07:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.327900", + "Timestamp": "2024-05-16T07:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.202900", + "Timestamp": "2024-05-16T07:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.985400", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.980400", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.855400", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200100", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196100", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140100", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103600", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047600", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.134100", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.894700", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.889700", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.764700", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.243600", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.238600", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113600", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.478700", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362000", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.357000", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.232000", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.333700", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.328700", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.203700", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.140800", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.984700", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.591000", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.586000", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.461000", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.752200", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "13.241800", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.753000", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.748000", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.623000", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429900", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.253100", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.411900", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.406900", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.281900", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.515100", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.510100", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.385100", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209300", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.560400", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.355900", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.650900", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107900", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047900", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.984800", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.979800", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.854800", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.253300", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.567800", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.147400", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.844200", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.839200", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.714200", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.228400", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.224400", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168400", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.870900", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.670100", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.548700", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.312900", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.282900", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.182900", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.676400", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.671400", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.546400", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.217600", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.908300", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.903300", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.778300", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.347100", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.342100", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.217100", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.309200", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.304200", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.179200", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.142900", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.731500", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.726500", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.601500", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132600", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128900", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072600", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.923700", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.918700", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.793700", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099900", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039900", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.205500", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.200500", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075500", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.047700", + "Timestamp": "2024-05-16T07:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.913800", + "Timestamp": "2024-05-16T07:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.410100", + "Timestamp": "2024-05-16T07:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.380100", + "Timestamp": "2024-05-16T07:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.280100", + "Timestamp": "2024-05-16T07:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.202100", + "Timestamp": "2024-05-16T07:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.156500", + "Timestamp": "2024-05-16T07:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.873500", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.705600", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.675600", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.575600", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.339400", + "Timestamp": "2024-05-16T07:46:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334400", + "Timestamp": "2024-05-16T07:46:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.209400", + "Timestamp": "2024-05-16T07:46:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089800", + "Timestamp": "2024-05-16T07:46:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085800", + "Timestamp": "2024-05-16T07:46:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029800", + "Timestamp": "2024-05-16T07:46:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.261300", + "Timestamp": "2024-05-16T07:46:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.862800", + "Timestamp": "2024-05-16T07:46:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.090500", + "Timestamp": "2024-05-16T07:46:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.085500", + "Timestamp": "2024-05-16T07:46:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.960500", + "Timestamp": "2024-05-16T07:46:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.238500", + "Timestamp": "2024-05-16T07:32:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.026700", + "Timestamp": "2024-05-16T07:32:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.616300", + "Timestamp": "2024-05-16T07:32:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.611300", + "Timestamp": "2024-05-16T07:32:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.486300", + "Timestamp": "2024-05-16T07:32:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.210200", + "Timestamp": "2024-05-16T07:32:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.180200", + "Timestamp": "2024-05-16T07:32:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.080200", + "Timestamp": "2024-05-16T07:32:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.802000", + "Timestamp": "2024-05-16T07:32:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.030500", + "Timestamp": "2024-05-16T07:32:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.025500", + "Timestamp": "2024-05-16T07:32:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.900500", + "Timestamp": "2024-05-16T07:32:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.269600", + "Timestamp": "2024-05-16T07:32:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.014900", + "Timestamp": "2024-05-16T07:32:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.804500", + "Timestamp": "2024-05-16T07:32:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.799500", + "Timestamp": "2024-05-16T07:32:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.674500", + "Timestamp": "2024-05-16T07:32:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.329100", + "Timestamp": "2024-05-16T07:32:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.324100", + "Timestamp": "2024-05-16T07:32:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.199100", + "Timestamp": "2024-05-16T07:32:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.448800", + "Timestamp": "2024-05-16T07:32:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.443800", + "Timestamp": "2024-05-16T07:32:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.318800", + "Timestamp": "2024-05-16T07:32:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.887400", + "Timestamp": "2024-05-16T07:32:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.535200", + "Timestamp": "2024-05-16T07:32:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.530200", + "Timestamp": "2024-05-16T07:32:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.405200", + "Timestamp": "2024-05-16T07:32:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.445300", + "Timestamp": "2024-05-16T07:32:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.440300", + "Timestamp": "2024-05-16T07:32:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.315300", + "Timestamp": "2024-05-16T07:32:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.990900", + "Timestamp": "2024-05-16T07:32:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.814200", + "Timestamp": "2024-05-16T07:32:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.306100", + "Timestamp": "2024-05-16T07:32:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.537000", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.532000", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.407000", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.444600", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.439600", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.314600", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.864400", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.581300", + "Timestamp": "2024-05-16T07:31:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111900", + "Timestamp": "2024-05-16T07:31:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T07:31:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051900", + "Timestamp": "2024-05-16T07:31:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T07:31:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.231300", + "Timestamp": "2024-05-16T07:31:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.226300", + "Timestamp": "2024-05-16T07:31:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.101300", + "Timestamp": "2024-05-16T07:31:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.049000", + "Timestamp": "2024-05-16T07:31:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.628600", + "Timestamp": "2024-05-16T07:31:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.623600", + "Timestamp": "2024-05-16T07:31:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.498600", + "Timestamp": "2024-05-16T07:31:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.056800", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.270900", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.126400", + "Timestamp": "2024-05-16T07:31:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "14.061100", + "Timestamp": "2024-05-16T07:31:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.423900", + "Timestamp": "2024-05-16T07:31:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.418900", + "Timestamp": "2024-05-16T07:31:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.293900", + "Timestamp": "2024-05-16T07:31:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273900", + "Timestamp": "2024-05-16T07:31:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268900", + "Timestamp": "2024-05-16T07:31:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143900", + "Timestamp": "2024-05-16T07:31:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.283500", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.278500", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.153500", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214100", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.151100", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.057100", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.277400", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.340900", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.335900", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.210900", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.056300", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.786600", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.210600", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124700", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.136900", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.993300", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.200400", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.725700", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.720700", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.595700", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.588000", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.583000", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.458000", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.196900", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "13.374300", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.916600", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.911600", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.786600", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.658000", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.653000", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.528000", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.259900", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.459100", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.429100", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.329100", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.914900", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.884900", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.784900", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.827500", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.822500", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.697500", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105500", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145500", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045500", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147900", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144900", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087900", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.222800", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.217800", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092800", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.540700", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.535700", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.410700", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.935300", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.638100", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.601900", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.596900", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.471900", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.147300", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.401800", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.396800", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.271800", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.309800", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.304800", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.179800", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.936500", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.906500", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.806500", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.878400", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.873400", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.748400", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.355500", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.350500", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.225500", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.656800", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.454900", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.449900", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.324900", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.388000", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.383000", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.258000", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.230900", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156400", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152700", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096400", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084100", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080100", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024100", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.058000", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.053000", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.928000", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.863400", + "Timestamp": "2024-05-16T07:31:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.407300", + "Timestamp": "2024-05-16T07:31:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.402300", + "Timestamp": "2024-05-16T07:31:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.277300", + "Timestamp": "2024-05-16T07:31:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140900", + "Timestamp": "2024-05-16T07:31:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136900", + "Timestamp": "2024-05-16T07:31:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080900", + "Timestamp": "2024-05-16T07:31:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.371800", + "Timestamp": "2024-05-16T07:31:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.366800", + "Timestamp": "2024-05-16T07:31:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.241800", + "Timestamp": "2024-05-16T07:31:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115200", + "Timestamp": "2024-05-16T07:31:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-16T07:31:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055200", + "Timestamp": "2024-05-16T07:31:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.217400", + "Timestamp": "2024-05-16T07:31:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.212400", + "Timestamp": "2024-05-16T07:31:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.087400", + "Timestamp": "2024-05-16T07:31:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069400", + "Timestamp": "2024-05-16T07:31:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065700", + "Timestamp": "2024-05-16T07:31:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009400", + "Timestamp": "2024-05-16T07:31:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.364700", + "Timestamp": "2024-05-16T07:31:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.249300", + "Timestamp": "2024-05-16T07:31:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.244300", + "Timestamp": "2024-05-16T07:31:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.119300", + "Timestamp": "2024-05-16T07:31:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.477200", + "Timestamp": "2024-05-16T07:17:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.472200", + "Timestamp": "2024-05-16T07:17:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.347200", + "Timestamp": "2024-05-16T07:17:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.615400", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.610400", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.485400", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.585500", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.492200", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.462200", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.362200", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.091200", + "Timestamp": "2024-05-16T07:17:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.295700", + "Timestamp": "2024-05-16T07:17:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.006700", + "Timestamp": "2024-05-16T07:17:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.001700", + "Timestamp": "2024-05-16T07:17:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.876700", + "Timestamp": "2024-05-16T07:17:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.263800", + "Timestamp": "2024-05-16T07:17:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258800", + "Timestamp": "2024-05-16T07:17:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133800", + "Timestamp": "2024-05-16T07:17:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.631600", + "Timestamp": "2024-05-16T07:17:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.626600", + "Timestamp": "2024-05-16T07:17:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.501600", + "Timestamp": "2024-05-16T07:17:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.645000", + "Timestamp": "2024-05-16T07:17:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.640000", + "Timestamp": "2024-05-16T07:17:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.515000", + "Timestamp": "2024-05-16T07:17:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.531800", + "Timestamp": "2024-05-16T07:17:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.574500", + "Timestamp": "2024-05-16T07:17:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.426600", + "Timestamp": "2024-05-16T07:17:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.827500", + "Timestamp": "2024-05-16T07:17:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.365800", + "Timestamp": "2024-05-16T07:17:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.360800", + "Timestamp": "2024-05-16T07:17:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235800", + "Timestamp": "2024-05-16T07:17:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.973000", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.996700", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.968000", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.991700", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.843000", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.866700", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.676000", + "Timestamp": "2024-05-16T07:17:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.169200", + "Timestamp": "2024-05-16T07:17:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120500", + "Timestamp": "2024-05-16T07:17:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.944200", + "Timestamp": "2024-05-16T07:17:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.254400", + "Timestamp": "2024-05-16T07:17:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.224400", + "Timestamp": "2024-05-16T07:17:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.124400", + "Timestamp": "2024-05-16T07:17:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.454900", + "Timestamp": "2024-05-16T07:17:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.473700", + "Timestamp": "2024-05-16T07:16:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.468700", + "Timestamp": "2024-05-16T07:16:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.343700", + "Timestamp": "2024-05-16T07:16:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.075700", + "Timestamp": "2024-05-16T07:16:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.807800", + "Timestamp": "2024-05-16T07:16:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.802800", + "Timestamp": "2024-05-16T07:16:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.677800", + "Timestamp": "2024-05-16T07:16:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.075300", + "Timestamp": "2024-05-16T07:16:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.070300", + "Timestamp": "2024-05-16T07:16:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.945300", + "Timestamp": "2024-05-16T07:16:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "15.482800", + "Timestamp": "2024-05-16T07:16:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.931600", + "Timestamp": "2024-05-16T07:16:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.926600", + "Timestamp": "2024-05-16T07:16:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.801600", + "Timestamp": "2024-05-16T07:16:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.462300", + "Timestamp": "2024-05-16T07:16:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.457300", + "Timestamp": "2024-05-16T07:16:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.332300", + "Timestamp": "2024-05-16T07:16:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.987700", + "Timestamp": "2024-05-16T07:16:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.982700", + "Timestamp": "2024-05-16T07:16:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.857700", + "Timestamp": "2024-05-16T07:16:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.238100", + "Timestamp": "2024-05-16T07:16:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.277700", + "Timestamp": "2024-05-16T07:16:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.272700", + "Timestamp": "2024-05-16T07:16:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.147700", + "Timestamp": "2024-05-16T07:16:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.102500", + "Timestamp": "2024-05-16T07:16:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.738200", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.733200", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.608200", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.213900", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.170200", + "Timestamp": "2024-05-16T07:16:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.618200", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.829700", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.835800", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.824700", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.830800", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.699700", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.705800", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.050400", + "Timestamp": "2024-05-16T07:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.045400", + "Timestamp": "2024-05-16T07:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.920400", + "Timestamp": "2024-05-16T07:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.063400", + "Timestamp": "2024-05-16T07:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.104300", + "Timestamp": "2024-05-16T07:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120800", + "Timestamp": "2024-05-16T07:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116800", + "Timestamp": "2024-05-16T07:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060800", + "Timestamp": "2024-05-16T07:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.215400", + "Timestamp": "2024-05-16T07:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.210400", + "Timestamp": "2024-05-16T07:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085400", + "Timestamp": "2024-05-16T07:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134600", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130600", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074600", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.288600", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.782700", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.752700", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.652700", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.222800", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.202000", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.961300", + "Timestamp": "2024-05-16T07:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.071900", + "Timestamp": "2024-05-16T07:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.762800", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.757800", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.632800", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.138700", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.539000", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.534000", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.409000", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.946600", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.941600", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.816600", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.616600", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.591000", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.843800", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.588100", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.558100", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.458100", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095300", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091300", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035300", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.979700", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125800", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121800", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065800", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.762300", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.757300", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.632300", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068100", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039100", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008100", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.581500", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.576500", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.451500", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073600", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069900", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013600", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106200", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049900", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148200", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144200", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088200", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091000", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087000", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031000", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102400", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098700", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042400", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.985100", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307100", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302100", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177100", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098400", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138400", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038400", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.331100", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121100", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117400", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061100", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044600", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.026500", + "Timestamp": "2024-05-16T07:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.578800", + "Timestamp": "2024-05-16T07:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.573800", + "Timestamp": "2024-05-16T07:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.448800", + "Timestamp": "2024-05-16T07:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.095000", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.090000", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.965000", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085000", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.081300", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025000", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.015100", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.554700", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.549700", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.424700", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092900", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089200", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032900", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.234300", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.230300", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.174300", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109200", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049200", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.885000", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136100", + "Timestamp": "2024-05-16T07:16:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132400", + "Timestamp": "2024-05-16T07:16:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076100", + "Timestamp": "2024-05-16T07:16:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.053600", + "Timestamp": "2024-05-16T07:16:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.048600", + "Timestamp": "2024-05-16T07:16:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.923600", + "Timestamp": "2024-05-16T07:16:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.229200", + "Timestamp": "2024-05-16T07:16:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.107100", + "Timestamp": "2024-05-16T07:16:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.416700", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.411700", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.286700", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142900", + "Timestamp": "2024-05-16T07:02:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138900", + "Timestamp": "2024-05-16T07:02:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082900", + "Timestamp": "2024-05-16T07:02:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.739400", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.902300", + "Timestamp": "2024-05-16T07:02:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.872300", + "Timestamp": "2024-05-16T07:02:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.772300", + "Timestamp": "2024-05-16T07:02:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.349400", + "Timestamp": "2024-05-16T07:02:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.331800", + "Timestamp": "2024-05-16T07:02:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.326800", + "Timestamp": "2024-05-16T07:02:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.201800", + "Timestamp": "2024-05-16T07:02:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071800", + "Timestamp": "2024-05-16T07:02:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042800", + "Timestamp": "2024-05-16T07:02:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011800", + "Timestamp": "2024-05-16T07:02:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.538500", + "Timestamp": "2024-05-16T07:02:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.310000", + "Timestamp": "2024-05-16T07:02:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.961400", + "Timestamp": "2024-05-16T07:02:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.931400", + "Timestamp": "2024-05-16T07:02:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.831400", + "Timestamp": "2024-05-16T07:02:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.371300", + "Timestamp": "2024-05-16T07:02:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.366300", + "Timestamp": "2024-05-16T07:02:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.241300", + "Timestamp": "2024-05-16T07:02:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.058100", + "Timestamp": "2024-05-16T07:01:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.043600", + "Timestamp": "2024-05-16T07:01:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.864900", + "Timestamp": "2024-05-16T07:01:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.399300", + "Timestamp": "2024-05-16T07:01:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.394300", + "Timestamp": "2024-05-16T07:01:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.269300", + "Timestamp": "2024-05-16T07:01:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168000", + "Timestamp": "2024-05-16T07:01:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163000", + "Timestamp": "2024-05-16T07:01:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038000", + "Timestamp": "2024-05-16T07:01:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "15.169100", + "Timestamp": "2024-05-16T07:01:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.674900", + "Timestamp": "2024-05-16T07:01:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120300", + "Timestamp": "2024-05-16T07:01:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.755600", + "Timestamp": "2024-05-16T07:01:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.463200", + "Timestamp": "2024-05-16T07:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.976400", + "Timestamp": "2024-05-16T07:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.971400", + "Timestamp": "2024-05-16T07:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.846400", + "Timestamp": "2024-05-16T07:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.010900", + "Timestamp": "2024-05-16T07:01:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.141800", + "Timestamp": "2024-05-16T07:01:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.375400", + "Timestamp": "2024-05-16T07:01:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.370400", + "Timestamp": "2024-05-16T07:01:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.245400", + "Timestamp": "2024-05-16T07:01:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.129800", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.124800", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.999800", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.126600", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162700", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158700", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102700", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.366200", + "Timestamp": "2024-05-16T07:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.315500", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.637800", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.380300", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.632800", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.375300", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.507800", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.250300", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119700", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088600", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084900", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028600", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.579300", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150100", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050100", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146700", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143000", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086700", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.620700", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.603800", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.022900", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.017900", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.892900", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.718200", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.713200", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.588200", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.403600", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.398600", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.273600", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.513700", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.860600", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.855600", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.730600", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.266900", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.602100", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.597100", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.472100", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.130100", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.628500", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.623500", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.498500", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.563400", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.558400", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.433400", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.772500", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.767500", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.642500", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.053100", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.015500", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.048100", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.010500", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.923100", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.885500", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089500", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085800", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029500", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.124900", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.119900", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.994900", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153300", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149600", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093300", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.600000", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.574800", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.569800", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.444800", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.208900", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.203900", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.078900", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.564500", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.559500", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.434500", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.317400", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.312400", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.187400", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.645400", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.640400", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.515400", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.696200", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.691200", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.566200", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362400", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.357400", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.232400", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.595500", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.590500", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.465500", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082800", + "Timestamp": "2024-05-16T07:01:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079100", + "Timestamp": "2024-05-16T07:01:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022800", + "Timestamp": "2024-05-16T07:01:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.318600", + "Timestamp": "2024-05-16T07:01:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.313600", + "Timestamp": "2024-05-16T07:01:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.188600", + "Timestamp": "2024-05-16T07:01:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.432700", + "Timestamp": "2024-05-16T07:01:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.402700", + "Timestamp": "2024-05-16T07:01:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.302700", + "Timestamp": "2024-05-16T07:01:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.480300", + "Timestamp": "2024-05-16T06:50:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069000", + "Timestamp": "2024-05-16T06:47:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040000", + "Timestamp": "2024-05-16T06:47:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009000", + "Timestamp": "2024-05-16T06:47:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.207100", + "Timestamp": "2024-05-16T06:47:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.202100", + "Timestamp": "2024-05-16T06:47:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077100", + "Timestamp": "2024-05-16T06:47:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088400", + "Timestamp": "2024-05-16T06:47:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084700", + "Timestamp": "2024-05-16T06:47:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028400", + "Timestamp": "2024-05-16T06:47:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.185400", + "Timestamp": "2024-05-16T06:47:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.155400", + "Timestamp": "2024-05-16T06:47:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.055400", + "Timestamp": "2024-05-16T06:47:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.559700", + "Timestamp": "2024-05-16T06:47:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271300", + "Timestamp": "2024-05-16T06:47:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.249200", + "Timestamp": "2024-05-16T06:47:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266300", + "Timestamp": "2024-05-16T06:47:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.244200", + "Timestamp": "2024-05-16T06:47:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141300", + "Timestamp": "2024-05-16T06:47:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119200", + "Timestamp": "2024-05-16T06:47:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.963700", + "Timestamp": "2024-05-16T06:47:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.641700", + "Timestamp": "2024-05-16T06:47:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.636700", + "Timestamp": "2024-05-16T06:47:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.511700", + "Timestamp": "2024-05-16T06:47:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.532300", + "Timestamp": "2024-05-16T06:47:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.527300", + "Timestamp": "2024-05-16T06:47:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.402300", + "Timestamp": "2024-05-16T06:47:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "9.310500", + "Timestamp": "2024-05-16T06:46:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "9.305500", + "Timestamp": "2024-05-16T06:46:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "9.180500", + "Timestamp": "2024-05-16T06:46:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.958600", + "Timestamp": "2024-05-16T06:46:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.953600", + "Timestamp": "2024-05-16T06:46:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.828600", + "Timestamp": "2024-05-16T06:46:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.826100", + "Timestamp": "2024-05-16T06:46:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.459500", + "Timestamp": "2024-05-16T06:46:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162200", + "Timestamp": "2024-05-16T06:46:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158500", + "Timestamp": "2024-05-16T06:46:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102200", + "Timestamp": "2024-05-16T06:46:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.885300", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.590100", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.880300", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.585100", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.755300", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.460100", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.609900", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.267900", + "Timestamp": "2024-05-16T06:46:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.263900", + "Timestamp": "2024-05-16T06:46:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.207900", + "Timestamp": "2024-05-16T06:46:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.528000", + "Timestamp": "2024-05-16T06:46:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.398000", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.368000", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.268000", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.155000", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.466100", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.461100", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.336100", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.062200", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.477700", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.482600", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.035600", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.030600", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.905600", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.698200", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.693200", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.568200", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.092000", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.162600", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.157600", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.032600", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.652200", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.647200", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.522200", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.184500", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.179500", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.054500", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094900", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090900", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034900", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.537000", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.532000", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.407000", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.911600", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.130400", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.457600", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.342400", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.312400", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212400", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.969300", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.520900", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.354400", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.349400", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.224400", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.605900", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.600900", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.475900", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159300", + "Timestamp": "2024-05-16T06:46:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155300", + "Timestamp": "2024-05-16T06:46:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099300", + "Timestamp": "2024-05-16T06:46:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.204000", + "Timestamp": "2024-05-16T06:46:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.199000", + "Timestamp": "2024-05-16T06:46:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.074000", + "Timestamp": "2024-05-16T06:46:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124200", + "Timestamp": "2024-05-16T06:46:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.992500", + "Timestamp": "2024-05-16T06:46:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.987500", + "Timestamp": "2024-05-16T06:46:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.862500", + "Timestamp": "2024-05-16T06:46:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.753400", + "Timestamp": "2024-05-16T06:46:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.723400", + "Timestamp": "2024-05-16T06:46:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.623400", + "Timestamp": "2024-05-16T06:46:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.959400", + "Timestamp": "2024-05-16T06:38:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.982300", + "Timestamp": "2024-05-16T06:38:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.972900", + "Timestamp": "2024-05-16T06:38:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.954400", + "Timestamp": "2024-05-16T06:38:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.977300", + "Timestamp": "2024-05-16T06:38:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.967900", + "Timestamp": "2024-05-16T06:38:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.829400", + "Timestamp": "2024-05-16T06:38:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.852300", + "Timestamp": "2024-05-16T06:38:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.842900", + "Timestamp": "2024-05-16T06:38:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.382800", + "Timestamp": "2024-05-16T06:32:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.377800", + "Timestamp": "2024-05-16T06:32:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.252800", + "Timestamp": "2024-05-16T06:32:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.820200", + "Timestamp": "2024-05-16T06:32:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.815200", + "Timestamp": "2024-05-16T06:32:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.690200", + "Timestamp": "2024-05-16T06:32:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.980900", + "Timestamp": "2024-05-16T06:32:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.975900", + "Timestamp": "2024-05-16T06:32:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.850900", + "Timestamp": "2024-05-16T06:32:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.960400", + "Timestamp": "2024-05-16T06:32:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.955400", + "Timestamp": "2024-05-16T06:32:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.830400", + "Timestamp": "2024-05-16T06:32:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136100", + "Timestamp": "2024-05-16T06:32:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132400", + "Timestamp": "2024-05-16T06:32:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076100", + "Timestamp": "2024-05-16T06:32:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.123700", + "Timestamp": "2024-05-16T06:32:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.909000", + "Timestamp": "2024-05-16T06:32:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.904000", + "Timestamp": "2024-05-16T06:32:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.779000", + "Timestamp": "2024-05-16T06:32:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140700", + "Timestamp": "2024-05-16T06:32:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137000", + "Timestamp": "2024-05-16T06:32:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080700", + "Timestamp": "2024-05-16T06:32:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.096700", + "Timestamp": "2024-05-16T06:32:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.742800", + "Timestamp": "2024-05-16T06:32:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.565000", + "Timestamp": "2024-05-16T06:32:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270800", + "Timestamp": "2024-05-16T06:32:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "a1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265800", + "Timestamp": "2024-05-16T06:32:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140800", + "Timestamp": "2024-05-16T06:32:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.281900", + "Timestamp": "2024-05-16T06:32:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.101000", + "Timestamp": "2024-05-16T06:32:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.193700", + "Timestamp": "2024-05-16T06:32:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.203800", + "Timestamp": "2024-05-16T06:32:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.868500", + "Timestamp": "2024-05-16T06:32:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.332400", + "Timestamp": "2024-05-16T06:32:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.828200", + "Timestamp": "2024-05-16T06:32:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.823200", + "Timestamp": "2024-05-16T06:32:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.698200", + "Timestamp": "2024-05-16T06:32:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.953800", + "Timestamp": "2024-05-16T06:32:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.957300", + "Timestamp": "2024-05-16T06:32:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.952300", + "Timestamp": "2024-05-16T06:32:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.827300", + "Timestamp": "2024-05-16T06:32:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T06:31:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121700", + "Timestamp": "2024-05-16T06:31:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065400", + "Timestamp": "2024-05-16T06:31:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.803000", + "Timestamp": "2024-05-16T06:31:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.833800", + "Timestamp": "2024-05-16T06:31:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.866600", + "Timestamp": "2024-05-16T06:31:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.861600", + "Timestamp": "2024-05-16T06:31:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.736600", + "Timestamp": "2024-05-16T06:31:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.358200", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.354500", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.298200", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T06:31:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.655900", + "Timestamp": "2024-05-16T06:31:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.650900", + "Timestamp": "2024-05-16T06:31:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.525900", + "Timestamp": "2024-05-16T06:31:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.057400", + "Timestamp": "2024-05-16T06:31:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.372400", + "Timestamp": "2024-05-16T06:31:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.347700", + "Timestamp": "2024-05-16T06:31:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.317700", + "Timestamp": "2024-05-16T06:31:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.217700", + "Timestamp": "2024-05-16T06:31:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.751300", + "Timestamp": "2024-05-16T06:31:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.746300", + "Timestamp": "2024-05-16T06:31:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.621300", + "Timestamp": "2024-05-16T06:31:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.741900", + "Timestamp": "2024-05-16T06:31:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.736900", + "Timestamp": "2024-05-16T06:31:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.611900", + "Timestamp": "2024-05-16T06:31:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.372100", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.367100", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242100", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.173900", + "Timestamp": "2024-05-16T06:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168400", + "Timestamp": "2024-05-16T06:31:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.208400", + "Timestamp": "2024-05-16T06:31:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T06:31:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.382800", + "Timestamp": "2024-05-16T06:31:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.377800", + "Timestamp": "2024-05-16T06:31:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.252800", + "Timestamp": "2024-05-16T06:31:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.147800", + "Timestamp": "2024-05-16T06:31:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.103500", + "Timestamp": "2024-05-16T06:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.098500", + "Timestamp": "2024-05-16T06:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.973500", + "Timestamp": "2024-05-16T06:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.011900", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.592800", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114300", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.384900", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085100", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.081400", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025100", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.507400", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.477400", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.377400", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100600", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096900", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040600", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.613300", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.282700", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.277700", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.152700", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144300", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.184300", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084300", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.144000", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.196800", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.412900", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.407900", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.282900", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050300", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.253100", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.248100", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123100", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.590100", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.585100", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.460100", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.207000", + "Timestamp": "2024-05-16T06:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.143100", + "Timestamp": "2024-05-16T06:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.268300", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.238300", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.138300", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.058800", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.384400", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.379400", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.254400", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.540300", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.535300", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.410300", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082900", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079200", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022900", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.972500", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.942500", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.842500", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.288400", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258400", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158400", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.439700", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.409700", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.309700", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156000", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196000", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.321400", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.552200", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.547200", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.422200", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.276900", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.271900", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.146900", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354100", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349100", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224100", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.133500", + "Timestamp": "2024-05-16T06:31:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.197900", + "Timestamp": "2024-05-16T06:31:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.192900", + "Timestamp": "2024-05-16T06:31:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.067900", + "Timestamp": "2024-05-16T06:31:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078200", + "Timestamp": "2024-05-16T06:31:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118200", + "Timestamp": "2024-05-16T06:31:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018200", + "Timestamp": "2024-05-16T06:31:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.777000", + "Timestamp": "2024-05-16T06:31:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.259500", + "Timestamp": "2024-05-16T06:31:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.254500", + "Timestamp": "2024-05-16T06:31:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129500", + "Timestamp": "2024-05-16T06:31:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.647700", + "Timestamp": "2024-05-16T06:31:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.548600", + "Timestamp": "2024-05-16T06:31:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.184100", + "Timestamp": "2024-05-16T06:31:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.179100", + "Timestamp": "2024-05-16T06:31:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.054100", + "Timestamp": "2024-05-16T06:31:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071400", + "Timestamp": "2024-05-16T06:31:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042400", + "Timestamp": "2024-05-16T06:31:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011400", + "Timestamp": "2024-05-16T06:31:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.164800", + "Timestamp": "2024-05-16T06:31:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.159800", + "Timestamp": "2024-05-16T06:31:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.034800", + "Timestamp": "2024-05-16T06:31:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.411400", + "Timestamp": "2024-05-16T06:17:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.406400", + "Timestamp": "2024-05-16T06:17:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.281400", + "Timestamp": "2024-05-16T06:17:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.889800", + "Timestamp": "2024-05-16T06:17:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.884800", + "Timestamp": "2024-05-16T06:17:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.759800", + "Timestamp": "2024-05-16T06:17:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.925900", + "Timestamp": "2024-05-16T06:17:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.912200", + "Timestamp": "2024-05-16T06:17:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.907200", + "Timestamp": "2024-05-16T06:17:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.782200", + "Timestamp": "2024-05-16T06:17:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.214500", + "Timestamp": "2024-05-16T06:17:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.209500", + "Timestamp": "2024-05-16T06:17:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084500", + "Timestamp": "2024-05-16T06:17:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.787400", + "Timestamp": "2024-05-16T06:17:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.447000", + "Timestamp": "2024-05-16T06:17:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.089100", + "Timestamp": "2024-05-16T06:17:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.084100", + "Timestamp": "2024-05-16T06:17:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.959100", + "Timestamp": "2024-05-16T06:17:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.683000", + "Timestamp": "2024-05-16T06:17:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.723000", + "Timestamp": "2024-05-16T06:17:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.623000", + "Timestamp": "2024-05-16T06:17:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.382000", + "Timestamp": "2024-05-16T06:17:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.377000", + "Timestamp": "2024-05-16T06:17:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.252000", + "Timestamp": "2024-05-16T06:17:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.255700", + "Timestamp": "2024-05-16T06:17:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.498700", + "Timestamp": "2024-05-16T06:17:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.542500", + "Timestamp": "2024-05-16T06:17:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.426800", + "Timestamp": "2024-05-16T06:17:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.421800", + "Timestamp": "2024-05-16T06:17:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.296800", + "Timestamp": "2024-05-16T06:17:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.914300", + "Timestamp": "2024-05-16T06:17:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.909300", + "Timestamp": "2024-05-16T06:17:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.784300", + "Timestamp": "2024-05-16T06:17:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.937500", + "Timestamp": "2024-05-16T06:16:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.132800", + "Timestamp": "2024-05-16T06:16:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128500", + "Timestamp": "2024-05-16T06:16:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.340700", + "Timestamp": "2024-05-16T06:16:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.040000", + "Timestamp": "2024-05-16T06:16:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.812200", + "Timestamp": "2024-05-16T06:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.256900", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.251900", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.126900", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.326500", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.321500", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.196500", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.294900", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.289900", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.164900", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.197400", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.126200", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.576700", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.546700", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.446700", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.372100", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.367100", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.242100", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120900", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.811400", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.781400", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.681400", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.066200", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.036200", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.936200", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.276100", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220100", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.998100", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.953900", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.948900", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.823900", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097300", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093300", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037300", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.430700", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.046200", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.444100", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.211600", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.206600", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.081600", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.444200", + "Timestamp": "2024-05-16T06:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.439200", + "Timestamp": "2024-05-16T06:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.314200", + "Timestamp": "2024-05-16T06:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.360900", + "Timestamp": "2024-05-16T06:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.120100", + "Timestamp": "2024-05-16T06:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.115100", + "Timestamp": "2024-05-16T06:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.990100", + "Timestamp": "2024-05-16T06:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.203600", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.198600", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.073600", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068600", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.064900", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008600", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.668700", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.663700", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.538700", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.961700", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.956700", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.831700", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.223400", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.218400", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093400", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118000", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114300", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058000", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306900", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301900", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176900", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.315600", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.310600", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.185600", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.281200", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276200", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.151200", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.377900", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372900", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.247900", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.183700", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179700", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123700", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.048800", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.108800", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.103800", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.978800", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.441400", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.436400", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.311400", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.373200", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.282100", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.277100", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.152100", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.541200", + "Timestamp": "2024-05-16T06:16:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120200", + "Timestamp": "2024-05-16T06:16:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116200", + "Timestamp": "2024-05-16T06:16:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060200", + "Timestamp": "2024-05-16T06:16:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.810700", + "Timestamp": "2024-05-16T06:16:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065000", + "Timestamp": "2024-05-16T06:16:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.036300", + "Timestamp": "2024-05-16T06:16:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005000", + "Timestamp": "2024-05-16T06:16:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T06:16:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103100", + "Timestamp": "2024-05-16T06:16:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047100", + "Timestamp": "2024-05-16T06:16:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.136100", + "Timestamp": "2024-05-16T06:02:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439000", + "Timestamp": "2024-05-16T06:02:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.365200", + "Timestamp": "2024-05-16T06:02:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166300", + "Timestamp": "2024-05-16T06:02:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162300", + "Timestamp": "2024-05-16T06:02:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T06:02:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.267100", + "Timestamp": "2024-05-16T06:02:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262100", + "Timestamp": "2024-05-16T06:02:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137100", + "Timestamp": "2024-05-16T06:02:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.713800", + "Timestamp": "2024-05-16T06:02:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.708800", + "Timestamp": "2024-05-16T06:02:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.583800", + "Timestamp": "2024-05-16T06:02:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Windows", + "SpotPrice": "14.985700", + "Timestamp": "2024-05-16T06:01:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.412500", + "Timestamp": "2024-05-16T06:01:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.407500", + "Timestamp": "2024-05-16T06:01:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.282500", + "Timestamp": "2024-05-16T06:01:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.944300", + "Timestamp": "2024-05-16T06:01:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.939300", + "Timestamp": "2024-05-16T06:01:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.814300", + "Timestamp": "2024-05-16T06:01:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301300", + "Timestamp": "2024-05-16T06:01:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296300", + "Timestamp": "2024-05-16T06:01:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171300", + "Timestamp": "2024-05-16T06:01:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087100", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083400", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027100", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.741100", + "Timestamp": "2024-05-16T06:01:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.736100", + "Timestamp": "2024-05-16T06:01:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.611100", + "Timestamp": "2024-05-16T06:01:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.984700", + "Timestamp": "2024-05-16T06:01:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.562900", + "Timestamp": "2024-05-16T06:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.202900", + "Timestamp": "2024-05-16T06:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.197900", + "Timestamp": "2024-05-16T06:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.072900", + "Timestamp": "2024-05-16T06:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.063500", + "Timestamp": "2024-05-16T06:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.058500", + "Timestamp": "2024-05-16T06:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.933500", + "Timestamp": "2024-05-16T06:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.585000", + "Timestamp": "2024-05-16T06:01:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.580000", + "Timestamp": "2024-05-16T06:01:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.455000", + "Timestamp": "2024-05-16T06:01:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354600", + "Timestamp": "2024-05-16T06:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349600", + "Timestamp": "2024-05-16T06:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224600", + "Timestamp": "2024-05-16T06:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.563300", + "Timestamp": "2024-05-16T06:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.211200", + "Timestamp": "2024-05-16T06:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.181200", + "Timestamp": "2024-05-16T06:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.081200", + "Timestamp": "2024-05-16T06:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.264400", + "Timestamp": "2024-05-16T06:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.259400", + "Timestamp": "2024-05-16T06:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.134400", + "Timestamp": "2024-05-16T06:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.491300", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.287200", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.098400", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.093400", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.968400", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.483900", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.478900", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.353900", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.925400", + "Timestamp": "2024-05-16T06:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "a1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078600", + "Timestamp": "2024-05-16T06:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "a1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074900", + "Timestamp": "2024-05-16T06:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "a1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018600", + "Timestamp": "2024-05-16T06:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.859500", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130400", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170400", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070400", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085200", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.081500", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025200", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.120200", + "Timestamp": "2024-05-16T06:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.090200", + "Timestamp": "2024-05-16T06:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.990200", + "Timestamp": "2024-05-16T06:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.535100", + "Timestamp": "2024-05-16T06:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.626500", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.621500", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.496500", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.270100", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.265100", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.140100", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.404100", + "Timestamp": "2024-05-16T06:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.137900", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.939400", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068400", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.064700", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008400", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.259900", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109000", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105300", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049000", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108800", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048800", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.326700", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.321700", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196700", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109600", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049600", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.312000", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.282000", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.182000", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117200", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113500", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057200", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.265100", + "Timestamp": "2024-05-16T06:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.407900", + "Timestamp": "2024-05-16T06:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.402900", + "Timestamp": "2024-05-16T06:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.277900", + "Timestamp": "2024-05-16T06:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078400", + "Timestamp": "2024-05-16T06:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074700", + "Timestamp": "2024-05-16T06:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018400", + "Timestamp": "2024-05-16T06:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.651200", + "Timestamp": "2024-05-16T06:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.646200", + "Timestamp": "2024-05-16T06:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.521200", + "Timestamp": "2024-05-16T06:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.048300", + "Timestamp": "2024-05-16T06:01:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.754600", + "Timestamp": "2024-05-16T06:01:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.749600", + "Timestamp": "2024-05-16T06:01:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.624600", + "Timestamp": "2024-05-16T06:01:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.314400", + "Timestamp": "2024-05-16T06:01:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.284400", + "Timestamp": "2024-05-16T06:01:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.184400", + "Timestamp": "2024-05-16T06:01:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.765300", + "Timestamp": "2024-05-16T06:01:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.239400", + "Timestamp": "2024-05-16T06:01:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.234400", + "Timestamp": "2024-05-16T06:01:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T06:01:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131200", + "Timestamp": "2024-05-16T06:01:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127500", + "Timestamp": "2024-05-16T06:01:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071200", + "Timestamp": "2024-05-16T06:01:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074700", + "Timestamp": "2024-05-16T06:01:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.045700", + "Timestamp": "2024-05-16T06:01:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014700", + "Timestamp": "2024-05-16T06:01:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.677000", + "Timestamp": "2024-05-16T06:01:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.672000", + "Timestamp": "2024-05-16T06:01:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.547000", + "Timestamp": "2024-05-16T06:01:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298500", + "Timestamp": "2024-05-16T05:47:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293500", + "Timestamp": "2024-05-16T05:47:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168500", + "Timestamp": "2024-05-16T05:47:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.265900", + "Timestamp": "2024-05-16T05:47:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.270600", + "Timestamp": "2024-05-16T05:47:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.951300", + "Timestamp": "2024-05-16T05:47:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.921300", + "Timestamp": "2024-05-16T05:47:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.821300", + "Timestamp": "2024-05-16T05:47:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.073100", + "Timestamp": "2024-05-16T05:47:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.043100", + "Timestamp": "2024-05-16T05:47:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.943100", + "Timestamp": "2024-05-16T05:47:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.135900", + "Timestamp": "2024-05-16T05:47:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.299500", + "Timestamp": "2024-05-16T05:47:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "p2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.823800", + "Timestamp": "2024-05-16T05:47:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.366500", + "Timestamp": "2024-05-16T05:47:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.361500", + "Timestamp": "2024-05-16T05:47:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.236500", + "Timestamp": "2024-05-16T05:47:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075500", + "Timestamp": "2024-05-16T05:47:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071800", + "Timestamp": "2024-05-16T05:47:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015500", + "Timestamp": "2024-05-16T05:47:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.318700", + "Timestamp": "2024-05-16T05:47:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.313700", + "Timestamp": "2024-05-16T05:47:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.188700", + "Timestamp": "2024-05-16T05:47:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.755900", + "Timestamp": "2024-05-16T05:47:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.750900", + "Timestamp": "2024-05-16T05:47:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.625900", + "Timestamp": "2024-05-16T05:47:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.209300", + "Timestamp": "2024-05-16T05:47:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.207400", + "Timestamp": "2024-05-16T05:47:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.202400", + "Timestamp": "2024-05-16T05:47:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077400", + "Timestamp": "2024-05-16T05:47:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.317300", + "Timestamp": "2024-05-16T05:47:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.819300", + "Timestamp": "2024-05-16T05:47:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.727800", + "Timestamp": "2024-05-16T05:46:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.722800", + "Timestamp": "2024-05-16T05:46:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.597800", + "Timestamp": "2024-05-16T05:46:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.668400", + "Timestamp": "2024-05-16T05:46:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.663400", + "Timestamp": "2024-05-16T05:46:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.538400", + "Timestamp": "2024-05-16T05:46:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.659500", + "Timestamp": "2024-05-16T05:46:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.654500", + "Timestamp": "2024-05-16T05:46:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.529500", + "Timestamp": "2024-05-16T05:46:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.254100", + "Timestamp": "2024-05-16T05:46:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.018100", + "Timestamp": "2024-05-16T05:46:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.988100", + "Timestamp": "2024-05-16T05:46:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.888100", + "Timestamp": "2024-05-16T05:46:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.661300", + "Timestamp": "2024-05-16T05:46:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.656300", + "Timestamp": "2024-05-16T05:46:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.531300", + "Timestamp": "2024-05-16T05:46:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.224100", + "Timestamp": "2024-05-16T05:46:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.623900", + "Timestamp": "2024-05-16T05:46:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.890900", + "Timestamp": "2024-05-16T05:46:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.907500", + "Timestamp": "2024-05-16T05:46:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.885900", + "Timestamp": "2024-05-16T05:46:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.902500", + "Timestamp": "2024-05-16T05:46:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.760900", + "Timestamp": "2024-05-16T05:46:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.777500", + "Timestamp": "2024-05-16T05:46:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.328500", + "Timestamp": "2024-05-16T05:46:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.323500", + "Timestamp": "2024-05-16T05:46:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.198500", + "Timestamp": "2024-05-16T05:46:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.396800", + "Timestamp": "2024-05-16T05:46:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.716000", + "Timestamp": "2024-05-16T05:46:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.711000", + "Timestamp": "2024-05-16T05:46:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.586000", + "Timestamp": "2024-05-16T05:46:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.109700", + "Timestamp": "2024-05-16T05:46:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.104700", + "Timestamp": "2024-05-16T05:46:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.979700", + "Timestamp": "2024-05-16T05:46:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-16T05:46:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098000", + "Timestamp": "2024-05-16T05:46:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041700", + "Timestamp": "2024-05-16T05:46:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.737000", + "Timestamp": "2024-05-16T05:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.732000", + "Timestamp": "2024-05-16T05:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.607000", + "Timestamp": "2024-05-16T05:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.194000", + "Timestamp": "2024-05-16T05:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190000", + "Timestamp": "2024-05-16T05:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134000", + "Timestamp": "2024-05-16T05:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138300", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078300", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.194900", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.189900", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.064900", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.963800", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.778400", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.748400", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.648400", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.493600", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101400", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097400", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041400", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.511300", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.511300", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.506300", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.506300", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.381300", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.381300", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.553100", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.548100", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.423100", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.009500", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.322000", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.292000", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.192000", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.681400", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.676400", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.551400", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.265400", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.828800", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.861200", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.131400", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066200", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037200", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006200", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.064300", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.034300", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.934300", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.269400", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.239400", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139400", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099500", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095500", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039500", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061400", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001400", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001400", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.033100", + "Timestamp": "2024-05-16T05:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.101300", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133700", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130000", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073700", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.267000", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.275700", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262000", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270700", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137000", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145700", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.187700", + "Timestamp": "2024-05-16T05:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.618700", + "Timestamp": "2024-05-16T05:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.613700", + "Timestamp": "2024-05-16T05:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.488700", + "Timestamp": "2024-05-16T05:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.020700", + "Timestamp": "2024-05-16T05:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.990700", + "Timestamp": "2024-05-16T05:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.890700", + "Timestamp": "2024-05-16T05:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167900", + "Timestamp": "2024-05-16T05:46:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.207900", + "Timestamp": "2024-05-16T05:46:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107900", + "Timestamp": "2024-05-16T05:46:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.237500", + "Timestamp": "2024-05-16T05:46:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.105100", + "Timestamp": "2024-05-16T05:46:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.538700", + "Timestamp": "2024-05-16T05:46:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088500", + "Timestamp": "2024-05-16T05:46:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084800", + "Timestamp": "2024-05-16T05:46:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028500", + "Timestamp": "2024-05-16T05:46:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.351600", + "Timestamp": "2024-05-16T05:46:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.346600", + "Timestamp": "2024-05-16T05:46:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.221600", + "Timestamp": "2024-05-16T05:46:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.308300", + "Timestamp": "2024-05-16T05:46:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.243100", + "Timestamp": "2024-05-16T05:32:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.282100", + "Timestamp": "2024-05-16T05:32:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.277100", + "Timestamp": "2024-05-16T05:32:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.152100", + "Timestamp": "2024-05-16T05:32:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.435100", + "Timestamp": "2024-05-16T05:32:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.316700", + "Timestamp": "2024-05-16T05:32:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.345100", + "Timestamp": "2024-05-16T05:32:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.311700", + "Timestamp": "2024-05-16T05:32:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.340100", + "Timestamp": "2024-05-16T05:32:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.186700", + "Timestamp": "2024-05-16T05:32:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.215100", + "Timestamp": "2024-05-16T05:32:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.933700", + "Timestamp": "2024-05-16T05:32:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.705600", + "Timestamp": "2024-05-16T05:32:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.564000", + "Timestamp": "2024-05-16T05:32:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324500", + "Timestamp": "2024-05-16T05:32:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319500", + "Timestamp": "2024-05-16T05:32:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194500", + "Timestamp": "2024-05-16T05:32:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.494200", + "Timestamp": "2024-05-16T05:32:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.264400", + "Timestamp": "2024-05-16T05:32:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.698600", + "Timestamp": "2024-05-16T05:32:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.693600", + "Timestamp": "2024-05-16T05:32:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.568600", + "Timestamp": "2024-05-16T05:32:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.279700", + "Timestamp": "2024-05-16T05:32:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.082800", + "Timestamp": "2024-05-16T05:32:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.428300", + "Timestamp": "2024-05-16T05:32:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.398300", + "Timestamp": "2024-05-16T05:32:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.298300", + "Timestamp": "2024-05-16T05:32:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.029000", + "Timestamp": "2024-05-16T05:32:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.999000", + "Timestamp": "2024-05-16T05:32:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.899000", + "Timestamp": "2024-05-16T05:32:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.425900", + "Timestamp": "2024-05-16T05:32:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.420900", + "Timestamp": "2024-05-16T05:32:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.295900", + "Timestamp": "2024-05-16T05:32:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.262700", + "Timestamp": "2024-05-16T05:31:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258700", + "Timestamp": "2024-05-16T05:31:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.202700", + "Timestamp": "2024-05-16T05:31:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.973200", + "Timestamp": "2024-05-16T05:31:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.204900", + "Timestamp": "2024-05-16T05:31:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.200900", + "Timestamp": "2024-05-16T05:31:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144900", + "Timestamp": "2024-05-16T05:31:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T05:31:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.275600", + "Timestamp": "2024-05-16T05:31:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.262100", + "Timestamp": "2024-05-16T05:31:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.502900", + "Timestamp": "2024-05-16T05:31:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.499600", + "Timestamp": "2024-05-16T05:31:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.494600", + "Timestamp": "2024-05-16T05:31:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.369600", + "Timestamp": "2024-05-16T05:31:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.991100", + "Timestamp": "2024-05-16T05:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.817000", + "Timestamp": "2024-05-16T05:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.229500", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.224500", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.099500", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113500", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.505900", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.500900", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.375900", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.453700", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.423700", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.323700", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.627300", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.366500", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.138600", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.252300", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.254200", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.224200", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124200", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073000", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044000", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013000", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.751800", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.746800", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.621800", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121500", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117800", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061500", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052100", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.254900", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.249900", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124900", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.278900", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.273900", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.148900", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077900", + "Timestamp": "2024-05-16T05:31:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074200", + "Timestamp": "2024-05-16T05:31:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017900", + "Timestamp": "2024-05-16T05:31:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.201800", + "Timestamp": "2024-05-16T05:31:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196800", + "Timestamp": "2024-05-16T05:31:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071800", + "Timestamp": "2024-05-16T05:31:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.117600", + "Timestamp": "2024-05-16T05:31:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.081500", + "Timestamp": "2024-05-16T05:31:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.735500", + "Timestamp": "2024-05-16T05:31:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.730500", + "Timestamp": "2024-05-16T05:31:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.605500", + "Timestamp": "2024-05-16T05:31:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082300", + "Timestamp": "2024-05-16T05:31:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078600", + "Timestamp": "2024-05-16T05:31:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022300", + "Timestamp": "2024-05-16T05:31:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.025100", + "Timestamp": "2024-05-16T05:17:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.550400", + "Timestamp": "2024-05-16T05:17:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.520400", + "Timestamp": "2024-05-16T05:17:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.420400", + "Timestamp": "2024-05-16T05:17:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.239900", + "Timestamp": "2024-05-16T05:17:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.148900", + "Timestamp": "2024-05-16T05:17:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125100", + "Timestamp": "2024-05-16T05:17:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.680900", + "Timestamp": "2024-05-16T05:17:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.675900", + "Timestamp": "2024-05-16T05:17:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.550900", + "Timestamp": "2024-05-16T05:17:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.366000", + "Timestamp": "2024-05-16T05:17:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.361000", + "Timestamp": "2024-05-16T05:17:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.236000", + "Timestamp": "2024-05-16T05:17:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.605500", + "Timestamp": "2024-05-16T05:17:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.412500", + "Timestamp": "2024-05-16T05:17:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.407500", + "Timestamp": "2024-05-16T05:17:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.282500", + "Timestamp": "2024-05-16T05:17:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.879100", + "Timestamp": "2024-05-16T05:17:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.874100", + "Timestamp": "2024-05-16T05:17:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.749100", + "Timestamp": "2024-05-16T05:17:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.584700", + "Timestamp": "2024-05-16T05:17:06.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.279500", + "Timestamp": "2024-05-16T05:17:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.851600", + "Timestamp": "2024-05-16T05:17:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.431000", + "Timestamp": "2024-05-16T05:17:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.371600", + "Timestamp": "2024-05-16T05:17:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.366600", + "Timestamp": "2024-05-16T05:17:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.241600", + "Timestamp": "2024-05-16T05:17:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.783800", + "Timestamp": "2024-05-16T05:16:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.013600", + "Timestamp": "2024-05-16T05:16:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.250900", + "Timestamp": "2024-05-16T05:16:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.334300", + "Timestamp": "2024-05-16T05:16:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.329300", + "Timestamp": "2024-05-16T05:16:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.204300", + "Timestamp": "2024-05-16T05:16:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.248400", + "Timestamp": "2024-05-16T05:16:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.243400", + "Timestamp": "2024-05-16T05:16:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118400", + "Timestamp": "2024-05-16T05:16:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.144500", + "Timestamp": "2024-05-16T05:16:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-16T05:16:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.865700", + "Timestamp": "2024-05-16T05:16:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.860700", + "Timestamp": "2024-05-16T05:16:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.735700", + "Timestamp": "2024-05-16T05:16:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065300", + "Timestamp": "2024-05-16T05:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.036600", + "Timestamp": "2024-05-16T05:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005300", + "Timestamp": "2024-05-16T05:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.070500", + "Timestamp": "2024-05-16T05:16:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.158000", + "Timestamp": "2024-05-16T05:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.153000", + "Timestamp": "2024-05-16T05:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.028000", + "Timestamp": "2024-05-16T05:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.979100", + "Timestamp": "2024-05-16T05:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.974100", + "Timestamp": "2024-05-16T05:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.849100", + "Timestamp": "2024-05-16T05:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.792700", + "Timestamp": "2024-05-16T05:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.787700", + "Timestamp": "2024-05-16T05:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.662700", + "Timestamp": "2024-05-16T05:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.561200", + "Timestamp": "2024-05-16T05:16:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.049600", + "Timestamp": "2024-05-16T05:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.044600", + "Timestamp": "2024-05-16T05:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.919600", + "Timestamp": "2024-05-16T05:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.318000", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.313000", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.188000", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.692300", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.687300", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.562300", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113700", + "Timestamp": "2024-05-16T05:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T05:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053700", + "Timestamp": "2024-05-16T05:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.176600", + "Timestamp": "2024-05-16T05:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.171600", + "Timestamp": "2024-05-16T05:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.046600", + "Timestamp": "2024-05-16T05:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.368100", + "Timestamp": "2024-05-16T05:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.363100", + "Timestamp": "2024-05-16T05:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.238100", + "Timestamp": "2024-05-16T05:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.380400", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.471500", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.062100", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.032100", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.932100", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.668500", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.663500", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.538500", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.082700", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.077700", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.952700", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.055600", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.050600", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.925600", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.655800", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.650800", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.525800", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109600", + "Timestamp": "2024-05-16T05:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T05:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049600", + "Timestamp": "2024-05-16T05:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.587400", + "Timestamp": "2024-05-16T05:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.526800", + "Timestamp": "2024-05-16T05:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.532700", + "Timestamp": "2024-05-16T05:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143900", + "Timestamp": "2024-05-16T05:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140200", + "Timestamp": "2024-05-16T05:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083900", + "Timestamp": "2024-05-16T05:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.132700", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.059100", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.127700", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.054100", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.002700", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.929100", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.292100", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.283100", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156800", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196800", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096800", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.231200", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.091700", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.226200", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.086700", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.101200", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.961700", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.466200", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.461200", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.336200", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108300", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148300", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048300", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.328100", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298100", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.198100", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098300", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094600", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038300", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143700", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043700", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.340300", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.335300", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.210300", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.508400", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.250400", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.245400", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120400", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114900", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111200", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054900", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.712400", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.120300", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.115300", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.990300", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.566600", + "Timestamp": "2024-05-16T05:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.561600", + "Timestamp": "2024-05-16T05:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.436600", + "Timestamp": "2024-05-16T05:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136700", + "Timestamp": "2024-05-16T05:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132700", + "Timestamp": "2024-05-16T05:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076700", + "Timestamp": "2024-05-16T05:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.092900", + "Timestamp": "2024-05-16T05:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.087900", + "Timestamp": "2024-05-16T05:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.962900", + "Timestamp": "2024-05-16T05:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.610000", + "Timestamp": "2024-05-16T05:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.605000", + "Timestamp": "2024-05-16T05:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.480000", + "Timestamp": "2024-05-16T05:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124100", + "Timestamp": "2024-05-16T05:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120100", + "Timestamp": "2024-05-16T05:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064100", + "Timestamp": "2024-05-16T05:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.816500", + "Timestamp": "2024-05-16T05:16:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134600", + "Timestamp": "2024-05-16T05:16:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130600", + "Timestamp": "2024-05-16T05:16:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074600", + "Timestamp": "2024-05-16T05:16:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.393500", + "Timestamp": "2024-05-16T05:16:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.388500", + "Timestamp": "2024-05-16T05:16:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.263500", + "Timestamp": "2024-05-16T05:16:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.051300", + "Timestamp": "2024-05-16T05:16:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.046300", + "Timestamp": "2024-05-16T05:16:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.921300", + "Timestamp": "2024-05-16T05:16:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T05:16:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099800", + "Timestamp": "2024-05-16T05:16:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043800", + "Timestamp": "2024-05-16T05:16:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146100", + "Timestamp": "2024-05-16T05:16:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142100", + "Timestamp": "2024-05-16T05:16:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086100", + "Timestamp": "2024-05-16T05:16:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.897100", + "Timestamp": "2024-05-16T05:02:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089000", + "Timestamp": "2024-05-16T05:02:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085300", + "Timestamp": "2024-05-16T05:02:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029000", + "Timestamp": "2024-05-16T05:02:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.239100", + "Timestamp": "2024-05-16T05:02:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069500", + "Timestamp": "2024-05-16T05:02:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065800", + "Timestamp": "2024-05-16T05:02:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009500", + "Timestamp": "2024-05-16T05:02:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.105100", + "Timestamp": "2024-05-16T05:02:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119800", + "Timestamp": "2024-05-16T05:02:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.321400", + "Timestamp": "2024-05-16T05:02:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.210700", + "Timestamp": "2024-05-16T05:02:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.027000", + "Timestamp": "2024-05-16T05:02:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.462200", + "Timestamp": "2024-05-16T05:02:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.493100", + "Timestamp": "2024-05-16T05:01:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.488100", + "Timestamp": "2024-05-16T05:01:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.363100", + "Timestamp": "2024-05-16T05:01:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.411400", + "Timestamp": "2024-05-16T05:01:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.406400", + "Timestamp": "2024-05-16T05:01:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.281400", + "Timestamp": "2024-05-16T05:01:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.034400", + "Timestamp": "2024-05-16T05:01:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.875700", + "Timestamp": "2024-05-16T05:01:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.870700", + "Timestamp": "2024-05-16T05:01:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.745700", + "Timestamp": "2024-05-16T05:01:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.557800", + "Timestamp": "2024-05-16T05:01:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.641600", + "Timestamp": "2024-05-16T05:01:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.636600", + "Timestamp": "2024-05-16T05:01:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.511600", + "Timestamp": "2024-05-16T05:01:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.252900", + "Timestamp": "2024-05-16T05:01:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.414900", + "Timestamp": "2024-05-16T05:01:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.409900", + "Timestamp": "2024-05-16T05:01:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.284900", + "Timestamp": "2024-05-16T05:01:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.117200", + "Timestamp": "2024-05-16T05:01:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.813600", + "Timestamp": "2024-05-16T05:01:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.459400", + "Timestamp": "2024-05-16T05:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.454400", + "Timestamp": "2024-05-16T05:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.329400", + "Timestamp": "2024-05-16T05:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.282400", + "Timestamp": "2024-05-16T05:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.084000", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.079000", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.954000", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362000", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.357000", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.232000", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.365900", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.360900", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235900", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.609800", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.604800", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.479800", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.102200", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.097200", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.972200", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.284900", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.220900", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222600", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.257400", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.924300", + "Timestamp": "2024-05-16T05:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.895300", + "Timestamp": "2024-05-16T05:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.890300", + "Timestamp": "2024-05-16T05:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.765300", + "Timestamp": "2024-05-16T05:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140800", + "Timestamp": "2024-05-16T05:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137100", + "Timestamp": "2024-05-16T05:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080800", + "Timestamp": "2024-05-16T05:01:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298100", + "Timestamp": "2024-05-16T05:01:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293100", + "Timestamp": "2024-05-16T05:01:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168100", + "Timestamp": "2024-05-16T05:01:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.991200", + "Timestamp": "2024-05-16T05:01:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.986200", + "Timestamp": "2024-05-16T05:01:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.861200", + "Timestamp": "2024-05-16T05:01:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.497900", + "Timestamp": "2024-05-16T05:01:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.492900", + "Timestamp": "2024-05-16T05:01:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.367900", + "Timestamp": "2024-05-16T05:01:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.757900", + "Timestamp": "2024-05-16T05:01:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.283000", + "Timestamp": "2024-05-16T05:01:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.278000", + "Timestamp": "2024-05-16T05:01:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.153000", + "Timestamp": "2024-05-16T05:01:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.138700", + "Timestamp": "2024-05-16T04:47:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.317700", + "Timestamp": "2024-05-16T04:47:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.355400", + "Timestamp": "2024-05-16T04:47:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.350400", + "Timestamp": "2024-05-16T04:47:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.225400", + "Timestamp": "2024-05-16T04:47:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.563900", + "Timestamp": "2024-05-16T04:47:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.533900", + "Timestamp": "2024-05-16T04:47:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.433900", + "Timestamp": "2024-05-16T04:47:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.444600", + "Timestamp": "2024-05-16T04:47:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306200", + "Timestamp": "2024-05-16T04:46:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301200", + "Timestamp": "2024-05-16T04:46:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176200", + "Timestamp": "2024-05-16T04:46:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.867100", + "Timestamp": "2024-05-16T04:46:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.862100", + "Timestamp": "2024-05-16T04:46:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.737100", + "Timestamp": "2024-05-16T04:46:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.753300", + "Timestamp": "2024-05-16T04:46:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.284200", + "Timestamp": "2024-05-16T04:46:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.279200", + "Timestamp": "2024-05-16T04:46:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.154200", + "Timestamp": "2024-05-16T04:46:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.058400", + "Timestamp": "2024-05-16T04:46:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.710500", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.705500", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.580500", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.220500", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.215500", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090500", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.096600", + "Timestamp": "2024-05-16T04:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124400", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124200", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.502800", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.497800", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.372800", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.844900", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.839900", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.714900", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.575700", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.570700", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.445700", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.266400", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.949200", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.944200", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.819200", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.673300", + "Timestamp": "2024-05-16T04:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.216500", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.770600", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.430800", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148000", + "Timestamp": "2024-05-16T04:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144300", + "Timestamp": "2024-05-16T04:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088000", + "Timestamp": "2024-05-16T04:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.464700", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.459700", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.334700", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108800", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.908200", + "Timestamp": "2024-05-16T04:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.511500", + "Timestamp": "2024-05-16T04:46:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.320000", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.276100", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.888400", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.883400", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.758400", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100100", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096400", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040100", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.708700", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.382800", + "Timestamp": "2024-05-16T04:46:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.377800", + "Timestamp": "2024-05-16T04:46:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.252800", + "Timestamp": "2024-05-16T04:46:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164300", + "Timestamp": "2024-05-16T04:46:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159300", + "Timestamp": "2024-05-16T04:46:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034300", + "Timestamp": "2024-05-16T04:46:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200800", + "Timestamp": "2024-05-16T04:46:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.195800", + "Timestamp": "2024-05-16T04:46:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070800", + "Timestamp": "2024-05-16T04:46:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.237900", + "Timestamp": "2024-05-16T04:46:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232900", + "Timestamp": "2024-05-16T04:46:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107900", + "Timestamp": "2024-05-16T04:46:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.313100", + "Timestamp": "2024-05-16T04:32:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.918500", + "Timestamp": "2024-05-16T04:32:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.155300", + "Timestamp": "2024-05-16T04:32:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.419200", + "Timestamp": "2024-05-16T04:32:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.414200", + "Timestamp": "2024-05-16T04:32:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.289200", + "Timestamp": "2024-05-16T04:32:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.767700", + "Timestamp": "2024-05-16T04:31:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.773700", + "Timestamp": "2024-05-16T04:31:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.332800", + "Timestamp": "2024-05-16T04:31:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372800", + "Timestamp": "2024-05-16T04:31:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.272800", + "Timestamp": "2024-05-16T04:31:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144700", + "Timestamp": "2024-05-16T04:31:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140700", + "Timestamp": "2024-05-16T04:31:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084700", + "Timestamp": "2024-05-16T04:31:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.319100", + "Timestamp": "2024-05-16T04:31:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.243300", + "Timestamp": "2024-05-16T04:31:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.519900", + "Timestamp": "2024-05-16T04:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.514900", + "Timestamp": "2024-05-16T04:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.389900", + "Timestamp": "2024-05-16T04:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.248800", + "Timestamp": "2024-05-16T04:31:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.775000", + "Timestamp": "2024-05-16T04:31:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.890500", + "Timestamp": "2024-05-16T04:31:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.890100", + "Timestamp": "2024-05-16T04:31:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270300", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265300", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140300", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.277400", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.940300", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.202200", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.685800", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.680800", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.555800", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.055100", + "Timestamp": "2024-05-16T04:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.050100", + "Timestamp": "2024-05-16T04:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.925100", + "Timestamp": "2024-05-16T04:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.409600", + "Timestamp": "2024-05-16T04:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.767300", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.762300", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.637300", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.445900", + "Timestamp": "2024-05-16T04:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.440900", + "Timestamp": "2024-05-16T04:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.315900", + "Timestamp": "2024-05-16T04:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088400", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084700", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028400", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.871100", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.866100", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.741100", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.807000", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.802000", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.677000", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273500", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268500", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143500", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111100", + "Timestamp": "2024-05-16T04:31:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T04:31:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051100", + "Timestamp": "2024-05-16T04:31:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083400", + "Timestamp": "2024-05-16T04:31:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079700", + "Timestamp": "2024-05-16T04:31:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023400", + "Timestamp": "2024-05-16T04:31:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165100", + "Timestamp": "2024-05-16T04:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161100", + "Timestamp": "2024-05-16T04:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105100", + "Timestamp": "2024-05-16T04:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087000", + "Timestamp": "2024-05-16T04:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083300", + "Timestamp": "2024-05-16T04:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027000", + "Timestamp": "2024-05-16T04:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.635300", + "Timestamp": "2024-05-16T04:31:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.344800", + "Timestamp": "2024-05-16T04:31:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.314800", + "Timestamp": "2024-05-16T04:31:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.214800", + "Timestamp": "2024-05-16T04:31:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.634700", + "Timestamp": "2024-05-16T04:31:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.629700", + "Timestamp": "2024-05-16T04:31:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.504700", + "Timestamp": "2024-05-16T04:31:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063700", + "Timestamp": "2024-05-16T04:31:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003700", + "Timestamp": "2024-05-16T04:31:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003700", + "Timestamp": "2024-05-16T04:31:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084500", + "Timestamp": "2024-05-16T04:31:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080500", + "Timestamp": "2024-05-16T04:31:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024500", + "Timestamp": "2024-05-16T04:31:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-16T04:17:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102400", + "Timestamp": "2024-05-16T04:17:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046100", + "Timestamp": "2024-05-16T04:17:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.911900", + "Timestamp": "2024-05-16T04:16:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.906900", + "Timestamp": "2024-05-16T04:16:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.781900", + "Timestamp": "2024-05-16T04:16:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121700", + "Timestamp": "2024-05-16T04:16:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118000", + "Timestamp": "2024-05-16T04:16:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061700", + "Timestamp": "2024-05-16T04:16:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062400", + "Timestamp": "2024-05-16T04:16:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002400", + "Timestamp": "2024-05-16T04:16:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002400", + "Timestamp": "2024-05-16T04:16:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.900100", + "Timestamp": "2024-05-16T04:16:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.895100", + "Timestamp": "2024-05-16T04:16:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.770100", + "Timestamp": "2024-05-16T04:16:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.453800", + "Timestamp": "2024-05-16T04:16:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.643300", + "Timestamp": "2024-05-16T04:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.226200", + "Timestamp": "2024-05-16T04:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.221200", + "Timestamp": "2024-05-16T04:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096200", + "Timestamp": "2024-05-16T04:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.618000", + "Timestamp": "2024-05-16T04:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.613000", + "Timestamp": "2024-05-16T04:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.488000", + "Timestamp": "2024-05-16T04:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.090300", + "Timestamp": "2024-05-16T04:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.085300", + "Timestamp": "2024-05-16T04:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.960300", + "Timestamp": "2024-05-16T04:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.297600", + "Timestamp": "2024-05-16T04:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.569700", + "Timestamp": "2024-05-16T04:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.564700", + "Timestamp": "2024-05-16T04:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.439700", + "Timestamp": "2024-05-16T04:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.641000", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.636000", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.511000", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.875100", + "Timestamp": "2024-05-16T04:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134400", + "Timestamp": "2024-05-16T04:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130700", + "Timestamp": "2024-05-16T04:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074400", + "Timestamp": "2024-05-16T04:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077600", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073900", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017600", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.390500", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.385500", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.260500", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.030100", + "Timestamp": "2024-05-16T04:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.025100", + "Timestamp": "2024-05-16T04:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.900100", + "Timestamp": "2024-05-16T04:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090600", + "Timestamp": "2024-05-16T04:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086900", + "Timestamp": "2024-05-16T04:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030600", + "Timestamp": "2024-05-16T04:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.520500", + "Timestamp": "2024-05-16T04:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.515500", + "Timestamp": "2024-05-16T04:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.390500", + "Timestamp": "2024-05-16T04:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440200", + "Timestamp": "2024-05-16T04:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.423400", + "Timestamp": "2024-05-16T04:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.418400", + "Timestamp": "2024-05-16T04:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.293400", + "Timestamp": "2024-05-16T04:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086200", + "Timestamp": "2024-05-16T04:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082500", + "Timestamp": "2024-05-16T04:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026200", + "Timestamp": "2024-05-16T04:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.906400", + "Timestamp": "2024-05-16T04:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.901400", + "Timestamp": "2024-05-16T04:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.776400", + "Timestamp": "2024-05-16T04:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.239300", + "Timestamp": "2024-05-16T04:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.266100", + "Timestamp": "2024-05-16T04:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.261100", + "Timestamp": "2024-05-16T04:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136100", + "Timestamp": "2024-05-16T04:16:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070500", + "Timestamp": "2024-05-16T04:16:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041500", + "Timestamp": "2024-05-16T04:16:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010500", + "Timestamp": "2024-05-16T04:16:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.719500", + "Timestamp": "2024-05-16T04:16:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.506800", + "Timestamp": "2024-05-16T04:16:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.747900", + "Timestamp": "2024-05-16T04:16:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.742900", + "Timestamp": "2024-05-16T04:16:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.617900", + "Timestamp": "2024-05-16T04:16:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.208100", + "Timestamp": "2024-05-16T04:02:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.606000", + "Timestamp": "2024-05-16T04:02:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.228900", + "Timestamp": "2024-05-16T04:02:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.790100", + "Timestamp": "2024-05-16T04:02:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.786000", + "Timestamp": "2024-05-16T04:02:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.257600", + "Timestamp": "2024-05-16T04:02:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "a1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.252600", + "Timestamp": "2024-05-16T04:02:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127600", + "Timestamp": "2024-05-16T04:02:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.911200", + "Timestamp": "2024-05-16T04:02:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.881200", + "Timestamp": "2024-05-16T04:02:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.781200", + "Timestamp": "2024-05-16T04:02:05.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.959200", + "Timestamp": "2024-05-16T04:02:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.929200", + "Timestamp": "2024-05-16T04:02:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.829200", + "Timestamp": "2024-05-16T04:02:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128100", + "Timestamp": "2024-05-16T04:02:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.992100", + "Timestamp": "2024-05-16T04:02:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.124800", + "Timestamp": "2024-05-16T04:02:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.387900", + "Timestamp": "2024-05-16T04:01:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.382900", + "Timestamp": "2024-05-16T04:01:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.257900", + "Timestamp": "2024-05-16T04:01:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.863300", + "Timestamp": "2024-05-16T04:01:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "a1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079400", + "Timestamp": "2024-05-16T04:01:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "a1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075700", + "Timestamp": "2024-05-16T04:01:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "a1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019400", + "Timestamp": "2024-05-16T04:01:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.855200", + "Timestamp": "2024-05-16T04:01:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.342900", + "Timestamp": "2024-05-16T04:01:44.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.512800", + "Timestamp": "2024-05-16T04:01:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.272800", + "Timestamp": "2024-05-16T04:01:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.752700", + "Timestamp": "2024-05-16T04:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.747700", + "Timestamp": "2024-05-16T04:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.622700", + "Timestamp": "2024-05-16T04:01:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.526100", + "Timestamp": "2024-05-16T04:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.521100", + "Timestamp": "2024-05-16T04:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.396100", + "Timestamp": "2024-05-16T04:01:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.372900", + "Timestamp": "2024-05-16T04:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.333300", + "Timestamp": "2024-05-16T04:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.367900", + "Timestamp": "2024-05-16T04:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.328300", + "Timestamp": "2024-05-16T04:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242900", + "Timestamp": "2024-05-16T04:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.203300", + "Timestamp": "2024-05-16T04:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.712000", + "Timestamp": "2024-05-16T04:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.707000", + "Timestamp": "2024-05-16T04:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.582000", + "Timestamp": "2024-05-16T04:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.989900", + "Timestamp": "2024-05-16T04:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.907000", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.509400", + "Timestamp": "2024-05-16T04:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.479400", + "Timestamp": "2024-05-16T04:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.379400", + "Timestamp": "2024-05-16T04:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.591700", + "Timestamp": "2024-05-16T04:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.586700", + "Timestamp": "2024-05-16T04:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.461700", + "Timestamp": "2024-05-16T04:01:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.430700", + "Timestamp": "2024-05-16T04:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.425700", + "Timestamp": "2024-05-16T04:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.300700", + "Timestamp": "2024-05-16T04:01:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220000", + "Timestamp": "2024-05-16T04:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.267100", + "Timestamp": "2024-05-16T04:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.572700", + "Timestamp": "2024-05-16T04:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.293800", + "Timestamp": "2024-05-16T04:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.288800", + "Timestamp": "2024-05-16T04:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.163800", + "Timestamp": "2024-05-16T04:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.126900", + "Timestamp": "2024-05-16T04:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.620900", + "Timestamp": "2024-05-16T04:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.615900", + "Timestamp": "2024-05-16T04:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.490900", + "Timestamp": "2024-05-16T04:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.494300", + "Timestamp": "2024-05-16T04:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.489300", + "Timestamp": "2024-05-16T04:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.364300", + "Timestamp": "2024-05-16T04:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088900", + "Timestamp": "2024-05-16T04:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085200", + "Timestamp": "2024-05-16T04:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028900", + "Timestamp": "2024-05-16T04:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.617600", + "Timestamp": "2024-05-16T04:01:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.612600", + "Timestamp": "2024-05-16T04:01:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.487600", + "Timestamp": "2024-05-16T04:01:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.784300", + "Timestamp": "2024-05-16T04:01:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.779300", + "Timestamp": "2024-05-16T04:01:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.654300", + "Timestamp": "2024-05-16T04:01:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084000", + "Timestamp": "2024-05-16T04:01:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080300", + "Timestamp": "2024-05-16T04:01:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024000", + "Timestamp": "2024-05-16T04:01:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.638600", + "Timestamp": "2024-05-16T03:52:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.638600", + "Timestamp": "2024-05-16T03:52:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.189700", + "Timestamp": "2024-05-16T03:47:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.229700", + "Timestamp": "2024-05-16T03:47:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129700", + "Timestamp": "2024-05-16T03:47:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.025900", + "Timestamp": "2024-05-16T03:47:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.600900", + "Timestamp": "2024-05-16T03:47:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.568700", + "Timestamp": "2024-05-16T03:47:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.563700", + "Timestamp": "2024-05-16T03:47:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.438700", + "Timestamp": "2024-05-16T03:47:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.257900", + "Timestamp": "2024-05-16T03:46:59.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.665900", + "Timestamp": "2024-05-16T03:46:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.374300", + "Timestamp": "2024-05-16T03:46:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.369300", + "Timestamp": "2024-05-16T03:46:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.244300", + "Timestamp": "2024-05-16T03:46:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.465800", + "Timestamp": "2024-05-16T03:46:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.680400", + "Timestamp": "2024-05-16T03:46:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.650400", + "Timestamp": "2024-05-16T03:46:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.550400", + "Timestamp": "2024-05-16T03:46:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.150100", + "Timestamp": "2024-05-16T03:46:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.638000", + "Timestamp": "2024-05-16T03:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.633000", + "Timestamp": "2024-05-16T03:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.508000", + "Timestamp": "2024-05-16T03:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.992100", + "Timestamp": "2024-05-16T03:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.470800", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.465800", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.340800", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.045200", + "Timestamp": "2024-05-16T03:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.298600", + "Timestamp": "2024-05-16T03:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.293600", + "Timestamp": "2024-05-16T03:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.168600", + "Timestamp": "2024-05-16T03:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.543500", + "Timestamp": "2024-05-16T03:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.538500", + "Timestamp": "2024-05-16T03:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.413500", + "Timestamp": "2024-05-16T03:46:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.154600", + "Timestamp": "2024-05-16T03:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.149600", + "Timestamp": "2024-05-16T03:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.024600", + "Timestamp": "2024-05-16T03:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128400", + "Timestamp": "2024-05-16T03:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.234600", + "Timestamp": "2024-05-16T03:46:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.229600", + "Timestamp": "2024-05-16T03:46:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.104600", + "Timestamp": "2024-05-16T03:46:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.968700", + "Timestamp": "2024-05-16T03:46:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.192200", + "Timestamp": "2024-05-16T03:46:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.187200", + "Timestamp": "2024-05-16T03:46:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.062200", + "Timestamp": "2024-05-16T03:46:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.002800", + "Timestamp": "2024-05-16T03:46:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.997800", + "Timestamp": "2024-05-16T03:46:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.872800", + "Timestamp": "2024-05-16T03:46:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115000", + "Timestamp": "2024-05-16T03:46:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T03:46:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055000", + "Timestamp": "2024-05-16T03:46:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134200", + "Timestamp": "2024-05-16T03:46:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130200", + "Timestamp": "2024-05-16T03:46:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074200", + "Timestamp": "2024-05-16T03:46:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061800", + "Timestamp": "2024-05-16T03:33:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001800", + "Timestamp": "2024-05-16T03:33:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001800", + "Timestamp": "2024-05-16T03:33:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.493100", + "Timestamp": "2024-05-16T03:32:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073100", + "Timestamp": "2024-05-16T03:32:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069400", + "Timestamp": "2024-05-16T03:32:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013100", + "Timestamp": "2024-05-16T03:32:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.445000", + "Timestamp": "2024-05-16T03:32:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.730600", + "Timestamp": "2024-05-16T03:32:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.238000", + "Timestamp": "2024-05-16T03:31:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "a1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094900", + "Timestamp": "2024-05-16T03:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "a1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091200", + "Timestamp": "2024-05-16T03:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "a1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034900", + "Timestamp": "2024-05-16T03:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.728400", + "Timestamp": "2024-05-16T03:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.723400", + "Timestamp": "2024-05-16T03:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.598400", + "Timestamp": "2024-05-16T03:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.042100", + "Timestamp": "2024-05-16T03:31:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.012100", + "Timestamp": "2024-05-16T03:31:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.912100", + "Timestamp": "2024-05-16T03:31:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.172500", + "Timestamp": "2024-05-16T03:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.167500", + "Timestamp": "2024-05-16T03:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.042500", + "Timestamp": "2024-05-16T03:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.577500", + "Timestamp": "2024-05-16T03:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.572500", + "Timestamp": "2024-05-16T03:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.447500", + "Timestamp": "2024-05-16T03:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110900", + "Timestamp": "2024-05-16T03:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134900", + "Timestamp": "2024-05-16T03:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-16T03:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131200", + "Timestamp": "2024-05-16T03:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050900", + "Timestamp": "2024-05-16T03:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074900", + "Timestamp": "2024-05-16T03:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.808800", + "Timestamp": "2024-05-16T03:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.803800", + "Timestamp": "2024-05-16T03:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.678800", + "Timestamp": "2024-05-16T03:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.021900", + "Timestamp": "2024-05-16T03:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.156500", + "Timestamp": "2024-05-16T03:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.016900", + "Timestamp": "2024-05-16T03:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.151500", + "Timestamp": "2024-05-16T03:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.891900", + "Timestamp": "2024-05-16T03:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.026500", + "Timestamp": "2024-05-16T03:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.775300", + "Timestamp": "2024-05-16T03:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.770300", + "Timestamp": "2024-05-16T03:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.645300", + "Timestamp": "2024-05-16T03:31:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.862900", + "Timestamp": "2024-05-16T03:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.210400", + "Timestamp": "2024-05-16T03:31:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.207400", + "Timestamp": "2024-05-16T03:31:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150400", + "Timestamp": "2024-05-16T03:31:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.868100", + "Timestamp": "2024-05-16T03:31:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.863100", + "Timestamp": "2024-05-16T03:31:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.738100", + "Timestamp": "2024-05-16T03:31:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136300", + "Timestamp": "2024-05-16T03:31:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132600", + "Timestamp": "2024-05-16T03:31:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076300", + "Timestamp": "2024-05-16T03:31:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134400", + "Timestamp": "2024-05-16T03:17:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130700", + "Timestamp": "2024-05-16T03:17:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074400", + "Timestamp": "2024-05-16T03:17:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.251200", + "Timestamp": "2024-05-16T03:17:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.857300", + "Timestamp": "2024-05-16T03:17:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.852300", + "Timestamp": "2024-05-16T03:17:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.727300", + "Timestamp": "2024-05-16T03:17:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.313100", + "Timestamp": "2024-05-16T03:17:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.308100", + "Timestamp": "2024-05-16T03:17:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.183100", + "Timestamp": "2024-05-16T03:17:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.272200", + "Timestamp": "2024-05-16T03:17:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267200", + "Timestamp": "2024-05-16T03:17:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142200", + "Timestamp": "2024-05-16T03:17:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124200", + "Timestamp": "2024-05-16T03:16:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.079400", + "Timestamp": "2024-05-16T03:16:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.645300", + "Timestamp": "2024-05-16T03:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.640300", + "Timestamp": "2024-05-16T03:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.515300", + "Timestamp": "2024-05-16T03:16:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.153500", + "Timestamp": "2024-05-16T03:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.148500", + "Timestamp": "2024-05-16T03:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.023500", + "Timestamp": "2024-05-16T03:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.290700", + "Timestamp": "2024-05-16T03:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.726800", + "Timestamp": "2024-05-16T03:16:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092100", + "Timestamp": "2024-05-16T03:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088400", + "Timestamp": "2024-05-16T03:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032100", + "Timestamp": "2024-05-16T03:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.559700", + "Timestamp": "2024-05-16T03:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.554700", + "Timestamp": "2024-05-16T03:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.429700", + "Timestamp": "2024-05-16T03:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.535500", + "Timestamp": "2024-05-16T03:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.544900", + "Timestamp": "2024-05-16T03:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.258700", + "Timestamp": "2024-05-16T03:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.253700", + "Timestamp": "2024-05-16T03:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128700", + "Timestamp": "2024-05-16T03:16:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.033300", + "Timestamp": "2024-05-16T03:16:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120400", + "Timestamp": "2024-05-16T03:16:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160400", + "Timestamp": "2024-05-16T03:16:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060400", + "Timestamp": "2024-05-16T03:16:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.941500", + "Timestamp": "2024-05-16T03:16:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.740200", + "Timestamp": "2024-05-16T03:02:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162300", + "Timestamp": "2024-05-16T03:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158600", + "Timestamp": "2024-05-16T03:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102300", + "Timestamp": "2024-05-16T03:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.204900", + "Timestamp": "2024-05-16T03:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.199900", + "Timestamp": "2024-05-16T03:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074900", + "Timestamp": "2024-05-16T03:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147100", + "Timestamp": "2024-05-16T03:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143100", + "Timestamp": "2024-05-16T03:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087100", + "Timestamp": "2024-05-16T03:01:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111300", + "Timestamp": "2024-05-16T03:01:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068400", + "Timestamp": "2024-05-16T03:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038400", + "Timestamp": "2024-05-16T03:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008400", + "Timestamp": "2024-05-16T03:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.300500", + "Timestamp": "2024-05-16T03:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.295500", + "Timestamp": "2024-05-16T03:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170500", + "Timestamp": "2024-05-16T03:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.521500", + "Timestamp": "2024-05-16T03:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.301600", + "Timestamp": "2024-05-16T03:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.670400", + "Timestamp": "2024-05-16T03:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077100", + "Timestamp": "2024-05-16T03:01:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073400", + "Timestamp": "2024-05-16T03:01:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017100", + "Timestamp": "2024-05-16T03:01:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.249200", + "Timestamp": "2024-05-16T03:01:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.244200", + "Timestamp": "2024-05-16T03:01:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119200", + "Timestamp": "2024-05-16T03:01:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061500", + "Timestamp": "2024-05-16T03:01:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001500", + "Timestamp": "2024-05-16T03:01:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001500", + "Timestamp": "2024-05-16T03:01:09.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.122700", + "Timestamp": "2024-05-16T03:01:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.204700", + "Timestamp": "2024-05-16T02:47:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.199700", + "Timestamp": "2024-05-16T02:47:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074700", + "Timestamp": "2024-05-16T02:47:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231300", + "Timestamp": "2024-05-16T02:47:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.158100", + "Timestamp": "2024-05-16T02:47:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.917400", + "Timestamp": "2024-05-16T02:46:55.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.697000", + "Timestamp": "2024-05-16T02:46:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.692000", + "Timestamp": "2024-05-16T02:46:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.567000", + "Timestamp": "2024-05-16T02:46:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.274800", + "Timestamp": "2024-05-16T02:46:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269800", + "Timestamp": "2024-05-16T02:46:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144800", + "Timestamp": "2024-05-16T02:46:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.573800", + "Timestamp": "2024-05-16T02:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-16T02:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095100", + "Timestamp": "2024-05-16T02:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038800", + "Timestamp": "2024-05-16T02:46:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.199100", + "Timestamp": "2024-05-16T02:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.239100", + "Timestamp": "2024-05-16T02:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139100", + "Timestamp": "2024-05-16T02:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.255500", + "Timestamp": "2024-05-16T02:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.250500", + "Timestamp": "2024-05-16T02:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125500", + "Timestamp": "2024-05-16T02:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147000", + "Timestamp": "2024-05-16T02:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143300", + "Timestamp": "2024-05-16T02:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087000", + "Timestamp": "2024-05-16T02:46:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.092700", + "Timestamp": "2024-05-16T02:46:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123900", + "Timestamp": "2024-05-16T02:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120200", + "Timestamp": "2024-05-16T02:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063900", + "Timestamp": "2024-05-16T02:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104100", + "Timestamp": "2024-05-16T02:46:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100400", + "Timestamp": "2024-05-16T02:46:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044100", + "Timestamp": "2024-05-16T02:46:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.026500", + "Timestamp": "2024-05-16T02:32:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T02:32:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.257800", + "Timestamp": "2024-05-16T02:32:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.012800", + "Timestamp": "2024-05-16T02:32:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.318800", + "Timestamp": "2024-05-16T02:32:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.313800", + "Timestamp": "2024-05-16T02:32:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.188800", + "Timestamp": "2024-05-16T02:32:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.193000", + "Timestamp": "2024-05-16T02:32:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.665100", + "Timestamp": "2024-05-16T02:32:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.635100", + "Timestamp": "2024-05-16T02:32:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.535100", + "Timestamp": "2024-05-16T02:32:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T02:31:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.897700", + "Timestamp": "2024-05-16T02:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.892700", + "Timestamp": "2024-05-16T02:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.767700", + "Timestamp": "2024-05-16T02:31:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.232400", + "Timestamp": "2024-05-16T02:31:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119700", + "Timestamp": "2024-05-16T02:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.349400", + "Timestamp": "2024-05-16T02:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.344400", + "Timestamp": "2024-05-16T02:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.219400", + "Timestamp": "2024-05-16T02:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105300", + "Timestamp": "2024-05-16T02:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101600", + "Timestamp": "2024-05-16T02:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045300", + "Timestamp": "2024-05-16T02:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.268100", + "Timestamp": "2024-05-16T02:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.263100", + "Timestamp": "2024-05-16T02:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.138100", + "Timestamp": "2024-05-16T02:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135200", + "Timestamp": "2024-05-16T02:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131200", + "Timestamp": "2024-05-16T02:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075200", + "Timestamp": "2024-05-16T02:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.907800", + "Timestamp": "2024-05-16T02:31:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.929100", + "Timestamp": "2024-05-16T02:31:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.204400", + "Timestamp": "2024-05-16T02:22:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.199400", + "Timestamp": "2024-05-16T02:22:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.074400", + "Timestamp": "2024-05-16T02:22:56.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070900", + "Timestamp": "2024-05-16T02:17:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041900", + "Timestamp": "2024-05-16T02:17:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010900", + "Timestamp": "2024-05-16T02:17:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071300", + "Timestamp": "2024-05-16T02:17:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067600", + "Timestamp": "2024-05-16T02:17:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011300", + "Timestamp": "2024-05-16T02:17:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.316400", + "Timestamp": "2024-05-16T02:17:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.311400", + "Timestamp": "2024-05-16T02:17:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186400", + "Timestamp": "2024-05-16T02:17:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225900", + "Timestamp": "2024-05-16T02:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.623900", + "Timestamp": "2024-05-16T02:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.618900", + "Timestamp": "2024-05-16T02:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.493900", + "Timestamp": "2024-05-16T02:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "15.696000", + "Timestamp": "2024-05-16T02:08:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062500", + "Timestamp": "2024-05-16T02:02:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-16T02:02:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-16T02:02:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.131200", + "Timestamp": "2024-05-16T02:01:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113500", + "Timestamp": "2024-05-16T02:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T02:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053500", + "Timestamp": "2024-05-16T02:01:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.018800", + "Timestamp": "2024-05-16T02:01:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.057100", + "Timestamp": "2024-05-16T02:01:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T01:47:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061900", + "Timestamp": "2024-05-16T01:47:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001900", + "Timestamp": "2024-05-16T01:47:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001900", + "Timestamp": "2024-05-16T01:47:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354300", + "Timestamp": "2024-05-16T01:46:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349300", + "Timestamp": "2024-05-16T01:46:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224300", + "Timestamp": "2024-05-16T01:46:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.506900", + "Timestamp": "2024-05-16T01:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120100", + "Timestamp": "2024-05-16T01:46:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071100", + "Timestamp": "2024-05-16T01:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042100", + "Timestamp": "2024-05-16T01:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011100", + "Timestamp": "2024-05-16T01:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091200", + "Timestamp": "2024-05-16T01:31:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087500", + "Timestamp": "2024-05-16T01:31:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031200", + "Timestamp": "2024-05-16T01:31:57.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067400", + "Timestamp": "2024-05-16T01:31:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038400", + "Timestamp": "2024-05-16T01:31:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007400", + "Timestamp": "2024-05-16T01:31:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.199300", + "Timestamp": "2024-05-16T01:16:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.619900", + "Timestamp": "2024-05-16T01:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.154900", + "Timestamp": "2024-05-16T01:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102400", + "Timestamp": "2024-05-16T01:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142400", + "Timestamp": "2024-05-16T01:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042400", + "Timestamp": "2024-05-16T01:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306200", + "Timestamp": "2024-05-16T01:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301200", + "Timestamp": "2024-05-16T01:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176200", + "Timestamp": "2024-05-16T01:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.132000", + "Timestamp": "2024-05-16T01:16:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079300", + "Timestamp": "2024-05-16T01:16:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075600", + "Timestamp": "2024-05-16T01:16:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019300", + "Timestamp": "2024-05-16T01:16:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.649800", + "Timestamp": "2024-05-16T01:02:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072500", + "Timestamp": "2024-05-16T01:01:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043500", + "Timestamp": "2024-05-16T01:01:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012500", + "Timestamp": "2024-05-16T01:01:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.260800", + "Timestamp": "2024-05-16T01:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307100", + "Timestamp": "2024-05-16T01:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.277100", + "Timestamp": "2024-05-16T01:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177100", + "Timestamp": "2024-05-16T01:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069500", + "Timestamp": "2024-05-16T01:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040500", + "Timestamp": "2024-05-16T01:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009500", + "Timestamp": "2024-05-16T01:01:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.026500", + "Timestamp": "2024-05-16T01:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "a1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069400", + "Timestamp": "2024-05-16T00:47:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "a1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040400", + "Timestamp": "2024-05-16T00:47:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "a1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009400", + "Timestamp": "2024-05-16T00:47:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.902400", + "Timestamp": "2024-05-16T00:46:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092900", + "Timestamp": "2024-05-16T00:46:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088900", + "Timestamp": "2024-05-16T00:46:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032900", + "Timestamp": "2024-05-16T00:46:53.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.245100", + "Timestamp": "2024-05-16T00:46:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.511100", + "Timestamp": "2024-05-16T00:46:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.485100", + "Timestamp": "2024-05-16T00:46:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074100", + "Timestamp": "2024-05-16T00:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070400", + "Timestamp": "2024-05-16T00:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014100", + "Timestamp": "2024-05-16T00:46:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081200", + "Timestamp": "2024-05-16T00:31:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077500", + "Timestamp": "2024-05-16T00:31:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021200", + "Timestamp": "2024-05-16T00:31:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T00:31:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067100", + "Timestamp": "2024-05-16T00:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038100", + "Timestamp": "2024-05-16T00:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007100", + "Timestamp": "2024-05-16T00:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.280800", + "Timestamp": "2024-05-16T00:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.250800", + "Timestamp": "2024-05-16T00:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150800", + "Timestamp": "2024-05-16T00:31:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229700", + "Timestamp": "2024-05-16T00:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-16T00:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096600", + "Timestamp": "2024-05-16T00:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040300", + "Timestamp": "2024-05-16T00:31:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.009100", + "Timestamp": "2024-05-16T00:17:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093800", + "Timestamp": "2024-05-16T00:17:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090100", + "Timestamp": "2024-05-16T00:17:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033800", + "Timestamp": "2024-05-16T00:17:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T00:17:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107000", + "Timestamp": "2024-05-16T00:17:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050700", + "Timestamp": "2024-05-16T00:17:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.039700", + "Timestamp": "2024-05-16T00:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125700", + "Timestamp": "2024-05-16T00:16:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086000", + "Timestamp": "2024-05-16T00:16:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082000", + "Timestamp": "2024-05-16T00:16:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026000", + "Timestamp": "2024-05-16T00:16:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.006300", + "Timestamp": "2024-05-16T00:12:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.006400", + "Timestamp": "2024-05-16T00:12:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.205700", + "Timestamp": "2024-05-16T00:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.245700", + "Timestamp": "2024-05-16T00:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145700", + "Timestamp": "2024-05-16T00:01:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.147500", + "Timestamp": "2024-05-16T00:01:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.011300", + "Timestamp": "2024-05-15T23:48:02.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118000", + "Timestamp": "2024-05-15T23:47:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114300", + "Timestamp": "2024-05-15T23:47:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058000", + "Timestamp": "2024-05-15T23:47:04.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.011200", + "Timestamp": "2024-05-15T23:35:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.613700", + "Timestamp": "2024-05-15T23:32:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-15T23:32:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.152100", + "Timestamp": "2024-05-15T23:32:00.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.246500", + "Timestamp": "2024-05-15T23:31:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362100", + "Timestamp": "2024-05-15T23:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.402100", + "Timestamp": "2024-05-15T23:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.302100", + "Timestamp": "2024-05-15T23:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093400", + "Timestamp": "2024-05-15T23:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089700", + "Timestamp": "2024-05-15T23:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033400", + "Timestamp": "2024-05-15T23:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164300", + "Timestamp": "2024-05-15T23:31:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159300", + "Timestamp": "2024-05-15T23:31:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034300", + "Timestamp": "2024-05-15T23:31:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.383500", + "Timestamp": "2024-05-15T23:23:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.383500", + "Timestamp": "2024-05-15T23:23:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-15T23:22:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.011300", + "Timestamp": "2024-05-15T23:17:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.252500", + "Timestamp": "2024-05-15T23:17:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.022300", + "Timestamp": "2024-05-15T23:16:43.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069800", + "Timestamp": "2024-05-15T23:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066100", + "Timestamp": "2024-05-15T23:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009800", + "Timestamp": "2024-05-15T23:16:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062000", + "Timestamp": "2024-05-15T23:03:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002000", + "Timestamp": "2024-05-15T23:03:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002000", + "Timestamp": "2024-05-15T23:03:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139200", + "Timestamp": "2024-05-15T23:02:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135500", + "Timestamp": "2024-05-15T23:02:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079200", + "Timestamp": "2024-05-15T23:02:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.755200", + "Timestamp": "2024-05-15T22:55:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114400", + "Timestamp": "2024-05-15T22:46:29.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079000", + "Timestamp": "2024-05-15T22:46:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075300", + "Timestamp": "2024-05-15T22:46:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019000", + "Timestamp": "2024-05-15T22:46:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078400", + "Timestamp": "2024-05-15T22:32:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074700", + "Timestamp": "2024-05-15T22:32:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018400", + "Timestamp": "2024-05-15T22:32:01.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091600", + "Timestamp": "2024-05-15T22:31:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087900", + "Timestamp": "2024-05-15T22:31:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031600", + "Timestamp": "2024-05-15T22:31:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.272000", + "Timestamp": "2024-05-15T22:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.070800", + "Timestamp": "2024-05-15T22:16:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073400", + "Timestamp": "2024-05-15T22:01:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044400", + "Timestamp": "2024-05-15T22:01:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013400", + "Timestamp": "2024-05-15T22:01:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.264200", + "Timestamp": "2024-05-15T21:53:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111200", + "Timestamp": "2024-05-15T21:46:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-15T21:46:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051200", + "Timestamp": "2024-05-15T21:46:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.693100", + "Timestamp": "2024-05-15T21:46:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216600", + "Timestamp": "2024-05-15T21:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.035300", + "Timestamp": "2024-05-15T21:46:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.272500", + "Timestamp": "2024-05-15T21:32:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.213900", + "Timestamp": "2024-05-15T21:31:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.208900", + "Timestamp": "2024-05-15T21:31:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083900", + "Timestamp": "2024-05-15T21:31:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-15T21:31:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.075600", + "Timestamp": "2024-05-15T21:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.070600", + "Timestamp": "2024-05-15T21:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.945600", + "Timestamp": "2024-05-15T21:31:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.034900", + "Timestamp": "2024-05-15T21:16:34.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078600", + "Timestamp": "2024-05-15T21:16:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074900", + "Timestamp": "2024-05-15T21:16:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018600", + "Timestamp": "2024-05-15T21:16:07.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082900", + "Timestamp": "2024-05-15T21:01:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079200", + "Timestamp": "2024-05-15T21:01:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022900", + "Timestamp": "2024-05-15T21:01:16.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.436000", + "Timestamp": "2024-05-15T20:52:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.406000", + "Timestamp": "2024-05-15T20:52:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.306000", + "Timestamp": "2024-05-15T20:52:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215600", + "Timestamp": "2024-05-15T20:46:58.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.051900", + "Timestamp": "2024-05-15T20:46:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125900", + "Timestamp": "2024-05-15T20:31:49.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.056800", + "Timestamp": "2024-05-15T20:31:36.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.246400", + "Timestamp": "2024-05-15T20:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077900", + "Timestamp": "2024-05-15T20:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117900", + "Timestamp": "2024-05-15T20:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017900", + "Timestamp": "2024-05-15T20:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094600", + "Timestamp": "2024-05-15T20:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090900", + "Timestamp": "2024-05-15T20:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034600", + "Timestamp": "2024-05-15T20:31:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116100", + "Timestamp": "2024-05-15T20:31:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-15T20:31:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056100", + "Timestamp": "2024-05-15T20:31:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063800", + "Timestamp": "2024-05-15T20:17:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003800", + "Timestamp": "2024-05-15T20:17:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003800", + "Timestamp": "2024-05-15T20:17:12.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075000", + "Timestamp": "2024-05-15T20:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.046000", + "Timestamp": "2024-05-15T20:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015000", + "Timestamp": "2024-05-15T20:16:35.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062800", + "Timestamp": "2024-05-15T20:16:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002800", + "Timestamp": "2024-05-15T20:16:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002800", + "Timestamp": "2024-05-15T20:16:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.006500", + "Timestamp": "2024-05-15T20:02:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110900", + "Timestamp": "2024-05-15T20:01:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-15T20:01:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050900", + "Timestamp": "2024-05-15T20:01:45.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.251400", + "Timestamp": "2024-05-15T20:01:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149800", + "Timestamp": "2024-05-15T20:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146100", + "Timestamp": "2024-05-15T20:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089800", + "Timestamp": "2024-05-15T20:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071400", + "Timestamp": "2024-05-15T19:32:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042400", + "Timestamp": "2024-05-15T19:32:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011400", + "Timestamp": "2024-05-15T19:32:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.013000", + "Timestamp": "2024-05-15T19:32:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070800", + "Timestamp": "2024-05-15T19:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067100", + "Timestamp": "2024-05-15T19:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010800", + "Timestamp": "2024-05-15T19:16:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066600", + "Timestamp": "2024-05-15T19:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037600", + "Timestamp": "2024-05-15T19:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006600", + "Timestamp": "2024-05-15T19:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.243500", + "Timestamp": "2024-05-15T19:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085600", + "Timestamp": "2024-05-15T19:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.081900", + "Timestamp": "2024-05-15T19:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025600", + "Timestamp": "2024-05-15T19:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077000", + "Timestamp": "2024-05-15T19:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073300", + "Timestamp": "2024-05-15T19:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017000", + "Timestamp": "2024-05-15T19:16:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128500", + "Timestamp": "2024-05-15T19:01:41.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005600", + "Timestamp": "2024-05-15T18:53:08.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061500", + "Timestamp": "2024-05-15T18:47:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001500", + "Timestamp": "2024-05-15T18:47:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001500", + "Timestamp": "2024-05-15T18:47:30.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.436000", + "Timestamp": "2024-05-15T18:33:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.406000", + "Timestamp": "2024-05-15T18:33:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.306000", + "Timestamp": "2024-05-15T18:33:10.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.042000", + "Timestamp": "2024-05-15T18:31:40.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.423100", + "Timestamp": "2024-05-15T18:27:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.423100", + "Timestamp": "2024-05-15T18:27:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.953900", + "Timestamp": "2024-05-15T18:17:15.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090000", + "Timestamp": "2024-05-15T18:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086300", + "Timestamp": "2024-05-15T18:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030000", + "Timestamp": "2024-05-15T18:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072300", + "Timestamp": "2024-05-15T18:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043300", + "Timestamp": "2024-05-15T18:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012300", + "Timestamp": "2024-05-15T18:16:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.268000", + "Timestamp": "2024-05-15T18:10:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.268000", + "Timestamp": "2024-05-15T18:10:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.742000", + "Timestamp": "2024-05-15T18:09:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.742000", + "Timestamp": "2024-05-15T18:09:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.712000", + "Timestamp": "2024-05-15T18:09:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.712000", + "Timestamp": "2024-05-15T18:09:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.612000", + "Timestamp": "2024-05-15T18:09:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.612000", + "Timestamp": "2024-05-15T18:09:39.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069000", + "Timestamp": "2024-05-15T18:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065300", + "Timestamp": "2024-05-15T18:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009000", + "Timestamp": "2024-05-15T18:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078100", + "Timestamp": "2024-05-15T18:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074400", + "Timestamp": "2024-05-15T18:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018100", + "Timestamp": "2024-05-15T18:01:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086700", + "Timestamp": "2024-05-15T18:01:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083000", + "Timestamp": "2024-05-15T18:01:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026700", + "Timestamp": "2024-05-15T18:01:14.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.270000", + "Timestamp": "2024-05-15T17:47:48.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.008500", + "Timestamp": "2024-05-15T17:47:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.662000", + "Timestamp": "2024-05-15T17:46:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-15T17:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-15T17:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044500", + "Timestamp": "2024-05-15T17:46:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067900", + "Timestamp": "2024-05-15T17:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038900", + "Timestamp": "2024-05-15T17:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007900", + "Timestamp": "2024-05-15T17:31:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061700", + "Timestamp": "2024-05-15T17:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001700", + "Timestamp": "2024-05-15T17:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001700", + "Timestamp": "2024-05-15T17:31:31.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.080100", + "Timestamp": "2024-05-15T17:27:50.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213800", + "Timestamp": "2024-05-15T17:16:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069900", + "Timestamp": "2024-05-15T17:02:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040900", + "Timestamp": "2024-05-15T17:02:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009900", + "Timestamp": "2024-05-15T17:02:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063800", + "Timestamp": "2024-05-15T17:01:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003800", + "Timestamp": "2024-05-15T17:01:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003800", + "Timestamp": "2024-05-15T17:01:18.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061200", + "Timestamp": "2024-05-15T16:48:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001200", + "Timestamp": "2024-05-15T16:48:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001200", + "Timestamp": "2024-05-15T16:48:20.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-15T16:47:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071200", + "Timestamp": "2024-05-15T16:47:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067500", + "Timestamp": "2024-05-15T16:47:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011200", + "Timestamp": "2024-05-15T16:47:24.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071900", + "Timestamp": "2024-05-15T16:47:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042900", + "Timestamp": "2024-05-15T16:47:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011900", + "Timestamp": "2024-05-15T16:47:13.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.022600", + "Timestamp": "2024-05-15T16:46:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128200", + "Timestamp": "2024-05-15T16:31:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124500", + "Timestamp": "2024-05-15T16:31:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068200", + "Timestamp": "2024-05-15T16:31:51.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005600", + "Timestamp": "2024-05-15T15:32:52.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070400", + "Timestamp": "2024-05-15T15:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041400", + "Timestamp": "2024-05-15T15:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010400", + "Timestamp": "2024-05-15T15:16:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083200", + "Timestamp": "2024-05-15T15:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079500", + "Timestamp": "2024-05-15T15:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023200", + "Timestamp": "2024-05-15T15:16:21.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.209300", + "Timestamp": "2024-05-15T15:01:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.204300", + "Timestamp": "2024-05-15T15:01:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079300", + "Timestamp": "2024-05-15T15:01:38.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119600", + "Timestamp": "2024-05-15T15:01:32.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110400", + "Timestamp": "2024-05-15T14:47:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106700", + "Timestamp": "2024-05-15T14:47:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050400", + "Timestamp": "2024-05-15T14:47:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069800", + "Timestamp": "2024-05-15T14:47:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066100", + "Timestamp": "2024-05-15T14:47:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009800", + "Timestamp": "2024-05-15T14:47:03.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064100", + "Timestamp": "2024-05-15T14:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004100", + "Timestamp": "2024-05-15T14:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004100", + "Timestamp": "2024-05-15T14:46:23.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080500", + "Timestamp": "2024-05-15T14:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076800", + "Timestamp": "2024-05-15T14:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020500", + "Timestamp": "2024-05-15T14:31:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077100", + "Timestamp": "2024-05-15T14:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117100", + "Timestamp": "2024-05-15T14:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017100", + "Timestamp": "2024-05-15T14:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071300", + "Timestamp": "2024-05-15T14:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067600", + "Timestamp": "2024-05-15T14:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011300", + "Timestamp": "2024-05-15T14:31:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.033100", + "Timestamp": "2024-05-15T14:01:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.192000", + "Timestamp": "2024-05-15T14:01:22.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070800", + "Timestamp": "2024-05-15T14:01:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067100", + "Timestamp": "2024-05-15T14:01:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010800", + "Timestamp": "2024-05-15T14:01:11.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061300", + "Timestamp": "2024-05-15T13:46:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001300", + "Timestamp": "2024-05-15T13:46:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001300", + "Timestamp": "2024-05-15T13:46:42.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.017200", + "Timestamp": "2024-05-15T13:32:26.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071800", + "Timestamp": "2024-05-15T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068100", + "Timestamp": "2024-05-15T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011800", + "Timestamp": "2024-05-15T13:01:28.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.022000", + "Timestamp": "2024-05-15T13:01:19.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005600", + "Timestamp": "2024-05-15T12:51:33.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.102700", + "Timestamp": "2024-05-15T12:46:47.000Z" + }, + { + "AvailabilityZone": "ap-south-1a", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.017100", + "Timestamp": "2024-05-15T12:46:25.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071100", + "Timestamp": "2024-05-15T12:31:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042100", + "Timestamp": "2024-05-15T12:31:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011100", + "Timestamp": "2024-05-15T12:31:54.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-15T12:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088600", + "Timestamp": "2024-05-15T12:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032600", + "Timestamp": "2024-05-15T12:31:27.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.027000", + "Timestamp": "2024-05-15T11:48:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.067000", + "Timestamp": "2024-05-15T11:48:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967000", + "Timestamp": "2024-05-15T11:48:17.000Z" + }, + { + "AvailabilityZone": "ap-south-1b", + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.151000", + "Timestamp": "2024-05-15T11:46:46.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062000", + "Timestamp": "2024-05-15T11:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002000", + "Timestamp": "2024-05-15T11:46:37.000Z" + }, + { + "AvailabilityZone": "ap-south-1c", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002000", + "Timestamp": "2024-05-15T11:46:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.562500", + "Timestamp": "2024-05-16T14:02:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.557500", + "Timestamp": "2024-05-16T14:02:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.432500", + "Timestamp": "2024-05-16T14:02:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.815300", + "Timestamp": "2024-05-16T14:02:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.810300", + "Timestamp": "2024-05-16T14:02:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.685300", + "Timestamp": "2024-05-16T14:02:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071700", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042700", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011700", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.635200", + "Timestamp": "2024-05-16T14:02:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "11.639600", + "Timestamp": "2024-05-16T14:02:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "11.634600", + "Timestamp": "2024-05-16T14:02:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "11.509600", + "Timestamp": "2024-05-16T14:02:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.078500", + "Timestamp": "2024-05-16T14:02:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.073500", + "Timestamp": "2024-05-16T14:02:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.948500", + "Timestamp": "2024-05-16T14:02:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.454500", + "Timestamp": "2024-05-16T14:02:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.685700", + "Timestamp": "2024-05-16T14:02:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.680700", + "Timestamp": "2024-05-16T14:02:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.555700", + "Timestamp": "2024-05-16T14:02:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273500", + "Timestamp": "2024-05-16T14:01:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268500", + "Timestamp": "2024-05-16T14:01:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143500", + "Timestamp": "2024-05-16T14:01:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140800", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137100", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080800", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.519800", + "Timestamp": "2024-05-16T14:01:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.514800", + "Timestamp": "2024-05-16T14:01:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.389800", + "Timestamp": "2024-05-16T14:01:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077900", + "Timestamp": "2024-05-16T14:01:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.048900", + "Timestamp": "2024-05-16T14:01:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017900", + "Timestamp": "2024-05-16T14:01:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.978300", + "Timestamp": "2024-05-16T14:01:41.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.948300", + "Timestamp": "2024-05-16T14:01:41.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.848300", + "Timestamp": "2024-05-16T14:01:41.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.930300", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.925300", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.800300", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110900", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.776700", + "Timestamp": "2024-05-16T14:01:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090400", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086700", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030400", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.277800", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.272800", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147800", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.346800", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.334800", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.341800", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.329800", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.216800", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.204800", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.480900", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.407700", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.099300", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.094300", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.969300", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.592900", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.587900", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.462900", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423600", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.883400", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.878400", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.753400", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.405500", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.377700", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.787700", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.782700", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.657700", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.495600", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.490600", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.365600", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.860100", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.855100", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.730100", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.463700", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.458700", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.333700", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.879800", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.874800", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.749800", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.304200", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.299200", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.174200", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.793000", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.788000", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.663000", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.272000", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.242000", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142000", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.433500", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.428500", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.303500", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.263900", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258900", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133900", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.753200", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.241400", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.784400", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.779400", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.654400", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.721700", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.716700", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.591700", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.808100", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.803100", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.678100", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.790500", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.417100", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.412100", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.287100", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.451900", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.290700", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.285700", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.160700", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.709300", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.453200", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.683200", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.435900", + "Timestamp": "2024-05-16T14:01:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.430900", + "Timestamp": "2024-05-16T14:01:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.305900", + "Timestamp": "2024-05-16T14:01:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206600", + "Timestamp": "2024-05-16T14:01:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.148000", + "Timestamp": "2024-05-16T14:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.118000", + "Timestamp": "2024-05-16T14:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.018000", + "Timestamp": "2024-05-16T14:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.851700", + "Timestamp": "2024-05-16T14:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140700", + "Timestamp": "2024-05-16T14:01:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136700", + "Timestamp": "2024-05-16T14:01:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080700", + "Timestamp": "2024-05-16T14:01:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.495400", + "Timestamp": "2024-05-16T14:01:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.490400", + "Timestamp": "2024-05-16T14:01:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.365400", + "Timestamp": "2024-05-16T14:01:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.360200", + "Timestamp": "2024-05-16T14:01:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.010600", + "Timestamp": "2024-05-16T14:01:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.989600", + "Timestamp": "2024-05-16T14:01:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.777800", + "Timestamp": "2024-05-16T14:01:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.772800", + "Timestamp": "2024-05-16T14:01:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.647800", + "Timestamp": "2024-05-16T14:01:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.023200", + "Timestamp": "2024-05-16T14:01:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.993200", + "Timestamp": "2024-05-16T14:01:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.893200", + "Timestamp": "2024-05-16T14:01:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112700", + "Timestamp": "2024-05-16T14:01:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109000", + "Timestamp": "2024-05-16T14:01:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052700", + "Timestamp": "2024-05-16T14:01:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.937400", + "Timestamp": "2024-05-16T14:01:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.932400", + "Timestamp": "2024-05-16T14:01:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.807400", + "Timestamp": "2024-05-16T14:01:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117000", + "Timestamp": "2024-05-16T14:00:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-16T14:00:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057000", + "Timestamp": "2024-05-16T14:00:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.589200", + "Timestamp": "2024-05-16T13:47:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.584200", + "Timestamp": "2024-05-16T13:47:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.459200", + "Timestamp": "2024-05-16T13:47:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.325700", + "Timestamp": "2024-05-16T13:47:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.378300", + "Timestamp": "2024-05-16T13:47:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.320700", + "Timestamp": "2024-05-16T13:47:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.373300", + "Timestamp": "2024-05-16T13:47:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195700", + "Timestamp": "2024-05-16T13:47:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.248300", + "Timestamp": "2024-05-16T13:47:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.473800", + "Timestamp": "2024-05-16T13:47:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.468800", + "Timestamp": "2024-05-16T13:47:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.343800", + "Timestamp": "2024-05-16T13:47:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.753300", + "Timestamp": "2024-05-16T13:46:52.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.762200", + "Timestamp": "2024-05-16T13:46:52.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.748300", + "Timestamp": "2024-05-16T13:46:52.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.757200", + "Timestamp": "2024-05-16T13:46:52.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.623300", + "Timestamp": "2024-05-16T13:46:52.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.632200", + "Timestamp": "2024-05-16T13:46:52.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.091700", + "Timestamp": "2024-05-16T13:46:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.061700", + "Timestamp": "2024-05-16T13:46:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.961700", + "Timestamp": "2024-05-16T13:46:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125500", + "Timestamp": "2024-05-16T13:46:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121800", + "Timestamp": "2024-05-16T13:46:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065500", + "Timestamp": "2024-05-16T13:46:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.135100", + "Timestamp": "2024-05-16T13:46:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.130100", + "Timestamp": "2024-05-16T13:46:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.005100", + "Timestamp": "2024-05-16T13:46:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.718400", + "Timestamp": "2024-05-16T13:46:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.686600", + "Timestamp": "2024-05-16T13:46:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.713400", + "Timestamp": "2024-05-16T13:46:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.681600", + "Timestamp": "2024-05-16T13:46:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.588400", + "Timestamp": "2024-05-16T13:46:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.556600", + "Timestamp": "2024-05-16T13:46:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092100", + "Timestamp": "2024-05-16T13:46:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088400", + "Timestamp": "2024-05-16T13:46:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032100", + "Timestamp": "2024-05-16T13:46:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.949300", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.985000", + "Timestamp": "2024-05-16T13:46:41.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.955000", + "Timestamp": "2024-05-16T13:46:41.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.855000", + "Timestamp": "2024-05-16T13:46:41.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.124200", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.147900", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.119200", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.142900", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.994200", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.017900", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.126000", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.381100", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.376100", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.251100", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.868200", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.863200", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.738200", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.836000", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.816200", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.811200", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.686200", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.669400", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.664400", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.539400", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.787100", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.782100", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.657100", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.506500", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.501500", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.376500", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.986200", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.981200", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.856200", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.572900", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.426200", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.058600", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.053600", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.928600", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.625600", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116000", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.925900", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.778900", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.160400", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.155400", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.030400", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.827700", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.636800", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.631800", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.506800", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.885800", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.168800", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.163800", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.038800", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.213200", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.208200", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.083200", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.400400", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.395400", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.270400", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.663200", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.689100", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211600", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.115200", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.085200", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.985200", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165600", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161900", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.093000", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.063000", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.963000", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.012800", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.825300", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.751000", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.746000", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.621000", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.793500", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.788500", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.663500", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.916200", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.911200", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.786200", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.089600", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.084600", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.959600", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.670600", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.523400", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.518400", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.393400", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.429500", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.399500", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.299500", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.753700", + "Timestamp": "2024-05-16T13:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077700", + "Timestamp": "2024-05-16T13:46:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074000", + "Timestamp": "2024-05-16T13:46:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017700", + "Timestamp": "2024-05-16T13:46:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.977200", + "Timestamp": "2024-05-16T13:46:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.972200", + "Timestamp": "2024-05-16T13:46:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.847200", + "Timestamp": "2024-05-16T13:46:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.513400", + "Timestamp": "2024-05-16T13:46:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.508400", + "Timestamp": "2024-05-16T13:46:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.383400", + "Timestamp": "2024-05-16T13:46:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.595300", + "Timestamp": "2024-05-16T13:46:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.792000", + "Timestamp": "2024-05-16T13:46:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.439800", + "Timestamp": "2024-05-16T13:46:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.409800", + "Timestamp": "2024-05-16T13:46:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.309800", + "Timestamp": "2024-05-16T13:46:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102400", + "Timestamp": "2024-05-16T13:46:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098400", + "Timestamp": "2024-05-16T13:46:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042400", + "Timestamp": "2024-05-16T13:46:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.629500", + "Timestamp": "2024-05-16T13:46:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.624500", + "Timestamp": "2024-05-16T13:46:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.499500", + "Timestamp": "2024-05-16T13:46:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.450000", + "Timestamp": "2024-05-16T13:46:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.345400", + "Timestamp": "2024-05-16T13:46:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.323700", + "Timestamp": "2024-05-16T13:46:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.318700", + "Timestamp": "2024-05-16T13:46:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.193700", + "Timestamp": "2024-05-16T13:46:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.994500", + "Timestamp": "2024-05-16T13:46:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.989500", + "Timestamp": "2024-05-16T13:46:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.864500", + "Timestamp": "2024-05-16T13:46:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.234500", + "Timestamp": "2024-05-16T13:46:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.229500", + "Timestamp": "2024-05-16T13:46:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-16T13:46:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158700", + "Timestamp": "2024-05-16T13:46:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154700", + "Timestamp": "2024-05-16T13:46:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098700", + "Timestamp": "2024-05-16T13:46:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.017100", + "Timestamp": "2024-05-16T13:46:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.012100", + "Timestamp": "2024-05-16T13:46:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.887100", + "Timestamp": "2024-05-16T13:46:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.896200", + "Timestamp": "2024-05-16T13:45:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.474000", + "Timestamp": "2024-05-16T13:45:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221700", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.888600", + "Timestamp": "2024-05-16T13:32:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.883600", + "Timestamp": "2024-05-16T13:32:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.758600", + "Timestamp": "2024-05-16T13:32:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.563000", + "Timestamp": "2024-05-16T13:32:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.533000", + "Timestamp": "2024-05-16T13:32:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.433000", + "Timestamp": "2024-05-16T13:32:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.976600", + "Timestamp": "2024-05-16T13:32:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.387300", + "Timestamp": "2024-05-16T13:32:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.062100", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.057100", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.932100", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114800", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111100", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054800", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.592200", + "Timestamp": "2024-05-16T13:31:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.587200", + "Timestamp": "2024-05-16T13:31:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.462200", + "Timestamp": "2024-05-16T13:31:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.837000", + "Timestamp": "2024-05-16T13:31:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.832000", + "Timestamp": "2024-05-16T13:31:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.707000", + "Timestamp": "2024-05-16T13:31:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.506000", + "Timestamp": "2024-05-16T13:31:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.687500", + "Timestamp": "2024-05-16T13:31:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.682500", + "Timestamp": "2024-05-16T13:31:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.557500", + "Timestamp": "2024-05-16T13:31:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.669700", + "Timestamp": "2024-05-16T13:31:47.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.249100", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.258500", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.244100", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.253500", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.119100", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.128500", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.817400", + "Timestamp": "2024-05-16T13:31:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106000", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102300", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046000", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.735400", + "Timestamp": "2024-05-16T13:31:41.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.284200", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.279200", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.154200", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.937000", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.932000", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.807000", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.073600", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.758200", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.517300", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.512300", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.387300", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.829600", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.656600", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.651600", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.526600", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.470400", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.240600", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049300", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.666500", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.661500", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.536500", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.056500", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.051500", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.926500", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.238300", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.426200", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.250500", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.245500", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120500", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.284000", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.313600", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.254000", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.283600", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.154000", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.183600", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.445500", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.066200", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.061200", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.936200", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.248200", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.809300", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.060700", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.237800", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.232800", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.107800", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437700", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.438700", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.533100", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.770300", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.740300", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.640300", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.865400", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360400", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.330400", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230400", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.481200", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.476200", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.351200", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.932400", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.902400", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.802400", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.478500", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131500", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128500", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071500", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.979900", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.939600", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.447200", + "Timestamp": "2024-05-16T13:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174900", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170900", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114900", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.150700", + "Timestamp": "2024-05-16T13:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.970000", + "Timestamp": "2024-05-16T13:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.965000", + "Timestamp": "2024-05-16T13:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.840000", + "Timestamp": "2024-05-16T13:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.643300", + "Timestamp": "2024-05-16T13:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.638300", + "Timestamp": "2024-05-16T13:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.513300", + "Timestamp": "2024-05-16T13:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.088900", + "Timestamp": "2024-05-16T13:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.058900", + "Timestamp": "2024-05-16T13:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.958900", + "Timestamp": "2024-05-16T13:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.768500", + "Timestamp": "2024-05-16T13:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.425200", + "Timestamp": "2024-05-16T13:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.420200", + "Timestamp": "2024-05-16T13:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.295200", + "Timestamp": "2024-05-16T13:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.540700", + "Timestamp": "2024-05-16T13:31:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.535700", + "Timestamp": "2024-05-16T13:31:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.410700", + "Timestamp": "2024-05-16T13:31:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.865100", + "Timestamp": "2024-05-16T13:31:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116700", + "Timestamp": "2024-05-16T13:31:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.221900", + "Timestamp": "2024-05-16T13:31:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.986900", + "Timestamp": "2024-05-16T13:31:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.646100", + "Timestamp": "2024-05-16T13:31:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137900", + "Timestamp": "2024-05-16T13:31:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134200", + "Timestamp": "2024-05-16T13:31:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077900", + "Timestamp": "2024-05-16T13:31:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.406500", + "Timestamp": "2024-05-16T13:31:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.401500", + "Timestamp": "2024-05-16T13:31:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.276500", + "Timestamp": "2024-05-16T13:31:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.638900", + "Timestamp": "2024-05-16T13:31:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.633900", + "Timestamp": "2024-05-16T13:31:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.508900", + "Timestamp": "2024-05-16T13:31:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.840800", + "Timestamp": "2024-05-16T13:30:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.148600", + "Timestamp": "2024-05-16T13:30:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.533800", + "Timestamp": "2024-05-16T13:30:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.528800", + "Timestamp": "2024-05-16T13:30:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.403800", + "Timestamp": "2024-05-16T13:30:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.723900", + "Timestamp": "2024-05-16T13:17:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.245600", + "Timestamp": "2024-05-16T13:17:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.240600", + "Timestamp": "2024-05-16T13:17:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115600", + "Timestamp": "2024-05-16T13:17:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.333700", + "Timestamp": "2024-05-16T13:17:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.328700", + "Timestamp": "2024-05-16T13:17:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.203700", + "Timestamp": "2024-05-16T13:17:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.718500", + "Timestamp": "2024-05-16T13:16:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.238200", + "Timestamp": "2024-05-16T13:16:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.255400", + "Timestamp": "2024-05-16T13:16:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.984100", + "Timestamp": "2024-05-16T13:16:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.954100", + "Timestamp": "2024-05-16T13:16:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.854100", + "Timestamp": "2024-05-16T13:16:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.741700", + "Timestamp": "2024-05-16T13:16:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.201900", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198200", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141900", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106000", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.103300", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.175300", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.098300", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.170300", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.973300", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.045300", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.842700", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.837700", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.712700", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.056500", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.051500", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.926500", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.117000", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.112000", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.987000", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.526800", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.190200", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.929900", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.924900", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.799900", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.518900", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.488900", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.388900", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.551300", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.546300", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.421300", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.104300", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.099300", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.974300", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.468000", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.840800", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.835000", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.707100", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.246300", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.241300", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.116300", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.576400", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.571400", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.446400", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.521800", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.276700", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.271700", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146700", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.732900", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.727900", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.602900", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154400", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150400", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094400", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137200", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133200", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077200", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.010800", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137600", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133900", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077600", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.609800", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.579800", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.479800", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.630200", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.625200", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.500200", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.697100", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.692100", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.567100", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.374100", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.369100", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.244100", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.285900", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.280900", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.155900", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.220100", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.215100", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.090100", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.310900", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.305900", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.180900", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.260900", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.255900", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130900", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.240100", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.235100", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.404900", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.399900", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.274900", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.784100", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.827000", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.822000", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.697000", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142100", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138400", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082100", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.854600", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.344600", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.339600", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.214600", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.245500", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.240500", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.115500", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.392800", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.387800", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.262800", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.708000", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.703000", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.578000", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.071300", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.817300", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.812300", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.687300", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.081700", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.076700", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.951700", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.197300", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.192300", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.067300", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.620500", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.547100", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.089600", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.182200", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.177200", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.052200", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.935100", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.905100", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.805100", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.167100", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.162100", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.037100", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.064100", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.034100", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.934100", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.758300", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.753300", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.628300", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.292600", + "Timestamp": "2024-05-16T13:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.287600", + "Timestamp": "2024-05-16T13:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162600", + "Timestamp": "2024-05-16T13:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.563100", + "Timestamp": "2024-05-16T13:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.558100", + "Timestamp": "2024-05-16T13:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.433100", + "Timestamp": "2024-05-16T13:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.313000", + "Timestamp": "2024-05-16T13:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.308700", + "Timestamp": "2024-05-16T13:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.278700", + "Timestamp": "2024-05-16T13:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.178700", + "Timestamp": "2024-05-16T13:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.500800", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.470800", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.370800", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.071300", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.856600", + "Timestamp": "2024-05-16T13:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130000", + "Timestamp": "2024-05-16T13:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170000", + "Timestamp": "2024-05-16T13:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070000", + "Timestamp": "2024-05-16T13:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121100", + "Timestamp": "2024-05-16T13:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.870400", + "Timestamp": "2024-05-16T13:16:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.865400", + "Timestamp": "2024-05-16T13:16:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.740400", + "Timestamp": "2024-05-16T13:16:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.340200", + "Timestamp": "2024-05-16T13:16:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.335200", + "Timestamp": "2024-05-16T13:16:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.210200", + "Timestamp": "2024-05-16T13:16:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.381800", + "Timestamp": "2024-05-16T13:16:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.376800", + "Timestamp": "2024-05-16T13:16:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.251800", + "Timestamp": "2024-05-16T13:16:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211700", + "Timestamp": "2024-05-16T13:16:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.336300", + "Timestamp": "2024-05-16T13:16:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.742000", + "Timestamp": "2024-05-16T13:16:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.354100", + "Timestamp": "2024-05-16T13:16:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.712000", + "Timestamp": "2024-05-16T13:16:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.324100", + "Timestamp": "2024-05-16T13:16:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.612000", + "Timestamp": "2024-05-16T13:16:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.224100", + "Timestamp": "2024-05-16T13:16:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.817900", + "Timestamp": "2024-05-16T13:16:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.962600", + "Timestamp": "2024-05-16T13:16:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062100", + "Timestamp": "2024-05-16T13:16:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002100", + "Timestamp": "2024-05-16T13:16:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002100", + "Timestamp": "2024-05-16T13:16:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.334400", + "Timestamp": "2024-05-16T13:16:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.272700", + "Timestamp": "2024-05-16T13:16:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267700", + "Timestamp": "2024-05-16T13:16:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142700", + "Timestamp": "2024-05-16T13:16:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.679200", + "Timestamp": "2024-05-16T13:16:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.674200", + "Timestamp": "2024-05-16T13:16:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.549200", + "Timestamp": "2024-05-16T13:16:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.334200", + "Timestamp": "2024-05-16T13:16:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.304200", + "Timestamp": "2024-05-16T13:16:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.204200", + "Timestamp": "2024-05-16T13:16:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.609400", + "Timestamp": "2024-05-16T13:16:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.546400", + "Timestamp": "2024-05-16T13:16:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.565300", + "Timestamp": "2024-05-16T13:15:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.702100", + "Timestamp": "2024-05-16T13:15:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.697100", + "Timestamp": "2024-05-16T13:15:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.572100", + "Timestamp": "2024-05-16T13:15:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.453100", + "Timestamp": "2024-05-16T13:15:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306000", + "Timestamp": "2024-05-16T13:15:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278800", + "Timestamp": "2024-05-16T13:15:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276000", + "Timestamp": "2024-05-16T13:15:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.248800", + "Timestamp": "2024-05-16T13:15:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176000", + "Timestamp": "2024-05-16T13:15:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148800", + "Timestamp": "2024-05-16T13:15:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.971900", + "Timestamp": "2024-05-16T13:02:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.201600", + "Timestamp": "2024-05-16T13:01:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.196600", + "Timestamp": "2024-05-16T13:01:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.071600", + "Timestamp": "2024-05-16T13:01:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.078300", + "Timestamp": "2024-05-16T13:01:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.520300", + "Timestamp": "2024-05-16T13:01:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.492000", + "Timestamp": "2024-05-16T13:01:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.965200", + "Timestamp": "2024-05-16T13:01:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.935200", + "Timestamp": "2024-05-16T13:01:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.835200", + "Timestamp": "2024-05-16T13:01:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.500000", + "Timestamp": "2024-05-16T13:01:47.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.495000", + "Timestamp": "2024-05-16T13:01:47.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.370000", + "Timestamp": "2024-05-16T13:01:47.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.873800", + "Timestamp": "2024-05-16T13:01:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.142000", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.137000", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.012000", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.663000", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.075200", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.045200", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.945200", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.909400", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.904400", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.779400", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.783400", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.778400", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.653400", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.922100", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.917100", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.792100", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090600", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086900", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030600", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.448800", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.443800", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.318800", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088500", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084800", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028500", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.548000", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.555100", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.550100", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.425100", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.004300", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.999300", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.874300", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.519900", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.514900", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.389900", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.271900", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.341600", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.328900", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323900", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.198900", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.683200", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.653200", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.553200", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.844400", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.313600", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.887200", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.882200", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.757200", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139300", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135600", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079300", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.440700", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.435700", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.310700", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.682900", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.677900", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.552900", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.756300", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.751300", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.626300", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.500700", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120400", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117400", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060400", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.968800", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "14.382200", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132900", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135900", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140600", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129200", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132200", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136900", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072900", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075900", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080600", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044200", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.029400", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.822200", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.817200", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.692200", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.265400", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.260400", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.135400", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.784400", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.920100", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.890100", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.790100", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145500", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141800", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085500", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.272400", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.299800", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.262200", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.257200", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.132200", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.421800", + "Timestamp": "2024-05-16T13:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.416800", + "Timestamp": "2024-05-16T13:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.291800", + "Timestamp": "2024-05-16T13:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.774800", + "Timestamp": "2024-05-16T13:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.834200", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.829200", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.704200", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T13:01:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.962800", + "Timestamp": "2024-05-16T13:01:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.723100", + "Timestamp": "2024-05-16T13:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.718100", + "Timestamp": "2024-05-16T13:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.593100", + "Timestamp": "2024-05-16T13:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.808600", + "Timestamp": "2024-05-16T13:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110400", + "Timestamp": "2024-05-16T13:01:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106700", + "Timestamp": "2024-05-16T13:01:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050400", + "Timestamp": "2024-05-16T13:01:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.252400", + "Timestamp": "2024-05-16T13:01:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.247400", + "Timestamp": "2024-05-16T13:01:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122400", + "Timestamp": "2024-05-16T13:01:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.704100", + "Timestamp": "2024-05-16T13:01:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.705800", + "Timestamp": "2024-05-16T13:01:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.699100", + "Timestamp": "2024-05-16T13:01:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.700800", + "Timestamp": "2024-05-16T13:01:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.574100", + "Timestamp": "2024-05-16T13:01:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.575800", + "Timestamp": "2024-05-16T13:01:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.896100", + "Timestamp": "2024-05-16T13:01:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.447900", + "Timestamp": "2024-05-16T13:01:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.442900", + "Timestamp": "2024-05-16T13:01:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.317900", + "Timestamp": "2024-05-16T13:01:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.635300", + "Timestamp": "2024-05-16T13:01:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.286900", + "Timestamp": "2024-05-16T13:01:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281900", + "Timestamp": "2024-05-16T13:01:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156900", + "Timestamp": "2024-05-16T13:01:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138500", + "Timestamp": "2024-05-16T13:01:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134500", + "Timestamp": "2024-05-16T13:01:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078500", + "Timestamp": "2024-05-16T13:01:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.504100", + "Timestamp": "2024-05-16T13:01:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.552800", + "Timestamp": "2024-05-16T13:01:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.522800", + "Timestamp": "2024-05-16T13:01:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.422800", + "Timestamp": "2024-05-16T13:01:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T13:00:56.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104700", + "Timestamp": "2024-05-16T13:00:56.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048700", + "Timestamp": "2024-05-16T13:00:56.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071500", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042500", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011500", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114900", + "Timestamp": "2024-05-16T12:47:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110900", + "Timestamp": "2024-05-16T12:47:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054900", + "Timestamp": "2024-05-16T12:47:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.671300", + "Timestamp": "2024-05-16T12:47:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.244800", + "Timestamp": "2024-05-16T12:47:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.886600", + "Timestamp": "2024-05-16T12:46:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.881600", + "Timestamp": "2024-05-16T12:46:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.756600", + "Timestamp": "2024-05-16T12:46:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141600", + "Timestamp": "2024-05-16T12:46:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137900", + "Timestamp": "2024-05-16T12:46:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081600", + "Timestamp": "2024-05-16T12:46:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441500", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.327200", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.348000", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.322200", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.343000", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.197200", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.218000", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.765700", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.760700", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.635700", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.698800", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.693800", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.568800", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.543700", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.160800", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.155800", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.030800", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.225400", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.220400", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095400", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.162400", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.157400", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.032400", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.714200", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.709200", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.584200", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124900", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.992200", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.987200", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.862200", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.529500", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.524500", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.399500", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.764600", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.759600", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.634600", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.317700", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.312700", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.187700", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.028600", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.023600", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.898600", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.509600", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.504600", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.379600", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.984000", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.979000", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.854000", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.447600", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.442600", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.317600", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.095400", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.921000", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.916000", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.791000", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.743600", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.738600", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.613600", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.879400", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.482400", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.067100", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.575900", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.496700", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.570900", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.491700", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.445900", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.366700", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.061400", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115900", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055900", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.302100", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.297100", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172100", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.575300", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.570300", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.445300", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.598500", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.742500", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.946000", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.692800", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.687800", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.562800", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.786300", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.756300", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.656300", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.988200", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.946800", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.941800", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.816800", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.163700", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.158700", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.033700", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.970700", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156700", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196700", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096700", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221100", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.450100", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.376800", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.371800", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.246800", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.374700", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.791800", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.786800", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.661800", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.297300", + "Timestamp": "2024-05-16T12:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.267300", + "Timestamp": "2024-05-16T12:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.167300", + "Timestamp": "2024-05-16T12:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.498300", + "Timestamp": "2024-05-16T12:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.639000", + "Timestamp": "2024-05-16T12:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.634000", + "Timestamp": "2024-05-16T12:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.509000", + "Timestamp": "2024-05-16T12:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.529200", + "Timestamp": "2024-05-16T12:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.396500", + "Timestamp": "2024-05-16T12:46:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.391500", + "Timestamp": "2024-05-16T12:46:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.266500", + "Timestamp": "2024-05-16T12:46:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.192700", + "Timestamp": "2024-05-16T12:46:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232700", + "Timestamp": "2024-05-16T12:46:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.132700", + "Timestamp": "2024-05-16T12:46:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.198400", + "Timestamp": "2024-05-16T12:46:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.193400", + "Timestamp": "2024-05-16T12:46:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.068400", + "Timestamp": "2024-05-16T12:46:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167500", + "Timestamp": "2024-05-16T12:46:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162500", + "Timestamp": "2024-05-16T12:46:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037500", + "Timestamp": "2024-05-16T12:46:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.395900", + "Timestamp": "2024-05-16T12:46:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.325600", + "Timestamp": "2024-05-16T12:46:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.320600", + "Timestamp": "2024-05-16T12:46:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195600", + "Timestamp": "2024-05-16T12:46:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.292500", + "Timestamp": "2024-05-16T12:46:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107000", + "Timestamp": "2024-05-16T12:46:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T12:46:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047000", + "Timestamp": "2024-05-16T12:46:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.818600", + "Timestamp": "2024-05-16T12:46:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.813600", + "Timestamp": "2024-05-16T12:46:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.688600", + "Timestamp": "2024-05-16T12:46:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.415300", + "Timestamp": "2024-05-16T12:46:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.554900", + "Timestamp": "2024-05-16T12:46:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.524900", + "Timestamp": "2024-05-16T12:46:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.424900", + "Timestamp": "2024-05-16T12:46:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.187600", + "Timestamp": "2024-05-16T12:46:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183600", + "Timestamp": "2024-05-16T12:46:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127600", + "Timestamp": "2024-05-16T12:46:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.641600", + "Timestamp": "2024-05-16T12:46:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.636600", + "Timestamp": "2024-05-16T12:46:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.511600", + "Timestamp": "2024-05-16T12:46:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T12:46:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.415900", + "Timestamp": "2024-05-16T12:46:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-16T12:45:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.686800", + "Timestamp": "2024-05-16T12:45:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.681800", + "Timestamp": "2024-05-16T12:45:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.556800", + "Timestamp": "2024-05-16T12:45:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T12:45:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099700", + "Timestamp": "2024-05-16T12:45:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043700", + "Timestamp": "2024-05-16T12:45:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.391100", + "Timestamp": "2024-05-16T12:45:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.386100", + "Timestamp": "2024-05-16T12:45:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.261100", + "Timestamp": "2024-05-16T12:45:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.941700", + "Timestamp": "2024-05-16T12:45:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.936700", + "Timestamp": "2024-05-16T12:45:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.811700", + "Timestamp": "2024-05-16T12:45:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.023300", + "Timestamp": "2024-05-16T12:32:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.018300", + "Timestamp": "2024-05-16T12:32:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.893300", + "Timestamp": "2024-05-16T12:32:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.641000", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.871000", + "Timestamp": "2024-05-16T12:32:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.539400", + "Timestamp": "2024-05-16T12:32:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.509400", + "Timestamp": "2024-05-16T12:32:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.409400", + "Timestamp": "2024-05-16T12:32:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.208700", + "Timestamp": "2024-05-16T12:32:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.203700", + "Timestamp": "2024-05-16T12:32:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.078700", + "Timestamp": "2024-05-16T12:32:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.324000", + "Timestamp": "2024-05-16T12:32:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.319000", + "Timestamp": "2024-05-16T12:32:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.194000", + "Timestamp": "2024-05-16T12:32:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.722300", + "Timestamp": "2024-05-16T12:31:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.678900", + "Timestamp": "2024-05-16T12:31:52.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.673900", + "Timestamp": "2024-05-16T12:31:52.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.548900", + "Timestamp": "2024-05-16T12:31:52.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.896200", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.891200", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.766200", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.658200", + "Timestamp": "2024-05-16T12:31:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.653200", + "Timestamp": "2024-05-16T12:31:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.528200", + "Timestamp": "2024-05-16T12:31:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.280300", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.275300", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150300", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.262900", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.496700", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.491700", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.366700", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.448400", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.648400", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.643400", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.518400", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133600", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129900", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073600", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.716200", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.711200", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.586200", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.282000", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.048800", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.043800", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.918800", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.427700", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.910800", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.905800", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.780800", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.343700", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.313300", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.338700", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.308300", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.213700", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.183300", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.950000", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.945000", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.820000", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.771900", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.813400", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.766900", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.808400", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.641900", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.683400", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.323800", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.318800", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.193800", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.893600", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.407900", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.406700", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090000", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086300", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030000", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.216100", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.212100", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156100", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.295400", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.265400", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.165400", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.465000", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.841800", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.019000", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.911200", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.945300", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.014000", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.906200", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.940300", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.889000", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.781200", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.815300", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432400", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.465300", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.337000", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.333000", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.277000", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.377100", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372100", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.247100", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.054600", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.654100", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172200", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168200", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.196000", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192300", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136000", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.507900", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.758300", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.753300", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.628300", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.438900", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.292400", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.505400", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.500400", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.375400", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.312400", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.282400", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.182400", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.211900", + "Timestamp": "2024-05-16T12:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.861100", + "Timestamp": "2024-05-16T12:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.169600", + "Timestamp": "2024-05-16T12:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.164600", + "Timestamp": "2024-05-16T12:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.039600", + "Timestamp": "2024-05-16T12:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.630500", + "Timestamp": "2024-05-16T12:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.625500", + "Timestamp": "2024-05-16T12:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.500500", + "Timestamp": "2024-05-16T12:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.783000", + "Timestamp": "2024-05-16T12:31:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.946900", + "Timestamp": "2024-05-16T12:31:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.517900", + "Timestamp": "2024-05-16T12:31:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.487900", + "Timestamp": "2024-05-16T12:31:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.387900", + "Timestamp": "2024-05-16T12:31:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.759100", + "Timestamp": "2024-05-16T12:31:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.098000", + "Timestamp": "2024-05-16T12:31:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.462900", + "Timestamp": "2024-05-16T12:31:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.877000", + "Timestamp": "2024-05-16T12:30:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.787200", + "Timestamp": "2024-05-16T12:30:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123000", + "Timestamp": "2024-05-16T12:17:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115700", + "Timestamp": "2024-05-16T12:17:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119300", + "Timestamp": "2024-05-16T12:17:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-16T12:17:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063000", + "Timestamp": "2024-05-16T12:17:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055700", + "Timestamp": "2024-05-16T12:17:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.827200", + "Timestamp": "2024-05-16T12:17:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.822200", + "Timestamp": "2024-05-16T12:17:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.697200", + "Timestamp": "2024-05-16T12:17:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311900", + "Timestamp": "2024-05-16T12:17:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.306900", + "Timestamp": "2024-05-16T12:17:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181900", + "Timestamp": "2024-05-16T12:17:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.903000", + "Timestamp": "2024-05-16T12:16:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114000", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.941900", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.506800", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.707000", + "Timestamp": "2024-05-16T12:16:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.376700", + "Timestamp": "2024-05-16T12:16:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.313300", + "Timestamp": "2024-05-16T12:16:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.308300", + "Timestamp": "2024-05-16T12:16:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.183300", + "Timestamp": "2024-05-16T12:16:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.789700", + "Timestamp": "2024-05-16T12:16:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.784700", + "Timestamp": "2024-05-16T12:16:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.659700", + "Timestamp": "2024-05-16T12:16:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.848100", + "Timestamp": "2024-05-16T12:16:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.818100", + "Timestamp": "2024-05-16T12:16:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.718100", + "Timestamp": "2024-05-16T12:16:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.790500", + "Timestamp": "2024-05-16T12:16:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.501900", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.496900", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.371900", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124400", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120700", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064400", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261700", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.231700", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131700", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.528700", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.523700", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.398700", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.256200", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.251200", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126200", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.646000", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.123400", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.477100", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.472100", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.347100", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235400", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.495700", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.507200", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.502200", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.377200", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.337500", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.332500", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.207500", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.828800", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.111400", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.081400", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.981400", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.636000", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.606000", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.506000", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.447800", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.442800", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.317800", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.989300", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.984300", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.859300", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.831300", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.826300", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.701300", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.470800", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.465800", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.340800", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437600", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.258900", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.253900", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128900", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107900", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147900", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149500", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047900", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049500", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062000", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002000", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002000", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.923700", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.918700", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.793700", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097300", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137300", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037300", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.056200", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.811000", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.806000", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.681000", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.528400", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.540900", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.466500", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.461500", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.336500", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.926600", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.896600", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.796600", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.052800", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.047800", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.922800", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.665400", + "Timestamp": "2024-05-16T12:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.413200", + "Timestamp": "2024-05-16T12:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.445400", + "Timestamp": "2024-05-16T12:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.126900", + "Timestamp": "2024-05-16T12:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.121900", + "Timestamp": "2024-05-16T12:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.996900", + "Timestamp": "2024-05-16T12:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089100", + "Timestamp": "2024-05-16T12:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085400", + "Timestamp": "2024-05-16T12:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029100", + "Timestamp": "2024-05-16T12:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.773800", + "Timestamp": "2024-05-16T12:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.890800", + "Timestamp": "2024-05-16T12:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.885800", + "Timestamp": "2024-05-16T12:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.760800", + "Timestamp": "2024-05-16T12:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.258100", + "Timestamp": "2024-05-16T12:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.228100", + "Timestamp": "2024-05-16T12:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.128100", + "Timestamp": "2024-05-16T12:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.081000", + "Timestamp": "2024-05-16T12:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.863700", + "Timestamp": "2024-05-16T12:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T12:16:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T12:16:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100100", + "Timestamp": "2024-05-16T12:16:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043800", + "Timestamp": "2024-05-16T12:16:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.600600", + "Timestamp": "2024-05-16T12:16:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.595600", + "Timestamp": "2024-05-16T12:16:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.470600", + "Timestamp": "2024-05-16T12:16:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.386800", + "Timestamp": "2024-05-16T12:16:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.381800", + "Timestamp": "2024-05-16T12:16:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.256800", + "Timestamp": "2024-05-16T12:16:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "24.820600", + "Timestamp": "2024-05-16T12:16:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.415000", + "Timestamp": "2024-05-16T12:16:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.429500", + "Timestamp": "2024-05-16T12:16:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.410000", + "Timestamp": "2024-05-16T12:16:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.424500", + "Timestamp": "2024-05-16T12:16:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.285000", + "Timestamp": "2024-05-16T12:16:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.299500", + "Timestamp": "2024-05-16T12:16:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.224700", + "Timestamp": "2024-05-16T12:16:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220000", + "Timestamp": "2024-05-16T12:16:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219100", + "Timestamp": "2024-05-16T12:16:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.385700", + "Timestamp": "2024-05-16T12:16:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.380700", + "Timestamp": "2024-05-16T12:16:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.255700", + "Timestamp": "2024-05-16T12:16:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-16T12:16:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113400", + "Timestamp": "2024-05-16T12:16:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056400", + "Timestamp": "2024-05-16T12:16:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.509500", + "Timestamp": "2024-05-16T12:16:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.504500", + "Timestamp": "2024-05-16T12:16:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.379500", + "Timestamp": "2024-05-16T12:16:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.413300", + "Timestamp": "2024-05-16T12:16:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.408300", + "Timestamp": "2024-05-16T12:16:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.283300", + "Timestamp": "2024-05-16T12:16:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.247100", + "Timestamp": "2024-05-16T12:16:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.035200", + "Timestamp": "2024-05-16T12:15:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.481500", + "Timestamp": "2024-05-16T12:15:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.171100", + "Timestamp": "2024-05-16T12:15:56.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.166100", + "Timestamp": "2024-05-16T12:15:56.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.041100", + "Timestamp": "2024-05-16T12:15:56.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.328000", + "Timestamp": "2024-05-16T12:02:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.298000", + "Timestamp": "2024-05-16T12:02:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.198000", + "Timestamp": "2024-05-16T12:02:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.799600", + "Timestamp": "2024-05-16T12:02:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.256200", + "Timestamp": "2024-05-16T12:02:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.341500", + "Timestamp": "2024-05-16T12:01:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.336500", + "Timestamp": "2024-05-16T12:01:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.211500", + "Timestamp": "2024-05-16T12:01:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T12:01:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102700", + "Timestamp": "2024-05-16T12:01:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046400", + "Timestamp": "2024-05-16T12:01:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.016400", + "Timestamp": "2024-05-16T12:01:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.011400", + "Timestamp": "2024-05-16T12:01:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.886400", + "Timestamp": "2024-05-16T12:01:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.454300", + "Timestamp": "2024-05-16T12:01:51.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.081600", + "Timestamp": "2024-05-16T12:01:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.955900", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141100", + "Timestamp": "2024-05-16T12:01:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137400", + "Timestamp": "2024-05-16T12:01:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081100", + "Timestamp": "2024-05-16T12:01:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.333000", + "Timestamp": "2024-05-16T12:01:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.328000", + "Timestamp": "2024-05-16T12:01:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.203000", + "Timestamp": "2024-05-16T12:01:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226600", + "Timestamp": "2024-05-16T12:01:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.673000", + "Timestamp": "2024-05-16T12:01:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.260100", + "Timestamp": "2024-05-16T12:01:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.268500", + "Timestamp": "2024-05-16T12:01:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.255100", + "Timestamp": "2024-05-16T12:01:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.263500", + "Timestamp": "2024-05-16T12:01:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.130100", + "Timestamp": "2024-05-16T12:01:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.138500", + "Timestamp": "2024-05-16T12:01:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.204500", + "Timestamp": "2024-05-16T12:01:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.199500", + "Timestamp": "2024-05-16T12:01:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.074500", + "Timestamp": "2024-05-16T12:01:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.420100", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115600", + "Timestamp": "2024-05-16T12:01:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111900", + "Timestamp": "2024-05-16T12:01:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055600", + "Timestamp": "2024-05-16T12:01:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.675700", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.814300", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.809300", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.684300", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.009200", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.979200", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.879200", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.518900", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.513900", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.388900", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.561400", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.556400", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.431400", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.753800", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.748800", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.623800", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.898900", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.552400", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.547400", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.422400", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.699200", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.694200", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.569200", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163100", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159100", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103100", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.790800", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.252900", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.247900", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122900", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097700", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093700", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037700", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212800", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137400", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133700", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077400", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.505700", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.500700", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.375700", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.902600", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.045000", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.040000", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.915000", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.072900", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.597600", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.556500", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.551500", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.426500", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.389200", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.384200", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.259200", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.723000", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.861000", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.152000", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.122000", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.022000", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.346100", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.316100", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.216100", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.460000", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.455000", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.330000", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.552000", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.634900", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.629900", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.504900", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.659100", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.654100", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.529100", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.698200", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.787300", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.782300", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.657300", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.010900", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.005900", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.880900", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.424200", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.181000", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177300", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121000", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.272100", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267100", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142100", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.734600", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.729600", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.604600", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.544200", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.548300", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.539200", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.543300", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.414200", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.418300", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.670400", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.707300", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.665400", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.702300", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.540400", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.577300", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.540600", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.535600", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.410600", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.895100", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.890100", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.765100", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.710900", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.705900", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.580900", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.572900", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.567900", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.442900", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.415500", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.385500", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.285500", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.777800", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.554900", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.002900", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.708200", + "Timestamp": "2024-05-16T12:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.678200", + "Timestamp": "2024-05-16T12:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.578200", + "Timestamp": "2024-05-16T12:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.607900", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111900", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051900", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.786300", + "Timestamp": "2024-05-16T12:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.781300", + "Timestamp": "2024-05-16T12:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.656300", + "Timestamp": "2024-05-16T12:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136100", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132100", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076100", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.983300", + "Timestamp": "2024-05-16T12:01:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.410800", + "Timestamp": "2024-05-16T12:01:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.405800", + "Timestamp": "2024-05-16T12:01:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.280800", + "Timestamp": "2024-05-16T12:01:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.249000", + "Timestamp": "2024-05-16T12:01:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137700", + "Timestamp": "2024-05-16T12:01:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134000", + "Timestamp": "2024-05-16T12:01:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077700", + "Timestamp": "2024-05-16T12:01:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118600", + "Timestamp": "2024-05-16T12:01:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.378800", + "Timestamp": "2024-05-16T12:01:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.373800", + "Timestamp": "2024-05-16T12:01:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.248800", + "Timestamp": "2024-05-16T12:01:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133400", + "Timestamp": "2024-05-16T12:01:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129700", + "Timestamp": "2024-05-16T12:01:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073400", + "Timestamp": "2024-05-16T12:01:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.632500", + "Timestamp": "2024-05-16T12:01:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.848800", + "Timestamp": "2024-05-16T12:01:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147100", + "Timestamp": "2024-05-16T12:01:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143400", + "Timestamp": "2024-05-16T12:01:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087100", + "Timestamp": "2024-05-16T12:01:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114000", + "Timestamp": "2024-05-16T12:01:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T12:01:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054000", + "Timestamp": "2024-05-16T12:01:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.901600", + "Timestamp": "2024-05-16T12:00:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.430700", + "Timestamp": "2024-05-16T12:00:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095200", + "Timestamp": "2024-05-16T12:00:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091500", + "Timestamp": "2024-05-16T12:00:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035200", + "Timestamp": "2024-05-16T12:00:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.089600", + "Timestamp": "2024-05-16T12:00:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.084600", + "Timestamp": "2024-05-16T12:00:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.959600", + "Timestamp": "2024-05-16T12:00:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.818400", + "Timestamp": "2024-05-16T11:54:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.158800", + "Timestamp": "2024-05-16T11:47:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.989500", + "Timestamp": "2024-05-16T11:47:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.984500", + "Timestamp": "2024-05-16T11:47:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.859500", + "Timestamp": "2024-05-16T11:47:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138900", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134900", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078900", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.548800", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.858400", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.000800", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.970800", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.870800", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.240400", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.235400", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.110400", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.589900", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.541400", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.536400", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.411400", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113500", + "Timestamp": "2024-05-16T11:47:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T11:47:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053500", + "Timestamp": "2024-05-16T11:47:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.206600", + "Timestamp": "2024-05-16T11:47:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.215000", + "Timestamp": "2024-05-16T11:47:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.753800", + "Timestamp": "2024-05-16T11:47:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.723800", + "Timestamp": "2024-05-16T11:47:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.623800", + "Timestamp": "2024-05-16T11:47:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.901900", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099800", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096100", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039800", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.958800", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.953800", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.828800", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113600", + "Timestamp": "2024-05-16T11:47:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109600", + "Timestamp": "2024-05-16T11:47:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053600", + "Timestamp": "2024-05-16T11:47:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.975600", + "Timestamp": "2024-05-16T11:47:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.240100", + "Timestamp": "2024-05-16T11:47:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.414000", + "Timestamp": "2024-05-16T11:47:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.409000", + "Timestamp": "2024-05-16T11:47:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.284000", + "Timestamp": "2024-05-16T11:47:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.235100", + "Timestamp": "2024-05-16T11:47:09.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.230100", + "Timestamp": "2024-05-16T11:47:09.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105100", + "Timestamp": "2024-05-16T11:47:09.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.508400", + "Timestamp": "2024-05-16T11:47:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.503400", + "Timestamp": "2024-05-16T11:47:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.378400", + "Timestamp": "2024-05-16T11:47:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142600", + "Timestamp": "2024-05-16T11:47:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138900", + "Timestamp": "2024-05-16T11:47:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082600", + "Timestamp": "2024-05-16T11:47:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063700", + "Timestamp": "2024-05-16T11:47:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003700", + "Timestamp": "2024-05-16T11:47:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003700", + "Timestamp": "2024-05-16T11:47:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.190600", + "Timestamp": "2024-05-16T11:46:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354600", + "Timestamp": "2024-05-16T11:46:56.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324600", + "Timestamp": "2024-05-16T11:46:56.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224600", + "Timestamp": "2024-05-16T11:46:56.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.924900", + "Timestamp": "2024-05-16T11:46:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.875400", + "Timestamp": "2024-05-16T11:46:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206800", + "Timestamp": "2024-05-16T11:46:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.088000", + "Timestamp": "2024-05-16T11:46:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.657800", + "Timestamp": "2024-05-16T11:46:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.652800", + "Timestamp": "2024-05-16T11:46:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.527800", + "Timestamp": "2024-05-16T11:46:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.990100", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.896700", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.289000", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.140700", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.284000", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.135700", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.159000", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.010700", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.995900", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.965900", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.865900", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.503400", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.534500", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.529500", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.404500", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.818800", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.712300", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.707300", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.582300", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151500", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147800", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091500", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.056400", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.051400", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.926400", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.969500", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.964500", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.839500", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.497400", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.281900", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276900", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.151900", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.252500", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.247500", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122500", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.471300", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.466300", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.341300", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.234200", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.823200", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.685900", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.921700", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.571200", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.566200", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.441200", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.085000", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.055000", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.955000", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.057400", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.052400", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.927400", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.238500", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.233500", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.108500", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.770900", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.765900", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.640900", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206300", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125700", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122000", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065700", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.907800", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.902800", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.777800", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.771200", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.855600", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.850600", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.725600", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.831400", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.034400", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.029400", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.904400", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.856000", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.152300", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.929200", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.795900", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.738000", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.733000", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.608000", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.522300", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.517300", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.392300", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.776000", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.771000", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.646000", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.183400", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180400", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123400", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306400", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276400", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176400", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.300800", + "Timestamp": "2024-05-16T11:46:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270800", + "Timestamp": "2024-05-16T11:46:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170800", + "Timestamp": "2024-05-16T11:46:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.130700", + "Timestamp": "2024-05-16T11:46:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.125700", + "Timestamp": "2024-05-16T11:46:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.000700", + "Timestamp": "2024-05-16T11:46:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021100", + "Timestamp": "2024-05-16T11:42:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.020600", + "Timestamp": "2024-05-16T11:42:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.450500", + "Timestamp": "2024-05-16T11:38:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.431300", + "Timestamp": "2024-05-16T11:38:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.452500", + "Timestamp": "2024-05-16T11:38:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.546000", + "Timestamp": "2024-05-16T11:38:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.704200", + "Timestamp": "2024-05-16T11:38:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.704900", + "Timestamp": "2024-05-16T11:38:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.541000", + "Timestamp": "2024-05-16T11:38:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.699200", + "Timestamp": "2024-05-16T11:38:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.699900", + "Timestamp": "2024-05-16T11:38:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.416000", + "Timestamp": "2024-05-16T11:38:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.574200", + "Timestamp": "2024-05-16T11:38:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.574900", + "Timestamp": "2024-05-16T11:38:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.702300", + "Timestamp": "2024-05-16T11:32:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.672300", + "Timestamp": "2024-05-16T11:32:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.572300", + "Timestamp": "2024-05-16T11:32:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118200", + "Timestamp": "2024-05-16T11:32:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.740900", + "Timestamp": "2024-05-16T11:32:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.735900", + "Timestamp": "2024-05-16T11:32:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.610900", + "Timestamp": "2024-05-16T11:32:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306300", + "Timestamp": "2024-05-16T11:32:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301300", + "Timestamp": "2024-05-16T11:32:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176300", + "Timestamp": "2024-05-16T11:32:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.629800", + "Timestamp": "2024-05-16T11:31:56.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.624800", + "Timestamp": "2024-05-16T11:31:56.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.499800", + "Timestamp": "2024-05-16T11:31:56.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.321100", + "Timestamp": "2024-05-16T11:31:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.316100", + "Timestamp": "2024-05-16T11:31:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.191100", + "Timestamp": "2024-05-16T11:31:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.329700", + "Timestamp": "2024-05-16T11:31:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324700", + "Timestamp": "2024-05-16T11:31:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199700", + "Timestamp": "2024-05-16T11:31:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136400", + "Timestamp": "2024-05-16T11:31:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.176400", + "Timestamp": "2024-05-16T11:31:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076400", + "Timestamp": "2024-05-16T11:31:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.745300", + "Timestamp": "2024-05-16T11:31:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.715300", + "Timestamp": "2024-05-16T11:31:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.615300", + "Timestamp": "2024-05-16T11:31:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099600", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043300", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.510100", + "Timestamp": "2024-05-16T11:31:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.505100", + "Timestamp": "2024-05-16T11:31:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.380100", + "Timestamp": "2024-05-16T11:31:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.896300", + "Timestamp": "2024-05-16T11:31:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.616100", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.974600", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.944600", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.844600", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.132200", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.127200", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.002200", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.706700", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.701700", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.576700", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.834700", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.831000", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.774700", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.682300", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.677300", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.552300", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.698500", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.693500", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.568500", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.981700", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.976700", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.851700", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418900", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.148700", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.118700", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.018700", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.514300", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.509300", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.384300", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.320900", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.315900", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190900", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157300", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150400", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153600", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146700", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097300", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090400", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270900", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265900", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140900", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.352600", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.347600", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.222600", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.975800", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.970800", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.845800", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.909900", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.476100", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.080800", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.196300", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138200", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134500", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078200", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.662400", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.657400", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.532400", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049900", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096600", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040300", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.375900", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.370900", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.245900", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.788800", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.783800", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.658800", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.845000", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.840000", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.715000", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.773600", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.527300", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.522300", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.397300", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.529100", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.524100", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.399100", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.869100", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115900", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.142000", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.112000", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.012000", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116700", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056700", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210900", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.640700", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067300", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038300", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007300", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.435000", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.721400", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.416600", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.411600", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.286600", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.699500", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.669500", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.569500", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172600", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168900", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.279700", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.274700", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149700", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.399100", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.394100", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.269100", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.950200", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.945200", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.820200", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.419000", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.609500", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.604500", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.479500", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.485000", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.476400", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.350800", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095400", + "Timestamp": "2024-05-16T11:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091700", + "Timestamp": "2024-05-16T11:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035400", + "Timestamp": "2024-05-16T11:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.419800", + "Timestamp": "2024-05-16T11:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168100", + "Timestamp": "2024-05-16T11:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163100", + "Timestamp": "2024-05-16T11:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038100", + "Timestamp": "2024-05-16T11:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.397800", + "Timestamp": "2024-05-16T11:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.392800", + "Timestamp": "2024-05-16T11:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.267800", + "Timestamp": "2024-05-16T11:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.350600", + "Timestamp": "2024-05-16T11:31:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.345600", + "Timestamp": "2024-05-16T11:31:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.220600", + "Timestamp": "2024-05-16T11:31:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.308900", + "Timestamp": "2024-05-16T11:31:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.938200", + "Timestamp": "2024-05-16T11:31:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.933200", + "Timestamp": "2024-05-16T11:31:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.808200", + "Timestamp": "2024-05-16T11:31:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.481300", + "Timestamp": "2024-05-16T11:31:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.451300", + "Timestamp": "2024-05-16T11:31:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.351300", + "Timestamp": "2024-05-16T11:31:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.034700", + "Timestamp": "2024-05-16T11:31:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.724200", + "Timestamp": "2024-05-16T11:31:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.044100", + "Timestamp": "2024-05-16T11:31:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062600", + "Timestamp": "2024-05-16T11:18:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-16T11:18:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-16T11:18:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.234000", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.229000", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.104000", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.986200", + "Timestamp": "2024-05-16T11:16:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.982500", + "Timestamp": "2024-05-16T11:16:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.926200", + "Timestamp": "2024-05-16T11:16:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093200", + "Timestamp": "2024-05-16T11:16:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089500", + "Timestamp": "2024-05-16T11:16:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033200", + "Timestamp": "2024-05-16T11:16:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354400", + "Timestamp": "2024-05-16T11:16:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349400", + "Timestamp": "2024-05-16T11:16:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224400", + "Timestamp": "2024-05-16T11:16:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073700", + "Timestamp": "2024-05-16T11:16:47.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044700", + "Timestamp": "2024-05-16T11:16:47.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013700", + "Timestamp": "2024-05-16T11:16:47.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.242800", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.237800", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.768100", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.642400", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.604400", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.502900", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.497900", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.372900", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.460000", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089600", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085900", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029600", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.678200", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.673200", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.548200", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.867100", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.246000", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.956000", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.951000", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.826000", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.690100", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.685100", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.560100", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.501800", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.496800", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.371800", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.909600", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.418200", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.413200", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.288200", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.065300", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.060300", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.935300", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.804100", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.799100", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.674100", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.008400", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.003400", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.878400", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.717900", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.497700", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.492700", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.367700", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170000", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166000", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.843100", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.250300", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.245300", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120300", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096800", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093100", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036800", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084500", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080800", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024500", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.433800", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.902900", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.725200", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.463600", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.114500", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.201700", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.274100", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269100", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144100", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.323500", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.318500", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.193500", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.456500", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.879000", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.874000", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.749000", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.596700", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.591700", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.466700", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.663900", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.338600", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334900", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.278600", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.461200", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.017400", + "Timestamp": "2024-05-16T11:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.688700", + "Timestamp": "2024-05-16T11:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.683700", + "Timestamp": "2024-05-16T11:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.558700", + "Timestamp": "2024-05-16T11:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.818500", + "Timestamp": "2024-05-16T11:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.832400", + "Timestamp": "2024-05-16T11:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.693700", + "Timestamp": "2024-05-16T11:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156300", + "Timestamp": "2024-05-16T11:16:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152300", + "Timestamp": "2024-05-16T11:16:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096300", + "Timestamp": "2024-05-16T11:16:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-16T11:16:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.927600", + "Timestamp": "2024-05-16T11:16:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T11:16:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115100", + "Timestamp": "2024-05-16T11:16:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.242800", + "Timestamp": "2024-05-16T11:16:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.567300", + "Timestamp": "2024-05-16T11:16:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.562300", + "Timestamp": "2024-05-16T11:16:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.437300", + "Timestamp": "2024-05-16T11:16:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.893100", + "Timestamp": "2024-05-16T11:16:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.888100", + "Timestamp": "2024-05-16T11:16:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.763100", + "Timestamp": "2024-05-16T11:16:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.406100", + "Timestamp": "2024-05-16T11:16:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.955300", + "Timestamp": "2024-05-16T11:16:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.332300", + "Timestamp": "2024-05-16T11:16:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.327300", + "Timestamp": "2024-05-16T11:16:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.202300", + "Timestamp": "2024-05-16T11:16:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.031700", + "Timestamp": "2024-05-16T11:16:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.454300", + "Timestamp": "2024-05-16T11:15:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.488500", + "Timestamp": "2024-05-16T11:15:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.484000", + "Timestamp": "2024-05-16T11:15:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.479000", + "Timestamp": "2024-05-16T11:15:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.354000", + "Timestamp": "2024-05-16T11:15:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.458600", + "Timestamp": "2024-05-16T11:15:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.453600", + "Timestamp": "2024-05-16T11:15:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.328600", + "Timestamp": "2024-05-16T11:15:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.281300", + "Timestamp": "2024-05-16T11:15:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.500200", + "Timestamp": "2024-05-16T11:15:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010600", + "Timestamp": "2024-05-16T11:06:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.778700", + "Timestamp": "2024-05-16T11:02:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.773700", + "Timestamp": "2024-05-16T11:02:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.648700", + "Timestamp": "2024-05-16T11:02:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.207000", + "Timestamp": "2024-05-16T11:02:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.202000", + "Timestamp": "2024-05-16T11:02:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.077000", + "Timestamp": "2024-05-16T11:02:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.613300", + "Timestamp": "2024-05-16T11:02:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.608300", + "Timestamp": "2024-05-16T11:02:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.483300", + "Timestamp": "2024-05-16T11:02:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.873500", + "Timestamp": "2024-05-16T11:02:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.345400", + "Timestamp": "2024-05-16T11:02:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.341400", + "Timestamp": "2024-05-16T11:02:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.285400", + "Timestamp": "2024-05-16T11:02:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.410700", + "Timestamp": "2024-05-16T11:02:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.405700", + "Timestamp": "2024-05-16T11:02:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.280700", + "Timestamp": "2024-05-16T11:02:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.942600", + "Timestamp": "2024-05-16T11:01:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.921300", + "Timestamp": "2024-05-16T11:01:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.672900", + "Timestamp": "2024-05-16T11:01:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.669500", + "Timestamp": "2024-05-16T11:01:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.739500", + "Timestamp": "2024-05-16T11:01:52.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.003800", + "Timestamp": "2024-05-16T11:01:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.149100", + "Timestamp": "2024-05-16T11:01:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.177000", + "Timestamp": "2024-05-16T11:01:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.689100", + "Timestamp": "2024-05-16T11:01:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.277100", + "Timestamp": "2024-05-16T11:01:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.272100", + "Timestamp": "2024-05-16T11:01:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.147100", + "Timestamp": "2024-05-16T11:01:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.067600", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.062600", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.937600", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.760100", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.755100", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.630100", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.544700", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131000", + "Timestamp": "2024-05-16T11:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127300", + "Timestamp": "2024-05-16T11:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071000", + "Timestamp": "2024-05-16T11:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.433500", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.127500", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.709600", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.432600", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.400200", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.754000", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.822600", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.749000", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.817600", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.624000", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.692600", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.291400", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.286400", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.161400", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.431300", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.265200", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.260200", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.135200", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.909500", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.904500", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.779500", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.119000", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.674700", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.669700", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.544700", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.989400", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.984400", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.859400", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.820200", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.815200", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.690200", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.254200", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.249200", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124200", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.376000", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.371000", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.246000", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119400", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.175500", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.171500", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115500", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.321600", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.316600", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.191600", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.900200", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.895200", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.770200", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.588700", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.583700", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.458700", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299700", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.292000", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269700", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262000", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169700", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162000", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211500", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.929800", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.899800", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.799800", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.198300", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.193300", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.068300", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120900", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078800", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118800", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018800", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.489500", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.484500", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.359500", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.018400", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.724400", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.719400", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.594400", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.850200", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.426700", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.318000", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.313000", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.188000", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.889300", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.884300", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.759300", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040800", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.705900", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.222100", + "Timestamp": "2024-05-16T11:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-16T11:01:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.733000", + "Timestamp": "2024-05-16T11:01:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.820800", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134000", + "Timestamp": "2024-05-16T11:01:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130000", + "Timestamp": "2024-05-16T11:01:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074000", + "Timestamp": "2024-05-16T11:01:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094100", + "Timestamp": "2024-05-16T11:01:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090400", + "Timestamp": "2024-05-16T11:01:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034100", + "Timestamp": "2024-05-16T11:01:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.044400", + "Timestamp": "2024-05-16T11:01:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.014400", + "Timestamp": "2024-05-16T11:01:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.914400", + "Timestamp": "2024-05-16T11:01:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157400", + "Timestamp": "2024-05-16T11:01:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153400", + "Timestamp": "2024-05-16T11:01:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097400", + "Timestamp": "2024-05-16T11:01:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118700", + "Timestamp": "2024-05-16T11:01:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.141900", + "Timestamp": "2024-05-16T11:01:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.136900", + "Timestamp": "2024-05-16T11:01:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.011900", + "Timestamp": "2024-05-16T11:01:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.719300", + "Timestamp": "2024-05-16T11:01:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077600", + "Timestamp": "2024-05-16T11:01:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073900", + "Timestamp": "2024-05-16T11:01:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017600", + "Timestamp": "2024-05-16T11:01:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.429800", + "Timestamp": "2024-05-16T11:01:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.424800", + "Timestamp": "2024-05-16T11:01:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.299800", + "Timestamp": "2024-05-16T11:01:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.151000", + "Timestamp": "2024-05-16T11:00:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.146000", + "Timestamp": "2024-05-16T11:00:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.021000", + "Timestamp": "2024-05-16T11:00:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.737400", + "Timestamp": "2024-05-16T11:00:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.732400", + "Timestamp": "2024-05-16T11:00:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.607400", + "Timestamp": "2024-05-16T11:00:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.793700", + "Timestamp": "2024-05-16T10:47:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.259700", + "Timestamp": "2024-05-16T10:47:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.254700", + "Timestamp": "2024-05-16T10:47:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.129700", + "Timestamp": "2024-05-16T10:47:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096400", + "Timestamp": "2024-05-16T10:47:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092700", + "Timestamp": "2024-05-16T10:47:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036400", + "Timestamp": "2024-05-16T10:47:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.185100", + "Timestamp": "2024-05-16T10:46:56.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.214400", + "Timestamp": "2024-05-16T10:46:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.209400", + "Timestamp": "2024-05-16T10:46:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.084400", + "Timestamp": "2024-05-16T10:46:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.921400", + "Timestamp": "2024-05-16T10:46:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.949000", + "Timestamp": "2024-05-16T10:46:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.882100", + "Timestamp": "2024-05-16T10:46:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.944000", + "Timestamp": "2024-05-16T10:46:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.877100", + "Timestamp": "2024-05-16T10:46:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.819000", + "Timestamp": "2024-05-16T10:46:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.752100", + "Timestamp": "2024-05-16T10:46:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.448200", + "Timestamp": "2024-05-16T10:46:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.933700", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.928700", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.803700", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.334300", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.329300", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.204300", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.276800", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.271800", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146800", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.859500", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.854500", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.729500", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.539500", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.446900", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.441900", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.316900", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.892200", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.809100", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.804100", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.679100", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.923700", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.936100", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.186100", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.181100", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.056100", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160000", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156000", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100000", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.280000", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.275000", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150000", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.595900", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.565900", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.465900", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.442400", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.446800", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.441800", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.316800", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.485600", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169300", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165300", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.412800", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.935200", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.779700", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.774700", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.649700", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.717900", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.712900", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.587900", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.969100", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.964100", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.839100", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.781200", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.454700", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.449700", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.324700", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.096800", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137500", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133500", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077500", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.613500", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.583500", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.483500", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.042300", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.689600", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.684600", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.559600", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.928200", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.923200", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.798200", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130300", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170300", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070300", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.427000", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.422000", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.297000", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.806500", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.905300", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.801500", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.900300", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.676500", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.775300", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.463500", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.458500", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.333500", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.047900", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.042900", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.917900", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.077000", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.072000", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.947000", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.006500", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.287100", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.282100", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157100", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.908400", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.610500", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.605500", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.480500", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.913600", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.418800", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.413800", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.288800", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.859100", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.854100", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.729100", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.060600", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.055600", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.930600", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.085800", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299600", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294600", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169600", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.569600", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.564600", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.439600", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117500", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113500", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057500", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.078900", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.073900", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.948900", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.907100", + "Timestamp": "2024-05-16T10:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.902100", + "Timestamp": "2024-05-16T10:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.777100", + "Timestamp": "2024-05-16T10:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.869800", + "Timestamp": "2024-05-16T10:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.864800", + "Timestamp": "2024-05-16T10:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.739800", + "Timestamp": "2024-05-16T10:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.507200", + "Timestamp": "2024-05-16T10:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.485700", + "Timestamp": "2024-05-16T10:46:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.480700", + "Timestamp": "2024-05-16T10:46:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.355700", + "Timestamp": "2024-05-16T10:46:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.812800", + "Timestamp": "2024-05-16T10:46:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219200", + "Timestamp": "2024-05-16T10:46:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.854900", + "Timestamp": "2024-05-16T10:46:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.295400", + "Timestamp": "2024-05-16T10:46:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.335400", + "Timestamp": "2024-05-16T10:46:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235400", + "Timestamp": "2024-05-16T10:46:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.742300", + "Timestamp": "2024-05-16T10:46:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.737300", + "Timestamp": "2024-05-16T10:46:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.612300", + "Timestamp": "2024-05-16T10:46:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.775600", + "Timestamp": "2024-05-16T10:46:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.770600", + "Timestamp": "2024-05-16T10:46:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.645600", + "Timestamp": "2024-05-16T10:46:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.480700", + "Timestamp": "2024-05-16T10:46:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.510800", + "Timestamp": "2024-05-16T10:46:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.480800", + "Timestamp": "2024-05-16T10:46:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.380800", + "Timestamp": "2024-05-16T10:46:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.878300", + "Timestamp": "2024-05-16T10:46:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.380500", + "Timestamp": "2024-05-16T10:46:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.602600", + "Timestamp": "2024-05-16T10:46:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.326000", + "Timestamp": "2024-05-16T10:46:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.321000", + "Timestamp": "2024-05-16T10:46:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196000", + "Timestamp": "2024-05-16T10:46:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.836700", + "Timestamp": "2024-05-16T10:45:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164900", + "Timestamp": "2024-05-16T10:45:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160900", + "Timestamp": "2024-05-16T10:45:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T10:45:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.876500", + "Timestamp": "2024-05-16T10:32:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.628600", + "Timestamp": "2024-05-16T10:31:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.623600", + "Timestamp": "2024-05-16T10:31:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.498600", + "Timestamp": "2024-05-16T10:31:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.252700", + "Timestamp": "2024-05-16T10:31:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.128900", + "Timestamp": "2024-05-16T10:31:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087600", + "Timestamp": "2024-05-16T10:31:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083900", + "Timestamp": "2024-05-16T10:31:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027600", + "Timestamp": "2024-05-16T10:31:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.306000", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.869600", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.050600", + "Timestamp": "2024-05-16T10:31:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.183100", + "Timestamp": "2024-05-16T10:31:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.045600", + "Timestamp": "2024-05-16T10:31:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.178100", + "Timestamp": "2024-05-16T10:31:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.920600", + "Timestamp": "2024-05-16T10:31:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.053100", + "Timestamp": "2024-05-16T10:31:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.323100", + "Timestamp": "2024-05-16T10:31:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.318100", + "Timestamp": "2024-05-16T10:31:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.193100", + "Timestamp": "2024-05-16T10:31:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.214700", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.209700", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084700", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.246900", + "Timestamp": "2024-05-16T10:31:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.858500", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.078700", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.658800", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.653800", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.528800", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.680700", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.675700", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.550700", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.495200", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.490200", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.365200", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133100", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129400", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073100", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.695400", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.665400", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.565400", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.357600", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.905100", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.885100", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.032600", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.027600", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.902600", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.817500", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.812500", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.687500", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212000", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.636300", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.631300", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.506300", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.733300", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.728300", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.603300", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.574000", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.416100", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.411100", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.286100", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173100", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169400", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113100", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.041600", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.618900", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.588900", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.488900", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.115900", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.110900", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.985900", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.986900", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093500", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089500", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033500", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.473900", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.263700", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258700", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133700", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.965300", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.935300", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.835300", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.064700", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.059700", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.934700", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.397600", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.939500", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.595100", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.590100", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.465100", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140600", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136600", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080600", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.421900", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.391900", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.291900", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.818900", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.813900", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.688900", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.471200", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.466200", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.341200", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.631200", + "Timestamp": "2024-05-16T10:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168000", + "Timestamp": "2024-05-16T10:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163000", + "Timestamp": "2024-05-16T10:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038000", + "Timestamp": "2024-05-16T10:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.360100", + "Timestamp": "2024-05-16T10:31:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324500", + "Timestamp": "2024-05-16T10:31:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319500", + "Timestamp": "2024-05-16T10:31:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194500", + "Timestamp": "2024-05-16T10:31:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.760900", + "Timestamp": "2024-05-16T10:31:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.730900", + "Timestamp": "2024-05-16T10:31:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.630900", + "Timestamp": "2024-05-16T10:31:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160300", + "Timestamp": "2024-05-16T10:31:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156300", + "Timestamp": "2024-05-16T10:31:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-16T10:31:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.852400", + "Timestamp": "2024-05-16T10:31:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T10:31:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-16T10:31:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048200", + "Timestamp": "2024-05-16T10:31:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.413900", + "Timestamp": "2024-05-16T10:31:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231300", + "Timestamp": "2024-05-16T10:31:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.850900", + "Timestamp": "2024-05-16T10:31:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.845900", + "Timestamp": "2024-05-16T10:31:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.720900", + "Timestamp": "2024-05-16T10:31:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.850500", + "Timestamp": "2024-05-16T10:31:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.063500", + "Timestamp": "2024-05-16T10:30:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.342100", + "Timestamp": "2024-05-16T10:30:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.922700", + "Timestamp": "2024-05-16T10:30:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.119700", + "Timestamp": "2024-05-16T10:30:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.089700", + "Timestamp": "2024-05-16T10:30:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.989700", + "Timestamp": "2024-05-16T10:30:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.757500", + "Timestamp": "2024-05-16T10:30:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.800800", + "Timestamp": "2024-05-16T10:30:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.212800", + "Timestamp": "2024-05-16T10:30:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.207800", + "Timestamp": "2024-05-16T10:30:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.082800", + "Timestamp": "2024-05-16T10:30:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.474800", + "Timestamp": "2024-05-16T10:17:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.469800", + "Timestamp": "2024-05-16T10:17:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.344800", + "Timestamp": "2024-05-16T10:17:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T10:17:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.313600", + "Timestamp": "2024-05-16T10:17:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.067300", + "Timestamp": "2024-05-16T10:17:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102000", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098300", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042000", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.962500", + "Timestamp": "2024-05-16T10:16:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.710000", + "Timestamp": "2024-05-16T10:16:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.908900", + "Timestamp": "2024-05-16T10:16:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078900", + "Timestamp": "2024-05-16T10:16:51.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118900", + "Timestamp": "2024-05-16T10:16:51.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018900", + "Timestamp": "2024-05-16T10:16:51.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.888000", + "Timestamp": "2024-05-16T10:16:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.481100", + "Timestamp": "2024-05-16T10:16:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.476100", + "Timestamp": "2024-05-16T10:16:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.351100", + "Timestamp": "2024-05-16T10:16:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142200", + "Timestamp": "2024-05-16T10:16:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138200", + "Timestamp": "2024-05-16T10:16:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082200", + "Timestamp": "2024-05-16T10:16:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.691300", + "Timestamp": "2024-05-16T10:16:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.686300", + "Timestamp": "2024-05-16T10:16:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.561300", + "Timestamp": "2024-05-16T10:16:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.542300", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.537300", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.412300", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076500", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.072800", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016500", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.623200", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.618200", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.493200", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083900", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080200", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023900", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.790200", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.370800", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.365800", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.240800", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.743000", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.713000", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.613000", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.521000", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.422900", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.345300", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.315300", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.215300", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.869200", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.864200", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.739200", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.959600", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.471800", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.466800", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.341800", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162000", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158000", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102000", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136800", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133100", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076800", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.036900", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.594000", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.589000", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.464000", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147300", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144300", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087300", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.077600", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.878800", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.873800", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.748800", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.537600", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130800", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127100", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070800", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.267000", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262000", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137000", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.533900", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.528900", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.403900", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.792100", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.787100", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.662100", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.949000", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.110900", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.080900", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.980900", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.737300", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.526200", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.521200", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.396200", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.482100", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.533300", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.528300", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.403300", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.189800", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.934500", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.929500", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.804500", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.091200", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.061200", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.961200", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.485900", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.328900", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323900", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.198900", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.081600", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.051600", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.951600", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.081900", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.076900", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.951900", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109100", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105100", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049100", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143700", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140000", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083700", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.056500", + "Timestamp": "2024-05-16T10:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.787300", + "Timestamp": "2024-05-16T10:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.757300", + "Timestamp": "2024-05-16T10:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.657300", + "Timestamp": "2024-05-16T10:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.860700", + "Timestamp": "2024-05-16T10:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220100", + "Timestamp": "2024-05-16T10:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.069300", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.064300", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.939300", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113800", + "Timestamp": "2024-05-16T10:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147600", + "Timestamp": "2024-05-16T10:16:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143900", + "Timestamp": "2024-05-16T10:16:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087600", + "Timestamp": "2024-05-16T10:16:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140400", + "Timestamp": "2024-05-16T10:16:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136400", + "Timestamp": "2024-05-16T10:16:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080400", + "Timestamp": "2024-05-16T10:16:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.424700", + "Timestamp": "2024-05-16T10:16:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.419700", + "Timestamp": "2024-05-16T10:16:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.294700", + "Timestamp": "2024-05-16T10:16:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.338600", + "Timestamp": "2024-05-16T10:16:09.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.333600", + "Timestamp": "2024-05-16T10:16:09.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.208600", + "Timestamp": "2024-05-16T10:16:09.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.284900", + "Timestamp": "2024-05-16T10:16:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.279900", + "Timestamp": "2024-05-16T10:16:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.154900", + "Timestamp": "2024-05-16T10:16:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.813100", + "Timestamp": "2024-05-16T10:16:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.252200", + "Timestamp": "2024-05-16T10:16:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.247200", + "Timestamp": "2024-05-16T10:16:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.122200", + "Timestamp": "2024-05-16T10:16:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.909200", + "Timestamp": "2024-05-16T10:16:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.314100", + "Timestamp": "2024-05-16T10:16:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.631500", + "Timestamp": "2024-05-16T10:16:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.601500", + "Timestamp": "2024-05-16T10:16:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.501500", + "Timestamp": "2024-05-16T10:16:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.952600", + "Timestamp": "2024-05-16T10:15:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.597200", + "Timestamp": "2024-05-16T10:14:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.597200", + "Timestamp": "2024-05-16T10:14:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.597200", + "Timestamp": "2024-05-16T10:14:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.592200", + "Timestamp": "2024-05-16T10:14:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.592200", + "Timestamp": "2024-05-16T10:14:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.592200", + "Timestamp": "2024-05-16T10:14:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.467200", + "Timestamp": "2024-05-16T10:14:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.467200", + "Timestamp": "2024-05-16T10:14:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.467200", + "Timestamp": "2024-05-16T10:14:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.355200", + "Timestamp": "2024-05-16T10:14:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.355200", + "Timestamp": "2024-05-16T10:14:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.355200", + "Timestamp": "2024-05-16T10:14:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063800", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003800", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003800", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.377800", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.372800", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.247800", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.550800", + "Timestamp": "2024-05-16T10:02:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.545800", + "Timestamp": "2024-05-16T10:02:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.420800", + "Timestamp": "2024-05-16T10:02:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.402200", + "Timestamp": "2024-05-16T10:02:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.397200", + "Timestamp": "2024-05-16T10:02:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.272200", + "Timestamp": "2024-05-16T10:02:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137700", + "Timestamp": "2024-05-16T10:02:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134000", + "Timestamp": "2024-05-16T10:02:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077700", + "Timestamp": "2024-05-16T10:02:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.594200", + "Timestamp": "2024-05-16T10:02:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299900", + "Timestamp": "2024-05-16T10:02:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.295100", + "Timestamp": "2024-05-16T10:02:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307100", + "Timestamp": "2024-05-16T10:02:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294900", + "Timestamp": "2024-05-16T10:02:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.290100", + "Timestamp": "2024-05-16T10:02:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302100", + "Timestamp": "2024-05-16T10:02:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169900", + "Timestamp": "2024-05-16T10:02:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165100", + "Timestamp": "2024-05-16T10:02:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177100", + "Timestamp": "2024-05-16T10:02:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423600", + "Timestamp": "2024-05-16T10:02:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.632300", + "Timestamp": "2024-05-16T10:02:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.679500", + "Timestamp": "2024-05-16T10:01:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.851500", + "Timestamp": "2024-05-16T10:01:47.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.428600", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.254000", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161800", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157800", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101800", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.546000", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.541000", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.416000", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.971400", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.966400", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.841400", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.323500", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.318500", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.193500", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.829200", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.255900", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.225900", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125900", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.410200", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.405200", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.280200", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.857100", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.852100", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.727100", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.677900", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.672900", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.547900", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.463100", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.452500", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.959300", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.167000", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.224700", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.137000", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.194700", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.037000", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.094700", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.874600", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.869600", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.744600", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.438700", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.792400", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.787400", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.662400", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.332200", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.327200", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.202200", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.859600", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.854600", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.729600", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.869500", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.864500", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.739500", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.413400", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.692000", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.662000", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.562000", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.537100", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.598600", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.568600", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.468600", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136500", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036500", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.059700", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.029700", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.929700", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.789700", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.593400", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.377900", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.438300", + "Timestamp": "2024-05-16T10:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.379700", + "Timestamp": "2024-05-16T10:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.374700", + "Timestamp": "2024-05-16T10:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.249700", + "Timestamp": "2024-05-16T10:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T10:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112900", + "Timestamp": "2024-05-16T10:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056600", + "Timestamp": "2024-05-16T10:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.348200", + "Timestamp": "2024-05-16T10:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.343200", + "Timestamp": "2024-05-16T10:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.218200", + "Timestamp": "2024-05-16T10:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.974700", + "Timestamp": "2024-05-16T10:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.969700", + "Timestamp": "2024-05-16T10:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.844700", + "Timestamp": "2024-05-16T10:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.774300", + "Timestamp": "2024-05-16T10:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.730700", + "Timestamp": "2024-05-16T10:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.247100", + "Timestamp": "2024-05-16T10:01:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.856500", + "Timestamp": "2024-05-16T10:01:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.369200", + "Timestamp": "2024-05-16T10:01:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.364200", + "Timestamp": "2024-05-16T10:01:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.239200", + "Timestamp": "2024-05-16T10:01:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.745100", + "Timestamp": "2024-05-16T10:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.957300", + "Timestamp": "2024-05-16T10:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.335800", + "Timestamp": "2024-05-16T10:01:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.835000", + "Timestamp": "2024-05-16T10:01:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.331700", + "Timestamp": "2024-05-16T10:01:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.326700", + "Timestamp": "2024-05-16T10:01:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.201700", + "Timestamp": "2024-05-16T10:01:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.428600", + "Timestamp": "2024-05-16T10:01:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.886000", + "Timestamp": "2024-05-16T10:00:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.881000", + "Timestamp": "2024-05-16T10:00:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.756000", + "Timestamp": "2024-05-16T10:00:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.204200", + "Timestamp": "2024-05-16T10:00:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.244200", + "Timestamp": "2024-05-16T10:00:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144200", + "Timestamp": "2024-05-16T10:00:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.102800", + "Timestamp": "2024-05-16T09:54:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.102800", + "Timestamp": "2024-05-16T09:54:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077600", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073900", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017600", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.443700", + "Timestamp": "2024-05-16T09:47:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.906400", + "Timestamp": "2024-05-16T09:47:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.438700", + "Timestamp": "2024-05-16T09:47:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.901400", + "Timestamp": "2024-05-16T09:47:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.313700", + "Timestamp": "2024-05-16T09:47:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.776400", + "Timestamp": "2024-05-16T09:47:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.047700", + "Timestamp": "2024-05-16T09:47:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.042700", + "Timestamp": "2024-05-16T09:47:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.917700", + "Timestamp": "2024-05-16T09:47:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.860400", + "Timestamp": "2024-05-16T09:47:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.328800", + "Timestamp": "2024-05-16T09:46:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.323800", + "Timestamp": "2024-05-16T09:46:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.198800", + "Timestamp": "2024-05-16T09:46:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.692000", + "Timestamp": "2024-05-16T09:46:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.687000", + "Timestamp": "2024-05-16T09:46:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.562000", + "Timestamp": "2024-05-16T09:46:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.001600", + "Timestamp": "2024-05-16T09:46:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.971600", + "Timestamp": "2024-05-16T09:46:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.871600", + "Timestamp": "2024-05-16T09:46:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.757000", + "Timestamp": "2024-05-16T09:46:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.752000", + "Timestamp": "2024-05-16T09:46:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.627000", + "Timestamp": "2024-05-16T09:46:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.633900", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.628900", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.503900", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213100", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.266000", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.329400", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.324400", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.199400", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.981500", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.561900", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.531900", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.431900", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.646400", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.331100", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.326100", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.201100", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.557300", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.552300", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.427300", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.929200", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.924200", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.799200", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.363000", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.358000", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.233000", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.833800", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154200", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150500", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094200", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.355300", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.350300", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.225300", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.533700", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.528700", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.403700", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.849000", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.909400", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.904400", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.779400", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.562300", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.557300", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.432300", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.245400", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.240400", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115400", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.909200", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.904200", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.779200", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145400", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141700", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085400", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.022100", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.992100", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.892100", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.130400", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.125400", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.000400", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.221600", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.261500", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.216600", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.256500", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.091600", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.131500", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148300", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144600", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088300", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.344500", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.339500", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.214500", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.289700", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.482900", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.477900", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.352900", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.688700", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.683700", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.558700", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.415600", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.410600", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.285600", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.479700", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.474700", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.349700", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.186800", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "8.989000", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.840900", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "8.959000", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.810900", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "8.859000", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.710900", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.549100", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.544100", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.419100", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.836600", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218700", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112500", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108800", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052500", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.568700", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.563700", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.438700", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.951100", + "Timestamp": "2024-05-16T09:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.003700", + "Timestamp": "2024-05-16T09:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.987800", + "Timestamp": "2024-05-16T09:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119600", + "Timestamp": "2024-05-16T09:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115900", + "Timestamp": "2024-05-16T09:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059600", + "Timestamp": "2024-05-16T09:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.828800", + "Timestamp": "2024-05-16T09:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.452700", + "Timestamp": "2024-05-16T09:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.447700", + "Timestamp": "2024-05-16T09:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.322700", + "Timestamp": "2024-05-16T09:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.920100", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.890100", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.790100", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.333300", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.328300", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.203300", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.395400", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.390400", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.265400", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.990600", + "Timestamp": "2024-05-16T09:46:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.985600", + "Timestamp": "2024-05-16T09:46:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.860600", + "Timestamp": "2024-05-16T09:46:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.631000", + "Timestamp": "2024-05-16T09:46:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273700", + "Timestamp": "2024-05-16T09:46:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268700", + "Timestamp": "2024-05-16T09:46:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143700", + "Timestamp": "2024-05-16T09:46:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.426600", + "Timestamp": "2024-05-16T09:46:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.396600", + "Timestamp": "2024-05-16T09:46:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.296600", + "Timestamp": "2024-05-16T09:46:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.258100", + "Timestamp": "2024-05-16T09:46:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.253100", + "Timestamp": "2024-05-16T09:46:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128100", + "Timestamp": "2024-05-16T09:46:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.594600", + "Timestamp": "2024-05-16T09:46:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.589600", + "Timestamp": "2024-05-16T09:46:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.464600", + "Timestamp": "2024-05-16T09:46:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220100", + "Timestamp": "2024-05-16T09:46:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.425300", + "Timestamp": "2024-05-16T09:46:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.420300", + "Timestamp": "2024-05-16T09:46:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.295300", + "Timestamp": "2024-05-16T09:46:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T09:46:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.838300", + "Timestamp": "2024-05-16T09:46:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.878600", + "Timestamp": "2024-05-16T09:45:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.873600", + "Timestamp": "2024-05-16T09:45:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.748600", + "Timestamp": "2024-05-16T09:45:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.010600", + "Timestamp": "2024-05-16T09:32:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.005600", + "Timestamp": "2024-05-16T09:32:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.880600", + "Timestamp": "2024-05-16T09:32:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.418200", + "Timestamp": "2024-05-16T09:31:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.413200", + "Timestamp": "2024-05-16T09:31:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.288200", + "Timestamp": "2024-05-16T09:31:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.217600", + "Timestamp": "2024-05-16T09:31:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.212600", + "Timestamp": "2024-05-16T09:31:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.087600", + "Timestamp": "2024-05-16T09:31:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.199100", + "Timestamp": "2024-05-16T09:31:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.194100", + "Timestamp": "2024-05-16T09:31:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.069100", + "Timestamp": "2024-05-16T09:31:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136400", + "Timestamp": "2024-05-16T09:31:51.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132700", + "Timestamp": "2024-05-16T09:31:51.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076400", + "Timestamp": "2024-05-16T09:31:51.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.669400", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.926600", + "Timestamp": "2024-05-16T09:31:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.827000", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.539400", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.509400", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.409400", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.531000", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.501000", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.401000", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.060500", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.030500", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.930500", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.561400", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.556400", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.431400", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.891900", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.192800", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.187800", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.062800", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.260800", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.255800", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130800", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.712600", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.707600", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.582600", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.704900", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.699900", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.574900", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109000", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.505600", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.475600", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.375600", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229800", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.283000", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.902900", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.897900", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.772900", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.014500", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.009500", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.884500", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090900", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087200", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030900", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.002000", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.571900", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.566900", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.441900", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.461000", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.431000", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.331000", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.630700", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.625700", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.500700", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.519400", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.514400", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.389400", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.785500", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.755500", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.655500", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.115400", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.065100", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.060100", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.935100", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.795200", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.845500", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.467100", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.462100", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.337100", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.938500", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.933500", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.808500", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.983700", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.978700", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.853700", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.719100", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.714100", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.589100", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139300", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135600", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079300", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.904300", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.874300", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.774300", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.614300", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.609300", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.484300", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.552000", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.522000", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.422000", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.471400", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.466400", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.341400", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.261700", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.256700", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.131700", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.287400", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.032400", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.043600", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.038600", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.913600", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.959700", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.929700", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.829700", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132800", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129100", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072800", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.479700", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.715800", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053000", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.918300", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.913300", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.788300", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.550200", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090000", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086300", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030000", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.378700", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.373700", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.248700", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.729500", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078800", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075100", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018800", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.544800", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.514800", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.414800", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.321600", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.316600", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.191600", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050200", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149300", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049300", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.534900", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.467800", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090100", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086100", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088600", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030100", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032600", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.202000", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198000", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142000", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.534800", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.691800", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.686800", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.561800", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.940600", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.238500", + "Timestamp": "2024-05-16T09:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.205200", + "Timestamp": "2024-05-16T09:31:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.147400", + "Timestamp": "2024-05-16T09:31:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.117400", + "Timestamp": "2024-05-16T09:31:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.017400", + "Timestamp": "2024-05-16T09:31:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.182200", + "Timestamp": "2024-05-16T09:31:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.178200", + "Timestamp": "2024-05-16T09:31:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122200", + "Timestamp": "2024-05-16T09:31:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.070200", + "Timestamp": "2024-05-16T09:31:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.408000", + "Timestamp": "2024-05-16T09:31:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.378000", + "Timestamp": "2024-05-16T09:31:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.278000", + "Timestamp": "2024-05-16T09:31:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.817900", + "Timestamp": "2024-05-16T09:31:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.812900", + "Timestamp": "2024-05-16T09:31:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.687900", + "Timestamp": "2024-05-16T09:31:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.717900", + "Timestamp": "2024-05-16T09:31:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.352000", + "Timestamp": "2024-05-16T09:31:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.322000", + "Timestamp": "2024-05-16T09:31:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.222000", + "Timestamp": "2024-05-16T09:31:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.812900", + "Timestamp": "2024-05-16T09:31:09.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.807900", + "Timestamp": "2024-05-16T09:31:09.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.682900", + "Timestamp": "2024-05-16T09:31:09.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.287100", + "Timestamp": "2024-05-16T09:31:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.327100", + "Timestamp": "2024-05-16T09:31:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.227100", + "Timestamp": "2024-05-16T09:31:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294900", + "Timestamp": "2024-05-16T09:31:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289900", + "Timestamp": "2024-05-16T09:31:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164900", + "Timestamp": "2024-05-16T09:31:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.232000", + "Timestamp": "2024-05-16T09:31:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.059300", + "Timestamp": "2024-05-16T09:31:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.029300", + "Timestamp": "2024-05-16T09:31:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.929300", + "Timestamp": "2024-05-16T09:31:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088200", + "Timestamp": "2024-05-16T09:31:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084500", + "Timestamp": "2024-05-16T09:31:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028200", + "Timestamp": "2024-05-16T09:31:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.079800", + "Timestamp": "2024-05-16T09:31:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.552000", + "Timestamp": "2024-05-16T09:31:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.522000", + "Timestamp": "2024-05-16T09:31:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.422000", + "Timestamp": "2024-05-16T09:31:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.515700", + "Timestamp": "2024-05-16T09:31:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.460300", + "Timestamp": "2024-05-16T09:31:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.527000", + "Timestamp": "2024-05-16T09:30:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165800", + "Timestamp": "2024-05-16T09:30:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.205800", + "Timestamp": "2024-05-16T09:30:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T09:30:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.962600", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.622400", + "Timestamp": "2024-05-16T09:17:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.269100", + "Timestamp": "2024-05-16T09:17:09.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.264100", + "Timestamp": "2024-05-16T09:17:09.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139100", + "Timestamp": "2024-05-16T09:17:09.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.884200", + "Timestamp": "2024-05-16T09:16:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.903600", + "Timestamp": "2024-05-16T09:16:52.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072000", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043000", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012000", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.818900", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.813900", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.688900", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.078100", + "Timestamp": "2024-05-16T09:16:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.560200", + "Timestamp": "2024-05-16T09:16:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.530200", + "Timestamp": "2024-05-16T09:16:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.430200", + "Timestamp": "2024-05-16T09:16:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.201200", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.197500", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141200", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.290700", + "Timestamp": "2024-05-16T09:16:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.285700", + "Timestamp": "2024-05-16T09:16:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.160700", + "Timestamp": "2024-05-16T09:16:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.838500", + "Timestamp": "2024-05-16T09:16:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.419000", + "Timestamp": "2024-05-16T09:16:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.042100", + "Timestamp": "2024-05-16T09:16:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.197700", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.192700", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.067700", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.704200", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.699200", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.574200", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.730800", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.700800", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.600800", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.245900", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.240900", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115900", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.547600", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.166400", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.161400", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.036400", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.788900", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.783900", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.658900", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097900", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094200", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037900", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.490900", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.485900", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.360900", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.470200", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.347100", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106000", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136800", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132800", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076800", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.284900", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.254900", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.154900", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093200", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037200", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.048800", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.043800", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.918800", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161900", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.201900", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101900", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.437100", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.407100", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.307100", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.678300", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.648300", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.548300", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.704900", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.699900", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.574900", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.010000", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.001500", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.996500", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.871500", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.421800", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.416800", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.291800", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116700", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.512500", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.507500", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.382500", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.320800", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.315800", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190800", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.874000", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.833000", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.828000", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.703000", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140700", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137000", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080700", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.542800", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.537800", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.412800", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.747900", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.742900", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.617900", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092800", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036500", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.726300", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.696300", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.596300", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135900", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132200", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075900", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102700", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046400", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.388600", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.383600", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.258600", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.723800", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.718800", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.593800", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.859900", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.804500", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.799500", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.674500", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432300", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.835000", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139700", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136000", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079700", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219500", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.196000", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.191000", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.066000", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.188700", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185000", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128700", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.421300", + "Timestamp": "2024-05-16T09:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.416300", + "Timestamp": "2024-05-16T09:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.291300", + "Timestamp": "2024-05-16T09:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.435000", + "Timestamp": "2024-05-16T09:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.430000", + "Timestamp": "2024-05-16T09:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.305000", + "Timestamp": "2024-05-16T09:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.913000", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.883000", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.783000", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.831400", + "Timestamp": "2024-05-16T09:16:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.187400", + "Timestamp": "2024-05-16T09:16:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183400", + "Timestamp": "2024-05-16T09:16:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127400", + "Timestamp": "2024-05-16T09:16:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "9.999500", + "Timestamp": "2024-05-16T09:16:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.659500", + "Timestamp": "2024-05-16T09:16:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "9.994500", + "Timestamp": "2024-05-16T09:16:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.654500", + "Timestamp": "2024-05-16T09:16:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "9.869500", + "Timestamp": "2024-05-16T09:16:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.529500", + "Timestamp": "2024-05-16T09:16:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.120700", + "Timestamp": "2024-05-16T09:16:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.370600", + "Timestamp": "2024-05-16T09:16:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.365600", + "Timestamp": "2024-05-16T09:16:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.240600", + "Timestamp": "2024-05-16T09:16:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.123000", + "Timestamp": "2024-05-16T09:16:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.118000", + "Timestamp": "2024-05-16T09:16:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.993000", + "Timestamp": "2024-05-16T09:16:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.048900", + "Timestamp": "2024-05-16T09:16:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.554100", + "Timestamp": "2024-05-16T09:16:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.524100", + "Timestamp": "2024-05-16T09:16:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.424100", + "Timestamp": "2024-05-16T09:16:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.556200", + "Timestamp": "2024-05-16T09:16:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.595400", + "Timestamp": "2024-05-16T09:16:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.933300", + "Timestamp": "2024-05-16T09:16:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.928300", + "Timestamp": "2024-05-16T09:16:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.803300", + "Timestamp": "2024-05-16T09:16:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.700200", + "Timestamp": "2024-05-16T09:15:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.695200", + "Timestamp": "2024-05-16T09:15:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.570200", + "Timestamp": "2024-05-16T09:15:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120100", + "Timestamp": "2024-05-16T09:15:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116100", + "Timestamp": "2024-05-16T09:15:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060100", + "Timestamp": "2024-05-16T09:15:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.516400", + "Timestamp": "2024-05-16T09:14:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.516400", + "Timestamp": "2024-05-16T09:14:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.516400", + "Timestamp": "2024-05-16T09:14:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.230400", + "Timestamp": "2024-05-16T09:14:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.225400", + "Timestamp": "2024-05-16T09:14:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.100400", + "Timestamp": "2024-05-16T09:14:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.022800", + "Timestamp": "2024-05-16T09:02:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.017800", + "Timestamp": "2024-05-16T09:02:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.892800", + "Timestamp": "2024-05-16T09:02:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.930500", + "Timestamp": "2024-05-16T09:02:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.925500", + "Timestamp": "2024-05-16T09:02:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.800500", + "Timestamp": "2024-05-16T09:02:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.667900", + "Timestamp": "2024-05-16T09:02:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.640600", + "Timestamp": "2024-05-16T09:02:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.257000", + "Timestamp": "2024-05-16T09:02:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.252000", + "Timestamp": "2024-05-16T09:02:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.127000", + "Timestamp": "2024-05-16T09:02:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136700", + "Timestamp": "2024-05-16T09:02:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132700", + "Timestamp": "2024-05-16T09:02:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076700", + "Timestamp": "2024-05-16T09:02:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.215800", + "Timestamp": "2024-05-16T09:02:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.211800", + "Timestamp": "2024-05-16T09:02:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.155800", + "Timestamp": "2024-05-16T09:02:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078900", + "Timestamp": "2024-05-16T09:01:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075200", + "Timestamp": "2024-05-16T09:01:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018900", + "Timestamp": "2024-05-16T09:01:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.459400", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.491700", + "Timestamp": "2024-05-16T09:01:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.895100", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.890100", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.765100", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214400", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.210800", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.207100", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150800", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.835200", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.830200", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.705200", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.404600", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.399600", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.274600", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.717800", + "Timestamp": "2024-05-16T09:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.662700", + "Timestamp": "2024-05-16T09:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.695500", + "Timestamp": "2024-05-16T09:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.166000", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.421800", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.161000", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.416800", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.036000", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.291800", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.079500", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.074500", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.949500", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.177300", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.172300", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.047300", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096400", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092700", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036400", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.641300", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.636300", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.511300", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.714800", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.709800", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.584800", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.340000", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.404700", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.599500", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.594500", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.469500", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.243100", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.238100", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.113100", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140500", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136800", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080500", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.561300", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.556300", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.431300", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.439600", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.409600", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.309600", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.406700", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.089500", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.505800", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.500800", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.375800", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.055800", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.050800", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.925800", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.629700", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.624700", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.499700", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.276800", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.246800", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146800", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.642300", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093900", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133900", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033900", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.280100", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.275100", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150100", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.868700", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212400", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104100", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144100", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044100", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.815600", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.809700", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.810600", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.804700", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.685600", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.679700", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.503600", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226100", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.111000", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.081000", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.981000", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.609500", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.545600", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.447600", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.417600", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.317600", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.624700", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.839600", + "Timestamp": "2024-05-16T09:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.204600", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.199600", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074600", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.218300", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162300", + "Timestamp": "2024-05-16T09:01:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158300", + "Timestamp": "2024-05-16T09:01:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102300", + "Timestamp": "2024-05-16T09:01:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.822900", + "Timestamp": "2024-05-16T09:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.817900", + "Timestamp": "2024-05-16T09:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.692900", + "Timestamp": "2024-05-16T09:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.991500", + "Timestamp": "2024-05-16T09:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.961500", + "Timestamp": "2024-05-16T09:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.861500", + "Timestamp": "2024-05-16T09:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223200", + "Timestamp": "2024-05-16T09:01:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.746200", + "Timestamp": "2024-05-16T09:01:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.741200", + "Timestamp": "2024-05-16T09:01:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.616200", + "Timestamp": "2024-05-16T09:01:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221500", + "Timestamp": "2024-05-16T09:01:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.221500", + "Timestamp": "2024-05-16T09:01:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.621700", + "Timestamp": "2024-05-16T09:01:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.616700", + "Timestamp": "2024-05-16T09:01:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.491700", + "Timestamp": "2024-05-16T09:01:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.931300", + "Timestamp": "2024-05-16T09:01:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.901300", + "Timestamp": "2024-05-16T09:01:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.801300", + "Timestamp": "2024-05-16T09:01:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.646000", + "Timestamp": "2024-05-16T09:01:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.290200", + "Timestamp": "2024-05-16T09:01:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.285200", + "Timestamp": "2024-05-16T09:01:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.160200", + "Timestamp": "2024-05-16T09:01:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.830400", + "Timestamp": "2024-05-16T09:01:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.825400", + "Timestamp": "2024-05-16T09:01:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.700400", + "Timestamp": "2024-05-16T09:01:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124800", + "Timestamp": "2024-05-16T08:47:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.547700", + "Timestamp": "2024-05-16T08:47:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.635000", + "Timestamp": "2024-05-16T08:47:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.632800", + "Timestamp": "2024-05-16T08:47:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137300", + "Timestamp": "2024-05-16T08:47:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133600", + "Timestamp": "2024-05-16T08:47:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077300", + "Timestamp": "2024-05-16T08:47:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221000", + "Timestamp": "2024-05-16T08:47:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.824100", + "Timestamp": "2024-05-16T08:47:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.819100", + "Timestamp": "2024-05-16T08:47:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.694100", + "Timestamp": "2024-05-16T08:47:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.322700", + "Timestamp": "2024-05-16T08:47:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.317700", + "Timestamp": "2024-05-16T08:47:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.192700", + "Timestamp": "2024-05-16T08:47:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.834900", + "Timestamp": "2024-05-16T08:47:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271100", + "Timestamp": "2024-05-16T08:46:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266100", + "Timestamp": "2024-05-16T08:46:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141100", + "Timestamp": "2024-05-16T08:46:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.638800", + "Timestamp": "2024-05-16T08:46:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.633800", + "Timestamp": "2024-05-16T08:46:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.508800", + "Timestamp": "2024-05-16T08:46:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.707500", + "Timestamp": "2024-05-16T08:46:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.702500", + "Timestamp": "2024-05-16T08:46:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.577500", + "Timestamp": "2024-05-16T08:46:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.726600", + "Timestamp": "2024-05-16T08:46:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.696600", + "Timestamp": "2024-05-16T08:46:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.596600", + "Timestamp": "2024-05-16T08:46:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.006500", + "Timestamp": "2024-05-16T08:46:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.140600", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.135600", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.010600", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.343200", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.199900", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.194900", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.069900", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.412900", + "Timestamp": "2024-05-16T08:46:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.407900", + "Timestamp": "2024-05-16T08:46:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.282900", + "Timestamp": "2024-05-16T08:46:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.950400", + "Timestamp": "2024-05-16T08:46:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.920400", + "Timestamp": "2024-05-16T08:46:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.820400", + "Timestamp": "2024-05-16T08:46:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.717400", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.675100", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.056100", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.051100", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.926100", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.123200", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.118200", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.993200", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.346600", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.341600", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.216600", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.458000", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108300", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048300", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.794200", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.789200", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.664200", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.839400", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.890600", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.885600", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.760600", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306900", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301900", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176900", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.078300", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.073300", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.948300", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.410500", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.405500", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.280500", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.893300", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.888300", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.763300", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.784400", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.779400", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.654400", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.426100", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.891300", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.886300", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.761300", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.441800", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.436800", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.311800", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214100", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.440200", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.435200", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.310200", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.650800", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231600", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113400", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053400", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.313000", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.283000", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.183000", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158700", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154700", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098700", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.987900", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.982900", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.857900", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142000", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138300", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082000", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130300", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070300", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.939700", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.817500", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.934700", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.812500", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.809700", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.687500", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.493500", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.488500", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.363500", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "14.364200", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137100", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037100", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.886500", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.333500", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.303500", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.203500", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.822500", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.102300", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.097300", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.972300", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.268600", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.263600", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.138600", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.548000", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.710700", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.705700", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.580700", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.799600", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.794600", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.669600", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.766900", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.401500", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.489800", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.484800", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.359800", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.277400", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.247100", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418000", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.381400", + "Timestamp": "2024-05-16T08:46:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.376400", + "Timestamp": "2024-05-16T08:46:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.251400", + "Timestamp": "2024-05-16T08:46:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.789200", + "Timestamp": "2024-05-16T08:46:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.784200", + "Timestamp": "2024-05-16T08:46:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.659200", + "Timestamp": "2024-05-16T08:46:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.767500", + "Timestamp": "2024-05-16T08:46:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.762500", + "Timestamp": "2024-05-16T08:46:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.637500", + "Timestamp": "2024-05-16T08:46:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131300", + "Timestamp": "2024-05-16T08:46:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128300", + "Timestamp": "2024-05-16T08:46:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071300", + "Timestamp": "2024-05-16T08:46:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.660800", + "Timestamp": "2024-05-16T08:46:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.630800", + "Timestamp": "2024-05-16T08:46:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.530800", + "Timestamp": "2024-05-16T08:46:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271600", + "Timestamp": "2024-05-16T08:46:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.241600", + "Timestamp": "2024-05-16T08:46:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141600", + "Timestamp": "2024-05-16T08:46:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.640800", + "Timestamp": "2024-05-16T08:46:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.024600", + "Timestamp": "2024-05-16T08:46:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.308600", + "Timestamp": "2024-05-16T08:46:09.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.278600", + "Timestamp": "2024-05-16T08:46:09.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.178600", + "Timestamp": "2024-05-16T08:46:09.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.292100", + "Timestamp": "2024-05-16T08:46:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.287100", + "Timestamp": "2024-05-16T08:46:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162100", + "Timestamp": "2024-05-16T08:46:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.510100", + "Timestamp": "2024-05-16T08:46:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.505100", + "Timestamp": "2024-05-16T08:46:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.380100", + "Timestamp": "2024-05-16T08:46:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143300", + "Timestamp": "2024-05-16T08:46:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139600", + "Timestamp": "2024-05-16T08:46:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083300", + "Timestamp": "2024-05-16T08:46:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.503800", + "Timestamp": "2024-05-16T08:46:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.164400", + "Timestamp": "2024-05-16T08:45:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.159400", + "Timestamp": "2024-05-16T08:45:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.034400", + "Timestamp": "2024-05-16T08:45:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.289300", + "Timestamp": "2024-05-16T08:45:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.315100", + "Timestamp": "2024-05-16T08:45:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.284300", + "Timestamp": "2024-05-16T08:45:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.310100", + "Timestamp": "2024-05-16T08:45:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159300", + "Timestamp": "2024-05-16T08:45:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.185100", + "Timestamp": "2024-05-16T08:45:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.072600", + "Timestamp": "2024-05-16T08:31:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.969100", + "Timestamp": "2024-05-16T08:31:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.067600", + "Timestamp": "2024-05-16T08:31:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.964100", + "Timestamp": "2024-05-16T08:31:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.942600", + "Timestamp": "2024-05-16T08:31:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.839100", + "Timestamp": "2024-05-16T08:31:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.924300", + "Timestamp": "2024-05-16T08:31:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.919300", + "Timestamp": "2024-05-16T08:31:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.794300", + "Timestamp": "2024-05-16T08:31:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087200", + "Timestamp": "2024-05-16T08:31:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083500", + "Timestamp": "2024-05-16T08:31:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027200", + "Timestamp": "2024-05-16T08:31:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.719000", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.714000", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.589000", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.669700", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.664700", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.539700", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.707300", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.677300", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.577300", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.705600", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.700600", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.575600", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.285200", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.280200", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.155200", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.442600", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.458200", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.453200", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.328200", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.699900", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.694900", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.569900", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.592700", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.587700", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.462700", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.841500", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.868400", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.863400", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.738400", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.969100", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.964100", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.839100", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111800", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051800", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.245200", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.240200", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.115200", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.928100", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.923100", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.798100", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.014700", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.984700", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.884700", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136100", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132400", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076100", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047500", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.475400", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.470400", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.345400", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.756400", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.922000", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.711400", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.706400", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.581400", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.403300", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.266500", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.261500", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136500", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.072900", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.470600", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.465600", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.340600", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.382000", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.377000", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.252000", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.738700", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.320900", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.315900", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190900", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.928400", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.923400", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.798400", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.782900", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141400", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137700", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081400", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.550500", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.540200", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.916500", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.933500", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.886500", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.903500", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.786500", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.803500", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.775700", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.770700", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.645700", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.550100", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.545100", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.420100", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.807100", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.936900", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100700", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097000", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040700", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.087600", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.082600", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.957600", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.564400", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.559400", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.434400", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084400", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028100", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.676000", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.671000", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.546000", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.970600", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.343600", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.778800", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.856400", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.851400", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.726400", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.203600", + "Timestamp": "2024-05-16T08:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.433000", + "Timestamp": "2024-05-16T08:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.428000", + "Timestamp": "2024-05-16T08:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.303000", + "Timestamp": "2024-05-16T08:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.869100", + "Timestamp": "2024-05-16T08:31:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.864100", + "Timestamp": "2024-05-16T08:31:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.739100", + "Timestamp": "2024-05-16T08:31:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.964600", + "Timestamp": "2024-05-16T08:31:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.863800", + "Timestamp": "2024-05-16T08:31:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.494900", + "Timestamp": "2024-05-16T08:31:09.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.489900", + "Timestamp": "2024-05-16T08:31:09.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.364900", + "Timestamp": "2024-05-16T08:31:09.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.420800", + "Timestamp": "2024-05-16T08:31:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.435300", + "Timestamp": "2024-05-16T08:30:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.705100", + "Timestamp": "2024-05-16T08:30:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.266400", + "Timestamp": "2024-05-16T08:30:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.261400", + "Timestamp": "2024-05-16T08:30:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136400", + "Timestamp": "2024-05-16T08:30:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-16T08:30:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112900", + "Timestamp": "2024-05-16T08:30:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056900", + "Timestamp": "2024-05-16T08:30:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.744300", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.739300", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.614300", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.262500", + "Timestamp": "2024-05-16T08:17:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.934600", + "Timestamp": "2024-05-16T08:17:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.929600", + "Timestamp": "2024-05-16T08:17:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.804600", + "Timestamp": "2024-05-16T08:17:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.236800", + "Timestamp": "2024-05-16T08:17:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.781800", + "Timestamp": "2024-05-16T08:17:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.738600", + "Timestamp": "2024-05-16T08:17:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.733600", + "Timestamp": "2024-05-16T08:17:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.608600", + "Timestamp": "2024-05-16T08:17:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.507500", + "Timestamp": "2024-05-16T08:17:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.502500", + "Timestamp": "2024-05-16T08:17:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.377500", + "Timestamp": "2024-05-16T08:17:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116200", + "Timestamp": "2024-05-16T08:16:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113200", + "Timestamp": "2024-05-16T08:16:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056200", + "Timestamp": "2024-05-16T08:16:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.787000", + "Timestamp": "2024-05-16T08:16:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.755900", + "Timestamp": "2024-05-16T08:16:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.750900", + "Timestamp": "2024-05-16T08:16:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.625900", + "Timestamp": "2024-05-16T08:16:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.627100", + "Timestamp": "2024-05-16T08:16:47.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.622100", + "Timestamp": "2024-05-16T08:16:47.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.497100", + "Timestamp": "2024-05-16T08:16:47.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.735700", + "Timestamp": "2024-05-16T08:16:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.730700", + "Timestamp": "2024-05-16T08:16:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.605700", + "Timestamp": "2024-05-16T08:16:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.643000", + "Timestamp": "2024-05-16T08:16:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.873100", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.868100", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.743100", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441400", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437600", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.657700", + "Timestamp": "2024-05-16T08:16:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.652700", + "Timestamp": "2024-05-16T08:16:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.527700", + "Timestamp": "2024-05-16T08:16:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062800", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002800", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002800", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.699000", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.694000", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.569000", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.088600", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.240400", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.235400", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110400", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.652200", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.647200", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.522200", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.446400", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.441400", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.316400", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.497300", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114800", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.375700", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.370700", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.245700", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.904400", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.899400", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.774400", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.465300", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.435300", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.335300", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.399600", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.394600", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.269600", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.613100", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.608100", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.483100", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418900", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.789800", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.784800", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.659800", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.962700", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.390600", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.731800", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.726800", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.601800", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.759600", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.754600", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.629600", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090600", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086900", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030600", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.911800", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.906800", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.781800", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.770000", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.765000", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.640000", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.518500", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.513500", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.388500", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.027600", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.022600", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.897600", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.936700", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.931700", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.806700", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.285700", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.255700", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.155700", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.163700", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040200", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.675400", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.645400", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.545400", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.135500", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.105500", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.005500", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.709300", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.704300", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.579300", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.943400", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.938400", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.813400", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.720300", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.664500", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096700", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093000", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036700", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.082700", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.052700", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.952700", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.442600", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.437600", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.312600", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.857600", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.852600", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.727600", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.813600", + "Timestamp": "2024-05-16T08:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.808600", + "Timestamp": "2024-05-16T08:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.683600", + "Timestamp": "2024-05-16T08:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.080400", + "Timestamp": "2024-05-16T08:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235900", + "Timestamp": "2024-05-16T08:16:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.413500", + "Timestamp": "2024-05-16T08:16:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.408500", + "Timestamp": "2024-05-16T08:16:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.283500", + "Timestamp": "2024-05-16T08:16:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.822900", + "Timestamp": "2024-05-16T08:16:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.817900", + "Timestamp": "2024-05-16T08:16:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.692900", + "Timestamp": "2024-05-16T08:16:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.836000", + "Timestamp": "2024-05-16T08:16:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.944600", + "Timestamp": "2024-05-16T08:16:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.720700", + "Timestamp": "2024-05-16T08:16:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.418800", + "Timestamp": "2024-05-16T08:16:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.413800", + "Timestamp": "2024-05-16T08:16:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.288800", + "Timestamp": "2024-05-16T08:16:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078900", + "Timestamp": "2024-05-16T08:16:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075200", + "Timestamp": "2024-05-16T08:16:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018900", + "Timestamp": "2024-05-16T08:16:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.632200", + "Timestamp": "2024-05-16T08:16:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.071100", + "Timestamp": "2024-05-16T08:16:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.265200", + "Timestamp": "2024-05-16T08:15:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.260200", + "Timestamp": "2024-05-16T08:15:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.135200", + "Timestamp": "2024-05-16T08:15:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.887300", + "Timestamp": "2024-05-16T08:15:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.882300", + "Timestamp": "2024-05-16T08:15:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.757300", + "Timestamp": "2024-05-16T08:15:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.574600", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.569600", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.444600", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.710700", + "Timestamp": "2024-05-16T08:02:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.705700", + "Timestamp": "2024-05-16T08:02:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.580700", + "Timestamp": "2024-05-16T08:02:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.683900", + "Timestamp": "2024-05-16T08:02:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.678900", + "Timestamp": "2024-05-16T08:02:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.553900", + "Timestamp": "2024-05-16T08:02:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.919200", + "Timestamp": "2024-05-16T08:02:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.982500", + "Timestamp": "2024-05-16T08:02:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.889200", + "Timestamp": "2024-05-16T08:02:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.952500", + "Timestamp": "2024-05-16T08:02:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.789200", + "Timestamp": "2024-05-16T08:02:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.852500", + "Timestamp": "2024-05-16T08:02:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.422000", + "Timestamp": "2024-05-16T08:02:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.417000", + "Timestamp": "2024-05-16T08:02:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.292000", + "Timestamp": "2024-05-16T08:02:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.774800", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.267900", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.262900", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.137900", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174500", + "Timestamp": "2024-05-16T08:01:56.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170500", + "Timestamp": "2024-05-16T08:01:56.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-16T08:01:56.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.484600", + "Timestamp": "2024-05-16T08:01:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.083100", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.463000", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.458000", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.333000", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.505900", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.720700", + "Timestamp": "2024-05-16T08:01:47.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.004100", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111900", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107900", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051900", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.896400", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.895000", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.890000", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.765000", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.889500", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.884500", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.759500", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.612500", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.097000", + "Timestamp": "2024-05-16T08:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.092000", + "Timestamp": "2024-05-16T08:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967000", + "Timestamp": "2024-05-16T08:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.770100", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.740100", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.640100", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150100", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146400", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090100", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.942600", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.429400", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.424400", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.299400", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117400", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113700", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057400", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.812800", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.807800", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.682800", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294200", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289200", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164200", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.300400", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270400", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170400", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.668800", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.434700", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.790700", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.785700", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.660700", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.532100", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.527100", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.402100", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141200", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137200", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081200", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.376200", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261500", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.231500", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131500", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.250100", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.245100", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120100", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.631100", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.584400", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.818400", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.071000", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.950700", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.402400", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142500", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138800", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082500", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.303800", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.298800", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.173800", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.388500", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.383500", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.258500", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.598000", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.530700", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.854800", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.849800", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.724800", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.025800", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.020800", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.895800", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.070800", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.040800", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.940800", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.993400", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.634600", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.629600", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.504600", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.756100", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.595600", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.590600", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.465600", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.443400", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.988600", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.963300", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.338900", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.308900", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.208900", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140000", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180000", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080000", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.325500", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.320500", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195500", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.589800", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.206500", + "Timestamp": "2024-05-16T08:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.201500", + "Timestamp": "2024-05-16T08:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076500", + "Timestamp": "2024-05-16T08:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.939800", + "Timestamp": "2024-05-16T08:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.265300", + "Timestamp": "2024-05-16T08:01:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.760000", + "Timestamp": "2024-05-16T08:01:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165100", + "Timestamp": "2024-05-16T08:01:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161100", + "Timestamp": "2024-05-16T08:01:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105100", + "Timestamp": "2024-05-16T08:01:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.113300", + "Timestamp": "2024-05-16T08:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.108300", + "Timestamp": "2024-05-16T08:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.983300", + "Timestamp": "2024-05-16T08:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.371800", + "Timestamp": "2024-05-16T08:01:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.366800", + "Timestamp": "2024-05-16T08:01:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.241800", + "Timestamp": "2024-05-16T08:01:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.785400", + "Timestamp": "2024-05-16T08:01:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.780400", + "Timestamp": "2024-05-16T08:01:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.655400", + "Timestamp": "2024-05-16T08:01:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.704000", + "Timestamp": "2024-05-16T08:01:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.699000", + "Timestamp": "2024-05-16T08:01:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.574000", + "Timestamp": "2024-05-16T08:01:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176600", + "Timestamp": "2024-05-16T08:01:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172600", + "Timestamp": "2024-05-16T08:01:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T08:01:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.660000", + "Timestamp": "2024-05-16T08:01:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.655000", + "Timestamp": "2024-05-16T08:01:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.530000", + "Timestamp": "2024-05-16T08:01:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.649200", + "Timestamp": "2024-05-16T08:01:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.644200", + "Timestamp": "2024-05-16T08:01:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.519200", + "Timestamp": "2024-05-16T08:01:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.443900", + "Timestamp": "2024-05-16T08:01:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441500", + "Timestamp": "2024-05-16T08:01:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.109900", + "Timestamp": "2024-05-16T08:01:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423400", + "Timestamp": "2024-05-16T08:01:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.539000", + "Timestamp": "2024-05-16T08:00:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.534000", + "Timestamp": "2024-05-16T08:00:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.409000", + "Timestamp": "2024-05-16T08:00:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.042500", + "Timestamp": "2024-05-16T08:00:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.037500", + "Timestamp": "2024-05-16T08:00:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.912500", + "Timestamp": "2024-05-16T08:00:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.461300", + "Timestamp": "2024-05-16T07:47:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.080300", + "Timestamp": "2024-05-16T07:47:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.075300", + "Timestamp": "2024-05-16T07:47:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.950300", + "Timestamp": "2024-05-16T07:47:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145800", + "Timestamp": "2024-05-16T07:46:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142100", + "Timestamp": "2024-05-16T07:46:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085800", + "Timestamp": "2024-05-16T07:46:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.901200", + "Timestamp": "2024-05-16T07:46:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.955700", + "Timestamp": "2024-05-16T07:46:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.788600", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.783600", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.658600", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.705700", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.700700", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.575700", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.744400", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.739400", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.614400", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.604100", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.480400", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.885600", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.880600", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.755600", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139200", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135500", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079200", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.346500", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.341500", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.216500", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.980600", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.975600", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.850600", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301700", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296700", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171700", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.336800", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.331800", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.206800", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.738900", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.925900", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.210600", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.183000", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180000", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123000", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099900", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096200", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039900", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.384900", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.379900", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.254900", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.503700", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.498700", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.373700", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.520400", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.515400", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.390400", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.566300", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.561300", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.436300", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.915300", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.885300", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.785300", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.959000", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118200", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.937100", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.932100", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.807100", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.272200", + "Timestamp": "2024-05-16T07:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267200", + "Timestamp": "2024-05-16T07:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142200", + "Timestamp": "2024-05-16T07:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047700", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.595100", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.590100", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.465100", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324600", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319600", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194600", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.008800", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.003800", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.878800", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.658800", + "Timestamp": "2024-05-16T07:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.628800", + "Timestamp": "2024-05-16T07:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.528800", + "Timestamp": "2024-05-16T07:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.831100", + "Timestamp": "2024-05-16T07:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.826100", + "Timestamp": "2024-05-16T07:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.701100", + "Timestamp": "2024-05-16T07:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090500", + "Timestamp": "2024-05-16T07:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086800", + "Timestamp": "2024-05-16T07:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030500", + "Timestamp": "2024-05-16T07:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.480200", + "Timestamp": "2024-05-16T07:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.066600", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.820300", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.815300", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.690300", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T07:46:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104700", + "Timestamp": "2024-05-16T07:46:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048400", + "Timestamp": "2024-05-16T07:46:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.794400", + "Timestamp": "2024-05-16T07:46:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154000", + "Timestamp": "2024-05-16T07:46:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150000", + "Timestamp": "2024-05-16T07:46:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094000", + "Timestamp": "2024-05-16T07:46:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.868100", + "Timestamp": "2024-05-16T07:46:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.863100", + "Timestamp": "2024-05-16T07:46:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.738100", + "Timestamp": "2024-05-16T07:46:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.289200", + "Timestamp": "2024-05-16T07:46:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.024700", + "Timestamp": "2024-05-16T07:46:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.484900", + "Timestamp": "2024-05-16T07:46:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.479900", + "Timestamp": "2024-05-16T07:46:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.354900", + "Timestamp": "2024-05-16T07:46:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.992500", + "Timestamp": "2024-05-16T07:46:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.520800", + "Timestamp": "2024-05-16T07:46:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.515800", + "Timestamp": "2024-05-16T07:46:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.390800", + "Timestamp": "2024-05-16T07:46:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101300", + "Timestamp": "2024-05-16T07:46:09.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097300", + "Timestamp": "2024-05-16T07:46:09.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041300", + "Timestamp": "2024-05-16T07:46:09.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.598300", + "Timestamp": "2024-05-16T07:46:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.593300", + "Timestamp": "2024-05-16T07:46:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.468300", + "Timestamp": "2024-05-16T07:46:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.906400", + "Timestamp": "2024-05-16T07:46:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437100", + "Timestamp": "2024-05-16T07:46:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.778700", + "Timestamp": "2024-05-16T07:46:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.240300", + "Timestamp": "2024-05-16T07:45:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.307500", + "Timestamp": "2024-05-16T07:45:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.390800", + "Timestamp": "2024-05-16T07:45:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.385800", + "Timestamp": "2024-05-16T07:45:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.260800", + "Timestamp": "2024-05-16T07:45:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.516500", + "Timestamp": "2024-05-16T07:32:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.511500", + "Timestamp": "2024-05-16T07:32:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.386500", + "Timestamp": "2024-05-16T07:32:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.517600", + "Timestamp": "2024-05-16T07:32:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.044500", + "Timestamp": "2024-05-16T07:32:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.417400", + "Timestamp": "2024-05-16T07:32:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.412400", + "Timestamp": "2024-05-16T07:32:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.287400", + "Timestamp": "2024-05-16T07:32:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.962700", + "Timestamp": "2024-05-16T07:32:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.938900", + "Timestamp": "2024-05-16T07:31:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.722600", + "Timestamp": "2024-05-16T07:31:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.280800", + "Timestamp": "2024-05-16T07:31:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.275800", + "Timestamp": "2024-05-16T07:31:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150800", + "Timestamp": "2024-05-16T07:31:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.924600", + "Timestamp": "2024-05-16T07:31:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.343500", + "Timestamp": "2024-05-16T07:31:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.338500", + "Timestamp": "2024-05-16T07:31:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.213500", + "Timestamp": "2024-05-16T07:31:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.482300", + "Timestamp": "2024-05-16T07:31:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.158800", + "Timestamp": "2024-05-16T07:31:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.153800", + "Timestamp": "2024-05-16T07:31:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.028800", + "Timestamp": "2024-05-16T07:31:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.332700", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.327700", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.202700", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.194300", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.948800", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.943800", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.818800", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217200", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.825400", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.820400", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.695400", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.764300", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.759300", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.634300", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.234400", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.229400", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.501600", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.496600", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.371600", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.206400", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.201400", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.076400", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.193700", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.594900", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.572800", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.589900", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.567800", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.464900", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.442800", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.467200", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.753600", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.748600", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.623600", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.494700", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.489700", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.364700", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.327300", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.786700", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.781700", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.656700", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.807400", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.802400", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.677400", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.204800", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.201800", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144800", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.028100", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.146800", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.141800", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.016800", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119400", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115700", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059400", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.272600", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.276500", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.271500", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146500", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.761800", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.756800", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.631800", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.516700", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.511700", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.386700", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.833800", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.830100", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.773800", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.786000", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.802700", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.781000", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.797700", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.656000", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.672700", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079800", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076100", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019800", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.904600", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.567700", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.004000", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.974000", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.874000", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.036600", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.338200", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334500", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.278200", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.239900", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.234900", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089100", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085400", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029100", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.874300", + "Timestamp": "2024-05-16T07:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.869300", + "Timestamp": "2024-05-16T07:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.744300", + "Timestamp": "2024-05-16T07:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.986400", + "Timestamp": "2024-05-16T07:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.832200", + "Timestamp": "2024-05-16T07:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.800500", + "Timestamp": "2024-05-16T07:31:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089400", + "Timestamp": "2024-05-16T07:31:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085700", + "Timestamp": "2024-05-16T07:31:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029400", + "Timestamp": "2024-05-16T07:31:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.902800", + "Timestamp": "2024-05-16T07:31:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139200", + "Timestamp": "2024-05-16T07:31:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135200", + "Timestamp": "2024-05-16T07:31:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079200", + "Timestamp": "2024-05-16T07:31:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.391800", + "Timestamp": "2024-05-16T07:31:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145700", + "Timestamp": "2024-05-16T07:31:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141700", + "Timestamp": "2024-05-16T07:31:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085700", + "Timestamp": "2024-05-16T07:31:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.784000", + "Timestamp": "2024-05-16T07:31:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.891200", + "Timestamp": "2024-05-16T07:31:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097600", + "Timestamp": "2024-05-16T07:31:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093600", + "Timestamp": "2024-05-16T07:31:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037600", + "Timestamp": "2024-05-16T07:31:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.046700", + "Timestamp": "2024-05-16T07:31:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.421800", + "Timestamp": "2024-05-16T07:31:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.416800", + "Timestamp": "2024-05-16T07:31:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.291800", + "Timestamp": "2024-05-16T07:31:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.419900", + "Timestamp": "2024-05-16T07:31:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.260300", + "Timestamp": "2024-05-16T07:31:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.255300", + "Timestamp": "2024-05-16T07:31:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.130300", + "Timestamp": "2024-05-16T07:31:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.420600", + "Timestamp": "2024-05-16T07:31:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.347600", + "Timestamp": "2024-05-16T07:30:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.342600", + "Timestamp": "2024-05-16T07:30:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.217600", + "Timestamp": "2024-05-16T07:30:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.326000", + "Timestamp": "2024-05-16T07:30:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.321000", + "Timestamp": "2024-05-16T07:30:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.196000", + "Timestamp": "2024-05-16T07:30:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.662900", + "Timestamp": "2024-05-16T07:17:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.244700", + "Timestamp": "2024-05-16T07:17:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.239700", + "Timestamp": "2024-05-16T07:17:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.114700", + "Timestamp": "2024-05-16T07:17:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.723100", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224900", + "Timestamp": "2024-05-16T07:17:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.159800", + "Timestamp": "2024-05-16T07:17:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.154800", + "Timestamp": "2024-05-16T07:17:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.029800", + "Timestamp": "2024-05-16T07:17:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.941700", + "Timestamp": "2024-05-16T07:16:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.725100", + "Timestamp": "2024-05-16T07:16:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.241300", + "Timestamp": "2024-05-16T07:16:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.464900", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.459900", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.334900", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225100", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.056400", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.051400", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.926400", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.884900", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.854900", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.754900", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.134500", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.129500", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.004500", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127000", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123300", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067000", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.318100", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.312300", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.017500", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.012500", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.887500", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.854400", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120200", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116500", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060200", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.450500", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.881700", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.878100", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.334600", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.329600", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.204600", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208800", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.322000", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.317000", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.192000", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.452500", + "Timestamp": "2024-05-16T07:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.664700", + "Timestamp": "2024-05-16T07:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.659700", + "Timestamp": "2024-05-16T07:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.534700", + "Timestamp": "2024-05-16T07:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.881900", + "Timestamp": "2024-05-16T07:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.876900", + "Timestamp": "2024-05-16T07:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.751900", + "Timestamp": "2024-05-16T07:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.515000", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.485000", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.385000", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.909200", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.554500", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.524500", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.424500", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.823900", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.721300", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.716300", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.591300", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.244500", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.239500", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.256000", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.251000", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126000", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.890300", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.474000", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.469000", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.344000", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.928700", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.898700", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.798700", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.180500", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.176800", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120500", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.493700", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.753700", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.775800", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.770800", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.645800", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109200", + "Timestamp": "2024-05-16T07:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105500", + "Timestamp": "2024-05-16T07:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049200", + "Timestamp": "2024-05-16T07:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.423200", + "Timestamp": "2024-05-16T07:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.309000", + "Timestamp": "2024-05-16T07:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.304000", + "Timestamp": "2024-05-16T07:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.179000", + "Timestamp": "2024-05-16T07:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.825000", + "Timestamp": "2024-05-16T07:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108900", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148900", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048900", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.895400", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.579100", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.574100", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.449100", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.300800", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.552800", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.824400", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.035900", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.005900", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.905900", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.642200", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.637200", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.512200", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.236700", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.804200", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.799200", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.674200", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.863300", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.234700", + "Timestamp": "2024-05-16T07:16:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.056200", + "Timestamp": "2024-05-16T07:16:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.938900", + "Timestamp": "2024-05-16T07:16:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.051200", + "Timestamp": "2024-05-16T07:16:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.933900", + "Timestamp": "2024-05-16T07:16:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.926200", + "Timestamp": "2024-05-16T07:16:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.808900", + "Timestamp": "2024-05-16T07:16:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.753300", + "Timestamp": "2024-05-16T07:16:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.189500", + "Timestamp": "2024-05-16T07:16:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.884100", + "Timestamp": "2024-05-16T07:16:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.879100", + "Timestamp": "2024-05-16T07:16:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.754100", + "Timestamp": "2024-05-16T07:16:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.335000", + "Timestamp": "2024-05-16T07:16:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.330000", + "Timestamp": "2024-05-16T07:16:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.205000", + "Timestamp": "2024-05-16T07:16:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.219800", + "Timestamp": "2024-05-16T07:16:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T07:16:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T07:16:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049800", + "Timestamp": "2024-05-16T07:16:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.433200", + "Timestamp": "2024-05-16T07:16:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.403200", + "Timestamp": "2024-05-16T07:16:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.303200", + "Timestamp": "2024-05-16T07:16:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.938100", + "Timestamp": "2024-05-16T07:16:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.933100", + "Timestamp": "2024-05-16T07:16:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.808100", + "Timestamp": "2024-05-16T07:16:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.034200", + "Timestamp": "2024-05-16T07:16:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.420700", + "Timestamp": "2024-05-16T07:16:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.415300", + "Timestamp": "2024-05-16T07:15:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.410300", + "Timestamp": "2024-05-16T07:15:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.285300", + "Timestamp": "2024-05-16T07:15:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T07:02:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.720400", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.715400", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.590400", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.244600", + "Timestamp": "2024-05-16T07:01:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.529700", + "Timestamp": "2024-05-16T07:01:56.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125600", + "Timestamp": "2024-05-16T07:01:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121900", + "Timestamp": "2024-05-16T07:01:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065600", + "Timestamp": "2024-05-16T07:01:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.948300", + "Timestamp": "2024-05-16T07:01:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.519900", + "Timestamp": "2024-05-16T07:01:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.377700", + "Timestamp": "2024-05-16T07:01:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372700", + "Timestamp": "2024-05-16T07:01:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.247700", + "Timestamp": "2024-05-16T07:01:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.654000", + "Timestamp": "2024-05-16T07:01:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.649000", + "Timestamp": "2024-05-16T07:01:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.524000", + "Timestamp": "2024-05-16T07:01:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.657200", + "Timestamp": "2024-05-16T07:01:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.652200", + "Timestamp": "2024-05-16T07:01:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.527200", + "Timestamp": "2024-05-16T07:01:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.229600", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.224600", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.099600", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.586000", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.556000", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.456000", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.508500", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.885400", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.880400", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.755400", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.513900", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.508900", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.383900", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.703800", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.698800", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.573800", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062800", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002800", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002800", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.151800", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.121800", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.021800", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092300", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036000", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168000", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163000", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038000", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.502600", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.497600", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.372600", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.948600", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.943600", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.818600", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.646200", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.641200", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.516200", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306700", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301700", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176700", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.871300", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.840200", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.835200", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.710200", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278800", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273800", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148800", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.772800", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.742800", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.642800", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.243600", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.238600", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113600", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048400", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437500", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.876800", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.548600", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.940400", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.517300", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.512300", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.387300", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.317300", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.312300", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.187300", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.887000", + "Timestamp": "2024-05-16T07:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.689800", + "Timestamp": "2024-05-16T07:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.684800", + "Timestamp": "2024-05-16T07:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.559800", + "Timestamp": "2024-05-16T07:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.237100", + "Timestamp": "2024-05-16T07:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.232100", + "Timestamp": "2024-05-16T07:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.107100", + "Timestamp": "2024-05-16T07:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.974800", + "Timestamp": "2024-05-16T07:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.969800", + "Timestamp": "2024-05-16T07:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.844800", + "Timestamp": "2024-05-16T07:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.679000", + "Timestamp": "2024-05-16T07:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.674000", + "Timestamp": "2024-05-16T07:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.549000", + "Timestamp": "2024-05-16T07:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.092500", + "Timestamp": "2024-05-16T07:01:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.010500", + "Timestamp": "2024-05-16T07:01:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.702100", + "Timestamp": "2024-05-16T07:01:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.672100", + "Timestamp": "2024-05-16T07:01:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.572100", + "Timestamp": "2024-05-16T07:01:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.889700", + "Timestamp": "2024-05-16T07:01:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.884700", + "Timestamp": "2024-05-16T07:01:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.759700", + "Timestamp": "2024-05-16T07:01:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.087100", + "Timestamp": "2024-05-16T07:01:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.057100", + "Timestamp": "2024-05-16T07:01:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.957100", + "Timestamp": "2024-05-16T07:01:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.876200", + "Timestamp": "2024-05-16T07:01:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.871200", + "Timestamp": "2024-05-16T07:01:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.746200", + "Timestamp": "2024-05-16T07:01:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.660900", + "Timestamp": "2024-05-16T07:01:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147000", + "Timestamp": "2024-05-16T07:01:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143300", + "Timestamp": "2024-05-16T07:01:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087000", + "Timestamp": "2024-05-16T07:01:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.844300", + "Timestamp": "2024-05-16T07:00:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005600", + "Timestamp": "2024-05-16T06:50:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005300", + "Timestamp": "2024-05-16T06:50:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-16T06:50:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113600", + "Timestamp": "2024-05-16T06:47:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109600", + "Timestamp": "2024-05-16T06:47:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053600", + "Timestamp": "2024-05-16T06:47:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.887500", + "Timestamp": "2024-05-16T06:47:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.882500", + "Timestamp": "2024-05-16T06:47:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.757500", + "Timestamp": "2024-05-16T06:47:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.860100", + "Timestamp": "2024-05-16T06:47:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.855100", + "Timestamp": "2024-05-16T06:47:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.730100", + "Timestamp": "2024-05-16T06:47:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.830700", + "Timestamp": "2024-05-16T06:46:52.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.825700", + "Timestamp": "2024-05-16T06:46:52.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.700700", + "Timestamp": "2024-05-16T06:46:52.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.796600", + "Timestamp": "2024-05-16T06:46:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.791600", + "Timestamp": "2024-05-16T06:46:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.666600", + "Timestamp": "2024-05-16T06:46:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.672000", + "Timestamp": "2024-05-16T06:46:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.609900", + "Timestamp": "2024-05-16T06:46:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.891900", + "Timestamp": "2024-05-16T06:46:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.886900", + "Timestamp": "2024-05-16T06:46:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.761900", + "Timestamp": "2024-05-16T06:46:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.547000", + "Timestamp": "2024-05-16T06:46:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.542000", + "Timestamp": "2024-05-16T06:46:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.417000", + "Timestamp": "2024-05-16T06:46:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.810200", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.805200", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.680200", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.441100", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.826800", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.552700", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.923700", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.918700", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.793700", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.252100", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.247100", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122100", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.524200", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.519200", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.394200", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.855800", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.549400", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.519400", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.419400", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.969500", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.545800", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.540800", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.415800", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.127600", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.795100", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.499700", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.469700", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.369700", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.544800", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.539800", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.414800", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.718900", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.713900", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.588900", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.636600", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.631600", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.506600", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.961900", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.956900", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.831900", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.518800", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.488800", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.388800", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.577200", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.572200", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.447200", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.982500", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.952500", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.852500", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.539500", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.075100", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.893400", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.383600", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.583100", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.359700", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.370000", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.329700", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.340000", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.229700", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.240000", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.901400", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.962700", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105300", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.240300", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.235300", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.780400", + "Timestamp": "2024-05-16T06:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113700", + "Timestamp": "2024-05-16T06:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115500", + "Timestamp": "2024-05-16T06:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T06:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111800", + "Timestamp": "2024-05-16T06:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053700", + "Timestamp": "2024-05-16T06:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055500", + "Timestamp": "2024-05-16T06:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.881900", + "Timestamp": "2024-05-16T06:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "11.615400", + "Timestamp": "2024-05-16T06:46:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "11.610400", + "Timestamp": "2024-05-16T06:46:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "11.485400", + "Timestamp": "2024-05-16T06:46:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.392500", + "Timestamp": "2024-05-16T06:46:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.387500", + "Timestamp": "2024-05-16T06:46:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.262500", + "Timestamp": "2024-05-16T06:46:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.565100", + "Timestamp": "2024-05-16T06:46:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.885900", + "Timestamp": "2024-05-16T06:46:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.927800", + "Timestamp": "2024-05-16T06:46:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.922800", + "Timestamp": "2024-05-16T06:46:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.797800", + "Timestamp": "2024-05-16T06:46:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148300", + "Timestamp": "2024-05-16T06:46:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144600", + "Timestamp": "2024-05-16T06:46:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088300", + "Timestamp": "2024-05-16T06:46:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107800", + "Timestamp": "2024-05-16T06:46:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.882500", + "Timestamp": "2024-05-16T06:46:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.330400", + "Timestamp": "2024-05-16T06:46:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.325400", + "Timestamp": "2024-05-16T06:46:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.200400", + "Timestamp": "2024-05-16T06:46:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.246900", + "Timestamp": "2024-05-16T06:45:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429900", + "Timestamp": "2024-05-16T06:45:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.243000", + "Timestamp": "2024-05-16T06:45:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.461100", + "Timestamp": "2024-05-16T06:45:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062000", + "Timestamp": "2024-05-16T06:43:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002000", + "Timestamp": "2024-05-16T06:43:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002000", + "Timestamp": "2024-05-16T06:43:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.400300", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.438600", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.395300", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.433600", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.270300", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.308600", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.685700", + "Timestamp": "2024-05-16T06:32:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.680700", + "Timestamp": "2024-05-16T06:32:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.555700", + "Timestamp": "2024-05-16T06:32:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.290900", + "Timestamp": "2024-05-16T06:32:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107800", + "Timestamp": "2024-05-16T06:32:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T06:32:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.188300", + "Timestamp": "2024-05-16T06:32:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.811200", + "Timestamp": "2024-05-16T06:32:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071700", + "Timestamp": "2024-05-16T06:32:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068000", + "Timestamp": "2024-05-16T06:32:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011700", + "Timestamp": "2024-05-16T06:32:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.670000", + "Timestamp": "2024-05-16T06:32:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.652900", + "Timestamp": "2024-05-16T06:31:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.886300", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.881300", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.756300", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.464900", + "Timestamp": "2024-05-16T06:31:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.902800", + "Timestamp": "2024-05-16T06:31:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.924300", + "Timestamp": "2024-05-16T06:31:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.091600", + "Timestamp": "2024-05-16T06:31:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.080500", + "Timestamp": "2024-05-16T06:31:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.061600", + "Timestamp": "2024-05-16T06:31:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.050500", + "Timestamp": "2024-05-16T06:31:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.961600", + "Timestamp": "2024-05-16T06:31:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.950500", + "Timestamp": "2024-05-16T06:31:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.896100", + "Timestamp": "2024-05-16T06:31:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.277600", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.272600", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147600", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.363000", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.983700", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.980000", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.923700", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.860700", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.336600", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.332600", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.276600", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.620000", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.615000", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.490000", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.698100", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.668100", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.568100", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.543900", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.538900", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.413900", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112900", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109200", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052900", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.901400", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.350300", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113500", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053500", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.663800", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.658800", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.533800", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.008900", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.978900", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.878900", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.477300", + "Timestamp": "2024-05-16T06:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.472300", + "Timestamp": "2024-05-16T06:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.347300", + "Timestamp": "2024-05-16T06:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.858100", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.470700", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.465700", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.340700", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.662000", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.657000", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.532000", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.829900", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.692500", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.687500", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.562500", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.801700", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.796700", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.671700", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418500", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114700", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054700", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.264300", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.259300", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354100", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324100", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224100", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.082600", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.077600", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.952600", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.677700", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.672700", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.547700", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.464700", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.941200", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.237800", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.936200", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.232800", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.811200", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.107800", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.926100", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.896100", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.796100", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.285500", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.280500", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.155500", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.709000", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.299000", + "Timestamp": "2024-05-16T06:31:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.607700", + "Timestamp": "2024-05-16T06:31:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.876100", + "Timestamp": "2024-05-16T06:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.839300", + "Timestamp": "2024-05-16T06:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.834200", + "Timestamp": "2024-05-16T06:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.297000", + "Timestamp": "2024-05-16T06:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.267000", + "Timestamp": "2024-05-16T06:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.167000", + "Timestamp": "2024-05-16T06:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.682000", + "Timestamp": "2024-05-16T06:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.206300", + "Timestamp": "2024-05-16T06:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.202300", + "Timestamp": "2024-05-16T06:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146300", + "Timestamp": "2024-05-16T06:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.161300", + "Timestamp": "2024-05-16T06:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.156300", + "Timestamp": "2024-05-16T06:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.031300", + "Timestamp": "2024-05-16T06:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.664500", + "Timestamp": "2024-05-16T06:31:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.659500", + "Timestamp": "2024-05-16T06:31:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.534500", + "Timestamp": "2024-05-16T06:31:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118600", + "Timestamp": "2024-05-16T06:31:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.553500", + "Timestamp": "2024-05-16T06:31:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.790300", + "Timestamp": "2024-05-16T06:31:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.492400", + "Timestamp": "2024-05-16T06:31:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.507200", + "Timestamp": "2024-05-16T06:31:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.487400", + "Timestamp": "2024-05-16T06:31:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.502200", + "Timestamp": "2024-05-16T06:31:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.362400", + "Timestamp": "2024-05-16T06:31:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.377200", + "Timestamp": "2024-05-16T06:31:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.543400", + "Timestamp": "2024-05-16T06:31:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114800", + "Timestamp": "2024-05-16T06:31:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T06:31:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054800", + "Timestamp": "2024-05-16T06:31:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T06:30:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T06:30:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052200", + "Timestamp": "2024-05-16T06:30:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.775700", + "Timestamp": "2024-05-16T06:17:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.147200", + "Timestamp": "2024-05-16T06:17:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.539000", + "Timestamp": "2024-05-16T06:17:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.509000", + "Timestamp": "2024-05-16T06:17:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.409000", + "Timestamp": "2024-05-16T06:17:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.445000", + "Timestamp": "2024-05-16T06:16:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.440000", + "Timestamp": "2024-05-16T06:16:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.315000", + "Timestamp": "2024-05-16T06:16:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.620300", + "Timestamp": "2024-05-16T06:16:56.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.861000", + "Timestamp": "2024-05-16T06:16:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.559900", + "Timestamp": "2024-05-16T06:16:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.554900", + "Timestamp": "2024-05-16T06:16:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.429900", + "Timestamp": "2024-05-16T06:16:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.088900", + "Timestamp": "2024-05-16T06:16:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.083900", + "Timestamp": "2024-05-16T06:16:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.958900", + "Timestamp": "2024-05-16T06:16:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.846200", + "Timestamp": "2024-05-16T06:16:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.588700", + "Timestamp": "2024-05-16T06:16:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.583700", + "Timestamp": "2024-05-16T06:16:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.458700", + "Timestamp": "2024-05-16T06:16:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.851800", + "Timestamp": "2024-05-16T06:16:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.846800", + "Timestamp": "2024-05-16T06:16:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.721800", + "Timestamp": "2024-05-16T06:16:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101300", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045000", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.111900", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.262800", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.915800", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.910800", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.785800", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074500", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.045500", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014500", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.526200", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075100", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071400", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015100", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.209000", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.205000", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149000", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.413600", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.408600", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.283600", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211000", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.053700", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.547300", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.542300", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.417300", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.292300", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.281700", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276700", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.151700", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.264200", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.259200", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134200", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.520900", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.515900", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.390900", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.243500", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.103500", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.238500", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.098500", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.113500", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.973500", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.267900", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.305400", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.275400", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175400", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.985700", + "Timestamp": "2024-05-16T06:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.766700", + "Timestamp": "2024-05-16T06:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.928200", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.923200", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.798200", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271900", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266900", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141900", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.815900", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.810900", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.685900", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.247100", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.242100", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.117100", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.752500", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.747500", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.622500", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.162500", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.157500", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.032500", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.272300", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267300", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142300", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137300", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133600", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077300", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.084800", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.054800", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.954800", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.751600", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.721600", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.621600", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.964900", + "Timestamp": "2024-05-16T06:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.934900", + "Timestamp": "2024-05-16T06:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.834900", + "Timestamp": "2024-05-16T06:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.810900", + "Timestamp": "2024-05-16T06:16:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.780600", + "Timestamp": "2024-05-16T06:16:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.775600", + "Timestamp": "2024-05-16T06:16:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.650600", + "Timestamp": "2024-05-16T06:16:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.790400", + "Timestamp": "2024-05-16T06:16:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.131500", + "Timestamp": "2024-05-16T06:16:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.126500", + "Timestamp": "2024-05-16T06:16:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.001500", + "Timestamp": "2024-05-16T06:16:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096400", + "Timestamp": "2024-05-16T06:16:09.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092400", + "Timestamp": "2024-05-16T06:16:09.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036400", + "Timestamp": "2024-05-16T06:16:09.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.442900", + "Timestamp": "2024-05-16T06:16:09.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.509400", + "Timestamp": "2024-05-16T06:16:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.504400", + "Timestamp": "2024-05-16T06:16:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.379400", + "Timestamp": "2024-05-16T06:16:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.834700", + "Timestamp": "2024-05-16T06:15:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.663700", + "Timestamp": "2024-05-16T06:15:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.658700", + "Timestamp": "2024-05-16T06:15:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.533700", + "Timestamp": "2024-05-16T06:15:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.340300", + "Timestamp": "2024-05-16T06:01:51.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.335300", + "Timestamp": "2024-05-16T06:01:51.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.210300", + "Timestamp": "2024-05-16T06:01:51.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211100", + "Timestamp": "2024-05-16T06:01:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.846200", + "Timestamp": "2024-05-16T06:01:47.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.741500", + "Timestamp": "2024-05-16T06:01:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226500", + "Timestamp": "2024-05-16T06:01:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.283900", + "Timestamp": "2024-05-16T06:01:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.278900", + "Timestamp": "2024-05-16T06:01:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.153900", + "Timestamp": "2024-05-16T06:01:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.732400", + "Timestamp": "2024-05-16T06:01:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.727400", + "Timestamp": "2024-05-16T06:01:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.602400", + "Timestamp": "2024-05-16T06:01:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418200", + "Timestamp": "2024-05-16T06:01:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.682300", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.677300", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.552300", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.070600", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.046200", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.041200", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.916200", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090300", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086600", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030300", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.495400", + "Timestamp": "2024-05-16T06:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171900", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167900", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111900", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.958600", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.953600", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.828600", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.828100", + "Timestamp": "2024-05-16T06:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.823100", + "Timestamp": "2024-05-16T06:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.698100", + "Timestamp": "2024-05-16T06:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.413100", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.963900", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.416200", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.527800", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235300", + "Timestamp": "2024-05-16T06:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.763700", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.758700", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.633700", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.196100", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.245400", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.781600", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.776600", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.651600", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149200", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145500", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089200", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106700", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050700", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.436500", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.753100", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.277300", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.272300", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147300", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.936600", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.931600", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.806600", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.817800", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121000", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021200", + "Timestamp": "2024-05-16T06:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.048300", + "Timestamp": "2024-05-16T06:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.043300", + "Timestamp": "2024-05-16T06:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.918300", + "Timestamp": "2024-05-16T06:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073700", + "Timestamp": "2024-05-16T06:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070000", + "Timestamp": "2024-05-16T06:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013700", + "Timestamp": "2024-05-16T06:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.817100", + "Timestamp": "2024-05-16T06:01:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.150100", + "Timestamp": "2024-05-16T06:01:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.033700", + "Timestamp": "2024-05-16T06:01:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.861700", + "Timestamp": "2024-05-16T06:01:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.831700", + "Timestamp": "2024-05-16T06:01:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.731700", + "Timestamp": "2024-05-16T06:01:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121300", + "Timestamp": "2024-05-16T06:01:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117600", + "Timestamp": "2024-05-16T06:01:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061300", + "Timestamp": "2024-05-16T06:01:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.286300", + "Timestamp": "2024-05-16T06:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281300", + "Timestamp": "2024-05-16T06:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156300", + "Timestamp": "2024-05-16T06:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.962500", + "Timestamp": "2024-05-16T06:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.957500", + "Timestamp": "2024-05-16T06:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.832500", + "Timestamp": "2024-05-16T06:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.491100", + "Timestamp": "2024-05-16T06:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.486100", + "Timestamp": "2024-05-16T06:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.361100", + "Timestamp": "2024-05-16T06:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.816200", + "Timestamp": "2024-05-16T06:01:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.396300", + "Timestamp": "2024-05-16T06:01:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.395800", + "Timestamp": "2024-05-16T06:01:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.391300", + "Timestamp": "2024-05-16T06:01:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.390800", + "Timestamp": "2024-05-16T06:01:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.266300", + "Timestamp": "2024-05-16T06:01:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.265800", + "Timestamp": "2024-05-16T06:01:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.975500", + "Timestamp": "2024-05-16T06:01:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.740000", + "Timestamp": "2024-05-16T06:01:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.710000", + "Timestamp": "2024-05-16T06:01:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.610000", + "Timestamp": "2024-05-16T06:01:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.376000", + "Timestamp": "2024-05-16T06:01:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.371000", + "Timestamp": "2024-05-16T06:01:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.246000", + "Timestamp": "2024-05-16T06:01:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.670400", + "Timestamp": "2024-05-16T06:01:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.864400", + "Timestamp": "2024-05-16T06:01:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.462800", + "Timestamp": "2024-05-16T06:00:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.130200", + "Timestamp": "2024-05-16T06:00:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.125200", + "Timestamp": "2024-05-16T06:00:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.000200", + "Timestamp": "2024-05-16T06:00:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.182900", + "Timestamp": "2024-05-16T06:00:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.178900", + "Timestamp": "2024-05-16T06:00:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122900", + "Timestamp": "2024-05-16T06:00:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140400", + "Timestamp": "2024-05-16T05:47:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136700", + "Timestamp": "2024-05-16T05:47:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080400", + "Timestamp": "2024-05-16T05:47:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.779300", + "Timestamp": "2024-05-16T05:46:51.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.060200", + "Timestamp": "2024-05-16T05:46:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.473600", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157600", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153900", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097600", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.711600", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.706600", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.581600", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.985000", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.329200", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324200", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199200", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.432700", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103400", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047400", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.504500", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.499500", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.374500", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.523000", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.518000", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.393000", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.427600", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.057100", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.052100", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.927100", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.785800", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.780800", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.655800", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088400", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084700", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028400", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.537900", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.532900", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.407900", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.985900", + "Timestamp": "2024-05-16T05:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.980900", + "Timestamp": "2024-05-16T05:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.855900", + "Timestamp": "2024-05-16T05:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.786100", + "Timestamp": "2024-05-16T05:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.756100", + "Timestamp": "2024-05-16T05:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.656100", + "Timestamp": "2024-05-16T05:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.244900", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144200", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140500", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084200", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089900", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086200", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029900", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.570400", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.565400", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.440400", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.906900", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167400", + "Timestamp": "2024-05-16T05:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162400", + "Timestamp": "2024-05-16T05:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037400", + "Timestamp": "2024-05-16T05:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.096800", + "Timestamp": "2024-05-16T05:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.737000", + "Timestamp": "2024-05-16T05:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.086100", + "Timestamp": "2024-05-16T05:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.056100", + "Timestamp": "2024-05-16T05:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.956100", + "Timestamp": "2024-05-16T05:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.813200", + "Timestamp": "2024-05-16T05:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.808200", + "Timestamp": "2024-05-16T05:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.683200", + "Timestamp": "2024-05-16T05:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.663500", + "Timestamp": "2024-05-16T05:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.658500", + "Timestamp": "2024-05-16T05:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.533500", + "Timestamp": "2024-05-16T05:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.693100", + "Timestamp": "2024-05-16T05:46:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.641500", + "Timestamp": "2024-05-16T05:46:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.636500", + "Timestamp": "2024-05-16T05:46:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.511500", + "Timestamp": "2024-05-16T05:46:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.123500", + "Timestamp": "2024-05-16T05:46:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.118500", + "Timestamp": "2024-05-16T05:46:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.993500", + "Timestamp": "2024-05-16T05:46:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.698300", + "Timestamp": "2024-05-16T05:46:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.693300", + "Timestamp": "2024-05-16T05:46:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.568300", + "Timestamp": "2024-05-16T05:46:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.509200", + "Timestamp": "2024-05-16T05:46:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.504200", + "Timestamp": "2024-05-16T05:46:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.379200", + "Timestamp": "2024-05-16T05:46:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145400", + "Timestamp": "2024-05-16T05:46:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141700", + "Timestamp": "2024-05-16T05:46:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085400", + "Timestamp": "2024-05-16T05:46:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.646800", + "Timestamp": "2024-05-16T05:46:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.731600", + "Timestamp": "2024-05-16T05:45:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.607900", + "Timestamp": "2024-05-16T05:32:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.577900", + "Timestamp": "2024-05-16T05:32:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.477900", + "Timestamp": "2024-05-16T05:32:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.010700", + "Timestamp": "2024-05-16T05:32:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.189600", + "Timestamp": "2024-05-16T05:32:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.846800", + "Timestamp": "2024-05-16T05:32:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.841800", + "Timestamp": "2024-05-16T05:32:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.716800", + "Timestamp": "2024-05-16T05:32:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.320900", + "Timestamp": "2024-05-16T05:32:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.315900", + "Timestamp": "2024-05-16T05:32:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190900", + "Timestamp": "2024-05-16T05:32:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.505000", + "Timestamp": "2024-05-16T05:32:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.500000", + "Timestamp": "2024-05-16T05:32:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.375000", + "Timestamp": "2024-05-16T05:32:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.543100", + "Timestamp": "2024-05-16T05:31:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.905300", + "Timestamp": "2024-05-16T05:31:52.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.454100", + "Timestamp": "2024-05-16T05:31:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.064200", + "Timestamp": "2024-05-16T05:31:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.059200", + "Timestamp": "2024-05-16T05:31:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.934200", + "Timestamp": "2024-05-16T05:31:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157100", + "Timestamp": "2024-05-16T05:31:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153400", + "Timestamp": "2024-05-16T05:31:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T05:31:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.541200", + "Timestamp": "2024-05-16T05:31:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.552300", + "Timestamp": "2024-05-16T05:31:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.536200", + "Timestamp": "2024-05-16T05:31:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.547300", + "Timestamp": "2024-05-16T05:31:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.411200", + "Timestamp": "2024-05-16T05:31:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.422300", + "Timestamp": "2024-05-16T05:31:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.574900", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.569900", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.444900", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172200", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168500", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.841700", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.836700", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.711700", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T05:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.169000", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.164000", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.039000", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.192500", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232500", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.132500", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.897600", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101500", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045200", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.753300", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.748300", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.623300", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.648300", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.643300", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.518300", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114800", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054800", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.784600", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.779600", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.654600", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.866700", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.509600", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.504600", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.379600", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.509200", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.973500", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.943500", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.843500", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098200", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094500", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038200", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124300", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120600", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064300", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.489000", + "Timestamp": "2024-05-16T05:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.059500", + "Timestamp": "2024-05-16T05:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.756100", + "Timestamp": "2024-05-16T05:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.751100", + "Timestamp": "2024-05-16T05:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.626100", + "Timestamp": "2024-05-16T05:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.496600", + "Timestamp": "2024-05-16T05:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.491600", + "Timestamp": "2024-05-16T05:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.366600", + "Timestamp": "2024-05-16T05:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.574500", + "Timestamp": "2024-05-16T05:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.569500", + "Timestamp": "2024-05-16T05:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.444500", + "Timestamp": "2024-05-16T05:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.925200", + "Timestamp": "2024-05-16T05:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T05:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147700", + "Timestamp": "2024-05-16T05:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047700", + "Timestamp": "2024-05-16T05:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270000", + "Timestamp": "2024-05-16T05:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265000", + "Timestamp": "2024-05-16T05:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140000", + "Timestamp": "2024-05-16T05:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.678900", + "Timestamp": "2024-05-16T05:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.705100", + "Timestamp": "2024-05-16T05:31:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.700100", + "Timestamp": "2024-05-16T05:31:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.575100", + "Timestamp": "2024-05-16T05:31:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.438500", + "Timestamp": "2024-05-16T05:31:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.749800", + "Timestamp": "2024-05-16T05:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.744800", + "Timestamp": "2024-05-16T05:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.619800", + "Timestamp": "2024-05-16T05:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.334100", + "Timestamp": "2024-05-16T05:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169800", + "Timestamp": "2024-05-16T05:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165800", + "Timestamp": "2024-05-16T05:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T05:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.596900", + "Timestamp": "2024-05-16T05:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136100", + "Timestamp": "2024-05-16T05:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.176100", + "Timestamp": "2024-05-16T05:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076100", + "Timestamp": "2024-05-16T05:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.722000", + "Timestamp": "2024-05-16T05:31:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.979000", + "Timestamp": "2024-05-16T05:31:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090300", + "Timestamp": "2024-05-16T05:31:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086300", + "Timestamp": "2024-05-16T05:31:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030300", + "Timestamp": "2024-05-16T05:31:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.413900", + "Timestamp": "2024-05-16T05:31:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.408900", + "Timestamp": "2024-05-16T05:31:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.283900", + "Timestamp": "2024-05-16T05:31:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209800", + "Timestamp": "2024-05-16T05:31:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.508800", + "Timestamp": "2024-05-16T05:31:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.516800", + "Timestamp": "2024-05-16T05:31:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.479600", + "Timestamp": "2024-05-16T05:31:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.478800", + "Timestamp": "2024-05-16T05:31:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.486800", + "Timestamp": "2024-05-16T05:31:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.449600", + "Timestamp": "2024-05-16T05:31:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.378800", + "Timestamp": "2024-05-16T05:31:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.386800", + "Timestamp": "2024-05-16T05:31:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.349600", + "Timestamp": "2024-05-16T05:31:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.175200", + "Timestamp": "2024-05-16T05:31:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.170200", + "Timestamp": "2024-05-16T05:31:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.045200", + "Timestamp": "2024-05-16T05:31:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.698100", + "Timestamp": "2024-05-16T05:31:09.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.693100", + "Timestamp": "2024-05-16T05:31:09.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.568100", + "Timestamp": "2024-05-16T05:31:09.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021600", + "Timestamp": "2024-05-16T05:17:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.910600", + "Timestamp": "2024-05-16T05:17:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.905600", + "Timestamp": "2024-05-16T05:17:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.780600", + "Timestamp": "2024-05-16T05:17:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135800", + "Timestamp": "2024-05-16T05:17:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132100", + "Timestamp": "2024-05-16T05:17:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075800", + "Timestamp": "2024-05-16T05:17:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.685600", + "Timestamp": "2024-05-16T05:16:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.680600", + "Timestamp": "2024-05-16T05:16:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.555600", + "Timestamp": "2024-05-16T05:16:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.980200", + "Timestamp": "2024-05-16T05:16:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.975200", + "Timestamp": "2024-05-16T05:16:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.850200", + "Timestamp": "2024-05-16T05:16:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.773000", + "Timestamp": "2024-05-16T05:16:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140400", + "Timestamp": "2024-05-16T05:16:41.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136700", + "Timestamp": "2024-05-16T05:16:41.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080400", + "Timestamp": "2024-05-16T05:16:41.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311600", + "Timestamp": "2024-05-16T05:16:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.306600", + "Timestamp": "2024-05-16T05:16:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181600", + "Timestamp": "2024-05-16T05:16:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.640300", + "Timestamp": "2024-05-16T05:16:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.417700", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.412700", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.287700", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.497400", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.492400", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.367400", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.686400", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.681400", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.556400", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.416500", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.411500", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.286500", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.608900", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.603900", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.478900", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.125300", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.120300", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.995300", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.279200", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.274200", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149200", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.187000", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183000", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127000", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206200", + "Timestamp": "2024-05-16T05:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.868300", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.445300", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229700", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.507800", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.496200", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.491200", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.366200", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.629200", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.624200", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.499200", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.205000", + "Timestamp": "2024-05-16T05:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.200000", + "Timestamp": "2024-05-16T05:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075000", + "Timestamp": "2024-05-16T05:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.137400", + "Timestamp": "2024-05-16T05:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.107400", + "Timestamp": "2024-05-16T05:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.007400", + "Timestamp": "2024-05-16T05:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.840600", + "Timestamp": "2024-05-16T05:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072500", + "Timestamp": "2024-05-16T05:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-16T05:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012500", + "Timestamp": "2024-05-16T05:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.962100", + "Timestamp": "2024-05-16T05:16:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.518100", + "Timestamp": "2024-05-16T05:16:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.513100", + "Timestamp": "2024-05-16T05:16:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.388100", + "Timestamp": "2024-05-16T05:16:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118500", + "Timestamp": "2024-05-16T05:16:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.014900", + "Timestamp": "2024-05-16T05:16:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.009900", + "Timestamp": "2024-05-16T05:16:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.884900", + "Timestamp": "2024-05-16T05:16:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.240000", + "Timestamp": "2024-05-16T05:16:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.707900", + "Timestamp": "2024-05-16T05:16:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.677900", + "Timestamp": "2024-05-16T05:16:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.577900", + "Timestamp": "2024-05-16T05:16:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273800", + "Timestamp": "2024-05-16T05:16:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268800", + "Timestamp": "2024-05-16T05:16:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143800", + "Timestamp": "2024-05-16T05:16:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.430000", + "Timestamp": "2024-05-16T05:16:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.634900", + "Timestamp": "2024-05-16T05:16:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113600", + "Timestamp": "2024-05-16T05:16:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.407800", + "Timestamp": "2024-05-16T05:02:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.686800", + "Timestamp": "2024-05-16T05:02:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.635900", + "Timestamp": "2024-05-16T05:02:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.871700", + "Timestamp": "2024-05-16T05:02:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.406100", + "Timestamp": "2024-05-16T05:01:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.401100", + "Timestamp": "2024-05-16T05:01:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.276100", + "Timestamp": "2024-05-16T05:01:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211600", + "Timestamp": "2024-05-16T05:01:51.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.080800", + "Timestamp": "2024-05-16T05:01:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.886700", + "Timestamp": "2024-05-16T05:01:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.881700", + "Timestamp": "2024-05-16T05:01:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.756700", + "Timestamp": "2024-05-16T05:01:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.487900", + "Timestamp": "2024-05-16T05:01:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.396200", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.391200", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.266200", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.521300", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.218600", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.213600", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.088600", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.480600", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.475600", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.350600", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.415200", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.410200", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.285200", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073200", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069500", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013200", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090500", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086800", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030500", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145400", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141700", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085400", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158400", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154400", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098400", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095100", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091400", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035100", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.499100", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.494100", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.369100", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.686000", + "Timestamp": "2024-05-16T05:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.681000", + "Timestamp": "2024-05-16T05:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.556000", + "Timestamp": "2024-05-16T05:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.454400", + "Timestamp": "2024-05-16T05:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.320600", + "Timestamp": "2024-05-16T05:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.315600", + "Timestamp": "2024-05-16T05:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190600", + "Timestamp": "2024-05-16T05:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.453100", + "Timestamp": "2024-05-16T05:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112300", + "Timestamp": "2024-05-16T05:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.385000", + "Timestamp": "2024-05-16T05:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.380000", + "Timestamp": "2024-05-16T05:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.255000", + "Timestamp": "2024-05-16T05:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.255100", + "Timestamp": "2024-05-16T05:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.243500", + "Timestamp": "2024-05-16T05:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.238500", + "Timestamp": "2024-05-16T05:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.113500", + "Timestamp": "2024-05-16T05:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221300", + "Timestamp": "2024-05-16T05:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.792300", + "Timestamp": "2024-05-16T05:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.787300", + "Timestamp": "2024-05-16T05:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.662300", + "Timestamp": "2024-05-16T05:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.072400", + "Timestamp": "2024-05-16T05:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.058200", + "Timestamp": "2024-05-16T05:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.053200", + "Timestamp": "2024-05-16T05:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.928200", + "Timestamp": "2024-05-16T05:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.776900", + "Timestamp": "2024-05-16T05:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.002200", + "Timestamp": "2024-05-16T05:01:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.442400", + "Timestamp": "2024-05-16T05:01:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.437400", + "Timestamp": "2024-05-16T05:01:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.312400", + "Timestamp": "2024-05-16T05:01:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.982500", + "Timestamp": "2024-05-16T05:01:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138300", + "Timestamp": "2024-05-16T05:01:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T05:01:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078300", + "Timestamp": "2024-05-16T05:01:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068900", + "Timestamp": "2024-05-16T04:47:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039900", + "Timestamp": "2024-05-16T04:47:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008900", + "Timestamp": "2024-05-16T04:47:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.233500", + "Timestamp": "2024-05-16T04:46:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.228500", + "Timestamp": "2024-05-16T04:46:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.103500", + "Timestamp": "2024-05-16T04:46:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133300", + "Timestamp": "2024-05-16T04:46:51.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129600", + "Timestamp": "2024-05-16T04:46:51.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073300", + "Timestamp": "2024-05-16T04:46:51.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.582500", + "Timestamp": "2024-05-16T04:46:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.577500", + "Timestamp": "2024-05-16T04:46:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.452500", + "Timestamp": "2024-05-16T04:46:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.665500", + "Timestamp": "2024-05-16T04:46:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.660500", + "Timestamp": "2024-05-16T04:46:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.535500", + "Timestamp": "2024-05-16T04:46:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.380700", + "Timestamp": "2024-05-16T04:46:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.375700", + "Timestamp": "2024-05-16T04:46:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.250700", + "Timestamp": "2024-05-16T04:46:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096100", + "Timestamp": "2024-05-16T04:46:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092400", + "Timestamp": "2024-05-16T04:46:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036100", + "Timestamp": "2024-05-16T04:46:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116500", + "Timestamp": "2024-05-16T04:46:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T04:46:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056500", + "Timestamp": "2024-05-16T04:46:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212700", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.476000", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.471000", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.346000", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.308600", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.407500", + "Timestamp": "2024-05-16T04:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.193100", + "Timestamp": "2024-05-16T04:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.188100", + "Timestamp": "2024-05-16T04:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.063100", + "Timestamp": "2024-05-16T04:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.896000", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.258000", + "Timestamp": "2024-05-16T04:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.253000", + "Timestamp": "2024-05-16T04:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.128000", + "Timestamp": "2024-05-16T04:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.445100", + "Timestamp": "2024-05-16T04:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.828600", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.458100", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.453100", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.328100", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.459300", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.454300", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.329300", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103200", + "Timestamp": "2024-05-16T04:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099500", + "Timestamp": "2024-05-16T04:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043200", + "Timestamp": "2024-05-16T04:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.429000", + "Timestamp": "2024-05-16T04:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.399000", + "Timestamp": "2024-05-16T04:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.299000", + "Timestamp": "2024-05-16T04:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116700", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056700", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.447100", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.000800", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.995800", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.870800", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.046600", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.744400", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.714400", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.614400", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.438500", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.544900", + "Timestamp": "2024-05-16T04:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.413400", + "Timestamp": "2024-05-16T04:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125200", + "Timestamp": "2024-05-16T04:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121500", + "Timestamp": "2024-05-16T04:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065200", + "Timestamp": "2024-05-16T04:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.531500", + "Timestamp": "2024-05-16T04:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.526500", + "Timestamp": "2024-05-16T04:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.401500", + "Timestamp": "2024-05-16T04:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.539200", + "Timestamp": "2024-05-16T04:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.534200", + "Timestamp": "2024-05-16T04:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.409200", + "Timestamp": "2024-05-16T04:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221000", + "Timestamp": "2024-05-16T04:46:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.733300", + "Timestamp": "2024-05-16T04:46:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125900", + "Timestamp": "2024-05-16T04:46:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113600", + "Timestamp": "2024-05-16T04:46:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090700", + "Timestamp": "2024-05-16T04:46:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087000", + "Timestamp": "2024-05-16T04:46:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030700", + "Timestamp": "2024-05-16T04:46:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.848300", + "Timestamp": "2024-05-16T04:46:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.414100", + "Timestamp": "2024-05-16T04:45:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.415000", + "Timestamp": "2024-05-16T04:32:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.450000", + "Timestamp": "2024-05-16T04:31:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099000", + "Timestamp": "2024-05-16T04:31:51.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095300", + "Timestamp": "2024-05-16T04:31:51.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039000", + "Timestamp": "2024-05-16T04:31:51.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.476000", + "Timestamp": "2024-05-16T04:31:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.696900", + "Timestamp": "2024-05-16T04:31:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.691900", + "Timestamp": "2024-05-16T04:31:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.566900", + "Timestamp": "2024-05-16T04:31:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.737200", + "Timestamp": "2024-05-16T04:31:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.732200", + "Timestamp": "2024-05-16T04:31:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.607200", + "Timestamp": "2024-05-16T04:31:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.976000", + "Timestamp": "2024-05-16T04:31:41.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.877400", + "Timestamp": "2024-05-16T04:31:41.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.872400", + "Timestamp": "2024-05-16T04:31:41.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.747400", + "Timestamp": "2024-05-16T04:31:41.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.032000", + "Timestamp": "2024-05-16T04:31:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.795000", + "Timestamp": "2024-05-16T04:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.508800", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.503800", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.378800", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138100", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134400", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078100", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.920900", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.915900", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.790900", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.969900", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.964900", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.839900", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.995100", + "Timestamp": "2024-05-16T04:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.965100", + "Timestamp": "2024-05-16T04:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.865100", + "Timestamp": "2024-05-16T04:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151900", + "Timestamp": "2024-05-16T04:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148200", + "Timestamp": "2024-05-16T04:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091900", + "Timestamp": "2024-05-16T04:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314000", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.309000", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184000", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.415400", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.350300", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.345300", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.220300", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.216200", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.212200", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156200", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102000", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.387200", + "Timestamp": "2024-05-16T04:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.387100", + "Timestamp": "2024-05-16T04:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109000", + "Timestamp": "2024-05-16T04:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.475800", + "Timestamp": "2024-05-16T04:31:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.741100", + "Timestamp": "2024-05-16T04:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.736100", + "Timestamp": "2024-05-16T04:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.611100", + "Timestamp": "2024-05-16T04:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.079400", + "Timestamp": "2024-05-16T04:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062900", + "Timestamp": "2024-05-16T04:31:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002900", + "Timestamp": "2024-05-16T04:31:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002900", + "Timestamp": "2024-05-16T04:31:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120200", + "Timestamp": "2024-05-16T04:31:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117200", + "Timestamp": "2024-05-16T04:31:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060200", + "Timestamp": "2024-05-16T04:31:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088000", + "Timestamp": "2024-05-16T04:31:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084300", + "Timestamp": "2024-05-16T04:31:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028000", + "Timestamp": "2024-05-16T04:31:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218900", + "Timestamp": "2024-05-16T04:31:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139200", + "Timestamp": "2024-05-16T04:31:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179200", + "Timestamp": "2024-05-16T04:31:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079200", + "Timestamp": "2024-05-16T04:31:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.476100", + "Timestamp": "2024-05-16T04:17:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "24.796500", + "Timestamp": "2024-05-16T04:17:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.202700", + "Timestamp": "2024-05-16T04:17:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.788900", + "Timestamp": "2024-05-16T04:17:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.372500", + "Timestamp": "2024-05-16T04:17:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.367500", + "Timestamp": "2024-05-16T04:17:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.242500", + "Timestamp": "2024-05-16T04:17:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089500", + "Timestamp": "2024-05-16T04:16:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085800", + "Timestamp": "2024-05-16T04:16:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029500", + "Timestamp": "2024-05-16T04:16:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.670100", + "Timestamp": "2024-05-16T04:16:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.705600", + "Timestamp": "2024-05-16T04:16:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.665100", + "Timestamp": "2024-05-16T04:16:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.700600", + "Timestamp": "2024-05-16T04:16:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.540100", + "Timestamp": "2024-05-16T04:16:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.575600", + "Timestamp": "2024-05-16T04:16:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211600", + "Timestamp": "2024-05-16T04:16:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.554700", + "Timestamp": "2024-05-16T04:16:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.549700", + "Timestamp": "2024-05-16T04:16:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.424700", + "Timestamp": "2024-05-16T04:16:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306200", + "Timestamp": "2024-05-16T04:16:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276200", + "Timestamp": "2024-05-16T04:16:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176200", + "Timestamp": "2024-05-16T04:16:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094100", + "Timestamp": "2024-05-16T04:16:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090400", + "Timestamp": "2024-05-16T04:16:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034100", + "Timestamp": "2024-05-16T04:16:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.280500", + "Timestamp": "2024-05-16T04:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.275500", + "Timestamp": "2024-05-16T04:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150500", + "Timestamp": "2024-05-16T04:16:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.788700", + "Timestamp": "2024-05-16T04:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.406600", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.831400", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.826400", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.701400", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115700", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055700", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.901000", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085700", + "Timestamp": "2024-05-16T04:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082000", + "Timestamp": "2024-05-16T04:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025700", + "Timestamp": "2024-05-16T04:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092000", + "Timestamp": "2024-05-16T04:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088300", + "Timestamp": "2024-05-16T04:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032000", + "Timestamp": "2024-05-16T04:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.528000", + "Timestamp": "2024-05-16T04:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.523000", + "Timestamp": "2024-05-16T04:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.398000", + "Timestamp": "2024-05-16T04:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.449600", + "Timestamp": "2024-05-16T04:16:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.373900", + "Timestamp": "2024-05-16T04:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.368900", + "Timestamp": "2024-05-16T04:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.243900", + "Timestamp": "2024-05-16T04:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.312700", + "Timestamp": "2024-05-16T04:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.099500", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.094500", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.969500", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086900", + "Timestamp": "2024-05-16T04:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.057900", + "Timestamp": "2024-05-16T04:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026900", + "Timestamp": "2024-05-16T04:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.575000", + "Timestamp": "2024-05-16T04:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.570000", + "Timestamp": "2024-05-16T04:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.445000", + "Timestamp": "2024-05-16T04:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.374300", + "Timestamp": "2024-05-16T04:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.944900", + "Timestamp": "2024-05-16T04:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.939900", + "Timestamp": "2024-05-16T04:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.814900", + "Timestamp": "2024-05-16T04:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.254300", + "Timestamp": "2024-05-16T04:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.224300", + "Timestamp": "2024-05-16T04:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.124300", + "Timestamp": "2024-05-16T04:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.498100", + "Timestamp": "2024-05-16T04:16:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.988200", + "Timestamp": "2024-05-16T04:16:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.983200", + "Timestamp": "2024-05-16T04:16:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.858200", + "Timestamp": "2024-05-16T04:16:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220200", + "Timestamp": "2024-05-16T04:16:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.645200", + "Timestamp": "2024-05-16T04:16:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.313200", + "Timestamp": "2024-05-16T04:15:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.308200", + "Timestamp": "2024-05-16T04:15:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.183200", + "Timestamp": "2024-05-16T04:15:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.928900", + "Timestamp": "2024-05-16T04:15:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.327400", + "Timestamp": "2024-05-16T04:02:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.297400", + "Timestamp": "2024-05-16T04:02:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.197400", + "Timestamp": "2024-05-16T04:02:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.274700", + "Timestamp": "2024-05-16T04:02:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.244700", + "Timestamp": "2024-05-16T04:02:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144700", + "Timestamp": "2024-05-16T04:02:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.225200", + "Timestamp": "2024-05-16T04:02:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.220200", + "Timestamp": "2024-05-16T04:02:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095200", + "Timestamp": "2024-05-16T04:02:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.403000", + "Timestamp": "2024-05-16T04:01:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.398000", + "Timestamp": "2024-05-16T04:01:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.273000", + "Timestamp": "2024-05-16T04:01:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.598200", + "Timestamp": "2024-05-16T04:01:41.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.502300", + "Timestamp": "2024-05-16T04:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113400", + "Timestamp": "2024-05-16T04:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T04:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053400", + "Timestamp": "2024-05-16T04:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111100", + "Timestamp": "2024-05-16T04:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T04:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051100", + "Timestamp": "2024-05-16T04:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.476900", + "Timestamp": "2024-05-16T04:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.471900", + "Timestamp": "2024-05-16T04:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.346900", + "Timestamp": "2024-05-16T04:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.339800", + "Timestamp": "2024-05-16T04:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.186500", + "Timestamp": "2024-05-16T04:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142500", + "Timestamp": "2024-05-16T04:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138800", + "Timestamp": "2024-05-16T04:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082500", + "Timestamp": "2024-05-16T04:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.398900", + "Timestamp": "2024-05-16T04:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.393900", + "Timestamp": "2024-05-16T04:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.268900", + "Timestamp": "2024-05-16T04:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120300", + "Timestamp": "2024-05-16T04:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T04:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060300", + "Timestamp": "2024-05-16T04:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.841700", + "Timestamp": "2024-05-16T04:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437500", + "Timestamp": "2024-05-16T04:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.843900", + "Timestamp": "2024-05-16T04:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.838900", + "Timestamp": "2024-05-16T04:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.713900", + "Timestamp": "2024-05-16T04:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.762100", + "Timestamp": "2024-05-16T04:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.345200", + "Timestamp": "2024-05-16T04:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.315200", + "Timestamp": "2024-05-16T04:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.215200", + "Timestamp": "2024-05-16T04:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T04:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.025400", + "Timestamp": "2024-05-16T04:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.269700", + "Timestamp": "2024-05-16T04:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418800", + "Timestamp": "2024-05-16T04:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.095300", + "Timestamp": "2024-05-16T04:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.375500", + "Timestamp": "2024-05-16T04:01:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.370500", + "Timestamp": "2024-05-16T04:01:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.245500", + "Timestamp": "2024-05-16T04:01:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-16T04:01:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.256500", + "Timestamp": "2024-05-16T04:01:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.790700", + "Timestamp": "2024-05-16T04:01:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.528100", + "Timestamp": "2024-05-16T04:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207500", + "Timestamp": "2024-05-16T04:01:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.323100", + "Timestamp": "2024-05-16T04:01:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.318100", + "Timestamp": "2024-05-16T04:01:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.193100", + "Timestamp": "2024-05-16T04:01:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278700", + "Timestamp": "2024-05-16T04:01:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.248700", + "Timestamp": "2024-05-16T04:01:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148700", + "Timestamp": "2024-05-16T04:01:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T04:01:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100100", + "Timestamp": "2024-05-16T04:01:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043800", + "Timestamp": "2024-05-16T04:01:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.501200", + "Timestamp": "2024-05-16T04:01:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.496200", + "Timestamp": "2024-05-16T04:01:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.371200", + "Timestamp": "2024-05-16T04:01:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.147300", + "Timestamp": "2024-05-16T03:47:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.117300", + "Timestamp": "2024-05-16T03:47:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.017300", + "Timestamp": "2024-05-16T03:47:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.628900", + "Timestamp": "2024-05-16T03:47:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.623900", + "Timestamp": "2024-05-16T03:47:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.498900", + "Timestamp": "2024-05-16T03:47:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141200", + "Timestamp": "2024-05-16T03:46:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137200", + "Timestamp": "2024-05-16T03:46:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081200", + "Timestamp": "2024-05-16T03:46:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.130200", + "Timestamp": "2024-05-16T03:46:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.125200", + "Timestamp": "2024-05-16T03:46:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.000200", + "Timestamp": "2024-05-16T03:46:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137500", + "Timestamp": "2024-05-16T03:46:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133800", + "Timestamp": "2024-05-16T03:46:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077500", + "Timestamp": "2024-05-16T03:46:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.688200", + "Timestamp": "2024-05-16T03:46:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.683200", + "Timestamp": "2024-05-16T03:46:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.558200", + "Timestamp": "2024-05-16T03:46:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.168000", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.163000", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.038000", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.864400", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.056000", + "Timestamp": "2024-05-16T03:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.051000", + "Timestamp": "2024-05-16T03:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.926000", + "Timestamp": "2024-05-16T03:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.312200", + "Timestamp": "2024-05-16T03:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.282200", + "Timestamp": "2024-05-16T03:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.182200", + "Timestamp": "2024-05-16T03:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.212800", + "Timestamp": "2024-05-16T03:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.010800", + "Timestamp": "2024-05-16T03:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.005800", + "Timestamp": "2024-05-16T03:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.880800", + "Timestamp": "2024-05-16T03:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.028800", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050500", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.026000", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.021000", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.896000", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.373800", + "Timestamp": "2024-05-16T03:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-16T03:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132600", + "Timestamp": "2024-05-16T03:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032600", + "Timestamp": "2024-05-16T03:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.253200", + "Timestamp": "2024-05-16T03:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.248200", + "Timestamp": "2024-05-16T03:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123200", + "Timestamp": "2024-05-16T03:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.764000", + "Timestamp": "2024-05-16T03:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.759000", + "Timestamp": "2024-05-16T03:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.634000", + "Timestamp": "2024-05-16T03:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.157000", + "Timestamp": "2024-05-16T03:46:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.152000", + "Timestamp": "2024-05-16T03:46:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.027000", + "Timestamp": "2024-05-16T03:46:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214300", + "Timestamp": "2024-05-16T03:46:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.400300", + "Timestamp": "2024-05-16T03:46:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.043700", + "Timestamp": "2024-05-16T03:45:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.323400", + "Timestamp": "2024-05-16T03:31:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.318400", + "Timestamp": "2024-05-16T03:31:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.193400", + "Timestamp": "2024-05-16T03:31:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.758600", + "Timestamp": "2024-05-16T03:31:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.313200", + "Timestamp": "2024-05-16T03:31:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.308200", + "Timestamp": "2024-05-16T03:31:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.183200", + "Timestamp": "2024-05-16T03:31:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122700", + "Timestamp": "2024-05-16T03:31:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119000", + "Timestamp": "2024-05-16T03:31:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062700", + "Timestamp": "2024-05-16T03:31:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160600", + "Timestamp": "2024-05-16T03:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156600", + "Timestamp": "2024-05-16T03:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100600", + "Timestamp": "2024-05-16T03:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.234800", + "Timestamp": "2024-05-16T03:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.229800", + "Timestamp": "2024-05-16T03:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T03:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.695600", + "Timestamp": "2024-05-16T03:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.607100", + "Timestamp": "2024-05-16T03:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.078700", + "Timestamp": "2024-05-16T03:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.635600", + "Timestamp": "2024-05-16T03:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.605600", + "Timestamp": "2024-05-16T03:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.505600", + "Timestamp": "2024-05-16T03:31:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.376800", + "Timestamp": "2024-05-16T03:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.371800", + "Timestamp": "2024-05-16T03:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.246800", + "Timestamp": "2024-05-16T03:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.006300", + "Timestamp": "2024-05-16T03:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.001300", + "Timestamp": "2024-05-16T03:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.876300", + "Timestamp": "2024-05-16T03:31:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.526700", + "Timestamp": "2024-05-16T03:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.521700", + "Timestamp": "2024-05-16T03:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.396700", + "Timestamp": "2024-05-16T03:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.883100", + "Timestamp": "2024-05-16T03:31:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.878100", + "Timestamp": "2024-05-16T03:31:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.753100", + "Timestamp": "2024-05-16T03:31:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.556200", + "Timestamp": "2024-05-16T03:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.551200", + "Timestamp": "2024-05-16T03:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.426200", + "Timestamp": "2024-05-16T03:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.012100", + "Timestamp": "2024-05-16T03:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.007100", + "Timestamp": "2024-05-16T03:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.882100", + "Timestamp": "2024-05-16T03:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.386700", + "Timestamp": "2024-05-16T03:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.381700", + "Timestamp": "2024-05-16T03:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.256700", + "Timestamp": "2024-05-16T03:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.910500", + "Timestamp": "2024-05-16T03:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.905500", + "Timestamp": "2024-05-16T03:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.780500", + "Timestamp": "2024-05-16T03:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.840100", + "Timestamp": "2024-05-16T03:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207600", + "Timestamp": "2024-05-16T03:31:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T03:31:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-16T03:31:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046600", + "Timestamp": "2024-05-16T03:31:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.658800", + "Timestamp": "2024-05-16T03:31:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.653800", + "Timestamp": "2024-05-16T03:31:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.528800", + "Timestamp": "2024-05-16T03:31:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.341400", + "Timestamp": "2024-05-16T03:31:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.336400", + "Timestamp": "2024-05-16T03:31:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.211400", + "Timestamp": "2024-05-16T03:31:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.224000", + "Timestamp": "2024-05-16T03:31:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207000", + "Timestamp": "2024-05-16T03:31:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.442600", + "Timestamp": "2024-05-16T03:31:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.453600", + "Timestamp": "2024-05-16T03:31:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301800", + "Timestamp": "2024-05-16T03:30:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296800", + "Timestamp": "2024-05-16T03:30:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171800", + "Timestamp": "2024-05-16T03:30:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226100", + "Timestamp": "2024-05-16T03:30:57.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.799400", + "Timestamp": "2024-05-16T03:17:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.419700", + "Timestamp": "2024-05-16T03:17:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.250100", + "Timestamp": "2024-05-16T03:17:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.258300", + "Timestamp": "2024-05-16T03:17:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.245100", + "Timestamp": "2024-05-16T03:17:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.253300", + "Timestamp": "2024-05-16T03:17:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120100", + "Timestamp": "2024-05-16T03:17:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128300", + "Timestamp": "2024-05-16T03:17:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163000", + "Timestamp": "2024-05-16T03:17:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159000", + "Timestamp": "2024-05-16T03:17:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T03:17:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.144400", + "Timestamp": "2024-05-16T03:16:47.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.845800", + "Timestamp": "2024-05-16T03:16:41.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.815800", + "Timestamp": "2024-05-16T03:16:41.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.715800", + "Timestamp": "2024-05-16T03:16:41.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.336700", + "Timestamp": "2024-05-16T03:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.331700", + "Timestamp": "2024-05-16T03:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.206700", + "Timestamp": "2024-05-16T03:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.922900", + "Timestamp": "2024-05-16T03:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.917900", + "Timestamp": "2024-05-16T03:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.792900", + "Timestamp": "2024-05-16T03:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075900", + "Timestamp": "2024-05-16T03:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.046900", + "Timestamp": "2024-05-16T03:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015900", + "Timestamp": "2024-05-16T03:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.420000", + "Timestamp": "2024-05-16T03:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.906100", + "Timestamp": "2024-05-16T03:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.901100", + "Timestamp": "2024-05-16T03:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.776100", + "Timestamp": "2024-05-16T03:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.717700", + "Timestamp": "2024-05-16T03:16:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T03:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-16T03:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046300", + "Timestamp": "2024-05-16T03:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.117500", + "Timestamp": "2024-05-16T03:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.484800", + "Timestamp": "2024-05-16T03:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.974100", + "Timestamp": "2024-05-16T03:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.969100", + "Timestamp": "2024-05-16T03:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.844100", + "Timestamp": "2024-05-16T03:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.954600", + "Timestamp": "2024-05-16T03:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.949600", + "Timestamp": "2024-05-16T03:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.824600", + "Timestamp": "2024-05-16T03:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.773700", + "Timestamp": "2024-05-16T03:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.016800", + "Timestamp": "2024-05-16T03:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.027900", + "Timestamp": "2024-05-16T03:15:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.053400", + "Timestamp": "2024-05-16T03:15:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073600", + "Timestamp": "2024-05-16T03:02:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044600", + "Timestamp": "2024-05-16T03:02:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013600", + "Timestamp": "2024-05-16T03:02:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.025100", + "Timestamp": "2024-05-16T03:02:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301200", + "Timestamp": "2024-05-16T03:02:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296200", + "Timestamp": "2024-05-16T03:02:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171200", + "Timestamp": "2024-05-16T03:02:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.430300", + "Timestamp": "2024-05-16T03:01:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423500", + "Timestamp": "2024-05-16T03:01:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.280600", + "Timestamp": "2024-05-16T03:01:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.084800", + "Timestamp": "2024-05-16T03:01:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156000", + "Timestamp": "2024-05-16T03:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152000", + "Timestamp": "2024-05-16T03:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T03:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132400", + "Timestamp": "2024-05-16T03:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128400", + "Timestamp": "2024-05-16T03:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072400", + "Timestamp": "2024-05-16T03:01:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.245400", + "Timestamp": "2024-05-16T03:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.921300", + "Timestamp": "2024-05-16T03:01:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093100", + "Timestamp": "2024-05-16T03:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089400", + "Timestamp": "2024-05-16T03:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033100", + "Timestamp": "2024-05-16T03:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.154200", + "Timestamp": "2024-05-16T03:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.823100", + "Timestamp": "2024-05-16T03:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T03:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101900", + "Timestamp": "2024-05-16T03:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045600", + "Timestamp": "2024-05-16T03:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.414900", + "Timestamp": "2024-05-16T03:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.384900", + "Timestamp": "2024-05-16T03:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.284900", + "Timestamp": "2024-05-16T03:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215500", + "Timestamp": "2024-05-16T03:01:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209000", + "Timestamp": "2024-05-16T03:01:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089500", + "Timestamp": "2024-05-16T03:01:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085800", + "Timestamp": "2024-05-16T03:01:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029500", + "Timestamp": "2024-05-16T03:01:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270800", + "Timestamp": "2024-05-16T03:01:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265800", + "Timestamp": "2024-05-16T03:01:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140800", + "Timestamp": "2024-05-16T03:01:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135800", + "Timestamp": "2024-05-16T03:01:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131800", + "Timestamp": "2024-05-16T03:01:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075800", + "Timestamp": "2024-05-16T03:01:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.495600", + "Timestamp": "2024-05-16T02:47:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113200", + "Timestamp": "2024-05-16T02:47:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T02:47:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053200", + "Timestamp": "2024-05-16T02:47:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.097400", + "Timestamp": "2024-05-16T02:46:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.346400", + "Timestamp": "2024-05-16T02:46:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.341400", + "Timestamp": "2024-05-16T02:46:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.216400", + "Timestamp": "2024-05-16T02:46:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.459400", + "Timestamp": "2024-05-16T02:46:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.949200", + "Timestamp": "2024-05-16T02:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.944200", + "Timestamp": "2024-05-16T02:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.819200", + "Timestamp": "2024-05-16T02:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.292900", + "Timestamp": "2024-05-16T02:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.287900", + "Timestamp": "2024-05-16T02:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162900", + "Timestamp": "2024-05-16T02:46:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138500", + "Timestamp": "2024-05-16T02:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134500", + "Timestamp": "2024-05-16T02:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078500", + "Timestamp": "2024-05-16T02:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.459200", + "Timestamp": "2024-05-16T02:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.252200", + "Timestamp": "2024-05-16T02:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.247200", + "Timestamp": "2024-05-16T02:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122200", + "Timestamp": "2024-05-16T02:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074800", + "Timestamp": "2024-05-16T02:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.045800", + "Timestamp": "2024-05-16T02:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014800", + "Timestamp": "2024-05-16T02:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.139500", + "Timestamp": "2024-05-16T02:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.109500", + "Timestamp": "2024-05-16T02:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.009500", + "Timestamp": "2024-05-16T02:46:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.242400", + "Timestamp": "2024-05-16T02:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.237400", + "Timestamp": "2024-05-16T02:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-16T02:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137000", + "Timestamp": "2024-05-16T02:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133300", + "Timestamp": "2024-05-16T02:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077000", + "Timestamp": "2024-05-16T02:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208600", + "Timestamp": "2024-05-16T02:46:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063600", + "Timestamp": "2024-05-16T02:46:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003600", + "Timestamp": "2024-05-16T02:46:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003600", + "Timestamp": "2024-05-16T02:46:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-16T02:46:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219900", + "Timestamp": "2024-05-16T02:46:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.000500", + "Timestamp": "2024-05-16T02:46:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.970500", + "Timestamp": "2024-05-16T02:46:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.870500", + "Timestamp": "2024-05-16T02:46:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077700", + "Timestamp": "2024-05-16T02:45:56.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074000", + "Timestamp": "2024-05-16T02:45:56.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017700", + "Timestamp": "2024-05-16T02:45:56.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.840700", + "Timestamp": "2024-05-16T02:32:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.770900", + "Timestamp": "2024-05-16T02:32:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.765900", + "Timestamp": "2024-05-16T02:32:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.640900", + "Timestamp": "2024-05-16T02:32:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220400", + "Timestamp": "2024-05-16T02:32:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418300", + "Timestamp": "2024-05-16T02:32:10.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.727600", + "Timestamp": "2024-05-16T02:32:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441100", + "Timestamp": "2024-05-16T02:31:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097900", + "Timestamp": "2024-05-16T02:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137900", + "Timestamp": "2024-05-16T02:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037900", + "Timestamp": "2024-05-16T02:31:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.352400", + "Timestamp": "2024-05-16T02:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.347400", + "Timestamp": "2024-05-16T02:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.222400", + "Timestamp": "2024-05-16T02:31:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.474800", + "Timestamp": "2024-05-16T02:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.954300", + "Timestamp": "2024-05-16T02:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224800", + "Timestamp": "2024-05-16T02:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079400", + "Timestamp": "2024-05-16T02:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075700", + "Timestamp": "2024-05-16T02:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019400", + "Timestamp": "2024-05-16T02:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.278800", + "Timestamp": "2024-05-16T02:31:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.723800", + "Timestamp": "2024-05-16T02:31:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.500100", + "Timestamp": "2024-05-16T02:17:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.051500", + "Timestamp": "2024-05-16T02:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.717900", + "Timestamp": "2024-05-16T02:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.712900", + "Timestamp": "2024-05-16T02:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.587900", + "Timestamp": "2024-05-16T02:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.589500", + "Timestamp": "2024-05-16T02:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.584500", + "Timestamp": "2024-05-16T02:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.459500", + "Timestamp": "2024-05-16T02:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113900", + "Timestamp": "2024-05-16T02:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-16T02:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053900", + "Timestamp": "2024-05-16T02:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-16T02:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137200", + "Timestamp": "2024-05-16T02:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037200", + "Timestamp": "2024-05-16T02:16:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307800", + "Timestamp": "2024-05-16T02:16:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302800", + "Timestamp": "2024-05-16T02:16:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177800", + "Timestamp": "2024-05-16T02:16:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.915400", + "Timestamp": "2024-05-16T02:16:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.910400", + "Timestamp": "2024-05-16T02:16:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.785400", + "Timestamp": "2024-05-16T02:16:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061800", + "Timestamp": "2024-05-16T02:02:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001800", + "Timestamp": "2024-05-16T02:02:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001800", + "Timestamp": "2024-05-16T02:02:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.864600", + "Timestamp": "2024-05-16T02:02:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220100", + "Timestamp": "2024-05-16T02:02:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.889800", + "Timestamp": "2024-05-16T02:01:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.978100", + "Timestamp": "2024-05-16T02:01:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.948100", + "Timestamp": "2024-05-16T02:01:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.848100", + "Timestamp": "2024-05-16T02:01:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.506500", + "Timestamp": "2024-05-16T02:01:41.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-16T02:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T02:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049300", + "Timestamp": "2024-05-16T02:01:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121600", + "Timestamp": "2024-05-16T02:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117900", + "Timestamp": "2024-05-16T02:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061600", + "Timestamp": "2024-05-16T02:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.774600", + "Timestamp": "2024-05-16T02:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087900", + "Timestamp": "2024-05-16T02:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084200", + "Timestamp": "2024-05-16T02:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027900", + "Timestamp": "2024-05-16T02:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-16T02:01:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095100", + "Timestamp": "2024-05-16T02:01:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038800", + "Timestamp": "2024-05-16T02:01:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207800", + "Timestamp": "2024-05-16T02:01:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.704600", + "Timestamp": "2024-05-16T01:59:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.428400", + "Timestamp": "2024-05-16T01:54:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.427200", + "Timestamp": "2024-05-16T01:48:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.427200", + "Timestamp": "2024-05-16T01:48:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.636800", + "Timestamp": "2024-05-16T01:48:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.250600", + "Timestamp": "2024-05-16T01:46:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.857700", + "Timestamp": "2024-05-16T01:46:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.024600", + "Timestamp": "2024-05-16T01:46:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100100", + "Timestamp": "2024-05-16T01:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140100", + "Timestamp": "2024-05-16T01:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040100", + "Timestamp": "2024-05-16T01:46:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224000", + "Timestamp": "2024-05-16T01:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111700", + "Timestamp": "2024-05-16T01:46:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417200", + "Timestamp": "2024-05-16T01:36:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.283900", + "Timestamp": "2024-05-16T01:36:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.253900", + "Timestamp": "2024-05-16T01:36:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.153900", + "Timestamp": "2024-05-16T01:36:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085100", + "Timestamp": "2024-05-16T01:32:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.081400", + "Timestamp": "2024-05-16T01:32:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025100", + "Timestamp": "2024-05-16T01:32:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.242700", + "Timestamp": "2024-05-16T01:32:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074500", + "Timestamp": "2024-05-16T01:31:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.045500", + "Timestamp": "2024-05-16T01:31:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014500", + "Timestamp": "2024-05-16T01:31:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T01:31:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103100", + "Timestamp": "2024-05-16T01:31:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046800", + "Timestamp": "2024-05-16T01:31:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137400", + "Timestamp": "2024-05-16T01:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133400", + "Timestamp": "2024-05-16T01:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077400", + "Timestamp": "2024-05-16T01:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.238200", + "Timestamp": "2024-05-16T01:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.463500", + "Timestamp": "2024-05-16T01:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133400", + "Timestamp": "2024-05-16T01:31:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173400", + "Timestamp": "2024-05-16T01:31:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073400", + "Timestamp": "2024-05-16T01:31:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129900", + "Timestamp": "2024-05-16T01:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169900", + "Timestamp": "2024-05-16T01:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069900", + "Timestamp": "2024-05-16T01:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.984500", + "Timestamp": "2024-05-16T01:31:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.979500", + "Timestamp": "2024-05-16T01:31:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.854500", + "Timestamp": "2024-05-16T01:31:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.232700", + "Timestamp": "2024-05-16T01:31:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073600", + "Timestamp": "2024-05-16T01:17:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044600", + "Timestamp": "2024-05-16T01:17:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013600", + "Timestamp": "2024-05-16T01:17:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219800", + "Timestamp": "2024-05-16T01:16:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.304100", + "Timestamp": "2024-05-16T01:16:51.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.299100", + "Timestamp": "2024-05-16T01:16:51.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.174100", + "Timestamp": "2024-05-16T01:16:51.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.240500", + "Timestamp": "2024-05-16T01:16:47.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.235500", + "Timestamp": "2024-05-16T01:16:47.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T01:16:47.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087600", + "Timestamp": "2024-05-16T01:16:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083900", + "Timestamp": "2024-05-16T01:16:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027600", + "Timestamp": "2024-05-16T01:16:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.709200", + "Timestamp": "2024-05-16T01:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121500", + "Timestamp": "2024-05-16T01:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117800", + "Timestamp": "2024-05-16T01:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061500", + "Timestamp": "2024-05-16T01:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.328800", + "Timestamp": "2024-05-16T01:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323800", + "Timestamp": "2024-05-16T01:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.198800", + "Timestamp": "2024-05-16T01:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165200", + "Timestamp": "2024-05-16T01:16:09.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161500", + "Timestamp": "2024-05-16T01:16:09.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T01:16:09.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.630700", + "Timestamp": "2024-05-16T01:01:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173600", + "Timestamp": "2024-05-16T01:01:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169600", + "Timestamp": "2024-05-16T01:01:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113600", + "Timestamp": "2024-05-16T01:01:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.571000", + "Timestamp": "2024-05-16T01:01:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085200", + "Timestamp": "2024-05-16T01:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.081500", + "Timestamp": "2024-05-16T01:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025200", + "Timestamp": "2024-05-16T01:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.255900", + "Timestamp": "2024-05-16T01:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273200", + "Timestamp": "2024-05-16T01:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268200", + "Timestamp": "2024-05-16T01:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143200", + "Timestamp": "2024-05-16T01:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083600", + "Timestamp": "2024-05-16T01:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079900", + "Timestamp": "2024-05-16T01:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023600", + "Timestamp": "2024-05-16T01:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.168500", + "Timestamp": "2024-05-16T01:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.163500", + "Timestamp": "2024-05-16T01:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.038500", + "Timestamp": "2024-05-16T01:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.234100", + "Timestamp": "2024-05-16T00:46:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.712900", + "Timestamp": "2024-05-16T00:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.719700", + "Timestamp": "2024-05-16T00:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.714700", + "Timestamp": "2024-05-16T00:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.589700", + "Timestamp": "2024-05-16T00:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103600", + "Timestamp": "2024-05-16T00:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099600", + "Timestamp": "2024-05-16T00:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043600", + "Timestamp": "2024-05-16T00:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T00:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102200", + "Timestamp": "2024-05-16T00:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045900", + "Timestamp": "2024-05-16T00:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219100", + "Timestamp": "2024-05-16T00:46:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071700", + "Timestamp": "2024-05-16T00:32:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068000", + "Timestamp": "2024-05-16T00:32:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011700", + "Timestamp": "2024-05-16T00:32:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209600", + "Timestamp": "2024-05-16T00:31:51.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072300", + "Timestamp": "2024-05-16T00:31:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068600", + "Timestamp": "2024-05-16T00:31:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012300", + "Timestamp": "2024-05-16T00:31:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418400", + "Timestamp": "2024-05-16T00:31:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094800", + "Timestamp": "2024-05-16T00:31:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T00:31:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034800", + "Timestamp": "2024-05-16T00:31:02.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.855600", + "Timestamp": "2024-05-16T00:17:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T00:16:51.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.228500", + "Timestamp": "2024-05-16T00:16:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-16T00:16:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.113800", + "Timestamp": "2024-05-16T00:16:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124600", + "Timestamp": "2024-05-16T00:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140900", + "Timestamp": "2024-05-16T00:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137200", + "Timestamp": "2024-05-16T00:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080900", + "Timestamp": "2024-05-16T00:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301300", + "Timestamp": "2024-05-16T00:04:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296300", + "Timestamp": "2024-05-16T00:04:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171300", + "Timestamp": "2024-05-16T00:04:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.747200", + "Timestamp": "2024-05-16T00:03:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.747200", + "Timestamp": "2024-05-16T00:03:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.747200", + "Timestamp": "2024-05-16T00:03:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073100", + "Timestamp": "2024-05-16T00:02:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069400", + "Timestamp": "2024-05-16T00:02:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013100", + "Timestamp": "2024-05-16T00:02:03.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.096800", + "Timestamp": "2024-05-16T00:01:52.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115000", + "Timestamp": "2024-05-16T00:01:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-16T00:01:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T00:01:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046900", + "Timestamp": "2024-05-16T00:01:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089000", + "Timestamp": "2024-05-16T00:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085300", + "Timestamp": "2024-05-16T00:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029000", + "Timestamp": "2024-05-16T00:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.848100", + "Timestamp": "2024-05-16T00:01:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093300", + "Timestamp": "2024-05-16T00:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089300", + "Timestamp": "2024-05-16T00:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033300", + "Timestamp": "2024-05-16T00:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.681000", + "Timestamp": "2024-05-16T00:00:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.676000", + "Timestamp": "2024-05-16T00:00:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.551000", + "Timestamp": "2024-05-16T00:00:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.873600", + "Timestamp": "2024-05-15T23:59:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.873600", + "Timestamp": "2024-05-15T23:59:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.873600", + "Timestamp": "2024-05-15T23:59:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-15T23:58:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094200", + "Timestamp": "2024-05-15T23:58:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090200", + "Timestamp": "2024-05-15T23:58:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034200", + "Timestamp": "2024-05-15T23:58:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118900", + "Timestamp": "2024-05-15T23:58:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.195800", + "Timestamp": "2024-05-15T23:57:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192100", + "Timestamp": "2024-05-15T23:57:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.135800", + "Timestamp": "2024-05-15T23:57:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.275700", + "Timestamp": "2024-05-15T23:57:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.426000", + "Timestamp": "2024-05-15T23:57:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063700", + "Timestamp": "2024-05-15T23:57:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066000", + "Timestamp": "2024-05-15T23:57:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066400", + "Timestamp": "2024-05-15T23:57:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.035000", + "Timestamp": "2024-05-15T23:57:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037300", + "Timestamp": "2024-05-15T23:57:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037700", + "Timestamp": "2024-05-15T23:57:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003700", + "Timestamp": "2024-05-15T23:57:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006000", + "Timestamp": "2024-05-15T23:57:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006400", + "Timestamp": "2024-05-15T23:57:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.398800", + "Timestamp": "2024-05-15T23:57:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.398800", + "Timestamp": "2024-05-15T23:57:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-15T23:55:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-15T23:55:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.713600", + "Timestamp": "2024-05-15T23:51:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.713600", + "Timestamp": "2024-05-15T23:51:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.743800", + "Timestamp": "2024-05-15T23:50:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.743800", + "Timestamp": "2024-05-15T23:50:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151400", + "Timestamp": "2024-05-15T23:47:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147700", + "Timestamp": "2024-05-15T23:47:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091400", + "Timestamp": "2024-05-15T23:47:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095100", + "Timestamp": "2024-05-15T23:47:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091400", + "Timestamp": "2024-05-15T23:47:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035100", + "Timestamp": "2024-05-15T23:47:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079800", + "Timestamp": "2024-05-15T23:46:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076100", + "Timestamp": "2024-05-15T23:46:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019800", + "Timestamp": "2024-05-15T23:46:55.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-15T23:46:52.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.012200", + "Timestamp": "2024-05-15T23:46:47.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-15T23:46:47.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.052900", + "Timestamp": "2024-05-15T23:46:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069500", + "Timestamp": "2024-05-15T23:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065800", + "Timestamp": "2024-05-15T23:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009500", + "Timestamp": "2024-05-15T23:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.992700", + "Timestamp": "2024-05-15T23:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133500", + "Timestamp": "2024-05-15T23:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129800", + "Timestamp": "2024-05-15T23:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073500", + "Timestamp": "2024-05-15T23:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.954100", + "Timestamp": "2024-05-15T23:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.949100", + "Timestamp": "2024-05-15T23:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.824100", + "Timestamp": "2024-05-15T23:46:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.102700", + "Timestamp": "2024-05-15T23:33:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-15T23:33:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099600", + "Timestamp": "2024-05-15T23:33:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043300", + "Timestamp": "2024-05-15T23:33:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062800", + "Timestamp": "2024-05-15T23:33:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065200", + "Timestamp": "2024-05-15T23:33:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002800", + "Timestamp": "2024-05-15T23:33:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-15T23:33:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002800", + "Timestamp": "2024-05-15T23:33:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-15T23:33:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010400", + "Timestamp": "2024-05-15T23:33:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010400", + "Timestamp": "2024-05-15T23:33:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073100", + "Timestamp": "2024-05-15T23:33:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072700", + "Timestamp": "2024-05-15T23:33:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073900", + "Timestamp": "2024-05-15T23:33:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044100", + "Timestamp": "2024-05-15T23:33:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043700", + "Timestamp": "2024-05-15T23:33:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044900", + "Timestamp": "2024-05-15T23:33:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013100", + "Timestamp": "2024-05-15T23:33:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012700", + "Timestamp": "2024-05-15T23:33:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013900", + "Timestamp": "2024-05-15T23:33:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-15T23:33:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100000", + "Timestamp": "2024-05-15T23:33:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043700", + "Timestamp": "2024-05-15T23:33:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-15T23:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-15T23:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045700", + "Timestamp": "2024-05-15T23:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099800", + "Timestamp": "2024-05-15T23:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096100", + "Timestamp": "2024-05-15T23:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039800", + "Timestamp": "2024-05-15T23:31:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.864800", + "Timestamp": "2024-05-15T23:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095300", + "Timestamp": "2024-05-15T23:31:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091600", + "Timestamp": "2024-05-15T23:31:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035300", + "Timestamp": "2024-05-15T23:31:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.386700", + "Timestamp": "2024-05-15T23:18:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069300", + "Timestamp": "2024-05-15T23:17:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065600", + "Timestamp": "2024-05-15T23:17:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009300", + "Timestamp": "2024-05-15T23:17:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.201600", + "Timestamp": "2024-05-15T23:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-15T23:16:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-15T23:16:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048600", + "Timestamp": "2024-05-15T23:16:17.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.551400", + "Timestamp": "2024-05-15T23:10:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.551400", + "Timestamp": "2024-05-15T23:10:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.097000", + "Timestamp": "2024-05-15T23:02:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209900", + "Timestamp": "2024-05-15T23:01:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.193800", + "Timestamp": "2024-05-15T23:01:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.456200", + "Timestamp": "2024-05-15T23:01:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354000", + "Timestamp": "2024-05-15T23:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349000", + "Timestamp": "2024-05-15T23:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224000", + "Timestamp": "2024-05-15T23:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211900", + "Timestamp": "2024-05-15T23:01:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103600", + "Timestamp": "2024-05-15T22:47:51.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.989100", + "Timestamp": "2024-05-15T22:47:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.428300", + "Timestamp": "2024-05-15T22:46:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.423300", + "Timestamp": "2024-05-15T22:46:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.298300", + "Timestamp": "2024-05-15T22:46:50.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.885600", + "Timestamp": "2024-05-15T22:46:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.446900", + "Timestamp": "2024-05-15T22:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.441900", + "Timestamp": "2024-05-15T22:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.316900", + "Timestamp": "2024-05-15T22:46:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069500", + "Timestamp": "2024-05-15T22:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065800", + "Timestamp": "2024-05-15T22:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009500", + "Timestamp": "2024-05-15T22:46:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.640500", + "Timestamp": "2024-05-15T22:45:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.869700", + "Timestamp": "2024-05-15T22:42:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.869700", + "Timestamp": "2024-05-15T22:42:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206700", + "Timestamp": "2024-05-15T22:35:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.663300", + "Timestamp": "2024-05-15T22:31:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306100", + "Timestamp": "2024-05-15T22:31:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301100", + "Timestamp": "2024-05-15T22:31:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176100", + "Timestamp": "2024-05-15T22:31:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.447500", + "Timestamp": "2024-05-15T22:17:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.442500", + "Timestamp": "2024-05-15T22:17:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.317500", + "Timestamp": "2024-05-15T22:17:07.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.676800", + "Timestamp": "2024-05-15T22:17:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.671800", + "Timestamp": "2024-05-15T22:17:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.546800", + "Timestamp": "2024-05-15T22:17:06.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.809200", + "Timestamp": "2024-05-15T22:17:00.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-15T22:16:52.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110900", + "Timestamp": "2024-05-15T22:16:39.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.252600", + "Timestamp": "2024-05-15T22:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.247600", + "Timestamp": "2024-05-15T22:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122600", + "Timestamp": "2024-05-15T22:16:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.376600", + "Timestamp": "2024-05-15T22:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.371600", + "Timestamp": "2024-05-15T22:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.246600", + "Timestamp": "2024-05-15T22:16:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108900", + "Timestamp": "2024-05-15T22:02:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113400", + "Timestamp": "2024-05-15T22:01:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.190100", + "Timestamp": "2024-05-15T22:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.677600", + "Timestamp": "2024-05-15T21:58:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.677600", + "Timestamp": "2024-05-15T21:58:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115500", + "Timestamp": "2024-05-15T21:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111800", + "Timestamp": "2024-05-15T21:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055500", + "Timestamp": "2024-05-15T21:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.067000", + "Timestamp": "2024-05-15T21:46:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088500", + "Timestamp": "2024-05-15T21:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084800", + "Timestamp": "2024-05-15T21:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028500", + "Timestamp": "2024-05-15T21:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.665600", + "Timestamp": "2024-05-15T21:33:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210100", + "Timestamp": "2024-05-15T21:31:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.706600", + "Timestamp": "2024-05-15T21:31:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-15T21:31:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108800", + "Timestamp": "2024-05-15T21:16:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105100", + "Timestamp": "2024-05-15T21:16:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048800", + "Timestamp": "2024-05-15T21:16:38.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094000", + "Timestamp": "2024-05-15T21:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090300", + "Timestamp": "2024-05-15T21:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034000", + "Timestamp": "2024-05-15T21:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070400", + "Timestamp": "2024-05-15T21:04:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072700", + "Timestamp": "2024-05-15T21:04:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041400", + "Timestamp": "2024-05-15T21:04:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043700", + "Timestamp": "2024-05-15T21:04:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010400", + "Timestamp": "2024-05-15T21:04:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012700", + "Timestamp": "2024-05-15T21:04:58.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118800", + "Timestamp": "2024-05-15T21:03:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121100", + "Timestamp": "2024-05-15T21:03:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115100", + "Timestamp": "2024-05-15T21:03:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117400", + "Timestamp": "2024-05-15T21:03:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058800", + "Timestamp": "2024-05-15T21:03:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061100", + "Timestamp": "2024-05-15T21:03:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.448200", + "Timestamp": "2024-05-15T21:03:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.205600", + "Timestamp": "2024-05-15T21:03:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.205600", + "Timestamp": "2024-05-15T21:03:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.863600", + "Timestamp": "2024-05-15T21:03:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.863600", + "Timestamp": "2024-05-15T21:03:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.858600", + "Timestamp": "2024-05-15T21:03:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.858600", + "Timestamp": "2024-05-15T21:03:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.733600", + "Timestamp": "2024-05-15T21:03:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.733600", + "Timestamp": "2024-05-15T21:03:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.832800", + "Timestamp": "2024-05-15T21:03:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.832800", + "Timestamp": "2024-05-15T21:03:31.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.284700", + "Timestamp": "2024-05-15T21:03:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.284700", + "Timestamp": "2024-05-15T21:03:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096700", + "Timestamp": "2024-05-15T21:02:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093000", + "Timestamp": "2024-05-15T21:02:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036700", + "Timestamp": "2024-05-15T21:02:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156400", + "Timestamp": "2024-05-15T21:01:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196400", + "Timestamp": "2024-05-15T21:01:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096400", + "Timestamp": "2024-05-15T21:01:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071600", + "Timestamp": "2024-05-15T21:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042600", + "Timestamp": "2024-05-15T21:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011600", + "Timestamp": "2024-05-15T21:01:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101900", + "Timestamp": "2024-05-15T21:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098200", + "Timestamp": "2024-05-15T21:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041900", + "Timestamp": "2024-05-15T21:01:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067700", + "Timestamp": "2024-05-15T21:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038700", + "Timestamp": "2024-05-15T21:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007700", + "Timestamp": "2024-05-15T21:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-15T20:47:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.097900", + "Timestamp": "2024-05-15T20:47:18.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.988200", + "Timestamp": "2024-05-15T20:31:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.983200", + "Timestamp": "2024-05-15T20:31:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.858200", + "Timestamp": "2024-05-15T20:31:48.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-15T20:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-15T20:16:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137400", + "Timestamp": "2024-05-15T20:02:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133700", + "Timestamp": "2024-05-15T20:02:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077400", + "Timestamp": "2024-05-15T20:02:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095300", + "Timestamp": "2024-05-15T20:01:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091600", + "Timestamp": "2024-05-15T20:01:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035300", + "Timestamp": "2024-05-15T20:01:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.518800", + "Timestamp": "2024-05-15T20:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.513800", + "Timestamp": "2024-05-15T20:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.388800", + "Timestamp": "2024-05-15T20:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073600", + "Timestamp": "2024-05-15T20:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044600", + "Timestamp": "2024-05-15T20:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013600", + "Timestamp": "2024-05-15T20:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119800", + "Timestamp": "2024-05-15T20:01:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101600", + "Timestamp": "2024-05-15T19:46:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097600", + "Timestamp": "2024-05-15T19:46:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041600", + "Timestamp": "2024-05-15T19:46:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010500", + "Timestamp": "2024-05-15T19:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010500", + "Timestamp": "2024-05-15T19:46:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062300", + "Timestamp": "2024-05-15T19:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002300", + "Timestamp": "2024-05-15T19:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002300", + "Timestamp": "2024-05-15T19:46:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206500", + "Timestamp": "2024-05-15T19:32:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077800", + "Timestamp": "2024-05-15T19:31:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.048800", + "Timestamp": "2024-05-15T19:31:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017800", + "Timestamp": "2024-05-15T19:31:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084400", + "Timestamp": "2024-05-15T19:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080700", + "Timestamp": "2024-05-15T19:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024400", + "Timestamp": "2024-05-15T19:31:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063400", + "Timestamp": "2024-05-15T19:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003400", + "Timestamp": "2024-05-15T19:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003400", + "Timestamp": "2024-05-15T19:31:19.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103600", + "Timestamp": "2024-05-15T19:17:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066900", + "Timestamp": "2024-05-15T19:17:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.036900", + "Timestamp": "2024-05-15T19:17:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006900", + "Timestamp": "2024-05-15T19:17:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-15T19:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-15T19:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044200", + "Timestamp": "2024-05-15T19:16:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-15T19:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112500", + "Timestamp": "2024-05-15T19:16:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067500", + "Timestamp": "2024-05-15T19:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038500", + "Timestamp": "2024-05-15T19:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007500", + "Timestamp": "2024-05-15T19:01:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-15T18:47:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103900", + "Timestamp": "2024-05-15T18:47:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047600", + "Timestamp": "2024-05-15T18:47:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113900", + "Timestamp": "2024-05-15T18:47:09.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113700", + "Timestamp": "2024-05-15T18:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099700", + "Timestamp": "2024-05-15T18:46:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-15T18:46:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039700", + "Timestamp": "2024-05-15T18:46:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.331200", + "Timestamp": "2024-05-15T18:39:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.331200", + "Timestamp": "2024-05-15T18:39:13.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.414600", + "Timestamp": "2024-05-15T18:16:32.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097700", + "Timestamp": "2024-05-15T18:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094000", + "Timestamp": "2024-05-15T18:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037700", + "Timestamp": "2024-05-15T18:16:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077100", + "Timestamp": "2024-05-15T18:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073400", + "Timestamp": "2024-05-15T18:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017100", + "Timestamp": "2024-05-15T18:16:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-15T18:12:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-15T18:12:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072800", + "Timestamp": "2024-05-15T18:12:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071800", + "Timestamp": "2024-05-15T18:12:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073200", + "Timestamp": "2024-05-15T18:12:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069100", + "Timestamp": "2024-05-15T18:12:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068100", + "Timestamp": "2024-05-15T18:12:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069500", + "Timestamp": "2024-05-15T18:12:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012800", + "Timestamp": "2024-05-15T18:12:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011800", + "Timestamp": "2024-05-15T18:12:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013200", + "Timestamp": "2024-05-15T18:12:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.597200", + "Timestamp": "2024-05-15T18:12:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.592200", + "Timestamp": "2024-05-15T18:12:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.467200", + "Timestamp": "2024-05-15T18:12:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.411200", + "Timestamp": "2024-05-15T18:12:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.411200", + "Timestamp": "2024-05-15T18:12:08.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125100", + "Timestamp": "2024-05-15T18:11:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125300", + "Timestamp": "2024-05-15T18:11:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072100", + "Timestamp": "2024-05-15T18:10:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072900", + "Timestamp": "2024-05-15T18:10:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068400", + "Timestamp": "2024-05-15T18:10:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069200", + "Timestamp": "2024-05-15T18:10:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012100", + "Timestamp": "2024-05-15T18:10:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012900", + "Timestamp": "2024-05-15T18:10:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.642300", + "Timestamp": "2024-05-15T18:01:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.642300", + "Timestamp": "2024-05-15T18:01:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104700", + "Timestamp": "2024-05-15T18:01:26.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.677600", + "Timestamp": "2024-05-15T17:49:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.677600", + "Timestamp": "2024-05-15T17:49:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.677600", + "Timestamp": "2024-05-15T17:49:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091900", + "Timestamp": "2024-05-15T17:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088200", + "Timestamp": "2024-05-15T17:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031900", + "Timestamp": "2024-05-15T17:46:35.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.024500", + "Timestamp": "2024-05-15T17:46:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225700", + "Timestamp": "2024-05-15T17:46:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-15T17:31:36.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112300", + "Timestamp": "2024-05-15T17:16:46.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068400", + "Timestamp": "2024-05-15T17:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038400", + "Timestamp": "2024-05-15T17:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008400", + "Timestamp": "2024-05-15T17:16:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.012100", + "Timestamp": "2024-05-15T17:16:25.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083800", + "Timestamp": "2024-05-15T17:02:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080100", + "Timestamp": "2024-05-15T17:02:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023800", + "Timestamp": "2024-05-15T17:02:01.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.123300", + "Timestamp": "2024-05-15T17:01:49.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111100", + "Timestamp": "2024-05-15T17:01:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076800", + "Timestamp": "2024-05-15T17:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073100", + "Timestamp": "2024-05-15T17:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016800", + "Timestamp": "2024-05-15T17:01:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109200", + "Timestamp": "2024-05-15T16:48:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109200", + "Timestamp": "2024-05-15T16:48:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109200", + "Timestamp": "2024-05-15T16:48:43.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115400", + "Timestamp": "2024-05-15T16:47:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226100", + "Timestamp": "2024-05-15T16:47:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067200", + "Timestamp": "2024-05-15T16:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038200", + "Timestamp": "2024-05-15T16:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007200", + "Timestamp": "2024-05-15T16:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.275700", + "Timestamp": "2024-05-15T16:32:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.275700", + "Timestamp": "2024-05-15T16:32:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.193500", + "Timestamp": "2024-05-15T16:31:40.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074700", + "Timestamp": "2024-05-15T16:16:56.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071000", + "Timestamp": "2024-05-15T16:16:56.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014700", + "Timestamp": "2024-05-15T16:16:56.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137300", + "Timestamp": "2024-05-15T16:16:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133600", + "Timestamp": "2024-05-15T16:16:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077300", + "Timestamp": "2024-05-15T16:16:53.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.893900", + "Timestamp": "2024-05-15T16:16:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-15T16:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102300", + "Timestamp": "2024-05-15T16:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098300", + "Timestamp": "2024-05-15T16:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042300", + "Timestamp": "2024-05-15T16:16:33.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-15T16:02:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089400", + "Timestamp": "2024-05-15T16:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085700", + "Timestamp": "2024-05-15T16:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029400", + "Timestamp": "2024-05-15T16:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.064400", + "Timestamp": "2024-05-15T15:56:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.064400", + "Timestamp": "2024-05-15T15:56:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.059400", + "Timestamp": "2024-05-15T15:56:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.059400", + "Timestamp": "2024-05-15T15:56:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.934400", + "Timestamp": "2024-05-15T15:56:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.934400", + "Timestamp": "2024-05-15T15:56:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.822400", + "Timestamp": "2024-05-15T15:55:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.822400", + "Timestamp": "2024-05-15T15:55:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-15T15:46:51.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106000", + "Timestamp": "2024-05-15T15:46:28.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063000", + "Timestamp": "2024-05-15T15:32:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003000", + "Timestamp": "2024-05-15T15:32:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003000", + "Timestamp": "2024-05-15T15:32:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.551400", + "Timestamp": "2024-05-15T15:32:42.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063100", + "Timestamp": "2024-05-15T15:32:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003100", + "Timestamp": "2024-05-15T15:32:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003100", + "Timestamp": "2024-05-15T15:32:22.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105300", + "Timestamp": "2024-05-15T15:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104100", + "Timestamp": "2024-05-15T15:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100100", + "Timestamp": "2024-05-15T15:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044100", + "Timestamp": "2024-05-15T15:31:34.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.006000", + "Timestamp": "2024-05-15T15:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.006300", + "Timestamp": "2024-05-15T15:31:30.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021100", + "Timestamp": "2024-05-15T15:31:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.616800", + "Timestamp": "2024-05-15T15:31:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.616800", + "Timestamp": "2024-05-15T15:31:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.320300", + "Timestamp": "2024-05-15T15:30:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.597200", + "Timestamp": "2024-05-15T15:30:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.567200", + "Timestamp": "2024-05-15T15:30:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.467200", + "Timestamp": "2024-05-15T15:30:16.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.355200", + "Timestamp": "2024-05-15T15:30:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.355200", + "Timestamp": "2024-05-15T15:30:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218400", + "Timestamp": "2024-05-15T15:29:04.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.436800", + "Timestamp": "2024-05-15T14:53:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.436800", + "Timestamp": "2024-05-15T14:53:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.436800", + "Timestamp": "2024-05-15T14:53:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.494400", + "Timestamp": "2024-05-15T14:49:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.494400", + "Timestamp": "2024-05-15T14:49:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.494400", + "Timestamp": "2024-05-15T14:49:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062200", + "Timestamp": "2024-05-15T14:48:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002200", + "Timestamp": "2024-05-15T14:48:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002200", + "Timestamp": "2024-05-15T14:48:29.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068500", + "Timestamp": "2024-05-15T14:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039500", + "Timestamp": "2024-05-15T14:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008500", + "Timestamp": "2024-05-15T14:46:27.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072900", + "Timestamp": "2024-05-15T14:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069200", + "Timestamp": "2024-05-15T14:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012900", + "Timestamp": "2024-05-15T14:16:23.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-15T14:01:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071700", + "Timestamp": "2024-05-15T14:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042700", + "Timestamp": "2024-05-15T14:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011700", + "Timestamp": "2024-05-15T14:01:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-15T13:46:45.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221700", + "Timestamp": "2024-05-15T13:32:05.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062100", + "Timestamp": "2024-05-15T13:16:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002100", + "Timestamp": "2024-05-15T13:16:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002100", + "Timestamp": "2024-05-15T13:16:11.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071500", + "Timestamp": "2024-05-15T12:46:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042500", + "Timestamp": "2024-05-15T12:46:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011500", + "Timestamp": "2024-05-15T12:46:59.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210800", + "Timestamp": "2024-05-15T12:16:44.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062000", + "Timestamp": "2024-05-15T12:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002000", + "Timestamp": "2024-05-15T12:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1d", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002000", + "Timestamp": "2024-05-15T12:16:24.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.818400", + "Timestamp": "2024-05-15T11:54:12.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063700", + "Timestamp": "2024-05-15T11:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003700", + "Timestamp": "2024-05-15T11:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003700", + "Timestamp": "2024-05-15T11:46:21.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021100", + "Timestamp": "2024-05-15T11:41:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.020600", + "Timestamp": "2024-05-15T11:41:37.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118200", + "Timestamp": "2024-05-15T11:31:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115900", + "Timestamp": "2024-05-15T11:31:20.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062600", + "Timestamp": "2024-05-15T11:18:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-15T11:18:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1b", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-15T11:18:14.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.618900", + "Timestamp": "2024-05-10T02:31:56.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.588900", + "Timestamp": "2024-05-10T02:31:56.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.488900", + "Timestamp": "2024-05-10T02:31:56.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.197100", + "Timestamp": "2024-05-09T20:46:54.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.818600", + "Timestamp": "2024-05-09T08:17:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.788600", + "Timestamp": "2024-05-09T08:17:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.688600", + "Timestamp": "2024-05-09T08:17:15.000Z" + }, + { + "AvailabilityZone": "ca-central-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.443800", + "Timestamp": "2024-05-09T07:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.764700", + "Timestamp": "2024-05-16T14:03:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.031700", + "Timestamp": "2024-05-16T14:03:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.714800", + "Timestamp": "2024-05-16T14:03:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261000", + "Timestamp": "2024-05-16T14:03:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.231000", + "Timestamp": "2024-05-16T14:03:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131000", + "Timestamp": "2024-05-16T14:03:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.998200", + "Timestamp": "2024-05-16T14:02:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.993200", + "Timestamp": "2024-05-16T14:02:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.868200", + "Timestamp": "2024-05-16T14:02:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.026800", + "Timestamp": "2024-05-16T14:02:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.602600", + "Timestamp": "2024-05-16T14:02:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.248500", + "Timestamp": "2024-05-16T14:02:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.243500", + "Timestamp": "2024-05-16T14:02:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.118500", + "Timestamp": "2024-05-16T14:02:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.674500", + "Timestamp": "2024-05-16T14:02:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.669500", + "Timestamp": "2024-05-16T14:02:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.544500", + "Timestamp": "2024-05-16T14:02:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.411800", + "Timestamp": "2024-05-16T14:02:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.916000", + "Timestamp": "2024-05-16T14:02:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.523800", + "Timestamp": "2024-05-16T14:02:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.145300", + "Timestamp": "2024-05-16T14:02:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.140300", + "Timestamp": "2024-05-16T14:02:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.015300", + "Timestamp": "2024-05-16T14:02:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.573100", + "Timestamp": "2024-05-16T14:02:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.543100", + "Timestamp": "2024-05-16T14:02:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.443100", + "Timestamp": "2024-05-16T14:02:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.026300", + "Timestamp": "2024-05-16T14:02:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.021300", + "Timestamp": "2024-05-16T14:02:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.896300", + "Timestamp": "2024-05-16T14:02:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.880700", + "Timestamp": "2024-05-16T14:02:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.031500", + "Timestamp": "2024-05-16T14:02:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.026500", + "Timestamp": "2024-05-16T14:02:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.901500", + "Timestamp": "2024-05-16T14:02:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.937900", + "Timestamp": "2024-05-16T14:02:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.932900", + "Timestamp": "2024-05-16T14:02:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.807900", + "Timestamp": "2024-05-16T14:02:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.449200", + "Timestamp": "2024-05-16T14:02:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.859800", + "Timestamp": "2024-05-16T14:02:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.683400", + "Timestamp": "2024-05-16T14:02:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.678400", + "Timestamp": "2024-05-16T14:02:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.553400", + "Timestamp": "2024-05-16T14:02:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.653100", + "Timestamp": "2024-05-16T14:02:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.914200", + "Timestamp": "2024-05-16T14:02:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.545600", + "Timestamp": "2024-05-16T14:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.540600", + "Timestamp": "2024-05-16T14:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.415600", + "Timestamp": "2024-05-16T14:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.547600", + "Timestamp": "2024-05-16T14:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.531000", + "Timestamp": "2024-05-16T14:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.029900", + "Timestamp": "2024-05-16T14:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.526000", + "Timestamp": "2024-05-16T14:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.024900", + "Timestamp": "2024-05-16T14:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.401000", + "Timestamp": "2024-05-16T14:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.899900", + "Timestamp": "2024-05-16T14:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.382800", + "Timestamp": "2024-05-16T14:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.303900", + "Timestamp": "2024-05-16T14:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.298900", + "Timestamp": "2024-05-16T14:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.173900", + "Timestamp": "2024-05-16T14:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.880500", + "Timestamp": "2024-05-16T14:02:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.875500", + "Timestamp": "2024-05-16T14:02:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.750500", + "Timestamp": "2024-05-16T14:02:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120800", + "Timestamp": "2024-05-16T14:02:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117100", + "Timestamp": "2024-05-16T14:02:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060800", + "Timestamp": "2024-05-16T14:02:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212800", + "Timestamp": "2024-05-16T14:02:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.513400", + "Timestamp": "2024-05-16T14:02:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.508400", + "Timestamp": "2024-05-16T14:02:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.383400", + "Timestamp": "2024-05-16T14:02:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.312700", + "Timestamp": "2024-05-16T14:02:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.307700", + "Timestamp": "2024-05-16T14:02:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.182700", + "Timestamp": "2024-05-16T14:02:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.153900", + "Timestamp": "2024-05-16T14:02:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.148900", + "Timestamp": "2024-05-16T14:02:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.023900", + "Timestamp": "2024-05-16T14:02:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.508200", + "Timestamp": "2024-05-16T14:02:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.950100", + "Timestamp": "2024-05-16T14:02:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.920100", + "Timestamp": "2024-05-16T14:02:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.820100", + "Timestamp": "2024-05-16T14:02:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.379000", + "Timestamp": "2024-05-16T14:02:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417900", + "Timestamp": "2024-05-16T14:02:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.714700", + "Timestamp": "2024-05-16T14:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.276500", + "Timestamp": "2024-05-16T14:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.271500", + "Timestamp": "2024-05-16T14:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.146500", + "Timestamp": "2024-05-16T14:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.413900", + "Timestamp": "2024-05-16T14:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.117500", + "Timestamp": "2024-05-16T14:02:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.859200", + "Timestamp": "2024-05-16T14:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.646600", + "Timestamp": "2024-05-16T14:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.641600", + "Timestamp": "2024-05-16T14:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.516600", + "Timestamp": "2024-05-16T14:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.775500", + "Timestamp": "2024-05-16T14:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.770500", + "Timestamp": "2024-05-16T14:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.645500", + "Timestamp": "2024-05-16T14:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124800", + "Timestamp": "2024-05-16T14:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120800", + "Timestamp": "2024-05-16T14:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064800", + "Timestamp": "2024-05-16T14:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.389400", + "Timestamp": "2024-05-16T14:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.359400", + "Timestamp": "2024-05-16T14:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.259400", + "Timestamp": "2024-05-16T14:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.514400", + "Timestamp": "2024-05-16T14:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.509400", + "Timestamp": "2024-05-16T14:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.384400", + "Timestamp": "2024-05-16T14:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.252200", + "Timestamp": "2024-05-16T14:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "a1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.247200", + "Timestamp": "2024-05-16T14:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122200", + "Timestamp": "2024-05-16T14:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.796300", + "Timestamp": "2024-05-16T14:02:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.791300", + "Timestamp": "2024-05-16T14:02:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.666300", + "Timestamp": "2024-05-16T14:02:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.363500", + "Timestamp": "2024-05-16T14:02:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.099900", + "Timestamp": "2024-05-16T14:02:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.069900", + "Timestamp": "2024-05-16T14:02:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.969900", + "Timestamp": "2024-05-16T14:02:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.446300", + "Timestamp": "2024-05-16T14:02:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.635500", + "Timestamp": "2024-05-16T14:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.543600", + "Timestamp": "2024-05-16T14:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.157800", + "Timestamp": "2024-05-16T14:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.125700", + "Timestamp": "2024-05-16T14:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.152800", + "Timestamp": "2024-05-16T14:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.120700", + "Timestamp": "2024-05-16T14:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.027800", + "Timestamp": "2024-05-16T14:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.995700", + "Timestamp": "2024-05-16T14:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.944900", + "Timestamp": "2024-05-16T14:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.939900", + "Timestamp": "2024-05-16T14:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.814900", + "Timestamp": "2024-05-16T14:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.067200", + "Timestamp": "2024-05-16T14:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.763200", + "Timestamp": "2024-05-16T14:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.758200", + "Timestamp": "2024-05-16T14:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.633200", + "Timestamp": "2024-05-16T14:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.536900", + "Timestamp": "2024-05-16T14:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.822900", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.674400", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.644400", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.544400", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.855500", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.260700", + "Timestamp": "2024-05-16T14:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.256700", + "Timestamp": "2024-05-16T14:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200700", + "Timestamp": "2024-05-16T14:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.535800", + "Timestamp": "2024-05-16T14:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.530800", + "Timestamp": "2024-05-16T14:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.405800", + "Timestamp": "2024-05-16T14:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.405700", + "Timestamp": "2024-05-16T14:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.537300", + "Timestamp": "2024-05-16T14:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.532300", + "Timestamp": "2024-05-16T14:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.407300", + "Timestamp": "2024-05-16T14:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.266900", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.261900", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136900", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354700", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349700", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224700", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.352800", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.322800", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.222800", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.044500", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.039500", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.914500", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.183600", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.178600", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.053600", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.793200", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.788200", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.663200", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101600", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097900", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041600", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.661600", + "Timestamp": "2024-05-16T14:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.659000", + "Timestamp": "2024-05-16T14:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.613800", + "Timestamp": "2024-05-16T14:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.200900", + "Timestamp": "2024-05-16T14:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.228600", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.413800", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.383800", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.283800", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.386500", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.381500", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.256500", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.189400", + "Timestamp": "2024-05-16T14:02:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.184400", + "Timestamp": "2024-05-16T14:02:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059400", + "Timestamp": "2024-05-16T14:02:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.117300", + "Timestamp": "2024-05-16T14:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.112300", + "Timestamp": "2024-05-16T14:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.987300", + "Timestamp": "2024-05-16T14:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.249400", + "Timestamp": "2024-05-16T14:02:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.401800", + "Timestamp": "2024-05-16T14:02:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.712000", + "Timestamp": "2024-05-16T14:02:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.253700", + "Timestamp": "2024-05-16T14:02:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.894000", + "Timestamp": "2024-05-16T14:02:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T14:02:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T14:02:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047500", + "Timestamp": "2024-05-16T14:02:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.616200", + "Timestamp": "2024-05-16T14:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.619900", + "Timestamp": "2024-05-16T14:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.611200", + "Timestamp": "2024-05-16T14:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.614900", + "Timestamp": "2024-05-16T14:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.486200", + "Timestamp": "2024-05-16T14:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.489900", + "Timestamp": "2024-05-16T14:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.114900", + "Timestamp": "2024-05-16T14:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.109900", + "Timestamp": "2024-05-16T14:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.984900", + "Timestamp": "2024-05-16T14:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.760300", + "Timestamp": "2024-05-16T14:02:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-16T14:02:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T14:02:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046500", + "Timestamp": "2024-05-16T14:02:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.778200", + "Timestamp": "2024-05-16T14:02:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.843700", + "Timestamp": "2024-05-16T14:02:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.383800", + "Timestamp": "2024-05-16T14:02:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.378800", + "Timestamp": "2024-05-16T14:02:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.253800", + "Timestamp": "2024-05-16T14:02:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.215500", + "Timestamp": "2024-05-16T14:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.185500", + "Timestamp": "2024-05-16T14:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.085500", + "Timestamp": "2024-05-16T14:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.552600", + "Timestamp": "2024-05-16T14:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.481800", + "Timestamp": "2024-05-16T14:02:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.451800", + "Timestamp": "2024-05-16T14:02:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.351800", + "Timestamp": "2024-05-16T14:02:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.268600", + "Timestamp": "2024-05-16T14:02:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.770100", + "Timestamp": "2024-05-16T14:02:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.765100", + "Timestamp": "2024-05-16T14:02:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.640100", + "Timestamp": "2024-05-16T14:02:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.561500", + "Timestamp": "2024-05-16T14:02:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.831800", + "Timestamp": "2024-05-16T14:02:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.343200", + "Timestamp": "2024-05-16T14:02:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.338200", + "Timestamp": "2024-05-16T14:02:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.213200", + "Timestamp": "2024-05-16T14:02:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294400", + "Timestamp": "2024-05-16T14:02:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.290400", + "Timestamp": "2024-05-16T14:02:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.234400", + "Timestamp": "2024-05-16T14:02:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.779600", + "Timestamp": "2024-05-16T14:02:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.774600", + "Timestamp": "2024-05-16T14:02:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.649600", + "Timestamp": "2024-05-16T14:02:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.076100", + "Timestamp": "2024-05-16T14:01:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.071100", + "Timestamp": "2024-05-16T14:01:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.946100", + "Timestamp": "2024-05-16T14:01:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.254300", + "Timestamp": "2024-05-16T14:01:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.243200", + "Timestamp": "2024-05-16T14:01:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.239200", + "Timestamp": "2024-05-16T14:01:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.183200", + "Timestamp": "2024-05-16T14:01:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418600", + "Timestamp": "2024-05-16T14:01:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299500", + "Timestamp": "2024-05-16T14:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294500", + "Timestamp": "2024-05-16T14:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169500", + "Timestamp": "2024-05-16T14:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153600", + "Timestamp": "2024-05-16T14:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193600", + "Timestamp": "2024-05-16T14:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093600", + "Timestamp": "2024-05-16T14:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.256100", + "Timestamp": "2024-05-16T14:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.251100", + "Timestamp": "2024-05-16T14:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126100", + "Timestamp": "2024-05-16T14:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.975300", + "Timestamp": "2024-05-16T14:01:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.970300", + "Timestamp": "2024-05-16T14:01:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.845300", + "Timestamp": "2024-05-16T14:01:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.245500", + "Timestamp": "2024-05-16T14:01:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.240500", + "Timestamp": "2024-05-16T14:01:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.115500", + "Timestamp": "2024-05-16T14:01:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.896200", + "Timestamp": "2024-05-16T14:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.891200", + "Timestamp": "2024-05-16T14:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.766200", + "Timestamp": "2024-05-16T14:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117700", + "Timestamp": "2024-05-16T14:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114000", + "Timestamp": "2024-05-16T14:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057700", + "Timestamp": "2024-05-16T14:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417800", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.405600", + "Timestamp": "2024-05-16T13:53:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.405600", + "Timestamp": "2024-05-16T13:53:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.405600", + "Timestamp": "2024-05-16T13:53:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.082400", + "Timestamp": "2024-05-16T13:52:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.285500", + "Timestamp": "2024-05-16T13:52:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.418200", + "Timestamp": "2024-05-16T13:52:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.088400", + "Timestamp": "2024-05-16T13:52:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.177600", + "Timestamp": "2024-05-16T13:52:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.455700", + "Timestamp": "2024-05-16T13:52:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.083400", + "Timestamp": "2024-05-16T13:52:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.172600", + "Timestamp": "2024-05-16T13:52:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.450700", + "Timestamp": "2024-05-16T13:52:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.958400", + "Timestamp": "2024-05-16T13:52:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.047600", + "Timestamp": "2024-05-16T13:52:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.325700", + "Timestamp": "2024-05-16T13:52:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431600", + "Timestamp": "2024-05-16T13:47:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.336300", + "Timestamp": "2024-05-16T13:47:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.509300", + "Timestamp": "2024-05-16T13:47:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.329200", + "Timestamp": "2024-05-16T13:47:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.324200", + "Timestamp": "2024-05-16T13:47:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.199200", + "Timestamp": "2024-05-16T13:47:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.006500", + "Timestamp": "2024-05-16T13:47:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.001500", + "Timestamp": "2024-05-16T13:47:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.876500", + "Timestamp": "2024-05-16T13:47:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.470300", + "Timestamp": "2024-05-16T13:47:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.287900", + "Timestamp": "2024-05-16T13:47:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.282900", + "Timestamp": "2024-05-16T13:47:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.157900", + "Timestamp": "2024-05-16T13:47:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.491700", + "Timestamp": "2024-05-16T13:47:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.486700", + "Timestamp": "2024-05-16T13:47:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.361700", + "Timestamp": "2024-05-16T13:47:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.226700", + "Timestamp": "2024-05-16T13:47:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.221700", + "Timestamp": "2024-05-16T13:47:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.096700", + "Timestamp": "2024-05-16T13:47:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.658900", + "Timestamp": "2024-05-16T13:47:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.782800", + "Timestamp": "2024-05-16T13:47:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.466600", + "Timestamp": "2024-05-16T13:47:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.652000", + "Timestamp": "2024-05-16T13:47:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.461600", + "Timestamp": "2024-05-16T13:47:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.647000", + "Timestamp": "2024-05-16T13:47:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.336600", + "Timestamp": "2024-05-16T13:47:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.522000", + "Timestamp": "2024-05-16T13:47:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440500", + "Timestamp": "2024-05-16T13:47:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.238600", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.476600", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.491500", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.461500", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.361500", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.650100", + "Timestamp": "2024-05-16T13:47:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.645100", + "Timestamp": "2024-05-16T13:47:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.520100", + "Timestamp": "2024-05-16T13:47:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.545200", + "Timestamp": "2024-05-16T13:47:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.587000", + "Timestamp": "2024-05-16T13:47:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.582000", + "Timestamp": "2024-05-16T13:47:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.457000", + "Timestamp": "2024-05-16T13:47:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.678500", + "Timestamp": "2024-05-16T13:47:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.229600", + "Timestamp": "2024-05-16T13:47:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.225600", + "Timestamp": "2024-05-16T13:47:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169600", + "Timestamp": "2024-05-16T13:47:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306700", + "Timestamp": "2024-05-16T13:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302700", + "Timestamp": "2024-05-16T13:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.246700", + "Timestamp": "2024-05-16T13:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159700", + "Timestamp": "2024-05-16T13:47:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156000", + "Timestamp": "2024-05-16T13:47:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099700", + "Timestamp": "2024-05-16T13:47:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.867900", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.633300", + "Timestamp": "2024-05-16T13:47:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.886700", + "Timestamp": "2024-05-16T13:47:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.843200", + "Timestamp": "2024-05-16T13:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.838200", + "Timestamp": "2024-05-16T13:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.713200", + "Timestamp": "2024-05-16T13:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.402000", + "Timestamp": "2024-05-16T13:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.397000", + "Timestamp": "2024-05-16T13:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.272000", + "Timestamp": "2024-05-16T13:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.514400", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.509400", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.384400", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200500", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.197500", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140500", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.454700", + "Timestamp": "2024-05-16T13:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.433600", + "Timestamp": "2024-05-16T13:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.424700", + "Timestamp": "2024-05-16T13:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.425800", + "Timestamp": "2024-05-16T13:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.695900", + "Timestamp": "2024-05-16T13:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.690900", + "Timestamp": "2024-05-16T13:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.565900", + "Timestamp": "2024-05-16T13:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216200", + "Timestamp": "2024-05-16T13:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051500", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.218600", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.214600", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158600", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171000", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167000", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.104400", + "Timestamp": "2024-05-16T13:47:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.099400", + "Timestamp": "2024-05-16T13:47:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.974400", + "Timestamp": "2024-05-16T13:47:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.443500", + "Timestamp": "2024-05-16T13:47:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.390500", + "Timestamp": "2024-05-16T13:47:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.385500", + "Timestamp": "2024-05-16T13:47:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.260500", + "Timestamp": "2024-05-16T13:47:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.550300", + "Timestamp": "2024-05-16T13:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.629100", + "Timestamp": "2024-05-16T13:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.545300", + "Timestamp": "2024-05-16T13:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.624100", + "Timestamp": "2024-05-16T13:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.420300", + "Timestamp": "2024-05-16T13:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.499100", + "Timestamp": "2024-05-16T13:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.926800", + "Timestamp": "2024-05-16T13:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.207100", + "Timestamp": "2024-05-16T13:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.921800", + "Timestamp": "2024-05-16T13:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.202100", + "Timestamp": "2024-05-16T13:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.796800", + "Timestamp": "2024-05-16T13:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.077100", + "Timestamp": "2024-05-16T13:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.277600", + "Timestamp": "2024-05-16T13:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.153900", + "Timestamp": "2024-05-16T13:47:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.148900", + "Timestamp": "2024-05-16T13:47:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.023900", + "Timestamp": "2024-05-16T13:47:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.435700", + "Timestamp": "2024-05-16T13:47:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.390100", + "Timestamp": "2024-05-16T13:47:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.385100", + "Timestamp": "2024-05-16T13:47:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.260100", + "Timestamp": "2024-05-16T13:47:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.766900", + "Timestamp": "2024-05-16T13:47:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.738800", + "Timestamp": "2024-05-16T13:47:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.851400", + "Timestamp": "2024-05-16T13:47:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.576800", + "Timestamp": "2024-05-16T13:47:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.851300", + "Timestamp": "2024-05-16T13:47:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.070800", + "Timestamp": "2024-05-16T13:47:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.107900", + "Timestamp": "2024-05-16T13:47:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.077900", + "Timestamp": "2024-05-16T13:47:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.977900", + "Timestamp": "2024-05-16T13:47:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.566000", + "Timestamp": "2024-05-16T13:47:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.561000", + "Timestamp": "2024-05-16T13:47:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.436000", + "Timestamp": "2024-05-16T13:47:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.893100", + "Timestamp": "2024-05-16T13:47:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.000700", + "Timestamp": "2024-05-16T13:47:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.629000", + "Timestamp": "2024-05-16T13:47:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.485600", + "Timestamp": "2024-05-16T13:47:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.480600", + "Timestamp": "2024-05-16T13:47:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.355600", + "Timestamp": "2024-05-16T13:47:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.214300", + "Timestamp": "2024-05-16T13:47:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.209300", + "Timestamp": "2024-05-16T13:47:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.084300", + "Timestamp": "2024-05-16T13:47:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.943800", + "Timestamp": "2024-05-16T13:47:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.938800", + "Timestamp": "2024-05-16T13:47:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.813800", + "Timestamp": "2024-05-16T13:47:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.820900", + "Timestamp": "2024-05-16T13:47:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.744200", + "Timestamp": "2024-05-16T13:47:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.739200", + "Timestamp": "2024-05-16T13:47:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.614200", + "Timestamp": "2024-05-16T13:47:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.603700", + "Timestamp": "2024-05-16T13:47:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.598700", + "Timestamp": "2024-05-16T13:47:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.473700", + "Timestamp": "2024-05-16T13:47:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.754200", + "Timestamp": "2024-05-16T13:47:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.836500", + "Timestamp": "2024-05-16T13:47:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.305400", + "Timestamp": "2024-05-16T13:47:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.300400", + "Timestamp": "2024-05-16T13:47:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.175400", + "Timestamp": "2024-05-16T13:47:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.808200", + "Timestamp": "2024-05-16T13:46:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.803200", + "Timestamp": "2024-05-16T13:46:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.678200", + "Timestamp": "2024-05-16T13:46:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.635100", + "Timestamp": "2024-05-16T13:46:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.630100", + "Timestamp": "2024-05-16T13:46:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.505100", + "Timestamp": "2024-05-16T13:46:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.063600", + "Timestamp": "2024-05-16T13:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.855400", + "Timestamp": "2024-05-16T13:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.850400", + "Timestamp": "2024-05-16T13:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.725400", + "Timestamp": "2024-05-16T13:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.021400", + "Timestamp": "2024-05-16T13:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.016400", + "Timestamp": "2024-05-16T13:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.891400", + "Timestamp": "2024-05-16T13:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.341800", + "Timestamp": "2024-05-16T13:46:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.336800", + "Timestamp": "2024-05-16T13:46:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.211800", + "Timestamp": "2024-05-16T13:46:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.830600", + "Timestamp": "2024-05-16T13:46:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.825600", + "Timestamp": "2024-05-16T13:46:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.700600", + "Timestamp": "2024-05-16T13:46:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.464400", + "Timestamp": "2024-05-16T13:46:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.777900", + "Timestamp": "2024-05-16T13:46:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.657700", + "Timestamp": "2024-05-16T13:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.480300", + "Timestamp": "2024-05-16T13:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.475300", + "Timestamp": "2024-05-16T13:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.350300", + "Timestamp": "2024-05-16T13:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.473600", + "Timestamp": "2024-05-16T13:46:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141500", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137800", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081500", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.458600", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.453600", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.328600", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.884000", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.602200", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.597200", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.472200", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115400", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055400", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149800", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146100", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089800", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.839500", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.834500", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.709500", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174500", + "Timestamp": "2024-05-16T13:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170800", + "Timestamp": "2024-05-16T13:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-16T13:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.604400", + "Timestamp": "2024-05-16T13:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.574400", + "Timestamp": "2024-05-16T13:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.474400", + "Timestamp": "2024-05-16T13:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.930000", + "Timestamp": "2024-05-16T13:46:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441000", + "Timestamp": "2024-05-16T13:46:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.486000", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.481000", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.356000", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.283500", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.278500", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.153500", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.020000", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.990000", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.890000", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.704800", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.198700", + "Timestamp": "2024-05-16T13:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193700", + "Timestamp": "2024-05-16T13:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068700", + "Timestamp": "2024-05-16T13:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T13:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T13:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048100", + "Timestamp": "2024-05-16T13:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.493500", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.488500", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.363500", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122500", + "Timestamp": "2024-05-16T13:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162500", + "Timestamp": "2024-05-16T13:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062500", + "Timestamp": "2024-05-16T13:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.134100", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.129100", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.004100", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278300", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273300", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148300", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.507300", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.477300", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.377300", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.148600", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.143600", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.018600", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.302600", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298600", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242600", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.333400", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.328400", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.203400", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.642200", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.637200", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.512200", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.559000", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.529000", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.429000", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.338900", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.333900", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.208900", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.725500", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.720500", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.595500", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.006600", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.001600", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.876600", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.187600", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.193000", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.182600", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.188000", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.057600", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.063000", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143800", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140100", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083800", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.425700", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.395700", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.295700", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.555400", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.550400", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.425400", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151500", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131800", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147500", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127800", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091500", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071800", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.373100", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.368100", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.243100", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.945800", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.777400", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.875400", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.002300", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.997300", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.872300", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.924800", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.919800", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.794800", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.120000", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.115000", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.990000", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.448200", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.443200", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.318200", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.304200", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.299200", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.174200", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.393500", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.565300", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.560300", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.435300", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.455700", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.450700", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.325700", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.296000", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.291000", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.166000", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.455900", + "Timestamp": "2024-05-16T13:32:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.428900", + "Timestamp": "2024-05-16T13:32:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.977500", + "Timestamp": "2024-05-16T13:32:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.972500", + "Timestamp": "2024-05-16T13:32:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.847500", + "Timestamp": "2024-05-16T13:32:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T13:32:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.832600", + "Timestamp": "2024-05-16T13:32:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.827600", + "Timestamp": "2024-05-16T13:32:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.702600", + "Timestamp": "2024-05-16T13:32:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.827600", + "Timestamp": "2024-05-16T13:32:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.314300", + "Timestamp": "2024-05-16T13:32:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.573100", + "Timestamp": "2024-05-16T13:32:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115500", + "Timestamp": "2024-05-16T13:32:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-16T13:32:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055500", + "Timestamp": "2024-05-16T13:32:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.095700", + "Timestamp": "2024-05-16T13:32:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.090700", + "Timestamp": "2024-05-16T13:32:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.965700", + "Timestamp": "2024-05-16T13:32:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.476600", + "Timestamp": "2024-05-16T13:32:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.394700", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.389700", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.264700", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.786500", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.738700", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.781500", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.733700", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.656500", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.608700", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.008200", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.003200", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.878200", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104300", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048000", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.448000", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.443000", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.318000", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114000", + "Timestamp": "2024-05-16T13:32:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T13:32:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054000", + "Timestamp": "2024-05-16T13:32:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.194500", + "Timestamp": "2024-05-16T13:32:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190500", + "Timestamp": "2024-05-16T13:32:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134500", + "Timestamp": "2024-05-16T13:32:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.443100", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.438100", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.313100", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.740400", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.735400", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.610400", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.465700", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.010300", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.005300", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.880300", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.002400", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.419800", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.266100", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.236100", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136100", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050600", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233100", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.192300", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.187300", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.062300", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417800", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429400", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.781100", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.776100", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.651100", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.127100", + "Timestamp": "2024-05-16T13:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.097100", + "Timestamp": "2024-05-16T13:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.997100", + "Timestamp": "2024-05-16T13:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.086000", + "Timestamp": "2024-05-16T13:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.259600", + "Timestamp": "2024-05-16T13:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.212300", + "Timestamp": "2024-05-16T13:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.182300", + "Timestamp": "2024-05-16T13:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.082300", + "Timestamp": "2024-05-16T13:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.788500", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.783500", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.658500", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073300", + "Timestamp": "2024-05-16T13:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044300", + "Timestamp": "2024-05-16T13:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013300", + "Timestamp": "2024-05-16T13:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T13:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099300", + "Timestamp": "2024-05-16T13:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043000", + "Timestamp": "2024-05-16T13:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.464200", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.459200", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.334200", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.900200", + "Timestamp": "2024-05-16T13:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.650000", + "Timestamp": "2024-05-16T13:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.645000", + "Timestamp": "2024-05-16T13:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.520000", + "Timestamp": "2024-05-16T13:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.727200", + "Timestamp": "2024-05-16T13:32:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.722200", + "Timestamp": "2024-05-16T13:32:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.597200", + "Timestamp": "2024-05-16T13:32:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.719300", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.800500", + "Timestamp": "2024-05-16T13:32:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.785300", + "Timestamp": "2024-05-16T13:32:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.780300", + "Timestamp": "2024-05-16T13:32:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.655300", + "Timestamp": "2024-05-16T13:32:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.137200", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.132200", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.007200", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.280300", + "Timestamp": "2024-05-16T13:32:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.319500", + "Timestamp": "2024-05-16T13:32:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.237900", + "Timestamp": "2024-05-16T13:32:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.233900", + "Timestamp": "2024-05-16T13:32:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177900", + "Timestamp": "2024-05-16T13:32:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.905000", + "Timestamp": "2024-05-16T13:32:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.900000", + "Timestamp": "2024-05-16T13:32:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.775000", + "Timestamp": "2024-05-16T13:32:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.611600", + "Timestamp": "2024-05-16T13:32:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.407400", + "Timestamp": "2024-05-16T13:32:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.402400", + "Timestamp": "2024-05-16T13:32:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.277400", + "Timestamp": "2024-05-16T13:32:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T13:32:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099600", + "Timestamp": "2024-05-16T13:32:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043300", + "Timestamp": "2024-05-16T13:32:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.068700", + "Timestamp": "2024-05-16T13:32:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.063700", + "Timestamp": "2024-05-16T13:32:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.938700", + "Timestamp": "2024-05-16T13:32:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.833300", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.828300", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.703300", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.318100", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.313100", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.188100", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.876200", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.871200", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.746200", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.845400", + "Timestamp": "2024-05-16T13:32:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.840400", + "Timestamp": "2024-05-16T13:32:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.715400", + "Timestamp": "2024-05-16T13:32:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.651300", + "Timestamp": "2024-05-16T13:32:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.646300", + "Timestamp": "2024-05-16T13:32:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.521300", + "Timestamp": "2024-05-16T13:32:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.404700", + "Timestamp": "2024-05-16T13:32:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.399700", + "Timestamp": "2024-05-16T13:32:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.274700", + "Timestamp": "2024-05-16T13:32:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.278400", + "Timestamp": "2024-05-16T13:32:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.896100", + "Timestamp": "2024-05-16T13:32:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.558800", + "Timestamp": "2024-05-16T13:32:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.704000", + "Timestamp": "2024-05-16T13:31:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.699000", + "Timestamp": "2024-05-16T13:31:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.574000", + "Timestamp": "2024-05-16T13:31:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.576000", + "Timestamp": "2024-05-16T13:31:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.546000", + "Timestamp": "2024-05-16T13:31:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.446000", + "Timestamp": "2024-05-16T13:31:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.123800", + "Timestamp": "2024-05-16T13:31:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.989600", + "Timestamp": "2024-05-16T13:31:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T13:31:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.923200", + "Timestamp": "2024-05-16T13:31:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.893200", + "Timestamp": "2024-05-16T13:31:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.793200", + "Timestamp": "2024-05-16T13:31:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114000", + "Timestamp": "2024-05-16T13:31:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T13:31:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054000", + "Timestamp": "2024-05-16T13:31:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.076600", + "Timestamp": "2024-05-16T13:31:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.323600", + "Timestamp": "2024-05-16T13:31:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.071600", + "Timestamp": "2024-05-16T13:31:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.318600", + "Timestamp": "2024-05-16T13:31:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.946600", + "Timestamp": "2024-05-16T13:31:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.193600", + "Timestamp": "2024-05-16T13:31:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219500", + "Timestamp": "2024-05-16T13:31:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.568700", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.563700", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.438700", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.927900", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.821300", + "Timestamp": "2024-05-16T13:31:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.816300", + "Timestamp": "2024-05-16T13:31:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.691300", + "Timestamp": "2024-05-16T13:31:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.009800", + "Timestamp": "2024-05-16T13:31:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.519500", + "Timestamp": "2024-05-16T13:31:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.514500", + "Timestamp": "2024-05-16T13:31:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.389500", + "Timestamp": "2024-05-16T13:31:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.815800", + "Timestamp": "2024-05-16T13:31:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.810800", + "Timestamp": "2024-05-16T13:31:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.685800", + "Timestamp": "2024-05-16T13:31:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.195400", + "Timestamp": "2024-05-16T13:31:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.190400", + "Timestamp": "2024-05-16T13:31:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.065400", + "Timestamp": "2024-05-16T13:31:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.771000", + "Timestamp": "2024-05-16T13:31:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.725500", + "Timestamp": "2024-05-16T13:31:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.711700", + "Timestamp": "2024-05-16T13:31:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225100", + "Timestamp": "2024-05-16T13:31:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049500", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.576700", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.571700", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.446700", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.536600", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.991700", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.986700", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.861700", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.130300", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.125300", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.000300", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.576600", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.448300", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137200", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133500", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077200", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.715600", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.710600", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.585600", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.474500", + "Timestamp": "2024-05-16T13:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.173400", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.779400", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212500", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141100", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137100", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081100", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.846500", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.841500", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.716500", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150400", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146700", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090400", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165400", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161400", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.383200", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.353200", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.253200", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.377300", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372300", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.247300", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141900", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137900", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081900", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.746200", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.844100", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.839100", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.714100", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.746700", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.741700", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.616700", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.815000", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.881000", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.810000", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.876000", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.685000", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.751000", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.482100", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.477100", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.352100", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.406100", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.801800", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.796800", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.671800", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080500", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120500", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020500", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.608700", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.603700", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.478700", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.811100", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.684000", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.029900", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.024900", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.899900", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.765200", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298900", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293900", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168900", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.780400", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127300", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123600", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067300", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.959800", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.954800", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.829800", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.651700", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.646700", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.521700", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.687400", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.682400", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.557400", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.200500", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.195500", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.070500", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.822900", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261500", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.256500", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131500", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101300", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141300", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041300", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.389500", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.384500", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.259500", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.204000", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.925600", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.920600", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.795600", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.321200", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.291200", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.191200", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.020800", + "Timestamp": "2024-05-16T13:20:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.484200", + "Timestamp": "2024-05-16T13:17:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.409200", + "Timestamp": "2024-05-16T13:17:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.404200", + "Timestamp": "2024-05-16T13:17:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.279200", + "Timestamp": "2024-05-16T13:17:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.246700", + "Timestamp": "2024-05-16T13:17:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.241700", + "Timestamp": "2024-05-16T13:17:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.116700", + "Timestamp": "2024-05-16T13:17:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.681900", + "Timestamp": "2024-05-16T13:17:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.883000", + "Timestamp": "2024-05-16T13:17:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.482800", + "Timestamp": "2024-05-16T13:17:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.477800", + "Timestamp": "2024-05-16T13:17:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.352800", + "Timestamp": "2024-05-16T13:17:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.685300", + "Timestamp": "2024-05-16T13:17:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.680300", + "Timestamp": "2024-05-16T13:17:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.555300", + "Timestamp": "2024-05-16T13:17:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.952700", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.947700", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.822700", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.543000", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.521900", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.538000", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.516900", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.413000", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.391900", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114200", + "Timestamp": "2024-05-16T13:17:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T13:17:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054200", + "Timestamp": "2024-05-16T13:17:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.005200", + "Timestamp": "2024-05-16T13:17:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.566600", + "Timestamp": "2024-05-16T13:17:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.561600", + "Timestamp": "2024-05-16T13:17:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.436600", + "Timestamp": "2024-05-16T13:17:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441900", + "Timestamp": "2024-05-16T13:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.729600", + "Timestamp": "2024-05-16T13:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.724600", + "Timestamp": "2024-05-16T13:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.599600", + "Timestamp": "2024-05-16T13:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.219200", + "Timestamp": "2024-05-16T13:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.214200", + "Timestamp": "2024-05-16T13:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.089200", + "Timestamp": "2024-05-16T13:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.631700", + "Timestamp": "2024-05-16T13:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.613500", + "Timestamp": "2024-05-16T13:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.190800", + "Timestamp": "2024-05-16T13:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.187100", + "Timestamp": "2024-05-16T13:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130800", + "Timestamp": "2024-05-16T13:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.402300", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.397300", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.272300", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.420600", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.523300", + "Timestamp": "2024-05-16T13:17:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.160500", + "Timestamp": "2024-05-16T13:17:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.155500", + "Timestamp": "2024-05-16T13:17:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.030500", + "Timestamp": "2024-05-16T13:17:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.541100", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.536100", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.411100", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.078700", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.633800", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.436100", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.652500", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.647500", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.522500", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.842900", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.837900", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.712900", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.277200", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273200", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.217200", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.230300", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.226300", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170300", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.103800", + "Timestamp": "2024-05-16T13:17:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.098800", + "Timestamp": "2024-05-16T13:17:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.973800", + "Timestamp": "2024-05-16T13:17:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118300", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158300", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058300", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.415800", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.410800", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.285800", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.604200", + "Timestamp": "2024-05-16T13:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.574200", + "Timestamp": "2024-05-16T13:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.474200", + "Timestamp": "2024-05-16T13:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.457800", + "Timestamp": "2024-05-16T13:17:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.113300", + "Timestamp": "2024-05-16T13:17:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.108300", + "Timestamp": "2024-05-16T13:17:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.983300", + "Timestamp": "2024-05-16T13:17:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "p2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423600", + "Timestamp": "2024-05-16T13:17:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.587000", + "Timestamp": "2024-05-16T13:17:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.582000", + "Timestamp": "2024-05-16T13:17:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.457000", + "Timestamp": "2024-05-16T13:17:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.844100", + "Timestamp": "2024-05-16T13:17:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.839100", + "Timestamp": "2024-05-16T13:17:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.714100", + "Timestamp": "2024-05-16T13:17:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.251900", + "Timestamp": "2024-05-16T13:17:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.550500", + "Timestamp": "2024-05-16T13:17:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.545500", + "Timestamp": "2024-05-16T13:17:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.420500", + "Timestamp": "2024-05-16T13:17:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.388300", + "Timestamp": "2024-05-16T13:17:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.383300", + "Timestamp": "2024-05-16T13:17:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.258300", + "Timestamp": "2024-05-16T13:17:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.314300", + "Timestamp": "2024-05-16T13:17:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.274700", + "Timestamp": "2024-05-16T13:17:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269700", + "Timestamp": "2024-05-16T13:17:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144700", + "Timestamp": "2024-05-16T13:17:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.012000", + "Timestamp": "2024-05-16T13:17:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.007000", + "Timestamp": "2024-05-16T13:17:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.882000", + "Timestamp": "2024-05-16T13:17:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.973700", + "Timestamp": "2024-05-16T13:17:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.968700", + "Timestamp": "2024-05-16T13:17:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.843700", + "Timestamp": "2024-05-16T13:17:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.248700", + "Timestamp": "2024-05-16T13:17:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109600", + "Timestamp": "2024-05-16T13:17:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T13:17:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049600", + "Timestamp": "2024-05-16T13:17:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.763300", + "Timestamp": "2024-05-16T13:17:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.758300", + "Timestamp": "2024-05-16T13:17:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.633300", + "Timestamp": "2024-05-16T13:17:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.084100", + "Timestamp": "2024-05-16T13:17:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.715700", + "Timestamp": "2024-05-16T13:17:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093400", + "Timestamp": "2024-05-16T13:17:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089700", + "Timestamp": "2024-05-16T13:17:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033400", + "Timestamp": "2024-05-16T13:17:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.197100", + "Timestamp": "2024-05-16T13:17:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193400", + "Timestamp": "2024-05-16T13:17:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137100", + "Timestamp": "2024-05-16T13:17:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.369000", + "Timestamp": "2024-05-16T13:17:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.419600", + "Timestamp": "2024-05-16T13:17:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.414600", + "Timestamp": "2024-05-16T13:17:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.289600", + "Timestamp": "2024-05-16T13:17:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.442000", + "Timestamp": "2024-05-16T13:17:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.437000", + "Timestamp": "2024-05-16T13:17:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.312000", + "Timestamp": "2024-05-16T13:17:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.156100", + "Timestamp": "2024-05-16T13:17:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.151100", + "Timestamp": "2024-05-16T13:17:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.026100", + "Timestamp": "2024-05-16T13:17:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233800", + "Timestamp": "2024-05-16T13:17:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.422900", + "Timestamp": "2024-05-16T13:17:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.392900", + "Timestamp": "2024-05-16T13:17:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.292900", + "Timestamp": "2024-05-16T13:17:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.869800", + "Timestamp": "2024-05-16T13:16:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.864800", + "Timestamp": "2024-05-16T13:16:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.739800", + "Timestamp": "2024-05-16T13:16:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.988100", + "Timestamp": "2024-05-16T13:16:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.642500", + "Timestamp": "2024-05-16T13:16:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.553300", + "Timestamp": "2024-05-16T13:16:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.017100", + "Timestamp": "2024-05-16T13:16:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.641200", + "Timestamp": "2024-05-16T13:16:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.642300", + "Timestamp": "2024-05-16T13:16:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.831900", + "Timestamp": "2024-05-16T13:16:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.905000", + "Timestamp": "2024-05-16T13:16:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.782700", + "Timestamp": "2024-05-16T13:16:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.777700", + "Timestamp": "2024-05-16T13:16:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.652700", + "Timestamp": "2024-05-16T13:16:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.186500", + "Timestamp": "2024-05-16T13:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.181500", + "Timestamp": "2024-05-16T13:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.056500", + "Timestamp": "2024-05-16T13:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.364600", + "Timestamp": "2024-05-16T13:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.359600", + "Timestamp": "2024-05-16T13:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.234600", + "Timestamp": "2024-05-16T13:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.837700", + "Timestamp": "2024-05-16T13:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.701800", + "Timestamp": "2024-05-16T13:16:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.696800", + "Timestamp": "2024-05-16T13:16:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.571800", + "Timestamp": "2024-05-16T13:16:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.600000", + "Timestamp": "2024-05-16T13:16:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225100", + "Timestamp": "2024-05-16T13:16:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116700", + "Timestamp": "2024-05-16T13:16:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-16T13:16:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056700", + "Timestamp": "2024-05-16T13:16:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.774300", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.769300", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.644300", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.001700", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.030900", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.025900", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.900900", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439100", + "Timestamp": "2024-05-16T13:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.951700", + "Timestamp": "2024-05-16T13:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124000", + "Timestamp": "2024-05-16T13:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120300", + "Timestamp": "2024-05-16T13:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064000", + "Timestamp": "2024-05-16T13:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171900", + "Timestamp": "2024-05-16T13:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167900", + "Timestamp": "2024-05-16T13:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111900", + "Timestamp": "2024-05-16T13:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.664200", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.659200", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.534200", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.664500", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.228200", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.223200", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.098200", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124500", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120800", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064500", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.876200", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.322600", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.317600", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.192600", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314100", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.284100", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184100", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.489600", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.459600", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.359600", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.819900", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083900", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080200", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023900", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.368700", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.363700", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.238700", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.020900", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.531300", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.310100", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.266300", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.372600", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.367600", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.242600", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048200", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.903200", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.898200", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.773200", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.610800", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.605800", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.480800", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.318500", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.313500", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.188500", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.768500", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.763500", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.638500", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.316300", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.311300", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.186300", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.767900", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.796200", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.766200", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.666200", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.409100", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.404100", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.279100", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156300", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152600", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096300", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.173300", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.168300", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.043300", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217200", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.751800", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.117000", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.906700", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.876700", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.776700", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.691100", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.661100", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.561100", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123000", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119300", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063000", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.594700", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.589700", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.464700", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.526600", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.521600", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.396600", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154800", + "Timestamp": "2024-05-16T13:02:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151100", + "Timestamp": "2024-05-16T13:02:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094800", + "Timestamp": "2024-05-16T13:02:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.803100", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.798100", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.673100", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.598300", + "Timestamp": "2024-05-16T13:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.593300", + "Timestamp": "2024-05-16T13:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.468300", + "Timestamp": "2024-05-16T13:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.648400", + "Timestamp": "2024-05-16T13:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.643400", + "Timestamp": "2024-05-16T13:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.518400", + "Timestamp": "2024-05-16T13:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.519200", + "Timestamp": "2024-05-16T13:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.043400", + "Timestamp": "2024-05-16T13:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.038400", + "Timestamp": "2024-05-16T13:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.913400", + "Timestamp": "2024-05-16T13:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362000", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.357000", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.232000", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.274200", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270200", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.214200", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.252100", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.247100", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.122100", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.260700", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.230700", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.130700", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.247000", + "Timestamp": "2024-05-16T13:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.242000", + "Timestamp": "2024-05-16T13:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.117000", + "Timestamp": "2024-05-16T13:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.235700", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.230700", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.105700", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.036500", + "Timestamp": "2024-05-16T13:02:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.031500", + "Timestamp": "2024-05-16T13:02:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.906500", + "Timestamp": "2024-05-16T13:02:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.994200", + "Timestamp": "2024-05-16T13:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.691200", + "Timestamp": "2024-05-16T13:02:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.686200", + "Timestamp": "2024-05-16T13:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.681200", + "Timestamp": "2024-05-16T13:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.556200", + "Timestamp": "2024-05-16T13:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.429700", + "Timestamp": "2024-05-16T13:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.424700", + "Timestamp": "2024-05-16T13:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.299700", + "Timestamp": "2024-05-16T13:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.904600", + "Timestamp": "2024-05-16T13:02:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.890700", + "Timestamp": "2024-05-16T13:02:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.501100", + "Timestamp": "2024-05-16T13:02:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.892900", + "Timestamp": "2024-05-16T13:02:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.375200", + "Timestamp": "2024-05-16T13:02:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.646000", + "Timestamp": "2024-05-16T13:02:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.641000", + "Timestamp": "2024-05-16T13:02:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.516000", + "Timestamp": "2024-05-16T13:02:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.880700", + "Timestamp": "2024-05-16T13:02:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.266400", + "Timestamp": "2024-05-16T13:02:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.828200", + "Timestamp": "2024-05-16T13:02:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.823200", + "Timestamp": "2024-05-16T13:02:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.698200", + "Timestamp": "2024-05-16T13:02:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.501500", + "Timestamp": "2024-05-16T13:02:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.466500", + "Timestamp": "2024-05-16T13:02:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.102900", + "Timestamp": "2024-05-16T13:02:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.333800", + "Timestamp": "2024-05-16T13:02:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.328800", + "Timestamp": "2024-05-16T13:02:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.203800", + "Timestamp": "2024-05-16T13:02:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.111100", + "Timestamp": "2024-05-16T13:01:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.106100", + "Timestamp": "2024-05-16T13:01:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.981100", + "Timestamp": "2024-05-16T13:01:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.206700", + "Timestamp": "2024-05-16T13:01:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.239800", + "Timestamp": "2024-05-16T13:01:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.040800", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.010800", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.910800", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.855600", + "Timestamp": "2024-05-16T13:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.850600", + "Timestamp": "2024-05-16T13:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.725600", + "Timestamp": "2024-05-16T13:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.493000", + "Timestamp": "2024-05-16T13:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.488000", + "Timestamp": "2024-05-16T13:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.363000", + "Timestamp": "2024-05-16T13:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.623700", + "Timestamp": "2024-05-16T13:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.618700", + "Timestamp": "2024-05-16T13:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.493700", + "Timestamp": "2024-05-16T13:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.281700", + "Timestamp": "2024-05-16T13:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276700", + "Timestamp": "2024-05-16T13:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.151700", + "Timestamp": "2024-05-16T13:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.744700", + "Timestamp": "2024-05-16T13:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.155400", + "Timestamp": "2024-05-16T13:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.714700", + "Timestamp": "2024-05-16T13:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.125400", + "Timestamp": "2024-05-16T13:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.614700", + "Timestamp": "2024-05-16T13:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.025400", + "Timestamp": "2024-05-16T13:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.745400", + "Timestamp": "2024-05-16T13:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.740400", + "Timestamp": "2024-05-16T13:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.615400", + "Timestamp": "2024-05-16T13:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.604300", + "Timestamp": "2024-05-16T13:01:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.787700", + "Timestamp": "2024-05-16T13:01:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.782700", + "Timestamp": "2024-05-16T13:01:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.657700", + "Timestamp": "2024-05-16T13:01:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.456000", + "Timestamp": "2024-05-16T13:01:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.867800", + "Timestamp": "2024-05-16T13:01:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.927300", + "Timestamp": "2024-05-16T13:01:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.423800", + "Timestamp": "2024-05-16T13:01:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.418800", + "Timestamp": "2024-05-16T13:01:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.293800", + "Timestamp": "2024-05-16T13:01:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.463000", + "Timestamp": "2024-05-16T13:01:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.530300", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.061800", + "Timestamp": "2024-05-16T13:01:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.112300", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.082300", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.982300", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.314000", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.309000", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.184000", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.805900", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.095200", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.800900", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.090200", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.675900", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.965200", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.558500", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.769300", + "Timestamp": "2024-05-16T13:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.918300", + "Timestamp": "2024-05-16T13:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.913300", + "Timestamp": "2024-05-16T13:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.788300", + "Timestamp": "2024-05-16T13:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.054000", + "Timestamp": "2024-05-16T13:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.535400", + "Timestamp": "2024-05-16T13:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.530400", + "Timestamp": "2024-05-16T13:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.405400", + "Timestamp": "2024-05-16T13:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.760800", + "Timestamp": "2024-05-16T13:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.371100", + "Timestamp": "2024-05-16T13:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.366100", + "Timestamp": "2024-05-16T13:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.241100", + "Timestamp": "2024-05-16T13:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.902300", + "Timestamp": "2024-05-16T13:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.872300", + "Timestamp": "2024-05-16T13:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.772300", + "Timestamp": "2024-05-16T13:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.767900", + "Timestamp": "2024-05-16T13:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.322600", + "Timestamp": "2024-05-16T13:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.317600", + "Timestamp": "2024-05-16T13:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.192600", + "Timestamp": "2024-05-16T13:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.432900", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.402900", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.302900", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099000", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095300", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039000", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.486500", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.456500", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.356500", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.135400", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.164300", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.326300", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.321300", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.196300", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.216700", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.211700", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.086700", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.379300", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.374300", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.249300", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.929300", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.890100", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.559600", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.554600", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.429600", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.408300", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.926300", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.921300", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.796300", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.215000", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.210000", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.085000", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.925800", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.106900", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.920800", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.101900", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.795800", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.976900", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.020300", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.350200", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.345200", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.220200", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.040700", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.035700", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.910700", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.221900", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.217900", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.161900", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.237200", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.241700", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.211700", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.111700", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.371800", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.366800", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.241800", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.073800", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.068800", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.943800", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.571300", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.117000", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.365500", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.360500", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235500", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093700", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090000", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033700", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100000", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043700", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.442400", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.325200", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.320200", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195200", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150300", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146600", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090300", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166000", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162000", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106000", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068500", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039500", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008500", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095400", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091700", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035400", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.128500", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.784500", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.779500", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.654500", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.252300", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.910700", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.198700", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.193700", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.068700", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.932800", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.425600", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.463200", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.459500", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.403200", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.741100", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.736100", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.611100", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.638100", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.608100", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.508100", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076700", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047700", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016700", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429600", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.538100", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.533100", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.408100", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.372800", + "Timestamp": "2024-05-16T13:01:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.790400", + "Timestamp": "2024-05-16T13:01:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.192400", + "Timestamp": "2024-05-16T13:01:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.188700", + "Timestamp": "2024-05-16T13:01:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.132400", + "Timestamp": "2024-05-16T13:01:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.479700", + "Timestamp": "2024-05-16T13:01:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.703700", + "Timestamp": "2024-05-16T13:01:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.698700", + "Timestamp": "2024-05-16T13:01:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.573700", + "Timestamp": "2024-05-16T13:01:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.230300", + "Timestamp": "2024-05-16T13:01:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.226300", + "Timestamp": "2024-05-16T13:01:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170300", + "Timestamp": "2024-05-16T13:01:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.286600", + "Timestamp": "2024-05-16T13:01:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.281600", + "Timestamp": "2024-05-16T13:01:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.156600", + "Timestamp": "2024-05-16T13:01:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.390300", + "Timestamp": "2024-05-16T12:47:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.360300", + "Timestamp": "2024-05-16T12:47:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.260300", + "Timestamp": "2024-05-16T12:47:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.422900", + "Timestamp": "2024-05-16T12:47:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.417900", + "Timestamp": "2024-05-16T12:47:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.292900", + "Timestamp": "2024-05-16T12:47:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.418700", + "Timestamp": "2024-05-16T12:47:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.413700", + "Timestamp": "2024-05-16T12:47:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.288700", + "Timestamp": "2024-05-16T12:47:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.562100", + "Timestamp": "2024-05-16T12:47:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.557100", + "Timestamp": "2024-05-16T12:47:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.432100", + "Timestamp": "2024-05-16T12:47:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.665900", + "Timestamp": "2024-05-16T12:47:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.387700", + "Timestamp": "2024-05-16T12:47:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.357700", + "Timestamp": "2024-05-16T12:47:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.257700", + "Timestamp": "2024-05-16T12:47:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.504600", + "Timestamp": "2024-05-16T12:47:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.499600", + "Timestamp": "2024-05-16T12:47:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.374600", + "Timestamp": "2024-05-16T12:47:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T12:47:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T12:47:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051400", + "Timestamp": "2024-05-16T12:47:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078900", + "Timestamp": "2024-05-16T12:47:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.049900", + "Timestamp": "2024-05-16T12:47:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018900", + "Timestamp": "2024-05-16T12:47:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.727000", + "Timestamp": "2024-05-16T12:47:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.292900", + "Timestamp": "2024-05-16T12:47:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.285400", + "Timestamp": "2024-05-16T12:47:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.448900", + "Timestamp": "2024-05-16T12:47:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.506500", + "Timestamp": "2024-05-16T12:47:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.501500", + "Timestamp": "2024-05-16T12:47:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.376500", + "Timestamp": "2024-05-16T12:47:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.971000", + "Timestamp": "2024-05-16T12:47:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.966000", + "Timestamp": "2024-05-16T12:47:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.841000", + "Timestamp": "2024-05-16T12:47:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.530200", + "Timestamp": "2024-05-16T12:47:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.500200", + "Timestamp": "2024-05-16T12:47:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.400200", + "Timestamp": "2024-05-16T12:47:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.081400", + "Timestamp": "2024-05-16T12:47:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.998200", + "Timestamp": "2024-05-16T12:47:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.993200", + "Timestamp": "2024-05-16T12:47:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.868200", + "Timestamp": "2024-05-16T12:47:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.740800", + "Timestamp": "2024-05-16T12:47:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.735800", + "Timestamp": "2024-05-16T12:47:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.610800", + "Timestamp": "2024-05-16T12:47:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.589000", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.411900", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.584000", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.406900", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.459000", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.281900", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.014600", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.009600", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.884600", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.073100", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.678600", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.973700", + "Timestamp": "2024-05-16T12:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.707900", + "Timestamp": "2024-05-16T12:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.702900", + "Timestamp": "2024-05-16T12:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.577900", + "Timestamp": "2024-05-16T12:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165100", + "Timestamp": "2024-05-16T12:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161400", + "Timestamp": "2024-05-16T12:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105100", + "Timestamp": "2024-05-16T12:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.091300", + "Timestamp": "2024-05-16T12:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162900", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159200", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.283800", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.144200", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.139200", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.014200", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.680400", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.675400", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.550400", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.112600", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.390400", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.385400", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.260400", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.042200", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.827700", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.797700", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.697700", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.597500", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.567500", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.467500", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.508400", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.503400", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.378400", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.213100", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.679500", + "Timestamp": "2024-05-16T12:47:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.674500", + "Timestamp": "2024-05-16T12:47:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.549500", + "Timestamp": "2024-05-16T12:47:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.533800", + "Timestamp": "2024-05-16T12:47:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.267800", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.455900", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.596500", + "Timestamp": "2024-05-16T12:47:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.591500", + "Timestamp": "2024-05-16T12:47:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.466500", + "Timestamp": "2024-05-16T12:47:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.672700", + "Timestamp": "2024-05-16T12:47:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.132400", + "Timestamp": "2024-05-16T12:47:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.397600", + "Timestamp": "2024-05-16T12:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.775300", + "Timestamp": "2024-05-16T12:47:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118200", + "Timestamp": "2024-05-16T12:47:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-16T12:47:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058200", + "Timestamp": "2024-05-16T12:47:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.855600", + "Timestamp": "2024-05-16T12:47:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.763400", + "Timestamp": "2024-05-16T12:47:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.758400", + "Timestamp": "2024-05-16T12:47:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.633400", + "Timestamp": "2024-05-16T12:47:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.195300", + "Timestamp": "2024-05-16T12:47:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.190300", + "Timestamp": "2024-05-16T12:47:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.065300", + "Timestamp": "2024-05-16T12:47:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.764900", + "Timestamp": "2024-05-16T12:47:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.759900", + "Timestamp": "2024-05-16T12:47:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.634900", + "Timestamp": "2024-05-16T12:47:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.575200", + "Timestamp": "2024-05-16T12:47:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.365500", + "Timestamp": "2024-05-16T12:47:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.335500", + "Timestamp": "2024-05-16T12:47:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.235500", + "Timestamp": "2024-05-16T12:47:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.190400", + "Timestamp": "2024-05-16T12:47:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.185400", + "Timestamp": "2024-05-16T12:47:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.060400", + "Timestamp": "2024-05-16T12:47:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.189300", + "Timestamp": "2024-05-16T12:47:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185300", + "Timestamp": "2024-05-16T12:47:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129300", + "Timestamp": "2024-05-16T12:47:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.230300", + "Timestamp": "2024-05-16T12:47:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.520100", + "Timestamp": "2024-05-16T12:47:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.515100", + "Timestamp": "2024-05-16T12:47:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.390100", + "Timestamp": "2024-05-16T12:47:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.800100", + "Timestamp": "2024-05-16T12:47:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.839000", + "Timestamp": "2024-05-16T12:47:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215600", + "Timestamp": "2024-05-16T12:47:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.280500", + "Timestamp": "2024-05-16T12:47:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.275500", + "Timestamp": "2024-05-16T12:47:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.150500", + "Timestamp": "2024-05-16T12:47:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.552000", + "Timestamp": "2024-05-16T12:47:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.547000", + "Timestamp": "2024-05-16T12:47:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.422000", + "Timestamp": "2024-05-16T12:47:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.771500", + "Timestamp": "2024-05-16T12:47:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.600100", + "Timestamp": "2024-05-16T12:47:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.595100", + "Timestamp": "2024-05-16T12:47:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.470100", + "Timestamp": "2024-05-16T12:47:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.943200", + "Timestamp": "2024-05-16T12:47:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112900", + "Timestamp": "2024-05-16T12:47:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152900", + "Timestamp": "2024-05-16T12:47:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052900", + "Timestamp": "2024-05-16T12:47:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.822800", + "Timestamp": "2024-05-16T12:46:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.817800", + "Timestamp": "2024-05-16T12:46:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.692800", + "Timestamp": "2024-05-16T12:46:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.982700", + "Timestamp": "2024-05-16T12:46:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.930100", + "Timestamp": "2024-05-16T12:46:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.056700", + "Timestamp": "2024-05-16T12:46:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.051700", + "Timestamp": "2024-05-16T12:46:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.926700", + "Timestamp": "2024-05-16T12:46:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.980000", + "Timestamp": "2024-05-16T12:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.590200", + "Timestamp": "2024-05-16T12:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.585200", + "Timestamp": "2024-05-16T12:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.460200", + "Timestamp": "2024-05-16T12:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.735100", + "Timestamp": "2024-05-16T12:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.826100", + "Timestamp": "2024-05-16T12:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.825100", + "Timestamp": "2024-05-16T12:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.528400", + "Timestamp": "2024-05-16T12:46:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.498400", + "Timestamp": "2024-05-16T12:46:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.398400", + "Timestamp": "2024-05-16T12:46:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.813200", + "Timestamp": "2024-05-16T12:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.808200", + "Timestamp": "2024-05-16T12:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.683200", + "Timestamp": "2024-05-16T12:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.131500", + "Timestamp": "2024-05-16T12:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.126500", + "Timestamp": "2024-05-16T12:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.001500", + "Timestamp": "2024-05-16T12:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.869400", + "Timestamp": "2024-05-16T12:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225500", + "Timestamp": "2024-05-16T12:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.045500", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.210200", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.732400", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.727400", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.602400", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.732200", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.702200", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.602200", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.652100", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.647100", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.522100", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.773500", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.768500", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.643500", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.980400", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.975400", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.850400", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.734800", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.729800", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.604800", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.480600", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.703500", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.964000", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.959000", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.834000", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.234900", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.401800", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.396800", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.271800", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.252800", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.567000", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.234600", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.230600", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.174600", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.464300", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.459300", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.334300", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.777100", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.772100", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.647100", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.246500", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.241500", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.116500", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.633400", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.628400", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.503400", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.889800", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.884800", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.759800", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261000", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.256000", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131000", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.415600", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.410600", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.285600", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.894500", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.877100", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.379400", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.514800", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.491100", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212800", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120200", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116500", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060200", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.308100", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.699100", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.694100", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.569100", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.502500", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.724200", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.222900", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.218900", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162900", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.909800", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.579300", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.574300", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.449300", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.004900", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.999900", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.874900", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.141900", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165600", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161600", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.834300", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.481200", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311300", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281300", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181300", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.622100", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.859300", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.854300", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.729300", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.550200", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.520200", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.420200", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.052100", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.047100", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.922100", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.157300", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.474000", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.469000", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.344000", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.825700", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.795700", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.695700", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.915000", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.910000", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.785000", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.162700", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.157700", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.032700", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.261700", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.540500", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.535500", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.410500", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.253000", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.248000", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123000", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.959800", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.954800", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.829800", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.535500", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.587100", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.530500", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.582100", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.405500", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.457100", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152800", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192800", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092800", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.494200", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.464200", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.364200", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.578100", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.548100", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.448100", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.808200", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.803200", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.678200", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.117200", + "Timestamp": "2024-05-16T12:46:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206800", + "Timestamp": "2024-05-16T12:32:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.600500", + "Timestamp": "2024-05-16T12:32:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.455100", + "Timestamp": "2024-05-16T12:32:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.760300", + "Timestamp": "2024-05-16T12:32:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.650800", + "Timestamp": "2024-05-16T12:32:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.755300", + "Timestamp": "2024-05-16T12:32:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.645800", + "Timestamp": "2024-05-16T12:32:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.630300", + "Timestamp": "2024-05-16T12:32:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.520800", + "Timestamp": "2024-05-16T12:32:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.993100", + "Timestamp": "2024-05-16T12:32:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.729300", + "Timestamp": "2024-05-16T12:32:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.724300", + "Timestamp": "2024-05-16T12:32:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.599300", + "Timestamp": "2024-05-16T12:32:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.704400", + "Timestamp": "2024-05-16T12:32:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.699400", + "Timestamp": "2024-05-16T12:32:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.574400", + "Timestamp": "2024-05-16T12:32:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.654500", + "Timestamp": "2024-05-16T12:32:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.022200", + "Timestamp": "2024-05-16T12:32:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.992200", + "Timestamp": "2024-05-16T12:32:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.892200", + "Timestamp": "2024-05-16T12:32:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.405500", + "Timestamp": "2024-05-16T12:32:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.925700", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.920700", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.795700", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.435200", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.419900", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.430200", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.414900", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.305200", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.289900", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306700", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301700", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176700", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.300800", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.270800", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.170800", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.269500", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.224600", + "Timestamp": "2024-05-16T12:32:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.220900", + "Timestamp": "2024-05-16T12:32:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164600", + "Timestamp": "2024-05-16T12:32:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.584500", + "Timestamp": "2024-05-16T12:32:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.767400", + "Timestamp": "2024-05-16T12:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.762400", + "Timestamp": "2024-05-16T12:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.637400", + "Timestamp": "2024-05-16T12:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.694300", + "Timestamp": "2024-05-16T12:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.919000", + "Timestamp": "2024-05-16T12:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.914000", + "Timestamp": "2024-05-16T12:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.789000", + "Timestamp": "2024-05-16T12:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.469500", + "Timestamp": "2024-05-16T12:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.214400", + "Timestamp": "2024-05-16T12:32:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.028600", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.435000", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.998600", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.405000", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.898600", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.305000", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.235100", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.231400", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175100", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.851700", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.218500", + "Timestamp": "2024-05-16T12:32:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.213500", + "Timestamp": "2024-05-16T12:32:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.088500", + "Timestamp": "2024-05-16T12:32:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214200", + "Timestamp": "2024-05-16T12:32:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.529900", + "Timestamp": "2024-05-16T12:32:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.524900", + "Timestamp": "2024-05-16T12:32:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.399900", + "Timestamp": "2024-05-16T12:32:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.465100", + "Timestamp": "2024-05-16T12:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.460100", + "Timestamp": "2024-05-16T12:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.335100", + "Timestamp": "2024-05-16T12:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010300", + "Timestamp": "2024-05-16T12:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010300", + "Timestamp": "2024-05-16T12:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010900", + "Timestamp": "2024-05-16T12:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223900", + "Timestamp": "2024-05-16T12:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.007000", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.002000", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.877000", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429400", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.425000", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.420000", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.295000", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.708600", + "Timestamp": "2024-05-16T12:32:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.678600", + "Timestamp": "2024-05-16T12:32:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.578600", + "Timestamp": "2024-05-16T12:32:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.410900", + "Timestamp": "2024-05-16T12:32:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.405900", + "Timestamp": "2024-05-16T12:32:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.280900", + "Timestamp": "2024-05-16T12:32:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.413300", + "Timestamp": "2024-05-16T12:32:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.408300", + "Timestamp": "2024-05-16T12:32:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.283300", + "Timestamp": "2024-05-16T12:32:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.045600", + "Timestamp": "2024-05-16T12:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.040600", + "Timestamp": "2024-05-16T12:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.915600", + "Timestamp": "2024-05-16T12:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.520000", + "Timestamp": "2024-05-16T12:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221400", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.927500", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.126000", + "Timestamp": "2024-05-16T12:32:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.717200", + "Timestamp": "2024-05-16T12:32:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.712200", + "Timestamp": "2024-05-16T12:32:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.587200", + "Timestamp": "2024-05-16T12:32:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.761900", + "Timestamp": "2024-05-16T12:32:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.756900", + "Timestamp": "2024-05-16T12:32:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.631900", + "Timestamp": "2024-05-16T12:32:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.035400", + "Timestamp": "2024-05-16T12:32:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-16T12:32:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-16T12:32:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056400", + "Timestamp": "2024-05-16T12:32:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.806100", + "Timestamp": "2024-05-16T12:32:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.636900", + "Timestamp": "2024-05-16T12:32:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.259200", + "Timestamp": "2024-05-16T12:32:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.255500", + "Timestamp": "2024-05-16T12:32:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199200", + "Timestamp": "2024-05-16T12:32:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.145100", + "Timestamp": "2024-05-16T12:32:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.195100", + "Timestamp": "2024-05-16T12:32:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.190100", + "Timestamp": "2024-05-16T12:32:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.065100", + "Timestamp": "2024-05-16T12:32:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.767700", + "Timestamp": "2024-05-16T12:32:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.342200", + "Timestamp": "2024-05-16T12:32:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212100", + "Timestamp": "2024-05-16T12:32:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.592300", + "Timestamp": "2024-05-16T12:32:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.587300", + "Timestamp": "2024-05-16T12:32:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.462300", + "Timestamp": "2024-05-16T12:32:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.578300", + "Timestamp": "2024-05-16T12:32:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.618300", + "Timestamp": "2024-05-16T12:32:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.518300", + "Timestamp": "2024-05-16T12:32:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.081600", + "Timestamp": "2024-05-16T12:32:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.076600", + "Timestamp": "2024-05-16T12:32:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.951600", + "Timestamp": "2024-05-16T12:32:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.505100", + "Timestamp": "2024-05-16T12:32:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.500100", + "Timestamp": "2024-05-16T12:32:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.375100", + "Timestamp": "2024-05-16T12:32:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.194600", + "Timestamp": "2024-05-16T12:32:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.752000", + "Timestamp": "2024-05-16T12:32:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.747000", + "Timestamp": "2024-05-16T12:32:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.622000", + "Timestamp": "2024-05-16T12:32:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.795100", + "Timestamp": "2024-05-16T12:32:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.765100", + "Timestamp": "2024-05-16T12:32:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.665100", + "Timestamp": "2024-05-16T12:32:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.785400", + "Timestamp": "2024-05-16T12:31:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.780400", + "Timestamp": "2024-05-16T12:31:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.655400", + "Timestamp": "2024-05-16T12:31:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.783400", + "Timestamp": "2024-05-16T12:31:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.179200", + "Timestamp": "2024-05-16T12:31:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.149200", + "Timestamp": "2024-05-16T12:31:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.049200", + "Timestamp": "2024-05-16T12:31:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.453900", + "Timestamp": "2024-05-16T12:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.448900", + "Timestamp": "2024-05-16T12:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.323900", + "Timestamp": "2024-05-16T12:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.226300", + "Timestamp": "2024-05-16T12:31:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.221300", + "Timestamp": "2024-05-16T12:31:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.096300", + "Timestamp": "2024-05-16T12:31:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.383300", + "Timestamp": "2024-05-16T12:31:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.679300", + "Timestamp": "2024-05-16T12:31:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.460400", + "Timestamp": "2024-05-16T12:31:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074200", + "Timestamp": "2024-05-16T12:31:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.045200", + "Timestamp": "2024-05-16T12:31:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014200", + "Timestamp": "2024-05-16T12:31:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.343700", + "Timestamp": "2024-05-16T12:31:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.338700", + "Timestamp": "2024-05-16T12:31:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.213700", + "Timestamp": "2024-05-16T12:31:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-16T12:31:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094400", + "Timestamp": "2024-05-16T12:31:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038100", + "Timestamp": "2024-05-16T12:31:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.352700", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.347700", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.222700", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220100", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.975700", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.871900", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.393300", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.113200", + "Timestamp": "2024-05-16T12:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.217600", + "Timestamp": "2024-05-16T12:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.257600", + "Timestamp": "2024-05-16T12:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157600", + "Timestamp": "2024-05-16T12:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.369400", + "Timestamp": "2024-05-16T12:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301900", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.297900", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.241900", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.584200", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.579200", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.454200", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.508300", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.087900", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.490900", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.485900", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.360900", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.946000", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.941000", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.816000", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.510600", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.554200", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.766600", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.761600", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.636600", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.820000", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.790000", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.690000", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.756500", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.751500", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.626500", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.468800", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.463800", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.338800", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.549500", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.349200", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.544500", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.344200", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.419500", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.219200", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.262700", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.257700", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.132700", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.915300", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.910300", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.785300", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.674900", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103100", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.326500", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.321500", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196500", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.138100", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153100", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149400", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093100", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102700", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099000", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042700", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.155300", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.150300", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.025300", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.693900", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.688900", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.563900", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.863100", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136600", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132900", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076600", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-16T12:17:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.734000", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.729000", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.604000", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216400", + "Timestamp": "2024-05-16T12:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.837800", + "Timestamp": "2024-05-16T12:17:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.832800", + "Timestamp": "2024-05-16T12:17:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.707800", + "Timestamp": "2024-05-16T12:17:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.966100", + "Timestamp": "2024-05-16T12:17:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.011600", + "Timestamp": "2024-05-16T12:17:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.677900", + "Timestamp": "2024-05-16T12:17:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.672900", + "Timestamp": "2024-05-16T12:17:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.547900", + "Timestamp": "2024-05-16T12:17:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.480700", + "Timestamp": "2024-05-16T12:17:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.865900", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.860900", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.735900", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.182300", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.316300", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.311300", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.186300", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.783400", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.778400", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.653400", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.536300", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.077500", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.072500", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.947500", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.976200", + "Timestamp": "2024-05-16T12:17:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.971200", + "Timestamp": "2024-05-16T12:17:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.846200", + "Timestamp": "2024-05-16T12:17:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.250500", + "Timestamp": "2024-05-16T12:17:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.245500", + "Timestamp": "2024-05-16T12:17:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.120500", + "Timestamp": "2024-05-16T12:17:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.406800", + "Timestamp": "2024-05-16T12:17:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.401800", + "Timestamp": "2024-05-16T12:17:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.276800", + "Timestamp": "2024-05-16T12:17:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113400", + "Timestamp": "2024-05-16T12:17:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.016400", + "Timestamp": "2024-05-16T12:17:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.011400", + "Timestamp": "2024-05-16T12:17:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.886400", + "Timestamp": "2024-05-16T12:17:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.459700", + "Timestamp": "2024-05-16T12:17:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.495800", + "Timestamp": "2024-05-16T12:17:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.490800", + "Timestamp": "2024-05-16T12:17:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.365800", + "Timestamp": "2024-05-16T12:17:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.426300", + "Timestamp": "2024-05-16T12:17:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.421300", + "Timestamp": "2024-05-16T12:17:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.296300", + "Timestamp": "2024-05-16T12:17:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T12:17:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T12:17:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050800", + "Timestamp": "2024-05-16T12:17:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.617900", + "Timestamp": "2024-05-16T12:17:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.612900", + "Timestamp": "2024-05-16T12:17:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.487900", + "Timestamp": "2024-05-16T12:17:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.528000", + "Timestamp": "2024-05-16T12:17:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.144600", + "Timestamp": "2024-05-16T12:17:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.745700", + "Timestamp": "2024-05-16T12:17:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.740700", + "Timestamp": "2024-05-16T12:17:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.615700", + "Timestamp": "2024-05-16T12:17:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.219400", + "Timestamp": "2024-05-16T12:17:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.829000", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.824000", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.699000", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.443200", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.438200", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.313200", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.673700", + "Timestamp": "2024-05-16T12:17:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.888400", + "Timestamp": "2024-05-16T12:17:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.838100", + "Timestamp": "2024-05-16T12:17:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.248300", + "Timestamp": "2024-05-16T12:16:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.643200", + "Timestamp": "2024-05-16T12:16:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.381800", + "Timestamp": "2024-05-16T12:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075300", + "Timestamp": "2024-05-16T12:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.046300", + "Timestamp": "2024-05-16T12:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015300", + "Timestamp": "2024-05-16T12:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.119600", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.089600", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.989600", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.773500", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.768500", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.643500", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.505800", + "Timestamp": "2024-05-16T12:16:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.500800", + "Timestamp": "2024-05-16T12:16:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.375800", + "Timestamp": "2024-05-16T12:16:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.565400", + "Timestamp": "2024-05-16T12:16:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.665200", + "Timestamp": "2024-05-16T12:16:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.999000", + "Timestamp": "2024-05-16T12:16:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.453300", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.423300", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.323300", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T12:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.942000", + "Timestamp": "2024-05-16T12:16:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270700", + "Timestamp": "2024-05-16T12:16:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265700", + "Timestamp": "2024-05-16T12:16:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140700", + "Timestamp": "2024-05-16T12:16:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.279400", + "Timestamp": "2024-05-16T12:16:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.367400", + "Timestamp": "2024-05-16T12:16:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.689800", + "Timestamp": "2024-05-16T12:16:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105300", + "Timestamp": "2024-05-16T12:16:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101600", + "Timestamp": "2024-05-16T12:16:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045300", + "Timestamp": "2024-05-16T12:16:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.958800", + "Timestamp": "2024-05-16T12:16:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.300800", + "Timestamp": "2024-05-16T12:16:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.155000", + "Timestamp": "2024-05-16T12:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.022600", + "Timestamp": "2024-05-16T12:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.017600", + "Timestamp": "2024-05-16T12:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.892600", + "Timestamp": "2024-05-16T12:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.704000", + "Timestamp": "2024-05-16T12:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.699000", + "Timestamp": "2024-05-16T12:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.574000", + "Timestamp": "2024-05-16T12:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.861300", + "Timestamp": "2024-05-16T12:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.856300", + "Timestamp": "2024-05-16T12:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.731300", + "Timestamp": "2024-05-16T12:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.551300", + "Timestamp": "2024-05-16T12:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.781800", + "Timestamp": "2024-05-16T12:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.776800", + "Timestamp": "2024-05-16T12:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.651800", + "Timestamp": "2024-05-16T12:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.208800", + "Timestamp": "2024-05-16T12:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168500", + "Timestamp": "2024-05-16T12:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164500", + "Timestamp": "2024-05-16T12:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108500", + "Timestamp": "2024-05-16T12:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.531700", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.526700", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.401700", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.131400", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.126400", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.001400", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.806000", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.801000", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.676000", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.248000", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.243000", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.118000", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T12:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.928700", + "Timestamp": "2024-05-16T12:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.923700", + "Timestamp": "2024-05-16T12:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.798700", + "Timestamp": "2024-05-16T12:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.816600", + "Timestamp": "2024-05-16T12:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.279300", + "Timestamp": "2024-05-16T12:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T12:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145600", + "Timestamp": "2024-05-16T12:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045600", + "Timestamp": "2024-05-16T12:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.957600", + "Timestamp": "2024-05-16T12:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.952600", + "Timestamp": "2024-05-16T12:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.827600", + "Timestamp": "2024-05-16T12:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.282100", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.870300", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094900", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091200", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034900", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.449200", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.082300", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.077300", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.952300", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.163400", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.158400", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.033400", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.292300", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.687200", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.682200", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.557200", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.536300", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.531300", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.406300", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147000", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143000", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087000", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.351400", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.346400", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.221400", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125200", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121200", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065200", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229300", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.873100", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.868100", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.743100", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113700", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053700", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146900", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143200", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086900", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.250300", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.219500", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.245300", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.214500", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.120300", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.089500", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213400", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.464000", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.463500", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.291100", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.331100", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.231100", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.387400", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.283500", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.279500", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.223500", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.943100", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.938100", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.813100", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.526900", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.088400", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.083400", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.958400", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.699100", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.634400", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.604400", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.504400", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226200", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.266800", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.018300", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.506000", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "f1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.476000", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.376000", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.187900", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.203800", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.198800", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.073800", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.578000", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.573000", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.448000", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.447400", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.442400", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.317400", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.597300", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.592300", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.467300", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.347500", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.342500", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.217500", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.580000", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.575000", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.450000", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080200", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076500", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020200", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.316500", + "Timestamp": "2024-05-16T12:16:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.311500", + "Timestamp": "2024-05-16T12:16:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186500", + "Timestamp": "2024-05-16T12:16:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.503700", + "Timestamp": "2024-05-16T12:16:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.498700", + "Timestamp": "2024-05-16T12:16:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.373700", + "Timestamp": "2024-05-16T12:16:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429000", + "Timestamp": "2024-05-16T12:16:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.189900", + "Timestamp": "2024-05-16T12:16:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115500", + "Timestamp": "2024-05-16T12:16:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-16T12:16:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055500", + "Timestamp": "2024-05-16T12:16:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.757200", + "Timestamp": "2024-05-16T12:16:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.752200", + "Timestamp": "2024-05-16T12:16:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.627200", + "Timestamp": "2024-05-16T12:16:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.536600", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.506600", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.406600", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.897400", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.931400", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.384700", + "Timestamp": "2024-05-16T12:16:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.354700", + "Timestamp": "2024-05-16T12:16:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.254700", + "Timestamp": "2024-05-16T12:16:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.671300", + "Timestamp": "2024-05-16T12:16:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127700", + "Timestamp": "2024-05-16T12:16:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125000", + "Timestamp": "2024-05-16T12:16:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124000", + "Timestamp": "2024-05-16T12:16:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121300", + "Timestamp": "2024-05-16T12:16:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067700", + "Timestamp": "2024-05-16T12:16:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065000", + "Timestamp": "2024-05-16T12:16:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.639500", + "Timestamp": "2024-05-16T12:16:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.634500", + "Timestamp": "2024-05-16T12:16:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.509500", + "Timestamp": "2024-05-16T12:16:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.467300", + "Timestamp": "2024-05-16T12:16:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.849900", + "Timestamp": "2024-05-16T12:16:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.462300", + "Timestamp": "2024-05-16T12:16:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.844900", + "Timestamp": "2024-05-16T12:16:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.337300", + "Timestamp": "2024-05-16T12:16:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.719900", + "Timestamp": "2024-05-16T12:16:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158200", + "Timestamp": "2024-05-16T12:16:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154500", + "Timestamp": "2024-05-16T12:16:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098200", + "Timestamp": "2024-05-16T12:16:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.946200", + "Timestamp": "2024-05-16T12:02:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.191900", + "Timestamp": "2024-05-16T12:02:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.215700", + "Timestamp": "2024-05-16T12:02:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.188200", + "Timestamp": "2024-05-16T12:02:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.212000", + "Timestamp": "2024-05-16T12:02:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131900", + "Timestamp": "2024-05-16T12:02:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.155700", + "Timestamp": "2024-05-16T12:02:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.229700", + "Timestamp": "2024-05-16T12:02:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.225700", + "Timestamp": "2024-05-16T12:02:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169700", + "Timestamp": "2024-05-16T12:02:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.373800", + "Timestamp": "2024-05-16T12:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.368800", + "Timestamp": "2024-05-16T12:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.243800", + "Timestamp": "2024-05-16T12:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.133100", + "Timestamp": "2024-05-16T12:02:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.613800", + "Timestamp": "2024-05-16T12:02:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216600", + "Timestamp": "2024-05-16T12:02:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.790400", + "Timestamp": "2024-05-16T12:02:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.247500", + "Timestamp": "2024-05-16T12:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.217500", + "Timestamp": "2024-05-16T12:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.117500", + "Timestamp": "2024-05-16T12:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.067600", + "Timestamp": "2024-05-16T12:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.062600", + "Timestamp": "2024-05-16T12:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.937600", + "Timestamp": "2024-05-16T12:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.841100", + "Timestamp": "2024-05-16T12:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.836100", + "Timestamp": "2024-05-16T12:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.711100", + "Timestamp": "2024-05-16T12:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.142300", + "Timestamp": "2024-05-16T12:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.137300", + "Timestamp": "2024-05-16T12:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.012300", + "Timestamp": "2024-05-16T12:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103600", + "Timestamp": "2024-05-16T12:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099900", + "Timestamp": "2024-05-16T12:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043600", + "Timestamp": "2024-05-16T12:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.665200", + "Timestamp": "2024-05-16T12:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.660200", + "Timestamp": "2024-05-16T12:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.535200", + "Timestamp": "2024-05-16T12:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.505200", + "Timestamp": "2024-05-16T12:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.098100", + "Timestamp": "2024-05-16T12:02:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.093100", + "Timestamp": "2024-05-16T12:02:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.968100", + "Timestamp": "2024-05-16T12:02:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.976400", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.698100", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142600", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138900", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082600", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.407300", + "Timestamp": "2024-05-16T12:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.377300", + "Timestamp": "2024-05-16T12:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.277300", + "Timestamp": "2024-05-16T12:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.413600", + "Timestamp": "2024-05-16T12:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.408600", + "Timestamp": "2024-05-16T12:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.283600", + "Timestamp": "2024-05-16T12:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.592900", + "Timestamp": "2024-05-16T12:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.575200", + "Timestamp": "2024-05-16T12:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.491400", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.486400", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.361400", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134000", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174000", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074000", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219000", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120700", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117000", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060700", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.842000", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.480900", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.450900", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.350900", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.403600", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.398600", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.273600", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.576800", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.546800", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.446800", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.467100", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.955900", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.775500", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.950900", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.770500", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.825900", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.645500", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.849200", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.665000", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.675300", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.660000", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.670300", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.535000", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.545300", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.875100", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429500", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.441800", + "Timestamp": "2024-05-16T12:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.436800", + "Timestamp": "2024-05-16T12:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.311800", + "Timestamp": "2024-05-16T12:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.475300", + "Timestamp": "2024-05-16T12:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.470300", + "Timestamp": "2024-05-16T12:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.345300", + "Timestamp": "2024-05-16T12:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.236800", + "Timestamp": "2024-05-16T12:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.231800", + "Timestamp": "2024-05-16T12:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.106800", + "Timestamp": "2024-05-16T12:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.596900", + "Timestamp": "2024-05-16T12:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221800", + "Timestamp": "2024-05-16T12:02:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.731200", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.701200", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.601200", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216600", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.009900", + "Timestamp": "2024-05-16T12:02:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.004900", + "Timestamp": "2024-05-16T12:02:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.879900", + "Timestamp": "2024-05-16T12:02:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.364200", + "Timestamp": "2024-05-16T12:02:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.359200", + "Timestamp": "2024-05-16T12:02:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.234200", + "Timestamp": "2024-05-16T12:02:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T12:02:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.398900", + "Timestamp": "2024-05-16T12:02:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112500", + "Timestamp": "2024-05-16T12:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108800", + "Timestamp": "2024-05-16T12:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052500", + "Timestamp": "2024-05-16T12:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.434300", + "Timestamp": "2024-05-16T12:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.774200", + "Timestamp": "2024-05-16T12:02:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.289400", + "Timestamp": "2024-05-16T12:02:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.284400", + "Timestamp": "2024-05-16T12:02:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159400", + "Timestamp": "2024-05-16T12:02:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.201200", + "Timestamp": "2024-05-16T12:02:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.928600", + "Timestamp": "2024-05-16T12:02:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.165100", + "Timestamp": "2024-05-16T12:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.809700", + "Timestamp": "2024-05-16T12:02:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.804700", + "Timestamp": "2024-05-16T12:02:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.679700", + "Timestamp": "2024-05-16T12:02:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432900", + "Timestamp": "2024-05-16T12:02:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.808000", + "Timestamp": "2024-05-16T12:02:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.671500", + "Timestamp": "2024-05-16T12:02:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.845900", + "Timestamp": "2024-05-16T12:02:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.840900", + "Timestamp": "2024-05-16T12:02:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.715900", + "Timestamp": "2024-05-16T12:02:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.919500", + "Timestamp": "2024-05-16T12:02:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.798800", + "Timestamp": "2024-05-16T12:01:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.793800", + "Timestamp": "2024-05-16T12:01:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.668800", + "Timestamp": "2024-05-16T12:01:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-16T12:01:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.434500", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.429500", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.304500", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126200", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122500", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066200", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417600", + "Timestamp": "2024-05-16T12:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.576800", + "Timestamp": "2024-05-16T12:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.347300", + "Timestamp": "2024-05-16T12:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362200", + "Timestamp": "2024-05-16T12:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.317300", + "Timestamp": "2024-05-16T12:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.332200", + "Timestamp": "2024-05-16T12:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.217300", + "Timestamp": "2024-05-16T12:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.232200", + "Timestamp": "2024-05-16T12:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.177000", + "Timestamp": "2024-05-16T12:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.862100", + "Timestamp": "2024-05-16T12:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.367200", + "Timestamp": "2024-05-16T12:01:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.362200", + "Timestamp": "2024-05-16T12:01:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.237200", + "Timestamp": "2024-05-16T12:01:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.316800", + "Timestamp": "2024-05-16T12:01:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.311800", + "Timestamp": "2024-05-16T12:01:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186800", + "Timestamp": "2024-05-16T12:01:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.256500", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.226500", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126500", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.454700", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.449700", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.324700", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151900", + "Timestamp": "2024-05-16T12:01:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.191900", + "Timestamp": "2024-05-16T12:01:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091900", + "Timestamp": "2024-05-16T12:01:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.421300", + "Timestamp": "2024-05-16T12:01:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.802700", + "Timestamp": "2024-05-16T12:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.797700", + "Timestamp": "2024-05-16T12:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.672700", + "Timestamp": "2024-05-16T12:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.585000", + "Timestamp": "2024-05-16T12:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.580000", + "Timestamp": "2024-05-16T12:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.455000", + "Timestamp": "2024-05-16T12:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.566200", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.561200", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.436200", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.037500", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.032500", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.907500", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.427900", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.191500", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.422900", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.186500", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.297900", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.061500", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.637400", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.632400", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.507400", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.205100", + "Timestamp": "2024-05-16T12:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423300", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.596200", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125100", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.131300", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.126300", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.001300", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.413000", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.012800", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.982800", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.882800", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.128400", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.123400", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.998400", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.193100", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.189100", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133100", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.525300", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.520300", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.395300", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.262800", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.079200", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091100", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131100", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031100", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.481400", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.476400", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.351400", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.185700", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.180700", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.055700", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.780300", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.750300", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.650300", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.906800", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.876800", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.776800", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156400", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056400", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.133400", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.897800", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.892800", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.767800", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.199900", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196200", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139900", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.450500", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.899200", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.039600", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.451700", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.322300", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.317300", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.192300", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.916900", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.849300", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088900", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085200", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028900", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.380400", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.375400", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.250400", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.322100", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.317100", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.192100", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Windows", + "SpotPrice": "7.928900", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.958400", + "Timestamp": "2024-05-16T11:52:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.677400", + "Timestamp": "2024-05-16T11:52:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.779300", + "Timestamp": "2024-05-16T11:52:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.672400", + "Timestamp": "2024-05-16T11:52:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.774300", + "Timestamp": "2024-05-16T11:52:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.547400", + "Timestamp": "2024-05-16T11:52:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.649300", + "Timestamp": "2024-05-16T11:52:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "12.408500", + "Timestamp": "2024-05-16T11:47:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.753900", + "Timestamp": "2024-05-16T11:47:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.227200", + "Timestamp": "2024-05-16T11:47:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.223200", + "Timestamp": "2024-05-16T11:47:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167200", + "Timestamp": "2024-05-16T11:47:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.971200", + "Timestamp": "2024-05-16T11:47:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.728300", + "Timestamp": "2024-05-16T11:47:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.501100", + "Timestamp": "2024-05-16T11:47:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.496100", + "Timestamp": "2024-05-16T11:47:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.371100", + "Timestamp": "2024-05-16T11:47:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.612200", + "Timestamp": "2024-05-16T11:47:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.803200", + "Timestamp": "2024-05-16T11:47:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.798200", + "Timestamp": "2024-05-16T11:47:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.673200", + "Timestamp": "2024-05-16T11:47:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.409300", + "Timestamp": "2024-05-16T11:47:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149500", + "Timestamp": "2024-05-16T11:47:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145800", + "Timestamp": "2024-05-16T11:47:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089500", + "Timestamp": "2024-05-16T11:47:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.671800", + "Timestamp": "2024-05-16T11:47:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.577500", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.572500", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.447500", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417500", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.187000", + "Timestamp": "2024-05-16T11:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183300", + "Timestamp": "2024-05-16T11:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127000", + "Timestamp": "2024-05-16T11:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.392500", + "Timestamp": "2024-05-16T11:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.387500", + "Timestamp": "2024-05-16T11:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.262500", + "Timestamp": "2024-05-16T11:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.510600", + "Timestamp": "2024-05-16T11:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.987700", + "Timestamp": "2024-05-16T11:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.982700", + "Timestamp": "2024-05-16T11:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.857700", + "Timestamp": "2024-05-16T11:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.693000", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.694700", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.537200", + "Timestamp": "2024-05-16T11:47:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.228600", + "Timestamp": "2024-05-16T11:47:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.223600", + "Timestamp": "2024-05-16T11:47:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.098600", + "Timestamp": "2024-05-16T11:47:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.203700", + "Timestamp": "2024-05-16T11:47:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.200000", + "Timestamp": "2024-05-16T11:47:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143700", + "Timestamp": "2024-05-16T11:47:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.239900", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.236200", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.179900", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.597000", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.593300", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.537000", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.846200", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.303200", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298200", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.173200", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.494400", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.417700", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.990300", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.985300", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.860300", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.706700", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.676700", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.576700", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.576900", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.571900", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.446900", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.658900", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.922500", + "Timestamp": "2024-05-16T11:47:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.810100", + "Timestamp": "2024-05-16T11:47:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.805100", + "Timestamp": "2024-05-16T11:47:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.680100", + "Timestamp": "2024-05-16T11:47:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.215300", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.201600", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "a1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.210300", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "a1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196600", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085300", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071600", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.603100", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.598100", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.473100", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.909300", + "Timestamp": "2024-05-16T11:47:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.197800", + "Timestamp": "2024-05-16T11:47:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.194100", + "Timestamp": "2024-05-16T11:47:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137800", + "Timestamp": "2024-05-16T11:47:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.876400", + "Timestamp": "2024-05-16T11:47:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.692000", + "Timestamp": "2024-05-16T11:47:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.775900", + "Timestamp": "2024-05-16T11:47:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.220800", + "Timestamp": "2024-05-16T11:47:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.215800", + "Timestamp": "2024-05-16T11:47:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.090800", + "Timestamp": "2024-05-16T11:47:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.509500", + "Timestamp": "2024-05-16T11:47:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.197600", + "Timestamp": "2024-05-16T11:47:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.167600", + "Timestamp": "2024-05-16T11:47:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.067600", + "Timestamp": "2024-05-16T11:47:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.149400", + "Timestamp": "2024-05-16T11:47:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.144400", + "Timestamp": "2024-05-16T11:47:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.019400", + "Timestamp": "2024-05-16T11:47:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.801500", + "Timestamp": "2024-05-16T11:47:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.630500", + "Timestamp": "2024-05-16T11:47:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.667300", + "Timestamp": "2024-05-16T11:47:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.662300", + "Timestamp": "2024-05-16T11:47:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.537300", + "Timestamp": "2024-05-16T11:47:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.890700", + "Timestamp": "2024-05-16T11:47:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.118400", + "Timestamp": "2024-05-16T11:47:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.113400", + "Timestamp": "2024-05-16T11:47:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.988400", + "Timestamp": "2024-05-16T11:47:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T11:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.194900", + "Timestamp": "2024-05-16T11:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.191200", + "Timestamp": "2024-05-16T11:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134900", + "Timestamp": "2024-05-16T11:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.829000", + "Timestamp": "2024-05-16T11:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.508500", + "Timestamp": "2024-05-16T11:46:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.402100", + "Timestamp": "2024-05-16T11:46:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.503500", + "Timestamp": "2024-05-16T11:46:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.397100", + "Timestamp": "2024-05-16T11:46:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.378500", + "Timestamp": "2024-05-16T11:46:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.272100", + "Timestamp": "2024-05-16T11:46:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.682000", + "Timestamp": "2024-05-16T11:46:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.677000", + "Timestamp": "2024-05-16T11:46:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.552000", + "Timestamp": "2024-05-16T11:46:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.594800", + "Timestamp": "2024-05-16T11:46:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.164000", + "Timestamp": "2024-05-16T11:46:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.159000", + "Timestamp": "2024-05-16T11:46:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.034000", + "Timestamp": "2024-05-16T11:46:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.080500", + "Timestamp": "2024-05-16T11:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.484500", + "Timestamp": "2024-05-16T11:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.050500", + "Timestamp": "2024-05-16T11:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.454500", + "Timestamp": "2024-05-16T11:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.950500", + "Timestamp": "2024-05-16T11:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.354500", + "Timestamp": "2024-05-16T11:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.064400", + "Timestamp": "2024-05-16T11:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.059400", + "Timestamp": "2024-05-16T11:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.934400", + "Timestamp": "2024-05-16T11:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.379700", + "Timestamp": "2024-05-16T11:46:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.374700", + "Timestamp": "2024-05-16T11:46:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.249700", + "Timestamp": "2024-05-16T11:46:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.915100", + "Timestamp": "2024-05-16T11:46:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.145300", + "Timestamp": "2024-05-16T11:46:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079500", + "Timestamp": "2024-05-16T11:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075800", + "Timestamp": "2024-05-16T11:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019500", + "Timestamp": "2024-05-16T11:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.444400", + "Timestamp": "2024-05-16T11:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.439400", + "Timestamp": "2024-05-16T11:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.314400", + "Timestamp": "2024-05-16T11:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.204200", + "Timestamp": "2024-05-16T11:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.182600", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.360800", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.056700", + "Timestamp": "2024-05-16T11:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.051700", + "Timestamp": "2024-05-16T11:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.926700", + "Timestamp": "2024-05-16T11:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.257500", + "Timestamp": "2024-05-16T11:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.252500", + "Timestamp": "2024-05-16T11:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.127500", + "Timestamp": "2024-05-16T11:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.168400", + "Timestamp": "2024-05-16T11:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.614000", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.677800", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174300", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074300", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.007900", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.002900", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.877900", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.802700", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.213000", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.209300", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.153000", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.251000", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.491500", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099600", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043300", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.084100", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.079100", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.954100", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.957700", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.927700", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.827700", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158800", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154800", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.209400", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.740800", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.504200", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.833800", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118200", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.080500", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.075500", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.950500", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.671200", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.666200", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.541200", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.591500", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.005400", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.428900", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.383100", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.378100", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.253100", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.079400", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.049400", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.949400", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.072300", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.193600", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.233600", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133600", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079900", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.050900", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019900", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.677100", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.775800", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.770800", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.645800", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.761700", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.369500", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.364500", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.239500", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.781300", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.776300", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.651300", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128600", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136800", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124900", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133100", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068600", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076800", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.668600", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.663600", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.538600", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.353500", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.348500", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.223500", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.350100", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.320100", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.220100", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.002100", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.399900", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.394900", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.269900", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.867600", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.003800", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.998800", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.873800", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.375000", + "Timestamp": "2024-05-16T11:46:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.345000", + "Timestamp": "2024-05-16T11:46:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.245000", + "Timestamp": "2024-05-16T11:46:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117400", + "Timestamp": "2024-05-16T11:32:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113700", + "Timestamp": "2024-05-16T11:32:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057400", + "Timestamp": "2024-05-16T11:32:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.988900", + "Timestamp": "2024-05-16T11:32:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.large", + "ProductDescription": "Windows", + "SpotPrice": "0.122200", + "Timestamp": "2024-05-16T11:32:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.large", + "ProductDescription": "Windows", + "SpotPrice": "0.123200", + "Timestamp": "2024-05-16T11:32:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.746100", + "Timestamp": "2024-05-16T11:32:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.137300", + "Timestamp": "2024-05-16T11:32:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.132300", + "Timestamp": "2024-05-16T11:32:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.007300", + "Timestamp": "2024-05-16T11:32:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.305000", + "Timestamp": "2024-05-16T11:32:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.212500", + "Timestamp": "2024-05-16T11:32:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.762400", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.757400", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.632400", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.021800", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.168700", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.655800", + "Timestamp": "2024-05-16T11:32:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.000900", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.082100", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.855300", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.077100", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.850300", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.952100", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.725300", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432700", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.882800", + "Timestamp": "2024-05-16T11:32:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.465700", + "Timestamp": "2024-05-16T11:32:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.801700", + "Timestamp": "2024-05-16T11:32:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.435700", + "Timestamp": "2024-05-16T11:32:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.929700", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.924700", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.799700", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.530600", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.525600", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.400600", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.879900", + "Timestamp": "2024-05-16T11:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.290400", + "Timestamp": "2024-05-16T11:32:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.517200", + "Timestamp": "2024-05-16T11:32:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146000", + "Timestamp": "2024-05-16T11:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142300", + "Timestamp": "2024-05-16T11:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086000", + "Timestamp": "2024-05-16T11:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.334200", + "Timestamp": "2024-05-16T11:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.610300", + "Timestamp": "2024-05-16T11:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.330200", + "Timestamp": "2024-05-16T11:32:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.136700", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.131700", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.006700", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.651900", + "Timestamp": "2024-05-16T11:32:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.409900", + "Timestamp": "2024-05-16T11:32:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.494900", + "Timestamp": "2024-05-16T11:32:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.851600", + "Timestamp": "2024-05-16T11:32:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120100", + "Timestamp": "2024-05-16T11:32:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-16T11:32:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060100", + "Timestamp": "2024-05-16T11:32:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.392700", + "Timestamp": "2024-05-16T11:32:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.574100", + "Timestamp": "2024-05-16T11:32:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.586800", + "Timestamp": "2024-05-16T11:32:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.581800", + "Timestamp": "2024-05-16T11:32:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.456800", + "Timestamp": "2024-05-16T11:32:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.507600", + "Timestamp": "2024-05-16T11:32:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.739800", + "Timestamp": "2024-05-16T11:32:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.734800", + "Timestamp": "2024-05-16T11:32:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.609800", + "Timestamp": "2024-05-16T11:32:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.893000", + "Timestamp": "2024-05-16T11:32:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.823500", + "Timestamp": "2024-05-16T11:32:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.818500", + "Timestamp": "2024-05-16T11:32:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.693500", + "Timestamp": "2024-05-16T11:32:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.232500", + "Timestamp": "2024-05-16T11:32:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.577900", + "Timestamp": "2024-05-16T11:32:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.572900", + "Timestamp": "2024-05-16T11:32:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.447900", + "Timestamp": "2024-05-16T11:32:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.747500", + "Timestamp": "2024-05-16T11:32:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.742500", + "Timestamp": "2024-05-16T11:32:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.617500", + "Timestamp": "2024-05-16T11:32:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.942700", + "Timestamp": "2024-05-16T11:31:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.490100", + "Timestamp": "2024-05-16T11:31:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.643900", + "Timestamp": "2024-05-16T11:31:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.640200", + "Timestamp": "2024-05-16T11:31:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.583900", + "Timestamp": "2024-05-16T11:31:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.958400", + "Timestamp": "2024-05-16T11:31:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.015700", + "Timestamp": "2024-05-16T11:31:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.010700", + "Timestamp": "2024-05-16T11:31:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.885700", + "Timestamp": "2024-05-16T11:31:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076400", + "Timestamp": "2024-05-16T11:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085200", + "Timestamp": "2024-05-16T11:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047400", + "Timestamp": "2024-05-16T11:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.056200", + "Timestamp": "2024-05-16T11:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016400", + "Timestamp": "2024-05-16T11:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025200", + "Timestamp": "2024-05-16T11:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.201100", + "Timestamp": "2024-05-16T11:31:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.197400", + "Timestamp": "2024-05-16T11:31:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141100", + "Timestamp": "2024-05-16T11:31:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.244900", + "Timestamp": "2024-05-16T11:31:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.186900", + "Timestamp": "2024-05-16T11:31:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.491000", + "Timestamp": "2024-05-16T11:31:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.036300", + "Timestamp": "2024-05-16T11:31:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.257100", + "Timestamp": "2024-05-16T11:31:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.252100", + "Timestamp": "2024-05-16T11:31:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.127100", + "Timestamp": "2024-05-16T11:31:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.360500", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.926400", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100500", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040500", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.446000", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.441000", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.316000", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.145800", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.970200", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079100", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075400", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019100", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.296000", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.291000", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.166000", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163700", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160000", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.456300", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.451300", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.326300", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.737000", + "Timestamp": "2024-05-16T11:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.890300", + "Timestamp": "2024-05-16T11:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.313100", + "Timestamp": "2024-05-16T11:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.283100", + "Timestamp": "2024-05-16T11:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.183100", + "Timestamp": "2024-05-16T11:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.109200", + "Timestamp": "2024-05-16T11:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.380000", + "Timestamp": "2024-05-16T11:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.350000", + "Timestamp": "2024-05-16T11:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.250000", + "Timestamp": "2024-05-16T11:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.188600", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.170500", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.623400", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.618400", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.493400", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.502500", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.497500", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.372500", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.840500", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.333900", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.328900", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.203900", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330200", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.300200", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200200", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.759900", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.807200", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.802200", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.677200", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133500", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129800", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073500", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.050000", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.045000", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.920000", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.553100", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.548100", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.423100", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.250300", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.925300", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.920300", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.795300", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.882700", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.904200", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.192300", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.188300", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.132300", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.846200", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.325300", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.320300", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.195300", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.636700", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.631700", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.506700", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.495000", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.465000", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.365000", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.291700", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.374100", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.369100", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.244100", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042100", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.343800", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.338800", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.213800", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.447300", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.985600", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.980600", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.855600", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.669100", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.664100", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.539100", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299000", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294000", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169000", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.215100", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.210100", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.085100", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.266800", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.236800", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136800", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.197200", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.194200", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137200", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.391500", + "Timestamp": "2024-05-16T11:31:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.386500", + "Timestamp": "2024-05-16T11:31:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.261500", + "Timestamp": "2024-05-16T11:31:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360000", + "Timestamp": "2024-05-16T11:31:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.355000", + "Timestamp": "2024-05-16T11:31:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230000", + "Timestamp": "2024-05-16T11:31:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.222900", + "Timestamp": "2024-05-16T11:31:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.217900", + "Timestamp": "2024-05-16T11:31:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092900", + "Timestamp": "2024-05-16T11:31:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.669400", + "Timestamp": "2024-05-16T11:31:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.664400", + "Timestamp": "2024-05-16T11:31:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.539400", + "Timestamp": "2024-05-16T11:31:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.615100", + "Timestamp": "2024-05-16T11:31:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T11:18:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.329900", + "Timestamp": "2024-05-16T11:17:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.236300", + "Timestamp": "2024-05-16T11:17:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.561300", + "Timestamp": "2024-05-16T11:17:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.556300", + "Timestamp": "2024-05-16T11:17:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.431300", + "Timestamp": "2024-05-16T11:17:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.779200", + "Timestamp": "2024-05-16T11:17:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.774200", + "Timestamp": "2024-05-16T11:17:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.649200", + "Timestamp": "2024-05-16T11:17:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.348900", + "Timestamp": "2024-05-16T11:17:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343900", + "Timestamp": "2024-05-16T11:17:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.218900", + "Timestamp": "2024-05-16T11:17:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100400", + "Timestamp": "2024-05-16T11:17:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096700", + "Timestamp": "2024-05-16T11:17:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040400", + "Timestamp": "2024-05-16T11:17:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.044900", + "Timestamp": "2024-05-16T11:17:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.366100", + "Timestamp": "2024-05-16T11:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.122500", + "Timestamp": "2024-05-16T11:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216000", + "Timestamp": "2024-05-16T11:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.463300", + "Timestamp": "2024-05-16T11:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.518900", + "Timestamp": "2024-05-16T11:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.078600", + "Timestamp": "2024-05-16T11:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.248500", + "Timestamp": "2024-05-16T11:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.243500", + "Timestamp": "2024-05-16T11:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.118500", + "Timestamp": "2024-05-16T11:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.232300", + "Timestamp": "2024-05-16T11:17:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.227300", + "Timestamp": "2024-05-16T11:17:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.102300", + "Timestamp": "2024-05-16T11:17:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.192000", + "Timestamp": "2024-05-16T11:17:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.960000", + "Timestamp": "2024-05-16T11:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.764200", + "Timestamp": "2024-05-16T11:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.933300", + "Timestamp": "2024-05-16T11:17:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.928300", + "Timestamp": "2024-05-16T11:17:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.803300", + "Timestamp": "2024-05-16T11:17:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.698500", + "Timestamp": "2024-05-16T11:17:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.693500", + "Timestamp": "2024-05-16T11:17:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.568500", + "Timestamp": "2024-05-16T11:17:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129500", + "Timestamp": "2024-05-16T11:17:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125500", + "Timestamp": "2024-05-16T11:17:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069500", + "Timestamp": "2024-05-16T11:17:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.313200", + "Timestamp": "2024-05-16T11:17:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.308200", + "Timestamp": "2024-05-16T11:17:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.183200", + "Timestamp": "2024-05-16T11:17:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.383100", + "Timestamp": "2024-05-16T11:17:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.378100", + "Timestamp": "2024-05-16T11:17:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.253100", + "Timestamp": "2024-05-16T11:17:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.174100", + "Timestamp": "2024-05-16T11:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.169100", + "Timestamp": "2024-05-16T11:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.044100", + "Timestamp": "2024-05-16T11:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.829700", + "Timestamp": "2024-05-16T11:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.799700", + "Timestamp": "2024-05-16T11:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.699700", + "Timestamp": "2024-05-16T11:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.608600", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.520800", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.515800", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.390800", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.820000", + "Timestamp": "2024-05-16T11:17:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.093000", + "Timestamp": "2024-05-16T11:17:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.063000", + "Timestamp": "2024-05-16T11:17:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.963000", + "Timestamp": "2024-05-16T11:17:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "11.183000", + "Timestamp": "2024-05-16T11:17:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "11.178000", + "Timestamp": "2024-05-16T11:17:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "11.053000", + "Timestamp": "2024-05-16T11:17:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.656100", + "Timestamp": "2024-05-16T11:17:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.322400", + "Timestamp": "2024-05-16T11:17:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.317400", + "Timestamp": "2024-05-16T11:17:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.192400", + "Timestamp": "2024-05-16T11:17:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.915000", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.910000", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.785000", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.705500", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.470900", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.465900", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.340900", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T11:17:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102700", + "Timestamp": "2024-05-16T11:17:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046400", + "Timestamp": "2024-05-16T11:17:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.517000", + "Timestamp": "2024-05-16T11:17:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.364700", + "Timestamp": "2024-05-16T11:17:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.347200", + "Timestamp": "2024-05-16T11:17:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.342200", + "Timestamp": "2024-05-16T11:17:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.217200", + "Timestamp": "2024-05-16T11:17:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.222600", + "Timestamp": "2024-05-16T11:17:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.217600", + "Timestamp": "2024-05-16T11:17:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.092600", + "Timestamp": "2024-05-16T11:17:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.942000", + "Timestamp": "2024-05-16T11:17:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163200", + "Timestamp": "2024-05-16T11:17:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159500", + "Timestamp": "2024-05-16T11:17:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103200", + "Timestamp": "2024-05-16T11:17:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.763700", + "Timestamp": "2024-05-16T11:17:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.662300", + "Timestamp": "2024-05-16T11:17:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.632300", + "Timestamp": "2024-05-16T11:17:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.532300", + "Timestamp": "2024-05-16T11:17:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.586000", + "Timestamp": "2024-05-16T11:17:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.998100", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.993100", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.868100", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.133400", + "Timestamp": "2024-05-16T11:17:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.128400", + "Timestamp": "2024-05-16T11:17:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.003400", + "Timestamp": "2024-05-16T11:17:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.240200", + "Timestamp": "2024-05-16T11:17:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.676500", + "Timestamp": "2024-05-16T11:17:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.671500", + "Timestamp": "2024-05-16T11:17:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.546500", + "Timestamp": "2024-05-16T11:17:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.286900", + "Timestamp": "2024-05-16T11:17:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.501000", + "Timestamp": "2024-05-16T11:17:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.448500", + "Timestamp": "2024-05-16T11:17:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.610000", + "Timestamp": "2024-05-16T11:16:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.605000", + "Timestamp": "2024-05-16T11:16:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.480000", + "Timestamp": "2024-05-16T11:16:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219000", + "Timestamp": "2024-05-16T11:16:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.492600", + "Timestamp": "2024-05-16T11:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.567600", + "Timestamp": "2024-05-16T11:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.562600", + "Timestamp": "2024-05-16T11:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.437600", + "Timestamp": "2024-05-16T11:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.978600", + "Timestamp": "2024-05-16T11:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.664700", + "Timestamp": "2024-05-16T11:16:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.659700", + "Timestamp": "2024-05-16T11:16:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.534700", + "Timestamp": "2024-05-16T11:16:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.058900", + "Timestamp": "2024-05-16T11:16:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.053900", + "Timestamp": "2024-05-16T11:16:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.928900", + "Timestamp": "2024-05-16T11:16:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.070200", + "Timestamp": "2024-05-16T11:16:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.065200", + "Timestamp": "2024-05-16T11:16:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.940200", + "Timestamp": "2024-05-16T11:16:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.914600", + "Timestamp": "2024-05-16T11:16:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.228100", + "Timestamp": "2024-05-16T11:16:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.224400", + "Timestamp": "2024-05-16T11:16:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168100", + "Timestamp": "2024-05-16T11:16:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152800", + "Timestamp": "2024-05-16T11:16:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148800", + "Timestamp": "2024-05-16T11:16:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092800", + "Timestamp": "2024-05-16T11:16:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.660100", + "Timestamp": "2024-05-16T11:16:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.655100", + "Timestamp": "2024-05-16T11:16:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.530100", + "Timestamp": "2024-05-16T11:16:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.386300", + "Timestamp": "2024-05-16T11:16:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.382600", + "Timestamp": "2024-05-16T11:16:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.326300", + "Timestamp": "2024-05-16T11:16:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.829600", + "Timestamp": "2024-05-16T11:16:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.388300", + "Timestamp": "2024-05-16T11:16:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.973300", + "Timestamp": "2024-05-16T11:16:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.369400", + "Timestamp": "2024-05-16T11:16:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.364400", + "Timestamp": "2024-05-16T11:16:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.239400", + "Timestamp": "2024-05-16T11:16:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.607900", + "Timestamp": "2024-05-16T11:16:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.602900", + "Timestamp": "2024-05-16T11:16:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.477900", + "Timestamp": "2024-05-16T11:16:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Windows", + "SpotPrice": "3.964300", + "Timestamp": "2024-05-16T11:16:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.553900", + "Timestamp": "2024-05-16T11:16:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.548900", + "Timestamp": "2024-05-16T11:16:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.423900", + "Timestamp": "2024-05-16T11:16:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124300", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120600", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064300", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235800", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.051500", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.304300", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.323800", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.318800", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.193800", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.640300", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.635300", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.510300", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.205400", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.201700", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145400", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.832800", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.338100", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.333100", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.208100", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.289900", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.284900", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.159900", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.369600", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.364600", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.239600", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092200", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035900", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.748700", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.441000", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.094100", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.089100", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.964100", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.464000", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184500", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180800", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124500", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.149500", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.144500", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.019500", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.750700", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.481900", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.257900", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.252900", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.127900", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.332100", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.327100", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.202100", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.301200", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.296200", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.171200", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.684500", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.813000", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.679500", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.808000", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.554500", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.683000", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.291400", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.261400", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.161400", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437000", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278200", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273200", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148200", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.492600", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.487600", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.362600", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.404100", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.399100", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.274100", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.411700", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220700", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.505300", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.875900", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.514300", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.471700", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121400", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117400", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061400", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.491800", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.688700", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.690600", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.501500", + "Timestamp": "2024-05-16T11:16:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.496500", + "Timestamp": "2024-05-16T11:16:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.371500", + "Timestamp": "2024-05-16T11:16:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.338200", + "Timestamp": "2024-05-16T11:16:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.333200", + "Timestamp": "2024-05-16T11:16:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.208200", + "Timestamp": "2024-05-16T11:16:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219000", + "Timestamp": "2024-05-16T11:16:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.358200", + "Timestamp": "2024-05-16T11:16:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.357200", + "Timestamp": "2024-05-16T11:16:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.353200", + "Timestamp": "2024-05-16T11:16:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.352200", + "Timestamp": "2024-05-16T11:16:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.228200", + "Timestamp": "2024-05-16T11:16:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.227200", + "Timestamp": "2024-05-16T11:16:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.754900", + "Timestamp": "2024-05-16T11:16:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.749900", + "Timestamp": "2024-05-16T11:16:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.624900", + "Timestamp": "2024-05-16T11:16:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.637000", + "Timestamp": "2024-05-16T11:02:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.632000", + "Timestamp": "2024-05-16T11:02:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.507000", + "Timestamp": "2024-05-16T11:02:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.408200", + "Timestamp": "2024-05-16T11:02:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.378200", + "Timestamp": "2024-05-16T11:02:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.278200", + "Timestamp": "2024-05-16T11:02:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.718200", + "Timestamp": "2024-05-16T11:02:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.713200", + "Timestamp": "2024-05-16T11:02:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.588200", + "Timestamp": "2024-05-16T11:02:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.225900", + "Timestamp": "2024-05-16T11:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.212700", + "Timestamp": "2024-05-16T11:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.221900", + "Timestamp": "2024-05-16T11:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.208700", + "Timestamp": "2024-05-16T11:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165900", + "Timestamp": "2024-05-16T11:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.152700", + "Timestamp": "2024-05-16T11:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.303300", + "Timestamp": "2024-05-16T11:02:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.672500", + "Timestamp": "2024-05-16T11:02:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.650500", + "Timestamp": "2024-05-16T11:02:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.667500", + "Timestamp": "2024-05-16T11:02:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.645500", + "Timestamp": "2024-05-16T11:02:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.542500", + "Timestamp": "2024-05-16T11:02:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.520500", + "Timestamp": "2024-05-16T11:02:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.447600", + "Timestamp": "2024-05-16T11:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.870300", + "Timestamp": "2024-05-16T11:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T11:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.404100", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.399100", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.274100", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.097200", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.092200", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967200", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.860000", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.855000", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.730000", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.657400", + "Timestamp": "2024-05-16T11:02:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.762600", + "Timestamp": "2024-05-16T11:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.886000", + "Timestamp": "2024-05-16T11:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-16T11:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.567200", + "Timestamp": "2024-05-16T11:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.537200", + "Timestamp": "2024-05-16T11:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.437200", + "Timestamp": "2024-05-16T11:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222000", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.777700", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.772700", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.647700", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.057400", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.052400", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.927400", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.411900", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.406900", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.281900", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.437800", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.873000", + "Timestamp": "2024-05-16T11:02:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.868000", + "Timestamp": "2024-05-16T11:02:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.743000", + "Timestamp": "2024-05-16T11:02:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.427600", + "Timestamp": "2024-05-16T11:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.734600", + "Timestamp": "2024-05-16T11:02:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.884900", + "Timestamp": "2024-05-16T11:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.613700", + "Timestamp": "2024-05-16T11:02:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.608700", + "Timestamp": "2024-05-16T11:02:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.483700", + "Timestamp": "2024-05-16T11:02:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.771600", + "Timestamp": "2024-05-16T11:02:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.320700", + "Timestamp": "2024-05-16T11:02:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074100", + "Timestamp": "2024-05-16T11:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.045100", + "Timestamp": "2024-05-16T11:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014100", + "Timestamp": "2024-05-16T11:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.738700", + "Timestamp": "2024-05-16T11:02:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.733700", + "Timestamp": "2024-05-16T11:02:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.608700", + "Timestamp": "2024-05-16T11:02:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.531800", + "Timestamp": "2024-05-16T11:02:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.501800", + "Timestamp": "2024-05-16T11:02:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.401800", + "Timestamp": "2024-05-16T11:02:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.705800", + "Timestamp": "2024-05-16T11:02:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.700800", + "Timestamp": "2024-05-16T11:02:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.575800", + "Timestamp": "2024-05-16T11:02:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.778100", + "Timestamp": "2024-05-16T11:02:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.773100", + "Timestamp": "2024-05-16T11:02:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.648100", + "Timestamp": "2024-05-16T11:02:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.269300", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.977700", + "Timestamp": "2024-05-16T11:02:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.284900", + "Timestamp": "2024-05-16T11:01:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.254900", + "Timestamp": "2024-05-16T11:01:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.154900", + "Timestamp": "2024-05-16T11:01:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.230400", + "Timestamp": "2024-05-16T11:01:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.594100", + "Timestamp": "2024-05-16T11:01:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.225400", + "Timestamp": "2024-05-16T11:01:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.589100", + "Timestamp": "2024-05-16T11:01:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.100400", + "Timestamp": "2024-05-16T11:01:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.464100", + "Timestamp": "2024-05-16T11:01:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.270800", + "Timestamp": "2024-05-16T11:01:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.265800", + "Timestamp": "2024-05-16T11:01:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.140800", + "Timestamp": "2024-05-16T11:01:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215200", + "Timestamp": "2024-05-16T11:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.510200", + "Timestamp": "2024-05-16T11:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.958800", + "Timestamp": "2024-05-16T11:01:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.872100", + "Timestamp": "2024-05-16T11:01:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.631000", + "Timestamp": "2024-05-16T11:01:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.626000", + "Timestamp": "2024-05-16T11:01:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.501000", + "Timestamp": "2024-05-16T11:01:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.620400", + "Timestamp": "2024-05-16T11:01:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.615400", + "Timestamp": "2024-05-16T11:01:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.490400", + "Timestamp": "2024-05-16T11:01:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.821700", + "Timestamp": "2024-05-16T11:01:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.816700", + "Timestamp": "2024-05-16T11:01:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.691700", + "Timestamp": "2024-05-16T11:01:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.655200", + "Timestamp": "2024-05-16T11:01:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.650200", + "Timestamp": "2024-05-16T11:01:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.525200", + "Timestamp": "2024-05-16T11:01:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.058600", + "Timestamp": "2024-05-16T11:01:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.915700", + "Timestamp": "2024-05-16T11:01:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.969000", + "Timestamp": "2024-05-16T11:01:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.316100", + "Timestamp": "2024-05-16T11:01:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.311100", + "Timestamp": "2024-05-16T11:01:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.186100", + "Timestamp": "2024-05-16T11:01:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.514000", + "Timestamp": "2024-05-16T11:01:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.767900", + "Timestamp": "2024-05-16T11:01:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.762900", + "Timestamp": "2024-05-16T11:01:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.637900", + "Timestamp": "2024-05-16T11:01:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.908700", + "Timestamp": "2024-05-16T11:01:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.447800", + "Timestamp": "2024-05-16T11:01:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217300", + "Timestamp": "2024-05-16T11:01:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.264800", + "Timestamp": "2024-05-16T11:01:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.259800", + "Timestamp": "2024-05-16T11:01:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.134800", + "Timestamp": "2024-05-16T11:01:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.522800", + "Timestamp": "2024-05-16T11:01:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.008800", + "Timestamp": "2024-05-16T11:01:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.003800", + "Timestamp": "2024-05-16T11:01:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.878800", + "Timestamp": "2024-05-16T11:01:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.634400", + "Timestamp": "2024-05-16T11:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.629400", + "Timestamp": "2024-05-16T11:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.504400", + "Timestamp": "2024-05-16T11:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.911500", + "Timestamp": "2024-05-16T11:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.906500", + "Timestamp": "2024-05-16T11:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.781500", + "Timestamp": "2024-05-16T11:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.258500", + "Timestamp": "2024-05-16T11:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.228500", + "Timestamp": "2024-05-16T11:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128500", + "Timestamp": "2024-05-16T11:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.217800", + "Timestamp": "2024-05-16T11:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.212800", + "Timestamp": "2024-05-16T11:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.087800", + "Timestamp": "2024-05-16T11:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.186300", + "Timestamp": "2024-05-16T11:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160900", + "Timestamp": "2024-05-16T11:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157200", + "Timestamp": "2024-05-16T11:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-16T11:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.541600", + "Timestamp": "2024-05-16T11:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.822600", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.817600", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.692600", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.726800", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.721800", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.596800", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.230400", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105300", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101600", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045300", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.751100", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.285500", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.139100", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.134100", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.009100", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132000", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128300", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072000", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.036600", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.031600", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.906600", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.803100", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417500", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.371100", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.366100", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.241100", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.004700", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115700", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111700", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055700", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.216000", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.444200", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.439200", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.314200", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.716900", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.711900", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.586900", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.687200", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.682200", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.557200", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.182000", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.286400", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.284800", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281400", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.279800", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156400", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.154800", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.505200", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.500200", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.375200", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.196900", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192900", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136900", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.226900", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.767300", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.762300", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.637300", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115600", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111900", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055600", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152100", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192100", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092100", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.444700", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.414700", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.314700", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.595100", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.565100", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.465100", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096600", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092900", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036600", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.461500", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.456500", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.331500", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.506700", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.560100", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.555100", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.430100", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.326700", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.321700", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196700", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.183800", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179800", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123800", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440900", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.944400", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.914400", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.814400", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.536200", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.216000", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106000", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Windows", + "SpotPrice": "8.107600", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.532100", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.527100", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.402100", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.054100", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.826100", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.896900", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.891900", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.766900", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.295900", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265900", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165900", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.533500", + "Timestamp": "2024-05-16T11:01:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.503500", + "Timestamp": "2024-05-16T11:01:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.403500", + "Timestamp": "2024-05-16T11:01:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.736500", + "Timestamp": "2024-05-16T11:01:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.706500", + "Timestamp": "2024-05-16T11:01:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.606500", + "Timestamp": "2024-05-16T11:01:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.979100", + "Timestamp": "2024-05-16T10:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.974100", + "Timestamp": "2024-05-16T10:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.849100", + "Timestamp": "2024-05-16T10:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.130400", + "Timestamp": "2024-05-16T10:47:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.125400", + "Timestamp": "2024-05-16T10:47:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.000400", + "Timestamp": "2024-05-16T10:47:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.553800", + "Timestamp": "2024-05-16T10:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.548800", + "Timestamp": "2024-05-16T10:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.423800", + "Timestamp": "2024-05-16T10:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.854300", + "Timestamp": "2024-05-16T10:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.947300", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.485800", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.817900", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.812900", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.687900", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.165100", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.135100", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.035100", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.613000", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.689100", + "Timestamp": "2024-05-16T10:47:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417900", + "Timestamp": "2024-05-16T10:47:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.214800", + "Timestamp": "2024-05-16T10:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.209800", + "Timestamp": "2024-05-16T10:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.084800", + "Timestamp": "2024-05-16T10:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.771400", + "Timestamp": "2024-05-16T10:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.741400", + "Timestamp": "2024-05-16T10:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.641400", + "Timestamp": "2024-05-16T10:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.456300", + "Timestamp": "2024-05-16T10:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "a1.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.342300", + "Timestamp": "2024-05-16T10:47:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "a1.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.337300", + "Timestamp": "2024-05-16T10:47:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "a1.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212300", + "Timestamp": "2024-05-16T10:47:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.383100", + "Timestamp": "2024-05-16T10:47:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.378100", + "Timestamp": "2024-05-16T10:47:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.253100", + "Timestamp": "2024-05-16T10:47:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.743400", + "Timestamp": "2024-05-16T10:47:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.630600", + "Timestamp": "2024-05-16T10:47:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.625600", + "Timestamp": "2024-05-16T10:47:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.500600", + "Timestamp": "2024-05-16T10:47:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.582900", + "Timestamp": "2024-05-16T10:47:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.577900", + "Timestamp": "2024-05-16T10:47:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.452900", + "Timestamp": "2024-05-16T10:47:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.276200", + "Timestamp": "2024-05-16T10:47:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.000200", + "Timestamp": "2024-05-16T10:47:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.995200", + "Timestamp": "2024-05-16T10:47:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.870200", + "Timestamp": "2024-05-16T10:47:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.817900", + "Timestamp": "2024-05-16T10:47:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.812900", + "Timestamp": "2024-05-16T10:47:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.687900", + "Timestamp": "2024-05-16T10:47:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.426300", + "Timestamp": "2024-05-16T10:47:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.705100", + "Timestamp": "2024-05-16T10:47:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.675100", + "Timestamp": "2024-05-16T10:47:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.575100", + "Timestamp": "2024-05-16T10:47:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.774000", + "Timestamp": "2024-05-16T10:47:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.879200", + "Timestamp": "2024-05-16T10:46:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.874200", + "Timestamp": "2024-05-16T10:46:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.749200", + "Timestamp": "2024-05-16T10:46:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.618700", + "Timestamp": "2024-05-16T10:46:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.588100", + "Timestamp": "2024-05-16T10:46:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.613700", + "Timestamp": "2024-05-16T10:46:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.583100", + "Timestamp": "2024-05-16T10:46:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.488700", + "Timestamp": "2024-05-16T10:46:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.458100", + "Timestamp": "2024-05-16T10:46:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.975000", + "Timestamp": "2024-05-16T10:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.970000", + "Timestamp": "2024-05-16T10:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.845000", + "Timestamp": "2024-05-16T10:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.360900", + "Timestamp": "2024-05-16T10:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.355900", + "Timestamp": "2024-05-16T10:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.230900", + "Timestamp": "2024-05-16T10:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.741900", + "Timestamp": "2024-05-16T10:46:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.711900", + "Timestamp": "2024-05-16T10:46:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.611900", + "Timestamp": "2024-05-16T10:46:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.209200", + "Timestamp": "2024-05-16T10:46:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.645000", + "Timestamp": "2024-05-16T10:46:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.640000", + "Timestamp": "2024-05-16T10:46:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.515000", + "Timestamp": "2024-05-16T10:46:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.835100", + "Timestamp": "2024-05-16T10:46:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.830100", + "Timestamp": "2024-05-16T10:46:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.705100", + "Timestamp": "2024-05-16T10:46:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.494400", + "Timestamp": "2024-05-16T10:46:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.489400", + "Timestamp": "2024-05-16T10:46:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.364400", + "Timestamp": "2024-05-16T10:46:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.031600", + "Timestamp": "2024-05-16T10:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.026600", + "Timestamp": "2024-05-16T10:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.901600", + "Timestamp": "2024-05-16T10:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.409100", + "Timestamp": "2024-05-16T10:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.404100", + "Timestamp": "2024-05-16T10:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.279100", + "Timestamp": "2024-05-16T10:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.068300", + "Timestamp": "2024-05-16T10:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.376400", + "Timestamp": "2024-05-16T10:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "a1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105500", + "Timestamp": "2024-05-16T10:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "a1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101800", + "Timestamp": "2024-05-16T10:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "a1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045500", + "Timestamp": "2024-05-16T10:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.604100", + "Timestamp": "2024-05-16T10:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418600", + "Timestamp": "2024-05-16T10:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.393600", + "Timestamp": "2024-05-16T10:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148900", + "Timestamp": "2024-05-16T10:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145200", + "Timestamp": "2024-05-16T10:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088900", + "Timestamp": "2024-05-16T10:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.321900", + "Timestamp": "2024-05-16T10:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.291900", + "Timestamp": "2024-05-16T10:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.191900", + "Timestamp": "2024-05-16T10:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.588200", + "Timestamp": "2024-05-16T10:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.583200", + "Timestamp": "2024-05-16T10:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.458200", + "Timestamp": "2024-05-16T10:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.643100", + "Timestamp": "2024-05-16T10:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159000", + "Timestamp": "2024-05-16T10:46:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.199000", + "Timestamp": "2024-05-16T10:46:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099000", + "Timestamp": "2024-05-16T10:46:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102700", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046400", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.040800", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.598500", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.035800", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.593500", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.910800", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.468500", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.465800", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.460800", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.335800", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.675200", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.645200", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.545200", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.866100", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.880900", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.731000", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.092400", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148200", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144200", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088200", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.630300", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.625300", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.500300", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.333600", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.328600", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.203600", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.033000", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.028000", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.903000", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.710200", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.705200", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.580200", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.542800", + "Timestamp": "2024-05-16T10:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.512800", + "Timestamp": "2024-05-16T10:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.412800", + "Timestamp": "2024-05-16T10:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.123500", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.118500", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.993500", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.920100", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.890100", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.790100", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.407700", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.502300", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.497300", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.372300", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.233700", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.228700", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.103700", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.193600", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.189900", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133600", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.991300", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.986300", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.861300", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120100", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160100", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060100", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165400", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161700", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.346800", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.286400", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.341800", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.281400", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.216800", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.156400", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164400", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160400", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.024200", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.019200", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.894200", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.608100", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.330100", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.325100", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.200100", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147000", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143300", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087000", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.778300", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.773300", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.648300", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.291400", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.725900", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.720900", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.595900", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.567700", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.235700", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232000", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175700", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.349300", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319300", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219300", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.920900", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.915900", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.790900", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.365900", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.360900", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235900", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.476200", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.471200", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.346200", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437500", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.320600", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.315600", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190600", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.543200", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.513200", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.413200", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069700", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066000", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009700", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.842600", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.837600", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.712600", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.597400", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.629700", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.592400", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.624700", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.467400", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.499700", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077200", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073500", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017200", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146900", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142900", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086900", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160600", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156900", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100600", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.389600", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.023900", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.993900", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.893900", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.463400", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.406300", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.376300", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.276300", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.824700", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.395500", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.992800", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.300300", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.241600", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.236600", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.111600", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.090800", + "Timestamp": "2024-05-16T10:46:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.457900", + "Timestamp": "2024-05-16T10:46:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141200", + "Timestamp": "2024-05-16T10:46:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137500", + "Timestamp": "2024-05-16T10:46:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081200", + "Timestamp": "2024-05-16T10:46:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.870700", + "Timestamp": "2024-05-16T10:46:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.322100", + "Timestamp": "2024-05-16T10:46:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.974900", + "Timestamp": "2024-05-16T10:32:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.518100", + "Timestamp": "2024-05-16T10:32:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.560800", + "Timestamp": "2024-05-16T10:32:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.513100", + "Timestamp": "2024-05-16T10:32:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.555800", + "Timestamp": "2024-05-16T10:32:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.388100", + "Timestamp": "2024-05-16T10:32:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.430800", + "Timestamp": "2024-05-16T10:32:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.876600", + "Timestamp": "2024-05-16T10:32:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.831200", + "Timestamp": "2024-05-16T10:32:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.803700", + "Timestamp": "2024-05-16T10:32:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.626700", + "Timestamp": "2024-05-16T10:32:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.246700", + "Timestamp": "2024-05-16T10:32:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.378300", + "Timestamp": "2024-05-16T10:32:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.418300", + "Timestamp": "2024-05-16T10:32:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.318300", + "Timestamp": "2024-05-16T10:32:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.321400", + "Timestamp": "2024-05-16T10:32:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.316400", + "Timestamp": "2024-05-16T10:32:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.191400", + "Timestamp": "2024-05-16T10:32:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.387100", + "Timestamp": "2024-05-16T10:32:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.382100", + "Timestamp": "2024-05-16T10:32:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.257100", + "Timestamp": "2024-05-16T10:32:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.471800", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.466800", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.341800", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.032600", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.027600", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.902600", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.661600", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.656600", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.531600", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.678500", + "Timestamp": "2024-05-16T10:32:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.673500", + "Timestamp": "2024-05-16T10:32:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.548500", + "Timestamp": "2024-05-16T10:32:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.048400", + "Timestamp": "2024-05-16T10:32:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.043400", + "Timestamp": "2024-05-16T10:32:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.918400", + "Timestamp": "2024-05-16T10:32:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.046600", + "Timestamp": "2024-05-16T10:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.777200", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.772200", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.647200", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.617600", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.612600", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.487600", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224500", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.865300", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.860300", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.735300", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.473700", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.468700", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.343700", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.762600", + "Timestamp": "2024-05-16T10:32:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128000", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116100", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124000", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068000", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056100", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.191000", + "Timestamp": "2024-05-16T10:32:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.231000", + "Timestamp": "2024-05-16T10:32:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131000", + "Timestamp": "2024-05-16T10:32:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.338400", + "Timestamp": "2024-05-16T10:32:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.333400", + "Timestamp": "2024-05-16T10:32:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.208400", + "Timestamp": "2024-05-16T10:32:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "a1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109000", + "Timestamp": "2024-05-16T10:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "a1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105300", + "Timestamp": "2024-05-16T10:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "a1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049000", + "Timestamp": "2024-05-16T10:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.527000", + "Timestamp": "2024-05-16T10:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.039600", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.034600", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.909600", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.383300", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.378300", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.253300", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.235400", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.677400", + "Timestamp": "2024-05-16T10:32:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.672400", + "Timestamp": "2024-05-16T10:32:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.547400", + "Timestamp": "2024-05-16T10:32:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.174300", + "Timestamp": "2024-05-16T10:32:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.659700", + "Timestamp": "2024-05-16T10:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.654700", + "Timestamp": "2024-05-16T10:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.529700", + "Timestamp": "2024-05-16T10:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.823900", + "Timestamp": "2024-05-16T10:32:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.818900", + "Timestamp": "2024-05-16T10:32:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.693900", + "Timestamp": "2024-05-16T10:32:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Windows", + "SpotPrice": "12.834000", + "Timestamp": "2024-05-16T10:32:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "12.482900", + "Timestamp": "2024-05-16T10:32:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "12.477900", + "Timestamp": "2024-05-16T10:32:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "12.352900", + "Timestamp": "2024-05-16T10:32:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.359900", + "Timestamp": "2024-05-16T10:32:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.354900", + "Timestamp": "2024-05-16T10:32:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.229900", + "Timestamp": "2024-05-16T10:32:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.696800", + "Timestamp": "2024-05-16T10:32:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.436100", + "Timestamp": "2024-05-16T10:32:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.431100", + "Timestamp": "2024-05-16T10:32:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.306100", + "Timestamp": "2024-05-16T10:32:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.365900", + "Timestamp": "2024-05-16T10:32:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.360900", + "Timestamp": "2024-05-16T10:32:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235900", + "Timestamp": "2024-05-16T10:32:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.746200", + "Timestamp": "2024-05-16T10:32:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.073100", + "Timestamp": "2024-05-16T10:32:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.068100", + "Timestamp": "2024-05-16T10:32:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.943100", + "Timestamp": "2024-05-16T10:32:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122400", + "Timestamp": "2024-05-16T10:32:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162400", + "Timestamp": "2024-05-16T10:32:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062400", + "Timestamp": "2024-05-16T10:32:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.767300", + "Timestamp": "2024-05-16T10:32:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115600", + "Timestamp": "2024-05-16T10:32:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155600", + "Timestamp": "2024-05-16T10:32:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055600", + "Timestamp": "2024-05-16T10:32:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.260000", + "Timestamp": "2024-05-16T10:32:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.255000", + "Timestamp": "2024-05-16T10:32:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.130000", + "Timestamp": "2024-05-16T10:32:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.194500", + "Timestamp": "2024-05-16T10:32:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190800", + "Timestamp": "2024-05-16T10:32:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134500", + "Timestamp": "2024-05-16T10:32:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.219100", + "Timestamp": "2024-05-16T10:32:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.701400", + "Timestamp": "2024-05-16T10:32:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.696400", + "Timestamp": "2024-05-16T10:32:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.571400", + "Timestamp": "2024-05-16T10:32:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211100", + "Timestamp": "2024-05-16T10:32:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.215500", + "Timestamp": "2024-05-16T10:32:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.210500", + "Timestamp": "2024-05-16T10:32:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.085500", + "Timestamp": "2024-05-16T10:32:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.449800", + "Timestamp": "2024-05-16T10:32:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.508600", + "Timestamp": "2024-05-16T10:32:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.478600", + "Timestamp": "2024-05-16T10:32:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.378600", + "Timestamp": "2024-05-16T10:32:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200200", + "Timestamp": "2024-05-16T10:32:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196200", + "Timestamp": "2024-05-16T10:32:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140200", + "Timestamp": "2024-05-16T10:32:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.794700", + "Timestamp": "2024-05-16T10:32:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.789700", + "Timestamp": "2024-05-16T10:32:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.664700", + "Timestamp": "2024-05-16T10:32:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143200", + "Timestamp": "2024-05-16T10:32:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183200", + "Timestamp": "2024-05-16T10:32:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083200", + "Timestamp": "2024-05-16T10:32:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.628100", + "Timestamp": "2024-05-16T10:32:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.270100", + "Timestamp": "2024-05-16T10:32:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.265100", + "Timestamp": "2024-05-16T10:32:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.140100", + "Timestamp": "2024-05-16T10:32:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108500", + "Timestamp": "2024-05-16T10:32:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-16T10:32:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048500", + "Timestamp": "2024-05-16T10:32:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.584000", + "Timestamp": "2024-05-16T10:32:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.579000", + "Timestamp": "2024-05-16T10:32:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.454000", + "Timestamp": "2024-05-16T10:32:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.398800", + "Timestamp": "2024-05-16T10:32:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.945700", + "Timestamp": "2024-05-16T10:32:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.940700", + "Timestamp": "2024-05-16T10:32:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.815700", + "Timestamp": "2024-05-16T10:32:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.739500", + "Timestamp": "2024-05-16T10:32:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.793000", + "Timestamp": "2024-05-16T10:31:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.784000", + "Timestamp": "2024-05-16T10:31:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.530900", + "Timestamp": "2024-05-16T10:31:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.979200", + "Timestamp": "2024-05-16T10:31:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.974200", + "Timestamp": "2024-05-16T10:31:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.849200", + "Timestamp": "2024-05-16T10:31:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.705700", + "Timestamp": "2024-05-16T10:31:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.262000", + "Timestamp": "2024-05-16T10:31:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.675700", + "Timestamp": "2024-05-16T10:31:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.232000", + "Timestamp": "2024-05-16T10:31:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.575700", + "Timestamp": "2024-05-16T10:31:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.132000", + "Timestamp": "2024-05-16T10:31:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418200", + "Timestamp": "2024-05-16T10:31:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.607800", + "Timestamp": "2024-05-16T10:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.602800", + "Timestamp": "2024-05-16T10:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.477800", + "Timestamp": "2024-05-16T10:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131600", + "Timestamp": "2024-05-16T10:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127900", + "Timestamp": "2024-05-16T10:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071600", + "Timestamp": "2024-05-16T10:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.901900", + "Timestamp": "2024-05-16T10:31:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.775700", + "Timestamp": "2024-05-16T10:31:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.426600", + "Timestamp": "2024-05-16T10:31:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.421600", + "Timestamp": "2024-05-16T10:31:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.296600", + "Timestamp": "2024-05-16T10:31:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.939400", + "Timestamp": "2024-05-16T10:31:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.361000", + "Timestamp": "2024-05-16T10:31:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.290500", + "Timestamp": "2024-05-16T10:31:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154400", + "Timestamp": "2024-05-16T10:31:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150700", + "Timestamp": "2024-05-16T10:31:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094400", + "Timestamp": "2024-05-16T10:31:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.744200", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.602800", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.597800", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.472800", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.236400", + "Timestamp": "2024-05-16T10:31:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.225600", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.220600", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.095600", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.445500", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.399400", + "Timestamp": "2024-05-16T10:31:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.394400", + "Timestamp": "2024-05-16T10:31:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.269400", + "Timestamp": "2024-05-16T10:31:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-16T10:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T10:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050100", + "Timestamp": "2024-05-16T10:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.797300", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124800", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120800", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064800", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.012200", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158800", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155100", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.525000", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.495000", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.395000", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126200", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122200", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066200", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.971000", + "Timestamp": "2024-05-16T10:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.881300", + "Timestamp": "2024-05-16T10:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.410200", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.405200", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.280200", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.410100", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.405100", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.280100", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.723000", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.718000", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.593000", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212600", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.082400", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.659900", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.654900", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.529900", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145700", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141700", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085700", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.229600", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269600", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169600", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120100", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060100", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294500", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.290500", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.234500", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.647300", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.642300", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.517300", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.720300", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.715300", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.590300", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081800", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078100", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021800", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.564800", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.559800", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.434800", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.555200", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.550200", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.425200", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.310900", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.280900", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180900", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.044600", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042100", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.443800", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.438800", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.313800", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.405600", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.400600", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.275600", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.365900", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.220100", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.190100", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.090100", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.359400", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.354400", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.229400", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.393400", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.697700", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.692700", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.567700", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118000", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114000", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058000", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.657600", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.652600", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.527600", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.820600", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.840500", + "Timestamp": "2024-05-16T10:17:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.835500", + "Timestamp": "2024-05-16T10:17:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.710500", + "Timestamp": "2024-05-16T10:17:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "p2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.444700", + "Timestamp": "2024-05-16T10:17:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.484700", + "Timestamp": "2024-05-16T10:17:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "p2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.384700", + "Timestamp": "2024-05-16T10:17:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.782400", + "Timestamp": "2024-05-16T10:17:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.514200", + "Timestamp": "2024-05-16T10:17:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.509200", + "Timestamp": "2024-05-16T10:17:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.384200", + "Timestamp": "2024-05-16T10:17:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.420200", + "Timestamp": "2024-05-16T10:17:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423800", + "Timestamp": "2024-05-16T10:17:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.548400", + "Timestamp": "2024-05-16T10:17:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.588600", + "Timestamp": "2024-05-16T10:17:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.583600", + "Timestamp": "2024-05-16T10:17:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.458600", + "Timestamp": "2024-05-16T10:17:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.083000", + "Timestamp": "2024-05-16T10:17:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.362100", + "Timestamp": "2024-05-16T10:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.332100", + "Timestamp": "2024-05-16T10:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.232100", + "Timestamp": "2024-05-16T10:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.796000", + "Timestamp": "2024-05-16T10:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.791000", + "Timestamp": "2024-05-16T10:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.666000", + "Timestamp": "2024-05-16T10:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.419700", + "Timestamp": "2024-05-16T10:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.530100", + "Timestamp": "2024-05-16T10:17:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.525100", + "Timestamp": "2024-05-16T10:17:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.400100", + "Timestamp": "2024-05-16T10:17:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166300", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066300", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223800", + "Timestamp": "2024-05-16T10:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.427600", + "Timestamp": "2024-05-16T10:17:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.886700", + "Timestamp": "2024-05-16T10:17:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.646000", + "Timestamp": "2024-05-16T10:17:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.641000", + "Timestamp": "2024-05-16T10:17:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.516000", + "Timestamp": "2024-05-16T10:17:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140900", + "Timestamp": "2024-05-16T10:17:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137200", + "Timestamp": "2024-05-16T10:17:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080900", + "Timestamp": "2024-05-16T10:17:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.278300", + "Timestamp": "2024-05-16T10:17:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.867500", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.855900", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.058100", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.028100", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.928100", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.136100", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.510100", + "Timestamp": "2024-05-16T10:17:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.505100", + "Timestamp": "2024-05-16T10:17:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.380100", + "Timestamp": "2024-05-16T10:17:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.829600", + "Timestamp": "2024-05-16T10:17:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.384000", + "Timestamp": "2024-05-16T10:17:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.379000", + "Timestamp": "2024-05-16T10:17:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.254000", + "Timestamp": "2024-05-16T10:17:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307900", + "Timestamp": "2024-05-16T10:17:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "a1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302900", + "Timestamp": "2024-05-16T10:17:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177900", + "Timestamp": "2024-05-16T10:17:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.839900", + "Timestamp": "2024-05-16T10:17:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.203500", + "Timestamp": "2024-05-16T10:17:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.266300", + "Timestamp": "2024-05-16T10:17:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.007500", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.002500", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.877500", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.450700", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.445700", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.320700", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.435200", + "Timestamp": "2024-05-16T10:17:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.182800", + "Timestamp": "2024-05-16T10:17:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.177800", + "Timestamp": "2024-05-16T10:17:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.052800", + "Timestamp": "2024-05-16T10:17:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.942600", + "Timestamp": "2024-05-16T10:17:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.937600", + "Timestamp": "2024-05-16T10:17:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.812600", + "Timestamp": "2024-05-16T10:17:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.278100", + "Timestamp": "2024-05-16T10:17:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.095000", + "Timestamp": "2024-05-16T10:17:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.090000", + "Timestamp": "2024-05-16T10:17:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.965000", + "Timestamp": "2024-05-16T10:17:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.286000", + "Timestamp": "2024-05-16T10:17:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.730000", + "Timestamp": "2024-05-16T10:17:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.979500", + "Timestamp": "2024-05-16T10:16:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.670600", + "Timestamp": "2024-05-16T10:16:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.665600", + "Timestamp": "2024-05-16T10:16:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.540600", + "Timestamp": "2024-05-16T10:16:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.155000", + "Timestamp": "2024-05-16T10:16:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.150000", + "Timestamp": "2024-05-16T10:16:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.025000", + "Timestamp": "2024-05-16T10:16:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.656600", + "Timestamp": "2024-05-16T10:16:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.651600", + "Timestamp": "2024-05-16T10:16:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.526600", + "Timestamp": "2024-05-16T10:16:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224400", + "Timestamp": "2024-05-16T10:16:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.771200", + "Timestamp": "2024-05-16T10:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.766200", + "Timestamp": "2024-05-16T10:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.641200", + "Timestamp": "2024-05-16T10:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.442700", + "Timestamp": "2024-05-16T10:16:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.447800", + "Timestamp": "2024-05-16T10:16:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.361900", + "Timestamp": "2024-05-16T10:16:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.356900", + "Timestamp": "2024-05-16T10:16:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.231900", + "Timestamp": "2024-05-16T10:16:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165400", + "Timestamp": "2024-05-16T10:16:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161400", + "Timestamp": "2024-05-16T10:16:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T10:16:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.643400", + "Timestamp": "2024-05-16T10:16:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.638400", + "Timestamp": "2024-05-16T10:16:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.513400", + "Timestamp": "2024-05-16T10:16:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.924600", + "Timestamp": "2024-05-16T10:16:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360200", + "Timestamp": "2024-05-16T10:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.361000", + "Timestamp": "2024-05-16T10:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.355200", + "Timestamp": "2024-05-16T10:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.356000", + "Timestamp": "2024-05-16T10:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230200", + "Timestamp": "2024-05-16T10:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.231000", + "Timestamp": "2024-05-16T10:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102700", + "Timestamp": "2024-05-16T10:16:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099000", + "Timestamp": "2024-05-16T10:16:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042700", + "Timestamp": "2024-05-16T10:16:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.835000", + "Timestamp": "2024-05-16T10:16:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.878600", + "Timestamp": "2024-05-16T10:16:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.873600", + "Timestamp": "2024-05-16T10:16:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.748600", + "Timestamp": "2024-05-16T10:16:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.136600", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.131600", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.006600", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.483400", + "Timestamp": "2024-05-16T10:16:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.478400", + "Timestamp": "2024-05-16T10:16:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.353400", + "Timestamp": "2024-05-16T10:16:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.176100", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.171100", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.046100", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.332900", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.327900", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.202900", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.936000", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.931000", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.806000", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.990600", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.985600", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.860600", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.798300", + "Timestamp": "2024-05-16T10:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.448200", + "Timestamp": "2024-05-16T10:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T10:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.407300", + "Timestamp": "2024-05-16T10:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.402300", + "Timestamp": "2024-05-16T10:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.277300", + "Timestamp": "2024-05-16T10:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.679500", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143500", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139800", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083500", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040200", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.417000", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.387000", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.287000", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117000", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057000", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.395400", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.365400", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.265400", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142700", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138700", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082700", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.754000", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.621300", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273800", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268800", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143800", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123100", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119100", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063100", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.239000", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.300100", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296400", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.240100", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050500", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.415400", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.410400", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.285400", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.665800", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.660800", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.535800", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.429900", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.424900", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.299900", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093700", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090000", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033700", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.609900", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.565900", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.560900", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.435900", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.999800", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.491400", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.486400", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.361400", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.253100", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.583900", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.578900", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.453900", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.415400", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.410400", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.285400", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.197000", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193000", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137000", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.404300", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.280500", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.374300", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.250500", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.274300", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.150500", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.430200", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.402800", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.397800", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.272800", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.240900", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.235900", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.110900", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.643500", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.638500", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.513500", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.797200", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.792200", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.667200", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.038500", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.033500", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.908500", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.945100", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.976300", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.875800", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.472100", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.467100", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.342100", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124100", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120100", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064100", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054600", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.838500", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.177600", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.172600", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.047600", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.199300", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.194300", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.069300", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.187700", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.182700", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.057700", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.194500", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.234500", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134500", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.426600", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.396600", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.296600", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.211200", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.207200", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.151200", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.498100", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.493100", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.368100", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.369000", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.364000", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.239000", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.864800", + "Timestamp": "2024-05-16T10:16:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061700", + "Timestamp": "2024-05-16T10:16:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001700", + "Timestamp": "2024-05-16T10:16:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001700", + "Timestamp": "2024-05-16T10:16:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118000", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114000", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058000", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099800", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043500", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.525900", + "Timestamp": "2024-05-16T10:16:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.455300", + "Timestamp": "2024-05-16T10:16:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.456000", + "Timestamp": "2024-05-16T10:16:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.917300", + "Timestamp": "2024-05-16T10:10:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.917300", + "Timestamp": "2024-05-16T10:10:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.608000", + "Timestamp": "2024-05-16T10:03:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.309800", + "Timestamp": "2024-05-16T10:03:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.329900", + "Timestamp": "2024-05-16T10:02:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.736400", + "Timestamp": "2024-05-16T10:02:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.731400", + "Timestamp": "2024-05-16T10:02:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.606400", + "Timestamp": "2024-05-16T10:02:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.551000", + "Timestamp": "2024-05-16T10:02:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.546000", + "Timestamp": "2024-05-16T10:02:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.421000", + "Timestamp": "2024-05-16T10:02:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.061300", + "Timestamp": "2024-05-16T10:02:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.056300", + "Timestamp": "2024-05-16T10:02:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.931300", + "Timestamp": "2024-05-16T10:02:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.912600", + "Timestamp": "2024-05-16T10:02:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.697600", + "Timestamp": "2024-05-16T10:02:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.692600", + "Timestamp": "2024-05-16T10:02:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.567600", + "Timestamp": "2024-05-16T10:02:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.098200", + "Timestamp": "2024-05-16T10:02:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.982500", + "Timestamp": "2024-05-16T10:02:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.996000", + "Timestamp": "2024-05-16T10:02:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.977500", + "Timestamp": "2024-05-16T10:02:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.991000", + "Timestamp": "2024-05-16T10:02:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.852500", + "Timestamp": "2024-05-16T10:02:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.866000", + "Timestamp": "2024-05-16T10:02:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.833500", + "Timestamp": "2024-05-16T10:02:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.837800", + "Timestamp": "2024-05-16T10:02:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.984800", + "Timestamp": "2024-05-16T10:02:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.979800", + "Timestamp": "2024-05-16T10:02:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.854800", + "Timestamp": "2024-05-16T10:02:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.934400", + "Timestamp": "2024-05-16T10:02:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.929400", + "Timestamp": "2024-05-16T10:02:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.804400", + "Timestamp": "2024-05-16T10:02:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.348800", + "Timestamp": "2024-05-16T10:02:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.343800", + "Timestamp": "2024-05-16T10:02:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.218800", + "Timestamp": "2024-05-16T10:02:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.944900", + "Timestamp": "2024-05-16T10:02:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.521600", + "Timestamp": "2024-05-16T10:02:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.571400", + "Timestamp": "2024-05-16T10:02:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.797200", + "Timestamp": "2024-05-16T10:02:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.832100", + "Timestamp": "2024-05-16T10:02:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.309800", + "Timestamp": "2024-05-16T10:02:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.304800", + "Timestamp": "2024-05-16T10:02:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.179800", + "Timestamp": "2024-05-16T10:02:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.791000", + "Timestamp": "2024-05-16T10:02:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.786000", + "Timestamp": "2024-05-16T10:02:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.661000", + "Timestamp": "2024-05-16T10:02:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.028500", + "Timestamp": "2024-05-16T10:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.998500", + "Timestamp": "2024-05-16T10:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.898500", + "Timestamp": "2024-05-16T10:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.607700", + "Timestamp": "2024-05-16T10:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.730000", + "Timestamp": "2024-05-16T10:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.725000", + "Timestamp": "2024-05-16T10:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.600000", + "Timestamp": "2024-05-16T10:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.744800", + "Timestamp": "2024-05-16T10:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.739800", + "Timestamp": "2024-05-16T10:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.614800", + "Timestamp": "2024-05-16T10:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.722000", + "Timestamp": "2024-05-16T10:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.780100", + "Timestamp": "2024-05-16T10:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.692000", + "Timestamp": "2024-05-16T10:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.750100", + "Timestamp": "2024-05-16T10:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.592000", + "Timestamp": "2024-05-16T10:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.650100", + "Timestamp": "2024-05-16T10:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.892900", + "Timestamp": "2024-05-16T10:02:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362000", + "Timestamp": "2024-05-16T10:02:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.357000", + "Timestamp": "2024-05-16T10:02:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.232000", + "Timestamp": "2024-05-16T10:02:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.081000", + "Timestamp": "2024-05-16T10:02:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.773500", + "Timestamp": "2024-05-16T10:02:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.768500", + "Timestamp": "2024-05-16T10:02:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.643500", + "Timestamp": "2024-05-16T10:02:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T10:02:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.582000", + "Timestamp": "2024-05-16T10:02:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T10:02:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "f1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.391400", + "Timestamp": "2024-05-16T10:02:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "f1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.361400", + "Timestamp": "2024-05-16T10:02:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "f1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.261400", + "Timestamp": "2024-05-16T10:02:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.463200", + "Timestamp": "2024-05-16T10:02:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.892000", + "Timestamp": "2024-05-16T10:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.845500", + "Timestamp": "2024-05-16T10:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.840500", + "Timestamp": "2024-05-16T10:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.715500", + "Timestamp": "2024-05-16T10:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.940500", + "Timestamp": "2024-05-16T10:02:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.088900", + "Timestamp": "2024-05-16T10:02:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.935500", + "Timestamp": "2024-05-16T10:02:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.083900", + "Timestamp": "2024-05-16T10:02:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.810500", + "Timestamp": "2024-05-16T10:02:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.958900", + "Timestamp": "2024-05-16T10:02:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.427200", + "Timestamp": "2024-05-16T10:02:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.196600", + "Timestamp": "2024-05-16T10:02:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.245800", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.241800", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.185800", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273800", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268800", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143800", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.666500", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.661500", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.536500", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314200", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.284200", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184200", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115300", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111300", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055300", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.371100", + "Timestamp": "2024-05-16T10:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.366100", + "Timestamp": "2024-05-16T10:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.241100", + "Timestamp": "2024-05-16T10:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.317900", + "Timestamp": "2024-05-16T10:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.312900", + "Timestamp": "2024-05-16T10:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.187900", + "Timestamp": "2024-05-16T10:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.772200", + "Timestamp": "2024-05-16T10:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.767200", + "Timestamp": "2024-05-16T10:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.642200", + "Timestamp": "2024-05-16T10:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.517400", + "Timestamp": "2024-05-16T10:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.794200", + "Timestamp": "2024-05-16T10:02:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.789200", + "Timestamp": "2024-05-16T10:02:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.664200", + "Timestamp": "2024-05-16T10:02:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T10:02:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.585200", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.580200", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.455200", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.360200", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.355200", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.230200", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.923500", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.016300", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.918500", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.011300", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.793500", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.886300", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.187400", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.227400", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127400", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.927600", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.922600", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.797600", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.490300", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.460300", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.360300", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423000", + "Timestamp": "2024-05-16T10:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.501700", + "Timestamp": "2024-05-16T10:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.496700", + "Timestamp": "2024-05-16T10:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.371700", + "Timestamp": "2024-05-16T10:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.386300", + "Timestamp": "2024-05-16T10:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.381300", + "Timestamp": "2024-05-16T10:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.256300", + "Timestamp": "2024-05-16T10:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.304500", + "Timestamp": "2024-05-16T10:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.299500", + "Timestamp": "2024-05-16T10:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.174500", + "Timestamp": "2024-05-16T10:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214700", + "Timestamp": "2024-05-16T10:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.442500", + "Timestamp": "2024-05-16T10:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.436200", + "Timestamp": "2024-05-16T10:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.437500", + "Timestamp": "2024-05-16T10:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.431200", + "Timestamp": "2024-05-16T10:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.312500", + "Timestamp": "2024-05-16T10:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.306200", + "Timestamp": "2024-05-16T10:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.647500", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.642500", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.517500", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.636600", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.807700", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.802700", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.677700", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432700", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.560200", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.310200", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.305200", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.180200", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.886600", + "Timestamp": "2024-05-16T10:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170000", + "Timestamp": "2024-05-16T10:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166300", + "Timestamp": "2024-05-16T10:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T10:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.571100", + "Timestamp": "2024-05-16T10:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.566100", + "Timestamp": "2024-05-16T10:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.441100", + "Timestamp": "2024-05-16T10:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.537500", + "Timestamp": "2024-05-16T10:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.200200", + "Timestamp": "2024-05-16T10:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.277000", + "Timestamp": "2024-05-16T10:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273000", + "Timestamp": "2024-05-16T10:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.217000", + "Timestamp": "2024-05-16T10:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.795900", + "Timestamp": "2024-05-16T10:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.790900", + "Timestamp": "2024-05-16T10:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.665900", + "Timestamp": "2024-05-16T10:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.872900", + "Timestamp": "2024-05-16T10:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261300", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.256300", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131300", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.882600", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.407800", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.402800", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.277800", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.908800", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.903800", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.778800", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.378200", + "Timestamp": "2024-05-16T10:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.348200", + "Timestamp": "2024-05-16T10:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.248200", + "Timestamp": "2024-05-16T10:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145200", + "Timestamp": "2024-05-16T10:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141500", + "Timestamp": "2024-05-16T10:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085200", + "Timestamp": "2024-05-16T10:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.798700", + "Timestamp": "2024-05-16T10:02:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.793700", + "Timestamp": "2024-05-16T10:02:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.668700", + "Timestamp": "2024-05-16T10:02:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.222400", + "Timestamp": "2024-05-16T10:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.418000", + "Timestamp": "2024-05-16T10:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.192400", + "Timestamp": "2024-05-16T10:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.388000", + "Timestamp": "2024-05-16T10:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.092400", + "Timestamp": "2024-05-16T10:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.288000", + "Timestamp": "2024-05-16T10:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146600", + "Timestamp": "2024-05-16T10:02:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142900", + "Timestamp": "2024-05-16T10:02:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086600", + "Timestamp": "2024-05-16T10:02:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.589000", + "Timestamp": "2024-05-16T10:02:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Windows", + "SpotPrice": "20.348000", + "Timestamp": "2024-05-16T10:02:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.452100", + "Timestamp": "2024-05-16T10:02:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.556300", + "Timestamp": "2024-05-16T10:02:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.526300", + "Timestamp": "2024-05-16T10:02:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.426300", + "Timestamp": "2024-05-16T10:02:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.383100", + "Timestamp": "2024-05-16T10:02:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.629400", + "Timestamp": "2024-05-16T10:02:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.558700", + "Timestamp": "2024-05-16T10:02:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.553700", + "Timestamp": "2024-05-16T10:02:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.428700", + "Timestamp": "2024-05-16T10:02:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.780800", + "Timestamp": "2024-05-16T10:02:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.775800", + "Timestamp": "2024-05-16T10:02:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.650800", + "Timestamp": "2024-05-16T10:02:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.714600", + "Timestamp": "2024-05-16T10:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.915200", + "Timestamp": "2024-05-16T10:02:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089000", + "Timestamp": "2024-05-16T10:02:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085300", + "Timestamp": "2024-05-16T10:02:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029000", + "Timestamp": "2024-05-16T10:02:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.318700", + "Timestamp": "2024-05-16T10:02:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.313700", + "Timestamp": "2024-05-16T10:02:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.188700", + "Timestamp": "2024-05-16T10:02:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.461100", + "Timestamp": "2024-05-16T10:02:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.456100", + "Timestamp": "2024-05-16T10:02:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.331100", + "Timestamp": "2024-05-16T10:02:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.389200", + "Timestamp": "2024-05-16T10:02:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.384200", + "Timestamp": "2024-05-16T10:02:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.259200", + "Timestamp": "2024-05-16T10:02:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.762700", + "Timestamp": "2024-05-16T10:02:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.289600", + "Timestamp": "2024-05-16T10:02:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.284600", + "Timestamp": "2024-05-16T10:02:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159600", + "Timestamp": "2024-05-16T10:02:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.539000", + "Timestamp": "2024-05-16T10:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.534000", + "Timestamp": "2024-05-16T10:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.409000", + "Timestamp": "2024-05-16T10:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.345800", + "Timestamp": "2024-05-16T10:02:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108300", + "Timestamp": "2024-05-16T10:02:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T10:02:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048300", + "Timestamp": "2024-05-16T10:02:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.551700", + "Timestamp": "2024-05-16T10:02:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.575700", + "Timestamp": "2024-05-16T10:02:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.521700", + "Timestamp": "2024-05-16T10:02:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.545700", + "Timestamp": "2024-05-16T10:02:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.421700", + "Timestamp": "2024-05-16T10:02:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.445700", + "Timestamp": "2024-05-16T10:02:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.114800", + "Timestamp": "2024-05-16T10:02:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.329300", + "Timestamp": "2024-05-16T10:02:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.324300", + "Timestamp": "2024-05-16T10:02:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.199300", + "Timestamp": "2024-05-16T10:02:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354200", + "Timestamp": "2024-05-16T10:02:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349200", + "Timestamp": "2024-05-16T10:02:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224200", + "Timestamp": "2024-05-16T10:02:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.987900", + "Timestamp": "2024-05-16T10:02:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.982900", + "Timestamp": "2024-05-16T10:02:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.857900", + "Timestamp": "2024-05-16T10:02:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.985500", + "Timestamp": "2024-05-16T10:02:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.451700", + "Timestamp": "2024-05-16T10:02:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.446700", + "Timestamp": "2024-05-16T10:02:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.321700", + "Timestamp": "2024-05-16T10:02:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.389200", + "Timestamp": "2024-05-16T10:02:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.384200", + "Timestamp": "2024-05-16T10:02:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.259200", + "Timestamp": "2024-05-16T10:02:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.117000", + "Timestamp": "2024-05-16T10:01:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.769600", + "Timestamp": "2024-05-16T10:01:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.769600", + "Timestamp": "2024-05-16T10:01:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.769600", + "Timestamp": "2024-05-16T10:01:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.065500", + "Timestamp": "2024-05-16T10:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.060500", + "Timestamp": "2024-05-16T10:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.935500", + "Timestamp": "2024-05-16T10:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.442600", + "Timestamp": "2024-05-16T10:01:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.437600", + "Timestamp": "2024-05-16T10:01:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.312600", + "Timestamp": "2024-05-16T10:01:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.234500", + "Timestamp": "2024-05-16T10:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.230800", + "Timestamp": "2024-05-16T10:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.174500", + "Timestamp": "2024-05-16T10:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.809000", + "Timestamp": "2024-05-16T09:47:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.804000", + "Timestamp": "2024-05-16T09:47:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.679000", + "Timestamp": "2024-05-16T09:47:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.784300", + "Timestamp": "2024-05-16T09:47:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.779300", + "Timestamp": "2024-05-16T09:47:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.654300", + "Timestamp": "2024-05-16T09:47:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.659300", + "Timestamp": "2024-05-16T09:47:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127700", + "Timestamp": "2024-05-16T09:47:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123700", + "Timestamp": "2024-05-16T09:47:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067700", + "Timestamp": "2024-05-16T09:47:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.469200", + "Timestamp": "2024-05-16T09:47:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.421600", + "Timestamp": "2024-05-16T09:47:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.840800", + "Timestamp": "2024-05-16T09:47:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.215900", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.255900", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.155900", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.509100", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.504100", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.379100", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.511400", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.506400", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.381400", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.766000", + "Timestamp": "2024-05-16T09:47:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.540800", + "Timestamp": "2024-05-16T09:47:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.535800", + "Timestamp": "2024-05-16T09:47:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.410800", + "Timestamp": "2024-05-16T09:47:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.404200", + "Timestamp": "2024-05-16T09:47:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.374200", + "Timestamp": "2024-05-16T09:47:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.274200", + "Timestamp": "2024-05-16T09:47:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.771200", + "Timestamp": "2024-05-16T09:47:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.766200", + "Timestamp": "2024-05-16T09:47:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.641200", + "Timestamp": "2024-05-16T09:47:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225000", + "Timestamp": "2024-05-16T09:47:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.649800", + "Timestamp": "2024-05-16T09:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.644800", + "Timestamp": "2024-05-16T09:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.519800", + "Timestamp": "2024-05-16T09:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.840900", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.835900", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.710900", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.405000", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.400000", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.275000", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.888300", + "Timestamp": "2024-05-16T09:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.883300", + "Timestamp": "2024-05-16T09:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.758300", + "Timestamp": "2024-05-16T09:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.458000", + "Timestamp": "2024-05-16T09:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.453000", + "Timestamp": "2024-05-16T09:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.328000", + "Timestamp": "2024-05-16T09:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.655700", + "Timestamp": "2024-05-16T09:47:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.308000", + "Timestamp": "2024-05-16T09:47:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.303000", + "Timestamp": "2024-05-16T09:47:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.178000", + "Timestamp": "2024-05-16T09:47:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.430700", + "Timestamp": "2024-05-16T09:47:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.214700", + "Timestamp": "2024-05-16T09:47:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.184700", + "Timestamp": "2024-05-16T09:47:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.084700", + "Timestamp": "2024-05-16T09:47:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.115200", + "Timestamp": "2024-05-16T09:47:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.110200", + "Timestamp": "2024-05-16T09:47:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.985200", + "Timestamp": "2024-05-16T09:47:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.780000", + "Timestamp": "2024-05-16T09:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.484400", + "Timestamp": "2024-05-16T09:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.980600", + "Timestamp": "2024-05-16T09:47:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.975600", + "Timestamp": "2024-05-16T09:47:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.850600", + "Timestamp": "2024-05-16T09:47:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.325500", + "Timestamp": "2024-05-16T09:47:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.320500", + "Timestamp": "2024-05-16T09:47:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.195500", + "Timestamp": "2024-05-16T09:47:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.710600", + "Timestamp": "2024-05-16T09:47:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T09:47:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106000", + "Timestamp": "2024-05-16T09:47:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049700", + "Timestamp": "2024-05-16T09:47:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.765200", + "Timestamp": "2024-05-16T09:47:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.688900", + "Timestamp": "2024-05-16T09:47:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.700500", + "Timestamp": "2024-05-16T09:47:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.695500", + "Timestamp": "2024-05-16T09:47:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.570500", + "Timestamp": "2024-05-16T09:47:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.307400", + "Timestamp": "2024-05-16T09:47:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.302400", + "Timestamp": "2024-05-16T09:47:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.177400", + "Timestamp": "2024-05-16T09:47:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.303500", + "Timestamp": "2024-05-16T09:47:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.298500", + "Timestamp": "2024-05-16T09:47:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.173500", + "Timestamp": "2024-05-16T09:47:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.322100", + "Timestamp": "2024-05-16T09:47:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.317100", + "Timestamp": "2024-05-16T09:47:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.192100", + "Timestamp": "2024-05-16T09:47:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.579500", + "Timestamp": "2024-05-16T09:47:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.619500", + "Timestamp": "2024-05-16T09:47:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.519500", + "Timestamp": "2024-05-16T09:47:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.500800", + "Timestamp": "2024-05-16T09:47:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.548100", + "Timestamp": "2024-05-16T09:47:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.314500", + "Timestamp": "2024-05-16T09:47:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.309500", + "Timestamp": "2024-05-16T09:47:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.184500", + "Timestamp": "2024-05-16T09:47:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "15.318200", + "Timestamp": "2024-05-16T09:47:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "15.313200", + "Timestamp": "2024-05-16T09:47:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "15.188200", + "Timestamp": "2024-05-16T09:47:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.452300", + "Timestamp": "2024-05-16T09:47:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.447300", + "Timestamp": "2024-05-16T09:47:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.322300", + "Timestamp": "2024-05-16T09:47:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.340600", + "Timestamp": "2024-05-16T09:47:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.335600", + "Timestamp": "2024-05-16T09:47:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.210600", + "Timestamp": "2024-05-16T09:47:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.908000", + "Timestamp": "2024-05-16T09:47:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226800", + "Timestamp": "2024-05-16T09:47:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.117800", + "Timestamp": "2024-05-16T09:47:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.112800", + "Timestamp": "2024-05-16T09:47:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.987800", + "Timestamp": "2024-05-16T09:47:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.319700", + "Timestamp": "2024-05-16T09:47:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.409400", + "Timestamp": "2024-05-16T09:46:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.404400", + "Timestamp": "2024-05-16T09:46:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.279400", + "Timestamp": "2024-05-16T09:46:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.290000", + "Timestamp": "2024-05-16T09:46:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.256100", + "Timestamp": "2024-05-16T09:46:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.252400", + "Timestamp": "2024-05-16T09:46:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196100", + "Timestamp": "2024-05-16T09:46:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.903000", + "Timestamp": "2024-05-16T09:46:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.294600", + "Timestamp": "2024-05-16T09:46:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.264600", + "Timestamp": "2024-05-16T09:46:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.164600", + "Timestamp": "2024-05-16T09:46:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.154100", + "Timestamp": "2024-05-16T09:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.149100", + "Timestamp": "2024-05-16T09:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.024100", + "Timestamp": "2024-05-16T09:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.553400", + "Timestamp": "2024-05-16T09:46:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.318600", + "Timestamp": "2024-05-16T09:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.911900", + "Timestamp": "2024-05-16T09:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.906900", + "Timestamp": "2024-05-16T09:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.781900", + "Timestamp": "2024-05-16T09:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.747100", + "Timestamp": "2024-05-16T09:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.717100", + "Timestamp": "2024-05-16T09:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.617100", + "Timestamp": "2024-05-16T09:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.348100", + "Timestamp": "2024-05-16T09:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.192500", + "Timestamp": "2024-05-16T09:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.188800", + "Timestamp": "2024-05-16T09:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.132500", + "Timestamp": "2024-05-16T09:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.198500", + "Timestamp": "2024-05-16T09:46:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193500", + "Timestamp": "2024-05-16T09:46:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068500", + "Timestamp": "2024-05-16T09:46:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.947700", + "Timestamp": "2024-05-16T09:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.942700", + "Timestamp": "2024-05-16T09:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.817700", + "Timestamp": "2024-05-16T09:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.890400", + "Timestamp": "2024-05-16T09:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.885400", + "Timestamp": "2024-05-16T09:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.760400", + "Timestamp": "2024-05-16T09:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.538900", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.869900", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092500", + "Timestamp": "2024-05-16T09:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088800", + "Timestamp": "2024-05-16T09:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032500", + "Timestamp": "2024-05-16T09:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140800", + "Timestamp": "2024-05-16T09:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137100", + "Timestamp": "2024-05-16T09:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080800", + "Timestamp": "2024-05-16T09:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.380300", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.060000", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.382000", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.377000", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.252000", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.966100", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.552500", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.522500", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.422500", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145700", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045700", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.443100", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.438100", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.313100", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.716500", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.711500", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.586500", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.664800", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271400", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266400", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141400", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.734700", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.788400", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.758400", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.658400", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.817900", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.812900", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.687900", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.286900", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.282900", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.226900", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.143700", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.138700", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.013700", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.152500", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.147500", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.022500", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169800", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166100", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.083500", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.045800", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.040800", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.915800", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141200", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041200", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.806900", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.801900", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.676900", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.418200", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.500300", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.495300", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.370300", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123700", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119700", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063700", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.924300", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.919300", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.794300", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.440800", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.410800", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.310800", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.023300", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.018300", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.893300", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.511900", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.481900", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.381900", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.249900", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.244900", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119900", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.701900", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047400", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.907700", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.877700", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.777700", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146100", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142100", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086100", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T09:33:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073100", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044100", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013100", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119000", + "Timestamp": "2024-05-16T09:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.299900", + "Timestamp": "2024-05-16T09:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.177300", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174300", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.117300", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.968900", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.957800", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.527000", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.497000", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.397000", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118400", + "Timestamp": "2024-05-16T09:32:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158400", + "Timestamp": "2024-05-16T09:32:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058400", + "Timestamp": "2024-05-16T09:32:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.110800", + "Timestamp": "2024-05-16T09:32:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.105800", + "Timestamp": "2024-05-16T09:32:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.980800", + "Timestamp": "2024-05-16T09:32:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.459400", + "Timestamp": "2024-05-16T09:32:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.684200", + "Timestamp": "2024-05-16T09:32:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.738700", + "Timestamp": "2024-05-16T09:32:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.190600", + "Timestamp": "2024-05-16T09:32:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.426200", + "Timestamp": "2024-05-16T09:32:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.421200", + "Timestamp": "2024-05-16T09:32:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.296200", + "Timestamp": "2024-05-16T09:32:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.074600", + "Timestamp": "2024-05-16T09:32:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.069600", + "Timestamp": "2024-05-16T09:32:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.944600", + "Timestamp": "2024-05-16T09:32:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.385000", + "Timestamp": "2024-05-16T09:32:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.380000", + "Timestamp": "2024-05-16T09:32:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.255000", + "Timestamp": "2024-05-16T09:32:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210300", + "Timestamp": "2024-05-16T09:32:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212300", + "Timestamp": "2024-05-16T09:32:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.742700", + "Timestamp": "2024-05-16T09:32:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.737700", + "Timestamp": "2024-05-16T09:32:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.612700", + "Timestamp": "2024-05-16T09:32:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.469700", + "Timestamp": "2024-05-16T09:32:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.439700", + "Timestamp": "2024-05-16T09:32:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.339700", + "Timestamp": "2024-05-16T09:32:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.675200", + "Timestamp": "2024-05-16T09:32:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.670200", + "Timestamp": "2024-05-16T09:32:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.545200", + "Timestamp": "2024-05-16T09:32:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.893300", + "Timestamp": "2024-05-16T09:32:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.799900", + "Timestamp": "2024-05-16T09:32:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.567800", + "Timestamp": "2024-05-16T09:32:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216200", + "Timestamp": "2024-05-16T09:32:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.250000", + "Timestamp": "2024-05-16T09:32:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.455800", + "Timestamp": "2024-05-16T09:32:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083800", + "Timestamp": "2024-05-16T09:32:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080100", + "Timestamp": "2024-05-16T09:32:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023800", + "Timestamp": "2024-05-16T09:32:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.121700", + "Timestamp": "2024-05-16T09:32:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.820100", + "Timestamp": "2024-05-16T09:31:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.815100", + "Timestamp": "2024-05-16T09:31:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.690100", + "Timestamp": "2024-05-16T09:31:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.582200", + "Timestamp": "2024-05-16T09:31:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.577200", + "Timestamp": "2024-05-16T09:31:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.452200", + "Timestamp": "2024-05-16T09:31:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.606800", + "Timestamp": "2024-05-16T09:31:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.576800", + "Timestamp": "2024-05-16T09:31:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.476800", + "Timestamp": "2024-05-16T09:31:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.027900", + "Timestamp": "2024-05-16T09:31:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.655600", + "Timestamp": "2024-05-16T09:31:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.650600", + "Timestamp": "2024-05-16T09:31:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.525600", + "Timestamp": "2024-05-16T09:31:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T09:31:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.557100", + "Timestamp": "2024-05-16T09:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.527100", + "Timestamp": "2024-05-16T09:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.427100", + "Timestamp": "2024-05-16T09:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.867600", + "Timestamp": "2024-05-16T09:31:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.862600", + "Timestamp": "2024-05-16T09:31:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.737600", + "Timestamp": "2024-05-16T09:31:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.631200", + "Timestamp": "2024-05-16T09:31:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.653900", + "Timestamp": "2024-05-16T09:31:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.584400", + "Timestamp": "2024-05-16T09:31:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.579400", + "Timestamp": "2024-05-16T09:31:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.454400", + "Timestamp": "2024-05-16T09:31:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073200", + "Timestamp": "2024-05-16T09:31:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044200", + "Timestamp": "2024-05-16T09:31:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013200", + "Timestamp": "2024-05-16T09:31:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.368400", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.363400", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.238400", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.610400", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.605400", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.480400", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.374800", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.369800", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.244800", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.927400", + "Timestamp": "2024-05-16T09:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.967500", + "Timestamp": "2024-05-16T09:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.880600", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.875600", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.750600", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.339300", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334300", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.209300", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.515200", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.510200", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.385200", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.841300", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.836300", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.711300", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.414500", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.410800", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.354500", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.046900", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.572200", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.567200", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.442200", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.707200", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.702200", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.577200", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.614000", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.934800", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.904800", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.804800", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.871600", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.702500", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108500", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.120600", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.514700", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081100", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.052100", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021100", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.442300", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.437300", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.312300", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.737500", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.175200", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.170200", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.045200", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.577600", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.572600", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.447600", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.888900", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.883900", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.758900", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.441400", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143000", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158700", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139300", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155000", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083000", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098700", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102300", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098600", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042300", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.628400", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.623400", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.498400", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.303600", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.346100", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.298600", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.341100", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.173600", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.216100", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.989900", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.984900", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.859900", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.976100", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.971100", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.846100", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170800", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166800", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439900", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439800", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.238300", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.560800", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.555800", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.430800", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.003600", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.998600", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.873600", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.095100", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.090100", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.965100", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130800", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127100", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070800", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.496800", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.491800", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.366800", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.985600", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.955600", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.855600", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139800", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179800", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079800", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.446200", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.441200", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.316200", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.519100", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.514100", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.389100", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.442000", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.666100", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.661100", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.536100", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.096100", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.091100", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.966100", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063100", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003100", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003100", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161100", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157100", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101100", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113300", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109600", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053300", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149600", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145900", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089600", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.345200", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.340200", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.215200", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099100", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042800", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073000", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044000", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013000", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.527600", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "f1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.497600", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.397600", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150500", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190500", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090500", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.233700", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.229700", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.173700", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.583900", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.578900", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.453900", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.722800", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.880100", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.225900", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.325200", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.220900", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.320200", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.095900", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.195200", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.683800", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.096500", + "Timestamp": "2024-05-16T09:31:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.109100", + "Timestamp": "2024-05-16T09:31:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T09:31:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T09:31:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046800", + "Timestamp": "2024-05-16T09:31:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.781000", + "Timestamp": "2024-05-16T09:31:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.751000", + "Timestamp": "2024-05-16T09:31:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.651000", + "Timestamp": "2024-05-16T09:31:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "p2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.424500", + "Timestamp": "2024-05-16T09:31:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.997400", + "Timestamp": "2024-05-16T09:18:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.992400", + "Timestamp": "2024-05-16T09:18:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.867400", + "Timestamp": "2024-05-16T09:18:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119600", + "Timestamp": "2024-05-16T09:18:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T09:17:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.919400", + "Timestamp": "2024-05-16T09:17:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.759500", + "Timestamp": "2024-05-16T09:17:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.407800", + "Timestamp": "2024-05-16T09:17:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.402800", + "Timestamp": "2024-05-16T09:17:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.277800", + "Timestamp": "2024-05-16T09:17:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.420800", + "Timestamp": "2024-05-16T09:17:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.415800", + "Timestamp": "2024-05-16T09:17:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.290800", + "Timestamp": "2024-05-16T09:17:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.828000", + "Timestamp": "2024-05-16T09:17:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.677600", + "Timestamp": "2024-05-16T09:17:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.823000", + "Timestamp": "2024-05-16T09:17:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.672600", + "Timestamp": "2024-05-16T09:17:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.698000", + "Timestamp": "2024-05-16T09:17:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.547600", + "Timestamp": "2024-05-16T09:17:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.378200", + "Timestamp": "2024-05-16T09:17:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.123200", + "Timestamp": "2024-05-16T09:17:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.781400", + "Timestamp": "2024-05-16T09:17:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.274200", + "Timestamp": "2024-05-16T09:17:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.269200", + "Timestamp": "2024-05-16T09:17:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.144200", + "Timestamp": "2024-05-16T09:17:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.192300", + "Timestamp": "2024-05-16T09:17:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.187300", + "Timestamp": "2024-05-16T09:17:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.062300", + "Timestamp": "2024-05-16T09:17:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.662900", + "Timestamp": "2024-05-16T09:17:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.657900", + "Timestamp": "2024-05-16T09:17:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.532900", + "Timestamp": "2024-05-16T09:17:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.899700", + "Timestamp": "2024-05-16T09:17:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.894700", + "Timestamp": "2024-05-16T09:17:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.769700", + "Timestamp": "2024-05-16T09:17:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.607200", + "Timestamp": "2024-05-16T09:17:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.611500", + "Timestamp": "2024-05-16T09:17:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.606500", + "Timestamp": "2024-05-16T09:17:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.481500", + "Timestamp": "2024-05-16T09:17:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.705200", + "Timestamp": "2024-05-16T09:17:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.700200", + "Timestamp": "2024-05-16T09:17:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.575200", + "Timestamp": "2024-05-16T09:17:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.834000", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.802600", + "Timestamp": "2024-05-16T09:17:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.797600", + "Timestamp": "2024-05-16T09:17:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.672600", + "Timestamp": "2024-05-16T09:17:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.716100", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.711100", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.586100", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210300", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.535200", + "Timestamp": "2024-05-16T09:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.530200", + "Timestamp": "2024-05-16T09:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.405200", + "Timestamp": "2024-05-16T09:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.048600", + "Timestamp": "2024-05-16T09:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.043600", + "Timestamp": "2024-05-16T09:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.918600", + "Timestamp": "2024-05-16T09:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.624800", + "Timestamp": "2024-05-16T09:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.641000", + "Timestamp": "2024-05-16T09:17:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.415300", + "Timestamp": "2024-05-16T09:17:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.410300", + "Timestamp": "2024-05-16T09:17:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.285300", + "Timestamp": "2024-05-16T09:17:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.632000", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173700", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170000", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113700", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.827500", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.822500", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.697500", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.561100", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.725600", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.543500", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.797300", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.767300", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.667300", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.518100", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.513100", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.388100", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.874100", + "Timestamp": "2024-05-16T09:17:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.652000", + "Timestamp": "2024-05-16T09:17:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.647000", + "Timestamp": "2024-05-16T09:17:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.522000", + "Timestamp": "2024-05-16T09:17:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.515100", + "Timestamp": "2024-05-16T09:17:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.910200", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212900", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176900", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173200", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.640000", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.635000", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.510000", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.153900", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.485900", + "Timestamp": "2024-05-16T09:17:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.480900", + "Timestamp": "2024-05-16T09:17:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.355900", + "Timestamp": "2024-05-16T09:17:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330500", + "Timestamp": "2024-05-16T09:17:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325500", + "Timestamp": "2024-05-16T09:17:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200500", + "Timestamp": "2024-05-16T09:17:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.211600", + "Timestamp": "2024-05-16T09:17:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.201000", + "Timestamp": "2024-05-16T09:17:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.715300", + "Timestamp": "2024-05-16T09:17:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.712400", + "Timestamp": "2024-05-16T09:17:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.685300", + "Timestamp": "2024-05-16T09:17:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.682400", + "Timestamp": "2024-05-16T09:17:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.585300", + "Timestamp": "2024-05-16T09:17:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.582400", + "Timestamp": "2024-05-16T09:17:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.823000", + "Timestamp": "2024-05-16T09:17:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.145000", + "Timestamp": "2024-05-16T09:17:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.266100", + "Timestamp": "2024-05-16T09:17:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.433200", + "Timestamp": "2024-05-16T09:17:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.616300", + "Timestamp": "2024-05-16T09:17:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.611300", + "Timestamp": "2024-05-16T09:17:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.486300", + "Timestamp": "2024-05-16T09:17:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.795300", + "Timestamp": "2024-05-16T09:17:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.849800", + "Timestamp": "2024-05-16T09:17:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.863400", + "Timestamp": "2024-05-16T09:17:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.858400", + "Timestamp": "2024-05-16T09:17:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.733400", + "Timestamp": "2024-05-16T09:17:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.367900", + "Timestamp": "2024-05-16T09:17:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.366100", + "Timestamp": "2024-05-16T09:17:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.362900", + "Timestamp": "2024-05-16T09:17:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.361100", + "Timestamp": "2024-05-16T09:17:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.237900", + "Timestamp": "2024-05-16T09:17:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.236100", + "Timestamp": "2024-05-16T09:17:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.766100", + "Timestamp": "2024-05-16T09:17:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.761100", + "Timestamp": "2024-05-16T09:17:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.636100", + "Timestamp": "2024-05-16T09:17:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.578100", + "Timestamp": "2024-05-16T09:17:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.618100", + "Timestamp": "2024-05-16T09:17:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.518100", + "Timestamp": "2024-05-16T09:17:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.252400", + "Timestamp": "2024-05-16T09:17:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "a1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.247400", + "Timestamp": "2024-05-16T09:17:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122400", + "Timestamp": "2024-05-16T09:17:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211500", + "Timestamp": "2024-05-16T09:17:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.571700", + "Timestamp": "2024-05-16T09:17:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.541700", + "Timestamp": "2024-05-16T09:17:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.441700", + "Timestamp": "2024-05-16T09:17:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.177900", + "Timestamp": "2024-05-16T09:17:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173900", + "Timestamp": "2024-05-16T09:17:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.117900", + "Timestamp": "2024-05-16T09:17:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.844500", + "Timestamp": "2024-05-16T09:17:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.422700", + "Timestamp": "2024-05-16T09:17:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.417700", + "Timestamp": "2024-05-16T09:17:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.292700", + "Timestamp": "2024-05-16T09:17:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.642600", + "Timestamp": "2024-05-16T09:17:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.637600", + "Timestamp": "2024-05-16T09:17:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.512600", + "Timestamp": "2024-05-16T09:17:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.214600", + "Timestamp": "2024-05-16T09:17:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.209600", + "Timestamp": "2024-05-16T09:17:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.084600", + "Timestamp": "2024-05-16T09:17:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.499900", + "Timestamp": "2024-05-16T09:16:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.054000", + "Timestamp": "2024-05-16T09:16:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068300", + "Timestamp": "2024-05-16T09:16:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.008300", + "Timestamp": "2024-05-16T09:16:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008300", + "Timestamp": "2024-05-16T09:16:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.481500", + "Timestamp": "2024-05-16T09:16:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.476500", + "Timestamp": "2024-05-16T09:16:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.351500", + "Timestamp": "2024-05-16T09:16:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.988600", + "Timestamp": "2024-05-16T09:16:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.786600", + "Timestamp": "2024-05-16T09:16:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.781600", + "Timestamp": "2024-05-16T09:16:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.656600", + "Timestamp": "2024-05-16T09:16:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.773700", + "Timestamp": "2024-05-16T09:16:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.876600", + "Timestamp": "2024-05-16T09:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.871600", + "Timestamp": "2024-05-16T09:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.746600", + "Timestamp": "2024-05-16T09:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.063500", + "Timestamp": "2024-05-16T09:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.033500", + "Timestamp": "2024-05-16T09:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.933500", + "Timestamp": "2024-05-16T09:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126000", + "Timestamp": "2024-05-16T09:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122300", + "Timestamp": "2024-05-16T09:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066000", + "Timestamp": "2024-05-16T09:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.645400", + "Timestamp": "2024-05-16T09:16:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.510400", + "Timestamp": "2024-05-16T09:16:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.948000", + "Timestamp": "2024-05-16T09:16:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.918000", + "Timestamp": "2024-05-16T09:16:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.818000", + "Timestamp": "2024-05-16T09:16:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.197900", + "Timestamp": "2024-05-16T09:16:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.192900", + "Timestamp": "2024-05-16T09:16:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.067900", + "Timestamp": "2024-05-16T09:16:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.621100", + "Timestamp": "2024-05-16T09:16:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.616100", + "Timestamp": "2024-05-16T09:16:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.491100", + "Timestamp": "2024-05-16T09:16:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.402200", + "Timestamp": "2024-05-16T09:16:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.397200", + "Timestamp": "2024-05-16T09:16:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.272200", + "Timestamp": "2024-05-16T09:16:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.453600", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.706800", + "Timestamp": "2024-05-16T09:16:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.676800", + "Timestamp": "2024-05-16T09:16:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.576800", + "Timestamp": "2024-05-16T09:16:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.718200", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.713200", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.588200", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.540700", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.535700", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.410700", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.976900", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.971900", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.846900", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.039800", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.009800", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.909800", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.381700", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.284900", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281200", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224900", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.694700", + "Timestamp": "2024-05-16T09:16:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.689700", + "Timestamp": "2024-05-16T09:16:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.564700", + "Timestamp": "2024-05-16T09:16:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.940800", + "Timestamp": "2024-05-16T09:16:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.530100", + "Timestamp": "2024-05-16T09:16:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Windows", + "SpotPrice": "3.911900", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.202400", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.112400", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.197400", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.107400", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.072400", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.982400", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.714000", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.402000", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.397000", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.272000", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.476100", + "Timestamp": "2024-05-16T09:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.087500", + "Timestamp": "2024-05-16T09:16:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.670900", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.665900", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.540900", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.650500", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.415300", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.645500", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.410300", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.520500", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.285300", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.765900", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.760900", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.635900", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.989700", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.329800", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.324800", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.199800", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.771200", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.205700", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.200700", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075700", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213300", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416500", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.484600", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.454600", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.354600", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294400", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.290400", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.234400", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.755400", + "Timestamp": "2024-05-16T09:12:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.755400", + "Timestamp": "2024-05-16T09:12:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.760900", + "Timestamp": "2024-05-16T09:02:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.230000", + "Timestamp": "2024-05-16T09:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.527500", + "Timestamp": "2024-05-16T09:02:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.523700", + "Timestamp": "2024-05-16T09:02:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.493700", + "Timestamp": "2024-05-16T09:02:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.393700", + "Timestamp": "2024-05-16T09:02:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164800", + "Timestamp": "2024-05-16T09:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161100", + "Timestamp": "2024-05-16T09:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T09:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095300", + "Timestamp": "2024-05-16T09:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091600", + "Timestamp": "2024-05-16T09:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035300", + "Timestamp": "2024-05-16T09:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171700", + "Timestamp": "2024-05-16T09:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167700", + "Timestamp": "2024-05-16T09:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111700", + "Timestamp": "2024-05-16T09:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.187800", + "Timestamp": "2024-05-16T09:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.412400", + "Timestamp": "2024-05-16T09:02:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.863200", + "Timestamp": "2024-05-16T09:02:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.540600", + "Timestamp": "2024-05-16T09:02:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.535600", + "Timestamp": "2024-05-16T09:02:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.410600", + "Timestamp": "2024-05-16T09:02:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.143100", + "Timestamp": "2024-05-16T09:02:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.138100", + "Timestamp": "2024-05-16T09:02:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.013100", + "Timestamp": "2024-05-16T09:02:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109600", + "Timestamp": "2024-05-16T09:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.230000", + "Timestamp": "2024-05-16T09:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.877700", + "Timestamp": "2024-05-16T09:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.877700", + "Timestamp": "2024-05-16T09:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.877700", + "Timestamp": "2024-05-16T09:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.777000", + "Timestamp": "2024-05-16T09:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.772000", + "Timestamp": "2024-05-16T09:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.647000", + "Timestamp": "2024-05-16T09:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.993700", + "Timestamp": "2024-05-16T09:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.205600", + "Timestamp": "2024-05-16T09:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.795700", + "Timestamp": "2024-05-16T09:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.959000", + "Timestamp": "2024-05-16T09:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.954000", + "Timestamp": "2024-05-16T09:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.829000", + "Timestamp": "2024-05-16T09:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.028300", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.023300", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.898300", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.496700", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.491700", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.366700", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.796800", + "Timestamp": "2024-05-16T09:02:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.791800", + "Timestamp": "2024-05-16T09:02:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.666800", + "Timestamp": "2024-05-16T09:02:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.577300", + "Timestamp": "2024-05-16T09:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.572300", + "Timestamp": "2024-05-16T09:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.447300", + "Timestamp": "2024-05-16T09:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.552200", + "Timestamp": "2024-05-16T09:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.338700", + "Timestamp": "2024-05-16T09:02:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.333700", + "Timestamp": "2024-05-16T09:02:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.208700", + "Timestamp": "2024-05-16T09:02:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.632900", + "Timestamp": "2024-05-16T09:02:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.627900", + "Timestamp": "2024-05-16T09:02:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.502900", + "Timestamp": "2024-05-16T09:02:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.598600", + "Timestamp": "2024-05-16T09:02:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.893900", + "Timestamp": "2024-05-16T09:02:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.984900", + "Timestamp": "2024-05-16T09:02:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.000000", + "Timestamp": "2024-05-16T09:02:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.636700", + "Timestamp": "2024-05-16T09:02:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.354400", + "Timestamp": "2024-05-16T09:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.349400", + "Timestamp": "2024-05-16T09:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.224400", + "Timestamp": "2024-05-16T09:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.165200", + "Timestamp": "2024-05-16T09:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.709500", + "Timestamp": "2024-05-16T09:02:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.973200", + "Timestamp": "2024-05-16T09:02:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.235300", + "Timestamp": "2024-05-16T09:02:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.231600", + "Timestamp": "2024-05-16T09:02:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175300", + "Timestamp": "2024-05-16T09:02:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.577800", + "Timestamp": "2024-05-16T09:02:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.547800", + "Timestamp": "2024-05-16T09:02:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.447800", + "Timestamp": "2024-05-16T09:02:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.770500", + "Timestamp": "2024-05-16T09:02:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.944100", + "Timestamp": "2024-05-16T09:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.034800", + "Timestamp": "2024-05-16T09:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.939100", + "Timestamp": "2024-05-16T09:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.029800", + "Timestamp": "2024-05-16T09:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.814100", + "Timestamp": "2024-05-16T09:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.904800", + "Timestamp": "2024-05-16T09:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.876500", + "Timestamp": "2024-05-16T09:02:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.846500", + "Timestamp": "2024-05-16T09:02:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.746500", + "Timestamp": "2024-05-16T09:02:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.373800", + "Timestamp": "2024-05-16T09:02:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.343800", + "Timestamp": "2024-05-16T09:02:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.243800", + "Timestamp": "2024-05-16T09:02:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.582200", + "Timestamp": "2024-05-16T09:02:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.577200", + "Timestamp": "2024-05-16T09:02:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.452200", + "Timestamp": "2024-05-16T09:02:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.163000", + "Timestamp": "2024-05-16T09:02:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.905100", + "Timestamp": "2024-05-16T09:02:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.900100", + "Timestamp": "2024-05-16T09:02:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.775100", + "Timestamp": "2024-05-16T09:02:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139000", + "Timestamp": "2024-05-16T09:02:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179000", + "Timestamp": "2024-05-16T09:02:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079000", + "Timestamp": "2024-05-16T09:02:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T09:02:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112900", + "Timestamp": "2024-05-16T09:02:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056600", + "Timestamp": "2024-05-16T09:02:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.850400", + "Timestamp": "2024-05-16T09:02:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.026600", + "Timestamp": "2024-05-16T09:02:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.787200", + "Timestamp": "2024-05-16T09:01:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.782200", + "Timestamp": "2024-05-16T09:01:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.657200", + "Timestamp": "2024-05-16T09:01:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.952400", + "Timestamp": "2024-05-16T09:01:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.277700", + "Timestamp": "2024-05-16T09:01:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.622400", + "Timestamp": "2024-05-16T09:01:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.617400", + "Timestamp": "2024-05-16T09:01:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.492400", + "Timestamp": "2024-05-16T09:01:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.110800", + "Timestamp": "2024-05-16T09:01:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.080800", + "Timestamp": "2024-05-16T09:01:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.980800", + "Timestamp": "2024-05-16T09:01:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.236600", + "Timestamp": "2024-05-16T09:01:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.806000", + "Timestamp": "2024-05-16T09:01:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.776000", + "Timestamp": "2024-05-16T09:01:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.676000", + "Timestamp": "2024-05-16T09:01:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.752000", + "Timestamp": "2024-05-16T09:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.747000", + "Timestamp": "2024-05-16T09:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.622000", + "Timestamp": "2024-05-16T09:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.281800", + "Timestamp": "2024-05-16T09:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.268800", + "Timestamp": "2024-05-16T09:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276800", + "Timestamp": "2024-05-16T09:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.263800", + "Timestamp": "2024-05-16T09:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.151800", + "Timestamp": "2024-05-16T09:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.138800", + "Timestamp": "2024-05-16T09:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.023000", + "Timestamp": "2024-05-16T09:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.018000", + "Timestamp": "2024-05-16T09:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.893000", + "Timestamp": "2024-05-16T09:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.319500", + "Timestamp": "2024-05-16T09:01:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.314500", + "Timestamp": "2024-05-16T09:01:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.189500", + "Timestamp": "2024-05-16T09:01:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.860500", + "Timestamp": "2024-05-16T09:01:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.418000", + "Timestamp": "2024-05-16T09:01:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.413000", + "Timestamp": "2024-05-16T09:01:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.288000", + "Timestamp": "2024-05-16T09:01:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.601900", + "Timestamp": "2024-05-16T09:01:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.586800", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.237700", + "Timestamp": "2024-05-16T09:01:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.233700", + "Timestamp": "2024-05-16T09:01:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177700", + "Timestamp": "2024-05-16T09:01:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.703200", + "Timestamp": "2024-05-16T09:01:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.698200", + "Timestamp": "2024-05-16T09:01:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.573200", + "Timestamp": "2024-05-16T09:01:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.233800", + "Timestamp": "2024-05-16T09:01:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.203800", + "Timestamp": "2024-05-16T09:01:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.103800", + "Timestamp": "2024-05-16T09:01:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.155200", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.125200", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.025200", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.325700", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.320700", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195700", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048400", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.630000", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.625000", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.500000", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.366800", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.676800", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.671800", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.546800", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.991600", + "Timestamp": "2024-05-16T09:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.986600", + "Timestamp": "2024-05-16T09:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.861600", + "Timestamp": "2024-05-16T09:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123200", + "Timestamp": "2024-05-16T09:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163200", + "Timestamp": "2024-05-16T09:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063200", + "Timestamp": "2024-05-16T09:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.702500", + "Timestamp": "2024-05-16T09:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.450000", + "Timestamp": "2024-05-16T09:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.445000", + "Timestamp": "2024-05-16T09:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.320000", + "Timestamp": "2024-05-16T09:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.093300", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.088300", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.963300", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.334300", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.329300", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.204300", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.653500", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.648500", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.523500", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.000300", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.995300", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.870300", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.583300", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.578300", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.453300", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.412800", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.436200", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.738100", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.487400", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.067300", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.062300", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.937300", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.924200", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.919200", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.794200", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.293900", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.177100", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.184600", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.843700", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.838700", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.713700", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.291400", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.573800", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.543800", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.443800", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416700", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.195700", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192000", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.135700", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.979600", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.974600", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.849600", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.235600", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.230600", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.105600", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.158600", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.153600", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.028600", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.268900", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.889600", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.884600", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.759600", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.422600", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.417600", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.292600", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.102100", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.097100", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.972100", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.205700", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.200700", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.075700", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.606200", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.576200", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.476200", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.369700", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.383200", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.364700", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.378200", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.239700", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.253200", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.415800", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.410800", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.285800", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.948500", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136500", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132800", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076500", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.447200", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.442200", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.317200", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.323200", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.318200", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.193200", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073700", + "Timestamp": "2024-05-16T08:48:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070000", + "Timestamp": "2024-05-16T08:48:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013700", + "Timestamp": "2024-05-16T08:48:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119000", + "Timestamp": "2024-05-16T08:48:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.058200", + "Timestamp": "2024-05-16T08:48:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074100", + "Timestamp": "2024-05-16T08:47:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.045100", + "Timestamp": "2024-05-16T08:47:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014100", + "Timestamp": "2024-05-16T08:47:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.777300", + "Timestamp": "2024-05-16T08:47:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.772300", + "Timestamp": "2024-05-16T08:47:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.647300", + "Timestamp": "2024-05-16T08:47:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.980000", + "Timestamp": "2024-05-16T08:47:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.975000", + "Timestamp": "2024-05-16T08:47:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.850000", + "Timestamp": "2024-05-16T08:47:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.228200", + "Timestamp": "2024-05-16T08:47:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125500", + "Timestamp": "2024-05-16T08:47:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.315000", + "Timestamp": "2024-05-16T08:47:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.310000", + "Timestamp": "2024-05-16T08:47:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.185000", + "Timestamp": "2024-05-16T08:47:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.378000", + "Timestamp": "2024-05-16T08:47:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.373000", + "Timestamp": "2024-05-16T08:47:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.248000", + "Timestamp": "2024-05-16T08:47:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.993000", + "Timestamp": "2024-05-16T08:47:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.160800", + "Timestamp": "2024-05-16T08:47:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.130800", + "Timestamp": "2024-05-16T08:47:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.030800", + "Timestamp": "2024-05-16T08:47:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.384100", + "Timestamp": "2024-05-16T08:47:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.855200", + "Timestamp": "2024-05-16T08:47:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.850200", + "Timestamp": "2024-05-16T08:47:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.725200", + "Timestamp": "2024-05-16T08:47:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.859500", + "Timestamp": "2024-05-16T08:47:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.461200", + "Timestamp": "2024-05-16T08:47:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.456200", + "Timestamp": "2024-05-16T08:47:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.331200", + "Timestamp": "2024-05-16T08:47:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.476300", + "Timestamp": "2024-05-16T08:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.958800", + "Timestamp": "2024-05-16T08:47:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.535900", + "Timestamp": "2024-05-16T08:47:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.530900", + "Timestamp": "2024-05-16T08:47:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.405900", + "Timestamp": "2024-05-16T08:47:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.359300", + "Timestamp": "2024-05-16T08:47:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.354300", + "Timestamp": "2024-05-16T08:47:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.229300", + "Timestamp": "2024-05-16T08:47:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.960300", + "Timestamp": "2024-05-16T08:47:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.955300", + "Timestamp": "2024-05-16T08:47:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.830300", + "Timestamp": "2024-05-16T08:47:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.579400", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.261300", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.389900", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.359900", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.259900", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135200", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131500", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075200", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152100", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192100", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092100", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.266600", + "Timestamp": "2024-05-16T08:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.261600", + "Timestamp": "2024-05-16T08:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136600", + "Timestamp": "2024-05-16T08:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.731900", + "Timestamp": "2024-05-16T08:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T08:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.309200", + "Timestamp": "2024-05-16T08:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.304200", + "Timestamp": "2024-05-16T08:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.179200", + "Timestamp": "2024-05-16T08:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.571800", + "Timestamp": "2024-05-16T08:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.253800", + "Timestamp": "2024-05-16T08:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.822800", + "Timestamp": "2024-05-16T08:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.817800", + "Timestamp": "2024-05-16T08:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.692800", + "Timestamp": "2024-05-16T08:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.590900", + "Timestamp": "2024-05-16T08:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.585900", + "Timestamp": "2024-05-16T08:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.460900", + "Timestamp": "2024-05-16T08:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.613300", + "Timestamp": "2024-05-16T08:47:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.608300", + "Timestamp": "2024-05-16T08:47:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.483300", + "Timestamp": "2024-05-16T08:47:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118300", + "Timestamp": "2024-05-16T08:47:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114300", + "Timestamp": "2024-05-16T08:47:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058300", + "Timestamp": "2024-05-16T08:47:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.642800", + "Timestamp": "2024-05-16T08:47:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.800400", + "Timestamp": "2024-05-16T08:47:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.770400", + "Timestamp": "2024-05-16T08:47:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.670400", + "Timestamp": "2024-05-16T08:47:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.087500", + "Timestamp": "2024-05-16T08:47:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.082500", + "Timestamp": "2024-05-16T08:47:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.957500", + "Timestamp": "2024-05-16T08:47:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.300600", + "Timestamp": "2024-05-16T08:47:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.295600", + "Timestamp": "2024-05-16T08:47:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.170600", + "Timestamp": "2024-05-16T08:47:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113100", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053100", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.871900", + "Timestamp": "2024-05-16T08:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.866900", + "Timestamp": "2024-05-16T08:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.741900", + "Timestamp": "2024-05-16T08:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "a1.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.253900", + "Timestamp": "2024-05-16T08:47:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "a1.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.248900", + "Timestamp": "2024-05-16T08:47:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "a1.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123900", + "Timestamp": "2024-05-16T08:47:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.712000", + "Timestamp": "2024-05-16T08:47:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.572900", + "Timestamp": "2024-05-16T08:47:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.003000", + "Timestamp": "2024-05-16T08:47:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.998000", + "Timestamp": "2024-05-16T08:47:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.873000", + "Timestamp": "2024-05-16T08:47:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.751900", + "Timestamp": "2024-05-16T08:47:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.016600", + "Timestamp": "2024-05-16T08:47:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.986600", + "Timestamp": "2024-05-16T08:47:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.886600", + "Timestamp": "2024-05-16T08:47:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.940500", + "Timestamp": "2024-05-16T08:47:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.577300", + "Timestamp": "2024-05-16T08:47:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.852100", + "Timestamp": "2024-05-16T08:47:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.726900", + "Timestamp": "2024-05-16T08:47:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.342000", + "Timestamp": "2024-05-16T08:47:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.436000", + "Timestamp": "2024-05-16T08:47:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.807300", + "Timestamp": "2024-05-16T08:47:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.851200", + "Timestamp": "2024-05-16T08:47:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.810700", + "Timestamp": "2024-05-16T08:47:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.805700", + "Timestamp": "2024-05-16T08:47:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.680700", + "Timestamp": "2024-05-16T08:47:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.325400", + "Timestamp": "2024-05-16T08:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.332200", + "Timestamp": "2024-05-16T08:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.320400", + "Timestamp": "2024-05-16T08:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.327200", + "Timestamp": "2024-05-16T08:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195400", + "Timestamp": "2024-05-16T08:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.202200", + "Timestamp": "2024-05-16T08:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.274000", + "Timestamp": "2024-05-16T08:46:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269000", + "Timestamp": "2024-05-16T08:46:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144000", + "Timestamp": "2024-05-16T08:46:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.830100", + "Timestamp": "2024-05-16T08:46:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.825100", + "Timestamp": "2024-05-16T08:46:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.700100", + "Timestamp": "2024-05-16T08:46:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.896100", + "Timestamp": "2024-05-16T08:46:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.891100", + "Timestamp": "2024-05-16T08:46:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.766100", + "Timestamp": "2024-05-16T08:46:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.350100", + "Timestamp": "2024-05-16T08:46:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.345100", + "Timestamp": "2024-05-16T08:46:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.220100", + "Timestamp": "2024-05-16T08:46:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.910500", + "Timestamp": "2024-05-16T08:46:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.890500", + "Timestamp": "2024-05-16T08:46:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.929700", + "Timestamp": "2024-05-16T08:46:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.924700", + "Timestamp": "2024-05-16T08:46:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.799700", + "Timestamp": "2024-05-16T08:46:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.761300", + "Timestamp": "2024-05-16T08:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.756300", + "Timestamp": "2024-05-16T08:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.631300", + "Timestamp": "2024-05-16T08:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.468200", + "Timestamp": "2024-05-16T08:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.917500", + "Timestamp": "2024-05-16T08:46:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.887500", + "Timestamp": "2024-05-16T08:46:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.787500", + "Timestamp": "2024-05-16T08:46:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.882100", + "Timestamp": "2024-05-16T08:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.236900", + "Timestamp": "2024-05-16T08:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.206900", + "Timestamp": "2024-05-16T08:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.106900", + "Timestamp": "2024-05-16T08:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215000", + "Timestamp": "2024-05-16T08:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.486200", + "Timestamp": "2024-05-16T08:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.492800", + "Timestamp": "2024-05-16T08:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.462800", + "Timestamp": "2024-05-16T08:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.362800", + "Timestamp": "2024-05-16T08:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.648900", + "Timestamp": "2024-05-16T08:46:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.643900", + "Timestamp": "2024-05-16T08:46:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.518900", + "Timestamp": "2024-05-16T08:46:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139400", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135700", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079400", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314300", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.284300", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184300", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.762700", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.757700", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.632700", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.477200", + "Timestamp": "2024-05-16T08:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.472200", + "Timestamp": "2024-05-16T08:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.347200", + "Timestamp": "2024-05-16T08:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Windows", + "SpotPrice": "7.925100", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.243500", + "Timestamp": "2024-05-16T08:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.238500", + "Timestamp": "2024-05-16T08:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.113500", + "Timestamp": "2024-05-16T08:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.156600", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.126300", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.151600", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.121300", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.026600", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.996300", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T08:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-16T08:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050600", + "Timestamp": "2024-05-16T08:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.238700", + "Timestamp": "2024-05-16T08:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.233700", + "Timestamp": "2024-05-16T08:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.108700", + "Timestamp": "2024-05-16T08:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.765700", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147600", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143900", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087600", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.311900", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.306900", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.181900", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.783900", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.778900", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.653900", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119200", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165000", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161300", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.251300", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.221300", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.121300", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150000", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146300", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090000", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.066600", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.061600", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.936600", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214100", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.291900", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.413300", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.408300", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.283300", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.779800", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.950900", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.945900", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.820900", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.679300", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.674300", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.549300", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.833700", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299800", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294800", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169800", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.826100", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.796100", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.696100", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.411600", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.117200", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051500", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.769200", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.131300", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.625500", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.595500", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.495500", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.418400", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.413400", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.288400", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.489300", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.484300", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.359300", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.767000", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.762000", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.637000", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.825300", + "Timestamp": "2024-05-16T08:46:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.795300", + "Timestamp": "2024-05-16T08:46:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.695300", + "Timestamp": "2024-05-16T08:46:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.596800", + "Timestamp": "2024-05-16T08:44:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.566800", + "Timestamp": "2024-05-16T08:44:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.466800", + "Timestamp": "2024-05-16T08:44:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.202800", + "Timestamp": "2024-05-16T08:44:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.202800", + "Timestamp": "2024-05-16T08:44:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.202800", + "Timestamp": "2024-05-16T08:44:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T08:33:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.543900", + "Timestamp": "2024-05-16T08:32:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.538900", + "Timestamp": "2024-05-16T08:32:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.413900", + "Timestamp": "2024-05-16T08:32:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.735900", + "Timestamp": "2024-05-16T08:32:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.506200", + "Timestamp": "2024-05-16T08:32:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.476200", + "Timestamp": "2024-05-16T08:32:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.376200", + "Timestamp": "2024-05-16T08:32:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164900", + "Timestamp": "2024-05-16T08:32:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161200", + "Timestamp": "2024-05-16T08:32:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T08:32:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.425200", + "Timestamp": "2024-05-16T08:32:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.699600", + "Timestamp": "2024-05-16T08:32:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.694600", + "Timestamp": "2024-05-16T08:32:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.569600", + "Timestamp": "2024-05-16T08:32:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124900", + "Timestamp": "2024-05-16T08:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120900", + "Timestamp": "2024-05-16T08:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064900", + "Timestamp": "2024-05-16T08:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.407300", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.402300", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.277300", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.693800", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.688800", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.563800", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.463700", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.433900", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.428900", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.303900", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.525800", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.149700", + "Timestamp": "2024-05-16T08:32:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.144700", + "Timestamp": "2024-05-16T08:32:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.019700", + "Timestamp": "2024-05-16T08:32:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.851500", + "Timestamp": "2024-05-16T08:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.721200", + "Timestamp": "2024-05-16T08:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.860900", + "Timestamp": "2024-05-16T08:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.663800", + "Timestamp": "2024-05-16T08:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.074100", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.069100", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.944100", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.497400", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.442700", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297600", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.292600", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167600", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.111900", + "Timestamp": "2024-05-16T08:32:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.281600", + "Timestamp": "2024-05-16T08:32:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276600", + "Timestamp": "2024-05-16T08:32:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.151600", + "Timestamp": "2024-05-16T08:32:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.638200", + "Timestamp": "2024-05-16T08:32:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.633200", + "Timestamp": "2024-05-16T08:32:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.508200", + "Timestamp": "2024-05-16T08:32:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.074300", + "Timestamp": "2024-05-16T08:32:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.069300", + "Timestamp": "2024-05-16T08:32:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.944300", + "Timestamp": "2024-05-16T08:32:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.541400", + "Timestamp": "2024-05-16T08:32:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216500", + "Timestamp": "2024-05-16T08:32:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.716000", + "Timestamp": "2024-05-16T08:32:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.711000", + "Timestamp": "2024-05-16T08:32:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.586000", + "Timestamp": "2024-05-16T08:32:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.010000", + "Timestamp": "2024-05-16T08:32:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.005000", + "Timestamp": "2024-05-16T08:32:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.880000", + "Timestamp": "2024-05-16T08:32:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.321100", + "Timestamp": "2024-05-16T08:32:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.255500", + "Timestamp": "2024-05-16T08:32:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161000", + "Timestamp": "2024-05-16T08:32:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157000", + "Timestamp": "2024-05-16T08:32:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101000", + "Timestamp": "2024-05-16T08:32:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.294000", + "Timestamp": "2024-05-16T08:32:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.289000", + "Timestamp": "2024-05-16T08:32:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.164000", + "Timestamp": "2024-05-16T08:32:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.317900", + "Timestamp": "2024-05-16T08:32:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.096900", + "Timestamp": "2024-05-16T08:32:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.066900", + "Timestamp": "2024-05-16T08:32:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.966900", + "Timestamp": "2024-05-16T08:32:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.753500", + "Timestamp": "2024-05-16T08:32:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.005300", + "Timestamp": "2024-05-16T08:32:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.975300", + "Timestamp": "2024-05-16T08:32:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.875300", + "Timestamp": "2024-05-16T08:32:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108300", + "Timestamp": "2024-05-16T08:32:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.450500", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.445500", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.320500", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.646300", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.782500", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.641300", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.777500", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.516300", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.652500", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.608400", + "Timestamp": "2024-05-16T08:32:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.603400", + "Timestamp": "2024-05-16T08:32:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.478400", + "Timestamp": "2024-05-16T08:32:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066400", + "Timestamp": "2024-05-16T08:32:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037700", + "Timestamp": "2024-05-16T08:32:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006400", + "Timestamp": "2024-05-16T08:32:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127000", + "Timestamp": "2024-05-16T08:32:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123000", + "Timestamp": "2024-05-16T08:32:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067000", + "Timestamp": "2024-05-16T08:32:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301500", + "Timestamp": "2024-05-16T08:32:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296500", + "Timestamp": "2024-05-16T08:32:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171500", + "Timestamp": "2024-05-16T08:32:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115900", + "Timestamp": "2024-05-16T08:32:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.871600", + "Timestamp": "2024-05-16T08:32:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.866600", + "Timestamp": "2024-05-16T08:32:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.741600", + "Timestamp": "2024-05-16T08:32:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.302600", + "Timestamp": "2024-05-16T08:32:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.297600", + "Timestamp": "2024-05-16T08:32:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.172600", + "Timestamp": "2024-05-16T08:32:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.266200", + "Timestamp": "2024-05-16T08:32:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.603200", + "Timestamp": "2024-05-16T08:32:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.573200", + "Timestamp": "2024-05-16T08:32:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.473200", + "Timestamp": "2024-05-16T08:32:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.912100", + "Timestamp": "2024-05-16T08:31:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.316300", + "Timestamp": "2024-05-16T08:31:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.311300", + "Timestamp": "2024-05-16T08:31:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186300", + "Timestamp": "2024-05-16T08:31:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.832400", + "Timestamp": "2024-05-16T08:31:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.827400", + "Timestamp": "2024-05-16T08:31:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.702400", + "Timestamp": "2024-05-16T08:31:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.422600", + "Timestamp": "2024-05-16T08:31:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.954100", + "Timestamp": "2024-05-16T08:31:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.949100", + "Timestamp": "2024-05-16T08:31:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.824100", + "Timestamp": "2024-05-16T08:31:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.490800", + "Timestamp": "2024-05-16T08:31:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.369200", + "Timestamp": "2024-05-16T08:31:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.415700", + "Timestamp": "2024-05-16T08:31:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.364200", + "Timestamp": "2024-05-16T08:31:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.410700", + "Timestamp": "2024-05-16T08:31:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.239200", + "Timestamp": "2024-05-16T08:31:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.285700", + "Timestamp": "2024-05-16T08:31:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.743200", + "Timestamp": "2024-05-16T08:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.713200", + "Timestamp": "2024-05-16T08:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.613200", + "Timestamp": "2024-05-16T08:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.464100", + "Timestamp": "2024-05-16T08:31:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.409800", + "Timestamp": "2024-05-16T08:31:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.404800", + "Timestamp": "2024-05-16T08:31:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.279800", + "Timestamp": "2024-05-16T08:31:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439400", + "Timestamp": "2024-05-16T08:31:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.876300", + "Timestamp": "2024-05-16T08:31:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.175000", + "Timestamp": "2024-05-16T08:31:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.491800", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.486800", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.361800", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.866400", + "Timestamp": "2024-05-16T08:31:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.411500", + "Timestamp": "2024-05-16T08:31:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165800", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161800", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.967800", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.962800", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.837800", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.888100", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.160800", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.130800", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.030800", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.860600", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.855600", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.730600", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.744000", + "Timestamp": "2024-05-16T08:31:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.739000", + "Timestamp": "2024-05-16T08:31:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.614000", + "Timestamp": "2024-05-16T08:31:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.432300", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.427300", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.302300", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.688500", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.914400", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362300", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.357300", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.232300", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.773900", + "Timestamp": "2024-05-16T08:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.768900", + "Timestamp": "2024-05-16T08:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.643900", + "Timestamp": "2024-05-16T08:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.238800", + "Timestamp": "2024-05-16T08:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.471000", + "Timestamp": "2024-05-16T08:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429000", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.225800", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.195800", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.095800", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.731700", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.726700", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.601700", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.303400", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298400", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.173400", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.513700", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.508700", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.383700", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297800", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.292800", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167800", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.014500", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.009500", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.884500", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.760800", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.051200", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.046200", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.921200", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.635200", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.630200", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.505200", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.677100", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.672100", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.547100", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.608500", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.603500", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.478500", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072300", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043300", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012300", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.537100", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.532100", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.407100", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158500", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154500", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098500", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.539600", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.534600", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.409600", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.361700", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.331700", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.231700", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.889400", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.859400", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.759400", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140700", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137000", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080700", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.325000", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.320000", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195000", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.435500", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.430500", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.305500", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.170700", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.165700", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.040700", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.674700", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.415400", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.385400", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.285400", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440200", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.149000", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.144000", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.019000", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.744100", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.739100", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.614100", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.919100", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.914100", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.789100", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.880200", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.162700", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.157700", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.032700", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.504500", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "f1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.474500", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.374500", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.925600", + "Timestamp": "2024-05-16T08:31:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.920600", + "Timestamp": "2024-05-16T08:31:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.795600", + "Timestamp": "2024-05-16T08:31:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.584100", + "Timestamp": "2024-05-16T08:31:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.515000", + "Timestamp": "2024-05-16T08:31:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206600", + "Timestamp": "2024-05-16T08:17:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211400", + "Timestamp": "2024-05-16T08:17:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.853000", + "Timestamp": "2024-05-16T08:17:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.848000", + "Timestamp": "2024-05-16T08:17:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.723000", + "Timestamp": "2024-05-16T08:17:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.798400", + "Timestamp": "2024-05-16T08:17:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.670800", + "Timestamp": "2024-05-16T08:17:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.611000", + "Timestamp": "2024-05-16T08:17:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.680600", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.675600", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.550600", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.844400", + "Timestamp": "2024-05-16T08:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.288400", + "Timestamp": "2024-05-16T08:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.258400", + "Timestamp": "2024-05-16T08:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.158400", + "Timestamp": "2024-05-16T08:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218800", + "Timestamp": "2024-05-16T08:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217600", + "Timestamp": "2024-05-16T08:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.570800", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.540800", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.440800", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216500", + "Timestamp": "2024-05-16T08:17:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.038600", + "Timestamp": "2024-05-16T08:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.033600", + "Timestamp": "2024-05-16T08:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.908600", + "Timestamp": "2024-05-16T08:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.767100", + "Timestamp": "2024-05-16T08:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.639000", + "Timestamp": "2024-05-16T08:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261200", + "Timestamp": "2024-05-16T08:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.231200", + "Timestamp": "2024-05-16T08:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131200", + "Timestamp": "2024-05-16T08:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.882900", + "Timestamp": "2024-05-16T08:17:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.897300", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.852000", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.892300", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.847000", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.767300", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.722000", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116300", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156300", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056300", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.453800", + "Timestamp": "2024-05-16T08:17:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.654100", + "Timestamp": "2024-05-16T08:17:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.649100", + "Timestamp": "2024-05-16T08:17:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.524100", + "Timestamp": "2024-05-16T08:17:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.662000", + "Timestamp": "2024-05-16T08:17:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098000", + "Timestamp": "2024-05-16T08:17:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094300", + "Timestamp": "2024-05-16T08:17:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038000", + "Timestamp": "2024-05-16T08:17:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.858500", + "Timestamp": "2024-05-16T08:17:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.853500", + "Timestamp": "2024-05-16T08:17:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.728500", + "Timestamp": "2024-05-16T08:17:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.634200", + "Timestamp": "2024-05-16T08:17:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.558500", + "Timestamp": "2024-05-16T08:17:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.553500", + "Timestamp": "2024-05-16T08:17:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.428500", + "Timestamp": "2024-05-16T08:17:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.450800", + "Timestamp": "2024-05-16T08:17:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.066900", + "Timestamp": "2024-05-16T08:17:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.061900", + "Timestamp": "2024-05-16T08:17:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.936900", + "Timestamp": "2024-05-16T08:17:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.496100", + "Timestamp": "2024-05-16T08:17:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.145100", + "Timestamp": "2024-05-16T08:17:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.435200", + "Timestamp": "2024-05-16T08:17:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.981900", + "Timestamp": "2024-05-16T08:17:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.976900", + "Timestamp": "2024-05-16T08:17:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.851900", + "Timestamp": "2024-05-16T08:17:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.420700", + "Timestamp": "2024-05-16T08:17:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.488500", + "Timestamp": "2024-05-16T08:17:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.483500", + "Timestamp": "2024-05-16T08:17:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.358500", + "Timestamp": "2024-05-16T08:17:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.453500", + "Timestamp": "2024-05-16T08:17:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.016700", + "Timestamp": "2024-05-16T08:17:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.011700", + "Timestamp": "2024-05-16T08:17:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.886700", + "Timestamp": "2024-05-16T08:17:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.427800", + "Timestamp": "2024-05-16T08:17:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.775100", + "Timestamp": "2024-05-16T08:17:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.767400", + "Timestamp": "2024-05-16T08:17:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156000", + "Timestamp": "2024-05-16T08:17:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196000", + "Timestamp": "2024-05-16T08:17:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T08:17:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.340300", + "Timestamp": "2024-05-16T08:17:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.335300", + "Timestamp": "2024-05-16T08:17:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.210300", + "Timestamp": "2024-05-16T08:17:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.357900", + "Timestamp": "2024-05-16T08:17:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.552400", + "Timestamp": "2024-05-16T08:17:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.547400", + "Timestamp": "2024-05-16T08:17:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.422400", + "Timestamp": "2024-05-16T08:17:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.392000", + "Timestamp": "2024-05-16T08:17:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.959500", + "Timestamp": "2024-05-16T08:16:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.954500", + "Timestamp": "2024-05-16T08:16:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.829500", + "Timestamp": "2024-05-16T08:16:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.628600", + "Timestamp": "2024-05-16T08:16:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.623600", + "Timestamp": "2024-05-16T08:16:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.498600", + "Timestamp": "2024-05-16T08:16:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.379800", + "Timestamp": "2024-05-16T08:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.374800", + "Timestamp": "2024-05-16T08:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.249800", + "Timestamp": "2024-05-16T08:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.763700", + "Timestamp": "2024-05-16T08:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.758700", + "Timestamp": "2024-05-16T08:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.633700", + "Timestamp": "2024-05-16T08:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.778900", + "Timestamp": "2024-05-16T08:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.072900", + "Timestamp": "2024-05-16T08:16:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.925900", + "Timestamp": "2024-05-16T08:16:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.938700", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.908700", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.808700", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.562100", + "Timestamp": "2024-05-16T08:16:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.557100", + "Timestamp": "2024-05-16T08:16:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.432100", + "Timestamp": "2024-05-16T08:16:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130900", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127200", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070900", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.856200", + "Timestamp": "2024-05-16T08:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.430600", + "Timestamp": "2024-05-16T08:16:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.425600", + "Timestamp": "2024-05-16T08:16:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.300600", + "Timestamp": "2024-05-16T08:16:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.189700", + "Timestamp": "2024-05-16T08:16:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.184700", + "Timestamp": "2024-05-16T08:16:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.059700", + "Timestamp": "2024-05-16T08:16:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.909100", + "Timestamp": "2024-05-16T08:16:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098600", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042600", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.006000", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.911600", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.906600", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.781600", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.743500", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.738500", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.613500", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.269200", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.264200", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.139200", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.588700", + "Timestamp": "2024-05-16T08:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.585000", + "Timestamp": "2024-05-16T08:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.528700", + "Timestamp": "2024-05-16T08:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220000", + "Timestamp": "2024-05-16T08:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.494400", + "Timestamp": "2024-05-16T08:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.489400", + "Timestamp": "2024-05-16T08:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.364400", + "Timestamp": "2024-05-16T08:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.001200", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109100", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049100", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.755500", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.725500", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.625500", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.035800", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.030800", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.905800", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068700", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038700", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008700", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.369200", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.364200", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.239200", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.312700", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.307700", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.182700", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132800", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129100", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072800", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146800", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143100", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086800", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.981300", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.976300", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.851300", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.139200", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.109200", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.009200", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.186400", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.182400", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126400", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.829400", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212700", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.752500", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.747500", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.622500", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.190100", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.185100", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.060100", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.387900", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.382900", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.257900", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.377100", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372100", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.247100", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.340600", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.310600", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.210600", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.455600", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.450600", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.325600", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.883500", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.878500", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.753500", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.118600", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.113600", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.988600", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152600", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192600", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.489300", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.484300", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.359300", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.266900", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.236900", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136900", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.780200", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.750200", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.650200", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.597600", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.592600", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.467600", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152600", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148900", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.448500", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.443500", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.318500", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.992300", + "Timestamp": "2024-05-16T08:16:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.987300", + "Timestamp": "2024-05-16T08:16:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.862300", + "Timestamp": "2024-05-16T08:16:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.615400", + "Timestamp": "2024-05-16T08:16:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.054200", + "Timestamp": "2024-05-16T08:03:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T08:02:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.462400", + "Timestamp": "2024-05-16T08:02:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.458700", + "Timestamp": "2024-05-16T08:02:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.402400", + "Timestamp": "2024-05-16T08:02:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.504300", + "Timestamp": "2024-05-16T08:02:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.499300", + "Timestamp": "2024-05-16T08:02:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.374300", + "Timestamp": "2024-05-16T08:02:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.382700", + "Timestamp": "2024-05-16T08:02:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.612200", + "Timestamp": "2024-05-16T08:02:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.798300", + "Timestamp": "2024-05-16T08:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.793300", + "Timestamp": "2024-05-16T08:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.668300", + "Timestamp": "2024-05-16T08:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.098000", + "Timestamp": "2024-05-16T08:02:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141900", + "Timestamp": "2024-05-16T08:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181900", + "Timestamp": "2024-05-16T08:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081900", + "Timestamp": "2024-05-16T08:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.390000", + "Timestamp": "2024-05-16T08:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.385000", + "Timestamp": "2024-05-16T08:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.260000", + "Timestamp": "2024-05-16T08:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.988400", + "Timestamp": "2024-05-16T08:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.983400", + "Timestamp": "2024-05-16T08:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.858400", + "Timestamp": "2024-05-16T08:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.003600", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.998600", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.873600", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.854800", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214200", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.524200", + "Timestamp": "2024-05-16T08:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.259200", + "Timestamp": "2024-05-16T08:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.762200", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.757200", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.632200", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120400", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116700", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060400", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.189200", + "Timestamp": "2024-05-16T08:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185200", + "Timestamp": "2024-05-16T08:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129200", + "Timestamp": "2024-05-16T08:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.286400", + "Timestamp": "2024-05-16T08:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.281400", + "Timestamp": "2024-05-16T08:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.156400", + "Timestamp": "2024-05-16T08:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.579100", + "Timestamp": "2024-05-16T08:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.574100", + "Timestamp": "2024-05-16T08:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.449100", + "Timestamp": "2024-05-16T08:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.944700", + "Timestamp": "2024-05-16T08:02:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.526800", + "Timestamp": "2024-05-16T08:02:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.521800", + "Timestamp": "2024-05-16T08:02:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.396800", + "Timestamp": "2024-05-16T08:02:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.010300", + "Timestamp": "2024-05-16T08:02:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.005300", + "Timestamp": "2024-05-16T08:02:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.880300", + "Timestamp": "2024-05-16T08:02:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T08:02:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106000", + "Timestamp": "2024-05-16T08:02:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049700", + "Timestamp": "2024-05-16T08:02:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.876200", + "Timestamp": "2024-05-16T08:02:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.409900", + "Timestamp": "2024-05-16T08:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.411400", + "Timestamp": "2024-05-16T08:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.406400", + "Timestamp": "2024-05-16T08:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.281400", + "Timestamp": "2024-05-16T08:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.682500", + "Timestamp": "2024-05-16T08:02:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.677500", + "Timestamp": "2024-05-16T08:02:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.552500", + "Timestamp": "2024-05-16T08:02:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.804100", + "Timestamp": "2024-05-16T08:02:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.799100", + "Timestamp": "2024-05-16T08:02:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.674100", + "Timestamp": "2024-05-16T08:02:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T08:02:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.461900", + "Timestamp": "2024-05-16T08:02:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.093300", + "Timestamp": "2024-05-16T08:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.088300", + "Timestamp": "2024-05-16T08:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.963300", + "Timestamp": "2024-05-16T08:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.527600", + "Timestamp": "2024-05-16T08:02:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.497600", + "Timestamp": "2024-05-16T08:02:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.397600", + "Timestamp": "2024-05-16T08:02:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.468600", + "Timestamp": "2024-05-16T08:02:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.463600", + "Timestamp": "2024-05-16T08:02:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.338600", + "Timestamp": "2024-05-16T08:02:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.683900", + "Timestamp": "2024-05-16T08:02:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.678900", + "Timestamp": "2024-05-16T08:02:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.553900", + "Timestamp": "2024-05-16T08:02:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.927000", + "Timestamp": "2024-05-16T08:02:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.265500", + "Timestamp": "2024-05-16T08:02:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.908700", + "Timestamp": "2024-05-16T08:02:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.878700", + "Timestamp": "2024-05-16T08:02:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.778700", + "Timestamp": "2024-05-16T08:02:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.377800", + "Timestamp": "2024-05-16T08:02:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.331100", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.844300", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.703600", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.839300", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.698600", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.714300", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.573600", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.755200", + "Timestamp": "2024-05-16T08:01:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.750200", + "Timestamp": "2024-05-16T08:01:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.625200", + "Timestamp": "2024-05-16T08:01:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.248100", + "Timestamp": "2024-05-16T08:01:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.243100", + "Timestamp": "2024-05-16T08:01:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.118100", + "Timestamp": "2024-05-16T08:01:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.422600", + "Timestamp": "2024-05-16T08:01:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.541200", + "Timestamp": "2024-05-16T08:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.536200", + "Timestamp": "2024-05-16T08:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.411200", + "Timestamp": "2024-05-16T08:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.942900", + "Timestamp": "2024-05-16T08:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.937900", + "Timestamp": "2024-05-16T08:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.812900", + "Timestamp": "2024-05-16T08:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.361400", + "Timestamp": "2024-05-16T08:01:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.356400", + "Timestamp": "2024-05-16T08:01:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.231400", + "Timestamp": "2024-05-16T08:01:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.119100", + "Timestamp": "2024-05-16T08:01:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.089100", + "Timestamp": "2024-05-16T08:01:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.989100", + "Timestamp": "2024-05-16T08:01:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.494000", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.464000", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.364000", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.103600", + "Timestamp": "2024-05-16T08:01:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.098600", + "Timestamp": "2024-05-16T08:01:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.973600", + "Timestamp": "2024-05-16T08:01:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.921100", + "Timestamp": "2024-05-16T08:01:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.891100", + "Timestamp": "2024-05-16T08:01:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.791100", + "Timestamp": "2024-05-16T08:01:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.022100", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.900900", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.594900", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.564900", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.464900", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.277900", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.272900", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147900", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.890000", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.217300", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.212300", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.087300", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.673800", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.668800", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.543800", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.051400", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.046400", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.921400", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160100", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.200100", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100100", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.725100", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.720100", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.595100", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.839400", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.022000", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.017000", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.892000", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.693300", + "Timestamp": "2024-05-16T08:01:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.688300", + "Timestamp": "2024-05-16T08:01:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.563300", + "Timestamp": "2024-05-16T08:01:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.182100", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418300", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.447600", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.442600", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.317600", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.087600", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149600", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145900", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089600", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.781200", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.456300", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.309900", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.304900", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.179900", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.783800", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.778800", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.653800", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.365900", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.360900", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235900", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.151500", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.146500", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.021500", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120000", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116300", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060000", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.019500", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.408300", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.403300", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.278300", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.793500", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.788500", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.663500", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088800", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085100", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028800", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.205600", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.201900", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145600", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.174400", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.169400", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.044400", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.762300", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.819300", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.757300", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.814300", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.632300", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.689300", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.504500", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.503900", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.498900", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.373900", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.404300", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.845700", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.875200", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.702500", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.697500", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.572500", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116800", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056800", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.267100", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262100", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137100", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122700", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119000", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062700", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.133300", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.229300", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.225300", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169300", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.384600", + "Timestamp": "2024-05-16T08:01:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.354600", + "Timestamp": "2024-05-16T08:01:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.254600", + "Timestamp": "2024-05-16T08:01:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.584900", + "Timestamp": "2024-05-16T07:47:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.491300", + "Timestamp": "2024-05-16T07:47:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.486300", + "Timestamp": "2024-05-16T07:47:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.361300", + "Timestamp": "2024-05-16T07:47:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T07:47:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.223300", + "Timestamp": "2024-05-16T07:47:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.205900", + "Timestamp": "2024-05-16T07:47:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.218300", + "Timestamp": "2024-05-16T07:47:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.200900", + "Timestamp": "2024-05-16T07:47:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.093300", + "Timestamp": "2024-05-16T07:47:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.075900", + "Timestamp": "2024-05-16T07:47:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.187100", + "Timestamp": "2024-05-16T07:47:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.182100", + "Timestamp": "2024-05-16T07:47:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.057100", + "Timestamp": "2024-05-16T07:47:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T07:47:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.538800", + "Timestamp": "2024-05-16T07:47:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.764300", + "Timestamp": "2024-05-16T07:47:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.235500", + "Timestamp": "2024-05-16T07:47:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.759300", + "Timestamp": "2024-05-16T07:47:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.230500", + "Timestamp": "2024-05-16T07:47:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.634300", + "Timestamp": "2024-05-16T07:47:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.105500", + "Timestamp": "2024-05-16T07:47:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.265800", + "Timestamp": "2024-05-16T07:47:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.697900", + "Timestamp": "2024-05-16T07:47:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.969900", + "Timestamp": "2024-05-16T07:47:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108800", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221200", + "Timestamp": "2024-05-16T07:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.785600", + "Timestamp": "2024-05-16T07:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.780600", + "Timestamp": "2024-05-16T07:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.655600", + "Timestamp": "2024-05-16T07:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222400", + "Timestamp": "2024-05-16T07:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.962600", + "Timestamp": "2024-05-16T07:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.453700", + "Timestamp": "2024-05-16T07:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.448700", + "Timestamp": "2024-05-16T07:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.323700", + "Timestamp": "2024-05-16T07:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.519800", + "Timestamp": "2024-05-16T07:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159000", + "Timestamp": "2024-05-16T07:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155300", + "Timestamp": "2024-05-16T07:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099000", + "Timestamp": "2024-05-16T07:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.698600", + "Timestamp": "2024-05-16T07:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.693600", + "Timestamp": "2024-05-16T07:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.568600", + "Timestamp": "2024-05-16T07:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.090400", + "Timestamp": "2024-05-16T07:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.464700", + "Timestamp": "2024-05-16T07:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.659500", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.654500", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.529500", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.729200", + "Timestamp": "2024-05-16T07:47:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.699200", + "Timestamp": "2024-05-16T07:47:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.599200", + "Timestamp": "2024-05-16T07:47:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.372700", + "Timestamp": "2024-05-16T07:47:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.899600", + "Timestamp": "2024-05-16T07:47:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.822500", + "Timestamp": "2024-05-16T07:47:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.094600", + "Timestamp": "2024-05-16T07:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.064600", + "Timestamp": "2024-05-16T07:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.964600", + "Timestamp": "2024-05-16T07:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.206900", + "Timestamp": "2024-05-16T07:47:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.201900", + "Timestamp": "2024-05-16T07:47:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.076900", + "Timestamp": "2024-05-16T07:47:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.647900", + "Timestamp": "2024-05-16T07:47:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.642900", + "Timestamp": "2024-05-16T07:47:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.517900", + "Timestamp": "2024-05-16T07:47:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.816200", + "Timestamp": "2024-05-16T07:47:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.713200", + "Timestamp": "2024-05-16T07:47:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.708200", + "Timestamp": "2024-05-16T07:47:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.583200", + "Timestamp": "2024-05-16T07:47:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113900", + "Timestamp": "2024-05-16T07:47:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T07:47:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053900", + "Timestamp": "2024-05-16T07:47:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.664600", + "Timestamp": "2024-05-16T07:47:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.659600", + "Timestamp": "2024-05-16T07:47:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.534600", + "Timestamp": "2024-05-16T07:47:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.634100", + "Timestamp": "2024-05-16T07:47:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.629100", + "Timestamp": "2024-05-16T07:47:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.504100", + "Timestamp": "2024-05-16T07:47:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.509600", + "Timestamp": "2024-05-16T07:47:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.455700", + "Timestamp": "2024-05-16T07:47:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.209400", + "Timestamp": "2024-05-16T07:47:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.185400", + "Timestamp": "2024-05-16T07:47:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.180400", + "Timestamp": "2024-05-16T07:47:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.055400", + "Timestamp": "2024-05-16T07:47:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.039600", + "Timestamp": "2024-05-16T07:47:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.930800", + "Timestamp": "2024-05-16T07:47:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.302100", + "Timestamp": "2024-05-16T07:47:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.297100", + "Timestamp": "2024-05-16T07:47:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.172100", + "Timestamp": "2024-05-16T07:47:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.027000", + "Timestamp": "2024-05-16T07:47:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.351700", + "Timestamp": "2024-05-16T07:47:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.291600", + "Timestamp": "2024-05-16T07:47:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.261600", + "Timestamp": "2024-05-16T07:47:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.161600", + "Timestamp": "2024-05-16T07:47:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.215100", + "Timestamp": "2024-05-16T07:47:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.081200", + "Timestamp": "2024-05-16T07:47:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.210100", + "Timestamp": "2024-05-16T07:47:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.076200", + "Timestamp": "2024-05-16T07:47:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.085100", + "Timestamp": "2024-05-16T07:47:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.951200", + "Timestamp": "2024-05-16T07:47:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.896900", + "Timestamp": "2024-05-16T07:47:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.138700", + "Timestamp": "2024-05-16T07:47:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.133700", + "Timestamp": "2024-05-16T07:47:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.008700", + "Timestamp": "2024-05-16T07:47:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.240000", + "Timestamp": "2024-05-16T07:46:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.330400", + "Timestamp": "2024-05-16T07:46:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.314100", + "Timestamp": "2024-05-16T07:46:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.291500", + "Timestamp": "2024-05-16T07:46:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.550600", + "Timestamp": "2024-05-16T07:46:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.449500", + "Timestamp": "2024-05-16T07:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.163000", + "Timestamp": "2024-05-16T07:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.990900", + "Timestamp": "2024-05-16T07:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.970600", + "Timestamp": "2024-05-16T07:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.772600", + "Timestamp": "2024-05-16T07:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.767600", + "Timestamp": "2024-05-16T07:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.642600", + "Timestamp": "2024-05-16T07:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088200", + "Timestamp": "2024-05-16T07:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084500", + "Timestamp": "2024-05-16T07:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028200", + "Timestamp": "2024-05-16T07:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.605900", + "Timestamp": "2024-05-16T07:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.097900", + "Timestamp": "2024-05-16T07:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.369000", + "Timestamp": "2024-05-16T07:46:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.364000", + "Timestamp": "2024-05-16T07:46:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.239000", + "Timestamp": "2024-05-16T07:46:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.943400", + "Timestamp": "2024-05-16T07:46:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.938400", + "Timestamp": "2024-05-16T07:46:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.813400", + "Timestamp": "2024-05-16T07:46:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.236600", + "Timestamp": "2024-05-16T07:46:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.231600", + "Timestamp": "2024-05-16T07:46:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T07:46:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Windows", + "SpotPrice": "3.964400", + "Timestamp": "2024-05-16T07:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.613900", + "Timestamp": "2024-05-16T07:46:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078200", + "Timestamp": "2024-05-16T07:46:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074500", + "Timestamp": "2024-05-16T07:46:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018200", + "Timestamp": "2024-05-16T07:46:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.369300", + "Timestamp": "2024-05-16T07:46:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.130100", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.125100", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.000100", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.942700", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.499700", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.494700", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.369700", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.958900", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.817200", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.344200", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.339200", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.214200", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.349800", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.344800", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.219800", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.252500", + "Timestamp": "2024-05-16T07:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.183900", + "Timestamp": "2024-05-16T07:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180200", + "Timestamp": "2024-05-16T07:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123900", + "Timestamp": "2024-05-16T07:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111200", + "Timestamp": "2024-05-16T07:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-16T07:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051200", + "Timestamp": "2024-05-16T07:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.223800", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.219800", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.163800", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.632700", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.627700", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.502700", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.535500", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.530500", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.405500", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.565100", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.771700", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.182200", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079500", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119500", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019500", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165400", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161400", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.520500", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.515500", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.390500", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.479500", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.474500", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.349500", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.764700", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.759700", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.634700", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.507500", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.502500", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.377500", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.538000", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.533000", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.408000", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.891300", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.790100", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.119700", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.114700", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.989700", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.836400", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.831400", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.706400", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.979300", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.974300", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.849300", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.918100", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.913100", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.788100", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127600", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123900", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067600", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.715800", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.252400", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.248700", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.192400", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.111200", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.962500", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.956800", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.951800", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.826800", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.598000", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.593000", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.468000", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.260900", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.199300", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.195600", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139300", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.045200", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.990700", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.985700", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.860700", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.844900", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.839900", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.714900", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.761800", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.532400", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.527400", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.402400", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.974500", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.969500", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.844500", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.386200", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.764100", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.447700", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164000", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160300", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.690900", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.236100", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.002200", + "Timestamp": "2024-05-16T07:46:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.907600", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.902600", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.777600", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080500", + "Timestamp": "2024-05-16T07:46:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076800", + "Timestamp": "2024-05-16T07:46:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020500", + "Timestamp": "2024-05-16T07:46:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.749100", + "Timestamp": "2024-05-16T07:46:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.744100", + "Timestamp": "2024-05-16T07:46:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.619100", + "Timestamp": "2024-05-16T07:46:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.357000", + "Timestamp": "2024-05-16T07:46:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.352000", + "Timestamp": "2024-05-16T07:46:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.227000", + "Timestamp": "2024-05-16T07:46:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113900", + "Timestamp": "2024-05-16T07:46:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T07:46:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053900", + "Timestamp": "2024-05-16T07:46:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100500", + "Timestamp": "2024-05-16T07:46:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096800", + "Timestamp": "2024-05-16T07:46:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040500", + "Timestamp": "2024-05-16T07:46:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.636900", + "Timestamp": "2024-05-16T07:46:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.606900", + "Timestamp": "2024-05-16T07:46:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.506900", + "Timestamp": "2024-05-16T07:46:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.024500", + "Timestamp": "2024-05-16T07:33:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.567900", + "Timestamp": "2024-05-16T07:32:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.562900", + "Timestamp": "2024-05-16T07:32:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.437900", + "Timestamp": "2024-05-16T07:32:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.846600", + "Timestamp": "2024-05-16T07:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.841600", + "Timestamp": "2024-05-16T07:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.716600", + "Timestamp": "2024-05-16T07:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.461500", + "Timestamp": "2024-05-16T07:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.456500", + "Timestamp": "2024-05-16T07:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.331500", + "Timestamp": "2024-05-16T07:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.573400", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.568400", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.443400", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.226800", + "Timestamp": "2024-05-16T07:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.222800", + "Timestamp": "2024-05-16T07:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.166800", + "Timestamp": "2024-05-16T07:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.545000", + "Timestamp": "2024-05-16T07:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.009900", + "Timestamp": "2024-05-16T07:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.004900", + "Timestamp": "2024-05-16T07:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.879900", + "Timestamp": "2024-05-16T07:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.133900", + "Timestamp": "2024-05-16T07:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.128900", + "Timestamp": "2024-05-16T07:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.003900", + "Timestamp": "2024-05-16T07:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.436300", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.406300", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.306300", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423900", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.101100", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.469000", + "Timestamp": "2024-05-16T07:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.011400", + "Timestamp": "2024-05-16T07:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.010200", + "Timestamp": "2024-05-16T07:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.006000", + "Timestamp": "2024-05-16T07:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.005200", + "Timestamp": "2024-05-16T07:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.001000", + "Timestamp": "2024-05-16T07:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.880200", + "Timestamp": "2024-05-16T07:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.876000", + "Timestamp": "2024-05-16T07:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.840700", + "Timestamp": "2024-05-16T07:32:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.835700", + "Timestamp": "2024-05-16T07:32:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.710700", + "Timestamp": "2024-05-16T07:32:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.157400", + "Timestamp": "2024-05-16T07:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.134700", + "Timestamp": "2024-05-16T07:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.152400", + "Timestamp": "2024-05-16T07:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.129700", + "Timestamp": "2024-05-16T07:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.027400", + "Timestamp": "2024-05-16T07:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.004700", + "Timestamp": "2024-05-16T07:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.941900", + "Timestamp": "2024-05-16T07:32:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.365300", + "Timestamp": "2024-05-16T07:32:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.360300", + "Timestamp": "2024-05-16T07:32:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235300", + "Timestamp": "2024-05-16T07:32:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.509400", + "Timestamp": "2024-05-16T07:32:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.504400", + "Timestamp": "2024-05-16T07:32:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.379400", + "Timestamp": "2024-05-16T07:32:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.110000", + "Timestamp": "2024-05-16T07:32:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.829900", + "Timestamp": "2024-05-16T07:32:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.824900", + "Timestamp": "2024-05-16T07:32:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.699900", + "Timestamp": "2024-05-16T07:32:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.475000", + "Timestamp": "2024-05-16T07:32:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.470000", + "Timestamp": "2024-05-16T07:32:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.345000", + "Timestamp": "2024-05-16T07:32:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.300700", + "Timestamp": "2024-05-16T07:32:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296700", + "Timestamp": "2024-05-16T07:32:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.240700", + "Timestamp": "2024-05-16T07:32:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.458000", + "Timestamp": "2024-05-16T07:32:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.471400", + "Timestamp": "2024-05-16T07:32:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.466400", + "Timestamp": "2024-05-16T07:32:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.341400", + "Timestamp": "2024-05-16T07:32:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.535300", + "Timestamp": "2024-05-16T07:32:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.530300", + "Timestamp": "2024-05-16T07:32:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.405300", + "Timestamp": "2024-05-16T07:32:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.252100", + "Timestamp": "2024-05-16T07:32:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.636500", + "Timestamp": "2024-05-16T07:32:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.711200", + "Timestamp": "2024-05-16T07:32:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.255800", + "Timestamp": "2024-05-16T07:32:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.620300", + "Timestamp": "2024-05-16T07:32:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.615300", + "Timestamp": "2024-05-16T07:32:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.490300", + "Timestamp": "2024-05-16T07:32:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107800", + "Timestamp": "2024-05-16T07:32:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104100", + "Timestamp": "2024-05-16T07:32:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047800", + "Timestamp": "2024-05-16T07:32:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.754200", + "Timestamp": "2024-05-16T07:32:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110900", + "Timestamp": "2024-05-16T07:32:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.954400", + "Timestamp": "2024-05-16T07:32:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.949400", + "Timestamp": "2024-05-16T07:32:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.824400", + "Timestamp": "2024-05-16T07:32:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.281500", + "Timestamp": "2024-05-16T07:32:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276500", + "Timestamp": "2024-05-16T07:32:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.151500", + "Timestamp": "2024-05-16T07:32:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.250100", + "Timestamp": "2024-05-16T07:32:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.245100", + "Timestamp": "2024-05-16T07:32:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.120100", + "Timestamp": "2024-05-16T07:32:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.756300", + "Timestamp": "2024-05-16T07:32:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "dl2q.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.322200", + "Timestamp": "2024-05-16T07:32:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "dl2q.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.317200", + "Timestamp": "2024-05-16T07:32:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "dl2q.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.192200", + "Timestamp": "2024-05-16T07:32:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.197100", + "Timestamp": "2024-05-16T07:32:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.167100", + "Timestamp": "2024-05-16T07:32:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.067100", + "Timestamp": "2024-05-16T07:32:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294200", + "Timestamp": "2024-05-16T07:32:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289200", + "Timestamp": "2024-05-16T07:32:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164200", + "Timestamp": "2024-05-16T07:32:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.457200", + "Timestamp": "2024-05-16T07:32:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.452200", + "Timestamp": "2024-05-16T07:32:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.327200", + "Timestamp": "2024-05-16T07:32:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432800", + "Timestamp": "2024-05-16T07:32:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.138800", + "Timestamp": "2024-05-16T07:32:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.716300", + "Timestamp": "2024-05-16T07:31:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.715800", + "Timestamp": "2024-05-16T07:31:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.111400", + "Timestamp": "2024-05-16T07:31:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.106400", + "Timestamp": "2024-05-16T07:31:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.981400", + "Timestamp": "2024-05-16T07:31:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.598500", + "Timestamp": "2024-05-16T07:31:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.593500", + "Timestamp": "2024-05-16T07:31:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.468500", + "Timestamp": "2024-05-16T07:31:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.491400", + "Timestamp": "2024-05-16T07:31:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.422500", + "Timestamp": "2024-05-16T07:31:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.995600", + "Timestamp": "2024-05-16T07:31:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.990600", + "Timestamp": "2024-05-16T07:31:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.865600", + "Timestamp": "2024-05-16T07:31:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.505200", + "Timestamp": "2024-05-16T07:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.500200", + "Timestamp": "2024-05-16T07:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.375200", + "Timestamp": "2024-05-16T07:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.763000", + "Timestamp": "2024-05-16T07:31:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.758000", + "Timestamp": "2024-05-16T07:31:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.633000", + "Timestamp": "2024-05-16T07:31:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.854500", + "Timestamp": "2024-05-16T07:31:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.849500", + "Timestamp": "2024-05-16T07:31:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.724500", + "Timestamp": "2024-05-16T07:31:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.402900", + "Timestamp": "2024-05-16T07:31:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.054200", + "Timestamp": "2024-05-16T07:31:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.049200", + "Timestamp": "2024-05-16T07:31:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.924200", + "Timestamp": "2024-05-16T07:31:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.915200", + "Timestamp": "2024-05-16T07:31:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.490100", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.460100", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.360100", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134400", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174400", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074400", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.764500", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.759500", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.634500", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261000", + "Timestamp": "2024-05-16T07:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.257000", + "Timestamp": "2024-05-16T07:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.201000", + "Timestamp": "2024-05-16T07:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.514400", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.509400", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.384400", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.728700", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.723700", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.598700", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.684000", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.679000", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.554000", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.651700", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.646700", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.521700", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.120500", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.115500", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.990500", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.804000", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.799000", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.674000", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.780800", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.775800", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.650800", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.239700", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.553600", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.548600", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.423600", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.577900", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.752300", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.234600", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.478300", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.289300", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.284300", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159300", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.260600", + "Timestamp": "2024-05-16T07:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.255600", + "Timestamp": "2024-05-16T07:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130600", + "Timestamp": "2024-05-16T07:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.388900", + "Timestamp": "2024-05-16T07:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.383900", + "Timestamp": "2024-05-16T07:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.258900", + "Timestamp": "2024-05-16T07:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.257500", + "Timestamp": "2024-05-16T07:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.252500", + "Timestamp": "2024-05-16T07:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.127500", + "Timestamp": "2024-05-16T07:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.218400", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.214400", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158400", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103400", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.400000", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.395000", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.270000", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.644700", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.639700", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.514700", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.730200", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.725200", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.600200", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.350800", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.345800", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.220800", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.624100", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.619100", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.494100", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145800", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142100", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085800", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.402900", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.397900", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.272900", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.042200", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.037200", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.912200", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.941500", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.936500", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.811500", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "a1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091000", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "a1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087300", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "a1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031000", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.018000", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.335600", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.330600", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.205600", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.358200", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.353200", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.228200", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093600", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089900", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033600", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.237100", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.597000", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.592000", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.467000", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.486000", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.456000", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.356000", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.889700", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.255900", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.250900", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125900", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.468800", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.555000", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.147600", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.550000", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.142600", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.425000", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.017600", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073500", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044500", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013500", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.428800", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.575000", + "Timestamp": "2024-05-16T07:31:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.545000", + "Timestamp": "2024-05-16T07:31:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.445000", + "Timestamp": "2024-05-16T07:31:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115300", + "Timestamp": "2024-05-16T07:31:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111300", + "Timestamp": "2024-05-16T07:31:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055300", + "Timestamp": "2024-05-16T07:31:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.048300", + "Timestamp": "2024-05-16T07:17:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.043300", + "Timestamp": "2024-05-16T07:17:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.918300", + "Timestamp": "2024-05-16T07:17:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.595900", + "Timestamp": "2024-05-16T07:17:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.590900", + "Timestamp": "2024-05-16T07:17:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.465900", + "Timestamp": "2024-05-16T07:17:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.477300", + "Timestamp": "2024-05-16T07:17:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.341400", + "Timestamp": "2024-05-16T07:17:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.311400", + "Timestamp": "2024-05-16T07:17:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.211400", + "Timestamp": "2024-05-16T07:17:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.187500", + "Timestamp": "2024-05-16T07:17:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.182500", + "Timestamp": "2024-05-16T07:17:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.057500", + "Timestamp": "2024-05-16T07:17:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222000", + "Timestamp": "2024-05-16T07:17:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.544000", + "Timestamp": "2024-05-16T07:17:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.539000", + "Timestamp": "2024-05-16T07:17:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.414000", + "Timestamp": "2024-05-16T07:17:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.738000", + "Timestamp": "2024-05-16T07:17:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.733000", + "Timestamp": "2024-05-16T07:17:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.608000", + "Timestamp": "2024-05-16T07:17:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.480900", + "Timestamp": "2024-05-16T07:17:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113900", + "Timestamp": "2024-05-16T07:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T07:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053900", + "Timestamp": "2024-05-16T07:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225300", + "Timestamp": "2024-05-16T07:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.124000", + "Timestamp": "2024-05-16T07:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.119000", + "Timestamp": "2024-05-16T07:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.994000", + "Timestamp": "2024-05-16T07:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.192100", + "Timestamp": "2024-05-16T07:17:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.596700", + "Timestamp": "2024-05-16T07:17:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.593000", + "Timestamp": "2024-05-16T07:17:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.536700", + "Timestamp": "2024-05-16T07:17:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.223100", + "Timestamp": "2024-05-16T07:17:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.218100", + "Timestamp": "2024-05-16T07:17:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.093100", + "Timestamp": "2024-05-16T07:17:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.131500", + "Timestamp": "2024-05-16T07:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.126500", + "Timestamp": "2024-05-16T07:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.001500", + "Timestamp": "2024-05-16T07:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.980400", + "Timestamp": "2024-05-16T07:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.427800", + "Timestamp": "2024-05-16T07:17:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.982900", + "Timestamp": "2024-05-16T07:17:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.977900", + "Timestamp": "2024-05-16T07:17:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.852900", + "Timestamp": "2024-05-16T07:17:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.279000", + "Timestamp": "2024-05-16T07:17:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.497500", + "Timestamp": "2024-05-16T07:17:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.545600", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.540600", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.415600", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.932400", + "Timestamp": "2024-05-16T07:17:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.658900", + "Timestamp": "2024-05-16T07:17:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.394000", + "Timestamp": "2024-05-16T07:17:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.389000", + "Timestamp": "2024-05-16T07:17:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.264000", + "Timestamp": "2024-05-16T07:17:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.972400", + "Timestamp": "2024-05-16T07:17:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.967400", + "Timestamp": "2024-05-16T07:17:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.842400", + "Timestamp": "2024-05-16T07:17:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.275500", + "Timestamp": "2024-05-16T07:17:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.380100", + "Timestamp": "2024-05-16T07:17:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233900", + "Timestamp": "2024-05-16T07:17:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.234600", + "Timestamp": "2024-05-16T07:17:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.348700", + "Timestamp": "2024-05-16T07:17:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343700", + "Timestamp": "2024-05-16T07:17:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.218700", + "Timestamp": "2024-05-16T07:17:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.716100", + "Timestamp": "2024-05-16T07:17:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.711100", + "Timestamp": "2024-05-16T07:17:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.586100", + "Timestamp": "2024-05-16T07:17:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.035900", + "Timestamp": "2024-05-16T07:17:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225200", + "Timestamp": "2024-05-16T07:17:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139100", + "Timestamp": "2024-05-16T07:17:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135400", + "Timestamp": "2024-05-16T07:17:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079100", + "Timestamp": "2024-05-16T07:17:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098500", + "Timestamp": "2024-05-16T07:17:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094800", + "Timestamp": "2024-05-16T07:17:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038500", + "Timestamp": "2024-05-16T07:17:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.842600", + "Timestamp": "2024-05-16T07:17:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.837600", + "Timestamp": "2024-05-16T07:17:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.712600", + "Timestamp": "2024-05-16T07:17:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.418900", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.413900", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.288900", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.080100", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.075100", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.950100", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.268800", + "Timestamp": "2024-05-16T07:17:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.187600", + "Timestamp": "2024-05-16T07:17:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.006300", + "Timestamp": "2024-05-16T07:16:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.001300", + "Timestamp": "2024-05-16T07:16:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.876300", + "Timestamp": "2024-05-16T07:16:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163000", + "Timestamp": "2024-05-16T07:16:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159300", + "Timestamp": "2024-05-16T07:16:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T07:16:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.779800", + "Timestamp": "2024-05-16T07:16:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.934400", + "Timestamp": "2024-05-16T07:16:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.924800", + "Timestamp": "2024-05-16T07:16:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.929400", + "Timestamp": "2024-05-16T07:16:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.919800", + "Timestamp": "2024-05-16T07:16:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.804400", + "Timestamp": "2024-05-16T07:16:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.794800", + "Timestamp": "2024-05-16T07:16:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.401200", + "Timestamp": "2024-05-16T07:16:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.396200", + "Timestamp": "2024-05-16T07:16:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.271200", + "Timestamp": "2024-05-16T07:16:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103400", + "Timestamp": "2024-05-16T07:16:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099700", + "Timestamp": "2024-05-16T07:16:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043400", + "Timestamp": "2024-05-16T07:16:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.146000", + "Timestamp": "2024-05-16T07:16:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.915900", + "Timestamp": "2024-05-16T07:16:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.438900", + "Timestamp": "2024-05-16T07:16:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.556900", + "Timestamp": "2024-05-16T07:16:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.412800", + "Timestamp": "2024-05-16T07:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.304000", + "Timestamp": "2024-05-16T07:16:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.299000", + "Timestamp": "2024-05-16T07:16:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.174000", + "Timestamp": "2024-05-16T07:16:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.327400", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.322400", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.197400", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.879200", + "Timestamp": "2024-05-16T07:16:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.874200", + "Timestamp": "2024-05-16T07:16:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.749200", + "Timestamp": "2024-05-16T07:16:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.184700", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.357900", + "Timestamp": "2024-05-16T07:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.352900", + "Timestamp": "2024-05-16T07:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.227900", + "Timestamp": "2024-05-16T07:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.869200", + "Timestamp": "2024-05-16T07:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.345300", + "Timestamp": "2024-05-16T07:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.340300", + "Timestamp": "2024-05-16T07:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.215300", + "Timestamp": "2024-05-16T07:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214100", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.800300", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.795300", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.670300", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221300", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208300", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.694000", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213300", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.185300", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.180300", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.055300", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.750900", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.847900", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.693100", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.688100", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.563100", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.073200", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.886300", + "Timestamp": "2024-05-16T07:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.866500", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.375300", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.370300", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.245300", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.886400", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.881400", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.756400", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.192000", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.188000", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.132000", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.490800", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.460800", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.360800", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.507400", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.827600", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.797600", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.697600", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103600", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099900", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043600", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311000", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281000", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181000", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.473400", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126200", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122200", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066200", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.242400", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.691300", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.661300", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.561300", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.295900", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.290900", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165900", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098600", + "Timestamp": "2024-05-16T07:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094900", + "Timestamp": "2024-05-16T07:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038600", + "Timestamp": "2024-05-16T07:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063300", + "Timestamp": "2024-05-16T07:04:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003300", + "Timestamp": "2024-05-16T07:04:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003300", + "Timestamp": "2024-05-16T07:04:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "a1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070400", + "Timestamp": "2024-05-16T07:03:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "a1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041400", + "Timestamp": "2024-05-16T07:03:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "a1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010400", + "Timestamp": "2024-05-16T07:03:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.006600", + "Timestamp": "2024-05-16T07:03:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.001600", + "Timestamp": "2024-05-16T07:03:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.876600", + "Timestamp": "2024-05-16T07:03:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.252000", + "Timestamp": "2024-05-16T07:03:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.631600", + "Timestamp": "2024-05-16T07:03:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.909400", + "Timestamp": "2024-05-16T07:02:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.331800", + "Timestamp": "2024-05-16T07:02:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108500", + "Timestamp": "2024-05-16T07:02:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.479900", + "Timestamp": "2024-05-16T07:02:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.194100", + "Timestamp": "2024-05-16T07:02:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190100", + "Timestamp": "2024-05-16T07:02:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134100", + "Timestamp": "2024-05-16T07:02:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.344400", + "Timestamp": "2024-05-16T07:02:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.339400", + "Timestamp": "2024-05-16T07:02:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.214400", + "Timestamp": "2024-05-16T07:02:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.790600", + "Timestamp": "2024-05-16T07:02:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.819300", + "Timestamp": "2024-05-16T07:02:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.789300", + "Timestamp": "2024-05-16T07:02:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.689300", + "Timestamp": "2024-05-16T07:02:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.469900", + "Timestamp": "2024-05-16T07:02:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.904300", + "Timestamp": "2024-05-16T07:02:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.899300", + "Timestamp": "2024-05-16T07:02:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.774300", + "Timestamp": "2024-05-16T07:02:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.751400", + "Timestamp": "2024-05-16T07:02:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.746400", + "Timestamp": "2024-05-16T07:02:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.621400", + "Timestamp": "2024-05-16T07:02:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.381900", + "Timestamp": "2024-05-16T07:02:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.351900", + "Timestamp": "2024-05-16T07:02:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.251900", + "Timestamp": "2024-05-16T07:02:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.882100", + "Timestamp": "2024-05-16T07:02:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.007200", + "Timestamp": "2024-05-16T07:02:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.491000", + "Timestamp": "2024-05-16T07:02:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.486000", + "Timestamp": "2024-05-16T07:02:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.361000", + "Timestamp": "2024-05-16T07:02:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T07:02:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.945700", + "Timestamp": "2024-05-16T07:02:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.193800", + "Timestamp": "2024-05-16T07:02:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211700", + "Timestamp": "2024-05-16T07:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.319900", + "Timestamp": "2024-05-16T07:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.314900", + "Timestamp": "2024-05-16T07:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.189900", + "Timestamp": "2024-05-16T07:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.392200", + "Timestamp": "2024-05-16T07:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110400", + "Timestamp": "2024-05-16T07:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106700", + "Timestamp": "2024-05-16T07:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050400", + "Timestamp": "2024-05-16T07:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.472100", + "Timestamp": "2024-05-16T07:02:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152900", + "Timestamp": "2024-05-16T07:02:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149200", + "Timestamp": "2024-05-16T07:02:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092900", + "Timestamp": "2024-05-16T07:02:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.694100", + "Timestamp": "2024-05-16T07:02:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.839200", + "Timestamp": "2024-05-16T07:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079000", + "Timestamp": "2024-05-16T07:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.050000", + "Timestamp": "2024-05-16T07:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019000", + "Timestamp": "2024-05-16T07:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.250400", + "Timestamp": "2024-05-16T07:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.307700", + "Timestamp": "2024-05-16T07:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.262900", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.257900", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.132900", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.021200", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.016200", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.891200", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.342300", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.692600", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.337300", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.687600", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.212300", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.562600", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.827600", + "Timestamp": "2024-05-16T07:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.449000", + "Timestamp": "2024-05-16T07:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.790100", + "Timestamp": "2024-05-16T07:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.335400", + "Timestamp": "2024-05-16T07:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.217400", + "Timestamp": "2024-05-16T07:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.212400", + "Timestamp": "2024-05-16T07:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.087400", + "Timestamp": "2024-05-16T07:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.033300", + "Timestamp": "2024-05-16T07:02:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.951100", + "Timestamp": "2024-05-16T07:02:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.946100", + "Timestamp": "2024-05-16T07:02:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.821100", + "Timestamp": "2024-05-16T07:02:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142500", + "Timestamp": "2024-05-16T07:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138800", + "Timestamp": "2024-05-16T07:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082500", + "Timestamp": "2024-05-16T07:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.769500", + "Timestamp": "2024-05-16T07:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.764500", + "Timestamp": "2024-05-16T07:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.639500", + "Timestamp": "2024-05-16T07:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.122600", + "Timestamp": "2024-05-16T07:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.681600", + "Timestamp": "2024-05-16T07:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.676600", + "Timestamp": "2024-05-16T07:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.551600", + "Timestamp": "2024-05-16T07:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.269400", + "Timestamp": "2024-05-16T07:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.975700", + "Timestamp": "2024-05-16T07:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.077800", + "Timestamp": "2024-05-16T07:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.072800", + "Timestamp": "2024-05-16T07:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.947800", + "Timestamp": "2024-05-16T07:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067100", + "Timestamp": "2024-05-16T07:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037100", + "Timestamp": "2024-05-16T07:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007100", + "Timestamp": "2024-05-16T07:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.320900", + "Timestamp": "2024-05-16T07:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.290900", + "Timestamp": "2024-05-16T07:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190900", + "Timestamp": "2024-05-16T07:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093200", + "Timestamp": "2024-05-16T07:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089500", + "Timestamp": "2024-05-16T07:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033200", + "Timestamp": "2024-05-16T07:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.236500", + "Timestamp": "2024-05-16T07:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.231500", + "Timestamp": "2024-05-16T07:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-16T07:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.647200", + "Timestamp": "2024-05-16T07:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.642200", + "Timestamp": "2024-05-16T07:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.517200", + "Timestamp": "2024-05-16T07:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119400", + "Timestamp": "2024-05-16T07:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119400", + "Timestamp": "2024-05-16T07:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115700", + "Timestamp": "2024-05-16T07:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115700", + "Timestamp": "2024-05-16T07:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059400", + "Timestamp": "2024-05-16T07:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059400", + "Timestamp": "2024-05-16T07:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.849700", + "Timestamp": "2024-05-16T07:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.408600", + "Timestamp": "2024-05-16T07:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.403600", + "Timestamp": "2024-05-16T07:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.278600", + "Timestamp": "2024-05-16T07:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.499900", + "Timestamp": "2024-05-16T07:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.494900", + "Timestamp": "2024-05-16T07:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.369900", + "Timestamp": "2024-05-16T07:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T07:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108500", + "Timestamp": "2024-05-16T07:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052200", + "Timestamp": "2024-05-16T07:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.918600", + "Timestamp": "2024-05-16T07:02:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.419600", + "Timestamp": "2024-05-16T07:02:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.830000", + "Timestamp": "2024-05-16T07:02:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.800000", + "Timestamp": "2024-05-16T07:02:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.700000", + "Timestamp": "2024-05-16T07:02:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.321000", + "Timestamp": "2024-05-16T07:02:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.316000", + "Timestamp": "2024-05-16T07:02:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.191000", + "Timestamp": "2024-05-16T07:02:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.028800", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.658200", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.653200", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.528200", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.949900", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101500", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045200", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.039400", + "Timestamp": "2024-05-16T07:02:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360500", + "Timestamp": "2024-05-16T07:02:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.355500", + "Timestamp": "2024-05-16T07:02:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230500", + "Timestamp": "2024-05-16T07:02:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.571900", + "Timestamp": "2024-05-16T07:02:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429300", + "Timestamp": "2024-05-16T07:02:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075500", + "Timestamp": "2024-05-16T07:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071800", + "Timestamp": "2024-05-16T07:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015500", + "Timestamp": "2024-05-16T07:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.410200", + "Timestamp": "2024-05-16T07:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.829700", + "Timestamp": "2024-05-16T07:02:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.661700", + "Timestamp": "2024-05-16T07:02:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.631700", + "Timestamp": "2024-05-16T07:02:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.531700", + "Timestamp": "2024-05-16T07:02:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119800", + "Timestamp": "2024-05-16T07:02:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109600", + "Timestamp": "2024-05-16T07:02:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116100", + "Timestamp": "2024-05-16T07:02:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T07:02:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059800", + "Timestamp": "2024-05-16T07:02:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049600", + "Timestamp": "2024-05-16T07:02:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.764400", + "Timestamp": "2024-05-16T07:02:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.126600", + "Timestamp": "2024-05-16T07:02:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.681000", + "Timestamp": "2024-05-16T07:02:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.676000", + "Timestamp": "2024-05-16T07:02:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.551000", + "Timestamp": "2024-05-16T07:02:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.284200", + "Timestamp": "2024-05-16T07:02:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.069800", + "Timestamp": "2024-05-16T07:02:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-16T07:02:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T07:02:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044500", + "Timestamp": "2024-05-16T07:02:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.132200", + "Timestamp": "2024-05-16T07:02:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220800", + "Timestamp": "2024-05-16T07:02:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.429500", + "Timestamp": "2024-05-16T07:02:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.424500", + "Timestamp": "2024-05-16T07:02:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.299500", + "Timestamp": "2024-05-16T07:02:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.463800", + "Timestamp": "2024-05-16T07:02:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.458800", + "Timestamp": "2024-05-16T07:02:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.333800", + "Timestamp": "2024-05-16T07:02:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.586800", + "Timestamp": "2024-05-16T07:02:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.581800", + "Timestamp": "2024-05-16T07:02:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.456800", + "Timestamp": "2024-05-16T07:02:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105500", + "Timestamp": "2024-05-16T07:02:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145500", + "Timestamp": "2024-05-16T07:02:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045500", + "Timestamp": "2024-05-16T07:02:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.805300", + "Timestamp": "2024-05-16T07:01:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.800300", + "Timestamp": "2024-05-16T07:01:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.675300", + "Timestamp": "2024-05-16T07:01:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T07:01:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T07:01:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-16T07:01:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-16T07:01:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042500", + "Timestamp": "2024-05-16T07:01:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042500", + "Timestamp": "2024-05-16T07:01:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121600", + "Timestamp": "2024-05-16T07:01:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117600", + "Timestamp": "2024-05-16T07:01:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061600", + "Timestamp": "2024-05-16T07:01:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.531000", + "Timestamp": "2024-05-16T07:01:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.503300", + "Timestamp": "2024-05-16T07:01:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.526000", + "Timestamp": "2024-05-16T07:01:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.498300", + "Timestamp": "2024-05-16T07:01:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.401000", + "Timestamp": "2024-05-16T07:01:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.373300", + "Timestamp": "2024-05-16T07:01:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T07:01:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103600", + "Timestamp": "2024-05-16T07:01:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047600", + "Timestamp": "2024-05-16T07:01:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.433100", + "Timestamp": "2024-05-16T07:01:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.428100", + "Timestamp": "2024-05-16T07:01:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.303100", + "Timestamp": "2024-05-16T07:01:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.375600", + "Timestamp": "2024-05-16T07:01:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.345600", + "Timestamp": "2024-05-16T07:01:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.245600", + "Timestamp": "2024-05-16T07:01:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.864800", + "Timestamp": "2024-05-16T07:00:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.859800", + "Timestamp": "2024-05-16T07:00:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.734800", + "Timestamp": "2024-05-16T07:00:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.622800", + "Timestamp": "2024-05-16T07:00:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.458800", + "Timestamp": "2024-05-16T06:47:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.453800", + "Timestamp": "2024-05-16T06:47:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.328800", + "Timestamp": "2024-05-16T06:47:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160300", + "Timestamp": "2024-05-16T06:47:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156600", + "Timestamp": "2024-05-16T06:47:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-16T06:47:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.669700", + "Timestamp": "2024-05-16T06:47:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.679400", + "Timestamp": "2024-05-16T06:47:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.124500", + "Timestamp": "2024-05-16T06:47:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.119500", + "Timestamp": "2024-05-16T06:47:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.994500", + "Timestamp": "2024-05-16T06:47:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.025500", + "Timestamp": "2024-05-16T06:47:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.020500", + "Timestamp": "2024-05-16T06:47:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.895500", + "Timestamp": "2024-05-16T06:47:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.645000", + "Timestamp": "2024-05-16T06:47:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.640000", + "Timestamp": "2024-05-16T06:47:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.515000", + "Timestamp": "2024-05-16T06:47:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.025000", + "Timestamp": "2024-05-16T06:47:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.426500", + "Timestamp": "2024-05-16T06:47:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.421500", + "Timestamp": "2024-05-16T06:47:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.296500", + "Timestamp": "2024-05-16T06:47:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.896900", + "Timestamp": "2024-05-16T06:47:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.865800", + "Timestamp": "2024-05-16T06:47:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.860800", + "Timestamp": "2024-05-16T06:47:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.735800", + "Timestamp": "2024-05-16T06:47:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155000", + "Timestamp": "2024-05-16T06:47:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151300", + "Timestamp": "2024-05-16T06:47:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095000", + "Timestamp": "2024-05-16T06:47:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.804300", + "Timestamp": "2024-05-16T06:47:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.799300", + "Timestamp": "2024-05-16T06:47:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.674300", + "Timestamp": "2024-05-16T06:47:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.845500", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.840500", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.715500", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.992700", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.987700", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.862700", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.117600", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.768800", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.702000", + "Timestamp": "2024-05-16T06:47:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.697000", + "Timestamp": "2024-05-16T06:47:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.572000", + "Timestamp": "2024-05-16T06:47:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.471200", + "Timestamp": "2024-05-16T06:47:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.096500", + "Timestamp": "2024-05-16T06:47:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.091500", + "Timestamp": "2024-05-16T06:47:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.966500", + "Timestamp": "2024-05-16T06:47:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.698400", + "Timestamp": "2024-05-16T06:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.224400", + "Timestamp": "2024-05-16T06:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.220400", + "Timestamp": "2024-05-16T06:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164400", + "Timestamp": "2024-05-16T06:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.491500", + "Timestamp": "2024-05-16T06:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.486500", + "Timestamp": "2024-05-16T06:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.361500", + "Timestamp": "2024-05-16T06:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.063300", + "Timestamp": "2024-05-16T06:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.453900", + "Timestamp": "2024-05-16T06:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.448900", + "Timestamp": "2024-05-16T06:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.323900", + "Timestamp": "2024-05-16T06:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.522800", + "Timestamp": "2024-05-16T06:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.517800", + "Timestamp": "2024-05-16T06:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.392800", + "Timestamp": "2024-05-16T06:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076500", + "Timestamp": "2024-05-16T06:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047500", + "Timestamp": "2024-05-16T06:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016500", + "Timestamp": "2024-05-16T06:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.187200", + "Timestamp": "2024-05-16T06:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183500", + "Timestamp": "2024-05-16T06:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127200", + "Timestamp": "2024-05-16T06:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.848800", + "Timestamp": "2024-05-16T06:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219100", + "Timestamp": "2024-05-16T06:47:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078300", + "Timestamp": "2024-05-16T06:47:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.049300", + "Timestamp": "2024-05-16T06:47:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018300", + "Timestamp": "2024-05-16T06:47:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.308500", + "Timestamp": "2024-05-16T06:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.303500", + "Timestamp": "2024-05-16T06:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.178500", + "Timestamp": "2024-05-16T06:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120900", + "Timestamp": "2024-05-16T06:47:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117200", + "Timestamp": "2024-05-16T06:47:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060900", + "Timestamp": "2024-05-16T06:47:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.139800", + "Timestamp": "2024-05-16T06:47:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.134800", + "Timestamp": "2024-05-16T06:47:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.009800", + "Timestamp": "2024-05-16T06:47:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.432800", + "Timestamp": "2024-05-16T06:47:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.427800", + "Timestamp": "2024-05-16T06:47:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.302800", + "Timestamp": "2024-05-16T06:47:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.712800", + "Timestamp": "2024-05-16T06:47:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.686200", + "Timestamp": "2024-05-16T06:47:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.681200", + "Timestamp": "2024-05-16T06:47:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.556200", + "Timestamp": "2024-05-16T06:47:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.705800", + "Timestamp": "2024-05-16T06:47:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.297300", + "Timestamp": "2024-05-16T06:47:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.434200", + "Timestamp": "2024-05-16T06:47:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.449500", + "Timestamp": "2024-05-16T06:47:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.591500", + "Timestamp": "2024-05-16T06:47:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.805800", + "Timestamp": "2024-05-16T06:47:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.377200", + "Timestamp": "2024-05-16T06:46:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063800", + "Timestamp": "2024-05-16T06:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003800", + "Timestamp": "2024-05-16T06:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003800", + "Timestamp": "2024-05-16T06:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.945400", + "Timestamp": "2024-05-16T06:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.649300", + "Timestamp": "2024-05-16T06:46:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.644300", + "Timestamp": "2024-05-16T06:46:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.519300", + "Timestamp": "2024-05-16T06:46:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.969500", + "Timestamp": "2024-05-16T06:46:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.296700", + "Timestamp": "2024-05-16T06:46:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.535100", + "Timestamp": "2024-05-16T06:46:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068300", + "Timestamp": "2024-05-16T06:46:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039300", + "Timestamp": "2024-05-16T06:46:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008300", + "Timestamp": "2024-05-16T06:46:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.254500", + "Timestamp": "2024-05-16T06:46:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109200", + "Timestamp": "2024-05-16T06:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.243500", + "Timestamp": "2024-05-16T06:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.239500", + "Timestamp": "2024-05-16T06:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.183500", + "Timestamp": "2024-05-16T06:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.376800", + "Timestamp": "2024-05-16T06:46:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.346800", + "Timestamp": "2024-05-16T06:46:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.246800", + "Timestamp": "2024-05-16T06:46:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.579800", + "Timestamp": "2024-05-16T06:46:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.387300", + "Timestamp": "2024-05-16T06:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.357300", + "Timestamp": "2024-05-16T06:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.257300", + "Timestamp": "2024-05-16T06:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.861800", + "Timestamp": "2024-05-16T06:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.081000", + "Timestamp": "2024-05-16T06:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.366400", + "Timestamp": "2024-05-16T06:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.361400", + "Timestamp": "2024-05-16T06:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.236400", + "Timestamp": "2024-05-16T06:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.625500", + "Timestamp": "2024-05-16T06:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.595500", + "Timestamp": "2024-05-16T06:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.495500", + "Timestamp": "2024-05-16T06:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.867800", + "Timestamp": "2024-05-16T06:46:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.862800", + "Timestamp": "2024-05-16T06:46:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.737800", + "Timestamp": "2024-05-16T06:46:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.518400", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.513400", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.388400", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.358900", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.353900", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.228900", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.953100", + "Timestamp": "2024-05-16T06:46:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.923100", + "Timestamp": "2024-05-16T06:46:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.823100", + "Timestamp": "2024-05-16T06:46:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.366900", + "Timestamp": "2024-05-16T06:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.361900", + "Timestamp": "2024-05-16T06:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.236900", + "Timestamp": "2024-05-16T06:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.606700", + "Timestamp": "2024-05-16T06:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.576700", + "Timestamp": "2024-05-16T06:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.476700", + "Timestamp": "2024-05-16T06:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.660900", + "Timestamp": "2024-05-16T06:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.655900", + "Timestamp": "2024-05-16T06:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.530900", + "Timestamp": "2024-05-16T06:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.830800", + "Timestamp": "2024-05-16T06:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.825800", + "Timestamp": "2024-05-16T06:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.700800", + "Timestamp": "2024-05-16T06:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.488500", + "Timestamp": "2024-05-16T06:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.483500", + "Timestamp": "2024-05-16T06:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.358500", + "Timestamp": "2024-05-16T06:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.946400", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.941400", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.816400", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.463400", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.891000", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.882500", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.140300", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.280900", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.275900", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.150900", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.091800", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.086800", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.961800", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.381400", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.351400", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.251400", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.262600", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.257600", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.132600", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.798700", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.845800", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.223100", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.218100", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093100", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116300", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112300", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056300", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423200", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168200", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164200", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.748000", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.574900", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.569900", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.444900", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.033600", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.028600", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.903600", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080500", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120500", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020500", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.912200", + "Timestamp": "2024-05-16T06:32:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.907200", + "Timestamp": "2024-05-16T06:32:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.782200", + "Timestamp": "2024-05-16T06:32:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.932800", + "Timestamp": "2024-05-16T06:32:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.498200", + "Timestamp": "2024-05-16T06:32:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.468200", + "Timestamp": "2024-05-16T06:32:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.368200", + "Timestamp": "2024-05-16T06:32:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.187800", + "Timestamp": "2024-05-16T06:32:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.182800", + "Timestamp": "2024-05-16T06:32:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.057800", + "Timestamp": "2024-05-16T06:32:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.298700", + "Timestamp": "2024-05-16T06:32:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.268700", + "Timestamp": "2024-05-16T06:32:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.168700", + "Timestamp": "2024-05-16T06:32:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.365000", + "Timestamp": "2024-05-16T06:32:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.335000", + "Timestamp": "2024-05-16T06:32:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.235000", + "Timestamp": "2024-05-16T06:32:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.828200", + "Timestamp": "2024-05-16T06:32:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.823200", + "Timestamp": "2024-05-16T06:32:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.698200", + "Timestamp": "2024-05-16T06:32:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.135300", + "Timestamp": "2024-05-16T06:32:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.316100", + "Timestamp": "2024-05-16T06:32:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.311100", + "Timestamp": "2024-05-16T06:32:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186100", + "Timestamp": "2024-05-16T06:32:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429300", + "Timestamp": "2024-05-16T06:32:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.975300", + "Timestamp": "2024-05-16T06:32:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.419900", + "Timestamp": "2024-05-16T06:32:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.414900", + "Timestamp": "2024-05-16T06:32:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.289900", + "Timestamp": "2024-05-16T06:32:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.660200", + "Timestamp": "2024-05-16T06:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.660400", + "Timestamp": "2024-05-16T06:32:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.655400", + "Timestamp": "2024-05-16T06:32:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.530400", + "Timestamp": "2024-05-16T06:32:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.741100", + "Timestamp": "2024-05-16T06:32:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.736100", + "Timestamp": "2024-05-16T06:32:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.611100", + "Timestamp": "2024-05-16T06:32:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.212600", + "Timestamp": "2024-05-16T06:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.208900", + "Timestamp": "2024-05-16T06:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.152600", + "Timestamp": "2024-05-16T06:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.958400", + "Timestamp": "2024-05-16T06:32:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176800", + "Timestamp": "2024-05-16T06:32:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173800", + "Timestamp": "2024-05-16T06:32:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116800", + "Timestamp": "2024-05-16T06:32:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021000", + "Timestamp": "2024-05-16T06:32:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.765200", + "Timestamp": "2024-05-16T06:32:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.361800", + "Timestamp": "2024-05-16T06:32:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.356800", + "Timestamp": "2024-05-16T06:32:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.231800", + "Timestamp": "2024-05-16T06:32:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.862900", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.742700", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.737700", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.612700", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.529800", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.524800", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.399800", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.014400", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.144700", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.009400", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.139700", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.884400", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.014700", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129400", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069400", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.238500", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.233500", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.108500", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.703100", + "Timestamp": "2024-05-16T06:32:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.698100", + "Timestamp": "2024-05-16T06:32:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.573100", + "Timestamp": "2024-05-16T06:32:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.234600", + "Timestamp": "2024-05-16T06:32:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.229600", + "Timestamp": "2024-05-16T06:32:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.104600", + "Timestamp": "2024-05-16T06:32:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.447900", + "Timestamp": "2024-05-16T06:32:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.442900", + "Timestamp": "2024-05-16T06:32:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.317900", + "Timestamp": "2024-05-16T06:32:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.476400", + "Timestamp": "2024-05-16T06:32:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140800", + "Timestamp": "2024-05-16T06:32:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137100", + "Timestamp": "2024-05-16T06:32:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080800", + "Timestamp": "2024-05-16T06:32:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.525500", + "Timestamp": "2024-05-16T06:32:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.455200", + "Timestamp": "2024-05-16T06:32:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.546200", + "Timestamp": "2024-05-16T06:32:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.487800", + "Timestamp": "2024-05-16T06:32:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.482800", + "Timestamp": "2024-05-16T06:32:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.357800", + "Timestamp": "2024-05-16T06:32:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.630600", + "Timestamp": "2024-05-16T06:32:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217300", + "Timestamp": "2024-05-16T06:32:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.690800", + "Timestamp": "2024-05-16T06:32:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.532900", + "Timestamp": "2024-05-16T06:32:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.527900", + "Timestamp": "2024-05-16T06:32:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.402900", + "Timestamp": "2024-05-16T06:32:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.725000", + "Timestamp": "2024-05-16T06:32:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.642500", + "Timestamp": "2024-05-16T06:32:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.637500", + "Timestamp": "2024-05-16T06:32:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.512500", + "Timestamp": "2024-05-16T06:32:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.534700", + "Timestamp": "2024-05-16T06:32:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.504700", + "Timestamp": "2024-05-16T06:32:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.404700", + "Timestamp": "2024-05-16T06:32:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.976800", + "Timestamp": "2024-05-16T06:32:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.851200", + "Timestamp": "2024-05-16T06:32:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.507700", + "Timestamp": "2024-05-16T06:32:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.454100", + "Timestamp": "2024-05-16T06:32:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.664200", + "Timestamp": "2024-05-16T06:32:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.820000", + "Timestamp": "2024-05-16T06:32:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.829700", + "Timestamp": "2024-05-16T06:32:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.844300", + "Timestamp": "2024-05-16T06:31:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.245800", + "Timestamp": "2024-05-16T06:31:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.215800", + "Timestamp": "2024-05-16T06:31:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.115800", + "Timestamp": "2024-05-16T06:31:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.473000", + "Timestamp": "2024-05-16T06:31:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.546700", + "Timestamp": "2024-05-16T06:31:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.541700", + "Timestamp": "2024-05-16T06:31:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.416700", + "Timestamp": "2024-05-16T06:31:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.189500", + "Timestamp": "2024-05-16T06:31:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.184500", + "Timestamp": "2024-05-16T06:31:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059500", + "Timestamp": "2024-05-16T06:31:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.903700", + "Timestamp": "2024-05-16T06:31:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.898700", + "Timestamp": "2024-05-16T06:31:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.773700", + "Timestamp": "2024-05-16T06:31:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.844600", + "Timestamp": "2024-05-16T06:31:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.839600", + "Timestamp": "2024-05-16T06:31:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.714600", + "Timestamp": "2024-05-16T06:31:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.057900", + "Timestamp": "2024-05-16T06:31:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T06:31:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.560000", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.358000", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.353000", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.228000", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.802300", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.185900", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.045000", + "Timestamp": "2024-05-16T06:31:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.040000", + "Timestamp": "2024-05-16T06:31:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.915000", + "Timestamp": "2024-05-16T06:31:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.230200", + "Timestamp": "2024-05-16T06:31:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.226500", + "Timestamp": "2024-05-16T06:31:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170200", + "Timestamp": "2024-05-16T06:31:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.211000", + "Timestamp": "2024-05-16T06:31:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141300", + "Timestamp": "2024-05-16T06:31:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137600", + "Timestamp": "2024-05-16T06:31:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081300", + "Timestamp": "2024-05-16T06:31:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.265800", + "Timestamp": "2024-05-16T06:31:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.866200", + "Timestamp": "2024-05-16T06:31:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.634300", + "Timestamp": "2024-05-16T06:31:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.629300", + "Timestamp": "2024-05-16T06:31:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.504300", + "Timestamp": "2024-05-16T06:31:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.249100", + "Timestamp": "2024-05-16T06:31:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.219100", + "Timestamp": "2024-05-16T06:31:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119100", + "Timestamp": "2024-05-16T06:31:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.319800", + "Timestamp": "2024-05-16T06:31:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289800", + "Timestamp": "2024-05-16T06:31:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.189800", + "Timestamp": "2024-05-16T06:31:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.529700", + "Timestamp": "2024-05-16T06:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.524700", + "Timestamp": "2024-05-16T06:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.399700", + "Timestamp": "2024-05-16T06:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.858600", + "Timestamp": "2024-05-16T06:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.927100", + "Timestamp": "2024-05-16T06:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.159300", + "Timestamp": "2024-05-16T06:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.154300", + "Timestamp": "2024-05-16T06:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.029300", + "Timestamp": "2024-05-16T06:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.002800", + "Timestamp": "2024-05-16T06:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.997800", + "Timestamp": "2024-05-16T06:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.872800", + "Timestamp": "2024-05-16T06:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.130600", + "Timestamp": "2024-05-16T06:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.125600", + "Timestamp": "2024-05-16T06:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.000600", + "Timestamp": "2024-05-16T06:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.481000", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.476000", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.351000", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146500", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142500", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086500", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.424600", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.394600", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.294600", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.404600", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.399600", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.274600", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.028600", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.023600", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.898600", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.748800", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.812200", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.807200", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.682200", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103400", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047100", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.645700", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.642000", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.585700", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.890900", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.885900", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.760900", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.790800", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.785800", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.660800", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.072700", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.067700", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.942700", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.353000", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.348000", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.223000", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.402100", + "Timestamp": "2024-05-16T06:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.397100", + "Timestamp": "2024-05-16T06:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.272100", + "Timestamp": "2024-05-16T06:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.901500", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.871500", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.771500", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432400", + "Timestamp": "2024-05-16T06:17:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.225600", + "Timestamp": "2024-05-16T06:17:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.220600", + "Timestamp": "2024-05-16T06:17:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.095600", + "Timestamp": "2024-05-16T06:17:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.053600", + "Timestamp": "2024-05-16T06:17:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.048600", + "Timestamp": "2024-05-16T06:17:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.923600", + "Timestamp": "2024-05-16T06:17:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.408300", + "Timestamp": "2024-05-16T06:17:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.403300", + "Timestamp": "2024-05-16T06:17:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.278300", + "Timestamp": "2024-05-16T06:17:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.218500", + "Timestamp": "2024-05-16T06:17:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.213500", + "Timestamp": "2024-05-16T06:17:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.088500", + "Timestamp": "2024-05-16T06:17:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.566700", + "Timestamp": "2024-05-16T06:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.561700", + "Timestamp": "2024-05-16T06:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.436700", + "Timestamp": "2024-05-16T06:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.114200", + "Timestamp": "2024-05-16T06:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.109200", + "Timestamp": "2024-05-16T06:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.984200", + "Timestamp": "2024-05-16T06:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063400", + "Timestamp": "2024-05-16T06:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003400", + "Timestamp": "2024-05-16T06:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003400", + "Timestamp": "2024-05-16T06:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.330200", + "Timestamp": "2024-05-16T06:17:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.012000", + "Timestamp": "2024-05-16T06:17:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.819700", + "Timestamp": "2024-05-16T06:17:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.695800", + "Timestamp": "2024-05-16T06:17:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.690800", + "Timestamp": "2024-05-16T06:17:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.565800", + "Timestamp": "2024-05-16T06:17:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143100", + "Timestamp": "2024-05-16T06:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139400", + "Timestamp": "2024-05-16T06:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083100", + "Timestamp": "2024-05-16T06:17:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.193800", + "Timestamp": "2024-05-16T06:17:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.188800", + "Timestamp": "2024-05-16T06:17:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.063800", + "Timestamp": "2024-05-16T06:17:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.396000", + "Timestamp": "2024-05-16T06:17:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.391000", + "Timestamp": "2024-05-16T06:17:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.266000", + "Timestamp": "2024-05-16T06:17:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.430600", + "Timestamp": "2024-05-16T06:17:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.524100", + "Timestamp": "2024-05-16T06:17:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.519100", + "Timestamp": "2024-05-16T06:17:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.394100", + "Timestamp": "2024-05-16T06:17:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.465500", + "Timestamp": "2024-05-16T06:17:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.321900", + "Timestamp": "2024-05-16T06:17:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.316900", + "Timestamp": "2024-05-16T06:17:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.191900", + "Timestamp": "2024-05-16T06:17:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.831200", + "Timestamp": "2024-05-16T06:17:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.826200", + "Timestamp": "2024-05-16T06:17:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.701200", + "Timestamp": "2024-05-16T06:17:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.242300", + "Timestamp": "2024-05-16T06:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.490800", + "Timestamp": "2024-05-16T06:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.485800", + "Timestamp": "2024-05-16T06:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.360800", + "Timestamp": "2024-05-16T06:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T06:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.598400", + "Timestamp": "2024-05-16T06:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.593400", + "Timestamp": "2024-05-16T06:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.468400", + "Timestamp": "2024-05-16T06:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.060400", + "Timestamp": "2024-05-16T06:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.055400", + "Timestamp": "2024-05-16T06:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.930400", + "Timestamp": "2024-05-16T06:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.192100", + "Timestamp": "2024-05-16T06:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.188400", + "Timestamp": "2024-05-16T06:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.132100", + "Timestamp": "2024-05-16T06:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.702800", + "Timestamp": "2024-05-16T06:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.672800", + "Timestamp": "2024-05-16T06:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.572800", + "Timestamp": "2024-05-16T06:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.092600", + "Timestamp": "2024-05-16T06:17:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.087600", + "Timestamp": "2024-05-16T06:17:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.962600", + "Timestamp": "2024-05-16T06:17:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.089300", + "Timestamp": "2024-05-16T06:17:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.670600", + "Timestamp": "2024-05-16T06:17:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.665600", + "Timestamp": "2024-05-16T06:17:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.540600", + "Timestamp": "2024-05-16T06:17:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.407400", + "Timestamp": "2024-05-16T06:17:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.403400", + "Timestamp": "2024-05-16T06:17:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.398400", + "Timestamp": "2024-05-16T06:17:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.273400", + "Timestamp": "2024-05-16T06:17:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.084800", + "Timestamp": "2024-05-16T06:17:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.621500", + "Timestamp": "2024-05-16T06:17:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.582800", + "Timestamp": "2024-05-16T06:17:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.577800", + "Timestamp": "2024-05-16T06:17:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.452800", + "Timestamp": "2024-05-16T06:17:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "12.408000", + "Timestamp": "2024-05-16T06:17:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.715500", + "Timestamp": "2024-05-16T06:17:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.599900", + "Timestamp": "2024-05-16T06:17:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.594900", + "Timestamp": "2024-05-16T06:17:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.469900", + "Timestamp": "2024-05-16T06:17:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.531700", + "Timestamp": "2024-05-16T06:17:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.546600", + "Timestamp": "2024-05-16T06:17:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.363200", + "Timestamp": "2024-05-16T06:17:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.278900", + "Timestamp": "2024-05-16T06:17:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.273900", + "Timestamp": "2024-05-16T06:17:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.148900", + "Timestamp": "2024-05-16T06:17:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.679600", + "Timestamp": "2024-05-16T06:17:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.674600", + "Timestamp": "2024-05-16T06:17:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.549600", + "Timestamp": "2024-05-16T06:17:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-16T06:17:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.287000", + "Timestamp": "2024-05-16T06:16:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.221400", + "Timestamp": "2024-05-16T06:16:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.217400", + "Timestamp": "2024-05-16T06:16:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.161400", + "Timestamp": "2024-05-16T06:16:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.948600", + "Timestamp": "2024-05-16T06:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.943600", + "Timestamp": "2024-05-16T06:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.818600", + "Timestamp": "2024-05-16T06:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.347500", + "Timestamp": "2024-05-16T06:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.342500", + "Timestamp": "2024-05-16T06:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.217500", + "Timestamp": "2024-05-16T06:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.141400", + "Timestamp": "2024-05-16T06:16:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.136400", + "Timestamp": "2024-05-16T06:16:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.011400", + "Timestamp": "2024-05-16T06:16:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.927600", + "Timestamp": "2024-05-16T06:16:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125500", + "Timestamp": "2024-05-16T06:16:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165500", + "Timestamp": "2024-05-16T06:16:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065500", + "Timestamp": "2024-05-16T06:16:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.438400", + "Timestamp": "2024-05-16T06:16:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.744400", + "Timestamp": "2024-05-16T06:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.739400", + "Timestamp": "2024-05-16T06:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.614400", + "Timestamp": "2024-05-16T06:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.643700", + "Timestamp": "2024-05-16T06:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.734200", + "Timestamp": "2024-05-16T06:16:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.678400", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152400", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192400", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092400", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.062300", + "Timestamp": "2024-05-16T06:16:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.754200", + "Timestamp": "2024-05-16T06:16:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.433700", + "Timestamp": "2024-05-16T06:16:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.403700", + "Timestamp": "2024-05-16T06:16:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.303700", + "Timestamp": "2024-05-16T06:16:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.168800", + "Timestamp": "2024-05-16T06:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.583300", + "Timestamp": "2024-05-16T06:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.578300", + "Timestamp": "2024-05-16T06:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.453300", + "Timestamp": "2024-05-16T06:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.586800", + "Timestamp": "2024-05-16T06:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.581800", + "Timestamp": "2024-05-16T06:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.456800", + "Timestamp": "2024-05-16T06:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115400", + "Timestamp": "2024-05-16T06:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T06:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055400", + "Timestamp": "2024-05-16T06:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.945200", + "Timestamp": "2024-05-16T06:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.289700", + "Timestamp": "2024-05-16T06:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.259700", + "Timestamp": "2024-05-16T06:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159700", + "Timestamp": "2024-05-16T06:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.055700", + "Timestamp": "2024-05-16T06:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.910800", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123400", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119700", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063400", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.779600", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.774600", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.649600", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146900", + "Timestamp": "2024-05-16T06:16:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143200", + "Timestamp": "2024-05-16T06:16:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086900", + "Timestamp": "2024-05-16T06:16:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.664000", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080000", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.051000", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020000", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047500", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.572200", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.542200", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.442200", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070300", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066600", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010300", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416800", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114800", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118300", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163300", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159600", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418000", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.215800", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.210800", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085800", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.294900", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.289900", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.164900", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.795000", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.790000", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.665000", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.967000", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.740500", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.735500", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.610500", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.532400", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.665000", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.588800", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.583800", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.458800", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.494200", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.489200", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.364200", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.406100", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.401100", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.276100", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.585800", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.580800", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.455800", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.622200", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.617200", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.492200", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.622500", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.617500", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.492500", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.610000", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.605000", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.480000", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222900", + "Timestamp": "2024-05-16T06:16:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.538100", + "Timestamp": "2024-05-16T06:16:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.300700", + "Timestamp": "2024-05-16T06:03:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.300700", + "Timestamp": "2024-05-16T06:03:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.026600", + "Timestamp": "2024-05-16T06:03:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.652400", + "Timestamp": "2024-05-16T06:02:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.635800", + "Timestamp": "2024-05-16T06:02:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.630800", + "Timestamp": "2024-05-16T06:02:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.505800", + "Timestamp": "2024-05-16T06:02:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.479900", + "Timestamp": "2024-05-16T06:02:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.449900", + "Timestamp": "2024-05-16T06:02:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.349900", + "Timestamp": "2024-05-16T06:02:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.904700", + "Timestamp": "2024-05-16T06:02:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.899700", + "Timestamp": "2024-05-16T06:02:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.774700", + "Timestamp": "2024-05-16T06:02:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.117100", + "Timestamp": "2024-05-16T06:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.406700", + "Timestamp": "2024-05-16T06:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.376700", + "Timestamp": "2024-05-16T06:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.276700", + "Timestamp": "2024-05-16T06:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.408300", + "Timestamp": "2024-05-16T06:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.995500", + "Timestamp": "2024-05-16T06:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.572600", + "Timestamp": "2024-05-16T06:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.589400", + "Timestamp": "2024-05-16T06:02:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.584400", + "Timestamp": "2024-05-16T06:02:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.459400", + "Timestamp": "2024-05-16T06:02:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.838500", + "Timestamp": "2024-05-16T06:02:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.731800", + "Timestamp": "2024-05-16T06:02:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.701800", + "Timestamp": "2024-05-16T06:02:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.601800", + "Timestamp": "2024-05-16T06:02:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223400", + "Timestamp": "2024-05-16T06:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.994800", + "Timestamp": "2024-05-16T06:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.989800", + "Timestamp": "2024-05-16T06:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.864800", + "Timestamp": "2024-05-16T06:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.365500", + "Timestamp": "2024-05-16T06:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.365700", + "Timestamp": "2024-05-16T06:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.360700", + "Timestamp": "2024-05-16T06:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.235700", + "Timestamp": "2024-05-16T06:02:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.862900", + "Timestamp": "2024-05-16T06:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.283000", + "Timestamp": "2024-05-16T06:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.279000", + "Timestamp": "2024-05-16T06:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.223000", + "Timestamp": "2024-05-16T06:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.245700", + "Timestamp": "2024-05-16T06:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.240700", + "Timestamp": "2024-05-16T06:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.115700", + "Timestamp": "2024-05-16T06:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.550100", + "Timestamp": "2024-05-16T06:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.545100", + "Timestamp": "2024-05-16T06:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.420100", + "Timestamp": "2024-05-16T06:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.257300", + "Timestamp": "2024-05-16T06:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163900", + "Timestamp": "2024-05-16T06:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160200", + "Timestamp": "2024-05-16T06:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103900", + "Timestamp": "2024-05-16T06:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.204200", + "Timestamp": "2024-05-16T06:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.200500", + "Timestamp": "2024-05-16T06:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144200", + "Timestamp": "2024-05-16T06:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.810400", + "Timestamp": "2024-05-16T06:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127800", + "Timestamp": "2024-05-16T06:02:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124100", + "Timestamp": "2024-05-16T06:02:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067800", + "Timestamp": "2024-05-16T06:02:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.373000", + "Timestamp": "2024-05-16T06:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.368000", + "Timestamp": "2024-05-16T06:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.243000", + "Timestamp": "2024-05-16T06:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074300", + "Timestamp": "2024-05-16T06:02:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070600", + "Timestamp": "2024-05-16T06:02:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014300", + "Timestamp": "2024-05-16T06:02:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.532400", + "Timestamp": "2024-05-16T06:02:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.005000", + "Timestamp": "2024-05-16T06:02:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.000000", + "Timestamp": "2024-05-16T06:02:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.875000", + "Timestamp": "2024-05-16T06:02:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.737800", + "Timestamp": "2024-05-16T06:02:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.553400", + "Timestamp": "2024-05-16T06:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.548400", + "Timestamp": "2024-05-16T06:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.423400", + "Timestamp": "2024-05-16T06:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.450800", + "Timestamp": "2024-05-16T06:02:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.894400", + "Timestamp": "2024-05-16T06:02:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.663900", + "Timestamp": "2024-05-16T06:02:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.658900", + "Timestamp": "2024-05-16T06:02:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.533900", + "Timestamp": "2024-05-16T06:02:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165200", + "Timestamp": "2024-05-16T06:02:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161200", + "Timestamp": "2024-05-16T06:02:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T06:02:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149800", + "Timestamp": "2024-05-16T06:02:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146100", + "Timestamp": "2024-05-16T06:02:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089800", + "Timestamp": "2024-05-16T06:02:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.187000", + "Timestamp": "2024-05-16T06:02:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.182000", + "Timestamp": "2024-05-16T06:02:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.057000", + "Timestamp": "2024-05-16T06:02:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.233800", + "Timestamp": "2024-05-16T06:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.229800", + "Timestamp": "2024-05-16T06:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.173800", + "Timestamp": "2024-05-16T06:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.669400", + "Timestamp": "2024-05-16T06:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.664400", + "Timestamp": "2024-05-16T06:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.539400", + "Timestamp": "2024-05-16T06:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.691200", + "Timestamp": "2024-05-16T06:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.692200", + "Timestamp": "2024-05-16T06:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.193700", + "Timestamp": "2024-05-16T06:02:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.188700", + "Timestamp": "2024-05-16T06:02:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.063700", + "Timestamp": "2024-05-16T06:02:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.606000", + "Timestamp": "2024-05-16T06:02:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.142300", + "Timestamp": "2024-05-16T06:02:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.356200", + "Timestamp": "2024-05-16T06:02:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.017300", + "Timestamp": "2024-05-16T06:02:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.012300", + "Timestamp": "2024-05-16T06:02:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.887300", + "Timestamp": "2024-05-16T06:02:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.601400", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.601400", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.601400", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.651600", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.646600", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.521600", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162800", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159100", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.894200", + "Timestamp": "2024-05-16T06:01:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.079200", + "Timestamp": "2024-05-16T06:01:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.074200", + "Timestamp": "2024-05-16T06:01:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.949200", + "Timestamp": "2024-05-16T06:01:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418800", + "Timestamp": "2024-05-16T06:01:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.655400", + "Timestamp": "2024-05-16T06:01:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.650400", + "Timestamp": "2024-05-16T06:01:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.525400", + "Timestamp": "2024-05-16T06:01:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127000", + "Timestamp": "2024-05-16T06:01:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123300", + "Timestamp": "2024-05-16T06:01:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067000", + "Timestamp": "2024-05-16T06:01:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124300", + "Timestamp": "2024-05-16T06:01:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120600", + "Timestamp": "2024-05-16T06:01:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064300", + "Timestamp": "2024-05-16T06:01:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.407100", + "Timestamp": "2024-05-16T06:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.402100", + "Timestamp": "2024-05-16T06:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.277100", + "Timestamp": "2024-05-16T06:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.839000", + "Timestamp": "2024-05-16T06:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.834000", + "Timestamp": "2024-05-16T06:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.709000", + "Timestamp": "2024-05-16T06:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.208300", + "Timestamp": "2024-05-16T06:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.178300", + "Timestamp": "2024-05-16T06:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.078300", + "Timestamp": "2024-05-16T06:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.482500", + "Timestamp": "2024-05-16T06:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.452500", + "Timestamp": "2024-05-16T06:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.352500", + "Timestamp": "2024-05-16T06:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.801900", + "Timestamp": "2024-05-16T06:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.796900", + "Timestamp": "2024-05-16T06:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.671900", + "Timestamp": "2024-05-16T06:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.228600", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.224900", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168600", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.048000", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.043000", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.918000", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.575500", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.930900", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.925900", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.800900", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.493200", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.193000", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.189000", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133000", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.555000", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.550000", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.425000", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.109800", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235900", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.231700", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.271700", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171700", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.672900", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.667900", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.542900", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.762100", + "Timestamp": "2024-05-16T06:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.779300", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.774300", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.649300", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.989000", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.075500", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.070500", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.945500", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.602800", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.597800", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.472800", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.364800", + "Timestamp": "2024-05-16T06:01:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.359800", + "Timestamp": "2024-05-16T06:01:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.234800", + "Timestamp": "2024-05-16T06:01:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223700", + "Timestamp": "2024-05-16T05:48:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080400", + "Timestamp": "2024-05-16T05:47:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120400", + "Timestamp": "2024-05-16T05:47:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020400", + "Timestamp": "2024-05-16T05:47:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065800", + "Timestamp": "2024-05-16T05:47:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037100", + "Timestamp": "2024-05-16T05:47:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005800", + "Timestamp": "2024-05-16T05:47:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.965700", + "Timestamp": "2024-05-16T05:47:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.960700", + "Timestamp": "2024-05-16T05:47:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.835700", + "Timestamp": "2024-05-16T05:47:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.401000", + "Timestamp": "2024-05-16T05:47:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.396000", + "Timestamp": "2024-05-16T05:47:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.271000", + "Timestamp": "2024-05-16T05:47:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.370700", + "Timestamp": "2024-05-16T05:47:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.365700", + "Timestamp": "2024-05-16T05:47:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.240700", + "Timestamp": "2024-05-16T05:47:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.610200", + "Timestamp": "2024-05-16T05:47:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.605200", + "Timestamp": "2024-05-16T05:47:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.480200", + "Timestamp": "2024-05-16T05:47:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.745800", + "Timestamp": "2024-05-16T05:47:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.080800", + "Timestamp": "2024-05-16T05:47:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.075800", + "Timestamp": "2024-05-16T05:47:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.950800", + "Timestamp": "2024-05-16T05:47:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.250300", + "Timestamp": "2024-05-16T05:47:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.245300", + "Timestamp": "2024-05-16T05:47:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.120300", + "Timestamp": "2024-05-16T05:47:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.171100", + "Timestamp": "2024-05-16T05:47:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.617600", + "Timestamp": "2024-05-16T05:47:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.612600", + "Timestamp": "2024-05-16T05:47:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.487600", + "Timestamp": "2024-05-16T05:47:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096400", + "Timestamp": "2024-05-16T05:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092700", + "Timestamp": "2024-05-16T05:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036400", + "Timestamp": "2024-05-16T05:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.465800", + "Timestamp": "2024-05-16T05:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.589900", + "Timestamp": "2024-05-16T05:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.079600", + "Timestamp": "2024-05-16T05:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.125200", + "Timestamp": "2024-05-16T05:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.049600", + "Timestamp": "2024-05-16T05:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.095200", + "Timestamp": "2024-05-16T05:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.949600", + "Timestamp": "2024-05-16T05:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.995200", + "Timestamp": "2024-05-16T05:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113500", + "Timestamp": "2024-05-16T05:47:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T05:47:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053500", + "Timestamp": "2024-05-16T05:47:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.190300", + "Timestamp": "2024-05-16T05:47:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.186600", + "Timestamp": "2024-05-16T05:47:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130300", + "Timestamp": "2024-05-16T05:47:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.201800", + "Timestamp": "2024-05-16T05:47:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198100", + "Timestamp": "2024-05-16T05:47:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141800", + "Timestamp": "2024-05-16T05:47:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233000", + "Timestamp": "2024-05-16T05:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.633100", + "Timestamp": "2024-05-16T05:47:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.367100", + "Timestamp": "2024-05-16T05:47:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.501400", + "Timestamp": "2024-05-16T05:47:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.496400", + "Timestamp": "2024-05-16T05:47:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.371400", + "Timestamp": "2024-05-16T05:47:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.859200", + "Timestamp": "2024-05-16T05:47:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.507200", + "Timestamp": "2024-05-16T05:47:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.217000", + "Timestamp": "2024-05-16T05:47:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.212000", + "Timestamp": "2024-05-16T05:47:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.087000", + "Timestamp": "2024-05-16T05:47:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.326000", + "Timestamp": "2024-05-16T05:47:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.258600", + "Timestamp": "2024-05-16T05:47:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.228600", + "Timestamp": "2024-05-16T05:47:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.128600", + "Timestamp": "2024-05-16T05:47:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.891500", + "Timestamp": "2024-05-16T05:46:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.596300", + "Timestamp": "2024-05-16T05:46:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156800", + "Timestamp": "2024-05-16T05:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153100", + "Timestamp": "2024-05-16T05:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096800", + "Timestamp": "2024-05-16T05:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.313200", + "Timestamp": "2024-05-16T05:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.942800", + "Timestamp": "2024-05-16T05:46:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.229200", + "Timestamp": "2024-05-16T05:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.225200", + "Timestamp": "2024-05-16T05:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169200", + "Timestamp": "2024-05-16T05:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307700", + "Timestamp": "2024-05-16T05:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302700", + "Timestamp": "2024-05-16T05:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177700", + "Timestamp": "2024-05-16T05:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.594000", + "Timestamp": "2024-05-16T05:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.589000", + "Timestamp": "2024-05-16T05:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.464000", + "Timestamp": "2024-05-16T05:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.524900", + "Timestamp": "2024-05-16T05:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.535600", + "Timestamp": "2024-05-16T05:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.519900", + "Timestamp": "2024-05-16T05:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.530600", + "Timestamp": "2024-05-16T05:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.394900", + "Timestamp": "2024-05-16T05:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.405600", + "Timestamp": "2024-05-16T05:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.925800", + "Timestamp": "2024-05-16T05:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.920800", + "Timestamp": "2024-05-16T05:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.795800", + "Timestamp": "2024-05-16T05:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.558800", + "Timestamp": "2024-05-16T05:46:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.553800", + "Timestamp": "2024-05-16T05:46:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.428800", + "Timestamp": "2024-05-16T05:46:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.704600", + "Timestamp": "2024-05-16T05:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "p2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.674600", + "Timestamp": "2024-05-16T05:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.574600", + "Timestamp": "2024-05-16T05:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.462800", + "Timestamp": "2024-05-16T05:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.457800", + "Timestamp": "2024-05-16T05:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.332800", + "Timestamp": "2024-05-16T05:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.658200", + "Timestamp": "2024-05-16T05:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.653200", + "Timestamp": "2024-05-16T05:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.528200", + "Timestamp": "2024-05-16T05:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.016200", + "Timestamp": "2024-05-16T05:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.577600", + "Timestamp": "2024-05-16T05:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.572600", + "Timestamp": "2024-05-16T05:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.447600", + "Timestamp": "2024-05-16T05:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.898200", + "Timestamp": "2024-05-16T05:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T05:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.817600", + "Timestamp": "2024-05-16T05:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.812600", + "Timestamp": "2024-05-16T05:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.687600", + "Timestamp": "2024-05-16T05:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.685300", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.680300", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.555300", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.679200", + "Timestamp": "2024-05-16T05:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.674200", + "Timestamp": "2024-05-16T05:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.549200", + "Timestamp": "2024-05-16T05:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.778600", + "Timestamp": "2024-05-16T05:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.577900", + "Timestamp": "2024-05-16T05:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.430400", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.182000", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.760500", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.038900", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.008900", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.908900", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.589800", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298800", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293800", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168800", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.351000", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.346000", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.221000", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.072400", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.067400", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.942400", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073800", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070100", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013800", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.019400", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.989400", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.889400", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122900", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119200", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062900", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.230800", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.225800", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.100800", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.699100", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.694100", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.569100", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062200", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002200", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002200", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.653200", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.340800", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.335800", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.210800", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.072300", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.537500", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.570100", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.683800", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.494400", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.446600", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.684600", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113500", + "Timestamp": "2024-05-16T05:46:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T05:46:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053500", + "Timestamp": "2024-05-16T05:46:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.794900", + "Timestamp": "2024-05-16T05:46:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.764900", + "Timestamp": "2024-05-16T05:46:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.664900", + "Timestamp": "2024-05-16T05:46:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.925400", + "Timestamp": "2024-05-16T05:46:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.920400", + "Timestamp": "2024-05-16T05:46:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.795400", + "Timestamp": "2024-05-16T05:46:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.026400", + "Timestamp": "2024-05-16T05:33:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T05:32:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108500", + "Timestamp": "2024-05-16T05:32:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052200", + "Timestamp": "2024-05-16T05:32:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.849500", + "Timestamp": "2024-05-16T05:32:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.844500", + "Timestamp": "2024-05-16T05:32:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.719500", + "Timestamp": "2024-05-16T05:32:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T05:32:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099100", + "Timestamp": "2024-05-16T05:32:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042800", + "Timestamp": "2024-05-16T05:32:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.907800", + "Timestamp": "2024-05-16T05:32:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.902800", + "Timestamp": "2024-05-16T05:32:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.777800", + "Timestamp": "2024-05-16T05:32:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.020600", + "Timestamp": "2024-05-16T05:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.015600", + "Timestamp": "2024-05-16T05:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.890600", + "Timestamp": "2024-05-16T05:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.965700", + "Timestamp": "2024-05-16T05:32:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.390300", + "Timestamp": "2024-05-16T05:32:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107800", + "Timestamp": "2024-05-16T05:32:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.659700", + "Timestamp": "2024-05-16T05:32:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.926400", + "Timestamp": "2024-05-16T05:32:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.921400", + "Timestamp": "2024-05-16T05:32:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.796400", + "Timestamp": "2024-05-16T05:32:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.421100", + "Timestamp": "2024-05-16T05:32:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.886400", + "Timestamp": "2024-05-16T05:32:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.397900", + "Timestamp": "2024-05-16T05:32:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.529000", + "Timestamp": "2024-05-16T05:32:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.524000", + "Timestamp": "2024-05-16T05:32:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.399000", + "Timestamp": "2024-05-16T05:32:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.101900", + "Timestamp": "2024-05-16T05:32:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.200600", + "Timestamp": "2024-05-16T05:32:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.358300", + "Timestamp": "2024-05-16T05:32:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.574600", + "Timestamp": "2024-05-16T05:32:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.575200", + "Timestamp": "2024-05-16T05:32:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.375900", + "Timestamp": "2024-05-16T05:32:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.370900", + "Timestamp": "2024-05-16T05:32:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.245900", + "Timestamp": "2024-05-16T05:32:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.342100", + "Timestamp": "2024-05-16T05:32:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.337100", + "Timestamp": "2024-05-16T05:32:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212100", + "Timestamp": "2024-05-16T05:32:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.374500", + "Timestamp": "2024-05-16T05:31:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.357700", + "Timestamp": "2024-05-16T05:31:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.352700", + "Timestamp": "2024-05-16T05:31:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.227700", + "Timestamp": "2024-05-16T05:31:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.302500", + "Timestamp": "2024-05-16T05:31:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298500", + "Timestamp": "2024-05-16T05:31:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242500", + "Timestamp": "2024-05-16T05:31:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.350200", + "Timestamp": "2024-05-16T05:31:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.345200", + "Timestamp": "2024-05-16T05:31:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.220200", + "Timestamp": "2024-05-16T05:31:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.543900", + "Timestamp": "2024-05-16T05:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.538900", + "Timestamp": "2024-05-16T05:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.413900", + "Timestamp": "2024-05-16T05:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.509500", + "Timestamp": "2024-05-16T05:31:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.479500", + "Timestamp": "2024-05-16T05:31:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.406200", + "Timestamp": "2024-05-16T05:31:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.401200", + "Timestamp": "2024-05-16T05:31:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.276200", + "Timestamp": "2024-05-16T05:31:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.876300", + "Timestamp": "2024-05-16T05:31:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.527000", + "Timestamp": "2024-05-16T05:31:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.497000", + "Timestamp": "2024-05-16T05:31:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.397000", + "Timestamp": "2024-05-16T05:31:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.487900", + "Timestamp": "2024-05-16T05:31:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330100", + "Timestamp": "2024-05-16T05:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.300100", + "Timestamp": "2024-05-16T05:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200100", + "Timestamp": "2024-05-16T05:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.344800", + "Timestamp": "2024-05-16T05:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.339800", + "Timestamp": "2024-05-16T05:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.214800", + "Timestamp": "2024-05-16T05:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.276000", + "Timestamp": "2024-05-16T05:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147000", + "Timestamp": "2024-05-16T05:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143300", + "Timestamp": "2024-05-16T05:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087000", + "Timestamp": "2024-05-16T05:31:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.858700", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.853700", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.728700", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.059100", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.054100", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.929100", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.274600", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269600", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144600", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.222600", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.218600", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162600", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.855400", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149300", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145300", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089300", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.595900", + "Timestamp": "2024-05-16T05:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.867200", + "Timestamp": "2024-05-16T05:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354600", + "Timestamp": "2024-05-16T05:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349600", + "Timestamp": "2024-05-16T05:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224600", + "Timestamp": "2024-05-16T05:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.918000", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.913000", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.788000", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.986500", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.981500", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.856500", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.703000", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.698000", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.573000", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.772500", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.767500", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.642500", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.928600", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.923600", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.798600", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125000", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.533900", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.215400", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.211700", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.155400", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.563400", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.558400", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.433400", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.414000", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094800", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091100", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034800", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.555200", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.550200", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.425200", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.107000", + "Timestamp": "2024-05-16T05:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.077000", + "Timestamp": "2024-05-16T05:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.977000", + "Timestamp": "2024-05-16T05:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120700", + "Timestamp": "2024-05-16T05:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117000", + "Timestamp": "2024-05-16T05:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060700", + "Timestamp": "2024-05-16T05:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.515900", + "Timestamp": "2024-05-16T05:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.954700", + "Timestamp": "2024-05-16T05:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.949700", + "Timestamp": "2024-05-16T05:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.824700", + "Timestamp": "2024-05-16T05:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.704400", + "Timestamp": "2024-05-16T05:31:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.350600", + "Timestamp": "2024-05-16T05:31:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.320600", + "Timestamp": "2024-05-16T05:31:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.220600", + "Timestamp": "2024-05-16T05:31:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.902800", + "Timestamp": "2024-05-16T05:31:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.737100", + "Timestamp": "2024-05-16T05:31:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.732100", + "Timestamp": "2024-05-16T05:31:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.607100", + "Timestamp": "2024-05-16T05:31:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215900", + "Timestamp": "2024-05-16T05:18:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.517800", + "Timestamp": "2024-05-16T05:17:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432900", + "Timestamp": "2024-05-16T05:17:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.386200", + "Timestamp": "2024-05-16T05:17:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.382500", + "Timestamp": "2024-05-16T05:17:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.326200", + "Timestamp": "2024-05-16T05:17:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074800", + "Timestamp": "2024-05-16T05:17:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.045800", + "Timestamp": "2024-05-16T05:17:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014800", + "Timestamp": "2024-05-16T05:17:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.775000", + "Timestamp": "2024-05-16T05:17:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.770000", + "Timestamp": "2024-05-16T05:17:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.645000", + "Timestamp": "2024-05-16T05:17:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174300", + "Timestamp": "2024-05-16T05:17:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170600", + "Timestamp": "2024-05-16T05:17:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114300", + "Timestamp": "2024-05-16T05:17:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.132300", + "Timestamp": "2024-05-16T05:17:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.127300", + "Timestamp": "2024-05-16T05:17:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.002300", + "Timestamp": "2024-05-16T05:17:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.678300", + "Timestamp": "2024-05-16T05:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.230700", + "Timestamp": "2024-05-16T05:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.226700", + "Timestamp": "2024-05-16T05:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170700", + "Timestamp": "2024-05-16T05:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.925500", + "Timestamp": "2024-05-16T05:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.920500", + "Timestamp": "2024-05-16T05:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.795500", + "Timestamp": "2024-05-16T05:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.024100", + "Timestamp": "2024-05-16T05:17:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.504700", + "Timestamp": "2024-05-16T05:17:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.499700", + "Timestamp": "2024-05-16T05:17:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.374700", + "Timestamp": "2024-05-16T05:17:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.079300", + "Timestamp": "2024-05-16T05:17:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.827600", + "Timestamp": "2024-05-16T05:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.822600", + "Timestamp": "2024-05-16T05:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.697600", + "Timestamp": "2024-05-16T05:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.880900", + "Timestamp": "2024-05-16T05:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.875900", + "Timestamp": "2024-05-16T05:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.750900", + "Timestamp": "2024-05-16T05:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.729400", + "Timestamp": "2024-05-16T05:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.089200", + "Timestamp": "2024-05-16T05:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.084200", + "Timestamp": "2024-05-16T05:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.959200", + "Timestamp": "2024-05-16T05:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.492700", + "Timestamp": "2024-05-16T05:17:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.887600", + "Timestamp": "2024-05-16T05:17:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.390200", + "Timestamp": "2024-05-16T05:17:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.360200", + "Timestamp": "2024-05-16T05:17:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.260200", + "Timestamp": "2024-05-16T05:17:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.803000", + "Timestamp": "2024-05-16T05:17:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.575800", + "Timestamp": "2024-05-16T05:17:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.031000", + "Timestamp": "2024-05-16T05:17:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.671200", + "Timestamp": "2024-05-16T05:17:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219400", + "Timestamp": "2024-05-16T05:17:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.085800", + "Timestamp": "2024-05-16T05:17:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.080800", + "Timestamp": "2024-05-16T05:17:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.955800", + "Timestamp": "2024-05-16T05:17:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.268700", + "Timestamp": "2024-05-16T05:17:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.540500", + "Timestamp": "2024-05-16T05:17:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.311000", + "Timestamp": "2024-05-16T05:17:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.306000", + "Timestamp": "2024-05-16T05:17:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.181000", + "Timestamp": "2024-05-16T05:17:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.172300", + "Timestamp": "2024-05-16T05:17:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151400", + "Timestamp": "2024-05-16T05:17:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147400", + "Timestamp": "2024-05-16T05:17:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091400", + "Timestamp": "2024-05-16T05:17:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.981900", + "Timestamp": "2024-05-16T05:17:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T05:17:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.726200", + "Timestamp": "2024-05-16T05:16:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.828800", + "Timestamp": "2024-05-16T05:16:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.201600", + "Timestamp": "2024-05-16T05:16:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.236400", + "Timestamp": "2024-05-16T05:16:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165700", + "Timestamp": "2024-05-16T05:16:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162000", + "Timestamp": "2024-05-16T05:16:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T05:16:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200300", + "Timestamp": "2024-05-16T05:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.197300", + "Timestamp": "2024-05-16T05:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140300", + "Timestamp": "2024-05-16T05:16:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.595500", + "Timestamp": "2024-05-16T05:16:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.780700", + "Timestamp": "2024-05-16T05:16:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.146800", + "Timestamp": "2024-05-16T05:16:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.141800", + "Timestamp": "2024-05-16T05:16:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.016800", + "Timestamp": "2024-05-16T05:16:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112700", + "Timestamp": "2024-05-16T05:16:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.392700", + "Timestamp": "2024-05-16T05:16:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.387700", + "Timestamp": "2024-05-16T05:16:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.262700", + "Timestamp": "2024-05-16T05:16:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.517400", + "Timestamp": "2024-05-16T05:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140500", + "Timestamp": "2024-05-16T05:16:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136800", + "Timestamp": "2024-05-16T05:16:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080500", + "Timestamp": "2024-05-16T05:16:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.180400", + "Timestamp": "2024-05-16T05:16:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.175400", + "Timestamp": "2024-05-16T05:16:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.050400", + "Timestamp": "2024-05-16T05:16:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.562300", + "Timestamp": "2024-05-16T05:16:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.557300", + "Timestamp": "2024-05-16T05:16:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.432300", + "Timestamp": "2024-05-16T05:16:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.835400", + "Timestamp": "2024-05-16T05:16:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.024800", + "Timestamp": "2024-05-16T05:16:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.994800", + "Timestamp": "2024-05-16T05:16:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.894800", + "Timestamp": "2024-05-16T05:16:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.252900", + "Timestamp": "2024-05-16T05:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.247900", + "Timestamp": "2024-05-16T05:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.122900", + "Timestamp": "2024-05-16T05:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104300", + "Timestamp": "2024-05-16T05:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.601100", + "Timestamp": "2024-05-16T05:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.596100", + "Timestamp": "2024-05-16T05:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.471100", + "Timestamp": "2024-05-16T05:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.438800", + "Timestamp": "2024-05-16T05:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.601100", + "Timestamp": "2024-05-16T05:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146500", + "Timestamp": "2024-05-16T05:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142800", + "Timestamp": "2024-05-16T05:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086500", + "Timestamp": "2024-05-16T05:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.508700", + "Timestamp": "2024-05-16T05:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.855900", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.420200", + "Timestamp": "2024-05-16T05:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.390200", + "Timestamp": "2024-05-16T05:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.290200", + "Timestamp": "2024-05-16T05:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.926100", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.822500", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044200", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.425700", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.400500", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.395500", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.270500", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.959300", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.616800", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.611800", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.486800", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.332800", + "Timestamp": "2024-05-16T05:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.327800", + "Timestamp": "2024-05-16T05:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.202800", + "Timestamp": "2024-05-16T05:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.803500", + "Timestamp": "2024-05-16T05:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.766900", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.813700", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.808700", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.683700", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101800", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041800", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.742400", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094500", + "Timestamp": "2024-05-16T05:16:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099600", + "Timestamp": "2024-05-16T05:16:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090800", + "Timestamp": "2024-05-16T05:16:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-16T05:16:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034500", + "Timestamp": "2024-05-16T05:16:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039600", + "Timestamp": "2024-05-16T05:16:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.250900", + "Timestamp": "2024-05-16T05:16:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.245900", + "Timestamp": "2024-05-16T05:16:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.120900", + "Timestamp": "2024-05-16T05:16:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115200", + "Timestamp": "2024-05-16T05:16:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111200", + "Timestamp": "2024-05-16T05:16:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055200", + "Timestamp": "2024-05-16T05:16:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.522000", + "Timestamp": "2024-05-16T05:16:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.517000", + "Timestamp": "2024-05-16T05:16:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.392000", + "Timestamp": "2024-05-16T05:16:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.217200", + "Timestamp": "2024-05-16T05:03:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.991000", + "Timestamp": "2024-05-16T05:02:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.586300", + "Timestamp": "2024-05-16T05:02:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.581300", + "Timestamp": "2024-05-16T05:02:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.456300", + "Timestamp": "2024-05-16T05:02:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.378600", + "Timestamp": "2024-05-16T05:02:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.234800", + "Timestamp": "2024-05-16T05:02:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.231100", + "Timestamp": "2024-05-16T05:02:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.174800", + "Timestamp": "2024-05-16T05:02:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.013700", + "Timestamp": "2024-05-16T05:02:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.008700", + "Timestamp": "2024-05-16T05:02:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.883700", + "Timestamp": "2024-05-16T05:02:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.776600", + "Timestamp": "2024-05-16T05:02:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.771600", + "Timestamp": "2024-05-16T05:02:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.646600", + "Timestamp": "2024-05-16T05:02:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.245100", + "Timestamp": "2024-05-16T05:02:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.240100", + "Timestamp": "2024-05-16T05:02:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.115100", + "Timestamp": "2024-05-16T05:02:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.144800", + "Timestamp": "2024-05-16T05:02:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.251100", + "Timestamp": "2024-05-16T05:02:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.247400", + "Timestamp": "2024-05-16T05:02:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.191100", + "Timestamp": "2024-05-16T05:02:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149600", + "Timestamp": "2024-05-16T05:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145900", + "Timestamp": "2024-05-16T05:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089600", + "Timestamp": "2024-05-16T05:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.869300", + "Timestamp": "2024-05-16T05:02:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.739900", + "Timestamp": "2024-05-16T05:02:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.734900", + "Timestamp": "2024-05-16T05:02:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.609900", + "Timestamp": "2024-05-16T05:02:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.193900", + "Timestamp": "2024-05-16T05:02:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.233900", + "Timestamp": "2024-05-16T05:02:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133900", + "Timestamp": "2024-05-16T05:02:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.282800", + "Timestamp": "2024-05-16T05:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.277800", + "Timestamp": "2024-05-16T05:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.152800", + "Timestamp": "2024-05-16T05:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.584300", + "Timestamp": "2024-05-16T05:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.579300", + "Timestamp": "2024-05-16T05:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.454300", + "Timestamp": "2024-05-16T05:02:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.502000", + "Timestamp": "2024-05-16T05:02:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.524100", + "Timestamp": "2024-05-16T05:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.195400", + "Timestamp": "2024-05-16T05:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.190400", + "Timestamp": "2024-05-16T05:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.065400", + "Timestamp": "2024-05-16T05:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.683800", + "Timestamp": "2024-05-16T05:02:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104300", + "Timestamp": "2024-05-16T05:02:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.783100", + "Timestamp": "2024-05-16T05:02:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.778100", + "Timestamp": "2024-05-16T05:02:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.653100", + "Timestamp": "2024-05-16T05:02:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.265500", + "Timestamp": "2024-05-16T05:02:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.235500", + "Timestamp": "2024-05-16T05:02:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.135500", + "Timestamp": "2024-05-16T05:02:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.100700", + "Timestamp": "2024-05-16T05:02:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.095700", + "Timestamp": "2024-05-16T05:02:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.970700", + "Timestamp": "2024-05-16T05:02:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.042100", + "Timestamp": "2024-05-16T05:02:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.502200", + "Timestamp": "2024-05-16T05:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.138100", + "Timestamp": "2024-05-16T05:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.133100", + "Timestamp": "2024-05-16T05:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.008100", + "Timestamp": "2024-05-16T05:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437300", + "Timestamp": "2024-05-16T05:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.173200", + "Timestamp": "2024-05-16T05:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.777100", + "Timestamp": "2024-05-16T05:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T05:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102700", + "Timestamp": "2024-05-16T05:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046400", + "Timestamp": "2024-05-16T05:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.377600", + "Timestamp": "2024-05-16T05:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.372600", + "Timestamp": "2024-05-16T05:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.247600", + "Timestamp": "2024-05-16T05:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.429600", + "Timestamp": "2024-05-16T05:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.399600", + "Timestamp": "2024-05-16T05:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.299600", + "Timestamp": "2024-05-16T05:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.561900", + "Timestamp": "2024-05-16T05:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.556900", + "Timestamp": "2024-05-16T05:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.431900", + "Timestamp": "2024-05-16T05:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.447100", + "Timestamp": "2024-05-16T05:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.442100", + "Timestamp": "2024-05-16T05:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.317100", + "Timestamp": "2024-05-16T05:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.480600", + "Timestamp": "2024-05-16T05:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.475600", + "Timestamp": "2024-05-16T05:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.350600", + "Timestamp": "2024-05-16T05:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.673600", + "Timestamp": "2024-05-16T05:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.082500", + "Timestamp": "2024-05-16T05:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.846600", + "Timestamp": "2024-05-16T05:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.130200", + "Timestamp": "2024-05-16T05:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.125200", + "Timestamp": "2024-05-16T05:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.000200", + "Timestamp": "2024-05-16T05:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.443400", + "Timestamp": "2024-05-16T05:02:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.024100", + "Timestamp": "2024-05-16T05:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.800300", + "Timestamp": "2024-05-16T05:02:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.007600", + "Timestamp": "2024-05-16T05:02:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.002600", + "Timestamp": "2024-05-16T05:02:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.877600", + "Timestamp": "2024-05-16T05:02:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.217500", + "Timestamp": "2024-05-16T05:02:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.257500", + "Timestamp": "2024-05-16T05:02:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157500", + "Timestamp": "2024-05-16T05:02:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.761200", + "Timestamp": "2024-05-16T05:02:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.756200", + "Timestamp": "2024-05-16T05:02:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.631200", + "Timestamp": "2024-05-16T05:02:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.944000", + "Timestamp": "2024-05-16T05:02:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.939000", + "Timestamp": "2024-05-16T05:02:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.814000", + "Timestamp": "2024-05-16T05:02:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.554100", + "Timestamp": "2024-05-16T05:02:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.549100", + "Timestamp": "2024-05-16T05:02:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.424100", + "Timestamp": "2024-05-16T05:02:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.463900", + "Timestamp": "2024-05-16T05:02:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.365200", + "Timestamp": "2024-05-16T05:02:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.360200", + "Timestamp": "2024-05-16T05:02:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235200", + "Timestamp": "2024-05-16T05:02:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.256400", + "Timestamp": "2024-05-16T05:02:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.226400", + "Timestamp": "2024-05-16T05:02:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126400", + "Timestamp": "2024-05-16T05:02:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.078800", + "Timestamp": "2024-05-16T05:02:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.073800", + "Timestamp": "2024-05-16T05:02:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.948800", + "Timestamp": "2024-05-16T05:02:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.484000", + "Timestamp": "2024-05-16T05:02:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.479000", + "Timestamp": "2024-05-16T05:02:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.354000", + "Timestamp": "2024-05-16T05:02:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.492300", + "Timestamp": "2024-05-16T05:02:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.487300", + "Timestamp": "2024-05-16T05:02:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.362300", + "Timestamp": "2024-05-16T05:02:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121300", + "Timestamp": "2024-05-16T05:02:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T05:02:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.680000", + "Timestamp": "2024-05-16T05:01:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.675000", + "Timestamp": "2024-05-16T05:01:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.550000", + "Timestamp": "2024-05-16T05:01:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.501200", + "Timestamp": "2024-05-16T05:01:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153700", + "Timestamp": "2024-05-16T05:01:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193700", + "Timestamp": "2024-05-16T05:01:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093700", + "Timestamp": "2024-05-16T05:01:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278400", + "Timestamp": "2024-05-16T05:01:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273400", + "Timestamp": "2024-05-16T05:01:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148400", + "Timestamp": "2024-05-16T05:01:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.152000", + "Timestamp": "2024-05-16T05:01:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.147000", + "Timestamp": "2024-05-16T05:01:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.022000", + "Timestamp": "2024-05-16T05:01:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.499500", + "Timestamp": "2024-05-16T05:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.494500", + "Timestamp": "2024-05-16T05:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.369500", + "Timestamp": "2024-05-16T05:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.460300", + "Timestamp": "2024-05-16T05:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153100", + "Timestamp": "2024-05-16T05:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149400", + "Timestamp": "2024-05-16T05:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093100", + "Timestamp": "2024-05-16T05:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.849400", + "Timestamp": "2024-05-16T05:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.844400", + "Timestamp": "2024-05-16T05:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.719400", + "Timestamp": "2024-05-16T05:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.224300", + "Timestamp": "2024-05-16T05:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.220600", + "Timestamp": "2024-05-16T05:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164300", + "Timestamp": "2024-05-16T05:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.363100", + "Timestamp": "2024-05-16T04:47:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.358100", + "Timestamp": "2024-05-16T04:47:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.233100", + "Timestamp": "2024-05-16T04:47:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.874900", + "Timestamp": "2024-05-16T04:47:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.018200", + "Timestamp": "2024-05-16T04:47:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.732900", + "Timestamp": "2024-05-16T04:47:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.727900", + "Timestamp": "2024-05-16T04:47:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.602900", + "Timestamp": "2024-05-16T04:47:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.341600", + "Timestamp": "2024-05-16T04:47:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.115100", + "Timestamp": "2024-05-16T04:47:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.418800", + "Timestamp": "2024-05-16T04:47:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.428400", + "Timestamp": "2024-05-16T04:47:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.766500", + "Timestamp": "2024-05-16T04:47:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216000", + "Timestamp": "2024-05-16T04:47:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146100", + "Timestamp": "2024-05-16T04:47:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142400", + "Timestamp": "2024-05-16T04:47:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086100", + "Timestamp": "2024-05-16T04:47:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.162700", + "Timestamp": "2024-05-16T04:47:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212400", + "Timestamp": "2024-05-16T04:47:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.127700", + "Timestamp": "2024-05-16T04:47:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.410300", + "Timestamp": "2024-05-16T04:47:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.405300", + "Timestamp": "2024-05-16T04:47:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.280300", + "Timestamp": "2024-05-16T04:47:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.215500", + "Timestamp": "2024-05-16T04:46:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.210500", + "Timestamp": "2024-05-16T04:46:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.085500", + "Timestamp": "2024-05-16T04:46:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.220200", + "Timestamp": "2024-05-16T04:46:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.215200", + "Timestamp": "2024-05-16T04:46:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.090200", + "Timestamp": "2024-05-16T04:46:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.673500", + "Timestamp": "2024-05-16T04:46:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.669500", + "Timestamp": "2024-05-16T04:46:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.664500", + "Timestamp": "2024-05-16T04:46:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.539500", + "Timestamp": "2024-05-16T04:46:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T04:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149700", + "Timestamp": "2024-05-16T04:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146000", + "Timestamp": "2024-05-16T04:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089700", + "Timestamp": "2024-05-16T04:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.005200", + "Timestamp": "2024-05-16T04:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.000200", + "Timestamp": "2024-05-16T04:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.875200", + "Timestamp": "2024-05-16T04:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.611400", + "Timestamp": "2024-05-16T04:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.303800", + "Timestamp": "2024-05-16T04:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298800", + "Timestamp": "2024-05-16T04:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.173800", + "Timestamp": "2024-05-16T04:46:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.210500", + "Timestamp": "2024-05-16T04:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.205500", + "Timestamp": "2024-05-16T04:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.080500", + "Timestamp": "2024-05-16T04:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.754800", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.749800", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.624800", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.834600", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.829600", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.704600", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.148500", + "Timestamp": "2024-05-16T04:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.143500", + "Timestamp": "2024-05-16T04:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.018500", + "Timestamp": "2024-05-16T04:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.768300", + "Timestamp": "2024-05-16T04:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.072800", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.067800", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.942800", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.500500", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.495500", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.370500", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.251800", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.246800", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.121800", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137100", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124200", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133400", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120500", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077100", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064200", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.428900", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.167800", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.162800", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.037800", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.414800", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.409800", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.284800", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142500", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042500", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.733700", + "Timestamp": "2024-05-16T04:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.728700", + "Timestamp": "2024-05-16T04:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.603700", + "Timestamp": "2024-05-16T04:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.835200", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.830200", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.705200", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.288700", + "Timestamp": "2024-05-16T04:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.283700", + "Timestamp": "2024-05-16T04:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158700", + "Timestamp": "2024-05-16T04:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.615600", + "Timestamp": "2024-05-16T04:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.658500", + "Timestamp": "2024-05-16T04:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.084100", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.079100", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.954100", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079700", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076000", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019700", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.104300", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.099300", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.974300", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.506400", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.501400", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.376400", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.674400", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.993700", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.988700", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.863700", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.809900", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.473800", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.468800", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.343800", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.502200", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.497200", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.372200", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.746400", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121400", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117400", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061400", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.367000", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.362000", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.237000", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.958500", + "Timestamp": "2024-05-16T04:46:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.953500", + "Timestamp": "2024-05-16T04:46:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.828500", + "Timestamp": "2024-05-16T04:46:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.006200", + "Timestamp": "2024-05-16T04:32:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.189000", + "Timestamp": "2024-05-16T04:32:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136200", + "Timestamp": "2024-05-16T04:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132500", + "Timestamp": "2024-05-16T04:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076200", + "Timestamp": "2024-05-16T04:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-16T04:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-16T04:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040900", + "Timestamp": "2024-05-16T04:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.036900", + "Timestamp": "2024-05-16T04:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.031900", + "Timestamp": "2024-05-16T04:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.906900", + "Timestamp": "2024-05-16T04:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077700", + "Timestamp": "2024-05-16T04:32:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074000", + "Timestamp": "2024-05-16T04:32:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017700", + "Timestamp": "2024-05-16T04:32:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.813000", + "Timestamp": "2024-05-16T04:32:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.808000", + "Timestamp": "2024-05-16T04:32:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.683000", + "Timestamp": "2024-05-16T04:32:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.943000", + "Timestamp": "2024-05-16T04:32:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145300", + "Timestamp": "2024-05-16T04:32:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141600", + "Timestamp": "2024-05-16T04:32:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085300", + "Timestamp": "2024-05-16T04:32:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.777200", + "Timestamp": "2024-05-16T04:32:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.274100", + "Timestamp": "2024-05-16T04:32:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270100", + "Timestamp": "2024-05-16T04:32:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.214100", + "Timestamp": "2024-05-16T04:32:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.631300", + "Timestamp": "2024-05-16T04:32:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.601300", + "Timestamp": "2024-05-16T04:32:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.501300", + "Timestamp": "2024-05-16T04:32:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T04:32:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-16T04:32:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042800", + "Timestamp": "2024-05-16T04:32:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.020600", + "Timestamp": "2024-05-16T04:32:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.990600", + "Timestamp": "2024-05-16T04:32:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.890600", + "Timestamp": "2024-05-16T04:32:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.434900", + "Timestamp": "2024-05-16T04:32:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.316700", + "Timestamp": "2024-05-16T04:32:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.858500", + "Timestamp": "2024-05-16T04:32:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.311700", + "Timestamp": "2024-05-16T04:32:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.853500", + "Timestamp": "2024-05-16T04:32:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.186700", + "Timestamp": "2024-05-16T04:32:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.728500", + "Timestamp": "2024-05-16T04:32:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.482000", + "Timestamp": "2024-05-16T04:31:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.477000", + "Timestamp": "2024-05-16T04:31:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.352000", + "Timestamp": "2024-05-16T04:31:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.960900", + "Timestamp": "2024-05-16T04:31:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.442700", + "Timestamp": "2024-05-16T04:31:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.437700", + "Timestamp": "2024-05-16T04:31:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.312700", + "Timestamp": "2024-05-16T04:31:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.841900", + "Timestamp": "2024-05-16T04:31:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T04:31:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.123100", + "Timestamp": "2024-05-16T04:31:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.558200", + "Timestamp": "2024-05-16T04:31:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.919100", + "Timestamp": "2024-05-16T04:31:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.645100", + "Timestamp": "2024-05-16T04:31:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.640100", + "Timestamp": "2024-05-16T04:31:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.515100", + "Timestamp": "2024-05-16T04:31:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.156200", + "Timestamp": "2024-05-16T04:31:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.941800", + "Timestamp": "2024-05-16T04:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.228500", + "Timestamp": "2024-05-16T04:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.224800", + "Timestamp": "2024-05-16T04:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168500", + "Timestamp": "2024-05-16T04:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.495100", + "Timestamp": "2024-05-16T04:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.490100", + "Timestamp": "2024-05-16T04:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.365100", + "Timestamp": "2024-05-16T04:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.451500", + "Timestamp": "2024-05-16T04:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.833000", + "Timestamp": "2024-05-16T04:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.533600", + "Timestamp": "2024-05-16T04:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.528600", + "Timestamp": "2024-05-16T04:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.403600", + "Timestamp": "2024-05-16T04:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.002000", + "Timestamp": "2024-05-16T04:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126000", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122300", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066000", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.476500", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118600", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058600", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.405700", + "Timestamp": "2024-05-16T04:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.011900", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.981900", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.881900", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112500", + "Timestamp": "2024-05-16T04:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108800", + "Timestamp": "2024-05-16T04:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052500", + "Timestamp": "2024-05-16T04:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146500", + "Timestamp": "2024-05-16T04:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142800", + "Timestamp": "2024-05-16T04:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086500", + "Timestamp": "2024-05-16T04:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.546300", + "Timestamp": "2024-05-16T04:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.541300", + "Timestamp": "2024-05-16T04:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.416300", + "Timestamp": "2024-05-16T04:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.245800", + "Timestamp": "2024-05-16T04:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.240800", + "Timestamp": "2024-05-16T04:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.115800", + "Timestamp": "2024-05-16T04:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.991200", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.986200", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.861200", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.904800", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.874800", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.774800", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.445900", + "Timestamp": "2024-05-16T04:31:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.440900", + "Timestamp": "2024-05-16T04:31:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.315900", + "Timestamp": "2024-05-16T04:31:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118000", + "Timestamp": "2024-05-16T04:31:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114300", + "Timestamp": "2024-05-16T04:31:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058000", + "Timestamp": "2024-05-16T04:31:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158000", + "Timestamp": "2024-05-16T04:31:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154300", + "Timestamp": "2024-05-16T04:31:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098000", + "Timestamp": "2024-05-16T04:31:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109600", + "Timestamp": "2024-05-16T04:18:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010800", + "Timestamp": "2024-05-16T04:18:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T04:17:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.197000", + "Timestamp": "2024-05-16T04:17:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193300", + "Timestamp": "2024-05-16T04:17:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137000", + "Timestamp": "2024-05-16T04:17:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.100500", + "Timestamp": "2024-05-16T04:17:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.723900", + "Timestamp": "2024-05-16T04:17:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.132000", + "Timestamp": "2024-05-16T04:17:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.127000", + "Timestamp": "2024-05-16T04:17:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.002000", + "Timestamp": "2024-05-16T04:17:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.665400", + "Timestamp": "2024-05-16T04:17:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.802300", + "Timestamp": "2024-05-16T04:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.797300", + "Timestamp": "2024-05-16T04:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.672300", + "Timestamp": "2024-05-16T04:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.849100", + "Timestamp": "2024-05-16T04:17:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.827200", + "Timestamp": "2024-05-16T04:17:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.518800", + "Timestamp": "2024-05-16T04:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.425500", + "Timestamp": "2024-05-16T04:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.676400", + "Timestamp": "2024-05-16T04:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074100", + "Timestamp": "2024-05-16T04:17:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070400", + "Timestamp": "2024-05-16T04:17:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014100", + "Timestamp": "2024-05-16T04:17:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.385300", + "Timestamp": "2024-05-16T04:17:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.380300", + "Timestamp": "2024-05-16T04:17:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.255300", + "Timestamp": "2024-05-16T04:17:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.896900", + "Timestamp": "2024-05-16T04:17:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235500", + "Timestamp": "2024-05-16T04:17:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.926600", + "Timestamp": "2024-05-16T04:17:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.767500", + "Timestamp": "2024-05-16T04:17:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.198100", + "Timestamp": "2024-05-16T04:17:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.168100", + "Timestamp": "2024-05-16T04:17:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.068100", + "Timestamp": "2024-05-16T04:17:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.972500", + "Timestamp": "2024-05-16T04:17:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.967500", + "Timestamp": "2024-05-16T04:17:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.842500", + "Timestamp": "2024-05-16T04:17:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.592800", + "Timestamp": "2024-05-16T04:17:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.587800", + "Timestamp": "2024-05-16T04:17:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.462800", + "Timestamp": "2024-05-16T04:17:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.527700", + "Timestamp": "2024-05-16T04:17:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.641200", + "Timestamp": "2024-05-16T04:17:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.110100", + "Timestamp": "2024-05-16T04:17:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.105100", + "Timestamp": "2024-05-16T04:17:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.980100", + "Timestamp": "2024-05-16T04:17:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.654100", + "Timestamp": "2024-05-16T04:16:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.211300", + "Timestamp": "2024-05-16T04:16:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-16T04:16:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.916600", + "Timestamp": "2024-05-16T04:16:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.153200", + "Timestamp": "2024-05-16T04:16:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.123200", + "Timestamp": "2024-05-16T04:16:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.023200", + "Timestamp": "2024-05-16T04:16:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.935900", + "Timestamp": "2024-05-16T04:16:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.509300", + "Timestamp": "2024-05-16T04:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.504300", + "Timestamp": "2024-05-16T04:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.379300", + "Timestamp": "2024-05-16T04:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.462600", + "Timestamp": "2024-05-16T04:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.306700", + "Timestamp": "2024-05-16T04:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.365400", + "Timestamp": "2024-05-16T04:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152900", + "Timestamp": "2024-05-16T04:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148900", + "Timestamp": "2024-05-16T04:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092900", + "Timestamp": "2024-05-16T04:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131900", + "Timestamp": "2024-05-16T04:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128200", + "Timestamp": "2024-05-16T04:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071900", + "Timestamp": "2024-05-16T04:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.942200", + "Timestamp": "2024-05-16T04:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.937200", + "Timestamp": "2024-05-16T04:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.812200", + "Timestamp": "2024-05-16T04:16:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.677900", + "Timestamp": "2024-05-16T04:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.550200", + "Timestamp": "2024-05-16T04:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.545200", + "Timestamp": "2024-05-16T04:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.420200", + "Timestamp": "2024-05-16T04:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119300", + "Timestamp": "2024-05-16T04:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.451800", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.421800", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.321800", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.412900", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.407900", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.282900", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.419500", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.414500", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.289500", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048400", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.318300", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.313300", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.188300", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.561100", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.556100", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.431100", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.124300", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.119300", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.994300", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.404500", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.399500", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.274500", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.238500", + "Timestamp": "2024-05-16T04:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.611800", + "Timestamp": "2024-05-16T04:16:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.606800", + "Timestamp": "2024-05-16T04:16:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.481800", + "Timestamp": "2024-05-16T04:16:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.599400", + "Timestamp": "2024-05-16T04:16:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.197300", + "Timestamp": "2024-05-16T04:16:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.194300", + "Timestamp": "2024-05-16T04:16:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137300", + "Timestamp": "2024-05-16T04:16:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.669200", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.664200", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.539200", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.024900", + "Timestamp": "2024-05-16T04:03:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.698800", + "Timestamp": "2024-05-16T04:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.693800", + "Timestamp": "2024-05-16T04:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.568800", + "Timestamp": "2024-05-16T04:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.456900", + "Timestamp": "2024-05-16T04:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.451900", + "Timestamp": "2024-05-16T04:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.326900", + "Timestamp": "2024-05-16T04:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.430300", + "Timestamp": "2024-05-16T04:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.644400", + "Timestamp": "2024-05-16T04:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.639400", + "Timestamp": "2024-05-16T04:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.514400", + "Timestamp": "2024-05-16T04:02:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.190000", + "Timestamp": "2024-05-16T04:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.185000", + "Timestamp": "2024-05-16T04:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.060000", + "Timestamp": "2024-05-16T04:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.423700", + "Timestamp": "2024-05-16T04:02:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.418700", + "Timestamp": "2024-05-16T04:02:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.293700", + "Timestamp": "2024-05-16T04:02:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.333200", + "Timestamp": "2024-05-16T04:02:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.707200", + "Timestamp": "2024-05-16T04:02:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.328200", + "Timestamp": "2024-05-16T04:02:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.702200", + "Timestamp": "2024-05-16T04:02:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.203200", + "Timestamp": "2024-05-16T04:02:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.577200", + "Timestamp": "2024-05-16T04:02:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074000", + "Timestamp": "2024-05-16T04:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070300", + "Timestamp": "2024-05-16T04:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014000", + "Timestamp": "2024-05-16T04:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.490900", + "Timestamp": "2024-05-16T04:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114700", + "Timestamp": "2024-05-16T04:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.670000", + "Timestamp": "2024-05-16T04:02:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.665000", + "Timestamp": "2024-05-16T04:02:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.540000", + "Timestamp": "2024-05-16T04:02:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.387600", + "Timestamp": "2024-05-16T04:02:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.382600", + "Timestamp": "2024-05-16T04:02:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.257600", + "Timestamp": "2024-05-16T04:02:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.232300", + "Timestamp": "2024-05-16T04:02:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.227300", + "Timestamp": "2024-05-16T04:02:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.102300", + "Timestamp": "2024-05-16T04:02:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.649500", + "Timestamp": "2024-05-16T04:02:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.391500", + "Timestamp": "2024-05-16T04:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.453800", + "Timestamp": "2024-05-16T04:02:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "11.163300", + "Timestamp": "2024-05-16T04:02:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "11.158300", + "Timestamp": "2024-05-16T04:02:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "11.033300", + "Timestamp": "2024-05-16T04:02:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225400", + "Timestamp": "2024-05-16T04:02:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.267100", + "Timestamp": "2024-05-16T04:02:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.208000", + "Timestamp": "2024-05-16T04:02:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.081300", + "Timestamp": "2024-05-16T04:02:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.076300", + "Timestamp": "2024-05-16T04:02:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.951300", + "Timestamp": "2024-05-16T04:02:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.201400", + "Timestamp": "2024-05-16T04:01:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "a1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196400", + "Timestamp": "2024-05-16T04:01:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071400", + "Timestamp": "2024-05-16T04:01:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108500", + "Timestamp": "2024-05-16T04:01:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T04:01:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048500", + "Timestamp": "2024-05-16T04:01:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.975200", + "Timestamp": "2024-05-16T04:01:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.714300", + "Timestamp": "2024-05-16T04:01:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T04:01:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.245600", + "Timestamp": "2024-05-16T04:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224000", + "Timestamp": "2024-05-16T04:01:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.454500", + "Timestamp": "2024-05-16T04:01:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.449500", + "Timestamp": "2024-05-16T04:01:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.324500", + "Timestamp": "2024-05-16T04:01:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.927300", + "Timestamp": "2024-05-16T04:01:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073400", + "Timestamp": "2024-05-16T04:01:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069700", + "Timestamp": "2024-05-16T04:01:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013400", + "Timestamp": "2024-05-16T04:01:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.977200", + "Timestamp": "2024-05-16T04:01:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.174200", + "Timestamp": "2024-05-16T04:01:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.144200", + "Timestamp": "2024-05-16T04:01:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.044200", + "Timestamp": "2024-05-16T04:01:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.957700", + "Timestamp": "2024-05-16T04:01:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.952700", + "Timestamp": "2024-05-16T04:01:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.827700", + "Timestamp": "2024-05-16T04:01:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.893800", + "Timestamp": "2024-05-16T04:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.208100", + "Timestamp": "2024-05-16T04:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209400", + "Timestamp": "2024-05-16T04:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.191800", + "Timestamp": "2024-05-16T04:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.188100", + "Timestamp": "2024-05-16T04:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131800", + "Timestamp": "2024-05-16T04:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.590100", + "Timestamp": "2024-05-16T04:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.585100", + "Timestamp": "2024-05-16T04:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.460100", + "Timestamp": "2024-05-16T04:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.492000", + "Timestamp": "2024-05-16T04:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130300", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070300", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.637200", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.632200", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.507200", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150000", + "Timestamp": "2024-05-16T04:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146300", + "Timestamp": "2024-05-16T04:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090000", + "Timestamp": "2024-05-16T04:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.380800", + "Timestamp": "2024-05-16T04:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.375800", + "Timestamp": "2024-05-16T04:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.250800", + "Timestamp": "2024-05-16T04:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.638600", + "Timestamp": "2024-05-16T04:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.633600", + "Timestamp": "2024-05-16T04:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.508600", + "Timestamp": "2024-05-16T04:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.805500", + "Timestamp": "2024-05-16T04:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.800500", + "Timestamp": "2024-05-16T04:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.675500", + "Timestamp": "2024-05-16T04:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.379900", + "Timestamp": "2024-05-16T04:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.374900", + "Timestamp": "2024-05-16T04:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.249900", + "Timestamp": "2024-05-16T04:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220400", + "Timestamp": "2024-05-16T04:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.001500", + "Timestamp": "2024-05-16T04:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.996500", + "Timestamp": "2024-05-16T04:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.871500", + "Timestamp": "2024-05-16T04:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.809600", + "Timestamp": "2024-05-16T04:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.804600", + "Timestamp": "2024-05-16T04:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.679600", + "Timestamp": "2024-05-16T04:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142600", + "Timestamp": "2024-05-16T04:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138900", + "Timestamp": "2024-05-16T04:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082600", + "Timestamp": "2024-05-16T04:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118400", + "Timestamp": "2024-05-16T04:01:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.249800", + "Timestamp": "2024-05-16T04:01:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.244800", + "Timestamp": "2024-05-16T04:01:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.119800", + "Timestamp": "2024-05-16T04:01:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068400", + "Timestamp": "2024-05-16T04:01:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039400", + "Timestamp": "2024-05-16T04:01:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008400", + "Timestamp": "2024-05-16T04:01:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.859600", + "Timestamp": "2024-05-16T04:01:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.854600", + "Timestamp": "2024-05-16T04:01:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.729600", + "Timestamp": "2024-05-16T04:01:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.549500", + "Timestamp": "2024-05-16T04:01:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.519500", + "Timestamp": "2024-05-16T04:01:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.419500", + "Timestamp": "2024-05-16T04:01:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.587100", + "Timestamp": "2024-05-16T04:01:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.582100", + "Timestamp": "2024-05-16T04:01:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.457100", + "Timestamp": "2024-05-16T04:01:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.730200", + "Timestamp": "2024-05-16T04:01:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.725200", + "Timestamp": "2024-05-16T04:01:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.600200", + "Timestamp": "2024-05-16T04:01:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T04:01:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T04:01:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042900", + "Timestamp": "2024-05-16T04:01:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.283800", + "Timestamp": "2024-05-16T04:01:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.253800", + "Timestamp": "2024-05-16T04:01:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.153800", + "Timestamp": "2024-05-16T04:01:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105500", + "Timestamp": "2024-05-16T04:01:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145500", + "Timestamp": "2024-05-16T04:01:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045500", + "Timestamp": "2024-05-16T04:01:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.026900", + "Timestamp": "2024-05-16T03:47:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.803400", + "Timestamp": "2024-05-16T03:47:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.078200", + "Timestamp": "2024-05-16T03:47:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.488800", + "Timestamp": "2024-05-16T03:47:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.918000", + "Timestamp": "2024-05-16T03:47:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.913000", + "Timestamp": "2024-05-16T03:47:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.788000", + "Timestamp": "2024-05-16T03:47:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.282000", + "Timestamp": "2024-05-16T03:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.054600", + "Timestamp": "2024-05-16T03:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.049600", + "Timestamp": "2024-05-16T03:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.924600", + "Timestamp": "2024-05-16T03:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.657400", + "Timestamp": "2024-05-16T03:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.671200", + "Timestamp": "2024-05-16T03:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.411400", + "Timestamp": "2024-05-16T03:47:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.406400", + "Timestamp": "2024-05-16T03:47:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.281400", + "Timestamp": "2024-05-16T03:47:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.464600", + "Timestamp": "2024-05-16T03:47:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.684200", + "Timestamp": "2024-05-16T03:47:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270400", + "Timestamp": "2024-05-16T03:47:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265400", + "Timestamp": "2024-05-16T03:47:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140400", + "Timestamp": "2024-05-16T03:47:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.916000", + "Timestamp": "2024-05-16T03:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.943700", + "Timestamp": "2024-05-16T03:46:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.838000", + "Timestamp": "2024-05-16T03:46:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111900", + "Timestamp": "2024-05-16T03:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.285000", + "Timestamp": "2024-05-16T03:46:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.928600", + "Timestamp": "2024-05-16T03:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.465500", + "Timestamp": "2024-05-16T03:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.916900", + "Timestamp": "2024-05-16T03:46:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.396700", + "Timestamp": "2024-05-16T03:46:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.998500", + "Timestamp": "2024-05-16T03:46:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.876000", + "Timestamp": "2024-05-16T03:46:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.978700", + "Timestamp": "2024-05-16T03:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T03:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-16T03:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031800", + "Timestamp": "2024-05-16T03:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079500", + "Timestamp": "2024-05-16T03:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075800", + "Timestamp": "2024-05-16T03:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019500", + "Timestamp": "2024-05-16T03:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "a1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085600", + "Timestamp": "2024-05-16T03:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "a1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.081900", + "Timestamp": "2024-05-16T03:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "a1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025600", + "Timestamp": "2024-05-16T03:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.230200", + "Timestamp": "2024-05-16T03:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.337700", + "Timestamp": "2024-05-16T03:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.332700", + "Timestamp": "2024-05-16T03:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.207700", + "Timestamp": "2024-05-16T03:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.258400", + "Timestamp": "2024-05-16T03:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.253400", + "Timestamp": "2024-05-16T03:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128400", + "Timestamp": "2024-05-16T03:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.441300", + "Timestamp": "2024-05-16T03:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.436300", + "Timestamp": "2024-05-16T03:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.311300", + "Timestamp": "2024-05-16T03:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.645800", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.640800", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.515800", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218900", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.756000", + "Timestamp": "2024-05-16T03:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.751000", + "Timestamp": "2024-05-16T03:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.626000", + "Timestamp": "2024-05-16T03:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.624500", + "Timestamp": "2024-05-16T03:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.619500", + "Timestamp": "2024-05-16T03:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.494500", + "Timestamp": "2024-05-16T03:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T03:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-16T03:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056600", + "Timestamp": "2024-05-16T03:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.776800", + "Timestamp": "2024-05-16T03:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.771800", + "Timestamp": "2024-05-16T03:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.646800", + "Timestamp": "2024-05-16T03:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116100", + "Timestamp": "2024-05-16T03:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-16T03:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056100", + "Timestamp": "2024-05-16T03:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.578000", + "Timestamp": "2024-05-16T03:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.548000", + "Timestamp": "2024-05-16T03:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.448000", + "Timestamp": "2024-05-16T03:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T03:46:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T03:46:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042900", + "Timestamp": "2024-05-16T03:46:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.440900", + "Timestamp": "2024-05-16T03:46:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.435900", + "Timestamp": "2024-05-16T03:46:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.310900", + "Timestamp": "2024-05-16T03:46:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.930800", + "Timestamp": "2024-05-16T03:46:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.070600", + "Timestamp": "2024-05-16T03:46:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.065600", + "Timestamp": "2024-05-16T03:46:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.940600", + "Timestamp": "2024-05-16T03:46:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102000", + "Timestamp": "2024-05-16T03:32:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072000", + "Timestamp": "2024-05-16T03:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043000", + "Timestamp": "2024-05-16T03:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012000", + "Timestamp": "2024-05-16T03:32:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.091000", + "Timestamp": "2024-05-16T03:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.382500", + "Timestamp": "2024-05-16T03:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.377500", + "Timestamp": "2024-05-16T03:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.252500", + "Timestamp": "2024-05-16T03:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216300", + "Timestamp": "2024-05-16T03:32:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.960400", + "Timestamp": "2024-05-16T03:32:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.930400", + "Timestamp": "2024-05-16T03:32:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.830400", + "Timestamp": "2024-05-16T03:32:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.509900", + "Timestamp": "2024-05-16T03:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.553200", + "Timestamp": "2024-05-16T03:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074000", + "Timestamp": "2024-05-16T03:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070300", + "Timestamp": "2024-05-16T03:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014000", + "Timestamp": "2024-05-16T03:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.424900", + "Timestamp": "2024-05-16T03:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.419900", + "Timestamp": "2024-05-16T03:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.294900", + "Timestamp": "2024-05-16T03:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.464000", + "Timestamp": "2024-05-16T03:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.459000", + "Timestamp": "2024-05-16T03:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.334000", + "Timestamp": "2024-05-16T03:32:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.323500", + "Timestamp": "2024-05-16T03:32:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.318500", + "Timestamp": "2024-05-16T03:32:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.193500", + "Timestamp": "2024-05-16T03:32:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.867000", + "Timestamp": "2024-05-16T03:32:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.581500", + "Timestamp": "2024-05-16T03:32:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.576500", + "Timestamp": "2024-05-16T03:32:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.451500", + "Timestamp": "2024-05-16T03:32:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.654600", + "Timestamp": "2024-05-16T03:32:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.840900", + "Timestamp": "2024-05-16T03:32:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.755500", + "Timestamp": "2024-05-16T03:32:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.750500", + "Timestamp": "2024-05-16T03:32:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.625500", + "Timestamp": "2024-05-16T03:32:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113600", + "Timestamp": "2024-05-16T03:32:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.299200", + "Timestamp": "2024-05-16T03:32:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.215200", + "Timestamp": "2024-05-16T03:31:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "a1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.210200", + "Timestamp": "2024-05-16T03:31:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085200", + "Timestamp": "2024-05-16T03:31:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306500", + "Timestamp": "2024-05-16T03:31:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301500", + "Timestamp": "2024-05-16T03:31:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176500", + "Timestamp": "2024-05-16T03:31:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.565000", + "Timestamp": "2024-05-16T03:31:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.129800", + "Timestamp": "2024-05-16T03:31:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.124800", + "Timestamp": "2024-05-16T03:31:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.999800", + "Timestamp": "2024-05-16T03:31:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.934400", + "Timestamp": "2024-05-16T03:31:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.929400", + "Timestamp": "2024-05-16T03:31:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.804400", + "Timestamp": "2024-05-16T03:31:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.241200", + "Timestamp": "2024-05-16T03:31:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.134700", + "Timestamp": "2024-05-16T03:31:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.822300", + "Timestamp": "2024-05-16T03:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.080800", + "Timestamp": "2024-05-16T03:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.050800", + "Timestamp": "2024-05-16T03:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.950800", + "Timestamp": "2024-05-16T03:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151600", + "Timestamp": "2024-05-16T03:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.191600", + "Timestamp": "2024-05-16T03:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091600", + "Timestamp": "2024-05-16T03:31:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.808800", + "Timestamp": "2024-05-16T03:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.803800", + "Timestamp": "2024-05-16T03:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.678800", + "Timestamp": "2024-05-16T03:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.810700", + "Timestamp": "2024-05-16T03:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.805700", + "Timestamp": "2024-05-16T03:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.680700", + "Timestamp": "2024-05-16T03:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.325100", + "Timestamp": "2024-05-16T03:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.295100", + "Timestamp": "2024-05-16T03:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195100", + "Timestamp": "2024-05-16T03:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.367100", + "Timestamp": "2024-05-16T03:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T03:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099800", + "Timestamp": "2024-05-16T03:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043500", + "Timestamp": "2024-05-16T03:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.612600", + "Timestamp": "2024-05-16T03:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080300", + "Timestamp": "2024-05-16T03:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076600", + "Timestamp": "2024-05-16T03:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020300", + "Timestamp": "2024-05-16T03:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.915200", + "Timestamp": "2024-05-16T03:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.910200", + "Timestamp": "2024-05-16T03:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.785200", + "Timestamp": "2024-05-16T03:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118300", + "Timestamp": "2024-05-16T03:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T03:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058300", + "Timestamp": "2024-05-16T03:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.210900", + "Timestamp": "2024-05-16T03:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301400", + "Timestamp": "2024-05-16T03:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.297400", + "Timestamp": "2024-05-16T03:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.241400", + "Timestamp": "2024-05-16T03:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133600", + "Timestamp": "2024-05-16T03:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129900", + "Timestamp": "2024-05-16T03:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073600", + "Timestamp": "2024-05-16T03:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.816400", + "Timestamp": "2024-05-16T03:31:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.234900", + "Timestamp": "2024-05-16T03:31:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.231900", + "Timestamp": "2024-05-16T03:31:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.174900", + "Timestamp": "2024-05-16T03:31:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218900", + "Timestamp": "2024-05-16T03:17:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T03:17:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.904400", + "Timestamp": "2024-05-16T03:17:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.194800", + "Timestamp": "2024-05-16T03:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.191100", + "Timestamp": "2024-05-16T03:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134800", + "Timestamp": "2024-05-16T03:17:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.680300", + "Timestamp": "2024-05-16T03:17:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.650300", + "Timestamp": "2024-05-16T03:17:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.550300", + "Timestamp": "2024-05-16T03:17:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T03:16:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.186100", + "Timestamp": "2024-05-16T03:16:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226100", + "Timestamp": "2024-05-16T03:16:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437600", + "Timestamp": "2024-05-16T03:16:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324000", + "Timestamp": "2024-05-16T03:16:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319000", + "Timestamp": "2024-05-16T03:16:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194000", + "Timestamp": "2024-05-16T03:16:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.609000", + "Timestamp": "2024-05-16T03:16:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.567100", + "Timestamp": "2024-05-16T03:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.562100", + "Timestamp": "2024-05-16T03:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.437100", + "Timestamp": "2024-05-16T03:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.176100", + "Timestamp": "2024-05-16T03:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.171100", + "Timestamp": "2024-05-16T03:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.046100", + "Timestamp": "2024-05-16T03:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.203500", + "Timestamp": "2024-05-16T03:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.198500", + "Timestamp": "2024-05-16T03:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.073500", + "Timestamp": "2024-05-16T03:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103900", + "Timestamp": "2024-05-16T03:16:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211500", + "Timestamp": "2024-05-16T03:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128900", + "Timestamp": "2024-05-16T03:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125200", + "Timestamp": "2024-05-16T03:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068900", + "Timestamp": "2024-05-16T03:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441700", + "Timestamp": "2024-05-16T03:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.664300", + "Timestamp": "2024-05-16T03:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.659300", + "Timestamp": "2024-05-16T03:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.534300", + "Timestamp": "2024-05-16T03:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.076400", + "Timestamp": "2024-05-16T03:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081500", + "Timestamp": "2024-05-16T03:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077800", + "Timestamp": "2024-05-16T03:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021500", + "Timestamp": "2024-05-16T03:16:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223900", + "Timestamp": "2024-05-16T03:16:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124800", + "Timestamp": "2024-05-16T03:16:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121100", + "Timestamp": "2024-05-16T03:16:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064800", + "Timestamp": "2024-05-16T03:16:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.346600", + "Timestamp": "2024-05-16T03:16:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.316600", + "Timestamp": "2024-05-16T03:16:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.216600", + "Timestamp": "2024-05-16T03:16:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.803100", + "Timestamp": "2024-05-16T03:16:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T03:16:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.868800", + "Timestamp": "2024-05-16T03:03:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.695200", + "Timestamp": "2024-05-16T03:02:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.508700", + "Timestamp": "2024-05-16T03:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.388100", + "Timestamp": "2024-05-16T03:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.383100", + "Timestamp": "2024-05-16T03:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.258100", + "Timestamp": "2024-05-16T03:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.498700", + "Timestamp": "2024-05-16T03:02:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.493700", + "Timestamp": "2024-05-16T03:02:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.368700", + "Timestamp": "2024-05-16T03:02:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.922800", + "Timestamp": "2024-05-16T03:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.634000", + "Timestamp": "2024-05-16T03:02:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.293500", + "Timestamp": "2024-05-16T03:02:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.291000", + "Timestamp": "2024-05-16T03:02:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.331000", + "Timestamp": "2024-05-16T03:02:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.231000", + "Timestamp": "2024-05-16T03:02:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.360000", + "Timestamp": "2024-05-16T03:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.851900", + "Timestamp": "2024-05-16T03:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.771500", + "Timestamp": "2024-05-16T03:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.765000", + "Timestamp": "2024-05-16T03:02:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.450200", + "Timestamp": "2024-05-16T03:02:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.300200", + "Timestamp": "2024-05-16T03:01:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270200", + "Timestamp": "2024-05-16T03:01:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170200", + "Timestamp": "2024-05-16T03:01:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.898900", + "Timestamp": "2024-05-16T03:01:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.321200", + "Timestamp": "2024-05-16T03:01:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.316200", + "Timestamp": "2024-05-16T03:01:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.191200", + "Timestamp": "2024-05-16T03:01:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.120900", + "Timestamp": "2024-05-16T03:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.115900", + "Timestamp": "2024-05-16T03:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.990900", + "Timestamp": "2024-05-16T03:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.024900", + "Timestamp": "2024-05-16T03:01:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.737400", + "Timestamp": "2024-05-16T03:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T03:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101300", + "Timestamp": "2024-05-16T03:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045000", + "Timestamp": "2024-05-16T03:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102300", + "Timestamp": "2024-05-16T03:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098300", + "Timestamp": "2024-05-16T03:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042300", + "Timestamp": "2024-05-16T03:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.317300", + "Timestamp": "2024-05-16T03:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.312300", + "Timestamp": "2024-05-16T03:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.187300", + "Timestamp": "2024-05-16T03:01:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.073300", + "Timestamp": "2024-05-16T03:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116300", + "Timestamp": "2024-05-16T03:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112300", + "Timestamp": "2024-05-16T03:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056300", + "Timestamp": "2024-05-16T03:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.034100", + "Timestamp": "2024-05-16T03:01:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.029100", + "Timestamp": "2024-05-16T03:01:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.904100", + "Timestamp": "2024-05-16T03:01:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.378800", + "Timestamp": "2024-05-16T03:01:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.373800", + "Timestamp": "2024-05-16T03:01:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.248800", + "Timestamp": "2024-05-16T03:01:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.254800", + "Timestamp": "2024-05-16T03:01:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.249800", + "Timestamp": "2024-05-16T03:01:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124800", + "Timestamp": "2024-05-16T03:01:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.601400", + "Timestamp": "2024-05-16T02:57:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.250000", + "Timestamp": "2024-05-16T02:47:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.408800", + "Timestamp": "2024-05-16T02:47:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.592400", + "Timestamp": "2024-05-16T02:47:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.197500", + "Timestamp": "2024-05-16T02:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193800", + "Timestamp": "2024-05-16T02:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137500", + "Timestamp": "2024-05-16T02:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.880200", + "Timestamp": "2024-05-16T02:47:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.779500", + "Timestamp": "2024-05-16T02:47:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.774500", + "Timestamp": "2024-05-16T02:47:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.649500", + "Timestamp": "2024-05-16T02:47:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.493400", + "Timestamp": "2024-05-16T02:47:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.232700", + "Timestamp": "2024-05-16T02:47:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.436700", + "Timestamp": "2024-05-16T02:47:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.431700", + "Timestamp": "2024-05-16T02:47:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.306700", + "Timestamp": "2024-05-16T02:47:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112500", + "Timestamp": "2024-05-16T02:47:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108800", + "Timestamp": "2024-05-16T02:47:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052500", + "Timestamp": "2024-05-16T02:47:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.379700", + "Timestamp": "2024-05-16T02:47:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.587300", + "Timestamp": "2024-05-16T02:47:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.638500", + "Timestamp": "2024-05-16T02:46:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.633500", + "Timestamp": "2024-05-16T02:46:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.508500", + "Timestamp": "2024-05-16T02:46:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.410000", + "Timestamp": "2024-05-16T02:46:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.830100", + "Timestamp": "2024-05-16T02:46:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224200", + "Timestamp": "2024-05-16T02:46:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.450400", + "Timestamp": "2024-05-16T02:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.312700", + "Timestamp": "2024-05-16T02:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.282700", + "Timestamp": "2024-05-16T02:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.182700", + "Timestamp": "2024-05-16T02:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208300", + "Timestamp": "2024-05-16T02:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431000", + "Timestamp": "2024-05-16T02:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106000", + "Timestamp": "2024-05-16T02:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102300", + "Timestamp": "2024-05-16T02:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046000", + "Timestamp": "2024-05-16T02:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.823600", + "Timestamp": "2024-05-16T02:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.818600", + "Timestamp": "2024-05-16T02:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.693600", + "Timestamp": "2024-05-16T02:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.668700", + "Timestamp": "2024-05-16T02:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.663700", + "Timestamp": "2024-05-16T02:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.538700", + "Timestamp": "2024-05-16T02:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.054100", + "Timestamp": "2024-05-16T02:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.049100", + "Timestamp": "2024-05-16T02:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.924100", + "Timestamp": "2024-05-16T02:32:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.861100", + "Timestamp": "2024-05-16T02:32:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.612400", + "Timestamp": "2024-05-16T02:32:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.249700", + "Timestamp": "2024-05-16T02:32:09.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.749000", + "Timestamp": "2024-05-16T02:31:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.744000", + "Timestamp": "2024-05-16T02:31:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.619000", + "Timestamp": "2024-05-16T02:31:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.519900", + "Timestamp": "2024-05-16T02:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.001000", + "Timestamp": "2024-05-16T02:31:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.049200", + "Timestamp": "2024-05-16T02:31:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.734700", + "Timestamp": "2024-05-16T02:31:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.303500", + "Timestamp": "2024-05-16T02:31:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209100", + "Timestamp": "2024-05-16T02:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.147000", + "Timestamp": "2024-05-16T02:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123900", + "Timestamp": "2024-05-16T02:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120200", + "Timestamp": "2024-05-16T02:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063900", + "Timestamp": "2024-05-16T02:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143900", + "Timestamp": "2024-05-16T02:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140200", + "Timestamp": "2024-05-16T02:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083900", + "Timestamp": "2024-05-16T02:31:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.236000", + "Timestamp": "2024-05-16T02:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.441100", + "Timestamp": "2024-05-16T02:31:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105300", + "Timestamp": "2024-05-16T02:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T02:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.330800", + "Timestamp": "2024-05-16T02:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.325800", + "Timestamp": "2024-05-16T02:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.200800", + "Timestamp": "2024-05-16T02:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.743600", + "Timestamp": "2024-05-16T02:31:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.738600", + "Timestamp": "2024-05-16T02:31:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.613600", + "Timestamp": "2024-05-16T02:31:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141000", + "Timestamp": "2024-05-16T02:31:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137000", + "Timestamp": "2024-05-16T02:31:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081000", + "Timestamp": "2024-05-16T02:31:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220800", + "Timestamp": "2024-05-16T02:31:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.296300", + "Timestamp": "2024-05-16T02:31:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.291300", + "Timestamp": "2024-05-16T02:31:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.166300", + "Timestamp": "2024-05-16T02:31:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120700", + "Timestamp": "2024-05-16T02:17:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116700", + "Timestamp": "2024-05-16T02:17:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060700", + "Timestamp": "2024-05-16T02:17:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.370700", + "Timestamp": "2024-05-16T02:17:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.365700", + "Timestamp": "2024-05-16T02:17:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.240700", + "Timestamp": "2024-05-16T02:17:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.259100", + "Timestamp": "2024-05-16T02:17:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.255400", + "Timestamp": "2024-05-16T02:17:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199100", + "Timestamp": "2024-05-16T02:17:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-16T02:17:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.078600", + "Timestamp": "2024-05-16T02:16:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.446800", + "Timestamp": "2024-05-16T02:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154600", + "Timestamp": "2024-05-16T02:16:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150900", + "Timestamp": "2024-05-16T02:16:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094600", + "Timestamp": "2024-05-16T02:16:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "2.790300", + "Timestamp": "2024-05-16T02:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.203900", + "Timestamp": "2024-05-16T02:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.199900", + "Timestamp": "2024-05-16T02:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143900", + "Timestamp": "2024-05-16T02:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121500", + "Timestamp": "2024-05-16T02:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117800", + "Timestamp": "2024-05-16T02:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061500", + "Timestamp": "2024-05-16T02:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.154700", + "Timestamp": "2024-05-16T02:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.149700", + "Timestamp": "2024-05-16T02:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.024700", + "Timestamp": "2024-05-16T02:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114100", + "Timestamp": "2024-05-16T02:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-16T02:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054100", + "Timestamp": "2024-05-16T02:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117400", + "Timestamp": "2024-05-16T02:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113400", + "Timestamp": "2024-05-16T02:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057400", + "Timestamp": "2024-05-16T02:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.292500", + "Timestamp": "2024-05-16T02:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.287500", + "Timestamp": "2024-05-16T02:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162500", + "Timestamp": "2024-05-16T02:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117300", + "Timestamp": "2024-05-16T02:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113600", + "Timestamp": "2024-05-16T02:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057300", + "Timestamp": "2024-05-16T02:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.916200", + "Timestamp": "2024-05-16T02:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.911200", + "Timestamp": "2024-05-16T02:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.786200", + "Timestamp": "2024-05-16T02:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.764300", + "Timestamp": "2024-05-16T02:16:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T02:02:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7iz.large", + "ProductDescription": "Windows", + "SpotPrice": "0.123300", + "Timestamp": "2024-05-16T02:02:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.030800", + "Timestamp": "2024-05-16T02:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.025800", + "Timestamp": "2024-05-16T02:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.900800", + "Timestamp": "2024-05-16T02:02:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.768800", + "Timestamp": "2024-05-16T02:02:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.606600", + "Timestamp": "2024-05-16T02:02:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.601600", + "Timestamp": "2024-05-16T02:02:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.476600", + "Timestamp": "2024-05-16T02:02:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.011400", + "Timestamp": "2024-05-16T02:01:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.255900", + "Timestamp": "2024-05-16T02:01:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.929700", + "Timestamp": "2024-05-16T02:01:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214400", + "Timestamp": "2024-05-16T02:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431500", + "Timestamp": "2024-05-16T02:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080400", + "Timestamp": "2024-05-16T02:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076700", + "Timestamp": "2024-05-16T02:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020400", + "Timestamp": "2024-05-16T02:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.191800", + "Timestamp": "2024-05-16T01:52:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.187800", + "Timestamp": "2024-05-16T01:52:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131800", + "Timestamp": "2024-05-16T01:52:12.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105500", + "Timestamp": "2024-05-16T01:47:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.179500", + "Timestamp": "2024-05-16T01:47:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.433300", + "Timestamp": "2024-05-16T01:47:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144400", + "Timestamp": "2024-05-16T01:47:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140700", + "Timestamp": "2024-05-16T01:47:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084400", + "Timestamp": "2024-05-16T01:47:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219000", + "Timestamp": "2024-05-16T01:46:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161600", + "Timestamp": "2024-05-16T01:46:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157900", + "Timestamp": "2024-05-16T01:46:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101600", + "Timestamp": "2024-05-16T01:46:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.421500", + "Timestamp": "2024-05-16T01:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.839300", + "Timestamp": "2024-05-16T01:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T01:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099300", + "Timestamp": "2024-05-16T01:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043300", + "Timestamp": "2024-05-16T01:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083000", + "Timestamp": "2024-05-16T01:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079300", + "Timestamp": "2024-05-16T01:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023000", + "Timestamp": "2024-05-16T01:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218400", + "Timestamp": "2024-05-16T01:46:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.006100", + "Timestamp": "2024-05-16T01:34:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226800", + "Timestamp": "2024-05-16T01:32:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.876500", + "Timestamp": "2024-05-16T01:32:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.383900", + "Timestamp": "2024-05-16T01:32:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.038500", + "Timestamp": "2024-05-16T01:31:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131700", + "Timestamp": "2024-05-16T01:31:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127700", + "Timestamp": "2024-05-16T01:31:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071700", + "Timestamp": "2024-05-16T01:31:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119100", + "Timestamp": "2024-05-16T01:31:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-16T01:31:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138100", + "Timestamp": "2024-05-16T01:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134400", + "Timestamp": "2024-05-16T01:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078100", + "Timestamp": "2024-05-16T01:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.454400", + "Timestamp": "2024-05-16T01:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224800", + "Timestamp": "2024-05-16T01:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.347000", + "Timestamp": "2024-05-16T01:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.342000", + "Timestamp": "2024-05-16T01:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.217000", + "Timestamp": "2024-05-16T01:31:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215500", + "Timestamp": "2024-05-16T01:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T01:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112300", + "Timestamp": "2024-05-16T01:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-16T01:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052300", + "Timestamp": "2024-05-16T01:31:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.229900", + "Timestamp": "2024-05-16T01:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.225900", + "Timestamp": "2024-05-16T01:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169900", + "Timestamp": "2024-05-16T01:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158700", + "Timestamp": "2024-05-16T01:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154700", + "Timestamp": "2024-05-16T01:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098700", + "Timestamp": "2024-05-16T01:31:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074000", + "Timestamp": "2024-05-16T01:17:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070300", + "Timestamp": "2024-05-16T01:17:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014000", + "Timestamp": "2024-05-16T01:17:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133800", + "Timestamp": "2024-05-16T01:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129800", + "Timestamp": "2024-05-16T01:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073800", + "Timestamp": "2024-05-16T01:17:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091200", + "Timestamp": "2024-05-16T01:17:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131200", + "Timestamp": "2024-05-16T01:17:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031200", + "Timestamp": "2024-05-16T01:17:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.463300", + "Timestamp": "2024-05-16T01:16:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.864400", + "Timestamp": "2024-05-16T01:16:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123300", + "Timestamp": "2024-05-16T01:16:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163300", + "Timestamp": "2024-05-16T01:16:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063300", + "Timestamp": "2024-05-16T01:16:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209300", + "Timestamp": "2024-05-16T01:16:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.343400", + "Timestamp": "2024-05-16T01:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.338400", + "Timestamp": "2024-05-16T01:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.213400", + "Timestamp": "2024-05-16T01:16:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.576400", + "Timestamp": "2024-05-16T01:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.571400", + "Timestamp": "2024-05-16T01:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.446400", + "Timestamp": "2024-05-16T01:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-16T01:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093800", + "Timestamp": "2024-05-16T01:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037500", + "Timestamp": "2024-05-16T01:16:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156100", + "Timestamp": "2024-05-16T01:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152100", + "Timestamp": "2024-05-16T01:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096100", + "Timestamp": "2024-05-16T01:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-16T01:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103200", + "Timestamp": "2024-05-16T01:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104300", + "Timestamp": "2024-05-16T01:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099500", + "Timestamp": "2024-05-16T01:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048000", + "Timestamp": "2024-05-16T01:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043200", + "Timestamp": "2024-05-16T01:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115300", + "Timestamp": "2024-05-16T01:16:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.096200", + "Timestamp": "2024-05-16T01:16:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.117600", + "Timestamp": "2024-05-16T01:16:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.283700", + "Timestamp": "2024-05-16T01:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.278700", + "Timestamp": "2024-05-16T01:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.153700", + "Timestamp": "2024-05-16T01:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095200", + "Timestamp": "2024-05-16T01:16:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091500", + "Timestamp": "2024-05-16T01:16:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035200", + "Timestamp": "2024-05-16T01:16:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.505400", + "Timestamp": "2024-05-16T01:16:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.500400", + "Timestamp": "2024-05-16T01:16:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.375400", + "Timestamp": "2024-05-16T01:16:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.020900", + "Timestamp": "2024-05-16T01:07:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021100", + "Timestamp": "2024-05-16T01:07:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.424600", + "Timestamp": "2024-05-16T01:02:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164200", + "Timestamp": "2024-05-16T01:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160200", + "Timestamp": "2024-05-16T01:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T01:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.498700", + "Timestamp": "2024-05-16T01:01:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.468700", + "Timestamp": "2024-05-16T01:01:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.368700", + "Timestamp": "2024-05-16T01:01:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119900", + "Timestamp": "2024-05-16T01:01:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115900", + "Timestamp": "2024-05-16T01:01:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059900", + "Timestamp": "2024-05-16T01:01:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068300", + "Timestamp": "2024-05-16T00:47:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039300", + "Timestamp": "2024-05-16T00:47:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008300", + "Timestamp": "2024-05-16T00:47:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.408200", + "Timestamp": "2024-05-16T00:47:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T00:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-16T00:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042500", + "Timestamp": "2024-05-16T00:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.097700", + "Timestamp": "2024-05-16T00:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.409400", + "Timestamp": "2024-05-16T00:47:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173700", + "Timestamp": "2024-05-16T00:47:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170700", + "Timestamp": "2024-05-16T00:47:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113700", + "Timestamp": "2024-05-16T00:47:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.424600", + "Timestamp": "2024-05-16T00:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216300", + "Timestamp": "2024-05-16T00:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.017000", + "Timestamp": "2024-05-16T00:46:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.732100", + "Timestamp": "2024-05-16T00:46:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.727100", + "Timestamp": "2024-05-16T00:46:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.602100", + "Timestamp": "2024-05-16T00:46:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.240200", + "Timestamp": "2024-05-16T00:46:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.236500", + "Timestamp": "2024-05-16T00:46:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180200", + "Timestamp": "2024-05-16T00:46:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133800", + "Timestamp": "2024-05-16T00:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173800", + "Timestamp": "2024-05-16T00:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073800", + "Timestamp": "2024-05-16T00:46:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T00:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T00:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046600", + "Timestamp": "2024-05-16T00:46:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117300", + "Timestamp": "2024-05-16T00:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113600", + "Timestamp": "2024-05-16T00:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057300", + "Timestamp": "2024-05-16T00:46:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T00:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120300", + "Timestamp": "2024-05-16T00:46:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T00:46:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060300", + "Timestamp": "2024-05-16T00:46:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146800", + "Timestamp": "2024-05-16T00:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142800", + "Timestamp": "2024-05-16T00:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086800", + "Timestamp": "2024-05-16T00:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.923700", + "Timestamp": "2024-05-16T00:46:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.918700", + "Timestamp": "2024-05-16T00:46:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.793700", + "Timestamp": "2024-05-16T00:46:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.519800", + "Timestamp": "2024-05-16T00:32:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.514800", + "Timestamp": "2024-05-16T00:32:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.389800", + "Timestamp": "2024-05-16T00:32:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112300", + "Timestamp": "2024-05-16T00:32:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121200", + "Timestamp": "2024-05-16T00:31:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T00:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T00:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050800", + "Timestamp": "2024-05-16T00:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159600", + "Timestamp": "2024-05-16T00:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155900", + "Timestamp": "2024-05-16T00:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099600", + "Timestamp": "2024-05-16T00:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T00:31:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T00:31:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050800", + "Timestamp": "2024-05-16T00:31:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098900", + "Timestamp": "2024-05-16T00:17:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095200", + "Timestamp": "2024-05-16T00:17:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038900", + "Timestamp": "2024-05-16T00:17:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.769000", + "Timestamp": "2024-05-16T00:17:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.764000", + "Timestamp": "2024-05-16T00:17:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.639000", + "Timestamp": "2024-05-16T00:17:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111100", + "Timestamp": "2024-05-16T00:17:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229100", + "Timestamp": "2024-05-16T00:17:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.228700", + "Timestamp": "2024-05-16T00:17:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-16T00:17:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.744000", + "Timestamp": "2024-05-16T00:16:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.744000", + "Timestamp": "2024-05-16T00:16:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210400", + "Timestamp": "2024-05-16T00:16:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221700", + "Timestamp": "2024-05-16T00:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073400", + "Timestamp": "2024-05-16T00:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069700", + "Timestamp": "2024-05-16T00:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013400", + "Timestamp": "2024-05-16T00:16:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.834000", + "Timestamp": "2024-05-16T00:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068000", + "Timestamp": "2024-05-16T00:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039000", + "Timestamp": "2024-05-16T00:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008000", + "Timestamp": "2024-05-16T00:16:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T00:02:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216500", + "Timestamp": "2024-05-16T00:02:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.448100", + "Timestamp": "2024-05-16T00:01:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141700", + "Timestamp": "2024-05-16T00:01:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137700", + "Timestamp": "2024-05-16T00:01:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081700", + "Timestamp": "2024-05-16T00:01:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220400", + "Timestamp": "2024-05-16T00:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.689100", + "Timestamp": "2024-05-16T00:01:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.755400", + "Timestamp": "2024-05-16T00:01:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.755400", + "Timestamp": "2024-05-16T00:01:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.755400", + "Timestamp": "2024-05-16T00:01:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104300", + "Timestamp": "2024-05-15T23:47:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.241600", + "Timestamp": "2024-05-15T23:47:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.111300", + "Timestamp": "2024-05-15T23:46:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110400", + "Timestamp": "2024-05-15T23:46:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184800", + "Timestamp": "2024-05-15T23:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181100", + "Timestamp": "2024-05-15T23:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124800", + "Timestamp": "2024-05-15T23:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441000", + "Timestamp": "2024-05-15T23:46:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-15T23:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.558200", + "Timestamp": "2024-05-15T23:46:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083800", + "Timestamp": "2024-05-15T23:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080100", + "Timestamp": "2024-05-15T23:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023800", + "Timestamp": "2024-05-15T23:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417600", + "Timestamp": "2024-05-15T23:46:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075200", + "Timestamp": "2024-05-15T23:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.046200", + "Timestamp": "2024-05-15T23:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015200", + "Timestamp": "2024-05-15T23:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079200", + "Timestamp": "2024-05-15T23:46:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075500", + "Timestamp": "2024-05-15T23:46:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019200", + "Timestamp": "2024-05-15T23:46:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215700", + "Timestamp": "2024-05-15T23:33:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.979600", + "Timestamp": "2024-05-15T23:31:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.974600", + "Timestamp": "2024-05-15T23:31:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.849600", + "Timestamp": "2024-05-15T23:31:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-15T23:31:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206700", + "Timestamp": "2024-05-15T23:31:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.222300", + "Timestamp": "2024-05-15T23:31:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.217300", + "Timestamp": "2024-05-15T23:31:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.092300", + "Timestamp": "2024-05-15T23:31:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125000", + "Timestamp": "2024-05-15T23:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121000", + "Timestamp": "2024-05-15T23:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065000", + "Timestamp": "2024-05-15T23:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150400", + "Timestamp": "2024-05-15T23:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146700", + "Timestamp": "2024-05-15T23:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090400", + "Timestamp": "2024-05-15T23:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063800", + "Timestamp": "2024-05-15T23:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003800", + "Timestamp": "2024-05-15T23:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003800", + "Timestamp": "2024-05-15T23:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-15T23:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005900", + "Timestamp": "2024-05-15T23:18:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.071100", + "Timestamp": "2024-05-15T23:17:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.436200", + "Timestamp": "2024-05-15T23:17:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.098600", + "Timestamp": "2024-05-15T23:16:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.068600", + "Timestamp": "2024-05-15T23:16:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.968600", + "Timestamp": "2024-05-15T23:16:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.501100", + "Timestamp": "2024-05-15T23:16:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.455800", + "Timestamp": "2024-05-15T23:16:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137100", + "Timestamp": "2024-05-15T23:16:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133400", + "Timestamp": "2024-05-15T23:16:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077100", + "Timestamp": "2024-05-15T23:16:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.353300", + "Timestamp": "2024-05-15T23:16:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323300", + "Timestamp": "2024-05-15T23:16:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.223300", + "Timestamp": "2024-05-15T23:16:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437200", + "Timestamp": "2024-05-15T23:16:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100400", + "Timestamp": "2024-05-15T23:16:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096400", + "Timestamp": "2024-05-15T23:16:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040400", + "Timestamp": "2024-05-15T23:16:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103900", + "Timestamp": "2024-05-15T23:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-15T23:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043900", + "Timestamp": "2024-05-15T23:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-15T23:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152800", + "Timestamp": "2024-05-15T23:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052800", + "Timestamp": "2024-05-15T23:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.245300", + "Timestamp": "2024-05-15T23:16:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-15T23:04:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.191900", + "Timestamp": "2024-05-15T23:02:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "a1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070500", + "Timestamp": "2024-05-15T23:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "a1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041500", + "Timestamp": "2024-05-15T23:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "a1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010500", + "Timestamp": "2024-05-15T23:02:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.401500", + "Timestamp": "2024-05-15T23:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.396500", + "Timestamp": "2024-05-15T23:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.271500", + "Timestamp": "2024-05-15T23:02:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.895900", + "Timestamp": "2024-05-15T23:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065600", + "Timestamp": "2024-05-15T23:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.036900", + "Timestamp": "2024-05-15T23:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005600", + "Timestamp": "2024-05-15T23:01:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-15T23:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-15T23:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049400", + "Timestamp": "2024-05-15T23:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154700", + "Timestamp": "2024-05-15T23:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151000", + "Timestamp": "2024-05-15T23:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094700", + "Timestamp": "2024-05-15T23:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.476300", + "Timestamp": "2024-05-15T23:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073600", + "Timestamp": "2024-05-15T23:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044600", + "Timestamp": "2024-05-15T23:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013600", + "Timestamp": "2024-05-15T23:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123600", + "Timestamp": "2024-05-15T23:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119900", + "Timestamp": "2024-05-15T23:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063600", + "Timestamp": "2024-05-15T23:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096400", + "Timestamp": "2024-05-15T23:01:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092700", + "Timestamp": "2024-05-15T23:01:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036400", + "Timestamp": "2024-05-15T23:01:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.868800", + "Timestamp": "2024-05-15T22:57:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-15T22:47:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216500", + "Timestamp": "2024-05-15T22:47:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225000", + "Timestamp": "2024-05-15T22:47:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076600", + "Timestamp": "2024-05-15T22:47:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047600", + "Timestamp": "2024-05-15T22:47:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016600", + "Timestamp": "2024-05-15T22:47:02.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112500", + "Timestamp": "2024-05-15T22:46:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-15T22:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141200", + "Timestamp": "2024-05-15T22:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041200", + "Timestamp": "2024-05-15T22:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-15T22:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101900", + "Timestamp": "2024-05-15T22:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045600", + "Timestamp": "2024-05-15T22:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.006000", + "Timestamp": "2024-05-15T22:41:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.006000", + "Timestamp": "2024-05-15T22:41:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080100", + "Timestamp": "2024-05-15T22:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076400", + "Timestamp": "2024-05-15T22:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020100", + "Timestamp": "2024-05-15T22:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.776900", + "Timestamp": "2024-05-15T22:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.771900", + "Timestamp": "2024-05-15T22:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.646900", + "Timestamp": "2024-05-15T22:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.504800", + "Timestamp": "2024-05-15T22:32:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.133000", + "Timestamp": "2024-05-15T22:31:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-15T22:31:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.039500", + "Timestamp": "2024-05-15T22:30:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.042000", + "Timestamp": "2024-05-15T22:30:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.877700", + "Timestamp": "2024-05-15T22:28:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.877700", + "Timestamp": "2024-05-15T22:28:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.877700", + "Timestamp": "2024-05-15T22:28:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.405700", + "Timestamp": "2024-05-15T22:19:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.411000", + "Timestamp": "2024-05-15T22:17:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.426700", + "Timestamp": "2024-05-15T22:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.826900", + "Timestamp": "2024-05-15T22:08:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.827000", + "Timestamp": "2024-05-15T22:08:03.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.042300", + "Timestamp": "2024-05-15T22:07:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.042100", + "Timestamp": "2024-05-15T22:07:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.394000", + "Timestamp": "2024-05-15T22:07:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.394000", + "Timestamp": "2024-05-15T22:07:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062800", + "Timestamp": "2024-05-15T22:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002800", + "Timestamp": "2024-05-15T22:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002800", + "Timestamp": "2024-05-15T22:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.283800", + "Timestamp": "2024-05-15T22:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073100", + "Timestamp": "2024-05-15T22:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069400", + "Timestamp": "2024-05-15T22:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013100", + "Timestamp": "2024-05-15T22:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125200", + "Timestamp": "2024-05-15T22:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121200", + "Timestamp": "2024-05-15T22:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065200", + "Timestamp": "2024-05-15T22:01:55.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.825600", + "Timestamp": "2024-05-15T22:01:54.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440900", + "Timestamp": "2024-05-15T22:01:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010500", + "Timestamp": "2024-05-15T21:59:27.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.485900", + "Timestamp": "2024-05-15T21:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.480900", + "Timestamp": "2024-05-15T21:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.355900", + "Timestamp": "2024-05-15T21:47:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.479600", + "Timestamp": "2024-05-15T21:47:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.613900", + "Timestamp": "2024-05-15T21:47:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.824900", + "Timestamp": "2024-05-15T21:46:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222200", + "Timestamp": "2024-05-15T21:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.845700", + "Timestamp": "2024-05-15T21:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233600", + "Timestamp": "2024-05-15T21:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114700", + "Timestamp": "2024-05-15T21:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154700", + "Timestamp": "2024-05-15T21:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054700", + "Timestamp": "2024-05-15T21:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.539200", + "Timestamp": "2024-05-15T21:41:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.539200", + "Timestamp": "2024-05-15T21:41:50.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.434400", + "Timestamp": "2024-05-15T21:41:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.434400", + "Timestamp": "2024-05-15T21:41:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106700", + "Timestamp": "2024-05-15T21:40:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-15T21:40:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046700", + "Timestamp": "2024-05-15T21:40:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212900", + "Timestamp": "2024-05-15T21:40:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074200", + "Timestamp": "2024-05-15T21:38:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070500", + "Timestamp": "2024-05-15T21:38:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014200", + "Timestamp": "2024-05-15T21:38:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-15T21:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113200", + "Timestamp": "2024-05-15T21:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056900", + "Timestamp": "2024-05-15T21:32:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.464500", + "Timestamp": "2024-05-15T21:31:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216100", + "Timestamp": "2024-05-15T21:31:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.422900", + "Timestamp": "2024-05-15T21:31:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.238000", + "Timestamp": "2024-05-15T21:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099000", + "Timestamp": "2024-05-15T21:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-15T21:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095300", + "Timestamp": "2024-05-15T21:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092300", + "Timestamp": "2024-05-15T21:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039000", + "Timestamp": "2024-05-15T21:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036000", + "Timestamp": "2024-05-15T21:31:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.811200", + "Timestamp": "2024-05-15T21:27:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.811200", + "Timestamp": "2024-05-15T21:27:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.811200", + "Timestamp": "2024-05-15T21:27:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.058400", + "Timestamp": "2024-05-15T21:18:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-15T21:18:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-15T21:17:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-15T21:17:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-15T21:17:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299500", + "Timestamp": "2024-05-15T21:17:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294500", + "Timestamp": "2024-05-15T21:17:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169500", + "Timestamp": "2024-05-15T21:17:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.494700", + "Timestamp": "2024-05-15T21:16:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-15T21:16:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-15T21:16:49.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.232400", + "Timestamp": "2024-05-15T21:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.997400", + "Timestamp": "2024-05-15T21:15:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.992400", + "Timestamp": "2024-05-15T21:15:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.867400", + "Timestamp": "2024-05-15T21:15:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.755400", + "Timestamp": "2024-05-15T21:14:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.755400", + "Timestamp": "2024-05-15T21:14:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-15T21:14:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-15T21:14:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-15T21:14:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062100", + "Timestamp": "2024-05-15T21:14:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062200", + "Timestamp": "2024-05-15T21:14:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002100", + "Timestamp": "2024-05-15T21:14:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002200", + "Timestamp": "2024-05-15T21:14:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002100", + "Timestamp": "2024-05-15T21:14:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002200", + "Timestamp": "2024-05-15T21:14:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.202900", + "Timestamp": "2024-05-15T21:10:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062300", + "Timestamp": "2024-05-15T21:10:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063300", + "Timestamp": "2024-05-15T21:10:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002300", + "Timestamp": "2024-05-15T21:10:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003300", + "Timestamp": "2024-05-15T21:10:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002300", + "Timestamp": "2024-05-15T21:10:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003300", + "Timestamp": "2024-05-15T21:10:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-15T21:02:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010500", + "Timestamp": "2024-05-15T21:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121900", + "Timestamp": "2024-05-15T21:02:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118200", + "Timestamp": "2024-05-15T21:02:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061900", + "Timestamp": "2024-05-15T21:02:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261300", + "Timestamp": "2024-05-15T21:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.256300", + "Timestamp": "2024-05-15T21:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131300", + "Timestamp": "2024-05-15T21:02:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.290200", + "Timestamp": "2024-05-15T21:01:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.879900", + "Timestamp": "2024-05-15T21:01:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.252900", + "Timestamp": "2024-05-15T21:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.247900", + "Timestamp": "2024-05-15T21:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122900", + "Timestamp": "2024-05-15T21:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098000", + "Timestamp": "2024-05-15T21:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094300", + "Timestamp": "2024-05-15T21:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038000", + "Timestamp": "2024-05-15T21:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.750300", + "Timestamp": "2024-05-15T21:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.750300", + "Timestamp": "2024-05-15T21:01:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211400", + "Timestamp": "2024-05-15T21:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115000", + "Timestamp": "2024-05-15T21:01:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.069400", + "Timestamp": "2024-05-15T20:47:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.391400", + "Timestamp": "2024-05-15T20:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.386400", + "Timestamp": "2024-05-15T20:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.261400", + "Timestamp": "2024-05-15T20:46:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065700", + "Timestamp": "2024-05-15T20:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.005700", + "Timestamp": "2024-05-15T20:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005700", + "Timestamp": "2024-05-15T20:46:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.073000", + "Timestamp": "2024-05-15T20:32:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108500", + "Timestamp": "2024-05-15T20:31:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212000", + "Timestamp": "2024-05-15T20:31:52.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.888100", + "Timestamp": "2024-05-15T20:31:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075500", + "Timestamp": "2024-05-15T20:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.046500", + "Timestamp": "2024-05-15T20:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015500", + "Timestamp": "2024-05-15T20:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206000", + "Timestamp": "2024-05-15T20:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.248200", + "Timestamp": "2024-05-15T20:17:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073100", + "Timestamp": "2024-05-15T20:17:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069400", + "Timestamp": "2024-05-15T20:17:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013100", + "Timestamp": "2024-05-15T20:17:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306100", + "Timestamp": "2024-05-15T20:17:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302100", + "Timestamp": "2024-05-15T20:17:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.246100", + "Timestamp": "2024-05-15T20:17:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108300", + "Timestamp": "2024-05-15T20:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.187800", + "Timestamp": "2024-05-15T20:16:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154600", + "Timestamp": "2024-05-15T20:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150900", + "Timestamp": "2024-05-15T20:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094600", + "Timestamp": "2024-05-15T20:16:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.816600", + "Timestamp": "2024-05-15T20:10:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.816600", + "Timestamp": "2024-05-15T20:10:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.816600", + "Timestamp": "2024-05-15T20:10:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061800", + "Timestamp": "2024-05-15T20:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001800", + "Timestamp": "2024-05-15T20:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001800", + "Timestamp": "2024-05-15T20:02:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.251200", + "Timestamp": "2024-05-15T20:01:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113300", + "Timestamp": "2024-05-15T20:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124700", + "Timestamp": "2024-05-15T20:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121000", + "Timestamp": "2024-05-15T20:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064700", + "Timestamp": "2024-05-15T20:01:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.697000", + "Timestamp": "2024-05-15T20:01:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.697000", + "Timestamp": "2024-05-15T20:01:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.622400", + "Timestamp": "2024-05-15T19:50:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.622400", + "Timestamp": "2024-05-15T19:50:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.622400", + "Timestamp": "2024-05-15T19:50:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.864400", + "Timestamp": "2024-05-15T19:50:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.864400", + "Timestamp": "2024-05-15T19:50:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.834400", + "Timestamp": "2024-05-15T19:50:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.834400", + "Timestamp": "2024-05-15T19:50:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.734400", + "Timestamp": "2024-05-15T19:50:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.734400", + "Timestamp": "2024-05-15T19:50:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-15T19:46:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.983700", + "Timestamp": "2024-05-15T19:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.978700", + "Timestamp": "2024-05-15T19:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.853700", + "Timestamp": "2024-05-15T19:46:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.442200", + "Timestamp": "2024-05-15T19:46:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142200", + "Timestamp": "2024-05-15T19:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138500", + "Timestamp": "2024-05-15T19:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082200", + "Timestamp": "2024-05-15T19:46:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077400", + "Timestamp": "2024-05-15T19:46:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073700", + "Timestamp": "2024-05-15T19:46:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017400", + "Timestamp": "2024-05-15T19:46:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.313800", + "Timestamp": "2024-05-15T19:32:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.567700", + "Timestamp": "2024-05-15T19:32:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.727300", + "Timestamp": "2024-05-15T19:32:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126100", + "Timestamp": "2024-05-15T19:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122400", + "Timestamp": "2024-05-15T19:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066100", + "Timestamp": "2024-05-15T19:31:53.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108300", + "Timestamp": "2024-05-15T19:31:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075600", + "Timestamp": "2024-05-15T19:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071900", + "Timestamp": "2024-05-15T19:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015600", + "Timestamp": "2024-05-15T19:31:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.204300", + "Timestamp": "2024-05-15T19:17:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210400", + "Timestamp": "2024-05-15T19:17:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083300", + "Timestamp": "2024-05-15T19:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079600", + "Timestamp": "2024-05-15T19:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023300", + "Timestamp": "2024-05-15T19:16:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.997400", + "Timestamp": "2024-05-15T19:06:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.992400", + "Timestamp": "2024-05-15T19:06:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.867400", + "Timestamp": "2024-05-15T19:06:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063600", + "Timestamp": "2024-05-15T19:03:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003600", + "Timestamp": "2024-05-15T19:03:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003600", + "Timestamp": "2024-05-15T19:03:05.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.038900", + "Timestamp": "2024-05-15T19:02:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.155300", + "Timestamp": "2024-05-15T19:02:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091000", + "Timestamp": "2024-05-15T19:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131000", + "Timestamp": "2024-05-15T19:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031000", + "Timestamp": "2024-05-15T19:02:14.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.880100", + "Timestamp": "2024-05-15T19:02:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221200", + "Timestamp": "2024-05-15T18:59:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221200", + "Timestamp": "2024-05-15T18:59:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221200", + "Timestamp": "2024-05-15T18:59:16.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062000", + "Timestamp": "2024-05-15T18:56:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002000", + "Timestamp": "2024-05-15T18:56:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002000", + "Timestamp": "2024-05-15T18:56:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.883000", + "Timestamp": "2024-05-15T18:46:57.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109600", + "Timestamp": "2024-05-15T18:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.060800", + "Timestamp": "2024-05-15T18:46:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.053500", + "Timestamp": "2024-05-15T18:46:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068300", + "Timestamp": "2024-05-15T18:46:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039300", + "Timestamp": "2024-05-15T18:46:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008300", + "Timestamp": "2024-05-15T18:46:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127400", + "Timestamp": "2024-05-15T18:32:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123400", + "Timestamp": "2024-05-15T18:32:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067400", + "Timestamp": "2024-05-15T18:32:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068100", + "Timestamp": "2024-05-15T18:31:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039100", + "Timestamp": "2024-05-15T18:31:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008100", + "Timestamp": "2024-05-15T18:31:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085100", + "Timestamp": "2024-05-15T18:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.056100", + "Timestamp": "2024-05-15T18:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025100", + "Timestamp": "2024-05-15T18:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.236400", + "Timestamp": "2024-05-15T18:16:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-15T18:12:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-15T18:05:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.141800", + "Timestamp": "2024-05-15T18:03:01.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.251600", + "Timestamp": "2024-05-15T18:02:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106000", + "Timestamp": "2024-05-15T18:01:47.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.452300", + "Timestamp": "2024-05-15T18:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221600", + "Timestamp": "2024-05-15T18:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.250600", + "Timestamp": "2024-05-15T18:01:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.864300", + "Timestamp": "2024-05-15T18:01:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-15T18:01:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152400", + "Timestamp": "2024-05-15T18:01:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052400", + "Timestamp": "2024-05-15T18:01:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.217100", + "Timestamp": "2024-05-15T17:57:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.456200", + "Timestamp": "2024-05-15T17:54:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.456200", + "Timestamp": "2024-05-15T17:54:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.456200", + "Timestamp": "2024-05-15T17:54:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.251300", + "Timestamp": "2024-05-15T17:53:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-15T17:52:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.122700", + "Timestamp": "2024-05-15T17:47:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.412900", + "Timestamp": "2024-05-15T17:47:34.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068500", + "Timestamp": "2024-05-15T17:47:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038500", + "Timestamp": "2024-05-15T17:47:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008500", + "Timestamp": "2024-05-15T17:47:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.012300", + "Timestamp": "2024-05-15T17:46:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.020900", + "Timestamp": "2024-05-15T17:45:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021000", + "Timestamp": "2024-05-15T17:45:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208100", + "Timestamp": "2024-05-15T17:41:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111300", + "Timestamp": "2024-05-15T17:33:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-15T17:32:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.873600", + "Timestamp": "2024-05-15T17:32:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073700", + "Timestamp": "2024-05-15T17:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070000", + "Timestamp": "2024-05-15T17:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013700", + "Timestamp": "2024-05-15T17:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431700", + "Timestamp": "2024-05-15T17:16:51.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.283700", + "Timestamp": "2024-05-15T17:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.024300", + "Timestamp": "2024-05-15T17:16:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.811400", + "Timestamp": "2024-05-15T17:08:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229200", + "Timestamp": "2024-05-15T17:02:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065200", + "Timestamp": "2024-05-15T17:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-15T17:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-15T17:02:29.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216300", + "Timestamp": "2024-05-15T17:02:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152800", + "Timestamp": "2024-05-15T17:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149100", + "Timestamp": "2024-05-15T17:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092800", + "Timestamp": "2024-05-15T17:01:42.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-15T17:01:40.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061900", + "Timestamp": "2024-05-15T17:01:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001900", + "Timestamp": "2024-05-15T17:01:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001900", + "Timestamp": "2024-05-15T17:01:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-15T16:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100500", + "Timestamp": "2024-05-15T16:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044500", + "Timestamp": "2024-05-15T16:46:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210200", + "Timestamp": "2024-05-15T16:32:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077000", + "Timestamp": "2024-05-15T16:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.048000", + "Timestamp": "2024-05-15T16:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017000", + "Timestamp": "2024-05-15T16:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.488000", + "Timestamp": "2024-05-15T16:22:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.488000", + "Timestamp": "2024-05-15T16:22:43.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104100", + "Timestamp": "2024-05-15T16:19:32.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-15T16:16:41.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.442400", + "Timestamp": "2024-05-15T16:08:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.442400", + "Timestamp": "2024-05-15T16:08:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.442400", + "Timestamp": "2024-05-15T16:08:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.778100", + "Timestamp": "2024-05-15T16:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.778100", + "Timestamp": "2024-05-15T16:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.778100", + "Timestamp": "2024-05-15T16:02:19.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.714200", + "Timestamp": "2024-05-15T16:01:56.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m5zn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-15T15:47:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.071000", + "Timestamp": "2024-05-15T15:47:22.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.716600", + "Timestamp": "2024-05-15T15:47:06.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216400", + "Timestamp": "2024-05-15T15:46:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.688800", + "Timestamp": "2024-05-15T15:37:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.688800", + "Timestamp": "2024-05-15T15:37:33.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.377600", + "Timestamp": "2024-05-15T15:36:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.377600", + "Timestamp": "2024-05-15T15:36:11.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061800", + "Timestamp": "2024-05-15T15:32:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001800", + "Timestamp": "2024-05-15T15:32:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001800", + "Timestamp": "2024-05-15T15:32:07.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.300700", + "Timestamp": "2024-05-15T15:31:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.300700", + "Timestamp": "2024-05-15T15:31:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.300700", + "Timestamp": "2024-05-15T15:31:48.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.402400", + "Timestamp": "2024-05-15T15:31:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.397400", + "Timestamp": "2024-05-15T15:31:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.272400", + "Timestamp": "2024-05-15T15:31:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-15T15:31:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-15T15:31:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045800", + "Timestamp": "2024-05-15T15:31:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077600", + "Timestamp": "2024-05-15T15:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073900", + "Timestamp": "2024-05-15T15:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017600", + "Timestamp": "2024-05-15T15:31:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093300", + "Timestamp": "2024-05-15T15:31:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089600", + "Timestamp": "2024-05-15T15:31:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033300", + "Timestamp": "2024-05-15T15:31:21.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.001200", + "Timestamp": "2024-05-15T15:02:00.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-15T15:01:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063400", + "Timestamp": "2024-05-15T15:01:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003400", + "Timestamp": "2024-05-15T15:01:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003400", + "Timestamp": "2024-05-15T15:01:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111900", + "Timestamp": "2024-05-15T14:48:17.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-15T14:47:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-15T14:47:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049500", + "Timestamp": "2024-05-15T14:47:15.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.094600", + "Timestamp": "2024-05-15T14:46:24.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073300", + "Timestamp": "2024-05-15T14:34:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069600", + "Timestamp": "2024-05-15T14:34:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013300", + "Timestamp": "2024-05-15T14:34:08.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117800", + "Timestamp": "2024-05-15T14:32:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114100", + "Timestamp": "2024-05-15T14:32:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057800", + "Timestamp": "2024-05-15T14:32:10.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125900", + "Timestamp": "2024-05-15T14:31:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105100", + "Timestamp": "2024-05-15T14:17:23.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.141900", + "Timestamp": "2024-05-15T14:16:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417800", + "Timestamp": "2024-05-15T14:01:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.405600", + "Timestamp": "2024-05-15T13:52:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.405600", + "Timestamp": "2024-05-15T13:52:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.405600", + "Timestamp": "2024-05-15T13:52:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115500", + "Timestamp": "2024-05-15T13:31:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-15T13:31:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055500", + "Timestamp": "2024-05-15T13:31:58.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-15T13:31:44.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.020800", + "Timestamp": "2024-05-15T13:20:04.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078900", + "Timestamp": "2024-05-15T12:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.049900", + "Timestamp": "2024-05-15T12:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018900", + "Timestamp": "2024-05-15T12:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-15T12:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-15T12:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051400", + "Timestamp": "2024-05-15T12:47:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214100", + "Timestamp": "2024-05-15T12:46:39.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.448900", + "Timestamp": "2024-05-15T12:46:35.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429400", + "Timestamp": "2024-05-15T12:31:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010300", + "Timestamp": "2024-05-15T12:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010300", + "Timestamp": "2024-05-15T12:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010900", + "Timestamp": "2024-05-15T12:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-15T12:17:30.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.205100", + "Timestamp": "2024-05-15T12:01:25.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417500", + "Timestamp": "2024-05-15T11:46:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079500", + "Timestamp": "2024-05-15T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075800", + "Timestamp": "2024-05-15T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "m7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019500", + "Timestamp": "2024-05-15T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r7iz.large", + "ProductDescription": "Windows", + "SpotPrice": "0.122200", + "Timestamp": "2024-05-15T11:31:46.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.435700", + "Timestamp": "2024-05-15T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-15T11:18:18.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216000", + "Timestamp": "2024-05-15T11:16:38.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.044900", + "Timestamp": "2024-05-15T11:16:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.874400", + "Timestamp": "2024-05-03T14:31:31.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.406100", + "Timestamp": "2024-05-03T11:31:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.401100", + "Timestamp": "2024-05-03T11:31:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.276100", + "Timestamp": "2024-05-03T11:31:59.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "14.610000", + "Timestamp": "2024-05-02T10:32:20.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.695600", + "Timestamp": "2024-05-02T06:01:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.690600", + "Timestamp": "2024-05-02T06:01:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.565600", + "Timestamp": "2024-05-02T06:01:45.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.394100", + "Timestamp": "2024-04-11T02:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.434100", + "Timestamp": "2024-04-11T02:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.334100", + "Timestamp": "2024-04-11T02:31:26.000Z" + }, + { + "AvailabilityZone": "eu-central-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.452500", + "Timestamp": "2024-04-10T16:47:13.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.063500", + "Timestamp": "2024-04-05T22:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.033500", + "Timestamp": "2024-04-05T22:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.933500", + "Timestamp": "2024-04-05T22:01:37.000Z" + }, + { + "AvailabilityZone": "eu-central-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.669200", + "Timestamp": "2024-04-05T18:31:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.648100", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.643100", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.518100", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140100", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136400", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080100", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.705600", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.700600", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.575600", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.005400", + "Timestamp": "2024-05-16T14:02:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.485800", + "Timestamp": "2024-05-16T14:02:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.480800", + "Timestamp": "2024-05-16T14:02:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.355800", + "Timestamp": "2024-05-16T14:02:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.834500", + "Timestamp": "2024-05-16T14:02:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.974900", + "Timestamp": "2024-05-16T14:02:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.969900", + "Timestamp": "2024-05-16T14:02:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.844900", + "Timestamp": "2024-05-16T14:02:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.240500", + "Timestamp": "2024-05-16T14:02:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.235500", + "Timestamp": "2024-05-16T14:02:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T14:02:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.413000", + "Timestamp": "2024-05-16T14:02:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.408000", + "Timestamp": "2024-05-16T14:02:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.283000", + "Timestamp": "2024-05-16T14:02:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.735200", + "Timestamp": "2024-05-16T14:02:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.730200", + "Timestamp": "2024-05-16T14:02:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.605200", + "Timestamp": "2024-05-16T14:02:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.264600", + "Timestamp": "2024-05-16T14:02:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.259600", + "Timestamp": "2024-05-16T14:02:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.134600", + "Timestamp": "2024-05-16T14:02:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225000", + "Timestamp": "2024-05-16T14:02:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.899200", + "Timestamp": "2024-05-16T14:02:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115000", + "Timestamp": "2024-05-16T14:02:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111300", + "Timestamp": "2024-05-16T14:02:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055000", + "Timestamp": "2024-05-16T14:02:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.325700", + "Timestamp": "2024-05-16T14:02:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.320700", + "Timestamp": "2024-05-16T14:02:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195700", + "Timestamp": "2024-05-16T14:02:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.697200", + "Timestamp": "2024-05-16T14:02:04.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.242600", + "Timestamp": "2024-05-16T14:02:02.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.237600", + "Timestamp": "2024-05-16T14:02:02.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-16T14:02:02.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.443400", + "Timestamp": "2024-05-16T14:02:02.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.807600", + "Timestamp": "2024-05-16T14:01:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.802600", + "Timestamp": "2024-05-16T14:01:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.677600", + "Timestamp": "2024-05-16T14:01:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.623500", + "Timestamp": "2024-05-16T14:01:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.304500", + "Timestamp": "2024-05-16T14:01:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.378000", + "Timestamp": "2024-05-16T14:01:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.299500", + "Timestamp": "2024-05-16T14:01:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.373000", + "Timestamp": "2024-05-16T14:01:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.174500", + "Timestamp": "2024-05-16T14:01:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.248000", + "Timestamp": "2024-05-16T14:01:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.298500", + "Timestamp": "2024-05-16T14:01:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.293500", + "Timestamp": "2024-05-16T14:01:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.168500", + "Timestamp": "2024-05-16T14:01:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.556700", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.288200", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.283200", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158200", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.279900", + "Timestamp": "2024-05-16T14:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.274900", + "Timestamp": "2024-05-16T14:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149900", + "Timestamp": "2024-05-16T14:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.943500", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.741600", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.557800", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.552800", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.427800", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.547000", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.904300", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.838300", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.808300", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.708300", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.373500", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.887400", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.601300", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.588900", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.596300", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.583900", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.471300", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.458900", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.375400", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.370400", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.245400", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.961200", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.034000", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.338800", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.642300", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.280400", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.275400", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150400", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.486800", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.770400", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.082700", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.765400", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.077700", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.640400", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.952700", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.703300", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.679500", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.674500", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.549500", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.594400", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.589400", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.464400", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076900", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073200", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016900", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.724200", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.609500", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.634700", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.538800", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.533800", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.408800", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.773100", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.768100", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.643100", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.238800", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.435800", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.430800", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.305800", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.545000", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.519600", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083700", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080000", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023700", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.642000", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.510700", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.505700", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.380700", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.790200", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.785200", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.660200", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.381000", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.985700", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.621500", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.539700", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.534700", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.409700", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.025600", + "Timestamp": "2024-05-16T14:01:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.020600", + "Timestamp": "2024-05-16T14:01:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.895600", + "Timestamp": "2024-05-16T14:01:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-16T14:01:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-16T14:01:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056400", + "Timestamp": "2024-05-16T14:01:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213700", + "Timestamp": "2024-05-16T14:01:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416400", + "Timestamp": "2024-05-16T14:00:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.415300", + "Timestamp": "2024-05-16T14:00:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.415100", + "Timestamp": "2024-05-16T14:00:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.318000", + "Timestamp": "2024-05-16T14:00:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.283900", + "Timestamp": "2024-05-16T14:00:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.290900", + "Timestamp": "2024-05-16T14:00:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.313000", + "Timestamp": "2024-05-16T14:00:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.278900", + "Timestamp": "2024-05-16T14:00:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.285900", + "Timestamp": "2024-05-16T14:00:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.188000", + "Timestamp": "2024-05-16T14:00:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.153900", + "Timestamp": "2024-05-16T14:00:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.160900", + "Timestamp": "2024-05-16T14:00:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071500", + "Timestamp": "2024-05-16T13:48:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042500", + "Timestamp": "2024-05-16T13:48:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011500", + "Timestamp": "2024-05-16T13:48:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.920200", + "Timestamp": "2024-05-16T13:47:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.915200", + "Timestamp": "2024-05-16T13:47:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.790200", + "Timestamp": "2024-05-16T13:47:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T13:47:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.489400", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.459400", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.359400", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T13:47:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.850600", + "Timestamp": "2024-05-16T13:47:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.774300", + "Timestamp": "2024-05-16T13:47:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.815100", + "Timestamp": "2024-05-16T13:47:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.331100", + "Timestamp": "2024-05-16T13:47:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.326100", + "Timestamp": "2024-05-16T13:47:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.201100", + "Timestamp": "2024-05-16T13:47:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.593000", + "Timestamp": "2024-05-16T13:47:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.215000", + "Timestamp": "2024-05-16T13:47:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.836800", + "Timestamp": "2024-05-16T13:47:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.593300", + "Timestamp": "2024-05-16T13:47:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.227500", + "Timestamp": "2024-05-16T13:47:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.489100", + "Timestamp": "2024-05-16T13:47:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.635400", + "Timestamp": "2024-05-16T13:47:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.183500", + "Timestamp": "2024-05-16T13:46:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.221100", + "Timestamp": "2024-05-16T13:46:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.128300", + "Timestamp": "2024-05-16T13:46:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.369600", + "Timestamp": "2024-05-16T13:46:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.364600", + "Timestamp": "2024-05-16T13:46:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.239600", + "Timestamp": "2024-05-16T13:46:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.501100", + "Timestamp": "2024-05-16T13:46:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111300", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.426800", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.679100", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.729100", + "Timestamp": "2024-05-16T13:46:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.724100", + "Timestamp": "2024-05-16T13:46:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.599100", + "Timestamp": "2024-05-16T13:46:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.644600", + "Timestamp": "2024-05-16T13:46:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.639600", + "Timestamp": "2024-05-16T13:46:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.514600", + "Timestamp": "2024-05-16T13:46:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.899700", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.894700", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.769700", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.375200", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.254000", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.249000", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124000", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.613700", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.608700", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.483700", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.604300", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.599300", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.474300", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.583100", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.934200", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.541600", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.511600", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.411600", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.651900", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.646900", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.521900", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.510400", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.480400", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.380400", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.627800", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.622800", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.497800", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.248500", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.243500", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.118500", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.408800", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.403800", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.278800", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.511000", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.506000", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.381000", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.877300", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.984200", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.979200", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.854200", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131500", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127800", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071500", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.777400", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.772400", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.647400", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.560400", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.556500", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.555400", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.551500", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.430400", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.426500", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.620200", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111300", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172000", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168000", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.694700", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.446100", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.441100", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.316100", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.831100", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.045000", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.040000", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.915000", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.762000", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.757000", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.632000", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135400", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131400", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075400", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114400", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054400", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104700", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048400", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.850100", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.842400", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.739100", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.734100", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.609100", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.946400", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.004300", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.999300", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.874300", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.162500", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.157500", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.032500", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.109800", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.124400", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.104800", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.119400", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.979800", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.994400", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.379100", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.345000", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.340000", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.215000", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.516800", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.818300", + "Timestamp": "2024-05-16T13:46:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117600", + "Timestamp": "2024-05-16T13:46:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113900", + "Timestamp": "2024-05-16T13:46:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057600", + "Timestamp": "2024-05-16T13:46:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.613600", + "Timestamp": "2024-05-16T13:46:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.450200", + "Timestamp": "2024-05-16T13:32:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.590000", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.585000", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.460000", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.822400", + "Timestamp": "2024-05-16T13:32:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.292500", + "Timestamp": "2024-05-16T13:32:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.287500", + "Timestamp": "2024-05-16T13:32:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162500", + "Timestamp": "2024-05-16T13:32:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.222500", + "Timestamp": "2024-05-16T13:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.217500", + "Timestamp": "2024-05-16T13:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092500", + "Timestamp": "2024-05-16T13:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.550000", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.949300", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.933600", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.944300", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.928600", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.819300", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.803600", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.479900", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.445700", + "Timestamp": "2024-05-16T13:32:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.440700", + "Timestamp": "2024-05-16T13:32:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.315700", + "Timestamp": "2024-05-16T13:32:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.561600", + "Timestamp": "2024-05-16T13:32:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.532900", + "Timestamp": "2024-05-16T13:32:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.357600", + "Timestamp": "2024-05-16T13:32:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.147200", + "Timestamp": "2024-05-16T13:32:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.142200", + "Timestamp": "2024-05-16T13:32:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.017200", + "Timestamp": "2024-05-16T13:32:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.586000", + "Timestamp": "2024-05-16T13:32:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.581000", + "Timestamp": "2024-05-16T13:32:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.456000", + "Timestamp": "2024-05-16T13:32:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.068600", + "Timestamp": "2024-05-16T13:32:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.063600", + "Timestamp": "2024-05-16T13:32:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.938600", + "Timestamp": "2024-05-16T13:32:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.423200", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.418200", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.293200", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.572500", + "Timestamp": "2024-05-16T13:32:04.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.567500", + "Timestamp": "2024-05-16T13:32:04.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.442500", + "Timestamp": "2024-05-16T13:32:04.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.480800", + "Timestamp": "2024-05-16T13:32:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.475800", + "Timestamp": "2024-05-16T13:32:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.350800", + "Timestamp": "2024-05-16T13:32:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.713800", + "Timestamp": "2024-05-16T13:31:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.708800", + "Timestamp": "2024-05-16T13:31:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.583800", + "Timestamp": "2024-05-16T13:31:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.640200", + "Timestamp": "2024-05-16T13:31:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.635200", + "Timestamp": "2024-05-16T13:31:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.510200", + "Timestamp": "2024-05-16T13:31:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.742900", + "Timestamp": "2024-05-16T13:31:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.426200", + "Timestamp": "2024-05-16T13:31:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.254900", + "Timestamp": "2024-05-16T13:31:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.250900", + "Timestamp": "2024-05-16T13:31:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194900", + "Timestamp": "2024-05-16T13:31:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.587400", + "Timestamp": "2024-05-16T13:31:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.941000", + "Timestamp": "2024-05-16T13:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.672200", + "Timestamp": "2024-05-16T13:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.667200", + "Timestamp": "2024-05-16T13:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.542200", + "Timestamp": "2024-05-16T13:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.407200", + "Timestamp": "2024-05-16T13:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.383200", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.378200", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.253200", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.457800", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.452800", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.327800", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.276200", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.416100", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.271200", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.411100", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146200", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.286100", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094500", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090800", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034500", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.291600", + "Timestamp": "2024-05-16T13:31:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.530100", + "Timestamp": "2024-05-16T13:31:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.849800", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220300", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.430700", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.274800", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269800", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144800", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.405100", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.400100", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.275100", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.050500", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311300", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281300", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181300", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.194600", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.189600", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.064600", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.765500", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.760500", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.635500", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.031700", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.968600", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.841000", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.656100", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.651100", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.526100", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.283400", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.278400", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.153400", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.124200", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273900", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268900", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143900", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.513900", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.508900", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.383900", + "Timestamp": "2024-05-16T13:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.409000", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.404000", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.279000", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.775800", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.770800", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.645800", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.780100", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.545300", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.540300", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.415300", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.698100", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.693100", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.568100", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.858900", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.853900", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.728900", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.491900", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.486900", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.361900", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.653800", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.648800", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.523800", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.730900", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.725900", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.600900", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.222400", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.217400", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092400", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.309000", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.279000", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.179000", + "Timestamp": "2024-05-16T13:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.717900", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.667000", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.662000", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.537000", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143500", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139500", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083500", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.465000", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.460000", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.335000", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.267400", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.261700", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.879800", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.849800", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.749800", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.408000", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.517300", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.732600", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.972000", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.967000", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.842000", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.796100", + "Timestamp": "2024-05-16T13:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.791100", + "Timestamp": "2024-05-16T13:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.666100", + "Timestamp": "2024-05-16T13:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.612000", + "Timestamp": "2024-05-16T13:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.582000", + "Timestamp": "2024-05-16T13:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.482000", + "Timestamp": "2024-05-16T13:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.505500", + "Timestamp": "2024-05-16T13:31:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.073500", + "Timestamp": "2024-05-16T13:31:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.286800", + "Timestamp": "2024-05-16T13:31:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.068500", + "Timestamp": "2024-05-16T13:31:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.281800", + "Timestamp": "2024-05-16T13:31:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.943500", + "Timestamp": "2024-05-16T13:31:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.156800", + "Timestamp": "2024-05-16T13:31:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.072100", + "Timestamp": "2024-05-16T13:31:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.281200", + "Timestamp": "2024-05-16T13:31:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.276200", + "Timestamp": "2024-05-16T13:31:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.151200", + "Timestamp": "2024-05-16T13:31:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131600", + "Timestamp": "2024-05-16T13:31:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127600", + "Timestamp": "2024-05-16T13:31:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071600", + "Timestamp": "2024-05-16T13:31:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099800", + "Timestamp": "2024-05-16T13:31:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095800", + "Timestamp": "2024-05-16T13:31:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039800", + "Timestamp": "2024-05-16T13:31:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.802900", + "Timestamp": "2024-05-16T13:19:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.785900", + "Timestamp": "2024-05-16T13:19:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.024800", + "Timestamp": "2024-05-16T13:19:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.797900", + "Timestamp": "2024-05-16T13:19:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.780900", + "Timestamp": "2024-05-16T13:19:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.019800", + "Timestamp": "2024-05-16T13:19:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.672900", + "Timestamp": "2024-05-16T13:19:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.655900", + "Timestamp": "2024-05-16T13:19:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.894800", + "Timestamp": "2024-05-16T13:19:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.575100", + "Timestamp": "2024-05-16T13:19:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.580600", + "Timestamp": "2024-05-16T13:19:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.618000", + "Timestamp": "2024-05-16T13:19:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T13:17:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.503700", + "Timestamp": "2024-05-16T13:17:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.498700", + "Timestamp": "2024-05-16T13:17:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.373700", + "Timestamp": "2024-05-16T13:17:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.454300", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.406900", + "Timestamp": "2024-05-16T13:17:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.872800", + "Timestamp": "2024-05-16T13:17:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.816700", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.811700", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.686700", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.492600", + "Timestamp": "2024-05-16T13:17:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.487600", + "Timestamp": "2024-05-16T13:17:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.362600", + "Timestamp": "2024-05-16T13:17:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.309000", + "Timestamp": "2024-05-16T13:17:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.304000", + "Timestamp": "2024-05-16T13:17:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.179000", + "Timestamp": "2024-05-16T13:17:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354200", + "Timestamp": "2024-05-16T13:17:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324200", + "Timestamp": "2024-05-16T13:17:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224200", + "Timestamp": "2024-05-16T13:17:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301000", + "Timestamp": "2024-05-16T13:17:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.276000", + "Timestamp": "2024-05-16T13:17:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.341000", + "Timestamp": "2024-05-16T13:17:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.316000", + "Timestamp": "2024-05-16T13:17:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.241000", + "Timestamp": "2024-05-16T13:17:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.216000", + "Timestamp": "2024-05-16T13:17:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.161100", + "Timestamp": "2024-05-16T13:17:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.530700", + "Timestamp": "2024-05-16T13:17:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.525700", + "Timestamp": "2024-05-16T13:17:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.400700", + "Timestamp": "2024-05-16T13:17:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.888800", + "Timestamp": "2024-05-16T13:17:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.469300", + "Timestamp": "2024-05-16T13:17:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.826000", + "Timestamp": "2024-05-16T13:17:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.821000", + "Timestamp": "2024-05-16T13:17:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.696000", + "Timestamp": "2024-05-16T13:17:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.281000", + "Timestamp": "2024-05-16T13:17:01.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276000", + "Timestamp": "2024-05-16T13:17:01.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.151000", + "Timestamp": "2024-05-16T13:17:01.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.237200", + "Timestamp": "2024-05-16T13:17:01.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232200", + "Timestamp": "2024-05-16T13:17:01.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-16T13:17:01.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.452000", + "Timestamp": "2024-05-16T13:17:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.716400", + "Timestamp": "2024-05-16T13:17:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.711400", + "Timestamp": "2024-05-16T13:17:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.586400", + "Timestamp": "2024-05-16T13:17:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.770500", + "Timestamp": "2024-05-16T13:16:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.765500", + "Timestamp": "2024-05-16T13:16:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.640500", + "Timestamp": "2024-05-16T13:16:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.928500", + "Timestamp": "2024-05-16T13:16:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.252500", + "Timestamp": "2024-05-16T13:16:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.247500", + "Timestamp": "2024-05-16T13:16:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.122500", + "Timestamp": "2024-05-16T13:16:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079400", + "Timestamp": "2024-05-16T13:16:51.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075700", + "Timestamp": "2024-05-16T13:16:51.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019400", + "Timestamp": "2024-05-16T13:16:51.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.365200", + "Timestamp": "2024-05-16T13:16:51.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.335200", + "Timestamp": "2024-05-16T13:16:51.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235200", + "Timestamp": "2024-05-16T13:16:51.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.118900", + "Timestamp": "2024-05-16T13:16:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440900", + "Timestamp": "2024-05-16T13:16:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.533600", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.528600", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.403600", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.047700", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.596000", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.566000", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.466000", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.108800", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.103800", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.978800", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.486400", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.481400", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.356400", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.251400", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.247400", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.191400", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.207800", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.177800", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.077800", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.909200", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.904200", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.779200", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.134100", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.497400", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161000", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157300", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101000", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.559200", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.554200", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.429200", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.843000", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.337200", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.537900", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.532900", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.407900", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.254300", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.249300", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124300", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.612700", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.607700", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.482700", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.561200", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.531200", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.431200", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.740400", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.735400", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.610400", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.215100", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.636000", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.631000", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.506000", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132700", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129000", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072700", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.013000", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.008000", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.883000", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.003800", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.998800", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.873800", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.247900", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.217900", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.117900", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.438600", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.433600", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.308600", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.627400", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.622400", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.497400", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.790300", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.785300", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.660300", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.963600", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.958600", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.833600", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.264300", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.259300", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.134300", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222300", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.791300", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.786300", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.661300", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.182500", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120900", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.410600", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.905500", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044600", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.543900", + "Timestamp": "2024-05-16T13:16:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.259000", + "Timestamp": "2024-05-16T13:16:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.783800", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.538600", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.499400", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.578200", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.548200", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.448200", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.943200", + "Timestamp": "2024-05-16T13:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.938200", + "Timestamp": "2024-05-16T13:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.813200", + "Timestamp": "2024-05-16T13:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.944000", + "Timestamp": "2024-05-16T13:16:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T13:16:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-16T13:16:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042800", + "Timestamp": "2024-05-16T13:16:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-16T13:16:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093500", + "Timestamp": "2024-05-16T13:16:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037200", + "Timestamp": "2024-05-16T13:16:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.372600", + "Timestamp": "2024-05-16T13:16:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.367600", + "Timestamp": "2024-05-16T13:16:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242600", + "Timestamp": "2024-05-16T13:16:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070100", + "Timestamp": "2024-05-16T13:02:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066400", + "Timestamp": "2024-05-16T13:02:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010100", + "Timestamp": "2024-05-16T13:02:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.539000", + "Timestamp": "2024-05-16T13:02:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.534000", + "Timestamp": "2024-05-16T13:02:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.409000", + "Timestamp": "2024-05-16T13:02:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.444600", + "Timestamp": "2024-05-16T13:02:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T13:02:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.132300", + "Timestamp": "2024-05-16T13:02:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.257000", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.252000", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127000", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.458500", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074900", + "Timestamp": "2024-05-16T13:02:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071200", + "Timestamp": "2024-05-16T13:02:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014900", + "Timestamp": "2024-05-16T13:02:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.264200", + "Timestamp": "2024-05-16T13:02:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.259200", + "Timestamp": "2024-05-16T13:02:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134200", + "Timestamp": "2024-05-16T13:02:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.701100", + "Timestamp": "2024-05-16T13:02:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.690000", + "Timestamp": "2024-05-16T13:02:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.685000", + "Timestamp": "2024-05-16T13:02:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.560000", + "Timestamp": "2024-05-16T13:02:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.333600", + "Timestamp": "2024-05-16T13:02:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.328600", + "Timestamp": "2024-05-16T13:02:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.203600", + "Timestamp": "2024-05-16T13:02:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.477500", + "Timestamp": "2024-05-16T13:02:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.472500", + "Timestamp": "2024-05-16T13:02:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.347500", + "Timestamp": "2024-05-16T13:02:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.479700", + "Timestamp": "2024-05-16T13:02:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.474700", + "Timestamp": "2024-05-16T13:02:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.349700", + "Timestamp": "2024-05-16T13:02:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.999100", + "Timestamp": "2024-05-16T13:02:02.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.786800", + "Timestamp": "2024-05-16T13:02:01.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.377300", + "Timestamp": "2024-05-16T13:02:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.372300", + "Timestamp": "2024-05-16T13:02:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.247300", + "Timestamp": "2024-05-16T13:02:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.747700", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.742700", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.617700", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.217600", + "Timestamp": "2024-05-16T13:01:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.310600", + "Timestamp": "2024-05-16T13:01:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.212600", + "Timestamp": "2024-05-16T13:01:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.305600", + "Timestamp": "2024-05-16T13:01:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.087600", + "Timestamp": "2024-05-16T13:01:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.180600", + "Timestamp": "2024-05-16T13:01:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.228800", + "Timestamp": "2024-05-16T13:01:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.519000", + "Timestamp": "2024-05-16T13:01:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.773300", + "Timestamp": "2024-05-16T13:01:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135300", + "Timestamp": "2024-05-16T13:01:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131300", + "Timestamp": "2024-05-16T13:01:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075300", + "Timestamp": "2024-05-16T13:01:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122000", + "Timestamp": "2024-05-16T13:01:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118000", + "Timestamp": "2024-05-16T13:01:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062000", + "Timestamp": "2024-05-16T13:01:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.883000", + "Timestamp": "2024-05-16T13:01:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.873900", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.868900", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.743900", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220500", + "Timestamp": "2024-05-16T13:01:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.411600", + "Timestamp": "2024-05-16T13:01:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.636800", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.631800", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.506800", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.296400", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.291400", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.166400", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.629600", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.624600", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.499600", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.283900", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.278900", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.153900", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084700", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.081000", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024700", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.779100", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.749100", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.649100", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.383900", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.378900", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.253900", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.624600", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.493600", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.488600", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.363600", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417800", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176300", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172300", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116300", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.082500", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.077500", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.952500", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.453000", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.448000", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.323000", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.901400", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.524400", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.519400", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.394400", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.459500", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.429500", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.329500", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.269300", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.264300", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139300", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.401900", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.396900", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.271900", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.784500", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.823800", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.779500", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.818800", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.654500", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.693800", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.395800", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.490100", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.231700", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.593800", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.504600", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.499600", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.374600", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140700", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137000", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080700", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270500", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265500", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140500", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.877500", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.872500", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.747500", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.462500", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.457500", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.332500", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130500", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126800", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070500", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.514900", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.509900", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.384900", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.706700", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046900", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084900", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080900", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024900", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.451600", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.446600", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.321600", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.433200", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.428200", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.303200", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.348500", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343500", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.218500", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122000", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118300", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062000", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.642700", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.637700", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.512700", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.433300", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.853400", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.848400", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.723400", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.008800", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.003800", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.878800", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.139400", + "Timestamp": "2024-05-16T13:01:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172400", + "Timestamp": "2024-05-16T13:01:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168400", + "Timestamp": "2024-05-16T13:01:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-16T13:01:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.232200", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.697500", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.692500", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.567500", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.544900", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.539900", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.414900", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.442100", + "Timestamp": "2024-05-16T13:01:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.080500", + "Timestamp": "2024-05-16T13:01:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.386100", + "Timestamp": "2024-05-16T13:01:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.512400", + "Timestamp": "2024-05-16T13:01:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.597600", + "Timestamp": "2024-05-16T13:01:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.592600", + "Timestamp": "2024-05-16T13:01:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.467600", + "Timestamp": "2024-05-16T13:01:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.028800", + "Timestamp": "2024-05-16T12:47:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.023800", + "Timestamp": "2024-05-16T12:47:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.898800", + "Timestamp": "2024-05-16T12:47:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142800", + "Timestamp": "2024-05-16T12:47:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138800", + "Timestamp": "2024-05-16T12:47:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082800", + "Timestamp": "2024-05-16T12:47:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.105700", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.974900", + "Timestamp": "2024-05-16T12:47:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.964800", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.824100", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.819100", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.694100", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.801800", + "Timestamp": "2024-05-16T12:47:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.796800", + "Timestamp": "2024-05-16T12:47:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.671800", + "Timestamp": "2024-05-16T12:47:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.759200", + "Timestamp": "2024-05-16T12:47:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062800", + "Timestamp": "2024-05-16T12:47:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002800", + "Timestamp": "2024-05-16T12:47:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002800", + "Timestamp": "2024-05-16T12:47:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.501700", + "Timestamp": "2024-05-16T12:47:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.207200", + "Timestamp": "2024-05-16T12:47:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.457500", + "Timestamp": "2024-05-16T12:47:02.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.135700", + "Timestamp": "2024-05-16T12:46:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.860700", + "Timestamp": "2024-05-16T12:46:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.292400", + "Timestamp": "2024-05-16T12:46:51.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.287400", + "Timestamp": "2024-05-16T12:46:51.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162400", + "Timestamp": "2024-05-16T12:46:51.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.351600", + "Timestamp": "2024-05-16T12:46:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.346600", + "Timestamp": "2024-05-16T12:46:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.221600", + "Timestamp": "2024-05-16T12:46:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.435600", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.749000", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.744000", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.619000", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094800", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091100", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034800", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.420500", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.390500", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.290500", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.092200", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.087200", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.962200", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.489800", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.524300", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.519300", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.394300", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.415800", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.410800", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.285800", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417500", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.782700", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.777700", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.652700", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.486500", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116800", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.671300", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.666300", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.541300", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090400", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086700", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030400", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.973200", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.968200", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.843200", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.490700", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.797500", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115200", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111200", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055200", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.480000", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.475000", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.350000", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.200000", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.195000", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.070000", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.666100", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.636100", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.536100", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.525800", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.719500", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.689500", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.589500", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.523400", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.509600", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.504600", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.379600", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.266200", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.266100", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.261100", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136100", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.312300", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.282300", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.182300", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.634300", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.604300", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.504300", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.618700", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.263900", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258900", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133900", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.519700", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306800", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301800", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176800", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.793100", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.788100", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.663100", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.288400", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.474600", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.878000", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233600", + "Timestamp": "2024-05-16T12:46:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.529200", + "Timestamp": "2024-05-16T12:46:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.928800", + "Timestamp": "2024-05-16T12:46:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.759700", + "Timestamp": "2024-05-16T12:46:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.802900", + "Timestamp": "2024-05-16T12:46:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.797900", + "Timestamp": "2024-05-16T12:46:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.672900", + "Timestamp": "2024-05-16T12:46:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.288200", + "Timestamp": "2024-05-16T12:46:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155100", + "Timestamp": "2024-05-16T12:39:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151400", + "Timestamp": "2024-05-16T12:39:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095100", + "Timestamp": "2024-05-16T12:39:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.279100", + "Timestamp": "2024-05-16T12:38:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.279100", + "Timestamp": "2024-05-16T12:38:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.279100", + "Timestamp": "2024-05-16T12:38:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119200", + "Timestamp": "2024-05-16T12:33:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.010200", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.005200", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.880200", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.101600", + "Timestamp": "2024-05-16T12:32:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.096600", + "Timestamp": "2024-05-16T12:32:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.971600", + "Timestamp": "2024-05-16T12:32:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.739700", + "Timestamp": "2024-05-16T12:32:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.301900", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145800", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142100", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085800", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.468600", + "Timestamp": "2024-05-16T12:32:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.463600", + "Timestamp": "2024-05-16T12:32:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.338600", + "Timestamp": "2024-05-16T12:32:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.122900", + "Timestamp": "2024-05-16T12:32:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.117900", + "Timestamp": "2024-05-16T12:32:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.992900", + "Timestamp": "2024-05-16T12:32:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.465300", + "Timestamp": "2024-05-16T12:32:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.460300", + "Timestamp": "2024-05-16T12:32:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.335300", + "Timestamp": "2024-05-16T12:32:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.679100", + "Timestamp": "2024-05-16T12:32:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.674100", + "Timestamp": "2024-05-16T12:32:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.549100", + "Timestamp": "2024-05-16T12:32:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.195700", + "Timestamp": "2024-05-16T12:32:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190700", + "Timestamp": "2024-05-16T12:32:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065700", + "Timestamp": "2024-05-16T12:32:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.208200", + "Timestamp": "2024-05-16T12:32:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.322300", + "Timestamp": "2024-05-16T12:32:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.317300", + "Timestamp": "2024-05-16T12:32:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.192300", + "Timestamp": "2024-05-16T12:32:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.704400", + "Timestamp": "2024-05-16T12:32:02.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.699400", + "Timestamp": "2024-05-16T12:32:02.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.574400", + "Timestamp": "2024-05-16T12:32:02.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124900", + "Timestamp": "2024-05-16T12:32:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.297300", + "Timestamp": "2024-05-16T12:31:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.292300", + "Timestamp": "2024-05-16T12:31:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.167300", + "Timestamp": "2024-05-16T12:31:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.719800", + "Timestamp": "2024-05-16T12:31:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.714800", + "Timestamp": "2024-05-16T12:31:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.589800", + "Timestamp": "2024-05-16T12:31:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.175200", + "Timestamp": "2024-05-16T12:31:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.170200", + "Timestamp": "2024-05-16T12:31:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.045200", + "Timestamp": "2024-05-16T12:31:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.550400", + "Timestamp": "2024-05-16T12:31:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083500", + "Timestamp": "2024-05-16T12:31:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079800", + "Timestamp": "2024-05-16T12:31:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023500", + "Timestamp": "2024-05-16T12:31:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.512900", + "Timestamp": "2024-05-16T12:31:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.622800", + "Timestamp": "2024-05-16T12:31:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.617800", + "Timestamp": "2024-05-16T12:31:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.492800", + "Timestamp": "2024-05-16T12:31:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.944700", + "Timestamp": "2024-05-16T12:31:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.939700", + "Timestamp": "2024-05-16T12:31:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.814700", + "Timestamp": "2024-05-16T12:31:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.330100", + "Timestamp": "2024-05-16T12:31:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143700", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140000", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083700", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.474200", + "Timestamp": "2024-05-16T12:31:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.469200", + "Timestamp": "2024-05-16T12:31:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.344200", + "Timestamp": "2024-05-16T12:31:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.277900", + "Timestamp": "2024-05-16T12:31:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.272900", + "Timestamp": "2024-05-16T12:31:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147900", + "Timestamp": "2024-05-16T12:31:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.922400", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.917400", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.792400", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071900", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068200", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011900", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.842800", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.837800", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.712800", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103400", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047400", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.851000", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.712500", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.707500", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.582500", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.505500", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.678300", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084000", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080300", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024000", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.879300", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.815200", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.573700", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.568700", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.443700", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.634400", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.234400", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.229400", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.104400", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.426000", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.473600", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.428200", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.615100", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.610100", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.485100", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.431100", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.426100", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.301100", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278300", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273300", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148300", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145900", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142200", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085900", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.656000", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.976200", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106000", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.276500", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.271500", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146500", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.609400", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.476200", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.471200", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.346200", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.419600", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.414600", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.289600", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082300", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078600", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022300", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.790000", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.760000", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.660000", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.771400", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.766400", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.641400", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.099400", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.094400", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.969400", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.806500", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.411100", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.053000", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.575100", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.806500", + "Timestamp": "2024-05-16T12:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.801500", + "Timestamp": "2024-05-16T12:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.676500", + "Timestamp": "2024-05-16T12:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.542000", + "Timestamp": "2024-05-16T12:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.537000", + "Timestamp": "2024-05-16T12:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.412000", + "Timestamp": "2024-05-16T12:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.696800", + "Timestamp": "2024-05-16T12:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.691800", + "Timestamp": "2024-05-16T12:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.566800", + "Timestamp": "2024-05-16T12:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.785500", + "Timestamp": "2024-05-16T12:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.780500", + "Timestamp": "2024-05-16T12:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.655500", + "Timestamp": "2024-05-16T12:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.367200", + "Timestamp": "2024-05-16T12:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.362200", + "Timestamp": "2024-05-16T12:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.237200", + "Timestamp": "2024-05-16T12:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.542100", + "Timestamp": "2024-05-16T12:31:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.512100", + "Timestamp": "2024-05-16T12:31:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.412100", + "Timestamp": "2024-05-16T12:31:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160300", + "Timestamp": "2024-05-16T12:31:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156300", + "Timestamp": "2024-05-16T12:31:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-16T12:31:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216200", + "Timestamp": "2024-05-16T12:31:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.383900", + "Timestamp": "2024-05-16T12:31:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.378900", + "Timestamp": "2024-05-16T12:31:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.253900", + "Timestamp": "2024-05-16T12:31:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.764900", + "Timestamp": "2024-05-16T12:31:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209500", + "Timestamp": "2024-05-16T12:31:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.731600", + "Timestamp": "2024-05-16T12:22:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.731600", + "Timestamp": "2024-05-16T12:22:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.907300", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.372900", + "Timestamp": "2024-05-16T12:17:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.235800", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.230800", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.079500", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.074500", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.949500", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.015700", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.747200", + "Timestamp": "2024-05-16T12:17:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221200", + "Timestamp": "2024-05-16T12:17:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.486700", + "Timestamp": "2024-05-16T12:17:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129900", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126200", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069900", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082100", + "Timestamp": "2024-05-16T12:17:04.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078400", + "Timestamp": "2024-05-16T12:17:04.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022100", + "Timestamp": "2024-05-16T12:17:04.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.871100", + "Timestamp": "2024-05-16T12:17:01.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.841100", + "Timestamp": "2024-05-16T12:17:01.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.741100", + "Timestamp": "2024-05-16T12:17:01.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.292300", + "Timestamp": "2024-05-16T12:17:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262300", + "Timestamp": "2024-05-16T12:17:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162300", + "Timestamp": "2024-05-16T12:17:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.652900", + "Timestamp": "2024-05-16T12:16:57.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.647900", + "Timestamp": "2024-05-16T12:16:57.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.522900", + "Timestamp": "2024-05-16T12:16:57.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.543400", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.538400", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.413400", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100700", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044400", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.263100", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096900", + "Timestamp": "2024-05-16T12:16:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093200", + "Timestamp": "2024-05-16T12:16:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036900", + "Timestamp": "2024-05-16T12:16:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.689700", + "Timestamp": "2024-05-16T12:16:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.858000", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.853000", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.728000", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049500", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.744200", + "Timestamp": "2024-05-16T12:16:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.821600", + "Timestamp": "2024-05-16T12:16:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.952700", + "Timestamp": "2024-05-16T12:16:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.947700", + "Timestamp": "2024-05-16T12:16:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.822700", + "Timestamp": "2024-05-16T12:16:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.435500", + "Timestamp": "2024-05-16T12:16:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.631500", + "Timestamp": "2024-05-16T12:16:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.626500", + "Timestamp": "2024-05-16T12:16:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.501500", + "Timestamp": "2024-05-16T12:16:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.920700", + "Timestamp": "2024-05-16T12:16:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.229500", + "Timestamp": "2024-05-16T12:16:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.224500", + "Timestamp": "2024-05-16T12:16:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.099500", + "Timestamp": "2024-05-16T12:16:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.333600", + "Timestamp": "2024-05-16T12:16:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.328600", + "Timestamp": "2024-05-16T12:16:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.203600", + "Timestamp": "2024-05-16T12:16:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.410300", + "Timestamp": "2024-05-16T12:16:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.237000", + "Timestamp": "2024-05-16T12:16:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232000", + "Timestamp": "2024-05-16T12:16:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107000", + "Timestamp": "2024-05-16T12:16:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.546800", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.541800", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.416800", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.880000", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.486700", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.985800", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.321300", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.903400", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.316300", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.898400", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.191300", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.773400", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096100", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092400", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036100", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.281600", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097300", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093600", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037300", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.953600", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.948600", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.823600", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.059000", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.815800", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.785800", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.685800", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.636900", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.631900", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.506900", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.373800", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.494900", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.464900", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.364900", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.800900", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.795900", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.670900", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.484100", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.708300", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.678300", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.578300", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.091700", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.537500", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.532500", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.407500", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.186100", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.181100", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.056100", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.476200", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.596800", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.591800", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.466800", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.983700", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.346700", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.564900", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.534900", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.434900", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.454000", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.827100", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.822100", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.697100", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.699800", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.544600", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.514600", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.414600", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.473500", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.213800", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.208800", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.083800", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.543400", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.538400", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.413400", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.612200", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.607200", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.482200", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.269700", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.239700", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139700", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.829100", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.113600", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.108600", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.983600", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.595400", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.590400", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.465400", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.549400", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.932200", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.927200", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.802200", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.064900", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.059900", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.934900", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103400", + "Timestamp": "2024-05-16T12:16:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.580600", + "Timestamp": "2024-05-16T12:16:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.433700", + "Timestamp": "2024-05-16T12:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.990100", + "Timestamp": "2024-05-16T12:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.824800", + "Timestamp": "2024-05-16T12:16:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.819800", + "Timestamp": "2024-05-16T12:16:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.694800", + "Timestamp": "2024-05-16T12:16:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.731000", + "Timestamp": "2024-05-16T12:16:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.701000", + "Timestamp": "2024-05-16T12:16:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.601000", + "Timestamp": "2024-05-16T12:16:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330500", + "Timestamp": "2024-05-16T12:16:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325500", + "Timestamp": "2024-05-16T12:16:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200500", + "Timestamp": "2024-05-16T12:16:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167000", + "Timestamp": "2024-05-16T12:16:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162000", + "Timestamp": "2024-05-16T12:16:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037000", + "Timestamp": "2024-05-16T12:16:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.895200", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.654000", + "Timestamp": "2024-05-16T12:02:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.649000", + "Timestamp": "2024-05-16T12:02:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.524000", + "Timestamp": "2024-05-16T12:02:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.775700", + "Timestamp": "2024-05-16T12:02:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.451800", + "Timestamp": "2024-05-16T12:02:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.476200", + "Timestamp": "2024-05-16T12:02:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.421800", + "Timestamp": "2024-05-16T12:02:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.446200", + "Timestamp": "2024-05-16T12:02:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.321800", + "Timestamp": "2024-05-16T12:02:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.346200", + "Timestamp": "2024-05-16T12:02:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078500", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074800", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018500", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.042800", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.037800", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.912800", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.038000", + "Timestamp": "2024-05-16T12:02:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.627400", + "Timestamp": "2024-05-16T12:02:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.622400", + "Timestamp": "2024-05-16T12:02:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.497400", + "Timestamp": "2024-05-16T12:02:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.593000", + "Timestamp": "2024-05-16T12:02:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.588000", + "Timestamp": "2024-05-16T12:02:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.463000", + "Timestamp": "2024-05-16T12:02:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087400", + "Timestamp": "2024-05-16T12:02:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083700", + "Timestamp": "2024-05-16T12:02:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027400", + "Timestamp": "2024-05-16T12:02:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.667200", + "Timestamp": "2024-05-16T12:02:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.662200", + "Timestamp": "2024-05-16T12:02:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.537200", + "Timestamp": "2024-05-16T12:02:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141200", + "Timestamp": "2024-05-16T12:02:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137500", + "Timestamp": "2024-05-16T12:02:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081200", + "Timestamp": "2024-05-16T12:02:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101800", + "Timestamp": "2024-05-16T12:02:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-16T12:02:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041800", + "Timestamp": "2024-05-16T12:02:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.413400", + "Timestamp": "2024-05-16T12:02:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.408400", + "Timestamp": "2024-05-16T12:02:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.283400", + "Timestamp": "2024-05-16T12:02:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.658000", + "Timestamp": "2024-05-16T12:02:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.653000", + "Timestamp": "2024-05-16T12:02:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.528000", + "Timestamp": "2024-05-16T12:02:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.923600", + "Timestamp": "2024-05-16T12:02:02.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.918600", + "Timestamp": "2024-05-16T12:02:02.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.793600", + "Timestamp": "2024-05-16T12:02:02.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.701400", + "Timestamp": "2024-05-16T12:02:01.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.984500", + "Timestamp": "2024-05-16T12:01:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.004200", + "Timestamp": "2024-05-16T12:01:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.979500", + "Timestamp": "2024-05-16T12:01:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.999200", + "Timestamp": "2024-05-16T12:01:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.854500", + "Timestamp": "2024-05-16T12:01:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.874200", + "Timestamp": "2024-05-16T12:01:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.890700", + "Timestamp": "2024-05-16T12:01:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.482900", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.477900", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.352900", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.671900", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.422500", + "Timestamp": "2024-05-16T12:01:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224200", + "Timestamp": "2024-05-16T12:01:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.416000", + "Timestamp": "2024-05-16T12:01:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.772900", + "Timestamp": "2024-05-16T12:01:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.355100", + "Timestamp": "2024-05-16T12:01:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.350100", + "Timestamp": "2024-05-16T12:01:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.225100", + "Timestamp": "2024-05-16T12:01:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.879400", + "Timestamp": "2024-05-16T12:01:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.874400", + "Timestamp": "2024-05-16T12:01:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.749400", + "Timestamp": "2024-05-16T12:01:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.861200", + "Timestamp": "2024-05-16T12:01:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.856200", + "Timestamp": "2024-05-16T12:01:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.731200", + "Timestamp": "2024-05-16T12:01:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.551400", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.546400", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.421400", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079400", + "Timestamp": "2024-05-16T12:01:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075700", + "Timestamp": "2024-05-16T12:01:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019400", + "Timestamp": "2024-05-16T12:01:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.227700", + "Timestamp": "2024-05-16T12:01:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.353300", + "Timestamp": "2024-05-16T12:01:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212600", + "Timestamp": "2024-05-16T12:01:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221200", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.716900", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.520800", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.515800", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.390800", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.705900", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.675900", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.575900", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.981600", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.511200", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.506200", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.381200", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.203200", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.981400", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.976400", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.851400", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.722500", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.268600", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.263600", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.138600", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089600", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085900", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029600", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.242400", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.237400", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.318000", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.313000", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.188000", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.476000", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.517900", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.594000", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.564000", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.464000", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148100", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144400", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.061800", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.056800", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.931800", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086300", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082600", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026300", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.624500", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.654500", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.569200", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.649500", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.564200", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.524500", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.439200", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.272300", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.547600", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117800", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114100", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057800", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091500", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087500", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031500", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.266500", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.236500", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136500", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092100", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032100", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102200", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098200", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042200", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.693500", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.688500", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.563500", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.389400", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294400", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289400", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164400", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.615200", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.610200", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.485200", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.102600", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.097600", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.972600", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.914500", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.198000", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193000", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068000", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.793700", + "Timestamp": "2024-05-16T12:01:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.788700", + "Timestamp": "2024-05-16T12:01:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.663700", + "Timestamp": "2024-05-16T12:01:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.435500", + "Timestamp": "2024-05-16T12:01:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.598800", + "Timestamp": "2024-05-16T12:01:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.964800", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.349900", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.344900", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219900", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.245200", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.240200", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115200", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271200", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266200", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141200", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.005000", + "Timestamp": "2024-05-16T12:01:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.992700", + "Timestamp": "2024-05-16T11:47:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.869500", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.327300", + "Timestamp": "2024-05-16T11:47:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.789400", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.759400", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.659400", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.826600", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.691400", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.686400", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.561400", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083400", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079700", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023400", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.708000", + "Timestamp": "2024-05-16T11:47:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.703000", + "Timestamp": "2024-05-16T11:47:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.578000", + "Timestamp": "2024-05-16T11:47:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.858100", + "Timestamp": "2024-05-16T11:47:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.853100", + "Timestamp": "2024-05-16T11:47:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.728100", + "Timestamp": "2024-05-16T11:47:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.056200", + "Timestamp": "2024-05-16T11:47:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.398700", + "Timestamp": "2024-05-16T11:47:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.393700", + "Timestamp": "2024-05-16T11:47:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.268700", + "Timestamp": "2024-05-16T11:47:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.921500", + "Timestamp": "2024-05-16T11:47:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.916500", + "Timestamp": "2024-05-16T11:47:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.791500", + "Timestamp": "2024-05-16T11:47:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072600", + "Timestamp": "2024-05-16T11:47:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043600", + "Timestamp": "2024-05-16T11:47:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012600", + "Timestamp": "2024-05-16T11:47:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273100", + "Timestamp": "2024-05-16T11:47:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268100", + "Timestamp": "2024-05-16T11:47:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143100", + "Timestamp": "2024-05-16T11:47:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104100", + "Timestamp": "2024-05-16T11:47:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106700", + "Timestamp": "2024-05-16T11:47:04.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T11:47:04.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046700", + "Timestamp": "2024-05-16T11:47:04.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.841100", + "Timestamp": "2024-05-16T11:47:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.825900", + "Timestamp": "2024-05-16T11:46:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.640600", + "Timestamp": "2024-05-16T11:46:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.635600", + "Timestamp": "2024-05-16T11:46:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.510600", + "Timestamp": "2024-05-16T11:46:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.364900", + "Timestamp": "2024-05-16T11:46:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.359900", + "Timestamp": "2024-05-16T11:46:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.234900", + "Timestamp": "2024-05-16T11:46:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.720400", + "Timestamp": "2024-05-16T11:46:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.715400", + "Timestamp": "2024-05-16T11:46:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.590400", + "Timestamp": "2024-05-16T11:46:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.368400", + "Timestamp": "2024-05-16T11:46:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.427600", + "Timestamp": "2024-05-16T11:46:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173800", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170100", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113800", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128400", + "Timestamp": "2024-05-16T11:46:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124700", + "Timestamp": "2024-05-16T11:46:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068400", + "Timestamp": "2024-05-16T11:46:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.614600", + "Timestamp": "2024-05-16T11:46:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330600", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325600", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200600", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119600", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.591300", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.586300", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.461300", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.898600", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.893600", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.768600", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.796700", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.742400", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.737400", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.612400", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.048400", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.677800", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.390800", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.249300", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.244300", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119300", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.741200", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.736200", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.611200", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.937400", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.932400", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.807400", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.541200", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.536200", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.411200", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135700", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132000", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075700", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.136100", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.131100", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.006100", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.519100", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.482500", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.870900", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.021900", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.016900", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.891900", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.004100", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.357300", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.352300", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.227300", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.814700", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.809700", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.684700", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.631200", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.626200", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.501200", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.699600", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.022600", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.017600", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.892600", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.887000", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.882000", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.757000", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120100", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116100", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060100", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.051700", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.046700", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.921700", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.899900", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.876600", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.309800", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.304800", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.179800", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.711100", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.681100", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.581100", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.506900", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.822200", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.235300", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.230300", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.105300", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.933800", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.928800", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.803800", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.593200", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.625100", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.588200", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.620100", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.463200", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.495100", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070000", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041000", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010000", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270700", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265700", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140700", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111600", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107900", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051600", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.581900", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.576900", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.451900", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.230900", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200700", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.195700", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070700", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.702500", + "Timestamp": "2024-05-16T11:46:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.452900", + "Timestamp": "2024-05-16T11:46:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.447900", + "Timestamp": "2024-05-16T11:46:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.322900", + "Timestamp": "2024-05-16T11:46:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.210500", + "Timestamp": "2024-05-16T11:46:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.205500", + "Timestamp": "2024-05-16T11:46:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080500", + "Timestamp": "2024-05-16T11:46:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.305300", + "Timestamp": "2024-05-16T11:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120300", + "Timestamp": "2024-05-16T11:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T11:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060300", + "Timestamp": "2024-05-16T11:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.718800", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.713800", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.588800", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.695800", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.690800", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.565800", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.457600", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.452600", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.327600", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.789100", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.759100", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.659100", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.711000", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.706000", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.581000", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.014300", + "Timestamp": "2024-05-16T11:46:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.767400", + "Timestamp": "2024-05-16T11:46:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.624400", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.619400", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.494400", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093100", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089100", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033100", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T11:32:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.991100", + "Timestamp": "2024-05-16T11:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.986100", + "Timestamp": "2024-05-16T11:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.861100", + "Timestamp": "2024-05-16T11:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-16T11:32:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088900", + "Timestamp": "2024-05-16T11:32:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032600", + "Timestamp": "2024-05-16T11:32:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.838000", + "Timestamp": "2024-05-16T11:32:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.833000", + "Timestamp": "2024-05-16T11:32:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.708000", + "Timestamp": "2024-05-16T11:32:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.831600", + "Timestamp": "2024-05-16T11:32:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.826600", + "Timestamp": "2024-05-16T11:32:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.701600", + "Timestamp": "2024-05-16T11:32:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T11:32:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102400", + "Timestamp": "2024-05-16T11:32:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046400", + "Timestamp": "2024-05-16T11:32:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.703400", + "Timestamp": "2024-05-16T11:32:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.698400", + "Timestamp": "2024-05-16T11:32:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.573400", + "Timestamp": "2024-05-16T11:32:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.783400", + "Timestamp": "2024-05-16T11:32:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.778400", + "Timestamp": "2024-05-16T11:32:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.653400", + "Timestamp": "2024-05-16T11:32:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.356300", + "Timestamp": "2024-05-16T11:32:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.730800", + "Timestamp": "2024-05-16T11:32:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.725800", + "Timestamp": "2024-05-16T11:32:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.600800", + "Timestamp": "2024-05-16T11:32:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.991300", + "Timestamp": "2024-05-16T11:31:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.986300", + "Timestamp": "2024-05-16T11:31:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.861300", + "Timestamp": "2024-05-16T11:31:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.943000", + "Timestamp": "2024-05-16T11:31:57.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.826300", + "Timestamp": "2024-05-16T11:31:57.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.682100", + "Timestamp": "2024-05-16T11:31:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.151100", + "Timestamp": "2024-05-16T11:31:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.121100", + "Timestamp": "2024-05-16T11:31:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.021100", + "Timestamp": "2024-05-16T11:31:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.338300", + "Timestamp": "2024-05-16T11:31:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.333300", + "Timestamp": "2024-05-16T11:31:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.208300", + "Timestamp": "2024-05-16T11:31:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.996200", + "Timestamp": "2024-05-16T11:31:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.121700", + "Timestamp": "2024-05-16T11:31:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.559700", + "Timestamp": "2024-05-16T11:31:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.736500", + "Timestamp": "2024-05-16T11:31:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.020900", + "Timestamp": "2024-05-16T11:31:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.015900", + "Timestamp": "2024-05-16T11:31:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.890900", + "Timestamp": "2024-05-16T11:31:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.366700", + "Timestamp": "2024-05-16T11:31:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.361700", + "Timestamp": "2024-05-16T11:31:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.236700", + "Timestamp": "2024-05-16T11:31:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.569000", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.564000", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.439000", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.302900", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.297900", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172900", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.059000", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.512200", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.219300", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.603900", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.598900", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.473900", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.763000", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.548900", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.543900", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.418900", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.956000", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.951000", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.826000", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.059500", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.800900", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.795900", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.670900", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.651600", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.840600", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126200", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122500", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066200", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.527800", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.522800", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.397800", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.134400", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.129400", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.004400", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270200", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265200", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140200", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162100", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158100", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.754000", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.749000", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.624000", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.414200", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.409200", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.284200", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.213100", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.662600", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048700", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.700700", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.794400", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.789400", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.664400", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.551800", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.546800", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.421800", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.461100", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.456100", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.331100", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.255600", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.250600", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125600", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.662100", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.657100", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.532100", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.787900", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.782900", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.657900", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.612700", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.582700", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.482700", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225300", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.412300", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.407300", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.282300", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.555800", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.550800", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.425800", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.278200", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146800", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143100", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086800", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149000", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145300", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089000", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.542800", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.537800", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.412800", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068700", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065000", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008700", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.516700", + "Timestamp": "2024-05-16T11:31:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.769800", + "Timestamp": "2024-05-16T11:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.754700", + "Timestamp": "2024-05-16T11:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.245500", + "Timestamp": "2024-05-16T11:31:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.240500", + "Timestamp": "2024-05-16T11:31:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115500", + "Timestamp": "2024-05-16T11:31:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.605200", + "Timestamp": "2024-05-16T11:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-16T11:17:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.282000", + "Timestamp": "2024-05-16T11:17:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088800", + "Timestamp": "2024-05-16T11:17:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085100", + "Timestamp": "2024-05-16T11:17:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028800", + "Timestamp": "2024-05-16T11:17:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.915100", + "Timestamp": "2024-05-16T11:17:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.910100", + "Timestamp": "2024-05-16T11:17:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.785100", + "Timestamp": "2024-05-16T11:17:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.109100", + "Timestamp": "2024-05-16T11:17:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.104100", + "Timestamp": "2024-05-16T11:17:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.979100", + "Timestamp": "2024-05-16T11:17:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.048200", + "Timestamp": "2024-05-16T11:17:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.635200", + "Timestamp": "2024-05-16T11:17:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062600", + "Timestamp": "2024-05-16T11:17:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-16T11:17:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-16T11:17:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168200", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164200", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.097100", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.092100", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967100", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.757900", + "Timestamp": "2024-05-16T11:17:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.282000", + "Timestamp": "2024-05-16T11:17:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.277000", + "Timestamp": "2024-05-16T11:17:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.152000", + "Timestamp": "2024-05-16T11:17:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.609000", + "Timestamp": "2024-05-16T11:17:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.639600", + "Timestamp": "2024-05-16T11:17:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.634600", + "Timestamp": "2024-05-16T11:17:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.509600", + "Timestamp": "2024-05-16T11:17:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.353300", + "Timestamp": "2024-05-16T11:17:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107000", + "Timestamp": "2024-05-16T11:17:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T11:17:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047000", + "Timestamp": "2024-05-16T11:17:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T11:17:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100500", + "Timestamp": "2024-05-16T11:17:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044200", + "Timestamp": "2024-05-16T11:17:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.310700", + "Timestamp": "2024-05-16T11:17:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.305700", + "Timestamp": "2024-05-16T11:17:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180700", + "Timestamp": "2024-05-16T11:17:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.495100", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.251600", + "Timestamp": "2024-05-16T11:17:02.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.246600", + "Timestamp": "2024-05-16T11:17:02.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121600", + "Timestamp": "2024-05-16T11:17:02.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.879400", + "Timestamp": "2024-05-16T11:16:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.844600", + "Timestamp": "2024-05-16T11:16:57.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103400", + "Timestamp": "2024-05-16T11:16:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099700", + "Timestamp": "2024-05-16T11:16:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043400", + "Timestamp": "2024-05-16T11:16:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.415900", + "Timestamp": "2024-05-16T11:16:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.506000", + "Timestamp": "2024-05-16T11:16:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.501000", + "Timestamp": "2024-05-16T11:16:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.376000", + "Timestamp": "2024-05-16T11:16:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.591900", + "Timestamp": "2024-05-16T11:16:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.586900", + "Timestamp": "2024-05-16T11:16:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.461900", + "Timestamp": "2024-05-16T11:16:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.776500", + "Timestamp": "2024-05-16T11:16:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.771500", + "Timestamp": "2024-05-16T11:16:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.646500", + "Timestamp": "2024-05-16T11:16:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.394000", + "Timestamp": "2024-05-16T11:16:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.389000", + "Timestamp": "2024-05-16T11:16:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.264000", + "Timestamp": "2024-05-16T11:16:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.247100", + "Timestamp": "2024-05-16T11:16:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.143900", + "Timestamp": "2024-05-16T11:16:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.138900", + "Timestamp": "2024-05-16T11:16:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.013900", + "Timestamp": "2024-05-16T11:16:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.484500", + "Timestamp": "2024-05-16T11:16:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.479500", + "Timestamp": "2024-05-16T11:16:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.354500", + "Timestamp": "2024-05-16T11:16:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.295400", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.290400", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165400", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.332000", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.327000", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.202000", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.274200", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269200", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144200", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.777800", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.357100", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.352100", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.227100", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.757000", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.752000", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.627000", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.285600", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.280600", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.155600", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.851500", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103200", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046900", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116500", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.685500", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.661000", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431500", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.257600", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.252600", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127600", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.785400", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.590800", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.425900", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.420900", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.295900", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.276700", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.277200", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.271700", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.272200", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146700", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147200", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270200", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265200", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140200", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114700", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054700", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.352300", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.347300", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.222300", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084400", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080700", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024400", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.659300", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.654300", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.529300", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.561700", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.556700", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.431700", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.239000", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.234000", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109000", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093400", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089700", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033400", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.267100", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262100", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137100", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.073300", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.043300", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.943300", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.327300", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.603500", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.598500", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.473500", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211500", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074900", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071200", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014900", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.893900", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.888900", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.763900", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.620400", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.188000", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097300", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137300", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037300", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118900", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115900", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058900", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.433300", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.630100", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.625100", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.500100", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.249100", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.219100", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119100", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.722800", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.938800", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.742000", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.712000", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.612000", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.251700", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.242000", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.492000", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.292900", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.287900", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162900", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.435600", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.621600", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.430600", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.616600", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.305600", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.491600", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.275800", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.245800", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145800", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.669000", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.664000", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.539000", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.164300", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.159300", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.034300", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.844400", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.839400", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.714400", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.050200", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.045200", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.920200", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.319400", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147800", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144100", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087800", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.480700", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.544800", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.539800", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.414800", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.495700", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.490700", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.365700", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.507400", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.502400", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.377400", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167200", + "Timestamp": "2024-05-16T11:16:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162200", + "Timestamp": "2024-05-16T11:16:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037200", + "Timestamp": "2024-05-16T11:16:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233400", + "Timestamp": "2024-05-16T11:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.560800", + "Timestamp": "2024-05-16T11:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.555800", + "Timestamp": "2024-05-16T11:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.430800", + "Timestamp": "2024-05-16T11:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.281800", + "Timestamp": "2024-05-16T11:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276800", + "Timestamp": "2024-05-16T11:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.151800", + "Timestamp": "2024-05-16T11:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.159700", + "Timestamp": "2024-05-16T11:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.154700", + "Timestamp": "2024-05-16T11:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.029700", + "Timestamp": "2024-05-16T11:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.504100", + "Timestamp": "2024-05-16T11:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121000", + "Timestamp": "2024-05-16T11:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117300", + "Timestamp": "2024-05-16T11:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061000", + "Timestamp": "2024-05-16T11:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.479200", + "Timestamp": "2024-05-16T11:16:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.474200", + "Timestamp": "2024-05-16T11:16:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.349200", + "Timestamp": "2024-05-16T11:16:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144900", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140900", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084900", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.757600", + "Timestamp": "2024-05-16T11:02:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.791600", + "Timestamp": "2024-05-16T11:02:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.752600", + "Timestamp": "2024-05-16T11:02:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.786600", + "Timestamp": "2024-05-16T11:02:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.627600", + "Timestamp": "2024-05-16T11:02:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.661600", + "Timestamp": "2024-05-16T11:02:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.778800", + "Timestamp": "2024-05-16T11:02:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.119100", + "Timestamp": "2024-05-16T11:02:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.114100", + "Timestamp": "2024-05-16T11:02:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.989100", + "Timestamp": "2024-05-16T11:02:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.886500", + "Timestamp": "2024-05-16T11:02:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.845100", + "Timestamp": "2024-05-16T11:02:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.266300", + "Timestamp": "2024-05-16T11:02:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.261300", + "Timestamp": "2024-05-16T11:02:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136300", + "Timestamp": "2024-05-16T11:02:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.442400", + "Timestamp": "2024-05-16T11:02:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.199300", + "Timestamp": "2024-05-16T11:02:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.194300", + "Timestamp": "2024-05-16T11:02:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069300", + "Timestamp": "2024-05-16T11:02:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220000", + "Timestamp": "2024-05-16T11:02:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.257700", + "Timestamp": "2024-05-16T11:02:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.126100", + "Timestamp": "2024-05-16T11:02:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.121100", + "Timestamp": "2024-05-16T11:02:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.996100", + "Timestamp": "2024-05-16T11:02:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.465000", + "Timestamp": "2024-05-16T11:02:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144400", + "Timestamp": "2024-05-16T11:02:04.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140700", + "Timestamp": "2024-05-16T11:02:04.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084400", + "Timestamp": "2024-05-16T11:02:04.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072700", + "Timestamp": "2024-05-16T11:02:04.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069000", + "Timestamp": "2024-05-16T11:02:04.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012700", + "Timestamp": "2024-05-16T11:02:04.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.542900", + "Timestamp": "2024-05-16T11:02:02.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.537900", + "Timestamp": "2024-05-16T11:02:02.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.412900", + "Timestamp": "2024-05-16T11:02:02.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.875200", + "Timestamp": "2024-05-16T11:02:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.302100", + "Timestamp": "2024-05-16T11:01:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071400", + "Timestamp": "2024-05-16T11:01:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067700", + "Timestamp": "2024-05-16T11:01:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011400", + "Timestamp": "2024-05-16T11:01:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.979900", + "Timestamp": "2024-05-16T11:01:51.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.571900", + "Timestamp": "2024-05-16T11:01:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.566900", + "Timestamp": "2024-05-16T11:01:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.441900", + "Timestamp": "2024-05-16T11:01:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.955100", + "Timestamp": "2024-05-16T11:01:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.950100", + "Timestamp": "2024-05-16T11:01:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.825100", + "Timestamp": "2024-05-16T11:01:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.679400", + "Timestamp": "2024-05-16T11:01:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.122100", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.117100", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.992100", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.289900", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.284900", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159900", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.456000", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.757900", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206200", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.873300", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.275900", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270900", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145900", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.767200", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.762200", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.637200", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118400", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114700", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058400", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.640200", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.610200", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.510200", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.615300", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.345700", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.340700", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.215700", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.290700", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.285700", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.160700", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.251500", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.246500", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121500", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.877300", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.796600", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.766600", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.666600", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.163100", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.158100", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.033100", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.009500", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.004500", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.879500", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.290900", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.285900", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.160900", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.538200", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.421500", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.416500", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.291500", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.347500", + "Timestamp": "2024-05-16T11:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.834200", + "Timestamp": "2024-05-16T11:01:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.055900", + "Timestamp": "2024-05-16T11:01:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.842500", + "Timestamp": "2024-05-16T11:01:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.837500", + "Timestamp": "2024-05-16T11:01:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.712500", + "Timestamp": "2024-05-16T11:01:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145800", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141800", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085800", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070100", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041100", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010100", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091700", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088000", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031700", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.700700", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.695700", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.570700", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165700", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161700", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.417000", + "Timestamp": "2024-05-16T11:01:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.301200", + "Timestamp": "2024-05-16T11:01:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.827400", + "Timestamp": "2024-05-16T11:01:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.339300", + "Timestamp": "2024-05-16T11:01:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334300", + "Timestamp": "2024-05-16T11:01:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.209300", + "Timestamp": "2024-05-16T11:01:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.809600", + "Timestamp": "2024-05-16T10:55:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.809600", + "Timestamp": "2024-05-16T10:55:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.732700", + "Timestamp": "2024-05-16T10:47:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.037200", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.118900", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.088900", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.988900", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.898900", + "Timestamp": "2024-05-16T10:47:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.968400", + "Timestamp": "2024-05-16T10:47:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.963400", + "Timestamp": "2024-05-16T10:47:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.838400", + "Timestamp": "2024-05-16T10:47:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.076800", + "Timestamp": "2024-05-16T10:47:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.546800", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.541800", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.416800", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T10:47:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-16T10:47:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044200", + "Timestamp": "2024-05-16T10:47:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.504000", + "Timestamp": "2024-05-16T10:47:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.499000", + "Timestamp": "2024-05-16T10:47:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.374000", + "Timestamp": "2024-05-16T10:47:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.702200", + "Timestamp": "2024-05-16T10:47:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.358500", + "Timestamp": "2024-05-16T10:47:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.328500", + "Timestamp": "2024-05-16T10:47:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.228500", + "Timestamp": "2024-05-16T10:47:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.503600", + "Timestamp": "2024-05-16T10:47:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.498600", + "Timestamp": "2024-05-16T10:47:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.373600", + "Timestamp": "2024-05-16T10:47:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.256100", + "Timestamp": "2024-05-16T10:47:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.266100", + "Timestamp": "2024-05-16T10:47:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.903200", + "Timestamp": "2024-05-16T10:47:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.863000", + "Timestamp": "2024-05-16T10:46:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.972500", + "Timestamp": "2024-05-16T10:46:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.822500", + "Timestamp": "2024-05-16T10:46:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207800", + "Timestamp": "2024-05-16T10:46:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.809800", + "Timestamp": "2024-05-16T10:46:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.804800", + "Timestamp": "2024-05-16T10:46:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.679800", + "Timestamp": "2024-05-16T10:46:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.587900", + "Timestamp": "2024-05-16T10:46:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.599200", + "Timestamp": "2024-05-16T10:46:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.582900", + "Timestamp": "2024-05-16T10:46:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.594200", + "Timestamp": "2024-05-16T10:46:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.457900", + "Timestamp": "2024-05-16T10:46:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.469200", + "Timestamp": "2024-05-16T10:46:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.007200", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.002200", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.877200", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.422100", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.435100", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.420500", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.561200", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.412000", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215200", + "Timestamp": "2024-05-16T10:46:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.511800", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441100", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.621200", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.616200", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.491200", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.717900", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.373200", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.368200", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.243200", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.188500", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.158500", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.058500", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.620200", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.615200", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.490200", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.625900", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.620900", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.495900", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.176000", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.171000", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.046000", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.049100", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.251200", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.246200", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.121200", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.209700", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.628600", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.623600", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.498600", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.422900", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.644300", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.614300", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.514300", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092000", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088300", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032000", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109100", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052800", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.283900", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.278900", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.153900", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.275400", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270400", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145400", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.807500", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.802500", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.677500", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.237800", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232800", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107800", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049900", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.261700", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.855400", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.850400", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.725400", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.751800", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143200", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139200", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083200", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.807700", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.434900", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.426200", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.421200", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.296200", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.217400", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.618000", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.048600", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.043600", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.918600", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.880500", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.538200", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079400", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075700", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019400", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.007200", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.465600", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.218700", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.213700", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.088700", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.633600", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.628600", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.503600", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.484500", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.479500", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.354500", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.464300", + "Timestamp": "2024-05-16T10:46:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.671600", + "Timestamp": "2024-05-16T10:46:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.666600", + "Timestamp": "2024-05-16T10:46:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.541600", + "Timestamp": "2024-05-16T10:46:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.483500", + "Timestamp": "2024-05-16T10:46:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.785900", + "Timestamp": "2024-05-16T10:46:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.780900", + "Timestamp": "2024-05-16T10:46:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.655900", + "Timestamp": "2024-05-16T10:46:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.237200", + "Timestamp": "2024-05-16T10:46:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232200", + "Timestamp": "2024-05-16T10:46:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-16T10:46:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.295200", + "Timestamp": "2024-05-16T10:32:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.712100", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.786000", + "Timestamp": "2024-05-16T10:32:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.276000", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.271000", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146000", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.229500", + "Timestamp": "2024-05-16T10:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.224500", + "Timestamp": "2024-05-16T10:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099500", + "Timestamp": "2024-05-16T10:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.846000", + "Timestamp": "2024-05-16T10:32:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.841000", + "Timestamp": "2024-05-16T10:32:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.716000", + "Timestamp": "2024-05-16T10:32:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.583100", + "Timestamp": "2024-05-16T10:32:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.578100", + "Timestamp": "2024-05-16T10:32:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.453100", + "Timestamp": "2024-05-16T10:32:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218700", + "Timestamp": "2024-05-16T10:32:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.441200", + "Timestamp": "2024-05-16T10:32:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.411200", + "Timestamp": "2024-05-16T10:32:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.311200", + "Timestamp": "2024-05-16T10:32:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.478100", + "Timestamp": "2024-05-16T10:32:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.972400", + "Timestamp": "2024-05-16T10:31:57.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.942400", + "Timestamp": "2024-05-16T10:31:57.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.842400", + "Timestamp": "2024-05-16T10:31:57.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.649700", + "Timestamp": "2024-05-16T10:31:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.644700", + "Timestamp": "2024-05-16T10:31:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.519700", + "Timestamp": "2024-05-16T10:31:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.326400", + "Timestamp": "2024-05-16T10:31:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.321400", + "Timestamp": "2024-05-16T10:31:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.196400", + "Timestamp": "2024-05-16T10:31:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.328200", + "Timestamp": "2024-05-16T10:31:51.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298200", + "Timestamp": "2024-05-16T10:31:51.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.198200", + "Timestamp": "2024-05-16T10:31:51.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.744400", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.094300", + "Timestamp": "2024-05-16T10:31:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.089300", + "Timestamp": "2024-05-16T10:31:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.964300", + "Timestamp": "2024-05-16T10:31:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.600000", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.596300", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.540000", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.994000", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.989000", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.864000", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.462900", + "Timestamp": "2024-05-16T10:31:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.457900", + "Timestamp": "2024-05-16T10:31:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.332900", + "Timestamp": "2024-05-16T10:31:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.648000", + "Timestamp": "2024-05-16T10:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.649000", + "Timestamp": "2024-05-16T10:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.862300", + "Timestamp": "2024-05-16T10:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220900", + "Timestamp": "2024-05-16T10:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.174200", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.266900", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.169200", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.261900", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.044200", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.136900", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.043900", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.727300", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.717300", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.824900", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.353700", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.348700", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.223700", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.108400", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.745300", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.343700", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.338700", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.213700", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099800", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043800", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.584600", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.579600", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.454600", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.125100", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.095100", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.995100", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.979900", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114800", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154800", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054800", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.876800", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.854800", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.849800", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.724800", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.961500", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.754100", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.749100", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.624100", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.320200", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.315200", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.190200", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.657500", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.652500", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.527500", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.918000", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.913000", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.788000", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078400", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074700", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018400", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.687000", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.682000", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.557000", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.414600", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.409600", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.284600", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.846700", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.092400", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.971600", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.361900", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.796000", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.791000", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.666000", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.485900", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.042900", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.037900", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.912900", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.685600", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.680600", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.555600", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.011100", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.006100", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.881100", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.458600", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.453600", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.328600", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.518100", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.496900", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.613500", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.608500", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.483500", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.236400", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089000", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085300", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029000", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.943100", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.938100", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.813100", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.456600", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.451600", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.326600", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.355400", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.350400", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.225400", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.904600", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.310400", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093700", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089700", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033700", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.536000", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.531000", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.406000", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044000", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.999300", + "Timestamp": "2024-05-16T10:31:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.562200", + "Timestamp": "2024-05-16T10:31:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.557200", + "Timestamp": "2024-05-16T10:31:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.432200", + "Timestamp": "2024-05-16T10:31:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T10:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099100", + "Timestamp": "2024-05-16T10:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042800", + "Timestamp": "2024-05-16T10:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109600", + "Timestamp": "2024-05-16T10:31:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T10:31:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049600", + "Timestamp": "2024-05-16T10:31:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.924400", + "Timestamp": "2024-05-16T10:31:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.613000", + "Timestamp": "2024-05-16T10:19:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.225300", + "Timestamp": "2024-05-16T10:19:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.238300", + "Timestamp": "2024-05-16T10:19:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.871500", + "Timestamp": "2024-05-16T10:19:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.482200", + "Timestamp": "2024-05-16T10:19:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.866500", + "Timestamp": "2024-05-16T10:19:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.477200", + "Timestamp": "2024-05-16T10:19:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.741500", + "Timestamp": "2024-05-16T10:19:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.352200", + "Timestamp": "2024-05-16T10:19:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.294900", + "Timestamp": "2024-05-16T10:17:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.685100", + "Timestamp": "2024-05-16T10:17:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083400", + "Timestamp": "2024-05-16T10:17:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079700", + "Timestamp": "2024-05-16T10:17:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023400", + "Timestamp": "2024-05-16T10:17:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124800", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.061500", + "Timestamp": "2024-05-16T10:17:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069900", + "Timestamp": "2024-05-16T10:17:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066200", + "Timestamp": "2024-05-16T10:17:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009900", + "Timestamp": "2024-05-16T10:17:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.309200", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136100", + "Timestamp": "2024-05-16T10:17:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132100", + "Timestamp": "2024-05-16T10:17:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076100", + "Timestamp": "2024-05-16T10:17:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.592100", + "Timestamp": "2024-05-16T10:17:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.562100", + "Timestamp": "2024-05-16T10:17:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.462100", + "Timestamp": "2024-05-16T10:17:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141800", + "Timestamp": "2024-05-16T10:17:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138100", + "Timestamp": "2024-05-16T10:17:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081800", + "Timestamp": "2024-05-16T10:17:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.786300", + "Timestamp": "2024-05-16T10:17:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.781300", + "Timestamp": "2024-05-16T10:17:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.656300", + "Timestamp": "2024-05-16T10:17:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.718000", + "Timestamp": "2024-05-16T10:17:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.713000", + "Timestamp": "2024-05-16T10:17:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.588000", + "Timestamp": "2024-05-16T10:17:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108500", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048500", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.887000", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.882000", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.757000", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.258400", + "Timestamp": "2024-05-16T10:17:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.253400", + "Timestamp": "2024-05-16T10:17:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.128400", + "Timestamp": "2024-05-16T10:17:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.122700", + "Timestamp": "2024-05-16T10:17:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.695700", + "Timestamp": "2024-05-16T10:17:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.665700", + "Timestamp": "2024-05-16T10:17:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.565700", + "Timestamp": "2024-05-16T10:17:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.806700", + "Timestamp": "2024-05-16T10:17:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.943200", + "Timestamp": "2024-05-16T10:17:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.618000", + "Timestamp": "2024-05-16T10:17:01.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.621200", + "Timestamp": "2024-05-16T10:16:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.616200", + "Timestamp": "2024-05-16T10:16:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.491200", + "Timestamp": "2024-05-16T10:16:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-16T10:16:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098900", + "Timestamp": "2024-05-16T10:16:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042600", + "Timestamp": "2024-05-16T10:16:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216400", + "Timestamp": "2024-05-16T10:16:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.946100", + "Timestamp": "2024-05-16T10:16:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.734000", + "Timestamp": "2024-05-16T10:16:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.729000", + "Timestamp": "2024-05-16T10:16:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.604000", + "Timestamp": "2024-05-16T10:16:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.546500", + "Timestamp": "2024-05-16T10:16:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223800", + "Timestamp": "2024-05-16T10:16:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.369300", + "Timestamp": "2024-05-16T10:16:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.364300", + "Timestamp": "2024-05-16T10:16:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.239300", + "Timestamp": "2024-05-16T10:16:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.562700", + "Timestamp": "2024-05-16T10:16:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.559000", + "Timestamp": "2024-05-16T10:16:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.502700", + "Timestamp": "2024-05-16T10:16:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.989000", + "Timestamp": "2024-05-16T10:16:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.436800", + "Timestamp": "2024-05-16T10:16:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.431800", + "Timestamp": "2024-05-16T10:16:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.306800", + "Timestamp": "2024-05-16T10:16:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.547300", + "Timestamp": "2024-05-16T10:16:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.542300", + "Timestamp": "2024-05-16T10:16:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.417300", + "Timestamp": "2024-05-16T10:16:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222100", + "Timestamp": "2024-05-16T10:16:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.429600", + "Timestamp": "2024-05-16T10:16:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.424600", + "Timestamp": "2024-05-16T10:16:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.299600", + "Timestamp": "2024-05-16T10:16:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.880800", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.875800", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.750800", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.898200", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.893200", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.768200", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.696100", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.705100", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.596500", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.585600", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.580600", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.455600", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.580000", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.575000", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.450000", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261100", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.256100", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131100", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.115000", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.687700", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.682700", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.557700", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.243800", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223600", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.502400", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.243500", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.238500", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113500", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.612000", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.784400", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.317400", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.312400", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.187400", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.286200", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.763300", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.086200", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.081200", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.956200", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.870500", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.865500", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.740500", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.894900", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.581300", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.581300", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.576300", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.576300", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.451300", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.451300", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.356300", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.540500", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.510500", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.410500", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.921000", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.975800", + "Timestamp": "2024-05-16T10:16:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.978400", + "Timestamp": "2024-05-16T10:16:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.511100", + "Timestamp": "2024-05-16T10:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.506100", + "Timestamp": "2024-05-16T10:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.381100", + "Timestamp": "2024-05-16T10:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.895400", + "Timestamp": "2024-05-16T10:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.700900", + "Timestamp": "2024-05-16T10:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.695900", + "Timestamp": "2024-05-16T10:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.570900", + "Timestamp": "2024-05-16T10:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131500", + "Timestamp": "2024-05-16T10:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127500", + "Timestamp": "2024-05-16T10:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071500", + "Timestamp": "2024-05-16T10:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.218300", + "Timestamp": "2024-05-16T10:16:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.554400", + "Timestamp": "2024-05-16T10:16:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.549400", + "Timestamp": "2024-05-16T10:16:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.424400", + "Timestamp": "2024-05-16T10:16:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.302700", + "Timestamp": "2024-05-16T10:16:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.297700", + "Timestamp": "2024-05-16T10:16:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172700", + "Timestamp": "2024-05-16T10:16:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.682900", + "Timestamp": "2024-05-16T10:16:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.677900", + "Timestamp": "2024-05-16T10:16:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.552900", + "Timestamp": "2024-05-16T10:16:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.579600", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.574600", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.449600", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.587700", + "Timestamp": "2024-05-16T10:02:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.557700", + "Timestamp": "2024-05-16T10:02:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.457700", + "Timestamp": "2024-05-16T10:02:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.812300", + "Timestamp": "2024-05-16T10:02:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.807300", + "Timestamp": "2024-05-16T10:02:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.682300", + "Timestamp": "2024-05-16T10:02:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.406800", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.904100", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.899100", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.774100", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.742700", + "Timestamp": "2024-05-16T10:02:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.737700", + "Timestamp": "2024-05-16T10:02:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.612700", + "Timestamp": "2024-05-16T10:02:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.716300", + "Timestamp": "2024-05-16T10:02:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.711300", + "Timestamp": "2024-05-16T10:02:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.586300", + "Timestamp": "2024-05-16T10:02:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.003800", + "Timestamp": "2024-05-16T10:02:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.525400", + "Timestamp": "2024-05-16T10:02:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.520400", + "Timestamp": "2024-05-16T10:02:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.395400", + "Timestamp": "2024-05-16T10:02:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084300", + "Timestamp": "2024-05-16T10:02:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080600", + "Timestamp": "2024-05-16T10:02:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024300", + "Timestamp": "2024-05-16T10:02:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.300700", + "Timestamp": "2024-05-16T10:02:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.340700", + "Timestamp": "2024-05-16T10:02:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.240700", + "Timestamp": "2024-05-16T10:02:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.916200", + "Timestamp": "2024-05-16T10:02:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.281700", + "Timestamp": "2024-05-16T10:02:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.251700", + "Timestamp": "2024-05-16T10:02:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.151700", + "Timestamp": "2024-05-16T10:02:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.662100", + "Timestamp": "2024-05-16T10:02:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.230800", + "Timestamp": "2024-05-16T10:02:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.225800", + "Timestamp": "2024-05-16T10:02:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.100800", + "Timestamp": "2024-05-16T10:02:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.009900", + "Timestamp": "2024-05-16T10:01:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.834300", + "Timestamp": "2024-05-16T10:01:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.509400", + "Timestamp": "2024-05-16T10:01:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.968300", + "Timestamp": "2024-05-16T10:01:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.963300", + "Timestamp": "2024-05-16T10:01:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.838300", + "Timestamp": "2024-05-16T10:01:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093400", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037100", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.849600", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.598800", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.568800", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.468800", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.987800", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.982800", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.857800", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.705700", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.718800", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.700700", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.713800", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.575700", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.588800", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.361100", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.356100", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.231100", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.579000", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.283100", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.126600", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.030600", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.680700", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.823800", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.650700", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.793800", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.550700", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.693800", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.575200", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.570200", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.445200", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.291400", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.286400", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.161400", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093500", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089500", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033500", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.842800", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.655300", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.625300", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.525300", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.986100", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.981100", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.856100", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.208800", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.211100", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.691900", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.966100", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.927600", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.590500", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.585500", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.460500", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.489300", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132400", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128700", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072400", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.848700", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.843700", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.718700", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.240800", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.235800", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.110800", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083400", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079700", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023400", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095400", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091700", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035400", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102200", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098500", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042200", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.656600", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.234200", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.230600", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142600", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138900", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082600", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.635800", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.630800", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.505800", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.446200", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.441200", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.316200", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.485800", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.480800", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.355800", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138400", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134400", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078400", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.762400", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.757400", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.632400", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082900", + "Timestamp": "2024-05-16T10:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079200", + "Timestamp": "2024-05-16T10:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022900", + "Timestamp": "2024-05-16T10:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.481100", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.474900", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.469900", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.344900", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.468900", + "Timestamp": "2024-05-16T10:01:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.463900", + "Timestamp": "2024-05-16T10:01:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.338900", + "Timestamp": "2024-05-16T10:01:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.460900", + "Timestamp": "2024-05-16T10:01:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.684500", + "Timestamp": "2024-05-16T10:01:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.683100", + "Timestamp": "2024-05-16T10:01:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.443600", + "Timestamp": "2024-05-16T10:01:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.438600", + "Timestamp": "2024-05-16T10:01:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.313600", + "Timestamp": "2024-05-16T10:01:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.235900", + "Timestamp": "2024-05-16T10:01:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.128900", + "Timestamp": "2024-05-16T10:01:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.123900", + "Timestamp": "2024-05-16T10:01:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.998900", + "Timestamp": "2024-05-16T10:01:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.216400", + "Timestamp": "2024-05-16T10:01:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136300", + "Timestamp": "2024-05-16T10:01:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132300", + "Timestamp": "2024-05-16T10:01:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076300", + "Timestamp": "2024-05-16T10:01:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097400", + "Timestamp": "2024-05-16T10:01:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093400", + "Timestamp": "2024-05-16T10:01:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037400", + "Timestamp": "2024-05-16T10:01:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070100", + "Timestamp": "2024-05-16T10:00:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072100", + "Timestamp": "2024-05-16T10:00:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072500", + "Timestamp": "2024-05-16T10:00:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041100", + "Timestamp": "2024-05-16T10:00:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043100", + "Timestamp": "2024-05-16T10:00:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043500", + "Timestamp": "2024-05-16T10:00:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010100", + "Timestamp": "2024-05-16T10:00:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012100", + "Timestamp": "2024-05-16T10:00:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012500", + "Timestamp": "2024-05-16T10:00:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.357300", + "Timestamp": "2024-05-16T09:59:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.356900", + "Timestamp": "2024-05-16T09:59:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.352300", + "Timestamp": "2024-05-16T09:59:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.351900", + "Timestamp": "2024-05-16T09:59:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.227300", + "Timestamp": "2024-05-16T09:59:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.226900", + "Timestamp": "2024-05-16T09:59:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.473100", + "Timestamp": "2024-05-16T09:59:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.486300", + "Timestamp": "2024-05-16T09:59:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.172300", + "Timestamp": "2024-05-16T09:55:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.172300", + "Timestamp": "2024-05-16T09:55:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.167300", + "Timestamp": "2024-05-16T09:55:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.167300", + "Timestamp": "2024-05-16T09:55:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.042300", + "Timestamp": "2024-05-16T09:55:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.042300", + "Timestamp": "2024-05-16T09:55:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.930300", + "Timestamp": "2024-05-16T09:55:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.930300", + "Timestamp": "2024-05-16T09:55:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.930300", + "Timestamp": "2024-05-16T09:55:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.715600", + "Timestamp": "2024-05-16T09:47:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429000", + "Timestamp": "2024-05-16T09:47:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.734000", + "Timestamp": "2024-05-16T09:47:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.569600", + "Timestamp": "2024-05-16T09:47:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.729000", + "Timestamp": "2024-05-16T09:47:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.564600", + "Timestamp": "2024-05-16T09:47:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.604000", + "Timestamp": "2024-05-16T09:47:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.439600", + "Timestamp": "2024-05-16T09:47:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.646000", + "Timestamp": "2024-05-16T09:47:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.616000", + "Timestamp": "2024-05-16T09:47:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.516000", + "Timestamp": "2024-05-16T09:47:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077000", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073300", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017000", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071500", + "Timestamp": "2024-05-16T09:47:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067800", + "Timestamp": "2024-05-16T09:47:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011500", + "Timestamp": "2024-05-16T09:47:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.279700", + "Timestamp": "2024-05-16T09:47:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.274700", + "Timestamp": "2024-05-16T09:47:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149700", + "Timestamp": "2024-05-16T09:47:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.856300", + "Timestamp": "2024-05-16T09:47:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.195300", + "Timestamp": "2024-05-16T09:47:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.190300", + "Timestamp": "2024-05-16T09:47:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.065300", + "Timestamp": "2024-05-16T09:47:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091200", + "Timestamp": "2024-05-16T09:47:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087500", + "Timestamp": "2024-05-16T09:47:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031200", + "Timestamp": "2024-05-16T09:47:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.339500", + "Timestamp": "2024-05-16T09:47:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334500", + "Timestamp": "2024-05-16T09:47:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.209500", + "Timestamp": "2024-05-16T09:47:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.533400", + "Timestamp": "2024-05-16T09:47:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.528400", + "Timestamp": "2024-05-16T09:47:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.403400", + "Timestamp": "2024-05-16T09:47:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127200", + "Timestamp": "2024-05-16T09:47:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123500", + "Timestamp": "2024-05-16T09:47:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067200", + "Timestamp": "2024-05-16T09:47:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.775500", + "Timestamp": "2024-05-16T09:47:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.892800", + "Timestamp": "2024-05-16T09:47:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.862800", + "Timestamp": "2024-05-16T09:47:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.762800", + "Timestamp": "2024-05-16T09:47:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.715100", + "Timestamp": "2024-05-16T09:46:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.710100", + "Timestamp": "2024-05-16T09:46:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.585100", + "Timestamp": "2024-05-16T09:46:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.169100", + "Timestamp": "2024-05-16T09:46:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.963000", + "Timestamp": "2024-05-16T09:46:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.958000", + "Timestamp": "2024-05-16T09:46:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.833000", + "Timestamp": "2024-05-16T09:46:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.509300", + "Timestamp": "2024-05-16T09:46:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.504300", + "Timestamp": "2024-05-16T09:46:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.379300", + "Timestamp": "2024-05-16T09:46:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.321500", + "Timestamp": "2024-05-16T09:46:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.316500", + "Timestamp": "2024-05-16T09:46:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.191500", + "Timestamp": "2024-05-16T09:46:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.070600", + "Timestamp": "2024-05-16T09:46:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084200", + "Timestamp": "2024-05-16T09:46:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080500", + "Timestamp": "2024-05-16T09:46:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024200", + "Timestamp": "2024-05-16T09:46:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.335300", + "Timestamp": "2024-05-16T09:46:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.330300", + "Timestamp": "2024-05-16T09:46:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.205300", + "Timestamp": "2024-05-16T09:46:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.333900", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.328900", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.203900", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.678400", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.957600", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.652600", + "Timestamp": "2024-05-16T09:46:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.647600", + "Timestamp": "2024-05-16T09:46:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.522600", + "Timestamp": "2024-05-16T09:46:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220400", + "Timestamp": "2024-05-16T09:46:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.335400", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.700000", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.695000", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.570000", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.516500", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.517200", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.436500", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.406500", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.306500", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.074300", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.820100", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.815100", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.690100", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.648900", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.643900", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.518900", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440800", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.647100", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.617100", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.517100", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.623700", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.820300", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.475800", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.134000", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.123800", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.777700", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.747700", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.647700", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.705100", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.700100", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.575100", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.533300", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.528300", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.403300", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.427800", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.422800", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.297800", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.079500", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.477500", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.447500", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.347500", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.547200", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.542200", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.417200", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.981200", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.976200", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.851200", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.469100", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.264800", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.234800", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134800", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.258900", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.228900", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128900", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.491200", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.486200", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.361200", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157300", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153600", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097300", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047500", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139500", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135800", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079500", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212300", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.300800", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.295800", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.170800", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.593900", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.588900", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.463900", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.659700", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.654700", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.529700", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.513800", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.483800", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.383800", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.464500", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.459500", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.334500", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.730400", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.725400", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.600400", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.280300", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.275300", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150300", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.419500", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431200", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261000", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.256000", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131000", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.247500", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.242500", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.117500", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.377000", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372000", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.247000", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.445700", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.440700", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.315700", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108800", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105100", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048800", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042900", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.369700", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.737900", + "Timestamp": "2024-05-16T09:46:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.732900", + "Timestamp": "2024-05-16T09:46:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.607900", + "Timestamp": "2024-05-16T09:46:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.122700", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.824300", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.819300", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.694300", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.608500", + "Timestamp": "2024-05-16T09:46:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.523900", + "Timestamp": "2024-05-16T09:46:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.518900", + "Timestamp": "2024-05-16T09:46:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.393900", + "Timestamp": "2024-05-16T09:46:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T09:46:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101300", + "Timestamp": "2024-05-16T09:46:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045000", + "Timestamp": "2024-05-16T09:46:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.457800", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.786200", + "Timestamp": "2024-05-16T09:32:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.781200", + "Timestamp": "2024-05-16T09:32:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.656200", + "Timestamp": "2024-05-16T09:32:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.793900", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.862400", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.788900", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.857400", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.663900", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.732400", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.069200", + "Timestamp": "2024-05-16T09:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.064200", + "Timestamp": "2024-05-16T09:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.939200", + "Timestamp": "2024-05-16T09:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136500", + "Timestamp": "2024-05-16T09:32:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132800", + "Timestamp": "2024-05-16T09:32:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076500", + "Timestamp": "2024-05-16T09:32:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.055500", + "Timestamp": "2024-05-16T09:32:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.888100", + "Timestamp": "2024-05-16T09:32:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.275700", + "Timestamp": "2024-05-16T09:32:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.315700", + "Timestamp": "2024-05-16T09:32:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.215700", + "Timestamp": "2024-05-16T09:32:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.230300", + "Timestamp": "2024-05-16T09:32:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.437200", + "Timestamp": "2024-05-16T09:32:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.432200", + "Timestamp": "2024-05-16T09:32:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.307200", + "Timestamp": "2024-05-16T09:32:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.191100", + "Timestamp": "2024-05-16T09:32:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.186100", + "Timestamp": "2024-05-16T09:32:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.061100", + "Timestamp": "2024-05-16T09:32:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219200", + "Timestamp": "2024-05-16T09:32:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128200", + "Timestamp": "2024-05-16T09:32:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124500", + "Timestamp": "2024-05-16T09:32:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068200", + "Timestamp": "2024-05-16T09:32:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.943600", + "Timestamp": "2024-05-16T09:31:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.649400", + "Timestamp": "2024-05-16T09:31:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.644400", + "Timestamp": "2024-05-16T09:31:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.519400", + "Timestamp": "2024-05-16T09:31:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.674600", + "Timestamp": "2024-05-16T09:31:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.524300", + "Timestamp": "2024-05-16T09:31:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.519300", + "Timestamp": "2024-05-16T09:31:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.394300", + "Timestamp": "2024-05-16T09:31:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.351100", + "Timestamp": "2024-05-16T09:31:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.346100", + "Timestamp": "2024-05-16T09:31:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.221100", + "Timestamp": "2024-05-16T09:31:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.882700", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.639800", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.634800", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.509800", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.538400", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.340000", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.335000", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.210000", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.325000", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.773600", + "Timestamp": "2024-05-16T09:31:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.878800", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.296800", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.291800", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.166800", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.961400", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.602800", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113100", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109100", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053100", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.105100", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.100100", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.975100", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.438600", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.433600", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.308600", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.680400", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.675400", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.550400", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.428400", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.398400", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.298400", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.493400", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.211100", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.868300", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.863300", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.738300", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.174500", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.144500", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.044500", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423600", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301200", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296200", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171200", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.807400", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.777400", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.677400", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.934400", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.929400", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.804400", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.110800", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.993600", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.961200", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.956200", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.831200", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.980400", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140600", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136900", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080600", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.713000", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.373200", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.368200", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.243200", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.126200", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.244300", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.239300", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.114300", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.305800", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.614700", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.609700", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.484700", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.368800", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.363800", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.238800", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.731900", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.608500", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.642600", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100500", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044200", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.835300", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.435300", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131300", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127300", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071300", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.453000", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.448000", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.323000", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143000", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130600", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139000", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126600", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083000", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070600", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220600", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.637600", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.888700", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.310900", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.280900", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180900", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.121000", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.091000", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.991000", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.728200", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.923300", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.918300", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.793300", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.886700", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.188100", + "Timestamp": "2024-05-16T09:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.720500", + "Timestamp": "2024-05-16T09:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.865000", + "Timestamp": "2024-05-16T09:31:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.860000", + "Timestamp": "2024-05-16T09:31:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.735000", + "Timestamp": "2024-05-16T09:31:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.373600", + "Timestamp": "2024-05-16T09:31:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.368600", + "Timestamp": "2024-05-16T09:31:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.243600", + "Timestamp": "2024-05-16T09:31:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.549900", + "Timestamp": "2024-05-16T09:31:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.544900", + "Timestamp": "2024-05-16T09:31:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.419900", + "Timestamp": "2024-05-16T09:31:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.458800", + "Timestamp": "2024-05-16T09:31:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.453800", + "Timestamp": "2024-05-16T09:31:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.328800", + "Timestamp": "2024-05-16T09:31:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.279800", + "Timestamp": "2024-05-16T09:19:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.279800", + "Timestamp": "2024-05-16T09:19:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.918500", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.913500", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.788500", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.337000", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.332000", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.207000", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.764200", + "Timestamp": "2024-05-16T09:17:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.759200", + "Timestamp": "2024-05-16T09:17:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.634200", + "Timestamp": "2024-05-16T09:17:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.867500", + "Timestamp": "2024-05-16T09:17:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083800", + "Timestamp": "2024-05-16T09:17:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080100", + "Timestamp": "2024-05-16T09:17:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023800", + "Timestamp": "2024-05-16T09:17:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.060700", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.500500", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.495500", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.370500", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.698300", + "Timestamp": "2024-05-16T09:17:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.693300", + "Timestamp": "2024-05-16T09:17:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.568300", + "Timestamp": "2024-05-16T09:17:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145700", + "Timestamp": "2024-05-16T09:17:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142000", + "Timestamp": "2024-05-16T09:17:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085700", + "Timestamp": "2024-05-16T09:17:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.700400", + "Timestamp": "2024-05-16T09:17:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.139000", + "Timestamp": "2024-05-16T09:17:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.274500", + "Timestamp": "2024-05-16T09:17:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269500", + "Timestamp": "2024-05-16T09:17:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144500", + "Timestamp": "2024-05-16T09:17:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.451900", + "Timestamp": "2024-05-16T09:17:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.643900", + "Timestamp": "2024-05-16T09:16:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.638900", + "Timestamp": "2024-05-16T09:16:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.513900", + "Timestamp": "2024-05-16T09:16:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.893900", + "Timestamp": "2024-05-16T09:16:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.738300", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.805800", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.800800", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.675800", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.286400", + "Timestamp": "2024-05-16T09:16:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.281400", + "Timestamp": "2024-05-16T09:16:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.156400", + "Timestamp": "2024-05-16T09:16:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.888100", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.308300", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.399800", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.394800", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.269800", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.499700", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.494700", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.369700", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.604200", + "Timestamp": "2024-05-16T09:16:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.599200", + "Timestamp": "2024-05-16T09:16:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.474200", + "Timestamp": "2024-05-16T09:16:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.955700", + "Timestamp": "2024-05-16T09:16:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.447800", + "Timestamp": "2024-05-16T09:16:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078900", + "Timestamp": "2024-05-16T09:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075200", + "Timestamp": "2024-05-16T09:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018900", + "Timestamp": "2024-05-16T09:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.002500", + "Timestamp": "2024-05-16T09:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.997500", + "Timestamp": "2024-05-16T09:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.872500", + "Timestamp": "2024-05-16T09:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.546200", + "Timestamp": "2024-05-16T09:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.541200", + "Timestamp": "2024-05-16T09:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.416200", + "Timestamp": "2024-05-16T09:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.909300", + "Timestamp": "2024-05-16T09:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.904300", + "Timestamp": "2024-05-16T09:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.779300", + "Timestamp": "2024-05-16T09:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.448300", + "Timestamp": "2024-05-16T09:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.443300", + "Timestamp": "2024-05-16T09:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.318300", + "Timestamp": "2024-05-16T09:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.973800", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.129700", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.712900", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.707900", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.582900", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.687600", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.657600", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.557600", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.601300", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.596300", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.471300", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.194000", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.189000", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.064000", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.555500", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115900", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155900", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055900", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.634200", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.477500", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217800", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.325500", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.320500", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195500", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.503200", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.498200", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.373200", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093600", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089600", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033600", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.479100", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.474100", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.349100", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.187400", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.182400", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.057400", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.231900", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.201900", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.101900", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.394000", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.543500", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.538500", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.413500", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.523400", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.518400", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.393400", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.718200", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.250700", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.245700", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120700", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072800", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069100", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012800", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.858500", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.853500", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.728500", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.491800", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.486800", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.361800", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.475400", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.470400", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.345400", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.789300", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.759300", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.659300", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.771000", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.766000", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.641000", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.816700", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.786700", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.686700", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.641900", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.636900", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.511900", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.386600", + "Timestamp": "2024-05-16T09:16:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.451500", + "Timestamp": "2024-05-16T09:16:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.446500", + "Timestamp": "2024-05-16T09:16:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.321500", + "Timestamp": "2024-05-16T09:16:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.885600", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.333000", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.968400", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.328000", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.963400", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.203000", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.838400", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.798200", + "Timestamp": "2024-05-16T09:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088500", + "Timestamp": "2024-05-16T09:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084500", + "Timestamp": "2024-05-16T09:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028500", + "Timestamp": "2024-05-16T09:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.073200", + "Timestamp": "2024-05-16T09:16:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.068200", + "Timestamp": "2024-05-16T09:16:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.943200", + "Timestamp": "2024-05-16T09:16:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113300", + "Timestamp": "2024-05-16T09:16:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109600", + "Timestamp": "2024-05-16T09:16:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053300", + "Timestamp": "2024-05-16T09:16:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.493900", + "Timestamp": "2024-05-16T09:16:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.488900", + "Timestamp": "2024-05-16T09:16:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.363900", + "Timestamp": "2024-05-16T09:16:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.805200", + "Timestamp": "2024-05-16T09:16:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.800200", + "Timestamp": "2024-05-16T09:16:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.675200", + "Timestamp": "2024-05-16T09:16:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.763500", + "Timestamp": "2024-05-16T09:16:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.733500", + "Timestamp": "2024-05-16T09:16:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.633500", + "Timestamp": "2024-05-16T09:16:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.903000", + "Timestamp": "2024-05-16T09:16:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.873000", + "Timestamp": "2024-05-16T09:16:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.773000", + "Timestamp": "2024-05-16T09:16:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-16T09:02:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.906900", + "Timestamp": "2024-05-16T09:02:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.015000", + "Timestamp": "2024-05-16T09:02:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.010000", + "Timestamp": "2024-05-16T09:02:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.885000", + "Timestamp": "2024-05-16T09:02:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.383100", + "Timestamp": "2024-05-16T09:02:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.378100", + "Timestamp": "2024-05-16T09:02:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.253100", + "Timestamp": "2024-05-16T09:02:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.998700", + "Timestamp": "2024-05-16T09:02:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T09:02:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.739400", + "Timestamp": "2024-05-16T09:02:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154900", + "Timestamp": "2024-05-16T09:02:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151200", + "Timestamp": "2024-05-16T09:02:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094900", + "Timestamp": "2024-05-16T09:02:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.458700", + "Timestamp": "2024-05-16T09:02:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.775600", + "Timestamp": "2024-05-16T09:02:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.745600", + "Timestamp": "2024-05-16T09:02:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.645600", + "Timestamp": "2024-05-16T09:02:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.265800", + "Timestamp": "2024-05-16T09:02:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.260800", + "Timestamp": "2024-05-16T09:02:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.135800", + "Timestamp": "2024-05-16T09:02:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.076000", + "Timestamp": "2024-05-16T09:02:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.071000", + "Timestamp": "2024-05-16T09:02:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.946000", + "Timestamp": "2024-05-16T09:02:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.261500", + "Timestamp": "2024-05-16T09:02:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.256500", + "Timestamp": "2024-05-16T09:02:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.131500", + "Timestamp": "2024-05-16T09:02:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.228800", + "Timestamp": "2024-05-16T09:02:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.486600", + "Timestamp": "2024-05-16T09:02:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.461700", + "Timestamp": "2024-05-16T09:02:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.456700", + "Timestamp": "2024-05-16T09:02:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.331700", + "Timestamp": "2024-05-16T09:02:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.402600", + "Timestamp": "2024-05-16T09:02:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372600", + "Timestamp": "2024-05-16T09:02:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.272600", + "Timestamp": "2024-05-16T09:02:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.818300", + "Timestamp": "2024-05-16T09:02:04.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.813300", + "Timestamp": "2024-05-16T09:02:04.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.688300", + "Timestamp": "2024-05-16T09:02:04.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079300", + "Timestamp": "2024-05-16T09:02:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075600", + "Timestamp": "2024-05-16T09:02:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019300", + "Timestamp": "2024-05-16T09:02:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.586100", + "Timestamp": "2024-05-16T09:02:01.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.581100", + "Timestamp": "2024-05-16T09:02:01.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.456100", + "Timestamp": "2024-05-16T09:02:01.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.252000", + "Timestamp": "2024-05-16T09:01:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.242000", + "Timestamp": "2024-05-16T09:01:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.874000", + "Timestamp": "2024-05-16T09:01:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.516100", + "Timestamp": "2024-05-16T09:01:57.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.511100", + "Timestamp": "2024-05-16T09:01:57.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.386100", + "Timestamp": "2024-05-16T09:01:57.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062800", + "Timestamp": "2024-05-16T09:01:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002800", + "Timestamp": "2024-05-16T09:01:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002800", + "Timestamp": "2024-05-16T09:01:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.174500", + "Timestamp": "2024-05-16T09:01:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.169500", + "Timestamp": "2024-05-16T09:01:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.044500", + "Timestamp": "2024-05-16T09:01:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.413100", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.408100", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.283100", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.733300", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101400", + "Timestamp": "2024-05-16T09:01:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097700", + "Timestamp": "2024-05-16T09:01:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041400", + "Timestamp": "2024-05-16T09:01:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.511600", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.506600", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.381600", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217100", + "Timestamp": "2024-05-16T09:01:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212500", + "Timestamp": "2024-05-16T09:01:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.995300", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.008600", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.978600", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.878600", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.920900", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.915900", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.790900", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.149300", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.849300", + "Timestamp": "2024-05-16T09:01:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.294200", + "Timestamp": "2024-05-16T09:01:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.242600", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.237600", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.112600", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.492300", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.634700", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.175700", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.171700", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115700", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.314000", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.309000", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.184000", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.727300", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.722300", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.597300", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050800", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.280500", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.210500", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.746000", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.716000", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.616000", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.982600", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113100", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.871600", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.476000", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.272800", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267800", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142800", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270800", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265800", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140800", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.264000", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.259000", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134000", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.910500", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.653800", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.648800", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.523800", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108300", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118900", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115200", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048300", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058900", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.641100", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.636100", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.511100", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233500", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.787300", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.782300", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.657300", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.544800", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294900", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289900", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164900", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.467200", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145100", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185100", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085100", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.466600", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.461600", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.336600", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042100", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.509500", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.504500", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.379500", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092800", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036500", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.047900", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.042900", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.917900", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153000", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149300", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093000", + "Timestamp": "2024-05-16T09:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.350400", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.345400", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.220400", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.919800", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.889800", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.789800", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.244100", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.239100", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114100", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.877700", + "Timestamp": "2024-05-16T09:01:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.782900", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.303900", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298900", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.173900", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278600", + "Timestamp": "2024-05-16T09:01:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273600", + "Timestamp": "2024-05-16T09:01:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148600", + "Timestamp": "2024-05-16T09:01:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.826000", + "Timestamp": "2024-05-16T09:01:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.436400", + "Timestamp": "2024-05-16T09:01:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439300", + "Timestamp": "2024-05-16T09:01:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.477600", + "Timestamp": "2024-05-16T09:01:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.447600", + "Timestamp": "2024-05-16T09:01:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.347600", + "Timestamp": "2024-05-16T09:01:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.415300", + "Timestamp": "2024-05-16T09:01:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.410300", + "Timestamp": "2024-05-16T09:01:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.285300", + "Timestamp": "2024-05-16T09:01:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.763900", + "Timestamp": "2024-05-16T09:01:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099700", + "Timestamp": "2024-05-16T09:01:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095700", + "Timestamp": "2024-05-16T09:01:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039700", + "Timestamp": "2024-05-16T09:01:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.737100", + "Timestamp": "2024-05-16T08:47:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.930400", + "Timestamp": "2024-05-16T08:47:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.925400", + "Timestamp": "2024-05-16T08:47:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.800400", + "Timestamp": "2024-05-16T08:47:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.540100", + "Timestamp": "2024-05-16T08:47:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.510100", + "Timestamp": "2024-05-16T08:47:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.410100", + "Timestamp": "2024-05-16T08:47:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.694500", + "Timestamp": "2024-05-16T08:47:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.456800", + "Timestamp": "2024-05-16T08:47:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.451800", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.446800", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.321800", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.555700", + "Timestamp": "2024-05-16T08:47:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.777400", + "Timestamp": "2024-05-16T08:47:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.161000", + "Timestamp": "2024-05-16T08:47:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.271700", + "Timestamp": "2024-05-16T08:47:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.266700", + "Timestamp": "2024-05-16T08:47:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.141700", + "Timestamp": "2024-05-16T08:47:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094000", + "Timestamp": "2024-05-16T08:47:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090300", + "Timestamp": "2024-05-16T08:47:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034000", + "Timestamp": "2024-05-16T08:47:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.283400", + "Timestamp": "2024-05-16T08:47:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.278400", + "Timestamp": "2024-05-16T08:47:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.153400", + "Timestamp": "2024-05-16T08:47:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.923100", + "Timestamp": "2024-05-16T08:47:02.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.918100", + "Timestamp": "2024-05-16T08:47:02.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.793100", + "Timestamp": "2024-05-16T08:47:02.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.763500", + "Timestamp": "2024-05-16T08:47:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.248800", + "Timestamp": "2024-05-16T08:46:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.003900", + "Timestamp": "2024-05-16T08:46:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.998900", + "Timestamp": "2024-05-16T08:46:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.873900", + "Timestamp": "2024-05-16T08:46:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.928200", + "Timestamp": "2024-05-16T08:46:57.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.838000", + "Timestamp": "2024-05-16T08:46:57.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.413400", + "Timestamp": "2024-05-16T08:46:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.408400", + "Timestamp": "2024-05-16T08:46:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.283400", + "Timestamp": "2024-05-16T08:46:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.681600", + "Timestamp": "2024-05-16T08:46:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.676600", + "Timestamp": "2024-05-16T08:46:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.551600", + "Timestamp": "2024-05-16T08:46:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.154200", + "Timestamp": "2024-05-16T08:46:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.149200", + "Timestamp": "2024-05-16T08:46:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.024200", + "Timestamp": "2024-05-16T08:46:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.850500", + "Timestamp": "2024-05-16T08:46:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T08:46:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098400", + "Timestamp": "2024-05-16T08:46:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042100", + "Timestamp": "2024-05-16T08:46:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.251100", + "Timestamp": "2024-05-16T08:46:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.247100", + "Timestamp": "2024-05-16T08:46:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.191100", + "Timestamp": "2024-05-16T08:46:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.921700", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.044900", + "Timestamp": "2024-05-16T08:46:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.039900", + "Timestamp": "2024-05-16T08:46:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.914900", + "Timestamp": "2024-05-16T08:46:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.628400", + "Timestamp": "2024-05-16T08:46:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.623400", + "Timestamp": "2024-05-16T08:46:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.498400", + "Timestamp": "2024-05-16T08:46:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.537200", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.532200", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.407200", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.290400", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.914400", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.878300", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.242100", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.488800", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.497700", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.587100", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.557100", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.457100", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.601600", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.596600", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.471600", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.624000", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.584500", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.619000", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.579500", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.494000", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.454500", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311000", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281000", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181000", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.464400", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.459400", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.334400", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307300", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302300", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177300", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.151500", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.774500", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129200", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125500", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069200", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.431000", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.426000", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.301000", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099100", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042800", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.768700", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.763700", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.638700", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.782000", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.024800", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.019800", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.894800", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.397400", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.392400", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.267400", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.541900", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.536900", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.411900", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.654500", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.649500", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.524500", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.319000", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.314000", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.189000", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.766400", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.574800", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.570000", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.565000", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.440000", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.823800", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.793800", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.693800", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.761700", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.756700", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.631700", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.410700", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.513800", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120600", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060600", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.689300", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.659600", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.654600", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.529600", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.266100", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.236100", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136100", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.106300", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.101300", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.976300", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.516400", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.511400", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.386400", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.613300", + "Timestamp": "2024-05-16T08:46:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.275500", + "Timestamp": "2024-05-16T08:46:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270500", + "Timestamp": "2024-05-16T08:46:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145500", + "Timestamp": "2024-05-16T08:46:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.599200", + "Timestamp": "2024-05-16T08:32:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.594200", + "Timestamp": "2024-05-16T08:32:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.469200", + "Timestamp": "2024-05-16T08:32:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083600", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079900", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023600", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.493000", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.488000", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.363000", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.454200", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.698900", + "Timestamp": "2024-05-16T08:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.481400", + "Timestamp": "2024-05-16T08:32:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.476400", + "Timestamp": "2024-05-16T08:32:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.351400", + "Timestamp": "2024-05-16T08:32:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.279500", + "Timestamp": "2024-05-16T08:32:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.274500", + "Timestamp": "2024-05-16T08:32:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149500", + "Timestamp": "2024-05-16T08:32:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121800", + "Timestamp": "2024-05-16T08:32:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117800", + "Timestamp": "2024-05-16T08:32:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061800", + "Timestamp": "2024-05-16T08:32:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.529300", + "Timestamp": "2024-05-16T08:32:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.524300", + "Timestamp": "2024-05-16T08:32:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.399300", + "Timestamp": "2024-05-16T08:32:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.064900", + "Timestamp": "2024-05-16T08:32:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.059900", + "Timestamp": "2024-05-16T08:32:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.934900", + "Timestamp": "2024-05-16T08:32:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.344600", + "Timestamp": "2024-05-16T08:32:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.339600", + "Timestamp": "2024-05-16T08:32:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.214600", + "Timestamp": "2024-05-16T08:32:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.478200", + "Timestamp": "2024-05-16T08:32:02.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416400", + "Timestamp": "2024-05-16T08:31:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.258200", + "Timestamp": "2024-05-16T08:31:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.253200", + "Timestamp": "2024-05-16T08:31:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.128200", + "Timestamp": "2024-05-16T08:31:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.590700", + "Timestamp": "2024-05-16T08:31:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.585700", + "Timestamp": "2024-05-16T08:31:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.460700", + "Timestamp": "2024-05-16T08:31:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.664300", + "Timestamp": "2024-05-16T08:31:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.634300", + "Timestamp": "2024-05-16T08:31:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.534300", + "Timestamp": "2024-05-16T08:31:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.416500", + "Timestamp": "2024-05-16T08:31:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.287900", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.282900", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157900", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.733400", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.484200", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.728400", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.479200", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.603400", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.354200", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.285700", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.280700", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.155700", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044500", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.280900", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.275900", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150900", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.548500", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.518500", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.418500", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.200200", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.195200", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.070200", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.912000", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.850500", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.258000", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.704500", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.674500", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.574500", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.758500", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.571500", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.050400", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.615900", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.650200", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.620200", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.520200", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.100400", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.095400", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.970400", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.086000", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.081000", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.956000", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.508900", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.503900", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.378900", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.412400", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.407400", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.282400", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.777400", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.772400", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.647400", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.642000", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.612000", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.512000", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.412400", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.407400", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.282400", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.681100", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128300", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124600", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068300", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218900", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.628700", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.755000", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.754000", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087400", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083700", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027400", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.843800", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.838800", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.713800", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.577100", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.547100", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.447100", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.244000", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.214000", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114000", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.473600", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.468600", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.343600", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.259800", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.254800", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129800", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.812700", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.716900", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.711900", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.586900", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.614600", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.609600", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.484600", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.112500", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.107500", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.982500", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.062500", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.057500", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.932500", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.377400", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.914200", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.304000", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.187800", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.400800", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.193200", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.501900", + "Timestamp": "2024-05-16T08:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.619100", + "Timestamp": "2024-05-16T08:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.592900", + "Timestamp": "2024-05-16T08:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200200", + "Timestamp": "2024-05-16T08:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.195200", + "Timestamp": "2024-05-16T08:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070200", + "Timestamp": "2024-05-16T08:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.688200", + "Timestamp": "2024-05-16T08:31:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.683200", + "Timestamp": "2024-05-16T08:31:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.558200", + "Timestamp": "2024-05-16T08:31:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135100", + "Timestamp": "2024-05-16T08:31:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154900", + "Timestamp": "2024-05-16T08:31:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131100", + "Timestamp": "2024-05-16T08:31:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150900", + "Timestamp": "2024-05-16T08:31:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075100", + "Timestamp": "2024-05-16T08:31:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094900", + "Timestamp": "2024-05-16T08:31:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209400", + "Timestamp": "2024-05-16T08:31:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.594200", + "Timestamp": "2024-05-16T08:31:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.589200", + "Timestamp": "2024-05-16T08:31:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.464200", + "Timestamp": "2024-05-16T08:31:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081900", + "Timestamp": "2024-05-16T08:19:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082800", + "Timestamp": "2024-05-16T08:19:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078200", + "Timestamp": "2024-05-16T08:19:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079100", + "Timestamp": "2024-05-16T08:19:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021900", + "Timestamp": "2024-05-16T08:19:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022800", + "Timestamp": "2024-05-16T08:19:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070100", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066400", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010100", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.130300", + "Timestamp": "2024-05-16T08:17:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.125300", + "Timestamp": "2024-05-16T08:17:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.000300", + "Timestamp": "2024-05-16T08:17:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.516800", + "Timestamp": "2024-05-16T08:17:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.511800", + "Timestamp": "2024-05-16T08:17:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.386800", + "Timestamp": "2024-05-16T08:17:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.261400", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.797900", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.792900", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.667900", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.787300", + "Timestamp": "2024-05-16T08:17:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.757300", + "Timestamp": "2024-05-16T08:17:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.657300", + "Timestamp": "2024-05-16T08:17:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.963400", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.848400", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.702500", + "Timestamp": "2024-05-16T08:17:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.320000", + "Timestamp": "2024-05-16T08:17:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.886500", + "Timestamp": "2024-05-16T08:17:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.881500", + "Timestamp": "2024-05-16T08:17:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.756500", + "Timestamp": "2024-05-16T08:17:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.447900", + "Timestamp": "2024-05-16T08:17:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.551700", + "Timestamp": "2024-05-16T08:17:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.546700", + "Timestamp": "2024-05-16T08:17:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.421700", + "Timestamp": "2024-05-16T08:17:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.702100", + "Timestamp": "2024-05-16T08:17:01.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.697100", + "Timestamp": "2024-05-16T08:17:01.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.572100", + "Timestamp": "2024-05-16T08:17:01.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-16T08:16:57.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T08:16:57.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046500", + "Timestamp": "2024-05-16T08:16:57.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.942500", + "Timestamp": "2024-05-16T08:16:57.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.584900", + "Timestamp": "2024-05-16T08:16:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.646800", + "Timestamp": "2024-05-16T08:16:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.641800", + "Timestamp": "2024-05-16T08:16:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.516800", + "Timestamp": "2024-05-16T08:16:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.772700", + "Timestamp": "2024-05-16T08:16:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.436500", + "Timestamp": "2024-05-16T08:16:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.431500", + "Timestamp": "2024-05-16T08:16:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.306500", + "Timestamp": "2024-05-16T08:16:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.872400", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.532100", + "Timestamp": "2024-05-16T08:16:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.507100", + "Timestamp": "2024-05-16T08:16:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.502100", + "Timestamp": "2024-05-16T08:16:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.377100", + "Timestamp": "2024-05-16T08:16:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.908000", + "Timestamp": "2024-05-16T08:16:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.903000", + "Timestamp": "2024-05-16T08:16:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.778000", + "Timestamp": "2024-05-16T08:16:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.323100", + "Timestamp": "2024-05-16T08:16:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.318100", + "Timestamp": "2024-05-16T08:16:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.193100", + "Timestamp": "2024-05-16T08:16:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.214800", + "Timestamp": "2024-05-16T08:16:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221100", + "Timestamp": "2024-05-16T08:16:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084900", + "Timestamp": "2024-05-16T08:16:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.081200", + "Timestamp": "2024-05-16T08:16:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024900", + "Timestamp": "2024-05-16T08:16:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.541100", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.511100", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.411100", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.807700", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.802700", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.677700", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.048100", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.509300", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.504300", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.379300", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149900", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146200", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089900", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.626200", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.621200", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.496200", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212600", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.874700", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.410400", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.405400", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.280400", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.798100", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.793100", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.668100", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.891000", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.821100", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.541000", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.536000", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.411000", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.358300", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.353300", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.228300", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.383700", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.378700", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.253700", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216800", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.815700", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.557400", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.552400", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.427400", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.612400", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.607400", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.482400", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.597700", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.504100", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.499100", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.374100", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118200", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058200", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.135100", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.130100", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.005100", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219400", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.347200", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.035100", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.030100", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.905100", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.557700", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.552700", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.427700", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.539400", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.618500", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.886200", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096800", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093100", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036800", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040800", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.436600", + "Timestamp": "2024-05-16T08:16:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.874900", + "Timestamp": "2024-05-16T08:16:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.236500", + "Timestamp": "2024-05-16T08:16:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.604900", + "Timestamp": "2024-05-16T08:16:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087500", + "Timestamp": "2024-05-16T08:16:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083500", + "Timestamp": "2024-05-16T08:16:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027500", + "Timestamp": "2024-05-16T08:16:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.241700", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.092600", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.087600", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.962600", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.144600", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.749500", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.744500", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.619500", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.107900", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.102900", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.977900", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045400", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.131900", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.036800", + "Timestamp": "2024-05-16T08:02:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.074100", + "Timestamp": "2024-05-16T08:02:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.069100", + "Timestamp": "2024-05-16T08:02:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.944100", + "Timestamp": "2024-05-16T08:02:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.702000", + "Timestamp": "2024-05-16T08:02:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.697000", + "Timestamp": "2024-05-16T08:02:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.572000", + "Timestamp": "2024-05-16T08:02:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.576500", + "Timestamp": "2024-05-16T08:02:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.571500", + "Timestamp": "2024-05-16T08:02:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.446500", + "Timestamp": "2024-05-16T08:02:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103900", + "Timestamp": "2024-05-16T08:02:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-16T08:02:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043900", + "Timestamp": "2024-05-16T08:02:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.507900", + "Timestamp": "2024-05-16T08:02:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.502900", + "Timestamp": "2024-05-16T08:02:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.377900", + "Timestamp": "2024-05-16T08:02:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155400", + "Timestamp": "2024-05-16T08:02:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151400", + "Timestamp": "2024-05-16T08:02:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095400", + "Timestamp": "2024-05-16T08:02:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.105000", + "Timestamp": "2024-05-16T08:02:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.014000", + "Timestamp": "2024-05-16T08:02:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.707800", + "Timestamp": "2024-05-16T08:02:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.677800", + "Timestamp": "2024-05-16T08:02:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.577800", + "Timestamp": "2024-05-16T08:02:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330100", + "Timestamp": "2024-05-16T08:02:04.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325100", + "Timestamp": "2024-05-16T08:02:04.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200100", + "Timestamp": "2024-05-16T08:02:04.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.611600", + "Timestamp": "2024-05-16T08:02:01.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.606600", + "Timestamp": "2024-05-16T08:02:01.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.481600", + "Timestamp": "2024-05-16T08:02:01.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.849500", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.511700", + "Timestamp": "2024-05-16T08:01:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.562800", + "Timestamp": "2024-05-16T08:01:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.557800", + "Timestamp": "2024-05-16T08:01:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.432800", + "Timestamp": "2024-05-16T08:01:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.292100", + "Timestamp": "2024-05-16T08:01:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262100", + "Timestamp": "2024-05-16T08:01:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162100", + "Timestamp": "2024-05-16T08:01:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.639600", + "Timestamp": "2024-05-16T08:01:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.634600", + "Timestamp": "2024-05-16T08:01:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.509600", + "Timestamp": "2024-05-16T08:01:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.494400", + "Timestamp": "2024-05-16T08:01:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.489400", + "Timestamp": "2024-05-16T08:01:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.364400", + "Timestamp": "2024-05-16T08:01:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.458900", + "Timestamp": "2024-05-16T08:01:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.428900", + "Timestamp": "2024-05-16T08:01:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.328900", + "Timestamp": "2024-05-16T08:01:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.425900", + "Timestamp": "2024-05-16T08:01:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.252000", + "Timestamp": "2024-05-16T08:01:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.247000", + "Timestamp": "2024-05-16T08:01:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.122000", + "Timestamp": "2024-05-16T08:01:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.277700", + "Timestamp": "2024-05-16T08:01:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.272700", + "Timestamp": "2024-05-16T08:01:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147700", + "Timestamp": "2024-05-16T08:01:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.870800", + "Timestamp": "2024-05-16T08:01:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.693200", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.688200", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.563200", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.942400", + "Timestamp": "2024-05-16T08:01:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.937400", + "Timestamp": "2024-05-16T08:01:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.812400", + "Timestamp": "2024-05-16T08:01:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.821500", + "Timestamp": "2024-05-16T08:01:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.772500", + "Timestamp": "2024-05-16T08:01:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.767500", + "Timestamp": "2024-05-16T08:01:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.642500", + "Timestamp": "2024-05-16T08:01:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.747500", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.742500", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.617500", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.568300", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.563300", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.438300", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122400", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118700", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062400", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.518800", + "Timestamp": "2024-05-16T08:01:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137300", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133600", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077300", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.355400", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.706500", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.847300", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.245700", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.445900", + "Timestamp": "2024-05-16T08:01:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T08:01:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099600", + "Timestamp": "2024-05-16T08:01:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043300", + "Timestamp": "2024-05-16T08:01:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.590300", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.203200", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.173200", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.073200", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.865100", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.925500", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.815100", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073800", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070100", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013800", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.632000", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.627000", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.502000", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.900200", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.895200", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.770200", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050800", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.963300", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.933300", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.833300", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112300", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.259300", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.254300", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129300", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.371700", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.479700", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.366700", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.474700", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.241700", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.349700", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.317900", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.312900", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.187900", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.780400", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.775400", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.650400", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115000", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055000", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.628900", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.623900", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.498900", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.158800", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.460100", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.455100", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.330100", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.020900", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.015900", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.890900", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.592400", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.899700", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093400", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089400", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033400", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.722600", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.808100", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.730300", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.700300", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.600300", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.221400", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.594500", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.216400", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.589500", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.091400", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.464500", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.541600", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.536600", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.411600", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.445500", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.440500", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.315500", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071100", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042100", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011100", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.618000", + "Timestamp": "2024-05-16T08:01:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.645900", + "Timestamp": "2024-05-16T08:01:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.640900", + "Timestamp": "2024-05-16T08:01:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.515900", + "Timestamp": "2024-05-16T08:01:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.621700", + "Timestamp": "2024-05-16T08:01:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.687600", + "Timestamp": "2024-05-16T08:01:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.682600", + "Timestamp": "2024-05-16T08:01:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.557600", + "Timestamp": "2024-05-16T08:01:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.428400", + "Timestamp": "2024-05-16T08:01:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.610500", + "Timestamp": "2024-05-16T08:01:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.423400", + "Timestamp": "2024-05-16T08:01:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.605500", + "Timestamp": "2024-05-16T08:01:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.298400", + "Timestamp": "2024-05-16T08:01:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.480500", + "Timestamp": "2024-05-16T08:01:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.177200", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173500", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.117200", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.445600", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.440600", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.315600", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.834200", + "Timestamp": "2024-05-16T07:47:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.993800", + "Timestamp": "2024-05-16T07:47:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084400", + "Timestamp": "2024-05-16T07:47:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080700", + "Timestamp": "2024-05-16T07:47:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024400", + "Timestamp": "2024-05-16T07:47:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.548600", + "Timestamp": "2024-05-16T07:47:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.543600", + "Timestamp": "2024-05-16T07:47:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.418600", + "Timestamp": "2024-05-16T07:47:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T07:47:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.592700", + "Timestamp": "2024-05-16T07:47:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.793400", + "Timestamp": "2024-05-16T07:47:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.374800", + "Timestamp": "2024-05-16T07:47:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165000", + "Timestamp": "2024-05-16T07:47:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161000", + "Timestamp": "2024-05-16T07:47:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T07:47:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.674500", + "Timestamp": "2024-05-16T07:47:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.669500", + "Timestamp": "2024-05-16T07:47:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.544500", + "Timestamp": "2024-05-16T07:47:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.205500", + "Timestamp": "2024-05-16T07:47:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.457100", + "Timestamp": "2024-05-16T07:47:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119900", + "Timestamp": "2024-05-16T07:47:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115900", + "Timestamp": "2024-05-16T07:47:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059900", + "Timestamp": "2024-05-16T07:47:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.295300", + "Timestamp": "2024-05-16T07:47:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.290300", + "Timestamp": "2024-05-16T07:47:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165300", + "Timestamp": "2024-05-16T07:47:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.961900", + "Timestamp": "2024-05-16T07:47:02.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.740000", + "Timestamp": "2024-05-16T07:46:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.735000", + "Timestamp": "2024-05-16T07:46:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.610000", + "Timestamp": "2024-05-16T07:46:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.422400", + "Timestamp": "2024-05-16T07:46:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.397700", + "Timestamp": "2024-05-16T07:46:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.392700", + "Timestamp": "2024-05-16T07:46:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.267700", + "Timestamp": "2024-05-16T07:46:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.338400", + "Timestamp": "2024-05-16T07:46:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.333400", + "Timestamp": "2024-05-16T07:46:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.208400", + "Timestamp": "2024-05-16T07:46:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.963600", + "Timestamp": "2024-05-16T07:46:51.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.646100", + "Timestamp": "2024-05-16T07:46:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.641100", + "Timestamp": "2024-05-16T07:46:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.516100", + "Timestamp": "2024-05-16T07:46:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.471300", + "Timestamp": "2024-05-16T07:46:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.466300", + "Timestamp": "2024-05-16T07:46:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.341300", + "Timestamp": "2024-05-16T07:46:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.798400", + "Timestamp": "2024-05-16T07:46:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.793400", + "Timestamp": "2024-05-16T07:46:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.668400", + "Timestamp": "2024-05-16T07:46:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.411400", + "Timestamp": "2024-05-16T07:46:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.742900", + "Timestamp": "2024-05-16T07:46:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.953200", + "Timestamp": "2024-05-16T07:46:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.948200", + "Timestamp": "2024-05-16T07:46:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.823200", + "Timestamp": "2024-05-16T07:46:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.297300", + "Timestamp": "2024-05-16T07:46:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.292300", + "Timestamp": "2024-05-16T07:46:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.167300", + "Timestamp": "2024-05-16T07:46:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.060000", + "Timestamp": "2024-05-16T07:46:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.055000", + "Timestamp": "2024-05-16T07:46:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.930000", + "Timestamp": "2024-05-16T07:46:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.006000", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.895100", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.890100", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.765100", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.483300", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.453300", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.353300", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-16T07:46:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.739400", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.495200", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.465200", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.365200", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.130200", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.494300", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.464300", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.364300", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.448500", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.443500", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.318500", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.453100", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.575200", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.570200", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.445200", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.690600", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.414800", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.409800", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.284800", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120900", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117200", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060900", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148900", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145200", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088900", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.121800", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.292400", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.287400", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162400", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.340700", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171800", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167800", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111800", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087000", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127000", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027000", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.666400", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.661400", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.536400", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.211000", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.206000", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.081000", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.819800", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.814800", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.689800", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.687600", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.640800", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.655800", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.650800", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.525800", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.304200", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.299200", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.174200", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141200", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137500", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081200", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.397100", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106000", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.593200", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.588200", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.463200", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.844000", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.203700", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198700", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073700", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.472300", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.467300", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.342300", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.633400", + "Timestamp": "2024-05-16T07:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.603400", + "Timestamp": "2024-05-16T07:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.503400", + "Timestamp": "2024-05-16T07:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.593600", + "Timestamp": "2024-05-16T07:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.588600", + "Timestamp": "2024-05-16T07:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.463600", + "Timestamp": "2024-05-16T07:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.410500", + "Timestamp": "2024-05-16T07:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.516500", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.549100", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.888800", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.932200", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.927200", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.802200", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.285300", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.506000", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.501000", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.376000", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.794900", + "Timestamp": "2024-05-16T07:46:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.789900", + "Timestamp": "2024-05-16T07:46:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.664900", + "Timestamp": "2024-05-16T07:46:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306400", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301400", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176400", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.526600", + "Timestamp": "2024-05-16T07:46:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.521600", + "Timestamp": "2024-05-16T07:46:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.396600", + "Timestamp": "2024-05-16T07:46:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.698000", + "Timestamp": "2024-05-16T07:46:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.756000", + "Timestamp": "2024-05-16T07:46:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.726000", + "Timestamp": "2024-05-16T07:46:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.626000", + "Timestamp": "2024-05-16T07:46:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-16T07:46:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093500", + "Timestamp": "2024-05-16T07:46:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037200", + "Timestamp": "2024-05-16T07:46:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.651200", + "Timestamp": "2024-05-16T07:36:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.646200", + "Timestamp": "2024-05-16T07:36:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.521200", + "Timestamp": "2024-05-16T07:36:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.465200", + "Timestamp": "2024-05-16T07:36:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.465200", + "Timestamp": "2024-05-16T07:36:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.465200", + "Timestamp": "2024-05-16T07:36:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.596400", + "Timestamp": "2024-05-16T07:32:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.591400", + "Timestamp": "2024-05-16T07:32:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.466400", + "Timestamp": "2024-05-16T07:32:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.815400", + "Timestamp": "2024-05-16T07:32:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.810400", + "Timestamp": "2024-05-16T07:32:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.685400", + "Timestamp": "2024-05-16T07:32:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.491300", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.486300", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.361300", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.884800", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.879800", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.754800", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.483900", + "Timestamp": "2024-05-16T07:32:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121700", + "Timestamp": "2024-05-16T07:32:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.647000", + "Timestamp": "2024-05-16T07:32:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.642000", + "Timestamp": "2024-05-16T07:32:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.517000", + "Timestamp": "2024-05-16T07:32:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.047300", + "Timestamp": "2024-05-16T07:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.919400", + "Timestamp": "2024-05-16T07:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.914400", + "Timestamp": "2024-05-16T07:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.789400", + "Timestamp": "2024-05-16T07:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.697800", + "Timestamp": "2024-05-16T07:32:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.692800", + "Timestamp": "2024-05-16T07:32:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.567800", + "Timestamp": "2024-05-16T07:32:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.629800", + "Timestamp": "2024-05-16T07:32:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.680700", + "Timestamp": "2024-05-16T07:32:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.945900", + "Timestamp": "2024-05-16T07:32:02.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311400", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.306400", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181400", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.953900", + "Timestamp": "2024-05-16T07:31:57.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.860500", + "Timestamp": "2024-05-16T07:31:57.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.748800", + "Timestamp": "2024-05-16T07:31:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.743800", + "Timestamp": "2024-05-16T07:31:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.618800", + "Timestamp": "2024-05-16T07:31:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.460800", + "Timestamp": "2024-05-16T07:31:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.455800", + "Timestamp": "2024-05-16T07:31:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.330800", + "Timestamp": "2024-05-16T07:31:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.498700", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.427500", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.422500", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.297500", + "Timestamp": "2024-05-16T07:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.247000", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.333200", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.328200", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.203200", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.837000", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.832000", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.707000", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.433000", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.428000", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.303000", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273300", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268300", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143300", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.995300", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.516000", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.218000", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.213000", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.088000", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.455800", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.425800", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.325800", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.237700", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.505400", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.489700", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.659900", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.287900", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.478800", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.788300", + "Timestamp": "2024-05-16T07:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.773300", + "Timestamp": "2024-05-16T07:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168100", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164100", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.002100", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.997100", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.872100", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.607100", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.602100", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.477100", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.254200", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.249200", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124200", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.980700", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.975700", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.850700", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.845500", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.840500", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.715500", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072000", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068300", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012000", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.470000", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.465000", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.340000", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.463700", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.458700", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.333700", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.525600", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.767200", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.762200", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.637200", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.263700", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258700", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133700", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.537000", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.532000", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.407000", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.743700", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146700", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143000", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086700", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.493800", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.838900", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.610700", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.605700", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.624200", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.480700", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.790800", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.785800", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.660800", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.230300", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.225300", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.100300", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.867200", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.695900", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.690900", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.565900", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.574900", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.537100", + "Timestamp": "2024-05-16T07:31:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117500", + "Timestamp": "2024-05-16T07:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113800", + "Timestamp": "2024-05-16T07:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057500", + "Timestamp": "2024-05-16T07:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.240500", + "Timestamp": "2024-05-16T07:19:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.241400", + "Timestamp": "2024-05-16T07:19:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141100", + "Timestamp": "2024-05-16T07:19:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141700", + "Timestamp": "2024-05-16T07:19:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160900", + "Timestamp": "2024-05-16T07:19:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137400", + "Timestamp": "2024-05-16T07:19:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138000", + "Timestamp": "2024-05-16T07:19:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157200", + "Timestamp": "2024-05-16T07:19:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081100", + "Timestamp": "2024-05-16T07:19:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081700", + "Timestamp": "2024-05-16T07:19:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-16T07:19:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.613100", + "Timestamp": "2024-05-16T07:19:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.639200", + "Timestamp": "2024-05-16T07:19:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.608100", + "Timestamp": "2024-05-16T07:19:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.634200", + "Timestamp": "2024-05-16T07:19:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.483100", + "Timestamp": "2024-05-16T07:19:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.509200", + "Timestamp": "2024-05-16T07:19:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.422200", + "Timestamp": "2024-05-16T07:18:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.331700", + "Timestamp": "2024-05-16T07:18:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.326700", + "Timestamp": "2024-05-16T07:18:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.201700", + "Timestamp": "2024-05-16T07:18:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108900", + "Timestamp": "2024-05-16T07:17:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.517800", + "Timestamp": "2024-05-16T07:17:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131400", + "Timestamp": "2024-05-16T07:17:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127700", + "Timestamp": "2024-05-16T07:17:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071400", + "Timestamp": "2024-05-16T07:17:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.659100", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.326300", + "Timestamp": "2024-05-16T07:17:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.321300", + "Timestamp": "2024-05-16T07:17:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.196300", + "Timestamp": "2024-05-16T07:17:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.155200", + "Timestamp": "2024-05-16T07:17:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.150200", + "Timestamp": "2024-05-16T07:17:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.025200", + "Timestamp": "2024-05-16T07:17:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.227400", + "Timestamp": "2024-05-16T07:17:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-16T07:17:04.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093500", + "Timestamp": "2024-05-16T07:17:04.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037200", + "Timestamp": "2024-05-16T07:17:04.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.783500", + "Timestamp": "2024-05-16T07:17:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.778500", + "Timestamp": "2024-05-16T07:17:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.653500", + "Timestamp": "2024-05-16T07:17:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.449700", + "Timestamp": "2024-05-16T07:16:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.193100", + "Timestamp": "2024-05-16T07:16:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.629800", + "Timestamp": "2024-05-16T07:16:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.456200", + "Timestamp": "2024-05-16T07:16:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.451200", + "Timestamp": "2024-05-16T07:16:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.326200", + "Timestamp": "2024-05-16T07:16:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.752800", + "Timestamp": "2024-05-16T07:16:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.339800", + "Timestamp": "2024-05-16T07:16:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.292300", + "Timestamp": "2024-05-16T07:16:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.287300", + "Timestamp": "2024-05-16T07:16:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162300", + "Timestamp": "2024-05-16T07:16:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119500", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115800", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059500", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.716800", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.711800", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.586800", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.390200", + "Timestamp": "2024-05-16T07:16:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.352400", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.795600", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.270100", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.305400", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.300400", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175400", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167200", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162200", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037200", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.399500", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.394500", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.269500", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106700", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046700", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125700", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122000", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065700", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.635900", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.630900", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.505900", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.504800", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.474800", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.374800", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.412900", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.407900", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.282900", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092200", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035900", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.187000", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.182000", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.057000", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.054400", + "Timestamp": "2024-05-16T07:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.392900", + "Timestamp": "2024-05-16T07:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.387900", + "Timestamp": "2024-05-16T07:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.262900", + "Timestamp": "2024-05-16T07:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.862500", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.832500", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.732500", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.717000", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.375600", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.370600", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.245600", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.769600", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.764600", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.639600", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.276500", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.271500", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146500", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.144800", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.139800", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.014800", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.307100", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.302100", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.177100", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.197700", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192700", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067700", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.770900", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.765900", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.640900", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.744300", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.739300", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.614300", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.491000", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.486000", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.361000", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.542000", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.843900", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.838900", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.713900", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.523000", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.518000", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.393000", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172200", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168200", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.286500", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.281500", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.156500", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.740800", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.710800", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.610800", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.461900", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070400", + "Timestamp": "2024-05-16T07:16:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041400", + "Timestamp": "2024-05-16T07:16:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010400", + "Timestamp": "2024-05-16T07:16:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.443100", + "Timestamp": "2024-05-16T07:16:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.438100", + "Timestamp": "2024-05-16T07:16:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.313100", + "Timestamp": "2024-05-16T07:16:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.296800", + "Timestamp": "2024-05-16T07:16:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.291800", + "Timestamp": "2024-05-16T07:16:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.166800", + "Timestamp": "2024-05-16T07:16:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.556800", + "Timestamp": "2024-05-16T07:11:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.556800", + "Timestamp": "2024-05-16T07:11:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.556800", + "Timestamp": "2024-05-16T07:11:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.270800", + "Timestamp": "2024-05-16T07:11:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.270800", + "Timestamp": "2024-05-16T07:11:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.265800", + "Timestamp": "2024-05-16T07:11:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.265800", + "Timestamp": "2024-05-16T07:11:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.140800", + "Timestamp": "2024-05-16T07:11:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.140800", + "Timestamp": "2024-05-16T07:11:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.450000", + "Timestamp": "2024-05-16T07:02:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.800800", + "Timestamp": "2024-05-16T07:02:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.795800", + "Timestamp": "2024-05-16T07:02:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.670800", + "Timestamp": "2024-05-16T07:02:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.866400", + "Timestamp": "2024-05-16T07:02:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.589000", + "Timestamp": "2024-05-16T07:02:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.584000", + "Timestamp": "2024-05-16T07:02:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.459000", + "Timestamp": "2024-05-16T07:02:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120200", + "Timestamp": "2024-05-16T07:02:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.784700", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.124500", + "Timestamp": "2024-05-16T07:02:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.025700", + "Timestamp": "2024-05-16T07:02:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144500", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.184500", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084500", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129800", + "Timestamp": "2024-05-16T07:02:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126100", + "Timestamp": "2024-05-16T07:02:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069800", + "Timestamp": "2024-05-16T07:02:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.403100", + "Timestamp": "2024-05-16T07:02:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.443100", + "Timestamp": "2024-05-16T07:02:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.343100", + "Timestamp": "2024-05-16T07:02:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149200", + "Timestamp": "2024-05-16T07:02:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145500", + "Timestamp": "2024-05-16T07:02:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089200", + "Timestamp": "2024-05-16T07:02:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.701200", + "Timestamp": "2024-05-16T07:02:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.841000", + "Timestamp": "2024-05-16T07:02:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.415300", + "Timestamp": "2024-05-16T07:01:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.258900", + "Timestamp": "2024-05-16T07:01:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.587500", + "Timestamp": "2024-05-16T07:01:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.880600", + "Timestamp": "2024-05-16T07:01:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095600", + "Timestamp": "2024-05-16T07:01:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091600", + "Timestamp": "2024-05-16T07:01:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035600", + "Timestamp": "2024-05-16T07:01:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.968300", + "Timestamp": "2024-05-16T07:01:51.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.455000", + "Timestamp": "2024-05-16T07:01:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.450000", + "Timestamp": "2024-05-16T07:01:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.325000", + "Timestamp": "2024-05-16T07:01:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.182400", + "Timestamp": "2024-05-16T07:01:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.376900", + "Timestamp": "2024-05-16T07:01:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162000", + "Timestamp": "2024-05-16T07:01:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158000", + "Timestamp": "2024-05-16T07:01:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102000", + "Timestamp": "2024-05-16T07:01:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.435400", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.909000", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.904000", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.779000", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114300", + "Timestamp": "2024-05-16T07:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T07:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054300", + "Timestamp": "2024-05-16T07:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.047400", + "Timestamp": "2024-05-16T07:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.794500", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.295400", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.290400", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.165400", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.298500", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116500", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.599600", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.198200", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.193200", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.068200", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.593500", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.588500", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.463500", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116100", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056100", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.113400", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.108400", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.983400", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.285200", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.280200", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.155200", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.946200", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.916200", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.816200", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.422000", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.417000", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.292000", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.157800", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.152800", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.027800", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.659600", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.236300", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.430200", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.510900", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.505900", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.380900", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.603800", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.598800", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.473800", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.336000", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.276200", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.271200", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146200", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.044300", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.039300", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.914300", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.618400", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.563300", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.558300", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.433300", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.572100", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.548700", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.882500", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.852500", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.752500", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.375200", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.370200", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.245200", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094700", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091000", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034700", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.485200", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.480200", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.355200", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.840900", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.905100", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.914300", + "Timestamp": "2024-05-16T07:01:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.407600", + "Timestamp": "2024-05-16T07:01:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.274100", + "Timestamp": "2024-05-16T07:01:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269100", + "Timestamp": "2024-05-16T07:01:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144100", + "Timestamp": "2024-05-16T07:01:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.404600", + "Timestamp": "2024-05-16T07:01:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.399600", + "Timestamp": "2024-05-16T07:01:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.274600", + "Timestamp": "2024-05-16T07:01:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.594000", + "Timestamp": "2024-05-16T07:01:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.436400", + "Timestamp": "2024-05-16T07:01:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.702800", + "Timestamp": "2024-05-16T06:56:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.702800", + "Timestamp": "2024-05-16T06:56:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.321000", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.316000", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.191000", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126100", + "Timestamp": "2024-05-16T06:47:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122400", + "Timestamp": "2024-05-16T06:47:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066100", + "Timestamp": "2024-05-16T06:47:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.292300", + "Timestamp": "2024-05-16T06:47:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.287300", + "Timestamp": "2024-05-16T06:47:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162300", + "Timestamp": "2024-05-16T06:47:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.972500", + "Timestamp": "2024-05-16T06:47:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111700", + "Timestamp": "2024-05-16T06:47:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.485800", + "Timestamp": "2024-05-16T06:47:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.822200", + "Timestamp": "2024-05-16T06:47:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.674900", + "Timestamp": "2024-05-16T06:47:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.669900", + "Timestamp": "2024-05-16T06:47:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.544900", + "Timestamp": "2024-05-16T06:47:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.898900", + "Timestamp": "2024-05-16T06:47:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.002100", + "Timestamp": "2024-05-16T06:47:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.997100", + "Timestamp": "2024-05-16T06:47:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.872100", + "Timestamp": "2024-05-16T06:47:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121700", + "Timestamp": "2024-05-16T06:47:01.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118000", + "Timestamp": "2024-05-16T06:47:01.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061700", + "Timestamp": "2024-05-16T06:47:01.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.935500", + "Timestamp": "2024-05-16T06:47:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.930500", + "Timestamp": "2024-05-16T06:47:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.805500", + "Timestamp": "2024-05-16T06:47:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.256900", + "Timestamp": "2024-05-16T06:47:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.251900", + "Timestamp": "2024-05-16T06:47:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126900", + "Timestamp": "2024-05-16T06:47:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.890600", + "Timestamp": "2024-05-16T06:46:57.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080800", + "Timestamp": "2024-05-16T06:46:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077100", + "Timestamp": "2024-05-16T06:46:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020800", + "Timestamp": "2024-05-16T06:46:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.543600", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.538600", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.413600", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.352100", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.347100", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.222100", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.601800", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.596800", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.471800", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.543200", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.513200", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.413200", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.943200", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.798600", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.793600", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.668600", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.321000", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.316000", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.191000", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167000", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162000", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037000", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.876100", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.871100", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.746100", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.901500", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.871500", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.771500", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100400", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096400", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040400", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225100", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.626400", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.621400", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.496400", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.186400", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362700", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.357700", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.232700", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.829600", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.033200", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.456500", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.451500", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.326500", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235700", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108500", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148500", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048500", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.188500", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.183500", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.058500", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.089100", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.084100", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.959100", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102000", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098000", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042000", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132300", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128600", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072300", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.477600", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.472600", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.347600", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.676400", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.671400", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.546400", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.248800", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.218800", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118800", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135600", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131900", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075600", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.475200", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.470200", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.345200", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.266900", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.261900", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136900", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.805900", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.982900", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.100200", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.095200", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.970200", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.193300", + "Timestamp": "2024-05-16T06:46:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.386100", + "Timestamp": "2024-05-16T06:46:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.924600", + "Timestamp": "2024-05-16T06:32:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.919600", + "Timestamp": "2024-05-16T06:32:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.794600", + "Timestamp": "2024-05-16T06:32:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.126100", + "Timestamp": "2024-05-16T06:32:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.096100", + "Timestamp": "2024-05-16T06:32:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.996100", + "Timestamp": "2024-05-16T06:32:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139900", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136200", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079900", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.734500", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087000", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127000", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027000", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.269700", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.264700", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139700", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.539100", + "Timestamp": "2024-05-16T06:32:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.534100", + "Timestamp": "2024-05-16T06:32:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.409100", + "Timestamp": "2024-05-16T06:32:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.445800", + "Timestamp": "2024-05-16T06:32:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069200", + "Timestamp": "2024-05-16T06:32:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065500", + "Timestamp": "2024-05-16T06:32:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009200", + "Timestamp": "2024-05-16T06:32:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.433500", + "Timestamp": "2024-05-16T06:32:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.150400", + "Timestamp": "2024-05-16T06:32:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.145400", + "Timestamp": "2024-05-16T06:32:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.020400", + "Timestamp": "2024-05-16T06:32:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.469400", + "Timestamp": "2024-05-16T06:31:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.671800", + "Timestamp": "2024-05-16T06:31:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270400", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265400", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140400", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.589600", + "Timestamp": "2024-05-16T06:31:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.584600", + "Timestamp": "2024-05-16T06:31:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.459600", + "Timestamp": "2024-05-16T06:31:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.549700", + "Timestamp": "2024-05-16T06:31:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.912100", + "Timestamp": "2024-05-16T06:31:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.769900", + "Timestamp": "2024-05-16T06:31:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.764900", + "Timestamp": "2024-05-16T06:31:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.639900", + "Timestamp": "2024-05-16T06:31:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120700", + "Timestamp": "2024-05-16T06:31:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.352900", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.773400", + "Timestamp": "2024-05-16T06:31:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.768400", + "Timestamp": "2024-05-16T06:31:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.643400", + "Timestamp": "2024-05-16T06:31:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T06:31:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T06:31:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050800", + "Timestamp": "2024-05-16T06:31:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.258200", + "Timestamp": "2024-05-16T06:31:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067200", + "Timestamp": "2024-05-16T06:31:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038200", + "Timestamp": "2024-05-16T06:31:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007200", + "Timestamp": "2024-05-16T06:31:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.047700", + "Timestamp": "2024-05-16T06:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.900600", + "Timestamp": "2024-05-16T06:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.849900", + "Timestamp": "2024-05-16T06:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.930500", + "Timestamp": "2024-05-16T06:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.710400", + "Timestamp": "2024-05-16T06:31:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.705400", + "Timestamp": "2024-05-16T06:31:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.580400", + "Timestamp": "2024-05-16T06:31:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.515800", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.677500", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417700", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.741700", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.736700", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.611700", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.515300", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.510300", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.385300", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.488900", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.458900", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.358900", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.222900", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.677800", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.672800", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.547800", + "Timestamp": "2024-05-16T06:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093200", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089500", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033200", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.073000", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.043000", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.943000", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087900", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084900", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027900", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.060800", + "Timestamp": "2024-05-16T06:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.055800", + "Timestamp": "2024-05-16T06:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.930800", + "Timestamp": "2024-05-16T06:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223700", + "Timestamp": "2024-05-16T06:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.308300", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.278300", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.178300", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.481900", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.117000", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.769000", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117300", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113600", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057300", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.348400", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343400", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.218400", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.480500", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.475500", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.350500", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.106500", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.101500", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.976500", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.759000", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.431800", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.872500", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.867500", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.742500", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.356300", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.351300", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.226300", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.450700", + "Timestamp": "2024-05-16T06:31:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.445700", + "Timestamp": "2024-05-16T06:31:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.320700", + "Timestamp": "2024-05-16T06:31:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.505300", + "Timestamp": "2024-05-16T06:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.500300", + "Timestamp": "2024-05-16T06:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.375300", + "Timestamp": "2024-05-16T06:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.940800", + "Timestamp": "2024-05-16T06:31:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.935800", + "Timestamp": "2024-05-16T06:31:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.810800", + "Timestamp": "2024-05-16T06:31:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.452000", + "Timestamp": "2024-05-16T06:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.447000", + "Timestamp": "2024-05-16T06:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.322000", + "Timestamp": "2024-05-16T06:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118300", + "Timestamp": "2024-05-16T06:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T06:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058300", + "Timestamp": "2024-05-16T06:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.631500", + "Timestamp": "2024-05-16T06:31:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.671300", + "Timestamp": "2024-05-16T06:31:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.666300", + "Timestamp": "2024-05-16T06:31:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.541300", + "Timestamp": "2024-05-16T06:31:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.307800", + "Timestamp": "2024-05-16T06:17:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.871900", + "Timestamp": "2024-05-16T06:17:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.556900", + "Timestamp": "2024-05-16T06:17:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.551900", + "Timestamp": "2024-05-16T06:17:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.426900", + "Timestamp": "2024-05-16T06:17:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.217000", + "Timestamp": "2024-05-16T06:17:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.836400", + "Timestamp": "2024-05-16T06:17:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.740000", + "Timestamp": "2024-05-16T06:17:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.735000", + "Timestamp": "2024-05-16T06:17:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.610000", + "Timestamp": "2024-05-16T06:17:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.741300", + "Timestamp": "2024-05-16T06:17:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278300", + "Timestamp": "2024-05-16T06:17:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273300", + "Timestamp": "2024-05-16T06:17:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148300", + "Timestamp": "2024-05-16T06:17:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.208800", + "Timestamp": "2024-05-16T06:17:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.203800", + "Timestamp": "2024-05-16T06:17:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078800", + "Timestamp": "2024-05-16T06:17:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.011600", + "Timestamp": "2024-05-16T06:17:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.409500", + "Timestamp": "2024-05-16T06:17:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.692300", + "Timestamp": "2024-05-16T06:17:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.687300", + "Timestamp": "2024-05-16T06:17:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.562300", + "Timestamp": "2024-05-16T06:17:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084300", + "Timestamp": "2024-05-16T06:17:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080600", + "Timestamp": "2024-05-16T06:17:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024300", + "Timestamp": "2024-05-16T06:17:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.366700", + "Timestamp": "2024-05-16T06:17:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.361700", + "Timestamp": "2024-05-16T06:17:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.236700", + "Timestamp": "2024-05-16T06:17:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.688900", + "Timestamp": "2024-05-16T06:17:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.683900", + "Timestamp": "2024-05-16T06:17:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.558900", + "Timestamp": "2024-05-16T06:17:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.781400", + "Timestamp": "2024-05-16T06:17:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.776400", + "Timestamp": "2024-05-16T06:17:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.651400", + "Timestamp": "2024-05-16T06:17:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.786200", + "Timestamp": "2024-05-16T06:16:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.700500", + "Timestamp": "2024-05-16T06:16:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.131300", + "Timestamp": "2024-05-16T06:16:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070800", + "Timestamp": "2024-05-16T06:16:57.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041800", + "Timestamp": "2024-05-16T06:16:57.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010800", + "Timestamp": "2024-05-16T06:16:57.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.933500", + "Timestamp": "2024-05-16T06:16:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.746500", + "Timestamp": "2024-05-16T06:16:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.741500", + "Timestamp": "2024-05-16T06:16:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.616500", + "Timestamp": "2024-05-16T06:16:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.695700", + "Timestamp": "2024-05-16T06:16:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.690700", + "Timestamp": "2024-05-16T06:16:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.565700", + "Timestamp": "2024-05-16T06:16:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.935400", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.408900", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.403900", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.278900", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.476200", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.471200", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.346200", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.722200", + "Timestamp": "2024-05-16T06:16:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.761400", + "Timestamp": "2024-05-16T06:16:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.554600", + "Timestamp": "2024-05-16T06:16:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.549600", + "Timestamp": "2024-05-16T06:16:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.424600", + "Timestamp": "2024-05-16T06:16:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.419100", + "Timestamp": "2024-05-16T06:16:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.822800", + "Timestamp": "2024-05-16T06:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.500700", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.495700", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.370700", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.710000", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.705000", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.580000", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.878400", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.581000", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.576000", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.451000", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.030200", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.361900", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.236600", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.231600", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.444400", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.414400", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.314400", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.984500", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.425800", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.375600", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.370600", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.245600", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.214900", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.209900", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084900", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.401300", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.396300", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.271300", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.085400", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.080400", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.955400", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.591600", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.561600", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.461600", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.652600", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222200", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.781300", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.776300", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.651300", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.270000", + "Timestamp": "2024-05-16T06:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.607400", + "Timestamp": "2024-05-16T06:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.766300", + "Timestamp": "2024-05-16T06:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.558400", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.553400", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.428400", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.514700", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.509700", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.384700", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.435400", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.409300", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.722400", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.814900", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.126800", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.983200", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.978200", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.853200", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.266100", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.699700", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.474300", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.469300", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.344300", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.721100", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.716100", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.591100", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.349400", + "Timestamp": "2024-05-16T06:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.344400", + "Timestamp": "2024-05-16T06:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219400", + "Timestamp": "2024-05-16T06:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.928700", + "Timestamp": "2024-05-16T06:16:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.512200", + "Timestamp": "2024-05-16T06:16:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.507200", + "Timestamp": "2024-05-16T06:16:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.382200", + "Timestamp": "2024-05-16T06:16:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.517600", + "Timestamp": "2024-05-16T06:16:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092300", + "Timestamp": "2024-05-16T06:16:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088600", + "Timestamp": "2024-05-16T06:16:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032300", + "Timestamp": "2024-05-16T06:16:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.869400", + "Timestamp": "2024-05-16T06:02:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.247800", + "Timestamp": "2024-05-16T06:02:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.243800", + "Timestamp": "2024-05-16T06:02:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.187800", + "Timestamp": "2024-05-16T06:02:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.137600", + "Timestamp": "2024-05-16T06:02:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.107600", + "Timestamp": "2024-05-16T06:02:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.007600", + "Timestamp": "2024-05-16T06:02:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.851100", + "Timestamp": "2024-05-16T06:02:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145700", + "Timestamp": "2024-05-16T06:02:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142000", + "Timestamp": "2024-05-16T06:02:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085700", + "Timestamp": "2024-05-16T06:02:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.548100", + "Timestamp": "2024-05-16T06:02:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.543100", + "Timestamp": "2024-05-16T06:02:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.418100", + "Timestamp": "2024-05-16T06:02:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.520000", + "Timestamp": "2024-05-16T06:02:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.515000", + "Timestamp": "2024-05-16T06:02:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.390000", + "Timestamp": "2024-05-16T06:02:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164600", + "Timestamp": "2024-05-16T06:02:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160600", + "Timestamp": "2024-05-16T06:02:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T06:02:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.527900", + "Timestamp": "2024-05-16T06:02:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.496500", + "Timestamp": "2024-05-16T06:01:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.648100", + "Timestamp": "2024-05-16T06:01:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.519200", + "Timestamp": "2024-05-16T06:01:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.514200", + "Timestamp": "2024-05-16T06:01:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.389200", + "Timestamp": "2024-05-16T06:01:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.715700", + "Timestamp": "2024-05-16T06:01:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.710700", + "Timestamp": "2024-05-16T06:01:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.585700", + "Timestamp": "2024-05-16T06:01:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.080100", + "Timestamp": "2024-05-16T06:01:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.368100", + "Timestamp": "2024-05-16T06:01:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.821400", + "Timestamp": "2024-05-16T06:01:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.078300", + "Timestamp": "2024-05-16T06:01:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.073300", + "Timestamp": "2024-05-16T06:01:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.948300", + "Timestamp": "2024-05-16T06:01:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184500", + "Timestamp": "2024-05-16T06:01:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180800", + "Timestamp": "2024-05-16T06:01:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124500", + "Timestamp": "2024-05-16T06:01:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.424900", + "Timestamp": "2024-05-16T06:01:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.419900", + "Timestamp": "2024-05-16T06:01:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.294900", + "Timestamp": "2024-05-16T06:01:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.284600", + "Timestamp": "2024-05-16T06:01:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.279600", + "Timestamp": "2024-05-16T06:01:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.154600", + "Timestamp": "2024-05-16T06:01:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.835800", + "Timestamp": "2024-05-16T06:01:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.276800", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.271800", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146800", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417400", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.966600", + "Timestamp": "2024-05-16T06:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.168700", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.414500", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.409500", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.284500", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.131700", + "Timestamp": "2024-05-16T06:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.126700", + "Timestamp": "2024-05-16T06:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.001700", + "Timestamp": "2024-05-16T06:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294000", + "Timestamp": "2024-05-16T06:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289000", + "Timestamp": "2024-05-16T06:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164000", + "Timestamp": "2024-05-16T06:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.605900", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.600900", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.475900", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.660600", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.561000", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.556000", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.431000", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.287100", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.282100", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.157100", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211400", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.081000", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.076000", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.951000", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.555400", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.550400", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.425400", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.238600", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.408300", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.233600", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.403300", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.278300", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.641700", + "Timestamp": "2024-05-16T06:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.523100", + "Timestamp": "2024-05-16T06:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.787900", + "Timestamp": "2024-05-16T06:01:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.782900", + "Timestamp": "2024-05-16T06:01:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.657900", + "Timestamp": "2024-05-16T06:01:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.607700", + "Timestamp": "2024-05-16T06:01:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094700", + "Timestamp": "2024-05-16T06:01:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091000", + "Timestamp": "2024-05-16T06:01:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034700", + "Timestamp": "2024-05-16T06:01:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.527700", + "Timestamp": "2024-05-16T06:01:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.131000", + "Timestamp": "2024-05-16T05:47:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.961200", + "Timestamp": "2024-05-16T05:47:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.956200", + "Timestamp": "2024-05-16T05:47:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.831200", + "Timestamp": "2024-05-16T05:47:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-16T05:47:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068700", + "Timestamp": "2024-05-16T05:47:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065100", + "Timestamp": "2024-05-16T05:47:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065000", + "Timestamp": "2024-05-16T05:47:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008800", + "Timestamp": "2024-05-16T05:47:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008700", + "Timestamp": "2024-05-16T05:47:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.933000", + "Timestamp": "2024-05-16T05:47:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.928000", + "Timestamp": "2024-05-16T05:47:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.803000", + "Timestamp": "2024-05-16T05:47:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.253900", + "Timestamp": "2024-05-16T05:47:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.248900", + "Timestamp": "2024-05-16T05:47:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123900", + "Timestamp": "2024-05-16T05:47:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.222300", + "Timestamp": "2024-05-16T05:47:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.217300", + "Timestamp": "2024-05-16T05:47:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092300", + "Timestamp": "2024-05-16T05:47:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.851300", + "Timestamp": "2024-05-16T05:47:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.438300", + "Timestamp": "2024-05-16T05:47:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.433300", + "Timestamp": "2024-05-16T05:47:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.308300", + "Timestamp": "2024-05-16T05:47:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087300", + "Timestamp": "2024-05-16T05:47:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084300", + "Timestamp": "2024-05-16T05:47:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027300", + "Timestamp": "2024-05-16T05:47:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147600", + "Timestamp": "2024-05-16T05:47:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143900", + "Timestamp": "2024-05-16T05:47:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087600", + "Timestamp": "2024-05-16T05:47:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.984000", + "Timestamp": "2024-05-16T05:47:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.979000", + "Timestamp": "2024-05-16T05:47:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.854000", + "Timestamp": "2024-05-16T05:47:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.415100", + "Timestamp": "2024-05-16T05:46:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.113900", + "Timestamp": "2024-05-16T05:46:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.661900", + "Timestamp": "2024-05-16T05:46:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.656900", + "Timestamp": "2024-05-16T05:46:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.531900", + "Timestamp": "2024-05-16T05:46:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T05:46:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103900", + "Timestamp": "2024-05-16T05:46:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047600", + "Timestamp": "2024-05-16T05:46:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.374100", + "Timestamp": "2024-05-16T05:46:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.369100", + "Timestamp": "2024-05-16T05:46:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.244100", + "Timestamp": "2024-05-16T05:46:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.712400", + "Timestamp": "2024-05-16T05:46:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.329800", + "Timestamp": "2024-05-16T05:46:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354900", + "Timestamp": "2024-05-16T05:46:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349900", + "Timestamp": "2024-05-16T05:46:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224900", + "Timestamp": "2024-05-16T05:46:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.940700", + "Timestamp": "2024-05-16T05:46:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T05:46:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.266800", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.823900", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.840900", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116500", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056500", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.973900", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431300", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.542200", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.537200", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.412200", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080100", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076400", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020100", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.525900", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.520900", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.395900", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.825100", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.820100", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.695100", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.838200", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.808200", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.708200", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.364200", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334200", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.234200", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.756200", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.825200", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.751200", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.820200", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.626200", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.695200", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.802500", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.797500", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.672500", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094200", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090500", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034200", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.665600", + "Timestamp": "2024-05-16T05:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.660600", + "Timestamp": "2024-05-16T05:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.535600", + "Timestamp": "2024-05-16T05:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.303800", + "Timestamp": "2024-05-16T05:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298800", + "Timestamp": "2024-05-16T05:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.173800", + "Timestamp": "2024-05-16T05:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.760700", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.755700", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.630700", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.422900", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.417900", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.292900", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.530000", + "Timestamp": "2024-05-16T05:46:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.731100", + "Timestamp": "2024-05-16T05:46:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.943600", + "Timestamp": "2024-05-16T05:32:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.938600", + "Timestamp": "2024-05-16T05:32:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.813600", + "Timestamp": "2024-05-16T05:32:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.992200", + "Timestamp": "2024-05-16T05:32:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.275700", + "Timestamp": "2024-05-16T05:32:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270700", + "Timestamp": "2024-05-16T05:32:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145700", + "Timestamp": "2024-05-16T05:32:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T05:32:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146900", + "Timestamp": "2024-05-16T05:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143200", + "Timestamp": "2024-05-16T05:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086900", + "Timestamp": "2024-05-16T05:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.549500", + "Timestamp": "2024-05-16T05:32:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.353400", + "Timestamp": "2024-05-16T05:32:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323400", + "Timestamp": "2024-05-16T05:32:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.223400", + "Timestamp": "2024-05-16T05:32:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.717700", + "Timestamp": "2024-05-16T05:32:01.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.712700", + "Timestamp": "2024-05-16T05:32:01.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.587700", + "Timestamp": "2024-05-16T05:32:01.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.693100", + "Timestamp": "2024-05-16T05:32:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085400", + "Timestamp": "2024-05-16T05:31:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.081700", + "Timestamp": "2024-05-16T05:31:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025400", + "Timestamp": "2024-05-16T05:31:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.699200", + "Timestamp": "2024-05-16T05:31:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176100", + "Timestamp": "2024-05-16T05:31:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172100", + "Timestamp": "2024-05-16T05:31:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116100", + "Timestamp": "2024-05-16T05:31:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137500", + "Timestamp": "2024-05-16T05:31:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133500", + "Timestamp": "2024-05-16T05:31:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077500", + "Timestamp": "2024-05-16T05:31:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.957700", + "Timestamp": "2024-05-16T05:31:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.041100", + "Timestamp": "2024-05-16T05:31:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.036100", + "Timestamp": "2024-05-16T05:31:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.911100", + "Timestamp": "2024-05-16T05:31:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.412700", + "Timestamp": "2024-05-16T05:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.407700", + "Timestamp": "2024-05-16T05:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.282700", + "Timestamp": "2024-05-16T05:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.920200", + "Timestamp": "2024-05-16T05:31:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.501100", + "Timestamp": "2024-05-16T05:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.794000", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.222200", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.217200", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092200", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095400", + "Timestamp": "2024-05-16T05:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091700", + "Timestamp": "2024-05-16T05:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035400", + "Timestamp": "2024-05-16T05:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.333700", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.367200", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.328700", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.362200", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.203700", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.237200", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.333300", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.328300", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.203300", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.715200", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.685200", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.585200", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.537000", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.532000", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.407000", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.555700", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.550700", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.425700", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.544000", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.539000", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.414000", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094200", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090500", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034200", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218300", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.822500", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.817500", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.692500", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.007600", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.002600", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.877600", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.605100", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.600100", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.475100", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.490100", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.892600", + "Timestamp": "2024-05-16T05:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.903700", + "Timestamp": "2024-05-16T05:31:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.972000", + "Timestamp": "2024-05-16T05:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.967000", + "Timestamp": "2024-05-16T05:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.842000", + "Timestamp": "2024-05-16T05:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117500", + "Timestamp": "2024-05-16T05:31:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113800", + "Timestamp": "2024-05-16T05:31:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057500", + "Timestamp": "2024-05-16T05:31:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.377600", + "Timestamp": "2024-05-16T05:31:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372600", + "Timestamp": "2024-05-16T05:31:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.247600", + "Timestamp": "2024-05-16T05:31:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.245100", + "Timestamp": "2024-05-16T05:31:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.240100", + "Timestamp": "2024-05-16T05:31:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115100", + "Timestamp": "2024-05-16T05:31:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.388400", + "Timestamp": "2024-05-16T05:31:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.020900", + "Timestamp": "2024-05-16T05:17:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.242200", + "Timestamp": "2024-05-16T05:17:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.237200", + "Timestamp": "2024-05-16T05:17:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T05:17:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.538000", + "Timestamp": "2024-05-16T05:17:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.533000", + "Timestamp": "2024-05-16T05:17:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.408000", + "Timestamp": "2024-05-16T05:17:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086700", + "Timestamp": "2024-05-16T05:17:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083000", + "Timestamp": "2024-05-16T05:17:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026700", + "Timestamp": "2024-05-16T05:17:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.824000", + "Timestamp": "2024-05-16T05:17:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.819000", + "Timestamp": "2024-05-16T05:17:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.694000", + "Timestamp": "2024-05-16T05:17:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.472000", + "Timestamp": "2024-05-16T05:17:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.815300", + "Timestamp": "2024-05-16T05:17:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.785300", + "Timestamp": "2024-05-16T05:17:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.685300", + "Timestamp": "2024-05-16T05:17:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.372100", + "Timestamp": "2024-05-16T05:17:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.367100", + "Timestamp": "2024-05-16T05:17:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242100", + "Timestamp": "2024-05-16T05:17:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.356500", + "Timestamp": "2024-05-16T05:17:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.326500", + "Timestamp": "2024-05-16T05:17:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.226500", + "Timestamp": "2024-05-16T05:17:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.182400", + "Timestamp": "2024-05-16T05:17:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.879300", + "Timestamp": "2024-05-16T05:16:57.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.415800", + "Timestamp": "2024-05-16T05:16:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.337100", + "Timestamp": "2024-05-16T05:16:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.332100", + "Timestamp": "2024-05-16T05:16:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.207100", + "Timestamp": "2024-05-16T05:16:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.591100", + "Timestamp": "2024-05-16T05:16:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.586100", + "Timestamp": "2024-05-16T05:16:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.461100", + "Timestamp": "2024-05-16T05:16:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.120000", + "Timestamp": "2024-05-16T05:16:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.403000", + "Timestamp": "2024-05-16T05:16:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.398000", + "Timestamp": "2024-05-16T05:16:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.273000", + "Timestamp": "2024-05-16T05:16:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.266000", + "Timestamp": "2024-05-16T05:16:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.261000", + "Timestamp": "2024-05-16T05:16:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136000", + "Timestamp": "2024-05-16T05:16:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.366600", + "Timestamp": "2024-05-16T05:16:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.361600", + "Timestamp": "2024-05-16T05:16:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.236600", + "Timestamp": "2024-05-16T05:16:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173700", + "Timestamp": "2024-05-16T05:16:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170000", + "Timestamp": "2024-05-16T05:16:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113700", + "Timestamp": "2024-05-16T05:16:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.885300", + "Timestamp": "2024-05-16T05:16:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.880300", + "Timestamp": "2024-05-16T05:16:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.755300", + "Timestamp": "2024-05-16T05:16:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.002000", + "Timestamp": "2024-05-16T05:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.142700", + "Timestamp": "2024-05-16T05:16:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.137700", + "Timestamp": "2024-05-16T05:16:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.012700", + "Timestamp": "2024-05-16T05:16:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.616700", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.611700", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.486700", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088700", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085000", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028700", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.684700", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.674400", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125700", + "Timestamp": "2024-05-16T05:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122000", + "Timestamp": "2024-05-16T05:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065700", + "Timestamp": "2024-05-16T05:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.762500", + "Timestamp": "2024-05-16T05:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106200", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046200", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.373400", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046800", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.235500", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.230500", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105500", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.671300", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.641300", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.541300", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.848300", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.058400", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.729700", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.724700", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.599700", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.325800", + "Timestamp": "2024-05-16T05:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.425700", + "Timestamp": "2024-05-16T05:16:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.546700", + "Timestamp": "2024-05-16T05:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.214000", + "Timestamp": "2024-05-16T05:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.209000", + "Timestamp": "2024-05-16T05:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.084000", + "Timestamp": "2024-05-16T05:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.935200", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.203600", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198600", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073600", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.338000", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124000", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.468300", + "Timestamp": "2024-05-16T05:16:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.463300", + "Timestamp": "2024-05-16T05:16:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.338300", + "Timestamp": "2024-05-16T05:16:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.778600", + "Timestamp": "2024-05-16T05:16:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.821300", + "Timestamp": "2024-05-16T05:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.816300", + "Timestamp": "2024-05-16T05:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.691300", + "Timestamp": "2024-05-16T05:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.738000", + "Timestamp": "2024-05-16T05:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.733000", + "Timestamp": "2024-05-16T05:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.608000", + "Timestamp": "2024-05-16T05:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.512800", + "Timestamp": "2024-05-16T05:16:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.507800", + "Timestamp": "2024-05-16T05:16:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.382800", + "Timestamp": "2024-05-16T05:16:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121600", + "Timestamp": "2024-05-16T05:16:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117600", + "Timestamp": "2024-05-16T05:16:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061600", + "Timestamp": "2024-05-16T05:16:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.308900", + "Timestamp": "2024-05-16T05:02:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.303900", + "Timestamp": "2024-05-16T05:02:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.178900", + "Timestamp": "2024-05-16T05:02:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.135700", + "Timestamp": "2024-05-16T05:02:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.130700", + "Timestamp": "2024-05-16T05:02:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.005700", + "Timestamp": "2024-05-16T05:02:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.985600", + "Timestamp": "2024-05-16T05:02:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.980600", + "Timestamp": "2024-05-16T05:02:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.855600", + "Timestamp": "2024-05-16T05:02:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.241100", + "Timestamp": "2024-05-16T05:02:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.236100", + "Timestamp": "2024-05-16T05:02:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111100", + "Timestamp": "2024-05-16T05:02:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.479200", + "Timestamp": "2024-05-16T05:02:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.474200", + "Timestamp": "2024-05-16T05:02:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.349200", + "Timestamp": "2024-05-16T05:02:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.372600", + "Timestamp": "2024-05-16T05:02:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.746900", + "Timestamp": "2024-05-16T05:02:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087300", + "Timestamp": "2024-05-16T05:02:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083600", + "Timestamp": "2024-05-16T05:02:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027300", + "Timestamp": "2024-05-16T05:02:07.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108300", + "Timestamp": "2024-05-16T05:01:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T05:01:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048300", + "Timestamp": "2024-05-16T05:01:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.652700", + "Timestamp": "2024-05-16T05:01:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.647700", + "Timestamp": "2024-05-16T05:01:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.522700", + "Timestamp": "2024-05-16T05:01:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270700", + "Timestamp": "2024-05-16T05:01:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265700", + "Timestamp": "2024-05-16T05:01:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140700", + "Timestamp": "2024-05-16T05:01:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.237000", + "Timestamp": "2024-05-16T05:01:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232000", + "Timestamp": "2024-05-16T05:01:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107000", + "Timestamp": "2024-05-16T05:01:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.774800", + "Timestamp": "2024-05-16T05:01:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.769800", + "Timestamp": "2024-05-16T05:01:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.644800", + "Timestamp": "2024-05-16T05:01:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089500", + "Timestamp": "2024-05-16T05:01:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085800", + "Timestamp": "2024-05-16T05:01:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029500", + "Timestamp": "2024-05-16T05:01:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.550700", + "Timestamp": "2024-05-16T05:01:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.545700", + "Timestamp": "2024-05-16T05:01:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.420700", + "Timestamp": "2024-05-16T05:01:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119500", + "Timestamp": "2024-05-16T05:01:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.513600", + "Timestamp": "2024-05-16T05:01:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.503400", + "Timestamp": "2024-05-16T05:01:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T05:01:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.509600", + "Timestamp": "2024-05-16T05:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.479600", + "Timestamp": "2024-05-16T05:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.379600", + "Timestamp": "2024-05-16T05:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.388600", + "Timestamp": "2024-05-16T05:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.799500", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.794500", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.669500", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099400", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095700", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039400", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.059300", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.912900", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.907900", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.782900", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.599400", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.588000", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.594400", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.583000", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.469400", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.458000", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.584900", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.579900", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.454900", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.559600", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.554600", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.429600", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.207100", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.921400", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.916400", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.791400", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.650300", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.645300", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.520300", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.778900", + "Timestamp": "2024-05-16T05:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.773900", + "Timestamp": "2024-05-16T05:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.648900", + "Timestamp": "2024-05-16T05:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.122100", + "Timestamp": "2024-05-16T05:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.117100", + "Timestamp": "2024-05-16T05:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.992100", + "Timestamp": "2024-05-16T05:01:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.515800", + "Timestamp": "2024-05-16T05:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.931900", + "Timestamp": "2024-05-16T05:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.926900", + "Timestamp": "2024-05-16T05:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.801900", + "Timestamp": "2024-05-16T05:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.495600", + "Timestamp": "2024-05-16T05:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.490600", + "Timestamp": "2024-05-16T05:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.365600", + "Timestamp": "2024-05-16T05:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224100", + "Timestamp": "2024-05-16T05:01:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.678300", + "Timestamp": "2024-05-16T05:01:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.673300", + "Timestamp": "2024-05-16T05:01:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.548300", + "Timestamp": "2024-05-16T05:01:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077200", + "Timestamp": "2024-05-16T05:01:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073500", + "Timestamp": "2024-05-16T05:01:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017200", + "Timestamp": "2024-05-16T05:01:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.560300", + "Timestamp": "2024-05-16T05:01:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.555300", + "Timestamp": "2024-05-16T05:01:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.430300", + "Timestamp": "2024-05-16T05:01:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074800", + "Timestamp": "2024-05-16T04:47:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071100", + "Timestamp": "2024-05-16T04:47:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014800", + "Timestamp": "2024-05-16T04:47:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.947700", + "Timestamp": "2024-05-16T04:47:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.942700", + "Timestamp": "2024-05-16T04:47:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.817700", + "Timestamp": "2024-05-16T04:47:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.565600", + "Timestamp": "2024-05-16T04:47:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.560600", + "Timestamp": "2024-05-16T04:47:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.435600", + "Timestamp": "2024-05-16T04:47:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.842100", + "Timestamp": "2024-05-16T04:47:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.837100", + "Timestamp": "2024-05-16T04:47:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.712100", + "Timestamp": "2024-05-16T04:47:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143800", + "Timestamp": "2024-05-16T04:47:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140100", + "Timestamp": "2024-05-16T04:47:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083800", + "Timestamp": "2024-05-16T04:47:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.681800", + "Timestamp": "2024-05-16T04:46:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.411300", + "Timestamp": "2024-05-16T04:46:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.406300", + "Timestamp": "2024-05-16T04:46:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.281300", + "Timestamp": "2024-05-16T04:46:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.018900", + "Timestamp": "2024-05-16T04:46:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.013900", + "Timestamp": "2024-05-16T04:46:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.888900", + "Timestamp": "2024-05-16T04:46:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.793200", + "Timestamp": "2024-05-16T04:46:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.788200", + "Timestamp": "2024-05-16T04:46:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.663200", + "Timestamp": "2024-05-16T04:46:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.452400", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.447400", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.322400", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.894700", + "Timestamp": "2024-05-16T04:46:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.225500", + "Timestamp": "2024-05-16T04:46:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.220500", + "Timestamp": "2024-05-16T04:46:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.095500", + "Timestamp": "2024-05-16T04:46:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.214200", + "Timestamp": "2024-05-16T04:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.209200", + "Timestamp": "2024-05-16T04:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084200", + "Timestamp": "2024-05-16T04:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080900", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077200", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020900", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.762900", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.757900", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.632900", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.784700", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.625900", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.620900", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.495900", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.249100", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.244100", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119100", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.623400", + "Timestamp": "2024-05-16T04:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.618400", + "Timestamp": "2024-05-16T04:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.493400", + "Timestamp": "2024-05-16T04:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.651300", + "Timestamp": "2024-05-16T04:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.646300", + "Timestamp": "2024-05-16T04:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.521300", + "Timestamp": "2024-05-16T04:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112300", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.708900", + "Timestamp": "2024-05-16T04:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.678900", + "Timestamp": "2024-05-16T04:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.578900", + "Timestamp": "2024-05-16T04:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311900", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281900", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181900", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.395700", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.390700", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.265700", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.406800", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.765400", + "Timestamp": "2024-05-16T04:46:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.828600", + "Timestamp": "2024-05-16T04:46:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.160200", + "Timestamp": "2024-05-16T04:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.155200", + "Timestamp": "2024-05-16T04:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.030200", + "Timestamp": "2024-05-16T04:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.469000", + "Timestamp": "2024-05-16T04:46:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.251400", + "Timestamp": "2024-05-16T04:46:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209400", + "Timestamp": "2024-05-16T04:46:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.877700", + "Timestamp": "2024-05-16T04:46:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.847700", + "Timestamp": "2024-05-16T04:46:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.747700", + "Timestamp": "2024-05-16T04:46:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.257500", + "Timestamp": "2024-05-16T04:32:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.252500", + "Timestamp": "2024-05-16T04:32:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127500", + "Timestamp": "2024-05-16T04:32:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.026600", + "Timestamp": "2024-05-16T04:32:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.021600", + "Timestamp": "2024-05-16T04:32:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.896600", + "Timestamp": "2024-05-16T04:32:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.623400", + "Timestamp": "2024-05-16T04:32:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.618400", + "Timestamp": "2024-05-16T04:32:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.493400", + "Timestamp": "2024-05-16T04:32:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.775400", + "Timestamp": "2024-05-16T04:32:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.651900", + "Timestamp": "2024-05-16T04:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.646900", + "Timestamp": "2024-05-16T04:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.521900", + "Timestamp": "2024-05-16T04:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.254400", + "Timestamp": "2024-05-16T04:32:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.250400", + "Timestamp": "2024-05-16T04:32:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194400", + "Timestamp": "2024-05-16T04:32:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.263500", + "Timestamp": "2024-05-16T04:32:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.258500", + "Timestamp": "2024-05-16T04:32:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.133500", + "Timestamp": "2024-05-16T04:32:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.479300", + "Timestamp": "2024-05-16T04:32:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.556000", + "Timestamp": "2024-05-16T04:32:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.395400", + "Timestamp": "2024-05-16T04:31:57.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118700", + "Timestamp": "2024-05-16T04:31:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115700", + "Timestamp": "2024-05-16T04:31:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058700", + "Timestamp": "2024-05-16T04:31:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.419500", + "Timestamp": "2024-05-16T04:31:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.414500", + "Timestamp": "2024-05-16T04:31:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.289500", + "Timestamp": "2024-05-16T04:31:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.624300", + "Timestamp": "2024-05-16T04:31:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.619300", + "Timestamp": "2024-05-16T04:31:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.494300", + "Timestamp": "2024-05-16T04:31:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330500", + "Timestamp": "2024-05-16T04:31:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325500", + "Timestamp": "2024-05-16T04:31:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200500", + "Timestamp": "2024-05-16T04:31:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.018500", + "Timestamp": "2024-05-16T04:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.013500", + "Timestamp": "2024-05-16T04:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.888500", + "Timestamp": "2024-05-16T04:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.474800", + "Timestamp": "2024-05-16T04:31:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.788800", + "Timestamp": "2024-05-16T04:31:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.758800", + "Timestamp": "2024-05-16T04:31:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.658800", + "Timestamp": "2024-05-16T04:31:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.579600", + "Timestamp": "2024-05-16T04:31:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.382000", + "Timestamp": "2024-05-16T04:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.377000", + "Timestamp": "2024-05-16T04:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.252000", + "Timestamp": "2024-05-16T04:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.349600", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.344600", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219600", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.657200", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.652200", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.527200", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.772700", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.225200", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.195200", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.095200", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069900", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040900", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009900", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.870600", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.050300", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.045300", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.920300", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.227800", + "Timestamp": "2024-05-16T04:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147700", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144000", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087700", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.279800", + "Timestamp": "2024-05-16T04:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.274800", + "Timestamp": "2024-05-16T04:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.149800", + "Timestamp": "2024-05-16T04:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084800", + "Timestamp": "2024-05-16T04:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091400", + "Timestamp": "2024-05-16T04:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080800", + "Timestamp": "2024-05-16T04:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087400", + "Timestamp": "2024-05-16T04:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024800", + "Timestamp": "2024-05-16T04:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031400", + "Timestamp": "2024-05-16T04:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T04:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.706300", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.640300", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.635300", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.510300", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.139300", + "Timestamp": "2024-05-16T04:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143500", + "Timestamp": "2024-05-16T04:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139800", + "Timestamp": "2024-05-16T04:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083500", + "Timestamp": "2024-05-16T04:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.670900", + "Timestamp": "2024-05-16T04:31:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.665900", + "Timestamp": "2024-05-16T04:31:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.540900", + "Timestamp": "2024-05-16T04:31:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.281700", + "Timestamp": "2024-05-16T04:31:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276700", + "Timestamp": "2024-05-16T04:31:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.151700", + "Timestamp": "2024-05-16T04:31:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.253800", + "Timestamp": "2024-05-16T04:31:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.248800", + "Timestamp": "2024-05-16T04:31:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123800", + "Timestamp": "2024-05-16T04:31:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.226000", + "Timestamp": "2024-05-16T04:17:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102200", + "Timestamp": "2024-05-16T04:17:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T04:17:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098500", + "Timestamp": "2024-05-16T04:17:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T04:17:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042200", + "Timestamp": "2024-05-16T04:17:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049400", + "Timestamp": "2024-05-16T04:17:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.718500", + "Timestamp": "2024-05-16T04:17:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.688500", + "Timestamp": "2024-05-16T04:17:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.588500", + "Timestamp": "2024-05-16T04:17:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.097000", + "Timestamp": "2024-05-16T04:17:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.092000", + "Timestamp": "2024-05-16T04:17:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967000", + "Timestamp": "2024-05-16T04:17:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.269400", + "Timestamp": "2024-05-16T04:17:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.239400", + "Timestamp": "2024-05-16T04:17:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139400", + "Timestamp": "2024-05-16T04:17:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.857300", + "Timestamp": "2024-05-16T04:17:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.852300", + "Timestamp": "2024-05-16T04:17:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.727300", + "Timestamp": "2024-05-16T04:17:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.560600", + "Timestamp": "2024-05-16T04:17:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.530600", + "Timestamp": "2024-05-16T04:17:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.430600", + "Timestamp": "2024-05-16T04:17:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.480400", + "Timestamp": "2024-05-16T04:17:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.619300", + "Timestamp": "2024-05-16T04:16:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.614300", + "Timestamp": "2024-05-16T04:16:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.489300", + "Timestamp": "2024-05-16T04:16:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130200", + "Timestamp": "2024-05-16T04:16:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126500", + "Timestamp": "2024-05-16T04:16:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070200", + "Timestamp": "2024-05-16T04:16:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.840200", + "Timestamp": "2024-05-16T04:16:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.485900", + "Timestamp": "2024-05-16T04:16:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.480900", + "Timestamp": "2024-05-16T04:16:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.355900", + "Timestamp": "2024-05-16T04:16:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-16T04:16:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094400", + "Timestamp": "2024-05-16T04:16:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038100", + "Timestamp": "2024-05-16T04:16:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105300", + "Timestamp": "2024-05-16T04:16:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101600", + "Timestamp": "2024-05-16T04:16:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045300", + "Timestamp": "2024-05-16T04:16:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.247800", + "Timestamp": "2024-05-16T04:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.217800", + "Timestamp": "2024-05-16T04:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.117800", + "Timestamp": "2024-05-16T04:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.594800", + "Timestamp": "2024-05-16T04:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.564800", + "Timestamp": "2024-05-16T04:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.464800", + "Timestamp": "2024-05-16T04:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.406800", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.773100", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099700", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095700", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039700", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.183300", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.178300", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.053300", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.628800", + "Timestamp": "2024-05-16T04:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.623800", + "Timestamp": "2024-05-16T04:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.498800", + "Timestamp": "2024-05-16T04:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.769500", + "Timestamp": "2024-05-16T04:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.764500", + "Timestamp": "2024-05-16T04:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.639500", + "Timestamp": "2024-05-16T04:16:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.950300", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.945300", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.820300", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.620200", + "Timestamp": "2024-05-16T04:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.615200", + "Timestamp": "2024-05-16T04:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.490200", + "Timestamp": "2024-05-16T04:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123000", + "Timestamp": "2024-05-16T04:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119300", + "Timestamp": "2024-05-16T04:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063000", + "Timestamp": "2024-05-16T04:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.260300", + "Timestamp": "2024-05-16T04:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.629600", + "Timestamp": "2024-05-16T04:02:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.624600", + "Timestamp": "2024-05-16T04:02:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.499600", + "Timestamp": "2024-05-16T04:02:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074000", + "Timestamp": "2024-05-16T04:02:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070300", + "Timestamp": "2024-05-16T04:02:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014000", + "Timestamp": "2024-05-16T04:02:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.719500", + "Timestamp": "2024-05-16T04:02:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.714500", + "Timestamp": "2024-05-16T04:02:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.589500", + "Timestamp": "2024-05-16T04:02:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.255500", + "Timestamp": "2024-05-16T04:02:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.250500", + "Timestamp": "2024-05-16T04:02:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125500", + "Timestamp": "2024-05-16T04:02:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.668400", + "Timestamp": "2024-05-16T04:01:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.663400", + "Timestamp": "2024-05-16T04:01:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.538400", + "Timestamp": "2024-05-16T04:01:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.946000", + "Timestamp": "2024-05-16T04:01:57.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076600", + "Timestamp": "2024-05-16T04:01:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.072900", + "Timestamp": "2024-05-16T04:01:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016600", + "Timestamp": "2024-05-16T04:01:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.743600", + "Timestamp": "2024-05-16T04:01:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.581400", + "Timestamp": "2024-05-16T04:01:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.576400", + "Timestamp": "2024-05-16T04:01:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.451400", + "Timestamp": "2024-05-16T04:01:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.636700", + "Timestamp": "2024-05-16T04:01:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.631700", + "Timestamp": "2024-05-16T04:01:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.506700", + "Timestamp": "2024-05-16T04:01:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.057600", + "Timestamp": "2024-05-16T04:01:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.506300", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.591800", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.501300", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.586800", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.376300", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.461800", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.748900", + "Timestamp": "2024-05-16T04:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.743900", + "Timestamp": "2024-05-16T04:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.618900", + "Timestamp": "2024-05-16T04:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225400", + "Timestamp": "2024-05-16T04:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.542400", + "Timestamp": "2024-05-16T04:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.537400", + "Timestamp": "2024-05-16T04:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.412400", + "Timestamp": "2024-05-16T04:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.063200", + "Timestamp": "2024-05-16T04:01:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.058200", + "Timestamp": "2024-05-16T04:01:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.933200", + "Timestamp": "2024-05-16T04:01:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.851300", + "Timestamp": "2024-05-16T04:01:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.846300", + "Timestamp": "2024-05-16T04:01:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.721300", + "Timestamp": "2024-05-16T04:01:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T04:01:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104700", + "Timestamp": "2024-05-16T04:01:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048400", + "Timestamp": "2024-05-16T04:01:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.785300", + "Timestamp": "2024-05-16T04:01:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.780300", + "Timestamp": "2024-05-16T04:01:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.655300", + "Timestamp": "2024-05-16T04:01:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070300", + "Timestamp": "2024-05-16T04:01:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041300", + "Timestamp": "2024-05-16T04:01:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010300", + "Timestamp": "2024-05-16T04:01:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.987800", + "Timestamp": "2024-05-16T04:01:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.008900", + "Timestamp": "2024-05-16T03:47:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.003900", + "Timestamp": "2024-05-16T03:47:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.878900", + "Timestamp": "2024-05-16T03:47:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T03:47:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142500", + "Timestamp": "2024-05-16T03:47:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138500", + "Timestamp": "2024-05-16T03:47:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082500", + "Timestamp": "2024-05-16T03:47:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.122300", + "Timestamp": "2024-05-16T03:47:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.120700", + "Timestamp": "2024-05-16T03:47:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.115700", + "Timestamp": "2024-05-16T03:47:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.990700", + "Timestamp": "2024-05-16T03:47:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224900", + "Timestamp": "2024-05-16T03:47:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T03:47:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T03:47:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047300", + "Timestamp": "2024-05-16T03:47:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.494900", + "Timestamp": "2024-05-16T03:47:02.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099300", + "Timestamp": "2024-05-16T03:46:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095600", + "Timestamp": "2024-05-16T03:46:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039300", + "Timestamp": "2024-05-16T03:46:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.434800", + "Timestamp": "2024-05-16T03:46:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.429800", + "Timestamp": "2024-05-16T03:46:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.304800", + "Timestamp": "2024-05-16T03:46:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.545800", + "Timestamp": "2024-05-16T03:46:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.540800", + "Timestamp": "2024-05-16T03:46:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.415800", + "Timestamp": "2024-05-16T03:46:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.510400", + "Timestamp": "2024-05-16T03:46:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207800", + "Timestamp": "2024-05-16T03:46:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.212500", + "Timestamp": "2024-05-16T03:46:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.777300", + "Timestamp": "2024-05-16T03:46:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.435300", + "Timestamp": "2024-05-16T03:46:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.430800", + "Timestamp": "2024-05-16T03:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.425800", + "Timestamp": "2024-05-16T03:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.300800", + "Timestamp": "2024-05-16T03:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.317800", + "Timestamp": "2024-05-16T03:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.569800", + "Timestamp": "2024-05-16T03:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.564800", + "Timestamp": "2024-05-16T03:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.439800", + "Timestamp": "2024-05-16T03:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083100", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079400", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023100", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116700", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056700", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.091100", + "Timestamp": "2024-05-16T03:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270500", + "Timestamp": "2024-05-16T03:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265500", + "Timestamp": "2024-05-16T03:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140500", + "Timestamp": "2024-05-16T03:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069100", + "Timestamp": "2024-05-16T03:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065400", + "Timestamp": "2024-05-16T03:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009100", + "Timestamp": "2024-05-16T03:46:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.707900", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.702900", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.577900", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209300", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211400", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.891200", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.886200", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.761200", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.227400", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200600", + "Timestamp": "2024-05-16T03:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.195600", + "Timestamp": "2024-05-16T03:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070600", + "Timestamp": "2024-05-16T03:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.478400", + "Timestamp": "2024-05-16T03:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473400", + "Timestamp": "2024-05-16T03:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.348400", + "Timestamp": "2024-05-16T03:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.484200", + "Timestamp": "2024-05-16T03:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.460800", + "Timestamp": "2024-05-16T03:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.455800", + "Timestamp": "2024-05-16T03:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.330800", + "Timestamp": "2024-05-16T03:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.272700", + "Timestamp": "2024-05-16T03:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267700", + "Timestamp": "2024-05-16T03:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142700", + "Timestamp": "2024-05-16T03:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.414000", + "Timestamp": "2024-05-16T03:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.409000", + "Timestamp": "2024-05-16T03:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.284000", + "Timestamp": "2024-05-16T03:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.528900", + "Timestamp": "2024-05-16T03:46:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.473200", + "Timestamp": "2024-05-16T03:32:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.003300", + "Timestamp": "2024-05-16T03:32:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.423500", + "Timestamp": "2024-05-16T03:31:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.610600", + "Timestamp": "2024-05-16T03:31:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.580600", + "Timestamp": "2024-05-16T03:31:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.480600", + "Timestamp": "2024-05-16T03:31:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082200", + "Timestamp": "2024-05-16T03:31:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078500", + "Timestamp": "2024-05-16T03:31:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022200", + "Timestamp": "2024-05-16T03:31:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213900", + "Timestamp": "2024-05-16T03:31:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.508400", + "Timestamp": "2024-05-16T03:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.975900", + "Timestamp": "2024-05-16T03:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.241800", + "Timestamp": "2024-05-16T03:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223900", + "Timestamp": "2024-05-16T03:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131700", + "Timestamp": "2024-05-16T03:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127700", + "Timestamp": "2024-05-16T03:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071700", + "Timestamp": "2024-05-16T03:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.259500", + "Timestamp": "2024-05-16T03:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.254500", + "Timestamp": "2024-05-16T03:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129500", + "Timestamp": "2024-05-16T03:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.823700", + "Timestamp": "2024-05-16T03:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.818700", + "Timestamp": "2024-05-16T03:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.693700", + "Timestamp": "2024-05-16T03:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081400", + "Timestamp": "2024-05-16T03:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077700", + "Timestamp": "2024-05-16T03:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021400", + "Timestamp": "2024-05-16T03:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.547100", + "Timestamp": "2024-05-16T03:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.952100", + "Timestamp": "2024-05-16T03:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.947100", + "Timestamp": "2024-05-16T03:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.822100", + "Timestamp": "2024-05-16T03:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117700", + "Timestamp": "2024-05-16T03:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114000", + "Timestamp": "2024-05-16T03:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057700", + "Timestamp": "2024-05-16T03:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.564500", + "Timestamp": "2024-05-16T03:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.534500", + "Timestamp": "2024-05-16T03:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.434500", + "Timestamp": "2024-05-16T03:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.600800", + "Timestamp": "2024-05-16T03:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.595800", + "Timestamp": "2024-05-16T03:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.470800", + "Timestamp": "2024-05-16T03:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.792300", + "Timestamp": "2024-05-16T03:31:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.787300", + "Timestamp": "2024-05-16T03:31:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.662300", + "Timestamp": "2024-05-16T03:31:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.870000", + "Timestamp": "2024-05-16T03:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.840000", + "Timestamp": "2024-05-16T03:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.740000", + "Timestamp": "2024-05-16T03:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.482200", + "Timestamp": "2024-05-16T03:31:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.477200", + "Timestamp": "2024-05-16T03:31:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.352200", + "Timestamp": "2024-05-16T03:31:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-16T03:17:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103200", + "Timestamp": "2024-05-16T03:17:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046900", + "Timestamp": "2024-05-16T03:17:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.739600", + "Timestamp": "2024-05-16T03:17:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.734600", + "Timestamp": "2024-05-16T03:17:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.609600", + "Timestamp": "2024-05-16T03:17:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.757300", + "Timestamp": "2024-05-16T03:17:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.860800", + "Timestamp": "2024-05-16T03:17:04.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.855800", + "Timestamp": "2024-05-16T03:17:04.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.730800", + "Timestamp": "2024-05-16T03:17:04.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.509700", + "Timestamp": "2024-05-16T03:16:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.504700", + "Timestamp": "2024-05-16T03:16:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.379700", + "Timestamp": "2024-05-16T03:16:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134700", + "Timestamp": "2024-05-16T03:16:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131700", + "Timestamp": "2024-05-16T03:16:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074700", + "Timestamp": "2024-05-16T03:16:54.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.808300", + "Timestamp": "2024-05-16T03:16:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.803300", + "Timestamp": "2024-05-16T03:16:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.678300", + "Timestamp": "2024-05-16T03:16:53.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.415600", + "Timestamp": "2024-05-16T03:16:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.735900", + "Timestamp": "2024-05-16T03:16:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.475900", + "Timestamp": "2024-05-16T03:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.445900", + "Timestamp": "2024-05-16T03:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.345900", + "Timestamp": "2024-05-16T03:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.309400", + "Timestamp": "2024-05-16T03:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.304400", + "Timestamp": "2024-05-16T03:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.179400", + "Timestamp": "2024-05-16T03:16:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.281700", + "Timestamp": "2024-05-16T03:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276700", + "Timestamp": "2024-05-16T03:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.151700", + "Timestamp": "2024-05-16T03:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.267100", + "Timestamp": "2024-05-16T03:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.262100", + "Timestamp": "2024-05-16T03:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.137100", + "Timestamp": "2024-05-16T03:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.550900", + "Timestamp": "2024-05-16T03:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.545900", + "Timestamp": "2024-05-16T03:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.420900", + "Timestamp": "2024-05-16T03:16:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.210400", + "Timestamp": "2024-05-16T03:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.205400", + "Timestamp": "2024-05-16T03:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080400", + "Timestamp": "2024-05-16T03:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223300", + "Timestamp": "2024-05-16T03:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146900", + "Timestamp": "2024-05-16T03:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143200", + "Timestamp": "2024-05-16T03:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086900", + "Timestamp": "2024-05-16T03:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.048600", + "Timestamp": "2024-05-16T03:16:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.043600", + "Timestamp": "2024-05-16T03:16:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.918600", + "Timestamp": "2024-05-16T03:16:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207200", + "Timestamp": "2024-05-16T03:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271000", + "Timestamp": "2024-05-16T03:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266000", + "Timestamp": "2024-05-16T03:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141000", + "Timestamp": "2024-05-16T03:16:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.752600", + "Timestamp": "2024-05-16T03:02:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.747600", + "Timestamp": "2024-05-16T03:02:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.622600", + "Timestamp": "2024-05-16T03:02:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.037400", + "Timestamp": "2024-05-16T03:02:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092500", + "Timestamp": "2024-05-16T03:02:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088800", + "Timestamp": "2024-05-16T03:02:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032500", + "Timestamp": "2024-05-16T03:02:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.276600", + "Timestamp": "2024-05-16T03:02:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.364300", + "Timestamp": "2024-05-16T03:01:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.359300", + "Timestamp": "2024-05-16T03:01:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.234300", + "Timestamp": "2024-05-16T03:01:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.394500", + "Timestamp": "2024-05-16T03:01:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.389500", + "Timestamp": "2024-05-16T03:01:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.264500", + "Timestamp": "2024-05-16T03:01:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-16T03:01:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098000", + "Timestamp": "2024-05-16T03:01:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041700", + "Timestamp": "2024-05-16T03:01:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071400", + "Timestamp": "2024-05-16T03:01:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067700", + "Timestamp": "2024-05-16T03:01:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011400", + "Timestamp": "2024-05-16T03:01:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.651400", + "Timestamp": "2024-05-16T03:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.710700", + "Timestamp": "2024-05-16T03:01:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.506300", + "Timestamp": "2024-05-16T03:01:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.839500", + "Timestamp": "2024-05-16T03:01:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.433200", + "Timestamp": "2024-05-16T03:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.979700", + "Timestamp": "2024-05-16T03:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-16T03:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217500", + "Timestamp": "2024-05-16T03:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084300", + "Timestamp": "2024-05-16T03:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080600", + "Timestamp": "2024-05-16T03:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024300", + "Timestamp": "2024-05-16T03:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.825100", + "Timestamp": "2024-05-16T03:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093800", + "Timestamp": "2024-05-16T03:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090100", + "Timestamp": "2024-05-16T03:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033800", + "Timestamp": "2024-05-16T03:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.203100", + "Timestamp": "2024-05-16T03:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198100", + "Timestamp": "2024-05-16T03:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073100", + "Timestamp": "2024-05-16T03:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005500", + "Timestamp": "2024-05-16T02:53:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.863700", + "Timestamp": "2024-05-16T02:47:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.061100", + "Timestamp": "2024-05-16T02:47:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.160100", + "Timestamp": "2024-05-16T02:47:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.155100", + "Timestamp": "2024-05-16T02:47:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.030100", + "Timestamp": "2024-05-16T02:47:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.146100", + "Timestamp": "2024-05-16T02:47:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.116100", + "Timestamp": "2024-05-16T02:47:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.016100", + "Timestamp": "2024-05-16T02:47:05.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.995300", + "Timestamp": "2024-05-16T02:46:51.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.694500", + "Timestamp": "2024-05-16T02:46:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.689500", + "Timestamp": "2024-05-16T02:46:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.564500", + "Timestamp": "2024-05-16T02:46:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432900", + "Timestamp": "2024-05-16T02:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432000", + "Timestamp": "2024-05-16T02:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.685000", + "Timestamp": "2024-05-16T02:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.591200", + "Timestamp": "2024-05-16T02:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.586200", + "Timestamp": "2024-05-16T02:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.461200", + "Timestamp": "2024-05-16T02:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114100", + "Timestamp": "2024-05-16T02:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067100", + "Timestamp": "2024-05-16T02:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038100", + "Timestamp": "2024-05-16T02:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007100", + "Timestamp": "2024-05-16T02:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206000", + "Timestamp": "2024-05-16T02:46:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220100", + "Timestamp": "2024-05-16T02:46:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.320100", + "Timestamp": "2024-05-16T02:34:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.315100", + "Timestamp": "2024-05-16T02:34:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190100", + "Timestamp": "2024-05-16T02:34:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.269900", + "Timestamp": "2024-05-16T02:32:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.264900", + "Timestamp": "2024-05-16T02:32:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139900", + "Timestamp": "2024-05-16T02:32:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.310600", + "Timestamp": "2024-05-16T02:32:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.305600", + "Timestamp": "2024-05-16T02:32:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180600", + "Timestamp": "2024-05-16T02:32:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.431500", + "Timestamp": "2024-05-16T02:32:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.426500", + "Timestamp": "2024-05-16T02:32:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.301500", + "Timestamp": "2024-05-16T02:32:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120200", + "Timestamp": "2024-05-16T02:32:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.228000", + "Timestamp": "2024-05-16T02:32:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069200", + "Timestamp": "2024-05-16T02:31:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065500", + "Timestamp": "2024-05-16T02:31:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009200", + "Timestamp": "2024-05-16T02:31:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.212200", + "Timestamp": "2024-05-16T02:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.207200", + "Timestamp": "2024-05-16T02:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.082200", + "Timestamp": "2024-05-16T02:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T02:31:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.275100", + "Timestamp": "2024-05-16T02:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.245100", + "Timestamp": "2024-05-16T02:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145100", + "Timestamp": "2024-05-16T02:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T02:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098400", + "Timestamp": "2024-05-16T02:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042100", + "Timestamp": "2024-05-16T02:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.251400", + "Timestamp": "2024-05-16T02:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.246400", + "Timestamp": "2024-05-16T02:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121400", + "Timestamp": "2024-05-16T02:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216500", + "Timestamp": "2024-05-16T02:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.826100", + "Timestamp": "2024-05-16T02:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086700", + "Timestamp": "2024-05-16T02:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083700", + "Timestamp": "2024-05-16T02:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026700", + "Timestamp": "2024-05-16T02:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.210700", + "Timestamp": "2024-05-16T02:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143300", + "Timestamp": "2024-05-16T02:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139300", + "Timestamp": "2024-05-16T02:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083300", + "Timestamp": "2024-05-16T02:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.787500", + "Timestamp": "2024-05-16T02:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.782500", + "Timestamp": "2024-05-16T02:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.657500", + "Timestamp": "2024-05-16T02:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.256300", + "Timestamp": "2024-05-16T02:17:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.251300", + "Timestamp": "2024-05-16T02:17:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T02:17:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.544700", + "Timestamp": "2024-05-16T02:17:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.539700", + "Timestamp": "2024-05-16T02:17:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.414700", + "Timestamp": "2024-05-16T02:17:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069800", + "Timestamp": "2024-05-16T02:17:02.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066100", + "Timestamp": "2024-05-16T02:17:02.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009800", + "Timestamp": "2024-05-16T02:17:02.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.277800", + "Timestamp": "2024-05-16T02:16:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.272800", + "Timestamp": "2024-05-16T02:16:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147800", + "Timestamp": "2024-05-16T02:16:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072400", + "Timestamp": "2024-05-16T02:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068700", + "Timestamp": "2024-05-16T02:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012400", + "Timestamp": "2024-05-16T02:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.317300", + "Timestamp": "2024-05-16T02:16:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.443100", + "Timestamp": "2024-05-16T02:02:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109100", + "Timestamp": "2024-05-16T02:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T02:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049100", + "Timestamp": "2024-05-16T02:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.696200", + "Timestamp": "2024-05-16T02:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T02:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T02:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051400", + "Timestamp": "2024-05-16T02:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.641900", + "Timestamp": "2024-05-16T02:01:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.692500", + "Timestamp": "2024-05-16T02:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.687500", + "Timestamp": "2024-05-16T02:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.562500", + "Timestamp": "2024-05-16T02:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078500", + "Timestamp": "2024-05-16T02:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074800", + "Timestamp": "2024-05-16T02:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018500", + "Timestamp": "2024-05-16T02:01:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094400", + "Timestamp": "2024-05-16T02:01:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090700", + "Timestamp": "2024-05-16T02:01:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034400", + "Timestamp": "2024-05-16T02:01:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.410200", + "Timestamp": "2024-05-16T02:01:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108500", + "Timestamp": "2024-05-16T02:01:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T02:01:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048500", + "Timestamp": "2024-05-16T02:01:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.491500", + "Timestamp": "2024-05-16T01:59:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.863700", + "Timestamp": "2024-05-16T01:55:58.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062700", + "Timestamp": "2024-05-16T01:48:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002700", + "Timestamp": "2024-05-16T01:48:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002700", + "Timestamp": "2024-05-16T01:48:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.024400", + "Timestamp": "2024-05-16T01:47:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147700", + "Timestamp": "2024-05-16T01:46:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144000", + "Timestamp": "2024-05-16T01:46:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087700", + "Timestamp": "2024-05-16T01:46:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.091900", + "Timestamp": "2024-05-16T01:46:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.717900", + "Timestamp": "2024-05-16T01:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.712900", + "Timestamp": "2024-05-16T01:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.587900", + "Timestamp": "2024-05-16T01:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.117600", + "Timestamp": "2024-05-16T01:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.290600", + "Timestamp": "2024-05-16T01:32:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.285600", + "Timestamp": "2024-05-16T01:32:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.160600", + "Timestamp": "2024-05-16T01:32:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096700", + "Timestamp": "2024-05-16T01:32:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093000", + "Timestamp": "2024-05-16T01:32:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036700", + "Timestamp": "2024-05-16T01:32:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.430600", + "Timestamp": "2024-05-16T01:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071700", + "Timestamp": "2024-05-16T01:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042700", + "Timestamp": "2024-05-16T01:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011700", + "Timestamp": "2024-05-16T01:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111200", + "Timestamp": "2024-05-16T01:31:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.980200", + "Timestamp": "2024-05-16T01:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.975200", + "Timestamp": "2024-05-16T01:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.850200", + "Timestamp": "2024-05-16T01:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T01:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T01:31:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T01:31:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054600", + "Timestamp": "2024-05-16T01:31:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084400", + "Timestamp": "2024-05-16T01:17:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080700", + "Timestamp": "2024-05-16T01:17:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024400", + "Timestamp": "2024-05-16T01:17:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069200", + "Timestamp": "2024-05-16T01:16:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065500", + "Timestamp": "2024-05-16T01:16:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009200", + "Timestamp": "2024-05-16T01:16:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.512400", + "Timestamp": "2024-05-16T01:16:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208300", + "Timestamp": "2024-05-16T01:16:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086700", + "Timestamp": "2024-05-16T01:16:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083000", + "Timestamp": "2024-05-16T01:16:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026700", + "Timestamp": "2024-05-16T01:16:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085900", + "Timestamp": "2024-05-16T01:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082200", + "Timestamp": "2024-05-16T01:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025900", + "Timestamp": "2024-05-16T01:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.233100", + "Timestamp": "2024-05-16T01:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.228100", + "Timestamp": "2024-05-16T01:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.103100", + "Timestamp": "2024-05-16T01:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069200", + "Timestamp": "2024-05-16T01:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065500", + "Timestamp": "2024-05-16T01:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009200", + "Timestamp": "2024-05-16T01:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084200", + "Timestamp": "2024-05-16T01:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080500", + "Timestamp": "2024-05-16T01:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024200", + "Timestamp": "2024-05-16T01:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.245300", + "Timestamp": "2024-05-16T01:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.240300", + "Timestamp": "2024-05-16T01:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115300", + "Timestamp": "2024-05-16T01:16:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T01:02:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T01:02:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040800", + "Timestamp": "2024-05-16T01:02:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.549600", + "Timestamp": "2024-05-16T01:02:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.544600", + "Timestamp": "2024-05-16T01:02:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.419600", + "Timestamp": "2024-05-16T01:02:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086200", + "Timestamp": "2024-05-16T01:01:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082500", + "Timestamp": "2024-05-16T01:01:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026200", + "Timestamp": "2024-05-16T01:01:49.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.386000", + "Timestamp": "2024-05-16T01:01:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166900", + "Timestamp": "2024-05-16T01:01:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161900", + "Timestamp": "2024-05-16T01:01:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036900", + "Timestamp": "2024-05-16T01:01:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.489000", + "Timestamp": "2024-05-16T01:01:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T01:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098900", + "Timestamp": "2024-05-16T01:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042900", + "Timestamp": "2024-05-16T01:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235700", + "Timestamp": "2024-05-16T01:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.252500", + "Timestamp": "2024-05-16T01:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.247500", + "Timestamp": "2024-05-16T01:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122500", + "Timestamp": "2024-05-16T01:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.641800", + "Timestamp": "2024-05-16T01:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.378400", + "Timestamp": "2024-05-16T00:59:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.378400", + "Timestamp": "2024-05-16T00:59:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.890600", + "Timestamp": "2024-05-16T00:54:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.890600", + "Timestamp": "2024-05-16T00:54:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.885600", + "Timestamp": "2024-05-16T00:54:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.885600", + "Timestamp": "2024-05-16T00:54:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.760600", + "Timestamp": "2024-05-16T00:54:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.760600", + "Timestamp": "2024-05-16T00:54:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.704600", + "Timestamp": "2024-05-16T00:54:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.704600", + "Timestamp": "2024-05-16T00:54:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.704600", + "Timestamp": "2024-05-16T00:54:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217000", + "Timestamp": "2024-05-16T00:47:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090500", + "Timestamp": "2024-05-16T00:46:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086800", + "Timestamp": "2024-05-16T00:46:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030500", + "Timestamp": "2024-05-16T00:46:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.240300", + "Timestamp": "2024-05-16T00:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.235300", + "Timestamp": "2024-05-16T00:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T00:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082000", + "Timestamp": "2024-05-16T00:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078300", + "Timestamp": "2024-05-16T00:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022000", + "Timestamp": "2024-05-16T00:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078300", + "Timestamp": "2024-05-16T00:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074600", + "Timestamp": "2024-05-16T00:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018300", + "Timestamp": "2024-05-16T00:46:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005400", + "Timestamp": "2024-05-16T00:32:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062700", + "Timestamp": "2024-05-16T00:32:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002700", + "Timestamp": "2024-05-16T00:32:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002700", + "Timestamp": "2024-05-16T00:32:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086400", + "Timestamp": "2024-05-16T00:32:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082700", + "Timestamp": "2024-05-16T00:32:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026400", + "Timestamp": "2024-05-16T00:32:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.435300", + "Timestamp": "2024-05-16T00:31:51.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.430300", + "Timestamp": "2024-05-16T00:31:51.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.305300", + "Timestamp": "2024-05-16T00:31:51.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.420200", + "Timestamp": "2024-05-16T00:31:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.390200", + "Timestamp": "2024-05-16T00:31:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.290200", + "Timestamp": "2024-05-16T00:31:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104100", + "Timestamp": "2024-05-16T00:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100400", + "Timestamp": "2024-05-16T00:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044100", + "Timestamp": "2024-05-16T00:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T00:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233200", + "Timestamp": "2024-05-16T00:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097000", + "Timestamp": "2024-05-16T00:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093000", + "Timestamp": "2024-05-16T00:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037000", + "Timestamp": "2024-05-16T00:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.023800", + "Timestamp": "2024-05-16T00:19:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062500", + "Timestamp": "2024-05-16T00:17:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-16T00:17:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-16T00:17:16.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.953700", + "Timestamp": "2024-05-16T00:17:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.923700", + "Timestamp": "2024-05-16T00:17:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.823700", + "Timestamp": "2024-05-16T00:17:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073500", + "Timestamp": "2024-05-16T00:16:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069800", + "Timestamp": "2024-05-16T00:16:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013500", + "Timestamp": "2024-05-16T00:16:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077000", + "Timestamp": "2024-05-16T00:16:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073300", + "Timestamp": "2024-05-16T00:16:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017000", + "Timestamp": "2024-05-16T00:16:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.411700", + "Timestamp": "2024-05-16T00:03:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.406700", + "Timestamp": "2024-05-16T00:03:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.281700", + "Timestamp": "2024-05-16T00:03:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.242200", + "Timestamp": "2024-05-16T00:02:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.237200", + "Timestamp": "2024-05-16T00:02:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T00:02:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.407100", + "Timestamp": "2024-05-16T00:02:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108800", + "Timestamp": "2024-05-16T00:02:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134900", + "Timestamp": "2024-05-16T00:01:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131200", + "Timestamp": "2024-05-16T00:01:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074900", + "Timestamp": "2024-05-16T00:01:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.444400", + "Timestamp": "2024-05-16T00:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T00:01:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.411000", + "Timestamp": "2024-05-16T00:01:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-15T23:46:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130600", + "Timestamp": "2024-05-15T23:46:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074300", + "Timestamp": "2024-05-15T23:46:56.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160100", + "Timestamp": "2024-05-15T23:46:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156100", + "Timestamp": "2024-05-15T23:46:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100100", + "Timestamp": "2024-05-15T23:46:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.037100", + "Timestamp": "2024-05-15T23:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087400", + "Timestamp": "2024-05-15T23:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083700", + "Timestamp": "2024-05-15T23:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027400", + "Timestamp": "2024-05-15T23:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.888000", + "Timestamp": "2024-05-15T23:46:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085200", + "Timestamp": "2024-05-15T23:46:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.081500", + "Timestamp": "2024-05-15T23:46:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025200", + "Timestamp": "2024-05-15T23:46:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.024900", + "Timestamp": "2024-05-15T23:32:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.122700", + "Timestamp": "2024-05-15T23:31:43.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102200", + "Timestamp": "2024-05-15T23:31:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098500", + "Timestamp": "2024-05-15T23:31:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042200", + "Timestamp": "2024-05-15T23:31:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.474300", + "Timestamp": "2024-05-15T23:31:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-15T23:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093800", + "Timestamp": "2024-05-15T23:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037500", + "Timestamp": "2024-05-15T23:31:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071100", + "Timestamp": "2024-05-15T23:17:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042100", + "Timestamp": "2024-05-15T23:17:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011100", + "Timestamp": "2024-05-15T23:17:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108800", + "Timestamp": "2024-05-15T23:17:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072500", + "Timestamp": "2024-05-15T23:16:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-15T23:16:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012500", + "Timestamp": "2024-05-15T23:16:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.448700", + "Timestamp": "2024-05-15T23:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.011300", + "Timestamp": "2024-05-15T23:02:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.006300", + "Timestamp": "2024-05-15T23:02:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.881300", + "Timestamp": "2024-05-15T23:02:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062700", + "Timestamp": "2024-05-15T23:01:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002700", + "Timestamp": "2024-05-15T23:01:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002700", + "Timestamp": "2024-05-15T23:01:59.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-15T23:01:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099100", + "Timestamp": "2024-05-15T23:01:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042800", + "Timestamp": "2024-05-15T23:01:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.933900", + "Timestamp": "2024-05-15T23:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-15T23:01:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102700", + "Timestamp": "2024-05-15T23:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098700", + "Timestamp": "2024-05-15T23:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042700", + "Timestamp": "2024-05-15T23:01:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.559600", + "Timestamp": "2024-05-15T22:53:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.559600", + "Timestamp": "2024-05-15T22:53:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.830900", + "Timestamp": "2024-05-15T22:47:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.825900", + "Timestamp": "2024-05-15T22:47:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.700900", + "Timestamp": "2024-05-15T22:47:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.302700", + "Timestamp": "2024-05-15T22:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.297700", + "Timestamp": "2024-05-15T22:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172700", + "Timestamp": "2024-05-15T22:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107000", + "Timestamp": "2024-05-15T22:46:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216300", + "Timestamp": "2024-05-15T22:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.654300", + "Timestamp": "2024-05-15T22:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.649300", + "Timestamp": "2024-05-15T22:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.524300", + "Timestamp": "2024-05-15T22:46:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074400", + "Timestamp": "2024-05-15T22:32:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070700", + "Timestamp": "2024-05-15T22:32:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014400", + "Timestamp": "2024-05-15T22:32:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082000", + "Timestamp": "2024-05-15T22:32:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078300", + "Timestamp": "2024-05-15T22:32:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022000", + "Timestamp": "2024-05-15T22:32:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.990100", + "Timestamp": "2024-05-15T22:32:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.985100", + "Timestamp": "2024-05-15T22:32:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.860100", + "Timestamp": "2024-05-15T22:32:03.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.281700", + "Timestamp": "2024-05-15T22:31:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.426700", + "Timestamp": "2024-05-15T22:31:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090500", + "Timestamp": "2024-05-15T22:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086500", + "Timestamp": "2024-05-15T22:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030500", + "Timestamp": "2024-05-15T22:31:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.385900", + "Timestamp": "2024-05-15T22:18:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.543600", + "Timestamp": "2024-05-15T22:18:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.193000", + "Timestamp": "2024-05-15T22:17:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-15T22:17:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.096600", + "Timestamp": "2024-05-15T22:16:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.876300", + "Timestamp": "2024-05-15T22:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211800", + "Timestamp": "2024-05-15T22:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.558100", + "Timestamp": "2024-05-15T22:08:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.558100", + "Timestamp": "2024-05-15T22:08:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.558100", + "Timestamp": "2024-05-15T22:08:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.320100", + "Timestamp": "2024-05-15T22:08:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.320100", + "Timestamp": "2024-05-15T22:08:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.315100", + "Timestamp": "2024-05-15T22:08:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.315100", + "Timestamp": "2024-05-15T22:08:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190100", + "Timestamp": "2024-05-15T22:08:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190100", + "Timestamp": "2024-05-15T22:08:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.283300", + "Timestamp": "2024-05-15T22:02:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.278300", + "Timestamp": "2024-05-15T22:02:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.153300", + "Timestamp": "2024-05-15T22:02:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077300", + "Timestamp": "2024-05-15T22:02:04.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073600", + "Timestamp": "2024-05-15T22:02:04.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017300", + "Timestamp": "2024-05-15T22:02:04.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135100", + "Timestamp": "2024-05-15T22:01:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131100", + "Timestamp": "2024-05-15T22:01:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075100", + "Timestamp": "2024-05-15T22:01:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.096600", + "Timestamp": "2024-05-15T22:01:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215100", + "Timestamp": "2024-05-15T22:01:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.651100", + "Timestamp": "2024-05-15T21:55:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.651100", + "Timestamp": "2024-05-15T21:55:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.646100", + "Timestamp": "2024-05-15T21:55:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.646100", + "Timestamp": "2024-05-15T21:55:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.521100", + "Timestamp": "2024-05-15T21:55:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.521100", + "Timestamp": "2024-05-15T21:55:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.409100", + "Timestamp": "2024-05-15T21:55:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.409100", + "Timestamp": "2024-05-15T21:55:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.409100", + "Timestamp": "2024-05-15T21:55:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090300", + "Timestamp": "2024-05-15T21:47:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086600", + "Timestamp": "2024-05-15T21:47:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030300", + "Timestamp": "2024-05-15T21:47:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.484400", + "Timestamp": "2024-05-15T21:46:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354600", + "Timestamp": "2024-05-15T21:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349600", + "Timestamp": "2024-05-15T21:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224600", + "Timestamp": "2024-05-15T21:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067300", + "Timestamp": "2024-05-15T21:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038300", + "Timestamp": "2024-05-15T21:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007300", + "Timestamp": "2024-05-15T21:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102500", + "Timestamp": "2024-05-15T21:46:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-15T21:46:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042500", + "Timestamp": "2024-05-15T21:46:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108900", + "Timestamp": "2024-05-15T21:32:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083900", + "Timestamp": "2024-05-15T21:31:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080200", + "Timestamp": "2024-05-15T21:31:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023900", + "Timestamp": "2024-05-15T21:31:52.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.696700", + "Timestamp": "2024-05-15T21:31:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.691700", + "Timestamp": "2024-05-15T21:31:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.566700", + "Timestamp": "2024-05-15T21:31:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061500", + "Timestamp": "2024-05-15T21:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001500", + "Timestamp": "2024-05-15T21:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001500", + "Timestamp": "2024-05-15T21:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-15T21:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094400", + "Timestamp": "2024-05-15T21:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038100", + "Timestamp": "2024-05-15T21:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.230800", + "Timestamp": "2024-05-15T21:31:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.250400", + "Timestamp": "2024-05-15T21:17:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.245400", + "Timestamp": "2024-05-15T21:17:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120400", + "Timestamp": "2024-05-15T21:17:13.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.614000", + "Timestamp": "2024-05-15T21:17:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.609000", + "Timestamp": "2024-05-15T21:17:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.484000", + "Timestamp": "2024-05-15T21:17:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.052500", + "Timestamp": "2024-05-15T21:17:06.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.559600", + "Timestamp": "2024-05-15T21:16:45.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124800", + "Timestamp": "2024-05-15T21:16:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.890600", + "Timestamp": "2024-05-15T21:11:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.890600", + "Timestamp": "2024-05-15T21:11:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.890600", + "Timestamp": "2024-05-15T21:11:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.885600", + "Timestamp": "2024-05-15T21:11:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.885600", + "Timestamp": "2024-05-15T21:11:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.885600", + "Timestamp": "2024-05-15T21:11:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.760600", + "Timestamp": "2024-05-15T21:11:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.760600", + "Timestamp": "2024-05-15T21:11:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.760600", + "Timestamp": "2024-05-15T21:11:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.232600", + "Timestamp": "2024-05-15T21:11:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.232600", + "Timestamp": "2024-05-15T21:11:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.232600", + "Timestamp": "2024-05-15T21:11:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.100400", + "Timestamp": "2024-05-15T21:01:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.317400", + "Timestamp": "2024-05-15T20:47:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.312400", + "Timestamp": "2024-05-15T20:47:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.187400", + "Timestamp": "2024-05-15T20:47:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-15T20:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061800", + "Timestamp": "2024-05-15T20:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001800", + "Timestamp": "2024-05-15T20:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001800", + "Timestamp": "2024-05-15T20:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.056100", + "Timestamp": "2024-05-15T20:33:11.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-15T20:32:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-15T20:32:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112900", + "Timestamp": "2024-05-15T20:31:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120200", + "Timestamp": "2024-05-15T20:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116500", + "Timestamp": "2024-05-15T20:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060200", + "Timestamp": "2024-05-15T20:31:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108900", + "Timestamp": "2024-05-15T20:31:29.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-15T20:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111200", + "Timestamp": "2024-05-15T20:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225200", + "Timestamp": "2024-05-15T20:17:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.203100", + "Timestamp": "2024-05-15T20:17:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069800", + "Timestamp": "2024-05-15T20:17:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066100", + "Timestamp": "2024-05-15T20:17:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009800", + "Timestamp": "2024-05-15T20:17:10.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076200", + "Timestamp": "2024-05-15T20:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.072500", + "Timestamp": "2024-05-15T20:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016200", + "Timestamp": "2024-05-15T20:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.611700", + "Timestamp": "2024-05-15T20:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.581700", + "Timestamp": "2024-05-15T20:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.481700", + "Timestamp": "2024-05-15T20:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-15T20:16:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100500", + "Timestamp": "2024-05-15T20:16:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044200", + "Timestamp": "2024-05-15T20:16:12.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.411700", + "Timestamp": "2024-05-15T20:13:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.411700", + "Timestamp": "2024-05-15T20:13:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.406700", + "Timestamp": "2024-05-15T20:13:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.406700", + "Timestamp": "2024-05-15T20:13:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.281700", + "Timestamp": "2024-05-15T20:13:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.281700", + "Timestamp": "2024-05-15T20:13:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.697700", + "Timestamp": "2024-05-15T20:13:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.697700", + "Timestamp": "2024-05-15T20:13:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.697700", + "Timestamp": "2024-05-15T20:13:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066000", + "Timestamp": "2024-05-15T20:03:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037300", + "Timestamp": "2024-05-15T20:03:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006000", + "Timestamp": "2024-05-15T20:03:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.037400", + "Timestamp": "2024-05-15T20:01:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217300", + "Timestamp": "2024-05-15T20:01:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-15T20:01:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079300", + "Timestamp": "2024-05-15T19:47:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075600", + "Timestamp": "2024-05-15T19:47:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019300", + "Timestamp": "2024-05-15T19:47:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.857000", + "Timestamp": "2024-05-15T19:46:57.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.852000", + "Timestamp": "2024-05-15T19:46:57.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.727000", + "Timestamp": "2024-05-15T19:46:57.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.122500", + "Timestamp": "2024-05-15T19:46:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.451300", + "Timestamp": "2024-05-15T19:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.421300", + "Timestamp": "2024-05-15T19:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.321300", + "Timestamp": "2024-05-15T19:46:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116700", + "Timestamp": "2024-05-15T19:46:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114900", + "Timestamp": "2024-05-15T19:32:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111200", + "Timestamp": "2024-05-15T19:32:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054900", + "Timestamp": "2024-05-15T19:32:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-15T19:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-15T19:19:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137200", + "Timestamp": "2024-05-15T19:19:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037200", + "Timestamp": "2024-05-15T19:19:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223600", + "Timestamp": "2024-05-15T19:16:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-15T19:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102200", + "Timestamp": "2024-05-15T19:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045900", + "Timestamp": "2024-05-15T19:16:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.411500", + "Timestamp": "2024-05-15T19:16:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213600", + "Timestamp": "2024-05-15T18:59:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216100", + "Timestamp": "2024-05-15T18:46:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-15T18:46:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.405700", + "Timestamp": "2024-05-15T18:41:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.405700", + "Timestamp": "2024-05-15T18:41:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.405700", + "Timestamp": "2024-05-15T18:41:00.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-15T18:31:37.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116200", + "Timestamp": "2024-05-15T18:31:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-15T18:31:21.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068900", + "Timestamp": "2024-05-15T18:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065200", + "Timestamp": "2024-05-15T18:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008900", + "Timestamp": "2024-05-15T18:31:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061400", + "Timestamp": "2024-05-15T18:10:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061400", + "Timestamp": "2024-05-15T18:10:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001400", + "Timestamp": "2024-05-15T18:10:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001400", + "Timestamp": "2024-05-15T18:10:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001400", + "Timestamp": "2024-05-15T18:10:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001400", + "Timestamp": "2024-05-15T18:10:15.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076800", + "Timestamp": "2024-05-15T18:02:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073100", + "Timestamp": "2024-05-15T18:02:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016800", + "Timestamp": "2024-05-15T18:02:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087000", + "Timestamp": "2024-05-15T17:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083000", + "Timestamp": "2024-05-15T17:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027000", + "Timestamp": "2024-05-15T17:46:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068600", + "Timestamp": "2024-05-15T17:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.064900", + "Timestamp": "2024-05-15T17:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008600", + "Timestamp": "2024-05-15T17:46:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.052400", + "Timestamp": "2024-05-15T17:38:14.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.232100", + "Timestamp": "2024-05-15T17:31:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072500", + "Timestamp": "2024-05-15T17:16:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-15T17:16:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012500", + "Timestamp": "2024-05-15T17:16:38.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021000", + "Timestamp": "2024-05-15T17:16:32.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-15T17:16:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.510300", + "Timestamp": "2024-05-15T17:10:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.510300", + "Timestamp": "2024-05-15T17:10:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.510300", + "Timestamp": "2024-05-15T17:10:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.505300", + "Timestamp": "2024-05-15T17:10:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.505300", + "Timestamp": "2024-05-15T17:10:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.505300", + "Timestamp": "2024-05-15T17:10:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.380300", + "Timestamp": "2024-05-15T17:10:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.380300", + "Timestamp": "2024-05-15T17:10:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.380300", + "Timestamp": "2024-05-15T17:10:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.116300", + "Timestamp": "2024-05-15T17:10:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.116300", + "Timestamp": "2024-05-15T17:10:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.116300", + "Timestamp": "2024-05-15T17:10:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.908200", + "Timestamp": "2024-05-15T17:09:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.908200", + "Timestamp": "2024-05-15T17:09:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065300", + "Timestamp": "2024-05-15T17:09:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065400", + "Timestamp": "2024-05-15T17:09:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.036600", + "Timestamp": "2024-05-15T17:09:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.036700", + "Timestamp": "2024-05-15T17:09:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005300", + "Timestamp": "2024-05-15T17:09:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005400", + "Timestamp": "2024-05-15T17:09:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061900", + "Timestamp": "2024-05-15T17:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001900", + "Timestamp": "2024-05-15T17:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001900", + "Timestamp": "2024-05-15T17:01:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.195600", + "Timestamp": "2024-05-15T16:46:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190600", + "Timestamp": "2024-05-15T16:46:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065600", + "Timestamp": "2024-05-15T16:46:48.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078300", + "Timestamp": "2024-05-15T16:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074600", + "Timestamp": "2024-05-15T16:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018300", + "Timestamp": "2024-05-15T16:46:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069300", + "Timestamp": "2024-05-15T16:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-15T16:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009300", + "Timestamp": "2024-05-15T16:31:27.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068700", + "Timestamp": "2024-05-15T16:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065000", + "Timestamp": "2024-05-15T16:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008700", + "Timestamp": "2024-05-15T16:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083300", + "Timestamp": "2024-05-15T16:16:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079600", + "Timestamp": "2024-05-15T16:16:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023300", + "Timestamp": "2024-05-15T16:16:46.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084200", + "Timestamp": "2024-05-15T16:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080500", + "Timestamp": "2024-05-15T16:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024200", + "Timestamp": "2024-05-15T16:16:26.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073000", + "Timestamp": "2024-05-15T16:01:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069300", + "Timestamp": "2024-05-15T16:01:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013000", + "Timestamp": "2024-05-15T16:01:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-15T16:01:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092000", + "Timestamp": "2024-05-15T16:01:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088000", + "Timestamp": "2024-05-15T16:01:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032000", + "Timestamp": "2024-05-15T16:01:19.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010400", + "Timestamp": "2024-05-15T15:57:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010300", + "Timestamp": "2024-05-15T15:57:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010400", + "Timestamp": "2024-05-15T15:57:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070000", + "Timestamp": "2024-05-15T15:47:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066300", + "Timestamp": "2024-05-15T15:47:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010000", + "Timestamp": "2024-05-15T15:47:24.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.239800", + "Timestamp": "2024-05-15T15:37:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.020800", + "Timestamp": "2024-05-15T15:36:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.623000", + "Timestamp": "2024-05-15T15:33:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.623000", + "Timestamp": "2024-05-15T15:33:55.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078000", + "Timestamp": "2024-05-15T15:31:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074300", + "Timestamp": "2024-05-15T15:31:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018000", + "Timestamp": "2024-05-15T15:31:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062000", + "Timestamp": "2024-05-15T15:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002000", + "Timestamp": "2024-05-15T15:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002000", + "Timestamp": "2024-05-15T15:31:35.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-15T15:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092300", + "Timestamp": "2024-05-15T15:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036000", + "Timestamp": "2024-05-15T15:31:23.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "c7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.055500", + "Timestamp": "2024-05-15T15:01:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.246000", + "Timestamp": "2024-05-15T14:59:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.246000", + "Timestamp": "2024-05-15T14:59:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.246000", + "Timestamp": "2024-05-15T14:59:39.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071300", + "Timestamp": "2024-05-15T14:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067600", + "Timestamp": "2024-05-15T14:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011300", + "Timestamp": "2024-05-15T14:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.269200", + "Timestamp": "2024-05-15T14:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.264200", + "Timestamp": "2024-05-15T14:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139200", + "Timestamp": "2024-05-15T14:46:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120800", + "Timestamp": "2024-05-15T14:46:30.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-15T14:31:20.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072600", + "Timestamp": "2024-05-15T14:17:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068900", + "Timestamp": "2024-05-15T14:17:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012600", + "Timestamp": "2024-05-15T14:17:08.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.100400", + "Timestamp": "2024-05-15T14:16:51.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-15T14:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102300", + "Timestamp": "2024-05-15T14:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046300", + "Timestamp": "2024-05-15T14:01:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071500", + "Timestamp": "2024-05-15T13:47:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042500", + "Timestamp": "2024-05-15T13:47:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011500", + "Timestamp": "2024-05-15T13:47:47.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-15T13:46:36.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-15T13:46:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103200", + "Timestamp": "2024-05-15T13:32:22.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-15T13:16:42.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070100", + "Timestamp": "2024-05-15T13:02:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066400", + "Timestamp": "2024-05-15T13:02:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010100", + "Timestamp": "2024-05-15T13:02:09.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074900", + "Timestamp": "2024-05-15T13:01:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071200", + "Timestamp": "2024-05-15T13:01:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014900", + "Timestamp": "2024-05-15T13:01:44.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-15T13:01:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084700", + "Timestamp": "2024-05-15T13:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.081000", + "Timestamp": "2024-05-15T13:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024700", + "Timestamp": "2024-05-15T13:01:25.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155100", + "Timestamp": "2024-05-15T12:39:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151400", + "Timestamp": "2024-05-15T12:39:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095100", + "Timestamp": "2024-05-15T12:39:41.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.279100", + "Timestamp": "2024-05-15T12:38:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.279100", + "Timestamp": "2024-05-15T12:38:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.279100", + "Timestamp": "2024-05-15T12:38:40.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119200", + "Timestamp": "2024-05-15T12:32:31.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071900", + "Timestamp": "2024-05-15T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068200", + "Timestamp": "2024-05-15T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011900", + "Timestamp": "2024-05-15T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.053000", + "Timestamp": "2024-05-15T12:31:17.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.731600", + "Timestamp": "2024-05-15T12:22:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.731600", + "Timestamp": "2024-05-15T12:22:18.000Z" + }, + { + "AvailabilityZone": "eu-north-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221200", + "Timestamp": "2024-05-15T12:16:28.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078500", + "Timestamp": "2024-05-15T12:02:02.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074800", + "Timestamp": "2024-05-15T12:02:02.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018500", + "Timestamp": "2024-05-15T12:02:02.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093100", + "Timestamp": "2024-05-15T11:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089100", + "Timestamp": "2024-05-15T11:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033100", + "Timestamp": "2024-05-15T11:31:33.000Z" + }, + { + "AvailabilityZone": "eu-north-1b", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-15T11:16:50.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062600", + "Timestamp": "2024-05-15T11:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-15T11:16:34.000Z" + }, + { + "AvailabilityZone": "eu-north-1c", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-15T11:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.788100", + "Timestamp": "2024-05-16T14:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.758100", + "Timestamp": "2024-05-16T14:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.658100", + "Timestamp": "2024-05-16T14:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.560400", + "Timestamp": "2024-05-16T14:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.710200", + "Timestamp": "2024-05-16T14:02:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.705200", + "Timestamp": "2024-05-16T14:02:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.580200", + "Timestamp": "2024-05-16T14:02:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-16T14:02:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T14:02:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044500", + "Timestamp": "2024-05-16T14:02:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.285100", + "Timestamp": "2024-05-16T14:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281400", + "Timestamp": "2024-05-16T14:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.225100", + "Timestamp": "2024-05-16T14:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.172400", + "Timestamp": "2024-05-16T14:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.796700", + "Timestamp": "2024-05-16T14:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T14:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-16T14:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042800", + "Timestamp": "2024-05-16T14:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.181400", + "Timestamp": "2024-05-16T14:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.176400", + "Timestamp": "2024-05-16T14:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.051400", + "Timestamp": "2024-05-16T14:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.664300", + "Timestamp": "2024-05-16T14:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.466400", + "Timestamp": "2024-05-16T14:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.506400", + "Timestamp": "2024-05-16T14:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.406400", + "Timestamp": "2024-05-16T14:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.340200", + "Timestamp": "2024-05-16T14:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.335200", + "Timestamp": "2024-05-16T14:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.210200", + "Timestamp": "2024-05-16T14:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "14.689800", + "Timestamp": "2024-05-16T14:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.120600", + "Timestamp": "2024-05-16T14:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.115600", + "Timestamp": "2024-05-16T14:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.990600", + "Timestamp": "2024-05-16T14:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.864800", + "Timestamp": "2024-05-16T14:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.859800", + "Timestamp": "2024-05-16T14:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.734800", + "Timestamp": "2024-05-16T14:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.953800", + "Timestamp": "2024-05-16T14:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.948800", + "Timestamp": "2024-05-16T14:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.823800", + "Timestamp": "2024-05-16T14:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.569000", + "Timestamp": "2024-05-16T14:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.472300", + "Timestamp": "2024-05-16T14:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.539000", + "Timestamp": "2024-05-16T14:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.442300", + "Timestamp": "2024-05-16T14:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.439000", + "Timestamp": "2024-05-16T14:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.342300", + "Timestamp": "2024-05-16T14:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T14:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102000", + "Timestamp": "2024-05-16T14:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045700", + "Timestamp": "2024-05-16T14:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.307600", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.178600", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.645900", + "Timestamp": "2024-05-16T14:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.640900", + "Timestamp": "2024-05-16T14:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.515900", + "Timestamp": "2024-05-16T14:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.663100", + "Timestamp": "2024-05-16T14:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.672900", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.667900", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.542900", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.845400", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.840400", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.715400", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.046200", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.041200", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.916200", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.536400", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.007700", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.322800", + "Timestamp": "2024-05-16T14:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.861700", + "Timestamp": "2024-05-16T14:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.856700", + "Timestamp": "2024-05-16T14:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.731700", + "Timestamp": "2024-05-16T14:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.286500", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.315000", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.397200", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.large", + "ProductDescription": "Windows", + "SpotPrice": "0.164700", + "Timestamp": "2024-05-16T14:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.393700", + "Timestamp": "2024-05-16T14:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.388700", + "Timestamp": "2024-05-16T14:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.263700", + "Timestamp": "2024-05-16T14:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.432800", + "Timestamp": "2024-05-16T14:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.427800", + "Timestamp": "2024-05-16T14:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.302800", + "Timestamp": "2024-05-16T14:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.300300", + "Timestamp": "2024-05-16T14:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.295300", + "Timestamp": "2024-05-16T14:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.170300", + "Timestamp": "2024-05-16T14:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.379500", + "Timestamp": "2024-05-16T14:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.374500", + "Timestamp": "2024-05-16T14:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.249500", + "Timestamp": "2024-05-16T14:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079600", + "Timestamp": "2024-05-16T14:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075900", + "Timestamp": "2024-05-16T14:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019600", + "Timestamp": "2024-05-16T14:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.129300", + "Timestamp": "2024-05-16T14:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.124300", + "Timestamp": "2024-05-16T14:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.999300", + "Timestamp": "2024-05-16T14:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.162200", + "Timestamp": "2024-05-16T14:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.160400", + "Timestamp": "2024-05-16T14:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.166800", + "Timestamp": "2024-05-16T14:02:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.797600", + "Timestamp": "2024-05-16T14:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.094700", + "Timestamp": "2024-05-16T14:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.077200", + "Timestamp": "2024-05-16T14:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.742500", + "Timestamp": "2024-05-16T14:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.628800", + "Timestamp": "2024-05-16T14:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.264500", + "Timestamp": "2024-05-16T14:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.259500", + "Timestamp": "2024-05-16T14:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.134500", + "Timestamp": "2024-05-16T14:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.171500", + "Timestamp": "2024-05-16T14:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.556600", + "Timestamp": "2024-05-16T14:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.551600", + "Timestamp": "2024-05-16T14:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.426600", + "Timestamp": "2024-05-16T14:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.660700", + "Timestamp": "2024-05-16T14:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.655700", + "Timestamp": "2024-05-16T14:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.530700", + "Timestamp": "2024-05-16T14:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128900", + "Timestamp": "2024-05-16T14:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.900800", + "Timestamp": "2024-05-16T14:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.895800", + "Timestamp": "2024-05-16T14:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.770800", + "Timestamp": "2024-05-16T14:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.009200", + "Timestamp": "2024-05-16T14:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.739800", + "Timestamp": "2024-05-16T14:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.004200", + "Timestamp": "2024-05-16T14:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.734800", + "Timestamp": "2024-05-16T14:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.879200", + "Timestamp": "2024-05-16T14:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.609800", + "Timestamp": "2024-05-16T14:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.110300", + "Timestamp": "2024-05-16T14:01:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.785500", + "Timestamp": "2024-05-16T14:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.839300", + "Timestamp": "2024-05-16T14:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.834300", + "Timestamp": "2024-05-16T14:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.709300", + "Timestamp": "2024-05-16T14:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.237000", + "Timestamp": "2024-05-16T14:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.233000", + "Timestamp": "2024-05-16T14:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177000", + "Timestamp": "2024-05-16T14:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.955500", + "Timestamp": "2024-05-16T14:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.194000", + "Timestamp": "2024-05-16T14:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.845700", + "Timestamp": "2024-05-16T14:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.897400", + "Timestamp": "2024-05-16T14:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.892400", + "Timestamp": "2024-05-16T14:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.767400", + "Timestamp": "2024-05-16T14:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.467400", + "Timestamp": "2024-05-16T14:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.462400", + "Timestamp": "2024-05-16T14:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.337400", + "Timestamp": "2024-05-16T14:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.140400", + "Timestamp": "2024-05-16T14:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.293500", + "Timestamp": "2024-05-16T14:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.288500", + "Timestamp": "2024-05-16T14:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.163500", + "Timestamp": "2024-05-16T14:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.644700", + "Timestamp": "2024-05-16T14:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.050000", + "Timestamp": "2024-05-16T14:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.730800", + "Timestamp": "2024-05-16T14:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.725800", + "Timestamp": "2024-05-16T14:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.600800", + "Timestamp": "2024-05-16T14:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.372500", + "Timestamp": "2024-05-16T14:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.285400", + "Timestamp": "2024-05-16T14:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.255400", + "Timestamp": "2024-05-16T14:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.155400", + "Timestamp": "2024-05-16T14:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.071700", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.453700", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.448700", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.323700", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148500", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144500", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088500", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.558300", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.459000", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.454000", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.329000", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.564300", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.534300", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.434300", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.891700", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.886700", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.761700", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.730800", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.725800", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.600800", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.373100", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.368100", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.243100", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.605800", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.600800", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.475800", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.388100", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.802500", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.772500", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.672500", + "Timestamp": "2024-05-16T14:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.326900", + "Timestamp": "2024-05-16T14:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.321900", + "Timestamp": "2024-05-16T14:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196900", + "Timestamp": "2024-05-16T14:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.714400", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.709400", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.584400", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.202000", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.197000", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.072000", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.229300", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.224300", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.099300", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.411000", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.381000", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.281000", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.390500", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161700", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158000", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.030200", + "Timestamp": "2024-05-16T14:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.233700", + "Timestamp": "2024-05-16T14:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.203700", + "Timestamp": "2024-05-16T14:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.103700", + "Timestamp": "2024-05-16T14:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.316300", + "Timestamp": "2024-05-16T14:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.138700", + "Timestamp": "2024-05-16T14:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.135400", + "Timestamp": "2024-05-16T14:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.520300", + "Timestamp": "2024-05-16T14:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.328500", + "Timestamp": "2024-05-16T14:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.323500", + "Timestamp": "2024-05-16T14:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.198500", + "Timestamp": "2024-05-16T14:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.804600", + "Timestamp": "2024-05-16T14:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.799600", + "Timestamp": "2024-05-16T14:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.674600", + "Timestamp": "2024-05-16T14:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.140300", + "Timestamp": "2024-05-16T14:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.372200", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167400", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163400", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.189400", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185700", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129400", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144900", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140900", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084900", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.439300", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.409300", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.309300", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.070800", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.065800", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.940800", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.173900", + "Timestamp": "2024-05-16T14:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.343600", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.313600", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.213600", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.782600", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.570200", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.565200", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.440200", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.996800", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.991800", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.866800", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.035100", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.059100", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.054100", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.929100", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.892200", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.887200", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.762200", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.984200", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.979200", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.854200", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.580200", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.210900", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.205900", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.080900", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.734400", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.729400", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.604400", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.218800", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.213800", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.088800", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.620300", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.615300", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.490300", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160400", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156400", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100400", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "8.889600", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "8.884600", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "8.759600", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.172800", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.412300", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.407300", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.282300", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.749800", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.744800", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.619800", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.912500", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.907500", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.782500", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.896100", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.251700", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.248000", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.191700", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.325700", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.320700", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.195700", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.283300", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046600", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.163800", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.530100", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.539200", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.606200", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.113400", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.403100", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.398100", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.273100", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.536400", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.337500", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.332500", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.207500", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.326000", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.321000", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.196000", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.837300", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "18.284000", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.540500", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "13.259400", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "13.254400", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "13.129400", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064300", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004300", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004300", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.477900", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.472900", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.347900", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.111200", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.593300", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307800", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302800", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177800", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115700", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155700", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055700", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.912100", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.907100", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.782100", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126000", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122300", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066000", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.497900", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.492900", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.367900", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.659200", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.917600", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.770000", + "Timestamp": "2024-05-16T14:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.765000", + "Timestamp": "2024-05-16T14:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.640000", + "Timestamp": "2024-05-16T14:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.627400", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163300", + "Timestamp": "2024-05-16T14:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159600", + "Timestamp": "2024-05-16T14:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T14:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.932000", + "Timestamp": "2024-05-16T13:47:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.927000", + "Timestamp": "2024-05-16T13:47:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.802000", + "Timestamp": "2024-05-16T13:47:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.675800", + "Timestamp": "2024-05-16T13:47:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.506800", + "Timestamp": "2024-05-16T13:47:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.501800", + "Timestamp": "2024-05-16T13:47:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.376800", + "Timestamp": "2024-05-16T13:47:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.673900", + "Timestamp": "2024-05-16T13:47:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.668900", + "Timestamp": "2024-05-16T13:47:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.543900", + "Timestamp": "2024-05-16T13:47:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.849600", + "Timestamp": "2024-05-16T13:47:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.844600", + "Timestamp": "2024-05-16T13:47:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.719600", + "Timestamp": "2024-05-16T13:47:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "12.590900", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.557800", + "Timestamp": "2024-05-16T13:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.170200", + "Timestamp": "2024-05-16T13:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.448400", + "Timestamp": "2024-05-16T13:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.444700", + "Timestamp": "2024-05-16T13:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.388400", + "Timestamp": "2024-05-16T13:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.056900", + "Timestamp": "2024-05-16T13:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.051900", + "Timestamp": "2024-05-16T13:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.926900", + "Timestamp": "2024-05-16T13:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.241700", + "Timestamp": "2024-05-16T13:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.237700", + "Timestamp": "2024-05-16T13:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181700", + "Timestamp": "2024-05-16T13:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.195800", + "Timestamp": "2024-05-16T13:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.190800", + "Timestamp": "2024-05-16T13:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.065800", + "Timestamp": "2024-05-16T13:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.931300", + "Timestamp": "2024-05-16T13:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.926300", + "Timestamp": "2024-05-16T13:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.801300", + "Timestamp": "2024-05-16T13:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.992800", + "Timestamp": "2024-05-16T13:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.987800", + "Timestamp": "2024-05-16T13:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.862800", + "Timestamp": "2024-05-16T13:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.149600", + "Timestamp": "2024-05-16T13:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.441800", + "Timestamp": "2024-05-16T13:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.436800", + "Timestamp": "2024-05-16T13:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.311800", + "Timestamp": "2024-05-16T13:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Windows", + "SpotPrice": "10.771900", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.046300", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.041300", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.916300", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.175400", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.071700", + "Timestamp": "2024-05-16T13:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.186700", + "Timestamp": "2024-05-16T13:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183000", + "Timestamp": "2024-05-16T13:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126700", + "Timestamp": "2024-05-16T13:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.981400", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.951400", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.851400", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.519300", + "Timestamp": "2024-05-16T13:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.292400", + "Timestamp": "2024-05-16T13:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.707000", + "Timestamp": "2024-05-16T13:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.702000", + "Timestamp": "2024-05-16T13:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.577000", + "Timestamp": "2024-05-16T13:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.846400", + "Timestamp": "2024-05-16T13:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.841400", + "Timestamp": "2024-05-16T13:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.716400", + "Timestamp": "2024-05-16T13:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m1.large", + "ProductDescription": "Windows", + "SpotPrice": "0.184900", + "Timestamp": "2024-05-16T13:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.578400", + "Timestamp": "2024-05-16T13:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.573400", + "Timestamp": "2024-05-16T13:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.448400", + "Timestamp": "2024-05-16T13:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.236500", + "Timestamp": "2024-05-16T13:47:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232800", + "Timestamp": "2024-05-16T13:47:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176500", + "Timestamp": "2024-05-16T13:47:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.453700", + "Timestamp": "2024-05-16T13:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120900", + "Timestamp": "2024-05-16T13:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120500", + "Timestamp": "2024-05-16T13:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-16T13:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116500", + "Timestamp": "2024-05-16T13:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060900", + "Timestamp": "2024-05-16T13:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060500", + "Timestamp": "2024-05-16T13:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "7.146500", + "Timestamp": "2024-05-16T13:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.943300", + "Timestamp": "2024-05-16T13:47:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.931600", + "Timestamp": "2024-05-16T13:47:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.926600", + "Timestamp": "2024-05-16T13:47:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.801600", + "Timestamp": "2024-05-16T13:47:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440800", + "Timestamp": "2024-05-16T13:47:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.171300", + "Timestamp": "2024-05-16T13:47:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Windows", + "SpotPrice": "5.445200", + "Timestamp": "2024-05-16T13:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Windows", + "SpotPrice": "5.266800", + "Timestamp": "2024-05-16T13:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.879200", + "Timestamp": "2024-05-16T13:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.874200", + "Timestamp": "2024-05-16T13:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.749200", + "Timestamp": "2024-05-16T13:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.595000", + "Timestamp": "2024-05-16T13:47:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.590000", + "Timestamp": "2024-05-16T13:47:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.465000", + "Timestamp": "2024-05-16T13:47:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.157000", + "Timestamp": "2024-05-16T13:47:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.571500", + "Timestamp": "2024-05-16T13:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.541500", + "Timestamp": "2024-05-16T13:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.441500", + "Timestamp": "2024-05-16T13:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.646200", + "Timestamp": "2024-05-16T13:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.641200", + "Timestamp": "2024-05-16T13:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.516200", + "Timestamp": "2024-05-16T13:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.165100", + "Timestamp": "2024-05-16T13:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.160100", + "Timestamp": "2024-05-16T13:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.035100", + "Timestamp": "2024-05-16T13:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.587400", + "Timestamp": "2024-05-16T13:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.120900", + "Timestamp": "2024-05-16T13:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.463500", + "Timestamp": "2024-05-16T13:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.461200", + "Timestamp": "2024-05-16T13:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.433500", + "Timestamp": "2024-05-16T13:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.431200", + "Timestamp": "2024-05-16T13:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.333500", + "Timestamp": "2024-05-16T13:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.331200", + "Timestamp": "2024-05-16T13:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.413500", + "Timestamp": "2024-05-16T13:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.030900", + "Timestamp": "2024-05-16T13:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.401100", + "Timestamp": "2024-05-16T13:46:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.396100", + "Timestamp": "2024-05-16T13:46:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.271100", + "Timestamp": "2024-05-16T13:46:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.578000", + "Timestamp": "2024-05-16T13:46:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.675000", + "Timestamp": "2024-05-16T13:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.670000", + "Timestamp": "2024-05-16T13:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.545000", + "Timestamp": "2024-05-16T13:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.742500", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.836300", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.737500", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.831300", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.612500", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.706300", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.272500", + "Timestamp": "2024-05-16T13:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267500", + "Timestamp": "2024-05-16T13:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142500", + "Timestamp": "2024-05-16T13:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.618300", + "Timestamp": "2024-05-16T13:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.000500", + "Timestamp": "2024-05-16T13:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.995500", + "Timestamp": "2024-05-16T13:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.870500", + "Timestamp": "2024-05-16T13:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.843800", + "Timestamp": "2024-05-16T13:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.838800", + "Timestamp": "2024-05-16T13:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.713800", + "Timestamp": "2024-05-16T13:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.954100", + "Timestamp": "2024-05-16T13:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.241900", + "Timestamp": "2024-05-16T13:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.211900", + "Timestamp": "2024-05-16T13:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.111900", + "Timestamp": "2024-05-16T13:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135800", + "Timestamp": "2024-05-16T13:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132100", + "Timestamp": "2024-05-16T13:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075800", + "Timestamp": "2024-05-16T13:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.142600", + "Timestamp": "2024-05-16T13:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.137600", + "Timestamp": "2024-05-16T13:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.012600", + "Timestamp": "2024-05-16T13:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.790800", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160900", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156900", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.459300", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.454300", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.329300", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.796700", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.791700", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.666700", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.060500", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.055500", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.930500", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.722800", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.717800", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.592800", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.796100", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.791100", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.666100", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.522600", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146000", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.186000", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086000", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.259300", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.254300", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129300", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.077500", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150200", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146200", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090200", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.991000", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.986000", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.861000", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.291900", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.286900", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.161900", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.491300", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.496800", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.491800", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.366800", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.060300", + "Timestamp": "2024-05-16T13:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.422700", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.417700", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.292700", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.162300", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.265800", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.249100", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.210000", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.206000", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150000", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095500", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035500", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140400", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180400", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080400", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.586100", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.581100", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.456100", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.572200", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.567200", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.442200", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.452900", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.422900", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.322900", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.058900", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.053900", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.928900", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157100", + "Timestamp": "2024-05-16T13:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153400", + "Timestamp": "2024-05-16T13:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T13:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.552600", + "Timestamp": "2024-05-16T13:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.547600", + "Timestamp": "2024-05-16T13:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.422600", + "Timestamp": "2024-05-16T13:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.413600", + "Timestamp": "2024-05-16T13:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.138500", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.417800", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.413800", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.357800", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131700", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127700", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071700", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.183400", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.178400", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.053400", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.307300", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.328200", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.556500", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.551500", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.426500", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.571300", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.541300", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.441300", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.297700", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.041100", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.598800", + "Timestamp": "2024-05-16T13:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.394000", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.364000", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.264000", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.296600", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293600", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.236600", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.616000", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.010900", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.005900", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.880900", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.121100", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.116100", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.991100", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.272400", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.267400", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.142400", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.449600", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.743200", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.713200", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.613200", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.456800", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.426800", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.326800", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136800", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133100", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076800", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.079000", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.074000", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.949000", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.204800", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.199800", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074800", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.593300", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.984300", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.131000", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.126000", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.001000", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.535100", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.530100", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.405100", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.084000", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.095900", + "Timestamp": "2024-05-16T13:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.186700", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183000", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126700", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.042400", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.037400", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.912400", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.676800", + "Timestamp": "2024-05-16T13:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.428600", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.423600", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.298600", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.286500", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281500", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156500", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087800", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084100", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027800", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.463000", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.568800", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.563800", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.438800", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.480600", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.475600", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.350600", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145300", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185300", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085300", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.377200", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.732400", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.727400", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.602400", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.545200", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.515200", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.415200", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.085700", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.271200", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.210300", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.266200", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.205300", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.141200", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.080300", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.380800", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.375800", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.250800", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.598600", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.568600", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.468600", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.067100", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.062100", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.937100", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.464400", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.459400", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.334400", + "Timestamp": "2024-05-16T13:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139000", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179000", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079000", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.002300", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.972300", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.872300", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.897300", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.592700", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.587700", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.462700", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.286000", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.137800", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.132800", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.007800", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050200", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.603400", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.598400", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.473400", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098900", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042900", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.442300", + "Timestamp": "2024-05-16T13:32:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.214400", + "Timestamp": "2024-05-16T13:32:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.209400", + "Timestamp": "2024-05-16T13:32:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.084400", + "Timestamp": "2024-05-16T13:32:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.847000", + "Timestamp": "2024-05-16T13:32:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.842000", + "Timestamp": "2024-05-16T13:32:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.717000", + "Timestamp": "2024-05-16T13:32:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121000", + "Timestamp": "2024-05-16T13:32:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.331700", + "Timestamp": "2024-05-16T13:32:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.326700", + "Timestamp": "2024-05-16T13:32:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.201700", + "Timestamp": "2024-05-16T13:32:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.249900", + "Timestamp": "2024-05-16T13:32:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.766200", + "Timestamp": "2024-05-16T13:32:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.389300", + "Timestamp": "2024-05-16T13:32:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.499100", + "Timestamp": "2024-05-16T13:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.835900", + "Timestamp": "2024-05-16T13:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.805900", + "Timestamp": "2024-05-16T13:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.705900", + "Timestamp": "2024-05-16T13:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.543300", + "Timestamp": "2024-05-16T13:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.093000", + "Timestamp": "2024-05-16T13:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.182000", + "Timestamp": "2024-05-16T13:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.085600", + "Timestamp": "2024-05-16T13:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.177000", + "Timestamp": "2024-05-16T13:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.080600", + "Timestamp": "2024-05-16T13:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.052000", + "Timestamp": "2024-05-16T13:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.955600", + "Timestamp": "2024-05-16T13:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.644900", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.639900", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.514900", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.947300", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.942300", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.817300", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "9.579000", + "Timestamp": "2024-05-16T13:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "10.975300", + "Timestamp": "2024-05-16T13:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "9.549000", + "Timestamp": "2024-05-16T13:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "10.945300", + "Timestamp": "2024-05-16T13:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "9.449000", + "Timestamp": "2024-05-16T13:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "10.845300", + "Timestamp": "2024-05-16T13:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.461600", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.457900", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.401600", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.024400", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.140400", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.146500", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.326500", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.859200", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.091100", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.915300", + "Timestamp": "2024-05-16T13:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.858800", + "Timestamp": "2024-05-16T13:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.111500", + "Timestamp": "2024-05-16T13:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.244000", + "Timestamp": "2024-05-16T13:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.852300", + "Timestamp": "2024-05-16T13:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.929300", + "Timestamp": "2024-05-16T13:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.899300", + "Timestamp": "2024-05-16T13:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.799300", + "Timestamp": "2024-05-16T13:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.263300", + "Timestamp": "2024-05-16T13:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.425400", + "Timestamp": "2024-05-16T13:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.297800", + "Timestamp": "2024-05-16T13:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.267800", + "Timestamp": "2024-05-16T13:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.167800", + "Timestamp": "2024-05-16T13:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.135300", + "Timestamp": "2024-05-16T13:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.457600", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.383500", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.452600", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.378500", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.327600", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.253500", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.537700", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.507700", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.407700", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.large", + "ProductDescription": "Windows", + "SpotPrice": "0.166200", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.175400", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.189800", + "Timestamp": "2024-05-16T13:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.738600", + "Timestamp": "2024-05-16T13:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.024800", + "Timestamp": "2024-05-16T13:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.467700", + "Timestamp": "2024-05-16T13:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.462700", + "Timestamp": "2024-05-16T13:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.337700", + "Timestamp": "2024-05-16T13:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.874100", + "Timestamp": "2024-05-16T13:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.195500", + "Timestamp": "2024-05-16T13:32:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.190500", + "Timestamp": "2024-05-16T13:32:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.065500", + "Timestamp": "2024-05-16T13:32:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.383000", + "Timestamp": "2024-05-16T13:32:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.616100", + "Timestamp": "2024-05-16T13:32:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.917500", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.912500", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.787500", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.291700", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.727400", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.726900", + "Timestamp": "2024-05-16T13:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.585300", + "Timestamp": "2024-05-16T13:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.555300", + "Timestamp": "2024-05-16T13:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.455300", + "Timestamp": "2024-05-16T13:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.288800", + "Timestamp": "2024-05-16T13:31:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.449900", + "Timestamp": "2024-05-16T13:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.444900", + "Timestamp": "2024-05-16T13:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.319900", + "Timestamp": "2024-05-16T13:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.143100", + "Timestamp": "2024-05-16T13:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.256700", + "Timestamp": "2024-05-16T13:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "11.971400", + "Timestamp": "2024-05-16T13:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "11.966400", + "Timestamp": "2024-05-16T13:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "11.841400", + "Timestamp": "2024-05-16T13:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.305000", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.300000", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175000", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.772600", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "13.794500", + "Timestamp": "2024-05-16T13:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.203800", + "Timestamp": "2024-05-16T13:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "15.600200", + "Timestamp": "2024-05-16T13:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.034800", + "Timestamp": "2024-05-16T13:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.541100", + "Timestamp": "2024-05-16T13:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.543300", + "Timestamp": "2024-05-16T13:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.538300", + "Timestamp": "2024-05-16T13:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.413300", + "Timestamp": "2024-05-16T13:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.505500", + "Timestamp": "2024-05-16T13:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.033000", + "Timestamp": "2024-05-16T13:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.960200", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.955200", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.830200", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.762300", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.757300", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.632300", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.404200", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.399200", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.274200", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.635600", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.630600", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.505600", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.079400", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.658700", + "Timestamp": "2024-05-16T13:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.279200", + "Timestamp": "2024-05-16T13:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.491400", + "Timestamp": "2024-05-16T13:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.465600", + "Timestamp": "2024-05-16T13:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.416700", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.294300", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.126200", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.171000", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.166000", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.041000", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134700", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131200", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131000", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127500", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074700", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071200", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.314400", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.494300", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.564400", + "Timestamp": "2024-05-16T13:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.063500", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.994700", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.989700", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.864700", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.213000", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.183000", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.083000", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.504400", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.499400", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.374400", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.532500", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.527500", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.402500", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.182400", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.177400", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.052400", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.616400", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.762600", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.757600", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.632600", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.034000", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.029000", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.904000", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087700", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084000", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027700", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166100", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.206100", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.165600", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.566300", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.536300", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.436300", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.653700", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.648700", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.523700", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150100", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146400", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090100", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.092000", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "f1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.009200", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "f1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.979200", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "f1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.879200", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261700", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.257700", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.201700", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.957000", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.952000", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.827000", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m1.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076700", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m1.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.046700", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m1.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016700", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051400", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169000", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165300", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109000", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.570300", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.566600", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.510300", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046300", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "13.543800", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.734400", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.729400", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.604400", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173500", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169800", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113500", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.741700", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.711700", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.611700", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099500", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095800", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039500", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.755600", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.947700", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.942700", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.817700", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.574400", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.569400", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.444400", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.545400", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.515400", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.415400", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.079300", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.504300", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.499300", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.374300", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.345100", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.689600", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.684600", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.559600", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.353400", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.348400", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.223400", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.119200", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.309200", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165400", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161700", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.168200", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.063400", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.872400", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.867400", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.742400", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.211700", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.500900", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.495900", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.370900", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.058900", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.053900", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.928900", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.497400", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.492400", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.367400", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.044000", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.141200", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046300", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.848600", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.818600", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.718600", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.183700", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.178700", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.053700", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.711800", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.706800", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.581800", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.059600", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.029600", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.929600", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.187900", + "Timestamp": "2024-05-16T13:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.092000", + "Timestamp": "2024-05-16T13:17:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.433800", + "Timestamp": "2024-05-16T13:17:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.669600", + "Timestamp": "2024-05-16T13:17:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.193100", + "Timestamp": "2024-05-16T13:17:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.241100", + "Timestamp": "2024-05-16T13:17:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.586300", + "Timestamp": "2024-05-16T13:17:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "12.253900", + "Timestamp": "2024-05-16T13:17:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.587700", + "Timestamp": "2024-05-16T13:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.582700", + "Timestamp": "2024-05-16T13:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.457700", + "Timestamp": "2024-05-16T13:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.709300", + "Timestamp": "2024-05-16T13:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.603700", + "Timestamp": "2024-05-16T13:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.573700", + "Timestamp": "2024-05-16T13:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.473700", + "Timestamp": "2024-05-16T13:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.367000", + "Timestamp": "2024-05-16T13:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.362000", + "Timestamp": "2024-05-16T13:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.237000", + "Timestamp": "2024-05-16T13:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.027100", + "Timestamp": "2024-05-16T13:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.132000", + "Timestamp": "2024-05-16T13:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.102000", + "Timestamp": "2024-05-16T13:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.002000", + "Timestamp": "2024-05-16T13:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.924100", + "Timestamp": "2024-05-16T13:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.919100", + "Timestamp": "2024-05-16T13:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.794100", + "Timestamp": "2024-05-16T13:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "14.859300", + "Timestamp": "2024-05-16T13:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.709700", + "Timestamp": "2024-05-16T13:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.704700", + "Timestamp": "2024-05-16T13:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.579700", + "Timestamp": "2024-05-16T13:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.028100", + "Timestamp": "2024-05-16T13:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.640200", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.064000", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.260800", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.257100", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200800", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.249400", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.215000", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.255000", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.155000", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.359800", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.169600", + "Timestamp": "2024-05-16T13:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.164600", + "Timestamp": "2024-05-16T13:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.039600", + "Timestamp": "2024-05-16T13:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.138200", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.429900", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.424900", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.299900", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.432100", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.302800", + "Timestamp": "2024-05-16T13:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.563800", + "Timestamp": "2024-05-16T13:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.558800", + "Timestamp": "2024-05-16T13:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.433800", + "Timestamp": "2024-05-16T13:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.662700", + "Timestamp": "2024-05-16T13:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.657700", + "Timestamp": "2024-05-16T13:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.532700", + "Timestamp": "2024-05-16T13:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.018400", + "Timestamp": "2024-05-16T13:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.728000", + "Timestamp": "2024-05-16T13:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.723000", + "Timestamp": "2024-05-16T13:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.598000", + "Timestamp": "2024-05-16T13:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.889300", + "Timestamp": "2024-05-16T13:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.139800", + "Timestamp": "2024-05-16T13:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.134800", + "Timestamp": "2024-05-16T13:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.009800", + "Timestamp": "2024-05-16T13:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.256200", + "Timestamp": "2024-05-16T13:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.251200", + "Timestamp": "2024-05-16T13:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.126200", + "Timestamp": "2024-05-16T13:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "9.311200", + "Timestamp": "2024-05-16T13:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "9.306200", + "Timestamp": "2024-05-16T13:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "9.181200", + "Timestamp": "2024-05-16T13:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.683400", + "Timestamp": "2024-05-16T13:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.653400", + "Timestamp": "2024-05-16T13:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.553400", + "Timestamp": "2024-05-16T13:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.147500", + "Timestamp": "2024-05-16T13:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.307000", + "Timestamp": "2024-05-16T13:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.486200", + "Timestamp": "2024-05-16T13:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.289400", + "Timestamp": "2024-05-16T13:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.701500", + "Timestamp": "2024-05-16T13:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "14.481500", + "Timestamp": "2024-05-16T13:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103200", + "Timestamp": "2024-05-16T13:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T13:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043200", + "Timestamp": "2024-05-16T13:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.606900", + "Timestamp": "2024-05-16T13:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.601900", + "Timestamp": "2024-05-16T13:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.476900", + "Timestamp": "2024-05-16T13:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.268900", + "Timestamp": "2024-05-16T13:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.951100", + "Timestamp": "2024-05-16T13:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.946100", + "Timestamp": "2024-05-16T13:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.821100", + "Timestamp": "2024-05-16T13:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.349700", + "Timestamp": "2024-05-16T13:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.319700", + "Timestamp": "2024-05-16T13:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.219700", + "Timestamp": "2024-05-16T13:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.150500", + "Timestamp": "2024-05-16T13:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.145500", + "Timestamp": "2024-05-16T13:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.020500", + "Timestamp": "2024-05-16T13:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.110400", + "Timestamp": "2024-05-16T13:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109000", + "Timestamp": "2024-05-16T13:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105300", + "Timestamp": "2024-05-16T13:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049000", + "Timestamp": "2024-05-16T13:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.931600", + "Timestamp": "2024-05-16T13:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.900800", + "Timestamp": "2024-05-16T13:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.895800", + "Timestamp": "2024-05-16T13:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.770800", + "Timestamp": "2024-05-16T13:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.252200", + "Timestamp": "2024-05-16T13:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.247200", + "Timestamp": "2024-05-16T13:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.122200", + "Timestamp": "2024-05-16T13:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.700600", + "Timestamp": "2024-05-16T13:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.261100", + "Timestamp": "2024-05-16T13:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.507400", + "Timestamp": "2024-05-16T13:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165000", + "Timestamp": "2024-05-16T13:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161300", + "Timestamp": "2024-05-16T13:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T13:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.516900", + "Timestamp": "2024-05-16T13:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.575000", + "Timestamp": "2024-05-16T13:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.314300", + "Timestamp": "2024-05-16T13:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.570000", + "Timestamp": "2024-05-16T13:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.309300", + "Timestamp": "2024-05-16T13:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.445000", + "Timestamp": "2024-05-16T13:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.184300", + "Timestamp": "2024-05-16T13:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "f1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.846500", + "Timestamp": "2024-05-16T13:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "f1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.816500", + "Timestamp": "2024-05-16T13:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "f1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.716500", + "Timestamp": "2024-05-16T13:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.098500", + "Timestamp": "2024-05-16T13:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.595400", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.590400", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.465400", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.961600", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.976200", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.971200", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.846200", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.611200", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.399700", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.394700", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.269700", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.431300", + "Timestamp": "2024-05-16T13:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.426300", + "Timestamp": "2024-05-16T13:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.301300", + "Timestamp": "2024-05-16T13:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.658300", + "Timestamp": "2024-05-16T13:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.260700", + "Timestamp": "2024-05-16T13:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.159300", + "Timestamp": "2024-05-16T13:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.304600", + "Timestamp": "2024-05-16T13:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.796300", + "Timestamp": "2024-05-16T13:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.995500", + "Timestamp": "2024-05-16T13:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.990500", + "Timestamp": "2024-05-16T13:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.865500", + "Timestamp": "2024-05-16T13:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.516300", + "Timestamp": "2024-05-16T13:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.298600", + "Timestamp": "2024-05-16T13:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T13:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-16T13:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050600", + "Timestamp": "2024-05-16T13:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.239700", + "Timestamp": "2024-05-16T13:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.054300", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.784500", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.007700", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.002700", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.877700", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.211900", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.206900", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.081900", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.413800", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311500", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281500", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181500", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "vt1.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.519800", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "vt1.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.489800", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "vt1.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.389800", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.447100", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.785900", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.780900", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.655900", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.980800", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.326400", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.321400", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196400", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.490100", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.485100", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.360100", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069400", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065700", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009400", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099500", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095800", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039500", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.798600", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.768600", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.668600", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.576000", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.223400", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.875500", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.870500", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.745500", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.629100", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.624100", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.499100", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.070200", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.040200", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.940200", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.517500", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.904200", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.899200", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.774200", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.745600", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.740600", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.615600", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.276700", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.161400", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.156400", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.031400", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.138900", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.133900", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.008900", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.220200", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.216500", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.160200", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.355100", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.350100", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.225100", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.857000", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.895000", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.852000", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.890000", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.727000", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.765000", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.571100", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.191300", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.187600", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131300", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.962700", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.957700", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.832700", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.071800", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.066800", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.941800", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096800", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093100", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036800", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134900", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131200", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074900", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.364600", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334600", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.234600", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.690700", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.685700", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.560700", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156300", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152600", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096300", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.788700", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.783700", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.658700", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.439600", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.236800", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232800", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176800", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.519900", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.514900", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.389900", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.985500", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108900", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048900", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088400", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084700", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028400", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.517400", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.512400", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.387400", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.414300", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.410300", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.354300", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.883700", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.853700", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.753700", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115500", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155500", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055500", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.666500", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.661500", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.536500", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.852400", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.847400", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.722400", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.053200", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.482800", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.277900", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.477800", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.272900", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.352800", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.147900", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.227300", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267300", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167300", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137600", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133900", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077600", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.650100", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.625700", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.035400", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.030400", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.905400", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166500", + "Timestamp": "2024-05-16T13:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162800", + "Timestamp": "2024-05-16T13:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-16T13:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.389200", + "Timestamp": "2024-05-16T13:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.704900", + "Timestamp": "2024-05-16T13:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.298900", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.781500", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.776500", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.651500", + "Timestamp": "2024-05-16T13:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.009500", + "Timestamp": "2024-05-16T13:03:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.305900", + "Timestamp": "2024-05-16T13:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.300900", + "Timestamp": "2024-05-16T13:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.175900", + "Timestamp": "2024-05-16T13:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.420100", + "Timestamp": "2024-05-16T13:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.390100", + "Timestamp": "2024-05-16T13:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.290100", + "Timestamp": "2024-05-16T13:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.394200", + "Timestamp": "2024-05-16T13:02:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.389200", + "Timestamp": "2024-05-16T13:02:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.264200", + "Timestamp": "2024-05-16T13:02:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069300", + "Timestamp": "2024-05-16T13:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065600", + "Timestamp": "2024-05-16T13:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009300", + "Timestamp": "2024-05-16T13:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.022300", + "Timestamp": "2024-05-16T13:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.017300", + "Timestamp": "2024-05-16T13:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.892300", + "Timestamp": "2024-05-16T13:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.177700", + "Timestamp": "2024-05-16T13:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.129700", + "Timestamp": "2024-05-16T13:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360600", + "Timestamp": "2024-05-16T13:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.355600", + "Timestamp": "2024-05-16T13:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230600", + "Timestamp": "2024-05-16T13:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.144600", + "Timestamp": "2024-05-16T13:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.984700", + "Timestamp": "2024-05-16T13:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.979700", + "Timestamp": "2024-05-16T13:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.854700", + "Timestamp": "2024-05-16T13:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.830600", + "Timestamp": "2024-05-16T13:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.825600", + "Timestamp": "2024-05-16T13:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.700600", + "Timestamp": "2024-05-16T13:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.256600", + "Timestamp": "2024-05-16T13:02:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.980200", + "Timestamp": "2024-05-16T13:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.867800", + "Timestamp": "2024-05-16T13:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.862800", + "Timestamp": "2024-05-16T13:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.737800", + "Timestamp": "2024-05-16T13:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044000", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.708400", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.703400", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.578400", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.968000", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.963000", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.838000", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.728900", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.723900", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.598900", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.085100", + "Timestamp": "2024-05-16T13:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118300", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158300", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058300", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.472000", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.467000", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.342000", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.249200", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.245500", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.189200", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.375200", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.370200", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.245200", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.779000", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.774000", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.649000", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.876900", + "Timestamp": "2024-05-16T13:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.871900", + "Timestamp": "2024-05-16T13:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.746900", + "Timestamp": "2024-05-16T13:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.273900", + "Timestamp": "2024-05-16T13:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.060700", + "Timestamp": "2024-05-16T13:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.055700", + "Timestamp": "2024-05-16T13:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.930700", + "Timestamp": "2024-05-16T13:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.138600", + "Timestamp": "2024-05-16T13:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.800600", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.770600", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.670600", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.240200", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.236500", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180200", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.003400", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.998400", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.873400", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.651400", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.571000", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.402400", + "Timestamp": "2024-05-16T13:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.397400", + "Timestamp": "2024-05-16T13:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.272400", + "Timestamp": "2024-05-16T13:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.227100", + "Timestamp": "2024-05-16T13:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.222100", + "Timestamp": "2024-05-16T13:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.097100", + "Timestamp": "2024-05-16T13:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.337000", + "Timestamp": "2024-05-16T13:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.307000", + "Timestamp": "2024-05-16T13:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.207000", + "Timestamp": "2024-05-16T13:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.062000", + "Timestamp": "2024-05-16T13:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.273600", + "Timestamp": "2024-05-16T13:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.057000", + "Timestamp": "2024-05-16T13:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.268600", + "Timestamp": "2024-05-16T13:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.932000", + "Timestamp": "2024-05-16T13:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.143600", + "Timestamp": "2024-05-16T13:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.259100", + "Timestamp": "2024-05-16T13:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.255400", + "Timestamp": "2024-05-16T13:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199100", + "Timestamp": "2024-05-16T13:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.294100", + "Timestamp": "2024-05-16T13:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.289100", + "Timestamp": "2024-05-16T13:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.164100", + "Timestamp": "2024-05-16T13:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.431800", + "Timestamp": "2024-05-16T13:02:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m1.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079500", + "Timestamp": "2024-05-16T13:02:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m1.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.049500", + "Timestamp": "2024-05-16T13:02:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m1.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019500", + "Timestamp": "2024-05-16T13:02:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.713700", + "Timestamp": "2024-05-16T13:02:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.676100", + "Timestamp": "2024-05-16T13:02:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.708700", + "Timestamp": "2024-05-16T13:02:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.671100", + "Timestamp": "2024-05-16T13:02:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.583700", + "Timestamp": "2024-05-16T13:02:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.546100", + "Timestamp": "2024-05-16T13:02:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "7.072800", + "Timestamp": "2024-05-16T13:02:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.047000", + "Timestamp": "2024-05-16T13:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.042000", + "Timestamp": "2024-05-16T13:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.917000", + "Timestamp": "2024-05-16T13:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.013900", + "Timestamp": "2024-05-16T13:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.008900", + "Timestamp": "2024-05-16T13:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.883900", + "Timestamp": "2024-05-16T13:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.477700", + "Timestamp": "2024-05-16T13:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.729600", + "Timestamp": "2024-05-16T13:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.845300", + "Timestamp": "2024-05-16T13:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.840300", + "Timestamp": "2024-05-16T13:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.715300", + "Timestamp": "2024-05-16T13:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.135000", + "Timestamp": "2024-05-16T13:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.688500", + "Timestamp": "2024-05-16T13:01:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.683500", + "Timestamp": "2024-05-16T13:01:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.558500", + "Timestamp": "2024-05-16T13:01:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.008100", + "Timestamp": "2024-05-16T13:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.416300", + "Timestamp": "2024-05-16T13:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.411300", + "Timestamp": "2024-05-16T13:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.286300", + "Timestamp": "2024-05-16T13:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.085200", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.080300", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.502700", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.497700", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.372700", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.876400", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.871400", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.746400", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134000", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130300", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074000", + "Timestamp": "2024-05-16T13:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.630700", + "Timestamp": "2024-05-16T13:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.627200", + "Timestamp": "2024-05-16T13:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.513600", + "Timestamp": "2024-05-16T13:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.508600", + "Timestamp": "2024-05-16T13:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.383600", + "Timestamp": "2024-05-16T13:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.492300", + "Timestamp": "2024-05-16T13:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.487300", + "Timestamp": "2024-05-16T13:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.362300", + "Timestamp": "2024-05-16T13:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.029400", + "Timestamp": "2024-05-16T13:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.024400", + "Timestamp": "2024-05-16T13:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.899400", + "Timestamp": "2024-05-16T13:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.436900", + "Timestamp": "2024-05-16T13:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.115500", + "Timestamp": "2024-05-16T13:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307600", + "Timestamp": "2024-05-16T13:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.347600", + "Timestamp": "2024-05-16T13:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.247600", + "Timestamp": "2024-05-16T13:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.026600", + "Timestamp": "2024-05-16T13:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.123200", + "Timestamp": "2024-05-16T13:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.651800", + "Timestamp": "2024-05-16T13:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.035800", + "Timestamp": "2024-05-16T13:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.641600", + "Timestamp": "2024-05-16T13:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.598700", + "Timestamp": "2024-05-16T13:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.718800", + "Timestamp": "2024-05-16T13:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.688800", + "Timestamp": "2024-05-16T13:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.588800", + "Timestamp": "2024-05-16T13:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.249200", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.219200", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.119200", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.583000", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.578000", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.453000", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.926000", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.921000", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.796000", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.323800", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.714200", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.709200", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.584200", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "16.074400", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.087500", + "Timestamp": "2024-05-16T13:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.082500", + "Timestamp": "2024-05-16T13:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.957500", + "Timestamp": "2024-05-16T13:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.018700", + "Timestamp": "2024-05-16T13:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T13:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-16T13:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044600", + "Timestamp": "2024-05-16T13:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.243000", + "Timestamp": "2024-05-16T13:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.238000", + "Timestamp": "2024-05-16T13:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.113000", + "Timestamp": "2024-05-16T13:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.453300", + "Timestamp": "2024-05-16T13:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.063800", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.381100", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.376100", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.251100", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.192800", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.784300", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.779300", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.654300", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.053500", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.023500", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.923500", + "Timestamp": "2024-05-16T13:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.403400", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.398400", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.273400", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.555400", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.550400", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.425400", + "Timestamp": "2024-05-16T13:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.295600", + "Timestamp": "2024-05-16T13:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.533300", + "Timestamp": "2024-05-16T13:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.994100", + "Timestamp": "2024-05-16T13:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.989100", + "Timestamp": "2024-05-16T13:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.864100", + "Timestamp": "2024-05-16T13:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.218300", + "Timestamp": "2024-05-16T13:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.214600", + "Timestamp": "2024-05-16T13:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158300", + "Timestamp": "2024-05-16T13:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.113800", + "Timestamp": "2024-05-16T13:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.275800", + "Timestamp": "2024-05-16T13:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.509100", + "Timestamp": "2024-05-16T13:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.508100", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.263400", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.319200", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.180700", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.220700", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120700", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.769500", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.764500", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.639500", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.397000", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.528200", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.523200", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.398200", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.800700", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.795700", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.670700", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.979700", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.974700", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.849700", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.734300", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.729300", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.604300", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.170300", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.464100", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.630600", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.600600", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.500600", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.802600", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.797600", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.672600", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.286100", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.054800", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.024800", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.924800", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.806900", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.801900", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.676900", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.002300", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.895000", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.275800", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.025200", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.020200", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.895200", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108300", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104300", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048300", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.543100", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.148600", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.798500", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.793500", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.668500", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.121600", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.091600", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.991600", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100000", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043700", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.487100", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.482100", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.357100", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.598100", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.610500", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.614500", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.271100", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.266100", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.141100", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.272700", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269000", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212700", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132200", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128200", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072200", + "Timestamp": "2024-05-16T13:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.082700", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.074300", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131100", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127100", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071100", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.147300", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.537300", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.532300", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.407300", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.763000", + "Timestamp": "2024-05-16T13:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.155400", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.894200", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "11.966900", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.889200", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "11.961900", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.764200", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "11.836900", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.449300", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209400", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.516700", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.486700", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.386700", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.945700", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.005100", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.279900", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.274900", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149900", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "14.157800", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "14.152800", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "14.027800", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.064000", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.795200", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.790200", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.665200", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165400", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065400", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.830500", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.812700", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.782700", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.682700", + "Timestamp": "2024-05-16T13:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.929200", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.222000", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.218000", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162000", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097700", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094000", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037700", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.509400", + "Timestamp": "2024-05-16T13:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.479400", + "Timestamp": "2024-05-16T13:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.379400", + "Timestamp": "2024-05-16T13:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.115600", + "Timestamp": "2024-05-16T13:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.169400", + "Timestamp": "2024-05-16T12:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.164400", + "Timestamp": "2024-05-16T12:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.039400", + "Timestamp": "2024-05-16T12:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.097600", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.092600", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.967600", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.978600", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.973600", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.848600", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.964300", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.168700", + "Timestamp": "2024-05-16T12:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.692200", + "Timestamp": "2024-05-16T12:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.687200", + "Timestamp": "2024-05-16T12:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.562200", + "Timestamp": "2024-05-16T12:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.383000", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.378000", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.253000", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.642900", + "Timestamp": "2024-05-16T12:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.560000", + "Timestamp": "2024-05-16T12:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.555000", + "Timestamp": "2024-05-16T12:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.430000", + "Timestamp": "2024-05-16T12:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.705000", + "Timestamp": "2024-05-16T12:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.903800", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.898800", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.773800", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.322100", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.990700", + "Timestamp": "2024-05-16T12:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.074000", + "Timestamp": "2024-05-16T12:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081700", + "Timestamp": "2024-05-16T12:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078000", + "Timestamp": "2024-05-16T12:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021700", + "Timestamp": "2024-05-16T12:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.158500", + "Timestamp": "2024-05-16T12:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.072300", + "Timestamp": "2024-05-16T12:47:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.067300", + "Timestamp": "2024-05-16T12:47:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.942300", + "Timestamp": "2024-05-16T12:47:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.305400", + "Timestamp": "2024-05-16T12:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.978400", + "Timestamp": "2024-05-16T12:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.914700", + "Timestamp": "2024-05-16T12:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "10.379700", + "Timestamp": "2024-05-16T12:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "10.374700", + "Timestamp": "2024-05-16T12:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "10.249700", + "Timestamp": "2024-05-16T12:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.309500", + "Timestamp": "2024-05-16T12:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.310600", + "Timestamp": "2024-05-16T12:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.396800", + "Timestamp": "2024-05-16T12:47:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.366800", + "Timestamp": "2024-05-16T12:47:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.266800", + "Timestamp": "2024-05-16T12:47:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.637400", + "Timestamp": "2024-05-16T12:47:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.607400", + "Timestamp": "2024-05-16T12:47:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.507400", + "Timestamp": "2024-05-16T12:47:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.940400", + "Timestamp": "2024-05-16T12:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.935400", + "Timestamp": "2024-05-16T12:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.810400", + "Timestamp": "2024-05-16T12:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150400", + "Timestamp": "2024-05-16T12:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190400", + "Timestamp": "2024-05-16T12:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090400", + "Timestamp": "2024-05-16T12:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.284500", + "Timestamp": "2024-05-16T12:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.795700", + "Timestamp": "2024-05-16T12:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.790700", + "Timestamp": "2024-05-16T12:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.665700", + "Timestamp": "2024-05-16T12:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080300", + "Timestamp": "2024-05-16T12:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.051300", + "Timestamp": "2024-05-16T12:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020300", + "Timestamp": "2024-05-16T12:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.445800", + "Timestamp": "2024-05-16T12:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.440800", + "Timestamp": "2024-05-16T12:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.315800", + "Timestamp": "2024-05-16T12:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.255900", + "Timestamp": "2024-05-16T12:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.252200", + "Timestamp": "2024-05-16T12:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195900", + "Timestamp": "2024-05-16T12:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.575600", + "Timestamp": "2024-05-16T12:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.570600", + "Timestamp": "2024-05-16T12:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.445600", + "Timestamp": "2024-05-16T12:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.592200", + "Timestamp": "2024-05-16T12:46:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.587200", + "Timestamp": "2024-05-16T12:46:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.462200", + "Timestamp": "2024-05-16T12:46:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159300", + "Timestamp": "2024-05-16T12:46:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155600", + "Timestamp": "2024-05-16T12:46:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099300", + "Timestamp": "2024-05-16T12:46:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.008500", + "Timestamp": "2024-05-16T12:46:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.584200", + "Timestamp": "2024-05-16T12:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.579200", + "Timestamp": "2024-05-16T12:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.454200", + "Timestamp": "2024-05-16T12:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.428300", + "Timestamp": "2024-05-16T12:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.725100", + "Timestamp": "2024-05-16T12:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.527600", + "Timestamp": "2024-05-16T12:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.169700", + "Timestamp": "2024-05-16T12:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.336800", + "Timestamp": "2024-05-16T12:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.259300", + "Timestamp": "2024-05-16T12:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.254300", + "Timestamp": "2024-05-16T12:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.129300", + "Timestamp": "2024-05-16T12:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.602500", + "Timestamp": "2024-05-16T12:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.597500", + "Timestamp": "2024-05-16T12:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.472500", + "Timestamp": "2024-05-16T12:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.574000", + "Timestamp": "2024-05-16T12:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.569000", + "Timestamp": "2024-05-16T12:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.444000", + "Timestamp": "2024-05-16T12:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.071200", + "Timestamp": "2024-05-16T12:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.523300", + "Timestamp": "2024-05-16T12:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "16.560600", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.202800", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362700", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.357700", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.232700", + "Timestamp": "2024-05-16T12:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.086800", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.094700", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.557900", + "Timestamp": "2024-05-16T12:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.288000", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.283000", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.158000", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.149900", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.715200", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.710200", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.585200", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.130700", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.125700", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.000700", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.786400", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.558000", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.553000", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.428000", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.169200", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.389600", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.199400", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.941300", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.194400", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.936300", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.069400", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.811300", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.367900", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.362900", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.237900", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.067600", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.106400", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.076400", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.976400", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.179100", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.175400", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119100", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.163800", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.158800", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.033800", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.404900", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041200", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.962400", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.676300", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.671300", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.546300", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097700", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137700", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037700", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.255700", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.288200", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.704500", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.699500", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.574500", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.226800", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.222800", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.166800", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.717100", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.712100", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.587100", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354900", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349900", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224900", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.955000", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.950000", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.825000", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.390200", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.385200", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.260200", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.324600", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.137200", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.253700", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.248700", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.123700", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.689800", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.684800", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.559800", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.169500", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.164500", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.039500", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200900", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196900", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140900", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.197400", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.192400", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.067400", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307800", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302800", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177800", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.468600", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.463600", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.338600", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.046700", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.041700", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.916700", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.833500", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.284600", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.424700", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.419700", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.294700", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.338000", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.308000", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.208000", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088000", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085200", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.059000", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.056200", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028000", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025200", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.561700", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.395100", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.390100", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.265100", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.213100", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.209400", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.153100", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231100", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.677000", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.672000", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.547000", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.106200", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.522900", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.572100", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.665900", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.630100", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.625100", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.500100", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.206800", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.062300", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.057300", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.932300", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.312800", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.535400", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.530400", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.405400", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.231400", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.249400", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.244400", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.119400", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.419300", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.414300", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.289300", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.785500", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.044500", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.039500", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.914500", + "Timestamp": "2024-05-16T12:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.085400", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.130500", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360000", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.355000", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230000", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174100", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.214100", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114100", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.748900", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.743900", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.618900", + "Timestamp": "2024-05-16T12:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.334100", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.367100", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.329100", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.362100", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.204100", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.237100", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.220700", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148400", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144700", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088400", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.130800", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Windows", + "SpotPrice": "10.803100", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.931100", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.926100", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.801100", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.046200", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.041200", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.916200", + "Timestamp": "2024-05-16T12:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.754700", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.749700", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.624700", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.799500", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102000", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045700", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.253400", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.286400", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281400", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156400", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068900", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039900", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008900", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099300", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043300", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.427900", + "Timestamp": "2024-05-16T12:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.422900", + "Timestamp": "2024-05-16T12:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.297900", + "Timestamp": "2024-05-16T12:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160800", + "Timestamp": "2024-05-16T12:46:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157100", + "Timestamp": "2024-05-16T12:46:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T12:46:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.258500", + "Timestamp": "2024-05-16T12:46:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T12:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T12:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047500", + "Timestamp": "2024-05-16T12:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148700", + "Timestamp": "2024-05-16T12:46:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144700", + "Timestamp": "2024-05-16T12:46:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088700", + "Timestamp": "2024-05-16T12:46:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081200", + "Timestamp": "2024-05-16T12:46:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.052200", + "Timestamp": "2024-05-16T12:46:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021200", + "Timestamp": "2024-05-16T12:46:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.623900", + "Timestamp": "2024-05-16T12:32:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.297700", + "Timestamp": "2024-05-16T12:32:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.132500", + "Timestamp": "2024-05-16T12:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T12:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110900", + "Timestamp": "2024-05-16T12:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054600", + "Timestamp": "2024-05-16T12:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.153200", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.992100", + "Timestamp": "2024-05-16T12:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.030700", + "Timestamp": "2024-05-16T12:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.056100", + "Timestamp": "2024-05-16T12:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.051100", + "Timestamp": "2024-05-16T12:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.926100", + "Timestamp": "2024-05-16T12:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.313700", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.114300", + "Timestamp": "2024-05-16T12:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.856500", + "Timestamp": "2024-05-16T12:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T12:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145200", + "Timestamp": "2024-05-16T12:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045200", + "Timestamp": "2024-05-16T12:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.813700", + "Timestamp": "2024-05-16T12:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.200300", + "Timestamp": "2024-05-16T12:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.151300", + "Timestamp": "2024-05-16T12:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.489200", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.961400", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.348300", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.311200", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.201400", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.306200", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.196400", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.181200", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.071400", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.989100", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.499200", + "Timestamp": "2024-05-16T12:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.494200", + "Timestamp": "2024-05-16T12:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.369200", + "Timestamp": "2024-05-16T12:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.965100", + "Timestamp": "2024-05-16T12:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.960100", + "Timestamp": "2024-05-16T12:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.835100", + "Timestamp": "2024-05-16T12:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.425800", + "Timestamp": "2024-05-16T12:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.234800", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.303600", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.446300", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.614800", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.609800", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.484800", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.947600", + "Timestamp": "2024-05-16T12:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.917600", + "Timestamp": "2024-05-16T12:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.817600", + "Timestamp": "2024-05-16T12:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "16.460600", + "Timestamp": "2024-05-16T12:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.178300", + "Timestamp": "2024-05-16T12:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.173300", + "Timestamp": "2024-05-16T12:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.048300", + "Timestamp": "2024-05-16T12:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.817300", + "Timestamp": "2024-05-16T12:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.863900", + "Timestamp": "2024-05-16T12:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.858900", + "Timestamp": "2024-05-16T12:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.733900", + "Timestamp": "2024-05-16T12:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.913600", + "Timestamp": "2024-05-16T12:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.149800", + "Timestamp": "2024-05-16T12:32:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.336800", + "Timestamp": "2024-05-16T12:32:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.369700", + "Timestamp": "2024-05-16T12:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.364700", + "Timestamp": "2024-05-16T12:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.239700", + "Timestamp": "2024-05-16T12:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.290500", + "Timestamp": "2024-05-16T12:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.144500", + "Timestamp": "2024-05-16T12:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.594700", + "Timestamp": "2024-05-16T12:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.589700", + "Timestamp": "2024-05-16T12:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.464700", + "Timestamp": "2024-05-16T12:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.159800", + "Timestamp": "2024-05-16T12:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.154800", + "Timestamp": "2024-05-16T12:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.029800", + "Timestamp": "2024-05-16T12:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.132000", + "Timestamp": "2024-05-16T12:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.281600", + "Timestamp": "2024-05-16T12:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.922200", + "Timestamp": "2024-05-16T12:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.564900", + "Timestamp": "2024-05-16T12:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174600", + "Timestamp": "2024-05-16T12:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.214600", + "Timestamp": "2024-05-16T12:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T12:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.415400", + "Timestamp": "2024-05-16T12:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.410400", + "Timestamp": "2024-05-16T12:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.285400", + "Timestamp": "2024-05-16T12:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.397600", + "Timestamp": "2024-05-16T12:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.780000", + "Timestamp": "2024-05-16T12:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.319100", + "Timestamp": "2024-05-16T12:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.182600", + "Timestamp": "2024-05-16T12:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.177600", + "Timestamp": "2024-05-16T12:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.052600", + "Timestamp": "2024-05-16T12:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.831200", + "Timestamp": "2024-05-16T12:31:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.826200", + "Timestamp": "2024-05-16T12:31:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.701200", + "Timestamp": "2024-05-16T12:31:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.789100", + "Timestamp": "2024-05-16T12:31:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.883300", + "Timestamp": "2024-05-16T12:31:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.869500", + "Timestamp": "2024-05-16T12:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.169000", + "Timestamp": "2024-05-16T12:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.164000", + "Timestamp": "2024-05-16T12:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.039000", + "Timestamp": "2024-05-16T12:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "18.114000", + "Timestamp": "2024-05-16T12:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135100", + "Timestamp": "2024-05-16T12:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131400", + "Timestamp": "2024-05-16T12:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075100", + "Timestamp": "2024-05-16T12:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.800800", + "Timestamp": "2024-05-16T12:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.354700", + "Timestamp": "2024-05-16T12:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.674300", + "Timestamp": "2024-05-16T12:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.307900", + "Timestamp": "2024-05-16T12:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.382300", + "Timestamp": "2024-05-16T12:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.377300", + "Timestamp": "2024-05-16T12:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.252300", + "Timestamp": "2024-05-16T12:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.643600", + "Timestamp": "2024-05-16T12:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.638600", + "Timestamp": "2024-05-16T12:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.513600", + "Timestamp": "2024-05-16T12:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.496200", + "Timestamp": "2024-05-16T12:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "15.451100", + "Timestamp": "2024-05-16T12:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.142100", + "Timestamp": "2024-05-16T12:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.588100", + "Timestamp": "2024-05-16T12:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.366000", + "Timestamp": "2024-05-16T12:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.361000", + "Timestamp": "2024-05-16T12:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.236000", + "Timestamp": "2024-05-16T12:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.423400", + "Timestamp": "2024-05-16T12:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.418400", + "Timestamp": "2024-05-16T12:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.293400", + "Timestamp": "2024-05-16T12:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.599200", + "Timestamp": "2024-05-16T12:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.295100", + "Timestamp": "2024-05-16T12:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.570400", + "Timestamp": "2024-05-16T12:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.171500", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.349700", + "Timestamp": "2024-05-16T12:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.317400", + "Timestamp": "2024-05-16T12:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.312400", + "Timestamp": "2024-05-16T12:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.187400", + "Timestamp": "2024-05-16T12:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.378600", + "Timestamp": "2024-05-16T12:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.189800", + "Timestamp": "2024-05-16T12:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.186100", + "Timestamp": "2024-05-16T12:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129800", + "Timestamp": "2024-05-16T12:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.883400", + "Timestamp": "2024-05-16T12:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.878400", + "Timestamp": "2024-05-16T12:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.753400", + "Timestamp": "2024-05-16T12:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.604800", + "Timestamp": "2024-05-16T12:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.599800", + "Timestamp": "2024-05-16T12:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.474800", + "Timestamp": "2024-05-16T12:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.195500", + "Timestamp": "2024-05-16T12:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.207800", + "Timestamp": "2024-05-16T12:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.037600", + "Timestamp": "2024-05-16T12:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.032600", + "Timestamp": "2024-05-16T12:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.907600", + "Timestamp": "2024-05-16T12:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.333500", + "Timestamp": "2024-05-16T12:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.189800", + "Timestamp": "2024-05-16T12:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.890200", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.885200", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.760200", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.735500", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.730500", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.605500", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.035200", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.173900", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.168900", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.043900", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.834100", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.829100", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.704100", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.260500", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.421500", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.068800", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.063800", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.938800", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.273000", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.448800", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.443800", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.318800", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.823000", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.690300", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.685300", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.560300", + "Timestamp": "2024-05-16T12:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.519400", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.514400", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.389400", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.877000", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.872000", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.747000", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.656400", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.777500", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.651400", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.772500", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.526400", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.647500", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132000", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128300", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072000", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.955700", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.950700", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.825700", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082400", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.053400", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022400", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311000", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.308000", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.251000", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.054200", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.144300", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.049200", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.139300", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.924200", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.014300", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.760500", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.755500", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.630500", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.006600", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.001600", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.876600", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.332800", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.327800", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.202800", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.242200", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.845700", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.840700", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.715700", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.612300", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.607300", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.482300", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138900", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135200", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078900", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.955000", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.950000", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.825000", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.608800", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.763700", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.733700", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.633700", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.416900", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.411900", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.286900", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.573000", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.568000", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.443000", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.624200", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.179800", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.325900", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.320900", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195900", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096700", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093000", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036700", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.110000", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.080000", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.980000", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.757400", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.752400", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.627400", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "14.238100", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.277100", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.319800", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.836000", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.831000", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.706000", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.215300", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.410300", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.405300", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.280300", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.122800", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.092800", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.992800", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.152700", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.466200", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.461200", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.336200", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.496800", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.491800", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.366800", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.593500", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.588500", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.463500", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.310400", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.393100", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.388100", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.263100", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.828900", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.823900", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.698900", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.344400", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.384400", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.284400", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.820900", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144200", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140500", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084200", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.193700", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190000", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133700", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.392900", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.387900", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.262900", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161800", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158100", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101800", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.553900", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.548900", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.423900", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.327600", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.322600", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.197600", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184900", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181200", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124900", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.079800", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.074800", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.949800", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.840800", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.678800", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.648800", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.548800", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.256500", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.047600", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.042600", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.917600", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.531100", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.480500", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.475500", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.350500", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.301100", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.296100", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.171100", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.188100", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.183100", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.058100", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070700", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040700", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010700", + "Timestamp": "2024-05-16T12:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.006900", + "Timestamp": "2024-05-16T12:30:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.359800", + "Timestamp": "2024-05-16T12:17:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.285200", + "Timestamp": "2024-05-16T12:17:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.618700", + "Timestamp": "2024-05-16T12:17:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.613700", + "Timestamp": "2024-05-16T12:17:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.488700", + "Timestamp": "2024-05-16T12:17:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.985600", + "Timestamp": "2024-05-16T12:17:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.980600", + "Timestamp": "2024-05-16T12:17:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.855600", + "Timestamp": "2024-05-16T12:17:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.469100", + "Timestamp": "2024-05-16T12:17:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.464100", + "Timestamp": "2024-05-16T12:17:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.339100", + "Timestamp": "2024-05-16T12:17:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.733800", + "Timestamp": "2024-05-16T12:17:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.335000", + "Timestamp": "2024-05-16T12:17:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.331300", + "Timestamp": "2024-05-16T12:17:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.275000", + "Timestamp": "2024-05-16T12:17:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.694800", + "Timestamp": "2024-05-16T12:17:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.689800", + "Timestamp": "2024-05-16T12:17:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.564800", + "Timestamp": "2024-05-16T12:17:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.745800", + "Timestamp": "2024-05-16T12:17:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.740800", + "Timestamp": "2024-05-16T12:17:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.615800", + "Timestamp": "2024-05-16T12:17:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.174600", + "Timestamp": "2024-05-16T12:17:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.090200", + "Timestamp": "2024-05-16T12:17:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.150600", + "Timestamp": "2024-05-16T12:17:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.209000", + "Timestamp": "2024-05-16T12:17:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.204000", + "Timestamp": "2024-05-16T12:17:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.079000", + "Timestamp": "2024-05-16T12:17:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200900", + "Timestamp": "2024-05-16T12:17:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196900", + "Timestamp": "2024-05-16T12:17:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140900", + "Timestamp": "2024-05-16T12:17:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.929700", + "Timestamp": "2024-05-16T12:17:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.924700", + "Timestamp": "2024-05-16T12:17:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.799700", + "Timestamp": "2024-05-16T12:17:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.929500", + "Timestamp": "2024-05-16T12:17:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.924500", + "Timestamp": "2024-05-16T12:17:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.799500", + "Timestamp": "2024-05-16T12:17:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139200", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179200", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079200", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.146900", + "Timestamp": "2024-05-16T12:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.138900", + "Timestamp": "2024-05-16T12:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.201000", + "Timestamp": "2024-05-16T12:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.562100", + "Timestamp": "2024-05-16T12:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.531600", + "Timestamp": "2024-05-16T12:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.509300", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "9.893600", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "9.888600", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "9.763600", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.760400", + "Timestamp": "2024-05-16T12:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.560100", + "Timestamp": "2024-05-16T12:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.555100", + "Timestamp": "2024-05-16T12:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.430100", + "Timestamp": "2024-05-16T12:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.282500", + "Timestamp": "2024-05-16T12:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.646600", + "Timestamp": "2024-05-16T12:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.794700", + "Timestamp": "2024-05-16T12:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.789700", + "Timestamp": "2024-05-16T12:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.664700", + "Timestamp": "2024-05-16T12:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.160400", + "Timestamp": "2024-05-16T12:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.364500", + "Timestamp": "2024-05-16T12:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.195800", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.190800", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.065800", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.416700", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.411700", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.286700", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.516400", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.511400", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.386400", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.634000", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.629000", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.504000", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.295500", + "Timestamp": "2024-05-16T12:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.290500", + "Timestamp": "2024-05-16T12:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.165500", + "Timestamp": "2024-05-16T12:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "h1.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.584900", + "Timestamp": "2024-05-16T12:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.543000", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.538000", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.413000", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.543700", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.455200", + "Timestamp": "2024-05-16T12:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.463800", + "Timestamp": "2024-05-16T12:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.450200", + "Timestamp": "2024-05-16T12:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.458800", + "Timestamp": "2024-05-16T12:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.325200", + "Timestamp": "2024-05-16T12:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.333800", + "Timestamp": "2024-05-16T12:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168100", + "Timestamp": "2024-05-16T12:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.208100", + "Timestamp": "2024-05-16T12:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T12:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.516400", + "Timestamp": "2024-05-16T12:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.035500", + "Timestamp": "2024-05-16T12:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.030500", + "Timestamp": "2024-05-16T12:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.905500", + "Timestamp": "2024-05-16T12:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "20.166200", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.308000", + "Timestamp": "2024-05-16T12:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.241300", + "Timestamp": "2024-05-16T12:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.590900", + "Timestamp": "2024-05-16T12:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.527800", + "Timestamp": "2024-05-16T12:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.123600", + "Timestamp": "2024-05-16T12:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.605100", + "Timestamp": "2024-05-16T12:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.620500", + "Timestamp": "2024-05-16T12:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.600100", + "Timestamp": "2024-05-16T12:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.615500", + "Timestamp": "2024-05-16T12:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.475100", + "Timestamp": "2024-05-16T12:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.490500", + "Timestamp": "2024-05-16T12:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.199500", + "Timestamp": "2024-05-16T12:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.194500", + "Timestamp": "2024-05-16T12:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.069500", + "Timestamp": "2024-05-16T12:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.624300", + "Timestamp": "2024-05-16T12:17:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.298800", + "Timestamp": "2024-05-16T12:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.293800", + "Timestamp": "2024-05-16T12:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.168800", + "Timestamp": "2024-05-16T12:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.901500", + "Timestamp": "2024-05-16T12:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.939400", + "Timestamp": "2024-05-16T12:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.818600", + "Timestamp": "2024-05-16T12:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.813600", + "Timestamp": "2024-05-16T12:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.688600", + "Timestamp": "2024-05-16T12:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.373800", + "Timestamp": "2024-05-16T12:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.580000", + "Timestamp": "2024-05-16T12:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.624800", + "Timestamp": "2024-05-16T12:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.619800", + "Timestamp": "2024-05-16T12:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.494800", + "Timestamp": "2024-05-16T12:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "23.870800", + "Timestamp": "2024-05-16T12:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "23.865800", + "Timestamp": "2024-05-16T12:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "23.740800", + "Timestamp": "2024-05-16T12:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.147000", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.039800", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.034800", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.909800", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.875200", + "Timestamp": "2024-05-16T12:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.206300", + "Timestamp": "2024-05-16T12:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.202300", + "Timestamp": "2024-05-16T12:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146300", + "Timestamp": "2024-05-16T12:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.213800", + "Timestamp": "2024-05-16T12:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.276000", + "Timestamp": "2024-05-16T12:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.271000", + "Timestamp": "2024-05-16T12:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146000", + "Timestamp": "2024-05-16T12:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.519100", + "Timestamp": "2024-05-16T12:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.254200", + "Timestamp": "2024-05-16T12:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294200", + "Timestamp": "2024-05-16T12:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194200", + "Timestamp": "2024-05-16T12:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.225200", + "Timestamp": "2024-05-16T12:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.220200", + "Timestamp": "2024-05-16T12:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.095200", + "Timestamp": "2024-05-16T12:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.344800", + "Timestamp": "2024-05-16T12:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.314800", + "Timestamp": "2024-05-16T12:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.214800", + "Timestamp": "2024-05-16T12:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.896100", + "Timestamp": "2024-05-16T12:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.891100", + "Timestamp": "2024-05-16T12:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.766100", + "Timestamp": "2024-05-16T12:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.465100", + "Timestamp": "2024-05-16T12:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.519400", + "Timestamp": "2024-05-16T12:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.460100", + "Timestamp": "2024-05-16T12:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.514400", + "Timestamp": "2024-05-16T12:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.335100", + "Timestamp": "2024-05-16T12:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.389400", + "Timestamp": "2024-05-16T12:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.138200", + "Timestamp": "2024-05-16T12:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278500", + "Timestamp": "2024-05-16T12:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273500", + "Timestamp": "2024-05-16T12:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148500", + "Timestamp": "2024-05-16T12:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.132600", + "Timestamp": "2024-05-16T12:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.652500", + "Timestamp": "2024-05-16T12:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.462400", + "Timestamp": "2024-05-16T12:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.779800", + "Timestamp": "2024-05-16T12:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.774800", + "Timestamp": "2024-05-16T12:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.649800", + "Timestamp": "2024-05-16T12:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.419700", + "Timestamp": "2024-05-16T12:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.056600", + "Timestamp": "2024-05-16T12:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.457600", + "Timestamp": "2024-05-16T12:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.221500", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.217800", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.161500", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.355500", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.350500", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.225500", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.945100", + "Timestamp": "2024-05-16T12:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.940100", + "Timestamp": "2024-05-16T12:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.815100", + "Timestamp": "2024-05-16T12:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.280900", + "Timestamp": "2024-05-16T12:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.277200", + "Timestamp": "2024-05-16T12:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.220900", + "Timestamp": "2024-05-16T12:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.550600", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.975300", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.970300", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.845300", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.542300", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.537300", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.412300", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.174400", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.169400", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.044400", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.331000", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "12.483300", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.670300", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.665300", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.540300", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.269600", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.264600", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.139600", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.335900", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.330900", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.205900", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.921800", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.169100", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.164100", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.039100", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.508600", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.527200", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.694600", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.378900", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.348900", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.248900", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.262600", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258600", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.202600", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.424100", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.768900", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.492300", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.462300", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.362300", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.129600", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159900", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155900", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099900", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.583400", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.578400", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.453400", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.356800", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.336400", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.664200", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.634200", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.534200", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.302900", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.297900", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172900", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110400", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106700", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050400", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.424700", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.419700", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.294700", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.336700", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.332700", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.276700", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.781300", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.776300", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.651300", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126600", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122900", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066600", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.848800", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.818800", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.718800", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.081000", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.076000", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.951000", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.017700", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.547700", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.542700", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.417700", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.226000", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.222300", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.166000", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.221600", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.100500", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.521300", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.491300", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.391300", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.294900", + "Timestamp": "2024-05-16T12:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.525900", + "Timestamp": "2024-05-16T12:13:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.563800", + "Timestamp": "2024-05-16T12:13:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.620800", + "Timestamp": "2024-05-16T12:13:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.476000", + "Timestamp": "2024-05-16T12:13:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.346200", + "Timestamp": "2024-05-16T12:13:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.471000", + "Timestamp": "2024-05-16T12:13:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.341200", + "Timestamp": "2024-05-16T12:13:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.346000", + "Timestamp": "2024-05-16T12:13:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.216200", + "Timestamp": "2024-05-16T12:13:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.774000", + "Timestamp": "2024-05-16T12:03:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.748100", + "Timestamp": "2024-05-16T12:02:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "p2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.556000", + "Timestamp": "2024-05-16T12:02:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.000200", + "Timestamp": "2024-05-16T12:02:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.806000", + "Timestamp": "2024-05-16T12:02:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.271400", + "Timestamp": "2024-05-16T12:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.748900", + "Timestamp": "2024-05-16T12:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.743900", + "Timestamp": "2024-05-16T12:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.618900", + "Timestamp": "2024-05-16T12:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.603800", + "Timestamp": "2024-05-16T12:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.909800", + "Timestamp": "2024-05-16T12:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.904800", + "Timestamp": "2024-05-16T12:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.779800", + "Timestamp": "2024-05-16T12:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.462500", + "Timestamp": "2024-05-16T12:02:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.457500", + "Timestamp": "2024-05-16T12:02:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.332500", + "Timestamp": "2024-05-16T12:02:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.295500", + "Timestamp": "2024-05-16T12:02:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.739700", + "Timestamp": "2024-05-16T12:02:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.734700", + "Timestamp": "2024-05-16T12:02:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.609700", + "Timestamp": "2024-05-16T12:02:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.028100", + "Timestamp": "2024-05-16T12:02:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.490900", + "Timestamp": "2024-05-16T12:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.485900", + "Timestamp": "2024-05-16T12:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.360900", + "Timestamp": "2024-05-16T12:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.756800", + "Timestamp": "2024-05-16T12:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.751800", + "Timestamp": "2024-05-16T12:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.626800", + "Timestamp": "2024-05-16T12:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.605000", + "Timestamp": "2024-05-16T12:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.629200", + "Timestamp": "2024-05-16T12:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.193500", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.188500", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.063500", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.084200", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.079200", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.954200", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.747300", + "Timestamp": "2024-05-16T12:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.500500", + "Timestamp": "2024-05-16T12:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.569000", + "Timestamp": "2024-05-16T12:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.495500", + "Timestamp": "2024-05-16T12:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.564000", + "Timestamp": "2024-05-16T12:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.370500", + "Timestamp": "2024-05-16T12:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.439000", + "Timestamp": "2024-05-16T12:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.554100", + "Timestamp": "2024-05-16T12:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.524100", + "Timestamp": "2024-05-16T12:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.424100", + "Timestamp": "2024-05-16T12:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.483800", + "Timestamp": "2024-05-16T12:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.957200", + "Timestamp": "2024-05-16T12:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.952200", + "Timestamp": "2024-05-16T12:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.827200", + "Timestamp": "2024-05-16T12:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.102000", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.097000", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.972000", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098600", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042600", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.517500", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.512500", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.387500", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.187100", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121700", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161700", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061700", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.391700", + "Timestamp": "2024-05-16T12:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.854100", + "Timestamp": "2024-05-16T12:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.849100", + "Timestamp": "2024-05-16T12:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.724100", + "Timestamp": "2024-05-16T12:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.562400", + "Timestamp": "2024-05-16T12:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.851100", + "Timestamp": "2024-05-16T12:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.846100", + "Timestamp": "2024-05-16T12:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.721100", + "Timestamp": "2024-05-16T12:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.176300", + "Timestamp": "2024-05-16T12:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.171300", + "Timestamp": "2024-05-16T12:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.046300", + "Timestamp": "2024-05-16T12:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.144400", + "Timestamp": "2024-05-16T12:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.282200", + "Timestamp": "2024-05-16T12:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.277200", + "Timestamp": "2024-05-16T12:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.152200", + "Timestamp": "2024-05-16T12:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.975500", + "Timestamp": "2024-05-16T12:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.170900", + "Timestamp": "2024-05-16T12:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.970500", + "Timestamp": "2024-05-16T12:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.165900", + "Timestamp": "2024-05-16T12:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.845500", + "Timestamp": "2024-05-16T12:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.040900", + "Timestamp": "2024-05-16T12:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.083400", + "Timestamp": "2024-05-16T12:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.656600", + "Timestamp": "2024-05-16T12:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.651600", + "Timestamp": "2024-05-16T12:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.526600", + "Timestamp": "2024-05-16T12:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.551900", + "Timestamp": "2024-05-16T12:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.130800", + "Timestamp": "2024-05-16T12:02:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.128200", + "Timestamp": "2024-05-16T12:02:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.089300", + "Timestamp": "2024-05-16T12:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.084300", + "Timestamp": "2024-05-16T12:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.959300", + "Timestamp": "2024-05-16T12:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.625900", + "Timestamp": "2024-05-16T12:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.620900", + "Timestamp": "2024-05-16T12:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.495900", + "Timestamp": "2024-05-16T12:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.150700", + "Timestamp": "2024-05-16T12:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111600", + "Timestamp": "2024-05-16T12:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107900", + "Timestamp": "2024-05-16T12:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051600", + "Timestamp": "2024-05-16T12:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.327500", + "Timestamp": "2024-05-16T12:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065400", + "Timestamp": "2024-05-16T12:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.005400", + "Timestamp": "2024-05-16T12:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005400", + "Timestamp": "2024-05-16T12:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.201000", + "Timestamp": "2024-05-16T12:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.663200", + "Timestamp": "2024-05-16T12:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.658200", + "Timestamp": "2024-05-16T12:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.533200", + "Timestamp": "2024-05-16T12:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.185800", + "Timestamp": "2024-05-16T12:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.180800", + "Timestamp": "2024-05-16T12:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.055800", + "Timestamp": "2024-05-16T12:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.133300", + "Timestamp": "2024-05-16T12:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.349700", + "Timestamp": "2024-05-16T12:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.363900", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.358900", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.233900", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.520600", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.515600", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.390600", + "Timestamp": "2024-05-16T12:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.926900", + "Timestamp": "2024-05-16T12:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.659000", + "Timestamp": "2024-05-16T12:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.068600", + "Timestamp": "2024-05-16T12:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.063600", + "Timestamp": "2024-05-16T12:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.938600", + "Timestamp": "2024-05-16T12:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "14.104300", + "Timestamp": "2024-05-16T12:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.316700", + "Timestamp": "2024-05-16T12:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.356700", + "Timestamp": "2024-05-16T12:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.256700", + "Timestamp": "2024-05-16T12:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.080600", + "Timestamp": "2024-05-16T12:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.194800", + "Timestamp": "2024-05-16T12:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.191100", + "Timestamp": "2024-05-16T12:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134800", + "Timestamp": "2024-05-16T12:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.650200", + "Timestamp": "2024-05-16T12:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.645200", + "Timestamp": "2024-05-16T12:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.520200", + "Timestamp": "2024-05-16T12:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.618800", + "Timestamp": "2024-05-16T12:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.026100", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.021100", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.896100", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131700", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128000", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071700", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.426000", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.421000", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.296000", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.146400", + "Timestamp": "2024-05-16T12:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.740900", + "Timestamp": "2024-05-16T12:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.651200", + "Timestamp": "2024-05-16T12:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.950600", + "Timestamp": "2024-05-16T12:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.304300", + "Timestamp": "2024-05-16T12:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.299300", + "Timestamp": "2024-05-16T12:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.174300", + "Timestamp": "2024-05-16T12:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423700", + "Timestamp": "2024-05-16T12:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.215100", + "Timestamp": "2024-05-16T12:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.210100", + "Timestamp": "2024-05-16T12:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.085100", + "Timestamp": "2024-05-16T12:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.394500", + "Timestamp": "2024-05-16T12:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.054000", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.533700", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.503700", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.403700", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.407100", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.417700", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120200", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116500", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060200", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.206700", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.203000", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146700", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136200", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132500", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076200", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.142400", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.989300", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.097300", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.092300", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967300", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.221200", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.217200", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.161200", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.305200", + "Timestamp": "2024-05-16T12:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.447700", + "Timestamp": "2024-05-16T12:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.969100", + "Timestamp": "2024-05-16T12:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.057700", + "Timestamp": "2024-05-16T12:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.521300", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.406600", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.401600", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.276600", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.892200", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.887200", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.762200", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.620900", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.615900", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.490900", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.001600", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133600", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129900", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073600", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.345100", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "18.645500", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.694200", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.689200", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.564200", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "f1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.735900", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "f1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.705900", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "f1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.605900", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.060300", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.030300", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.930300", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.554400", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.549400", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.424400", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.506500", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.476500", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.376500", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.263900", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258900", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133900", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.249300", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.258900", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.228900", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128900", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.326300", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296300", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196300", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.355000", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.350000", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.225000", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.036100", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.726100", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.721100", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.596100", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.148000", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.444500", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.414500", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.314500", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.155300", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158800", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155100", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.744000", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.566000", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.561000", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.436000", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.640900", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.635900", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.510900", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.428900", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.423900", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.298900", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.559300", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.554300", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.429300", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.256100", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.255700", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.251100", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.250700", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.126100", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.125700", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168800", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165100", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108800", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.246100", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.242100", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186100", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.348100", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343100", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.218100", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.338300", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.511800", + "Timestamp": "2024-05-16T12:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133500", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129800", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073500", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.321400", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "vt1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.237400", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "vt1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.207400", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "vt1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.107400", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.355600", + "Timestamp": "2024-05-16T11:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.350600", + "Timestamp": "2024-05-16T11:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.225600", + "Timestamp": "2024-05-16T11:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.165900", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.573500", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.568500", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.443500", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.960900", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.955900", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.830900", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.589500", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.584500", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.459500", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.140100", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.363900", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.403900", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.303900", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.351000", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.850100", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.115100", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.990700", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.369200", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.903900", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.873900", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.773900", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.673500", + "Timestamp": "2024-05-16T11:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.668500", + "Timestamp": "2024-05-16T11:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.543500", + "Timestamp": "2024-05-16T11:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.825000", + "Timestamp": "2024-05-16T11:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.933500", + "Timestamp": "2024-05-16T11:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.928500", + "Timestamp": "2024-05-16T11:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.803500", + "Timestamp": "2024-05-16T11:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.275700", + "Timestamp": "2024-05-16T11:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.185500", + "Timestamp": "2024-05-16T11:47:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181800", + "Timestamp": "2024-05-16T11:47:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125500", + "Timestamp": "2024-05-16T11:47:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.442500", + "Timestamp": "2024-05-16T11:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.597600", + "Timestamp": "2024-05-16T11:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "vt1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.849400", + "Timestamp": "2024-05-16T11:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "vt1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.819400", + "Timestamp": "2024-05-16T11:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "vt1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.719400", + "Timestamp": "2024-05-16T11:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.313600", + "Timestamp": "2024-05-16T11:47:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.537800", + "Timestamp": "2024-05-16T11:47:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.553400", + "Timestamp": "2024-05-16T11:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.548400", + "Timestamp": "2024-05-16T11:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.423400", + "Timestamp": "2024-05-16T11:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.012000", + "Timestamp": "2024-05-16T11:47:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.439200", + "Timestamp": "2024-05-16T11:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.644800", + "Timestamp": "2024-05-16T11:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.541200", + "Timestamp": "2024-05-16T11:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.818500", + "Timestamp": "2024-05-16T11:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.705600", + "Timestamp": "2024-05-16T11:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.580800", + "Timestamp": "2024-05-16T11:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.736500", + "Timestamp": "2024-05-16T11:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.706500", + "Timestamp": "2024-05-16T11:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.606500", + "Timestamp": "2024-05-16T11:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.279800", + "Timestamp": "2024-05-16T11:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149100", + "Timestamp": "2024-05-16T11:46:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.189100", + "Timestamp": "2024-05-16T11:46:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089100", + "Timestamp": "2024-05-16T11:46:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.648400", + "Timestamp": "2024-05-16T11:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.462600", + "Timestamp": "2024-05-16T11:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.457600", + "Timestamp": "2024-05-16T11:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.332600", + "Timestamp": "2024-05-16T11:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.071500", + "Timestamp": "2024-05-16T11:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.171100", + "Timestamp": "2024-05-16T11:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134400", + "Timestamp": "2024-05-16T11:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130700", + "Timestamp": "2024-05-16T11:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074400", + "Timestamp": "2024-05-16T11:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.181500", + "Timestamp": "2024-05-16T11:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.169900", + "Timestamp": "2024-05-16T11:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.208300", + "Timestamp": "2024-05-16T11:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.203300", + "Timestamp": "2024-05-16T11:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.078300", + "Timestamp": "2024-05-16T11:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.113400", + "Timestamp": "2024-05-16T11:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.108400", + "Timestamp": "2024-05-16T11:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.983400", + "Timestamp": "2024-05-16T11:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148800", + "Timestamp": "2024-05-16T11:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145100", + "Timestamp": "2024-05-16T11:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088800", + "Timestamp": "2024-05-16T11:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.571600", + "Timestamp": "2024-05-16T11:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.566600", + "Timestamp": "2024-05-16T11:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.441600", + "Timestamp": "2024-05-16T11:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "a1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116300", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "a1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "a1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056300", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062100", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002100", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002100", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.401400", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064200", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004200", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004200", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.232000", + "Timestamp": "2024-05-16T11:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.353400", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.323400", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.223400", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.171800", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.816600", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.907400", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.368900", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.310800", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.363900", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.305800", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.238900", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.180800", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.330400", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.649300", + "Timestamp": "2024-05-16T11:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.296800", + "Timestamp": "2024-05-16T11:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117600", + "Timestamp": "2024-05-16T11:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113900", + "Timestamp": "2024-05-16T11:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057600", + "Timestamp": "2024-05-16T11:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.320600", + "Timestamp": "2024-05-16T11:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.773700", + "Timestamp": "2024-05-16T11:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.532300", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.539700", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.756500", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.751500", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.626500", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.576300", + "Timestamp": "2024-05-16T11:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.256800", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.253100", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196800", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.567100", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.562100", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.437100", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.571700", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.566700", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.441700", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.160200", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.155200", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.030200", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.472600", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.520300", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.499100", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.495100", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.439100", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.338900", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.333900", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.208900", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091400", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087700", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031400", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.965600", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.960600", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.835600", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.352500", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.601300", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.598400", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.593400", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.468400", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.164200", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.603900", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.598900", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.473900", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.811200", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.144800", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.508600", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.503600", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.378600", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.656700", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.999300", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.994300", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.869300", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.675300", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.670300", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.545300", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.243200", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.213200", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.113200", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.043500", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.329400", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.324400", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.199400", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "12.633300", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "12.603300", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "12.503300", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135500", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131800", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075500", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.389400", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.384400", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.259400", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093500", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037200", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.742200", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.712200", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.612200", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.648800", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.725500", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.643800", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.720500", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.518800", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.595500", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.947700", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "f1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.327400", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "f1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.297400", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "f1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.197400", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.276700", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.271700", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146700", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.541900", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.536900", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.411900", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.896800", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.891800", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.766800", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128100", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.036900", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.031900", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.906900", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.429600", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.424600", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.299600", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.756200", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.751200", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.626200", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.778900", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.664700", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.659700", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.534700", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.700100", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.183800", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.358700", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.353700", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.228700", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.352600", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.519700", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.514700", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.389700", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084500", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080800", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024500", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.973700", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.279900", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.274900", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.149900", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.280000", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.164700", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.368000", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.363000", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.238000", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.780000", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.775000", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.650000", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140500", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136800", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080500", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.488600", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.397300", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.367300", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.267300", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.692000", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111100", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151100", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051100", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.185300", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181600", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125300", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068500", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039500", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008500", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.325700", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.804100", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.927600", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.922600", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.797600", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.337100", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.377100", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.277100", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.089600", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.059600", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.959600", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.684700", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.679700", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.554700", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.052900", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.086800", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.258900", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.194800", + "Timestamp": "2024-05-16T11:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190800", + "Timestamp": "2024-05-16T11:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134800", + "Timestamp": "2024-05-16T11:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129200", + "Timestamp": "2024-05-16T11:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125200", + "Timestamp": "2024-05-16T11:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069200", + "Timestamp": "2024-05-16T11:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.769900", + "Timestamp": "2024-05-16T11:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107000", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147000", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047000", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t1.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.007500", + "Timestamp": "2024-05-16T11:33:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.732200", + "Timestamp": "2024-05-16T11:32:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.366600", + "Timestamp": "2024-05-16T11:32:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.264900", + "Timestamp": "2024-05-16T11:32:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.246900", + "Timestamp": "2024-05-16T11:32:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.241900", + "Timestamp": "2024-05-16T11:32:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.116900", + "Timestamp": "2024-05-16T11:32:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.413100", + "Timestamp": "2024-05-16T11:32:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.408100", + "Timestamp": "2024-05-16T11:32:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.283100", + "Timestamp": "2024-05-16T11:32:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.129500", + "Timestamp": "2024-05-16T11:32:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.296700", + "Timestamp": "2024-05-16T11:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.291700", + "Timestamp": "2024-05-16T11:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.166700", + "Timestamp": "2024-05-16T11:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.995700", + "Timestamp": "2024-05-16T11:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.567100", + "Timestamp": "2024-05-16T11:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.562100", + "Timestamp": "2024-05-16T11:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.437100", + "Timestamp": "2024-05-16T11:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.258800", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.253800", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.128800", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.240800", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.538800", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.845500", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.840500", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.715500", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.648500", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.847100", + "Timestamp": "2024-05-16T11:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.338200", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.069500", + "Timestamp": "2024-05-16T11:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.286800", + "Timestamp": "2024-05-16T11:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.281800", + "Timestamp": "2024-05-16T11:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.156800", + "Timestamp": "2024-05-16T11:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.743300", + "Timestamp": "2024-05-16T11:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.738300", + "Timestamp": "2024-05-16T11:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.613300", + "Timestamp": "2024-05-16T11:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.030300", + "Timestamp": "2024-05-16T11:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.725200", + "Timestamp": "2024-05-16T11:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.294100", + "Timestamp": "2024-05-16T11:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.289100", + "Timestamp": "2024-05-16T11:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.164100", + "Timestamp": "2024-05-16T11:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.238000", + "Timestamp": "2024-05-16T11:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.234300", + "Timestamp": "2024-05-16T11:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.178000", + "Timestamp": "2024-05-16T11:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.059500", + "Timestamp": "2024-05-16T11:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.054500", + "Timestamp": "2024-05-16T11:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.929500", + "Timestamp": "2024-05-16T11:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.534500", + "Timestamp": "2024-05-16T11:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.435000", + "Timestamp": "2024-05-16T11:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.532100", + "Timestamp": "2024-05-16T11:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "f1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.502100", + "Timestamp": "2024-05-16T11:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.402100", + "Timestamp": "2024-05-16T11:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.218400", + "Timestamp": "2024-05-16T11:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.213400", + "Timestamp": "2024-05-16T11:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.088400", + "Timestamp": "2024-05-16T11:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.985600", + "Timestamp": "2024-05-16T11:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "h1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.341100", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "h1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.311100", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "h1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.211100", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.357200", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.352200", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.227200", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.large", + "ProductDescription": "Windows", + "SpotPrice": "0.171800", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "13.664900", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p2.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "13.634900", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "13.534900", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176300", + "Timestamp": "2024-05-16T11:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.216300", + "Timestamp": "2024-05-16T11:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116300", + "Timestamp": "2024-05-16T11:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.135600", + "Timestamp": "2024-05-16T11:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.130600", + "Timestamp": "2024-05-16T11:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.005600", + "Timestamp": "2024-05-16T11:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.141500", + "Timestamp": "2024-05-16T11:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.136500", + "Timestamp": "2024-05-16T11:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.011500", + "Timestamp": "2024-05-16T11:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.423400", + "Timestamp": "2024-05-16T11:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.248900", + "Timestamp": "2024-05-16T11:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.999400", + "Timestamp": "2024-05-16T11:32:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.465500", + "Timestamp": "2024-05-16T11:32:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.810400", + "Timestamp": "2024-05-16T11:32:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.618100", + "Timestamp": "2024-05-16T11:32:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "vt1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.812200", + "Timestamp": "2024-05-16T11:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "vt1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.782200", + "Timestamp": "2024-05-16T11:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "vt1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.682200", + "Timestamp": "2024-05-16T11:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.477200", + "Timestamp": "2024-05-16T11:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.974300", + "Timestamp": "2024-05-16T11:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.569300", + "Timestamp": "2024-05-16T11:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.983900", + "Timestamp": "2024-05-16T11:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.850100", + "Timestamp": "2024-05-16T11:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.845100", + "Timestamp": "2024-05-16T11:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.720100", + "Timestamp": "2024-05-16T11:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.440800", + "Timestamp": "2024-05-16T11:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.435800", + "Timestamp": "2024-05-16T11:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.310800", + "Timestamp": "2024-05-16T11:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.033100", + "Timestamp": "2024-05-16T11:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.376000", + "Timestamp": "2024-05-16T11:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.346000", + "Timestamp": "2024-05-16T11:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.246000", + "Timestamp": "2024-05-16T11:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.164100", + "Timestamp": "2024-05-16T11:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.274200", + "Timestamp": "2024-05-16T11:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.129900", + "Timestamp": "2024-05-16T11:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.523400", + "Timestamp": "2024-05-16T11:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "24.398700", + "Timestamp": "2024-05-16T11:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "24.393700", + "Timestamp": "2024-05-16T11:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "24.268700", + "Timestamp": "2024-05-16T11:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.135800", + "Timestamp": "2024-05-16T11:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418500", + "Timestamp": "2024-05-16T11:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.412400", + "Timestamp": "2024-05-16T11:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.037400", + "Timestamp": "2024-05-16T11:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.566000", + "Timestamp": "2024-05-16T11:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127500", + "Timestamp": "2024-05-16T11:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123500", + "Timestamp": "2024-05-16T11:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067500", + "Timestamp": "2024-05-16T11:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.818300", + "Timestamp": "2024-05-16T11:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.813300", + "Timestamp": "2024-05-16T11:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.688300", + "Timestamp": "2024-05-16T11:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129700", + "Timestamp": "2024-05-16T11:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126700", + "Timestamp": "2024-05-16T11:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069700", + "Timestamp": "2024-05-16T11:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.966500", + "Timestamp": "2024-05-16T11:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.961500", + "Timestamp": "2024-05-16T11:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.836500", + "Timestamp": "2024-05-16T11:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.553200", + "Timestamp": "2024-05-16T11:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.182200", + "Timestamp": "2024-05-16T11:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.542300", + "Timestamp": "2024-05-16T11:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.133300", + "Timestamp": "2024-05-16T11:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.032100", + "Timestamp": "2024-05-16T11:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.964700", + "Timestamp": "2024-05-16T11:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.039200", + "Timestamp": "2024-05-16T11:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.034200", + "Timestamp": "2024-05-16T11:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.909200", + "Timestamp": "2024-05-16T11:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.417200", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.412200", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.287200", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.558300", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.553300", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.428300", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.294100", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.312500", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.307500", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.182500", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.788900", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.783900", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.658900", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.642500", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.637500", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.512500", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.007700", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.002700", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.877700", + "Timestamp": "2024-05-16T11:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.564700", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.559700", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.434700", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.277100", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.272100", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.147100", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.602200", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.572200", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.472200", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.310900", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.403800", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.398800", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.273800", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.253200", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.279200", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.274200", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149200", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.611300", + "Timestamp": "2024-05-16T11:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.210200", + "Timestamp": "2024-05-16T11:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.205200", + "Timestamp": "2024-05-16T11:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.080200", + "Timestamp": "2024-05-16T11:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.469600", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.369300", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.364300", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.239300", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.213200", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.392000", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.512500", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.507500", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.382500", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.053100", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "12.107000", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "12.077000", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "11.977000", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.710400", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.019100", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.397500", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098400", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042100", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.793500", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.788500", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.663500", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154800", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151100", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094800", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154700", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150700", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094700", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.961200", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.282300", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.277300", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.152300", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.104100", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.099100", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.974100", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.199400", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.127300", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.102900", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.097300", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.072900", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.997300", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.972900", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.966700", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.961700", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.836700", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.193000", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.189300", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133000", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.395400", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.390400", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.265400", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270900", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.286400", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265900", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281400", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140900", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156400", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.963900", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.958900", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.833900", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.197900", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193900", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137900", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.217100", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.213400", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157100", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.219100", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.215400", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159100", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.542600", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.537600", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.412600", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.603600", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.598600", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.473600", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.422500", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.417500", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.292500", + "Timestamp": "2024-05-16T11:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121500", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117500", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061500", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.247000", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.242000", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.117000", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.273800", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.271400", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.613300", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.177600", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.780200", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.775200", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.650200", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.451600", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.446600", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.321600", + "Timestamp": "2024-05-16T11:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.179200", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.175500", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119200", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.531500", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.526500", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.401500", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.334300", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.330300", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.274300", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.784800", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.754800", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.654800", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.343500", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.338500", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.213500", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.587500", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.602100", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.654800", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.518700", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.134900", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.953600", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.129900", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.948600", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.004900", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.823600", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.330500", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.385100", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.380100", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.255100", + "Timestamp": "2024-05-16T11:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141500", + "Timestamp": "2024-05-16T11:17:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137800", + "Timestamp": "2024-05-16T11:17:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081500", + "Timestamp": "2024-05-16T11:17:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.529300", + "Timestamp": "2024-05-16T11:17:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.345000", + "Timestamp": "2024-05-16T11:17:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.340000", + "Timestamp": "2024-05-16T11:17:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.215000", + "Timestamp": "2024-05-16T11:17:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.835100", + "Timestamp": "2024-05-16T11:17:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.830100", + "Timestamp": "2024-05-16T11:17:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.705100", + "Timestamp": "2024-05-16T11:17:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.269100", + "Timestamp": "2024-05-16T11:17:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265400", + "Timestamp": "2024-05-16T11:17:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.209100", + "Timestamp": "2024-05-16T11:17:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.757700", + "Timestamp": "2024-05-16T11:17:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.752700", + "Timestamp": "2024-05-16T11:17:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.627700", + "Timestamp": "2024-05-16T11:17:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.328100", + "Timestamp": "2024-05-16T11:17:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.334100", + "Timestamp": "2024-05-16T11:17:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.918800", + "Timestamp": "2024-05-16T11:17:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.248900", + "Timestamp": "2024-05-16T11:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.388200", + "Timestamp": "2024-05-16T11:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.358200", + "Timestamp": "2024-05-16T11:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.258200", + "Timestamp": "2024-05-16T11:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.504600", + "Timestamp": "2024-05-16T11:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.716600", + "Timestamp": "2024-05-16T11:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.980300", + "Timestamp": "2024-05-16T11:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.618600", + "Timestamp": "2024-05-16T11:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.385800", + "Timestamp": "2024-05-16T11:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.425800", + "Timestamp": "2024-05-16T11:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.325800", + "Timestamp": "2024-05-16T11:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.394300", + "Timestamp": "2024-05-16T11:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.479000", + "Timestamp": "2024-05-16T11:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.322700", + "Timestamp": "2024-05-16T11:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.755900", + "Timestamp": "2024-05-16T11:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.028400", + "Timestamp": "2024-05-16T11:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.023400", + "Timestamp": "2024-05-16T11:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.898400", + "Timestamp": "2024-05-16T11:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.528800", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.523800", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.398800", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.289900", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.083300", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.078300", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.953300", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.602700", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.142700", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.137700", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.012700", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.045000", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.040000", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.915000", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.053200", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.048200", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.923200", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116000", + "Timestamp": "2024-05-16T11:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-16T11:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056000", + "Timestamp": "2024-05-16T11:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.095400", + "Timestamp": "2024-05-16T11:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.781600", + "Timestamp": "2024-05-16T11:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.193100", + "Timestamp": "2024-05-16T11:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.188100", + "Timestamp": "2024-05-16T11:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.063100", + "Timestamp": "2024-05-16T11:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081100", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077400", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021100", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168400", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.208400", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.513400", + "Timestamp": "2024-05-16T11:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.612900", + "Timestamp": "2024-05-16T11:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.508400", + "Timestamp": "2024-05-16T11:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.607900", + "Timestamp": "2024-05-16T11:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.383400", + "Timestamp": "2024-05-16T11:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.482900", + "Timestamp": "2024-05-16T11:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.608900", + "Timestamp": "2024-05-16T11:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.174900", + "Timestamp": "2024-05-16T11:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139500", + "Timestamp": "2024-05-16T11:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179500", + "Timestamp": "2024-05-16T11:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079500", + "Timestamp": "2024-05-16T11:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.617500", + "Timestamp": "2024-05-16T11:17:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.612500", + "Timestamp": "2024-05-16T11:17:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.487500", + "Timestamp": "2024-05-16T11:17:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.467700", + "Timestamp": "2024-05-16T11:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.216100", + "Timestamp": "2024-05-16T11:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.417100", + "Timestamp": "2024-05-16T11:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.412100", + "Timestamp": "2024-05-16T11:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.287100", + "Timestamp": "2024-05-16T11:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.726500", + "Timestamp": "2024-05-16T11:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.721500", + "Timestamp": "2024-05-16T11:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.596500", + "Timestamp": "2024-05-16T11:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.371300", + "Timestamp": "2024-05-16T11:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.053400", + "Timestamp": "2024-05-16T11:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.048400", + "Timestamp": "2024-05-16T11:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.923400", + "Timestamp": "2024-05-16T11:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.480400", + "Timestamp": "2024-05-16T11:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103200", + "Timestamp": "2024-05-16T11:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T11:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043200", + "Timestamp": "2024-05-16T11:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.738600", + "Timestamp": "2024-05-16T11:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.475700", + "Timestamp": "2024-05-16T11:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.472000", + "Timestamp": "2024-05-16T11:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.415700", + "Timestamp": "2024-05-16T11:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.274900", + "Timestamp": "2024-05-16T11:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.660200", + "Timestamp": "2024-05-16T11:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.201000", + "Timestamp": "2024-05-16T11:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.944400", + "Timestamp": "2024-05-16T11:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.939400", + "Timestamp": "2024-05-16T11:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.814400", + "Timestamp": "2024-05-16T11:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200500", + "Timestamp": "2024-05-16T11:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196500", + "Timestamp": "2024-05-16T11:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140500", + "Timestamp": "2024-05-16T11:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.557500", + "Timestamp": "2024-05-16T11:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.530000", + "Timestamp": "2024-05-16T11:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151400", + "Timestamp": "2024-05-16T11:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147700", + "Timestamp": "2024-05-16T11:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091400", + "Timestamp": "2024-05-16T11:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.734100", + "Timestamp": "2024-05-16T11:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.729100", + "Timestamp": "2024-05-16T11:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.604100", + "Timestamp": "2024-05-16T11:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.235900", + "Timestamp": "2024-05-16T11:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.230900", + "Timestamp": "2024-05-16T11:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.105900", + "Timestamp": "2024-05-16T11:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.180100", + "Timestamp": "2024-05-16T11:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.175100", + "Timestamp": "2024-05-16T11:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.050100", + "Timestamp": "2024-05-16T11:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.748800", + "Timestamp": "2024-05-16T11:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.743800", + "Timestamp": "2024-05-16T11:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.618800", + "Timestamp": "2024-05-16T11:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064700", + "Timestamp": "2024-05-16T11:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004700", + "Timestamp": "2024-05-16T11:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004700", + "Timestamp": "2024-05-16T11:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.675000", + "Timestamp": "2024-05-16T11:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.670000", + "Timestamp": "2024-05-16T11:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.545000", + "Timestamp": "2024-05-16T11:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.494700", + "Timestamp": "2024-05-16T11:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.489700", + "Timestamp": "2024-05-16T11:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.364700", + "Timestamp": "2024-05-16T11:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095600", + "Timestamp": "2024-05-16T11:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091900", + "Timestamp": "2024-05-16T11:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035600", + "Timestamp": "2024-05-16T11:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437600", + "Timestamp": "2024-05-16T11:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.525100", + "Timestamp": "2024-05-16T11:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.520100", + "Timestamp": "2024-05-16T11:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.395100", + "Timestamp": "2024-05-16T11:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.660700", + "Timestamp": "2024-05-16T11:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.897500", + "Timestamp": "2024-05-16T11:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.892500", + "Timestamp": "2024-05-16T11:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.767500", + "Timestamp": "2024-05-16T11:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.155300", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.224500", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.055000", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.369800", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.336900", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.518100", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.955900", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.950900", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.825900", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.305300", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167100", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163400", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074500", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070800", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014500", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.037500", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.214000", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.007500", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.184000", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.907500", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.084000", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.670200", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.560000", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.555000", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.430000", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.914500", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.909500", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.784500", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.245900", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.241900", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.185900", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.137800", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.132600", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.127600", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.002600", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.860600", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.855600", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.730600", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.307300", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.302300", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.177300", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.351300", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.346300", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.221300", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "vt1.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.457100", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "vt1.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.427100", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "vt1.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.327100", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.426500", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.777400", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.772400", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.647400", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.179300", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.257300", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.363200", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.132400", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.127400", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.002400", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.820500", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.815500", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.690500", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.136200", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.584300", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.396900", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.391900", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.266900", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.908300", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.903300", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.778300", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.279300", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.283500", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.348900", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343900", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.218900", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.540300", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.551600", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "f1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.521600", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.421600", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121400", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117400", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061400", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.637400", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.618600", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.632400", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.613600", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.507400", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.488600", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.227700", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.222700", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.097700", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.980300", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.306200", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.301200", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.176200", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "14.597200", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.236500", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.862000", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.857000", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.732000", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360400", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g3s.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.356400", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.300400", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.415000", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150100", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050100", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.592900", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.587900", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.462900", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.259400", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.254400", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.129400", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.733800", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.728800", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.603800", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.722800", + "Timestamp": "2024-05-16T11:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.317600", + "Timestamp": "2024-05-16T11:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.287600", + "Timestamp": "2024-05-16T11:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.187600", + "Timestamp": "2024-05-16T11:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.222400", + "Timestamp": "2024-05-16T11:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.218400", + "Timestamp": "2024-05-16T11:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162400", + "Timestamp": "2024-05-16T11:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.774000", + "Timestamp": "2024-05-16T11:07:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.168000", + "Timestamp": "2024-05-16T11:07:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "h1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.138000", + "Timestamp": "2024-05-16T11:07:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.038000", + "Timestamp": "2024-05-16T11:07:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "15.509500", + "Timestamp": "2024-05-16T11:02:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.478900", + "Timestamp": "2024-05-16T11:02:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473900", + "Timestamp": "2024-05-16T11:02:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.348900", + "Timestamp": "2024-05-16T11:02:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.957400", + "Timestamp": "2024-05-16T11:02:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.296400", + "Timestamp": "2024-05-16T11:02:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.281400", + "Timestamp": "2024-05-16T11:02:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.291400", + "Timestamp": "2024-05-16T11:02:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.276400", + "Timestamp": "2024-05-16T11:02:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.166400", + "Timestamp": "2024-05-16T11:02:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.151400", + "Timestamp": "2024-05-16T11:02:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.352000", + "Timestamp": "2024-05-16T11:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.173200", + "Timestamp": "2024-05-16T11:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.197300", + "Timestamp": "2024-05-16T11:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.192300", + "Timestamp": "2024-05-16T11:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.067300", + "Timestamp": "2024-05-16T11:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.559100", + "Timestamp": "2024-05-16T11:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.529100", + "Timestamp": "2024-05-16T11:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.429100", + "Timestamp": "2024-05-16T11:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.321200", + "Timestamp": "2024-05-16T11:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.317500", + "Timestamp": "2024-05-16T11:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.261200", + "Timestamp": "2024-05-16T11:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.263700", + "Timestamp": "2024-05-16T11:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.260000", + "Timestamp": "2024-05-16T11:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.203700", + "Timestamp": "2024-05-16T11:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.291400", + "Timestamp": "2024-05-16T11:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.286400", + "Timestamp": "2024-05-16T11:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.161400", + "Timestamp": "2024-05-16T11:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097700", + "Timestamp": "2024-05-16T11:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094000", + "Timestamp": "2024-05-16T11:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037700", + "Timestamp": "2024-05-16T11:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.245500", + "Timestamp": "2024-05-16T11:02:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.491800", + "Timestamp": "2024-05-16T11:02:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.372700", + "Timestamp": "2024-05-16T11:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.367700", + "Timestamp": "2024-05-16T11:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242700", + "Timestamp": "2024-05-16T11:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.031300", + "Timestamp": "2024-05-16T11:02:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.026300", + "Timestamp": "2024-05-16T11:02:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.901300", + "Timestamp": "2024-05-16T11:02:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.364000", + "Timestamp": "2024-05-16T11:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.331400", + "Timestamp": "2024-05-16T11:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.326400", + "Timestamp": "2024-05-16T11:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.201400", + "Timestamp": "2024-05-16T11:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.575500", + "Timestamp": "2024-05-16T11:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.570500", + "Timestamp": "2024-05-16T11:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.445500", + "Timestamp": "2024-05-16T11:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.607200", + "Timestamp": "2024-05-16T11:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.602200", + "Timestamp": "2024-05-16T11:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.477200", + "Timestamp": "2024-05-16T11:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128600", + "Timestamp": "2024-05-16T11:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.748600", + "Timestamp": "2024-05-16T11:02:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.372500", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.367500", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242500", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.113200", + "Timestamp": "2024-05-16T11:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.550300", + "Timestamp": "2024-05-16T11:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.545300", + "Timestamp": "2024-05-16T11:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.420300", + "Timestamp": "2024-05-16T11:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.755700", + "Timestamp": "2024-05-16T11:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.260800", + "Timestamp": "2024-05-16T11:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.756200", + "Timestamp": "2024-05-16T11:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.868100", + "Timestamp": "2024-05-16T11:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.465100", + "Timestamp": "2024-05-16T11:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.102000", + "Timestamp": "2024-05-16T11:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.482500", + "Timestamp": "2024-05-16T11:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.554500", + "Timestamp": "2024-05-16T11:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.477500", + "Timestamp": "2024-05-16T11:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.549500", + "Timestamp": "2024-05-16T11:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.352500", + "Timestamp": "2024-05-16T11:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.424500", + "Timestamp": "2024-05-16T11:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138800", + "Timestamp": "2024-05-16T11:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135100", + "Timestamp": "2024-05-16T11:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078800", + "Timestamp": "2024-05-16T11:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.795000", + "Timestamp": "2024-05-16T11:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081000", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.052000", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021000", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.859300", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.203400", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.370200", + "Timestamp": "2024-05-16T11:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122400", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118400", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062400", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314900", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.309900", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184900", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.309300", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112700", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109000", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052700", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.207300", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.202300", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.077300", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090100", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086400", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030100", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.161900", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.901500", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.156900", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.896500", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.031900", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.771500", + "Timestamp": "2024-05-16T11:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.313800", + "Timestamp": "2024-05-16T11:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417600", + "Timestamp": "2024-05-16T11:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.204600", + "Timestamp": "2024-05-16T11:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.244600", + "Timestamp": "2024-05-16T11:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144600", + "Timestamp": "2024-05-16T11:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.120500", + "Timestamp": "2024-05-16T11:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.115500", + "Timestamp": "2024-05-16T11:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.990500", + "Timestamp": "2024-05-16T11:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.637900", + "Timestamp": "2024-05-16T11:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.607900", + "Timestamp": "2024-05-16T11:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.507900", + "Timestamp": "2024-05-16T11:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.108400", + "Timestamp": "2024-05-16T11:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.103400", + "Timestamp": "2024-05-16T11:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.978400", + "Timestamp": "2024-05-16T11:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.803400", + "Timestamp": "2024-05-16T11:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.798400", + "Timestamp": "2024-05-16T11:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.673400", + "Timestamp": "2024-05-16T11:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.524800", + "Timestamp": "2024-05-16T11:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.494800", + "Timestamp": "2024-05-16T11:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.394800", + "Timestamp": "2024-05-16T11:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130100", + "Timestamp": "2024-05-16T11:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126100", + "Timestamp": "2024-05-16T11:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070100", + "Timestamp": "2024-05-16T11:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.656900", + "Timestamp": "2024-05-16T11:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.651900", + "Timestamp": "2024-05-16T11:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.526900", + "Timestamp": "2024-05-16T11:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.779300", + "Timestamp": "2024-05-16T11:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.774300", + "Timestamp": "2024-05-16T11:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.649300", + "Timestamp": "2024-05-16T11:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "13.576900", + "Timestamp": "2024-05-16T11:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.327200", + "Timestamp": "2024-05-16T11:02:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.124500", + "Timestamp": "2024-05-16T11:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133800", + "Timestamp": "2024-05-16T11:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173800", + "Timestamp": "2024-05-16T11:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073800", + "Timestamp": "2024-05-16T11:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.031300", + "Timestamp": "2024-05-16T11:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.623600", + "Timestamp": "2024-05-16T11:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.618600", + "Timestamp": "2024-05-16T11:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.493600", + "Timestamp": "2024-05-16T11:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.477600", + "Timestamp": "2024-05-16T11:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.416300", + "Timestamp": "2024-05-16T11:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.224900", + "Timestamp": "2024-05-16T11:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.234300", + "Timestamp": "2024-05-16T11:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.229300", + "Timestamp": "2024-05-16T11:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.104300", + "Timestamp": "2024-05-16T11:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.122400", + "Timestamp": "2024-05-16T11:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.092400", + "Timestamp": "2024-05-16T11:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.992400", + "Timestamp": "2024-05-16T11:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.138400", + "Timestamp": "2024-05-16T11:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.426100", + "Timestamp": "2024-05-16T11:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.103400", + "Timestamp": "2024-05-16T11:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.421100", + "Timestamp": "2024-05-16T11:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.098400", + "Timestamp": "2024-05-16T11:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.296100", + "Timestamp": "2024-05-16T11:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.973400", + "Timestamp": "2024-05-16T11:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.263800", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iezn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.258800", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.133800", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.912100", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.907100", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.782100", + "Timestamp": "2024-05-16T11:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.818300", + "Timestamp": "2024-05-16T11:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.813300", + "Timestamp": "2024-05-16T11:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.688300", + "Timestamp": "2024-05-16T11:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.839000", + "Timestamp": "2024-05-16T11:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.308500", + "Timestamp": "2024-05-16T11:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.701100", + "Timestamp": "2024-05-16T11:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.696100", + "Timestamp": "2024-05-16T11:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.571100", + "Timestamp": "2024-05-16T11:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.374800", + "Timestamp": "2024-05-16T11:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.344800", + "Timestamp": "2024-05-16T11:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.244800", + "Timestamp": "2024-05-16T11:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.548300", + "Timestamp": "2024-05-16T11:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.939200", + "Timestamp": "2024-05-16T11:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.934200", + "Timestamp": "2024-05-16T11:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.809200", + "Timestamp": "2024-05-16T11:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "vt1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.874200", + "Timestamp": "2024-05-16T11:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "vt1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.844200", + "Timestamp": "2024-05-16T11:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "vt1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.744200", + "Timestamp": "2024-05-16T11:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.006100", + "Timestamp": "2024-05-16T11:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.001100", + "Timestamp": "2024-05-16T11:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.876100", + "Timestamp": "2024-05-16T11:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.641600", + "Timestamp": "2024-05-16T11:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.636600", + "Timestamp": "2024-05-16T11:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.511600", + "Timestamp": "2024-05-16T11:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.722000", + "Timestamp": "2024-05-16T11:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.717000", + "Timestamp": "2024-05-16T11:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.592000", + "Timestamp": "2024-05-16T11:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "17.719700", + "Timestamp": "2024-05-16T11:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.806600", + "Timestamp": "2024-05-16T11:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.776600", + "Timestamp": "2024-05-16T11:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.676600", + "Timestamp": "2024-05-16T11:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.223900", + "Timestamp": "2024-05-16T11:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.218900", + "Timestamp": "2024-05-16T11:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.093900", + "Timestamp": "2024-05-16T11:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.785100", + "Timestamp": "2024-05-16T11:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.780100", + "Timestamp": "2024-05-16T11:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.655100", + "Timestamp": "2024-05-16T11:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.125200", + "Timestamp": "2024-05-16T11:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130600", + "Timestamp": "2024-05-16T11:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126600", + "Timestamp": "2024-05-16T11:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070600", + "Timestamp": "2024-05-16T11:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.102400", + "Timestamp": "2024-05-16T11:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.767900", + "Timestamp": "2024-05-16T11:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.762900", + "Timestamp": "2024-05-16T11:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.637900", + "Timestamp": "2024-05-16T11:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.286000", + "Timestamp": "2024-05-16T11:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281000", + "Timestamp": "2024-05-16T11:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156000", + "Timestamp": "2024-05-16T11:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141300", + "Timestamp": "2024-05-16T11:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137600", + "Timestamp": "2024-05-16T11:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081300", + "Timestamp": "2024-05-16T11:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.042800", + "Timestamp": "2024-05-16T11:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.281300", + "Timestamp": "2024-05-16T11:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.049100", + "Timestamp": "2024-05-16T11:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.387500", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.039600", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.034600", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.909600", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.757800", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.752800", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.627800", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.415800", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.673300", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.538300", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.410800", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.668300", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.533300", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.285800", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.543300", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.408300", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.491100", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.486100", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.361100", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.218300", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.829700", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.624600", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.619600", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.494600", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.793400", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.788400", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.663400", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.730300", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.725300", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.600300", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128900", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125200", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068900", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.572400", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.113700", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.083700", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.983700", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.057700", + "Timestamp": "2024-05-16T11:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.052700", + "Timestamp": "2024-05-16T11:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.927700", + "Timestamp": "2024-05-16T11:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.722600", + "Timestamp": "2024-05-16T11:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.717600", + "Timestamp": "2024-05-16T11:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.592600", + "Timestamp": "2024-05-16T11:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.685400", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.680400", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.555400", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.817500", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.812500", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.687500", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.737400", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.732400", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.607400", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.965200", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.960200", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.835200", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.277100", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.975700", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.970700", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.845700", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.062900", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.057900", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.932900", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153100", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149100", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093100", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.771600", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.766600", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.641600", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.344700", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.339700", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.214700", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.029600", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.024600", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.899600", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147100", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143400", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087100", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.860200", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.913400", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.830200", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.883400", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.730200", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.783400", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.303800", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298800", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.173800", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273500", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268500", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143500", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090200", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086500", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030200", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.654300", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101600", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045600", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.079800", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.554600", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.352600", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.322600", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.222600", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.131800", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.633500", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.945700", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.940700", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.815700", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.201300", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.196300", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.071300", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.416000", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.411000", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.286000", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.181900", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.334800", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.277800", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.272800", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147800", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.532600", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.502600", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.402600", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.749700", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.710200", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.705200", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.580200", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.234700", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.274700", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.174700", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.377300", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372300", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.247300", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148100", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144400", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.283600", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111900", + "Timestamp": "2024-05-16T10:47:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151900", + "Timestamp": "2024-05-16T10:47:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051900", + "Timestamp": "2024-05-16T10:47:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.360200", + "Timestamp": "2024-05-16T10:47:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.969800", + "Timestamp": "2024-05-16T10:47:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.975900", + "Timestamp": "2024-05-16T10:47:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.964800", + "Timestamp": "2024-05-16T10:47:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.970900", + "Timestamp": "2024-05-16T10:47:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.839800", + "Timestamp": "2024-05-16T10:47:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.845900", + "Timestamp": "2024-05-16T10:47:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.695100", + "Timestamp": "2024-05-16T10:47:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.690100", + "Timestamp": "2024-05-16T10:47:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.565100", + "Timestamp": "2024-05-16T10:47:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.478900", + "Timestamp": "2024-05-16T10:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473900", + "Timestamp": "2024-05-16T10:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.348900", + "Timestamp": "2024-05-16T10:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.895400", + "Timestamp": "2024-05-16T10:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.890400", + "Timestamp": "2024-05-16T10:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.765400", + "Timestamp": "2024-05-16T10:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172800", + "Timestamp": "2024-05-16T10:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169100", + "Timestamp": "2024-05-16T10:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T10:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096200", + "Timestamp": "2024-05-16T10:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092500", + "Timestamp": "2024-05-16T10:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036200", + "Timestamp": "2024-05-16T10:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123300", + "Timestamp": "2024-05-16T10:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119600", + "Timestamp": "2024-05-16T10:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063300", + "Timestamp": "2024-05-16T10:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.163300", + "Timestamp": "2024-05-16T10:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.404600", + "Timestamp": "2024-05-16T10:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.399600", + "Timestamp": "2024-05-16T10:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.274600", + "Timestamp": "2024-05-16T10:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.419500", + "Timestamp": "2024-05-16T10:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.414500", + "Timestamp": "2024-05-16T10:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.289500", + "Timestamp": "2024-05-16T10:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.485900", + "Timestamp": "2024-05-16T10:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.225600", + "Timestamp": "2024-05-16T10:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.221900", + "Timestamp": "2024-05-16T10:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165600", + "Timestamp": "2024-05-16T10:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.094600", + "Timestamp": "2024-05-16T10:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.089600", + "Timestamp": "2024-05-16T10:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.964600", + "Timestamp": "2024-05-16T10:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.131100", + "Timestamp": "2024-05-16T10:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.101100", + "Timestamp": "2024-05-16T10:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.001100", + "Timestamp": "2024-05-16T10:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.155900", + "Timestamp": "2024-05-16T10:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.150900", + "Timestamp": "2024-05-16T10:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.025900", + "Timestamp": "2024-05-16T10:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.075500", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122400", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118700", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062400", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157300", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153600", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097300", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.140900", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.382100", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.407800", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.377100", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.402800", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.252100", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.277800", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.448000", + "Timestamp": "2024-05-16T10:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.308700", + "Timestamp": "2024-05-16T10:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.617500", + "Timestamp": "2024-05-16T10:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.654000", + "Timestamp": "2024-05-16T10:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.669800", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.664800", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.539800", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.327700", + "Timestamp": "2024-05-16T10:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.322700", + "Timestamp": "2024-05-16T10:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.197700", + "Timestamp": "2024-05-16T10:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.142300", + "Timestamp": "2024-05-16T10:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.259500", + "Timestamp": "2024-05-16T10:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.254500", + "Timestamp": "2024-05-16T10:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.129500", + "Timestamp": "2024-05-16T10:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.906300", + "Timestamp": "2024-05-16T10:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.901300", + "Timestamp": "2024-05-16T10:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.776300", + "Timestamp": "2024-05-16T10:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.558200", + "Timestamp": "2024-05-16T10:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.553200", + "Timestamp": "2024-05-16T10:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.428200", + "Timestamp": "2024-05-16T10:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.536900", + "Timestamp": "2024-05-16T10:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.506900", + "Timestamp": "2024-05-16T10:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.406900", + "Timestamp": "2024-05-16T10:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m1.large", + "ProductDescription": "Windows", + "SpotPrice": "0.184600", + "Timestamp": "2024-05-16T10:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.397900", + "Timestamp": "2024-05-16T10:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114000", + "Timestamp": "2024-05-16T10:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T10:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054000", + "Timestamp": "2024-05-16T10:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.126600", + "Timestamp": "2024-05-16T10:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.718200", + "Timestamp": "2024-05-16T10:47:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.446400", + "Timestamp": "2024-05-16T10:47:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.529300", + "Timestamp": "2024-05-16T10:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "24.939500", + "Timestamp": "2024-05-16T10:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "24.934500", + "Timestamp": "2024-05-16T10:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p4d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "24.809500", + "Timestamp": "2024-05-16T10:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.012900", + "Timestamp": "2024-05-16T10:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.007900", + "Timestamp": "2024-05-16T10:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.882900", + "Timestamp": "2024-05-16T10:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.139800", + "Timestamp": "2024-05-16T10:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.176700", + "Timestamp": "2024-05-16T10:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.146700", + "Timestamp": "2024-05-16T10:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.046700", + "Timestamp": "2024-05-16T10:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.497800", + "Timestamp": "2024-05-16T10:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.902300", + "Timestamp": "2024-05-16T10:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.368200", + "Timestamp": "2024-05-16T10:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.338200", + "Timestamp": "2024-05-16T10:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.238200", + "Timestamp": "2024-05-16T10:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.354600", + "Timestamp": "2024-05-16T10:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.349600", + "Timestamp": "2024-05-16T10:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.224600", + "Timestamp": "2024-05-16T10:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.448200", + "Timestamp": "2024-05-16T10:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.691600", + "Timestamp": "2024-05-16T10:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.686600", + "Timestamp": "2024-05-16T10:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.561600", + "Timestamp": "2024-05-16T10:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.768100", + "Timestamp": "2024-05-16T10:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.763700", + "Timestamp": "2024-05-16T10:46:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.189200", + "Timestamp": "2024-05-16T10:46:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.637600", + "Timestamp": "2024-05-16T10:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.671200", + "Timestamp": "2024-05-16T10:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.270800", + "Timestamp": "2024-05-16T10:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.265800", + "Timestamp": "2024-05-16T10:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.140800", + "Timestamp": "2024-05-16T10:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.645100", + "Timestamp": "2024-05-16T10:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.640100", + "Timestamp": "2024-05-16T10:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.515100", + "Timestamp": "2024-05-16T10:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.893800", + "Timestamp": "2024-05-16T10:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.888800", + "Timestamp": "2024-05-16T10:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.763800", + "Timestamp": "2024-05-16T10:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.218500", + "Timestamp": "2024-05-16T10:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.306200", + "Timestamp": "2024-05-16T10:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.947000", + "Timestamp": "2024-05-16T10:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.942000", + "Timestamp": "2024-05-16T10:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.817000", + "Timestamp": "2024-05-16T10:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.626300", + "Timestamp": "2024-05-16T10:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.523600", + "Timestamp": "2024-05-16T10:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.016200", + "Timestamp": "2024-05-16T10:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.011200", + "Timestamp": "2024-05-16T10:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.886200", + "Timestamp": "2024-05-16T10:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.591400", + "Timestamp": "2024-05-16T10:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.561400", + "Timestamp": "2024-05-16T10:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.461400", + "Timestamp": "2024-05-16T10:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.034200", + "Timestamp": "2024-05-16T10:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.803500", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.798500", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.673500", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.853900", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.135300", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.074400", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.502700", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.497700", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.372700", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106700", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046700", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.691900", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.686900", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.561900", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.443500", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.483500", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.383500", + "Timestamp": "2024-05-16T10:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.391500", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.976600", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.971600", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.846600", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.148300", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.437300", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.143300", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.432300", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.018300", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.307300", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.289600", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.067400", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.062400", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.937400", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.960400", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.955400", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.830400", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.634600", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.686300", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.681300", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.556300", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128700", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124700", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068700", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.316200", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.311200", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186200", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103200", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099500", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043200", + "Timestamp": "2024-05-16T10:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.557900", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.552900", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.427900", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.382100", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.377100", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.252100", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.157900", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161500", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157800", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101500", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.161600", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.288500", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.036200", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.377100", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.360200", + "Timestamp": "2024-05-16T10:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.301000", + "Timestamp": "2024-05-16T10:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.296000", + "Timestamp": "2024-05-16T10:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.171000", + "Timestamp": "2024-05-16T10:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.558900", + "Timestamp": "2024-05-16T10:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "16.371600", + "Timestamp": "2024-05-16T10:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.103300", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.073300", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.973300", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.438500", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.433500", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.308500", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.713800", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.708800", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.583800", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.303200", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152200", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148200", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092200", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.661000", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.522700", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165600", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161900", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.070500", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.267300", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.292000", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.728600", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.723600", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.598600", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.593800", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.588800", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.463800", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.463100", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.645200", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.887800", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.682400", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.640200", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.882800", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.677400", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.515200", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.757800", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.552400", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125000", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165000", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065000", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155900", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152200", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.767400", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.038800", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.333500", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.315100", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.328500", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.310100", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.203500", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.185100", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173000", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.213000", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.942600", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.122700", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "9.181300", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "9.176300", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "9.051300", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.933400", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.291900", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.261900", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.161900", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.002500", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.997500", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.872500", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.292400", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.287400", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162400", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.676100", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.671100", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.546100", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.204500", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.200800", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144500", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.151200", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077000", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073300", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017000", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122900", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118900", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062900", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.085200", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154600", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150900", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094600", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149100", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145400", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089100", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294300", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289300", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164300", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.929100", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.924100", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.799100", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-16T10:32:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093800", + "Timestamp": "2024-05-16T10:32:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037500", + "Timestamp": "2024-05-16T10:32:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.122300", + "Timestamp": "2024-05-16T10:32:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.131900", + "Timestamp": "2024-05-16T10:32:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.533600", + "Timestamp": "2024-05-16T10:32:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.528600", + "Timestamp": "2024-05-16T10:32:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.403600", + "Timestamp": "2024-05-16T10:32:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.668900", + "Timestamp": "2024-05-16T10:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.365200", + "Timestamp": "2024-05-16T10:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.360200", + "Timestamp": "2024-05-16T10:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.235200", + "Timestamp": "2024-05-16T10:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.778300", + "Timestamp": "2024-05-16T10:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.773300", + "Timestamp": "2024-05-16T10:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.648300", + "Timestamp": "2024-05-16T10:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.162700", + "Timestamp": "2024-05-16T10:32:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.864700", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.859700", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.734700", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.647900", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.642900", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.517900", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.670000", + "Timestamp": "2024-05-16T10:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.687200", + "Timestamp": "2024-05-16T10:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.230600", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.226900", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170600", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.053800", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.119400", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.114400", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.989400", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.427200", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.422200", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.297200", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.041700", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.036700", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.911700", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.434000", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.429000", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.304000", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.443200", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.438200", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.313200", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.264400", + "Timestamp": "2024-05-16T10:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.782200", + "Timestamp": "2024-05-16T10:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.777200", + "Timestamp": "2024-05-16T10:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.652200", + "Timestamp": "2024-05-16T10:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.500800", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.495800", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.370800", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156400", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152700", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096400", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.905100", + "Timestamp": "2024-05-16T10:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.900100", + "Timestamp": "2024-05-16T10:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.775100", + "Timestamp": "2024-05-16T10:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.538700", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.493800", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.454200", + "Timestamp": "2024-05-16T10:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.078500", + "Timestamp": "2024-05-16T10:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.700300", + "Timestamp": "2024-05-16T10:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.695300", + "Timestamp": "2024-05-16T10:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.570300", + "Timestamp": "2024-05-16T10:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.776500", + "Timestamp": "2024-05-16T10:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.607400", + "Timestamp": "2024-05-16T10:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.362200", + "Timestamp": "2024-05-16T10:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.137000", + "Timestamp": "2024-05-16T10:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.132000", + "Timestamp": "2024-05-16T10:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.007000", + "Timestamp": "2024-05-16T10:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.029200", + "Timestamp": "2024-05-16T10:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.024200", + "Timestamp": "2024-05-16T10:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.899200", + "Timestamp": "2024-05-16T10:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.522000", + "Timestamp": "2024-05-16T10:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m1.large", + "ProductDescription": "Windows", + "SpotPrice": "0.176300", + "Timestamp": "2024-05-16T10:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "13.109100", + "Timestamp": "2024-05-16T10:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.206200", + "Timestamp": "2024-05-16T10:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.201200", + "Timestamp": "2024-05-16T10:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.076200", + "Timestamp": "2024-05-16T10:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.971600", + "Timestamp": "2024-05-16T10:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.966600", + "Timestamp": "2024-05-16T10:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.841600", + "Timestamp": "2024-05-16T10:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.546700", + "Timestamp": "2024-05-16T10:32:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.912400", + "Timestamp": "2024-05-16T10:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.907400", + "Timestamp": "2024-05-16T10:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.782400", + "Timestamp": "2024-05-16T10:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.797200", + "Timestamp": "2024-05-16T10:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.239500", + "Timestamp": "2024-05-16T10:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.234500", + "Timestamp": "2024-05-16T10:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.109500", + "Timestamp": "2024-05-16T10:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.005000", + "Timestamp": "2024-05-16T10:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.000000", + "Timestamp": "2024-05-16T10:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.875000", + "Timestamp": "2024-05-16T10:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.071600", + "Timestamp": "2024-05-16T10:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.066600", + "Timestamp": "2024-05-16T10:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.941600", + "Timestamp": "2024-05-16T10:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.316800", + "Timestamp": "2024-05-16T10:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.311800", + "Timestamp": "2024-05-16T10:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.186800", + "Timestamp": "2024-05-16T10:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.944500", + "Timestamp": "2024-05-16T10:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.154300", + "Timestamp": "2024-05-16T10:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.394200", + "Timestamp": "2024-05-16T10:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.699200", + "Timestamp": "2024-05-16T10:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.694200", + "Timestamp": "2024-05-16T10:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.569200", + "Timestamp": "2024-05-16T10:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.381100", + "Timestamp": "2024-05-16T10:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.351100", + "Timestamp": "2024-05-16T10:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.251100", + "Timestamp": "2024-05-16T10:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.663300", + "Timestamp": "2024-05-16T10:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.325500", + "Timestamp": "2024-05-16T10:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.271300", + "Timestamp": "2024-05-16T10:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.266300", + "Timestamp": "2024-05-16T10:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.141300", + "Timestamp": "2024-05-16T10:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.370700", + "Timestamp": "2024-05-16T10:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.713500", + "Timestamp": "2024-05-16T10:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.708500", + "Timestamp": "2024-05-16T10:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.583500", + "Timestamp": "2024-05-16T10:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.675400", + "Timestamp": "2024-05-16T10:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.670400", + "Timestamp": "2024-05-16T10:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.545400", + "Timestamp": "2024-05-16T10:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.179900", + "Timestamp": "2024-05-16T10:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.010000", + "Timestamp": "2024-05-16T10:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.004700", + "Timestamp": "2024-05-16T10:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.243800", + "Timestamp": "2024-05-16T10:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.238800", + "Timestamp": "2024-05-16T10:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.113800", + "Timestamp": "2024-05-16T10:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.813700", + "Timestamp": "2024-05-16T10:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.808700", + "Timestamp": "2024-05-16T10:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.683700", + "Timestamp": "2024-05-16T10:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152600", + "Timestamp": "2024-05-16T10:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148600", + "Timestamp": "2024-05-16T10:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-16T10:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.160300", + "Timestamp": "2024-05-16T10:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.386200", + "Timestamp": "2024-05-16T10:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.758400", + "Timestamp": "2024-05-16T10:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.753400", + "Timestamp": "2024-05-16T10:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.628400", + "Timestamp": "2024-05-16T10:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.262600", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.232600", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.132600", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140600", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136900", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080600", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145700", + "Timestamp": "2024-05-16T10:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142000", + "Timestamp": "2024-05-16T10:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085700", + "Timestamp": "2024-05-16T10:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.149700", + "Timestamp": "2024-05-16T10:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.144700", + "Timestamp": "2024-05-16T10:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.019700", + "Timestamp": "2024-05-16T10:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.410700", + "Timestamp": "2024-05-16T10:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.405700", + "Timestamp": "2024-05-16T10:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.280700", + "Timestamp": "2024-05-16T10:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.198600", + "Timestamp": "2024-05-16T10:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.469800", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.464800", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.339800", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.723600", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.718600", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.593600", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.496700", + "Timestamp": "2024-05-16T10:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.311100", + "Timestamp": "2024-05-16T10:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.599700", + "Timestamp": "2024-05-16T10:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.399900", + "Timestamp": "2024-05-16T10:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.394900", + "Timestamp": "2024-05-16T10:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.269900", + "Timestamp": "2024-05-16T10:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.096600", + "Timestamp": "2024-05-16T10:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.995100", + "Timestamp": "2024-05-16T10:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.060500", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.085700", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.639000", + "Timestamp": "2024-05-16T10:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176500", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172500", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116500", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.204600", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.199600", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.074600", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.680800", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "h1.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.650800", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.550800", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.854300", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "a1.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.303800", + "Timestamp": "2024-05-16T10:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "a1.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298800", + "Timestamp": "2024-05-16T10:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "a1.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.173800", + "Timestamp": "2024-05-16T10:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128800", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125100", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.076100", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.071100", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.946100", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.683800", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.678800", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.553800", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.315800", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134900", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131200", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074900", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.700200", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.602800", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.597800", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.472800", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.382300", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.204000", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.199000", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074000", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.024400", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.723100", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.718100", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.593100", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.099000", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.986700", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.981700", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.856700", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140600", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150200", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136600", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146200", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080600", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090200", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.231200", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.226200", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.101200", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.295300", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.290300", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165300", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157300", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153600", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097300", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.346200", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.341200", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.216200", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.273300", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.024200", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.019200", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.894200", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.814600", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.809600", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.684600", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.056700", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.985300", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.980300", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.855300", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158100", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154100", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.116000", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.423000", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.418000", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.293000", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162900", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159900", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.349900", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.594300", + "Timestamp": "2024-05-16T10:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.623600", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.618600", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.493600", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.086600", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.618800", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.666400", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.714500", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.709500", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.584500", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.091300", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.061300", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.961300", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.401900", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.396900", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.271900", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062100", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002100", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002100", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.289600", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.259600", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159600", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.538500", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128200", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124200", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068200", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.460100", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.455100", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.330100", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.220300", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.216600", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.160300", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.642000", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.637000", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.512000", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.263800", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258800", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133800", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307300", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302300", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177300", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314000", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.284000", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184000", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139400", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135700", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079400", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.767200", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.762200", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.637200", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.500400", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.928300", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.923300", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.798300", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095400", + "Timestamp": "2024-05-16T10:17:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091700", + "Timestamp": "2024-05-16T10:17:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035400", + "Timestamp": "2024-05-16T10:17:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.918200", + "Timestamp": "2024-05-16T10:17:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.376800", + "Timestamp": "2024-05-16T10:17:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.371800", + "Timestamp": "2024-05-16T10:17:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.246800", + "Timestamp": "2024-05-16T10:17:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.397500", + "Timestamp": "2024-05-16T10:17:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.367500", + "Timestamp": "2024-05-16T10:17:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.267500", + "Timestamp": "2024-05-16T10:17:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.321200", + "Timestamp": "2024-05-16T10:17:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.316200", + "Timestamp": "2024-05-16T10:17:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.191200", + "Timestamp": "2024-05-16T10:17:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.555700", + "Timestamp": "2024-05-16T10:17:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "13.602600", + "Timestamp": "2024-05-16T10:17:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.179400", + "Timestamp": "2024-05-16T10:17:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.149400", + "Timestamp": "2024-05-16T10:17:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.049400", + "Timestamp": "2024-05-16T10:17:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.262300", + "Timestamp": "2024-05-16T10:17:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.813100", + "Timestamp": "2024-05-16T10:17:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.808100", + "Timestamp": "2024-05-16T10:17:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.683100", + "Timestamp": "2024-05-16T10:17:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.155900", + "Timestamp": "2024-05-16T10:17:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.150900", + "Timestamp": "2024-05-16T10:17:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.025900", + "Timestamp": "2024-05-16T10:17:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.466500", + "Timestamp": "2024-05-16T10:17:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.461500", + "Timestamp": "2024-05-16T10:17:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.336500", + "Timestamp": "2024-05-16T10:17:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.900300", + "Timestamp": "2024-05-16T10:17:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.895300", + "Timestamp": "2024-05-16T10:17:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.770300", + "Timestamp": "2024-05-16T10:17:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.855800", + "Timestamp": "2024-05-16T10:17:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.850800", + "Timestamp": "2024-05-16T10:17:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.725800", + "Timestamp": "2024-05-16T10:17:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.399900", + "Timestamp": "2024-05-16T10:17:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.661300", + "Timestamp": "2024-05-16T10:17:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.656300", + "Timestamp": "2024-05-16T10:17:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.531300", + "Timestamp": "2024-05-16T10:17:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.008400", + "Timestamp": "2024-05-16T10:17:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.003400", + "Timestamp": "2024-05-16T10:17:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.878400", + "Timestamp": "2024-05-16T10:17:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.889700", + "Timestamp": "2024-05-16T10:17:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "15.401700", + "Timestamp": "2024-05-16T10:17:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.758200", + "Timestamp": "2024-05-16T10:17:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.662700", + "Timestamp": "2024-05-16T10:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.343900", + "Timestamp": "2024-05-16T10:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.313900", + "Timestamp": "2024-05-16T10:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.213900", + "Timestamp": "2024-05-16T10:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.218500", + "Timestamp": "2024-05-16T10:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.306600", + "Timestamp": "2024-05-16T10:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.578000", + "Timestamp": "2024-05-16T10:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.722500", + "Timestamp": "2024-05-16T10:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.345000", + "Timestamp": "2024-05-16T10:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.450500", + "Timestamp": "2024-05-16T10:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.199200", + "Timestamp": "2024-05-16T10:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.471700", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.441700", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.341700", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.840500", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.323600", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "a1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.318600", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.193600", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.957000", + "Timestamp": "2024-05-16T10:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120900", + "Timestamp": "2024-05-16T10:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160900", + "Timestamp": "2024-05-16T10:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060900", + "Timestamp": "2024-05-16T10:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.756800", + "Timestamp": "2024-05-16T10:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.730200", + "Timestamp": "2024-05-16T10:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.725200", + "Timestamp": "2024-05-16T10:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.600200", + "Timestamp": "2024-05-16T10:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.319500", + "Timestamp": "2024-05-16T10:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.310300", + "Timestamp": "2024-05-16T10:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.314500", + "Timestamp": "2024-05-16T10:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.305300", + "Timestamp": "2024-05-16T10:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.189500", + "Timestamp": "2024-05-16T10:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180300", + "Timestamp": "2024-05-16T10:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.302600", + "Timestamp": "2024-05-16T10:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.297600", + "Timestamp": "2024-05-16T10:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.172600", + "Timestamp": "2024-05-16T10:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.004000", + "Timestamp": "2024-05-16T10:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "p2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.454500", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.494500", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "p2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.394500", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.985400", + "Timestamp": "2024-05-16T10:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.495700", + "Timestamp": "2024-05-16T10:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.490700", + "Timestamp": "2024-05-16T10:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.365700", + "Timestamp": "2024-05-16T10:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.825000", + "Timestamp": "2024-05-16T10:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.232900", + "Timestamp": "2024-05-16T10:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.227900", + "Timestamp": "2024-05-16T10:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.102900", + "Timestamp": "2024-05-16T10:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.263700", + "Timestamp": "2024-05-16T10:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.579100", + "Timestamp": "2024-05-16T10:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.112500", + "Timestamp": "2024-05-16T10:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.107500", + "Timestamp": "2024-05-16T10:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.982500", + "Timestamp": "2024-05-16T10:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137700", + "Timestamp": "2024-05-16T10:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134000", + "Timestamp": "2024-05-16T10:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077700", + "Timestamp": "2024-05-16T10:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.354200", + "Timestamp": "2024-05-16T10:17:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.324200", + "Timestamp": "2024-05-16T10:17:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.224200", + "Timestamp": "2024-05-16T10:17:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.711300", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.706300", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.581300", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.028700", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.998700", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.898700", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.400100", + "Timestamp": "2024-05-16T10:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.395100", + "Timestamp": "2024-05-16T10:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.270100", + "Timestamp": "2024-05-16T10:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.158400", + "Timestamp": "2024-05-16T10:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.048300", + "Timestamp": "2024-05-16T10:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.043300", + "Timestamp": "2024-05-16T10:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.918300", + "Timestamp": "2024-05-16T10:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.865900", + "Timestamp": "2024-05-16T10:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.480100", + "Timestamp": "2024-05-16T10:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.676000", + "Timestamp": "2024-05-16T10:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.699800", + "Timestamp": "2024-05-16T10:17:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.264300", + "Timestamp": "2024-05-16T10:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.259300", + "Timestamp": "2024-05-16T10:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.134300", + "Timestamp": "2024-05-16T10:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.230100", + "Timestamp": "2024-05-16T10:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.200100", + "Timestamp": "2024-05-16T10:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.100100", + "Timestamp": "2024-05-16T10:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122900", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119200", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062900", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "18.502400", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.640300", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.157200", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169100", + "Timestamp": "2024-05-16T10:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165400", + "Timestamp": "2024-05-16T10:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109100", + "Timestamp": "2024-05-16T10:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.199100", + "Timestamp": "2024-05-16T10:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.534400", + "Timestamp": "2024-05-16T10:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.529400", + "Timestamp": "2024-05-16T10:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.404400", + "Timestamp": "2024-05-16T10:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.002100", + "Timestamp": "2024-05-16T10:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.972100", + "Timestamp": "2024-05-16T10:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.872100", + "Timestamp": "2024-05-16T10:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.328300", + "Timestamp": "2024-05-16T10:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298300", + "Timestamp": "2024-05-16T10:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.198300", + "Timestamp": "2024-05-16T10:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.813800", + "Timestamp": "2024-05-16T10:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.783800", + "Timestamp": "2024-05-16T10:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.683800", + "Timestamp": "2024-05-16T10:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.192600", + "Timestamp": "2024-05-16T10:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.142100", + "Timestamp": "2024-05-16T10:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.496100", + "Timestamp": "2024-05-16T10:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.491100", + "Timestamp": "2024-05-16T10:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.366100", + "Timestamp": "2024-05-16T10:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.691600", + "Timestamp": "2024-05-16T10:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.686600", + "Timestamp": "2024-05-16T10:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.561600", + "Timestamp": "2024-05-16T10:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.524800", + "Timestamp": "2024-05-16T10:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.519800", + "Timestamp": "2024-05-16T10:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.394800", + "Timestamp": "2024-05-16T10:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125900", + "Timestamp": "2024-05-16T10:17:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121900", + "Timestamp": "2024-05-16T10:17:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065900", + "Timestamp": "2024-05-16T10:17:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.616000", + "Timestamp": "2024-05-16T10:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.328200", + "Timestamp": "2024-05-16T10:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.230200", + "Timestamp": "2024-05-16T10:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.226500", + "Timestamp": "2024-05-16T10:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170200", + "Timestamp": "2024-05-16T10:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.731400", + "Timestamp": "2024-05-16T10:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.726400", + "Timestamp": "2024-05-16T10:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.601400", + "Timestamp": "2024-05-16T10:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "a1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113700", + "Timestamp": "2024-05-16T10:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "a1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T10:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "a1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053700", + "Timestamp": "2024-05-16T10:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.259300", + "Timestamp": "2024-05-16T10:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.250900", + "Timestamp": "2024-05-16T10:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.229300", + "Timestamp": "2024-05-16T10:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.220900", + "Timestamp": "2024-05-16T10:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129300", + "Timestamp": "2024-05-16T10:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120900", + "Timestamp": "2024-05-16T10:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.658700", + "Timestamp": "2024-05-16T10:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.734700", + "Timestamp": "2024-05-16T10:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.704700", + "Timestamp": "2024-05-16T10:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.604700", + "Timestamp": "2024-05-16T10:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.545700", + "Timestamp": "2024-05-16T10:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Windows", + "SpotPrice": "17.427800", + "Timestamp": "2024-05-16T10:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.438600", + "Timestamp": "2024-05-16T10:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.069000", + "Timestamp": "2024-05-16T10:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.064000", + "Timestamp": "2024-05-16T10:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.939000", + "Timestamp": "2024-05-16T10:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.127500", + "Timestamp": "2024-05-16T10:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.122500", + "Timestamp": "2024-05-16T10:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.997500", + "Timestamp": "2024-05-16T10:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.970300", + "Timestamp": "2024-05-16T10:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.965300", + "Timestamp": "2024-05-16T10:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.840300", + "Timestamp": "2024-05-16T10:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.238600", + "Timestamp": "2024-05-16T10:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.234900", + "Timestamp": "2024-05-16T10:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.178600", + "Timestamp": "2024-05-16T10:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.247900", + "Timestamp": "2024-05-16T10:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.243900", + "Timestamp": "2024-05-16T10:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.187900", + "Timestamp": "2024-05-16T10:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.177200", + "Timestamp": "2024-05-16T10:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261500", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.257500", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.201500", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107800", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047800", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132500", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128800", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072500", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.618700", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.503600", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.498600", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.373600", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.295300", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.291600", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235300", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.128300", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.123300", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.998300", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.082900", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.077900", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.952900", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T10:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144400", + "Timestamp": "2024-05-16T10:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044400", + "Timestamp": "2024-05-16T10:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.180100", + "Timestamp": "2024-05-16T10:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.176100", + "Timestamp": "2024-05-16T10:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120100", + "Timestamp": "2024-05-16T10:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106200", + "Timestamp": "2024-05-16T10:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T10:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046200", + "Timestamp": "2024-05-16T10:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "12.116800", + "Timestamp": "2024-05-16T10:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152200", + "Timestamp": "2024-05-16T10:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148500", + "Timestamp": "2024-05-16T10:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092200", + "Timestamp": "2024-05-16T10:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135000", + "Timestamp": "2024-05-16T10:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131300", + "Timestamp": "2024-05-16T10:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075000", + "Timestamp": "2024-05-16T10:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.032800", + "Timestamp": "2024-05-16T10:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.381100", + "Timestamp": "2024-05-16T10:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.893800", + "Timestamp": "2024-05-16T10:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.888800", + "Timestamp": "2024-05-16T10:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.763800", + "Timestamp": "2024-05-16T10:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.469000", + "Timestamp": "2024-05-16T10:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.769200", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.870500", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.865500", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.740500", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.982900", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.977900", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.852900", + "Timestamp": "2024-05-16T10:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.773200", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.348300", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343300", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.218300", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "16.495300", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.513500", + "Timestamp": "2024-05-16T10:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.898900", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.893900", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.768900", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.186200", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.182200", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126200", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.775900", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.770900", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.645900", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.478700", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.473700", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.348700", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.549500", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.544500", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.419500", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085800", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082100", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025800", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.340800", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.335800", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.210800", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.631100", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.462500", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.457500", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.332500", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.391400", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.386400", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.261400", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.104100", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.480100", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.450100", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.350100", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.475100", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.470100", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.345100", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.179300", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.175300", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119300", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.322100", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.292100", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.192100", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.319000", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.269500", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.435600", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.210600", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.264100", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.259100", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.134100", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.764900", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.479600", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.474600", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.349600", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.523300", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.493300", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.393300", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.474800", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.469800", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.344800", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.097300", + "Timestamp": "2024-05-16T10:13:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.045300", + "Timestamp": "2024-05-16T10:13:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.933500", + "Timestamp": "2024-05-16T10:13:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.092300", + "Timestamp": "2024-05-16T10:13:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.040300", + "Timestamp": "2024-05-16T10:13:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.928500", + "Timestamp": "2024-05-16T10:13:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.967300", + "Timestamp": "2024-05-16T10:13:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.915300", + "Timestamp": "2024-05-16T10:13:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.803500", + "Timestamp": "2024-05-16T10:13:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.643800", + "Timestamp": "2024-05-16T10:02:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.494300", + "Timestamp": "2024-05-16T10:02:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.511400", + "Timestamp": "2024-05-16T10:02:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.581300", + "Timestamp": "2024-05-16T10:02:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.491200", + "Timestamp": "2024-05-16T10:02:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.935100", + "Timestamp": "2024-05-16T10:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.930100", + "Timestamp": "2024-05-16T10:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.805100", + "Timestamp": "2024-05-16T10:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.135600", + "Timestamp": "2024-05-16T10:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.271300", + "Timestamp": "2024-05-16T10:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.269400", + "Timestamp": "2024-05-16T10:02:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.525100", + "Timestamp": "2024-05-16T10:02:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.395100", + "Timestamp": "2024-05-16T10:02:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.365100", + "Timestamp": "2024-05-16T10:02:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.265100", + "Timestamp": "2024-05-16T10:02:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.340900", + "Timestamp": "2024-05-16T10:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.980100", + "Timestamp": "2024-05-16T10:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.973900", + "Timestamp": "2024-05-16T10:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.968900", + "Timestamp": "2024-05-16T10:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.843900", + "Timestamp": "2024-05-16T10:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.141600", + "Timestamp": "2024-05-16T10:02:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.185600", + "Timestamp": "2024-05-16T10:02:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.151700", + "Timestamp": "2024-05-16T10:02:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.473300", + "Timestamp": "2024-05-16T10:02:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.468300", + "Timestamp": "2024-05-16T10:02:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.343300", + "Timestamp": "2024-05-16T10:02:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.568500", + "Timestamp": "2024-05-16T10:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.533000", + "Timestamp": "2024-05-16T10:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.883100", + "Timestamp": "2024-05-16T10:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.878100", + "Timestamp": "2024-05-16T10:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.753100", + "Timestamp": "2024-05-16T10:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.031900", + "Timestamp": "2024-05-16T10:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.382100", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.377100", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.252100", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.909600", + "Timestamp": "2024-05-16T10:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.672500", + "Timestamp": "2024-05-16T10:02:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.667500", + "Timestamp": "2024-05-16T10:02:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.542500", + "Timestamp": "2024-05-16T10:02:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.166600", + "Timestamp": "2024-05-16T10:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.755300", + "Timestamp": "2024-05-16T10:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "9.306500", + "Timestamp": "2024-05-16T10:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "9.301500", + "Timestamp": "2024-05-16T10:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "9.176500", + "Timestamp": "2024-05-16T10:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.256300", + "Timestamp": "2024-05-16T10:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.252600", + "Timestamp": "2024-05-16T10:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196300", + "Timestamp": "2024-05-16T10:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.452900", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.633800", + "Timestamp": "2024-05-16T10:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.151100", + "Timestamp": "2024-05-16T10:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.993200", + "Timestamp": "2024-05-16T10:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130000", + "Timestamp": "2024-05-16T10:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T10:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070000", + "Timestamp": "2024-05-16T10:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.058000", + "Timestamp": "2024-05-16T10:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.028000", + "Timestamp": "2024-05-16T10:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.928000", + "Timestamp": "2024-05-16T10:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.705200", + "Timestamp": "2024-05-16T10:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.700200", + "Timestamp": "2024-05-16T10:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.575200", + "Timestamp": "2024-05-16T10:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.392300", + "Timestamp": "2024-05-16T10:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.731700", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.676900", + "Timestamp": "2024-05-16T10:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.428700", + "Timestamp": "2024-05-16T10:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.424700", + "Timestamp": "2024-05-16T10:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.368700", + "Timestamp": "2024-05-16T10:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.766800", + "Timestamp": "2024-05-16T10:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.761800", + "Timestamp": "2024-05-16T10:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.636800", + "Timestamp": "2024-05-16T10:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.724300", + "Timestamp": "2024-05-16T10:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "p2.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.694300", + "Timestamp": "2024-05-16T10:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.594300", + "Timestamp": "2024-05-16T10:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.293200", + "Timestamp": "2024-05-16T10:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.339100", + "Timestamp": "2024-05-16T10:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.679000", + "Timestamp": "2024-05-16T10:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.674000", + "Timestamp": "2024-05-16T10:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.549000", + "Timestamp": "2024-05-16T10:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.175300", + "Timestamp": "2024-05-16T10:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.824100", + "Timestamp": "2024-05-16T10:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.819100", + "Timestamp": "2024-05-16T10:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.694100", + "Timestamp": "2024-05-16T10:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.058500", + "Timestamp": "2024-05-16T10:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.470800", + "Timestamp": "2024-05-16T10:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.465800", + "Timestamp": "2024-05-16T10:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.340800", + "Timestamp": "2024-05-16T10:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.464500", + "Timestamp": "2024-05-16T10:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.897400", + "Timestamp": "2024-05-16T10:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.892400", + "Timestamp": "2024-05-16T10:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.767400", + "Timestamp": "2024-05-16T10:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.360600", + "Timestamp": "2024-05-16T10:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.455500", + "Timestamp": "2024-05-16T10:02:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.405200", + "Timestamp": "2024-05-16T10:02:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.751200", + "Timestamp": "2024-05-16T10:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.746200", + "Timestamp": "2024-05-16T10:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.621200", + "Timestamp": "2024-05-16T10:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131400", + "Timestamp": "2024-05-16T10:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.171400", + "Timestamp": "2024-05-16T10:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071400", + "Timestamp": "2024-05-16T10:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.469700", + "Timestamp": "2024-05-16T10:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.969500", + "Timestamp": "2024-05-16T10:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.119500", + "Timestamp": "2024-05-16T10:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.964500", + "Timestamp": "2024-05-16T10:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.114500", + "Timestamp": "2024-05-16T10:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.839500", + "Timestamp": "2024-05-16T10:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.989500", + "Timestamp": "2024-05-16T10:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.285600", + "Timestamp": "2024-05-16T10:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.314300", + "Timestamp": "2024-05-16T10:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.896400", + "Timestamp": "2024-05-16T10:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.170700", + "Timestamp": "2024-05-16T10:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.290200", + "Timestamp": "2024-05-16T10:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083300", + "Timestamp": "2024-05-16T10:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123300", + "Timestamp": "2024-05-16T10:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023300", + "Timestamp": "2024-05-16T10:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.453500", + "Timestamp": "2024-05-16T10:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.423500", + "Timestamp": "2024-05-16T10:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.323500", + "Timestamp": "2024-05-16T10:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.236400", + "Timestamp": "2024-05-16T10:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232400", + "Timestamp": "2024-05-16T10:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176400", + "Timestamp": "2024-05-16T10:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.267400", + "Timestamp": "2024-05-16T10:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.237400", + "Timestamp": "2024-05-16T10:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.137400", + "Timestamp": "2024-05-16T10:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.549500", + "Timestamp": "2024-05-16T10:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.519500", + "Timestamp": "2024-05-16T10:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.419500", + "Timestamp": "2024-05-16T10:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.091300", + "Timestamp": "2024-05-16T10:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.765200", + "Timestamp": "2024-05-16T10:01:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.109800", + "Timestamp": "2024-05-16T10:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.717700", + "Timestamp": "2024-05-16T10:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.990500", + "Timestamp": "2024-05-16T10:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.985500", + "Timestamp": "2024-05-16T10:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.860500", + "Timestamp": "2024-05-16T10:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.078800", + "Timestamp": "2024-05-16T10:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.248500", + "Timestamp": "2024-05-16T10:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.232900", + "Timestamp": "2024-05-16T10:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "a1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.227900", + "Timestamp": "2024-05-16T10:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T10:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.266600", + "Timestamp": "2024-05-16T10:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.261600", + "Timestamp": "2024-05-16T10:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.136600", + "Timestamp": "2024-05-16T10:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115200", + "Timestamp": "2024-05-16T10:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111200", + "Timestamp": "2024-05-16T10:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055200", + "Timestamp": "2024-05-16T10:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.141600", + "Timestamp": "2024-05-16T10:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.112900", + "Timestamp": "2024-05-16T10:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.304700", + "Timestamp": "2024-05-16T10:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.299700", + "Timestamp": "2024-05-16T10:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.174700", + "Timestamp": "2024-05-16T10:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.031700", + "Timestamp": "2024-05-16T10:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.419600", + "Timestamp": "2024-05-16T10:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.414600", + "Timestamp": "2024-05-16T10:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.289600", + "Timestamp": "2024-05-16T10:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.661100", + "Timestamp": "2024-05-16T10:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.993700", + "Timestamp": "2024-05-16T10:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.988700", + "Timestamp": "2024-05-16T10:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.863700", + "Timestamp": "2024-05-16T10:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.091300", + "Timestamp": "2024-05-16T10:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.086300", + "Timestamp": "2024-05-16T10:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.961300", + "Timestamp": "2024-05-16T10:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297900", + "Timestamp": "2024-05-16T10:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294900", + "Timestamp": "2024-05-16T10:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.237900", + "Timestamp": "2024-05-16T10:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.161600", + "Timestamp": "2024-05-16T10:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.337400", + "Timestamp": "2024-05-16T10:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.332400", + "Timestamp": "2024-05-16T10:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.207400", + "Timestamp": "2024-05-16T10:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.484300", + "Timestamp": "2024-05-16T10:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.133300", + "Timestamp": "2024-05-16T10:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.219300", + "Timestamp": "2024-05-16T10:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.226000", + "Timestamp": "2024-05-16T10:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.222000", + "Timestamp": "2024-05-16T10:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.166000", + "Timestamp": "2024-05-16T10:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.035100", + "Timestamp": "2024-05-16T10:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.030100", + "Timestamp": "2024-05-16T10:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.905100", + "Timestamp": "2024-05-16T10:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.784400", + "Timestamp": "2024-05-16T10:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.660200", + "Timestamp": "2024-05-16T10:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.630200", + "Timestamp": "2024-05-16T10:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.530200", + "Timestamp": "2024-05-16T10:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.836100", + "Timestamp": "2024-05-16T10:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.799900", + "Timestamp": "2024-05-16T10:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.831100", + "Timestamp": "2024-05-16T10:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.794900", + "Timestamp": "2024-05-16T10:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.706100", + "Timestamp": "2024-05-16T10:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.669900", + "Timestamp": "2024-05-16T10:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.574100", + "Timestamp": "2024-05-16T10:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.569100", + "Timestamp": "2024-05-16T10:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.444100", + "Timestamp": "2024-05-16T10:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.603900", + "Timestamp": "2024-05-16T10:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.598900", + "Timestamp": "2024-05-16T10:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.473900", + "Timestamp": "2024-05-16T10:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.072200", + "Timestamp": "2024-05-16T10:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.067200", + "Timestamp": "2024-05-16T10:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.942200", + "Timestamp": "2024-05-16T10:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.300400", + "Timestamp": "2024-05-16T10:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270400", + "Timestamp": "2024-05-16T10:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170400", + "Timestamp": "2024-05-16T10:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.956900", + "Timestamp": "2024-05-16T10:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.951900", + "Timestamp": "2024-05-16T10:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.826900", + "Timestamp": "2024-05-16T10:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.643700", + "Timestamp": "2024-05-16T10:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120000", + "Timestamp": "2024-05-16T10:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116300", + "Timestamp": "2024-05-16T10:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060000", + "Timestamp": "2024-05-16T10:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.241900", + "Timestamp": "2024-05-16T10:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.237900", + "Timestamp": "2024-05-16T10:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181900", + "Timestamp": "2024-05-16T10:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.616200", + "Timestamp": "2024-05-16T10:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.611200", + "Timestamp": "2024-05-16T10:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.486200", + "Timestamp": "2024-05-16T10:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151100", + "Timestamp": "2024-05-16T10:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147400", + "Timestamp": "2024-05-16T10:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091100", + "Timestamp": "2024-05-16T10:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.070600", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.065600", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.940600", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.980100", + "Timestamp": "2024-05-16T10:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.975100", + "Timestamp": "2024-05-16T10:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.850100", + "Timestamp": "2024-05-16T10:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097400", + "Timestamp": "2024-05-16T10:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068400", + "Timestamp": "2024-05-16T10:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037400", + "Timestamp": "2024-05-16T10:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.319200", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "a1.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.329300", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "a1.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324300", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "a1.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199300", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.444300", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.439300", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.314300", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.296800", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.368900", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.022300", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.992300", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.892300", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "17.777000", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.316000", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.273900", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.352300", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.214800", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.175500", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.170500", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.045500", + "Timestamp": "2024-05-16T10:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048200", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.325400", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314400", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.320400", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.309400", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195400", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184400", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.464300", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.459300", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.334300", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098300", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094600", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038300", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.600600", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.473300", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.468300", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.343300", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.645800", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.640800", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.515800", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "18.218300", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.344400", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.880600", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.875600", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.750600", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.679200", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148700", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145000", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088700", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.312900", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.185700", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.180700", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.055700", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.860700", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.855700", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.730700", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.210600", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.964200", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.705100", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.700100", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.575100", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.931400", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.926400", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.801400", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.120400", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.544500", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.494600", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.714400", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.709400", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.584400", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.743400", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.713400", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.613400", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.755000", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.656800", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.107100", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.948400", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099800", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043500", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.180500", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.150500", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.050500", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.295300", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.290300", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165300", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.060400", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.055400", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.930400", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.538300", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.533300", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.408300", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.516300", + "Timestamp": "2024-05-16T10:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.511300", + "Timestamp": "2024-05-16T10:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.386300", + "Timestamp": "2024-05-16T10:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.828600", + "Timestamp": "2024-05-16T10:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.823600", + "Timestamp": "2024-05-16T10:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.698600", + "Timestamp": "2024-05-16T10:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.383300", + "Timestamp": "2024-05-16T09:47:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.560100", + "Timestamp": "2024-05-16T09:47:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.757600", + "Timestamp": "2024-05-16T09:47:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.752600", + "Timestamp": "2024-05-16T09:47:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.627600", + "Timestamp": "2024-05-16T09:47:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.867900", + "Timestamp": "2024-05-16T09:47:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.174500", + "Timestamp": "2024-05-16T09:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.169500", + "Timestamp": "2024-05-16T09:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.044500", + "Timestamp": "2024-05-16T09:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.607800", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.823400", + "Timestamp": "2024-05-16T09:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.818400", + "Timestamp": "2024-05-16T09:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.693400", + "Timestamp": "2024-05-16T09:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.527100", + "Timestamp": "2024-05-16T09:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.497100", + "Timestamp": "2024-05-16T09:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.397100", + "Timestamp": "2024-05-16T09:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.633600", + "Timestamp": "2024-05-16T09:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.628600", + "Timestamp": "2024-05-16T09:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.503600", + "Timestamp": "2024-05-16T09:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.028300", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.469500", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.998300", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.439500", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.898300", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.339500", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.697600", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.692600", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.567600", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.734800", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.729800", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.604800", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.424400", + "Timestamp": "2024-05-16T09:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.large", + "ProductDescription": "Windows", + "SpotPrice": "0.166000", + "Timestamp": "2024-05-16T09:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.672400", + "Timestamp": "2024-05-16T09:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.661100", + "Timestamp": "2024-05-16T09:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.656100", + "Timestamp": "2024-05-16T09:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.531100", + "Timestamp": "2024-05-16T09:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.493600", + "Timestamp": "2024-05-16T09:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.208800", + "Timestamp": "2024-05-16T09:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.423300", + "Timestamp": "2024-05-16T09:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.205100", + "Timestamp": "2024-05-16T09:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.275500", + "Timestamp": "2024-05-16T09:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.549100", + "Timestamp": "2024-05-16T09:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.544100", + "Timestamp": "2024-05-16T09:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.419100", + "Timestamp": "2024-05-16T09:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Windows", + "SpotPrice": "5.453900", + "Timestamp": "2024-05-16T09:47:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136300", + "Timestamp": "2024-05-16T09:47:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132600", + "Timestamp": "2024-05-16T09:47:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076300", + "Timestamp": "2024-05-16T09:47:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.008800", + "Timestamp": "2024-05-16T09:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.978800", + "Timestamp": "2024-05-16T09:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.878800", + "Timestamp": "2024-05-16T09:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.459300", + "Timestamp": "2024-05-16T09:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.454300", + "Timestamp": "2024-05-16T09:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.329300", + "Timestamp": "2024-05-16T09:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.801400", + "Timestamp": "2024-05-16T09:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.771400", + "Timestamp": "2024-05-16T09:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.671400", + "Timestamp": "2024-05-16T09:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.118600", + "Timestamp": "2024-05-16T09:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.048400", + "Timestamp": "2024-05-16T09:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.035300", + "Timestamp": "2024-05-16T09:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.568600", + "Timestamp": "2024-05-16T09:46:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.888700", + "Timestamp": "2024-05-16T09:46:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.183600", + "Timestamp": "2024-05-16T09:46:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.178600", + "Timestamp": "2024-05-16T09:46:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.053600", + "Timestamp": "2024-05-16T09:46:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.940500", + "Timestamp": "2024-05-16T09:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.935500", + "Timestamp": "2024-05-16T09:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.810500", + "Timestamp": "2024-05-16T09:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.574900", + "Timestamp": "2024-05-16T09:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.525800", + "Timestamp": "2024-05-16T09:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.520800", + "Timestamp": "2024-05-16T09:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.395800", + "Timestamp": "2024-05-16T09:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.704000", + "Timestamp": "2024-05-16T09:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.699000", + "Timestamp": "2024-05-16T09:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.574000", + "Timestamp": "2024-05-16T09:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.536000", + "Timestamp": "2024-05-16T09:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.389800", + "Timestamp": "2024-05-16T09:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.384800", + "Timestamp": "2024-05-16T09:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.259800", + "Timestamp": "2024-05-16T09:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.191500", + "Timestamp": "2024-05-16T09:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.540900", + "Timestamp": "2024-05-16T09:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.102300", + "Timestamp": "2024-05-16T09:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.097300", + "Timestamp": "2024-05-16T09:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.972300", + "Timestamp": "2024-05-16T09:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.137900", + "Timestamp": "2024-05-16T09:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.717700", + "Timestamp": "2024-05-16T09:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.687700", + "Timestamp": "2024-05-16T09:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.587700", + "Timestamp": "2024-05-16T09:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.067800", + "Timestamp": "2024-05-16T09:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160400", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156700", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100400", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.616800", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.174200", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.169200", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.044200", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.383200", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.378200", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.253200", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.298700", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.382300", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.352300", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.252300", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.181200", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.978100", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.973100", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.848100", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.181600", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.176600", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.051600", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.984500", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.979500", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.854500", + "Timestamp": "2024-05-16T09:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102200", + "Timestamp": "2024-05-16T09:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098500", + "Timestamp": "2024-05-16T09:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042200", + "Timestamp": "2024-05-16T09:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.202200", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198200", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142200", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.372700", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.276200", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.911700", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.906700", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.781700", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "9.104500", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "9.099500", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "8.974500", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.946100", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.916100", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.816100", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.710000", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.784900", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.705000", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.779900", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.580000", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.654900", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.138800", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.133800", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.008800", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.189500", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.316000", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.311000", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186000", + "Timestamp": "2024-05-16T09:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.560300", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.263000", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.889000", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.884000", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.759000", + "Timestamp": "2024-05-16T09:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159000", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155000", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099000", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.335500", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.961900", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.956900", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.831900", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.514100", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.509100", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.384100", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.019900", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.014900", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.889900", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.559800", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.140200", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.592100", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.975900", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131000", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127300", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071000", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.538900", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.012400", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.302500", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.297500", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172500", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.046200", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.191000", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.187000", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131000", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.065100", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.872700", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.867700", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.742700", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.061000", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.056000", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.931000", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165200", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161200", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.722700", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.717700", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.592700", + "Timestamp": "2024-05-16T09:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.293000", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.263000", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.163000", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.209800", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.529800", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.788400", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.758400", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.658400", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.905500", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.900500", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.775500", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.103100", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.073100", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.973100", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.062300", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.057300", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.932300", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.487400", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.482400", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.357400", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.794700", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.533200", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.528200", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.403200", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.931300", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.845100", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.815100", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.715100", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.332500", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372500", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.272500", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.995700", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.990700", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.865700", + "Timestamp": "2024-05-16T09:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.878200", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.848200", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.748200", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.483900", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.478900", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.353900", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.562300", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.532600", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.557300", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.527600", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.432300", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.402600", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.632700", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.253100", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.249400", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.193100", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147300", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143600", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087300", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.232900", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.228900", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172900", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.221400", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.217400", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.161400", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.808200", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.803200", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.678200", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.889600", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.506000", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.501000", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.376000", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.889200", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.884200", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.759200", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.256900", + "Timestamp": "2024-05-16T09:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.251900", + "Timestamp": "2024-05-16T09:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.126900", + "Timestamp": "2024-05-16T09:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110400", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106700", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050400", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306900", + "Timestamp": "2024-05-16T09:46:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276900", + "Timestamp": "2024-05-16T09:46:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176900", + "Timestamp": "2024-05-16T09:46:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.561200", + "Timestamp": "2024-05-16T09:32:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.447000", + "Timestamp": "2024-05-16T09:32:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.430500", + "Timestamp": "2024-05-16T09:32:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.385000", + "Timestamp": "2024-05-16T09:32:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.551000", + "Timestamp": "2024-05-16T09:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.361500", + "Timestamp": "2024-05-16T09:32:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.356500", + "Timestamp": "2024-05-16T09:32:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.231500", + "Timestamp": "2024-05-16T09:32:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.406200", + "Timestamp": "2024-05-16T09:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.192900", + "Timestamp": "2024-05-16T09:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.189200", + "Timestamp": "2024-05-16T09:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.132900", + "Timestamp": "2024-05-16T09:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.802500", + "Timestamp": "2024-05-16T09:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.220800", + "Timestamp": "2024-05-16T09:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.413100", + "Timestamp": "2024-05-16T09:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.408100", + "Timestamp": "2024-05-16T09:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.283100", + "Timestamp": "2024-05-16T09:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.707100", + "Timestamp": "2024-05-16T09:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.702100", + "Timestamp": "2024-05-16T09:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.577100", + "Timestamp": "2024-05-16T09:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124000", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120000", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064000", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.065500", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.060500", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.935500", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.226100", + "Timestamp": "2024-05-16T09:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T09:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T09:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047700", + "Timestamp": "2024-05-16T09:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.410300", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.380300", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.280300", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.359600", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.511500", + "Timestamp": "2024-05-16T09:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.385500", + "Timestamp": "2024-05-16T09:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.380500", + "Timestamp": "2024-05-16T09:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.255500", + "Timestamp": "2024-05-16T09:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.000600", + "Timestamp": "2024-05-16T09:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.995600", + "Timestamp": "2024-05-16T09:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.870600", + "Timestamp": "2024-05-16T09:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.157500", + "Timestamp": "2024-05-16T09:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.287200", + "Timestamp": "2024-05-16T09:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.282200", + "Timestamp": "2024-05-16T09:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.157200", + "Timestamp": "2024-05-16T09:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.087200", + "Timestamp": "2024-05-16T09:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.003100", + "Timestamp": "2024-05-16T09:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.998100", + "Timestamp": "2024-05-16T09:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.873100", + "Timestamp": "2024-05-16T09:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.122000", + "Timestamp": "2024-05-16T09:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.351700", + "Timestamp": "2024-05-16T09:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144700", + "Timestamp": "2024-05-16T09:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140700", + "Timestamp": "2024-05-16T09:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084700", + "Timestamp": "2024-05-16T09:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.554900", + "Timestamp": "2024-05-16T09:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.549900", + "Timestamp": "2024-05-16T09:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.424900", + "Timestamp": "2024-05-16T09:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.548400", + "Timestamp": "2024-05-16T09:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.543400", + "Timestamp": "2024-05-16T09:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.418400", + "Timestamp": "2024-05-16T09:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.298500", + "Timestamp": "2024-05-16T09:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.089100", + "Timestamp": "2024-05-16T09:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.164200", + "Timestamp": "2024-05-16T09:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.324400", + "Timestamp": "2024-05-16T09:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.518300", + "Timestamp": "2024-05-16T09:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.634900", + "Timestamp": "2024-05-16T09:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.629900", + "Timestamp": "2024-05-16T09:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.504900", + "Timestamp": "2024-05-16T09:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.128500", + "Timestamp": "2024-05-16T09:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.123500", + "Timestamp": "2024-05-16T09:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.998500", + "Timestamp": "2024-05-16T09:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T09:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092300", + "Timestamp": "2024-05-16T09:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036000", + "Timestamp": "2024-05-16T09:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160700", + "Timestamp": "2024-05-16T09:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157700", + "Timestamp": "2024-05-16T09:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100700", + "Timestamp": "2024-05-16T09:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.774200", + "Timestamp": "2024-05-16T09:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.318900", + "Timestamp": "2024-05-16T09:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.067300", + "Timestamp": "2024-05-16T09:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.283000", + "Timestamp": "2024-05-16T09:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.322600", + "Timestamp": "2024-05-16T09:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.136700", + "Timestamp": "2024-05-16T09:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "13.852000", + "Timestamp": "2024-05-16T09:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "13.847000", + "Timestamp": "2024-05-16T09:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "13.722000", + "Timestamp": "2024-05-16T09:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.425400", + "Timestamp": "2024-05-16T09:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.767400", + "Timestamp": "2024-05-16T09:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.762400", + "Timestamp": "2024-05-16T09:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.637400", + "Timestamp": "2024-05-16T09:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.153600", + "Timestamp": "2024-05-16T09:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.614000", + "Timestamp": "2024-05-16T09:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.609000", + "Timestamp": "2024-05-16T09:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.484000", + "Timestamp": "2024-05-16T09:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.462100", + "Timestamp": "2024-05-16T09:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.457100", + "Timestamp": "2024-05-16T09:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.332100", + "Timestamp": "2024-05-16T09:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.344700", + "Timestamp": "2024-05-16T09:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.275000", + "Timestamp": "2024-05-16T09:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.270000", + "Timestamp": "2024-05-16T09:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.145000", + "Timestamp": "2024-05-16T09:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.189200", + "Timestamp": "2024-05-16T09:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.608500", + "Timestamp": "2024-05-16T09:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.035800", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "p2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.005800", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.905800", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.817200", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.812200", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.687200", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.062800", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.304700", + "Timestamp": "2024-05-16T09:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.259600", + "Timestamp": "2024-05-16T09:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.254600", + "Timestamp": "2024-05-16T09:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129600", + "Timestamp": "2024-05-16T09:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.654500", + "Timestamp": "2024-05-16T09:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135100", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131400", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075100", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.723000", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.718000", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.593000", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T09:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108800", + "Timestamp": "2024-05-16T09:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052800", + "Timestamp": "2024-05-16T09:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.469700", + "Timestamp": "2024-05-16T09:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.464700", + "Timestamp": "2024-05-16T09:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.339700", + "Timestamp": "2024-05-16T09:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.546200", + "Timestamp": "2024-05-16T09:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.541200", + "Timestamp": "2024-05-16T09:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.416200", + "Timestamp": "2024-05-16T09:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.374800", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.369800", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.244800", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.487000", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.482000", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.357000", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.247100", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.242100", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.117100", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.760500", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.755500", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.630500", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174800", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.214800", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114800", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.387700", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.794600", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.382700", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.789600", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.257700", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.664600", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.673100", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.021900", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.814400", + "Timestamp": "2024-05-16T09:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.129000", + "Timestamp": "2024-05-16T09:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.124000", + "Timestamp": "2024-05-16T09:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.999000", + "Timestamp": "2024-05-16T09:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.294900", + "Timestamp": "2024-05-16T09:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.489400", + "Timestamp": "2024-05-16T09:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.459400", + "Timestamp": "2024-05-16T09:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.359400", + "Timestamp": "2024-05-16T09:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.605500", + "Timestamp": "2024-05-16T09:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.575500", + "Timestamp": "2024-05-16T09:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.475500", + "Timestamp": "2024-05-16T09:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.590100", + "Timestamp": "2024-05-16T09:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.039300", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.636200", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.090000", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.039000", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.034000", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.909000", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.641500", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.257900", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.625500", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.700000", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.695000", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.570000", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.349800", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.521300", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.516300", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.391300", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.152500", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.996500", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.991500", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.866500", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.036900", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.031900", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.906900", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.286500", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.569900", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.789100", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.358400", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.326000", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.353400", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.321000", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.228400", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196000", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.061300", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148000", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144300", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088000", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.562300", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.532300", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.432300", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.086000", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.081000", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.956000", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169800", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166100", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119600", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090600", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059600", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.616500", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.611500", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.486500", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.742000", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.590800", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.545100", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.262900", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094400", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038100", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.178000", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174300", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118000", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.734600", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.729600", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.604600", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.214400", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.211400", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.154400", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117600", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113600", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057600", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.178700", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.175000", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118700", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.331800", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.665200", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.383600", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.353600", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.253600", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.401100", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.396100", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.271100", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.584300", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.758200", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.438100", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.433100", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.308100", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.026900", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.990400", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.960400", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.860400", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.286300", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281300", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156300", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.237000", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.202700", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.233300", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.199000", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177000", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142700", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048600", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.545000", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.515000", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.415000", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173900", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.213900", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113900", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047400", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.379700", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.445100", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.219300", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.255300", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.837400", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.832400", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.707400", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.155600", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.368500", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.363500", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.238500", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.051500", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.474000", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.444000", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.344000", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101800", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041800", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062400", + "Timestamp": "2024-05-16T09:18:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002400", + "Timestamp": "2024-05-16T09:18:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002400", + "Timestamp": "2024-05-16T09:18:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.326300", + "Timestamp": "2024-05-16T09:17:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.218500", + "Timestamp": "2024-05-16T09:17:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.214500", + "Timestamp": "2024-05-16T09:17:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158500", + "Timestamp": "2024-05-16T09:17:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.465500", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.322100", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.317100", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.192100", + "Timestamp": "2024-05-16T09:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.321100", + "Timestamp": "2024-05-16T09:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "a1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.316100", + "Timestamp": "2024-05-16T09:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "a1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.191100", + "Timestamp": "2024-05-16T09:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.052400", + "Timestamp": "2024-05-16T09:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.582000", + "Timestamp": "2024-05-16T09:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.211700", + "Timestamp": "2024-05-16T09:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.251700", + "Timestamp": "2024-05-16T09:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.151700", + "Timestamp": "2024-05-16T09:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.347600", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.502300", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.538200", + "Timestamp": "2024-05-16T09:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.384200", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.379200", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.254200", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.442100", + "Timestamp": "2024-05-16T09:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.159300", + "Timestamp": "2024-05-16T09:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.154300", + "Timestamp": "2024-05-16T09:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.029300", + "Timestamp": "2024-05-16T09:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.501500", + "Timestamp": "2024-05-16T09:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.496500", + "Timestamp": "2024-05-16T09:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.371500", + "Timestamp": "2024-05-16T09:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.367300", + "Timestamp": "2024-05-16T09:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.642400", + "Timestamp": "2024-05-16T09:17:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.034600", + "Timestamp": "2024-05-16T09:17:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.374300", + "Timestamp": "2024-05-16T09:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.626500", + "Timestamp": "2024-05-16T09:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.621500", + "Timestamp": "2024-05-16T09:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.496500", + "Timestamp": "2024-05-16T09:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.495700", + "Timestamp": "2024-05-16T09:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.246700", + "Timestamp": "2024-05-16T09:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.969100", + "Timestamp": "2024-05-16T09:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.289800", + "Timestamp": "2024-05-16T09:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.376400", + "Timestamp": "2024-05-16T09:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.371400", + "Timestamp": "2024-05-16T09:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.246400", + "Timestamp": "2024-05-16T09:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.178500", + "Timestamp": "2024-05-16T09:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.980800", + "Timestamp": "2024-05-16T09:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.871400", + "Timestamp": "2024-05-16T09:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.866400", + "Timestamp": "2024-05-16T09:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.741400", + "Timestamp": "2024-05-16T09:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115300", + "Timestamp": "2024-05-16T09:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111600", + "Timestamp": "2024-05-16T09:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055300", + "Timestamp": "2024-05-16T09:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.562600", + "Timestamp": "2024-05-16T09:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.532600", + "Timestamp": "2024-05-16T09:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.432600", + "Timestamp": "2024-05-16T09:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.140900", + "Timestamp": "2024-05-16T09:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.135900", + "Timestamp": "2024-05-16T09:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.010900", + "Timestamp": "2024-05-16T09:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145800", + "Timestamp": "2024-05-16T09:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142100", + "Timestamp": "2024-05-16T09:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085800", + "Timestamp": "2024-05-16T09:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.062600", + "Timestamp": "2024-05-16T09:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.923700", + "Timestamp": "2024-05-16T09:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.918700", + "Timestamp": "2024-05-16T09:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.793700", + "Timestamp": "2024-05-16T09:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.580300", + "Timestamp": "2024-05-16T09:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.898600", + "Timestamp": "2024-05-16T09:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.427200", + "Timestamp": "2024-05-16T09:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.751400", + "Timestamp": "2024-05-16T09:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.138400", + "Timestamp": "2024-05-16T09:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.568700", + "Timestamp": "2024-05-16T09:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.563700", + "Timestamp": "2024-05-16T09:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.438700", + "Timestamp": "2024-05-16T09:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.549200", + "Timestamp": "2024-05-16T09:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.519200", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.453400", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.448400", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.323400", + "Timestamp": "2024-05-16T09:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.225700", + "Timestamp": "2024-05-16T09:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.222000", + "Timestamp": "2024-05-16T09:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165700", + "Timestamp": "2024-05-16T09:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.903400", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.898400", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.773400", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.124000", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.119000", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.994000", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.075200", + "Timestamp": "2024-05-16T09:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.070200", + "Timestamp": "2024-05-16T09:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.945200", + "Timestamp": "2024-05-16T09:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.343200", + "Timestamp": "2024-05-16T09:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.313200", + "Timestamp": "2024-05-16T09:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.213200", + "Timestamp": "2024-05-16T09:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.464800", + "Timestamp": "2024-05-16T09:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.282500", + "Timestamp": "2024-05-16T09:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.457500", + "Timestamp": "2024-05-16T09:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T09:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.049900", + "Timestamp": "2024-05-16T09:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T09:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100700", + "Timestamp": "2024-05-16T09:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044400", + "Timestamp": "2024-05-16T09:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.222900", + "Timestamp": "2024-05-16T09:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.217900", + "Timestamp": "2024-05-16T09:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.092900", + "Timestamp": "2024-05-16T09:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.935800", + "Timestamp": "2024-05-16T09:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.059300", + "Timestamp": "2024-05-16T09:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.930800", + "Timestamp": "2024-05-16T09:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.054300", + "Timestamp": "2024-05-16T09:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.805800", + "Timestamp": "2024-05-16T09:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.929300", + "Timestamp": "2024-05-16T09:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.068000", + "Timestamp": "2024-05-16T09:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.063000", + "Timestamp": "2024-05-16T09:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.938000", + "Timestamp": "2024-05-16T09:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.259400", + "Timestamp": "2024-05-16T09:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116700", + "Timestamp": "2024-05-16T09:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112700", + "Timestamp": "2024-05-16T09:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056700", + "Timestamp": "2024-05-16T09:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.171200", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.679200", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.338600", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.335600", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.278600", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.142300", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.891900", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.742500", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.886900", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.737500", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.761900", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.612500", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.572000", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.567000", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.442000", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.724300", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.719300", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.594300", + "Timestamp": "2024-05-16T09:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.075000", + "Timestamp": "2024-05-16T09:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.283200", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.278200", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.153200", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.068500", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.038500", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.938500", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077000", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073300", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017000", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.376500", + "Timestamp": "2024-05-16T09:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.612800", + "Timestamp": "2024-05-16T09:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.566600", + "Timestamp": "2024-05-16T09:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.961300", + "Timestamp": "2024-05-16T09:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.326600", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.321600", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196600", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.145400", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.140400", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.015400", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.740500", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.338900", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.337200", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.884900", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.879900", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.754900", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.422500", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.222400", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262400", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162400", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.184600", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.179600", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.054600", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.261100", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.256100", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.131100", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "14.206900", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "14.176900", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "14.076900", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.406200", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.517100", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.487100", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.387100", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.053000", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.048000", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.923000", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.316400", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.311400", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.186400", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.511400", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "13.715300", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "13.844400", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.004500", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.999500", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.874500", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.128600", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.116700", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.111700", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.986700", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.204500", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.199500", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074500", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152300", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148600", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092300", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.874400", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.869400", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.744400", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.353000", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.284900", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281200", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224900", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.567200", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.537200", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.437200", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.050400", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.020400", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.920400", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.090600", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.847300", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.842300", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.717300", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.721700", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.152000", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.178900", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.173900", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.048900", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.603800", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.598800", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.473800", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131200", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127500", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071200", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144900", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141200", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084900", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.288000", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.283000", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158000", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.460700", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.455700", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.330700", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156100", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152100", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096100", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.710100", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.705100", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.580100", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.757800", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.752800", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.627800", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.368400", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.575900", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.363400", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.570900", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.238400", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.445900", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.002300", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.997300", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.872300", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.242500", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.437100", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.432100", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.307100", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.195000", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.191300", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.135000", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.951400", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.946400", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.821400", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.437700", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.432700", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.307700", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.140400", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.135400", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.010400", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.145100", + "Timestamp": "2024-05-16T09:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.523500", + "Timestamp": "2024-05-16T09:16:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.493500", + "Timestamp": "2024-05-16T09:16:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.393500", + "Timestamp": "2024-05-16T09:16:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.561800", + "Timestamp": "2024-05-16T09:16:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.556800", + "Timestamp": "2024-05-16T09:16:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.431800", + "Timestamp": "2024-05-16T09:16:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.028300", + "Timestamp": "2024-05-16T09:03:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.373700", + "Timestamp": "2024-05-16T09:02:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.368700", + "Timestamp": "2024-05-16T09:02:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.243700", + "Timestamp": "2024-05-16T09:02:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.646200", + "Timestamp": "2024-05-16T09:02:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.315600", + "Timestamp": "2024-05-16T09:02:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.313800", + "Timestamp": "2024-05-16T09:02:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.450100", + "Timestamp": "2024-05-16T09:02:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.279700", + "Timestamp": "2024-05-16T09:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.240100", + "Timestamp": "2024-05-16T09:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.233000", + "Timestamp": "2024-05-16T09:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.229300", + "Timestamp": "2024-05-16T09:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.173000", + "Timestamp": "2024-05-16T09:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.223000", + "Timestamp": "2024-05-16T09:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.218000", + "Timestamp": "2024-05-16T09:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.093000", + "Timestamp": "2024-05-16T09:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.290400", + "Timestamp": "2024-05-16T09:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.414400", + "Timestamp": "2024-05-16T09:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.413400", + "Timestamp": "2024-05-16T09:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.374300", + "Timestamp": "2024-05-16T09:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.509900", + "Timestamp": "2024-05-16T09:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.504900", + "Timestamp": "2024-05-16T09:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.379900", + "Timestamp": "2024-05-16T09:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.350300", + "Timestamp": "2024-05-16T09:02:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.345300", + "Timestamp": "2024-05-16T09:02:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.220300", + "Timestamp": "2024-05-16T09:02:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.187200", + "Timestamp": "2024-05-16T09:02:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.083000", + "Timestamp": "2024-05-16T09:02:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.570200", + "Timestamp": "2024-05-16T09:02:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.246500", + "Timestamp": "2024-05-16T09:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.241500", + "Timestamp": "2024-05-16T09:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.116500", + "Timestamp": "2024-05-16T09:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.145400", + "Timestamp": "2024-05-16T09:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.516700", + "Timestamp": "2024-05-16T09:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.327800", + "Timestamp": "2024-05-16T09:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.322800", + "Timestamp": "2024-05-16T09:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.197800", + "Timestamp": "2024-05-16T09:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.003900", + "Timestamp": "2024-05-16T09:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "12.541200", + "Timestamp": "2024-05-16T09:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.235600", + "Timestamp": "2024-05-16T09:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "a1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.230600", + "Timestamp": "2024-05-16T09:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "a1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T09:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.739100", + "Timestamp": "2024-05-16T09:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.734100", + "Timestamp": "2024-05-16T09:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.609100", + "Timestamp": "2024-05-16T09:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.572900", + "Timestamp": "2024-05-16T09:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.187100", + "Timestamp": "2024-05-16T09:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183400", + "Timestamp": "2024-05-16T09:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127100", + "Timestamp": "2024-05-16T09:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.644100", + "Timestamp": "2024-05-16T09:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.639100", + "Timestamp": "2024-05-16T09:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.514100", + "Timestamp": "2024-05-16T09:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.390500", + "Timestamp": "2024-05-16T09:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.198000", + "Timestamp": "2024-05-16T09:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.195000", + "Timestamp": "2024-05-16T09:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.138000", + "Timestamp": "2024-05-16T09:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.855600", + "Timestamp": "2024-05-16T09:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.173700", + "Timestamp": "2024-05-16T09:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.321600", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.516400", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.538500", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.181100", + "Timestamp": "2024-05-16T09:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.176100", + "Timestamp": "2024-05-16T09:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.051100", + "Timestamp": "2024-05-16T09:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.360800", + "Timestamp": "2024-05-16T09:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.355800", + "Timestamp": "2024-05-16T09:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.230800", + "Timestamp": "2024-05-16T09:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.516600", + "Timestamp": "2024-05-16T09:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.631700", + "Timestamp": "2024-05-16T09:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.451400", + "Timestamp": "2024-05-16T09:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.806700", + "Timestamp": "2024-05-16T09:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.825100", + "Timestamp": "2024-05-16T09:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.801700", + "Timestamp": "2024-05-16T09:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.820100", + "Timestamp": "2024-05-16T09:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.676700", + "Timestamp": "2024-05-16T09:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.695100", + "Timestamp": "2024-05-16T09:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.139000", + "Timestamp": "2024-05-16T09:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.853100", + "Timestamp": "2024-05-16T09:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.823100", + "Timestamp": "2024-05-16T09:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.723100", + "Timestamp": "2024-05-16T09:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.481400", + "Timestamp": "2024-05-16T09:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.476400", + "Timestamp": "2024-05-16T09:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.351400", + "Timestamp": "2024-05-16T09:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.482800", + "Timestamp": "2024-05-16T09:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.299600", + "Timestamp": "2024-05-16T09:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.147400", + "Timestamp": "2024-05-16T09:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.349400", + "Timestamp": "2024-05-16T09:02:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "7.151100", + "Timestamp": "2024-05-16T09:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.208500", + "Timestamp": "2024-05-16T09:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.066100", + "Timestamp": "2024-05-16T09:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.061100", + "Timestamp": "2024-05-16T09:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.936100", + "Timestamp": "2024-05-16T09:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.977300", + "Timestamp": "2024-05-16T09:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119500", + "Timestamp": "2024-05-16T09:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115800", + "Timestamp": "2024-05-16T09:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059500", + "Timestamp": "2024-05-16T09:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "15.444700", + "Timestamp": "2024-05-16T09:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.582400", + "Timestamp": "2024-05-16T09:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.552400", + "Timestamp": "2024-05-16T09:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.452400", + "Timestamp": "2024-05-16T09:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.942400", + "Timestamp": "2024-05-16T09:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.937400", + "Timestamp": "2024-05-16T09:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.812400", + "Timestamp": "2024-05-16T09:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.402000", + "Timestamp": "2024-05-16T09:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372000", + "Timestamp": "2024-05-16T09:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.272000", + "Timestamp": "2024-05-16T09:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.133200", + "Timestamp": "2024-05-16T09:01:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.163100", + "Timestamp": "2024-05-16T09:01:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.626000", + "Timestamp": "2024-05-16T09:01:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070300", + "Timestamp": "2024-05-16T09:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040300", + "Timestamp": "2024-05-16T09:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010300", + "Timestamp": "2024-05-16T09:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.917800", + "Timestamp": "2024-05-16T09:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.912800", + "Timestamp": "2024-05-16T09:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.787800", + "Timestamp": "2024-05-16T09:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173000", + "Timestamp": "2024-05-16T09:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169000", + "Timestamp": "2024-05-16T09:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-16T09:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.747900", + "Timestamp": "2024-05-16T09:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.742900", + "Timestamp": "2024-05-16T09:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.617900", + "Timestamp": "2024-05-16T09:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.882100", + "Timestamp": "2024-05-16T09:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.633700", + "Timestamp": "2024-05-16T09:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.628700", + "Timestamp": "2024-05-16T09:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.503700", + "Timestamp": "2024-05-16T09:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.873800", + "Timestamp": "2024-05-16T09:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.673400", + "Timestamp": "2024-05-16T09:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.668400", + "Timestamp": "2024-05-16T09:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.543400", + "Timestamp": "2024-05-16T09:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.633300", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.628300", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.503300", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.332200", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302200", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.202200", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.296700", + "Timestamp": "2024-05-16T09:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.291700", + "Timestamp": "2024-05-16T09:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.166700", + "Timestamp": "2024-05-16T09:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154100", + "Timestamp": "2024-05-16T09:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150100", + "Timestamp": "2024-05-16T09:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094100", + "Timestamp": "2024-05-16T09:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.555800", + "Timestamp": "2024-05-16T09:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.550800", + "Timestamp": "2024-05-16T09:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.425800", + "Timestamp": "2024-05-16T09:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.620000", + "Timestamp": "2024-05-16T09:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.615000", + "Timestamp": "2024-05-16T09:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.490000", + "Timestamp": "2024-05-16T09:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.566300", + "Timestamp": "2024-05-16T09:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.562600", + "Timestamp": "2024-05-16T09:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.506300", + "Timestamp": "2024-05-16T09:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.295900", + "Timestamp": "2024-05-16T09:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.290900", + "Timestamp": "2024-05-16T09:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165900", + "Timestamp": "2024-05-16T09:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.451400", + "Timestamp": "2024-05-16T09:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.814700", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.809700", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.684700", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.732500", + "Timestamp": "2024-05-16T09:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.296700", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293700", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.236700", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.260400", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.518400", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.513400", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.388400", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.875700", + "Timestamp": "2024-05-16T09:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.870700", + "Timestamp": "2024-05-16T09:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.745700", + "Timestamp": "2024-05-16T09:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.908500", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.901000", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.903500", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.896000", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.778500", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.771000", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.564100", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.559100", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.434100", + "Timestamp": "2024-05-16T09:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.727000", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.722000", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.597000", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.738900", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.361000", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.562200", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.663100", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.550900", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.931000", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.532800", + "Timestamp": "2024-05-16T09:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.507800", + "Timestamp": "2024-05-16T09:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.307400", + "Timestamp": "2024-05-16T09:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.755000", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.750000", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.625000", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.107000", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.102000", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.977000", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.696600", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.691600", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.566600", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.088000", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.161000", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.604400", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.599400", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.474400", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.424000", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.419000", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.294000", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.428300", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.423300", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.298300", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.765700", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.362900", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.357900", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.232900", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.195400", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.191400", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.135400", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.763100", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.733100", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.633100", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.684900", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.679900", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.554900", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082300", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.053300", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022300", + "Timestamp": "2024-05-16T09:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.902600", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.872600", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.772600", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144000", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140300", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084000", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.700200", + "Timestamp": "2024-05-16T08:47:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.218000", + "Timestamp": "2024-05-16T08:47:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.214300", + "Timestamp": "2024-05-16T08:47:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158000", + "Timestamp": "2024-05-16T08:47:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.211700", + "Timestamp": "2024-05-16T08:47:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.206700", + "Timestamp": "2024-05-16T08:47:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.081700", + "Timestamp": "2024-05-16T08:47:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093900", + "Timestamp": "2024-05-16T08:47:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.064900", + "Timestamp": "2024-05-16T08:47:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033900", + "Timestamp": "2024-05-16T08:47:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.665300", + "Timestamp": "2024-05-16T08:47:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.831300", + "Timestamp": "2024-05-16T08:47:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.826300", + "Timestamp": "2024-05-16T08:47:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.701300", + "Timestamp": "2024-05-16T08:47:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.294000", + "Timestamp": "2024-05-16T08:47:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.477000", + "Timestamp": "2024-05-16T08:47:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.472000", + "Timestamp": "2024-05-16T08:47:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.347000", + "Timestamp": "2024-05-16T08:47:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.663000", + "Timestamp": "2024-05-16T08:47:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.658000", + "Timestamp": "2024-05-16T08:47:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.533000", + "Timestamp": "2024-05-16T08:47:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.168400", + "Timestamp": "2024-05-16T08:47:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.934000", + "Timestamp": "2024-05-16T08:47:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.929000", + "Timestamp": "2024-05-16T08:47:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.804000", + "Timestamp": "2024-05-16T08:47:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.377600", + "Timestamp": "2024-05-16T08:47:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.401200", + "Timestamp": "2024-05-16T08:47:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.396200", + "Timestamp": "2024-05-16T08:47:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.271200", + "Timestamp": "2024-05-16T08:47:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.810600", + "Timestamp": "2024-05-16T08:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.805600", + "Timestamp": "2024-05-16T08:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.680600", + "Timestamp": "2024-05-16T08:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.173900", + "Timestamp": "2024-05-16T08:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.071500", + "Timestamp": "2024-05-16T08:47:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "vt1.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.519100", + "Timestamp": "2024-05-16T08:47:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "vt1.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.489100", + "Timestamp": "2024-05-16T08:47:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "vt1.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.389100", + "Timestamp": "2024-05-16T08:47:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.249100", + "Timestamp": "2024-05-16T08:47:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.581600", + "Timestamp": "2024-05-16T08:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.662000", + "Timestamp": "2024-05-16T08:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.626100", + "Timestamp": "2024-05-16T08:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.621100", + "Timestamp": "2024-05-16T08:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.496100", + "Timestamp": "2024-05-16T08:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.256200", + "Timestamp": "2024-05-16T08:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "12.245800", + "Timestamp": "2024-05-16T08:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093100", + "Timestamp": "2024-05-16T08:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089400", + "Timestamp": "2024-05-16T08:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033100", + "Timestamp": "2024-05-16T08:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.954500", + "Timestamp": "2024-05-16T08:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.312100", + "Timestamp": "2024-05-16T08:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.517700", + "Timestamp": "2024-05-16T08:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.512700", + "Timestamp": "2024-05-16T08:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.387700", + "Timestamp": "2024-05-16T08:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.481500", + "Timestamp": "2024-05-16T08:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.271800", + "Timestamp": "2024-05-16T08:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.746900", + "Timestamp": "2024-05-16T08:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.527400", + "Timestamp": "2024-05-16T08:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.497400", + "Timestamp": "2024-05-16T08:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.397400", + "Timestamp": "2024-05-16T08:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.648500", + "Timestamp": "2024-05-16T08:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.646300", + "Timestamp": "2024-05-16T08:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.643500", + "Timestamp": "2024-05-16T08:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.641300", + "Timestamp": "2024-05-16T08:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.518500", + "Timestamp": "2024-05-16T08:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.516300", + "Timestamp": "2024-05-16T08:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.564500", + "Timestamp": "2024-05-16T08:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.559500", + "Timestamp": "2024-05-16T08:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.434500", + "Timestamp": "2024-05-16T08:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124500", + "Timestamp": "2024-05-16T08:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "18.777100", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.909200", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.904200", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.779200", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.776500", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.186100", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156100", + "Timestamp": "2024-05-16T08:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152400", + "Timestamp": "2024-05-16T08:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096100", + "Timestamp": "2024-05-16T08:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.323500", + "Timestamp": "2024-05-16T08:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.292400", + "Timestamp": "2024-05-16T08:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.287400", + "Timestamp": "2024-05-16T08:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162400", + "Timestamp": "2024-05-16T08:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.508300", + "Timestamp": "2024-05-16T08:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.503300", + "Timestamp": "2024-05-16T08:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.378300", + "Timestamp": "2024-05-16T08:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.449400", + "Timestamp": "2024-05-16T08:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.445700", + "Timestamp": "2024-05-16T08:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.389400", + "Timestamp": "2024-05-16T08:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.507000", + "Timestamp": "2024-05-16T08:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.502000", + "Timestamp": "2024-05-16T08:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.377000", + "Timestamp": "2024-05-16T08:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.545600", + "Timestamp": "2024-05-16T08:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.195400", + "Timestamp": "2024-05-16T08:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.900200", + "Timestamp": "2024-05-16T08:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.553400", + "Timestamp": "2024-05-16T08:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.548400", + "Timestamp": "2024-05-16T08:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.423400", + "Timestamp": "2024-05-16T08:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.482500", + "Timestamp": "2024-05-16T08:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.477500", + "Timestamp": "2024-05-16T08:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.352500", + "Timestamp": "2024-05-16T08:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.689100", + "Timestamp": "2024-05-16T08:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.730000", + "Timestamp": "2024-05-16T08:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.684100", + "Timestamp": "2024-05-16T08:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.725000", + "Timestamp": "2024-05-16T08:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.559100", + "Timestamp": "2024-05-16T08:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.600000", + "Timestamp": "2024-05-16T08:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.516800", + "Timestamp": "2024-05-16T08:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.130700", + "Timestamp": "2024-05-16T08:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.100700", + "Timestamp": "2024-05-16T08:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.000700", + "Timestamp": "2024-05-16T08:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.603800", + "Timestamp": "2024-05-16T08:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129100", + "Timestamp": "2024-05-16T08:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T08:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069100", + "Timestamp": "2024-05-16T08:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.731200", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.726200", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.601200", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.960200", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.955200", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.830200", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099400", + "Timestamp": "2024-05-16T08:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095700", + "Timestamp": "2024-05-16T08:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039400", + "Timestamp": "2024-05-16T08:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.772100", + "Timestamp": "2024-05-16T08:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.767100", + "Timestamp": "2024-05-16T08:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.642100", + "Timestamp": "2024-05-16T08:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170100", + "Timestamp": "2024-05-16T08:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166400", + "Timestamp": "2024-05-16T08:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-16T08:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.035900", + "Timestamp": "2024-05-16T08:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.321700", + "Timestamp": "2024-05-16T08:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.071400", + "Timestamp": "2024-05-16T08:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.148200", + "Timestamp": "2024-05-16T08:47:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.685900", + "Timestamp": "2024-05-16T08:47:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.680900", + "Timestamp": "2024-05-16T08:47:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.555900", + "Timestamp": "2024-05-16T08:47:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.889500", + "Timestamp": "2024-05-16T08:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.158900", + "Timestamp": "2024-05-16T08:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.827700", + "Timestamp": "2024-05-16T08:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.822700", + "Timestamp": "2024-05-16T08:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.697700", + "Timestamp": "2024-05-16T08:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.288100", + "Timestamp": "2024-05-16T08:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.160000", + "Timestamp": "2024-05-16T08:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121500", + "Timestamp": "2024-05-16T08:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161500", + "Timestamp": "2024-05-16T08:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061500", + "Timestamp": "2024-05-16T08:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.686500", + "Timestamp": "2024-05-16T08:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.681500", + "Timestamp": "2024-05-16T08:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.556500", + "Timestamp": "2024-05-16T08:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.376200", + "Timestamp": "2024-05-16T08:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.371200", + "Timestamp": "2024-05-16T08:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.246200", + "Timestamp": "2024-05-16T08:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.498400", + "Timestamp": "2024-05-16T08:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.493400", + "Timestamp": "2024-05-16T08:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.368400", + "Timestamp": "2024-05-16T08:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.656900", + "Timestamp": "2024-05-16T08:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.651900", + "Timestamp": "2024-05-16T08:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.526900", + "Timestamp": "2024-05-16T08:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.103300", + "Timestamp": "2024-05-16T08:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.098300", + "Timestamp": "2024-05-16T08:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.973300", + "Timestamp": "2024-05-16T08:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iezn.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.990400", + "Timestamp": "2024-05-16T08:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.779300", + "Timestamp": "2024-05-16T08:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.888800", + "Timestamp": "2024-05-16T08:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.987800", + "Timestamp": "2024-05-16T08:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.858800", + "Timestamp": "2024-05-16T08:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.957800", + "Timestamp": "2024-05-16T08:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.758800", + "Timestamp": "2024-05-16T08:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.857800", + "Timestamp": "2024-05-16T08:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.236500", + "Timestamp": "2024-05-16T08:46:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232500", + "Timestamp": "2024-05-16T08:46:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176500", + "Timestamp": "2024-05-16T08:46:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.835200", + "Timestamp": "2024-05-16T08:46:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.389000", + "Timestamp": "2024-05-16T08:46:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.384000", + "Timestamp": "2024-05-16T08:46:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.259000", + "Timestamp": "2024-05-16T08:46:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.143700", + "Timestamp": "2024-05-16T08:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.138700", + "Timestamp": "2024-05-16T08:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.013700", + "Timestamp": "2024-05-16T08:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.604800", + "Timestamp": "2024-05-16T08:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Windows", + "SpotPrice": "29.388700", + "Timestamp": "2024-05-16T08:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "14.349800", + "Timestamp": "2024-05-16T08:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.928300", + "Timestamp": "2024-05-16T08:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.898300", + "Timestamp": "2024-05-16T08:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.798300", + "Timestamp": "2024-05-16T08:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.168100", + "Timestamp": "2024-05-16T08:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.193500", + "Timestamp": "2024-05-16T08:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.963400", + "Timestamp": "2024-05-16T08:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.958400", + "Timestamp": "2024-05-16T08:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.833400", + "Timestamp": "2024-05-16T08:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.840100", + "Timestamp": "2024-05-16T08:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.906200", + "Timestamp": "2024-05-16T08:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.835100", + "Timestamp": "2024-05-16T08:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.901200", + "Timestamp": "2024-05-16T08:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.710100", + "Timestamp": "2024-05-16T08:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.776200", + "Timestamp": "2024-05-16T08:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.707300", + "Timestamp": "2024-05-16T08:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.702300", + "Timestamp": "2024-05-16T08:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.577300", + "Timestamp": "2024-05-16T08:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.029100", + "Timestamp": "2024-05-16T08:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.753500", + "Timestamp": "2024-05-16T08:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.748500", + "Timestamp": "2024-05-16T08:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.623500", + "Timestamp": "2024-05-16T08:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.806900", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.044000", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.039000", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.914000", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.094800", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.089800", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.964800", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.137100", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.132100", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.007100", + "Timestamp": "2024-05-16T08:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.430900", + "Timestamp": "2024-05-16T08:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.912300", + "Timestamp": "2024-05-16T08:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.907300", + "Timestamp": "2024-05-16T08:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.782300", + "Timestamp": "2024-05-16T08:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.476000", + "Timestamp": "2024-05-16T08:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.471000", + "Timestamp": "2024-05-16T08:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.346000", + "Timestamp": "2024-05-16T08:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.476400", + "Timestamp": "2024-05-16T08:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.471400", + "Timestamp": "2024-05-16T08:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.346400", + "Timestamp": "2024-05-16T08:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.342700", + "Timestamp": "2024-05-16T08:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.058800", + "Timestamp": "2024-05-16T08:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.053800", + "Timestamp": "2024-05-16T08:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.928800", + "Timestamp": "2024-05-16T08:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.201000", + "Timestamp": "2024-05-16T08:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.058000", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.366800", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.165400", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.361800", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.160400", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.236800", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.035400", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.031600", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.658200", + "Timestamp": "2024-05-16T08:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.013200", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.008200", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.883200", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.935100", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.930100", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.805100", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.192200", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.654500", + "Timestamp": "2024-05-16T08:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.649500", + "Timestamp": "2024-05-16T08:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.524500", + "Timestamp": "2024-05-16T08:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144300", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140600", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084300", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.968400", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.938400", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.838400", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.353800", + "Timestamp": "2024-05-16T08:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.063900", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.058900", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.933900", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.862700", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.857700", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.732700", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.268800", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079200", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.050200", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019200", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.686300", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.681300", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.556300", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.248300", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.557500", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.552500", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.427500", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.540700", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.535700", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.410700", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046600", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148800", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145100", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088800", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.202100", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198400", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142100", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.653100", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.648100", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.523100", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.568600", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.564900", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.508600", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.693800", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.688800", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.563800", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135900", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132200", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075900", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163000", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159300", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160200", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156500", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.561300", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.717300", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.187000", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183300", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127000", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.061100", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.446700", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.866100", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.441700", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.861100", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.316700", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.736100", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.333700", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.328700", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.203700", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.264700", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.259700", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134700", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.821300", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.816300", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.691300", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.155200", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.514600", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "f1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.484600", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.384600", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.088700", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.200900", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.083700", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.195900", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.958700", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.070900", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.319600", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.213900", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.209900", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.153900", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079500", + "Timestamp": "2024-05-16T08:32:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075800", + "Timestamp": "2024-05-16T08:32:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019500", + "Timestamp": "2024-05-16T08:32:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.701900", + "Timestamp": "2024-05-16T08:32:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.259000", + "Timestamp": "2024-05-16T08:32:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.254000", + "Timestamp": "2024-05-16T08:32:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.129000", + "Timestamp": "2024-05-16T08:32:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "13.019700", + "Timestamp": "2024-05-16T08:32:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.511400", + "Timestamp": "2024-05-16T08:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.506400", + "Timestamp": "2024-05-16T08:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.381400", + "Timestamp": "2024-05-16T08:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.662300", + "Timestamp": "2024-05-16T08:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.672100", + "Timestamp": "2024-05-16T08:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.667100", + "Timestamp": "2024-05-16T08:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.542100", + "Timestamp": "2024-05-16T08:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.806800", + "Timestamp": "2024-05-16T08:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.776800", + "Timestamp": "2024-05-16T08:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.676800", + "Timestamp": "2024-05-16T08:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.204300", + "Timestamp": "2024-05-16T08:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.888200", + "Timestamp": "2024-05-16T08:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.883200", + "Timestamp": "2024-05-16T08:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.758200", + "Timestamp": "2024-05-16T08:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.593700", + "Timestamp": "2024-05-16T08:32:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.588700", + "Timestamp": "2024-05-16T08:32:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.463700", + "Timestamp": "2024-05-16T08:32:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.999600", + "Timestamp": "2024-05-16T08:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.994600", + "Timestamp": "2024-05-16T08:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.869600", + "Timestamp": "2024-05-16T08:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.627400", + "Timestamp": "2024-05-16T08:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120300", + "Timestamp": "2024-05-16T08:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131100", + "Timestamp": "2024-05-16T08:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T08:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127400", + "Timestamp": "2024-05-16T08:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060300", + "Timestamp": "2024-05-16T08:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071100", + "Timestamp": "2024-05-16T08:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-16T08:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107800", + "Timestamp": "2024-05-16T08:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051500", + "Timestamp": "2024-05-16T08:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.301100", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.679600", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.465000", + "Timestamp": "2024-05-16T08:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.460000", + "Timestamp": "2024-05-16T08:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.335000", + "Timestamp": "2024-05-16T08:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.452400", + "Timestamp": "2024-05-16T08:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.870000", + "Timestamp": "2024-05-16T08:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.447400", + "Timestamp": "2024-05-16T08:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.865000", + "Timestamp": "2024-05-16T08:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.322400", + "Timestamp": "2024-05-16T08:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.740000", + "Timestamp": "2024-05-16T08:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.658400", + "Timestamp": "2024-05-16T08:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.755300", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.869900", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.864900", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.739900", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106800", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050500", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.679700", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.674700", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.549700", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.391900", + "Timestamp": "2024-05-16T08:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.386900", + "Timestamp": "2024-05-16T08:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.261900", + "Timestamp": "2024-05-16T08:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.982100", + "Timestamp": "2024-05-16T08:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.952100", + "Timestamp": "2024-05-16T08:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.852100", + "Timestamp": "2024-05-16T08:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.514100", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.509100", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.384100", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.328000", + "Timestamp": "2024-05-16T08:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.716300", + "Timestamp": "2024-05-16T08:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.228000", + "Timestamp": "2024-05-16T08:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.695200", + "Timestamp": "2024-05-16T08:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.549000", + "Timestamp": "2024-05-16T08:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.569600", + "Timestamp": "2024-05-16T08:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.564600", + "Timestamp": "2024-05-16T08:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.439600", + "Timestamp": "2024-05-16T08:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.168700", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.163700", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.038700", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.704300", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.231300", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.606800", + "Timestamp": "2024-05-16T08:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.576800", + "Timestamp": "2024-05-16T08:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.476800", + "Timestamp": "2024-05-16T08:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.103100", + "Timestamp": "2024-05-16T08:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.146000", + "Timestamp": "2024-05-16T08:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128100", + "Timestamp": "2024-05-16T08:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.823600", + "Timestamp": "2024-05-16T08:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.138100", + "Timestamp": "2024-05-16T08:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.418800", + "Timestamp": "2024-05-16T08:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.414800", + "Timestamp": "2024-05-16T08:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.358800", + "Timestamp": "2024-05-16T08:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.194600", + "Timestamp": "2024-05-16T08:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190900", + "Timestamp": "2024-05-16T08:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134600", + "Timestamp": "2024-05-16T08:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.300600", + "Timestamp": "2024-05-16T08:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.844600", + "Timestamp": "2024-05-16T08:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.839600", + "Timestamp": "2024-05-16T08:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.714600", + "Timestamp": "2024-05-16T08:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.802600", + "Timestamp": "2024-05-16T08:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.614900", + "Timestamp": "2024-05-16T08:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.609900", + "Timestamp": "2024-05-16T08:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.484900", + "Timestamp": "2024-05-16T08:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.288000", + "Timestamp": "2024-05-16T08:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.158400", + "Timestamp": "2024-05-16T08:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.401200", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.396200", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.271200", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.491200", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.293600", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.288600", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.163600", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.381800", + "Timestamp": "2024-05-16T08:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.281800", + "Timestamp": "2024-05-16T08:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.194600", + "Timestamp": "2024-05-16T08:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.535500", + "Timestamp": "2024-05-16T08:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.622600", + "Timestamp": "2024-05-16T08:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.617600", + "Timestamp": "2024-05-16T08:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.492600", + "Timestamp": "2024-05-16T08:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.223700", + "Timestamp": "2024-05-16T08:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.288900", + "Timestamp": "2024-05-16T08:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.401000", + "Timestamp": "2024-05-16T08:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.285100", + "Timestamp": "2024-05-16T08:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.289000", + "Timestamp": "2024-05-16T08:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.259000", + "Timestamp": "2024-05-16T08:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.159000", + "Timestamp": "2024-05-16T08:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.348700", + "Timestamp": "2024-05-16T08:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.463600", + "Timestamp": "2024-05-16T08:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.343700", + "Timestamp": "2024-05-16T08:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.458600", + "Timestamp": "2024-05-16T08:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.218700", + "Timestamp": "2024-05-16T08:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.333600", + "Timestamp": "2024-05-16T08:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.374800", + "Timestamp": "2024-05-16T08:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.369800", + "Timestamp": "2024-05-16T08:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.244800", + "Timestamp": "2024-05-16T08:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.579200", + "Timestamp": "2024-05-16T08:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.067500", + "Timestamp": "2024-05-16T08:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.652200", + "Timestamp": "2024-05-16T08:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.647200", + "Timestamp": "2024-05-16T08:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.522200", + "Timestamp": "2024-05-16T08:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.113700", + "Timestamp": "2024-05-16T08:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.324700", + "Timestamp": "2024-05-16T08:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.622200", + "Timestamp": "2024-05-16T08:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.617200", + "Timestamp": "2024-05-16T08:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.492200", + "Timestamp": "2024-05-16T08:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.185200", + "Timestamp": "2024-05-16T08:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.526900", + "Timestamp": "2024-05-16T08:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.624000", + "Timestamp": "2024-05-16T08:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.619000", + "Timestamp": "2024-05-16T08:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.494000", + "Timestamp": "2024-05-16T08:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.083500", + "Timestamp": "2024-05-16T08:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.078500", + "Timestamp": "2024-05-16T08:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.953500", + "Timestamp": "2024-05-16T08:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "12.170800", + "Timestamp": "2024-05-16T08:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "12.165800", + "Timestamp": "2024-05-16T08:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "12.040800", + "Timestamp": "2024-05-16T08:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.193400", + "Timestamp": "2024-05-16T08:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "18.068000", + "Timestamp": "2024-05-16T08:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.897400", + "Timestamp": "2024-05-16T08:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.892400", + "Timestamp": "2024-05-16T08:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.767400", + "Timestamp": "2024-05-16T08:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.009700", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.968900", + "Timestamp": "2024-05-16T08:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.674700", + "Timestamp": "2024-05-16T08:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.793800", + "Timestamp": "2024-05-16T08:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.804300", + "Timestamp": "2024-05-16T08:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.947400", + "Timestamp": "2024-05-16T08:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.942400", + "Timestamp": "2024-05-16T08:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.817400", + "Timestamp": "2024-05-16T08:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.169800", + "Timestamp": "2024-05-16T08:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.535300", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.086900", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.057400", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.561700", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.556700", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.431700", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.541800", + "Timestamp": "2024-05-16T08:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150300", + "Timestamp": "2024-05-16T08:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146300", + "Timestamp": "2024-05-16T08:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090300", + "Timestamp": "2024-05-16T08:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.649000", + "Timestamp": "2024-05-16T08:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.550700", + "Timestamp": "2024-05-16T08:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.256300", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.251300", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162800", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159100", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130100", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126400", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070100", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.398600", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.393600", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.268600", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.626800", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.671400", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.666400", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.541400", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.079600", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.414900", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.409900", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.284900", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.368300", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.363300", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.238300", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.712100", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.707100", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.582100", + "Timestamp": "2024-05-16T08:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.083700", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.141100", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.225600", + "Timestamp": "2024-05-16T08:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.334700", + "Timestamp": "2024-05-16T08:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.575400", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.435800", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.281300", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.580600", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.888100", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.015000", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.281700", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.574200", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.144700", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.692800", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137200", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133500", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077200", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.643800", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.638800", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.513800", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.734600", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.276300", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.271300", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146300", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.370700", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.340700", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.240700", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "18.593700", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.592200", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.491800", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.486800", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.361800", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.028000", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.326900", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.240500", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.456300", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.125000", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.120000", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.995000", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.797900", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.767900", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.667900", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.174500", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.925900", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.920900", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.795900", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099600", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039600", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.079700", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.323900", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.318900", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.193900", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.546000", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.541000", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.416000", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.396800", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.391800", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.266800", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.187900", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.182900", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.057900", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.242300", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.212300", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.112300", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.747000", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.534700", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155800", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152100", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095800", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.628800", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146900", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046900", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.767800", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102700", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098700", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042700", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.324000", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.504200", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.499200", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.374200", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.662100", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.632100", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.532100", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "18.259000", + "Timestamp": "2024-05-16T08:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.227200", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267200", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167200", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.507600", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.502600", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.377600", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.848700", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.818700", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.718700", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.183400", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.178400", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.053400", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076400", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075400", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047400", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.046400", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016400", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015400", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.910500", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.880500", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.780500", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.796900", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.791900", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.666900", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.978900", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.973900", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.848900", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.322000", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.317000", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.192000", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099000", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043000", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.495100", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.465100", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.365100", + "Timestamp": "2024-05-16T08:31:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086800", + "Timestamp": "2024-05-16T08:18:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.057800", + "Timestamp": "2024-05-16T08:18:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026800", + "Timestamp": "2024-05-16T08:18:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.601500", + "Timestamp": "2024-05-16T08:17:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.571500", + "Timestamp": "2024-05-16T08:17:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.471500", + "Timestamp": "2024-05-16T08:17:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.876300", + "Timestamp": "2024-05-16T08:17:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.871300", + "Timestamp": "2024-05-16T08:17:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.746300", + "Timestamp": "2024-05-16T08:17:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.265200", + "Timestamp": "2024-05-16T08:17:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.461200", + "Timestamp": "2024-05-16T08:17:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.020000", + "Timestamp": "2024-05-16T08:17:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.204000", + "Timestamp": "2024-05-16T08:17:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.199000", + "Timestamp": "2024-05-16T08:17:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.074000", + "Timestamp": "2024-05-16T08:17:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.332000", + "Timestamp": "2024-05-16T08:17:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.894700", + "Timestamp": "2024-05-16T08:17:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.889700", + "Timestamp": "2024-05-16T08:17:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.764700", + "Timestamp": "2024-05-16T08:17:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.920300", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.142700", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.137700", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.012700", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.867200", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.862200", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.737200", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.930500", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.852500", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.925500", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.847500", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.800500", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.722500", + "Timestamp": "2024-05-16T08:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.260900", + "Timestamp": "2024-05-16T08:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.533700", + "Timestamp": "2024-05-16T08:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "f1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.886600", + "Timestamp": "2024-05-16T08:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "f1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.804600", + "Timestamp": "2024-05-16T08:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "f1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.856600", + "Timestamp": "2024-05-16T08:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "f1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.774600", + "Timestamp": "2024-05-16T08:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "f1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.756600", + "Timestamp": "2024-05-16T08:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "f1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.674600", + "Timestamp": "2024-05-16T08:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.920900", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.915900", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.790900", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.141300", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.136300", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.011300", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.558000", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.553000", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.428000", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.694400", + "Timestamp": "2024-05-16T08:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.644000", + "Timestamp": "2024-05-16T08:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.985300", + "Timestamp": "2024-05-16T08:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.588700", + "Timestamp": "2024-05-16T08:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.583700", + "Timestamp": "2024-05-16T08:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.458700", + "Timestamp": "2024-05-16T08:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.245300", + "Timestamp": "2024-05-16T08:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.431200", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.045500", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.040500", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.915500", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.108500", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.562300", + "Timestamp": "2024-05-16T08:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.557300", + "Timestamp": "2024-05-16T08:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.432300", + "Timestamp": "2024-05-16T08:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.763400", + "Timestamp": "2024-05-16T08:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.201700", + "Timestamp": "2024-05-16T08:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.241700", + "Timestamp": "2024-05-16T08:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141700", + "Timestamp": "2024-05-16T08:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429600", + "Timestamp": "2024-05-16T08:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.652500", + "Timestamp": "2024-05-16T08:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.550600", + "Timestamp": "2024-05-16T08:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.089800", + "Timestamp": "2024-05-16T08:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.084800", + "Timestamp": "2024-05-16T08:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.959800", + "Timestamp": "2024-05-16T08:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.730200", + "Timestamp": "2024-05-16T08:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.725200", + "Timestamp": "2024-05-16T08:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.600200", + "Timestamp": "2024-05-16T08:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "f1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.733500", + "Timestamp": "2024-05-16T08:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "f1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.703500", + "Timestamp": "2024-05-16T08:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "f1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.603500", + "Timestamp": "2024-05-16T08:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.008200", + "Timestamp": "2024-05-16T08:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.133700", + "Timestamp": "2024-05-16T08:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.660600", + "Timestamp": "2024-05-16T08:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.307800", + "Timestamp": "2024-05-16T08:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.544300", + "Timestamp": "2024-05-16T08:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.539300", + "Timestamp": "2024-05-16T08:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.414300", + "Timestamp": "2024-05-16T08:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.632200", + "Timestamp": "2024-05-16T08:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.602200", + "Timestamp": "2024-05-16T08:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.502200", + "Timestamp": "2024-05-16T08:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.713400", + "Timestamp": "2024-05-16T08:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.708400", + "Timestamp": "2024-05-16T08:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.583400", + "Timestamp": "2024-05-16T08:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.988400", + "Timestamp": "2024-05-16T08:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.958400", + "Timestamp": "2024-05-16T08:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.858400", + "Timestamp": "2024-05-16T08:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.276400", + "Timestamp": "2024-05-16T08:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.271400", + "Timestamp": "2024-05-16T08:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.146400", + "Timestamp": "2024-05-16T08:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.322200", + "Timestamp": "2024-05-16T08:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.052600", + "Timestamp": "2024-05-16T08:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.022600", + "Timestamp": "2024-05-16T08:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.922600", + "Timestamp": "2024-05-16T08:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.578300", + "Timestamp": "2024-05-16T08:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.243800", + "Timestamp": "2024-05-16T08:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.238800", + "Timestamp": "2024-05-16T08:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.113800", + "Timestamp": "2024-05-16T08:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.071000", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.066000", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.941000", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.898000", + "Timestamp": "2024-05-16T08:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.893000", + "Timestamp": "2024-05-16T08:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.768000", + "Timestamp": "2024-05-16T08:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.367500", + "Timestamp": "2024-05-16T08:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.362500", + "Timestamp": "2024-05-16T08:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.237500", + "Timestamp": "2024-05-16T08:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.674500", + "Timestamp": "2024-05-16T08:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.669500", + "Timestamp": "2024-05-16T08:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.544500", + "Timestamp": "2024-05-16T08:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.211800", + "Timestamp": "2024-05-16T08:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.390500", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.385500", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.260500", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.531400", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.573900", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.568900", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.443900", + "Timestamp": "2024-05-16T08:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.391700", + "Timestamp": "2024-05-16T08:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.361700", + "Timestamp": "2024-05-16T08:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.261700", + "Timestamp": "2024-05-16T08:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.727000", + "Timestamp": "2024-05-16T08:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.722000", + "Timestamp": "2024-05-16T08:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.597000", + "Timestamp": "2024-05-16T08:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.583000", + "Timestamp": "2024-05-16T08:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.578000", + "Timestamp": "2024-05-16T08:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.453000", + "Timestamp": "2024-05-16T08:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.647000", + "Timestamp": "2024-05-16T08:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.272900", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102400", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098700", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042400", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.173100", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.168100", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.043100", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.760700", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.755700", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.630700", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.972500", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.967500", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.842500", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.321800", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.381300", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.376300", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.251300", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.957600", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.304300", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301300", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.244300", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.577200", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.572200", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.447200", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.601700", + "Timestamp": "2024-05-16T08:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.833300", + "Timestamp": "2024-05-16T08:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.828300", + "Timestamp": "2024-05-16T08:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.703300", + "Timestamp": "2024-05-16T08:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.643100", + "Timestamp": "2024-05-16T08:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.989000", + "Timestamp": "2024-05-16T08:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.440900", + "Timestamp": "2024-05-16T08:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.398300", + "Timestamp": "2024-05-16T08:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.393300", + "Timestamp": "2024-05-16T08:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.268300", + "Timestamp": "2024-05-16T08:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120300", + "Timestamp": "2024-05-16T08:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T08:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060300", + "Timestamp": "2024-05-16T08:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.227900", + "Timestamp": "2024-05-16T08:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.222900", + "Timestamp": "2024-05-16T08:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.097900", + "Timestamp": "2024-05-16T08:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.024300", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.517100", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.300400", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.957800", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.952800", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.827800", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.225600", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.221900", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165600", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.092300", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.527000", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.516700", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.511700", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.386700", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.182900", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.618500", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.613500", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.488500", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.666000", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.661000", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.536000", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.330900", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.328500", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.288100", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.177400", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131900", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127900", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071900", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.507900", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.502900", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.377900", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173300", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169600", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113300", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200900", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.197200", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140900", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133500", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129800", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073500", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.563800", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.056800", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.051800", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.926800", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.948100", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.943100", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.818100", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.686500", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.656500", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.556500", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133800", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130100", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073800", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "12.603400", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "12.573400", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "12.473400", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.250300", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.482900", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.477900", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.352900", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.946100", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.941100", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.816100", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.239300", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.946800", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102400", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046100", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.206800", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.201800", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.076800", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.281300", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.520500", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.490500", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.390500", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "15.591500", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "8.883900", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "8.878900", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "8.753900", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.663600", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.658600", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.533600", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.194200", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.189200", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.064200", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.954800", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.949800", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.824800", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.784400", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.779400", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.654400", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139400", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179400", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079400", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.072800", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.278300", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.066500", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.061500", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.936500", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.523300", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.816300", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.201200", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.197500", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141200", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.703300", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.567000", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.562000", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.437000", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.739900", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.130700", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.429700", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.431500", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.427500", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.371500", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.584300", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.579300", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.454300", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.402100", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.843100", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.838100", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.713100", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129300", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125600", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069300", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114800", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111100", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054800", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155300", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151600", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095300", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.166400", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.161400", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.036400", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.232300", + "Timestamp": "2024-05-16T08:09:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219200", + "Timestamp": "2024-05-16T08:09:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209000", + "Timestamp": "2024-05-16T08:09:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.273900", + "Timestamp": "2024-05-16T08:02:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.243900", + "Timestamp": "2024-05-16T08:02:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.143900", + "Timestamp": "2024-05-16T08:02:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.943900", + "Timestamp": "2024-05-16T08:02:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.950400", + "Timestamp": "2024-05-16T08:02:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.945400", + "Timestamp": "2024-05-16T08:02:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.820400", + "Timestamp": "2024-05-16T08:02:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.197100", + "Timestamp": "2024-05-16T08:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.192100", + "Timestamp": "2024-05-16T08:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.067100", + "Timestamp": "2024-05-16T08:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.532200", + "Timestamp": "2024-05-16T08:02:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.580000", + "Timestamp": "2024-05-16T08:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.575000", + "Timestamp": "2024-05-16T08:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.450000", + "Timestamp": "2024-05-16T08:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.694100", + "Timestamp": "2024-05-16T08:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.689100", + "Timestamp": "2024-05-16T08:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.564100", + "Timestamp": "2024-05-16T08:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.258700", + "Timestamp": "2024-05-16T08:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.366600", + "Timestamp": "2024-05-16T08:02:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.391400", + "Timestamp": "2024-05-16T08:02:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.386400", + "Timestamp": "2024-05-16T08:02:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.261400", + "Timestamp": "2024-05-16T08:02:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.558700", + "Timestamp": "2024-05-16T08:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.833600", + "Timestamp": "2024-05-16T08:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.803600", + "Timestamp": "2024-05-16T08:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.703600", + "Timestamp": "2024-05-16T08:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.698500", + "Timestamp": "2024-05-16T08:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.594700", + "Timestamp": "2024-05-16T08:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.441700", + "Timestamp": "2024-05-16T08:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.411700", + "Timestamp": "2024-05-16T08:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.311700", + "Timestamp": "2024-05-16T08:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.946900", + "Timestamp": "2024-05-16T08:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.181000", + "Timestamp": "2024-05-16T08:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.176000", + "Timestamp": "2024-05-16T08:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.051000", + "Timestamp": "2024-05-16T08:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.446400", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.243100", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.264400", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.259400", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134400", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.985900", + "Timestamp": "2024-05-16T08:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.301200", + "Timestamp": "2024-05-16T08:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.296200", + "Timestamp": "2024-05-16T08:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.171200", + "Timestamp": "2024-05-16T08:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.280300", + "Timestamp": "2024-05-16T08:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "9.560700", + "Timestamp": "2024-05-16T08:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "9.530700", + "Timestamp": "2024-05-16T08:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "9.430700", + "Timestamp": "2024-05-16T08:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.447000", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.199900", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.373000", + "Timestamp": "2024-05-16T08:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.172100", + "Timestamp": "2024-05-16T08:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.175100", + "Timestamp": "2024-05-16T08:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.167100", + "Timestamp": "2024-05-16T08:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.170100", + "Timestamp": "2024-05-16T08:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.042100", + "Timestamp": "2024-05-16T08:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.045100", + "Timestamp": "2024-05-16T08:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.980700", + "Timestamp": "2024-05-16T08:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.306500", + "Timestamp": "2024-05-16T08:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.495100", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.490100", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.365100", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.882400", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.733900", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.877400", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.728900", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.752400", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.603900", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.160000", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.178200", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.537800", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.532800", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.407800", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.643500", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.638500", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.513500", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.534300", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.504300", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.404300", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.461500", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.457800", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.401500", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.045600", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.040600", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.915600", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.879200", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.874200", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.749200", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.843800", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.595200", + "Timestamp": "2024-05-16T08:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.590200", + "Timestamp": "2024-05-16T08:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.465200", + "Timestamp": "2024-05-16T08:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.363200", + "Timestamp": "2024-05-16T08:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.241200", + "Timestamp": "2024-05-16T08:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.612000", + "Timestamp": "2024-05-16T08:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.607000", + "Timestamp": "2024-05-16T08:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.482000", + "Timestamp": "2024-05-16T08:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.918700", + "Timestamp": "2024-05-16T08:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.913700", + "Timestamp": "2024-05-16T08:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.788700", + "Timestamp": "2024-05-16T08:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.040000", + "Timestamp": "2024-05-16T08:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.035000", + "Timestamp": "2024-05-16T08:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.910000", + "Timestamp": "2024-05-16T08:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.570300", + "Timestamp": "2024-05-16T08:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.337200", + "Timestamp": "2024-05-16T08:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.307200", + "Timestamp": "2024-05-16T08:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.207200", + "Timestamp": "2024-05-16T08:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159400", + "Timestamp": "2024-05-16T08:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155700", + "Timestamp": "2024-05-16T08:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099400", + "Timestamp": "2024-05-16T08:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.943900", + "Timestamp": "2024-05-16T08:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.938900", + "Timestamp": "2024-05-16T08:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.813900", + "Timestamp": "2024-05-16T08:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.786400", + "Timestamp": "2024-05-16T08:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.486200", + "Timestamp": "2024-05-16T08:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.097000", + "Timestamp": "2024-05-16T08:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.067000", + "Timestamp": "2024-05-16T08:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.967000", + "Timestamp": "2024-05-16T08:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.189500", + "Timestamp": "2024-05-16T08:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.732000", + "Timestamp": "2024-05-16T08:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.056100", + "Timestamp": "2024-05-16T08:02:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.135300", + "Timestamp": "2024-05-16T08:02:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.268000", + "Timestamp": "2024-05-16T08:02:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.702700", + "Timestamp": "2024-05-16T08:02:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.070700", + "Timestamp": "2024-05-16T08:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.373900", + "Timestamp": "2024-05-16T08:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.031200", + "Timestamp": "2024-05-16T08:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.315600", + "Timestamp": "2024-05-16T08:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.329500", + "Timestamp": "2024-05-16T08:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.277800", + "Timestamp": "2024-05-16T08:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.272800", + "Timestamp": "2024-05-16T08:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.147800", + "Timestamp": "2024-05-16T08:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.220400", + "Timestamp": "2024-05-16T08:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.216400", + "Timestamp": "2024-05-16T08:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.160400", + "Timestamp": "2024-05-16T08:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Windows", + "SpotPrice": "5.455000", + "Timestamp": "2024-05-16T08:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.964000", + "Timestamp": "2024-05-16T08:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.959000", + "Timestamp": "2024-05-16T08:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.834000", + "Timestamp": "2024-05-16T08:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.271300", + "Timestamp": "2024-05-16T08:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.576300", + "Timestamp": "2024-05-16T08:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.992200", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.987200", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.862200", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.398800", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.393800", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.268800", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.132400", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.144600", + "Timestamp": "2024-05-16T08:01:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.037500", + "Timestamp": "2024-05-16T08:01:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.694200", + "Timestamp": "2024-05-16T08:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.689200", + "Timestamp": "2024-05-16T08:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.564200", + "Timestamp": "2024-05-16T08:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.678600", + "Timestamp": "2024-05-16T08:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.673600", + "Timestamp": "2024-05-16T08:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.548600", + "Timestamp": "2024-05-16T08:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.088300", + "Timestamp": "2024-05-16T08:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.516400", + "Timestamp": "2024-05-16T08:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.511400", + "Timestamp": "2024-05-16T08:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.386400", + "Timestamp": "2024-05-16T08:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128600", + "Timestamp": "2024-05-16T08:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.019600", + "Timestamp": "2024-05-16T08:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.014600", + "Timestamp": "2024-05-16T08:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.889600", + "Timestamp": "2024-05-16T08:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.306900", + "Timestamp": "2024-05-16T08:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.923600", + "Timestamp": "2024-05-16T08:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.823000", + "Timestamp": "2024-05-16T08:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.132900", + "Timestamp": "2024-05-16T08:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.415600", + "Timestamp": "2024-05-16T08:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.410600", + "Timestamp": "2024-05-16T08:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.285600", + "Timestamp": "2024-05-16T08:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154200", + "Timestamp": "2024-05-16T08:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150500", + "Timestamp": "2024-05-16T08:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094200", + "Timestamp": "2024-05-16T08:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.862300", + "Timestamp": "2024-05-16T08:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.539600", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.534600", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.409600", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048200", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.210900", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.205900", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.080900", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.439300", + "Timestamp": "2024-05-16T08:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.434300", + "Timestamp": "2024-05-16T08:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.309300", + "Timestamp": "2024-05-16T08:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.113600", + "Timestamp": "2024-05-16T08:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.192600", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.187600", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.062600", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.020000", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.015000", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.890000", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.154500", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135000", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131300", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075000", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.545100", + "Timestamp": "2024-05-16T08:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.017400", + "Timestamp": "2024-05-16T08:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.012400", + "Timestamp": "2024-05-16T08:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.887400", + "Timestamp": "2024-05-16T08:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.141700", + "Timestamp": "2024-05-16T08:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.394100", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.389100", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.264100", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130400", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127400", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070400", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.288700", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.265000", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.448800", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108900", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048900", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.732000", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.727000", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.602000", + "Timestamp": "2024-05-16T08:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079700", + "Timestamp": "2024-05-16T08:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119700", + "Timestamp": "2024-05-16T08:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019700", + "Timestamp": "2024-05-16T08:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.277500", + "Timestamp": "2024-05-16T08:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.272500", + "Timestamp": "2024-05-16T08:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.147500", + "Timestamp": "2024-05-16T08:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.456300", + "Timestamp": "2024-05-16T08:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.399600", + "Timestamp": "2024-05-16T08:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.180100", + "Timestamp": "2024-05-16T08:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.176100", + "Timestamp": "2024-05-16T08:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120100", + "Timestamp": "2024-05-16T08:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.416000", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.029200", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.201600", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.197600", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141600", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.194100", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.189100", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.064100", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.950900", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.517500", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.888400", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.883400", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.758400", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.898800", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.893800", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.768800", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.569700", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.566000", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.509700", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128200", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124500", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068200", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.855700", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.850700", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.725700", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.401700", + "Timestamp": "2024-05-16T08:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m1.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079400", + "Timestamp": "2024-05-16T08:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m1.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.049400", + "Timestamp": "2024-05-16T08:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m1.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019400", + "Timestamp": "2024-05-16T08:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.533400", + "Timestamp": "2024-05-16T08:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.528400", + "Timestamp": "2024-05-16T08:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.403400", + "Timestamp": "2024-05-16T08:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.634100", + "Timestamp": "2024-05-16T08:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.629100", + "Timestamp": "2024-05-16T08:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.504100", + "Timestamp": "2024-05-16T08:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.735200", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.705200", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.605200", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.098400", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.093400", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.968400", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.364400", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.359400", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.234400", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.350800", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.855800", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.850800", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.725800", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.496600", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.491600", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.366600", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.166200", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.161200", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.036200", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.396500", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.644200", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.639200", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.514200", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085100", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.056100", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025100", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.091400", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.315100", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.310100", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.185100", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.380200", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.375200", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.250200", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.683400", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.984800", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.979800", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.854800", + "Timestamp": "2024-05-16T08:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.108300", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.103300", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.978300", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.764300", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.759300", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.634300", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.097400", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.867600", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.862600", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.737600", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.795900", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.790900", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.665900", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.139200", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.138600", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.081900", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.060000", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.627500", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.622500", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.497500", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.213100", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.208100", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.083100", + "Timestamp": "2024-05-16T08:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.179600", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.525600", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.059600", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.054600", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.929600", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098700", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095000", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038700", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150200", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050200", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.785700", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.755700", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.655700", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "13.784400", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.458300", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.453300", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.328300", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047300", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.515400", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.510400", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.385400", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.786700", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.756700", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.656700", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.461100", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.456100", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.331100", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.246400", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.286400", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186400", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.004100", + "Timestamp": "2024-05-16T07:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.189400", + "Timestamp": "2024-05-16T07:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185400", + "Timestamp": "2024-05-16T07:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129400", + "Timestamp": "2024-05-16T07:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.095200", + "Timestamp": "2024-05-16T07:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.090200", + "Timestamp": "2024-05-16T07:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.965200", + "Timestamp": "2024-05-16T07:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.534400", + "Timestamp": "2024-05-16T07:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.246100", + "Timestamp": "2024-05-16T07:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.242100", + "Timestamp": "2024-05-16T07:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186100", + "Timestamp": "2024-05-16T07:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.853100", + "Timestamp": "2024-05-16T07:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.849100", + "Timestamp": "2024-05-16T07:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167100", + "Timestamp": "2024-05-16T07:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162100", + "Timestamp": "2024-05-16T07:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037100", + "Timestamp": "2024-05-16T07:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.286800", + "Timestamp": "2024-05-16T07:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.488900", + "Timestamp": "2024-05-16T07:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.060300", + "Timestamp": "2024-05-16T07:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.055300", + "Timestamp": "2024-05-16T07:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.930300", + "Timestamp": "2024-05-16T07:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.534200", + "Timestamp": "2024-05-16T07:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.851400", + "Timestamp": "2024-05-16T07:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.916900", + "Timestamp": "2024-05-16T07:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297400", + "Timestamp": "2024-05-16T07:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.292400", + "Timestamp": "2024-05-16T07:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167400", + "Timestamp": "2024-05-16T07:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156700", + "Timestamp": "2024-05-16T07:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153000", + "Timestamp": "2024-05-16T07:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096700", + "Timestamp": "2024-05-16T07:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.742300", + "Timestamp": "2024-05-16T07:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.737300", + "Timestamp": "2024-05-16T07:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.612300", + "Timestamp": "2024-05-16T07:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.207600", + "Timestamp": "2024-05-16T07:47:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.203900", + "Timestamp": "2024-05-16T07:47:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.147600", + "Timestamp": "2024-05-16T07:47:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.448000", + "Timestamp": "2024-05-16T07:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.443000", + "Timestamp": "2024-05-16T07:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.318000", + "Timestamp": "2024-05-16T07:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.887700", + "Timestamp": "2024-05-16T07:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.156700", + "Timestamp": "2024-05-16T07:47:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "7.223800", + "Timestamp": "2024-05-16T07:47:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "7.060600", + "Timestamp": "2024-05-16T07:47:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.675300", + "Timestamp": "2024-05-16T07:47:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.670300", + "Timestamp": "2024-05-16T07:47:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.545300", + "Timestamp": "2024-05-16T07:47:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.773500", + "Timestamp": "2024-05-16T07:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.492800", + "Timestamp": "2024-05-16T07:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.658400", + "Timestamp": "2024-05-16T07:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.876000", + "Timestamp": "2024-05-16T07:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.306400", + "Timestamp": "2024-05-16T07:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.522700", + "Timestamp": "2024-05-16T07:47:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.517700", + "Timestamp": "2024-05-16T07:47:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.392700", + "Timestamp": "2024-05-16T07:47:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.307800", + "Timestamp": "2024-05-16T07:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.055000", + "Timestamp": "2024-05-16T07:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.379100", + "Timestamp": "2024-05-16T07:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.349100", + "Timestamp": "2024-05-16T07:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.249100", + "Timestamp": "2024-05-16T07:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.616700", + "Timestamp": "2024-05-16T07:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.611700", + "Timestamp": "2024-05-16T07:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.486700", + "Timestamp": "2024-05-16T07:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.182800", + "Timestamp": "2024-05-16T07:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.140800", + "Timestamp": "2024-05-16T07:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.697200", + "Timestamp": "2024-05-16T07:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.692200", + "Timestamp": "2024-05-16T07:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.567200", + "Timestamp": "2024-05-16T07:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.634800", + "Timestamp": "2024-05-16T07:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.487800", + "Timestamp": "2024-05-16T07:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.482800", + "Timestamp": "2024-05-16T07:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.357800", + "Timestamp": "2024-05-16T07:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.121000", + "Timestamp": "2024-05-16T07:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.451300", + "Timestamp": "2024-05-16T07:46:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.446300", + "Timestamp": "2024-05-16T07:46:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.321300", + "Timestamp": "2024-05-16T07:46:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.880900", + "Timestamp": "2024-05-16T07:46:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.076000", + "Timestamp": "2024-05-16T07:46:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "23.830900", + "Timestamp": "2024-05-16T07:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "23.825900", + "Timestamp": "2024-05-16T07:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "23.700900", + "Timestamp": "2024-05-16T07:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.790400", + "Timestamp": "2024-05-16T07:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.498300", + "Timestamp": "2024-05-16T07:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.493300", + "Timestamp": "2024-05-16T07:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.368300", + "Timestamp": "2024-05-16T07:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "13.084500", + "Timestamp": "2024-05-16T07:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "11.959100", + "Timestamp": "2024-05-16T07:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "13.079500", + "Timestamp": "2024-05-16T07:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "11.954100", + "Timestamp": "2024-05-16T07:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "12.954500", + "Timestamp": "2024-05-16T07:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "11.829100", + "Timestamp": "2024-05-16T07:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.068400", + "Timestamp": "2024-05-16T07:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.853100", + "Timestamp": "2024-05-16T07:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.848100", + "Timestamp": "2024-05-16T07:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.723100", + "Timestamp": "2024-05-16T07:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.620000", + "Timestamp": "2024-05-16T07:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.026200", + "Timestamp": "2024-05-16T07:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.079800", + "Timestamp": "2024-05-16T07:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.074800", + "Timestamp": "2024-05-16T07:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.949800", + "Timestamp": "2024-05-16T07:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.531600", + "Timestamp": "2024-05-16T07:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.144500", + "Timestamp": "2024-05-16T07:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.576700", + "Timestamp": "2024-05-16T07:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.027600", + "Timestamp": "2024-05-16T07:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.513300", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.741800", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.736800", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.611800", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.554600", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.549600", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.424600", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.621100", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.616100", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.491100", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.019000", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.078000", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.366000", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.334400", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.329400", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.204400", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.464900", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.057800", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.052800", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.927800", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.054900", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.049900", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.924900", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "f1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.845200", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "f1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.815200", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "f1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.715200", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.240500", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.235500", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.110500", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.460500", + "Timestamp": "2024-05-16T07:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.455500", + "Timestamp": "2024-05-16T07:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.330500", + "Timestamp": "2024-05-16T07:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.155500", + "Timestamp": "2024-05-16T07:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.053300", + "Timestamp": "2024-05-16T07:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.384700", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.379700", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.254700", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.168700", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.290000", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.545600", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.352200", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.347200", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.222200", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.148400", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.908700", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.903700", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.778700", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.307400", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.778800", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.773800", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.648800", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.162600", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.465300", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.435300", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.335300", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.141100", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.136100", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.011100", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.332400", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.327400", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.202400", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.618000", + "Timestamp": "2024-05-16T07:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.134400", + "Timestamp": "2024-05-16T07:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.548600", + "Timestamp": "2024-05-16T07:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.518600", + "Timestamp": "2024-05-16T07:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.418600", + "Timestamp": "2024-05-16T07:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.320700", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.704000", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.699000", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.574000", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.272800", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.023500", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.018500", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.893500", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.438900", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.582000", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.193500", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.189800", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133500", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.594800", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.589800", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.464800", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.392100", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.387100", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.262100", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.731900", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.726900", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.601900", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.393000", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.635800", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.630800", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.505800", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.143200", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.138200", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.013200", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.544400", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.514400", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.414400", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.649000", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.619000", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.519000", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.274200", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131000", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127000", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071000", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.508600", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.603700", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.417700", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.412700", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.287700", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164900", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161200", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.633000", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.628000", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.503000", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.409900", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.404900", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.279900", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.286600", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281600", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156600", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.205100", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.200100", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.075100", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.168700", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.636600", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.631600", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.506600", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.334500", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.330800", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.274500", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.232400", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.227400", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.102400", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.364500", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334500", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.234500", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.044500", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.039500", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.914500", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.092800", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.275600", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129800", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125800", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069800", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.137200", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.132200", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.007200", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.304500", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.283000", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.335600", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.331600", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.275600", + "Timestamp": "2024-05-16T07:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148100", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144400", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.389900", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.536100", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.531100", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.406100", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.210000", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133900", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130200", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073900", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.194200", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.189200", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.064200", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.130300", + "Timestamp": "2024-05-16T07:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.220200", + "Timestamp": "2024-05-16T07:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.260500", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.256800", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200500", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.743500", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.738500", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.613500", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119300", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115300", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059300", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Windows", + "SpotPrice": "10.793600", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.674400", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.669400", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.544400", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069400", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040400", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009400", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.320300", + "Timestamp": "2024-05-16T07:46:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.290300", + "Timestamp": "2024-05-16T07:46:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.190300", + "Timestamp": "2024-05-16T07:46:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.230500", + "Timestamp": "2024-05-16T07:32:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.830000", + "Timestamp": "2024-05-16T07:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.825000", + "Timestamp": "2024-05-16T07:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.700000", + "Timestamp": "2024-05-16T07:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.429600", + "Timestamp": "2024-05-16T07:32:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.424600", + "Timestamp": "2024-05-16T07:32:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.299600", + "Timestamp": "2024-05-16T07:32:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.030000", + "Timestamp": "2024-05-16T07:32:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.199200", + "Timestamp": "2024-05-16T07:32:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.194200", + "Timestamp": "2024-05-16T07:32:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.069200", + "Timestamp": "2024-05-16T07:32:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.919400", + "Timestamp": "2024-05-16T07:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.334400", + "Timestamp": "2024-05-16T07:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.329400", + "Timestamp": "2024-05-16T07:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.204400", + "Timestamp": "2024-05-16T07:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.292500", + "Timestamp": "2024-05-16T07:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T07:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100700", + "Timestamp": "2024-05-16T07:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044400", + "Timestamp": "2024-05-16T07:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.468200", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.463200", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.338200", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200800", + "Timestamp": "2024-05-16T07:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196800", + "Timestamp": "2024-05-16T07:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140800", + "Timestamp": "2024-05-16T07:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.255600", + "Timestamp": "2024-05-16T07:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.251900", + "Timestamp": "2024-05-16T07:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195600", + "Timestamp": "2024-05-16T07:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.906000", + "Timestamp": "2024-05-16T07:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.901000", + "Timestamp": "2024-05-16T07:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.776000", + "Timestamp": "2024-05-16T07:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.950300", + "Timestamp": "2024-05-16T07:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.945300", + "Timestamp": "2024-05-16T07:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.820300", + "Timestamp": "2024-05-16T07:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.106100", + "Timestamp": "2024-05-16T07:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.101100", + "Timestamp": "2024-05-16T07:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.976100", + "Timestamp": "2024-05-16T07:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.664000", + "Timestamp": "2024-05-16T07:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.840700", + "Timestamp": "2024-05-16T07:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.835700", + "Timestamp": "2024-05-16T07:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.710700", + "Timestamp": "2024-05-16T07:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.462100", + "Timestamp": "2024-05-16T07:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.457100", + "Timestamp": "2024-05-16T07:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.332100", + "Timestamp": "2024-05-16T07:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.405900", + "Timestamp": "2024-05-16T07:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.400900", + "Timestamp": "2024-05-16T07:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.275900", + "Timestamp": "2024-05-16T07:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.784000", + "Timestamp": "2024-05-16T07:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.779000", + "Timestamp": "2024-05-16T07:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.654000", + "Timestamp": "2024-05-16T07:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131100", + "Timestamp": "2024-05-16T07:32:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127400", + "Timestamp": "2024-05-16T07:32:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071100", + "Timestamp": "2024-05-16T07:32:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.043500", + "Timestamp": "2024-05-16T07:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.038500", + "Timestamp": "2024-05-16T07:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.913500", + "Timestamp": "2024-05-16T07:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.022200", + "Timestamp": "2024-05-16T07:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.017200", + "Timestamp": "2024-05-16T07:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.892200", + "Timestamp": "2024-05-16T07:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.656100", + "Timestamp": "2024-05-16T07:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.651100", + "Timestamp": "2024-05-16T07:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.526100", + "Timestamp": "2024-05-16T07:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.122100", + "Timestamp": "2024-05-16T07:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.814500", + "Timestamp": "2024-05-16T07:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.135300", + "Timestamp": "2024-05-16T07:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.673500", + "Timestamp": "2024-05-16T07:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.643500", + "Timestamp": "2024-05-16T07:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.543500", + "Timestamp": "2024-05-16T07:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.354800", + "Timestamp": "2024-05-16T07:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.349800", + "Timestamp": "2024-05-16T07:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.224800", + "Timestamp": "2024-05-16T07:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.143200", + "Timestamp": "2024-05-16T07:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.179600", + "Timestamp": "2024-05-16T07:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.987900", + "Timestamp": "2024-05-16T07:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.982900", + "Timestamp": "2024-05-16T07:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.857900", + "Timestamp": "2024-05-16T07:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.853700", + "Timestamp": "2024-05-16T07:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.848700", + "Timestamp": "2024-05-16T07:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.723700", + "Timestamp": "2024-05-16T07:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.868500", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.942300", + "Timestamp": "2024-05-16T07:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.967000", + "Timestamp": "2024-05-16T07:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.541500", + "Timestamp": "2024-05-16T07:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.536500", + "Timestamp": "2024-05-16T07:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.411500", + "Timestamp": "2024-05-16T07:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.171500", + "Timestamp": "2024-05-16T07:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.166500", + "Timestamp": "2024-05-16T07:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.041500", + "Timestamp": "2024-05-16T07:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.360200", + "Timestamp": "2024-05-16T07:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.587500", + "Timestamp": "2024-05-16T07:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.143100", + "Timestamp": "2024-05-16T07:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.443500", + "Timestamp": "2024-05-16T07:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.438500", + "Timestamp": "2024-05-16T07:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.313500", + "Timestamp": "2024-05-16T07:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.412600", + "Timestamp": "2024-05-16T07:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.295400", + "Timestamp": "2024-05-16T07:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.390000", + "Timestamp": "2024-05-16T07:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.973800", + "Timestamp": "2024-05-16T07:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.673700", + "Timestamp": "2024-05-16T07:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.799400", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.769400", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.669400", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.217900", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.212900", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.087900", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.063700", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.058700", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.933700", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.173100", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.193500", + "Timestamp": "2024-05-16T07:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.334500", + "Timestamp": "2024-05-16T07:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.520200", + "Timestamp": "2024-05-16T07:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.024000", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.019000", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.894000", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.134100", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.446100", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.686700", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.879400", + "Timestamp": "2024-05-16T07:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.874400", + "Timestamp": "2024-05-16T07:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.749400", + "Timestamp": "2024-05-16T07:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.500900", + "Timestamp": "2024-05-16T07:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.708500", + "Timestamp": "2024-05-16T07:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.703500", + "Timestamp": "2024-05-16T07:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.578500", + "Timestamp": "2024-05-16T07:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154100", + "Timestamp": "2024-05-16T07:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150100", + "Timestamp": "2024-05-16T07:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094100", + "Timestamp": "2024-05-16T07:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.428100", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.423100", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.298100", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.163600", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118700", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115000", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058700", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.142300", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166800", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161800", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036800", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.524100", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160600", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156900", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100600", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165900", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.205900", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.955900", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.950900", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.825900", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.221300", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.217600", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.161300", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.405200", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.445200", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.345200", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.183800", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.178800", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.053800", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.961500", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.527100", + "Timestamp": "2024-05-16T07:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.740200", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.735200", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.610200", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184200", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180500", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124200", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.659600", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.654600", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.529600", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.109700", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.104700", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.979700", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.368600", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.363600", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.238600", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.406800", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.401800", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.276800", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.620800", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.638200", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "12.477400", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.409700", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.404700", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.279700", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.611400", + "Timestamp": "2024-05-16T07:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.151100", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.730400", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.725400", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.600400", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.205000", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "14.459200", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.630400", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.625400", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.500400", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.966100", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.443700", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.438700", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.313700", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.037900", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.007900", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.907900", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.243900", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.240200", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.183900", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084200", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080500", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024200", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.973100", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.943100", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.843100", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.528900", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.464900", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.523900", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.459900", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.398900", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.334900", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.579600", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.770800", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "20.589600", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.842400", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.837400", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.712400", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.613400", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.608400", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.483400", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.762000", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.757000", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.632000", + "Timestamp": "2024-05-16T07:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.779600", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.774600", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.649600", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.275700", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270700", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145700", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158600", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154900", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098600", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.793700", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.788700", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.663700", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.085800", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.518700", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.513700", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.388700", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.129800", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324800", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294800", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194800", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.109100", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.180200", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.175200", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.050200", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153300", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149600", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093300", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.914200", + "Timestamp": "2024-05-16T07:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.479200", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.474200", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.349200", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.353100", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.348100", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.223100", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.975100", + "Timestamp": "2024-05-16T07:31:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.970100", + "Timestamp": "2024-05-16T07:31:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.845100", + "Timestamp": "2024-05-16T07:31:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.406200", + "Timestamp": "2024-05-16T07:31:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.401200", + "Timestamp": "2024-05-16T07:31:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.276200", + "Timestamp": "2024-05-16T07:31:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077700", + "Timestamp": "2024-05-16T07:20:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.048700", + "Timestamp": "2024-05-16T07:20:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017700", + "Timestamp": "2024-05-16T07:20:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.006600", + "Timestamp": "2024-05-16T07:19:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.637600", + "Timestamp": "2024-05-16T07:17:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.730700", + "Timestamp": "2024-05-16T07:17:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.725700", + "Timestamp": "2024-05-16T07:17:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.600700", + "Timestamp": "2024-05-16T07:17:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.181700", + "Timestamp": "2024-05-16T07:17:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.885300", + "Timestamp": "2024-05-16T07:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.880300", + "Timestamp": "2024-05-16T07:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.755300", + "Timestamp": "2024-05-16T07:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.283000", + "Timestamp": "2024-05-16T07:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.916500", + "Timestamp": "2024-05-16T07:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118700", + "Timestamp": "2024-05-16T07:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115000", + "Timestamp": "2024-05-16T07:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058700", + "Timestamp": "2024-05-16T07:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.214800", + "Timestamp": "2024-05-16T07:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.131200", + "Timestamp": "2024-05-16T07:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.156700", + "Timestamp": "2024-05-16T07:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.170800", + "Timestamp": "2024-05-16T07:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.165800", + "Timestamp": "2024-05-16T07:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.040800", + "Timestamp": "2024-05-16T07:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.333000", + "Timestamp": "2024-05-16T07:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.328000", + "Timestamp": "2024-05-16T07:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.203000", + "Timestamp": "2024-05-16T07:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.359400", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "a1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116100", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "a1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "a1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056100", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081100", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.052100", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021100", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.133600", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.128600", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.003600", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.749300", + "Timestamp": "2024-05-16T07:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.444100", + "Timestamp": "2024-05-16T07:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.439100", + "Timestamp": "2024-05-16T07:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.314100", + "Timestamp": "2024-05-16T07:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.544800", + "Timestamp": "2024-05-16T07:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.539800", + "Timestamp": "2024-05-16T07:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iezn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.414800", + "Timestamp": "2024-05-16T07:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.105700", + "Timestamp": "2024-05-16T07:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.462500", + "Timestamp": "2024-05-16T07:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.457500", + "Timestamp": "2024-05-16T07:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.332500", + "Timestamp": "2024-05-16T07:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.large", + "ProductDescription": "Windows", + "SpotPrice": "0.172000", + "Timestamp": "2024-05-16T07:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.786900", + "Timestamp": "2024-05-16T07:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.781900", + "Timestamp": "2024-05-16T07:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.656900", + "Timestamp": "2024-05-16T07:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095000", + "Timestamp": "2024-05-16T07:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091300", + "Timestamp": "2024-05-16T07:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035000", + "Timestamp": "2024-05-16T07:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.125300", + "Timestamp": "2024-05-16T07:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.136000", + "Timestamp": "2024-05-16T07:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120600", + "Timestamp": "2024-05-16T07:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T07:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060600", + "Timestamp": "2024-05-16T07:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.827600", + "Timestamp": "2024-05-16T07:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.304200", + "Timestamp": "2024-05-16T07:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.579800", + "Timestamp": "2024-05-16T07:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.309300", + "Timestamp": "2024-05-16T07:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.692300", + "Timestamp": "2024-05-16T07:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.687300", + "Timestamp": "2024-05-16T07:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.562300", + "Timestamp": "2024-05-16T07:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.984900", + "Timestamp": "2024-05-16T07:17:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.722300", + "Timestamp": "2024-05-16T07:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.526700", + "Timestamp": "2024-05-16T07:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141100", + "Timestamp": "2024-05-16T07:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138100", + "Timestamp": "2024-05-16T07:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081100", + "Timestamp": "2024-05-16T07:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.259500", + "Timestamp": "2024-05-16T07:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.834900", + "Timestamp": "2024-05-16T07:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.829900", + "Timestamp": "2024-05-16T07:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.704900", + "Timestamp": "2024-05-16T07:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.847100", + "Timestamp": "2024-05-16T07:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.842100", + "Timestamp": "2024-05-16T07:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.717100", + "Timestamp": "2024-05-16T07:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.662200", + "Timestamp": "2024-05-16T07:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.632200", + "Timestamp": "2024-05-16T07:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.532200", + "Timestamp": "2024-05-16T07:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.489900", + "Timestamp": "2024-05-16T07:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.484900", + "Timestamp": "2024-05-16T07:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.359900", + "Timestamp": "2024-05-16T07:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.165000", + "Timestamp": "2024-05-16T07:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.160000", + "Timestamp": "2024-05-16T07:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.035000", + "Timestamp": "2024-05-16T07:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155800", + "Timestamp": "2024-05-16T07:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151800", + "Timestamp": "2024-05-16T07:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095800", + "Timestamp": "2024-05-16T07:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.784100", + "Timestamp": "2024-05-16T07:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.042100", + "Timestamp": "2024-05-16T07:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.037100", + "Timestamp": "2024-05-16T07:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.912100", + "Timestamp": "2024-05-16T07:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.744500", + "Timestamp": "2024-05-16T07:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.739500", + "Timestamp": "2024-05-16T07:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.614500", + "Timestamp": "2024-05-16T07:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.004400", + "Timestamp": "2024-05-16T07:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.422500", + "Timestamp": "2024-05-16T07:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.390200", + "Timestamp": "2024-05-16T07:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.464200", + "Timestamp": "2024-05-16T07:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.459200", + "Timestamp": "2024-05-16T07:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.334200", + "Timestamp": "2024-05-16T07:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.011800", + "Timestamp": "2024-05-16T07:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.463600", + "Timestamp": "2024-05-16T07:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.433600", + "Timestamp": "2024-05-16T07:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.333600", + "Timestamp": "2024-05-16T07:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.232700", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.328200", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.502400", + "Timestamp": "2024-05-16T07:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.974600", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.969600", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.844600", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.721600", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.282300", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078700", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075000", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018700", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.275800", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.909400", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.270800", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.904400", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.145800", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.779400", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.728200", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.040900", + "Timestamp": "2024-05-16T07:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.035900", + "Timestamp": "2024-05-16T07:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.910900", + "Timestamp": "2024-05-16T07:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.471600", + "Timestamp": "2024-05-16T07:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.466600", + "Timestamp": "2024-05-16T07:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.341600", + "Timestamp": "2024-05-16T07:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.972000", + "Timestamp": "2024-05-16T07:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.967000", + "Timestamp": "2024-05-16T07:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.842000", + "Timestamp": "2024-05-16T07:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.569900", + "Timestamp": "2024-05-16T07:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.539900", + "Timestamp": "2024-05-16T07:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.439900", + "Timestamp": "2024-05-16T07:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139700", + "Timestamp": "2024-05-16T07:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136000", + "Timestamp": "2024-05-16T07:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079700", + "Timestamp": "2024-05-16T07:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.196100", + "Timestamp": "2024-05-16T07:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.191100", + "Timestamp": "2024-05-16T07:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.066100", + "Timestamp": "2024-05-16T07:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.880600", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.875600", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.750600", + "Timestamp": "2024-05-16T07:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.025800", + "Timestamp": "2024-05-16T07:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.020800", + "Timestamp": "2024-05-16T07:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.895800", + "Timestamp": "2024-05-16T07:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.490300", + "Timestamp": "2024-05-16T07:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.460300", + "Timestamp": "2024-05-16T07:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.360300", + "Timestamp": "2024-05-16T07:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.391000", + "Timestamp": "2024-05-16T07:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.386000", + "Timestamp": "2024-05-16T07:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.261000", + "Timestamp": "2024-05-16T07:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.175800", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.170800", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.045800", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.521100", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.779100", + "Timestamp": "2024-05-16T07:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.556100", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "f1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.526100", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.426100", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157100", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153400", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.397500", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.437500", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.337500", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.728700", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.723700", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.598700", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.306600", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.466100", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.461100", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.336100", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.160700", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.032700", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.027700", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.902700", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.988700", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158500", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154800", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098500", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.456700", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.451700", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.326700", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "19.313100", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.091900", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.019100", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.014100", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.889100", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.810800", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.780800", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.680800", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.581900", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.576900", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.451900", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.121400", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.091400", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.991400", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.089100", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.059100", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.959100", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.337800", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.180700", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149700", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146000", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089700", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.964600", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.959600", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.834600", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354600", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349600", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224600", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.381900", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.376900", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.251900", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.929800", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.924800", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.799800", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.284200", + "Timestamp": "2024-05-16T07:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.234400", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.229400", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.104400", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.332200", + "Timestamp": "2024-05-16T07:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.160600", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.336800", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.376800", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.276800", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.151700", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.146700", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.021700", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.210600", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.205600", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.080600", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152500", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192500", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092500", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.985800", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.804000", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.799000", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.674000", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.101200", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.096200", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.971200", + "Timestamp": "2024-05-16T07:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.050300", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.045300", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.920300", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.689100", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.684100", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.559100", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.390800", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.385800", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.260800", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146500", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142800", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086500", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.497200", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.492200", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.367200", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.187600", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.749700", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.744700", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.619700", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097600", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093900", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037600", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.322600", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.317600", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.192600", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.147900", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.315500", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.310500", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.185500", + "Timestamp": "2024-05-16T07:16:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.671200", + "Timestamp": "2024-05-16T07:02:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.157400", + "Timestamp": "2024-05-16T07:02:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.152400", + "Timestamp": "2024-05-16T07:02:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.027400", + "Timestamp": "2024-05-16T07:02:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139100", + "Timestamp": "2024-05-16T07:02:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179100", + "Timestamp": "2024-05-16T07:02:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079100", + "Timestamp": "2024-05-16T07:02:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.194600", + "Timestamp": "2024-05-16T07:02:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190600", + "Timestamp": "2024-05-16T07:02:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134600", + "Timestamp": "2024-05-16T07:02:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.091200", + "Timestamp": "2024-05-16T07:02:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.084600", + "Timestamp": "2024-05-16T07:02:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.054600", + "Timestamp": "2024-05-16T07:02:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.954600", + "Timestamp": "2024-05-16T07:02:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.275800", + "Timestamp": "2024-05-16T07:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.270800", + "Timestamp": "2024-05-16T07:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.145800", + "Timestamp": "2024-05-16T07:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "8.556100", + "Timestamp": "2024-05-16T07:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "8.551100", + "Timestamp": "2024-05-16T07:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "8.426100", + "Timestamp": "2024-05-16T07:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.127800", + "Timestamp": "2024-05-16T07:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.839400", + "Timestamp": "2024-05-16T07:02:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.834400", + "Timestamp": "2024-05-16T07:02:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.709400", + "Timestamp": "2024-05-16T07:02:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.183400", + "Timestamp": "2024-05-16T07:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179700", + "Timestamp": "2024-05-16T07:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123400", + "Timestamp": "2024-05-16T07:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.932500", + "Timestamp": "2024-05-16T07:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.927500", + "Timestamp": "2024-05-16T07:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.802500", + "Timestamp": "2024-05-16T07:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.026200", + "Timestamp": "2024-05-16T07:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.971200", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.966200", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.841200", + "Timestamp": "2024-05-16T07:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.078000", + "Timestamp": "2024-05-16T07:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.906200", + "Timestamp": "2024-05-16T07:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.577200", + "Timestamp": "2024-05-16T07:02:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.294300", + "Timestamp": "2024-05-16T07:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.289300", + "Timestamp": "2024-05-16T07:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.164300", + "Timestamp": "2024-05-16T07:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.079300", + "Timestamp": "2024-05-16T07:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.320600", + "Timestamp": "2024-05-16T07:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.315600", + "Timestamp": "2024-05-16T07:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.190600", + "Timestamp": "2024-05-16T07:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.732700", + "Timestamp": "2024-05-16T07:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.727700", + "Timestamp": "2024-05-16T07:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.602700", + "Timestamp": "2024-05-16T07:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.952400", + "Timestamp": "2024-05-16T07:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.947400", + "Timestamp": "2024-05-16T07:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.822400", + "Timestamp": "2024-05-16T07:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.124100", + "Timestamp": "2024-05-16T07:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.564800", + "Timestamp": "2024-05-16T07:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.559800", + "Timestamp": "2024-05-16T07:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.434800", + "Timestamp": "2024-05-16T07:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.003500", + "Timestamp": "2024-05-16T07:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.998500", + "Timestamp": "2024-05-16T07:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.873500", + "Timestamp": "2024-05-16T07:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.987400", + "Timestamp": "2024-05-16T07:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.954000", + "Timestamp": "2024-05-16T07:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.658900", + "Timestamp": "2024-05-16T07:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.221000", + "Timestamp": "2024-05-16T07:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.261000", + "Timestamp": "2024-05-16T07:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.161000", + "Timestamp": "2024-05-16T07:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.371400", + "Timestamp": "2024-05-16T07:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.004900", + "Timestamp": "2024-05-16T07:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.999900", + "Timestamp": "2024-05-16T07:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.874900", + "Timestamp": "2024-05-16T07:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.471100", + "Timestamp": "2024-05-16T07:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.729300", + "Timestamp": "2024-05-16T07:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.907600", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.902600", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.777600", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.293300", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.288300", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.163300", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.208500", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.178500", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.078500", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.382300", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.251600", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.034800", + "Timestamp": "2024-05-16T07:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "f1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.321600", + "Timestamp": "2024-05-16T07:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "f1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.291600", + "Timestamp": "2024-05-16T07:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "f1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.191600", + "Timestamp": "2024-05-16T07:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.352600", + "Timestamp": "2024-05-16T07:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116100", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056100", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.914700", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.884700", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.784700", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.364800", + "Timestamp": "2024-05-16T07:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.055800", + "Timestamp": "2024-05-16T07:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.050800", + "Timestamp": "2024-05-16T07:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.925800", + "Timestamp": "2024-05-16T07:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.137400", + "Timestamp": "2024-05-16T07:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.064400", + "Timestamp": "2024-05-16T07:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.034400", + "Timestamp": "2024-05-16T07:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.934400", + "Timestamp": "2024-05-16T07:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.329300", + "Timestamp": "2024-05-16T07:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.324300", + "Timestamp": "2024-05-16T07:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.199300", + "Timestamp": "2024-05-16T07:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.160300", + "Timestamp": "2024-05-16T07:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.618200", + "Timestamp": "2024-05-16T07:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.911800", + "Timestamp": "2024-05-16T07:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.612700", + "Timestamp": "2024-05-16T07:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.081900", + "Timestamp": "2024-05-16T07:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.076900", + "Timestamp": "2024-05-16T07:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.951900", + "Timestamp": "2024-05-16T07:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.326100", + "Timestamp": "2024-05-16T07:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.945800", + "Timestamp": "2024-05-16T07:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.772500", + "Timestamp": "2024-05-16T07:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T07:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101900", + "Timestamp": "2024-05-16T07:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045600", + "Timestamp": "2024-05-16T07:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.288900", + "Timestamp": "2024-05-16T07:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m1.small", + "ProductDescription": "Windows", + "SpotPrice": "0.046600", + "Timestamp": "2024-05-16T07:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.674100", + "Timestamp": "2024-05-16T07:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.669100", + "Timestamp": "2024-05-16T07:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.544100", + "Timestamp": "2024-05-16T07:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089000", + "Timestamp": "2024-05-16T07:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085300", + "Timestamp": "2024-05-16T07:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029000", + "Timestamp": "2024-05-16T07:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.311000", + "Timestamp": "2024-05-16T07:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.281000", + "Timestamp": "2024-05-16T07:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.181000", + "Timestamp": "2024-05-16T07:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.125000", + "Timestamp": "2024-05-16T07:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.556200", + "Timestamp": "2024-05-16T07:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.799300", + "Timestamp": "2024-05-16T07:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.794300", + "Timestamp": "2024-05-16T07:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.669300", + "Timestamp": "2024-05-16T07:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200500", + "Timestamp": "2024-05-16T07:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196500", + "Timestamp": "2024-05-16T07:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140500", + "Timestamp": "2024-05-16T07:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.367400", + "Timestamp": "2024-05-16T07:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.362400", + "Timestamp": "2024-05-16T07:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.237400", + "Timestamp": "2024-05-16T07:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.332700", + "Timestamp": "2024-05-16T07:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.327700", + "Timestamp": "2024-05-16T07:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.202700", + "Timestamp": "2024-05-16T07:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.418700", + "Timestamp": "2024-05-16T07:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.467100", + "Timestamp": "2024-05-16T07:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.462100", + "Timestamp": "2024-05-16T07:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.337100", + "Timestamp": "2024-05-16T07:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.070600", + "Timestamp": "2024-05-16T07:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.065600", + "Timestamp": "2024-05-16T07:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.940600", + "Timestamp": "2024-05-16T07:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.736200", + "Timestamp": "2024-05-16T07:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.342800", + "Timestamp": "2024-05-16T07:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.312800", + "Timestamp": "2024-05-16T07:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.212800", + "Timestamp": "2024-05-16T07:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134000", + "Timestamp": "2024-05-16T07:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130000", + "Timestamp": "2024-05-16T07:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074000", + "Timestamp": "2024-05-16T07:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.874600", + "Timestamp": "2024-05-16T07:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.468200", + "Timestamp": "2024-05-16T07:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.438200", + "Timestamp": "2024-05-16T07:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.338200", + "Timestamp": "2024-05-16T07:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.333700", + "Timestamp": "2024-05-16T07:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.134800", + "Timestamp": "2024-05-16T07:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.429200", + "Timestamp": "2024-05-16T07:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.758900", + "Timestamp": "2024-05-16T07:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.753900", + "Timestamp": "2024-05-16T07:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.628900", + "Timestamp": "2024-05-16T07:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.419200", + "Timestamp": "2024-05-16T07:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.414200", + "Timestamp": "2024-05-16T07:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.289200", + "Timestamp": "2024-05-16T07:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.296400", + "Timestamp": "2024-05-16T07:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.418300", + "Timestamp": "2024-05-16T07:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.413300", + "Timestamp": "2024-05-16T07:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.288300", + "Timestamp": "2024-05-16T07:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.616200", + "Timestamp": "2024-05-16T07:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.611200", + "Timestamp": "2024-05-16T07:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.486200", + "Timestamp": "2024-05-16T07:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.369700", + "Timestamp": "2024-05-16T07:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.364700", + "Timestamp": "2024-05-16T07:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.239700", + "Timestamp": "2024-05-16T07:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.005200", + "Timestamp": "2024-05-16T07:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.131800", + "Timestamp": "2024-05-16T07:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.169100", + "Timestamp": "2024-05-16T07:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.348800", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.318800", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.218800", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.713100", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.708100", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.583100", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.889600", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.884600", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.759600", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131900", + "Timestamp": "2024-05-16T07:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127900", + "Timestamp": "2024-05-16T07:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071900", + "Timestamp": "2024-05-16T07:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.310000", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.348500", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343500", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.218500", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.202400", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198700", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142400", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097900", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137900", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037900", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.321000", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.318900", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064500", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004500", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004500", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.138000", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.263100", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124300", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095300", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064300", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.285800", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.525900", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167600", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163900", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.060900", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.055900", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.930900", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423200", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.955500", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.062400", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.950500", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.057400", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.825500", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.932400", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.841100", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.811100", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.711100", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.457000", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.427000", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.327000", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.302200", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.402600", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.397600", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.272600", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.615100", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.610100", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.485100", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.367700", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.615200", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.920500", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.166900", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.063900", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.161900", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.058900", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.036900", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.933900", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.887900", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184600", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.224600", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124600", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.347900", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.342900", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.217900", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.743700", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.224800", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.194800", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.094800", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.178500", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.336000", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.332000", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.276000", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.441500", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.436500", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.311500", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.818100", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.881900", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.851900", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.751900", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155300", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151600", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095300", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.225700", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.222000", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165700", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.382200", + "Timestamp": "2024-05-16T07:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.377200", + "Timestamp": "2024-05-16T07:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.252200", + "Timestamp": "2024-05-16T07:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.203700", + "Timestamp": "2024-05-16T06:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198700", + "Timestamp": "2024-05-16T06:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073700", + "Timestamp": "2024-05-16T06:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.215300", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.211600", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.155300", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.039300", + "Timestamp": "2024-05-16T06:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.034300", + "Timestamp": "2024-05-16T06:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.909300", + "Timestamp": "2024-05-16T06:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.149700", + "Timestamp": "2024-05-16T06:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.137200", + "Timestamp": "2024-05-16T06:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.132200", + "Timestamp": "2024-05-16T06:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.007200", + "Timestamp": "2024-05-16T06:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.436400", + "Timestamp": "2024-05-16T06:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.151200", + "Timestamp": "2024-05-16T06:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.189500", + "Timestamp": "2024-05-16T06:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.184500", + "Timestamp": "2024-05-16T06:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.059500", + "Timestamp": "2024-05-16T06:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "f1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.004700", + "Timestamp": "2024-05-16T06:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "f1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.974700", + "Timestamp": "2024-05-16T06:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "f1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.874700", + "Timestamp": "2024-05-16T06:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.362500", + "Timestamp": "2024-05-16T06:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.009700", + "Timestamp": "2024-05-16T06:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.004700", + "Timestamp": "2024-05-16T06:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.879700", + "Timestamp": "2024-05-16T06:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.545600", + "Timestamp": "2024-05-16T06:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.944900", + "Timestamp": "2024-05-16T06:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.914900", + "Timestamp": "2024-05-16T06:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.814900", + "Timestamp": "2024-05-16T06:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.553600", + "Timestamp": "2024-05-16T06:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.543300", + "Timestamp": "2024-05-16T06:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.629700", + "Timestamp": "2024-05-16T06:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.213800", + "Timestamp": "2024-05-16T06:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.623400", + "Timestamp": "2024-05-16T06:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.618400", + "Timestamp": "2024-05-16T06:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.493400", + "Timestamp": "2024-05-16T06:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.441100", + "Timestamp": "2024-05-16T06:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.677500", + "Timestamp": "2024-05-16T06:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m1.small", + "ProductDescription": "Windows", + "SpotPrice": "0.048200", + "Timestamp": "2024-05-16T06:47:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.733500", + "Timestamp": "2024-05-16T06:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.728500", + "Timestamp": "2024-05-16T06:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.603500", + "Timestamp": "2024-05-16T06:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.512700", + "Timestamp": "2024-05-16T06:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.507700", + "Timestamp": "2024-05-16T06:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.382700", + "Timestamp": "2024-05-16T06:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.073100", + "Timestamp": "2024-05-16T06:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128800", + "Timestamp": "2024-05-16T06:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.206700", + "Timestamp": "2024-05-16T06:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.176700", + "Timestamp": "2024-05-16T06:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.076700", + "Timestamp": "2024-05-16T06:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.066000", + "Timestamp": "2024-05-16T06:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.061000", + "Timestamp": "2024-05-16T06:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.936000", + "Timestamp": "2024-05-16T06:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Windows", + "SpotPrice": "28.460300", + "Timestamp": "2024-05-16T06:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.152600", + "Timestamp": "2024-05-16T06:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "14.844200", + "Timestamp": "2024-05-16T06:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.524200", + "Timestamp": "2024-05-16T06:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.851600", + "Timestamp": "2024-05-16T06:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.846600", + "Timestamp": "2024-05-16T06:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "14.087000", + "Timestamp": "2024-05-16T06:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.721600", + "Timestamp": "2024-05-16T06:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.840500", + "Timestamp": "2024-05-16T06:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.835500", + "Timestamp": "2024-05-16T06:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.710500", + "Timestamp": "2024-05-16T06:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.298700", + "Timestamp": "2024-05-16T06:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.852700", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.847700", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.722700", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.129600", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.798300", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.793300", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.668300", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.415100", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.295100", + "Timestamp": "2024-05-16T06:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.265100", + "Timestamp": "2024-05-16T06:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.165100", + "Timestamp": "2024-05-16T06:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.183100", + "Timestamp": "2024-05-16T06:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.766200", + "Timestamp": "2024-05-16T06:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.761200", + "Timestamp": "2024-05-16T06:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.636200", + "Timestamp": "2024-05-16T06:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.961500", + "Timestamp": "2024-05-16T06:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.956500", + "Timestamp": "2024-05-16T06:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.831500", + "Timestamp": "2024-05-16T06:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.428300", + "Timestamp": "2024-05-16T06:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.423300", + "Timestamp": "2024-05-16T06:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.298300", + "Timestamp": "2024-05-16T06:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.205500", + "Timestamp": "2024-05-16T06:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.201500", + "Timestamp": "2024-05-16T06:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145500", + "Timestamp": "2024-05-16T06:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.762500", + "Timestamp": "2024-05-16T06:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146200", + "Timestamp": "2024-05-16T06:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156900", + "Timestamp": "2024-05-16T06:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.186200", + "Timestamp": "2024-05-16T06:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196900", + "Timestamp": "2024-05-16T06:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086200", + "Timestamp": "2024-05-16T06:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096900", + "Timestamp": "2024-05-16T06:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.975100", + "Timestamp": "2024-05-16T06:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.970100", + "Timestamp": "2024-05-16T06:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.845100", + "Timestamp": "2024-05-16T06:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.156000", + "Timestamp": "2024-05-16T06:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.151000", + "Timestamp": "2024-05-16T06:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.026000", + "Timestamp": "2024-05-16T06:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.035500", + "Timestamp": "2024-05-16T06:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.590500", + "Timestamp": "2024-05-16T06:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.585500", + "Timestamp": "2024-05-16T06:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.460500", + "Timestamp": "2024-05-16T06:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.284700", + "Timestamp": "2024-05-16T06:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.279700", + "Timestamp": "2024-05-16T06:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.154700", + "Timestamp": "2024-05-16T06:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098600", + "Timestamp": "2024-05-16T06:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094900", + "Timestamp": "2024-05-16T06:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038600", + "Timestamp": "2024-05-16T06:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.140600", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155100", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151100", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095100", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.676000", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.671000", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.546000", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.249800", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.994600", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.989600", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.864600", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.275000", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.187800", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.744700", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.739700", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.614700", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099800", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096100", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039800", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.192700", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.674000", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.669000", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.544000", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.987100", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.982100", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.857100", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.186800", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.419400", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.389400", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.289400", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.862100", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.857100", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.732100", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.261000", + "Timestamp": "2024-05-16T06:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159500", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155500", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099500", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.281700", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.423800", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.798800", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.709200", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.704200", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.579200", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121000", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117000", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061000", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.432500", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.427500", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.302500", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.567800", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.562800", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.437800", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.781100", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.776100", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.651100", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.351900", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.352000", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.322000", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.222000", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222700", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.149600", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.478700", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473700", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.348700", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.845500", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.067200", + "Timestamp": "2024-05-16T06:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.446900", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.359600", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.354600", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.229600", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.219700", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.216000", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159700", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.224300", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.317300", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.312300", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.187300", + "Timestamp": "2024-05-16T06:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125200", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165200", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065200", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.356000", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.723700", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.693700", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.593700", + "Timestamp": "2024-05-16T06:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.478700", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.526300", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.521300", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.396300", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.305400", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.881200", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.876200", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.751200", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.499800", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.469800", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.369800", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.735200", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.730200", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.605200", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.678700", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "14.106800", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "14.101800", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "13.976800", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.815300", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.512100", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125800", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122100", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065800", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.422700", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.417700", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.292700", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161700", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158000", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.219600", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.215900", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159600", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.716300", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.791500", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T06:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174300", + "Timestamp": "2024-05-16T06:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074300", + "Timestamp": "2024-05-16T06:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Windows", + "SpotPrice": "10.701500", + "Timestamp": "2024-05-16T06:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.828700", + "Timestamp": "2024-05-16T06:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.947300", + "Timestamp": "2024-05-16T06:32:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.291700", + "Timestamp": "2024-05-16T06:32:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.286700", + "Timestamp": "2024-05-16T06:32:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.161700", + "Timestamp": "2024-05-16T06:32:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.012300", + "Timestamp": "2024-05-16T06:32:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.304200", + "Timestamp": "2024-05-16T06:32:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.299200", + "Timestamp": "2024-05-16T06:32:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.174200", + "Timestamp": "2024-05-16T06:32:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.345300", + "Timestamp": "2024-05-16T06:32:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.315300", + "Timestamp": "2024-05-16T06:32:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.215300", + "Timestamp": "2024-05-16T06:32:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.274500", + "Timestamp": "2024-05-16T06:32:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.229700", + "Timestamp": "2024-05-16T06:32:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.224700", + "Timestamp": "2024-05-16T06:32:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.099700", + "Timestamp": "2024-05-16T06:32:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.164000", + "Timestamp": "2024-05-16T06:32:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.300700", + "Timestamp": "2024-05-16T06:32:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.219400", + "Timestamp": "2024-05-16T06:32:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.368700", + "Timestamp": "2024-05-16T06:32:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170800", + "Timestamp": "2024-05-16T06:32:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166800", + "Timestamp": "2024-05-16T06:32:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T06:32:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.071600", + "Timestamp": "2024-05-16T06:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.066600", + "Timestamp": "2024-05-16T06:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.941600", + "Timestamp": "2024-05-16T06:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.686600", + "Timestamp": "2024-05-16T06:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "a1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072500", + "Timestamp": "2024-05-16T06:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "a1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043500", + "Timestamp": "2024-05-16T06:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "a1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012500", + "Timestamp": "2024-05-16T06:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.179700", + "Timestamp": "2024-05-16T06:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083500", + "Timestamp": "2024-05-16T06:32:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079800", + "Timestamp": "2024-05-16T06:32:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023500", + "Timestamp": "2024-05-16T06:32:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.713300", + "Timestamp": "2024-05-16T06:32:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.708300", + "Timestamp": "2024-05-16T06:32:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.583300", + "Timestamp": "2024-05-16T06:32:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.587000", + "Timestamp": "2024-05-16T06:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.582000", + "Timestamp": "2024-05-16T06:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.457000", + "Timestamp": "2024-05-16T06:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.476600", + "Timestamp": "2024-05-16T06:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.472900", + "Timestamp": "2024-05-16T06:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.416600", + "Timestamp": "2024-05-16T06:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "12.597500", + "Timestamp": "2024-05-16T06:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.453700", + "Timestamp": "2024-05-16T06:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.448700", + "Timestamp": "2024-05-16T06:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.323700", + "Timestamp": "2024-05-16T06:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.166400", + "Timestamp": "2024-05-16T06:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.688500", + "Timestamp": "2024-05-16T06:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.683500", + "Timestamp": "2024-05-16T06:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.558500", + "Timestamp": "2024-05-16T06:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.045000", + "Timestamp": "2024-05-16T06:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.040000", + "Timestamp": "2024-05-16T06:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.915000", + "Timestamp": "2024-05-16T06:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.338700", + "Timestamp": "2024-05-16T06:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.468000", + "Timestamp": "2024-05-16T06:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362900", + "Timestamp": "2024-05-16T06:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.402900", + "Timestamp": "2024-05-16T06:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.302900", + "Timestamp": "2024-05-16T06:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.203200", + "Timestamp": "2024-05-16T06:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.893600", + "Timestamp": "2024-05-16T06:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.761500", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.756500", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.631500", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.245400", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.144500", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.250100", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.330900", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.245100", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.325900", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.120100", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.200900", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.662200", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.657200", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.532200", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.249100", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.245400", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.189100", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.962300", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.957300", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.832300", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.016100", + "Timestamp": "2024-05-16T06:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.011100", + "Timestamp": "2024-05-16T06:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.886100", + "Timestamp": "2024-05-16T06:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.573300", + "Timestamp": "2024-05-16T06:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.543300", + "Timestamp": "2024-05-16T06:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.443300", + "Timestamp": "2024-05-16T06:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294600", + "Timestamp": "2024-05-16T06:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289600", + "Timestamp": "2024-05-16T06:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164600", + "Timestamp": "2024-05-16T06:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.870700", + "Timestamp": "2024-05-16T06:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.135600", + "Timestamp": "2024-05-16T06:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.105600", + "Timestamp": "2024-05-16T06:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.005600", + "Timestamp": "2024-05-16T06:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.507800", + "Timestamp": "2024-05-16T06:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.858200", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.531500", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.366300", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.013900", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.819000", + "Timestamp": "2024-05-16T06:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.141000", + "Timestamp": "2024-05-16T06:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.808800", + "Timestamp": "2024-05-16T06:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.333600", + "Timestamp": "2024-05-16T06:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.328600", + "Timestamp": "2024-05-16T06:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.203600", + "Timestamp": "2024-05-16T06:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.460900", + "Timestamp": "2024-05-16T06:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.500900", + "Timestamp": "2024-05-16T06:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.400900", + "Timestamp": "2024-05-16T06:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168600", + "Timestamp": "2024-05-16T06:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.208600", + "Timestamp": "2024-05-16T06:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-16T06:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118600", + "Timestamp": "2024-05-16T06:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114900", + "Timestamp": "2024-05-16T06:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058600", + "Timestamp": "2024-05-16T06:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.899500", + "Timestamp": "2024-05-16T06:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.894500", + "Timestamp": "2024-05-16T06:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.769500", + "Timestamp": "2024-05-16T06:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.413300", + "Timestamp": "2024-05-16T06:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.409300", + "Timestamp": "2024-05-16T06:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.353300", + "Timestamp": "2024-05-16T06:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.267000", + "Timestamp": "2024-05-16T06:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.262000", + "Timestamp": "2024-05-16T06:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.137000", + "Timestamp": "2024-05-16T06:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087900", + "Timestamp": "2024-05-16T06:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.058900", + "Timestamp": "2024-05-16T06:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027900", + "Timestamp": "2024-05-16T06:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139600", + "Timestamp": "2024-05-16T06:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179600", + "Timestamp": "2024-05-16T06:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079600", + "Timestamp": "2024-05-16T06:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.660500", + "Timestamp": "2024-05-16T06:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.655500", + "Timestamp": "2024-05-16T06:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.530500", + "Timestamp": "2024-05-16T06:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.469100", + "Timestamp": "2024-05-16T06:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.268600", + "Timestamp": "2024-05-16T06:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.338000", + "Timestamp": "2024-05-16T06:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.333000", + "Timestamp": "2024-05-16T06:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.208000", + "Timestamp": "2024-05-16T06:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.365500", + "Timestamp": "2024-05-16T06:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.360500", + "Timestamp": "2024-05-16T06:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235500", + "Timestamp": "2024-05-16T06:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.960700", + "Timestamp": "2024-05-16T06:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.433400", + "Timestamp": "2024-05-16T06:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.597800", + "Timestamp": "2024-05-16T06:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.383500", + "Timestamp": "2024-05-16T06:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.142700", + "Timestamp": "2024-05-16T06:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.161700", + "Timestamp": "2024-05-16T06:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149000", + "Timestamp": "2024-05-16T06:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.189000", + "Timestamp": "2024-05-16T06:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089000", + "Timestamp": "2024-05-16T06:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069300", + "Timestamp": "2024-05-16T06:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040600", + "Timestamp": "2024-05-16T06:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009300", + "Timestamp": "2024-05-16T06:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.300200", + "Timestamp": "2024-05-16T06:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.032900", + "Timestamp": "2024-05-16T06:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.295200", + "Timestamp": "2024-05-16T06:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.027900", + "Timestamp": "2024-05-16T06:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.170200", + "Timestamp": "2024-05-16T06:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.902900", + "Timestamp": "2024-05-16T06:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.593000", + "Timestamp": "2024-05-16T06:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.588000", + "Timestamp": "2024-05-16T06:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.463000", + "Timestamp": "2024-05-16T06:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.391600", + "Timestamp": "2024-05-16T06:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.428000", + "Timestamp": "2024-05-16T06:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.239500", + "Timestamp": "2024-05-16T06:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.000900", + "Timestamp": "2024-05-16T06:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.324300", + "Timestamp": "2024-05-16T06:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.487700", + "Timestamp": "2024-05-16T06:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.556900", + "Timestamp": "2024-05-16T06:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.046100", + "Timestamp": "2024-05-16T06:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.041100", + "Timestamp": "2024-05-16T06:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.916100", + "Timestamp": "2024-05-16T06:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.240000", + "Timestamp": "2024-05-16T06:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.236300", + "Timestamp": "2024-05-16T06:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180000", + "Timestamp": "2024-05-16T06:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.438800", + "Timestamp": "2024-05-16T06:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.408800", + "Timestamp": "2024-05-16T06:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.308800", + "Timestamp": "2024-05-16T06:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.170300", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.423000", + "Timestamp": "2024-05-16T06:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135100", + "Timestamp": "2024-05-16T06:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131400", + "Timestamp": "2024-05-16T06:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075100", + "Timestamp": "2024-05-16T06:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.398300", + "Timestamp": "2024-05-16T06:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.072700", + "Timestamp": "2024-05-16T06:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.196200", + "Timestamp": "2024-05-16T06:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192500", + "Timestamp": "2024-05-16T06:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136200", + "Timestamp": "2024-05-16T06:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.601500", + "Timestamp": "2024-05-16T06:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.596500", + "Timestamp": "2024-05-16T06:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.471500", + "Timestamp": "2024-05-16T06:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.494300", + "Timestamp": "2024-05-16T06:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.508500", + "Timestamp": "2024-05-16T06:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.743400", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.738400", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.613400", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.476000", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.471000", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.346000", + "Timestamp": "2024-05-16T06:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.227600", + "Timestamp": "2024-05-16T06:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.322800", + "Timestamp": "2024-05-16T06:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.053800", + "Timestamp": "2024-05-16T06:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.262700", + "Timestamp": "2024-05-16T06:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.207500", + "Timestamp": "2024-05-16T06:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.257700", + "Timestamp": "2024-05-16T06:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.202500", + "Timestamp": "2024-05-16T06:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.132700", + "Timestamp": "2024-05-16T06:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.077500", + "Timestamp": "2024-05-16T06:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.467500", + "Timestamp": "2024-05-16T06:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.462500", + "Timestamp": "2024-05-16T06:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.337500", + "Timestamp": "2024-05-16T06:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101100", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097400", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041100", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.861900", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.856900", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.731900", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.656400", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.651400", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.526400", + "Timestamp": "2024-05-16T06:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145600", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185600", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085600", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.085200", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.452400", + "Timestamp": "2024-05-16T06:28:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.447400", + "Timestamp": "2024-05-16T06:28:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.322400", + "Timestamp": "2024-05-16T06:28:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.016100", + "Timestamp": "2024-05-16T06:28:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.001900", + "Timestamp": "2024-05-16T06:28:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "16.066000", + "Timestamp": "2024-05-16T06:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.247500", + "Timestamp": "2024-05-16T06:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.745100", + "Timestamp": "2024-05-16T06:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.205900", + "Timestamp": "2024-05-16T06:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.200900", + "Timestamp": "2024-05-16T06:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.075900", + "Timestamp": "2024-05-16T06:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103600", + "Timestamp": "2024-05-16T06:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099900", + "Timestamp": "2024-05-16T06:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043600", + "Timestamp": "2024-05-16T06:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.290800", + "Timestamp": "2024-05-16T06:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.288400", + "Timestamp": "2024-05-16T06:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.258400", + "Timestamp": "2024-05-16T06:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.158400", + "Timestamp": "2024-05-16T06:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.560300", + "Timestamp": "2024-05-16T06:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.530500", + "Timestamp": "2024-05-16T06:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.987100", + "Timestamp": "2024-05-16T06:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278500", + "Timestamp": "2024-05-16T06:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273500", + "Timestamp": "2024-05-16T06:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148500", + "Timestamp": "2024-05-16T06:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.264300", + "Timestamp": "2024-05-16T06:17:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120500", + "Timestamp": "2024-05-16T06:17:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116800", + "Timestamp": "2024-05-16T06:17:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060500", + "Timestamp": "2024-05-16T06:17:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.542500", + "Timestamp": "2024-05-16T06:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.533100", + "Timestamp": "2024-05-16T06:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.503100", + "Timestamp": "2024-05-16T06:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.403100", + "Timestamp": "2024-05-16T06:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.447400", + "Timestamp": "2024-05-16T06:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.424800", + "Timestamp": "2024-05-16T06:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.897500", + "Timestamp": "2024-05-16T06:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.892500", + "Timestamp": "2024-05-16T06:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.767500", + "Timestamp": "2024-05-16T06:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.905000", + "Timestamp": "2024-05-16T06:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.055000", + "Timestamp": "2024-05-16T06:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.050000", + "Timestamp": "2024-05-16T06:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.925000", + "Timestamp": "2024-05-16T06:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.365400", + "Timestamp": "2024-05-16T06:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.360400", + "Timestamp": "2024-05-16T06:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.235400", + "Timestamp": "2024-05-16T06:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.378400", + "Timestamp": "2024-05-16T06:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.373400", + "Timestamp": "2024-05-16T06:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.248400", + "Timestamp": "2024-05-16T06:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.258400", + "Timestamp": "2024-05-16T06:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.141100", + "Timestamp": "2024-05-16T06:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.111100", + "Timestamp": "2024-05-16T06:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.011100", + "Timestamp": "2024-05-16T06:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.671800", + "Timestamp": "2024-05-16T06:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.666800", + "Timestamp": "2024-05-16T06:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.541800", + "Timestamp": "2024-05-16T06:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.189200", + "Timestamp": "2024-05-16T06:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185500", + "Timestamp": "2024-05-16T06:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129200", + "Timestamp": "2024-05-16T06:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.709100", + "Timestamp": "2024-05-16T06:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.695600", + "Timestamp": "2024-05-16T06:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.456700", + "Timestamp": "2024-05-16T06:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.955200", + "Timestamp": "2024-05-16T06:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.950200", + "Timestamp": "2024-05-16T06:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.825200", + "Timestamp": "2024-05-16T06:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168600", + "Timestamp": "2024-05-16T06:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164900", + "Timestamp": "2024-05-16T06:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-16T06:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077700", + "Timestamp": "2024-05-16T06:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.048700", + "Timestamp": "2024-05-16T06:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017700", + "Timestamp": "2024-05-16T06:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.293400", + "Timestamp": "2024-05-16T06:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.288400", + "Timestamp": "2024-05-16T06:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.163400", + "Timestamp": "2024-05-16T06:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.129800", + "Timestamp": "2024-05-16T06:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.638400", + "Timestamp": "2024-05-16T06:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.733700", + "Timestamp": "2024-05-16T06:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.728700", + "Timestamp": "2024-05-16T06:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.603700", + "Timestamp": "2024-05-16T06:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.592800", + "Timestamp": "2024-05-16T06:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.777000", + "Timestamp": "2024-05-16T06:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.772000", + "Timestamp": "2024-05-16T06:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.647000", + "Timestamp": "2024-05-16T06:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134800", + "Timestamp": "2024-05-16T06:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131100", + "Timestamp": "2024-05-16T06:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074800", + "Timestamp": "2024-05-16T06:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.945500", + "Timestamp": "2024-05-16T06:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.940500", + "Timestamp": "2024-05-16T06:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.815500", + "Timestamp": "2024-05-16T06:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.593100", + "Timestamp": "2024-05-16T06:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.485400", + "Timestamp": "2024-05-16T06:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.569900", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.965500", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.960500", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.835500", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.858800", + "Timestamp": "2024-05-16T06:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.828800", + "Timestamp": "2024-05-16T06:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.728800", + "Timestamp": "2024-05-16T06:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.780900", + "Timestamp": "2024-05-16T06:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.750900", + "Timestamp": "2024-05-16T06:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.650900", + "Timestamp": "2024-05-16T06:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.311300", + "Timestamp": "2024-05-16T06:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.306300", + "Timestamp": "2024-05-16T06:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.181300", + "Timestamp": "2024-05-16T06:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.493400", + "Timestamp": "2024-05-16T06:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.155000", + "Timestamp": "2024-05-16T06:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.467000", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.462000", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.337000", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.149800", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.181400", + "Timestamp": "2024-05-16T06:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.176400", + "Timestamp": "2024-05-16T06:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.051400", + "Timestamp": "2024-05-16T06:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.825800", + "Timestamp": "2024-05-16T06:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.527600", + "Timestamp": "2024-05-16T06:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.988500", + "Timestamp": "2024-05-16T06:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.193200", + "Timestamp": "2024-05-16T06:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.189500", + "Timestamp": "2024-05-16T06:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133200", + "Timestamp": "2024-05-16T06:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.763200", + "Timestamp": "2024-05-16T06:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.758200", + "Timestamp": "2024-05-16T06:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.633200", + "Timestamp": "2024-05-16T06:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.438400", + "Timestamp": "2024-05-16T06:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.745300", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.740300", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.615300", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160100", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156100", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100100", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.610000", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.541900", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.536900", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.411900", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.272200", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142100", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135500", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138400", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131800", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082100", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075500", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.550700", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.832200", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.827200", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.702200", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.525000", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.520000", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.395000", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "9.620000", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "9.615000", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "9.490000", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.357000", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.352000", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.227000", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.447500", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.442500", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.317500", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.138500", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.385300", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.255500", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.279300", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.274300", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149300", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.415600", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.410600", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.285600", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.043100", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.353000", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.348000", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.223000", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.279700", + "Timestamp": "2024-05-16T06:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.249000", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.587000", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.582000", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.457000", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.621200", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.377800", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.210700", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.372800", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.205700", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.247800", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.080700", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101600", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045600", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.973700", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.968700", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.843700", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.344100", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.314100", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.214100", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "14.708000", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.286300", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.832500", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.740000", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.735000", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.610000", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076300", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047300", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016300", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129900", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125900", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069900", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.775300", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.053800", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.141300", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.830500", + "Timestamp": "2024-05-16T06:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.825500", + "Timestamp": "2024-05-16T06:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.700500", + "Timestamp": "2024-05-16T06:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.460100", + "Timestamp": "2024-05-16T06:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.557300", + "Timestamp": "2024-05-16T06:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.756600", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.751600", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.626600", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.373000", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.029500", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.024500", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.899500", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.608500", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.104700", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.074700", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.974700", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.256800", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.003300", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.973300", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.873300", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.086300", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167000", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163000", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107000", + "Timestamp": "2024-05-16T06:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.221100", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.466400", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.461400", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.336400", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Windows", + "SpotPrice": "10.782300", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.600400", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.570400", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.470400", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.507300", + "Timestamp": "2024-05-16T06:16:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.477300", + "Timestamp": "2024-05-16T06:16:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.377300", + "Timestamp": "2024-05-16T06:16:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.142000", + "Timestamp": "2024-05-16T06:16:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "18.496000", + "Timestamp": "2024-05-16T06:07:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.138700", + "Timestamp": "2024-05-16T06:02:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.794200", + "Timestamp": "2024-05-16T06:02:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.789200", + "Timestamp": "2024-05-16T06:02:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.664200", + "Timestamp": "2024-05-16T06:02:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.468800", + "Timestamp": "2024-05-16T06:02:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.438800", + "Timestamp": "2024-05-16T06:02:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.338800", + "Timestamp": "2024-05-16T06:02:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.957600", + "Timestamp": "2024-05-16T06:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.927600", + "Timestamp": "2024-05-16T06:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.827600", + "Timestamp": "2024-05-16T06:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.367000", + "Timestamp": "2024-05-16T06:02:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.275800", + "Timestamp": "2024-05-16T06:02:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.270800", + "Timestamp": "2024-05-16T06:02:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.145800", + "Timestamp": "2024-05-16T06:02:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "9.889400", + "Timestamp": "2024-05-16T06:02:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "9.884400", + "Timestamp": "2024-05-16T06:02:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "9.759400", + "Timestamp": "2024-05-16T06:02:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.666600", + "Timestamp": "2024-05-16T06:02:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.743600", + "Timestamp": "2024-05-16T06:02:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.738600", + "Timestamp": "2024-05-16T06:02:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.613600", + "Timestamp": "2024-05-16T06:02:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.347400", + "Timestamp": "2024-05-16T06:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T06:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099300", + "Timestamp": "2024-05-16T06:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043000", + "Timestamp": "2024-05-16T06:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.458100", + "Timestamp": "2024-05-16T06:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.473400", + "Timestamp": "2024-05-16T06:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.962000", + "Timestamp": "2024-05-16T06:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T06:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T06:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052100", + "Timestamp": "2024-05-16T06:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.967100", + "Timestamp": "2024-05-16T06:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.962100", + "Timestamp": "2024-05-16T06:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.837100", + "Timestamp": "2024-05-16T06:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.150500", + "Timestamp": "2024-05-16T06:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.253400", + "Timestamp": "2024-05-16T06:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-16T06:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T06:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054500", + "Timestamp": "2024-05-16T06:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.606000", + "Timestamp": "2024-05-16T06:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.475900", + "Timestamp": "2024-05-16T06:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.531400", + "Timestamp": "2024-05-16T06:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.526400", + "Timestamp": "2024-05-16T06:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.401400", + "Timestamp": "2024-05-16T06:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.319700", + "Timestamp": "2024-05-16T06:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.618900", + "Timestamp": "2024-05-16T06:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.613900", + "Timestamp": "2024-05-16T06:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.488900", + "Timestamp": "2024-05-16T06:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.352100", + "Timestamp": "2024-05-16T06:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.664500", + "Timestamp": "2024-05-16T06:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "13.195100", + "Timestamp": "2024-05-16T06:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "13.190100", + "Timestamp": "2024-05-16T06:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "p3dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "13.065100", + "Timestamp": "2024-05-16T06:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124800", + "Timestamp": "2024-05-16T06:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.192400", + "Timestamp": "2024-05-16T06:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.786200", + "Timestamp": "2024-05-16T06:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.781200", + "Timestamp": "2024-05-16T06:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.656200", + "Timestamp": "2024-05-16T06:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.366300", + "Timestamp": "2024-05-16T06:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.481700", + "Timestamp": "2024-05-16T06:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.937500", + "Timestamp": "2024-05-16T06:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.932500", + "Timestamp": "2024-05-16T06:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.807500", + "Timestamp": "2024-05-16T06:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.286500", + "Timestamp": "2024-05-16T06:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.269000", + "Timestamp": "2024-05-16T06:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265300", + "Timestamp": "2024-05-16T06:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.209000", + "Timestamp": "2024-05-16T06:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.850800", + "Timestamp": "2024-05-16T06:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141500", + "Timestamp": "2024-05-16T06:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137800", + "Timestamp": "2024-05-16T06:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081500", + "Timestamp": "2024-05-16T06:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.590500", + "Timestamp": "2024-05-16T06:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.325500", + "Timestamp": "2024-05-16T06:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.320500", + "Timestamp": "2024-05-16T06:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195500", + "Timestamp": "2024-05-16T06:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.184100", + "Timestamp": "2024-05-16T06:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278000", + "Timestamp": "2024-05-16T06:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273000", + "Timestamp": "2024-05-16T06:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148000", + "Timestamp": "2024-05-16T06:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.585200", + "Timestamp": "2024-05-16T06:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.368000", + "Timestamp": "2024-05-16T06:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.363000", + "Timestamp": "2024-05-16T06:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.238000", + "Timestamp": "2024-05-16T06:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.250700", + "Timestamp": "2024-05-16T06:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.245700", + "Timestamp": "2024-05-16T06:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.120700", + "Timestamp": "2024-05-16T06:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.430600", + "Timestamp": "2024-05-16T06:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.425600", + "Timestamp": "2024-05-16T06:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.300600", + "Timestamp": "2024-05-16T06:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.388600", + "Timestamp": "2024-05-16T06:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.358600", + "Timestamp": "2024-05-16T06:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.258600", + "Timestamp": "2024-05-16T06:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.135900", + "Timestamp": "2024-05-16T06:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091300", + "Timestamp": "2024-05-16T06:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087600", + "Timestamp": "2024-05-16T06:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031300", + "Timestamp": "2024-05-16T06:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.118400", + "Timestamp": "2024-05-16T06:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.740600", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.735600", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.610600", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.172400", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307700", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302700", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177700", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.560200", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.534600", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.555200", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.529600", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.430200", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.404600", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.783200", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.169800", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.164800", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.039800", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.644600", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.639600", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.514600", + "Timestamp": "2024-05-16T06:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.954700", + "Timestamp": "2024-05-16T06:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.737200", + "Timestamp": "2024-05-16T06:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.732200", + "Timestamp": "2024-05-16T06:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.607200", + "Timestamp": "2024-05-16T06:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.586700", + "Timestamp": "2024-05-16T06:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.930500", + "Timestamp": "2024-05-16T06:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.925500", + "Timestamp": "2024-05-16T06:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.800500", + "Timestamp": "2024-05-16T06:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.394700", + "Timestamp": "2024-05-16T06:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.389700", + "Timestamp": "2024-05-16T06:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.264700", + "Timestamp": "2024-05-16T06:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.647400", + "Timestamp": "2024-05-16T06:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.204700", + "Timestamp": "2024-05-16T06:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.200700", + "Timestamp": "2024-05-16T06:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144700", + "Timestamp": "2024-05-16T06:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.631400", + "Timestamp": "2024-05-16T06:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.626400", + "Timestamp": "2024-05-16T06:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.501400", + "Timestamp": "2024-05-16T06:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.569000", + "Timestamp": "2024-05-16T06:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.564000", + "Timestamp": "2024-05-16T06:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.439000", + "Timestamp": "2024-05-16T06:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.562500", + "Timestamp": "2024-05-16T06:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.557500", + "Timestamp": "2024-05-16T06:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.432500", + "Timestamp": "2024-05-16T06:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.954400", + "Timestamp": "2024-05-16T06:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.285100", + "Timestamp": "2024-05-16T06:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.255100", + "Timestamp": "2024-05-16T06:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.155100", + "Timestamp": "2024-05-16T06:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.141900", + "Timestamp": "2024-05-16T06:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.500500", + "Timestamp": "2024-05-16T06:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.139400", + "Timestamp": "2024-05-16T06:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.134400", + "Timestamp": "2024-05-16T06:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.009400", + "Timestamp": "2024-05-16T06:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.082400", + "Timestamp": "2024-05-16T06:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.486700", + "Timestamp": "2024-05-16T06:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.481700", + "Timestamp": "2024-05-16T06:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.356700", + "Timestamp": "2024-05-16T06:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.177400", + "Timestamp": "2024-05-16T06:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.172400", + "Timestamp": "2024-05-16T06:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.047400", + "Timestamp": "2024-05-16T06:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.031200", + "Timestamp": "2024-05-16T06:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.572000", + "Timestamp": "2024-05-16T06:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.567000", + "Timestamp": "2024-05-16T06:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.442000", + "Timestamp": "2024-05-16T06:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.540300", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.535300", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.410300", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.266700", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.261700", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.136700", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.794200", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.789200", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.664200", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.389000", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.384000", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.259000", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.249100", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042900", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.467400", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.437400", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.337400", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-16T06:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-16T06:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053000", + "Timestamp": "2024-05-16T06:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.475800", + "Timestamp": "2024-05-16T06:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.470800", + "Timestamp": "2024-05-16T06:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.345800", + "Timestamp": "2024-05-16T06:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.503700", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.498700", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.373700", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.367000", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.362000", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.237000", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "14.227700", + "Timestamp": "2024-05-16T06:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.260300", + "Timestamp": "2024-05-16T06:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.206100", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.271600", + "Timestamp": "2024-05-16T06:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.144200", + "Timestamp": "2024-05-16T06:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.035200", + "Timestamp": "2024-05-16T06:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.118000", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.075800", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.070800", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.945800", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.396400", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.840100", + "Timestamp": "2024-05-16T06:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.835100", + "Timestamp": "2024-05-16T06:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.710100", + "Timestamp": "2024-05-16T06:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.206000", + "Timestamp": "2024-05-16T05:56:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "h1.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.176000", + "Timestamp": "2024-05-16T05:56:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.076000", + "Timestamp": "2024-05-16T05:56:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.548000", + "Timestamp": "2024-05-16T05:56:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064300", + "Timestamp": "2024-05-16T05:49:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004300", + "Timestamp": "2024-05-16T05:49:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004300", + "Timestamp": "2024-05-16T05:49:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.249000", + "Timestamp": "2024-05-16T05:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.602100", + "Timestamp": "2024-05-16T05:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.280600", + "Timestamp": "2024-05-16T05:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276900", + "Timestamp": "2024-05-16T05:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.220600", + "Timestamp": "2024-05-16T05:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.072900", + "Timestamp": "2024-05-16T05:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134600", + "Timestamp": "2024-05-16T05:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130900", + "Timestamp": "2024-05-16T05:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074600", + "Timestamp": "2024-05-16T05:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.047300", + "Timestamp": "2024-05-16T05:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.042300", + "Timestamp": "2024-05-16T05:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.917300", + "Timestamp": "2024-05-16T05:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.434700", + "Timestamp": "2024-05-16T05:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.429700", + "Timestamp": "2024-05-16T05:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.304700", + "Timestamp": "2024-05-16T05:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.967800", + "Timestamp": "2024-05-16T05:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.962800", + "Timestamp": "2024-05-16T05:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.837800", + "Timestamp": "2024-05-16T05:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.234500", + "Timestamp": "2024-05-16T05:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.130400", + "Timestamp": "2024-05-16T05:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.125400", + "Timestamp": "2024-05-16T05:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.000400", + "Timestamp": "2024-05-16T05:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.916900", + "Timestamp": "2024-05-16T05:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.170000", + "Timestamp": "2024-05-16T05:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.294200", + "Timestamp": "2024-05-16T05:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.908700", + "Timestamp": "2024-05-16T05:47:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.903700", + "Timestamp": "2024-05-16T05:47:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.778700", + "Timestamp": "2024-05-16T05:47:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.138100", + "Timestamp": "2024-05-16T05:47:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.611200", + "Timestamp": "2024-05-16T05:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.606200", + "Timestamp": "2024-05-16T05:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.481200", + "Timestamp": "2024-05-16T05:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.583500", + "Timestamp": "2024-05-16T05:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "20.121800", + "Timestamp": "2024-05-16T05:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.111600", + "Timestamp": "2024-05-16T05:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.314300", + "Timestamp": "2024-05-16T05:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174500", + "Timestamp": "2024-05-16T05:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.214500", + "Timestamp": "2024-05-16T05:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-16T05:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125000", + "Timestamp": "2024-05-16T05:46:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T05:46:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065000", + "Timestamp": "2024-05-16T05:46:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.825300", + "Timestamp": "2024-05-16T05:46:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.820300", + "Timestamp": "2024-05-16T05:46:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.695300", + "Timestamp": "2024-05-16T05:46:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.888700", + "Timestamp": "2024-05-16T05:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.883700", + "Timestamp": "2024-05-16T05:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.758700", + "Timestamp": "2024-05-16T05:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.024300", + "Timestamp": "2024-05-16T05:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.623800", + "Timestamp": "2024-05-16T05:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.654000", + "Timestamp": "2024-05-16T05:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.649000", + "Timestamp": "2024-05-16T05:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.524000", + "Timestamp": "2024-05-16T05:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306100", + "Timestamp": "2024-05-16T05:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301100", + "Timestamp": "2024-05-16T05:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176100", + "Timestamp": "2024-05-16T05:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.168000", + "Timestamp": "2024-05-16T05:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.995200", + "Timestamp": "2024-05-16T05:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.990200", + "Timestamp": "2024-05-16T05:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.865200", + "Timestamp": "2024-05-16T05:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.616500", + "Timestamp": "2024-05-16T05:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.634700", + "Timestamp": "2024-05-16T05:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.629700", + "Timestamp": "2024-05-16T05:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iezn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.504700", + "Timestamp": "2024-05-16T05:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.343600", + "Timestamp": "2024-05-16T05:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.338600", + "Timestamp": "2024-05-16T05:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.213600", + "Timestamp": "2024-05-16T05:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.506400", + "Timestamp": "2024-05-16T05:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362400", + "Timestamp": "2024-05-16T05:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.357400", + "Timestamp": "2024-05-16T05:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.232400", + "Timestamp": "2024-05-16T05:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.142900", + "Timestamp": "2024-05-16T05:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.137900", + "Timestamp": "2024-05-16T05:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.012900", + "Timestamp": "2024-05-16T05:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.800700", + "Timestamp": "2024-05-16T05:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.795700", + "Timestamp": "2024-05-16T05:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.670700", + "Timestamp": "2024-05-16T05:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.256400", + "Timestamp": "2024-05-16T05:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.427300", + "Timestamp": "2024-05-16T05:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.422300", + "Timestamp": "2024-05-16T05:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.297300", + "Timestamp": "2024-05-16T05:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.502100", + "Timestamp": "2024-05-16T05:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.497100", + "Timestamp": "2024-05-16T05:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.372100", + "Timestamp": "2024-05-16T05:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.977400", + "Timestamp": "2024-05-16T05:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.972400", + "Timestamp": "2024-05-16T05:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.847400", + "Timestamp": "2024-05-16T05:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.776400", + "Timestamp": "2024-05-16T05:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.771400", + "Timestamp": "2024-05-16T05:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.646400", + "Timestamp": "2024-05-16T05:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.958100", + "Timestamp": "2024-05-16T05:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.193400", + "Timestamp": "2024-05-16T05:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118200", + "Timestamp": "2024-05-16T05:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158200", + "Timestamp": "2024-05-16T05:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058200", + "Timestamp": "2024-05-16T05:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.355700", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.350700", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.225700", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.280400", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.275400", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.150400", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.817900", + "Timestamp": "2024-05-16T05:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.812900", + "Timestamp": "2024-05-16T05:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.687900", + "Timestamp": "2024-05-16T05:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.400900", + "Timestamp": "2024-05-16T05:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.231300", + "Timestamp": "2024-05-16T05:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.863000", + "Timestamp": "2024-05-16T05:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.858000", + "Timestamp": "2024-05-16T05:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iezn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.733000", + "Timestamp": "2024-05-16T05:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.266000", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.793800", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.597000", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.592000", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.467000", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079000", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075300", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019000", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.482700", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.494400", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.489400", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.364400", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362000", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.332000", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.232000", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.230800", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.121800", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.116800", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.991800", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.458600", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.428600", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.328600", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.282100", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.277100", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.152100", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.286900", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281900", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156900", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.480800", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.475800", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.350800", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.775700", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.379800", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.374800", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.249800", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.616700", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.305500", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.300500", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175500", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.307300", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.278600", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.598200", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.413800", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.364100", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.359100", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.234100", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.187100", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.345000", + "Timestamp": "2024-05-16T05:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.846800", + "Timestamp": "2024-05-16T05:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.816800", + "Timestamp": "2024-05-16T05:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.716800", + "Timestamp": "2024-05-16T05:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.673100", + "Timestamp": "2024-05-16T05:46:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.643100", + "Timestamp": "2024-05-16T05:46:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.543100", + "Timestamp": "2024-05-16T05:46:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.198500", + "Timestamp": "2024-05-16T05:32:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.333600", + "Timestamp": "2024-05-16T05:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.328600", + "Timestamp": "2024-05-16T05:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.203600", + "Timestamp": "2024-05-16T05:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.765300", + "Timestamp": "2024-05-16T05:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.760300", + "Timestamp": "2024-05-16T05:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.635300", + "Timestamp": "2024-05-16T05:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.424500", + "Timestamp": "2024-05-16T05:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.419500", + "Timestamp": "2024-05-16T05:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.294500", + "Timestamp": "2024-05-16T05:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.135200", + "Timestamp": "2024-05-16T05:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.993900", + "Timestamp": "2024-05-16T05:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.988900", + "Timestamp": "2024-05-16T05:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.863900", + "Timestamp": "2024-05-16T05:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078600", + "Timestamp": "2024-05-16T05:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074900", + "Timestamp": "2024-05-16T05:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018600", + "Timestamp": "2024-05-16T05:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.large", + "ProductDescription": "Windows", + "SpotPrice": "0.164500", + "Timestamp": "2024-05-16T05:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.161400", + "Timestamp": "2024-05-16T05:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.444000", + "Timestamp": "2024-05-16T05:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.439000", + "Timestamp": "2024-05-16T05:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.314000", + "Timestamp": "2024-05-16T05:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.315800", + "Timestamp": "2024-05-16T05:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.312800", + "Timestamp": "2024-05-16T05:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.255800", + "Timestamp": "2024-05-16T05:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131800", + "Timestamp": "2024-05-16T05:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128100", + "Timestamp": "2024-05-16T05:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071800", + "Timestamp": "2024-05-16T05:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.893200", + "Timestamp": "2024-05-16T05:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.888200", + "Timestamp": "2024-05-16T05:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.763200", + "Timestamp": "2024-05-16T05:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.274400", + "Timestamp": "2024-05-16T05:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.269400", + "Timestamp": "2024-05-16T05:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.144400", + "Timestamp": "2024-05-16T05:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.568600", + "Timestamp": "2024-05-16T05:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.286100", + "Timestamp": "2024-05-16T05:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.229100", + "Timestamp": "2024-05-16T05:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.173200", + "Timestamp": "2024-05-16T05:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.739400", + "Timestamp": "2024-05-16T05:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.565400", + "Timestamp": "2024-05-16T05:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.535400", + "Timestamp": "2024-05-16T05:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.435400", + "Timestamp": "2024-05-16T05:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.914300", + "Timestamp": "2024-05-16T05:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.909300", + "Timestamp": "2024-05-16T05:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.784300", + "Timestamp": "2024-05-16T05:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.786000", + "Timestamp": "2024-05-16T05:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.279700", + "Timestamp": "2024-05-16T05:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.776600", + "Timestamp": "2024-05-16T05:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.771600", + "Timestamp": "2024-05-16T05:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.646600", + "Timestamp": "2024-05-16T05:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.949500", + "Timestamp": "2024-05-16T05:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.944500", + "Timestamp": "2024-05-16T05:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.819500", + "Timestamp": "2024-05-16T05:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.344900", + "Timestamp": "2024-05-16T05:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.336500", + "Timestamp": "2024-05-16T05:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.793600", + "Timestamp": "2024-05-16T05:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.788600", + "Timestamp": "2024-05-16T05:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.663600", + "Timestamp": "2024-05-16T05:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.755000", + "Timestamp": "2024-05-16T05:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.664700", + "Timestamp": "2024-05-16T05:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.659700", + "Timestamp": "2024-05-16T05:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.534700", + "Timestamp": "2024-05-16T05:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.939600", + "Timestamp": "2024-05-16T05:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.934600", + "Timestamp": "2024-05-16T05:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.809600", + "Timestamp": "2024-05-16T05:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.580700", + "Timestamp": "2024-05-16T05:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.575700", + "Timestamp": "2024-05-16T05:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.450700", + "Timestamp": "2024-05-16T05:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.967700", + "Timestamp": "2024-05-16T05:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.948200", + "Timestamp": "2024-05-16T05:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.943200", + "Timestamp": "2024-05-16T05:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.818200", + "Timestamp": "2024-05-16T05:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.719400", + "Timestamp": "2024-05-16T05:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.370500", + "Timestamp": "2024-05-16T05:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.185100", + "Timestamp": "2024-05-16T05:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181400", + "Timestamp": "2024-05-16T05:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125100", + "Timestamp": "2024-05-16T05:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.543500", + "Timestamp": "2024-05-16T05:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.521300", + "Timestamp": "2024-05-16T05:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.516300", + "Timestamp": "2024-05-16T05:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.391300", + "Timestamp": "2024-05-16T05:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.797800", + "Timestamp": "2024-05-16T05:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.076900", + "Timestamp": "2024-05-16T05:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.071900", + "Timestamp": "2024-05-16T05:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.946900", + "Timestamp": "2024-05-16T05:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117600", + "Timestamp": "2024-05-16T05:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113900", + "Timestamp": "2024-05-16T05:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057600", + "Timestamp": "2024-05-16T05:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.477600", + "Timestamp": "2024-05-16T05:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.472600", + "Timestamp": "2024-05-16T05:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.347600", + "Timestamp": "2024-05-16T05:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.670900", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.319400", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.314400", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.189400", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.465100", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.460100", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.335100", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.356200", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.351200", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.226200", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.386300", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.426300", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.326300", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111300", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051300", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.492900", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.361600", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.569000", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.564000", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.439000", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.347500", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.342500", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.217500", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.499300", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.494300", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.369300", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140700", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137000", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080700", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.562900", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.557900", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.432900", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.912700", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.907700", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.782700", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.251200", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.246200", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.121200", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.812000", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.807000", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.682000", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.504100", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.499100", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.374100", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.122600", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.398400", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.368400", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.268400", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096600", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092900", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036600", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.587300", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.343700", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.383700", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.283700", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.276300", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.266700", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.283900", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.761800", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.603500", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.307200", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.725800", + "Timestamp": "2024-05-16T05:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115500", + "Timestamp": "2024-05-16T05:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155500", + "Timestamp": "2024-05-16T05:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055500", + "Timestamp": "2024-05-16T05:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.404500", + "Timestamp": "2024-05-16T05:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.464300", + "Timestamp": "2024-05-16T05:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.088100", + "Timestamp": "2024-05-16T05:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.085300", + "Timestamp": "2024-05-16T05:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.546800", + "Timestamp": "2024-05-16T05:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.541800", + "Timestamp": "2024-05-16T05:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.416800", + "Timestamp": "2024-05-16T05:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.513200", + "Timestamp": "2024-05-16T05:31:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.508200", + "Timestamp": "2024-05-16T05:31:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.383200", + "Timestamp": "2024-05-16T05:31:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.793100", + "Timestamp": "2024-05-16T05:17:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.795500", + "Timestamp": "2024-05-16T05:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.765500", + "Timestamp": "2024-05-16T05:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.665500", + "Timestamp": "2024-05-16T05:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "10.954900", + "Timestamp": "2024-05-16T05:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "10.924900", + "Timestamp": "2024-05-16T05:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "10.824900", + "Timestamp": "2024-05-16T05:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.591100", + "Timestamp": "2024-05-16T05:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.586100", + "Timestamp": "2024-05-16T05:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.461100", + "Timestamp": "2024-05-16T05:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.572100", + "Timestamp": "2024-05-16T05:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.567100", + "Timestamp": "2024-05-16T05:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.442100", + "Timestamp": "2024-05-16T05:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.540500", + "Timestamp": "2024-05-16T05:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.240500", + "Timestamp": "2024-05-16T05:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.210500", + "Timestamp": "2024-05-16T05:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.110500", + "Timestamp": "2024-05-16T05:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.055000", + "Timestamp": "2024-05-16T05:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.676700", + "Timestamp": "2024-05-16T05:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.259500", + "Timestamp": "2024-05-16T05:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "h1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.341400", + "Timestamp": "2024-05-16T05:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "h1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.311400", + "Timestamp": "2024-05-16T05:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "h1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.211400", + "Timestamp": "2024-05-16T05:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "13.672000", + "Timestamp": "2024-05-16T05:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p2.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "13.642000", + "Timestamp": "2024-05-16T05:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "13.542000", + "Timestamp": "2024-05-16T05:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.904200", + "Timestamp": "2024-05-16T05:17:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.899200", + "Timestamp": "2024-05-16T05:17:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.774200", + "Timestamp": "2024-05-16T05:17:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.062500", + "Timestamp": "2024-05-16T05:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.310900", + "Timestamp": "2024-05-16T05:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.307900", + "Timestamp": "2024-05-16T05:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.250900", + "Timestamp": "2024-05-16T05:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.335700", + "Timestamp": "2024-05-16T05:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.131900", + "Timestamp": "2024-05-16T05:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.984100", + "Timestamp": "2024-05-16T05:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.979100", + "Timestamp": "2024-05-16T05:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.854100", + "Timestamp": "2024-05-16T05:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.076600", + "Timestamp": "2024-05-16T05:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.471600", + "Timestamp": "2024-05-16T05:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159200", + "Timestamp": "2024-05-16T05:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155500", + "Timestamp": "2024-05-16T05:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T05:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.130000", + "Timestamp": "2024-05-16T05:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.318700", + "Timestamp": "2024-05-16T05:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.900900", + "Timestamp": "2024-05-16T05:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.745200", + "Timestamp": "2024-05-16T05:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.715200", + "Timestamp": "2024-05-16T05:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.615200", + "Timestamp": "2024-05-16T05:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "18.105800", + "Timestamp": "2024-05-16T05:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.930400", + "Timestamp": "2024-05-16T05:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.414900", + "Timestamp": "2024-05-16T05:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.606200", + "Timestamp": "2024-05-16T05:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.601200", + "Timestamp": "2024-05-16T05:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.476200", + "Timestamp": "2024-05-16T05:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.587200", + "Timestamp": "2024-05-16T05:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.582200", + "Timestamp": "2024-05-16T05:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.457200", + "Timestamp": "2024-05-16T05:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.992400", + "Timestamp": "2024-05-16T05:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.987400", + "Timestamp": "2024-05-16T05:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.862400", + "Timestamp": "2024-05-16T05:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.574400", + "Timestamp": "2024-05-16T05:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.389100", + "Timestamp": "2024-05-16T05:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.359100", + "Timestamp": "2024-05-16T05:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.259100", + "Timestamp": "2024-05-16T05:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.455700", + "Timestamp": "2024-05-16T05:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.450700", + "Timestamp": "2024-05-16T05:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.325700", + "Timestamp": "2024-05-16T05:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.567700", + "Timestamp": "2024-05-16T05:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.562700", + "Timestamp": "2024-05-16T05:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.437700", + "Timestamp": "2024-05-16T05:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.522600", + "Timestamp": "2024-05-16T05:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.392600", + "Timestamp": "2024-05-16T05:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.387600", + "Timestamp": "2024-05-16T05:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.262600", + "Timestamp": "2024-05-16T05:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.267400", + "Timestamp": "2024-05-16T05:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.262400", + "Timestamp": "2024-05-16T05:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.137400", + "Timestamp": "2024-05-16T05:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.791600", + "Timestamp": "2024-05-16T05:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.786600", + "Timestamp": "2024-05-16T05:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.661600", + "Timestamp": "2024-05-16T05:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.371600", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.341600", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.241600", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.145900", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.232900", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.078200", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.073200", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.948200", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.554400", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.549400", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.424400", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.253500", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.248500", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.123500", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.221600", + "Timestamp": "2024-05-16T05:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.891800", + "Timestamp": "2024-05-16T05:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.284100", + "Timestamp": "2024-05-16T05:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.279100", + "Timestamp": "2024-05-16T05:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.154100", + "Timestamp": "2024-05-16T05:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.030700", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.025700", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.900700", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.206400", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.683300", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.653300", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.553300", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.483300", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.518900", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.513900", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.388900", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.595400", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.590400", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.465400", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.036800", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.031800", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.906800", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.740700", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.735700", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.610700", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.177400", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.172400", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.047400", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108800", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105100", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048800", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.986600", + "Timestamp": "2024-05-16T05:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.403900", + "Timestamp": "2024-05-16T05:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.398900", + "Timestamp": "2024-05-16T05:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.273900", + "Timestamp": "2024-05-16T05:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.054200", + "Timestamp": "2024-05-16T05:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.476500", + "Timestamp": "2024-05-16T05:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.400600", + "Timestamp": "2024-05-16T05:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.370600", + "Timestamp": "2024-05-16T05:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.270600", + "Timestamp": "2024-05-16T05:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.534800", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.529800", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.404800", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.189600", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185900", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129600", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080200", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.051200", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020200", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115400", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155400", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055400", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.590500", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.844400", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.839400", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.714400", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.215800", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.217700", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.212100", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.214000", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.155800", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157700", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.404500", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.399500", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.274500", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.829800", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.250900", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.247200", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190900", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.015900", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.708800", + "Timestamp": "2024-05-16T05:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.600000", + "Timestamp": "2024-05-16T05:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.595000", + "Timestamp": "2024-05-16T05:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.470000", + "Timestamp": "2024-05-16T05:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.443500", + "Timestamp": "2024-05-16T05:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.413500", + "Timestamp": "2024-05-16T05:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.313500", + "Timestamp": "2024-05-16T05:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103100", + "Timestamp": "2024-05-16T05:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099100", + "Timestamp": "2024-05-16T05:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043100", + "Timestamp": "2024-05-16T05:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.415800", + "Timestamp": "2024-05-16T05:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.065600", + "Timestamp": "2024-05-16T05:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.060600", + "Timestamp": "2024-05-16T05:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.935600", + "Timestamp": "2024-05-16T05:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.429600", + "Timestamp": "2024-05-16T05:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.567800", + "Timestamp": "2024-05-16T05:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.562800", + "Timestamp": "2024-05-16T05:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.437800", + "Timestamp": "2024-05-16T05:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.465400", + "Timestamp": "2024-05-16T05:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "p2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.505400", + "Timestamp": "2024-05-16T05:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "p2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.405400", + "Timestamp": "2024-05-16T05:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T05:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130600", + "Timestamp": "2024-05-16T05:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074300", + "Timestamp": "2024-05-16T05:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m1.large", + "ProductDescription": "Windows", + "SpotPrice": "0.185000", + "Timestamp": "2024-05-16T05:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-16T05:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137500", + "Timestamp": "2024-05-16T05:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037500", + "Timestamp": "2024-05-16T05:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.458300", + "Timestamp": "2024-05-16T05:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.275100", + "Timestamp": "2024-05-16T05:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.573100", + "Timestamp": "2024-05-16T05:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.568100", + "Timestamp": "2024-05-16T05:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.443100", + "Timestamp": "2024-05-16T05:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.087500", + "Timestamp": "2024-05-16T05:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.743900", + "Timestamp": "2024-05-16T05:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.metal-16xl", + "ProductDescription": "Windows", + "SpotPrice": "5.272000", + "Timestamp": "2024-05-16T05:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.168100", + "Timestamp": "2024-05-16T05:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.589000", + "Timestamp": "2024-05-16T05:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.572200", + "Timestamp": "2024-05-16T05:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.542200", + "Timestamp": "2024-05-16T05:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.442200", + "Timestamp": "2024-05-16T05:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.228200", + "Timestamp": "2024-05-16T05:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.223200", + "Timestamp": "2024-05-16T05:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.098200", + "Timestamp": "2024-05-16T05:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.793600", + "Timestamp": "2024-05-16T05:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.286000", + "Timestamp": "2024-05-16T05:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.054400", + "Timestamp": "2024-05-16T05:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.049400", + "Timestamp": "2024-05-16T05:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.924400", + "Timestamp": "2024-05-16T05:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.873100", + "Timestamp": "2024-05-16T05:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.868100", + "Timestamp": "2024-05-16T05:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.743100", + "Timestamp": "2024-05-16T05:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T05:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-16T05:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048200", + "Timestamp": "2024-05-16T05:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.258500", + "Timestamp": "2024-05-16T05:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.254800", + "Timestamp": "2024-05-16T05:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.198500", + "Timestamp": "2024-05-16T05:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.303000", + "Timestamp": "2024-05-16T05:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.298000", + "Timestamp": "2024-05-16T05:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.173000", + "Timestamp": "2024-05-16T05:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.652300", + "Timestamp": "2024-05-16T05:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.647300", + "Timestamp": "2024-05-16T05:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.522300", + "Timestamp": "2024-05-16T05:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.253600", + "Timestamp": "2024-05-16T05:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.316500", + "Timestamp": "2024-05-16T05:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293600", + "Timestamp": "2024-05-16T05:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.356500", + "Timestamp": "2024-05-16T05:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.193600", + "Timestamp": "2024-05-16T05:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.256500", + "Timestamp": "2024-05-16T05:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.113300", + "Timestamp": "2024-05-16T05:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.300100", + "Timestamp": "2024-05-16T05:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.556500", + "Timestamp": "2024-05-16T05:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.551500", + "Timestamp": "2024-05-16T05:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.426500", + "Timestamp": "2024-05-16T05:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.046800", + "Timestamp": "2024-05-16T05:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.041800", + "Timestamp": "2024-05-16T05:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.916800", + "Timestamp": "2024-05-16T05:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125300", + "Timestamp": "2024-05-16T05:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121300", + "Timestamp": "2024-05-16T05:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065300", + "Timestamp": "2024-05-16T05:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.496700", + "Timestamp": "2024-05-16T05:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.168500", + "Timestamp": "2024-05-16T05:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.168500", + "Timestamp": "2024-05-16T05:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.060900", + "Timestamp": "2024-05-16T05:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.055900", + "Timestamp": "2024-05-16T05:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.930900", + "Timestamp": "2024-05-16T05:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.943000", + "Timestamp": "2024-05-16T05:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.938000", + "Timestamp": "2024-05-16T05:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.813000", + "Timestamp": "2024-05-16T05:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128000", + "Timestamp": "2024-05-16T05:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.350200", + "Timestamp": "2024-05-16T05:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.345200", + "Timestamp": "2024-05-16T05:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.220200", + "Timestamp": "2024-05-16T05:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "vt1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.235100", + "Timestamp": "2024-05-16T05:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "vt1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.205100", + "Timestamp": "2024-05-16T05:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "vt1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.105100", + "Timestamp": "2024-05-16T05:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.826700", + "Timestamp": "2024-05-16T05:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.821700", + "Timestamp": "2024-05-16T05:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.696700", + "Timestamp": "2024-05-16T05:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.775500", + "Timestamp": "2024-05-16T05:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.770500", + "Timestamp": "2024-05-16T05:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.645500", + "Timestamp": "2024-05-16T05:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.606200", + "Timestamp": "2024-05-16T05:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.601200", + "Timestamp": "2024-05-16T05:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.476200", + "Timestamp": "2024-05-16T05:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.532200", + "Timestamp": "2024-05-16T05:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.527200", + "Timestamp": "2024-05-16T05:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.402200", + "Timestamp": "2024-05-16T05:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "14.613200", + "Timestamp": "2024-05-16T05:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.104900", + "Timestamp": "2024-05-16T05:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.631700", + "Timestamp": "2024-05-16T05:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.755200", + "Timestamp": "2024-05-16T05:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.750200", + "Timestamp": "2024-05-16T05:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.625200", + "Timestamp": "2024-05-16T05:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.961900", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.956900", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.831900", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.148200", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062100", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002100", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002100", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.881000", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.876000", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.751000", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.256500", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.753700", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.748700", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.623700", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.638000", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.633000", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.508000", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "13.539700", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.461700", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.456700", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.331700", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.173800", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.610500", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.605500", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.480500", + "Timestamp": "2024-05-16T05:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111200", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151200", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051200", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.032700", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.550100", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.545100", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.420100", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.177500", + "Timestamp": "2024-05-16T05:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.623800", + "Timestamp": "2024-05-16T05:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.195700", + "Timestamp": "2024-05-16T05:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.190700", + "Timestamp": "2024-05-16T05:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.065700", + "Timestamp": "2024-05-16T05:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.464500", + "Timestamp": "2024-05-16T05:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.459500", + "Timestamp": "2024-05-16T05:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.334500", + "Timestamp": "2024-05-16T05:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200500", + "Timestamp": "2024-05-16T05:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196500", + "Timestamp": "2024-05-16T05:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140500", + "Timestamp": "2024-05-16T05:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.297800", + "Timestamp": "2024-05-16T05:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.292800", + "Timestamp": "2024-05-16T05:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.167800", + "Timestamp": "2024-05-16T05:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.193300", + "Timestamp": "2024-05-16T05:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.272800", + "Timestamp": "2024-05-16T05:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267800", + "Timestamp": "2024-05-16T05:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142800", + "Timestamp": "2024-05-16T05:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103100", + "Timestamp": "2024-05-16T05:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099100", + "Timestamp": "2024-05-16T05:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043100", + "Timestamp": "2024-05-16T05:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.781400", + "Timestamp": "2024-05-16T05:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.776400", + "Timestamp": "2024-05-16T05:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.651400", + "Timestamp": "2024-05-16T05:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.482600", + "Timestamp": "2024-05-16T05:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.676200", + "Timestamp": "2024-05-16T05:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.516100", + "Timestamp": "2024-05-16T05:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.511100", + "Timestamp": "2024-05-16T05:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.386100", + "Timestamp": "2024-05-16T05:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.080400", + "Timestamp": "2024-05-16T05:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.899600", + "Timestamp": "2024-05-16T04:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.869600", + "Timestamp": "2024-05-16T04:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.769600", + "Timestamp": "2024-05-16T04:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.423000", + "Timestamp": "2024-05-16T04:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.593300", + "Timestamp": "2024-05-16T04:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.588300", + "Timestamp": "2024-05-16T04:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.463300", + "Timestamp": "2024-05-16T04:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "16.548800", + "Timestamp": "2024-05-16T04:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.069000", + "Timestamp": "2024-05-16T04:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.064000", + "Timestamp": "2024-05-16T04:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.939000", + "Timestamp": "2024-05-16T04:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.096900", + "Timestamp": "2024-05-16T04:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.519400", + "Timestamp": "2024-05-16T04:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.153100", + "Timestamp": "2024-05-16T04:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125300", + "Timestamp": "2024-05-16T04:47:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121600", + "Timestamp": "2024-05-16T04:47:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065300", + "Timestamp": "2024-05-16T04:47:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m1.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076600", + "Timestamp": "2024-05-16T04:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m1.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.046600", + "Timestamp": "2024-05-16T04:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m1.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016600", + "Timestamp": "2024-05-16T04:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.844300", + "Timestamp": "2024-05-16T04:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.839300", + "Timestamp": "2024-05-16T04:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.714300", + "Timestamp": "2024-05-16T04:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.348900", + "Timestamp": "2024-05-16T04:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.916100", + "Timestamp": "2024-05-16T04:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.146000", + "Timestamp": "2024-05-16T04:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.141000", + "Timestamp": "2024-05-16T04:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.016000", + "Timestamp": "2024-05-16T04:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.976600", + "Timestamp": "2024-05-16T04:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.971600", + "Timestamp": "2024-05-16T04:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.846600", + "Timestamp": "2024-05-16T04:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100400", + "Timestamp": "2024-05-16T04:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096700", + "Timestamp": "2024-05-16T04:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040400", + "Timestamp": "2024-05-16T04:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.490400", + "Timestamp": "2024-05-16T04:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.175000", + "Timestamp": "2024-05-16T04:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.953800", + "Timestamp": "2024-05-16T04:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.948800", + "Timestamp": "2024-05-16T04:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.823800", + "Timestamp": "2024-05-16T04:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.417200", + "Timestamp": "2024-05-16T04:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.412200", + "Timestamp": "2024-05-16T04:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.287200", + "Timestamp": "2024-05-16T04:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.399100", + "Timestamp": "2024-05-16T04:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.313500", + "Timestamp": "2024-05-16T04:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.261100", + "Timestamp": "2024-05-16T04:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.256100", + "Timestamp": "2024-05-16T04:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.131100", + "Timestamp": "2024-05-16T04:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.143400", + "Timestamp": "2024-05-16T04:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.300000", + "Timestamp": "2024-05-16T04:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.099800", + "Timestamp": "2024-05-16T04:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.242400", + "Timestamp": "2024-05-16T04:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.237400", + "Timestamp": "2024-05-16T04:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.112400", + "Timestamp": "2024-05-16T04:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.844600", + "Timestamp": "2024-05-16T04:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.839600", + "Timestamp": "2024-05-16T04:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.714600", + "Timestamp": "2024-05-16T04:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.137400", + "Timestamp": "2024-05-16T04:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.518600", + "Timestamp": "2024-05-16T04:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.897600", + "Timestamp": "2024-05-16T04:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.892600", + "Timestamp": "2024-05-16T04:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.767600", + "Timestamp": "2024-05-16T04:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.492600", + "Timestamp": "2024-05-16T04:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.487600", + "Timestamp": "2024-05-16T04:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.362600", + "Timestamp": "2024-05-16T04:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.129400", + "Timestamp": "2024-05-16T04:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.601300", + "Timestamp": "2024-05-16T04:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.070200", + "Timestamp": "2024-05-16T04:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.583100", + "Timestamp": "2024-05-16T04:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.325400", + "Timestamp": "2024-05-16T04:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.079200", + "Timestamp": "2024-05-16T04:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.026000", + "Timestamp": "2024-05-16T04:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.021000", + "Timestamp": "2024-05-16T04:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.896000", + "Timestamp": "2024-05-16T04:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.132400", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.731300", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.726300", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.601300", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.290400", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.285400", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.160400", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.500200", + "Timestamp": "2024-05-16T04:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.495200", + "Timestamp": "2024-05-16T04:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.370200", + "Timestamp": "2024-05-16T04:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.139100", + "Timestamp": "2024-05-16T04:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271000", + "Timestamp": "2024-05-16T04:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266000", + "Timestamp": "2024-05-16T04:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141000", + "Timestamp": "2024-05-16T04:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.692100", + "Timestamp": "2024-05-16T04:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.687100", + "Timestamp": "2024-05-16T04:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.562100", + "Timestamp": "2024-05-16T04:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.171100", + "Timestamp": "2024-05-16T04:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166100", + "Timestamp": "2024-05-16T04:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162100", + "Timestamp": "2024-05-16T04:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-16T04:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.313100", + "Timestamp": "2024-05-16T04:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.165800", + "Timestamp": "2024-05-16T04:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.160800", + "Timestamp": "2024-05-16T04:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.035800", + "Timestamp": "2024-05-16T04:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161400", + "Timestamp": "2024-05-16T04:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157400", + "Timestamp": "2024-05-16T04:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101400", + "Timestamp": "2024-05-16T04:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.180900", + "Timestamp": "2024-05-16T04:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.066700", + "Timestamp": "2024-05-16T04:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.482000", + "Timestamp": "2024-05-16T04:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.477000", + "Timestamp": "2024-05-16T04:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.352000", + "Timestamp": "2024-05-16T04:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.415200", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.410200", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.285200", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "a1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071700", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "a1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042700", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "a1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011700", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.140800", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140300", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180300", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080300", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.275900", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.041700", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.819800", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.814800", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.689800", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.405000", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.400000", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.275000", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.395100", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.563000", + "Timestamp": "2024-05-16T04:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.812800", + "Timestamp": "2024-05-16T04:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "vt1.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.458200", + "Timestamp": "2024-05-16T04:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "vt1.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.428200", + "Timestamp": "2024-05-16T04:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "vt1.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.328200", + "Timestamp": "2024-05-16T04:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.212700", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.207700", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.082700", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.136400", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.256600", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.252900", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196600", + "Timestamp": "2024-05-16T04:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.284500", + "Timestamp": "2024-05-16T04:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.279500", + "Timestamp": "2024-05-16T04:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.metal-32xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.154500", + "Timestamp": "2024-05-16T04:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.905000", + "Timestamp": "2024-05-16T04:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.150500", + "Timestamp": "2024-05-16T04:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-16T04:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T04:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044500", + "Timestamp": "2024-05-16T04:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.081000", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.076000", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.951000", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.944800", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.939800", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.814800", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.437100", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.533900", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.528900", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.403900", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184800", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181100", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124800", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.704600", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.545400", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.516100", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.515400", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.486100", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.415400", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.386100", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.564700", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.559700", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.434700", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.108900", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.327000", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.322000", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.197000", + "Timestamp": "2024-05-16T04:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.956800", + "Timestamp": "2024-05-16T04:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.951800", + "Timestamp": "2024-05-16T04:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.826800", + "Timestamp": "2024-05-16T04:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.647900", + "Timestamp": "2024-05-16T04:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.210200", + "Timestamp": "2024-05-16T04:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.206200", + "Timestamp": "2024-05-16T04:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150200", + "Timestamp": "2024-05-16T04:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.250200", + "Timestamp": "2024-05-16T04:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148600", + "Timestamp": "2024-05-16T04:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144600", + "Timestamp": "2024-05-16T04:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088600", + "Timestamp": "2024-05-16T04:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360200", + "Timestamp": "2024-05-16T04:32:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.355200", + "Timestamp": "2024-05-16T04:32:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230200", + "Timestamp": "2024-05-16T04:32:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.328500", + "Timestamp": "2024-05-16T04:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.495900", + "Timestamp": "2024-05-16T04:32:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.390400", + "Timestamp": "2024-05-16T04:32:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.385400", + "Timestamp": "2024-05-16T04:32:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.260400", + "Timestamp": "2024-05-16T04:32:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.393500", + "Timestamp": "2024-05-16T04:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.363500", + "Timestamp": "2024-05-16T04:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.263500", + "Timestamp": "2024-05-16T04:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T04:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100100", + "Timestamp": "2024-05-16T04:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043800", + "Timestamp": "2024-05-16T04:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-16T04:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093800", + "Timestamp": "2024-05-16T04:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037500", + "Timestamp": "2024-05-16T04:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.579700", + "Timestamp": "2024-05-16T04:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.170100", + "Timestamp": "2024-05-16T04:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.165100", + "Timestamp": "2024-05-16T04:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.040100", + "Timestamp": "2024-05-16T04:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.351800", + "Timestamp": "2024-05-16T04:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.334200", + "Timestamp": "2024-05-16T04:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.304200", + "Timestamp": "2024-05-16T04:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.204200", + "Timestamp": "2024-05-16T04:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.367300", + "Timestamp": "2024-05-16T04:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.362300", + "Timestamp": "2024-05-16T04:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.237300", + "Timestamp": "2024-05-16T04:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.272300", + "Timestamp": "2024-05-16T04:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.267300", + "Timestamp": "2024-05-16T04:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.142300", + "Timestamp": "2024-05-16T04:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.277900", + "Timestamp": "2024-05-16T04:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.146400", + "Timestamp": "2024-05-16T04:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099300", + "Timestamp": "2024-05-16T04:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095600", + "Timestamp": "2024-05-16T04:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039300", + "Timestamp": "2024-05-16T04:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.290500", + "Timestamp": "2024-05-16T04:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.854200", + "Timestamp": "2024-05-16T04:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.849200", + "Timestamp": "2024-05-16T04:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.724200", + "Timestamp": "2024-05-16T04:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.629600", + "Timestamp": "2024-05-16T04:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.599600", + "Timestamp": "2024-05-16T04:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.499600", + "Timestamp": "2024-05-16T04:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "10.363000", + "Timestamp": "2024-05-16T04:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "10.358000", + "Timestamp": "2024-05-16T04:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "10.233000", + "Timestamp": "2024-05-16T04:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T04:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145000", + "Timestamp": "2024-05-16T04:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045000", + "Timestamp": "2024-05-16T04:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.198300", + "Timestamp": "2024-05-16T04:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.502100", + "Timestamp": "2024-05-16T04:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.497100", + "Timestamp": "2024-05-16T04:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.372100", + "Timestamp": "2024-05-16T04:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155100", + "Timestamp": "2024-05-16T04:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.195100", + "Timestamp": "2024-05-16T04:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095100", + "Timestamp": "2024-05-16T04:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.722200", + "Timestamp": "2024-05-16T04:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.271300", + "Timestamp": "2024-05-16T04:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.305800", + "Timestamp": "2024-05-16T04:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T04:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100100", + "Timestamp": "2024-05-16T04:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043800", + "Timestamp": "2024-05-16T04:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307300", + "Timestamp": "2024-05-16T04:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.347300", + "Timestamp": "2024-05-16T04:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.247300", + "Timestamp": "2024-05-16T04:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.359400", + "Timestamp": "2024-05-16T04:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.298500", + "Timestamp": "2024-05-16T04:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.554500", + "Timestamp": "2024-05-16T04:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.549500", + "Timestamp": "2024-05-16T04:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.424500", + "Timestamp": "2024-05-16T04:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093600", + "Timestamp": "2024-05-16T04:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089900", + "Timestamp": "2024-05-16T04:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033600", + "Timestamp": "2024-05-16T04:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.166300", + "Timestamp": "2024-05-16T04:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.161300", + "Timestamp": "2024-05-16T04:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.036300", + "Timestamp": "2024-05-16T04:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.296600", + "Timestamp": "2024-05-16T04:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.291600", + "Timestamp": "2024-05-16T04:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.166600", + "Timestamp": "2024-05-16T04:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.371600", + "Timestamp": "2024-05-16T04:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.851200", + "Timestamp": "2024-05-16T04:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.569700", + "Timestamp": "2024-05-16T04:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.311000", + "Timestamp": "2024-05-16T04:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.055800", + "Timestamp": "2024-05-16T04:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.437600", + "Timestamp": "2024-05-16T04:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.139900", + "Timestamp": "2024-05-16T04:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "12.123600", + "Timestamp": "2024-05-16T04:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "12.093600", + "Timestamp": "2024-05-16T04:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "11.993600", + "Timestamp": "2024-05-16T04:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.226500", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.222500", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.166500", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.917500", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.912500", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.787500", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.574000", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.569000", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.444000", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.629900", + "Timestamp": "2024-05-16T04:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.109200", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.104200", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.979200", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.192800", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.189100", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.132800", + "Timestamp": "2024-05-16T04:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.848600", + "Timestamp": "2024-05-16T04:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.653200", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.106100", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.076100", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.976100", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.276500", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "11.949000", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "11.944000", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "11.819000", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.017600", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.302800", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.297800", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172800", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.245800", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.215800", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.115800", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138800", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135100", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078800", + "Timestamp": "2024-05-16T04:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.352600", + "Timestamp": "2024-05-16T04:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.347600", + "Timestamp": "2024-05-16T04:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.222600", + "Timestamp": "2024-05-16T04:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.238500", + "Timestamp": "2024-05-16T04:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.233500", + "Timestamp": "2024-05-16T04:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.108500", + "Timestamp": "2024-05-16T04:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.741600", + "Timestamp": "2024-05-16T04:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.711600", + "Timestamp": "2024-05-16T04:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.611600", + "Timestamp": "2024-05-16T04:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.319500", + "Timestamp": "2024-05-16T04:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.314500", + "Timestamp": "2024-05-16T04:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.189500", + "Timestamp": "2024-05-16T04:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.048900", + "Timestamp": "2024-05-16T04:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.808700", + "Timestamp": "2024-05-16T04:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.778700", + "Timestamp": "2024-05-16T04:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.678700", + "Timestamp": "2024-05-16T04:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "p2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.555500", + "Timestamp": "2024-05-16T04:17:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.557200", + "Timestamp": "2024-05-16T04:17:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.667700", + "Timestamp": "2024-05-16T04:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.662700", + "Timestamp": "2024-05-16T04:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.537700", + "Timestamp": "2024-05-16T04:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "a1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093800", + "Timestamp": "2024-05-16T04:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "a1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090100", + "Timestamp": "2024-05-16T04:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "a1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033800", + "Timestamp": "2024-05-16T04:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.049900", + "Timestamp": "2024-05-16T04:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.082100", + "Timestamp": "2024-05-16T04:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.201500", + "Timestamp": "2024-05-16T04:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.845900", + "Timestamp": "2024-05-16T04:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.840900", + "Timestamp": "2024-05-16T04:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.715900", + "Timestamp": "2024-05-16T04:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.284000", + "Timestamp": "2024-05-16T04:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.513400", + "Timestamp": "2024-05-16T04:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.508400", + "Timestamp": "2024-05-16T04:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.383400", + "Timestamp": "2024-05-16T04:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.215000", + "Timestamp": "2024-05-16T04:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.214900", + "Timestamp": "2024-05-16T04:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.254900", + "Timestamp": "2024-05-16T04:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.154900", + "Timestamp": "2024-05-16T04:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142200", + "Timestamp": "2024-05-16T04:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138500", + "Timestamp": "2024-05-16T04:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082200", + "Timestamp": "2024-05-16T04:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.855900", + "Timestamp": "2024-05-16T04:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.850900", + "Timestamp": "2024-05-16T04:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.725900", + "Timestamp": "2024-05-16T04:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.129600", + "Timestamp": "2024-05-16T04:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.965700", + "Timestamp": "2024-05-16T04:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.680200", + "Timestamp": "2024-05-16T04:17:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.675200", + "Timestamp": "2024-05-16T04:17:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.550200", + "Timestamp": "2024-05-16T04:17:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.722700", + "Timestamp": "2024-05-16T04:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.299900", + "Timestamp": "2024-05-16T04:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.294900", + "Timestamp": "2024-05-16T04:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.169900", + "Timestamp": "2024-05-16T04:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.987900", + "Timestamp": "2024-05-16T04:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168600", + "Timestamp": "2024-05-16T04:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164900", + "Timestamp": "2024-05-16T04:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-16T04:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.004900", + "Timestamp": "2024-05-16T04:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121100", + "Timestamp": "2024-05-16T04:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161100", + "Timestamp": "2024-05-16T04:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061100", + "Timestamp": "2024-05-16T04:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.348400", + "Timestamp": "2024-05-16T04:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.371300", + "Timestamp": "2024-05-16T04:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354800", + "Timestamp": "2024-05-16T04:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349800", + "Timestamp": "2024-05-16T04:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224800", + "Timestamp": "2024-05-16T04:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.516800", + "Timestamp": "2024-05-16T04:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.511800", + "Timestamp": "2024-05-16T04:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.386800", + "Timestamp": "2024-05-16T04:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.418600", + "Timestamp": "2024-05-16T04:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.828400", + "Timestamp": "2024-05-16T04:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.823400", + "Timestamp": "2024-05-16T04:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.698400", + "Timestamp": "2024-05-16T04:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.134100", + "Timestamp": "2024-05-16T04:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.508600", + "Timestamp": "2024-05-16T04:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.925100", + "Timestamp": "2024-05-16T04:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.920100", + "Timestamp": "2024-05-16T04:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.795100", + "Timestamp": "2024-05-16T04:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.098800", + "Timestamp": "2024-05-16T04:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.336400", + "Timestamp": "2024-05-16T04:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.306400", + "Timestamp": "2024-05-16T04:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.206400", + "Timestamp": "2024-05-16T04:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.454900", + "Timestamp": "2024-05-16T04:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.449900", + "Timestamp": "2024-05-16T04:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.324900", + "Timestamp": "2024-05-16T04:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.159200", + "Timestamp": "2024-05-16T04:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.137100", + "Timestamp": "2024-05-16T04:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.132100", + "Timestamp": "2024-05-16T04:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.007100", + "Timestamp": "2024-05-16T04:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "h1.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.784000", + "Timestamp": "2024-05-16T04:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.416100", + "Timestamp": "2024-05-16T04:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.167600", + "Timestamp": "2024-05-16T04:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.719900", + "Timestamp": "2024-05-16T04:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.714900", + "Timestamp": "2024-05-16T04:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.589900", + "Timestamp": "2024-05-16T04:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.138300", + "Timestamp": "2024-05-16T04:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.133300", + "Timestamp": "2024-05-16T04:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.008300", + "Timestamp": "2024-05-16T04:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.519500", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.514500", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.389500", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.132400", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.129500", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.596900", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.591900", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.466900", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134800", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131100", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074800", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.396900", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.391900", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.266900", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.902200", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.525500", + "Timestamp": "2024-05-16T04:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.520500", + "Timestamp": "2024-05-16T04:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.395500", + "Timestamp": "2024-05-16T04:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.688500", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.683500", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.558500", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.083900", + "Timestamp": "2024-05-16T04:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.649200", + "Timestamp": "2024-05-16T04:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.555400", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.550400", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.425400", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.308600", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.303600", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.178600", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.185600", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.180600", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.055600", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069000", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040000", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009000", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.212700", + "Timestamp": "2024-05-16T04:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.209000", + "Timestamp": "2024-05-16T04:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.152700", + "Timestamp": "2024-05-16T04:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077900", + "Timestamp": "2024-05-16T04:02:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074200", + "Timestamp": "2024-05-16T04:02:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017900", + "Timestamp": "2024-05-16T04:02:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.874500", + "Timestamp": "2024-05-16T04:02:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.869500", + "Timestamp": "2024-05-16T04:02:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.744500", + "Timestamp": "2024-05-16T04:02:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095700", + "Timestamp": "2024-05-16T04:02:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092000", + "Timestamp": "2024-05-16T04:02:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035700", + "Timestamp": "2024-05-16T04:02:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.739600", + "Timestamp": "2024-05-16T04:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.734600", + "Timestamp": "2024-05-16T04:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.609600", + "Timestamp": "2024-05-16T04:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.615900", + "Timestamp": "2024-05-16T04:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.372600", + "Timestamp": "2024-05-16T04:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.217700", + "Timestamp": "2024-05-16T04:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.187700", + "Timestamp": "2024-05-16T04:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.087700", + "Timestamp": "2024-05-16T04:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.942300", + "Timestamp": "2024-05-16T04:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.937300", + "Timestamp": "2024-05-16T04:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.812300", + "Timestamp": "2024-05-16T04:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.206300", + "Timestamp": "2024-05-16T04:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.202600", + "Timestamp": "2024-05-16T04:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146300", + "Timestamp": "2024-05-16T04:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.189600", + "Timestamp": "2024-05-16T04:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.184600", + "Timestamp": "2024-05-16T04:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.059600", + "Timestamp": "2024-05-16T04:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.552000", + "Timestamp": "2024-05-16T04:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.547000", + "Timestamp": "2024-05-16T04:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.422000", + "Timestamp": "2024-05-16T04:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "16.432900", + "Timestamp": "2024-05-16T04:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088000", + "Timestamp": "2024-05-16T04:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084300", + "Timestamp": "2024-05-16T04:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028000", + "Timestamp": "2024-05-16T04:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.467900", + "Timestamp": "2024-05-16T04:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.101600", + "Timestamp": "2024-05-16T04:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.071600", + "Timestamp": "2024-05-16T04:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.971600", + "Timestamp": "2024-05-16T04:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.218100", + "Timestamp": "2024-05-16T04:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.214400", + "Timestamp": "2024-05-16T04:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158100", + "Timestamp": "2024-05-16T04:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.057000", + "Timestamp": "2024-05-16T04:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.367200", + "Timestamp": "2024-05-16T04:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.362200", + "Timestamp": "2024-05-16T04:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.237200", + "Timestamp": "2024-05-16T04:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.518200", + "Timestamp": "2024-05-16T04:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3en.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.352900", + "Timestamp": "2024-05-16T04:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.508500", + "Timestamp": "2024-05-16T04:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.612000", + "Timestamp": "2024-05-16T04:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145700", + "Timestamp": "2024-05-16T04:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142000", + "Timestamp": "2024-05-16T04:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085700", + "Timestamp": "2024-05-16T04:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.413900", + "Timestamp": "2024-05-16T04:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.408900", + "Timestamp": "2024-05-16T04:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.283900", + "Timestamp": "2024-05-16T04:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.053400", + "Timestamp": "2024-05-16T04:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.023400", + "Timestamp": "2024-05-16T04:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.923400", + "Timestamp": "2024-05-16T04:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.723100", + "Timestamp": "2024-05-16T04:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.497100", + "Timestamp": "2024-05-16T04:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.493100", + "Timestamp": "2024-05-16T04:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.437100", + "Timestamp": "2024-05-16T04:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.320300", + "Timestamp": "2024-05-16T04:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.422600", + "Timestamp": "2024-05-16T04:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.417600", + "Timestamp": "2024-05-16T04:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.292600", + "Timestamp": "2024-05-16T04:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.319000", + "Timestamp": "2024-05-16T04:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.444300", + "Timestamp": "2024-05-16T04:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.439300", + "Timestamp": "2024-05-16T04:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.314300", + "Timestamp": "2024-05-16T04:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.388300", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.383300", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.258300", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.611600", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.606600", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.481600", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.144300", + "Timestamp": "2024-05-16T04:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-16T04:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152000", + "Timestamp": "2024-05-16T04:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052000", + "Timestamp": "2024-05-16T04:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.099800", + "Timestamp": "2024-05-16T04:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.094800", + "Timestamp": "2024-05-16T04:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.969800", + "Timestamp": "2024-05-16T04:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.988400", + "Timestamp": "2024-05-16T04:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.242100", + "Timestamp": "2024-05-16T04:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.911700", + "Timestamp": "2024-05-16T04:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.614800", + "Timestamp": "2024-05-16T04:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.185000", + "Timestamp": "2024-05-16T04:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181300", + "Timestamp": "2024-05-16T04:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125000", + "Timestamp": "2024-05-16T04:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.143900", + "Timestamp": "2024-05-16T04:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.155200", + "Timestamp": "2024-05-16T04:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.631900", + "Timestamp": "2024-05-16T04:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.626900", + "Timestamp": "2024-05-16T04:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.501900", + "Timestamp": "2024-05-16T04:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.139200", + "Timestamp": "2024-05-16T04:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150200", + "Timestamp": "2024-05-16T03:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190200", + "Timestamp": "2024-05-16T03:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090200", + "Timestamp": "2024-05-16T03:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149300", + "Timestamp": "2024-05-16T03:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145600", + "Timestamp": "2024-05-16T03:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089300", + "Timestamp": "2024-05-16T03:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.703200", + "Timestamp": "2024-05-16T03:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124800", + "Timestamp": "2024-05-16T03:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142000", + "Timestamp": "2024-05-16T03:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138300", + "Timestamp": "2024-05-16T03:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082000", + "Timestamp": "2024-05-16T03:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.171000", + "Timestamp": "2024-05-16T03:47:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.036000", + "Timestamp": "2024-05-16T03:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.031000", + "Timestamp": "2024-05-16T03:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.906000", + "Timestamp": "2024-05-16T03:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.515600", + "Timestamp": "2024-05-16T03:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.051200", + "Timestamp": "2024-05-16T03:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.021200", + "Timestamp": "2024-05-16T03:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.921200", + "Timestamp": "2024-05-16T03:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.934700", + "Timestamp": "2024-05-16T03:46:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.570700", + "Timestamp": "2024-05-16T03:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.565700", + "Timestamp": "2024-05-16T03:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.440700", + "Timestamp": "2024-05-16T03:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.258000", + "Timestamp": "2024-05-16T03:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.325700", + "Timestamp": "2024-05-16T03:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.295700", + "Timestamp": "2024-05-16T03:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195700", + "Timestamp": "2024-05-16T03:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.915000", + "Timestamp": "2024-05-16T03:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.910000", + "Timestamp": "2024-05-16T03:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.785000", + "Timestamp": "2024-05-16T03:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.793300", + "Timestamp": "2024-05-16T03:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.663200", + "Timestamp": "2024-05-16T03:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.991700", + "Timestamp": "2024-05-16T03:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.986700", + "Timestamp": "2024-05-16T03:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.861700", + "Timestamp": "2024-05-16T03:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076100", + "Timestamp": "2024-05-16T03:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.072400", + "Timestamp": "2024-05-16T03:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016100", + "Timestamp": "2024-05-16T03:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129100", + "Timestamp": "2024-05-16T03:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125100", + "Timestamp": "2024-05-16T03:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069100", + "Timestamp": "2024-05-16T03:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120000", + "Timestamp": "2024-05-16T03:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116300", + "Timestamp": "2024-05-16T03:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060000", + "Timestamp": "2024-05-16T03:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.120800", + "Timestamp": "2024-05-16T03:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.090800", + "Timestamp": "2024-05-16T03:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.990800", + "Timestamp": "2024-05-16T03:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.258800", + "Timestamp": "2024-05-16T03:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.228800", + "Timestamp": "2024-05-16T03:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128800", + "Timestamp": "2024-05-16T03:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151000", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051000", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.755200", + "Timestamp": "2024-05-16T03:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.750200", + "Timestamp": "2024-05-16T03:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.625200", + "Timestamp": "2024-05-16T03:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.597200", + "Timestamp": "2024-05-16T03:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.592200", + "Timestamp": "2024-05-16T03:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.467200", + "Timestamp": "2024-05-16T03:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.238200", + "Timestamp": "2024-05-16T03:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.234500", + "Timestamp": "2024-05-16T03:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.178200", + "Timestamp": "2024-05-16T03:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.561400", + "Timestamp": "2024-05-16T03:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.267800", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.262800", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.137800", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.437300", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.416100", + "Timestamp": "2024-05-16T03:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.411100", + "Timestamp": "2024-05-16T03:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.286100", + "Timestamp": "2024-05-16T03:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.240300", + "Timestamp": "2024-05-16T03:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.144400", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.239900", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.234900", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.109900", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.033300", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.028300", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.903300", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.159200", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.154200", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.029200", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.689300", + "Timestamp": "2024-05-16T03:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.333400", + "Timestamp": "2024-05-16T03:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-16T03:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039800", + "Timestamp": "2024-05-16T03:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008800", + "Timestamp": "2024-05-16T03:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129900", + "Timestamp": "2024-05-16T03:46:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126900", + "Timestamp": "2024-05-16T03:46:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069900", + "Timestamp": "2024-05-16T03:46:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176400", + "Timestamp": "2024-05-16T03:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.216400", + "Timestamp": "2024-05-16T03:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-16T03:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307400", + "Timestamp": "2024-05-16T03:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302400", + "Timestamp": "2024-05-16T03:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177400", + "Timestamp": "2024-05-16T03:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T03:46:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103400", + "Timestamp": "2024-05-16T03:46:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047400", + "Timestamp": "2024-05-16T03:46:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.181700", + "Timestamp": "2024-05-16T03:32:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.739000", + "Timestamp": "2024-05-16T03:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.352800", + "Timestamp": "2024-05-16T03:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.322800", + "Timestamp": "2024-05-16T03:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.222800", + "Timestamp": "2024-05-16T03:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151600", + "Timestamp": "2024-05-16T03:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147900", + "Timestamp": "2024-05-16T03:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091600", + "Timestamp": "2024-05-16T03:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136100", + "Timestamp": "2024-05-16T03:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132400", + "Timestamp": "2024-05-16T03:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076100", + "Timestamp": "2024-05-16T03:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.658700", + "Timestamp": "2024-05-16T03:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088600", + "Timestamp": "2024-05-16T03:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084900", + "Timestamp": "2024-05-16T03:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028600", + "Timestamp": "2024-05-16T03:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.294100", + "Timestamp": "2024-05-16T03:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.426400", + "Timestamp": "2024-05-16T03:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.421400", + "Timestamp": "2024-05-16T03:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.296400", + "Timestamp": "2024-05-16T03:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.562700", + "Timestamp": "2024-05-16T03:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.650300", + "Timestamp": "2024-05-16T03:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.004800", + "Timestamp": "2024-05-16T03:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.999800", + "Timestamp": "2024-05-16T03:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.874800", + "Timestamp": "2024-05-16T03:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.114000", + "Timestamp": "2024-05-16T03:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.591000", + "Timestamp": "2024-05-16T03:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062100", + "Timestamp": "2024-05-16T03:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002100", + "Timestamp": "2024-05-16T03:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002100", + "Timestamp": "2024-05-16T03:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.535600", + "Timestamp": "2024-05-16T03:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "f1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.505600", + "Timestamp": "2024-05-16T03:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.405600", + "Timestamp": "2024-05-16T03:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.310200", + "Timestamp": "2024-05-16T03:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.305200", + "Timestamp": "2024-05-16T03:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.180200", + "Timestamp": "2024-05-16T03:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.205900", + "Timestamp": "2024-05-16T03:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.200900", + "Timestamp": "2024-05-16T03:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.075900", + "Timestamp": "2024-05-16T03:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.645200", + "Timestamp": "2024-05-16T03:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.640200", + "Timestamp": "2024-05-16T03:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.515200", + "Timestamp": "2024-05-16T03:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.490300", + "Timestamp": "2024-05-16T03:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.460300", + "Timestamp": "2024-05-16T03:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.360300", + "Timestamp": "2024-05-16T03:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.496900", + "Timestamp": "2024-05-16T03:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.466900", + "Timestamp": "2024-05-16T03:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.366900", + "Timestamp": "2024-05-16T03:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.213500", + "Timestamp": "2024-05-16T03:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.208500", + "Timestamp": "2024-05-16T03:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.083500", + "Timestamp": "2024-05-16T03:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087700", + "Timestamp": "2024-05-16T03:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084000", + "Timestamp": "2024-05-16T03:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027700", + "Timestamp": "2024-05-16T03:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.301000", + "Timestamp": "2024-05-16T03:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133300", + "Timestamp": "2024-05-16T03:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129600", + "Timestamp": "2024-05-16T03:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073300", + "Timestamp": "2024-05-16T03:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166400", + "Timestamp": "2024-05-16T03:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162700", + "Timestamp": "2024-05-16T03:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T03:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148500", + "Timestamp": "2024-05-16T03:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144800", + "Timestamp": "2024-05-16T03:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088500", + "Timestamp": "2024-05-16T03:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t1.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.007700", + "Timestamp": "2024-05-16T03:20:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.716800", + "Timestamp": "2024-05-16T03:17:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.677400", + "Timestamp": "2024-05-16T03:17:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.672400", + "Timestamp": "2024-05-16T03:17:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.547400", + "Timestamp": "2024-05-16T03:17:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095700", + "Timestamp": "2024-05-16T03:17:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135700", + "Timestamp": "2024-05-16T03:17:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035700", + "Timestamp": "2024-05-16T03:17:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.997100", + "Timestamp": "2024-05-16T03:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "a1.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092900", + "Timestamp": "2024-05-16T03:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "a1.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089200", + "Timestamp": "2024-05-16T03:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "a1.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032900", + "Timestamp": "2024-05-16T03:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.039500", + "Timestamp": "2024-05-16T03:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.425400", + "Timestamp": "2024-05-16T03:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.420400", + "Timestamp": "2024-05-16T03:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.295400", + "Timestamp": "2024-05-16T03:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.095800", + "Timestamp": "2024-05-16T03:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.090800", + "Timestamp": "2024-05-16T03:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.965800", + "Timestamp": "2024-05-16T03:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.275000", + "Timestamp": "2024-05-16T03:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T03:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093400", + "Timestamp": "2024-05-16T03:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037100", + "Timestamp": "2024-05-16T03:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.289100", + "Timestamp": "2024-05-16T03:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.284100", + "Timestamp": "2024-05-16T03:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.159100", + "Timestamp": "2024-05-16T03:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.107600", + "Timestamp": "2024-05-16T03:17:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.102600", + "Timestamp": "2024-05-16T03:17:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.977600", + "Timestamp": "2024-05-16T03:17:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.723000", + "Timestamp": "2024-05-16T03:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.204200", + "Timestamp": "2024-05-16T03:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.564900", + "Timestamp": "2024-05-16T03:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.559900", + "Timestamp": "2024-05-16T03:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.434900", + "Timestamp": "2024-05-16T03:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.927100", + "Timestamp": "2024-05-16T03:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.922100", + "Timestamp": "2024-05-16T03:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.797100", + "Timestamp": "2024-05-16T03:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "d3en.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.698600", + "Timestamp": "2024-05-16T03:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.127400", + "Timestamp": "2024-05-16T03:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.344700", + "Timestamp": "2024-05-16T03:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.339700", + "Timestamp": "2024-05-16T03:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.214700", + "Timestamp": "2024-05-16T03:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150900", + "Timestamp": "2024-05-16T03:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146900", + "Timestamp": "2024-05-16T03:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090900", + "Timestamp": "2024-05-16T03:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.602800", + "Timestamp": "2024-05-16T03:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.328000", + "Timestamp": "2024-05-16T03:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.323000", + "Timestamp": "2024-05-16T03:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.198000", + "Timestamp": "2024-05-16T03:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.740000", + "Timestamp": "2024-05-16T03:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.710000", + "Timestamp": "2024-05-16T03:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.610000", + "Timestamp": "2024-05-16T03:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121600", + "Timestamp": "2024-05-16T03:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117600", + "Timestamp": "2024-05-16T03:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061600", + "Timestamp": "2024-05-16T03:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117400", + "Timestamp": "2024-05-16T03:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113700", + "Timestamp": "2024-05-16T03:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057400", + "Timestamp": "2024-05-16T03:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.660300", + "Timestamp": "2024-05-16T03:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.579400", + "Timestamp": "2024-05-16T03:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.574400", + "Timestamp": "2024-05-16T03:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.449400", + "Timestamp": "2024-05-16T03:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.297900", + "Timestamp": "2024-05-16T03:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.292900", + "Timestamp": "2024-05-16T03:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.167900", + "Timestamp": "2024-05-16T03:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.263400", + "Timestamp": "2024-05-16T03:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258400", + "Timestamp": "2024-05-16T03:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133400", + "Timestamp": "2024-05-16T03:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.551500", + "Timestamp": "2024-05-16T03:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.508000", + "Timestamp": "2024-05-16T03:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.503000", + "Timestamp": "2024-05-16T03:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.378000", + "Timestamp": "2024-05-16T03:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.536500", + "Timestamp": "2024-05-16T03:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.293500", + "Timestamp": "2024-05-16T03:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.070200", + "Timestamp": "2024-05-16T03:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137000", + "Timestamp": "2024-05-16T03:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133300", + "Timestamp": "2024-05-16T03:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077000", + "Timestamp": "2024-05-16T03:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.561900", + "Timestamp": "2024-05-16T03:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.799900", + "Timestamp": "2024-05-16T03:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.623200", + "Timestamp": "2024-05-16T03:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.156000", + "Timestamp": "2024-05-16T03:16:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.060400", + "Timestamp": "2024-05-16T03:02:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.710600", + "Timestamp": "2024-05-16T03:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.214800", + "Timestamp": "2024-05-16T03:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.209800", + "Timestamp": "2024-05-16T03:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.084800", + "Timestamp": "2024-05-16T03:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.602600", + "Timestamp": "2024-05-16T03:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.597600", + "Timestamp": "2024-05-16T03:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.472600", + "Timestamp": "2024-05-16T03:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168000", + "Timestamp": "2024-05-16T03:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.208000", + "Timestamp": "2024-05-16T03:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-16T03:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.754200", + "Timestamp": "2024-05-16T03:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.749200", + "Timestamp": "2024-05-16T03:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.624200", + "Timestamp": "2024-05-16T03:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.545300", + "Timestamp": "2024-05-16T03:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.540300", + "Timestamp": "2024-05-16T03:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.415300", + "Timestamp": "2024-05-16T03:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084400", + "Timestamp": "2024-05-16T03:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080700", + "Timestamp": "2024-05-16T03:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024400", + "Timestamp": "2024-05-16T03:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.495600", + "Timestamp": "2024-05-16T03:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.490600", + "Timestamp": "2024-05-16T03:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.365600", + "Timestamp": "2024-05-16T03:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.349700", + "Timestamp": "2024-05-16T03:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.344700", + "Timestamp": "2024-05-16T03:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.219700", + "Timestamp": "2024-05-16T03:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096600", + "Timestamp": "2024-05-16T03:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092900", + "Timestamp": "2024-05-16T03:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036600", + "Timestamp": "2024-05-16T03:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.283000", + "Timestamp": "2024-05-16T03:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.278000", + "Timestamp": "2024-05-16T03:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.153000", + "Timestamp": "2024-05-16T03:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.009500", + "Timestamp": "2024-05-16T03:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.004500", + "Timestamp": "2024-05-16T03:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.879500", + "Timestamp": "2024-05-16T03:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.248000", + "Timestamp": "2024-05-16T03:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.243000", + "Timestamp": "2024-05-16T03:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.118000", + "Timestamp": "2024-05-16T03:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.320600", + "Timestamp": "2024-05-16T03:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.316600", + "Timestamp": "2024-05-16T03:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.260600", + "Timestamp": "2024-05-16T03:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.641300", + "Timestamp": "2024-05-16T03:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311400", + "Timestamp": "2024-05-16T03:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281400", + "Timestamp": "2024-05-16T03:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181400", + "Timestamp": "2024-05-16T03:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.487500", + "Timestamp": "2024-05-16T03:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.595400", + "Timestamp": "2024-05-16T03:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.603300", + "Timestamp": "2024-05-16T03:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.573300", + "Timestamp": "2024-05-16T03:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.473300", + "Timestamp": "2024-05-16T03:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.193200", + "Timestamp": "2024-05-16T03:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.245600", + "Timestamp": "2024-05-16T03:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.241600", + "Timestamp": "2024-05-16T03:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.185600", + "Timestamp": "2024-05-16T03:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.078100", + "Timestamp": "2024-05-16T03:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.035300", + "Timestamp": "2024-05-16T03:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "vt1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.848500", + "Timestamp": "2024-05-16T03:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "vt1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.818500", + "Timestamp": "2024-05-16T03:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "vt1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.718500", + "Timestamp": "2024-05-16T03:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.249800", + "Timestamp": "2024-05-16T03:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.244800", + "Timestamp": "2024-05-16T03:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.119800", + "Timestamp": "2024-05-16T03:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.423500", + "Timestamp": "2024-05-16T03:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.418500", + "Timestamp": "2024-05-16T03:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.293500", + "Timestamp": "2024-05-16T03:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.385300", + "Timestamp": "2024-05-16T03:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.380300", + "Timestamp": "2024-05-16T03:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.255300", + "Timestamp": "2024-05-16T03:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133400", + "Timestamp": "2024-05-16T03:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129700", + "Timestamp": "2024-05-16T03:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073400", + "Timestamp": "2024-05-16T03:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155100", + "Timestamp": "2024-05-16T03:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151400", + "Timestamp": "2024-05-16T03:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095100", + "Timestamp": "2024-05-16T03:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.263300", + "Timestamp": "2024-05-16T03:01:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.296500", + "Timestamp": "2024-05-16T03:01:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.768000", + "Timestamp": "2024-05-16T02:47:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.763000", + "Timestamp": "2024-05-16T02:47:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.638000", + "Timestamp": "2024-05-16T02:47:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.396600", + "Timestamp": "2024-05-16T02:47:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.391600", + "Timestamp": "2024-05-16T02:47:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.266600", + "Timestamp": "2024-05-16T02:47:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.040600", + "Timestamp": "2024-05-16T02:47:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.370600", + "Timestamp": "2024-05-16T02:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.357900", + "Timestamp": "2024-05-16T02:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.352900", + "Timestamp": "2024-05-16T02:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.227900", + "Timestamp": "2024-05-16T02:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.338100", + "Timestamp": "2024-05-16T02:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.658600", + "Timestamp": "2024-05-16T02:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.891400", + "Timestamp": "2024-05-16T02:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.886400", + "Timestamp": "2024-05-16T02:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.761400", + "Timestamp": "2024-05-16T02:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.652300", + "Timestamp": "2024-05-16T02:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360500", + "Timestamp": "2024-05-16T02:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g3s.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.356500", + "Timestamp": "2024-05-16T02:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.300500", + "Timestamp": "2024-05-16T02:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088300", + "Timestamp": "2024-05-16T02:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084600", + "Timestamp": "2024-05-16T02:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028300", + "Timestamp": "2024-05-16T02:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089800", + "Timestamp": "2024-05-16T02:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086100", + "Timestamp": "2024-05-16T02:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029800", + "Timestamp": "2024-05-16T02:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.422800", + "Timestamp": "2024-05-16T02:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.417800", + "Timestamp": "2024-05-16T02:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.292800", + "Timestamp": "2024-05-16T02:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.648300", + "Timestamp": "2024-05-16T02:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.967900", + "Timestamp": "2024-05-16T02:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.962900", + "Timestamp": "2024-05-16T02:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.837900", + "Timestamp": "2024-05-16T02:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.725300", + "Timestamp": "2024-05-16T02:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.720300", + "Timestamp": "2024-05-16T02:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.595300", + "Timestamp": "2024-05-16T02:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.966500", + "Timestamp": "2024-05-16T02:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141700", + "Timestamp": "2024-05-16T02:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138000", + "Timestamp": "2024-05-16T02:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081700", + "Timestamp": "2024-05-16T02:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T02:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T02:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040800", + "Timestamp": "2024-05-16T02:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.419200", + "Timestamp": "2024-05-16T02:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.414200", + "Timestamp": "2024-05-16T02:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.289200", + "Timestamp": "2024-05-16T02:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "d3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437700", + "Timestamp": "2024-05-16T02:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.267800", + "Timestamp": "2024-05-16T02:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.260300", + "Timestamp": "2024-05-16T02:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.255300", + "Timestamp": "2024-05-16T02:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130300", + "Timestamp": "2024-05-16T02:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.051600", + "Timestamp": "2024-05-16T02:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.956500", + "Timestamp": "2024-05-16T02:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.951500", + "Timestamp": "2024-05-16T02:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.826500", + "Timestamp": "2024-05-16T02:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127000", + "Timestamp": "2024-05-16T02:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167000", + "Timestamp": "2024-05-16T02:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067000", + "Timestamp": "2024-05-16T02:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123900", + "Timestamp": "2024-05-16T02:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119900", + "Timestamp": "2024-05-16T02:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063900", + "Timestamp": "2024-05-16T02:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111800", + "Timestamp": "2024-05-16T02:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.543300", + "Timestamp": "2024-05-16T02:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.538300", + "Timestamp": "2024-05-16T02:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.413300", + "Timestamp": "2024-05-16T02:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.409400", + "Timestamp": "2024-05-16T02:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.404400", + "Timestamp": "2024-05-16T02:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.279400", + "Timestamp": "2024-05-16T02:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.380600", + "Timestamp": "2024-05-16T02:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.350600", + "Timestamp": "2024-05-16T02:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.250600", + "Timestamp": "2024-05-16T02:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.145600", + "Timestamp": "2024-05-16T02:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "vt1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.813200", + "Timestamp": "2024-05-16T02:32:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "vt1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.783200", + "Timestamp": "2024-05-16T02:32:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "vt1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.683200", + "Timestamp": "2024-05-16T02:32:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.302000", + "Timestamp": "2024-05-16T02:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7iz.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.606700", + "Timestamp": "2024-05-16T02:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081200", + "Timestamp": "2024-05-16T02:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077500", + "Timestamp": "2024-05-16T02:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021200", + "Timestamp": "2024-05-16T02:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "24.407500", + "Timestamp": "2024-05-16T02:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "24.402500", + "Timestamp": "2024-05-16T02:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "24.277500", + "Timestamp": "2024-05-16T02:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.539100", + "Timestamp": "2024-05-16T02:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.553400", + "Timestamp": "2024-05-16T02:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.067500", + "Timestamp": "2024-05-16T02:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2iezn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.976600", + "Timestamp": "2024-05-16T02:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.272400", + "Timestamp": "2024-05-16T02:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268700", + "Timestamp": "2024-05-16T02:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212400", + "Timestamp": "2024-05-16T02:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080300", + "Timestamp": "2024-05-16T02:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.051300", + "Timestamp": "2024-05-16T02:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020300", + "Timestamp": "2024-05-16T02:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165200", + "Timestamp": "2024-05-16T02:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161500", + "Timestamp": "2024-05-16T02:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T02:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080400", + "Timestamp": "2024-05-16T02:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076700", + "Timestamp": "2024-05-16T02:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020400", + "Timestamp": "2024-05-16T02:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113200", + "Timestamp": "2024-05-16T02:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T02:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053200", + "Timestamp": "2024-05-16T02:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.087600", + "Timestamp": "2024-05-16T02:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.082600", + "Timestamp": "2024-05-16T02:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.957600", + "Timestamp": "2024-05-16T02:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.822100", + "Timestamp": "2024-05-16T02:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.817100", + "Timestamp": "2024-05-16T02:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.692100", + "Timestamp": "2024-05-16T02:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.959700", + "Timestamp": "2024-05-16T02:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.954700", + "Timestamp": "2024-05-16T02:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.829700", + "Timestamp": "2024-05-16T02:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.349300", + "Timestamp": "2024-05-16T02:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.344300", + "Timestamp": "2024-05-16T02:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219300", + "Timestamp": "2024-05-16T02:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.218700", + "Timestamp": "2024-05-16T02:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.213700", + "Timestamp": "2024-05-16T02:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.088700", + "Timestamp": "2024-05-16T02:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.194200", + "Timestamp": "2024-05-16T02:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.222700", + "Timestamp": "2024-05-16T02:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.218700", + "Timestamp": "2024-05-16T02:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162700", + "Timestamp": "2024-05-16T02:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.948200", + "Timestamp": "2024-05-16T02:31:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.523800", + "Timestamp": "2024-05-16T02:17:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.164700", + "Timestamp": "2024-05-16T02:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-16T02:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T02:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049300", + "Timestamp": "2024-05-16T02:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.618100", + "Timestamp": "2024-05-16T02:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.613100", + "Timestamp": "2024-05-16T02:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.488100", + "Timestamp": "2024-05-16T02:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.403600", + "Timestamp": "2024-05-16T02:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.398600", + "Timestamp": "2024-05-16T02:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.273600", + "Timestamp": "2024-05-16T02:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.161300", + "Timestamp": "2024-05-16T02:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.529600", + "Timestamp": "2024-05-16T02:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.423000", + "Timestamp": "2024-05-16T02:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.418000", + "Timestamp": "2024-05-16T02:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.293000", + "Timestamp": "2024-05-16T02:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T02:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110900", + "Timestamp": "2024-05-16T02:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054600", + "Timestamp": "2024-05-16T02:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.982800", + "Timestamp": "2024-05-16T02:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.977800", + "Timestamp": "2024-05-16T02:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.852800", + "Timestamp": "2024-05-16T02:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.198000", + "Timestamp": "2024-05-16T02:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.194000", + "Timestamp": "2024-05-16T02:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.138000", + "Timestamp": "2024-05-16T02:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.317900", + "Timestamp": "2024-05-16T02:16:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.287900", + "Timestamp": "2024-05-16T02:16:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.187900", + "Timestamp": "2024-05-16T02:16:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079500", + "Timestamp": "2024-05-16T02:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075800", + "Timestamp": "2024-05-16T02:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019500", + "Timestamp": "2024-05-16T02:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.275700", + "Timestamp": "2024-05-16T02:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m1.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078500", + "Timestamp": "2024-05-16T02:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m1.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.048500", + "Timestamp": "2024-05-16T02:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m1.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018500", + "Timestamp": "2024-05-16T02:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.296300", + "Timestamp": "2024-05-16T02:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.151300", + "Timestamp": "2024-05-16T02:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161700", + "Timestamp": "2024-05-16T02:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158000", + "Timestamp": "2024-05-16T02:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-16T02:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T01:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093400", + "Timestamp": "2024-05-16T01:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037100", + "Timestamp": "2024-05-16T01:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.142700", + "Timestamp": "2024-05-16T01:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.419000", + "Timestamp": "2024-05-16T01:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.389000", + "Timestamp": "2024-05-16T01:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.289000", + "Timestamp": "2024-05-16T01:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.367100", + "Timestamp": "2024-05-16T01:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.307600", + "Timestamp": "2024-05-16T01:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-16T01:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098900", + "Timestamp": "2024-05-16T01:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042600", + "Timestamp": "2024-05-16T01:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.516200", + "Timestamp": "2024-05-16T01:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.116300", + "Timestamp": "2024-05-16T01:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148500", + "Timestamp": "2024-05-16T01:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144500", + "Timestamp": "2024-05-16T01:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088500", + "Timestamp": "2024-05-16T01:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131500", + "Timestamp": "2024-05-16T01:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127800", + "Timestamp": "2024-05-16T01:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071500", + "Timestamp": "2024-05-16T01:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.789800", + "Timestamp": "2024-05-16T01:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.784800", + "Timestamp": "2024-05-16T01:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.659800", + "Timestamp": "2024-05-16T01:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.070300", + "Timestamp": "2024-05-16T01:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083600", + "Timestamp": "2024-05-16T01:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079900", + "Timestamp": "2024-05-16T01:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023600", + "Timestamp": "2024-05-16T01:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.768200", + "Timestamp": "2024-05-16T01:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.763200", + "Timestamp": "2024-05-16T01:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.638200", + "Timestamp": "2024-05-16T01:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163100", + "Timestamp": "2024-05-16T01:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159400", + "Timestamp": "2024-05-16T01:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103100", + "Timestamp": "2024-05-16T01:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.293700", + "Timestamp": "2024-05-16T01:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.180500", + "Timestamp": "2024-05-16T01:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.220500", + "Timestamp": "2024-05-16T01:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120500", + "Timestamp": "2024-05-16T01:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141400", + "Timestamp": "2024-05-16T01:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137700", + "Timestamp": "2024-05-16T01:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7iz.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081400", + "Timestamp": "2024-05-16T01:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T01:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-16T01:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049800", + "Timestamp": "2024-05-16T01:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094900", + "Timestamp": "2024-05-16T01:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091200", + "Timestamp": "2024-05-16T01:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034900", + "Timestamp": "2024-05-16T01:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170000", + "Timestamp": "2024-05-16T01:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166300", + "Timestamp": "2024-05-16T01:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T01:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.916600", + "Timestamp": "2024-05-16T01:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.911600", + "Timestamp": "2024-05-16T01:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.786600", + "Timestamp": "2024-05-16T01:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T01:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101900", + "Timestamp": "2024-05-16T01:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045600", + "Timestamp": "2024-05-16T01:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105100", + "Timestamp": "2024-05-16T01:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101100", + "Timestamp": "2024-05-16T01:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045100", + "Timestamp": "2024-05-16T01:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148400", + "Timestamp": "2024-05-16T01:16:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144400", + "Timestamp": "2024-05-16T01:16:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088400", + "Timestamp": "2024-05-16T01:16:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "15.682000", + "Timestamp": "2024-05-16T01:04:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "p2.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "15.652000", + "Timestamp": "2024-05-16T01:04:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "p2.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "15.552000", + "Timestamp": "2024-05-16T01:04:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.136100", + "Timestamp": "2024-05-16T01:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.063900", + "Timestamp": "2024-05-16T01:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.387000", + "Timestamp": "2024-05-16T01:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.191000", + "Timestamp": "2024-05-16T01:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.187300", + "Timestamp": "2024-05-16T01:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131000", + "Timestamp": "2024-05-16T01:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.034700", + "Timestamp": "2024-05-16T01:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.285900", + "Timestamp": "2024-05-16T01:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.066900", + "Timestamp": "2024-05-16T01:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.539500", + "Timestamp": "2024-05-16T01:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.400900", + "Timestamp": "2024-05-16T01:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.395900", + "Timestamp": "2024-05-16T01:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.270900", + "Timestamp": "2024-05-16T01:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078600", + "Timestamp": "2024-05-16T01:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074900", + "Timestamp": "2024-05-16T01:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018600", + "Timestamp": "2024-05-16T01:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.252200", + "Timestamp": "2024-05-16T01:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064800", + "Timestamp": "2024-05-16T00:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004800", + "Timestamp": "2024-05-16T00:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004800", + "Timestamp": "2024-05-16T00:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.614000", + "Timestamp": "2024-05-16T00:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101500", + "Timestamp": "2024-05-16T00:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141500", + "Timestamp": "2024-05-16T00:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041500", + "Timestamp": "2024-05-16T00:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172100", + "Timestamp": "2024-05-16T00:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169100", + "Timestamp": "2024-05-16T00:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T00:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078400", + "Timestamp": "2024-05-16T00:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074700", + "Timestamp": "2024-05-16T00:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018400", + "Timestamp": "2024-05-16T00:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.154000", + "Timestamp": "2024-05-16T00:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.375500", + "Timestamp": "2024-05-16T00:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.370500", + "Timestamp": "2024-05-16T00:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.245500", + "Timestamp": "2024-05-16T00:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069800", + "Timestamp": "2024-05-16T00:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039800", + "Timestamp": "2024-05-16T00:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009800", + "Timestamp": "2024-05-16T00:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.143200", + "Timestamp": "2024-05-16T00:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.083300", + "Timestamp": "2024-05-16T00:33:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.310300", + "Timestamp": "2024-05-16T00:32:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.265900", + "Timestamp": "2024-05-16T00:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.372000", + "Timestamp": "2024-05-16T00:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.367000", + "Timestamp": "2024-05-16T00:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.242000", + "Timestamp": "2024-05-16T00:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t1.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.007700", + "Timestamp": "2024-05-16T00:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.161900", + "Timestamp": "2024-05-16T00:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090000", + "Timestamp": "2024-05-16T00:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086300", + "Timestamp": "2024-05-16T00:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030000", + "Timestamp": "2024-05-16T00:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.618300", + "Timestamp": "2024-05-16T00:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126500", + "Timestamp": "2024-05-16T00:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166500", + "Timestamp": "2024-05-16T00:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066500", + "Timestamp": "2024-05-16T00:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.168100", + "Timestamp": "2024-05-16T00:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.378800", + "Timestamp": "2024-05-16T00:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.348800", + "Timestamp": "2024-05-16T00:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.248800", + "Timestamp": "2024-05-16T00:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.271300", + "Timestamp": "2024-05-16T00:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.134900", + "Timestamp": "2024-05-16T00:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.146100", + "Timestamp": "2024-05-16T00:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.272700", + "Timestamp": "2024-05-16T00:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139900", + "Timestamp": "2024-05-16T00:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136200", + "Timestamp": "2024-05-16T00:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079900", + "Timestamp": "2024-05-16T00:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.131700", + "Timestamp": "2024-05-16T00:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.164100", + "Timestamp": "2024-05-16T00:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103600", + "Timestamp": "2024-05-16T00:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099900", + "Timestamp": "2024-05-16T00:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043600", + "Timestamp": "2024-05-16T00:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.218400", + "Timestamp": "2024-05-16T00:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.215400", + "Timestamp": "2024-05-16T00:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158400", + "Timestamp": "2024-05-16T00:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.009900", + "Timestamp": "2024-05-15T23:49:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068700", + "Timestamp": "2024-05-15T23:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040000", + "Timestamp": "2024-05-15T23:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008700", + "Timestamp": "2024-05-15T23:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093000", + "Timestamp": "2024-05-15T23:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133000", + "Timestamp": "2024-05-15T23:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033000", + "Timestamp": "2024-05-15T23:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064500", + "Timestamp": "2024-05-15T23:34:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004500", + "Timestamp": "2024-05-15T23:34:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004500", + "Timestamp": "2024-05-15T23:34:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.138000", + "Timestamp": "2024-05-15T23:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.035700", + "Timestamp": "2024-05-15T23:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135300", + "Timestamp": "2024-05-15T23:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131600", + "Timestamp": "2024-05-15T23:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075300", + "Timestamp": "2024-05-15T23:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126300", + "Timestamp": "2024-05-15T23:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166300", + "Timestamp": "2024-05-15T23:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066300", + "Timestamp": "2024-05-15T23:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.386000", + "Timestamp": "2024-05-15T23:26:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-15T23:26:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-15T23:26:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.544000", + "Timestamp": "2024-05-15T23:25:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.544000", + "Timestamp": "2024-05-15T23:25:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.772000", + "Timestamp": "2024-05-15T23:25:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.135900", + "Timestamp": "2024-05-15T23:17:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140100", + "Timestamp": "2024-05-15T23:17:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136400", + "Timestamp": "2024-05-15T23:17:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080100", + "Timestamp": "2024-05-15T23:17:00.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083200", + "Timestamp": "2024-05-15T23:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123200", + "Timestamp": "2024-05-15T23:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023200", + "Timestamp": "2024-05-15T23:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.381900", + "Timestamp": "2024-05-15T23:02:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.570100", + "Timestamp": "2024-05-15T23:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.844300", + "Timestamp": "2024-05-15T23:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.262000", + "Timestamp": "2024-05-15T23:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258000", + "Timestamp": "2024-05-15T23:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.202000", + "Timestamp": "2024-05-15T23:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.367400", + "Timestamp": "2024-05-15T23:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.362400", + "Timestamp": "2024-05-15T23:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.237400", + "Timestamp": "2024-05-15T23:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070600", + "Timestamp": "2024-05-15T23:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040600", + "Timestamp": "2024-05-15T23:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010600", + "Timestamp": "2024-05-15T23:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294800", + "Timestamp": "2024-05-15T23:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289800", + "Timestamp": "2024-05-15T23:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164800", + "Timestamp": "2024-05-15T23:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.657300", + "Timestamp": "2024-05-15T23:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.627300", + "Timestamp": "2024-05-15T23:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.527300", + "Timestamp": "2024-05-15T23:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076000", + "Timestamp": "2024-05-15T23:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.072300", + "Timestamp": "2024-05-15T23:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016000", + "Timestamp": "2024-05-15T23:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "h1.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.584300", + "Timestamp": "2024-05-15T22:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.275700", + "Timestamp": "2024-05-15T22:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.130700", + "Timestamp": "2024-05-15T22:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102400", + "Timestamp": "2024-05-15T22:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098400", + "Timestamp": "2024-05-15T22:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042400", + "Timestamp": "2024-05-15T22:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120600", + "Timestamp": "2024-05-15T22:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-15T22:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060600", + "Timestamp": "2024-05-15T22:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.256600", + "Timestamp": "2024-05-15T22:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064500", + "Timestamp": "2024-05-15T22:43:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004500", + "Timestamp": "2024-05-15T22:43:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004500", + "Timestamp": "2024-05-15T22:43:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010100", + "Timestamp": "2024-05-15T22:42:11.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-15T22:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102400", + "Timestamp": "2024-05-15T22:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046100", + "Timestamp": "2024-05-15T22:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.059500", + "Timestamp": "2024-05-15T22:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077000", + "Timestamp": "2024-05-15T22:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.048000", + "Timestamp": "2024-05-15T22:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017000", + "Timestamp": "2024-05-15T22:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100000", + "Timestamp": "2024-05-15T22:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096300", + "Timestamp": "2024-05-15T22:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040000", + "Timestamp": "2024-05-15T22:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110400", + "Timestamp": "2024-05-15T22:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-15T22:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050400", + "Timestamp": "2024-05-15T22:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.529700", + "Timestamp": "2024-05-15T22:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.524700", + "Timestamp": "2024-05-15T22:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.399700", + "Timestamp": "2024-05-15T22:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.895100", + "Timestamp": "2024-05-15T22:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.890100", + "Timestamp": "2024-05-15T22:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.765100", + "Timestamp": "2024-05-15T22:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.275800", + "Timestamp": "2024-05-15T22:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092800", + "Timestamp": "2024-05-15T22:31:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089100", + "Timestamp": "2024-05-15T22:31:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032800", + "Timestamp": "2024-05-15T22:31:19.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.677600", + "Timestamp": "2024-05-15T22:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.672600", + "Timestamp": "2024-05-15T22:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.547600", + "Timestamp": "2024-05-15T22:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.186500", + "Timestamp": "2024-05-15T22:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.310200", + "Timestamp": "2024-05-15T22:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.380700", + "Timestamp": "2024-05-15T22:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.375700", + "Timestamp": "2024-05-15T22:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.250700", + "Timestamp": "2024-05-15T22:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.747300", + "Timestamp": "2024-05-15T22:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.742300", + "Timestamp": "2024-05-15T22:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.617300", + "Timestamp": "2024-05-15T22:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126500", + "Timestamp": "2024-05-15T22:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122800", + "Timestamp": "2024-05-15T22:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066500", + "Timestamp": "2024-05-15T22:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.551200", + "Timestamp": "2024-05-15T22:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.006900", + "Timestamp": "2024-05-15T22:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095000", + "Timestamp": "2024-05-15T22:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091300", + "Timestamp": "2024-05-15T22:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035000", + "Timestamp": "2024-05-15T22:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161300", + "Timestamp": "2024-05-15T22:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157600", + "Timestamp": "2024-05-15T22:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101300", + "Timestamp": "2024-05-15T22:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.135700", + "Timestamp": "2024-05-15T22:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065600", + "Timestamp": "2024-05-15T22:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.005600", + "Timestamp": "2024-05-15T22:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005600", + "Timestamp": "2024-05-15T22:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125500", + "Timestamp": "2024-05-15T21:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-15T21:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-15T21:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046500", + "Timestamp": "2024-05-15T21:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.238900", + "Timestamp": "2024-05-15T21:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m1.small", + "ProductDescription": "Windows", + "SpotPrice": "0.046800", + "Timestamp": "2024-05-15T21:46:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080600", + "Timestamp": "2024-05-15T21:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.051600", + "Timestamp": "2024-05-15T21:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020600", + "Timestamp": "2024-05-15T21:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.034800", + "Timestamp": "2024-05-15T21:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.130000", + "Timestamp": "2024-05-15T21:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.335500", + "Timestamp": "2024-05-15T21:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.013300", + "Timestamp": "2024-05-15T21:38:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.906000", + "Timestamp": "2024-05-15T21:36:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "p2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.876000", + "Timestamp": "2024-05-15T21:36:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.776000", + "Timestamp": "2024-05-15T21:36:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "p2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.248000", + "Timestamp": "2024-05-15T21:36:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "14.683900", + "Timestamp": "2024-05-15T21:32:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069300", + "Timestamp": "2024-05-15T21:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.065600", + "Timestamp": "2024-05-15T21:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009300", + "Timestamp": "2024-05-15T21:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089200", + "Timestamp": "2024-05-15T21:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129200", + "Timestamp": "2024-05-15T21:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029200", + "Timestamp": "2024-05-15T21:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-15T21:31:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039800", + "Timestamp": "2024-05-15T21:31:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008800", + "Timestamp": "2024-05-15T21:31:58.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.135300", + "Timestamp": "2024-05-15T21:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.159000", + "Timestamp": "2024-05-15T21:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.154000", + "Timestamp": "2024-05-15T21:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.029000", + "Timestamp": "2024-05-15T21:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.006600", + "Timestamp": "2024-05-15T21:25:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118500", + "Timestamp": "2024-05-15T21:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114800", + "Timestamp": "2024-05-15T21:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058500", + "Timestamp": "2024-05-15T21:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.269100", + "Timestamp": "2024-05-15T21:17:13.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121600", + "Timestamp": "2024-05-15T21:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117600", + "Timestamp": "2024-05-15T21:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061600", + "Timestamp": "2024-05-15T21:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.850300", + "Timestamp": "2024-05-15T21:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.845300", + "Timestamp": "2024-05-15T21:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.720300", + "Timestamp": "2024-05-15T21:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113900", + "Timestamp": "2024-05-15T21:08:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-15T21:08:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053900", + "Timestamp": "2024-05-15T21:08:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.150400", + "Timestamp": "2024-05-15T21:08:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-15T21:07:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-15T21:07:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046100", + "Timestamp": "2024-05-15T21:07:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.567900", + "Timestamp": "2024-05-15T21:07:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.562900", + "Timestamp": "2024-05-15T21:07:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "x2gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.437900", + "Timestamp": "2024-05-15T21:07:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084000", + "Timestamp": "2024-05-15T21:03:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080300", + "Timestamp": "2024-05-15T21:03:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024000", + "Timestamp": "2024-05-15T21:03:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062300", + "Timestamp": "2024-05-15T21:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002300", + "Timestamp": "2024-05-15T21:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002300", + "Timestamp": "2024-05-15T21:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081600", + "Timestamp": "2024-05-15T20:47:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.052600", + "Timestamp": "2024-05-15T20:47:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021600", + "Timestamp": "2024-05-15T20:47:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.027400", + "Timestamp": "2024-05-15T20:47:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.090800", + "Timestamp": "2024-05-15T20:47:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-15T20:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-15T20:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050100", + "Timestamp": "2024-05-15T20:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066900", + "Timestamp": "2024-05-15T20:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038200", + "Timestamp": "2024-05-15T20:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006900", + "Timestamp": "2024-05-15T20:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107900", + "Timestamp": "2024-05-15T20:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103900", + "Timestamp": "2024-05-15T20:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047900", + "Timestamp": "2024-05-15T20:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-15T20:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-15T20:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041200", + "Timestamp": "2024-05-15T20:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088000", + "Timestamp": "2024-05-15T20:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084300", + "Timestamp": "2024-05-15T20:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028000", + "Timestamp": "2024-05-15T20:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.322200", + "Timestamp": "2024-05-15T20:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.129600", + "Timestamp": "2024-05-15T20:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.168000", + "Timestamp": "2024-05-15T20:19:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "h1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.138000", + "Timestamp": "2024-05-15T20:19:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.038000", + "Timestamp": "2024-05-15T20:19:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.133400", + "Timestamp": "2024-05-15T20:17:36.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.135200", + "Timestamp": "2024-05-15T20:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103200", + "Timestamp": "2024-05-15T20:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-15T20:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043200", + "Timestamp": "2024-05-15T20:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.255700", + "Timestamp": "2024-05-15T20:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150500", + "Timestamp": "2024-05-15T20:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146800", + "Timestamp": "2024-05-15T20:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090500", + "Timestamp": "2024-05-15T20:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.034700", + "Timestamp": "2024-05-15T20:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087600", + "Timestamp": "2024-05-15T20:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083900", + "Timestamp": "2024-05-15T20:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027600", + "Timestamp": "2024-05-15T20:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119900", + "Timestamp": "2024-05-15T20:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159900", + "Timestamp": "2024-05-15T20:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059900", + "Timestamp": "2024-05-15T20:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.500200", + "Timestamp": "2024-05-15T19:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.495200", + "Timestamp": "2024-05-15T19:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.370200", + "Timestamp": "2024-05-15T19:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069300", + "Timestamp": "2024-05-15T19:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-15T19:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009300", + "Timestamp": "2024-05-15T19:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062000", + "Timestamp": "2024-05-15T19:36:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002000", + "Timestamp": "2024-05-15T19:36:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002000", + "Timestamp": "2024-05-15T19:36:03.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131300", + "Timestamp": "2024-05-15T19:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.171300", + "Timestamp": "2024-05-15T19:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071300", + "Timestamp": "2024-05-15T19:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078400", + "Timestamp": "2024-05-15T19:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074700", + "Timestamp": "2024-05-15T19:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018400", + "Timestamp": "2024-05-15T19:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096300", + "Timestamp": "2024-05-15T19:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092600", + "Timestamp": "2024-05-15T19:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036300", + "Timestamp": "2024-05-15T19:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.130400", + "Timestamp": "2024-05-15T19:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.584500", + "Timestamp": "2024-05-15T19:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141100", + "Timestamp": "2024-05-15T19:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137400", + "Timestamp": "2024-05-15T19:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081100", + "Timestamp": "2024-05-15T19:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.087200", + "Timestamp": "2024-05-15T19:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.179600", + "Timestamp": "2024-05-15T19:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.175900", + "Timestamp": "2024-05-15T19:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119600", + "Timestamp": "2024-05-15T19:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.501200", + "Timestamp": "2024-05-15T19:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077800", + "Timestamp": "2024-05-15T18:47:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.048800", + "Timestamp": "2024-05-15T18:47:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017800", + "Timestamp": "2024-05-15T18:47:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137700", + "Timestamp": "2024-05-15T18:47:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134000", + "Timestamp": "2024-05-15T18:47:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m6idn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077700", + "Timestamp": "2024-05-15T18:47:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.205300", + "Timestamp": "2024-05-15T18:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.201600", + "Timestamp": "2024-05-15T18:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145300", + "Timestamp": "2024-05-15T18:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.338100", + "Timestamp": "2024-05-15T18:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.333100", + "Timestamp": "2024-05-15T18:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.208100", + "Timestamp": "2024-05-15T18:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081600", + "Timestamp": "2024-05-15T18:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077900", + "Timestamp": "2024-05-15T18:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021600", + "Timestamp": "2024-05-15T18:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081600", + "Timestamp": "2024-05-15T18:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077900", + "Timestamp": "2024-05-15T18:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021600", + "Timestamp": "2024-05-15T18:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.006800", + "Timestamp": "2024-05-15T18:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.035000", + "Timestamp": "2024-05-15T18:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.013400", + "Timestamp": "2024-05-15T18:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092500", + "Timestamp": "2024-05-15T18:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132500", + "Timestamp": "2024-05-15T18:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032500", + "Timestamp": "2024-05-15T18:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064500", + "Timestamp": "2024-05-15T18:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064400", + "Timestamp": "2024-05-15T18:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004500", + "Timestamp": "2024-05-15T18:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004400", + "Timestamp": "2024-05-15T18:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004500", + "Timestamp": "2024-05-15T18:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004400", + "Timestamp": "2024-05-15T18:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078500", + "Timestamp": "2024-05-15T18:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074800", + "Timestamp": "2024-05-15T18:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018500", + "Timestamp": "2024-05-15T18:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135800", + "Timestamp": "2024-05-15T18:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132100", + "Timestamp": "2024-05-15T18:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075800", + "Timestamp": "2024-05-15T18:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.013900", + "Timestamp": "2024-05-15T18:09:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.013500", + "Timestamp": "2024-05-15T18:09:31.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.007000", + "Timestamp": "2024-05-15T18:09:17.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064400", + "Timestamp": "2024-05-15T18:08:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064800", + "Timestamp": "2024-05-15T18:08:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004400", + "Timestamp": "2024-05-15T18:08:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004800", + "Timestamp": "2024-05-15T18:08:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004400", + "Timestamp": "2024-05-15T18:08:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004800", + "Timestamp": "2024-05-15T18:08:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062300", + "Timestamp": "2024-05-15T18:08:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062500", + "Timestamp": "2024-05-15T18:08:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002300", + "Timestamp": "2024-05-15T18:08:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-15T18:08:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002300", + "Timestamp": "2024-05-15T18:08:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-15T18:08:15.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127600", + "Timestamp": "2024-05-15T18:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123600", + "Timestamp": "2024-05-15T18:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067600", + "Timestamp": "2024-05-15T18:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t1.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068400", + "Timestamp": "2024-05-15T18:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t1.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.008400", + "Timestamp": "2024-05-15T18:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t1.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008400", + "Timestamp": "2024-05-15T18:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167100", + "Timestamp": "2024-05-15T17:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137100", + "Timestamp": "2024-05-15T17:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037100", + "Timestamp": "2024-05-15T17:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074600", + "Timestamp": "2024-05-15T17:24:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076500", + "Timestamp": "2024-05-15T17:24:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070900", + "Timestamp": "2024-05-15T17:24:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.072800", + "Timestamp": "2024-05-15T17:24:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014600", + "Timestamp": "2024-05-15T17:24:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016500", + "Timestamp": "2024-05-15T17:24:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "h1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.282000", + "Timestamp": "2024-05-15T17:12:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "h1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.282000", + "Timestamp": "2024-05-15T17:12:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "h1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.252000", + "Timestamp": "2024-05-15T17:12:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "h1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.252000", + "Timestamp": "2024-05-15T17:12:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "h1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.152000", + "Timestamp": "2024-05-15T17:12:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "h1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.152000", + "Timestamp": "2024-05-15T17:12:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "h1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.096000", + "Timestamp": "2024-05-15T17:12:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "h1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.096000", + "Timestamp": "2024-05-15T17:12:51.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076700", + "Timestamp": "2024-05-15T17:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073000", + "Timestamp": "2024-05-15T17:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016700", + "Timestamp": "2024-05-15T17:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.138000", + "Timestamp": "2024-05-15T17:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.082000", + "Timestamp": "2024-05-15T16:47:08.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132600", + "Timestamp": "2024-05-15T16:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172600", + "Timestamp": "2024-05-15T16:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072600", + "Timestamp": "2024-05-15T16:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t1.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067600", + "Timestamp": "2024-05-15T16:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t1.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.007600", + "Timestamp": "2024-05-15T16:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t1.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007600", + "Timestamp": "2024-05-15T16:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.028600", + "Timestamp": "2024-05-15T16:06:34.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076100", + "Timestamp": "2024-05-15T16:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.072400", + "Timestamp": "2024-05-15T16:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016100", + "Timestamp": "2024-05-15T16:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6idn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.164200", + "Timestamp": "2024-05-15T16:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.013400", + "Timestamp": "2024-05-15T15:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.164300", + "Timestamp": "2024-05-15T15:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-15T15:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098400", + "Timestamp": "2024-05-15T15:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042100", + "Timestamp": "2024-05-15T15:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100100", + "Timestamp": "2024-05-15T15:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071100", + "Timestamp": "2024-05-15T15:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "x2gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040100", + "Timestamp": "2024-05-15T15:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078200", + "Timestamp": "2024-05-15T15:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.049200", + "Timestamp": "2024-05-15T15:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018200", + "Timestamp": "2024-05-15T15:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.026300", + "Timestamp": "2024-05-15T15:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.019300", + "Timestamp": "2024-05-15T15:19:32.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.018900", + "Timestamp": "2024-05-15T15:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121400", + "Timestamp": "2024-05-15T15:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161400", + "Timestamp": "2024-05-15T15:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061400", + "Timestamp": "2024-05-15T15:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t1.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069200", + "Timestamp": "2024-05-15T14:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t1.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.009200", + "Timestamp": "2024-05-15T14:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t1.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009200", + "Timestamp": "2024-05-15T14:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077500", + "Timestamp": "2024-05-15T14:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.048500", + "Timestamp": "2024-05-15T14:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017500", + "Timestamp": "2024-05-15T14:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079300", + "Timestamp": "2024-05-15T14:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.050300", + "Timestamp": "2024-05-15T14:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019300", + "Timestamp": "2024-05-15T14:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.132000", + "Timestamp": "2024-05-15T14:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-15T14:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039800", + "Timestamp": "2024-05-15T14:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008800", + "Timestamp": "2024-05-15T14:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.162300", + "Timestamp": "2024-05-15T13:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "c3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121000", + "Timestamp": "2024-05-15T13:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.018400", + "Timestamp": "2024-05-15T13:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.193100", + "Timestamp": "2024-05-15T13:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.009500", + "Timestamp": "2024-05-15T13:03:16.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.627200", + "Timestamp": "2024-05-15T13:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069300", + "Timestamp": "2024-05-15T13:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-15T13:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009300", + "Timestamp": "2024-05-15T13:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.279700", + "Timestamp": "2024-05-15T13:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.274700", + "Timestamp": "2024-05-15T13:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149700", + "Timestamp": "2024-05-15T13:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "c7a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.137900", + "Timestamp": "2024-05-15T12:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.006900", + "Timestamp": "2024-05-15T12:30:14.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "h1.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.774000", + "Timestamp": "2024-05-15T12:03:25.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065400", + "Timestamp": "2024-05-15T12:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.005400", + "Timestamp": "2024-05-15T12:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005400", + "Timestamp": "2024-05-15T12:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062100", + "Timestamp": "2024-05-15T11:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002100", + "Timestamp": "2024-05-15T11:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002100", + "Timestamp": "2024-05-15T11:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064200", + "Timestamp": "2024-05-15T11:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004200", + "Timestamp": "2024-05-15T11:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004200", + "Timestamp": "2024-05-15T11:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068500", + "Timestamp": "2024-05-15T11:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039500", + "Timestamp": "2024-05-15T11:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1b", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008500", + "Timestamp": "2024-05-15T11:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "t1.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.007500", + "Timestamp": "2024-05-15T11:33:21.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141500", + "Timestamp": "2024-05-15T11:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137800", + "Timestamp": "2024-05-15T11:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1a", + "InstanceType": "r6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081500", + "Timestamp": "2024-05-15T11:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "h1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.649000", + "Timestamp": "2024-05-08T15:37:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "h1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.619000", + "Timestamp": "2024-05-08T15:37:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "h1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.519000", + "Timestamp": "2024-05-08T15:37:22.000Z" + }, + { + "AvailabilityZone": "eu-west-1c", + "InstanceType": "h1.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.887000", + "Timestamp": "2024-05-08T06:51:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.007600", + "Timestamp": "2024-05-16T14:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.998300", + "Timestamp": "2024-05-16T14:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.172200", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.291500", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.073600", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.043600", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.943600", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076400", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047400", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016400", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.530100", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.933100", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.928100", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.803100", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.755000", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.750000", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.625000", + "Timestamp": "2024-05-16T14:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124400", + "Timestamp": "2024-05-16T14:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120400", + "Timestamp": "2024-05-16T14:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064400", + "Timestamp": "2024-05-16T14:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.446500", + "Timestamp": "2024-05-16T14:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.441500", + "Timestamp": "2024-05-16T14:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.316500", + "Timestamp": "2024-05-16T14:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.066500", + "Timestamp": "2024-05-16T14:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.061500", + "Timestamp": "2024-05-16T14:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.936500", + "Timestamp": "2024-05-16T14:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.205200", + "Timestamp": "2024-05-16T14:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.282300", + "Timestamp": "2024-05-16T14:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.200200", + "Timestamp": "2024-05-16T14:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.277300", + "Timestamp": "2024-05-16T14:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.075200", + "Timestamp": "2024-05-16T14:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.152300", + "Timestamp": "2024-05-16T14:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.511500", + "Timestamp": "2024-05-16T14:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.506500", + "Timestamp": "2024-05-16T14:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.381500", + "Timestamp": "2024-05-16T14:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.250300", + "Timestamp": "2024-05-16T14:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.376000", + "Timestamp": "2024-05-16T14:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.371000", + "Timestamp": "2024-05-16T14:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.246000", + "Timestamp": "2024-05-16T14:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.035700", + "Timestamp": "2024-05-16T14:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.453700", + "Timestamp": "2024-05-16T14:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.148400", + "Timestamp": "2024-05-16T14:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.198800", + "Timestamp": "2024-05-16T14:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.193800", + "Timestamp": "2024-05-16T14:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.068800", + "Timestamp": "2024-05-16T14:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.472500", + "Timestamp": "2024-05-16T14:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.467500", + "Timestamp": "2024-05-16T14:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.342500", + "Timestamp": "2024-05-16T14:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.650800", + "Timestamp": "2024-05-16T14:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.645800", + "Timestamp": "2024-05-16T14:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.520800", + "Timestamp": "2024-05-16T14:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.133000", + "Timestamp": "2024-05-16T14:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145500", + "Timestamp": "2024-05-16T14:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141800", + "Timestamp": "2024-05-16T14:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085500", + "Timestamp": "2024-05-16T14:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.424200", + "Timestamp": "2024-05-16T14:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.989000", + "Timestamp": "2024-05-16T14:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.206300", + "Timestamp": "2024-05-16T14:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.201300", + "Timestamp": "2024-05-16T14:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.076300", + "Timestamp": "2024-05-16T14:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.896200", + "Timestamp": "2024-05-16T14:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.541200", + "Timestamp": "2024-05-16T14:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.536200", + "Timestamp": "2024-05-16T14:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.411200", + "Timestamp": "2024-05-16T14:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.443700", + "Timestamp": "2024-05-16T14:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.438700", + "Timestamp": "2024-05-16T14:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.313700", + "Timestamp": "2024-05-16T14:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.802700", + "Timestamp": "2024-05-16T14:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.879000", + "Timestamp": "2024-05-16T14:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.797700", + "Timestamp": "2024-05-16T14:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.874000", + "Timestamp": "2024-05-16T14:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.672700", + "Timestamp": "2024-05-16T14:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.749000", + "Timestamp": "2024-05-16T14:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.698000", + "Timestamp": "2024-05-16T14:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.693000", + "Timestamp": "2024-05-16T14:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.568000", + "Timestamp": "2024-05-16T14:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.299600", + "Timestamp": "2024-05-16T14:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.551800", + "Timestamp": "2024-05-16T14:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.546800", + "Timestamp": "2024-05-16T14:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.421800", + "Timestamp": "2024-05-16T14:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077600", + "Timestamp": "2024-05-16T14:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075600", + "Timestamp": "2024-05-16T14:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.048600", + "Timestamp": "2024-05-16T14:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.046600", + "Timestamp": "2024-05-16T14:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017600", + "Timestamp": "2024-05-16T14:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015600", + "Timestamp": "2024-05-16T14:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.200700", + "Timestamp": "2024-05-16T14:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.195700", + "Timestamp": "2024-05-16T14:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.070700", + "Timestamp": "2024-05-16T14:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.537100", + "Timestamp": "2024-05-16T14:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.507100", + "Timestamp": "2024-05-16T14:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.407100", + "Timestamp": "2024-05-16T14:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.603800", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099300", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043300", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102700", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046400", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147700", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.187700", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087700", + "Timestamp": "2024-05-16T14:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311900", + "Timestamp": "2024-05-16T14:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.306900", + "Timestamp": "2024-05-16T14:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181900", + "Timestamp": "2024-05-16T14:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.617100", + "Timestamp": "2024-05-16T14:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.252200", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.222000", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.217000", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092000", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.190000", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.185000", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.060000", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.195000", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.191300", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.135000", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.524500", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154500", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151500", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094500", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.948300", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.032200", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.027200", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.902200", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.957800", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.389500", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.384500", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.259500", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.782100", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.752100", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.652100", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.968900", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.651400", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.646400", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.521400", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.235500", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.230500", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.105500", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.125600", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.120600", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.995600", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.453800", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.448800", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.323800", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.963700", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.516400", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.511400", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.386400", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.977400", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100000", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040000", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.599400", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.594400", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.469400", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.350100", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.345100", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.220100", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200300", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196300", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140300", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.967100", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.817100", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100000", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096300", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040000", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.466100", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.461100", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.336100", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.006600", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.001600", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.876600", + "Timestamp": "2024-05-16T14:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.026100", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.021100", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.896100", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128800", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125100", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-16T14:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.951600", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.567100", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.465900", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.460900", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.335900", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.321500", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.430600", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.400600", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.300600", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.754500", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.749500", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.624500", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.508700", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.478700", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.378700", + "Timestamp": "2024-05-16T14:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.959700", + "Timestamp": "2024-05-16T14:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.954700", + "Timestamp": "2024-05-16T14:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.829700", + "Timestamp": "2024-05-16T14:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.743000", + "Timestamp": "2024-05-16T14:01:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.738000", + "Timestamp": "2024-05-16T14:01:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.613000", + "Timestamp": "2024-05-16T14:01:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.841300", + "Timestamp": "2024-05-16T14:01:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.836300", + "Timestamp": "2024-05-16T14:01:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.711300", + "Timestamp": "2024-05-16T14:01:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122700", + "Timestamp": "2024-05-16T14:01:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118700", + "Timestamp": "2024-05-16T14:01:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062700", + "Timestamp": "2024-05-16T14:01:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.837500", + "Timestamp": "2024-05-16T14:01:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.832500", + "Timestamp": "2024-05-16T14:01:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.707500", + "Timestamp": "2024-05-16T14:01:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.480900", + "Timestamp": "2024-05-16T14:01:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.300300", + "Timestamp": "2024-05-16T13:47:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.295300", + "Timestamp": "2024-05-16T13:47:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.170300", + "Timestamp": "2024-05-16T13:47:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.166300", + "Timestamp": "2024-05-16T13:47:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.161300", + "Timestamp": "2024-05-16T13:47:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.036300", + "Timestamp": "2024-05-16T13:47:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153500", + "Timestamp": "2024-05-16T13:47:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149800", + "Timestamp": "2024-05-16T13:47:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093500", + "Timestamp": "2024-05-16T13:47:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.105800", + "Timestamp": "2024-05-16T13:47:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.908100", + "Timestamp": "2024-05-16T13:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.903100", + "Timestamp": "2024-05-16T13:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.778100", + "Timestamp": "2024-05-16T13:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.279000", + "Timestamp": "2024-05-16T13:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "f1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.249000", + "Timestamp": "2024-05-16T13:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.149000", + "Timestamp": "2024-05-16T13:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.102200", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.916400", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.911400", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.786400", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.766900", + "Timestamp": "2024-05-16T13:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.761900", + "Timestamp": "2024-05-16T13:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.636900", + "Timestamp": "2024-05-16T13:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.675700", + "Timestamp": "2024-05-16T13:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.670700", + "Timestamp": "2024-05-16T13:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.545700", + "Timestamp": "2024-05-16T13:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.627700", + "Timestamp": "2024-05-16T13:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.620200", + "Timestamp": "2024-05-16T13:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.306200", + "Timestamp": "2024-05-16T13:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.302000", + "Timestamp": "2024-05-16T13:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.617500", + "Timestamp": "2024-05-16T13:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.612500", + "Timestamp": "2024-05-16T13:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.487500", + "Timestamp": "2024-05-16T13:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294400", + "Timestamp": "2024-05-16T13:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.290400", + "Timestamp": "2024-05-16T13:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.234400", + "Timestamp": "2024-05-16T13:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.531000", + "Timestamp": "2024-05-16T13:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.263900", + "Timestamp": "2024-05-16T13:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.399200", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.394200", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.269200", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.459200", + "Timestamp": "2024-05-16T13:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.454200", + "Timestamp": "2024-05-16T13:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.329200", + "Timestamp": "2024-05-16T13:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278300", + "Timestamp": "2024-05-16T13:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273300", + "Timestamp": "2024-05-16T13:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148300", + "Timestamp": "2024-05-16T13:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.878700", + "Timestamp": "2024-05-16T13:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.484100", + "Timestamp": "2024-05-16T13:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.464100", + "Timestamp": "2024-05-16T13:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.459100", + "Timestamp": "2024-05-16T13:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.334100", + "Timestamp": "2024-05-16T13:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.124100", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.119100", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.994100", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.502800", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.497800", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.372800", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.140900", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.259100", + "Timestamp": "2024-05-16T13:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.024200", + "Timestamp": "2024-05-16T13:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.303400", + "Timestamp": "2024-05-16T13:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298400", + "Timestamp": "2024-05-16T13:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.173400", + "Timestamp": "2024-05-16T13:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.163500", + "Timestamp": "2024-05-16T13:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.158500", + "Timestamp": "2024-05-16T13:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.033500", + "Timestamp": "2024-05-16T13:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.138700", + "Timestamp": "2024-05-16T13:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142600", + "Timestamp": "2024-05-16T13:47:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138900", + "Timestamp": "2024-05-16T13:47:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082600", + "Timestamp": "2024-05-16T13:47:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.135500", + "Timestamp": "2024-05-16T13:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.934200", + "Timestamp": "2024-05-16T13:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.929200", + "Timestamp": "2024-05-16T13:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.804200", + "Timestamp": "2024-05-16T13:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.831800", + "Timestamp": "2024-05-16T13:47:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.701700", + "Timestamp": "2024-05-16T13:47:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.942400", + "Timestamp": "2024-05-16T13:47:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.139300", + "Timestamp": "2024-05-16T13:47:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.793800", + "Timestamp": "2024-05-16T13:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.598100", + "Timestamp": "2024-05-16T13:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.593100", + "Timestamp": "2024-05-16T13:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.468100", + "Timestamp": "2024-05-16T13:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.166500", + "Timestamp": "2024-05-16T13:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.136500", + "Timestamp": "2024-05-16T13:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.036500", + "Timestamp": "2024-05-16T13:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.505400", + "Timestamp": "2024-05-16T13:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T13:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145900", + "Timestamp": "2024-05-16T13:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045900", + "Timestamp": "2024-05-16T13:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.933600", + "Timestamp": "2024-05-16T13:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.928600", + "Timestamp": "2024-05-16T13:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.803600", + "Timestamp": "2024-05-16T13:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.084200", + "Timestamp": "2024-05-16T13:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.079200", + "Timestamp": "2024-05-16T13:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.954200", + "Timestamp": "2024-05-16T13:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.851900", + "Timestamp": "2024-05-16T13:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.404100", + "Timestamp": "2024-05-16T13:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.626800", + "Timestamp": "2024-05-16T13:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.621800", + "Timestamp": "2024-05-16T13:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.496800", + "Timestamp": "2024-05-16T13:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.180500", + "Timestamp": "2024-05-16T13:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.175500", + "Timestamp": "2024-05-16T13:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.050500", + "Timestamp": "2024-05-16T13:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146800", + "Timestamp": "2024-05-16T13:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142800", + "Timestamp": "2024-05-16T13:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086800", + "Timestamp": "2024-05-16T13:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.183600", + "Timestamp": "2024-05-16T13:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179900", + "Timestamp": "2024-05-16T13:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123600", + "Timestamp": "2024-05-16T13:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.187400", + "Timestamp": "2024-05-16T13:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.542900", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.167500", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.162500", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.037500", + "Timestamp": "2024-05-16T13:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.300300", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.592100", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.587100", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.462100", + "Timestamp": "2024-05-16T13:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154200", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150500", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094200", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.093400", + "Timestamp": "2024-05-16T13:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.088400", + "Timestamp": "2024-05-16T13:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.963400", + "Timestamp": "2024-05-16T13:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.073300", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.820800", + "Timestamp": "2024-05-16T13:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.322100", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.317100", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.192100", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.391700", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.386700", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.261700", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.826700", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.821700", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.696700", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.758900", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.204000", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.854000", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.849000", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.724000", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.390400", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.293100", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.288100", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.163100", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.254600", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.351800", + "Timestamp": "2024-05-16T13:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.159000", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.154000", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.029000", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.143700", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.082700", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.077700", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.952700", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.384100", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.379100", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.254100", + "Timestamp": "2024-05-16T13:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.104000", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.155300", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.150300", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.025300", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.502200", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.835400", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.805400", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.705400", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125500", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.474700", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.471000", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.414700", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076700", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047700", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016700", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.886200", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.881200", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.756200", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.822300", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.817300", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.692300", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.901500", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.419100", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.389100", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.289100", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.624800", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.657400", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.619800", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.652400", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.494800", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.527400", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.823700", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.818700", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.693700", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.596700", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.591700", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.466700", + "Timestamp": "2024-05-16T13:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.061000", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.236100", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.231100", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.106100", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.190200", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185200", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060200", + "Timestamp": "2024-05-16T13:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.724800", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.637700", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.276100", + "Timestamp": "2024-05-16T13:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.271100", + "Timestamp": "2024-05-16T13:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.146100", + "Timestamp": "2024-05-16T13:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.504300", + "Timestamp": "2024-05-16T13:46:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.499300", + "Timestamp": "2024-05-16T13:46:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.374300", + "Timestamp": "2024-05-16T13:46:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.293700", + "Timestamp": "2024-05-16T13:46:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.288700", + "Timestamp": "2024-05-16T13:46:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.163700", + "Timestamp": "2024-05-16T13:46:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.536500", + "Timestamp": "2024-05-16T13:46:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.531500", + "Timestamp": "2024-05-16T13:46:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.406500", + "Timestamp": "2024-05-16T13:46:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073500", + "Timestamp": "2024-05-16T13:46:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069800", + "Timestamp": "2024-05-16T13:46:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013500", + "Timestamp": "2024-05-16T13:46:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.286800", + "Timestamp": "2024-05-16T13:46:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.211600", + "Timestamp": "2024-05-16T13:46:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.206600", + "Timestamp": "2024-05-16T13:46:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081600", + "Timestamp": "2024-05-16T13:46:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096700", + "Timestamp": "2024-05-16T13:46:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093000", + "Timestamp": "2024-05-16T13:46:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036700", + "Timestamp": "2024-05-16T13:46:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.992200", + "Timestamp": "2024-05-16T13:32:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.983300", + "Timestamp": "2024-05-16T13:32:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.281500", + "Timestamp": "2024-05-16T13:32:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "8.614200", + "Timestamp": "2024-05-16T13:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "8.609200", + "Timestamp": "2024-05-16T13:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "8.484200", + "Timestamp": "2024-05-16T13:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.144600", + "Timestamp": "2024-05-16T13:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.962200", + "Timestamp": "2024-05-16T13:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.957200", + "Timestamp": "2024-05-16T13:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.832200", + "Timestamp": "2024-05-16T13:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.578400", + "Timestamp": "2024-05-16T13:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.573400", + "Timestamp": "2024-05-16T13:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.448400", + "Timestamp": "2024-05-16T13:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.580500", + "Timestamp": "2024-05-16T13:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.106200", + "Timestamp": "2024-05-16T13:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.029300", + "Timestamp": "2024-05-16T13:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.101200", + "Timestamp": "2024-05-16T13:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.024300", + "Timestamp": "2024-05-16T13:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.976200", + "Timestamp": "2024-05-16T13:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.899300", + "Timestamp": "2024-05-16T13:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.002700", + "Timestamp": "2024-05-16T13:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.709400", + "Timestamp": "2024-05-16T13:32:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.704400", + "Timestamp": "2024-05-16T13:32:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.579400", + "Timestamp": "2024-05-16T13:32:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.194700", + "Timestamp": "2024-05-16T13:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.326200", + "Timestamp": "2024-05-16T13:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.321200", + "Timestamp": "2024-05-16T13:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.196200", + "Timestamp": "2024-05-16T13:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.989500", + "Timestamp": "2024-05-16T13:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.984500", + "Timestamp": "2024-05-16T13:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.859500", + "Timestamp": "2024-05-16T13:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.601200", + "Timestamp": "2024-05-16T13:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.571200", + "Timestamp": "2024-05-16T13:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.471200", + "Timestamp": "2024-05-16T13:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.575500", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.570500", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.445500", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.309500", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.279500", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.179500", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.747400", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.742400", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.617400", + "Timestamp": "2024-05-16T13:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.604000", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.051300", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.492400", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.298100", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.132300", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.983000", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.166600", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.161600", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.036600", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.280200", + "Timestamp": "2024-05-16T13:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.153500", + "Timestamp": "2024-05-16T13:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.148500", + "Timestamp": "2024-05-16T13:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.023500", + "Timestamp": "2024-05-16T13:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.300800", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124600", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.396700", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.147900", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.142900", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.017900", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.571100", + "Timestamp": "2024-05-16T13:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.566100", + "Timestamp": "2024-05-16T13:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.441100", + "Timestamp": "2024-05-16T13:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.606600", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.576600", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.476600", + "Timestamp": "2024-05-16T13:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.044000", + "Timestamp": "2024-05-16T13:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.248600", + "Timestamp": "2024-05-16T13:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.898100", + "Timestamp": "2024-05-16T13:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.893100", + "Timestamp": "2024-05-16T13:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.768100", + "Timestamp": "2024-05-16T13:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.993900", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.988900", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.863900", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.032500", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.494300", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.099000", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.094000", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.969000", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.179300", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.174300", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.049300", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.300800", + "Timestamp": "2024-05-16T13:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.270800", + "Timestamp": "2024-05-16T13:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.170800", + "Timestamp": "2024-05-16T13:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.325100", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.320100", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195100", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.850400", + "Timestamp": "2024-05-16T13:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.845400", + "Timestamp": "2024-05-16T13:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.720400", + "Timestamp": "2024-05-16T13:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.297400", + "Timestamp": "2024-05-16T13:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.954200", + "Timestamp": "2024-05-16T13:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.978600", + "Timestamp": "2024-05-16T13:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T13:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144400", + "Timestamp": "2024-05-16T13:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044400", + "Timestamp": "2024-05-16T13:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105300", + "Timestamp": "2024-05-16T13:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101600", + "Timestamp": "2024-05-16T13:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045300", + "Timestamp": "2024-05-16T13:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.479400", + "Timestamp": "2024-05-16T13:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-16T13:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T13:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048600", + "Timestamp": "2024-05-16T13:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.507500", + "Timestamp": "2024-05-16T13:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.134400", + "Timestamp": "2024-05-16T13:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.027200", + "Timestamp": "2024-05-16T13:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.927100", + "Timestamp": "2024-05-16T13:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.922100", + "Timestamp": "2024-05-16T13:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.797100", + "Timestamp": "2024-05-16T13:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.722300", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.717300", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.592300", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.049200", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.044200", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.919200", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.396200", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.351000", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.391200", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.346000", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.266200", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.221000", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.569700", + "Timestamp": "2024-05-16T13:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.564700", + "Timestamp": "2024-05-16T13:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.439700", + "Timestamp": "2024-05-16T13:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.457300", + "Timestamp": "2024-05-16T13:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.971900", + "Timestamp": "2024-05-16T13:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.966900", + "Timestamp": "2024-05-16T13:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.841900", + "Timestamp": "2024-05-16T13:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.566100", + "Timestamp": "2024-05-16T13:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.020600", + "Timestamp": "2024-05-16T13:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.015600", + "Timestamp": "2024-05-16T13:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.890600", + "Timestamp": "2024-05-16T13:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.984400", + "Timestamp": "2024-05-16T13:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130600", + "Timestamp": "2024-05-16T13:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126600", + "Timestamp": "2024-05-16T13:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070600", + "Timestamp": "2024-05-16T13:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.627800", + "Timestamp": "2024-05-16T13:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151900", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.191900", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091900", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.512000", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.507000", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.382000", + "Timestamp": "2024-05-16T13:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099700", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039700", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.375100", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.345100", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.245100", + "Timestamp": "2024-05-16T13:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.680600", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.675600", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.550600", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.885900", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.858600", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.853600", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.728600", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.382900", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.377900", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.252900", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.542100", + "Timestamp": "2024-05-16T13:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.260500", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.219700", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.255500", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.214700", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.130500", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.089700", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.764200", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.929100", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.899100", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.799100", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169600", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.175400", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165600", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.171400", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109600", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115400", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.107300", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.929200", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.696400", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.691400", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.566400", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.091000", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.086000", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.961000", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.974200", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118500", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158500", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058500", + "Timestamp": "2024-05-16T13:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146700", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143000", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086700", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.466500", + "Timestamp": "2024-05-16T13:17:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.461500", + "Timestamp": "2024-05-16T13:17:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.336500", + "Timestamp": "2024-05-16T13:17:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.686200", + "Timestamp": "2024-05-16T13:17:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.681200", + "Timestamp": "2024-05-16T13:17:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.556200", + "Timestamp": "2024-05-16T13:17:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.187900", + "Timestamp": "2024-05-16T13:17:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.182900", + "Timestamp": "2024-05-16T13:17:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.057900", + "Timestamp": "2024-05-16T13:17:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.561800", + "Timestamp": "2024-05-16T13:17:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.556800", + "Timestamp": "2024-05-16T13:17:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.431800", + "Timestamp": "2024-05-16T13:17:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.236500", + "Timestamp": "2024-05-16T13:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.972800", + "Timestamp": "2024-05-16T13:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.967800", + "Timestamp": "2024-05-16T13:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.842800", + "Timestamp": "2024-05-16T13:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.411600", + "Timestamp": "2024-05-16T13:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.406600", + "Timestamp": "2024-05-16T13:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.281600", + "Timestamp": "2024-05-16T13:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.703500", + "Timestamp": "2024-05-16T13:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.673500", + "Timestamp": "2024-05-16T13:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.573500", + "Timestamp": "2024-05-16T13:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077000", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073300", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017000", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.275500", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.662300", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.657300", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.532300", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.900800", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.022900", + "Timestamp": "2024-05-16T13:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.247900", + "Timestamp": "2024-05-16T13:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.048500", + "Timestamp": "2024-05-16T13:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.519800", + "Timestamp": "2024-05-16T13:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.489800", + "Timestamp": "2024-05-16T13:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.389800", + "Timestamp": "2024-05-16T13:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.349600", + "Timestamp": "2024-05-16T13:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.344600", + "Timestamp": "2024-05-16T13:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.219600", + "Timestamp": "2024-05-16T13:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.060500", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.055500", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.930500", + "Timestamp": "2024-05-16T13:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.474800", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.321300", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.316300", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.191300", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.496100", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.466100", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.366100", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.333500", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.328500", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.203500", + "Timestamp": "2024-05-16T13:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.964200", + "Timestamp": "2024-05-16T13:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.609400", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.604400", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.479400", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120600", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160600", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060600", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148100", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048100", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.138600", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.133600", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.008600", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.489900", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.096200", + "Timestamp": "2024-05-16T13:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.745300", + "Timestamp": "2024-05-16T13:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.740300", + "Timestamp": "2024-05-16T13:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.615300", + "Timestamp": "2024-05-16T13:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156900", + "Timestamp": "2024-05-16T13:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153200", + "Timestamp": "2024-05-16T13:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096900", + "Timestamp": "2024-05-16T13:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.717800", + "Timestamp": "2024-05-16T13:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.790300", + "Timestamp": "2024-05-16T13:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.712800", + "Timestamp": "2024-05-16T13:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.785300", + "Timestamp": "2024-05-16T13:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.587800", + "Timestamp": "2024-05-16T13:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.660300", + "Timestamp": "2024-05-16T13:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.598300", + "Timestamp": "2024-05-16T13:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.593300", + "Timestamp": "2024-05-16T13:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.468300", + "Timestamp": "2024-05-16T13:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.247100", + "Timestamp": "2024-05-16T13:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.622900", + "Timestamp": "2024-05-16T13:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.617900", + "Timestamp": "2024-05-16T13:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.492900", + "Timestamp": "2024-05-16T13:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.351800", + "Timestamp": "2024-05-16T13:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.346800", + "Timestamp": "2024-05-16T13:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.221800", + "Timestamp": "2024-05-16T13:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.864300", + "Timestamp": "2024-05-16T13:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.859300", + "Timestamp": "2024-05-16T13:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.734300", + "Timestamp": "2024-05-16T13:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079500", + "Timestamp": "2024-05-16T13:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119500", + "Timestamp": "2024-05-16T13:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019500", + "Timestamp": "2024-05-16T13:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.753300", + "Timestamp": "2024-05-16T13:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.723300", + "Timestamp": "2024-05-16T13:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.623300", + "Timestamp": "2024-05-16T13:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122500", + "Timestamp": "2024-05-16T13:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118800", + "Timestamp": "2024-05-16T13:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062500", + "Timestamp": "2024-05-16T13:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "10.306500", + "Timestamp": "2024-05-16T13:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "10.276500", + "Timestamp": "2024-05-16T13:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "10.176500", + "Timestamp": "2024-05-16T13:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.133700", + "Timestamp": "2024-05-16T13:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.128700", + "Timestamp": "2024-05-16T13:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.003700", + "Timestamp": "2024-05-16T13:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.380800", + "Timestamp": "2024-05-16T13:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.350800", + "Timestamp": "2024-05-16T13:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.250800", + "Timestamp": "2024-05-16T13:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176000", + "Timestamp": "2024-05-16T13:17:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.171000", + "Timestamp": "2024-05-16T13:17:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046000", + "Timestamp": "2024-05-16T13:17:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.465800", + "Timestamp": "2024-05-16T13:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.631500", + "Timestamp": "2024-05-16T13:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.626500", + "Timestamp": "2024-05-16T13:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.501500", + "Timestamp": "2024-05-16T13:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.451100", + "Timestamp": "2024-05-16T13:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.252600", + "Timestamp": "2024-05-16T13:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.220600", + "Timestamp": "2024-05-16T13:17:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.215600", + "Timestamp": "2024-05-16T13:17:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.090600", + "Timestamp": "2024-05-16T13:17:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.315100", + "Timestamp": "2024-05-16T13:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.829500", + "Timestamp": "2024-05-16T13:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.824500", + "Timestamp": "2024-05-16T13:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.699500", + "Timestamp": "2024-05-16T13:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.910000", + "Timestamp": "2024-05-16T13:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.907400", + "Timestamp": "2024-05-16T13:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.952000", + "Timestamp": "2024-05-16T13:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117100", + "Timestamp": "2024-05-16T13:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113400", + "Timestamp": "2024-05-16T13:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057100", + "Timestamp": "2024-05-16T13:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.339800", + "Timestamp": "2024-05-16T13:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.309800", + "Timestamp": "2024-05-16T13:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.209800", + "Timestamp": "2024-05-16T13:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155000", + "Timestamp": "2024-05-16T13:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151300", + "Timestamp": "2024-05-16T13:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095000", + "Timestamp": "2024-05-16T13:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.724500", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.719500", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.594500", + "Timestamp": "2024-05-16T13:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.141500", + "Timestamp": "2024-05-16T13:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.136500", + "Timestamp": "2024-05-16T13:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.011500", + "Timestamp": "2024-05-16T13:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.623100", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.618100", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.493100", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.442800", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.437800", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.312800", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.109800", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.615900", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.531800", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.526800", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.401800", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.391400", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.386400", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.261400", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.050700", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.045700", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.920700", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.218700", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.945600", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.915600", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.815600", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.575600", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.545600", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.445600", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.055100", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077600", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073900", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017600", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.953300", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.999700", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.969700", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.869700", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.291600", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.177800", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129600", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125600", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069600", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.318200", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.313200", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.188200", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.412600", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.407600", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.282600", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.845500", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.840500", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.715500", + "Timestamp": "2024-05-16T13:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.192700", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.081300", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.076300", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.951300", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.528200", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.523200", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.398200", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.035500", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.259200", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.254200", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.129200", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.193000", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125900", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122200", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065900", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141400", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137700", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081400", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.816300", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.811300", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.686300", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.356200", + "Timestamp": "2024-05-16T13:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103400", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047400", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.899000", + "Timestamp": "2024-05-16T13:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.178500", + "Timestamp": "2024-05-16T13:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-16T13:16:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098900", + "Timestamp": "2024-05-16T13:16:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042600", + "Timestamp": "2024-05-16T13:16:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.112400", + "Timestamp": "2024-05-16T13:16:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.107400", + "Timestamp": "2024-05-16T13:16:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.982400", + "Timestamp": "2024-05-16T13:16:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.065800", + "Timestamp": "2024-05-16T13:02:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.268600", + "Timestamp": "2024-05-16T13:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.996200", + "Timestamp": "2024-05-16T13:02:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.275700", + "Timestamp": "2024-05-16T13:02:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.972700", + "Timestamp": "2024-05-16T13:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.589800", + "Timestamp": "2024-05-16T13:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.364500", + "Timestamp": "2024-05-16T13:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.359500", + "Timestamp": "2024-05-16T13:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.234500", + "Timestamp": "2024-05-16T13:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.101300", + "Timestamp": "2024-05-16T13:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.085300", + "Timestamp": "2024-05-16T13:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.096300", + "Timestamp": "2024-05-16T13:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.080300", + "Timestamp": "2024-05-16T13:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.971300", + "Timestamp": "2024-05-16T13:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.955300", + "Timestamp": "2024-05-16T13:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.024900", + "Timestamp": "2024-05-16T13:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.250900", + "Timestamp": "2024-05-16T13:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.245900", + "Timestamp": "2024-05-16T13:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.120900", + "Timestamp": "2024-05-16T13:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.670300", + "Timestamp": "2024-05-16T13:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.665300", + "Timestamp": "2024-05-16T13:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.540300", + "Timestamp": "2024-05-16T13:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.969500", + "Timestamp": "2024-05-16T13:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.939500", + "Timestamp": "2024-05-16T13:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.839500", + "Timestamp": "2024-05-16T13:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.707600", + "Timestamp": "2024-05-16T13:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.702600", + "Timestamp": "2024-05-16T13:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.577600", + "Timestamp": "2024-05-16T13:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.304200", + "Timestamp": "2024-05-16T13:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.344200", + "Timestamp": "2024-05-16T13:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.244200", + "Timestamp": "2024-05-16T13:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "14.818300", + "Timestamp": "2024-05-16T13:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.167200", + "Timestamp": "2024-05-16T13:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.011500", + "Timestamp": "2024-05-16T13:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.530900", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.525900", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.400900", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.489900", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.484900", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.359900", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.404200", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.399200", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.274200", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.724100", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.918100", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.037900", + "Timestamp": "2024-05-16T13:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.569200", + "Timestamp": "2024-05-16T13:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.564200", + "Timestamp": "2024-05-16T13:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.439200", + "Timestamp": "2024-05-16T13:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.251000", + "Timestamp": "2024-05-16T13:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.014500", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.282500", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.277500", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.152500", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.362400", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.357400", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.232400", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.049900", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.044900", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.919900", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.815100", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.810100", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.685100", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.246900", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.257800", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.779900", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.749900", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.649900", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156500", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196500", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.250600", + "Timestamp": "2024-05-16T13:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.466000", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.461000", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.336000", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.961500", + "Timestamp": "2024-05-16T13:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.931500", + "Timestamp": "2024-05-16T13:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.831500", + "Timestamp": "2024-05-16T13:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.208900", + "Timestamp": "2024-05-16T13:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.203900", + "Timestamp": "2024-05-16T13:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.078900", + "Timestamp": "2024-05-16T13:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.441200", + "Timestamp": "2024-05-16T13:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.411200", + "Timestamp": "2024-05-16T13:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.311200", + "Timestamp": "2024-05-16T13:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T13:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121400", + "Timestamp": "2024-05-16T13:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065400", + "Timestamp": "2024-05-16T13:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.737700", + "Timestamp": "2024-05-16T13:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.175300", + "Timestamp": "2024-05-16T13:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.171300", + "Timestamp": "2024-05-16T13:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115300", + "Timestamp": "2024-05-16T13:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.154000", + "Timestamp": "2024-05-16T13:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.149000", + "Timestamp": "2024-05-16T13:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.024000", + "Timestamp": "2024-05-16T13:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.157500", + "Timestamp": "2024-05-16T13:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.426200", + "Timestamp": "2024-05-16T13:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.434600", + "Timestamp": "2024-05-16T13:02:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.429600", + "Timestamp": "2024-05-16T13:02:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.304600", + "Timestamp": "2024-05-16T13:02:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.893100", + "Timestamp": "2024-05-16T13:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.774100", + "Timestamp": "2024-05-16T13:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.543000", + "Timestamp": "2024-05-16T13:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126000", + "Timestamp": "2024-05-16T13:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122300", + "Timestamp": "2024-05-16T13:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066000", + "Timestamp": "2024-05-16T13:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.780800", + "Timestamp": "2024-05-16T13:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.203900", + "Timestamp": "2024-05-16T13:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.243900", + "Timestamp": "2024-05-16T13:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143900", + "Timestamp": "2024-05-16T13:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.163200", + "Timestamp": "2024-05-16T13:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.987800", + "Timestamp": "2024-05-16T13:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173000", + "Timestamp": "2024-05-16T13:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169300", + "Timestamp": "2024-05-16T13:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-16T13:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070700", + "Timestamp": "2024-05-16T13:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067000", + "Timestamp": "2024-05-16T13:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010700", + "Timestamp": "2024-05-16T13:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.874600", + "Timestamp": "2024-05-16T13:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121100", + "Timestamp": "2024-05-16T13:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161100", + "Timestamp": "2024-05-16T13:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061100", + "Timestamp": "2024-05-16T13:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.510600", + "Timestamp": "2024-05-16T13:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.505600", + "Timestamp": "2024-05-16T13:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.380600", + "Timestamp": "2024-05-16T13:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.599100", + "Timestamp": "2024-05-16T13:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.890300", + "Timestamp": "2024-05-16T13:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.860300", + "Timestamp": "2024-05-16T13:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.760300", + "Timestamp": "2024-05-16T13:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.515800", + "Timestamp": "2024-05-16T13:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.144400", + "Timestamp": "2024-05-16T13:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.988900", + "Timestamp": "2024-05-16T13:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162400", + "Timestamp": "2024-05-16T13:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158400", + "Timestamp": "2024-05-16T13:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102400", + "Timestamp": "2024-05-16T13:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.252700", + "Timestamp": "2024-05-16T13:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.105900", + "Timestamp": "2024-05-16T13:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.295400", + "Timestamp": "2024-05-16T13:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.129300", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.454900", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.449900", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.324900", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.080500", + "Timestamp": "2024-05-16T13:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.521400", + "Timestamp": "2024-05-16T13:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.516400", + "Timestamp": "2024-05-16T13:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.391400", + "Timestamp": "2024-05-16T13:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.958800", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.953800", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.828800", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.171100", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.866100", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.861100", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.736100", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.533500", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.074500", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.982800", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.069500", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.977800", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.944500", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.852800", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.518300", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.987700", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062300", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002300", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002300", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.996200", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.082200", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.052200", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.952200", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.646900", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.641900", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.516900", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.142500", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270600", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265600", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140600", + "Timestamp": "2024-05-16T13:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.344300", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.352800", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.339300", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.347800", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.214300", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.222800", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.177400", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.308000", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.172400", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.303000", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.047400", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.178000", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.058900", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174800", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170800", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114800", + "Timestamp": "2024-05-16T13:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.263600", + "Timestamp": "2024-05-16T12:47:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.273800", + "Timestamp": "2024-05-16T12:47:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.622000", + "Timestamp": "2024-05-16T12:47:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.510600", + "Timestamp": "2024-05-16T12:47:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.505600", + "Timestamp": "2024-05-16T12:47:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.380600", + "Timestamp": "2024-05-16T12:47:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.968800", + "Timestamp": "2024-05-16T12:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.963800", + "Timestamp": "2024-05-16T12:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.838800", + "Timestamp": "2024-05-16T12:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.697100", + "Timestamp": "2024-05-16T12:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.440900", + "Timestamp": "2024-05-16T12:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.435900", + "Timestamp": "2024-05-16T12:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.310900", + "Timestamp": "2024-05-16T12:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.956100", + "Timestamp": "2024-05-16T12:47:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.083900", + "Timestamp": "2024-05-16T12:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.078900", + "Timestamp": "2024-05-16T12:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.953900", + "Timestamp": "2024-05-16T12:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089500", + "Timestamp": "2024-05-16T12:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085800", + "Timestamp": "2024-05-16T12:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029500", + "Timestamp": "2024-05-16T12:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042900", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.657300", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.652300", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.527300", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.618200", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.613200", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.488200", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.781100", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.767300", + "Timestamp": "2024-05-16T12:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.762300", + "Timestamp": "2024-05-16T12:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.637300", + "Timestamp": "2024-05-16T12:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.264600", + "Timestamp": "2024-05-16T12:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.376500", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.371500", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.246500", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.520600", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.515600", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.390600", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.136800", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270100", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.263700", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265100", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258700", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140100", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133700", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.876100", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.871100", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.746100", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.673600", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.668600", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.543600", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.829600", + "Timestamp": "2024-05-16T12:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.824600", + "Timestamp": "2024-05-16T12:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.699600", + "Timestamp": "2024-05-16T12:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.872100", + "Timestamp": "2024-05-16T12:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.941600", + "Timestamp": "2024-05-16T12:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.421300", + "Timestamp": "2024-05-16T12:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.099500", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.710600", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.705600", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.580600", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.904200", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.874200", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.774200", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068300", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038300", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008300", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.363000", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.358000", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.233000", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.513700", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.508700", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.383700", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.991700", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.961700", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.861700", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.238900", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.501900", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.454900", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.449900", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.324900", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101300", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045000", + "Timestamp": "2024-05-16T12:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074400", + "Timestamp": "2024-05-16T12:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070700", + "Timestamp": "2024-05-16T12:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014400", + "Timestamp": "2024-05-16T12:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170500", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166500", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.825200", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.820200", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.695200", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.138000", + "Timestamp": "2024-05-16T12:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131400", + "Timestamp": "2024-05-16T12:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127700", + "Timestamp": "2024-05-16T12:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071400", + "Timestamp": "2024-05-16T12:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211800", + "Timestamp": "2024-05-16T12:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273300", + "Timestamp": "2024-05-16T12:47:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.243300", + "Timestamp": "2024-05-16T12:47:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143300", + "Timestamp": "2024-05-16T12:47:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T12:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106000", + "Timestamp": "2024-05-16T12:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050000", + "Timestamp": "2024-05-16T12:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.086700", + "Timestamp": "2024-05-16T12:47:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.276100", + "Timestamp": "2024-05-16T12:47:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.891600", + "Timestamp": "2024-05-16T12:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.886600", + "Timestamp": "2024-05-16T12:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.761600", + "Timestamp": "2024-05-16T12:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "14.756100", + "Timestamp": "2024-05-16T12:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.841200", + "Timestamp": "2024-05-16T12:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.359400", + "Timestamp": "2024-05-16T12:46:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.781200", + "Timestamp": "2024-05-16T12:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.776200", + "Timestamp": "2024-05-16T12:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.651200", + "Timestamp": "2024-05-16T12:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.088000", + "Timestamp": "2024-05-16T12:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120700", + "Timestamp": "2024-05-16T12:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.194700", + "Timestamp": "2024-05-16T12:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.191000", + "Timestamp": "2024-05-16T12:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134700", + "Timestamp": "2024-05-16T12:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.436200", + "Timestamp": "2024-05-16T12:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.431200", + "Timestamp": "2024-05-16T12:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.306200", + "Timestamp": "2024-05-16T12:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.939400", + "Timestamp": "2024-05-16T12:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.881200", + "Timestamp": "2024-05-16T12:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.257100", + "Timestamp": "2024-05-16T12:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.539500", + "Timestamp": "2024-05-16T12:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.344100", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.519000", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.339100", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.514000", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.214100", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.389000", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.182800", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.222800", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122800", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.759800", + "Timestamp": "2024-05-16T12:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.000800", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.202800", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.199100", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142800", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.422900", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.956800", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.951800", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.826800", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.753800", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.723800", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.623800", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.545000", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.540000", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.415000", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.264200", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.234200", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.134200", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.505400", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.500400", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.375400", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.876800", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.846800", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.746800", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.004400", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.351500", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.346500", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.221500", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.053400", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.048400", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.923400", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.755400", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128200", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.061600", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.056600", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.931600", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.577700", + "Timestamp": "2024-05-16T12:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.572700", + "Timestamp": "2024-05-16T12:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.447700", + "Timestamp": "2024-05-16T12:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.241200", + "Timestamp": "2024-05-16T12:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "f1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.211200", + "Timestamp": "2024-05-16T12:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.111200", + "Timestamp": "2024-05-16T12:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.025400", + "Timestamp": "2024-05-16T12:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.737100", + "Timestamp": "2024-05-16T12:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.654100", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.649100", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.524100", + "Timestamp": "2024-05-16T12:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.336500", + "Timestamp": "2024-05-16T12:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.331500", + "Timestamp": "2024-05-16T12:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.206500", + "Timestamp": "2024-05-16T12:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.388100", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.514500", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.026300", + "Timestamp": "2024-05-16T12:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.932600", + "Timestamp": "2024-05-16T12:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.927600", + "Timestamp": "2024-05-16T12:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.802600", + "Timestamp": "2024-05-16T12:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.693900", + "Timestamp": "2024-05-16T12:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.018000", + "Timestamp": "2024-05-16T12:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.001500", + "Timestamp": "2024-05-16T12:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "10.436600", + "Timestamp": "2024-05-16T12:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "10.406600", + "Timestamp": "2024-05-16T12:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "10.306600", + "Timestamp": "2024-05-16T12:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.137300", + "Timestamp": "2024-05-16T12:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.379200", + "Timestamp": "2024-05-16T12:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.374200", + "Timestamp": "2024-05-16T12:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.249200", + "Timestamp": "2024-05-16T12:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.140500", + "Timestamp": "2024-05-16T12:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.260600", + "Timestamp": "2024-05-16T12:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.255600", + "Timestamp": "2024-05-16T12:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130600", + "Timestamp": "2024-05-16T12:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.148800", + "Timestamp": "2024-05-16T12:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.508300", + "Timestamp": "2024-05-16T12:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.503300", + "Timestamp": "2024-05-16T12:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.378300", + "Timestamp": "2024-05-16T12:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.510700", + "Timestamp": "2024-05-16T12:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.205300", + "Timestamp": "2024-05-16T12:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.966000", + "Timestamp": "2024-05-16T12:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.388400", + "Timestamp": "2024-05-16T12:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.145700", + "Timestamp": "2024-05-16T12:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.888000", + "Timestamp": "2024-05-16T12:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.307200", + "Timestamp": "2024-05-16T12:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118400", + "Timestamp": "2024-05-16T12:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114400", + "Timestamp": "2024-05-16T12:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058400", + "Timestamp": "2024-05-16T12:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.904200", + "Timestamp": "2024-05-16T12:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.161400", + "Timestamp": "2024-05-16T12:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.150000", + "Timestamp": "2024-05-16T12:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.485000", + "Timestamp": "2024-05-16T12:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.480000", + "Timestamp": "2024-05-16T12:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.355000", + "Timestamp": "2024-05-16T12:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.293000", + "Timestamp": "2024-05-16T12:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.288000", + "Timestamp": "2024-05-16T12:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.163000", + "Timestamp": "2024-05-16T12:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.565900", + "Timestamp": "2024-05-16T12:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.535900", + "Timestamp": "2024-05-16T12:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.435900", + "Timestamp": "2024-05-16T12:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.261400", + "Timestamp": "2024-05-16T12:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168700", + "Timestamp": "2024-05-16T12:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164700", + "Timestamp": "2024-05-16T12:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T12:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.169100", + "Timestamp": "2024-05-16T12:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114100", + "Timestamp": "2024-05-16T12:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110400", + "Timestamp": "2024-05-16T12:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054100", + "Timestamp": "2024-05-16T12:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.269000", + "Timestamp": "2024-05-16T12:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "f1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.793500", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "f1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.763500", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "f1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.663500", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.291800", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.261800", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.161800", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.313900", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.308900", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.183900", + "Timestamp": "2024-05-16T12:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.463300", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.241000", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.236000", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.111000", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.059600", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.322700", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.454400", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.424400", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.324400", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.375900", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.999300", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.559300", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.554300", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.429300", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138200", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134200", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078200", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.212500", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.209500", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.152500", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.041800", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.011800", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.911800", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128100", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.996000", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149400", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145700", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089400", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261100", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.256100", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131100", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.978500", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.973500", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.848500", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.241100", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.236100", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111100", + "Timestamp": "2024-05-16T12:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176200", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172500", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116200", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.629600", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.624600", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.499600", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.431400", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.426400", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.301400", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.150400", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.011600", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.981600", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.881600", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.516000", + "Timestamp": "2024-05-16T12:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.313500", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.308500", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.183500", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.055800", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146300", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142600", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086300", + "Timestamp": "2024-05-16T12:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.329400", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324400", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199400", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.773000", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.547900", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.542900", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.417900", + "Timestamp": "2024-05-16T12:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.327300", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.322300", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.197300", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.293100", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.288100", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.163100", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.074100", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.069100", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.944100", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098900", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094900", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038900", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.816600", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.570300", + "Timestamp": "2024-05-16T12:31:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.691200", + "Timestamp": "2024-05-16T12:31:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.686200", + "Timestamp": "2024-05-16T12:31:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.561200", + "Timestamp": "2024-05-16T12:31:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.265000", + "Timestamp": "2024-05-16T12:31:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.261000", + "Timestamp": "2024-05-16T12:31:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.205000", + "Timestamp": "2024-05-16T12:31:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.831900", + "Timestamp": "2024-05-16T12:31:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121700", + "Timestamp": "2024-05-16T12:31:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117700", + "Timestamp": "2024-05-16T12:31:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061700", + "Timestamp": "2024-05-16T12:31:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.332900", + "Timestamp": "2024-05-16T12:31:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302900", + "Timestamp": "2024-05-16T12:31:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.202900", + "Timestamp": "2024-05-16T12:31:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.156200", + "Timestamp": "2024-05-16T12:25:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.156200", + "Timestamp": "2024-05-16T12:25:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.126600", + "Timestamp": "2024-05-16T12:18:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.559300", + "Timestamp": "2024-05-16T12:17:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.529300", + "Timestamp": "2024-05-16T12:17:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.429300", + "Timestamp": "2024-05-16T12:17:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.187700", + "Timestamp": "2024-05-16T12:17:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.431600", + "Timestamp": "2024-05-16T12:17:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.426600", + "Timestamp": "2024-05-16T12:17:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.301600", + "Timestamp": "2024-05-16T12:17:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.720800", + "Timestamp": "2024-05-16T12:17:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.715800", + "Timestamp": "2024-05-16T12:17:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.590800", + "Timestamp": "2024-05-16T12:17:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.384100", + "Timestamp": "2024-05-16T12:17:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.017900", + "Timestamp": "2024-05-16T12:17:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.116300", + "Timestamp": "2024-05-16T12:17:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.638500", + "Timestamp": "2024-05-16T12:17:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.171700", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.150700", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.141700", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.120700", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.041700", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.020700", + "Timestamp": "2024-05-16T12:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.816500", + "Timestamp": "2024-05-16T12:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.653400", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.623400", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.523400", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.103000", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.098000", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.973000", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.028000", + "Timestamp": "2024-05-16T12:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.616800", + "Timestamp": "2024-05-16T12:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.611800", + "Timestamp": "2024-05-16T12:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.486800", + "Timestamp": "2024-05-16T12:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.242100", + "Timestamp": "2024-05-16T12:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.239400", + "Timestamp": "2024-05-16T12:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135500", + "Timestamp": "2024-05-16T12:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.175500", + "Timestamp": "2024-05-16T12:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075500", + "Timestamp": "2024-05-16T12:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.064400", + "Timestamp": "2024-05-16T12:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.956800", + "Timestamp": "2024-05-16T12:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.951800", + "Timestamp": "2024-05-16T12:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.826800", + "Timestamp": "2024-05-16T12:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.034000", + "Timestamp": "2024-05-16T12:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.249100", + "Timestamp": "2024-05-16T12:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.093000", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.088000", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.963000", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.750900", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.411000", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.745900", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.406000", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.620900", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.281000", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.265500", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115300", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155300", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055300", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101000", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045000", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.265000", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.082500", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.769600", + "Timestamp": "2024-05-16T12:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.764600", + "Timestamp": "2024-05-16T12:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.639600", + "Timestamp": "2024-05-16T12:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.995500", + "Timestamp": "2024-05-16T12:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.990500", + "Timestamp": "2024-05-16T12:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.865500", + "Timestamp": "2024-05-16T12:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.075100", + "Timestamp": "2024-05-16T12:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080400", + "Timestamp": "2024-05-16T12:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076700", + "Timestamp": "2024-05-16T12:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020400", + "Timestamp": "2024-05-16T12:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.544600", + "Timestamp": "2024-05-16T12:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.539600", + "Timestamp": "2024-05-16T12:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.414600", + "Timestamp": "2024-05-16T12:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.559500", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.554500", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.429500", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.568000", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.538000", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.438000", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.144900", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.139900", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.014900", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.457400", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.452400", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.327400", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.338000", + "Timestamp": "2024-05-16T12:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.333000", + "Timestamp": "2024-05-16T12:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.208000", + "Timestamp": "2024-05-16T12:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.305100", + "Timestamp": "2024-05-16T12:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.300100", + "Timestamp": "2024-05-16T12:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175100", + "Timestamp": "2024-05-16T12:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.269700", + "Timestamp": "2024-05-16T12:17:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266700", + "Timestamp": "2024-05-16T12:17:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.209700", + "Timestamp": "2024-05-16T12:17:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.105300", + "Timestamp": "2024-05-16T12:17:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.167300", + "Timestamp": "2024-05-16T12:17:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.107600", + "Timestamp": "2024-05-16T12:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.102600", + "Timestamp": "2024-05-16T12:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.977600", + "Timestamp": "2024-05-16T12:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.456200", + "Timestamp": "2024-05-16T12:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.249500", + "Timestamp": "2024-05-16T12:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150000", + "Timestamp": "2024-05-16T12:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146000", + "Timestamp": "2024-05-16T12:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090000", + "Timestamp": "2024-05-16T12:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.100000", + "Timestamp": "2024-05-16T12:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.475900", + "Timestamp": "2024-05-16T12:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.470900", + "Timestamp": "2024-05-16T12:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.345900", + "Timestamp": "2024-05-16T12:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.278600", + "Timestamp": "2024-05-16T12:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.273600", + "Timestamp": "2024-05-16T12:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.148600", + "Timestamp": "2024-05-16T12:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.199100", + "Timestamp": "2024-05-16T12:17:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.165800", + "Timestamp": "2024-05-16T12:17:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.975200", + "Timestamp": "2024-05-16T12:17:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.609400", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.604400", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.479400", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.327000", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.322000", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.197000", + "Timestamp": "2024-05-16T12:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.259300", + "Timestamp": "2024-05-16T12:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.249500", + "Timestamp": "2024-05-16T12:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.255600", + "Timestamp": "2024-05-16T12:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.245800", + "Timestamp": "2024-05-16T12:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199300", + "Timestamp": "2024-05-16T12:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.189500", + "Timestamp": "2024-05-16T12:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.130900", + "Timestamp": "2024-05-16T12:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.787600", + "Timestamp": "2024-05-16T12:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.933600", + "Timestamp": "2024-05-16T12:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.651700", + "Timestamp": "2024-05-16T12:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.646700", + "Timestamp": "2024-05-16T12:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.521700", + "Timestamp": "2024-05-16T12:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.438900", + "Timestamp": "2024-05-16T12:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173100", + "Timestamp": "2024-05-16T12:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169400", + "Timestamp": "2024-05-16T12:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113100", + "Timestamp": "2024-05-16T12:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119100", + "Timestamp": "2024-05-16T12:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115400", + "Timestamp": "2024-05-16T12:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059100", + "Timestamp": "2024-05-16T12:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.226100", + "Timestamp": "2024-05-16T12:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330300", + "Timestamp": "2024-05-16T12:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325300", + "Timestamp": "2024-05-16T12:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200300", + "Timestamp": "2024-05-16T12:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.822100", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.817100", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.692100", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.926200", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.921200", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.796200", + "Timestamp": "2024-05-16T12:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.276100", + "Timestamp": "2024-05-16T12:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.271100", + "Timestamp": "2024-05-16T12:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.146100", + "Timestamp": "2024-05-16T12:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.925200", + "Timestamp": "2024-05-16T12:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.728200", + "Timestamp": "2024-05-16T12:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.431300", + "Timestamp": "2024-05-16T12:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.637000", + "Timestamp": "2024-05-16T12:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.383400", + "Timestamp": "2024-05-16T12:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.337500", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.133700", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.103700", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.003700", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.748000", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.743000", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.618000", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.200600", + "Timestamp": "2024-05-16T12:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.195600", + "Timestamp": "2024-05-16T12:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.070600", + "Timestamp": "2024-05-16T12:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.403700", + "Timestamp": "2024-05-16T12:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.373700", + "Timestamp": "2024-05-16T12:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.273700", + "Timestamp": "2024-05-16T12:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131800", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128100", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071800", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.733400", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.642900", + "Timestamp": "2024-05-16T12:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.562300", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.056000", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.051000", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.926000", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.337000", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.551300", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.779500", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.046400", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.559800", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.554800", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.429800", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.432100", + "Timestamp": "2024-05-16T12:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102300", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098600", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042300", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.671800", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.666800", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.541800", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.140100", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122400", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118700", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062400", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.364100", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.364400", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334100", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334400", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.234100", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.234400", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128700", + "Timestamp": "2024-05-16T12:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.624600", + "Timestamp": "2024-05-16T12:06:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.624600", + "Timestamp": "2024-05-16T12:06:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.246500", + "Timestamp": "2024-05-16T12:02:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.109500", + "Timestamp": "2024-05-16T12:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127800", + "Timestamp": "2024-05-16T12:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124100", + "Timestamp": "2024-05-16T12:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067800", + "Timestamp": "2024-05-16T12:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.495900", + "Timestamp": "2024-05-16T12:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.490900", + "Timestamp": "2024-05-16T12:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.365900", + "Timestamp": "2024-05-16T12:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.440700", + "Timestamp": "2024-05-16T12:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.435700", + "Timestamp": "2024-05-16T12:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.310700", + "Timestamp": "2024-05-16T12:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.656300", + "Timestamp": "2024-05-16T12:02:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.651300", + "Timestamp": "2024-05-16T12:02:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.526300", + "Timestamp": "2024-05-16T12:02:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.377000", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372000", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.247000", + "Timestamp": "2024-05-16T12:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.136300", + "Timestamp": "2024-05-16T12:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.131300", + "Timestamp": "2024-05-16T12:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.006300", + "Timestamp": "2024-05-16T12:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.841800", + "Timestamp": "2024-05-16T12:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.494300", + "Timestamp": "2024-05-16T12:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.464300", + "Timestamp": "2024-05-16T12:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.364300", + "Timestamp": "2024-05-16T12:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.032600", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.852600", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.822600", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.722600", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.466000", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.461000", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.336000", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145300", + "Timestamp": "2024-05-16T12:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141300", + "Timestamp": "2024-05-16T12:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085300", + "Timestamp": "2024-05-16T12:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.515100", + "Timestamp": "2024-05-16T12:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.510100", + "Timestamp": "2024-05-16T12:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.385100", + "Timestamp": "2024-05-16T12:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.007300", + "Timestamp": "2024-05-16T12:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.079900", + "Timestamp": "2024-05-16T12:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.002300", + "Timestamp": "2024-05-16T12:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.074900", + "Timestamp": "2024-05-16T12:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.877300", + "Timestamp": "2024-05-16T12:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.949900", + "Timestamp": "2024-05-16T12:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211800", + "Timestamp": "2024-05-16T12:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.497200", + "Timestamp": "2024-05-16T12:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.003700", + "Timestamp": "2024-05-16T12:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.395900", + "Timestamp": "2024-05-16T12:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.154900", + "Timestamp": "2024-05-16T12:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.897400", + "Timestamp": "2024-05-16T12:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.683800", + "Timestamp": "2024-05-16T12:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.678800", + "Timestamp": "2024-05-16T12:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.553800", + "Timestamp": "2024-05-16T12:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.139800", + "Timestamp": "2024-05-16T12:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.525300", + "Timestamp": "2024-05-16T12:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.502200", + "Timestamp": "2024-05-16T12:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.497200", + "Timestamp": "2024-05-16T12:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.372200", + "Timestamp": "2024-05-16T12:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.426600", + "Timestamp": "2024-05-16T12:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.396600", + "Timestamp": "2024-05-16T12:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.296600", + "Timestamp": "2024-05-16T12:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.990700", + "Timestamp": "2024-05-16T12:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.985700", + "Timestamp": "2024-05-16T12:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.860700", + "Timestamp": "2024-05-16T12:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.949900", + "Timestamp": "2024-05-16T12:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.043500", + "Timestamp": "2024-05-16T12:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.944900", + "Timestamp": "2024-05-16T12:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.038500", + "Timestamp": "2024-05-16T12:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.819900", + "Timestamp": "2024-05-16T12:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.913500", + "Timestamp": "2024-05-16T12:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.027900", + "Timestamp": "2024-05-16T12:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.053400", + "Timestamp": "2024-05-16T12:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.308100", + "Timestamp": "2024-05-16T12:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.303100", + "Timestamp": "2024-05-16T12:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.178100", + "Timestamp": "2024-05-16T12:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.491500", + "Timestamp": "2024-05-16T12:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.378100", + "Timestamp": "2024-05-16T12:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.486500", + "Timestamp": "2024-05-16T12:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.373100", + "Timestamp": "2024-05-16T12:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.361500", + "Timestamp": "2024-05-16T12:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.248100", + "Timestamp": "2024-05-16T12:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.179500", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.805300", + "Timestamp": "2024-05-16T12:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.800300", + "Timestamp": "2024-05-16T12:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.675300", + "Timestamp": "2024-05-16T12:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.893900", + "Timestamp": "2024-05-16T12:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103100", + "Timestamp": "2024-05-16T12:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099400", + "Timestamp": "2024-05-16T12:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043100", + "Timestamp": "2024-05-16T12:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.532300", + "Timestamp": "2024-05-16T12:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.502300", + "Timestamp": "2024-05-16T12:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.402300", + "Timestamp": "2024-05-16T12:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.282500", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.277500", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.152500", + "Timestamp": "2024-05-16T12:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.938900", + "Timestamp": "2024-05-16T12:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.263200", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.258200", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.133200", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.186500", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.182500", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126500", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.433100", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.428100", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.303100", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.087400", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.082400", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.957400", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.895400", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.890400", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.765400", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.143100", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.138100", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.013100", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.164900", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.487500", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324400", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319400", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194400", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.795200", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.790200", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.665200", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.625700", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.620700", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.495700", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.267600", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.262600", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.137600", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106200", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046200", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.494200", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.430200", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.425200", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.300200", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.964800", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.959800", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.834800", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.716700", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.711700", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.586700", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.843500", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.838500", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.713500", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.011000", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.006000", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.881000", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076100", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047100", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016100", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.122600", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.092600", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.992600", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133300", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129300", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073300", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.432800", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.427800", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.302800", + "Timestamp": "2024-05-16T12:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.926000", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.871400", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.866400", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.741400", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.509500", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127300", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123600", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067300", + "Timestamp": "2024-05-16T12:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.251200", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.089500", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.084500", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.959500", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.619400", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.614400", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.489400", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.607800", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.602800", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.477800", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.791600", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.786600", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.661600", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.248400", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.243400", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.118400", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.518300", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.345800", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.340800", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.215800", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.869800", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.912500", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.864800", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.907500", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.739800", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.782500", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094300", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090600", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034300", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.570000", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.821900", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.565000", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.816900", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.440000", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.691900", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129500", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125800", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069500", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103600", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143600", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043600", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.590500", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.585500", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.460500", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102400", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098700", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042400", + "Timestamp": "2024-05-16T12:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.192500", + "Timestamp": "2024-05-16T12:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114700", + "Timestamp": "2024-05-16T12:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T12:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054700", + "Timestamp": "2024-05-16T12:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.300700", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.122100", + "Timestamp": "2024-05-16T12:01:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078100", + "Timestamp": "2024-05-16T12:01:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074400", + "Timestamp": "2024-05-16T12:01:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018100", + "Timestamp": "2024-05-16T12:01:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440400", + "Timestamp": "2024-05-16T11:53:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440400", + "Timestamp": "2024-05-16T11:53:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.245800", + "Timestamp": "2024-05-16T11:47:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.042200", + "Timestamp": "2024-05-16T11:47:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.037200", + "Timestamp": "2024-05-16T11:47:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.912200", + "Timestamp": "2024-05-16T11:47:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126600", + "Timestamp": "2024-05-16T11:47:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122900", + "Timestamp": "2024-05-16T11:47:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066600", + "Timestamp": "2024-05-16T11:47:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314100", + "Timestamp": "2024-05-16T11:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.309100", + "Timestamp": "2024-05-16T11:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184100", + "Timestamp": "2024-05-16T11:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077800", + "Timestamp": "2024-05-16T11:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.048800", + "Timestamp": "2024-05-16T11:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017800", + "Timestamp": "2024-05-16T11:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.483700", + "Timestamp": "2024-05-16T11:47:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.438500", + "Timestamp": "2024-05-16T11:47:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.478700", + "Timestamp": "2024-05-16T11:47:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.433500", + "Timestamp": "2024-05-16T11:47:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.353700", + "Timestamp": "2024-05-16T11:47:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.308500", + "Timestamp": "2024-05-16T11:47:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.766600", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.381500", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.761600", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.376500", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.636600", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.251500", + "Timestamp": "2024-05-16T11:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.517300", + "Timestamp": "2024-05-16T11:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.945000", + "Timestamp": "2024-05-16T11:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.248800", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.856000", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.851000", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.726000", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.760300", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.755300", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.630300", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.368200", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.363200", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.238200", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.025600", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.932400", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.035300", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.490000", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.485000", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.360000", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.282500", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.277500", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.152500", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.892700", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.617500", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.612500", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.487500", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.488900", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.126700", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.096700", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.996700", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.827700", + "Timestamp": "2024-05-16T11:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.822700", + "Timestamp": "2024-05-16T11:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.697700", + "Timestamp": "2024-05-16T11:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.262400", + "Timestamp": "2024-05-16T11:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.820900", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.815900", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.690900", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.798300", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.793300", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.668300", + "Timestamp": "2024-05-16T11:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.582000", + "Timestamp": "2024-05-16T11:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.984100", + "Timestamp": "2024-05-16T11:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.405000", + "Timestamp": "2024-05-16T11:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.400000", + "Timestamp": "2024-05-16T11:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.275000", + "Timestamp": "2024-05-16T11:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.267900", + "Timestamp": "2024-05-16T11:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.605000", + "Timestamp": "2024-05-16T11:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.423400", + "Timestamp": "2024-05-16T11:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.923700", + "Timestamp": "2024-05-16T11:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.502700", + "Timestamp": "2024-05-16T11:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.426500", + "Timestamp": "2024-05-16T11:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.316100", + "Timestamp": "2024-05-16T11:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.296900", + "Timestamp": "2024-05-16T11:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.917700", + "Timestamp": "2024-05-16T11:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.887700", + "Timestamp": "2024-05-16T11:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.787700", + "Timestamp": "2024-05-16T11:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.505600", + "Timestamp": "2024-05-16T11:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.537700", + "Timestamp": "2024-05-16T11:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.220000", + "Timestamp": "2024-05-16T11:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.260000", + "Timestamp": "2024-05-16T11:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.160000", + "Timestamp": "2024-05-16T11:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.207200", + "Timestamp": "2024-05-16T11:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.202200", + "Timestamp": "2024-05-16T11:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.077200", + "Timestamp": "2024-05-16T11:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.507700", + "Timestamp": "2024-05-16T11:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.874800", + "Timestamp": "2024-05-16T11:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.127400", + "Timestamp": "2024-05-16T11:46:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.659000", + "Timestamp": "2024-05-16T11:46:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.969300", + "Timestamp": "2024-05-16T11:46:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.605000", + "Timestamp": "2024-05-16T11:46:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.127000", + "Timestamp": "2024-05-16T11:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.897100", + "Timestamp": "2024-05-16T11:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.202000", + "Timestamp": "2024-05-16T11:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198300", + "Timestamp": "2024-05-16T11:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142000", + "Timestamp": "2024-05-16T11:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167900", + "Timestamp": "2024-05-16T11:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163900", + "Timestamp": "2024-05-16T11:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107900", + "Timestamp": "2024-05-16T11:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "9.274500", + "Timestamp": "2024-05-16T11:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "9.269500", + "Timestamp": "2024-05-16T11:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "9.144500", + "Timestamp": "2024-05-16T11:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.276500", + "Timestamp": "2024-05-16T11:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113800", + "Timestamp": "2024-05-16T11:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T11:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053800", + "Timestamp": "2024-05-16T11:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311100", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.306100", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181100", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.609300", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.604300", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.479300", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.617800", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.262400", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.257400", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.132400", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141000", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137000", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081000", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.078100", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.073100", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.948100", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.491600", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.834800", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.959400", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.963600", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.933600", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.833600", + "Timestamp": "2024-05-16T11:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.338000", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.333000", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.208000", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.761600", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.118400", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.113400", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.988400", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.660300", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.053400", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046300", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.072900", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111900", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051900", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.105900", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.100900", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.975900", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106700", + "Timestamp": "2024-05-16T11:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151400", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147400", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091400", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.821200", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.816200", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.691200", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.645300", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.599200", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.640300", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.594200", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.515300", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.469200", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.200500", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.170500", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.070500", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.068900", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.063900", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.938900", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.366000", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.361000", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.236000", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.347100", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.342100", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.217100", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.069900", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.064900", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.939900", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.540800", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.535800", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.410800", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.776300", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.746300", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.646300", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.290000", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.775900", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.285000", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.770900", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.160000", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.645900", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.193400", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.163400", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.063400", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101900", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098200", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041900", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.321900", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.125600", + "Timestamp": "2024-05-16T11:46:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.237400", + "Timestamp": "2024-05-16T11:46:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.220400", + "Timestamp": "2024-05-16T11:46:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.215400", + "Timestamp": "2024-05-16T11:46:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.090400", + "Timestamp": "2024-05-16T11:46:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.248400", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.642500", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.637500", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.512500", + "Timestamp": "2024-05-16T11:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.287600", + "Timestamp": "2024-05-16T11:46:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.257600", + "Timestamp": "2024-05-16T11:46:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157600", + "Timestamp": "2024-05-16T11:46:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.719800", + "Timestamp": "2024-05-16T11:46:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.714800", + "Timestamp": "2024-05-16T11:46:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.589800", + "Timestamp": "2024-05-16T11:46:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077700", + "Timestamp": "2024-05-16T11:46:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074000", + "Timestamp": "2024-05-16T11:46:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017700", + "Timestamp": "2024-05-16T11:46:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220200", + "Timestamp": "2024-05-16T11:37:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220200", + "Timestamp": "2024-05-16T11:37:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.217200", + "Timestamp": "2024-05-16T11:32:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.212200", + "Timestamp": "2024-05-16T11:32:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.087200", + "Timestamp": "2024-05-16T11:32:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.265400", + "Timestamp": "2024-05-16T11:32:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.972800", + "Timestamp": "2024-05-16T11:32:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "f1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.685200", + "Timestamp": "2024-05-16T11:32:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "f1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.655200", + "Timestamp": "2024-05-16T11:32:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "f1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.555200", + "Timestamp": "2024-05-16T11:32:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.925300", + "Timestamp": "2024-05-16T11:32:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.450400", + "Timestamp": "2024-05-16T11:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.445400", + "Timestamp": "2024-05-16T11:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.320400", + "Timestamp": "2024-05-16T11:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "16.673900", + "Timestamp": "2024-05-16T11:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.900700", + "Timestamp": "2024-05-16T11:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.870700", + "Timestamp": "2024-05-16T11:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.770700", + "Timestamp": "2024-05-16T11:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.320200", + "Timestamp": "2024-05-16T11:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.107800", + "Timestamp": "2024-05-16T11:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.102800", + "Timestamp": "2024-05-16T11:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.977800", + "Timestamp": "2024-05-16T11:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.625700", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.684700", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.620700", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.679700", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.495700", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.554700", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.360600", + "Timestamp": "2024-05-16T11:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.692700", + "Timestamp": "2024-05-16T11:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.662700", + "Timestamp": "2024-05-16T11:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.562700", + "Timestamp": "2024-05-16T11:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.496000", + "Timestamp": "2024-05-16T11:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.129500", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.124500", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.999500", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.280500", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.275500", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150500", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.188500", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.184800", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128500", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.385300", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.380300", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.255300", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.032400", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.427400", + "Timestamp": "2024-05-16T11:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.422400", + "Timestamp": "2024-05-16T11:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.297400", + "Timestamp": "2024-05-16T11:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.959700", + "Timestamp": "2024-05-16T11:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.272400", + "Timestamp": "2024-05-16T11:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.938700", + "Timestamp": "2024-05-16T11:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.933700", + "Timestamp": "2024-05-16T11:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.808700", + "Timestamp": "2024-05-16T11:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.307200", + "Timestamp": "2024-05-16T11:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.308400", + "Timestamp": "2024-05-16T11:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.085700", + "Timestamp": "2024-05-16T11:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.080700", + "Timestamp": "2024-05-16T11:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.955700", + "Timestamp": "2024-05-16T11:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.006400", + "Timestamp": "2024-05-16T11:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.001400", + "Timestamp": "2024-05-16T11:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.876400", + "Timestamp": "2024-05-16T11:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.265100", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.260100", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.135100", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.293100", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.288100", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.163100", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.084600", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111900", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107900", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051900", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.816200", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.928500", + "Timestamp": "2024-05-16T11:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.169200", + "Timestamp": "2024-05-16T11:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.164200", + "Timestamp": "2024-05-16T11:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.039200", + "Timestamp": "2024-05-16T11:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.160000", + "Timestamp": "2024-05-16T11:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.155000", + "Timestamp": "2024-05-16T11:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.030000", + "Timestamp": "2024-05-16T11:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.011500", + "Timestamp": "2024-05-16T11:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.117000", + "Timestamp": "2024-05-16T11:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.087000", + "Timestamp": "2024-05-16T11:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.987000", + "Timestamp": "2024-05-16T11:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.447600", + "Timestamp": "2024-05-16T11:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.417600", + "Timestamp": "2024-05-16T11:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.317600", + "Timestamp": "2024-05-16T11:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "9.173200", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "9.168200", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "9.043200", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.592400", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.587400", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.462400", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.649100", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.667300", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.637300", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.537300", + "Timestamp": "2024-05-16T11:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.409400", + "Timestamp": "2024-05-16T11:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.379400", + "Timestamp": "2024-05-16T11:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.279400", + "Timestamp": "2024-05-16T11:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.504900", + "Timestamp": "2024-05-16T11:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.499900", + "Timestamp": "2024-05-16T11:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.374900", + "Timestamp": "2024-05-16T11:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.808700", + "Timestamp": "2024-05-16T11:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.803700", + "Timestamp": "2024-05-16T11:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.678700", + "Timestamp": "2024-05-16T11:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.324900", + "Timestamp": "2024-05-16T11:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.319900", + "Timestamp": "2024-05-16T11:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.194900", + "Timestamp": "2024-05-16T11:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.878200", + "Timestamp": "2024-05-16T11:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.873200", + "Timestamp": "2024-05-16T11:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.748200", + "Timestamp": "2024-05-16T11:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.911900", + "Timestamp": "2024-05-16T11:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.906900", + "Timestamp": "2024-05-16T11:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.781900", + "Timestamp": "2024-05-16T11:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.281400", + "Timestamp": "2024-05-16T11:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.412700", + "Timestamp": "2024-05-16T11:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.407700", + "Timestamp": "2024-05-16T11:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.282700", + "Timestamp": "2024-05-16T11:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.057900", + "Timestamp": "2024-05-16T11:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.204500", + "Timestamp": "2024-05-16T11:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.201500", + "Timestamp": "2024-05-16T11:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144500", + "Timestamp": "2024-05-16T11:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.146600", + "Timestamp": "2024-05-16T11:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160600", + "Timestamp": "2024-05-16T11:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156900", + "Timestamp": "2024-05-16T11:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100600", + "Timestamp": "2024-05-16T11:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.129200", + "Timestamp": "2024-05-16T11:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.559900", + "Timestamp": "2024-05-16T11:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.554900", + "Timestamp": "2024-05-16T11:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.429900", + "Timestamp": "2024-05-16T11:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.880800", + "Timestamp": "2024-05-16T11:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.875800", + "Timestamp": "2024-05-16T11:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.750800", + "Timestamp": "2024-05-16T11:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.255900", + "Timestamp": "2024-05-16T11:31:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.250900", + "Timestamp": "2024-05-16T11:31:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125900", + "Timestamp": "2024-05-16T11:31:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.274800", + "Timestamp": "2024-05-16T11:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097700", + "Timestamp": "2024-05-16T11:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094000", + "Timestamp": "2024-05-16T11:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037700", + "Timestamp": "2024-05-16T11:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.123200", + "Timestamp": "2024-05-16T11:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.093200", + "Timestamp": "2024-05-16T11:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.993200", + "Timestamp": "2024-05-16T11:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.322900", + "Timestamp": "2024-05-16T11:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.317900", + "Timestamp": "2024-05-16T11:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.192900", + "Timestamp": "2024-05-16T11:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.020500", + "Timestamp": "2024-05-16T11:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.472000", + "Timestamp": "2024-05-16T11:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.442000", + "Timestamp": "2024-05-16T11:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.342000", + "Timestamp": "2024-05-16T11:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101400", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100000", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097400", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044000", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041400", + "Timestamp": "2024-05-16T11:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.835700", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.830700", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.705700", + "Timestamp": "2024-05-16T11:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.994100", + "Timestamp": "2024-05-16T11:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.588700", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.856400", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.851400", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.726400", + "Timestamp": "2024-05-16T11:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.045600", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.015600", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.915600", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.278600", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148100", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144100", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.380100", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.375100", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.250100", + "Timestamp": "2024-05-16T11:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.353200", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.348200", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.223200", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097300", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093300", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037300", + "Timestamp": "2024-05-16T11:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.360400", + "Timestamp": "2024-05-16T11:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "13.725600", + "Timestamp": "2024-05-16T11:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.234300", + "Timestamp": "2024-05-16T11:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.295400", + "Timestamp": "2024-05-16T11:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.291400", + "Timestamp": "2024-05-16T11:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235400", + "Timestamp": "2024-05-16T11:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.283600", + "Timestamp": "2024-05-16T11:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.503400", + "Timestamp": "2024-05-16T11:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.498400", + "Timestamp": "2024-05-16T11:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.373400", + "Timestamp": "2024-05-16T11:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.115700", + "Timestamp": "2024-05-16T11:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.693800", + "Timestamp": "2024-05-16T11:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.688800", + "Timestamp": "2024-05-16T11:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.563800", + "Timestamp": "2024-05-16T11:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136800", + "Timestamp": "2024-05-16T11:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132800", + "Timestamp": "2024-05-16T11:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076800", + "Timestamp": "2024-05-16T11:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.403500", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.398500", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.273500", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.135200", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.130200", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.005200", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.621400", + "Timestamp": "2024-05-16T11:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-16T11:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108300", + "Timestamp": "2024-05-16T11:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052000", + "Timestamp": "2024-05-16T11:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.310700", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.305700", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.180700", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.715200", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.710200", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.585200", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.654000", + "Timestamp": "2024-05-16T11:17:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.216500", + "Timestamp": "2024-05-16T11:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.213500", + "Timestamp": "2024-05-16T11:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.156500", + "Timestamp": "2024-05-16T11:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.266500", + "Timestamp": "2024-05-16T11:17:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.681400", + "Timestamp": "2024-05-16T11:17:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.676400", + "Timestamp": "2024-05-16T11:17:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.551400", + "Timestamp": "2024-05-16T11:17:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.034300", + "Timestamp": "2024-05-16T11:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.388000", + "Timestamp": "2024-05-16T11:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.383000", + "Timestamp": "2024-05-16T11:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.258000", + "Timestamp": "2024-05-16T11:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.001300", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.996300", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.871300", + "Timestamp": "2024-05-16T11:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.081600", + "Timestamp": "2024-05-16T11:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.051600", + "Timestamp": "2024-05-16T11:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.951600", + "Timestamp": "2024-05-16T11:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118500", + "Timestamp": "2024-05-16T11:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.095100", + "Timestamp": "2024-05-16T11:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.481600", + "Timestamp": "2024-05-16T11:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.476600", + "Timestamp": "2024-05-16T11:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.351600", + "Timestamp": "2024-05-16T11:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.604000", + "Timestamp": "2024-05-16T11:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.599000", + "Timestamp": "2024-05-16T11:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.474000", + "Timestamp": "2024-05-16T11:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.912300", + "Timestamp": "2024-05-16T11:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.379100", + "Timestamp": "2024-05-16T11:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349100", + "Timestamp": "2024-05-16T11:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.249100", + "Timestamp": "2024-05-16T11:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.159300", + "Timestamp": "2024-05-16T11:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136200", + "Timestamp": "2024-05-16T11:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132500", + "Timestamp": "2024-05-16T11:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076200", + "Timestamp": "2024-05-16T11:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.714100", + "Timestamp": "2024-05-16T11:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.709100", + "Timestamp": "2024-05-16T11:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.584100", + "Timestamp": "2024-05-16T11:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.442000", + "Timestamp": "2024-05-16T11:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.437000", + "Timestamp": "2024-05-16T11:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.312000", + "Timestamp": "2024-05-16T11:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.029500", + "Timestamp": "2024-05-16T11:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143700", + "Timestamp": "2024-05-16T11:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140000", + "Timestamp": "2024-05-16T11:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083700", + "Timestamp": "2024-05-16T11:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301900", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296900", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171900", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.571900", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.566900", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.441900", + "Timestamp": "2024-05-16T11:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.577500", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.572500", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.447500", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.980100", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.315700", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.900800", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.895800", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.770800", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.229200", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.225500", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169200", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133200", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129500", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073200", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.869400", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.864400", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.739400", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.049300", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.373600", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.369600", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.313600", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.636800", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.631800", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.506800", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.779500", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.881900", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.851900", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.751900", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.188500", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184100", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180400", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124100", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.106000", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.277200", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.272200", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.147200", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.529100", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.524100", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.399100", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.935900", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.930900", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.805900", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.631700", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.626700", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.501700", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.749700", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.014000", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.984000", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.884000", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.452400", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.483100", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.137400", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.132400", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.007400", + "Timestamp": "2024-05-16T11:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.263000", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.258000", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.133000", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046600", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157100", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153400", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.382500", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.377500", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.252500", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.279900", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.047800", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160300", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156600", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-16T11:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.599000", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.208100", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.243900", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124000", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126100", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125200", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122400", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121500", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066100", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065200", + "Timestamp": "2024-05-16T11:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.511500", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.506500", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.381500", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.875500", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074200", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070500", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014200", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.127600", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.955400", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.950400", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.825400", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.137200", + "Timestamp": "2024-05-16T11:16:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.107200", + "Timestamp": "2024-05-16T11:16:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.007200", + "Timestamp": "2024-05-16T11:16:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.599400", + "Timestamp": "2024-05-16T11:16:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.594400", + "Timestamp": "2024-05-16T11:16:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.469400", + "Timestamp": "2024-05-16T11:16:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.296000", + "Timestamp": "2024-05-16T11:16:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266000", + "Timestamp": "2024-05-16T11:16:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.166000", + "Timestamp": "2024-05-16T11:16:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097000", + "Timestamp": "2024-05-16T11:16:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093300", + "Timestamp": "2024-05-16T11:16:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037000", + "Timestamp": "2024-05-16T11:16:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.122100", + "Timestamp": "2024-05-16T11:16:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.912000", + "Timestamp": "2024-05-16T11:07:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.674000", + "Timestamp": "2024-05-16T11:07:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.674000", + "Timestamp": "2024-05-16T11:07:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.644000", + "Timestamp": "2024-05-16T11:07:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.644000", + "Timestamp": "2024-05-16T11:07:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.544000", + "Timestamp": "2024-05-16T11:07:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.544000", + "Timestamp": "2024-05-16T11:07:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.004500", + "Timestamp": "2024-05-16T11:07:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.005200", + "Timestamp": "2024-05-16T11:07:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.996600", + "Timestamp": "2024-05-16T11:07:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.520700", + "Timestamp": "2024-05-16T11:07:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.502400", + "Timestamp": "2024-05-16T11:07:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.584700", + "Timestamp": "2024-05-16T11:07:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.515700", + "Timestamp": "2024-05-16T11:07:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.497400", + "Timestamp": "2024-05-16T11:07:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.579700", + "Timestamp": "2024-05-16T11:07:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.390700", + "Timestamp": "2024-05-16T11:07:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.372400", + "Timestamp": "2024-05-16T11:07:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.454700", + "Timestamp": "2024-05-16T11:07:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.030000", + "Timestamp": "2024-05-16T11:07:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.002700", + "Timestamp": "2024-05-16T11:07:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.055100", + "Timestamp": "2024-05-16T11:07:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.565200", + "Timestamp": "2024-05-16T11:07:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.533700", + "Timestamp": "2024-05-16T11:07:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.524900", + "Timestamp": "2024-05-16T11:07:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.560200", + "Timestamp": "2024-05-16T11:07:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.528700", + "Timestamp": "2024-05-16T11:07:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.519900", + "Timestamp": "2024-05-16T11:07:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.435200", + "Timestamp": "2024-05-16T11:07:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.403700", + "Timestamp": "2024-05-16T11:07:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.394900", + "Timestamp": "2024-05-16T11:07:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157200", + "Timestamp": "2024-05-16T11:02:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153500", + "Timestamp": "2024-05-16T11:02:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-16T11:02:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.641600", + "Timestamp": "2024-05-16T11:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.230300", + "Timestamp": "2024-05-16T11:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.225300", + "Timestamp": "2024-05-16T11:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.100300", + "Timestamp": "2024-05-16T11:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.886700", + "Timestamp": "2024-05-16T11:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152700", + "Timestamp": "2024-05-16T11:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149000", + "Timestamp": "2024-05-16T11:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092700", + "Timestamp": "2024-05-16T11:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.407600", + "Timestamp": "2024-05-16T11:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.402600", + "Timestamp": "2024-05-16T11:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.277600", + "Timestamp": "2024-05-16T11:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.518600", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.488600", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.388600", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.084100", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.265400", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.260400", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.135400", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.226400", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.653900", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.648900", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.523900", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.612100", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.607100", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.482100", + "Timestamp": "2024-05-16T11:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.687200", + "Timestamp": "2024-05-16T11:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.682200", + "Timestamp": "2024-05-16T11:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.557200", + "Timestamp": "2024-05-16T11:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.517500", + "Timestamp": "2024-05-16T11:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.122500", + "Timestamp": "2024-05-16T11:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.995100", + "Timestamp": "2024-05-16T11:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.320700", + "Timestamp": "2024-05-16T11:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.315700", + "Timestamp": "2024-05-16T11:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.190700", + "Timestamp": "2024-05-16T11:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.735600", + "Timestamp": "2024-05-16T11:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.705600", + "Timestamp": "2024-05-16T11:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.605600", + "Timestamp": "2024-05-16T11:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.407800", + "Timestamp": "2024-05-16T11:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.402800", + "Timestamp": "2024-05-16T11:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.277800", + "Timestamp": "2024-05-16T11:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.250000", + "Timestamp": "2024-05-16T11:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.265300", + "Timestamp": "2024-05-16T11:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.261300", + "Timestamp": "2024-05-16T11:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.205300", + "Timestamp": "2024-05-16T11:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.132800", + "Timestamp": "2024-05-16T11:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.510000", + "Timestamp": "2024-05-16T11:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156700", + "Timestamp": "2024-05-16T11:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153000", + "Timestamp": "2024-05-16T11:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096700", + "Timestamp": "2024-05-16T11:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.549200", + "Timestamp": "2024-05-16T11:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.544200", + "Timestamp": "2024-05-16T11:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.419200", + "Timestamp": "2024-05-16T11:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.077400", + "Timestamp": "2024-05-16T11:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.424200", + "Timestamp": "2024-05-16T11:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.877500", + "Timestamp": "2024-05-16T11:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.872500", + "Timestamp": "2024-05-16T11:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.747500", + "Timestamp": "2024-05-16T11:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.269300", + "Timestamp": "2024-05-16T11:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.486500", + "Timestamp": "2024-05-16T11:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.317100", + "Timestamp": "2024-05-16T11:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.312100", + "Timestamp": "2024-05-16T11:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.187100", + "Timestamp": "2024-05-16T11:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.307900", + "Timestamp": "2024-05-16T11:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.302900", + "Timestamp": "2024-05-16T11:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.177900", + "Timestamp": "2024-05-16T11:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080000", + "Timestamp": "2024-05-16T11:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.051000", + "Timestamp": "2024-05-16T11:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020000", + "Timestamp": "2024-05-16T11:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.786300", + "Timestamp": "2024-05-16T11:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.069600", + "Timestamp": "2024-05-16T11:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121400", + "Timestamp": "2024-05-16T11:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117700", + "Timestamp": "2024-05-16T11:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061400", + "Timestamp": "2024-05-16T11:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.066800", + "Timestamp": "2024-05-16T11:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.948200", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.943200", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.818200", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.135700", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.037300", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.671700", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.666700", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.541700", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.395500", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.142000", + "Timestamp": "2024-05-16T11:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.624000", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.619000", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.494000", + "Timestamp": "2024-05-16T11:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.051900", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.933300", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.161900", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.156900", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.031900", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.740900", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.710900", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.610900", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.474500", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162400", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158400", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102400", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.334200", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.304200", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.204200", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156700", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152700", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096700", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069500", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039500", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009500", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.395400", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.390400", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.265400", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.407500", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.402500", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.277500", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.014700", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.009700", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.884700", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.079300", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124300", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120600", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064300", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146900", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142900", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086900", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.785000", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.780000", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.655000", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.664500", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.169100", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.619500", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.132500", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.127500", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.002500", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.248200", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.358800", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.386700", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.353800", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.381700", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.228800", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.256700", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.807100", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.802100", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.677100", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.319100", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.314100", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.189100", + "Timestamp": "2024-05-16T11:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.762900", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.757900", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.632900", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.390300", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.360300", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.260300", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.255200", + "Timestamp": "2024-05-16T11:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137700", + "Timestamp": "2024-05-16T11:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133700", + "Timestamp": "2024-05-16T11:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077700", + "Timestamp": "2024-05-16T11:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.160500", + "Timestamp": "2024-05-16T11:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.115100", + "Timestamp": "2024-05-16T11:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.197200", + "Timestamp": "2024-05-16T11:01:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193500", + "Timestamp": "2024-05-16T11:01:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137200", + "Timestamp": "2024-05-16T11:01:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063700", + "Timestamp": "2024-05-16T11:01:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003700", + "Timestamp": "2024-05-16T11:01:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003700", + "Timestamp": "2024-05-16T11:01:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.950800", + "Timestamp": "2024-05-16T11:01:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.945800", + "Timestamp": "2024-05-16T11:01:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.820800", + "Timestamp": "2024-05-16T11:01:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.604800", + "Timestamp": "2024-05-16T11:01:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.599800", + "Timestamp": "2024-05-16T11:01:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.474800", + "Timestamp": "2024-05-16T11:01:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.308900", + "Timestamp": "2024-05-16T11:01:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.303900", + "Timestamp": "2024-05-16T11:01:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.178900", + "Timestamp": "2024-05-16T11:01:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.488500", + "Timestamp": "2024-05-16T11:01:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.483500", + "Timestamp": "2024-05-16T11:01:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.358500", + "Timestamp": "2024-05-16T11:01:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.467400", + "Timestamp": "2024-05-16T11:01:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.245200", + "Timestamp": "2024-05-16T10:47:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120400", + "Timestamp": "2024-05-16T10:47:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.451900", + "Timestamp": "2024-05-16T10:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.718100", + "Timestamp": "2024-05-16T10:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.713100", + "Timestamp": "2024-05-16T10:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.588100", + "Timestamp": "2024-05-16T10:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.049500", + "Timestamp": "2024-05-16T10:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.431500", + "Timestamp": "2024-05-16T10:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.426500", + "Timestamp": "2024-05-16T10:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.301500", + "Timestamp": "2024-05-16T10:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.112700", + "Timestamp": "2024-05-16T10:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.107700", + "Timestamp": "2024-05-16T10:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.982700", + "Timestamp": "2024-05-16T10:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.263300", + "Timestamp": "2024-05-16T10:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258300", + "Timestamp": "2024-05-16T10:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133300", + "Timestamp": "2024-05-16T10:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.365800", + "Timestamp": "2024-05-16T10:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.583900", + "Timestamp": "2024-05-16T10:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094300", + "Timestamp": "2024-05-16T10:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090600", + "Timestamp": "2024-05-16T10:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034300", + "Timestamp": "2024-05-16T10:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076200", + "Timestamp": "2024-05-16T10:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.072500", + "Timestamp": "2024-05-16T10:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016200", + "Timestamp": "2024-05-16T10:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270700", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265700", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140700", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.545700", + "Timestamp": "2024-05-16T10:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171100", + "Timestamp": "2024-05-16T10:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167100", + "Timestamp": "2024-05-16T10:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111100", + "Timestamp": "2024-05-16T10:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306800", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301800", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176800", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.254700", + "Timestamp": "2024-05-16T10:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.249700", + "Timestamp": "2024-05-16T10:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124700", + "Timestamp": "2024-05-16T10:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.447400", + "Timestamp": "2024-05-16T10:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.442400", + "Timestamp": "2024-05-16T10:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.317400", + "Timestamp": "2024-05-16T10:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.323600", + "Timestamp": "2024-05-16T10:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293600", + "Timestamp": "2024-05-16T10:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.193600", + "Timestamp": "2024-05-16T10:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.840600", + "Timestamp": "2024-05-16T10:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.649800", + "Timestamp": "2024-05-16T10:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.644800", + "Timestamp": "2024-05-16T10:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.519800", + "Timestamp": "2024-05-16T10:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.371400", + "Timestamp": "2024-05-16T10:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.199400", + "Timestamp": "2024-05-16T10:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.194400", + "Timestamp": "2024-05-16T10:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.069400", + "Timestamp": "2024-05-16T10:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.230000", + "Timestamp": "2024-05-16T10:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.225000", + "Timestamp": "2024-05-16T10:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.100000", + "Timestamp": "2024-05-16T10:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158600", + "Timestamp": "2024-05-16T10:47:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155600", + "Timestamp": "2024-05-16T10:47:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098600", + "Timestamp": "2024-05-16T10:47:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.168500", + "Timestamp": "2024-05-16T10:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.258800", + "Timestamp": "2024-05-16T10:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.228800", + "Timestamp": "2024-05-16T10:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.128800", + "Timestamp": "2024-05-16T10:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.847400", + "Timestamp": "2024-05-16T10:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.253400", + "Timestamp": "2024-05-16T10:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.129400", + "Timestamp": "2024-05-16T10:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.223900", + "Timestamp": "2024-05-16T10:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.882400", + "Timestamp": "2024-05-16T10:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.267500", + "Timestamp": "2024-05-16T10:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.263800", + "Timestamp": "2024-05-16T10:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.207500", + "Timestamp": "2024-05-16T10:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.142500", + "Timestamp": "2024-05-16T10:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.886600", + "Timestamp": "2024-05-16T10:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.027500", + "Timestamp": "2024-05-16T10:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.033500", + "Timestamp": "2024-05-16T10:46:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.028500", + "Timestamp": "2024-05-16T10:46:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.903500", + "Timestamp": "2024-05-16T10:46:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.123900", + "Timestamp": "2024-05-16T10:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.727900", + "Timestamp": "2024-05-16T10:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.643100", + "Timestamp": "2024-05-16T10:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.613100", + "Timestamp": "2024-05-16T10:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.513100", + "Timestamp": "2024-05-16T10:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.448400", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.443400", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.318400", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.050100", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.089900", + "Timestamp": "2024-05-16T10:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.092400", + "Timestamp": "2024-05-16T10:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.343600", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.313600", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.213600", + "Timestamp": "2024-05-16T10:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.132400", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.138800", + "Timestamp": "2024-05-16T10:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.284600", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.306100", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.070300", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.065300", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.940300", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.482900", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.674300", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.669300", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.544300", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.674100", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.669100", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.544100", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.378700", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.374700", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.318700", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.003900", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.438900", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.234800", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.970300", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.931500", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.008000", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.615400", + "Timestamp": "2024-05-16T10:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.195900", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080200", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.051200", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020200", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.969900", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.871500", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.866500", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.741500", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.111200", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.151200", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.063300", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.058300", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.933300", + "Timestamp": "2024-05-16T10:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.188200", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.184500", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128200", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.104500", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.099500", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.974500", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.753900", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.748900", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.623900", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150700", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147000", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090700", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.243900", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.281300", + "Timestamp": "2024-05-16T10:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.886200", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.322200", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.317200", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.192200", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.184200", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.179200", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.054200", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.707300", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.677300", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.577300", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.401700", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.396700", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.271700", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.126500", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.314300", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.309300", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.184300", + "Timestamp": "2024-05-16T10:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.528500", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.864100", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.859100", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.734100", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.143000", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.678600", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.673600", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.548600", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.876300", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.645800", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.640800", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.515800", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.083900", + "Timestamp": "2024-05-16T10:46:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.053900", + "Timestamp": "2024-05-16T10:46:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.953900", + "Timestamp": "2024-05-16T10:46:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.475800", + "Timestamp": "2024-05-16T10:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.470800", + "Timestamp": "2024-05-16T10:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.345800", + "Timestamp": "2024-05-16T10:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114400", + "Timestamp": "2024-05-16T10:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T10:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054400", + "Timestamp": "2024-05-16T10:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124900", + "Timestamp": "2024-05-16T10:46:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148800", + "Timestamp": "2024-05-16T10:46:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144800", + "Timestamp": "2024-05-16T10:46:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088800", + "Timestamp": "2024-05-16T10:46:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.376900", + "Timestamp": "2024-05-16T10:32:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.371900", + "Timestamp": "2024-05-16T10:32:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.246900", + "Timestamp": "2024-05-16T10:32:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.839600", + "Timestamp": "2024-05-16T10:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.834600", + "Timestamp": "2024-05-16T10:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.709600", + "Timestamp": "2024-05-16T10:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.635000", + "Timestamp": "2024-05-16T10:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.605000", + "Timestamp": "2024-05-16T10:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.505000", + "Timestamp": "2024-05-16T10:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.831500", + "Timestamp": "2024-05-16T10:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.826500", + "Timestamp": "2024-05-16T10:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.701500", + "Timestamp": "2024-05-16T10:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.330400", + "Timestamp": "2024-05-16T10:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.143900", + "Timestamp": "2024-05-16T10:32:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.188700", + "Timestamp": "2024-05-16T10:32:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123300", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119600", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063300", + "Timestamp": "2024-05-16T10:32:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.732100", + "Timestamp": "2024-05-16T10:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.702100", + "Timestamp": "2024-05-16T10:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.602100", + "Timestamp": "2024-05-16T10:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.480600", + "Timestamp": "2024-05-16T10:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076700", + "Timestamp": "2024-05-16T10:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047700", + "Timestamp": "2024-05-16T10:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016700", + "Timestamp": "2024-05-16T10:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T10:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.401900", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.396900", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.271900", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.221400", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.216400", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091400", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.196500", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193500", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.136500", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.956500", + "Timestamp": "2024-05-16T10:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.951500", + "Timestamp": "2024-05-16T10:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.826500", + "Timestamp": "2024-05-16T10:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.792800", + "Timestamp": "2024-05-16T10:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.787800", + "Timestamp": "2024-05-16T10:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.662800", + "Timestamp": "2024-05-16T10:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.271700", + "Timestamp": "2024-05-16T10:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.765300", + "Timestamp": "2024-05-16T10:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.760300", + "Timestamp": "2024-05-16T10:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.635300", + "Timestamp": "2024-05-16T10:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.437700", + "Timestamp": "2024-05-16T10:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.432700", + "Timestamp": "2024-05-16T10:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.307700", + "Timestamp": "2024-05-16T10:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.304100", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.880800", + "Timestamp": "2024-05-16T10:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.897100", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.892100", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.767100", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.579100", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.574100", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.449100", + "Timestamp": "2024-05-16T10:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.673900", + "Timestamp": "2024-05-16T10:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.668900", + "Timestamp": "2024-05-16T10:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.543900", + "Timestamp": "2024-05-16T10:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.497900", + "Timestamp": "2024-05-16T10:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.492900", + "Timestamp": "2024-05-16T10:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.367900", + "Timestamp": "2024-05-16T10:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103100", + "Timestamp": "2024-05-16T10:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099400", + "Timestamp": "2024-05-16T10:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043100", + "Timestamp": "2024-05-16T10:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.968600", + "Timestamp": "2024-05-16T10:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111500", + "Timestamp": "2024-05-16T10:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107800", + "Timestamp": "2024-05-16T10:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051500", + "Timestamp": "2024-05-16T10:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.047000", + "Timestamp": "2024-05-16T10:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.042000", + "Timestamp": "2024-05-16T10:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.917000", + "Timestamp": "2024-05-16T10:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.869200", + "Timestamp": "2024-05-16T10:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.468900", + "Timestamp": "2024-05-16T10:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.451500", + "Timestamp": "2024-05-16T10:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.463900", + "Timestamp": "2024-05-16T10:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.446500", + "Timestamp": "2024-05-16T10:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.338900", + "Timestamp": "2024-05-16T10:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.321500", + "Timestamp": "2024-05-16T10:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.080300", + "Timestamp": "2024-05-16T10:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.308700", + "Timestamp": "2024-05-16T10:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.303700", + "Timestamp": "2024-05-16T10:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.178700", + "Timestamp": "2024-05-16T10:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.287400", + "Timestamp": "2024-05-16T10:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.257400", + "Timestamp": "2024-05-16T10:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157400", + "Timestamp": "2024-05-16T10:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.283200", + "Timestamp": "2024-05-16T10:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.507800", + "Timestamp": "2024-05-16T10:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.477800", + "Timestamp": "2024-05-16T10:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.377800", + "Timestamp": "2024-05-16T10:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.303300", + "Timestamp": "2024-05-16T10:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.610300", + "Timestamp": "2024-05-16T10:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.580300", + "Timestamp": "2024-05-16T10:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.480300", + "Timestamp": "2024-05-16T10:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.833100", + "Timestamp": "2024-05-16T10:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.988200", + "Timestamp": "2024-05-16T10:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.522900", + "Timestamp": "2024-05-16T10:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.517900", + "Timestamp": "2024-05-16T10:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.392900", + "Timestamp": "2024-05-16T10:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.630900", + "Timestamp": "2024-05-16T10:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.625900", + "Timestamp": "2024-05-16T10:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.500900", + "Timestamp": "2024-05-16T10:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.825800", + "Timestamp": "2024-05-16T10:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.820800", + "Timestamp": "2024-05-16T10:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.695800", + "Timestamp": "2024-05-16T10:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.498000", + "Timestamp": "2024-05-16T10:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.490000", + "Timestamp": "2024-05-16T10:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.676500", + "Timestamp": "2024-05-16T10:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.374100", + "Timestamp": "2024-05-16T10:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.104600", + "Timestamp": "2024-05-16T10:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132400", + "Timestamp": "2024-05-16T10:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128700", + "Timestamp": "2024-05-16T10:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072400", + "Timestamp": "2024-05-16T10:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.117300", + "Timestamp": "2024-05-16T10:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.112300", + "Timestamp": "2024-05-16T10:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.987300", + "Timestamp": "2024-05-16T10:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.110300", + "Timestamp": "2024-05-16T10:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156000", + "Timestamp": "2024-05-16T10:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152000", + "Timestamp": "2024-05-16T10:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T10:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.127600", + "Timestamp": "2024-05-16T10:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.122600", + "Timestamp": "2024-05-16T10:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.997600", + "Timestamp": "2024-05-16T10:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.803600", + "Timestamp": "2024-05-16T10:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.798600", + "Timestamp": "2024-05-16T10:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.673600", + "Timestamp": "2024-05-16T10:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.327700", + "Timestamp": "2024-05-16T10:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.317000", + "Timestamp": "2024-05-16T10:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.297700", + "Timestamp": "2024-05-16T10:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.287000", + "Timestamp": "2024-05-16T10:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.197700", + "Timestamp": "2024-05-16T10:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.187000", + "Timestamp": "2024-05-16T10:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.472800", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174100", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170100", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114100", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.583600", + "Timestamp": "2024-05-16T10:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.578600", + "Timestamp": "2024-05-16T10:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.453600", + "Timestamp": "2024-05-16T10:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.249700", + "Timestamp": "2024-05-16T10:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.244700", + "Timestamp": "2024-05-16T10:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119700", + "Timestamp": "2024-05-16T10:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.736100", + "Timestamp": "2024-05-16T10:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.731100", + "Timestamp": "2024-05-16T10:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.606100", + "Timestamp": "2024-05-16T10:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.542900", + "Timestamp": "2024-05-16T10:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.665200", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.660200", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.535200", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.368100", + "Timestamp": "2024-05-16T10:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.569500", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.202200", + "Timestamp": "2024-05-16T10:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.512500", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.192400", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.188700", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.132400", + "Timestamp": "2024-05-16T10:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.060400", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.957400", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.442900", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.437900", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.312900", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.150500", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.259000", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.255000", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199000", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166500", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162500", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.300200", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.744700", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.739700", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.614700", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140500", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136500", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080500", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.431800", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.401800", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.301800", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.967100", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093000", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089300", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033000", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.422800", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.417800", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.292800", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.420800", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.415800", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.290800", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.471800", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.466800", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.341800", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.332700", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.327700", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.202700", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.497900", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.863100", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.858100", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.733100", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.885000", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.880000", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.755000", + "Timestamp": "2024-05-16T10:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.089100", + "Timestamp": "2024-05-16T10:31:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.138000", + "Timestamp": "2024-05-16T10:31:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.084100", + "Timestamp": "2024-05-16T10:31:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.133000", + "Timestamp": "2024-05-16T10:31:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.959100", + "Timestamp": "2024-05-16T10:31:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.008000", + "Timestamp": "2024-05-16T10:31:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.503000", + "Timestamp": "2024-05-16T10:31:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.498000", + "Timestamp": "2024-05-16T10:31:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.373000", + "Timestamp": "2024-05-16T10:31:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.183300", + "Timestamp": "2024-05-16T10:17:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179600", + "Timestamp": "2024-05-16T10:17:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123300", + "Timestamp": "2024-05-16T10:17:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.283600", + "Timestamp": "2024-05-16T10:17:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.278600", + "Timestamp": "2024-05-16T10:17:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.153600", + "Timestamp": "2024-05-16T10:17:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.024600", + "Timestamp": "2024-05-16T10:17:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.024900", + "Timestamp": "2024-05-16T10:17:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.019600", + "Timestamp": "2024-05-16T10:17:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.019900", + "Timestamp": "2024-05-16T10:17:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.894600", + "Timestamp": "2024-05-16T10:17:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.894900", + "Timestamp": "2024-05-16T10:17:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.587300", + "Timestamp": "2024-05-16T10:17:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.985600", + "Timestamp": "2024-05-16T10:17:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.368500", + "Timestamp": "2024-05-16T10:17:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.363500", + "Timestamp": "2024-05-16T10:17:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.238500", + "Timestamp": "2024-05-16T10:17:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.029900", + "Timestamp": "2024-05-16T10:17:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.024900", + "Timestamp": "2024-05-16T10:17:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.899900", + "Timestamp": "2024-05-16T10:17:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.977400", + "Timestamp": "2024-05-16T10:17:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.290300", + "Timestamp": "2024-05-16T10:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.094300", + "Timestamp": "2024-05-16T10:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.613500", + "Timestamp": "2024-05-16T10:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.608500", + "Timestamp": "2024-05-16T10:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.483500", + "Timestamp": "2024-05-16T10:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.713900", + "Timestamp": "2024-05-16T10:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.708900", + "Timestamp": "2024-05-16T10:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.583900", + "Timestamp": "2024-05-16T10:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.113900", + "Timestamp": "2024-05-16T10:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.108900", + "Timestamp": "2024-05-16T10:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.983900", + "Timestamp": "2024-05-16T10:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.252100", + "Timestamp": "2024-05-16T10:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.427800", + "Timestamp": "2024-05-16T10:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.397800", + "Timestamp": "2024-05-16T10:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.297800", + "Timestamp": "2024-05-16T10:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.770200", + "Timestamp": "2024-05-16T10:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.765200", + "Timestamp": "2024-05-16T10:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.640200", + "Timestamp": "2024-05-16T10:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.745000", + "Timestamp": "2024-05-16T10:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.740000", + "Timestamp": "2024-05-16T10:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.615000", + "Timestamp": "2024-05-16T10:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.792000", + "Timestamp": "2024-05-16T10:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.787000", + "Timestamp": "2024-05-16T10:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.662000", + "Timestamp": "2024-05-16T10:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.270900", + "Timestamp": "2024-05-16T10:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.561700", + "Timestamp": "2024-05-16T10:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.040800", + "Timestamp": "2024-05-16T10:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.010800", + "Timestamp": "2024-05-16T10:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.910800", + "Timestamp": "2024-05-16T10:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.835700", + "Timestamp": "2024-05-16T10:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.830700", + "Timestamp": "2024-05-16T10:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.705700", + "Timestamp": "2024-05-16T10:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.644000", + "Timestamp": "2024-05-16T10:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.639000", + "Timestamp": "2024-05-16T10:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.514000", + "Timestamp": "2024-05-16T10:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.541400", + "Timestamp": "2024-05-16T10:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.995200", + "Timestamp": "2024-05-16T10:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T10:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104700", + "Timestamp": "2024-05-16T10:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048700", + "Timestamp": "2024-05-16T10:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.877200", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.172000", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.167000", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.042000", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.993600", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.135500", + "Timestamp": "2024-05-16T10:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.676700", + "Timestamp": "2024-05-16T10:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.671700", + "Timestamp": "2024-05-16T10:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.546700", + "Timestamp": "2024-05-16T10:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.768200", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.763200", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.638200", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.103600", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.095400", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.203600", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.199600", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143600", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.318700", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.288700", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.188700", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.586900", + "Timestamp": "2024-05-16T10:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.581900", + "Timestamp": "2024-05-16T10:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.456900", + "Timestamp": "2024-05-16T10:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104700", + "Timestamp": "2024-05-16T10:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144700", + "Timestamp": "2024-05-16T10:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044700", + "Timestamp": "2024-05-16T10:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314600", + "Timestamp": "2024-05-16T10:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.309600", + "Timestamp": "2024-05-16T10:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184600", + "Timestamp": "2024-05-16T10:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.231700", + "Timestamp": "2024-05-16T10:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.226700", + "Timestamp": "2024-05-16T10:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.101700", + "Timestamp": "2024-05-16T10:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.992200", + "Timestamp": "2024-05-16T10:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.987200", + "Timestamp": "2024-05-16T10:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.862200", + "Timestamp": "2024-05-16T10:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.693700", + "Timestamp": "2024-05-16T10:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.932600", + "Timestamp": "2024-05-16T10:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.927600", + "Timestamp": "2024-05-16T10:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.802600", + "Timestamp": "2024-05-16T10:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.715100", + "Timestamp": "2024-05-16T10:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.710100", + "Timestamp": "2024-05-16T10:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.585100", + "Timestamp": "2024-05-16T10:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.051600", + "Timestamp": "2024-05-16T10:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.074400", + "Timestamp": "2024-05-16T10:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.069400", + "Timestamp": "2024-05-16T10:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.944400", + "Timestamp": "2024-05-16T10:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.690900", + "Timestamp": "2024-05-16T10:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.685900", + "Timestamp": "2024-05-16T10:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.560900", + "Timestamp": "2024-05-16T10:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.123600", + "Timestamp": "2024-05-16T10:17:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.118600", + "Timestamp": "2024-05-16T10:17:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.993600", + "Timestamp": "2024-05-16T10:17:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.417700", + "Timestamp": "2024-05-16T10:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.412700", + "Timestamp": "2024-05-16T10:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.287700", + "Timestamp": "2024-05-16T10:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159200", + "Timestamp": "2024-05-16T10:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155500", + "Timestamp": "2024-05-16T10:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T10:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-16T10:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093500", + "Timestamp": "2024-05-16T10:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037200", + "Timestamp": "2024-05-16T10:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.821300", + "Timestamp": "2024-05-16T10:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.542100", + "Timestamp": "2024-05-16T10:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.507600", + "Timestamp": "2024-05-16T10:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.535700", + "Timestamp": "2024-05-16T10:17:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.505700", + "Timestamp": "2024-05-16T10:17:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.405700", + "Timestamp": "2024-05-16T10:17:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.323100", + "Timestamp": "2024-05-16T10:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.318100", + "Timestamp": "2024-05-16T10:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.193100", + "Timestamp": "2024-05-16T10:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.779900", + "Timestamp": "2024-05-16T10:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.842000", + "Timestamp": "2024-05-16T10:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.253400", + "Timestamp": "2024-05-16T10:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.110700", + "Timestamp": "2024-05-16T10:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.135100", + "Timestamp": "2024-05-16T10:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.048000", + "Timestamp": "2024-05-16T10:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.154400", + "Timestamp": "2024-05-16T10:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.043000", + "Timestamp": "2024-05-16T10:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.149400", + "Timestamp": "2024-05-16T10:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.918000", + "Timestamp": "2024-05-16T10:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.024400", + "Timestamp": "2024-05-16T10:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.331600", + "Timestamp": "2024-05-16T10:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301600", + "Timestamp": "2024-05-16T10:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.201600", + "Timestamp": "2024-05-16T10:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.433900", + "Timestamp": "2024-05-16T10:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.403900", + "Timestamp": "2024-05-16T10:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.303900", + "Timestamp": "2024-05-16T10:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.934500", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.146500", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138600", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134900", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078600", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.604900", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.574900", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.474900", + "Timestamp": "2024-05-16T10:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.196400", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.191400", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.066400", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.541100", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.536100", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.411100", + "Timestamp": "2024-05-16T10:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.417200", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.174100", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.169100", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.044100", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.198900", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.193900", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.068900", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.695800", + "Timestamp": "2024-05-16T10:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.976400", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.146700", + "Timestamp": "2024-05-16T10:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.303200", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298200", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.173200", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062500", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.373500", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.368500", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.243500", + "Timestamp": "2024-05-16T10:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.890700", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.860700", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.760700", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.234500", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.229500", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.104500", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.132400", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.429000", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.399000", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.299000", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.216600", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141100", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137100", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081100", + "Timestamp": "2024-05-16T10:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.175400", + "Timestamp": "2024-05-16T10:04:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.311900", + "Timestamp": "2024-05-16T10:04:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.170400", + "Timestamp": "2024-05-16T10:04:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.306900", + "Timestamp": "2024-05-16T10:04:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.045400", + "Timestamp": "2024-05-16T10:04:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.181900", + "Timestamp": "2024-05-16T10:04:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.882200", + "Timestamp": "2024-05-16T10:04:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.894500", + "Timestamp": "2024-05-16T10:04:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.923100", + "Timestamp": "2024-05-16T10:04:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.006300", + "Timestamp": "2024-05-16T10:03:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.866000", + "Timestamp": "2024-05-16T10:02:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.276700", + "Timestamp": "2024-05-16T10:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "f1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.246700", + "Timestamp": "2024-05-16T10:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.146700", + "Timestamp": "2024-05-16T10:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.012900", + "Timestamp": "2024-05-16T10:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.007900", + "Timestamp": "2024-05-16T10:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.882900", + "Timestamp": "2024-05-16T10:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.424500", + "Timestamp": "2024-05-16T10:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.419500", + "Timestamp": "2024-05-16T10:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.294500", + "Timestamp": "2024-05-16T10:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.274200", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.270200", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.214200", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.202500", + "Timestamp": "2024-05-16T10:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198500", + "Timestamp": "2024-05-16T10:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142500", + "Timestamp": "2024-05-16T10:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.647500", + "Timestamp": "2024-05-16T10:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.642500", + "Timestamp": "2024-05-16T10:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.517500", + "Timestamp": "2024-05-16T10:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.104700", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.306000", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.328600", + "Timestamp": "2024-05-16T10:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.510600", + "Timestamp": "2024-05-16T10:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126300", + "Timestamp": "2024-05-16T10:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122600", + "Timestamp": "2024-05-16T10:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066300", + "Timestamp": "2024-05-16T10:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.439400", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.202100", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.434400", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.197100", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.309400", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.072100", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.274900", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269900", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144900", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.294400", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.539700", + "Timestamp": "2024-05-16T10:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.534700", + "Timestamp": "2024-05-16T10:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.409700", + "Timestamp": "2024-05-16T10:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.132200", + "Timestamp": "2024-05-16T10:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.127200", + "Timestamp": "2024-05-16T10:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.002200", + "Timestamp": "2024-05-16T10:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.034400", + "Timestamp": "2024-05-16T10:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.411400", + "Timestamp": "2024-05-16T10:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.406400", + "Timestamp": "2024-05-16T10:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.281400", + "Timestamp": "2024-05-16T10:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.743600", + "Timestamp": "2024-05-16T10:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.516600", + "Timestamp": "2024-05-16T10:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.572800", + "Timestamp": "2024-05-16T10:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.567800", + "Timestamp": "2024-05-16T10:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.442800", + "Timestamp": "2024-05-16T10:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.206500", + "Timestamp": "2024-05-16T10:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.107900", + "Timestamp": "2024-05-16T10:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.176500", + "Timestamp": "2024-05-16T10:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.077900", + "Timestamp": "2024-05-16T10:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.076500", + "Timestamp": "2024-05-16T10:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.977900", + "Timestamp": "2024-05-16T10:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.040400", + "Timestamp": "2024-05-16T10:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.035400", + "Timestamp": "2024-05-16T10:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.910400", + "Timestamp": "2024-05-16T10:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.316000", + "Timestamp": "2024-05-16T10:02:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078600", + "Timestamp": "2024-05-16T10:02:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.049600", + "Timestamp": "2024-05-16T10:02:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018600", + "Timestamp": "2024-05-16T10:02:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.450800", + "Timestamp": "2024-05-16T10:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075400", + "Timestamp": "2024-05-16T10:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071700", + "Timestamp": "2024-05-16T10:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015400", + "Timestamp": "2024-05-16T10:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.246400", + "Timestamp": "2024-05-16T10:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.242400", + "Timestamp": "2024-05-16T10:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186400", + "Timestamp": "2024-05-16T10:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.344200", + "Timestamp": "2024-05-16T10:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.604300", + "Timestamp": "2024-05-16T10:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.599300", + "Timestamp": "2024-05-16T10:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.474300", + "Timestamp": "2024-05-16T10:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.515000", + "Timestamp": "2024-05-16T10:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.485000", + "Timestamp": "2024-05-16T10:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.385000", + "Timestamp": "2024-05-16T10:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.244700", + "Timestamp": "2024-05-16T10:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.239700", + "Timestamp": "2024-05-16T10:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114700", + "Timestamp": "2024-05-16T10:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.139900", + "Timestamp": "2024-05-16T10:01:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.134900", + "Timestamp": "2024-05-16T10:01:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.009900", + "Timestamp": "2024-05-16T10:01:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.987400", + "Timestamp": "2024-05-16T10:01:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.669300", + "Timestamp": "2024-05-16T10:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.399100", + "Timestamp": "2024-05-16T10:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.394100", + "Timestamp": "2024-05-16T10:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.269100", + "Timestamp": "2024-05-16T10:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.098700", + "Timestamp": "2024-05-16T10:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.876000", + "Timestamp": "2024-05-16T10:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.585000", + "Timestamp": "2024-05-16T10:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.580000", + "Timestamp": "2024-05-16T10:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.455000", + "Timestamp": "2024-05-16T10:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071300", + "Timestamp": "2024-05-16T10:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067600", + "Timestamp": "2024-05-16T10:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011300", + "Timestamp": "2024-05-16T10:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.311600", + "Timestamp": "2024-05-16T10:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.306600", + "Timestamp": "2024-05-16T10:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.181600", + "Timestamp": "2024-05-16T10:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.893800", + "Timestamp": "2024-05-16T10:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.042400", + "Timestamp": "2024-05-16T10:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.399500", + "Timestamp": "2024-05-16T10:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.235400", + "Timestamp": "2024-05-16T10:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.542600", + "Timestamp": "2024-05-16T10:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.819100", + "Timestamp": "2024-05-16T10:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.814100", + "Timestamp": "2024-05-16T10:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.689100", + "Timestamp": "2024-05-16T10:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.989600", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.992900", + "Timestamp": "2024-05-16T10:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.076100", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.144600", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.071100", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.139600", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.946100", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.014600", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.787000", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.782000", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.657000", + "Timestamp": "2024-05-16T10:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.548300", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.543300", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.418300", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.225200", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.220200", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.095200", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.187800", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.734400", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.084000", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.054000", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.954000", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.604400", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.599400", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.474400", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.964600", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.934400", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.934600", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.904400", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.834600", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.804400", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.134200", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.179400", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117800", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114100", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057800", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.355700", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.248500", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.497200", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.492200", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.367200", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.203300", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.198300", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.073300", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.423500", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.045400", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.040400", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.915400", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.561300", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.067000", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.062000", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.937000", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042900", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.651600", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.646600", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.521600", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136500", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132800", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076500", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273300", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268300", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143300", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.279400", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.117800", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.808600", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.778600", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.678600", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.742400", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.737400", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.612400", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.178200", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.496000", + "Timestamp": "2024-05-16T10:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146100", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046100", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080500", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076800", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020500", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.825400", + "Timestamp": "2024-05-16T10:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.795400", + "Timestamp": "2024-05-16T10:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.695400", + "Timestamp": "2024-05-16T10:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.257800", + "Timestamp": "2024-05-16T10:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080500", + "Timestamp": "2024-05-16T10:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120500", + "Timestamp": "2024-05-16T10:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020500", + "Timestamp": "2024-05-16T10:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.318600", + "Timestamp": "2024-05-16T10:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.313600", + "Timestamp": "2024-05-16T10:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.188600", + "Timestamp": "2024-05-16T10:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119200", + "Timestamp": "2024-05-16T10:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115500", + "Timestamp": "2024-05-16T10:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059200", + "Timestamp": "2024-05-16T10:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.552500", + "Timestamp": "2024-05-16T10:01:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.118800", + "Timestamp": "2024-05-16T10:01:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.113800", + "Timestamp": "2024-05-16T10:01:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.988800", + "Timestamp": "2024-05-16T10:01:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.109900", + "Timestamp": "2024-05-16T10:01:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.104900", + "Timestamp": "2024-05-16T10:01:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.979900", + "Timestamp": "2024-05-16T10:01:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.269300", + "Timestamp": "2024-05-16T10:01:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124900", + "Timestamp": "2024-05-16T10:01:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.674800", + "Timestamp": "2024-05-16T09:56:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.674800", + "Timestamp": "2024-05-16T09:56:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.006300", + "Timestamp": "2024-05-16T09:51:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.653400", + "Timestamp": "2024-05-16T09:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.648400", + "Timestamp": "2024-05-16T09:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.523400", + "Timestamp": "2024-05-16T09:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.906400", + "Timestamp": "2024-05-16T09:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.901400", + "Timestamp": "2024-05-16T09:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.776400", + "Timestamp": "2024-05-16T09:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.254500", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.991700", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.505900", + "Timestamp": "2024-05-16T09:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.396800", + "Timestamp": "2024-05-16T09:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.302900", + "Timestamp": "2024-05-16T09:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.297900", + "Timestamp": "2024-05-16T09:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172900", + "Timestamp": "2024-05-16T09:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.098300", + "Timestamp": "2024-05-16T09:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.132800", + "Timestamp": "2024-05-16T09:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.093300", + "Timestamp": "2024-05-16T09:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.127800", + "Timestamp": "2024-05-16T09:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.968300", + "Timestamp": "2024-05-16T09:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.002800", + "Timestamp": "2024-05-16T09:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.242100", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.237100", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.112100", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.239300", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.235300", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.179300", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278900", + "Timestamp": "2024-05-16T09:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.275900", + "Timestamp": "2024-05-16T09:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.218900", + "Timestamp": "2024-05-16T09:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.665500", + "Timestamp": "2024-05-16T09:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.660500", + "Timestamp": "2024-05-16T09:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.535500", + "Timestamp": "2024-05-16T09:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.512000", + "Timestamp": "2024-05-16T09:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.672800", + "Timestamp": "2024-05-16T09:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.667800", + "Timestamp": "2024-05-16T09:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.542800", + "Timestamp": "2024-05-16T09:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.595900", + "Timestamp": "2024-05-16T09:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.590900", + "Timestamp": "2024-05-16T09:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.465900", + "Timestamp": "2024-05-16T09:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.715600", + "Timestamp": "2024-05-16T09:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.745000", + "Timestamp": "2024-05-16T09:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.778700", + "Timestamp": "2024-05-16T09:47:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.773700", + "Timestamp": "2024-05-16T09:47:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.648700", + "Timestamp": "2024-05-16T09:47:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.159400", + "Timestamp": "2024-05-16T09:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.413500", + "Timestamp": "2024-05-16T09:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.425900", + "Timestamp": "2024-05-16T09:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.348600", + "Timestamp": "2024-05-16T09:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.343600", + "Timestamp": "2024-05-16T09:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.218600", + "Timestamp": "2024-05-16T09:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.148200", + "Timestamp": "2024-05-16T09:47:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.390400", + "Timestamp": "2024-05-16T09:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.942200", + "Timestamp": "2024-05-16T09:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.842500", + "Timestamp": "2024-05-16T09:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.344800", + "Timestamp": "2024-05-16T09:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.884400", + "Timestamp": "2024-05-16T09:46:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.393800", + "Timestamp": "2024-05-16T09:46:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.136000", + "Timestamp": "2024-05-16T09:46:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.142400", + "Timestamp": "2024-05-16T09:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.195800", + "Timestamp": "2024-05-16T09:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.190800", + "Timestamp": "2024-05-16T09:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.065800", + "Timestamp": "2024-05-16T09:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.143700", + "Timestamp": "2024-05-16T09:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120100", + "Timestamp": "2024-05-16T09:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-16T09:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060100", + "Timestamp": "2024-05-16T09:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.048800", + "Timestamp": "2024-05-16T09:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.005800", + "Timestamp": "2024-05-16T09:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.885000", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.880000", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.755000", + "Timestamp": "2024-05-16T09:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148000", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048000", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.274200", + "Timestamp": "2024-05-16T09:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074700", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.045700", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014700", + "Timestamp": "2024-05-16T09:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.881100", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.019300", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.455700", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.450700", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.325700", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.138600", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.188700", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183700", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058700", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.162600", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.172600", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.157600", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.167600", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.032600", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.042600", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "12.249800", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.281200", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.276200", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.151200", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.784000", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.779000", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.654000", + "Timestamp": "2024-05-16T09:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.596600", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.566600", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.466600", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117500", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113800", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057500", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.312500", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.374900", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.984900", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.048000", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.043000", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.918000", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.605800", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.570500", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.240700", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.235700", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.834600", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.804600", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.704600", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.622000", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.369200", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.967800", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.962800", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.837800", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.056200", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.051200", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.926200", + "Timestamp": "2024-05-16T09:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.633600", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.628600", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.503600", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.428200", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.491400", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.486400", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.361400", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.565500", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.560500", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.435500", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.200500", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.195500", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.070500", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.247800", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.345400", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.340400", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.215400", + "Timestamp": "2024-05-16T09:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.340700", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.335700", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.210700", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.987300", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101300", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097600", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041300", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.894200", + "Timestamp": "2024-05-16T09:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.099700", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.069700", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.969700", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100400", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044400", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063700", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003700", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003700", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.588100", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112300", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108300", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052300", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.463500", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.458500", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.333500", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.775600", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.770600", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.645600", + "Timestamp": "2024-05-16T09:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.259000", + "Timestamp": "2024-05-16T09:46:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067500", + "Timestamp": "2024-05-16T09:46:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038500", + "Timestamp": "2024-05-16T09:46:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007500", + "Timestamp": "2024-05-16T09:46:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "19.750000", + "Timestamp": "2024-05-16T09:34:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142600", + "Timestamp": "2024-05-16T09:32:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138900", + "Timestamp": "2024-05-16T09:32:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082600", + "Timestamp": "2024-05-16T09:32:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.043500", + "Timestamp": "2024-05-16T09:32:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.075500", + "Timestamp": "2024-05-16T09:32:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.545900", + "Timestamp": "2024-05-16T09:32:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.540900", + "Timestamp": "2024-05-16T09:32:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.415900", + "Timestamp": "2024-05-16T09:32:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.891000", + "Timestamp": "2024-05-16T09:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.966700", + "Timestamp": "2024-05-16T09:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.003900", + "Timestamp": "2024-05-16T09:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.841800", + "Timestamp": "2024-05-16T09:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.637100", + "Timestamp": "2024-05-16T09:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.607100", + "Timestamp": "2024-05-16T09:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.507100", + "Timestamp": "2024-05-16T09:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.286200", + "Timestamp": "2024-05-16T09:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.281200", + "Timestamp": "2024-05-16T09:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.156200", + "Timestamp": "2024-05-16T09:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.284800", + "Timestamp": "2024-05-16T09:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.281800", + "Timestamp": "2024-05-16T09:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.224800", + "Timestamp": "2024-05-16T09:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.290100", + "Timestamp": "2024-05-16T09:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139400", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179400", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079400", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075000", + "Timestamp": "2024-05-16T09:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.046000", + "Timestamp": "2024-05-16T09:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015000", + "Timestamp": "2024-05-16T09:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.307700", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.488300", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.430400", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.425400", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.300400", + "Timestamp": "2024-05-16T09:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.115800", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.828800", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.823800", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.698800", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.717000", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.712000", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.587000", + "Timestamp": "2024-05-16T09:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.257900", + "Timestamp": "2024-05-16T09:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.925000", + "Timestamp": "2024-05-16T09:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.920000", + "Timestamp": "2024-05-16T09:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.795000", + "Timestamp": "2024-05-16T09:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.325200", + "Timestamp": "2024-05-16T09:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.839700", + "Timestamp": "2024-05-16T09:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.834700", + "Timestamp": "2024-05-16T09:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.709700", + "Timestamp": "2024-05-16T09:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118100", + "Timestamp": "2024-05-16T09:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114400", + "Timestamp": "2024-05-16T09:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058100", + "Timestamp": "2024-05-16T09:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.376100", + "Timestamp": "2024-05-16T09:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.371100", + "Timestamp": "2024-05-16T09:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.246100", + "Timestamp": "2024-05-16T09:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "10.291400", + "Timestamp": "2024-05-16T09:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "10.261400", + "Timestamp": "2024-05-16T09:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "10.161400", + "Timestamp": "2024-05-16T09:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.637600", + "Timestamp": "2024-05-16T09:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.632600", + "Timestamp": "2024-05-16T09:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.507600", + "Timestamp": "2024-05-16T09:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104700", + "Timestamp": "2024-05-16T09:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100700", + "Timestamp": "2024-05-16T09:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044700", + "Timestamp": "2024-05-16T09:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.523000", + "Timestamp": "2024-05-16T09:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.518000", + "Timestamp": "2024-05-16T09:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.393000", + "Timestamp": "2024-05-16T09:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.534600", + "Timestamp": "2024-05-16T09:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.529600", + "Timestamp": "2024-05-16T09:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.404600", + "Timestamp": "2024-05-16T09:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.158000", + "Timestamp": "2024-05-16T09:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314000", + "Timestamp": "2024-05-16T09:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.309000", + "Timestamp": "2024-05-16T09:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184000", + "Timestamp": "2024-05-16T09:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.822600", + "Timestamp": "2024-05-16T09:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.817600", + "Timestamp": "2024-05-16T09:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.692600", + "Timestamp": "2024-05-16T09:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.761900", + "Timestamp": "2024-05-16T09:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.365200", + "Timestamp": "2024-05-16T09:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.360200", + "Timestamp": "2024-05-16T09:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235200", + "Timestamp": "2024-05-16T09:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.662100", + "Timestamp": "2024-05-16T09:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.657100", + "Timestamp": "2024-05-16T09:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.532100", + "Timestamp": "2024-05-16T09:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.139100", + "Timestamp": "2024-05-16T09:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.134100", + "Timestamp": "2024-05-16T09:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.009100", + "Timestamp": "2024-05-16T09:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.254700", + "Timestamp": "2024-05-16T09:31:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.249700", + "Timestamp": "2024-05-16T09:31:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124700", + "Timestamp": "2024-05-16T09:31:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.549600", + "Timestamp": "2024-05-16T09:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.421100", + "Timestamp": "2024-05-16T09:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133200", + "Timestamp": "2024-05-16T09:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129500", + "Timestamp": "2024-05-16T09:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073200", + "Timestamp": "2024-05-16T09:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.491800", + "Timestamp": "2024-05-16T09:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.486800", + "Timestamp": "2024-05-16T09:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.361800", + "Timestamp": "2024-05-16T09:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.806300", + "Timestamp": "2024-05-16T09:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.567300", + "Timestamp": "2024-05-16T09:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.562300", + "Timestamp": "2024-05-16T09:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.437300", + "Timestamp": "2024-05-16T09:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094900", + "Timestamp": "2024-05-16T09:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091200", + "Timestamp": "2024-05-16T09:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034900", + "Timestamp": "2024-05-16T09:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078700", + "Timestamp": "2024-05-16T09:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118700", + "Timestamp": "2024-05-16T09:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018700", + "Timestamp": "2024-05-16T09:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.102500", + "Timestamp": "2024-05-16T09:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.097500", + "Timestamp": "2024-05-16T09:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.972500", + "Timestamp": "2024-05-16T09:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.533500", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.528500", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.403500", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.962500", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.928400", + "Timestamp": "2024-05-16T09:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.247600", + "Timestamp": "2024-05-16T09:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.411500", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.406500", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.281500", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.995300", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.990300", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.865300", + "Timestamp": "2024-05-16T09:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184300", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.224300", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.124300", + "Timestamp": "2024-05-16T09:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.283600", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.818400", + "Timestamp": "2024-05-16T09:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.171200", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.897800", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.898500", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.892800", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.893500", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.767800", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.768500", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.182800", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.177800", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.052800", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.608800", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.603800", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.478800", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.243300", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.330700", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.129500", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.541700", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.536700", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.411700", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.598900", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.593900", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.468900", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.251600", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.641900", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.636900", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.511900", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.424800", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.419800", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.294800", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.995200", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.654500", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.649500", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.524500", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.019200", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.014200", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.889200", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.293800", + "Timestamp": "2024-05-16T09:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289800", + "Timestamp": "2024-05-16T09:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.233800", + "Timestamp": "2024-05-16T09:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.262900", + "Timestamp": "2024-05-16T09:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.529800", + "Timestamp": "2024-05-16T09:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200900", + "Timestamp": "2024-05-16T09:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.197200", + "Timestamp": "2024-05-16T09:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140900", + "Timestamp": "2024-05-16T09:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.965200", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154600", + "Timestamp": "2024-05-16T09:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150900", + "Timestamp": "2024-05-16T09:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094600", + "Timestamp": "2024-05-16T09:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130400", + "Timestamp": "2024-05-16T09:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126400", + "Timestamp": "2024-05-16T09:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070400", + "Timestamp": "2024-05-16T09:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.375600", + "Timestamp": "2024-05-16T09:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.370600", + "Timestamp": "2024-05-16T09:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.245600", + "Timestamp": "2024-05-16T09:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.247000", + "Timestamp": "2024-05-16T09:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.144200", + "Timestamp": "2024-05-16T09:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.992000", + "Timestamp": "2024-05-16T09:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.080800", + "Timestamp": "2024-05-16T09:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.009800", + "Timestamp": "2024-05-16T09:17:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.004800", + "Timestamp": "2024-05-16T09:17:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.879800", + "Timestamp": "2024-05-16T09:17:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.991100", + "Timestamp": "2024-05-16T09:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.303000", + "Timestamp": "2024-05-16T09:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298000", + "Timestamp": "2024-05-16T09:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.173000", + "Timestamp": "2024-05-16T09:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.852900", + "Timestamp": "2024-05-16T09:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.828900", + "Timestamp": "2024-05-16T09:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.823900", + "Timestamp": "2024-05-16T09:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.698900", + "Timestamp": "2024-05-16T09:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.117600", + "Timestamp": "2024-05-16T09:17:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.457000", + "Timestamp": "2024-05-16T09:17:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.452000", + "Timestamp": "2024-05-16T09:17:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.327000", + "Timestamp": "2024-05-16T09:17:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120900", + "Timestamp": "2024-05-16T09:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160900", + "Timestamp": "2024-05-16T09:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060900", + "Timestamp": "2024-05-16T09:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.563900", + "Timestamp": "2024-05-16T09:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.565000", + "Timestamp": "2024-05-16T09:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095800", + "Timestamp": "2024-05-16T09:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092100", + "Timestamp": "2024-05-16T09:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035800", + "Timestamp": "2024-05-16T09:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076200", + "Timestamp": "2024-05-16T09:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047200", + "Timestamp": "2024-05-16T09:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016200", + "Timestamp": "2024-05-16T09:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.914400", + "Timestamp": "2024-05-16T09:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.244200", + "Timestamp": "2024-05-16T09:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.415400", + "Timestamp": "2024-05-16T09:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.410400", + "Timestamp": "2024-05-16T09:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.285400", + "Timestamp": "2024-05-16T09:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.836500", + "Timestamp": "2024-05-16T09:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.256900", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.541600", + "Timestamp": "2024-05-16T09:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.933700", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.154500", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.124500", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.024500", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.364700", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.359700", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.234700", + "Timestamp": "2024-05-16T09:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.549300", + "Timestamp": "2024-05-16T09:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.826100", + "Timestamp": "2024-05-16T09:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.821100", + "Timestamp": "2024-05-16T09:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.696100", + "Timestamp": "2024-05-16T09:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.484300", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.454300", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.354300", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "10.303700", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "10.298700", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "10.173700", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.010200", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.461200", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.494300", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.519600", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.706800", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.676800", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.576800", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.378800", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.836100", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.831100", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.706100", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.773600", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "14.677100", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.029000", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.024000", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.899000", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.137000", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.878300", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.873300", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.748300", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.498000", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.992100", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.782000", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.752000", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.652000", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.189100", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.159100", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.059100", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.442900", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.437900", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.312900", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093000", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089300", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033000", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.071300", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.959000", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.968500", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.954000", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.963500", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.829000", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.838500", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.206400", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.246400", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146400", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.389100", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.384100", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.259100", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.124800", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.344400", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.314400", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.214400", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046600", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.906800", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.901800", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.776800", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102400", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098400", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042400", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.244100", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.461900", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.456900", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.331900", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.604700", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.599700", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.474700", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.430600", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.425600", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.300600", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.350300", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.345300", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.220300", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.123300", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.989300", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.959300", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.859300", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.414300", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.409300", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.284300", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.639200", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.634200", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.509200", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.090300", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.314500", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.309500", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.184500", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.633100", + "Timestamp": "2024-05-16T09:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.228000", + "Timestamp": "2024-05-16T09:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.223000", + "Timestamp": "2024-05-16T09:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.098000", + "Timestamp": "2024-05-16T09:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.488600", + "Timestamp": "2024-05-16T09:16:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.483600", + "Timestamp": "2024-05-16T09:16:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.358600", + "Timestamp": "2024-05-16T09:16:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.324300", + "Timestamp": "2024-05-16T09:16:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.319300", + "Timestamp": "2024-05-16T09:16:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.194300", + "Timestamp": "2024-05-16T09:16:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.873200", + "Timestamp": "2024-05-16T09:16:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135400", + "Timestamp": "2024-05-16T09:16:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136600", + "Timestamp": "2024-05-16T09:16:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131700", + "Timestamp": "2024-05-16T09:16:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132900", + "Timestamp": "2024-05-16T09:16:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075400", + "Timestamp": "2024-05-16T09:16:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076600", + "Timestamp": "2024-05-16T09:16:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129000", + "Timestamp": "2024-05-16T09:16:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125300", + "Timestamp": "2024-05-16T09:16:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069000", + "Timestamp": "2024-05-16T09:16:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.043100", + "Timestamp": "2024-05-16T09:16:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.038100", + "Timestamp": "2024-05-16T09:16:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.913100", + "Timestamp": "2024-05-16T09:16:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.542500", + "Timestamp": "2024-05-16T09:16:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.537500", + "Timestamp": "2024-05-16T09:16:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.412500", + "Timestamp": "2024-05-16T09:16:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.289000", + "Timestamp": "2024-05-16T09:16:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.259000", + "Timestamp": "2024-05-16T09:16:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159000", + "Timestamp": "2024-05-16T09:16:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.056600", + "Timestamp": "2024-05-16T09:02:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073400", + "Timestamp": "2024-05-16T09:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069700", + "Timestamp": "2024-05-16T09:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013400", + "Timestamp": "2024-05-16T09:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.567000", + "Timestamp": "2024-05-16T09:02:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.537000", + "Timestamp": "2024-05-16T09:02:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.437000", + "Timestamp": "2024-05-16T09:02:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.199100", + "Timestamp": "2024-05-16T09:02:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196100", + "Timestamp": "2024-05-16T09:02:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.139100", + "Timestamp": "2024-05-16T09:02:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.202200", + "Timestamp": "2024-05-16T09:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.244500", + "Timestamp": "2024-05-16T09:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.070100", + "Timestamp": "2024-05-16T09:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.533700", + "Timestamp": "2024-05-16T09:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.528700", + "Timestamp": "2024-05-16T09:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.403700", + "Timestamp": "2024-05-16T09:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.836500", + "Timestamp": "2024-05-16T09:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.831500", + "Timestamp": "2024-05-16T09:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.706500", + "Timestamp": "2024-05-16T09:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270800", + "Timestamp": "2024-05-16T09:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265800", + "Timestamp": "2024-05-16T09:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140800", + "Timestamp": "2024-05-16T09:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149000", + "Timestamp": "2024-05-16T09:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145300", + "Timestamp": "2024-05-16T09:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089000", + "Timestamp": "2024-05-16T09:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.179600", + "Timestamp": "2024-05-16T09:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.174600", + "Timestamp": "2024-05-16T09:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.049600", + "Timestamp": "2024-05-16T09:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.008500", + "Timestamp": "2024-05-16T09:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.003500", + "Timestamp": "2024-05-16T09:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.878500", + "Timestamp": "2024-05-16T09:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.158400", + "Timestamp": "2024-05-16T09:02:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.997300", + "Timestamp": "2024-05-16T09:02:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.037100", + "Timestamp": "2024-05-16T09:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.032100", + "Timestamp": "2024-05-16T09:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.907100", + "Timestamp": "2024-05-16T09:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075900", + "Timestamp": "2024-05-16T09:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.072200", + "Timestamp": "2024-05-16T09:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015900", + "Timestamp": "2024-05-16T09:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.343500", + "Timestamp": "2024-05-16T09:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101900", + "Timestamp": "2024-05-16T09:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098200", + "Timestamp": "2024-05-16T09:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041900", + "Timestamp": "2024-05-16T09:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.247400", + "Timestamp": "2024-05-16T09:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.210400", + "Timestamp": "2024-05-16T09:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.207400", + "Timestamp": "2024-05-16T09:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.150400", + "Timestamp": "2024-05-16T09:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.461000", + "Timestamp": "2024-05-16T09:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.431000", + "Timestamp": "2024-05-16T09:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.331000", + "Timestamp": "2024-05-16T09:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.234300", + "Timestamp": "2024-05-16T09:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.362500", + "Timestamp": "2024-05-16T09:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.357500", + "Timestamp": "2024-05-16T09:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.232500", + "Timestamp": "2024-05-16T09:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.481400", + "Timestamp": "2024-05-16T09:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.476400", + "Timestamp": "2024-05-16T09:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.351400", + "Timestamp": "2024-05-16T09:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.410800", + "Timestamp": "2024-05-16T09:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.405800", + "Timestamp": "2024-05-16T09:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.280800", + "Timestamp": "2024-05-16T09:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098600", + "Timestamp": "2024-05-16T09:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094900", + "Timestamp": "2024-05-16T09:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038600", + "Timestamp": "2024-05-16T09:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.175000", + "Timestamp": "2024-05-16T09:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.171000", + "Timestamp": "2024-05-16T09:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115000", + "Timestamp": "2024-05-16T09:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.484500", + "Timestamp": "2024-05-16T09:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.501400", + "Timestamp": "2024-05-16T09:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.506900", + "Timestamp": "2024-05-16T09:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.429100", + "Timestamp": "2024-05-16T09:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.179800", + "Timestamp": "2024-05-16T09:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.655900", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.650900", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.525900", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.748100", + "Timestamp": "2024-05-16T09:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.743100", + "Timestamp": "2024-05-16T09:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.618100", + "Timestamp": "2024-05-16T09:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.293800", + "Timestamp": "2024-05-16T09:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.288800", + "Timestamp": "2024-05-16T09:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.163800", + "Timestamp": "2024-05-16T09:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.568700", + "Timestamp": "2024-05-16T09:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.563700", + "Timestamp": "2024-05-16T09:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.438700", + "Timestamp": "2024-05-16T09:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.671200", + "Timestamp": "2024-05-16T09:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.666200", + "Timestamp": "2024-05-16T09:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.541200", + "Timestamp": "2024-05-16T09:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.761300", + "Timestamp": "2024-05-16T09:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.756300", + "Timestamp": "2024-05-16T09:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.631300", + "Timestamp": "2024-05-16T09:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.955000", + "Timestamp": "2024-05-16T09:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.734900", + "Timestamp": "2024-05-16T09:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "10.425300", + "Timestamp": "2024-05-16T09:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "10.395300", + "Timestamp": "2024-05-16T09:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "10.295300", + "Timestamp": "2024-05-16T09:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.312600", + "Timestamp": "2024-05-16T09:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095400", + "Timestamp": "2024-05-16T09:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091700", + "Timestamp": "2024-05-16T09:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035400", + "Timestamp": "2024-05-16T09:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.421400", + "Timestamp": "2024-05-16T09:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110900", + "Timestamp": "2024-05-16T09:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-16T09:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050900", + "Timestamp": "2024-05-16T09:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.099400", + "Timestamp": "2024-05-16T09:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.691900", + "Timestamp": "2024-05-16T09:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.769800", + "Timestamp": "2024-05-16T09:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.953600", + "Timestamp": "2024-05-16T09:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.948600", + "Timestamp": "2024-05-16T09:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.823600", + "Timestamp": "2024-05-16T09:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.884400", + "Timestamp": "2024-05-16T09:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.644600", + "Timestamp": "2024-05-16T09:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.639600", + "Timestamp": "2024-05-16T09:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.514600", + "Timestamp": "2024-05-16T09:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.545000", + "Timestamp": "2024-05-16T09:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.076500", + "Timestamp": "2024-05-16T09:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.071500", + "Timestamp": "2024-05-16T09:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.946500", + "Timestamp": "2024-05-16T09:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.952300", + "Timestamp": "2024-05-16T09:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.044200", + "Timestamp": "2024-05-16T09:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.564700", + "Timestamp": "2024-05-16T09:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.534700", + "Timestamp": "2024-05-16T09:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.434700", + "Timestamp": "2024-05-16T09:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122900", + "Timestamp": "2024-05-16T09:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162900", + "Timestamp": "2024-05-16T09:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062900", + "Timestamp": "2024-05-16T09:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.585600", + "Timestamp": "2024-05-16T09:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.580600", + "Timestamp": "2024-05-16T09:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.455600", + "Timestamp": "2024-05-16T09:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.218700", + "Timestamp": "2024-05-16T09:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.213700", + "Timestamp": "2024-05-16T09:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.088700", + "Timestamp": "2024-05-16T09:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.037100", + "Timestamp": "2024-05-16T09:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.977500", + "Timestamp": "2024-05-16T09:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.032100", + "Timestamp": "2024-05-16T09:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.972500", + "Timestamp": "2024-05-16T09:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.907100", + "Timestamp": "2024-05-16T09:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.847500", + "Timestamp": "2024-05-16T09:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.812300", + "Timestamp": "2024-05-16T09:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.807300", + "Timestamp": "2024-05-16T09:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.682300", + "Timestamp": "2024-05-16T09:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.429300", + "Timestamp": "2024-05-16T09:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.424300", + "Timestamp": "2024-05-16T09:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.299300", + "Timestamp": "2024-05-16T09:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.429500", + "Timestamp": "2024-05-16T09:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.424500", + "Timestamp": "2024-05-16T09:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.299500", + "Timestamp": "2024-05-16T09:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.164200", + "Timestamp": "2024-05-16T09:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.986600", + "Timestamp": "2024-05-16T09:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.639600", + "Timestamp": "2024-05-16T09:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.634600", + "Timestamp": "2024-05-16T09:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.509600", + "Timestamp": "2024-05-16T09:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.780200", + "Timestamp": "2024-05-16T09:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.775200", + "Timestamp": "2024-05-16T09:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.650200", + "Timestamp": "2024-05-16T09:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.215400", + "Timestamp": "2024-05-16T09:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.210400", + "Timestamp": "2024-05-16T09:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.085400", + "Timestamp": "2024-05-16T09:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.006100", + "Timestamp": "2024-05-16T09:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.615900", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.610900", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.485900", + "Timestamp": "2024-05-16T09:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.642800", + "Timestamp": "2024-05-16T09:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.055100", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.198900", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.194900", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.138900", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.758600", + "Timestamp": "2024-05-16T09:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.977500", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.030000", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.972500", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.025000", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.847500", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.900000", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.353200", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.348200", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.223200", + "Timestamp": "2024-05-16T09:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.096900", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.366700", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.336700", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.236700", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115200", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155200", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055200", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.583600", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.578600", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.453600", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.509000", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.504000", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.379000", + "Timestamp": "2024-05-16T09:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108900", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048900", + "Timestamp": "2024-05-16T09:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.275500", + "Timestamp": "2024-05-16T08:47:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.090000", + "Timestamp": "2024-05-16T08:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.085000", + "Timestamp": "2024-05-16T08:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.960000", + "Timestamp": "2024-05-16T08:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.136900", + "Timestamp": "2024-05-16T08:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.858700", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.853700", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.728700", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.423000", + "Timestamp": "2024-05-16T08:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.418000", + "Timestamp": "2024-05-16T08:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.293000", + "Timestamp": "2024-05-16T08:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.514100", + "Timestamp": "2024-05-16T08:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.984400", + "Timestamp": "2024-05-16T08:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.979400", + "Timestamp": "2024-05-16T08:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.854400", + "Timestamp": "2024-05-16T08:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.985800", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.216900", + "Timestamp": "2024-05-16T08:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.327400", + "Timestamp": "2024-05-16T08:47:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.731800", + "Timestamp": "2024-05-16T08:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.107500", + "Timestamp": "2024-05-16T08:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T08:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099100", + "Timestamp": "2024-05-16T08:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042800", + "Timestamp": "2024-05-16T08:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.568100", + "Timestamp": "2024-05-16T08:47:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.996400", + "Timestamp": "2024-05-16T08:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.837000", + "Timestamp": "2024-05-16T08:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160600", + "Timestamp": "2024-05-16T08:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156900", + "Timestamp": "2024-05-16T08:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100600", + "Timestamp": "2024-05-16T08:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.926300", + "Timestamp": "2024-05-16T08:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.921300", + "Timestamp": "2024-05-16T08:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.796300", + "Timestamp": "2024-05-16T08:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.055700", + "Timestamp": "2024-05-16T08:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.050700", + "Timestamp": "2024-05-16T08:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.925700", + "Timestamp": "2024-05-16T08:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093100", + "Timestamp": "2024-05-16T08:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089400", + "Timestamp": "2024-05-16T08:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033100", + "Timestamp": "2024-05-16T08:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.157500", + "Timestamp": "2024-05-16T08:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153700", + "Timestamp": "2024-05-16T08:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193700", + "Timestamp": "2024-05-16T08:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093700", + "Timestamp": "2024-05-16T08:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.880700", + "Timestamp": "2024-05-16T08:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.850700", + "Timestamp": "2024-05-16T08:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.750700", + "Timestamp": "2024-05-16T08:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.345800", + "Timestamp": "2024-05-16T08:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.340800", + "Timestamp": "2024-05-16T08:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.215800", + "Timestamp": "2024-05-16T08:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.804900", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.799900", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.674900", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.856200", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.826200", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.726200", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.504300", + "Timestamp": "2024-05-16T08:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.499300", + "Timestamp": "2024-05-16T08:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.374300", + "Timestamp": "2024-05-16T08:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.151700", + "Timestamp": "2024-05-16T08:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.121700", + "Timestamp": "2024-05-16T08:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.021700", + "Timestamp": "2024-05-16T08:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.962500", + "Timestamp": "2024-05-16T08:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.286000", + "Timestamp": "2024-05-16T08:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.256000", + "Timestamp": "2024-05-16T08:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.156000", + "Timestamp": "2024-05-16T08:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.339200", + "Timestamp": "2024-05-16T08:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.963200", + "Timestamp": "2024-05-16T08:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.933200", + "Timestamp": "2024-05-16T08:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.833200", + "Timestamp": "2024-05-16T08:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.382200", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.377200", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.252200", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.791500", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.616000", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.611000", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.486000", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.289400", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.080200", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.297000", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.075200", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.292000", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.950200", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.167000", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.763100", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.758100", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.633100", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.136900", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.576500", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.571500", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.446500", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.494000", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.238300", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "f1.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.208300", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "f1.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.108300", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.524200", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.972900", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.967900", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.842900", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.570200", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.565200", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.440200", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.009300", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.017500", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.963600", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.006100", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099100", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042800", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.328200", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323200", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.198200", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.534900", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.979700", + "Timestamp": "2024-05-16T08:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.467400", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.462400", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.337400", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.343200", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.338200", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.213200", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.715600", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.710600", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.585600", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.693600", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.688600", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.563600", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.252800", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.247800", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.122800", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089600", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089500", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085900", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085800", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029600", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029500", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.085500", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.052800", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.080500", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.047800", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.955500", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.922800", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.095500", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.090500", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.965500", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.982000", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.974700", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.013900", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.140000", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.901300", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.896300", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.771300", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.316800", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.311800", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.186800", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.530200", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.525200", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.400200", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.036400", + "Timestamp": "2024-05-16T08:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143500", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043500", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078900", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075200", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018900", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122600", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121600", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118600", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117600", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062600", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061600", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.259200", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.716100", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.711100", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.586100", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168400", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164400", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T08:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155300", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.195300", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095300", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.300100", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.327200", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.322200", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.197200", + "Timestamp": "2024-05-16T08:46:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117000", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123300", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113300", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119600", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057000", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063300", + "Timestamp": "2024-05-16T08:46:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.489600", + "Timestamp": "2024-05-16T08:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.299600", + "Timestamp": "2024-05-16T08:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.294600", + "Timestamp": "2024-05-16T08:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.169600", + "Timestamp": "2024-05-16T08:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.647700", + "Timestamp": "2024-05-16T08:46:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.642700", + "Timestamp": "2024-05-16T08:46:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.517700", + "Timestamp": "2024-05-16T08:46:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171300", + "Timestamp": "2024-05-16T08:46:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167300", + "Timestamp": "2024-05-16T08:46:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111300", + "Timestamp": "2024-05-16T08:46:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.608600", + "Timestamp": "2024-05-16T08:32:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.746800", + "Timestamp": "2024-05-16T08:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.741800", + "Timestamp": "2024-05-16T08:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.616800", + "Timestamp": "2024-05-16T08:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.254700", + "Timestamp": "2024-05-16T08:32:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.643700", + "Timestamp": "2024-05-16T08:32:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.638700", + "Timestamp": "2024-05-16T08:32:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.513700", + "Timestamp": "2024-05-16T08:32:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.508200", + "Timestamp": "2024-05-16T08:32:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.503200", + "Timestamp": "2024-05-16T08:32:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.378200", + "Timestamp": "2024-05-16T08:32:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.994900", + "Timestamp": "2024-05-16T08:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.961300", + "Timestamp": "2024-05-16T08:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.460500", + "Timestamp": "2024-05-16T08:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.034600", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.031700", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.210600", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.147700", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.372600", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.142700", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.367600", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.017700", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.242600", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.849600", + "Timestamp": "2024-05-16T08:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.844600", + "Timestamp": "2024-05-16T08:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.719600", + "Timestamp": "2024-05-16T08:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145100", + "Timestamp": "2024-05-16T08:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141400", + "Timestamp": "2024-05-16T08:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085100", + "Timestamp": "2024-05-16T08:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.128200", + "Timestamp": "2024-05-16T08:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.274900", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.466700", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.461700", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.336700", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.651000", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.621000", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.521000", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.763700", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.758700", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.633700", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.522800", + "Timestamp": "2024-05-16T08:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.955900", + "Timestamp": "2024-05-16T08:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.465300", + "Timestamp": "2024-05-16T08:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.435300", + "Timestamp": "2024-05-16T08:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.335300", + "Timestamp": "2024-05-16T08:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112700", + "Timestamp": "2024-05-16T08:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T08:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052700", + "Timestamp": "2024-05-16T08:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.502400", + "Timestamp": "2024-05-16T08:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.998300", + "Timestamp": "2024-05-16T08:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.083600", + "Timestamp": "2024-05-16T08:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.778500", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.748500", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.648500", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.530900", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.525900", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.400900", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141300", + "Timestamp": "2024-05-16T08:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137600", + "Timestamp": "2024-05-16T08:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081300", + "Timestamp": "2024-05-16T08:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.154400", + "Timestamp": "2024-05-16T08:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.149400", + "Timestamp": "2024-05-16T08:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.024400", + "Timestamp": "2024-05-16T08:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.829200", + "Timestamp": "2024-05-16T08:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142500", + "Timestamp": "2024-05-16T08:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138800", + "Timestamp": "2024-05-16T08:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082500", + "Timestamp": "2024-05-16T08:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271600", + "Timestamp": "2024-05-16T08:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266600", + "Timestamp": "2024-05-16T08:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141600", + "Timestamp": "2024-05-16T08:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.141200", + "Timestamp": "2024-05-16T08:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103600", + "Timestamp": "2024-05-16T08:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099900", + "Timestamp": "2024-05-16T08:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043600", + "Timestamp": "2024-05-16T08:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.106700", + "Timestamp": "2024-05-16T08:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.423300", + "Timestamp": "2024-05-16T08:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.099200", + "Timestamp": "2024-05-16T08:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.894800", + "Timestamp": "2024-05-16T08:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.889800", + "Timestamp": "2024-05-16T08:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.764800", + "Timestamp": "2024-05-16T08:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.538700", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.386100", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.581800", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.381100", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.576800", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.256100", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.451800", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.423900", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.418900", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.293900", + "Timestamp": "2024-05-16T08:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.657500", + "Timestamp": "2024-05-16T08:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.652500", + "Timestamp": "2024-05-16T08:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.527500", + "Timestamp": "2024-05-16T08:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.697700", + "Timestamp": "2024-05-16T08:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.777800", + "Timestamp": "2024-05-16T08:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.772800", + "Timestamp": "2024-05-16T08:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.647800", + "Timestamp": "2024-05-16T08:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.151800", + "Timestamp": "2024-05-16T08:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124400", + "Timestamp": "2024-05-16T08:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.150300", + "Timestamp": "2024-05-16T08:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.196200", + "Timestamp": "2024-05-16T08:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.509800", + "Timestamp": "2024-05-16T08:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.504800", + "Timestamp": "2024-05-16T08:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.379800", + "Timestamp": "2024-05-16T08:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.787800", + "Timestamp": "2024-05-16T08:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.402100", + "Timestamp": "2024-05-16T08:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.397100", + "Timestamp": "2024-05-16T08:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.272100", + "Timestamp": "2024-05-16T08:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.883800", + "Timestamp": "2024-05-16T08:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.878800", + "Timestamp": "2024-05-16T08:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.753800", + "Timestamp": "2024-05-16T08:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.197700", + "Timestamp": "2024-05-16T08:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.071300", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.724200", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.719200", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.594200", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.404700", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.374700", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.274700", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.677300", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.920600", + "Timestamp": "2024-05-16T08:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.915600", + "Timestamp": "2024-05-16T08:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.790600", + "Timestamp": "2024-05-16T08:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.481900", + "Timestamp": "2024-05-16T08:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.476900", + "Timestamp": "2024-05-16T08:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.351900", + "Timestamp": "2024-05-16T08:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.862700", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.256600", + "Timestamp": "2024-05-16T08:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "9.271200", + "Timestamp": "2024-05-16T08:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "9.266200", + "Timestamp": "2024-05-16T08:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "9.141200", + "Timestamp": "2024-05-16T08:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.301700", + "Timestamp": "2024-05-16T08:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.360800", + "Timestamp": "2024-05-16T08:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.355800", + "Timestamp": "2024-05-16T08:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.230800", + "Timestamp": "2024-05-16T08:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.243500", + "Timestamp": "2024-05-16T08:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.160700", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.468700", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.463700", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.338700", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.627800", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.422300", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.416600", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.386600", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.286600", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.458600", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.428600", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.328600", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.963300", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.958300", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.833300", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324500", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319500", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194500", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.717300", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.712300", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.587300", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.562500", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.027600", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.022600", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.897600", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.924800", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.894800", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.794800", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.392600", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.387600", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.262600", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.369600", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.339600", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.239600", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094800", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038800", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.767500", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.762500", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.637500", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.204600", + "Timestamp": "2024-05-16T08:17:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.201600", + "Timestamp": "2024-05-16T08:17:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144600", + "Timestamp": "2024-05-16T08:17:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.946900", + "Timestamp": "2024-05-16T08:17:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.754300", + "Timestamp": "2024-05-16T08:17:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.749300", + "Timestamp": "2024-05-16T08:17:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.624300", + "Timestamp": "2024-05-16T08:17:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.186700", + "Timestamp": "2024-05-16T08:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.186700", + "Timestamp": "2024-05-16T08:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.181700", + "Timestamp": "2024-05-16T08:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.056700", + "Timestamp": "2024-05-16T08:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.454700", + "Timestamp": "2024-05-16T08:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.449700", + "Timestamp": "2024-05-16T08:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.324700", + "Timestamp": "2024-05-16T08:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.304200", + "Timestamp": "2024-05-16T08:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.024400", + "Timestamp": "2024-05-16T08:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.019400", + "Timestamp": "2024-05-16T08:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.894400", + "Timestamp": "2024-05-16T08:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.246800", + "Timestamp": "2024-05-16T08:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.401800", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.403800", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.398800", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.273800", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.043700", + "Timestamp": "2024-05-16T08:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.303400", + "Timestamp": "2024-05-16T08:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298400", + "Timestamp": "2024-05-16T08:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.173400", + "Timestamp": "2024-05-16T08:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.152000", + "Timestamp": "2024-05-16T08:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.147000", + "Timestamp": "2024-05-16T08:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.022000", + "Timestamp": "2024-05-16T08:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.089100", + "Timestamp": "2024-05-16T08:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.503700", + "Timestamp": "2024-05-16T08:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.498700", + "Timestamp": "2024-05-16T08:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.373700", + "Timestamp": "2024-05-16T08:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.086300", + "Timestamp": "2024-05-16T08:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.494700", + "Timestamp": "2024-05-16T08:17:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.084400", + "Timestamp": "2024-05-16T08:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.079400", + "Timestamp": "2024-05-16T08:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.954400", + "Timestamp": "2024-05-16T08:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.055600", + "Timestamp": "2024-05-16T08:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.805500", + "Timestamp": "2024-05-16T08:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.800500", + "Timestamp": "2024-05-16T08:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.675500", + "Timestamp": "2024-05-16T08:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.421700", + "Timestamp": "2024-05-16T08:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148100", + "Timestamp": "2024-05-16T08:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.188100", + "Timestamp": "2024-05-16T08:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-16T08:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.125000", + "Timestamp": "2024-05-16T08:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.186800", + "Timestamp": "2024-05-16T08:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.181800", + "Timestamp": "2024-05-16T08:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.056800", + "Timestamp": "2024-05-16T08:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.453200", + "Timestamp": "2024-05-16T08:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.448200", + "Timestamp": "2024-05-16T08:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.323200", + "Timestamp": "2024-05-16T08:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.759000", + "Timestamp": "2024-05-16T08:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.122000", + "Timestamp": "2024-05-16T08:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.463700", + "Timestamp": "2024-05-16T08:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.458700", + "Timestamp": "2024-05-16T08:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.333700", + "Timestamp": "2024-05-16T08:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.034500", + "Timestamp": "2024-05-16T08:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.190700", + "Timestamp": "2024-05-16T08:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.160700", + "Timestamp": "2024-05-16T08:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.060700", + "Timestamp": "2024-05-16T08:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124600", + "Timestamp": "2024-05-16T08:17:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.056900", + "Timestamp": "2024-05-16T08:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.837000", + "Timestamp": "2024-05-16T08:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.832000", + "Timestamp": "2024-05-16T08:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.707000", + "Timestamp": "2024-05-16T08:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.043000", + "Timestamp": "2024-05-16T08:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.038000", + "Timestamp": "2024-05-16T08:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.913000", + "Timestamp": "2024-05-16T08:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.189900", + "Timestamp": "2024-05-16T08:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.714600", + "Timestamp": "2024-05-16T08:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.568900", + "Timestamp": "2024-05-16T08:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.563900", + "Timestamp": "2024-05-16T08:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.438900", + "Timestamp": "2024-05-16T08:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.896600", + "Timestamp": "2024-05-16T08:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.337100", + "Timestamp": "2024-05-16T08:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094400", + "Timestamp": "2024-05-16T08:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090700", + "Timestamp": "2024-05-16T08:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034400", + "Timestamp": "2024-05-16T08:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "13.648400", + "Timestamp": "2024-05-16T08:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.033000", + "Timestamp": "2024-05-16T08:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.925300", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.920300", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.795300", + "Timestamp": "2024-05-16T08:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.275200", + "Timestamp": "2024-05-16T08:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.891000", + "Timestamp": "2024-05-16T08:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.886000", + "Timestamp": "2024-05-16T08:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.761000", + "Timestamp": "2024-05-16T08:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.939400", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.934400", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.809400", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.186200", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.182200", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126200", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.496700", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.491700", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.366700", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.374300", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.344300", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "p3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.244300", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.329400", + "Timestamp": "2024-05-16T08:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.965500", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128000", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110400", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106700", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050400", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.611600", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.260700", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.255700", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.130700", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.493900", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.352500", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.347500", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.222500", + "Timestamp": "2024-05-16T08:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.971400", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.344100", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.339100", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.214100", + "Timestamp": "2024-05-16T08:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063800", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003800", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003800", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108500", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048500", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.865200", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.835200", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.735200", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.345500", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.340500", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.215500", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.098000", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.116800", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123200", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163200", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063200", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.193700", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.188700", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.063700", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.957700", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.952700", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.827700", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.121300", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.578500", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.133900", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.753500", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.748500", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.623500", + "Timestamp": "2024-05-16T08:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.488300", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.483300", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.358300", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.928000", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.127900", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.709500", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.704500", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.579500", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.904700", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.977400", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.947400", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.847400", + "Timestamp": "2024-05-16T08:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.429400", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.424400", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.299400", + "Timestamp": "2024-05-16T08:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081200", + "Timestamp": "2024-05-16T08:16:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077500", + "Timestamp": "2024-05-16T08:16:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021200", + "Timestamp": "2024-05-16T08:16:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.570300", + "Timestamp": "2024-05-16T08:02:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.565300", + "Timestamp": "2024-05-16T08:02:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.440300", + "Timestamp": "2024-05-16T08:02:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.241800", + "Timestamp": "2024-05-16T08:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.502000", + "Timestamp": "2024-05-16T08:02:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.195800", + "Timestamp": "2024-05-16T08:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.192100", + "Timestamp": "2024-05-16T08:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.135800", + "Timestamp": "2024-05-16T08:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.874300", + "Timestamp": "2024-05-16T08:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.844300", + "Timestamp": "2024-05-16T08:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.744300", + "Timestamp": "2024-05-16T08:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.449800", + "Timestamp": "2024-05-16T08:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.579200", + "Timestamp": "2024-05-16T08:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.876500", + "Timestamp": "2024-05-16T08:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.871500", + "Timestamp": "2024-05-16T08:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.746500", + "Timestamp": "2024-05-16T08:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.583400", + "Timestamp": "2024-05-16T08:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.553400", + "Timestamp": "2024-05-16T08:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.453400", + "Timestamp": "2024-05-16T08:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.115400", + "Timestamp": "2024-05-16T08:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.249700", + "Timestamp": "2024-05-16T08:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068700", + "Timestamp": "2024-05-16T08:02:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038700", + "Timestamp": "2024-05-16T08:02:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008700", + "Timestamp": "2024-05-16T08:02:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.202300", + "Timestamp": "2024-05-16T08:02:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198600", + "Timestamp": "2024-05-16T08:02:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142300", + "Timestamp": "2024-05-16T08:02:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.033700", + "Timestamp": "2024-05-16T08:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163300", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159600", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.418800", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.413800", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.288800", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.421400", + "Timestamp": "2024-05-16T08:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.416400", + "Timestamp": "2024-05-16T08:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.291400", + "Timestamp": "2024-05-16T08:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.397200", + "Timestamp": "2024-05-16T08:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.392200", + "Timestamp": "2024-05-16T08:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.267200", + "Timestamp": "2024-05-16T08:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.279700", + "Timestamp": "2024-05-16T08:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.020400", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.410400", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.405400", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.280400", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.742900", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.737900", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.612900", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.516000", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.784100", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.779100", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.654100", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137300", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133600", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077300", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.358700", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.353700", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.228700", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.970500", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131100", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127100", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071100", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.144400", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.139400", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.014400", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.225000", + "Timestamp": "2024-05-16T08:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.220000", + "Timestamp": "2024-05-16T08:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.095000", + "Timestamp": "2024-05-16T08:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.190100", + "Timestamp": "2024-05-16T08:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185100", + "Timestamp": "2024-05-16T08:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060100", + "Timestamp": "2024-05-16T08:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.995600", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.167500", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.162500", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.037500", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.102400", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.097400", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.972400", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.733000", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.728000", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.603000", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.723200", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.548700", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.543700", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.418700", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120300", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060300", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.361000", + "Timestamp": "2024-05-16T08:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.331000", + "Timestamp": "2024-05-16T08:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.231000", + "Timestamp": "2024-05-16T08:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.302400", + "Timestamp": "2024-05-16T08:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160600", + "Timestamp": "2024-05-16T08:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156600", + "Timestamp": "2024-05-16T08:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100600", + "Timestamp": "2024-05-16T08:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.821700", + "Timestamp": "2024-05-16T08:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.816700", + "Timestamp": "2024-05-16T08:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.691700", + "Timestamp": "2024-05-16T08:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.267400", + "Timestamp": "2024-05-16T08:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262400", + "Timestamp": "2024-05-16T08:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137400", + "Timestamp": "2024-05-16T08:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.569200", + "Timestamp": "2024-05-16T08:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270400", + "Timestamp": "2024-05-16T08:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265400", + "Timestamp": "2024-05-16T08:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140400", + "Timestamp": "2024-05-16T08:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.283900", + "Timestamp": "2024-05-16T08:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.278900", + "Timestamp": "2024-05-16T08:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.153900", + "Timestamp": "2024-05-16T08:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.185400", + "Timestamp": "2024-05-16T08:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.702500", + "Timestamp": "2024-05-16T08:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.672500", + "Timestamp": "2024-05-16T08:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.572500", + "Timestamp": "2024-05-16T08:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.943000", + "Timestamp": "2024-05-16T08:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "p3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.245900", + "Timestamp": "2024-05-16T08:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.933900", + "Timestamp": "2024-05-16T08:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.928900", + "Timestamp": "2024-05-16T08:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.803900", + "Timestamp": "2024-05-16T08:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.828500", + "Timestamp": "2024-05-16T08:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.498100", + "Timestamp": "2024-05-16T08:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.448800", + "Timestamp": "2024-05-16T08:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.443800", + "Timestamp": "2024-05-16T08:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.318800", + "Timestamp": "2024-05-16T08:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174200", + "Timestamp": "2024-05-16T08:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170200", + "Timestamp": "2024-05-16T08:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114200", + "Timestamp": "2024-05-16T08:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118900", + "Timestamp": "2024-05-16T08:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115200", + "Timestamp": "2024-05-16T08:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058900", + "Timestamp": "2024-05-16T08:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.918000", + "Timestamp": "2024-05-16T08:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.471800", + "Timestamp": "2024-05-16T08:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.439100", + "Timestamp": "2024-05-16T08:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.468100", + "Timestamp": "2024-05-16T08:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.435400", + "Timestamp": "2024-05-16T08:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.411800", + "Timestamp": "2024-05-16T08:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.379100", + "Timestamp": "2024-05-16T08:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145200", + "Timestamp": "2024-05-16T08:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170300", + "Timestamp": "2024-05-16T08:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141200", + "Timestamp": "2024-05-16T08:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166300", + "Timestamp": "2024-05-16T08:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085200", + "Timestamp": "2024-05-16T08:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T08:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.248600", + "Timestamp": "2024-05-16T08:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.243600", + "Timestamp": "2024-05-16T08:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.118600", + "Timestamp": "2024-05-16T08:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.149100", + "Timestamp": "2024-05-16T08:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.144100", + "Timestamp": "2024-05-16T08:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.019100", + "Timestamp": "2024-05-16T08:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.347000", + "Timestamp": "2024-05-16T08:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.342000", + "Timestamp": "2024-05-16T08:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.217000", + "Timestamp": "2024-05-16T08:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.502600", + "Timestamp": "2024-05-16T08:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.328300", + "Timestamp": "2024-05-16T08:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323300", + "Timestamp": "2024-05-16T08:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.198300", + "Timestamp": "2024-05-16T08:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.039800", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.285700", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092800", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089100", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032800", + "Timestamp": "2024-05-16T08:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.629700", + "Timestamp": "2024-05-16T08:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.109500", + "Timestamp": "2024-05-16T08:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.879400", + "Timestamp": "2024-05-16T08:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.108900", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.078900", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.978900", + "Timestamp": "2024-05-16T08:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.303900", + "Timestamp": "2024-05-16T08:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298900", + "Timestamp": "2024-05-16T08:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.173900", + "Timestamp": "2024-05-16T08:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.376600", + "Timestamp": "2024-05-16T08:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.371600", + "Timestamp": "2024-05-16T08:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.246600", + "Timestamp": "2024-05-16T08:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171000", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166000", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041000", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.317300", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.715100", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.710100", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.585100", + "Timestamp": "2024-05-16T08:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.857000", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.852000", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.727000", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.182200", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.222200", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122200", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.264500", + "Timestamp": "2024-05-16T08:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.667700", + "Timestamp": "2024-05-16T08:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.932600", + "Timestamp": "2024-05-16T08:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.927600", + "Timestamp": "2024-05-16T08:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.802600", + "Timestamp": "2024-05-16T08:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.778100", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.748100", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.648100", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.529900", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.524900", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.399900", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.571400", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.592800", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.566400", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.587800", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.441400", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.462800", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.178800", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.173800", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.048800", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.387500", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.174700", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.169700", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.044700", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.745600", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046300", + "Timestamp": "2024-05-16T08:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.994100", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.989100", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.864100", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.825100", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.820100", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.695100", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.190200", + "Timestamp": "2024-05-16T08:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.344000", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.339000", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.214000", + "Timestamp": "2024-05-16T08:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092000", + "Timestamp": "2024-05-16T07:47:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088300", + "Timestamp": "2024-05-16T07:47:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032000", + "Timestamp": "2024-05-16T07:47:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.287000", + "Timestamp": "2024-05-16T07:47:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.007200", + "Timestamp": "2024-05-16T07:47:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.020200", + "Timestamp": "2024-05-16T07:47:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.440800", + "Timestamp": "2024-05-16T07:47:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.435800", + "Timestamp": "2024-05-16T07:47:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.310800", + "Timestamp": "2024-05-16T07:47:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.913600", + "Timestamp": "2024-05-16T07:47:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.512600", + "Timestamp": "2024-05-16T07:47:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.507600", + "Timestamp": "2024-05-16T07:47:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.382600", + "Timestamp": "2024-05-16T07:47:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.469900", + "Timestamp": "2024-05-16T07:47:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.464900", + "Timestamp": "2024-05-16T07:47:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.339900", + "Timestamp": "2024-05-16T07:47:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.617500", + "Timestamp": "2024-05-16T07:47:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.170700", + "Timestamp": "2024-05-16T07:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.140700", + "Timestamp": "2024-05-16T07:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.040700", + "Timestamp": "2024-05-16T07:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.602400", + "Timestamp": "2024-05-16T07:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.965200", + "Timestamp": "2024-05-16T07:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.935200", + "Timestamp": "2024-05-16T07:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.835200", + "Timestamp": "2024-05-16T07:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.385900", + "Timestamp": "2024-05-16T07:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.380900", + "Timestamp": "2024-05-16T07:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.255900", + "Timestamp": "2024-05-16T07:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.293300", + "Timestamp": "2024-05-16T07:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.283400", + "Timestamp": "2024-05-16T07:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.288300", + "Timestamp": "2024-05-16T07:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.278400", + "Timestamp": "2024-05-16T07:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.163300", + "Timestamp": "2024-05-16T07:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.153400", + "Timestamp": "2024-05-16T07:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.547200", + "Timestamp": "2024-05-16T07:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.542200", + "Timestamp": "2024-05-16T07:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.417200", + "Timestamp": "2024-05-16T07:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.212100", + "Timestamp": "2024-05-16T07:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.209100", + "Timestamp": "2024-05-16T07:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.152100", + "Timestamp": "2024-05-16T07:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.400100", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168700", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174900", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164700", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170900", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114900", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.276800", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.246800", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.146800", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.538000", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.533000", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.408000", + "Timestamp": "2024-05-16T07:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.098700", + "Timestamp": "2024-05-16T07:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.494900", + "Timestamp": "2024-05-16T07:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.469600", + "Timestamp": "2024-05-16T07:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.489900", + "Timestamp": "2024-05-16T07:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.464600", + "Timestamp": "2024-05-16T07:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.364900", + "Timestamp": "2024-05-16T07:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.339600", + "Timestamp": "2024-05-16T07:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.542100", + "Timestamp": "2024-05-16T07:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.537100", + "Timestamp": "2024-05-16T07:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.412100", + "Timestamp": "2024-05-16T07:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.755000", + "Timestamp": "2024-05-16T07:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.750000", + "Timestamp": "2024-05-16T07:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.625000", + "Timestamp": "2024-05-16T07:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.044000", + "Timestamp": "2024-05-16T07:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.039000", + "Timestamp": "2024-05-16T07:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.914000", + "Timestamp": "2024-05-16T07:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.937700", + "Timestamp": "2024-05-16T07:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.542600", + "Timestamp": "2024-05-16T07:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.055900", + "Timestamp": "2024-05-16T07:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.618000", + "Timestamp": "2024-05-16T07:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.613000", + "Timestamp": "2024-05-16T07:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.488000", + "Timestamp": "2024-05-16T07:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.409000", + "Timestamp": "2024-05-16T07:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.240500", + "Timestamp": "2024-05-16T07:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.688300", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.683300", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.558300", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.082100", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.715000", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.393300", + "Timestamp": "2024-05-16T07:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.388300", + "Timestamp": "2024-05-16T07:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.263300", + "Timestamp": "2024-05-16T07:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.440900", + "Timestamp": "2024-05-16T07:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.435900", + "Timestamp": "2024-05-16T07:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.310900", + "Timestamp": "2024-05-16T07:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.071900", + "Timestamp": "2024-05-16T07:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.066900", + "Timestamp": "2024-05-16T07:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.941900", + "Timestamp": "2024-05-16T07:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.649700", + "Timestamp": "2024-05-16T07:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.582600", + "Timestamp": "2024-05-16T07:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.577600", + "Timestamp": "2024-05-16T07:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.452600", + "Timestamp": "2024-05-16T07:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.202000", + "Timestamp": "2024-05-16T07:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.975500", + "Timestamp": "2024-05-16T07:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.291700", + "Timestamp": "2024-05-16T07:47:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.907000", + "Timestamp": "2024-05-16T07:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.902000", + "Timestamp": "2024-05-16T07:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.777000", + "Timestamp": "2024-05-16T07:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138500", + "Timestamp": "2024-05-16T07:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134500", + "Timestamp": "2024-05-16T07:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078500", + "Timestamp": "2024-05-16T07:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.027200", + "Timestamp": "2024-05-16T07:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.791000", + "Timestamp": "2024-05-16T07:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.786000", + "Timestamp": "2024-05-16T07:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.661000", + "Timestamp": "2024-05-16T07:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.862600", + "Timestamp": "2024-05-16T07:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.857600", + "Timestamp": "2024-05-16T07:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.732600", + "Timestamp": "2024-05-16T07:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.019000", + "Timestamp": "2024-05-16T07:47:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.547400", + "Timestamp": "2024-05-16T07:47:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.888300", + "Timestamp": "2024-05-16T07:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.883300", + "Timestamp": "2024-05-16T07:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.758300", + "Timestamp": "2024-05-16T07:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.045300", + "Timestamp": "2024-05-16T07:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.040300", + "Timestamp": "2024-05-16T07:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.915300", + "Timestamp": "2024-05-16T07:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.032000", + "Timestamp": "2024-05-16T07:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.027000", + "Timestamp": "2024-05-16T07:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.902000", + "Timestamp": "2024-05-16T07:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.437600", + "Timestamp": "2024-05-16T07:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.407600", + "Timestamp": "2024-05-16T07:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.307600", + "Timestamp": "2024-05-16T07:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.386600", + "Timestamp": "2024-05-16T07:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.449400", + "Timestamp": "2024-05-16T07:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.444400", + "Timestamp": "2024-05-16T07:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.319400", + "Timestamp": "2024-05-16T07:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.545400", + "Timestamp": "2024-05-16T07:46:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.501900", + "Timestamp": "2024-05-16T07:46:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.496900", + "Timestamp": "2024-05-16T07:46:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.371900", + "Timestamp": "2024-05-16T07:46:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.048400", + "Timestamp": "2024-05-16T07:46:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.043400", + "Timestamp": "2024-05-16T07:46:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.918400", + "Timestamp": "2024-05-16T07:46:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068700", + "Timestamp": "2024-05-16T07:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039700", + "Timestamp": "2024-05-16T07:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008700", + "Timestamp": "2024-05-16T07:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.515700", + "Timestamp": "2024-05-16T07:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.346200", + "Timestamp": "2024-05-16T07:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.316200", + "Timestamp": "2024-05-16T07:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.216200", + "Timestamp": "2024-05-16T07:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.245800", + "Timestamp": "2024-05-16T07:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.416100", + "Timestamp": "2024-05-16T07:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.842000", + "Timestamp": "2024-05-16T07:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.128700", + "Timestamp": "2024-05-16T07:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.649000", + "Timestamp": "2024-05-16T07:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.727300", + "Timestamp": "2024-05-16T07:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.619000", + "Timestamp": "2024-05-16T07:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.697300", + "Timestamp": "2024-05-16T07:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.519000", + "Timestamp": "2024-05-16T07:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.597300", + "Timestamp": "2024-05-16T07:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.599100", + "Timestamp": "2024-05-16T07:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.594100", + "Timestamp": "2024-05-16T07:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.469100", + "Timestamp": "2024-05-16T07:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170800", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165800", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040800", + "Timestamp": "2024-05-16T07:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.489200", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.484200", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.359200", + "Timestamp": "2024-05-16T07:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103200", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099500", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043200", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.097600", + "Timestamp": "2024-05-16T07:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103600", + "Timestamp": "2024-05-16T07:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143600", + "Timestamp": "2024-05-16T07:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043600", + "Timestamp": "2024-05-16T07:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.291700", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.232500", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.228800", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172500", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156400", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152700", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096400", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.999600", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.638700", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.633700", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.508700", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129400", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069400", + "Timestamp": "2024-05-16T07:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122300", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118600", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062300", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.292900", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.287900", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162900", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097800", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094100", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037800", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.350300", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.345300", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.220300", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.194800", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.239100", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.234100", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.109100", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098000", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094300", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038000", + "Timestamp": "2024-05-16T07:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.316800", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.311800", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186800", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.436600", + "Timestamp": "2024-05-16T07:46:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.406600", + "Timestamp": "2024-05-16T07:46:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.306600", + "Timestamp": "2024-05-16T07:46:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.950000", + "Timestamp": "2024-05-16T07:32:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.945000", + "Timestamp": "2024-05-16T07:32:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.820000", + "Timestamp": "2024-05-16T07:32:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118200", + "Timestamp": "2024-05-16T07:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114200", + "Timestamp": "2024-05-16T07:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058200", + "Timestamp": "2024-05-16T07:32:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.960500", + "Timestamp": "2024-05-16T07:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.003500", + "Timestamp": "2024-05-16T07:32:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.998500", + "Timestamp": "2024-05-16T07:32:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.873500", + "Timestamp": "2024-05-16T07:32:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.628100", + "Timestamp": "2024-05-16T07:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.623100", + "Timestamp": "2024-05-16T07:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.498100", + "Timestamp": "2024-05-16T07:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.550900", + "Timestamp": "2024-05-16T07:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.545900", + "Timestamp": "2024-05-16T07:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.420900", + "Timestamp": "2024-05-16T07:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.931200", + "Timestamp": "2024-05-16T07:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.926200", + "Timestamp": "2024-05-16T07:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.801200", + "Timestamp": "2024-05-16T07:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.175200", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170200", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045200", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.004900", + "Timestamp": "2024-05-16T07:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.564300", + "Timestamp": "2024-05-16T07:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129100", + "Timestamp": "2024-05-16T07:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T07:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069100", + "Timestamp": "2024-05-16T07:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.552300", + "Timestamp": "2024-05-16T07:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172400", + "Timestamp": "2024-05-16T07:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168700", + "Timestamp": "2024-05-16T07:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-16T07:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.537200", + "Timestamp": "2024-05-16T07:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.532200", + "Timestamp": "2024-05-16T07:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.407200", + "Timestamp": "2024-05-16T07:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.009000", + "Timestamp": "2024-05-16T07:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.013800", + "Timestamp": "2024-05-16T07:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.134800", + "Timestamp": "2024-05-16T07:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.129800", + "Timestamp": "2024-05-16T07:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.004800", + "Timestamp": "2024-05-16T07:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.036000", + "Timestamp": "2024-05-16T07:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170800", + "Timestamp": "2024-05-16T07:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166800", + "Timestamp": "2024-05-16T07:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T07:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.455600", + "Timestamp": "2024-05-16T07:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.450600", + "Timestamp": "2024-05-16T07:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.325600", + "Timestamp": "2024-05-16T07:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.914600", + "Timestamp": "2024-05-16T07:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.497100", + "Timestamp": "2024-05-16T07:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.492100", + "Timestamp": "2024-05-16T07:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.367100", + "Timestamp": "2024-05-16T07:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.074400", + "Timestamp": "2024-05-16T07:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.069400", + "Timestamp": "2024-05-16T07:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.944400", + "Timestamp": "2024-05-16T07:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.071400", + "Timestamp": "2024-05-16T07:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.066400", + "Timestamp": "2024-05-16T07:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.941400", + "Timestamp": "2024-05-16T07:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.718700", + "Timestamp": "2024-05-16T07:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.319800", + "Timestamp": "2024-05-16T07:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.314800", + "Timestamp": "2024-05-16T07:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.189800", + "Timestamp": "2024-05-16T07:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.932100", + "Timestamp": "2024-05-16T07:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.927100", + "Timestamp": "2024-05-16T07:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.802100", + "Timestamp": "2024-05-16T07:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078700", + "Timestamp": "2024-05-16T07:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.049700", + "Timestamp": "2024-05-16T07:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018700", + "Timestamp": "2024-05-16T07:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074100", + "Timestamp": "2024-05-16T07:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.045100", + "Timestamp": "2024-05-16T07:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014100", + "Timestamp": "2024-05-16T07:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.947700", + "Timestamp": "2024-05-16T07:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.638100", + "Timestamp": "2024-05-16T07:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.952600", + "Timestamp": "2024-05-16T07:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.299300", + "Timestamp": "2024-05-16T07:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.792300", + "Timestamp": "2024-05-16T07:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.677400", + "Timestamp": "2024-05-16T07:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.672400", + "Timestamp": "2024-05-16T07:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.547400", + "Timestamp": "2024-05-16T07:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.820300", + "Timestamp": "2024-05-16T07:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.620900", + "Timestamp": "2024-05-16T07:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.615900", + "Timestamp": "2024-05-16T07:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.490900", + "Timestamp": "2024-05-16T07:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.160300", + "Timestamp": "2024-05-16T07:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.752700", + "Timestamp": "2024-05-16T07:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.747700", + "Timestamp": "2024-05-16T07:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.622700", + "Timestamp": "2024-05-16T07:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.504500", + "Timestamp": "2024-05-16T07:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.696300", + "Timestamp": "2024-05-16T07:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.691300", + "Timestamp": "2024-05-16T07:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.566300", + "Timestamp": "2024-05-16T07:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.320400", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.360400", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.260400", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146300", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142300", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086300", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.502200", + "Timestamp": "2024-05-16T07:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.497200", + "Timestamp": "2024-05-16T07:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.372200", + "Timestamp": "2024-05-16T07:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.431500", + "Timestamp": "2024-05-16T07:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.168400", + "Timestamp": "2024-05-16T07:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.502400", + "Timestamp": "2024-05-16T07:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.145600", + "Timestamp": "2024-05-16T07:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.519100", + "Timestamp": "2024-05-16T07:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.489100", + "Timestamp": "2024-05-16T07:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.389100", + "Timestamp": "2024-05-16T07:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.163800", + "Timestamp": "2024-05-16T07:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.718500", + "Timestamp": "2024-05-16T07:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.713500", + "Timestamp": "2024-05-16T07:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.588500", + "Timestamp": "2024-05-16T07:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.130700", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.844100", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.839100", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.714100", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.916500", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.888300", + "Timestamp": "2024-05-16T07:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.628900", + "Timestamp": "2024-05-16T07:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.623900", + "Timestamp": "2024-05-16T07:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.498900", + "Timestamp": "2024-05-16T07:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.306300", + "Timestamp": "2024-05-16T07:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.697400", + "Timestamp": "2024-05-16T07:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.692400", + "Timestamp": "2024-05-16T07:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.567400", + "Timestamp": "2024-05-16T07:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.624800", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.621100", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.564800", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.451200", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.964000", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154000", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146600", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150300", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142900", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094000", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086600", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.506200", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.748600", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.743600", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.618600", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.228800", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.225100", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168800", + "Timestamp": "2024-05-16T07:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.713100", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.708100", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.583100", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.408200", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.403200", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.278200", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "16.662900", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.395000", + "Timestamp": "2024-05-16T07:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.005100", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.000100", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.875100", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.771500", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.282400", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.277400", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.152400", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.485800", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.644200", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.639200", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.514200", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.241000", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.211000", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.111000", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.879200", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.849200", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.749200", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.752700", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.279200", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.274200", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.149200", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.025900", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.610000", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.605000", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.480000", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.462000", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.457000", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.332000", + "Timestamp": "2024-05-16T07:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.969900", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.964900", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.839900", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.912700", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.907700", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.782700", + "Timestamp": "2024-05-16T07:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.945400", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.940400", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.815400", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.304400", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.689200", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.684200", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.559200", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.118300", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.113300", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.988300", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.616600", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.611600", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.486600", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.201800", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.196800", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.071800", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.127700", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162400", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158700", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102400", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.279400", + "Timestamp": "2024-05-16T07:31:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.249400", + "Timestamp": "2024-05-16T07:31:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.149400", + "Timestamp": "2024-05-16T07:31:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.319200", + "Timestamp": "2024-05-16T07:31:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.314200", + "Timestamp": "2024-05-16T07:31:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.189200", + "Timestamp": "2024-05-16T07:31:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.025700", + "Timestamp": "2024-05-16T07:17:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.281300", + "Timestamp": "2024-05-16T07:17:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.611000", + "Timestamp": "2024-05-16T07:17:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.606000", + "Timestamp": "2024-05-16T07:17:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.481000", + "Timestamp": "2024-05-16T07:17:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "f1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.687700", + "Timestamp": "2024-05-16T07:17:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "f1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.657700", + "Timestamp": "2024-05-16T07:17:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "f1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.557700", + "Timestamp": "2024-05-16T07:17:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.878600", + "Timestamp": "2024-05-16T07:17:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.873600", + "Timestamp": "2024-05-16T07:17:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.748600", + "Timestamp": "2024-05-16T07:17:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.448500", + "Timestamp": "2024-05-16T07:17:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.936100", + "Timestamp": "2024-05-16T07:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111900", + "Timestamp": "2024-05-16T07:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T07:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051900", + "Timestamp": "2024-05-16T07:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127900", + "Timestamp": "2024-05-16T07:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124200", + "Timestamp": "2024-05-16T07:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067900", + "Timestamp": "2024-05-16T07:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.292300", + "Timestamp": "2024-05-16T07:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.287300", + "Timestamp": "2024-05-16T07:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162300", + "Timestamp": "2024-05-16T07:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111800", + "Timestamp": "2024-05-16T07:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T07:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051800", + "Timestamp": "2024-05-16T07:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T07:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T07:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046600", + "Timestamp": "2024-05-16T07:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.367400", + "Timestamp": "2024-05-16T07:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.362400", + "Timestamp": "2024-05-16T07:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.237400", + "Timestamp": "2024-05-16T07:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.608300", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.603300", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.478300", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.990200", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.985200", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.860200", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.878300", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.873300", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.748300", + "Timestamp": "2024-05-16T07:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.634400", + "Timestamp": "2024-05-16T07:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.629400", + "Timestamp": "2024-05-16T07:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.504400", + "Timestamp": "2024-05-16T07:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.483900", + "Timestamp": "2024-05-16T07:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.440400", + "Timestamp": "2024-05-16T07:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.435400", + "Timestamp": "2024-05-16T07:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.310400", + "Timestamp": "2024-05-16T07:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.700300", + "Timestamp": "2024-05-16T07:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.280200", + "Timestamp": "2024-05-16T07:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.275200", + "Timestamp": "2024-05-16T07:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.150200", + "Timestamp": "2024-05-16T07:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.837100", + "Timestamp": "2024-05-16T07:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.455200", + "Timestamp": "2024-05-16T07:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.462700", + "Timestamp": "2024-05-16T07:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154900", + "Timestamp": "2024-05-16T07:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151900", + "Timestamp": "2024-05-16T07:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094900", + "Timestamp": "2024-05-16T07:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.866000", + "Timestamp": "2024-05-16T07:17:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.861000", + "Timestamp": "2024-05-16T07:17:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.736000", + "Timestamp": "2024-05-16T07:17:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.217000", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.257000", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157000", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.823700", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.156300", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.151300", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.026300", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.541500", + "Timestamp": "2024-05-16T07:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.319700", + "Timestamp": "2024-05-16T07:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.387300", + "Timestamp": "2024-05-16T07:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.382300", + "Timestamp": "2024-05-16T07:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.257300", + "Timestamp": "2024-05-16T07:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151300", + "Timestamp": "2024-05-16T07:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147300", + "Timestamp": "2024-05-16T07:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091300", + "Timestamp": "2024-05-16T07:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.081500", + "Timestamp": "2024-05-16T07:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.088400", + "Timestamp": "2024-05-16T07:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.341600", + "Timestamp": "2024-05-16T07:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.562500", + "Timestamp": "2024-05-16T07:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.532500", + "Timestamp": "2024-05-16T07:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.432500", + "Timestamp": "2024-05-16T07:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.161200", + "Timestamp": "2024-05-16T07:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.139900", + "Timestamp": "2024-05-16T07:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131900", + "Timestamp": "2024-05-16T07:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128200", + "Timestamp": "2024-05-16T07:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071900", + "Timestamp": "2024-05-16T07:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.173500", + "Timestamp": "2024-05-16T07:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.515400", + "Timestamp": "2024-05-16T07:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.508500", + "Timestamp": "2024-05-16T07:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.379900", + "Timestamp": "2024-05-16T07:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123300", + "Timestamp": "2024-05-16T07:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119600", + "Timestamp": "2024-05-16T07:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063300", + "Timestamp": "2024-05-16T07:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.263700", + "Timestamp": "2024-05-16T07:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.339500", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.309500", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.209500", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.641900", + "Timestamp": "2024-05-16T07:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.636900", + "Timestamp": "2024-05-16T07:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.511900", + "Timestamp": "2024-05-16T07:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.758400", + "Timestamp": "2024-05-16T07:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.753400", + "Timestamp": "2024-05-16T07:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.628400", + "Timestamp": "2024-05-16T07:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.973200", + "Timestamp": "2024-05-16T07:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.325200", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.277800", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.116900", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.111900", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.986900", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.460000", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.455000", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.330000", + "Timestamp": "2024-05-16T07:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.892800", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.887800", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.762800", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.517700", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.083800", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.053800", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.953800", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.947600", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.942600", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.817600", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.985200", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.463600", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.458600", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.333600", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.034500", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.740200", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.735200", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.610200", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.193500", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.183600", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179900", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123600", + "Timestamp": "2024-05-16T07:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.238300", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.208300", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.108300", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.498700", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.468700", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.368700", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.250000", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109000", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105300", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049000", + "Timestamp": "2024-05-16T07:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147900", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143900", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087900", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.876600", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.160400", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.155400", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.030400", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098900", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042900", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.383800", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.378800", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.253800", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159600", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155600", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099600", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.126200", + "Timestamp": "2024-05-16T07:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.692400", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.687400", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.562400", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159500", + "Timestamp": "2024-05-16T07:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155800", + "Timestamp": "2024-05-16T07:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099500", + "Timestamp": "2024-05-16T07:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.963900", + "Timestamp": "2024-05-16T07:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.922100", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.917100", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.792100", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.895000", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.130600", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.100600", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.000600", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.300100", + "Timestamp": "2024-05-16T07:16:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.795300", + "Timestamp": "2024-05-16T07:16:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.790300", + "Timestamp": "2024-05-16T07:16:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.665300", + "Timestamp": "2024-05-16T07:16:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.012400", + "Timestamp": "2024-05-16T07:16:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.012600", + "Timestamp": "2024-05-16T07:16:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.808000", + "Timestamp": "2024-05-16T07:16:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.803000", + "Timestamp": "2024-05-16T07:16:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.678000", + "Timestamp": "2024-05-16T07:16:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.887300", + "Timestamp": "2024-05-16T07:07:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.947100", + "Timestamp": "2024-05-16T07:07:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.920100", + "Timestamp": "2024-05-16T07:07:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.280100", + "Timestamp": "2024-05-16T07:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.099400", + "Timestamp": "2024-05-16T07:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.094400", + "Timestamp": "2024-05-16T07:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.969400", + "Timestamp": "2024-05-16T07:02:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "f1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.791300", + "Timestamp": "2024-05-16T07:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "f1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.761300", + "Timestamp": "2024-05-16T07:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "f1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.661300", + "Timestamp": "2024-05-16T07:02:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.626800", + "Timestamp": "2024-05-16T07:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143000", + "Timestamp": "2024-05-16T07:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139300", + "Timestamp": "2024-05-16T07:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083000", + "Timestamp": "2024-05-16T07:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.264800", + "Timestamp": "2024-05-16T07:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", "SpotPrice": "0.260800", - "Timestamp": "2019-10-15T13:43:35.000Z" + "Timestamp": "2024-05-16T07:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.204800", + "Timestamp": "2024-05-16T07:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261600", + "Timestamp": "2024-05-16T07:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.256600", + "Timestamp": "2024-05-16T07:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.131600", + "Timestamp": "2024-05-16T07:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.750200", + "Timestamp": "2024-05-16T07:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.720200", + "Timestamp": "2024-05-16T07:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.620200", + "Timestamp": "2024-05-16T07:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.507600", + "Timestamp": "2024-05-16T07:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.477600", + "Timestamp": "2024-05-16T07:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.377600", + "Timestamp": "2024-05-16T07:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.060000", + "Timestamp": "2024-05-16T07:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.055000", + "Timestamp": "2024-05-16T07:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.930000", + "Timestamp": "2024-05-16T07:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.046800", + "Timestamp": "2024-05-16T07:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.652000", + "Timestamp": "2024-05-16T07:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.622000", + "Timestamp": "2024-05-16T07:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.522000", + "Timestamp": "2024-05-16T07:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115000", + "Timestamp": "2024-05-16T07:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155000", + "Timestamp": "2024-05-16T07:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055000", + "Timestamp": "2024-05-16T07:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.819000", + "Timestamp": "2024-05-16T07:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.238800", + "Timestamp": "2024-05-16T07:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.062400", + "Timestamp": "2024-05-16T07:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.057400", + "Timestamp": "2024-05-16T07:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.932400", + "Timestamp": "2024-05-16T07:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.101600", + "Timestamp": "2024-05-16T07:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.488400", + "Timestamp": "2024-05-16T07:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.503500", + "Timestamp": "2024-05-16T07:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.259200", + "Timestamp": "2024-05-16T07:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.969300", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.964300", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.839300", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.255000", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.250000", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.125000", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.006100", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.999600", + "Timestamp": "2024-05-16T07:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.379700", + "Timestamp": "2024-05-16T07:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.349700", + "Timestamp": "2024-05-16T07:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.249700", + "Timestamp": "2024-05-16T07:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.204400", + "Timestamp": "2024-05-16T07:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.199400", + "Timestamp": "2024-05-16T07:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.074400", + "Timestamp": "2024-05-16T07:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.072300", + "Timestamp": "2024-05-16T07:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.067300", + "Timestamp": "2024-05-16T07:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.942300", + "Timestamp": "2024-05-16T07:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.320900", + "Timestamp": "2024-05-16T07:02:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.315900", + "Timestamp": "2024-05-16T07:02:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190900", + "Timestamp": "2024-05-16T07:02:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "15.260100", + "Timestamp": "2024-05-16T07:02:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "15.255100", + "Timestamp": "2024-05-16T07:02:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "15.130100", + "Timestamp": "2024-05-16T07:02:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.074600", + "Timestamp": "2024-05-16T07:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.044600", + "Timestamp": "2024-05-16T07:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.944600", + "Timestamp": "2024-05-16T07:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.013300", + "Timestamp": "2024-05-16T07:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.008300", + "Timestamp": "2024-05-16T07:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.883300", + "Timestamp": "2024-05-16T07:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077600", + "Timestamp": "2024-05-16T07:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073900", + "Timestamp": "2024-05-16T07:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017600", + "Timestamp": "2024-05-16T07:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.188100", + "Timestamp": "2024-05-16T07:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.054700", + "Timestamp": "2024-05-16T07:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.049700", + "Timestamp": "2024-05-16T07:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.924700", + "Timestamp": "2024-05-16T07:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.089000", + "Timestamp": "2024-05-16T07:01:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.084000", + "Timestamp": "2024-05-16T07:01:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.959000", + "Timestamp": "2024-05-16T07:01:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.280600", + "Timestamp": "2024-05-16T07:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.503500", + "Timestamp": "2024-05-16T07:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.498500", + "Timestamp": "2024-05-16T07:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.373500", + "Timestamp": "2024-05-16T07:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.272800", + "Timestamp": "2024-05-16T07:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.603600", + "Timestamp": "2024-05-16T07:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.598600", + "Timestamp": "2024-05-16T07:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.473600", + "Timestamp": "2024-05-16T07:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.881200", + "Timestamp": "2024-05-16T07:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.851200", + "Timestamp": "2024-05-16T07:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.751200", + "Timestamp": "2024-05-16T07:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.452900", + "Timestamp": "2024-05-16T07:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.885100", + "Timestamp": "2024-05-16T07:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "14.811800", + "Timestamp": "2024-05-16T07:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.345400", + "Timestamp": "2024-05-16T07:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.340400", + "Timestamp": "2024-05-16T07:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.215400", + "Timestamp": "2024-05-16T07:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.260100", + "Timestamp": "2024-05-16T07:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.111300", + "Timestamp": "2024-05-16T07:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.342800", + "Timestamp": "2024-05-16T07:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.337800", + "Timestamp": "2024-05-16T07:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.212800", + "Timestamp": "2024-05-16T07:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.017500", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.012500", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.887500", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.993300", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.988300", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.863300", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.402000", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.838800", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.833800", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.708800", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.597000", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.761100", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.403100", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.399400", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.343100", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.533300", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130800", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127100", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070800", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.932800", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.927800", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.802800", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.754800", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.211600", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.206600", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.081600", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154400", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150400", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094400", + "Timestamp": "2024-05-16T07:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.621300", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.616300", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.491300", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.827900", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.607000", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.602000", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.477000", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.808900", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.510200", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.505200", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.380200", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T07:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-16T07:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031800", + "Timestamp": "2024-05-16T07:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T07:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-16T07:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044000", + "Timestamp": "2024-05-16T07:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T07:01:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144200", + "Timestamp": "2024-05-16T07:01:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044200", + "Timestamp": "2024-05-16T07:01:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.784300", + "Timestamp": "2024-05-16T07:00:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.784300", + "Timestamp": "2024-05-16T07:00:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.784300", + "Timestamp": "2024-05-16T07:00:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.831200", + "Timestamp": "2024-05-16T06:47:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.826200", + "Timestamp": "2024-05-16T06:47:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.701200", + "Timestamp": "2024-05-16T06:47:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.755600", + "Timestamp": "2024-05-16T06:47:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.750600", + "Timestamp": "2024-05-16T06:47:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.625600", + "Timestamp": "2024-05-16T06:47:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.022300", + "Timestamp": "2024-05-16T06:47:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.308400", + "Timestamp": "2024-05-16T06:47:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.303400", + "Timestamp": "2024-05-16T06:47:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.178400", + "Timestamp": "2024-05-16T06:47:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.648800", + "Timestamp": "2024-05-16T06:47:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.643800", + "Timestamp": "2024-05-16T06:47:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.518800", + "Timestamp": "2024-05-16T06:47:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143300", + "Timestamp": "2024-05-16T06:47:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139600", + "Timestamp": "2024-05-16T06:47:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083300", + "Timestamp": "2024-05-16T06:47:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.574600", + "Timestamp": "2024-05-16T06:47:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.569600", + "Timestamp": "2024-05-16T06:47:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.444600", + "Timestamp": "2024-05-16T06:47:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.103200", + "Timestamp": "2024-05-16T06:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.137300", + "Timestamp": "2024-05-16T06:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.104500", + "Timestamp": "2024-05-16T06:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.099500", + "Timestamp": "2024-05-16T06:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.974500", + "Timestamp": "2024-05-16T06:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.866200", + "Timestamp": "2024-05-16T06:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.861200", + "Timestamp": "2024-05-16T06:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.736200", + "Timestamp": "2024-05-16T06:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163200", + "Timestamp": "2024-05-16T06:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159500", + "Timestamp": "2024-05-16T06:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103200", + "Timestamp": "2024-05-16T06:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.252400", + "Timestamp": "2024-05-16T06:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.435600", + "Timestamp": "2024-05-16T06:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.763900", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.758900", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.633900", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075000", + "Timestamp": "2024-05-16T06:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071300", + "Timestamp": "2024-05-16T06:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015000", + "Timestamp": "2024-05-16T06:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235700", + "Timestamp": "2024-05-16T06:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.786300", + "Timestamp": "2024-05-16T06:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.276000", + "Timestamp": "2024-05-16T06:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.302200", + "Timestamp": "2024-05-16T06:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.675200", + "Timestamp": "2024-05-16T06:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.670200", + "Timestamp": "2024-05-16T06:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.545200", + "Timestamp": "2024-05-16T06:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.422500", + "Timestamp": "2024-05-16T06:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.392500", + "Timestamp": "2024-05-16T06:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.292500", + "Timestamp": "2024-05-16T06:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.244300", + "Timestamp": "2024-05-16T06:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.239300", + "Timestamp": "2024-05-16T06:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114300", + "Timestamp": "2024-05-16T06:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.061300", + "Timestamp": "2024-05-16T06:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125900", + "Timestamp": "2024-05-16T06:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122200", + "Timestamp": "2024-05-16T06:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065900", + "Timestamp": "2024-05-16T06:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.510500", + "Timestamp": "2024-05-16T06:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.505500", + "Timestamp": "2024-05-16T06:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.380500", + "Timestamp": "2024-05-16T06:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125100", + "Timestamp": "2024-05-16T06:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121100", + "Timestamp": "2024-05-16T06:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065100", + "Timestamp": "2024-05-16T06:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.378800", + "Timestamp": "2024-05-16T06:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.348800", + "Timestamp": "2024-05-16T06:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.248800", + "Timestamp": "2024-05-16T06:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.842400", + "Timestamp": "2024-05-16T06:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.906000", + "Timestamp": "2024-05-16T06:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.931800", + "Timestamp": "2024-05-16T06:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.926800", + "Timestamp": "2024-05-16T06:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.801800", + "Timestamp": "2024-05-16T06:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200100", + "Timestamp": "2024-05-16T06:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196100", + "Timestamp": "2024-05-16T06:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140100", + "Timestamp": "2024-05-16T06:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.807500", + "Timestamp": "2024-05-16T06:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.802500", + "Timestamp": "2024-05-16T06:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.677500", + "Timestamp": "2024-05-16T06:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.695000", + "Timestamp": "2024-05-16T06:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.690000", + "Timestamp": "2024-05-16T06:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.565000", + "Timestamp": "2024-05-16T06:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.700100", + "Timestamp": "2024-05-16T06:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.695100", + "Timestamp": "2024-05-16T06:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.570100", + "Timestamp": "2024-05-16T06:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.032700", + "Timestamp": "2024-05-16T06:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.903500", + "Timestamp": "2024-05-16T06:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.873500", + "Timestamp": "2024-05-16T06:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.773500", + "Timestamp": "2024-05-16T06:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.916300", + "Timestamp": "2024-05-16T06:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.886300", + "Timestamp": "2024-05-16T06:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.786300", + "Timestamp": "2024-05-16T06:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.297100", + "Timestamp": "2024-05-16T06:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.518100", + "Timestamp": "2024-05-16T06:47:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.513100", + "Timestamp": "2024-05-16T06:47:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.388100", + "Timestamp": "2024-05-16T06:47:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159600", + "Timestamp": "2024-05-16T06:47:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156600", + "Timestamp": "2024-05-16T06:47:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099600", + "Timestamp": "2024-05-16T06:47:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.139100", + "Timestamp": "2024-05-16T06:47:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.302900", + "Timestamp": "2024-05-16T06:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.272900", + "Timestamp": "2024-05-16T06:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.172900", + "Timestamp": "2024-05-16T06:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.394900", + "Timestamp": "2024-05-16T06:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.987200", + "Timestamp": "2024-05-16T06:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.982200", + "Timestamp": "2024-05-16T06:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.857200", + "Timestamp": "2024-05-16T06:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.197100", + "Timestamp": "2024-05-16T06:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270400", + "Timestamp": "2024-05-16T06:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265400", + "Timestamp": "2024-05-16T06:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140400", + "Timestamp": "2024-05-16T06:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145900", + "Timestamp": "2024-05-16T06:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142200", + "Timestamp": "2024-05-16T06:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085900", + "Timestamp": "2024-05-16T06:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.202900", + "Timestamp": "2024-05-16T06:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.199200", + "Timestamp": "2024-05-16T06:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142900", + "Timestamp": "2024-05-16T06:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.322300", + "Timestamp": "2024-05-16T06:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.317300", + "Timestamp": "2024-05-16T06:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.192300", + "Timestamp": "2024-05-16T06:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.299900", + "Timestamp": "2024-05-16T06:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.218200", + "Timestamp": "2024-05-16T06:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.294900", + "Timestamp": "2024-05-16T06:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.213200", + "Timestamp": "2024-05-16T06:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.169900", + "Timestamp": "2024-05-16T06:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.088200", + "Timestamp": "2024-05-16T06:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.346800", + "Timestamp": "2024-05-16T06:46:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.341800", + "Timestamp": "2024-05-16T06:46:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.216800", + "Timestamp": "2024-05-16T06:46:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.418700", + "Timestamp": "2024-05-16T06:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.388700", + "Timestamp": "2024-05-16T06:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.288700", + "Timestamp": "2024-05-16T06:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.739100", + "Timestamp": "2024-05-16T06:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.734100", + "Timestamp": "2024-05-16T06:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.609100", + "Timestamp": "2024-05-16T06:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.466000", + "Timestamp": "2024-05-16T06:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.461000", + "Timestamp": "2024-05-16T06:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.336000", + "Timestamp": "2024-05-16T06:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077400", + "Timestamp": "2024-05-16T06:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.048400", + "Timestamp": "2024-05-16T06:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017400", + "Timestamp": "2024-05-16T06:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104100", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100100", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044100", + "Timestamp": "2024-05-16T06:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096600", + "Timestamp": "2024-05-16T06:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092900", + "Timestamp": "2024-05-16T06:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036600", + "Timestamp": "2024-05-16T06:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.521000", + "Timestamp": "2024-05-16T06:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.540000", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.192000", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.413200", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.457200", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.452200", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.327200", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "8.595500", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "8.590500", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "8.465500", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.988600", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.508000", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.503000", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.378000", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.482100", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.477100", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.352100", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.900500", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.813600", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.808600", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.683600", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121500", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.571700", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.568000", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.511700", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.813600", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.808600", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.683600", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.391900", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.386900", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.261900", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123600", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119600", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063600", + "Timestamp": "2024-05-16T06:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.263600", + "Timestamp": "2024-05-16T06:32:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.249200", + "Timestamp": "2024-05-16T06:32:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093300", + "Timestamp": "2024-05-16T06:32:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089600", + "Timestamp": "2024-05-16T06:32:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033300", + "Timestamp": "2024-05-16T06:32:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.025100", + "Timestamp": "2024-05-16T06:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.052800", + "Timestamp": "2024-05-16T06:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.020100", + "Timestamp": "2024-05-16T06:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.047800", + "Timestamp": "2024-05-16T06:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.895100", + "Timestamp": "2024-05-16T06:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.922800", + "Timestamp": "2024-05-16T06:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.271700", + "Timestamp": "2024-05-16T06:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.266700", + "Timestamp": "2024-05-16T06:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.141700", + "Timestamp": "2024-05-16T06:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.149500", + "Timestamp": "2024-05-16T06:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.119500", + "Timestamp": "2024-05-16T06:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.019500", + "Timestamp": "2024-05-16T06:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.630400", + "Timestamp": "2024-05-16T06:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.625400", + "Timestamp": "2024-05-16T06:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.500400", + "Timestamp": "2024-05-16T06:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.683300", + "Timestamp": "2024-05-16T06:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.678300", + "Timestamp": "2024-05-16T06:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.553300", + "Timestamp": "2024-05-16T06:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.751600", + "Timestamp": "2024-05-16T06:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.746600", + "Timestamp": "2024-05-16T06:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.621600", + "Timestamp": "2024-05-16T06:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.016800", + "Timestamp": "2024-05-16T06:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.082100", + "Timestamp": "2024-05-16T06:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.077100", + "Timestamp": "2024-05-16T06:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.952100", + "Timestamp": "2024-05-16T06:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.769200", + "Timestamp": "2024-05-16T06:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.764200", + "Timestamp": "2024-05-16T06:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.639200", + "Timestamp": "2024-05-16T06:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.213800", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.208800", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.083800", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.156100", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.151100", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.026100", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.207200", + "Timestamp": "2024-05-16T06:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.202200", + "Timestamp": "2024-05-16T06:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.077200", + "Timestamp": "2024-05-16T06:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.767000", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.762000", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.637000", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.034200", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.564500", + "Timestamp": "2024-05-16T06:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.549300", + "Timestamp": "2024-05-16T06:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.559500", + "Timestamp": "2024-05-16T06:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.544300", + "Timestamp": "2024-05-16T06:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.434500", + "Timestamp": "2024-05-16T06:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.419300", + "Timestamp": "2024-05-16T06:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.884800", + "Timestamp": "2024-05-16T06:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.879800", + "Timestamp": "2024-05-16T06:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.754800", + "Timestamp": "2024-05-16T06:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.095100", + "Timestamp": "2024-05-16T06:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.955400", + "Timestamp": "2024-05-16T06:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.950400", + "Timestamp": "2024-05-16T06:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.825400", + "Timestamp": "2024-05-16T06:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077900", + "Timestamp": "2024-05-16T06:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.048900", + "Timestamp": "2024-05-16T06:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017900", + "Timestamp": "2024-05-16T06:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167900", + "Timestamp": "2024-05-16T06:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163900", + "Timestamp": "2024-05-16T06:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107900", + "Timestamp": "2024-05-16T06:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.351200", + "Timestamp": "2024-05-16T06:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.346200", + "Timestamp": "2024-05-16T06:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.221200", + "Timestamp": "2024-05-16T06:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.869100", + "Timestamp": "2024-05-16T06:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.864100", + "Timestamp": "2024-05-16T06:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.739100", + "Timestamp": "2024-05-16T06:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.578400", + "Timestamp": "2024-05-16T06:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074800", + "Timestamp": "2024-05-16T06:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071100", + "Timestamp": "2024-05-16T06:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014800", + "Timestamp": "2024-05-16T06:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.571100", + "Timestamp": "2024-05-16T06:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.132100", + "Timestamp": "2024-05-16T06:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142200", + "Timestamp": "2024-05-16T06:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138500", + "Timestamp": "2024-05-16T06:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082200", + "Timestamp": "2024-05-16T06:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.665600", + "Timestamp": "2024-05-16T06:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.635600", + "Timestamp": "2024-05-16T06:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.535600", + "Timestamp": "2024-05-16T06:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.887800", + "Timestamp": "2024-05-16T06:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.293100", + "Timestamp": "2024-05-16T06:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289100", + "Timestamp": "2024-05-16T06:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.233100", + "Timestamp": "2024-05-16T06:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.566700", + "Timestamp": "2024-05-16T06:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.148800", + "Timestamp": "2024-05-16T06:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104300", + "Timestamp": "2024-05-16T06:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100600", + "Timestamp": "2024-05-16T06:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044300", + "Timestamp": "2024-05-16T06:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.873300", + "Timestamp": "2024-05-16T06:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152500", + "Timestamp": "2024-05-16T06:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148800", + "Timestamp": "2024-05-16T06:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092500", + "Timestamp": "2024-05-16T06:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.230700", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.225700", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.100700", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.252100", + "Timestamp": "2024-05-16T06:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.966500", + "Timestamp": "2024-05-16T06:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.936500", + "Timestamp": "2024-05-16T06:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.836500", + "Timestamp": "2024-05-16T06:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.438700", + "Timestamp": "2024-05-16T06:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.433700", + "Timestamp": "2024-05-16T06:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.308700", + "Timestamp": "2024-05-16T06:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.126000", + "Timestamp": "2024-05-16T06:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.031400", + "Timestamp": "2024-05-16T06:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.008900", + "Timestamp": "2024-05-16T06:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.978900", + "Timestamp": "2024-05-16T06:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.878900", + "Timestamp": "2024-05-16T06:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.250400", + "Timestamp": "2024-05-16T06:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.598900", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.603700", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.123900", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.864100", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.448900", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.264600", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.418900", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.234600", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.318900", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.134600", + "Timestamp": "2024-05-16T06:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.076200", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.045400", + "Timestamp": "2024-05-16T06:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.291900", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.286900", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.161900", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.305600", + "Timestamp": "2024-05-16T06:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.275600", + "Timestamp": "2024-05-16T06:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175600", + "Timestamp": "2024-05-16T06:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314200", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.309200", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184200", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.958700", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.953700", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.828700", + "Timestamp": "2024-05-16T06:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.383600", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.378600", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.253600", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.668200", + "Timestamp": "2024-05-16T06:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.547600", + "Timestamp": "2024-05-16T06:31:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.615500", + "Timestamp": "2024-05-16T06:17:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.297900", + "Timestamp": "2024-05-16T06:17:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.292900", + "Timestamp": "2024-05-16T06:17:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.167900", + "Timestamp": "2024-05-16T06:17:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.801800", + "Timestamp": "2024-05-16T06:17:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.796800", + "Timestamp": "2024-05-16T06:17:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.671800", + "Timestamp": "2024-05-16T06:17:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.273600", + "Timestamp": "2024-05-16T06:17:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.860100", + "Timestamp": "2024-05-16T06:17:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.220700", + "Timestamp": "2024-05-16T06:17:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.215700", + "Timestamp": "2024-05-16T06:17:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090700", + "Timestamp": "2024-05-16T06:17:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.314700", + "Timestamp": "2024-05-16T06:17:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.309700", + "Timestamp": "2024-05-16T06:17:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.184700", + "Timestamp": "2024-05-16T06:17:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.962400", + "Timestamp": "2024-05-16T06:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.619600", + "Timestamp": "2024-05-16T06:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.502100", + "Timestamp": "2024-05-16T06:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.497100", + "Timestamp": "2024-05-16T06:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.372100", + "Timestamp": "2024-05-16T06:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.262300", + "Timestamp": "2024-05-16T06:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.257300", + "Timestamp": "2024-05-16T06:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.132300", + "Timestamp": "2024-05-16T06:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079800", + "Timestamp": "2024-05-16T06:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076100", + "Timestamp": "2024-05-16T06:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019800", + "Timestamp": "2024-05-16T06:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.082900", + "Timestamp": "2024-05-16T06:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.077900", + "Timestamp": "2024-05-16T06:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.952900", + "Timestamp": "2024-05-16T06:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.808800", + "Timestamp": "2024-05-16T06:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.803800", + "Timestamp": "2024-05-16T06:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.678800", + "Timestamp": "2024-05-16T06:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.174100", + "Timestamp": "2024-05-16T06:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.245800", + "Timestamp": "2024-05-16T06:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.240800", + "Timestamp": "2024-05-16T06:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.115800", + "Timestamp": "2024-05-16T06:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.950900", + "Timestamp": "2024-05-16T06:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.249200", + "Timestamp": "2024-05-16T06:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.245500", + "Timestamp": "2024-05-16T06:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.189200", + "Timestamp": "2024-05-16T06:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117000", + "Timestamp": "2024-05-16T06:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-16T06:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057000", + "Timestamp": "2024-05-16T06:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "9.097700", + "Timestamp": "2024-05-16T06:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "9.092700", + "Timestamp": "2024-05-16T06:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "8.967700", + "Timestamp": "2024-05-16T06:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.456800", + "Timestamp": "2024-05-16T06:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.451800", + "Timestamp": "2024-05-16T06:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.326800", + "Timestamp": "2024-05-16T06:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.478200", + "Timestamp": "2024-05-16T06:17:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.622200", + "Timestamp": "2024-05-16T06:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.617200", + "Timestamp": "2024-05-16T06:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.492200", + "Timestamp": "2024-05-16T06:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.311200", + "Timestamp": "2024-05-16T06:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.780700", + "Timestamp": "2024-05-16T06:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.055200", + "Timestamp": "2024-05-16T06:17:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.500300", + "Timestamp": "2024-05-16T06:17:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.662500", + "Timestamp": "2024-05-16T06:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.657500", + "Timestamp": "2024-05-16T06:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.532500", + "Timestamp": "2024-05-16T06:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.142800", + "Timestamp": "2024-05-16T06:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.137800", + "Timestamp": "2024-05-16T06:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.012800", + "Timestamp": "2024-05-16T06:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.177300", + "Timestamp": "2024-05-16T06:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173300", + "Timestamp": "2024-05-16T06:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.117300", + "Timestamp": "2024-05-16T06:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.508600", + "Timestamp": "2024-05-16T06:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.546900", + "Timestamp": "2024-05-16T06:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.151500", + "Timestamp": "2024-05-16T06:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.025900", + "Timestamp": "2024-05-16T06:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.262800", + "Timestamp": "2024-05-16T06:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.787700", + "Timestamp": "2024-05-16T06:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.782700", + "Timestamp": "2024-05-16T06:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.657700", + "Timestamp": "2024-05-16T06:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "12.561200", + "Timestamp": "2024-05-16T06:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.148200", + "Timestamp": "2024-05-16T06:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.118200", + "Timestamp": "2024-05-16T06:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.018200", + "Timestamp": "2024-05-16T06:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.311800", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.121000", + "Timestamp": "2024-05-16T06:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.128000", + "Timestamp": "2024-05-16T06:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.625500", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.620500", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.495500", + "Timestamp": "2024-05-16T06:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.152700", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.147700", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.022700", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.028000", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.998000", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.898000", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.140800", + "Timestamp": "2024-05-16T06:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076200", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047200", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016200", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.254200", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.365400", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.335400", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.235400", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148800", + "Timestamp": "2024-05-16T06:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145100", + "Timestamp": "2024-05-16T06:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088800", + "Timestamp": "2024-05-16T06:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.753100", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.723100", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.623100", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.303200", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.799200", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.298200", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.794200", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.173200", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.669200", + "Timestamp": "2024-05-16T06:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124800", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.135100", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.352300", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.347300", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.222300", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.616700", + "Timestamp": "2024-05-16T06:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.611700", + "Timestamp": "2024-05-16T06:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.486700", + "Timestamp": "2024-05-16T06:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124200", + "Timestamp": "2024-05-16T06:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T06:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T06:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050300", + "Timestamp": "2024-05-16T06:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.494100", + "Timestamp": "2024-05-16T06:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.464100", + "Timestamp": "2024-05-16T06:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.364100", + "Timestamp": "2024-05-16T06:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.309900", + "Timestamp": "2024-05-16T06:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.304900", + "Timestamp": "2024-05-16T06:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.179900", + "Timestamp": "2024-05-16T06:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.321300", + "Timestamp": "2024-05-16T06:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.316300", + "Timestamp": "2024-05-16T06:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.191300", + "Timestamp": "2024-05-16T06:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.298000", + "Timestamp": "2024-05-16T06:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.432600", + "Timestamp": "2024-05-16T06:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.427600", + "Timestamp": "2024-05-16T06:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.302600", + "Timestamp": "2024-05-16T06:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125500", + "Timestamp": "2024-05-16T06:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121800", + "Timestamp": "2024-05-16T06:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065500", + "Timestamp": "2024-05-16T06:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.091100", + "Timestamp": "2024-05-16T06:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.086100", + "Timestamp": "2024-05-16T06:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.961100", + "Timestamp": "2024-05-16T06:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.986700", + "Timestamp": "2024-05-16T06:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.981700", + "Timestamp": "2024-05-16T06:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.856700", + "Timestamp": "2024-05-16T06:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.123800", + "Timestamp": "2024-05-16T06:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172600", + "Timestamp": "2024-05-16T06:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168900", + "Timestamp": "2024-05-16T06:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-16T06:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.781000", + "Timestamp": "2024-05-16T06:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.108800", + "Timestamp": "2024-05-16T06:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.122400", + "Timestamp": "2024-05-16T06:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.274400", + "Timestamp": "2024-05-16T06:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.269400", + "Timestamp": "2024-05-16T06:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.144400", + "Timestamp": "2024-05-16T06:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.613300", + "Timestamp": "2024-05-16T06:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.608300", + "Timestamp": "2024-05-16T06:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.483300", + "Timestamp": "2024-05-16T06:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.590200", + "Timestamp": "2024-05-16T06:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.585200", + "Timestamp": "2024-05-16T06:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.460200", + "Timestamp": "2024-05-16T06:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.265300", + "Timestamp": "2024-05-16T06:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.258200", + "Timestamp": "2024-05-16T06:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301400", + "Timestamp": "2024-05-16T06:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296400", + "Timestamp": "2024-05-16T06:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171400", + "Timestamp": "2024-05-16T06:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.985400", + "Timestamp": "2024-05-16T06:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.980400", + "Timestamp": "2024-05-16T06:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.855400", + "Timestamp": "2024-05-16T06:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.681100", + "Timestamp": "2024-05-16T06:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.676100", + "Timestamp": "2024-05-16T06:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.551100", + "Timestamp": "2024-05-16T06:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.989600", + "Timestamp": "2024-05-16T06:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.943400", + "Timestamp": "2024-05-16T06:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.959600", + "Timestamp": "2024-05-16T06:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.913400", + "Timestamp": "2024-05-16T06:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.859600", + "Timestamp": "2024-05-16T06:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.813400", + "Timestamp": "2024-05-16T06:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.246300", + "Timestamp": "2024-05-16T06:01:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "6.063400", + "Timestamp": "2024-05-16T06:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.011300", + "Timestamp": "2024-05-16T06:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.357700", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.477300", + "Timestamp": "2024-05-16T06:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.853900", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.848900", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.723900", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.373200", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.369200", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g3s.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.313200", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.261200", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047700", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101500", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045200", + "Timestamp": "2024-05-16T06:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.685100", + "Timestamp": "2024-05-16T06:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.680100", + "Timestamp": "2024-05-16T06:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.555100", + "Timestamp": "2024-05-16T06:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.914500", + "Timestamp": "2024-05-16T06:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.008400", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.994500", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.003400", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.989500", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.878400", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.864500", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.650300", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.592600", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.587600", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.462600", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.077500", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.072500", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.947500", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.631900", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.626900", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.501900", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.991000", + "Timestamp": "2024-05-16T06:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.488200", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.250800", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102400", + "Timestamp": "2024-05-16T06:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098700", + "Timestamp": "2024-05-16T06:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042400", + "Timestamp": "2024-05-16T06:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.143100", + "Timestamp": "2024-05-16T06:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.138100", + "Timestamp": "2024-05-16T06:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.013100", + "Timestamp": "2024-05-16T06:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.257700", + "Timestamp": "2024-05-16T06:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.404000", + "Timestamp": "2024-05-16T06:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.399000", + "Timestamp": "2024-05-16T06:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.274000", + "Timestamp": "2024-05-16T06:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T06:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T06:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099800", + "Timestamp": "2024-05-16T06:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043500", + "Timestamp": "2024-05-16T06:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.519500", + "Timestamp": "2024-05-16T06:01:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.514500", + "Timestamp": "2024-05-16T06:01:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.389500", + "Timestamp": "2024-05-16T06:01:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.286600", + "Timestamp": "2024-05-16T06:01:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078000", + "Timestamp": "2024-05-16T06:01:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074300", + "Timestamp": "2024-05-16T06:01:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018000", + "Timestamp": "2024-05-16T06:01:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.878900", + "Timestamp": "2024-05-16T05:57:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.621900", + "Timestamp": "2024-05-16T05:47:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.034900", + "Timestamp": "2024-05-16T05:47:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.981600", + "Timestamp": "2024-05-16T05:47:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.105000", + "Timestamp": "2024-05-16T05:47:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.938500", + "Timestamp": "2024-05-16T05:47:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.898700", + "Timestamp": "2024-05-16T05:47:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.893700", + "Timestamp": "2024-05-16T05:47:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.768700", + "Timestamp": "2024-05-16T05:47:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.268500", + "Timestamp": "2024-05-16T05:47:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.203800", + "Timestamp": "2024-05-16T05:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.243800", + "Timestamp": "2024-05-16T05:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143800", + "Timestamp": "2024-05-16T05:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.517600", + "Timestamp": "2024-05-16T05:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.257800", + "Timestamp": "2024-05-16T05:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.252800", + "Timestamp": "2024-05-16T05:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.127800", + "Timestamp": "2024-05-16T05:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.251100", + "Timestamp": "2024-05-16T05:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.564200", + "Timestamp": "2024-05-16T05:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.559200", + "Timestamp": "2024-05-16T05:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.434200", + "Timestamp": "2024-05-16T05:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.685000", + "Timestamp": "2024-05-16T05:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.655000", + "Timestamp": "2024-05-16T05:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.555000", + "Timestamp": "2024-05-16T05:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.248300", + "Timestamp": "2024-05-16T05:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.257100", + "Timestamp": "2024-05-16T05:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.713800", + "Timestamp": "2024-05-16T05:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.708800", + "Timestamp": "2024-05-16T05:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.583800", + "Timestamp": "2024-05-16T05:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.177700", + "Timestamp": "2024-05-16T05:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.446300", + "Timestamp": "2024-05-16T05:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.441300", + "Timestamp": "2024-05-16T05:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.316300", + "Timestamp": "2024-05-16T05:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.067100", + "Timestamp": "2024-05-16T05:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.348800", + "Timestamp": "2024-05-16T05:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.343800", + "Timestamp": "2024-05-16T05:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.218800", + "Timestamp": "2024-05-16T05:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.253700", + "Timestamp": "2024-05-16T05:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.248700", + "Timestamp": "2024-05-16T05:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.123700", + "Timestamp": "2024-05-16T05:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.389400", + "Timestamp": "2024-05-16T05:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.384400", + "Timestamp": "2024-05-16T05:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.259400", + "Timestamp": "2024-05-16T05:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.029200", + "Timestamp": "2024-05-16T05:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.693800", + "Timestamp": "2024-05-16T05:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.981400", + "Timestamp": "2024-05-16T05:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.918000", + "Timestamp": "2024-05-16T05:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.895200", + "Timestamp": "2024-05-16T05:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062100", + "Timestamp": "2024-05-16T05:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002100", + "Timestamp": "2024-05-16T05:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002100", + "Timestamp": "2024-05-16T05:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.778900", + "Timestamp": "2024-05-16T05:47:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.793900", + "Timestamp": "2024-05-16T05:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.788900", + "Timestamp": "2024-05-16T05:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.663900", + "Timestamp": "2024-05-16T05:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.091200", + "Timestamp": "2024-05-16T05:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.086200", + "Timestamp": "2024-05-16T05:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.961200", + "Timestamp": "2024-05-16T05:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.478700", + "Timestamp": "2024-05-16T05:46:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473700", + "Timestamp": "2024-05-16T05:46:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.348700", + "Timestamp": "2024-05-16T05:46:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076000", + "Timestamp": "2024-05-16T05:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047000", + "Timestamp": "2024-05-16T05:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016000", + "Timestamp": "2024-05-16T05:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.964600", + "Timestamp": "2024-05-16T05:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.959600", + "Timestamp": "2024-05-16T05:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.834600", + "Timestamp": "2024-05-16T05:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.129800", + "Timestamp": "2024-05-16T05:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.099800", + "Timestamp": "2024-05-16T05:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.999800", + "Timestamp": "2024-05-16T05:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.168300", + "Timestamp": "2024-05-16T05:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.959800", + "Timestamp": "2024-05-16T05:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.954800", + "Timestamp": "2024-05-16T05:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.829800", + "Timestamp": "2024-05-16T05:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.734900", + "Timestamp": "2024-05-16T05:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.760600", + "Timestamp": "2024-05-16T05:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.649600", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.644600", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.519600", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.112900", + "Timestamp": "2024-05-16T05:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.258000", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.253000", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.128000", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.930700", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.268500", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.060900", + "Timestamp": "2024-05-16T05:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.364200", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.359200", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.234200", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.585100", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.574900", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.544900", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.444900", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099900", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039900", + "Timestamp": "2024-05-16T05:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.158200", + "Timestamp": "2024-05-16T05:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.272200", + "Timestamp": "2024-05-16T05:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.153200", + "Timestamp": "2024-05-16T05:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.267200", + "Timestamp": "2024-05-16T05:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.028200", + "Timestamp": "2024-05-16T05:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.142200", + "Timestamp": "2024-05-16T05:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.819800", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.814800", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.689800", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.364000", + "Timestamp": "2024-05-16T05:32:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.359000", + "Timestamp": "2024-05-16T05:32:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.234000", + "Timestamp": "2024-05-16T05:32:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.712600", + "Timestamp": "2024-05-16T05:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.707600", + "Timestamp": "2024-05-16T05:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.582600", + "Timestamp": "2024-05-16T05:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.143100", + "Timestamp": "2024-05-16T05:32:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.206900", + "Timestamp": "2024-05-16T05:32:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.201900", + "Timestamp": "2024-05-16T05:32:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.076900", + "Timestamp": "2024-05-16T05:32:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.895900", + "Timestamp": "2024-05-16T05:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.320200", + "Timestamp": "2024-05-16T05:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.315200", + "Timestamp": "2024-05-16T05:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.190200", + "Timestamp": "2024-05-16T05:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T05:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T05:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044900", + "Timestamp": "2024-05-16T05:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.046400", + "Timestamp": "2024-05-16T05:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.041400", + "Timestamp": "2024-05-16T05:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.916400", + "Timestamp": "2024-05-16T05:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.338100", + "Timestamp": "2024-05-16T05:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.333100", + "Timestamp": "2024-05-16T05:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.208100", + "Timestamp": "2024-05-16T05:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.429400", + "Timestamp": "2024-05-16T05:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.399400", + "Timestamp": "2024-05-16T05:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.299400", + "Timestamp": "2024-05-16T05:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121800", + "Timestamp": "2024-05-16T05:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121200", + "Timestamp": "2024-05-16T05:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.446000", + "Timestamp": "2024-05-16T05:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.441000", + "Timestamp": "2024-05-16T05:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.316000", + "Timestamp": "2024-05-16T05:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.458500", + "Timestamp": "2024-05-16T05:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.453500", + "Timestamp": "2024-05-16T05:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.328500", + "Timestamp": "2024-05-16T05:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.949200", + "Timestamp": "2024-05-16T05:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.944200", + "Timestamp": "2024-05-16T05:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.819200", + "Timestamp": "2024-05-16T05:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.816000", + "Timestamp": "2024-05-16T05:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.867600", + "Timestamp": "2024-05-16T05:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.045800", + "Timestamp": "2024-05-16T05:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.040800", + "Timestamp": "2024-05-16T05:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.915800", + "Timestamp": "2024-05-16T05:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.243800", + "Timestamp": "2024-05-16T05:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.523500", + "Timestamp": "2024-05-16T05:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.518500", + "Timestamp": "2024-05-16T05:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.393500", + "Timestamp": "2024-05-16T05:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.638900", + "Timestamp": "2024-05-16T05:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.633900", + "Timestamp": "2024-05-16T05:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.508900", + "Timestamp": "2024-05-16T05:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.010300", + "Timestamp": "2024-05-16T05:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.005300", + "Timestamp": "2024-05-16T05:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.880300", + "Timestamp": "2024-05-16T05:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.396200", + "Timestamp": "2024-05-16T05:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.697500", + "Timestamp": "2024-05-16T05:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.692500", + "Timestamp": "2024-05-16T05:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.567500", + "Timestamp": "2024-05-16T05:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.843800", + "Timestamp": "2024-05-16T05:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.248000", + "Timestamp": "2024-05-16T05:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.848300", + "Timestamp": "2024-05-16T05:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.843300", + "Timestamp": "2024-05-16T05:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.718300", + "Timestamp": "2024-05-16T05:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.406200", + "Timestamp": "2024-05-16T05:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.376200", + "Timestamp": "2024-05-16T05:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.276200", + "Timestamp": "2024-05-16T05:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.485900", + "Timestamp": "2024-05-16T05:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.016100", + "Timestamp": "2024-05-16T05:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.995400", + "Timestamp": "2024-05-16T05:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.913400", + "Timestamp": "2024-05-16T05:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.908400", + "Timestamp": "2024-05-16T05:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.783400", + "Timestamp": "2024-05-16T05:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324000", + "Timestamp": "2024-05-16T05:32:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319000", + "Timestamp": "2024-05-16T05:32:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194000", + "Timestamp": "2024-05-16T05:32:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169400", + "Timestamp": "2024-05-16T05:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165400", + "Timestamp": "2024-05-16T05:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T05:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.078300", + "Timestamp": "2024-05-16T05:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.073300", + "Timestamp": "2024-05-16T05:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.948300", + "Timestamp": "2024-05-16T05:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.005500", + "Timestamp": "2024-05-16T05:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.143600", + "Timestamp": "2024-05-16T05:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.563000", + "Timestamp": "2024-05-16T05:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.558000", + "Timestamp": "2024-05-16T05:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.433000", + "Timestamp": "2024-05-16T05:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.723600", + "Timestamp": "2024-05-16T05:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.718600", + "Timestamp": "2024-05-16T05:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.593600", + "Timestamp": "2024-05-16T05:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.479200", + "Timestamp": "2024-05-16T05:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.474200", + "Timestamp": "2024-05-16T05:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.349200", + "Timestamp": "2024-05-16T05:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.488000", + "Timestamp": "2024-05-16T05:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.483000", + "Timestamp": "2024-05-16T05:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.358000", + "Timestamp": "2024-05-16T05:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.287300", + "Timestamp": "2024-05-16T05:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.257300", + "Timestamp": "2024-05-16T05:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157300", + "Timestamp": "2024-05-16T05:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.335700", + "Timestamp": "2024-05-16T05:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.330700", + "Timestamp": "2024-05-16T05:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.205700", + "Timestamp": "2024-05-16T05:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.189000", + "Timestamp": "2024-05-16T05:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.273700", + "Timestamp": "2024-05-16T05:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.029400", + "Timestamp": "2024-05-16T05:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.137100", + "Timestamp": "2024-05-16T05:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.607000", + "Timestamp": "2024-05-16T05:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.335100", + "Timestamp": "2024-05-16T05:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.330100", + "Timestamp": "2024-05-16T05:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.205100", + "Timestamp": "2024-05-16T05:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.187100", + "Timestamp": "2024-05-16T05:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.678500", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.673500", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.548500", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.006600", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.976600", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.876600", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.226600", + "Timestamp": "2024-05-16T05:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.506600", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.954000", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.285200", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.356100", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.351100", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.226100", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.920800", + "Timestamp": "2024-05-16T05:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.531700", + "Timestamp": "2024-05-16T05:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.501700", + "Timestamp": "2024-05-16T05:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.401700", + "Timestamp": "2024-05-16T05:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.491400", + "Timestamp": "2024-05-16T05:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.292800", + "Timestamp": "2024-05-16T05:31:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.287800", + "Timestamp": "2024-05-16T05:31:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162800", + "Timestamp": "2024-05-16T05:31:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146500", + "Timestamp": "2024-05-16T05:17:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142500", + "Timestamp": "2024-05-16T05:17:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086500", + "Timestamp": "2024-05-16T05:17:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T05:17:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.188000", + "Timestamp": "2024-05-16T05:17:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.605700", + "Timestamp": "2024-05-16T05:17:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.600700", + "Timestamp": "2024-05-16T05:17:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.475700", + "Timestamp": "2024-05-16T05:17:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.473800", + "Timestamp": "2024-05-16T05:17:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152900", + "Timestamp": "2024-05-16T05:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149200", + "Timestamp": "2024-05-16T05:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092900", + "Timestamp": "2024-05-16T05:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233800", + "Timestamp": "2024-05-16T05:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.634400", + "Timestamp": "2024-05-16T05:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.068800", + "Timestamp": "2024-05-16T05:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.196100", + "Timestamp": "2024-05-16T05:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.191100", + "Timestamp": "2024-05-16T05:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.066100", + "Timestamp": "2024-05-16T05:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.148300", + "Timestamp": "2024-05-16T05:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.373700", + "Timestamp": "2024-05-16T05:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.368700", + "Timestamp": "2024-05-16T05:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.243700", + "Timestamp": "2024-05-16T05:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.000400", + "Timestamp": "2024-05-16T05:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.246200", + "Timestamp": "2024-05-16T05:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.309600", + "Timestamp": "2024-05-16T05:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.304600", + "Timestamp": "2024-05-16T05:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.179600", + "Timestamp": "2024-05-16T05:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.010800", + "Timestamp": "2024-05-16T05:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.980800", + "Timestamp": "2024-05-16T05:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.880800", + "Timestamp": "2024-05-16T05:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.877400", + "Timestamp": "2024-05-16T05:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.872400", + "Timestamp": "2024-05-16T05:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.747400", + "Timestamp": "2024-05-16T05:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.587000", + "Timestamp": "2024-05-16T05:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.582000", + "Timestamp": "2024-05-16T05:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.457000", + "Timestamp": "2024-05-16T05:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.250500", + "Timestamp": "2024-05-16T05:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.988200", + "Timestamp": "2024-05-16T05:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.355200", + "Timestamp": "2024-05-16T05:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.619300", + "Timestamp": "2024-05-16T05:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.614300", + "Timestamp": "2024-05-16T05:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.489300", + "Timestamp": "2024-05-16T05:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097800", + "Timestamp": "2024-05-16T05:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094100", + "Timestamp": "2024-05-16T05:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037800", + "Timestamp": "2024-05-16T05:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.263800", + "Timestamp": "2024-05-16T05:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.463600", + "Timestamp": "2024-05-16T05:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.433600", + "Timestamp": "2024-05-16T05:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.333600", + "Timestamp": "2024-05-16T05:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.824400", + "Timestamp": "2024-05-16T05:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.819400", + "Timestamp": "2024-05-16T05:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.694400", + "Timestamp": "2024-05-16T05:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126100", + "Timestamp": "2024-05-16T05:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122400", + "Timestamp": "2024-05-16T05:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066100", + "Timestamp": "2024-05-16T05:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.968400", + "Timestamp": "2024-05-16T05:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.315200", + "Timestamp": "2024-05-16T05:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.997500", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.967500", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.867500", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145700", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045700", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.905400", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.871500", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.375400", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.370400", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.245400", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.741000", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.736000", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.611000", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125500", + "Timestamp": "2024-05-16T05:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.182400", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.222400", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122400", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131300", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127600", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071300", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.175100", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.171100", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115100", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111800", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107800", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051800", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.259100", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.255400", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199100", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.512100", + "Timestamp": "2024-05-16T05:16:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.507100", + "Timestamp": "2024-05-16T05:16:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.382100", + "Timestamp": "2024-05-16T05:16:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.665700", + "Timestamp": "2024-05-16T05:09:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.665700", + "Timestamp": "2024-05-16T05:09:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.665700", + "Timestamp": "2024-05-16T05:09:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099700", + "Timestamp": "2024-05-16T05:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T05:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039700", + "Timestamp": "2024-05-16T05:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.635800", + "Timestamp": "2024-05-16T05:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.630800", + "Timestamp": "2024-05-16T05:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.505800", + "Timestamp": "2024-05-16T05:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.620900", + "Timestamp": "2024-05-16T05:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.615900", + "Timestamp": "2024-05-16T05:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.490900", + "Timestamp": "2024-05-16T05:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.081600", + "Timestamp": "2024-05-16T05:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.076600", + "Timestamp": "2024-05-16T05:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.951600", + "Timestamp": "2024-05-16T05:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.175100", + "Timestamp": "2024-05-16T05:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.171100", + "Timestamp": "2024-05-16T05:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115100", + "Timestamp": "2024-05-16T05:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.949000", + "Timestamp": "2024-05-16T05:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.944000", + "Timestamp": "2024-05-16T05:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.819000", + "Timestamp": "2024-05-16T05:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.601700", + "Timestamp": "2024-05-16T05:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.031200", + "Timestamp": "2024-05-16T05:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.425300", + "Timestamp": "2024-05-16T05:02:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.556000", + "Timestamp": "2024-05-16T05:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.551000", + "Timestamp": "2024-05-16T05:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.426000", + "Timestamp": "2024-05-16T05:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.818600", + "Timestamp": "2024-05-16T05:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.813600", + "Timestamp": "2024-05-16T05:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.688600", + "Timestamp": "2024-05-16T05:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.949400", + "Timestamp": "2024-05-16T05:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.974900", + "Timestamp": "2024-05-16T05:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.981100", + "Timestamp": "2024-05-16T05:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.642200", + "Timestamp": "2024-05-16T05:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.637200", + "Timestamp": "2024-05-16T05:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.512200", + "Timestamp": "2024-05-16T05:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.312200", + "Timestamp": "2024-05-16T05:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154300", + "Timestamp": "2024-05-16T05:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150600", + "Timestamp": "2024-05-16T05:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094300", + "Timestamp": "2024-05-16T05:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.151800", + "Timestamp": "2024-05-16T05:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.132100", + "Timestamp": "2024-05-16T05:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.127100", + "Timestamp": "2024-05-16T05:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.002100", + "Timestamp": "2024-05-16T05:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "13.725300", + "Timestamp": "2024-05-16T05:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145300", + "Timestamp": "2024-05-16T05:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141600", + "Timestamp": "2024-05-16T05:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085300", + "Timestamp": "2024-05-16T05:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.618800", + "Timestamp": "2024-05-16T05:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.613800", + "Timestamp": "2024-05-16T05:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.488800", + "Timestamp": "2024-05-16T05:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.256900", + "Timestamp": "2024-05-16T05:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.160100", + "Timestamp": "2024-05-16T05:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.833500", + "Timestamp": "2024-05-16T05:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.828500", + "Timestamp": "2024-05-16T05:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.703500", + "Timestamp": "2024-05-16T05:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.043100", + "Timestamp": "2024-05-16T05:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.013100", + "Timestamp": "2024-05-16T05:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.913100", + "Timestamp": "2024-05-16T05:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.135300", + "Timestamp": "2024-05-16T05:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118800", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115100", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058800", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.367900", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.362900", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.237900", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.899900", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151100", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147100", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091100", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.284000", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.279000", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.154000", + "Timestamp": "2024-05-16T05:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.580600", + "Timestamp": "2024-05-16T05:01:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.615400", + "Timestamp": "2024-05-16T04:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.610400", + "Timestamp": "2024-05-16T04:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.485400", + "Timestamp": "2024-05-16T04:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085800", + "Timestamp": "2024-05-16T04:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082100", + "Timestamp": "2024-05-16T04:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025800", + "Timestamp": "2024-05-16T04:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294300", + "Timestamp": "2024-05-16T04:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289300", + "Timestamp": "2024-05-16T04:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164300", + "Timestamp": "2024-05-16T04:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.892200", + "Timestamp": "2024-05-16T04:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.887200", + "Timestamp": "2024-05-16T04:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.762200", + "Timestamp": "2024-05-16T04:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.056800", + "Timestamp": "2024-05-16T04:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.051800", + "Timestamp": "2024-05-16T04:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.926800", + "Timestamp": "2024-05-16T04:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.214600", + "Timestamp": "2024-05-16T04:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.209600", + "Timestamp": "2024-05-16T04:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.084600", + "Timestamp": "2024-05-16T04:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.355700", + "Timestamp": "2024-05-16T04:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.252600", + "Timestamp": "2024-05-16T04:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.126400", + "Timestamp": "2024-05-16T04:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.183900", + "Timestamp": "2024-05-16T04:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.261300", + "Timestamp": "2024-05-16T04:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.303600", + "Timestamp": "2024-05-16T04:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.343600", + "Timestamp": "2024-05-16T04:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.243600", + "Timestamp": "2024-05-16T04:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.453800", + "Timestamp": "2024-05-16T04:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.423800", + "Timestamp": "2024-05-16T04:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.323800", + "Timestamp": "2024-05-16T04:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.948100", + "Timestamp": "2024-05-16T04:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.281000", + "Timestamp": "2024-05-16T04:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.260300", + "Timestamp": "2024-05-16T04:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276000", + "Timestamp": "2024-05-16T04:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.255300", + "Timestamp": "2024-05-16T04:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.151000", + "Timestamp": "2024-05-16T04:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130300", + "Timestamp": "2024-05-16T04:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.920800", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.956900", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125200", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.661900", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.656900", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.531900", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.310900", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.305900", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.180900", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.024300", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.795000", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.790000", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.665000", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.164700", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.159700", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.034700", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.075400", + "Timestamp": "2024-05-16T04:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.070400", + "Timestamp": "2024-05-16T04:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.945400", + "Timestamp": "2024-05-16T04:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.669900", + "Timestamp": "2024-05-16T04:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.664900", + "Timestamp": "2024-05-16T04:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.539900", + "Timestamp": "2024-05-16T04:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.264400", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.611600", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294700", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289700", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164700", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.129500", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.495800", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.465800", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.365800", + "Timestamp": "2024-05-16T04:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.047900", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.953100", + "Timestamp": "2024-05-16T04:46:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.948100", + "Timestamp": "2024-05-16T04:46:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.823100", + "Timestamp": "2024-05-16T04:46:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.113700", + "Timestamp": "2024-05-16T04:46:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.491600", + "Timestamp": "2024-05-16T04:46:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125100", + "Timestamp": "2024-05-16T04:46:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.245500", + "Timestamp": "2024-05-16T04:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.591700", + "Timestamp": "2024-05-16T04:46:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.586700", + "Timestamp": "2024-05-16T04:46:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.461700", + "Timestamp": "2024-05-16T04:46:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151800", + "Timestamp": "2024-05-16T04:46:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.191800", + "Timestamp": "2024-05-16T04:46:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T04:46:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.187900", + "Timestamp": "2024-05-16T04:46:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.184200", + "Timestamp": "2024-05-16T04:46:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127900", + "Timestamp": "2024-05-16T04:46:13.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.740500", + "Timestamp": "2024-05-16T04:46:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.735500", + "Timestamp": "2024-05-16T04:46:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.610500", + "Timestamp": "2024-05-16T04:46:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.262600", + "Timestamp": "2024-05-16T04:32:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.249400", + "Timestamp": "2024-05-16T04:32:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.824600", + "Timestamp": "2024-05-16T04:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.819600", + "Timestamp": "2024-05-16T04:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.694600", + "Timestamp": "2024-05-16T04:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.295100", + "Timestamp": "2024-05-16T04:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138100", + "Timestamp": "2024-05-16T04:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134400", + "Timestamp": "2024-05-16T04:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078100", + "Timestamp": "2024-05-16T04:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102300", + "Timestamp": "2024-05-16T04:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098600", + "Timestamp": "2024-05-16T04:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042300", + "Timestamp": "2024-05-16T04:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126000", + "Timestamp": "2024-05-16T04:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122300", + "Timestamp": "2024-05-16T04:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066000", + "Timestamp": "2024-05-16T04:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.875900", + "Timestamp": "2024-05-16T04:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.870900", + "Timestamp": "2024-05-16T04:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.745900", + "Timestamp": "2024-05-16T04:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.488800", + "Timestamp": "2024-05-16T04:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.577100", + "Timestamp": "2024-05-16T04:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.572100", + "Timestamp": "2024-05-16T04:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.447100", + "Timestamp": "2024-05-16T04:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.524100", + "Timestamp": "2024-05-16T04:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.439000", + "Timestamp": "2024-05-16T04:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.434000", + "Timestamp": "2024-05-16T04:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.309000", + "Timestamp": "2024-05-16T04:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.411400", + "Timestamp": "2024-05-16T04:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.406400", + "Timestamp": "2024-05-16T04:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.281400", + "Timestamp": "2024-05-16T04:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.590000", + "Timestamp": "2024-05-16T04:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.123100", + "Timestamp": "2024-05-16T04:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.199100", + "Timestamp": "2024-05-16T04:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.169100", + "Timestamp": "2024-05-16T04:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.069100", + "Timestamp": "2024-05-16T04:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.747300", + "Timestamp": "2024-05-16T04:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.742300", + "Timestamp": "2024-05-16T04:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.617300", + "Timestamp": "2024-05-16T04:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.600600", + "Timestamp": "2024-05-16T04:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.726500", + "Timestamp": "2024-05-16T04:32:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.495300", + "Timestamp": "2024-05-16T04:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.654100", + "Timestamp": "2024-05-16T04:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113900", + "Timestamp": "2024-05-16T04:31:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T04:31:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053900", + "Timestamp": "2024-05-16T04:31:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.510500", + "Timestamp": "2024-05-16T04:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.137500", + "Timestamp": "2024-05-16T04:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.421900", + "Timestamp": "2024-05-16T04:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.416900", + "Timestamp": "2024-05-16T04:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.291900", + "Timestamp": "2024-05-16T04:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "14.676800", + "Timestamp": "2024-05-16T04:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.509400", + "Timestamp": "2024-05-16T04:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.391100", + "Timestamp": "2024-05-16T04:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.386100", + "Timestamp": "2024-05-16T04:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.261100", + "Timestamp": "2024-05-16T04:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.538100", + "Timestamp": "2024-05-16T04:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156500", + "Timestamp": "2024-05-16T04:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152800", + "Timestamp": "2024-05-16T04:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-16T04:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.378200", + "Timestamp": "2024-05-16T04:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.612500", + "Timestamp": "2024-05-16T04:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.382700", + "Timestamp": "2024-05-16T04:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.377700", + "Timestamp": "2024-05-16T04:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.252700", + "Timestamp": "2024-05-16T04:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.820300", + "Timestamp": "2024-05-16T04:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.815300", + "Timestamp": "2024-05-16T04:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.690300", + "Timestamp": "2024-05-16T04:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278200", + "Timestamp": "2024-05-16T04:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273200", + "Timestamp": "2024-05-16T04:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148200", + "Timestamp": "2024-05-16T04:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.408600", + "Timestamp": "2024-05-16T04:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.378600", + "Timestamp": "2024-05-16T04:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.278600", + "Timestamp": "2024-05-16T04:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.263300", + "Timestamp": "2024-05-16T04:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.868400", + "Timestamp": "2024-05-16T04:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.863400", + "Timestamp": "2024-05-16T04:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.738400", + "Timestamp": "2024-05-16T04:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.447700", + "Timestamp": "2024-05-16T04:17:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.442700", + "Timestamp": "2024-05-16T04:17:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.317700", + "Timestamp": "2024-05-16T04:17:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.166900", + "Timestamp": "2024-05-16T04:17:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.888800", + "Timestamp": "2024-05-16T04:17:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.858800", + "Timestamp": "2024-05-16T04:17:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.758800", + "Timestamp": "2024-05-16T04:17:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.588200", + "Timestamp": "2024-05-16T04:17:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133000", + "Timestamp": "2024-05-16T04:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129300", + "Timestamp": "2024-05-16T04:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073000", + "Timestamp": "2024-05-16T04:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.025900", + "Timestamp": "2024-05-16T04:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156800", + "Timestamp": "2024-05-16T04:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196800", + "Timestamp": "2024-05-16T04:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096800", + "Timestamp": "2024-05-16T04:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113700", + "Timestamp": "2024-05-16T04:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T04:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053700", + "Timestamp": "2024-05-16T04:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075700", + "Timestamp": "2024-05-16T04:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.046700", + "Timestamp": "2024-05-16T04:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015700", + "Timestamp": "2024-05-16T04:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.105500", + "Timestamp": "2024-05-16T04:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.100500", + "Timestamp": "2024-05-16T04:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.975500", + "Timestamp": "2024-05-16T04:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.573400", + "Timestamp": "2024-05-16T04:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330200", + "Timestamp": "2024-05-16T04:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325200", + "Timestamp": "2024-05-16T04:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200200", + "Timestamp": "2024-05-16T04:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.249000", + "Timestamp": "2024-05-16T04:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.558600", + "Timestamp": "2024-05-16T04:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.553600", + "Timestamp": "2024-05-16T04:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.428600", + "Timestamp": "2024-05-16T04:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.254800", + "Timestamp": "2024-05-16T04:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.249800", + "Timestamp": "2024-05-16T04:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.124800", + "Timestamp": "2024-05-16T04:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.130600", + "Timestamp": "2024-05-16T04:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.211700", + "Timestamp": "2024-05-16T04:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.206700", + "Timestamp": "2024-05-16T04:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.081700", + "Timestamp": "2024-05-16T04:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.500700", + "Timestamp": "2024-05-16T04:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.771900", + "Timestamp": "2024-05-16T04:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.741900", + "Timestamp": "2024-05-16T04:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.641900", + "Timestamp": "2024-05-16T04:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.149700", + "Timestamp": "2024-05-16T04:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.657800", + "Timestamp": "2024-05-16T04:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.263500", + "Timestamp": "2024-05-16T04:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258500", + "Timestamp": "2024-05-16T04:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.133500", + "Timestamp": "2024-05-16T04:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129800", + "Timestamp": "2024-05-16T04:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125800", + "Timestamp": "2024-05-16T04:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069800", + "Timestamp": "2024-05-16T04:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.136400", + "Timestamp": "2024-05-16T04:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.131400", + "Timestamp": "2024-05-16T04:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.006400", + "Timestamp": "2024-05-16T04:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.343900", + "Timestamp": "2024-05-16T04:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.338900", + "Timestamp": "2024-05-16T04:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.213900", + "Timestamp": "2024-05-16T04:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.421400", + "Timestamp": "2024-05-16T04:17:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064300", + "Timestamp": "2024-05-16T04:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004300", + "Timestamp": "2024-05-16T04:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004300", + "Timestamp": "2024-05-16T04:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.329200", + "Timestamp": "2024-05-16T04:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324200", + "Timestamp": "2024-05-16T04:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199200", + "Timestamp": "2024-05-16T04:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.924900", + "Timestamp": "2024-05-16T04:17:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121900", + "Timestamp": "2024-05-16T04:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118200", + "Timestamp": "2024-05-16T04:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061900", + "Timestamp": "2024-05-16T04:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.307500", + "Timestamp": "2024-05-16T04:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.336000", + "Timestamp": "2024-05-16T04:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.890600", + "Timestamp": "2024-05-16T04:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.570200", + "Timestamp": "2024-05-16T04:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.140000", + "Timestamp": "2024-05-16T04:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.560400", + "Timestamp": "2024-05-16T04:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.384000", + "Timestamp": "2024-05-16T04:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.543700", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.538700", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.413700", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.516900", + "Timestamp": "2024-05-16T04:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.511900", + "Timestamp": "2024-05-16T04:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.386900", + "Timestamp": "2024-05-16T04:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.291400", + "Timestamp": "2024-05-16T04:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.261400", + "Timestamp": "2024-05-16T04:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.161400", + "Timestamp": "2024-05-16T04:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077600", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073900", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017600", + "Timestamp": "2024-05-16T04:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.812600", + "Timestamp": "2024-05-16T04:16:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.136600", + "Timestamp": "2024-05-16T04:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160400", + "Timestamp": "2024-05-16T04:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156700", + "Timestamp": "2024-05-16T04:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100400", + "Timestamp": "2024-05-16T04:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.031500", + "Timestamp": "2024-05-16T04:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.456900", + "Timestamp": "2024-05-16T04:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.451900", + "Timestamp": "2024-05-16T04:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.326900", + "Timestamp": "2024-05-16T04:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.267800", + "Timestamp": "2024-05-16T04:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.409200", + "Timestamp": "2024-05-16T04:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.404200", + "Timestamp": "2024-05-16T04:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.279200", + "Timestamp": "2024-05-16T04:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.518900", + "Timestamp": "2024-05-16T04:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.488900", + "Timestamp": "2024-05-16T04:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.388900", + "Timestamp": "2024-05-16T04:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.400400", + "Timestamp": "2024-05-16T04:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.370400", + "Timestamp": "2024-05-16T04:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.270400", + "Timestamp": "2024-05-16T04:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.938400", + "Timestamp": "2024-05-16T04:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.933400", + "Timestamp": "2024-05-16T04:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.808400", + "Timestamp": "2024-05-16T04:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.123700", + "Timestamp": "2024-05-16T04:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074300", + "Timestamp": "2024-05-16T04:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070600", + "Timestamp": "2024-05-16T04:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014300", + "Timestamp": "2024-05-16T04:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.262700", + "Timestamp": "2024-05-16T04:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.257700", + "Timestamp": "2024-05-16T04:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.132700", + "Timestamp": "2024-05-16T04:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.769200", + "Timestamp": "2024-05-16T04:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.121100", + "Timestamp": "2024-05-16T04:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.091100", + "Timestamp": "2024-05-16T04:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.991100", + "Timestamp": "2024-05-16T04:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.693700", + "Timestamp": "2024-05-16T04:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089400", + "Timestamp": "2024-05-16T04:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085700", + "Timestamp": "2024-05-16T04:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029400", + "Timestamp": "2024-05-16T04:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.854400", + "Timestamp": "2024-05-16T04:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.849400", + "Timestamp": "2024-05-16T04:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.724400", + "Timestamp": "2024-05-16T04:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.270600", + "Timestamp": "2024-05-16T04:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.265600", + "Timestamp": "2024-05-16T04:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.140600", + "Timestamp": "2024-05-16T04:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.104000", + "Timestamp": "2024-05-16T04:02:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119000", + "Timestamp": "2024-05-16T04:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115300", + "Timestamp": "2024-05-16T04:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059000", + "Timestamp": "2024-05-16T04:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.646600", + "Timestamp": "2024-05-16T04:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.080300", + "Timestamp": "2024-05-16T04:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.511200", + "Timestamp": "2024-05-16T04:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.506200", + "Timestamp": "2024-05-16T04:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.381200", + "Timestamp": "2024-05-16T04:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.518300", + "Timestamp": "2024-05-16T04:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.513300", + "Timestamp": "2024-05-16T04:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.388300", + "Timestamp": "2024-05-16T04:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.115500", + "Timestamp": "2024-05-16T04:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.110500", + "Timestamp": "2024-05-16T04:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.985500", + "Timestamp": "2024-05-16T04:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.434800", + "Timestamp": "2024-05-16T04:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133900", + "Timestamp": "2024-05-16T04:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130200", + "Timestamp": "2024-05-16T04:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073900", + "Timestamp": "2024-05-16T04:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.268800", + "Timestamp": "2024-05-16T04:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.374900", + "Timestamp": "2024-05-16T04:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.369900", + "Timestamp": "2024-05-16T04:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.244900", + "Timestamp": "2024-05-16T04:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.037400", + "Timestamp": "2024-05-16T04:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.007400", + "Timestamp": "2024-05-16T04:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.907400", + "Timestamp": "2024-05-16T04:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.164600", + "Timestamp": "2024-05-16T03:47:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.215400", + "Timestamp": "2024-05-16T03:47:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.212400", + "Timestamp": "2024-05-16T03:47:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "z1d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.155400", + "Timestamp": "2024-05-16T03:47:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.259600", + "Timestamp": "2024-05-16T03:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.254600", + "Timestamp": "2024-05-16T03:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.129600", + "Timestamp": "2024-05-16T03:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140800", + "Timestamp": "2024-05-16T03:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136800", + "Timestamp": "2024-05-16T03:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080800", + "Timestamp": "2024-05-16T03:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.565400", + "Timestamp": "2024-05-16T03:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.560400", + "Timestamp": "2024-05-16T03:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.435400", + "Timestamp": "2024-05-16T03:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.334000", + "Timestamp": "2024-05-16T03:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.304000", + "Timestamp": "2024-05-16T03:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.204000", + "Timestamp": "2024-05-16T03:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.754000", + "Timestamp": "2024-05-16T03:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.442700", + "Timestamp": "2024-05-16T03:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.437700", + "Timestamp": "2024-05-16T03:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.312700", + "Timestamp": "2024-05-16T03:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076900", + "Timestamp": "2024-05-16T03:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073200", + "Timestamp": "2024-05-16T03:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016900", + "Timestamp": "2024-05-16T03:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.965900", + "Timestamp": "2024-05-16T03:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.105300", + "Timestamp": "2024-05-16T03:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.100300", + "Timestamp": "2024-05-16T03:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.975300", + "Timestamp": "2024-05-16T03:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.621000", + "Timestamp": "2024-05-16T03:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.616000", + "Timestamp": "2024-05-16T03:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.491000", + "Timestamp": "2024-05-16T03:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.000700", + "Timestamp": "2024-05-16T03:47:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.664100", + "Timestamp": "2024-05-16T03:47:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.659100", + "Timestamp": "2024-05-16T03:47:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.534100", + "Timestamp": "2024-05-16T03:47:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.088500", + "Timestamp": "2024-05-16T03:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.083500", + "Timestamp": "2024-05-16T03:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.958500", + "Timestamp": "2024-05-16T03:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.201800", + "Timestamp": "2024-05-16T03:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198100", + "Timestamp": "2024-05-16T03:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141800", + "Timestamp": "2024-05-16T03:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.507600", + "Timestamp": "2024-05-16T03:46:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.514600", + "Timestamp": "2024-05-16T03:46:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.562600", + "Timestamp": "2024-05-16T03:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.532600", + "Timestamp": "2024-05-16T03:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.432600", + "Timestamp": "2024-05-16T03:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.070400", + "Timestamp": "2024-05-16T03:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.065400", + "Timestamp": "2024-05-16T03:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.940400", + "Timestamp": "2024-05-16T03:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.459100", + "Timestamp": "2024-05-16T03:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.454100", + "Timestamp": "2024-05-16T03:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.329100", + "Timestamp": "2024-05-16T03:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.607200", + "Timestamp": "2024-05-16T03:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.602200", + "Timestamp": "2024-05-16T03:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.477200", + "Timestamp": "2024-05-16T03:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.322000", + "Timestamp": "2024-05-16T03:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135200", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131200", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075200", + "Timestamp": "2024-05-16T03:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.137900", + "Timestamp": "2024-05-16T03:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.999400", + "Timestamp": "2024-05-16T03:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.994400", + "Timestamp": "2024-05-16T03:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.869400", + "Timestamp": "2024-05-16T03:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.237200", + "Timestamp": "2024-05-16T03:46:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.128700", + "Timestamp": "2024-05-16T03:46:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.123700", + "Timestamp": "2024-05-16T03:46:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.998700", + "Timestamp": "2024-05-16T03:46:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.484300", + "Timestamp": "2024-05-16T03:32:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.479300", + "Timestamp": "2024-05-16T03:32:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.354300", + "Timestamp": "2024-05-16T03:32:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136000", + "Timestamp": "2024-05-16T03:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132300", + "Timestamp": "2024-05-16T03:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076000", + "Timestamp": "2024-05-16T03:32:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133200", + "Timestamp": "2024-05-16T03:32:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129200", + "Timestamp": "2024-05-16T03:32:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073200", + "Timestamp": "2024-05-16T03:32:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.054200", + "Timestamp": "2024-05-16T03:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.034500", + "Timestamp": "2024-05-16T03:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121100", + "Timestamp": "2024-05-16T03:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176700", + "Timestamp": "2024-05-16T03:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173000", + "Timestamp": "2024-05-16T03:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116700", + "Timestamp": "2024-05-16T03:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.385200", + "Timestamp": "2024-05-16T03:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.380200", + "Timestamp": "2024-05-16T03:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.255200", + "Timestamp": "2024-05-16T03:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125700", + "Timestamp": "2024-05-16T03:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.539200", + "Timestamp": "2024-05-16T03:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.534200", + "Timestamp": "2024-05-16T03:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.409200", + "Timestamp": "2024-05-16T03:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080200", + "Timestamp": "2024-05-16T03:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076500", + "Timestamp": "2024-05-16T03:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020200", + "Timestamp": "2024-05-16T03:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.138400", + "Timestamp": "2024-05-16T03:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.133400", + "Timestamp": "2024-05-16T03:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.008400", + "Timestamp": "2024-05-16T03:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.958800", + "Timestamp": "2024-05-16T03:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.072700", + "Timestamp": "2024-05-16T03:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.503100", + "Timestamp": "2024-05-16T03:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.498100", + "Timestamp": "2024-05-16T03:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.373100", + "Timestamp": "2024-05-16T03:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.313000", + "Timestamp": "2024-05-16T03:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.308000", + "Timestamp": "2024-05-16T03:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.183000", + "Timestamp": "2024-05-16T03:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.447400", + "Timestamp": "2024-05-16T03:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.417400", + "Timestamp": "2024-05-16T03:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.317400", + "Timestamp": "2024-05-16T03:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.963800", + "Timestamp": "2024-05-16T03:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294700", + "Timestamp": "2024-05-16T03:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289700", + "Timestamp": "2024-05-16T03:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164700", + "Timestamp": "2024-05-16T03:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.685400", + "Timestamp": "2024-05-16T03:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.680400", + "Timestamp": "2024-05-16T03:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.555400", + "Timestamp": "2024-05-16T03:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.261300", + "Timestamp": "2024-05-16T03:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T03:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "p3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.162600", + "Timestamp": "2024-05-16T03:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128500", + "Timestamp": "2024-05-16T03:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.781200", + "Timestamp": "2024-05-16T03:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.136400", + "Timestamp": "2024-05-16T03:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.131400", + "Timestamp": "2024-05-16T03:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.006400", + "Timestamp": "2024-05-16T03:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.462300", + "Timestamp": "2024-05-16T03:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.102400", + "Timestamp": "2024-05-16T03:31:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.097400", + "Timestamp": "2024-05-16T03:31:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.972400", + "Timestamp": "2024-05-16T03:31:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.277400", + "Timestamp": "2024-05-16T03:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.272400", + "Timestamp": "2024-05-16T03:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.147400", + "Timestamp": "2024-05-16T03:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.720700", + "Timestamp": "2024-05-16T03:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.715700", + "Timestamp": "2024-05-16T03:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.590700", + "Timestamp": "2024-05-16T03:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.826300", + "Timestamp": "2024-05-16T03:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.821300", + "Timestamp": "2024-05-16T03:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.696300", + "Timestamp": "2024-05-16T03:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.385700", + "Timestamp": "2024-05-16T03:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.380700", + "Timestamp": "2024-05-16T03:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.255700", + "Timestamp": "2024-05-16T03:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.489200", + "Timestamp": "2024-05-16T03:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136700", + "Timestamp": "2024-05-16T03:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132700", + "Timestamp": "2024-05-16T03:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "z1d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076700", + "Timestamp": "2024-05-16T03:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.337800", + "Timestamp": "2024-05-16T03:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.332800", + "Timestamp": "2024-05-16T03:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.207800", + "Timestamp": "2024-05-16T03:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.925300", + "Timestamp": "2024-05-16T03:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.280500", + "Timestamp": "2024-05-16T03:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106000", + "Timestamp": "2024-05-16T03:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102300", + "Timestamp": "2024-05-16T03:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046000", + "Timestamp": "2024-05-16T03:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.126700", + "Timestamp": "2024-05-16T03:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.280300", + "Timestamp": "2024-05-16T03:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.275300", + "Timestamp": "2024-05-16T03:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.150300", + "Timestamp": "2024-05-16T03:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.403200", + "Timestamp": "2024-05-16T03:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.398200", + "Timestamp": "2024-05-16T03:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.273200", + "Timestamp": "2024-05-16T03:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.430700", + "Timestamp": "2024-05-16T03:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.425700", + "Timestamp": "2024-05-16T03:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.300700", + "Timestamp": "2024-05-16T03:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.802500", + "Timestamp": "2024-05-16T03:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.797500", + "Timestamp": "2024-05-16T03:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.672500", + "Timestamp": "2024-05-16T03:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T03:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093400", + "Timestamp": "2024-05-16T03:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037100", + "Timestamp": "2024-05-16T03:16:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.359100", + "Timestamp": "2024-05-16T03:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.987900", + "Timestamp": "2024-05-16T03:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.800800", + "Timestamp": "2024-05-16T03:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.891500", + "Timestamp": "2024-05-16T03:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.886500", + "Timestamp": "2024-05-16T03:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.761500", + "Timestamp": "2024-05-16T03:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "12.224300", + "Timestamp": "2024-05-16T03:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.335700", + "Timestamp": "2024-05-16T03:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118700", + "Timestamp": "2024-05-16T03:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115000", + "Timestamp": "2024-05-16T03:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058700", + "Timestamp": "2024-05-16T03:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.963400", + "Timestamp": "2024-05-16T03:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.933400", + "Timestamp": "2024-05-16T03:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.833400", + "Timestamp": "2024-05-16T03:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129400", + "Timestamp": "2024-05-16T03:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125700", + "Timestamp": "2024-05-16T03:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069400", + "Timestamp": "2024-05-16T03:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.504800", + "Timestamp": "2024-05-16T03:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.850500", + "Timestamp": "2024-05-16T03:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.820500", + "Timestamp": "2024-05-16T03:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.720500", + "Timestamp": "2024-05-16T03:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.559300", + "Timestamp": "2024-05-16T03:16:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.554300", + "Timestamp": "2024-05-16T03:16:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.429300", + "Timestamp": "2024-05-16T03:16:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.308200", + "Timestamp": "2024-05-16T03:02:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.151200", + "Timestamp": "2024-05-16T03:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.146200", + "Timestamp": "2024-05-16T03:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.021200", + "Timestamp": "2024-05-16T03:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.255700", + "Timestamp": "2024-05-16T03:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.250700", + "Timestamp": "2024-05-16T03:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125700", + "Timestamp": "2024-05-16T03:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.245700", + "Timestamp": "2024-05-16T03:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.240700", + "Timestamp": "2024-05-16T03:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.115700", + "Timestamp": "2024-05-16T03:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.607100", + "Timestamp": "2024-05-16T03:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.602100", + "Timestamp": "2024-05-16T03:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.477100", + "Timestamp": "2024-05-16T03:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.528900", + "Timestamp": "2024-05-16T03:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.523900", + "Timestamp": "2024-05-16T03:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.398900", + "Timestamp": "2024-05-16T03:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118300", + "Timestamp": "2024-05-16T03:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T03:02:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098400", + "Timestamp": "2024-05-16T03:02:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042100", + "Timestamp": "2024-05-16T03:02:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.133100", + "Timestamp": "2024-05-16T03:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.967000", + "Timestamp": "2024-05-16T03:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103900", + "Timestamp": "2024-05-16T03:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-16T03:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043900", + "Timestamp": "2024-05-16T03:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.295800", + "Timestamp": "2024-05-16T03:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265800", + "Timestamp": "2024-05-16T03:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165800", + "Timestamp": "2024-05-16T03:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.353700", + "Timestamp": "2024-05-16T03:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.121600", + "Timestamp": "2024-05-16T03:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.091600", + "Timestamp": "2024-05-16T03:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.991600", + "Timestamp": "2024-05-16T03:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.543500", + "Timestamp": "2024-05-16T03:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.953800", + "Timestamp": "2024-05-16T03:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.948800", + "Timestamp": "2024-05-16T03:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.823800", + "Timestamp": "2024-05-16T03:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.044800", + "Timestamp": "2024-05-16T02:47:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.937000", + "Timestamp": "2024-05-16T02:47:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095500", + "Timestamp": "2024-05-16T02:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T02:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035500", + "Timestamp": "2024-05-16T02:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.182500", + "Timestamp": "2024-05-16T02:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.178500", + "Timestamp": "2024-05-16T02:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122500", + "Timestamp": "2024-05-16T02:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.898700", + "Timestamp": "2024-05-16T02:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.747000", + "Timestamp": "2024-05-16T02:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.127400", + "Timestamp": "2024-05-16T02:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.080900", + "Timestamp": "2024-05-16T02:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.050900", + "Timestamp": "2024-05-16T02:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.950900", + "Timestamp": "2024-05-16T02:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.621100", + "Timestamp": "2024-05-16T02:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.616100", + "Timestamp": "2024-05-16T02:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.491100", + "Timestamp": "2024-05-16T02:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.991000", + "Timestamp": "2024-05-16T02:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097900", + "Timestamp": "2024-05-16T02:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094200", + "Timestamp": "2024-05-16T02:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037900", + "Timestamp": "2024-05-16T02:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.652000", + "Timestamp": "2024-05-16T02:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.270900", + "Timestamp": "2024-05-16T02:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T02:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T02:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049400", + "Timestamp": "2024-05-16T02:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.381400", + "Timestamp": "2024-05-16T02:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.376400", + "Timestamp": "2024-05-16T02:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.251400", + "Timestamp": "2024-05-16T02:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.238300", + "Timestamp": "2024-05-16T02:32:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.233300", + "Timestamp": "2024-05-16T02:32:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.108300", + "Timestamp": "2024-05-16T02:32:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.032300", + "Timestamp": "2024-05-16T02:32:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068200", + "Timestamp": "2024-05-16T02:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038200", + "Timestamp": "2024-05-16T02:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008200", + "Timestamp": "2024-05-16T02:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.047300", + "Timestamp": "2024-05-16T02:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270600", + "Timestamp": "2024-05-16T02:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267600", + "Timestamp": "2024-05-16T02:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.210600", + "Timestamp": "2024-05-16T02:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.482500", + "Timestamp": "2024-05-16T02:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123900", + "Timestamp": "2024-05-16T02:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119900", + "Timestamp": "2024-05-16T02:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063900", + "Timestamp": "2024-05-16T02:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T02:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104700", + "Timestamp": "2024-05-16T02:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048700", + "Timestamp": "2024-05-16T02:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063900", + "Timestamp": "2024-05-16T02:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003900", + "Timestamp": "2024-05-16T02:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003900", + "Timestamp": "2024-05-16T02:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107100", + "Timestamp": "2024-05-16T02:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103400", + "Timestamp": "2024-05-16T02:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047100", + "Timestamp": "2024-05-16T02:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T02:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-16T02:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046600", + "Timestamp": "2024-05-16T02:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096200", + "Timestamp": "2024-05-16T02:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092500", + "Timestamp": "2024-05-16T02:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036200", + "Timestamp": "2024-05-16T02:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.115200", + "Timestamp": "2024-05-16T02:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.085200", + "Timestamp": "2024-05-16T02:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.985200", + "Timestamp": "2024-05-16T02:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.360500", + "Timestamp": "2024-05-16T02:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.123900", + "Timestamp": "2024-05-16T02:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.275600", + "Timestamp": "2024-05-16T02:17:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.054200", + "Timestamp": "2024-05-16T02:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.204600", + "Timestamp": "2024-05-16T02:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119100", + "Timestamp": "2024-05-16T02:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115100", + "Timestamp": "2024-05-16T02:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059100", + "Timestamp": "2024-05-16T02:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121900", + "Timestamp": "2024-05-16T02:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076600", + "Timestamp": "2024-05-16T02:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047600", + "Timestamp": "2024-05-16T02:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016600", + "Timestamp": "2024-05-16T02:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.149600", + "Timestamp": "2024-05-16T02:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.028300", + "Timestamp": "2024-05-16T02:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063800", + "Timestamp": "2024-05-16T02:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003800", + "Timestamp": "2024-05-16T02:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003800", + "Timestamp": "2024-05-16T02:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143400", + "Timestamp": "2024-05-16T02:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139700", + "Timestamp": "2024-05-16T02:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083400", + "Timestamp": "2024-05-16T02:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.174100", + "Timestamp": "2024-05-16T02:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093100", + "Timestamp": "2024-05-16T02:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089400", + "Timestamp": "2024-05-16T02:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033100", + "Timestamp": "2024-05-16T02:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.811100", + "Timestamp": "2024-05-16T01:47:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113300", + "Timestamp": "2024-05-16T01:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-16T01:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053300", + "Timestamp": "2024-05-16T01:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150400", + "Timestamp": "2024-05-16T01:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146400", + "Timestamp": "2024-05-16T01:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090400", + "Timestamp": "2024-05-16T01:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073900", + "Timestamp": "2024-05-16T01:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044900", + "Timestamp": "2024-05-16T01:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013900", + "Timestamp": "2024-05-16T01:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211700", + "Timestamp": "2024-05-16T01:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "z1d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.157300", + "Timestamp": "2024-05-16T01:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.494200", + "Timestamp": "2024-05-16T01:46:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-16T01:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093500", + "Timestamp": "2024-05-16T01:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037200", + "Timestamp": "2024-05-16T01:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127700", + "Timestamp": "2024-05-16T01:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124000", + "Timestamp": "2024-05-16T01:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067700", + "Timestamp": "2024-05-16T01:32:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.239000", + "Timestamp": "2024-05-16T01:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134800", + "Timestamp": "2024-05-16T01:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131100", + "Timestamp": "2024-05-16T01:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074800", + "Timestamp": "2024-05-16T01:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128000", + "Timestamp": "2024-05-16T01:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.490600", + "Timestamp": "2024-05-16T01:17:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.286300", + "Timestamp": "2024-05-16T01:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099500", + "Timestamp": "2024-05-16T01:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095800", + "Timestamp": "2024-05-16T01:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039500", + "Timestamp": "2024-05-16T01:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074700", + "Timestamp": "2024-05-16T01:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.045700", + "Timestamp": "2024-05-16T01:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014700", + "Timestamp": "2024-05-16T01:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.240900", + "Timestamp": "2024-05-16T01:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.235900", + "Timestamp": "2024-05-16T01:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110900", + "Timestamp": "2024-05-16T01:02:41.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.194300", + "Timestamp": "2024-05-16T01:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190600", + "Timestamp": "2024-05-16T01:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T01:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T01:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T01:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054600", + "Timestamp": "2024-05-16T01:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211700", + "Timestamp": "2024-05-16T01:02:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.245200", + "Timestamp": "2024-05-16T01:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096600", + "Timestamp": "2024-05-16T01:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092900", + "Timestamp": "2024-05-16T01:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036600", + "Timestamp": "2024-05-16T01:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6id.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.264800", + "Timestamp": "2024-05-16T01:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148700", + "Timestamp": "2024-05-16T00:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.188700", + "Timestamp": "2024-05-16T00:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088700", + "Timestamp": "2024-05-16T00:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.294000", + "Timestamp": "2024-05-16T00:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.264000", + "Timestamp": "2024-05-16T00:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.164000", + "Timestamp": "2024-05-16T00:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.058800", + "Timestamp": "2024-05-16T00:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.130500", + "Timestamp": "2024-05-16T00:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.052900", + "Timestamp": "2024-05-16T00:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.132200", + "Timestamp": "2024-05-16T00:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.017300", + "Timestamp": "2024-05-16T00:18:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.079900", + "Timestamp": "2024-05-16T00:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127200", + "Timestamp": "2024-05-16T00:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123500", + "Timestamp": "2024-05-16T00:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067200", + "Timestamp": "2024-05-16T00:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.025300", + "Timestamp": "2024-05-16T00:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118400", + "Timestamp": "2024-05-16T00:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158400", + "Timestamp": "2024-05-16T00:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058400", + "Timestamp": "2024-05-16T00:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125100", + "Timestamp": "2024-05-16T00:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121400", + "Timestamp": "2024-05-16T00:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065100", + "Timestamp": "2024-05-16T00:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.249200", + "Timestamp": "2024-05-16T00:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.249200", + "Timestamp": "2024-05-16T00:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-16T00:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110900", + "Timestamp": "2024-05-16T00:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054600", + "Timestamp": "2024-05-16T00:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.568600", + "Timestamp": "2024-05-16T00:06:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.568600", + "Timestamp": "2024-05-16T00:06:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.568600", + "Timestamp": "2024-05-16T00:06:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076600", + "Timestamp": "2024-05-16T00:03:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047600", + "Timestamp": "2024-05-16T00:03:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016600", + "Timestamp": "2024-05-16T00:03:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068300", + "Timestamp": "2024-05-16T00:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039300", + "Timestamp": "2024-05-16T00:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008300", + "Timestamp": "2024-05-16T00:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.056400", + "Timestamp": "2024-05-16T00:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T00:01:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-16T00:01:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041200", + "Timestamp": "2024-05-16T00:01:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.443200", + "Timestamp": "2024-05-15T23:52:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.006400", + "Timestamp": "2024-05-15T23:48:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138600", + "Timestamp": "2024-05-15T23:47:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.178600", + "Timestamp": "2024-05-15T23:47:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078600", + "Timestamp": "2024-05-15T23:47:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.440500", + "Timestamp": "2024-05-15T23:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.435500", + "Timestamp": "2024-05-15T23:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.310500", + "Timestamp": "2024-05-15T23:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.121300", + "Timestamp": "2024-05-15T23:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064100", + "Timestamp": "2024-05-15T23:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004100", + "Timestamp": "2024-05-15T23:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004100", + "Timestamp": "2024-05-15T23:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.596000", + "Timestamp": "2024-05-15T23:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.591000", + "Timestamp": "2024-05-15T23:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.466000", + "Timestamp": "2024-05-15T23:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.529800", + "Timestamp": "2024-05-15T23:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079300", + "Timestamp": "2024-05-15T23:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075600", + "Timestamp": "2024-05-15T23:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019300", + "Timestamp": "2024-05-15T23:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.195000", + "Timestamp": "2024-05-15T23:19:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.123600", + "Timestamp": "2024-05-15T23:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.508900", + "Timestamp": "2024-05-15T23:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063800", + "Timestamp": "2024-05-15T23:10:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064300", + "Timestamp": "2024-05-15T23:10:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064700", + "Timestamp": "2024-05-15T23:10:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003800", + "Timestamp": "2024-05-15T23:10:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004300", + "Timestamp": "2024-05-15T23:10:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004700", + "Timestamp": "2024-05-15T23:10:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003800", + "Timestamp": "2024-05-15T23:10:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004300", + "Timestamp": "2024-05-15T23:10:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004700", + "Timestamp": "2024-05-15T23:10:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.008500", + "Timestamp": "2024-05-15T23:09:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.033900", + "Timestamp": "2024-05-15T23:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-15T23:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102400", + "Timestamp": "2024-05-15T23:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046100", + "Timestamp": "2024-05-15T23:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062400", + "Timestamp": "2024-05-15T23:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002400", + "Timestamp": "2024-05-15T23:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002400", + "Timestamp": "2024-05-15T23:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-15T22:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039800", + "Timestamp": "2024-05-15T22:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008800", + "Timestamp": "2024-05-15T22:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.971100", + "Timestamp": "2024-05-15T22:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064000", + "Timestamp": "2024-05-15T22:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063800", + "Timestamp": "2024-05-15T22:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004000", + "Timestamp": "2024-05-15T22:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003800", + "Timestamp": "2024-05-15T22:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004000", + "Timestamp": "2024-05-15T22:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003800", + "Timestamp": "2024-05-15T22:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.012200", + "Timestamp": "2024-05-15T22:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.012500", + "Timestamp": "2024-05-15T22:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.012400", + "Timestamp": "2024-05-15T22:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079400", + "Timestamp": "2024-05-15T22:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119400", + "Timestamp": "2024-05-15T22:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019400", + "Timestamp": "2024-05-15T22:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.726600", + "Timestamp": "2024-05-15T22:46:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.726600", + "Timestamp": "2024-05-15T22:46:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.782700", + "Timestamp": "2024-05-15T22:45:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.578100", + "Timestamp": "2024-05-15T22:45:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.578100", + "Timestamp": "2024-05-15T22:45:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.568600", + "Timestamp": "2024-05-15T22:44:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.568600", + "Timestamp": "2024-05-15T22:44:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.025900", + "Timestamp": "2024-05-15T22:44:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.463900", + "Timestamp": "2024-05-15T22:44:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.463900", + "Timestamp": "2024-05-15T22:44:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160200", + "Timestamp": "2024-05-15T22:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156500", + "Timestamp": "2024-05-15T22:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-15T22:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.139200", + "Timestamp": "2024-05-15T22:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.757800", + "Timestamp": "2024-05-15T22:22:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.757800", + "Timestamp": "2024-05-15T22:22:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062300", + "Timestamp": "2024-05-15T22:20:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002300", + "Timestamp": "2024-05-15T22:20:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002300", + "Timestamp": "2024-05-15T22:20:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-15T22:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.150300", + "Timestamp": "2024-05-15T22:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162100", + "Timestamp": "2024-05-15T22:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.158100", + "Timestamp": "2024-05-15T22:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-15T22:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.126500", + "Timestamp": "2024-05-15T22:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.255500", + "Timestamp": "2024-05-15T22:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104100", + "Timestamp": "2024-05-15T22:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100400", + "Timestamp": "2024-05-15T22:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044100", + "Timestamp": "2024-05-15T22:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.837400", + "Timestamp": "2024-05-15T22:14:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-15T22:09:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-15T22:09:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039800", + "Timestamp": "2024-05-15T22:09:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039800", + "Timestamp": "2024-05-15T22:09:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008800", + "Timestamp": "2024-05-15T22:09:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008800", + "Timestamp": "2024-05-15T22:09:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.026100", + "Timestamp": "2024-05-15T22:09:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.124400", + "Timestamp": "2024-05-15T22:07:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062400", + "Timestamp": "2024-05-15T22:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002400", + "Timestamp": "2024-05-15T22:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002400", + "Timestamp": "2024-05-15T22:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094200", + "Timestamp": "2024-05-15T22:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090500", + "Timestamp": "2024-05-15T22:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034200", + "Timestamp": "2024-05-15T22:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077800", + "Timestamp": "2024-05-15T22:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074100", + "Timestamp": "2024-05-15T22:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017800", + "Timestamp": "2024-05-15T22:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.823000", + "Timestamp": "2024-05-15T21:57:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.217000", + "Timestamp": "2024-05-15T21:56:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.217000", + "Timestamp": "2024-05-15T21:56:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.187000", + "Timestamp": "2024-05-15T21:56:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.187000", + "Timestamp": "2024-05-15T21:56:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.087000", + "Timestamp": "2024-05-15T21:56:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.087000", + "Timestamp": "2024-05-15T21:56:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.876900", + "Timestamp": "2024-05-15T21:54:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.876900", + "Timestamp": "2024-05-15T21:54:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097800", + "Timestamp": "2024-05-15T21:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094100", + "Timestamp": "2024-05-15T21:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037800", + "Timestamp": "2024-05-15T21:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135400", + "Timestamp": "2024-05-15T21:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.175400", + "Timestamp": "2024-05-15T21:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075400", + "Timestamp": "2024-05-15T21:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.887200", + "Timestamp": "2024-05-15T21:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273100", + "Timestamp": "2024-05-15T21:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.243100", + "Timestamp": "2024-05-15T21:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143100", + "Timestamp": "2024-05-15T21:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.454600", + "Timestamp": "2024-05-15T21:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.449600", + "Timestamp": "2024-05-15T21:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.324600", + "Timestamp": "2024-05-15T21:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159100", + "Timestamp": "2024-05-15T21:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155400", + "Timestamp": "2024-05-15T21:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099100", + "Timestamp": "2024-05-15T21:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063200", + "Timestamp": "2024-05-15T21:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003200", + "Timestamp": "2024-05-15T21:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003200", + "Timestamp": "2024-05-15T21:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-15T21:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110500", + "Timestamp": "2024-05-15T21:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054500", + "Timestamp": "2024-05-15T21:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.484400", + "Timestamp": "2024-05-15T21:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.146500", + "Timestamp": "2024-05-15T21:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070500", + "Timestamp": "2024-05-15T21:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066800", + "Timestamp": "2024-05-15T21:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010500", + "Timestamp": "2024-05-15T21:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.033800", + "Timestamp": "2024-05-15T21:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133800", + "Timestamp": "2024-05-15T20:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130100", + "Timestamp": "2024-05-15T20:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073800", + "Timestamp": "2024-05-15T20:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.784300", + "Timestamp": "2024-05-15T20:42:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.784300", + "Timestamp": "2024-05-15T20:42:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.784300", + "Timestamp": "2024-05-15T20:42:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.312300", + "Timestamp": "2024-05-15T20:39:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.312300", + "Timestamp": "2024-05-15T20:39:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.312300", + "Timestamp": "2024-05-15T20:39:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132400", + "Timestamp": "2024-05-15T20:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128700", + "Timestamp": "2024-05-15T20:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.072400", + "Timestamp": "2024-05-15T20:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.527700", + "Timestamp": "2024-05-15T20:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.522700", + "Timestamp": "2024-05-15T20:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.397700", + "Timestamp": "2024-05-15T20:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.140000", + "Timestamp": "2024-05-15T20:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.523200", + "Timestamp": "2024-05-15T20:07:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.523200", + "Timestamp": "2024-05-15T20:07:45.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074100", + "Timestamp": "2024-05-15T20:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070400", + "Timestamp": "2024-05-15T20:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014100", + "Timestamp": "2024-05-15T20:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102200", + "Timestamp": "2024-05-15T20:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098500", + "Timestamp": "2024-05-15T20:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042200", + "Timestamp": "2024-05-15T20:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.349600", + "Timestamp": "2024-05-15T19:57:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.349600", + "Timestamp": "2024-05-15T19:57:30.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.238000", + "Timestamp": "2024-05-15T19:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080400", + "Timestamp": "2024-05-15T19:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120400", + "Timestamp": "2024-05-15T19:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020400", + "Timestamp": "2024-05-15T19:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156900", + "Timestamp": "2024-05-15T19:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153200", + "Timestamp": "2024-05-15T19:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096900", + "Timestamp": "2024-05-15T19:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119400", + "Timestamp": "2024-05-15T19:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126500", + "Timestamp": "2024-05-15T19:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122800", + "Timestamp": "2024-05-15T19:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066500", + "Timestamp": "2024-05-15T19:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063900", + "Timestamp": "2024-05-15T19:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003900", + "Timestamp": "2024-05-15T19:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003900", + "Timestamp": "2024-05-15T19:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.033600", + "Timestamp": "2024-05-15T19:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.899600", + "Timestamp": "2024-05-15T19:05:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-15T19:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-15T19:02:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063700", + "Timestamp": "2024-05-15T19:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003700", + "Timestamp": "2024-05-15T19:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003700", + "Timestamp": "2024-05-15T19:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.025700", + "Timestamp": "2024-05-15T18:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.538100", + "Timestamp": "2024-05-15T18:41:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.538100", + "Timestamp": "2024-05-15T18:41:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.768300", + "Timestamp": "2024-05-15T18:40:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.010300", + "Timestamp": "2024-05-15T18:40:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.005300", + "Timestamp": "2024-05-15T18:40:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.880300", + "Timestamp": "2024-05-15T18:40:34.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.076200", + "Timestamp": "2024-05-15T18:40:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.384200", + "Timestamp": "2024-05-15T18:40:16.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.846000", + "Timestamp": "2024-05-15T18:40:02.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.008300", + "Timestamp": "2024-05-15T18:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066000", + "Timestamp": "2024-05-15T18:13:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037300", + "Timestamp": "2024-05-15T18:13:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006000", + "Timestamp": "2024-05-15T18:13:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.453200", + "Timestamp": "2024-05-15T18:08:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.453200", + "Timestamp": "2024-05-15T18:08:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.453200", + "Timestamp": "2024-05-15T18:08:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.956000", + "Timestamp": "2024-05-15T17:56:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.676500", + "Timestamp": "2024-05-15T17:56:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.676500", + "Timestamp": "2024-05-15T17:56:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.676500", + "Timestamp": "2024-05-15T17:56:24.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.832000", + "Timestamp": "2024-05-15T17:56:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.872000", + "Timestamp": "2024-05-15T17:56:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.772000", + "Timestamp": "2024-05-15T17:56:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.304000", + "Timestamp": "2024-05-15T17:56:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.304000", + "Timestamp": "2024-05-15T17:56:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.274000", + "Timestamp": "2024-05-15T17:56:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.274000", + "Timestamp": "2024-05-15T17:56:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.174000", + "Timestamp": "2024-05-15T17:56:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.174000", + "Timestamp": "2024-05-15T17:56:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.830000", + "Timestamp": "2024-05-15T17:55:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.830000", + "Timestamp": "2024-05-15T17:55:56.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.331400", + "Timestamp": "2024-05-15T17:53:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.331400", + "Timestamp": "2024-05-15T17:53:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.331400", + "Timestamp": "2024-05-15T17:53:48.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067200", + "Timestamp": "2024-05-15T17:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038500", + "Timestamp": "2024-05-15T17:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007200", + "Timestamp": "2024-05-15T17:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.125500", + "Timestamp": "2024-05-15T17:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138100", + "Timestamp": "2024-05-15T17:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134100", + "Timestamp": "2024-05-15T17:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078100", + "Timestamp": "2024-05-15T17:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073600", + "Timestamp": "2024-05-15T17:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069900", + "Timestamp": "2024-05-15T17:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013600", + "Timestamp": "2024-05-15T17:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082300", + "Timestamp": "2024-05-15T17:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078600", + "Timestamp": "2024-05-15T17:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022300", + "Timestamp": "2024-05-15T17:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.120600", + "Timestamp": "2024-05-15T17:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062200", + "Timestamp": "2024-05-15T17:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002200", + "Timestamp": "2024-05-15T17:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002200", + "Timestamp": "2024-05-15T17:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.318000", + "Timestamp": "2024-05-15T17:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.313000", + "Timestamp": "2024-05-15T17:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.188000", + "Timestamp": "2024-05-15T17:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.211500", + "Timestamp": "2024-05-15T17:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181500", + "Timestamp": "2024-05-15T17:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081500", + "Timestamp": "2024-05-15T17:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.017800", + "Timestamp": "2024-05-15T16:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099100", + "Timestamp": "2024-05-15T16:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095100", + "Timestamp": "2024-05-15T16:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039100", + "Timestamp": "2024-05-15T16:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.034200", + "Timestamp": "2024-05-15T16:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120500", + "Timestamp": "2024-05-15T16:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160500", + "Timestamp": "2024-05-15T16:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060500", + "Timestamp": "2024-05-15T16:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.097600", + "Timestamp": "2024-05-15T16:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.008400", + "Timestamp": "2024-05-15T16:17:37.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.983300", + "Timestamp": "2024-05-15T16:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.978300", + "Timestamp": "2024-05-15T16:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.853300", + "Timestamp": "2024-05-15T16:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.761600", + "Timestamp": "2024-05-15T15:53:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.761600", + "Timestamp": "2024-05-15T15:53:08.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.515600", + "Timestamp": "2024-05-15T15:48:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "g3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.515600", + "Timestamp": "2024-05-15T15:48:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.012600", + "Timestamp": "2024-05-15T15:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.936900", + "Timestamp": "2024-05-15T15:42:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.936900", + "Timestamp": "2024-05-15T15:42:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.880800", + "Timestamp": "2024-05-15T15:39:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.880800", + "Timestamp": "2024-05-15T15:39:19.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067100", + "Timestamp": "2024-05-15T15:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038400", + "Timestamp": "2024-05-15T15:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007100", + "Timestamp": "2024-05-15T15:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070200", + "Timestamp": "2024-05-15T15:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-15T15:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010200", + "Timestamp": "2024-05-15T15:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.523200", + "Timestamp": "2024-05-15T15:30:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.523200", + "Timestamp": "2024-05-15T15:30:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.523200", + "Timestamp": "2024-05-15T15:30:40.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.074000", + "Timestamp": "2024-05-15T15:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070300", + "Timestamp": "2024-05-15T15:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6id.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014000", + "Timestamp": "2024-05-15T15:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.006100", + "Timestamp": "2024-05-15T15:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-15T15:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-15T15:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044900", + "Timestamp": "2024-05-15T15:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092400", + "Timestamp": "2024-05-15T14:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088700", + "Timestamp": "2024-05-15T14:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032400", + "Timestamp": "2024-05-15T14:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-15T14:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092800", + "Timestamp": "2024-05-15T14:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036500", + "Timestamp": "2024-05-15T14:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077600", + "Timestamp": "2024-05-15T13:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073900", + "Timestamp": "2024-05-15T13:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017600", + "Timestamp": "2024-05-15T13:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.026300", + "Timestamp": "2024-05-15T12:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.156200", + "Timestamp": "2024-05-15T12:25:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.156200", + "Timestamp": "2024-05-15T12:25:11.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.126600", + "Timestamp": "2024-05-15T12:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-15T12:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093200", + "Timestamp": "2024-05-15T12:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2b", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037200", + "Timestamp": "2024-05-15T12:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.624600", + "Timestamp": "2024-05-15T12:05:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.624600", + "Timestamp": "2024-05-15T12:05:44.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440400", + "Timestamp": "2024-05-15T11:53:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440400", + "Timestamp": "2024-05-15T11:53:47.000Z" + }, + { + "AvailabilityZone": "eu-west-2a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220200", + "Timestamp": "2024-05-15T11:36:42.000Z" + }, + { + "AvailabilityZone": "eu-west-2c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220200", + "Timestamp": "2024-05-15T11:36:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.476100", + "Timestamp": "2024-05-16T14:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.471100", + "Timestamp": "2024-05-16T14:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.346100", + "Timestamp": "2024-05-16T14:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437400", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.665700", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.667600", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.708600", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072500", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043500", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012500", + "Timestamp": "2024-05-16T14:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.522800", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.517800", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.392800", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.899700", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.894700", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.769700", + "Timestamp": "2024-05-16T14:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.880700", + "Timestamp": "2024-05-16T14:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.396800", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.391800", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.266800", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.195100", + "Timestamp": "2024-05-16T14:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.173100", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.168100", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.043100", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.977800", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.972800", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.847800", + "Timestamp": "2024-05-16T14:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216400", + "Timestamp": "2024-05-16T14:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.068700", + "Timestamp": "2024-05-16T14:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.038700", + "Timestamp": "2024-05-16T14:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.938700", + "Timestamp": "2024-05-16T14:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.322000", + "Timestamp": "2024-05-16T14:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.292000", + "Timestamp": "2024-05-16T14:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.192000", + "Timestamp": "2024-05-16T14:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.322300", + "Timestamp": "2024-05-16T14:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.292300", + "Timestamp": "2024-05-16T14:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.192300", + "Timestamp": "2024-05-16T14:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.472900", + "Timestamp": "2024-05-16T14:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.467900", + "Timestamp": "2024-05-16T14:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.342900", + "Timestamp": "2024-05-16T14:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.451000", + "Timestamp": "2024-05-16T14:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.446000", + "Timestamp": "2024-05-16T14:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.321000", + "Timestamp": "2024-05-16T14:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.466700", + "Timestamp": "2024-05-16T14:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.468600", + "Timestamp": "2024-05-16T14:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.443300", + "Timestamp": "2024-05-16T14:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231600", + "Timestamp": "2024-05-16T14:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.840000", + "Timestamp": "2024-05-16T14:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.835000", + "Timestamp": "2024-05-16T14:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.710000", + "Timestamp": "2024-05-16T14:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.465300", + "Timestamp": "2024-05-16T14:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.460300", + "Timestamp": "2024-05-16T14:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.335300", + "Timestamp": "2024-05-16T14:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.376200", + "Timestamp": "2024-05-16T14:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.346200", + "Timestamp": "2024-05-16T14:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.246200", + "Timestamp": "2024-05-16T14:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.975700", + "Timestamp": "2024-05-16T14:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.970700", + "Timestamp": "2024-05-16T14:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.845700", + "Timestamp": "2024-05-16T14:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.575600", + "Timestamp": "2024-05-16T14:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.570600", + "Timestamp": "2024-05-16T14:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.445600", + "Timestamp": "2024-05-16T14:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.897100", + "Timestamp": "2024-05-16T14:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.167800", + "Timestamp": "2024-05-16T14:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271900", + "Timestamp": "2024-05-16T14:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266900", + "Timestamp": "2024-05-16T14:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141900", + "Timestamp": "2024-05-16T14:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.380900", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.375900", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.250900", + "Timestamp": "2024-05-16T14:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062500", + "Timestamp": "2024-05-16T14:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-16T14:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-16T14:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.677500", + "Timestamp": "2024-05-16T14:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.898800", + "Timestamp": "2024-05-16T14:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.036500", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.031500", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.906500", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.363500", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.358500", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.233500", + "Timestamp": "2024-05-16T14:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.806900", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.512000", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.507000", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.382000", + "Timestamp": "2024-05-16T14:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.512600", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.237900", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232900", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107900", + "Timestamp": "2024-05-16T14:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.476000", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.679800", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.674800", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.549800", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.400900", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.395900", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.270900", + "Timestamp": "2024-05-16T14:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.480600", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.475600", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.350600", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.457700", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.427700", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.327700", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.438400", + "Timestamp": "2024-05-16T14:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.425100", + "Timestamp": "2024-05-16T14:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.013200", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.008200", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.883200", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.467700", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.462700", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.337700", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T14:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.392500", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.387500", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.262500", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.663400", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.658400", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.533400", + "Timestamp": "2024-05-16T14:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148600", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144900", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088600", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.590400", + "Timestamp": "2024-05-16T14:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431700", + "Timestamp": "2024-05-16T14:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166300", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162600", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T14:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119000", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115000", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059000", + "Timestamp": "2024-05-16T14:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.512400", + "Timestamp": "2024-05-16T14:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.507400", + "Timestamp": "2024-05-16T14:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.382400", + "Timestamp": "2024-05-16T14:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125800", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122100", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065800", + "Timestamp": "2024-05-16T13:47:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.823600", + "Timestamp": "2024-05-16T13:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.818600", + "Timestamp": "2024-05-16T13:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.693600", + "Timestamp": "2024-05-16T13:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.602000", + "Timestamp": "2024-05-16T13:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.522800", + "Timestamp": "2024-05-16T13:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.517800", + "Timestamp": "2024-05-16T13:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.392800", + "Timestamp": "2024-05-16T13:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.445900", + "Timestamp": "2024-05-16T13:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.440900", + "Timestamp": "2024-05-16T13:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.315900", + "Timestamp": "2024-05-16T13:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.603600", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.598600", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.473600", + "Timestamp": "2024-05-16T13:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.052800", + "Timestamp": "2024-05-16T13:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.047800", + "Timestamp": "2024-05-16T13:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.922800", + "Timestamp": "2024-05-16T13:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T13:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.408600", + "Timestamp": "2024-05-16T13:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.421500", + "Timestamp": "2024-05-16T13:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.269400", + "Timestamp": "2024-05-16T13:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.197100", + "Timestamp": "2024-05-16T13:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.564800", + "Timestamp": "2024-05-16T13:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.559800", + "Timestamp": "2024-05-16T13:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.434800", + "Timestamp": "2024-05-16T13:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.688200", + "Timestamp": "2024-05-16T13:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.683200", + "Timestamp": "2024-05-16T13:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.558200", + "Timestamp": "2024-05-16T13:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298900", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293900", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168900", + "Timestamp": "2024-05-16T13:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.431000", + "Timestamp": "2024-05-16T13:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.426000", + "Timestamp": "2024-05-16T13:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.301000", + "Timestamp": "2024-05-16T13:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.187400", + "Timestamp": "2024-05-16T13:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.182400", + "Timestamp": "2024-05-16T13:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.057400", + "Timestamp": "2024-05-16T13:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152400", + "Timestamp": "2024-05-16T13:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148700", + "Timestamp": "2024-05-16T13:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092400", + "Timestamp": "2024-05-16T13:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.757000", + "Timestamp": "2024-05-16T13:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.752000", + "Timestamp": "2024-05-16T13:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.627000", + "Timestamp": "2024-05-16T13:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.353100", + "Timestamp": "2024-05-16T13:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323100", + "Timestamp": "2024-05-16T13:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.223100", + "Timestamp": "2024-05-16T13:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.742700", + "Timestamp": "2024-05-16T13:47:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.565600", + "Timestamp": "2024-05-16T13:47:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.772300", + "Timestamp": "2024-05-16T13:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.767300", + "Timestamp": "2024-05-16T13:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.642300", + "Timestamp": "2024-05-16T13:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.786900", + "Timestamp": "2024-05-16T13:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.698900", + "Timestamp": "2024-05-16T13:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.693900", + "Timestamp": "2024-05-16T13:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.568900", + "Timestamp": "2024-05-16T13:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.178500", + "Timestamp": "2024-05-16T13:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.843800", + "Timestamp": "2024-05-16T13:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.850900", + "Timestamp": "2024-05-16T13:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.447300", + "Timestamp": "2024-05-16T13:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.638500", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.608500", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.508500", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.414700", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.409700", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.284700", + "Timestamp": "2024-05-16T13:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.937200", + "Timestamp": "2024-05-16T13:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133300", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129300", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073300", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.874900", + "Timestamp": "2024-05-16T13:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.484600", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.454600", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.354600", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.693900", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.688900", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.563900", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.768500", + "Timestamp": "2024-05-16T13:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.035200", + "Timestamp": "2024-05-16T13:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.848900", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.843900", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.718900", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.419600", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.431000", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.392200", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.387200", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.262200", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138300", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078300", + "Timestamp": "2024-05-16T13:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.591300", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.649500", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.586300", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.644500", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.461300", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.519500", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.954000", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.898500", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.642800", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.637800", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.512800", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158800", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154800", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324400", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319400", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194400", + "Timestamp": "2024-05-16T13:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.605600", + "Timestamp": "2024-05-16T13:46:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.575600", + "Timestamp": "2024-05-16T13:46:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.475600", + "Timestamp": "2024-05-16T13:46:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.828600", + "Timestamp": "2024-05-16T13:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.419700", + "Timestamp": "2024-05-16T13:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-16T13:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.500700", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.561200", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.495700", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.556200", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.370700", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.431200", + "Timestamp": "2024-05-16T13:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.387700", + "Timestamp": "2024-05-16T13:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.382700", + "Timestamp": "2024-05-16T13:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.257700", + "Timestamp": "2024-05-16T13:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.938700", + "Timestamp": "2024-05-16T13:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.390400", + "Timestamp": "2024-05-16T13:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.385400", + "Timestamp": "2024-05-16T13:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.260400", + "Timestamp": "2024-05-16T13:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.881100", + "Timestamp": "2024-05-16T13:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.969900", + "Timestamp": "2024-05-16T13:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.099400", + "Timestamp": "2024-05-16T13:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.094400", + "Timestamp": "2024-05-16T13:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.969400", + "Timestamp": "2024-05-16T13:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.816500", + "Timestamp": "2024-05-16T13:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.683400", + "Timestamp": "2024-05-16T13:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.678400", + "Timestamp": "2024-05-16T13:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.553400", + "Timestamp": "2024-05-16T13:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.478000", + "Timestamp": "2024-05-16T13:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.473000", + "Timestamp": "2024-05-16T13:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.348000", + "Timestamp": "2024-05-16T13:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.818700", + "Timestamp": "2024-05-16T13:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.813700", + "Timestamp": "2024-05-16T13:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.688700", + "Timestamp": "2024-05-16T13:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.537300", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.507300", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.407300", + "Timestamp": "2024-05-16T13:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.527600", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.819700", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.841200", + "Timestamp": "2024-05-16T13:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.233700", + "Timestamp": "2024-05-16T13:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.228700", + "Timestamp": "2024-05-16T13:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T13:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.558900", + "Timestamp": "2024-05-16T13:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.996200", + "Timestamp": "2024-05-16T13:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072500", + "Timestamp": "2024-05-16T13:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-16T13:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012500", + "Timestamp": "2024-05-16T13:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.401700", + "Timestamp": "2024-05-16T13:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.396700", + "Timestamp": "2024-05-16T13:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.271700", + "Timestamp": "2024-05-16T13:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.477300", + "Timestamp": "2024-05-16T13:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164500", + "Timestamp": "2024-05-16T13:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160800", + "Timestamp": "2024-05-16T13:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-16T13:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.335000", + "Timestamp": "2024-05-16T13:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.580600", + "Timestamp": "2024-05-16T13:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.575600", + "Timestamp": "2024-05-16T13:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.450600", + "Timestamp": "2024-05-16T13:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.089000", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.059000", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.959000", + "Timestamp": "2024-05-16T13:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.396800", + "Timestamp": "2024-05-16T13:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.185700", + "Timestamp": "2024-05-16T13:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.182700", + "Timestamp": "2024-05-16T13:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125700", + "Timestamp": "2024-05-16T13:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.392000", + "Timestamp": "2024-05-16T13:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.362000", + "Timestamp": "2024-05-16T13:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.262000", + "Timestamp": "2024-05-16T13:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116800", + "Timestamp": "2024-05-16T13:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113100", + "Timestamp": "2024-05-16T13:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056800", + "Timestamp": "2024-05-16T13:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.447600", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.442600", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.317600", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165700", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162000", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T13:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.873500", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.868500", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.743500", + "Timestamp": "2024-05-16T13:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.756200", + "Timestamp": "2024-05-16T13:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.437700", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.448400", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.432700", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.443400", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.307700", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.318400", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.451700", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.894400", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.889400", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.764400", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153700", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149700", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093700", + "Timestamp": "2024-05-16T13:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.674000", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.693500", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.677500", + "Timestamp": "2024-05-16T13:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.605800", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.600800", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.475800", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.091900", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131000", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127300", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071000", + "Timestamp": "2024-05-16T13:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.687200", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.652100", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.647100", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.522100", + "Timestamp": "2024-05-16T13:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101300", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141300", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041300", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.502100", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.497100", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.372100", + "Timestamp": "2024-05-16T13:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.425600", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.420600", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.295600", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362200", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.357200", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.232200", + "Timestamp": "2024-05-16T13:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208200", + "Timestamp": "2024-05-16T13:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.581500", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.807700", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.802700", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.677700", + "Timestamp": "2024-05-16T13:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.767100", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.762100", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.637100", + "Timestamp": "2024-05-16T13:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.698500", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.489000", + "Timestamp": "2024-05-16T13:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.340600", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.335600", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.210600", + "Timestamp": "2024-05-16T13:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.532600", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.509200", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.504200", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.379200", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139700", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135700", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079700", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.003600", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.980500", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.998600", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.975500", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.873600", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.850500", + "Timestamp": "2024-05-16T13:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.607600", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.602600", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.477600", + "Timestamp": "2024-05-16T13:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.406800", + "Timestamp": "2024-05-16T13:31:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.376800", + "Timestamp": "2024-05-16T13:31:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.276800", + "Timestamp": "2024-05-16T13:31:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T13:17:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.682500", + "Timestamp": "2024-05-16T13:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.237100", + "Timestamp": "2024-05-16T13:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.393500", + "Timestamp": "2024-05-16T13:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.388500", + "Timestamp": "2024-05-16T13:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.263500", + "Timestamp": "2024-05-16T13:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.855600", + "Timestamp": "2024-05-16T13:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124100", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120400", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064100", + "Timestamp": "2024-05-16T13:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.576100", + "Timestamp": "2024-05-16T13:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.571100", + "Timestamp": "2024-05-16T13:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.446100", + "Timestamp": "2024-05-16T13:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010800", + "Timestamp": "2024-05-16T13:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.645000", + "Timestamp": "2024-05-16T13:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.640000", + "Timestamp": "2024-05-16T13:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.515000", + "Timestamp": "2024-05-16T13:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153100", + "Timestamp": "2024-05-16T13:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149400", + "Timestamp": "2024-05-16T13:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093100", + "Timestamp": "2024-05-16T13:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.885200", + "Timestamp": "2024-05-16T13:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.797100", + "Timestamp": "2024-05-16T13:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.792100", + "Timestamp": "2024-05-16T13:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.667100", + "Timestamp": "2024-05-16T13:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096600", + "Timestamp": "2024-05-16T13:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092900", + "Timestamp": "2024-05-16T13:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036600", + "Timestamp": "2024-05-16T13:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.278500", + "Timestamp": "2024-05-16T13:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.273500", + "Timestamp": "2024-05-16T13:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.148500", + "Timestamp": "2024-05-16T13:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.553100", + "Timestamp": "2024-05-16T13:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.265000", + "Timestamp": "2024-05-16T13:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.260000", + "Timestamp": "2024-05-16T13:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.135000", + "Timestamp": "2024-05-16T13:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.236400", + "Timestamp": "2024-05-16T13:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.262200", + "Timestamp": "2024-05-16T13:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232400", + "Timestamp": "2024-05-16T13:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.258200", + "Timestamp": "2024-05-16T13:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176400", + "Timestamp": "2024-05-16T13:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.202200", + "Timestamp": "2024-05-16T13:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211500", + "Timestamp": "2024-05-16T13:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.683900", + "Timestamp": "2024-05-16T13:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.653900", + "Timestamp": "2024-05-16T13:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.553900", + "Timestamp": "2024-05-16T13:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T13:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101900", + "Timestamp": "2024-05-16T13:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045900", + "Timestamp": "2024-05-16T13:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.874400", + "Timestamp": "2024-05-16T13:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.256200", + "Timestamp": "2024-05-16T13:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.251200", + "Timestamp": "2024-05-16T13:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126200", + "Timestamp": "2024-05-16T13:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.614100", + "Timestamp": "2024-05-16T13:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.609100", + "Timestamp": "2024-05-16T13:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.484100", + "Timestamp": "2024-05-16T13:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.225700", + "Timestamp": "2024-05-16T13:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.226200", + "Timestamp": "2024-05-16T13:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.107700", + "Timestamp": "2024-05-16T13:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211100", + "Timestamp": "2024-05-16T13:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.089400", + "Timestamp": "2024-05-16T13:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.399100", + "Timestamp": "2024-05-16T13:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.394100", + "Timestamp": "2024-05-16T13:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.269100", + "Timestamp": "2024-05-16T13:16:45.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.050600", + "Timestamp": "2024-05-16T13:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.541500", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.536500", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.411500", + "Timestamp": "2024-05-16T13:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.282200", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.137700", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.132700", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.007700", + "Timestamp": "2024-05-16T13:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.293200", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.865700", + "Timestamp": "2024-05-16T13:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.890700", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.662000", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.657000", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.532000", + "Timestamp": "2024-05-16T13:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.616200", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.753900", + "Timestamp": "2024-05-16T13:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.488500", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.483500", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.358500", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.440700", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.435700", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.310700", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.967900", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.518700", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.488700", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.388700", + "Timestamp": "2024-05-16T13:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.403300", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.373300", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.273300", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.399700", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.394700", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.269700", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.883000", + "Timestamp": "2024-05-16T13:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.036900", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.253800", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.248800", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123800", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148100", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144400", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.037700", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.007700", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.907700", + "Timestamp": "2024-05-16T13:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.769200", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.764200", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.639200", + "Timestamp": "2024-05-16T13:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.416300", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.135200", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.130200", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.005200", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144400", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044400", + "Timestamp": "2024-05-16T13:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142200", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139200", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082200", + "Timestamp": "2024-05-16T13:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.430900", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.425900", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.300900", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.906600", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.901600", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.776600", + "Timestamp": "2024-05-16T13:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.232200", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.015700", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.985700", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.885700", + "Timestamp": "2024-05-16T13:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.242200", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.237200", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T13:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.284400", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.279400", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.154400", + "Timestamp": "2024-05-16T13:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093700", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090000", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033700", + "Timestamp": "2024-05-16T13:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.883700", + "Timestamp": "2024-05-16T13:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.878700", + "Timestamp": "2024-05-16T13:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.753700", + "Timestamp": "2024-05-16T13:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.510300", + "Timestamp": "2024-05-16T13:16:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.480300", + "Timestamp": "2024-05-16T13:16:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.380300", + "Timestamp": "2024-05-16T13:16:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146400", + "Timestamp": "2024-05-16T13:16:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142400", + "Timestamp": "2024-05-16T13:16:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086400", + "Timestamp": "2024-05-16T13:16:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010400", + "Timestamp": "2024-05-16T13:08:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.810600", + "Timestamp": "2024-05-16T13:07:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.810600", + "Timestamp": "2024-05-16T13:07:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.805600", + "Timestamp": "2024-05-16T13:07:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.805600", + "Timestamp": "2024-05-16T13:07:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.680600", + "Timestamp": "2024-05-16T13:07:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.680600", + "Timestamp": "2024-05-16T13:07:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.568600", + "Timestamp": "2024-05-16T13:06:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.568600", + "Timestamp": "2024-05-16T13:06:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.568600", + "Timestamp": "2024-05-16T13:06:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220200", + "Timestamp": "2024-05-16T13:05:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220200", + "Timestamp": "2024-05-16T13:05:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220200", + "Timestamp": "2024-05-16T13:05:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.677900", + "Timestamp": "2024-05-16T13:02:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.476100", + "Timestamp": "2024-05-16T13:02:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.687800", + "Timestamp": "2024-05-16T13:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.682800", + "Timestamp": "2024-05-16T13:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.557800", + "Timestamp": "2024-05-16T13:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.843900", + "Timestamp": "2024-05-16T13:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.838900", + "Timestamp": "2024-05-16T13:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.713900", + "Timestamp": "2024-05-16T13:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.595400", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.590400", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.465400", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.041900", + "Timestamp": "2024-05-16T13:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.958000", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.711400", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166900", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.163200", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.704200", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.699200", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.574200", + "Timestamp": "2024-05-16T13:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.021600", + "Timestamp": "2024-05-16T13:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.914300", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.792500", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.787500", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.662500", + "Timestamp": "2024-05-16T13:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.869100", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101300", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097600", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041300", + "Timestamp": "2024-05-16T13:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.723500", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.718500", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.593500", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.234100", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.229100", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104100", + "Timestamp": "2024-05-16T13:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.336200", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.344200", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.331200", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.339200", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.206200", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.214200", + "Timestamp": "2024-05-16T13:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.081200", + "Timestamp": "2024-05-16T13:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T13:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099100", + "Timestamp": "2024-05-16T13:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042800", + "Timestamp": "2024-05-16T13:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.827200", + "Timestamp": "2024-05-16T13:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.797200", + "Timestamp": "2024-05-16T13:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.697200", + "Timestamp": "2024-05-16T13:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.429800", + "Timestamp": "2024-05-16T13:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.424800", + "Timestamp": "2024-05-16T13:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.299800", + "Timestamp": "2024-05-16T13:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.246400", + "Timestamp": "2024-05-16T13:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.241400", + "Timestamp": "2024-05-16T13:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-16T13:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.466600", + "Timestamp": "2024-05-16T13:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.358500", + "Timestamp": "2024-05-16T13:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.398500", + "Timestamp": "2024-05-16T13:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.298500", + "Timestamp": "2024-05-16T13:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.118100", + "Timestamp": "2024-05-16T13:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.113100", + "Timestamp": "2024-05-16T13:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.988100", + "Timestamp": "2024-05-16T13:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.566400", + "Timestamp": "2024-05-16T13:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.561400", + "Timestamp": "2024-05-16T13:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.436400", + "Timestamp": "2024-05-16T13:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.140100", + "Timestamp": "2024-05-16T13:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.110100", + "Timestamp": "2024-05-16T13:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.010100", + "Timestamp": "2024-05-16T13:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.780300", + "Timestamp": "2024-05-16T13:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.775300", + "Timestamp": "2024-05-16T13:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.650300", + "Timestamp": "2024-05-16T13:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.920000", + "Timestamp": "2024-05-16T13:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.474000", + "Timestamp": "2024-05-16T13:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.461800", + "Timestamp": "2024-05-16T13:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294900", + "Timestamp": "2024-05-16T13:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289900", + "Timestamp": "2024-05-16T13:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164900", + "Timestamp": "2024-05-16T13:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.167400", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.162400", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.037400", + "Timestamp": "2024-05-16T13:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.457800", + "Timestamp": "2024-05-16T13:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.392000", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.387000", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.262000", + "Timestamp": "2024-05-16T13:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218500", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.488100", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.483100", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.358100", + "Timestamp": "2024-05-16T13:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.821000", + "Timestamp": "2024-05-16T13:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.300200", + "Timestamp": "2024-05-16T13:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.145100", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.140100", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.015100", + "Timestamp": "2024-05-16T13:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.106400", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.101400", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.976400", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.424600", + "Timestamp": "2024-05-16T13:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118100", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084200", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080500", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024200", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207500", + "Timestamp": "2024-05-16T13:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166500", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162500", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.615200", + "Timestamp": "2024-05-16T13:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.583000", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.605500", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.600500", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.475500", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.989000", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.984000", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.859000", + "Timestamp": "2024-05-16T13:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.980500", + "Timestamp": "2024-05-16T13:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.087500", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134600", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130600", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074600", + "Timestamp": "2024-05-16T13:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.843200", + "Timestamp": "2024-05-16T13:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117600", + "Timestamp": "2024-05-16T13:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113900", + "Timestamp": "2024-05-16T13:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057600", + "Timestamp": "2024-05-16T13:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.651000", + "Timestamp": "2024-05-16T12:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.646000", + "Timestamp": "2024-05-16T12:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.521000", + "Timestamp": "2024-05-16T12:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099800", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043800", + "Timestamp": "2024-05-16T12:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089300", + "Timestamp": "2024-05-16T12:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085600", + "Timestamp": "2024-05-16T12:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029300", + "Timestamp": "2024-05-16T12:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.651600", + "Timestamp": "2024-05-16T12:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.646600", + "Timestamp": "2024-05-16T12:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.521600", + "Timestamp": "2024-05-16T12:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.178400", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.234200", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.442900", + "Timestamp": "2024-05-16T12:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.841800", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.975100", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.945100", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.845100", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.116500", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.111500", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.986500", + "Timestamp": "2024-05-16T12:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.474100", + "Timestamp": "2024-05-16T12:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.190500", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185500", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060500", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.252500", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.247500", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122500", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.562100", + "Timestamp": "2024-05-16T12:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.253300", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.223300", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.123300", + "Timestamp": "2024-05-16T12:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210200", + "Timestamp": "2024-05-16T12:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.606600", + "Timestamp": "2024-05-16T12:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.212600", + "Timestamp": "2024-05-16T12:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.207600", + "Timestamp": "2024-05-16T12:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082600", + "Timestamp": "2024-05-16T12:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.455600", + "Timestamp": "2024-05-16T12:47:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.648900", + "Timestamp": "2024-05-16T12:47:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.559700", + "Timestamp": "2024-05-16T12:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.554700", + "Timestamp": "2024-05-16T12:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.429700", + "Timestamp": "2024-05-16T12:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.610000", + "Timestamp": "2024-05-16T12:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.605000", + "Timestamp": "2024-05-16T12:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.480000", + "Timestamp": "2024-05-16T12:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.309100", + "Timestamp": "2024-05-16T12:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.279100", + "Timestamp": "2024-05-16T12:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.179100", + "Timestamp": "2024-05-16T12:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.649300", + "Timestamp": "2024-05-16T12:46:55.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.644300", + "Timestamp": "2024-05-16T12:46:55.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.519300", + "Timestamp": "2024-05-16T12:46:55.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.475300", + "Timestamp": "2024-05-16T12:46:55.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.470300", + "Timestamp": "2024-05-16T12:46:55.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.345300", + "Timestamp": "2024-05-16T12:46:55.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.868400", + "Timestamp": "2024-05-16T12:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.390300", + "Timestamp": "2024-05-16T12:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.070900", + "Timestamp": "2024-05-16T12:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.475800", + "Timestamp": "2024-05-16T12:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.367800", + "Timestamp": "2024-05-16T12:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.873700", + "Timestamp": "2024-05-16T12:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.868700", + "Timestamp": "2024-05-16T12:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.743700", + "Timestamp": "2024-05-16T12:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.544400", + "Timestamp": "2024-05-16T12:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.539400", + "Timestamp": "2024-05-16T12:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.414400", + "Timestamp": "2024-05-16T12:46:46.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.240100", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.235100", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-16T12:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.770100", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.765100", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.640100", + "Timestamp": "2024-05-16T12:46:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211300", + "Timestamp": "2024-05-16T12:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141000", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137000", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081000", + "Timestamp": "2024-05-16T12:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.885100", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.282800", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.252800", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.152800", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115900", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055900", + "Timestamp": "2024-05-16T12:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.651200", + "Timestamp": "2024-05-16T12:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.040800", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.035800", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.910800", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.987500", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.982500", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.857500", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.575000", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.340500", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.335500", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.210500", + "Timestamp": "2024-05-16T12:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.454500", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.434100", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.387000", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.382000", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.257000", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.815900", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.810900", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.685900", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.328500", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323500", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.198500", + "Timestamp": "2024-05-16T12:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.219900", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063700", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003700", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003700", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278700", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.248700", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148700", + "Timestamp": "2024-05-16T12:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.311000", + "Timestamp": "2024-05-16T12:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.938100", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.933100", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.808100", + "Timestamp": "2024-05-16T12:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.045500", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.040500", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.915500", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.278700", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.273700", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.148700", + "Timestamp": "2024-05-16T12:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.419800", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.384400", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.379400", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.254400", + "Timestamp": "2024-05-16T12:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.336900", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.331900", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.206900", + "Timestamp": "2024-05-16T12:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100100", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096100", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040100", + "Timestamp": "2024-05-16T12:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088500", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084800", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028500", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.631600", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.626600", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.501600", + "Timestamp": "2024-05-16T12:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.976000", + "Timestamp": "2024-05-16T12:43:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.662300", + "Timestamp": "2024-05-16T12:43:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.487400", + "Timestamp": "2024-05-16T12:43:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.971000", + "Timestamp": "2024-05-16T12:43:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.657300", + "Timestamp": "2024-05-16T12:43:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.482400", + "Timestamp": "2024-05-16T12:43:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.846000", + "Timestamp": "2024-05-16T12:43:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.532300", + "Timestamp": "2024-05-16T12:43:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.357400", + "Timestamp": "2024-05-16T12:43:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.751300", + "Timestamp": "2024-05-16T12:43:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.022600", + "Timestamp": "2024-05-16T12:43:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.739200", + "Timestamp": "2024-05-16T12:43:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063600", + "Timestamp": "2024-05-16T12:33:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003600", + "Timestamp": "2024-05-16T12:33:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003600", + "Timestamp": "2024-05-16T12:33:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.777100", + "Timestamp": "2024-05-16T12:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.772100", + "Timestamp": "2024-05-16T12:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.647100", + "Timestamp": "2024-05-16T12:32:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417500", + "Timestamp": "2024-05-16T12:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.082900", + "Timestamp": "2024-05-16T12:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.386600", + "Timestamp": "2024-05-16T12:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.381600", + "Timestamp": "2024-05-16T12:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.256600", + "Timestamp": "2024-05-16T12:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.488600", + "Timestamp": "2024-05-16T12:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.483600", + "Timestamp": "2024-05-16T12:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.358600", + "Timestamp": "2024-05-16T12:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075900", + "Timestamp": "2024-05-16T12:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.072200", + "Timestamp": "2024-05-16T12:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015900", + "Timestamp": "2024-05-16T12:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139700", + "Timestamp": "2024-05-16T12:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136000", + "Timestamp": "2024-05-16T12:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079700", + "Timestamp": "2024-05-16T12:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T12:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.276400", + "Timestamp": "2024-05-16T12:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.271400", + "Timestamp": "2024-05-16T12:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146400", + "Timestamp": "2024-05-16T12:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.905700", + "Timestamp": "2024-05-16T12:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.456200", + "Timestamp": "2024-05-16T12:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101900", + "Timestamp": "2024-05-16T12:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098200", + "Timestamp": "2024-05-16T12:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041900", + "Timestamp": "2024-05-16T12:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.614700", + "Timestamp": "2024-05-16T12:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.609700", + "Timestamp": "2024-05-16T12:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.484700", + "Timestamp": "2024-05-16T12:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233900", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.663200", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.658200", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.533200", + "Timestamp": "2024-05-16T12:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.701900", + "Timestamp": "2024-05-16T12:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.673400", + "Timestamp": "2024-05-16T12:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094000", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090300", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034000", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.769600", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.764600", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.639600", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.070700", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.065700", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.940700", + "Timestamp": "2024-05-16T12:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.270700", + "Timestamp": "2024-05-16T12:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.240700", + "Timestamp": "2024-05-16T12:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.140700", + "Timestamp": "2024-05-16T12:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.961900", + "Timestamp": "2024-05-16T12:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.956900", + "Timestamp": "2024-05-16T12:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.831900", + "Timestamp": "2024-05-16T12:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T12:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104100", + "Timestamp": "2024-05-16T12:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048100", + "Timestamp": "2024-05-16T12:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.125600", + "Timestamp": "2024-05-16T12:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.120600", + "Timestamp": "2024-05-16T12:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.995600", + "Timestamp": "2024-05-16T12:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.309200", + "Timestamp": "2024-05-16T12:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.304200", + "Timestamp": "2024-05-16T12:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.179200", + "Timestamp": "2024-05-16T12:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.456300", + "Timestamp": "2024-05-16T12:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.426300", + "Timestamp": "2024-05-16T12:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.326300", + "Timestamp": "2024-05-16T12:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130100", + "Timestamp": "2024-05-16T12:32:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126400", + "Timestamp": "2024-05-16T12:32:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070100", + "Timestamp": "2024-05-16T12:32:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.467700", + "Timestamp": "2024-05-16T12:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.285000", + "Timestamp": "2024-05-16T12:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.280000", + "Timestamp": "2024-05-16T12:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.155000", + "Timestamp": "2024-05-16T12:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.689700", + "Timestamp": "2024-05-16T12:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.983300", + "Timestamp": "2024-05-16T12:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.978300", + "Timestamp": "2024-05-16T12:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.853300", + "Timestamp": "2024-05-16T12:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.896100", + "Timestamp": "2024-05-16T12:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.891100", + "Timestamp": "2024-05-16T12:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.766100", + "Timestamp": "2024-05-16T12:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.425000", + "Timestamp": "2024-05-16T12:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.806900", + "Timestamp": "2024-05-16T12:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.801900", + "Timestamp": "2024-05-16T12:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.676900", + "Timestamp": "2024-05-16T12:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100100", + "Timestamp": "2024-05-16T12:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096100", + "Timestamp": "2024-05-16T12:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040100", + "Timestamp": "2024-05-16T12:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.456200", + "Timestamp": "2024-05-16T12:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.451200", + "Timestamp": "2024-05-16T12:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.326200", + "Timestamp": "2024-05-16T12:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.317500", + "Timestamp": "2024-05-16T12:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.287500", + "Timestamp": "2024-05-16T12:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.187500", + "Timestamp": "2024-05-16T12:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.061600", + "Timestamp": "2024-05-16T12:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.056600", + "Timestamp": "2024-05-16T12:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.931600", + "Timestamp": "2024-05-16T12:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.358000", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.328000", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.228000", + "Timestamp": "2024-05-16T12:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.791600", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.781300", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.776300", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.651300", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.627600", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.622600", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.497600", + "Timestamp": "2024-05-16T12:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098500", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094800", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038500", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432500", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.712700", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.759400", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.800200", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.754400", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.795200", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.629400", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.670200", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.792200", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.787200", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.662200", + "Timestamp": "2024-05-16T12:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.465500", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.460500", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.335500", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159100", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155400", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099100", + "Timestamp": "2024-05-16T12:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.502400", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.472400", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.372400", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100400", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096700", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040400", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.474100", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.469100", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.344100", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.374500", + "Timestamp": "2024-05-16T12:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.481700", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.476700", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.351700", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.837400", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.807400", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.707400", + "Timestamp": "2024-05-16T12:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.776300", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170600", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166900", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T12:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.837700", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.832700", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.707700", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.105700", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.100700", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.975700", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.893600", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.888600", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.763600", + "Timestamp": "2024-05-16T12:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.029100", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.024100", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.899100", + "Timestamp": "2024-05-16T12:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.456600", + "Timestamp": "2024-05-16T12:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.180200", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.176500", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120200", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.181400", + "Timestamp": "2024-05-16T12:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.535400", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.530400", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.405400", + "Timestamp": "2024-05-16T12:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.290500", + "Timestamp": "2024-05-16T12:31:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.285500", + "Timestamp": "2024-05-16T12:31:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.160500", + "Timestamp": "2024-05-16T12:31:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440400", + "Timestamp": "2024-05-16T12:29:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440400", + "Timestamp": "2024-05-16T12:29:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440400", + "Timestamp": "2024-05-16T12:29:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.452800", + "Timestamp": "2024-05-16T12:19:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.452800", + "Timestamp": "2024-05-16T12:19:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.452800", + "Timestamp": "2024-05-16T12:19:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.578100", + "Timestamp": "2024-05-16T12:18:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.241300", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.236300", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.111300", + "Timestamp": "2024-05-16T12:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.252100", + "Timestamp": "2024-05-16T12:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.247100", + "Timestamp": "2024-05-16T12:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.122100", + "Timestamp": "2024-05-16T12:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.350100", + "Timestamp": "2024-05-16T12:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.383300", + "Timestamp": "2024-05-16T12:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.320100", + "Timestamp": "2024-05-16T12:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.353300", + "Timestamp": "2024-05-16T12:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.220100", + "Timestamp": "2024-05-16T12:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.253300", + "Timestamp": "2024-05-16T12:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.239000", + "Timestamp": "2024-05-16T12:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.235000", + "Timestamp": "2024-05-16T12:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.179000", + "Timestamp": "2024-05-16T12:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.449100", + "Timestamp": "2024-05-16T12:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.444100", + "Timestamp": "2024-05-16T12:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.319100", + "Timestamp": "2024-05-16T12:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.873800", + "Timestamp": "2024-05-16T12:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.742800", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.737800", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.612800", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.433500", + "Timestamp": "2024-05-16T12:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.705200", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.700200", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.575200", + "Timestamp": "2024-05-16T12:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.523700", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.518700", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.393700", + "Timestamp": "2024-05-16T12:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294500", + "Timestamp": "2024-05-16T12:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289500", + "Timestamp": "2024-05-16T12:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164500", + "Timestamp": "2024-05-16T12:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.904400", + "Timestamp": "2024-05-16T12:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.076500", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.071500", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.946500", + "Timestamp": "2024-05-16T12:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.416000", + "Timestamp": "2024-05-16T12:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.411000", + "Timestamp": "2024-05-16T12:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.286000", + "Timestamp": "2024-05-16T12:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.823200", + "Timestamp": "2024-05-16T12:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.818200", + "Timestamp": "2024-05-16T12:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.693200", + "Timestamp": "2024-05-16T12:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217000", + "Timestamp": "2024-05-16T12:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.662400", + "Timestamp": "2024-05-16T12:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.657400", + "Timestamp": "2024-05-16T12:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.532400", + "Timestamp": "2024-05-16T12:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.637900", + "Timestamp": "2024-05-16T12:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.632900", + "Timestamp": "2024-05-16T12:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.507900", + "Timestamp": "2024-05-16T12:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145600", + "Timestamp": "2024-05-16T12:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141600", + "Timestamp": "2024-05-16T12:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085600", + "Timestamp": "2024-05-16T12:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.715200", + "Timestamp": "2024-05-16T12:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.710200", + "Timestamp": "2024-05-16T12:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.585200", + "Timestamp": "2024-05-16T12:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087000", + "Timestamp": "2024-05-16T12:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083300", + "Timestamp": "2024-05-16T12:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027000", + "Timestamp": "2024-05-16T12:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.793500", + "Timestamp": "2024-05-16T12:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.788500", + "Timestamp": "2024-05-16T12:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.663500", + "Timestamp": "2024-05-16T12:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270200", + "Timestamp": "2024-05-16T12:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265200", + "Timestamp": "2024-05-16T12:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140200", + "Timestamp": "2024-05-16T12:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.350800", + "Timestamp": "2024-05-16T12:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.345800", + "Timestamp": "2024-05-16T12:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.220800", + "Timestamp": "2024-05-16T12:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.448100", + "Timestamp": "2024-05-16T12:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.443100", + "Timestamp": "2024-05-16T12:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.318100", + "Timestamp": "2024-05-16T12:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.942800", + "Timestamp": "2024-05-16T12:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.262400", + "Timestamp": "2024-05-16T12:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.232400", + "Timestamp": "2024-05-16T12:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.132400", + "Timestamp": "2024-05-16T12:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.898500", + "Timestamp": "2024-05-16T12:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.668600", + "Timestamp": "2024-05-16T12:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.663600", + "Timestamp": "2024-05-16T12:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.538600", + "Timestamp": "2024-05-16T12:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.405600", + "Timestamp": "2024-05-16T12:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.400600", + "Timestamp": "2024-05-16T12:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.275600", + "Timestamp": "2024-05-16T12:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.851400", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.846400", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.721400", + "Timestamp": "2024-05-16T12:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219700", + "Timestamp": "2024-05-16T12:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439800", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.438500", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.787400", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103900", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.413800", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.408800", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.283800", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.560600", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.736900", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.731900", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.606900", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.725000", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.400000", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.395000", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.270000", + "Timestamp": "2024-05-16T12:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.877000", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.872000", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.747000", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.256200", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.251200", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.126200", + "Timestamp": "2024-05-16T12:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.073800", + "Timestamp": "2024-05-16T12:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086300", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082600", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026300", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140100", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136100", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080100", + "Timestamp": "2024-05-16T12:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063800", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003800", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003800", + "Timestamp": "2024-05-16T12:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.480400", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.283600", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.253600", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.153600", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.396500", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.391500", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.266500", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.549100", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.544100", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.419100", + "Timestamp": "2024-05-16T12:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.420600", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.823400", + "Timestamp": "2024-05-16T12:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105000", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101000", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045000", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118200", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058200", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099000", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043000", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.031400", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.850500", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431700", + "Timestamp": "2024-05-16T12:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124000", + "Timestamp": "2024-05-16T12:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120300", + "Timestamp": "2024-05-16T12:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064000", + "Timestamp": "2024-05-16T12:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063700", + "Timestamp": "2024-05-16T12:04:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003700", + "Timestamp": "2024-05-16T12:04:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003700", + "Timestamp": "2024-05-16T12:04:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.006700", + "Timestamp": "2024-05-16T12:02:44.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.476100", + "Timestamp": "2024-05-16T12:02:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.471100", + "Timestamp": "2024-05-16T12:02:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.346100", + "Timestamp": "2024-05-16T12:02:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118400", + "Timestamp": "2024-05-16T12:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.461000", + "Timestamp": "2024-05-16T12:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.456000", + "Timestamp": "2024-05-16T12:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.331000", + "Timestamp": "2024-05-16T12:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.855200", + "Timestamp": "2024-05-16T12:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.333700", + "Timestamp": "2024-05-16T12:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.328700", + "Timestamp": "2024-05-16T12:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.203700", + "Timestamp": "2024-05-16T12:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.517900", + "Timestamp": "2024-05-16T12:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.512900", + "Timestamp": "2024-05-16T12:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.387900", + "Timestamp": "2024-05-16T12:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.185500", + "Timestamp": "2024-05-16T12:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.147800", + "Timestamp": "2024-05-16T12:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.234500", + "Timestamp": "2024-05-16T12:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.780800", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.775800", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.650800", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.480400", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.475400", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.350400", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.268400", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.554200", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.549200", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.424200", + "Timestamp": "2024-05-16T12:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.037100", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.032100", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.907100", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.024700", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.645600", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.567200", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.537200", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.437200", + "Timestamp": "2024-05-16T12:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.747200", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.742200", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.617200", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169400", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165400", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.929700", + "Timestamp": "2024-05-16T12:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.655900", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.650900", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.525900", + "Timestamp": "2024-05-16T12:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.500600", + "Timestamp": "2024-05-16T12:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.495600", + "Timestamp": "2024-05-16T12:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.370600", + "Timestamp": "2024-05-16T12:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.675500", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.645500", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.545500", + "Timestamp": "2024-05-16T12:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.305400", + "Timestamp": "2024-05-16T12:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.300400", + "Timestamp": "2024-05-16T12:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175400", + "Timestamp": "2024-05-16T12:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.616600", + "Timestamp": "2024-05-16T12:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.547500", + "Timestamp": "2024-05-16T12:02:10.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.421500", + "Timestamp": "2024-05-16T12:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.666800", + "Timestamp": "2024-05-16T12:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.924900", + "Timestamp": "2024-05-16T12:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.986400", + "Timestamp": "2024-05-16T12:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.894900", + "Timestamp": "2024-05-16T12:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.956400", + "Timestamp": "2024-05-16T12:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.794900", + "Timestamp": "2024-05-16T12:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.856400", + "Timestamp": "2024-05-16T12:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.369900", + "Timestamp": "2024-05-16T12:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.364900", + "Timestamp": "2024-05-16T12:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.239900", + "Timestamp": "2024-05-16T12:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.567100", + "Timestamp": "2024-05-16T12:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.562100", + "Timestamp": "2024-05-16T12:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.437100", + "Timestamp": "2024-05-16T12:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.216200", + "Timestamp": "2024-05-16T12:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.211200", + "Timestamp": "2024-05-16T12:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.086200", + "Timestamp": "2024-05-16T12:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.398500", + "Timestamp": "2024-05-16T12:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.393500", + "Timestamp": "2024-05-16T12:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.268500", + "Timestamp": "2024-05-16T12:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.321500", + "Timestamp": "2024-05-16T12:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.316500", + "Timestamp": "2024-05-16T12:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.191500", + "Timestamp": "2024-05-16T12:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.107300", + "Timestamp": "2024-05-16T12:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136800", + "Timestamp": "2024-05-16T12:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.132800", + "Timestamp": "2024-05-16T12:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076800", + "Timestamp": "2024-05-16T12:01:57.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.787400", + "Timestamp": "2024-05-16T12:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.505200", + "Timestamp": "2024-05-16T12:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.500200", + "Timestamp": "2024-05-16T12:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.375200", + "Timestamp": "2024-05-16T12:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.378800", + "Timestamp": "2024-05-16T12:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.373800", + "Timestamp": "2024-05-16T12:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.248800", + "Timestamp": "2024-05-16T12:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168200", + "Timestamp": "2024-05-16T12:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164200", + "Timestamp": "2024-05-16T12:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T12:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.777400", + "Timestamp": "2024-05-16T12:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.772400", + "Timestamp": "2024-05-16T12:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.647400", + "Timestamp": "2024-05-16T12:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.350600", + "Timestamp": "2024-05-16T12:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.345600", + "Timestamp": "2024-05-16T12:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.220600", + "Timestamp": "2024-05-16T12:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068200", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.064500", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008200", + "Timestamp": "2024-05-16T12:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099500", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095500", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039500", + "Timestamp": "2024-05-16T12:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102200", + "Timestamp": "2024-05-16T12:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098500", + "Timestamp": "2024-05-16T12:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042200", + "Timestamp": "2024-05-16T12:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.134800", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.104800", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.004800", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.626300", + "Timestamp": "2024-05-16T12:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.292100", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262100", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162100", + "Timestamp": "2024-05-16T12:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.648500", + "Timestamp": "2024-05-16T12:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.712700", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.584300", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.579300", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.454300", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.448000", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.443000", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.318000", + "Timestamp": "2024-05-16T12:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.355800", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.350800", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.225800", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.615300", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.610300", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.485300", + "Timestamp": "2024-05-16T12:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.416800", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.411800", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.286800", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.696900", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.691900", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.566900", + "Timestamp": "2024-05-16T12:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153000", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149000", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093000", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.421500", + "Timestamp": "2024-05-16T12:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.455800", + "Timestamp": "2024-05-16T12:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.385200", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.380200", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.255200", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.443900", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.438900", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.313900", + "Timestamp": "2024-05-16T12:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.549600", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.544600", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.419600", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.073600", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.068600", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.943600", + "Timestamp": "2024-05-16T12:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149800", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146100", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089800", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.501600", + "Timestamp": "2024-05-16T12:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.479600", + "Timestamp": "2024-05-16T12:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.181800", + "Timestamp": "2024-05-16T12:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.843400", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.524300", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.519300", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.394300", + "Timestamp": "2024-05-16T12:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.336100", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.306100", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.206100", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.551900", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.521900", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.421900", + "Timestamp": "2024-05-16T12:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.326100", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.321100", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196100", + "Timestamp": "2024-05-16T12:01:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.942500", + "Timestamp": "2024-05-16T11:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.408200", + "Timestamp": "2024-05-16T11:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.403200", + "Timestamp": "2024-05-16T11:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.278200", + "Timestamp": "2024-05-16T11:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.389400", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.359400", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.259400", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.636100", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.631100", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.506100", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.641800", + "Timestamp": "2024-05-16T11:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.739400", + "Timestamp": "2024-05-16T11:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.468900", + "Timestamp": "2024-05-16T11:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.472000", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.467000", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.342000", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.629100", + "Timestamp": "2024-05-16T11:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235700", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.453500", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.448500", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.323500", + "Timestamp": "2024-05-16T11:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.908500", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.903500", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.778500", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089700", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085700", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029700", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.742200", + "Timestamp": "2024-05-16T11:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097900", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093900", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037900", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.877100", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.595700", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.590700", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.465700", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.147200", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.142200", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.017200", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.411300", + "Timestamp": "2024-05-16T11:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.941500", + "Timestamp": "2024-05-16T11:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.437000", + "Timestamp": "2024-05-16T11:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.403500", + "Timestamp": "2024-05-16T11:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.744200", + "Timestamp": "2024-05-16T11:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.418500", + "Timestamp": "2024-05-16T11:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.388500", + "Timestamp": "2024-05-16T11:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.288500", + "Timestamp": "2024-05-16T11:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.213000", + "Timestamp": "2024-05-16T11:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.208000", + "Timestamp": "2024-05-16T11:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083000", + "Timestamp": "2024-05-16T11:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.151500", + "Timestamp": "2024-05-16T11:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.146500", + "Timestamp": "2024-05-16T11:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.021500", + "Timestamp": "2024-05-16T11:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.129900", + "Timestamp": "2024-05-16T11:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.679300", + "Timestamp": "2024-05-16T11:47:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.830500", + "Timestamp": "2024-05-16T11:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.328100", + "Timestamp": "2024-05-16T11:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.363200", + "Timestamp": "2024-05-16T11:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.323100", + "Timestamp": "2024-05-16T11:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.358200", + "Timestamp": "2024-05-16T11:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.198100", + "Timestamp": "2024-05-16T11:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.233200", + "Timestamp": "2024-05-16T11:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.251600", + "Timestamp": "2024-05-16T11:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.246600", + "Timestamp": "2024-05-16T11:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121600", + "Timestamp": "2024-05-16T11:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.038300", + "Timestamp": "2024-05-16T11:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.724700", + "Timestamp": "2024-05-16T11:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.196200", + "Timestamp": "2024-05-16T11:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.400400", + "Timestamp": "2024-05-16T11:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.395400", + "Timestamp": "2024-05-16T11:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.270400", + "Timestamp": "2024-05-16T11:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170600", + "Timestamp": "2024-05-16T11:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165600", + "Timestamp": "2024-05-16T11:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040600", + "Timestamp": "2024-05-16T11:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.587900", + "Timestamp": "2024-05-16T11:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.430400", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.649500", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.644500", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.519500", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097300", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098000", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137300", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138000", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037300", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038000", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.450000", + "Timestamp": "2024-05-16T11:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.937900", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.932900", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.807900", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.557100", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.552100", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.427100", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.755600", + "Timestamp": "2024-05-16T11:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172400", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168400", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.799400", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.853400", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.823400", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.723400", + "Timestamp": "2024-05-16T11:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.248900", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.243900", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118900", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.424100", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.419100", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.294100", + "Timestamp": "2024-05-16T11:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103400", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099700", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043400", + "Timestamp": "2024-05-16T11:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.436800", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161600", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157600", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101600", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.517600", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.512600", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.387600", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.941600", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.251100", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.246100", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121100", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.543800", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.513800", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.413800", + "Timestamp": "2024-05-16T11:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.750500", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.745500", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.620500", + "Timestamp": "2024-05-16T11:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324200", + "Timestamp": "2024-05-16T11:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319200", + "Timestamp": "2024-05-16T11:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194200", + "Timestamp": "2024-05-16T11:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.430300", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.425300", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.300300", + "Timestamp": "2024-05-16T11:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.572500", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.932900", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.567500", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.927900", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.442500", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.802900", + "Timestamp": "2024-05-16T11:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.961000", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.749500", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.956000", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.744500", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.831000", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.619500", + "Timestamp": "2024-05-16T11:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.225700", + "Timestamp": "2024-05-16T11:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.343000", + "Timestamp": "2024-05-16T11:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.313000", + "Timestamp": "2024-05-16T11:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.213000", + "Timestamp": "2024-05-16T11:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.023800", + "Timestamp": "2024-05-16T11:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.555600", + "Timestamp": "2024-05-16T11:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.550600", + "Timestamp": "2024-05-16T11:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.425600", + "Timestamp": "2024-05-16T11:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.003500", + "Timestamp": "2024-05-16T11:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.998500", + "Timestamp": "2024-05-16T11:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.873500", + "Timestamp": "2024-05-16T11:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.912800", + "Timestamp": "2024-05-16T11:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.882800", + "Timestamp": "2024-05-16T11:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.782800", + "Timestamp": "2024-05-16T11:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.819600", + "Timestamp": "2024-05-16T11:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.630600", + "Timestamp": "2024-05-16T11:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.762200", + "Timestamp": "2024-05-16T11:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.757200", + "Timestamp": "2024-05-16T11:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.632200", + "Timestamp": "2024-05-16T11:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149300", + "Timestamp": "2024-05-16T11:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145300", + "Timestamp": "2024-05-16T11:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089300", + "Timestamp": "2024-05-16T11:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.325500", + "Timestamp": "2024-05-16T11:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.849100", + "Timestamp": "2024-05-16T11:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.844100", + "Timestamp": "2024-05-16T11:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.719100", + "Timestamp": "2024-05-16T11:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.689700", + "Timestamp": "2024-05-16T11:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.659700", + "Timestamp": "2024-05-16T11:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.559700", + "Timestamp": "2024-05-16T11:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.454900", + "Timestamp": "2024-05-16T11:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.449900", + "Timestamp": "2024-05-16T11:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.324900", + "Timestamp": "2024-05-16T11:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.975300", + "Timestamp": "2024-05-16T11:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.970300", + "Timestamp": "2024-05-16T11:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.845300", + "Timestamp": "2024-05-16T11:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.954000", + "Timestamp": "2024-05-16T11:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.191800", + "Timestamp": "2024-05-16T11:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.186800", + "Timestamp": "2024-05-16T11:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.061800", + "Timestamp": "2024-05-16T11:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.422000", + "Timestamp": "2024-05-16T11:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.580600", + "Timestamp": "2024-05-16T11:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.882000", + "Timestamp": "2024-05-16T11:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.877000", + "Timestamp": "2024-05-16T11:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.752000", + "Timestamp": "2024-05-16T11:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.625400", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.232200", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.227200", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.102200", + "Timestamp": "2024-05-16T11:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.959000", + "Timestamp": "2024-05-16T11:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.816700", + "Timestamp": "2024-05-16T11:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.956900", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.829700", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.799200", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.794200", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.669200", + "Timestamp": "2024-05-16T11:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.122000", + "Timestamp": "2024-05-16T11:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101100", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041100", + "Timestamp": "2024-05-16T11:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.456100", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.451100", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.326100", + "Timestamp": "2024-05-16T11:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.588700", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139500", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135800", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079500", + "Timestamp": "2024-05-16T11:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.451600", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128900", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124900", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068900", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138600", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134900", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078600", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.837200", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.832200", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.707200", + "Timestamp": "2024-05-16T11:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.432500", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.836800", + "Timestamp": "2024-05-16T11:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.810600", + "Timestamp": "2024-05-16T11:29:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.810600", + "Timestamp": "2024-05-16T11:29:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.805600", + "Timestamp": "2024-05-16T11:29:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.805600", + "Timestamp": "2024-05-16T11:29:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.680600", + "Timestamp": "2024-05-16T11:29:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.680600", + "Timestamp": "2024-05-16T11:29:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.624600", + "Timestamp": "2024-05-16T11:29:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.624600", + "Timestamp": "2024-05-16T11:29:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.676500", + "Timestamp": "2024-05-16T11:28:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.676500", + "Timestamp": "2024-05-16T11:28:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.676500", + "Timestamp": "2024-05-16T11:28:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.390500", + "Timestamp": "2024-05-16T11:28:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.390500", + "Timestamp": "2024-05-16T11:28:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.385500", + "Timestamp": "2024-05-16T11:28:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.385500", + "Timestamp": "2024-05-16T11:28:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.260500", + "Timestamp": "2024-05-16T11:28:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.260500", + "Timestamp": "2024-05-16T11:28:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063100", + "Timestamp": "2024-05-16T11:26:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003100", + "Timestamp": "2024-05-16T11:26:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003100", + "Timestamp": "2024-05-16T11:26:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169200", + "Timestamp": "2024-05-16T11:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.209200", + "Timestamp": "2024-05-16T11:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109200", + "Timestamp": "2024-05-16T11:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.479000", + "Timestamp": "2024-05-16T11:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.466900", + "Timestamp": "2024-05-16T11:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.474000", + "Timestamp": "2024-05-16T11:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.461900", + "Timestamp": "2024-05-16T11:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.349000", + "Timestamp": "2024-05-16T11:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.336900", + "Timestamp": "2024-05-16T11:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.441500", + "Timestamp": "2024-05-16T11:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.436500", + "Timestamp": "2024-05-16T11:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.311500", + "Timestamp": "2024-05-16T11:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T11:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.430700", + "Timestamp": "2024-05-16T11:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.650500", + "Timestamp": "2024-05-16T11:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.620500", + "Timestamp": "2024-05-16T11:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.520500", + "Timestamp": "2024-05-16T11:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.133500", + "Timestamp": "2024-05-16T11:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.128500", + "Timestamp": "2024-05-16T11:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.003500", + "Timestamp": "2024-05-16T11:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.875300", + "Timestamp": "2024-05-16T11:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.504200", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.499200", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.374200", + "Timestamp": "2024-05-16T11:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139000", + "Timestamp": "2024-05-16T11:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135300", + "Timestamp": "2024-05-16T11:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079000", + "Timestamp": "2024-05-16T11:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.918900", + "Timestamp": "2024-05-16T11:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.938000", + "Timestamp": "2024-05-16T11:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.713200", + "Timestamp": "2024-05-16T11:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.657100", + "Timestamp": "2024-05-16T11:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.652100", + "Timestamp": "2024-05-16T11:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.527100", + "Timestamp": "2024-05-16T11:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154400", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150400", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094400", + "Timestamp": "2024-05-16T11:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.938600", + "Timestamp": "2024-05-16T11:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.908600", + "Timestamp": "2024-05-16T11:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.808600", + "Timestamp": "2024-05-16T11:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.811300", + "Timestamp": "2024-05-16T11:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.806300", + "Timestamp": "2024-05-16T11:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.681300", + "Timestamp": "2024-05-16T11:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.903300", + "Timestamp": "2024-05-16T11:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.898300", + "Timestamp": "2024-05-16T11:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.773300", + "Timestamp": "2024-05-16T11:17:10.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.242000", + "Timestamp": "2024-05-16T11:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.481700", + "Timestamp": "2024-05-16T11:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.615900", + "Timestamp": "2024-05-16T11:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.585900", + "Timestamp": "2024-05-16T11:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.485900", + "Timestamp": "2024-05-16T11:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.790000", + "Timestamp": "2024-05-16T11:17:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.785000", + "Timestamp": "2024-05-16T11:17:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.660000", + "Timestamp": "2024-05-16T11:17:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.043100", + "Timestamp": "2024-05-16T11:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.486500", + "Timestamp": "2024-05-16T11:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096100", + "Timestamp": "2024-05-16T11:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092400", + "Timestamp": "2024-05-16T11:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036100", + "Timestamp": "2024-05-16T11:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.393600", + "Timestamp": "2024-05-16T11:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.363600", + "Timestamp": "2024-05-16T11:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.263600", + "Timestamp": "2024-05-16T11:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124500", + "Timestamp": "2024-05-16T11:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164500", + "Timestamp": "2024-05-16T11:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064500", + "Timestamp": "2024-05-16T11:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.491600", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.486600", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.361600", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.404800", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.399800", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.274800", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.603400", + "Timestamp": "2024-05-16T11:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.630400", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.625400", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.500400", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.780100", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.775100", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.650100", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.365000", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330800", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325800", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200800", + "Timestamp": "2024-05-16T11:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.425600", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.420600", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.295600", + "Timestamp": "2024-05-16T11:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.871500", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.563100", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.558100", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.433100", + "Timestamp": "2024-05-16T11:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.636800", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.631800", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.506800", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148400", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144700", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088400", + "Timestamp": "2024-05-16T11:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.258700", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.253700", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128700", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.006700", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.001700", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.876700", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.434000", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.556600", + "Timestamp": "2024-05-16T11:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.974100", + "Timestamp": "2024-05-16T11:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096200", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092500", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036200", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.471400", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.466400", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.341400", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.744000", + "Timestamp": "2024-05-16T11:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.835000", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.787000", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.214200", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.209200", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.084200", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116000", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112300", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056000", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297300", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.292300", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167300", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.302400", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.297400", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.172400", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080000", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076300", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020000", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360300", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.330300", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230300", + "Timestamp": "2024-05-16T11:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.040500", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.035500", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.910500", + "Timestamp": "2024-05-16T11:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233100", + "Timestamp": "2024-05-16T11:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.428500", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.423500", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.298500", + "Timestamp": "2024-05-16T11:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141500", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137800", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081500", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.842600", + "Timestamp": "2024-05-16T11:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.518400", + "Timestamp": "2024-05-16T11:16:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330400", + "Timestamp": "2024-05-16T11:16:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325400", + "Timestamp": "2024-05-16T11:16:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200400", + "Timestamp": "2024-05-16T11:16:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.805800", + "Timestamp": "2024-05-16T11:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.097600", + "Timestamp": "2024-05-16T11:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.368700", + "Timestamp": "2024-05-16T11:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.363700", + "Timestamp": "2024-05-16T11:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.238700", + "Timestamp": "2024-05-16T11:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.108500", + "Timestamp": "2024-05-16T11:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.103500", + "Timestamp": "2024-05-16T11:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.978500", + "Timestamp": "2024-05-16T11:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.142300", + "Timestamp": "2024-05-16T11:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120900", + "Timestamp": "2024-05-16T11:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117200", + "Timestamp": "2024-05-16T11:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060900", + "Timestamp": "2024-05-16T11:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.438200", + "Timestamp": "2024-05-16T11:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.433200", + "Timestamp": "2024-05-16T11:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.308200", + "Timestamp": "2024-05-16T11:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.063300", + "Timestamp": "2024-05-16T11:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.023200", + "Timestamp": "2024-05-16T11:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.058300", + "Timestamp": "2024-05-16T11:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.018200", + "Timestamp": "2024-05-16T11:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.933300", + "Timestamp": "2024-05-16T11:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.893200", + "Timestamp": "2024-05-16T11:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.460600", + "Timestamp": "2024-05-16T11:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.455600", + "Timestamp": "2024-05-16T11:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.330600", + "Timestamp": "2024-05-16T11:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.617500", + "Timestamp": "2024-05-16T11:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.400700", + "Timestamp": "2024-05-16T11:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.395700", + "Timestamp": "2024-05-16T11:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.270700", + "Timestamp": "2024-05-16T11:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.326400", + "Timestamp": "2024-05-16T11:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.296400", + "Timestamp": "2024-05-16T11:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196400", + "Timestamp": "2024-05-16T11:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.907900", + "Timestamp": "2024-05-16T11:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.902900", + "Timestamp": "2024-05-16T11:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.777900", + "Timestamp": "2024-05-16T11:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.405500", + "Timestamp": "2024-05-16T11:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.400500", + "Timestamp": "2024-05-16T11:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.275500", + "Timestamp": "2024-05-16T11:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.009100", + "Timestamp": "2024-05-16T11:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.004100", + "Timestamp": "2024-05-16T11:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.879100", + "Timestamp": "2024-05-16T11:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.461900", + "Timestamp": "2024-05-16T11:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.456900", + "Timestamp": "2024-05-16T11:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.331900", + "Timestamp": "2024-05-16T11:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.295200", + "Timestamp": "2024-05-16T11:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "8.571500", + "Timestamp": "2024-05-16T11:01:59.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "8.566500", + "Timestamp": "2024-05-16T11:01:59.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "8.441500", + "Timestamp": "2024-05-16T11:01:59.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.446000", + "Timestamp": "2024-05-16T11:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.441000", + "Timestamp": "2024-05-16T11:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.316000", + "Timestamp": "2024-05-16T11:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.478000", + "Timestamp": "2024-05-16T11:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473000", + "Timestamp": "2024-05-16T11:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.348000", + "Timestamp": "2024-05-16T11:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.709300", + "Timestamp": "2024-05-16T11:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.704300", + "Timestamp": "2024-05-16T11:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.579300", + "Timestamp": "2024-05-16T11:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.314500", + "Timestamp": "2024-05-16T11:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.309500", + "Timestamp": "2024-05-16T11:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.184500", + "Timestamp": "2024-05-16T11:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.231900", + "Timestamp": "2024-05-16T11:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.226900", + "Timestamp": "2024-05-16T11:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.101900", + "Timestamp": "2024-05-16T11:01:43.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.769100", + "Timestamp": "2024-05-16T11:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167900", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.207900", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107900", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.780300", + "Timestamp": "2024-05-16T11:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.488900", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.483900", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.358900", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.260400", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.256400", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200400", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.634800", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.629800", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.504800", + "Timestamp": "2024-05-16T11:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.867900", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.620000", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.615000", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.490000", + "Timestamp": "2024-05-16T11:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.635300", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.630300", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.505300", + "Timestamp": "2024-05-16T11:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.352400", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.347400", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.222400", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.017200", + "Timestamp": "2024-05-16T11:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116200", + "Timestamp": "2024-05-16T11:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.464800", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163000", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159300", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T11:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.267300", + "Timestamp": "2024-05-16T11:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100100", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096100", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040100", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.962300", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.957300", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.832300", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.449200", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.449900", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072100", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043100", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012100", + "Timestamp": "2024-05-16T11:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.613200", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.608200", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.483200", + "Timestamp": "2024-05-16T11:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.653900", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127800", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124100", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067800", + "Timestamp": "2024-05-16T11:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.847300", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.842300", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.717300", + "Timestamp": "2024-05-16T11:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169000", + "Timestamp": "2024-05-16T10:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165000", + "Timestamp": "2024-05-16T10:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109000", + "Timestamp": "2024-05-16T10:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.374500", + "Timestamp": "2024-05-16T10:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.369500", + "Timestamp": "2024-05-16T10:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.244500", + "Timestamp": "2024-05-16T10:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.027800", + "Timestamp": "2024-05-16T10:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.573200", + "Timestamp": "2024-05-16T10:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.568200", + "Timestamp": "2024-05-16T10:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.443200", + "Timestamp": "2024-05-16T10:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.884100", + "Timestamp": "2024-05-16T10:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.879100", + "Timestamp": "2024-05-16T10:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.754100", + "Timestamp": "2024-05-16T10:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129800", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126100", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069800", + "Timestamp": "2024-05-16T10:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.688000", + "Timestamp": "2024-05-16T10:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.406400", + "Timestamp": "2024-05-16T10:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.592300", + "Timestamp": "2024-05-16T10:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.587300", + "Timestamp": "2024-05-16T10:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.462300", + "Timestamp": "2024-05-16T10:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.927300", + "Timestamp": "2024-05-16T10:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.206600", + "Timestamp": "2024-05-16T10:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.201600", + "Timestamp": "2024-05-16T10:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076600", + "Timestamp": "2024-05-16T10:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.442400", + "Timestamp": "2024-05-16T10:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226000", + "Timestamp": "2024-05-16T10:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.420200", + "Timestamp": "2024-05-16T10:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Windows", + "SpotPrice": "11.855100", + "Timestamp": "2024-05-16T10:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214400", + "Timestamp": "2024-05-16T10:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.414700", + "Timestamp": "2024-05-16T10:46:57.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.281100", + "Timestamp": "2024-05-16T10:46:56.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T10:46:56.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.634400", + "Timestamp": "2024-05-16T10:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.415500", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.385500", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.285500", + "Timestamp": "2024-05-16T10:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.082800", + "Timestamp": "2024-05-16T10:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.052800", + "Timestamp": "2024-05-16T10:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.952800", + "Timestamp": "2024-05-16T10:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.383200", + "Timestamp": "2024-05-16T10:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.904200", + "Timestamp": "2024-05-16T10:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.008300", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.003300", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.878300", + "Timestamp": "2024-05-16T10:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.225800", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.220800", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095800", + "Timestamp": "2024-05-16T10:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.812200", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.782200", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.682200", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104100", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.874300", + "Timestamp": "2024-05-16T10:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118400", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114700", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058400", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.322000", + "Timestamp": "2024-05-16T10:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.362200", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.357200", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.232200", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.375000", + "Timestamp": "2024-05-16T10:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102400", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046100", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115800", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055800", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.653300", + "Timestamp": "2024-05-16T10:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223800", + "Timestamp": "2024-05-16T10:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.565900", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.560900", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.435900", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068100", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038100", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008100", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.698100", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.693100", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.568100", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041200", + "Timestamp": "2024-05-16T10:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.237700", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232700", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.240300", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.235300", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T10:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.031800", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.001800", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.901800", + "Timestamp": "2024-05-16T10:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122300", + "Timestamp": "2024-05-16T10:45:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143100", + "Timestamp": "2024-05-16T10:45:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118600", + "Timestamp": "2024-05-16T10:45:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139400", + "Timestamp": "2024-05-16T10:45:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062300", + "Timestamp": "2024-05-16T10:45:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083100", + "Timestamp": "2024-05-16T10:45:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.880400", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.850400", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.750400", + "Timestamp": "2024-05-16T10:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.823100", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.818100", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.693100", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.582900", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.577900", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.452900", + "Timestamp": "2024-05-16T10:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.701900", + "Timestamp": "2024-05-16T10:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.185300", + "Timestamp": "2024-05-16T10:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.640800", + "Timestamp": "2024-05-16T10:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.110100", + "Timestamp": "2024-05-16T10:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.105100", + "Timestamp": "2024-05-16T10:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.980100", + "Timestamp": "2024-05-16T10:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.890500", + "Timestamp": "2024-05-16T10:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.784700", + "Timestamp": "2024-05-16T10:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.970400", + "Timestamp": "2024-05-16T10:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.538600", + "Timestamp": "2024-05-16T10:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073700", + "Timestamp": "2024-05-16T10:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072900", + "Timestamp": "2024-05-16T10:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070000", + "Timestamp": "2024-05-16T10:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069200", + "Timestamp": "2024-05-16T10:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013700", + "Timestamp": "2024-05-16T10:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012900", + "Timestamp": "2024-05-16T10:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.455600", + "Timestamp": "2024-05-16T10:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.639100", + "Timestamp": "2024-05-16T10:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.634100", + "Timestamp": "2024-05-16T10:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.509100", + "Timestamp": "2024-05-16T10:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.848400", + "Timestamp": "2024-05-16T10:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.448600", + "Timestamp": "2024-05-16T10:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.466600", + "Timestamp": "2024-05-16T10:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.471800", + "Timestamp": "2024-05-16T10:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.288200", + "Timestamp": "2024-05-16T10:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.216700", + "Timestamp": "2024-05-16T10:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.186700", + "Timestamp": "2024-05-16T10:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.086700", + "Timestamp": "2024-05-16T10:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.397900", + "Timestamp": "2024-05-16T10:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115900", + "Timestamp": "2024-05-16T10:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T10:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055900", + "Timestamp": "2024-05-16T10:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.245400", + "Timestamp": "2024-05-16T10:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.215400", + "Timestamp": "2024-05-16T10:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115400", + "Timestamp": "2024-05-16T10:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.121800", + "Timestamp": "2024-05-16T10:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.116800", + "Timestamp": "2024-05-16T10:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.991800", + "Timestamp": "2024-05-16T10:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.860800", + "Timestamp": "2024-05-16T10:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.423800", + "Timestamp": "2024-05-16T10:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.418800", + "Timestamp": "2024-05-16T10:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.293800", + "Timestamp": "2024-05-16T10:31:56.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.921300", + "Timestamp": "2024-05-16T10:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.322200", + "Timestamp": "2024-05-16T10:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.292200", + "Timestamp": "2024-05-16T10:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.192200", + "Timestamp": "2024-05-16T10:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.472800", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.467800", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.342800", + "Timestamp": "2024-05-16T10:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.657300", + "Timestamp": "2024-05-16T10:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.060000", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.505200", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.475200", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.375200", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166400", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162400", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.978000", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.973000", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.848000", + "Timestamp": "2024-05-16T10:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.597200", + "Timestamp": "2024-05-16T10:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.407900", + "Timestamp": "2024-05-16T10:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.796800", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.791800", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.666800", + "Timestamp": "2024-05-16T10:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130200", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126500", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070200", + "Timestamp": "2024-05-16T10:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.044600", + "Timestamp": "2024-05-16T10:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.233100", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.651400", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.646400", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.521400", + "Timestamp": "2024-05-16T10:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307600", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302600", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177600", + "Timestamp": "2024-05-16T10:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.068400", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.038400", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.938400", + "Timestamp": "2024-05-16T10:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.473000", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.468000", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.343000", + "Timestamp": "2024-05-16T10:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.035100", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.030100", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.905100", + "Timestamp": "2024-05-16T10:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.762100", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.732100", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.632100", + "Timestamp": "2024-05-16T10:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.569800", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.564800", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.439800", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.735100", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.730100", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.605100", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171600", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.211600", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111600", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.106400", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431600", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.176800", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.146800", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.046800", + "Timestamp": "2024-05-16T10:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070900", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041900", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010900", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.326400", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.321400", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196400", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.932300", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.927300", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.802300", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072400", + "Timestamp": "2024-05-16T10:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068700", + "Timestamp": "2024-05-16T10:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012400", + "Timestamp": "2024-05-16T10:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.892700", + "Timestamp": "2024-05-16T10:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.790100", + "Timestamp": "2024-05-16T10:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.785100", + "Timestamp": "2024-05-16T10:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.660100", + "Timestamp": "2024-05-16T10:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.688500", + "Timestamp": "2024-05-16T10:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.683500", + "Timestamp": "2024-05-16T10:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.558500", + "Timestamp": "2024-05-16T10:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.907200", + "Timestamp": "2024-05-16T10:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.277300", + "Timestamp": "2024-05-16T10:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.247300", + "Timestamp": "2024-05-16T10:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.147300", + "Timestamp": "2024-05-16T10:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.124300", + "Timestamp": "2024-05-16T10:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.119300", + "Timestamp": "2024-05-16T10:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.994300", + "Timestamp": "2024-05-16T10:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.513700", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.508700", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.383700", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.447400", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.442400", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.317400", + "Timestamp": "2024-05-16T10:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.020000", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.015000", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.890000", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.394400", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.407700", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.016900", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.011900", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.886900", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.814900", + "Timestamp": "2024-05-16T10:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.774500", + "Timestamp": "2024-05-16T10:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.022600", + "Timestamp": "2024-05-16T10:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.506500", + "Timestamp": "2024-05-16T10:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.501500", + "Timestamp": "2024-05-16T10:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.376500", + "Timestamp": "2024-05-16T10:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.241900", + "Timestamp": "2024-05-16T10:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.236900", + "Timestamp": "2024-05-16T10:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111900", + "Timestamp": "2024-05-16T10:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.396600", + "Timestamp": "2024-05-16T10:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.391600", + "Timestamp": "2024-05-16T10:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.266600", + "Timestamp": "2024-05-16T10:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085700", + "Timestamp": "2024-05-16T10:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082000", + "Timestamp": "2024-05-16T10:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025700", + "Timestamp": "2024-05-16T10:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.534300", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.888400", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.758300", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.753300", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.628300", + "Timestamp": "2024-05-16T10:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.921500", + "Timestamp": "2024-05-16T10:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.133000", + "Timestamp": "2024-05-16T10:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.210000", + "Timestamp": "2024-05-16T10:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.128000", + "Timestamp": "2024-05-16T10:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.205000", + "Timestamp": "2024-05-16T10:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.003000", + "Timestamp": "2024-05-16T10:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.080000", + "Timestamp": "2024-05-16T10:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073500", + "Timestamp": "2024-05-16T10:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044500", + "Timestamp": "2024-05-16T10:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013500", + "Timestamp": "2024-05-16T10:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.626200", + "Timestamp": "2024-05-16T10:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.621200", + "Timestamp": "2024-05-16T10:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.496200", + "Timestamp": "2024-05-16T10:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.203800", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.198800", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.073800", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.215500", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.210500", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.085500", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.692900", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.687900", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.562900", + "Timestamp": "2024-05-16T10:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.971200", + "Timestamp": "2024-05-16T10:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.033400", + "Timestamp": "2024-05-16T10:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.916600", + "Timestamp": "2024-05-16T10:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.487700", + "Timestamp": "2024-05-16T10:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168600", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164600", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-16T10:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.090700", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.509200", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.504200", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.379200", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.645200", + "Timestamp": "2024-05-16T10:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.259200", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.254200", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.129200", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.468000", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.463000", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.338000", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.520600", + "Timestamp": "2024-05-16T10:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.248000", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.244000", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.188000", + "Timestamp": "2024-05-16T10:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.081800", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.076800", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.951800", + "Timestamp": "2024-05-16T10:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.544900", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.539900", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.414900", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.333100", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.328100", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.203100", + "Timestamp": "2024-05-16T10:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.505000", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.344400", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.500000", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.339400", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.375000", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.214400", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.282300", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.277300", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.152300", + "Timestamp": "2024-05-16T10:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.458100", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115800", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055800", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.257900", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.252900", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127900", + "Timestamp": "2024-05-16T10:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314800", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.309800", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.184800", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.585900", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.580900", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.455900", + "Timestamp": "2024-05-16T10:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.259300", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.239600", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.234600", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.109600", + "Timestamp": "2024-05-16T10:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062300", + "Timestamp": "2024-05-16T10:02:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002300", + "Timestamp": "2024-05-16T10:02:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002300", + "Timestamp": "2024-05-16T10:02:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.498600", + "Timestamp": "2024-05-16T10:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.468600", + "Timestamp": "2024-05-16T10:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.368600", + "Timestamp": "2024-05-16T10:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170700", + "Timestamp": "2024-05-16T10:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.210700", + "Timestamp": "2024-05-16T10:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T10:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.268500", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.482500", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.477500", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.352500", + "Timestamp": "2024-05-16T10:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.339400", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334400", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.209400", + "Timestamp": "2024-05-16T10:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213200", + "Timestamp": "2024-05-16T10:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.840000", + "Timestamp": "2024-05-16T10:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.605300", + "Timestamp": "2024-05-16T10:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.600300", + "Timestamp": "2024-05-16T10:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.475300", + "Timestamp": "2024-05-16T10:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.468500", + "Timestamp": "2024-05-16T10:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.463500", + "Timestamp": "2024-05-16T10:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.338500", + "Timestamp": "2024-05-16T10:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.799400", + "Timestamp": "2024-05-16T10:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.794400", + "Timestamp": "2024-05-16T10:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.669400", + "Timestamp": "2024-05-16T10:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.353300", + "Timestamp": "2024-05-16T10:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.348300", + "Timestamp": "2024-05-16T10:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.223300", + "Timestamp": "2024-05-16T10:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.709800", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.521500", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.491500", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.391500", + "Timestamp": "2024-05-16T10:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.242000", + "Timestamp": "2024-05-16T10:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.237000", + "Timestamp": "2024-05-16T10:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-16T10:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.222100", + "Timestamp": "2024-05-16T10:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.663700", + "Timestamp": "2024-05-16T10:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215600", + "Timestamp": "2024-05-16T10:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.051900", + "Timestamp": "2024-05-16T10:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.046900", + "Timestamp": "2024-05-16T10:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.921900", + "Timestamp": "2024-05-16T10:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.576500", + "Timestamp": "2024-05-16T10:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.576800", + "Timestamp": "2024-05-16T10:02:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.571800", + "Timestamp": "2024-05-16T10:02:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.446800", + "Timestamp": "2024-05-16T10:02:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.977500", + "Timestamp": "2024-05-16T10:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.772200", + "Timestamp": "2024-05-16T10:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.425700", + "Timestamp": "2024-05-16T10:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.420700", + "Timestamp": "2024-05-16T10:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.295700", + "Timestamp": "2024-05-16T10:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.540900", + "Timestamp": "2024-05-16T10:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.535900", + "Timestamp": "2024-05-16T10:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.410900", + "Timestamp": "2024-05-16T10:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161300", + "Timestamp": "2024-05-16T10:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.201300", + "Timestamp": "2024-05-16T10:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101300", + "Timestamp": "2024-05-16T10:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.338700", + "Timestamp": "2024-05-16T10:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.564100", + "Timestamp": "2024-05-16T10:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.182800", + "Timestamp": "2024-05-16T10:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179100", + "Timestamp": "2024-05-16T10:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122800", + "Timestamp": "2024-05-16T10:01:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.524900", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.519900", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.394900", + "Timestamp": "2024-05-16T10:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.223900", + "Timestamp": "2024-05-16T10:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.218900", + "Timestamp": "2024-05-16T10:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.093900", + "Timestamp": "2024-05-16T10:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.263300", + "Timestamp": "2024-05-16T10:01:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.866700", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.216100", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.872400", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.597800", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.592800", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.467800", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224000", + "Timestamp": "2024-05-16T10:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.671900", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.666900", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.541900", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.424900", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.419900", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.294900", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.698800", + "Timestamp": "2024-05-16T10:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.827100", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.822100", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.697100", + "Timestamp": "2024-05-16T10:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297100", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267100", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167100", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152200", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148200", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092200", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127100", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167100", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067100", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140100", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147900", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136400", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144200", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080100", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087900", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.077200", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.520900", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.072200", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.515900", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.947200", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.390900", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.565300", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.535300", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.435300", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.875000", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.870000", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.745000", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.406700", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.401700", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.276700", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.262800", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.257800", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.132800", + "Timestamp": "2024-05-16T10:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.377600", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.588400", + "Timestamp": "2024-05-16T10:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.456600", + "Timestamp": "2024-05-16T10:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.175200", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.171500", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115200", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.508200", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.503200", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.378200", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.617000", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.612000", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.487000", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.570700", + "Timestamp": "2024-05-16T10:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080100", + "Timestamp": "2024-05-16T09:48:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076400", + "Timestamp": "2024-05-16T09:48:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020100", + "Timestamp": "2024-05-16T09:48:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.350500", + "Timestamp": "2024-05-16T09:48:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.035600", + "Timestamp": "2024-05-16T09:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.828400", + "Timestamp": "2024-05-16T09:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.962500", + "Timestamp": "2024-05-16T09:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.957500", + "Timestamp": "2024-05-16T09:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.832500", + "Timestamp": "2024-05-16T09:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.509900", + "Timestamp": "2024-05-16T09:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.504900", + "Timestamp": "2024-05-16T09:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.379900", + "Timestamp": "2024-05-16T09:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.911500", + "Timestamp": "2024-05-16T09:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.714500", + "Timestamp": "2024-05-16T09:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.709500", + "Timestamp": "2024-05-16T09:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.584500", + "Timestamp": "2024-05-16T09:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.502700", + "Timestamp": "2024-05-16T09:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.497700", + "Timestamp": "2024-05-16T09:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.372700", + "Timestamp": "2024-05-16T09:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.641400", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.636400", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.511400", + "Timestamp": "2024-05-16T09:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.701500", + "Timestamp": "2024-05-16T09:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.696500", + "Timestamp": "2024-05-16T09:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.571500", + "Timestamp": "2024-05-16T09:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.194000", + "Timestamp": "2024-05-16T09:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072700", + "Timestamp": "2024-05-16T09:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069000", + "Timestamp": "2024-05-16T09:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012700", + "Timestamp": "2024-05-16T09:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.353000", + "Timestamp": "2024-05-16T09:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323000", + "Timestamp": "2024-05-16T09:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.223000", + "Timestamp": "2024-05-16T09:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218100", + "Timestamp": "2024-05-16T09:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.027500", + "Timestamp": "2024-05-16T09:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.739200", + "Timestamp": "2024-05-16T09:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105100", + "Timestamp": "2024-05-16T09:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101100", + "Timestamp": "2024-05-16T09:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045100", + "Timestamp": "2024-05-16T09:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.928400", + "Timestamp": "2024-05-16T09:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.143200", + "Timestamp": "2024-05-16T09:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.138200", + "Timestamp": "2024-05-16T09:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.013200", + "Timestamp": "2024-05-16T09:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.027700", + "Timestamp": "2024-05-16T09:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.022700", + "Timestamp": "2024-05-16T09:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.897700", + "Timestamp": "2024-05-16T09:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.355100", + "Timestamp": "2024-05-16T09:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.350100", + "Timestamp": "2024-05-16T09:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.225100", + "Timestamp": "2024-05-16T09:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.677700", + "Timestamp": "2024-05-16T09:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103400", + "Timestamp": "2024-05-16T09:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099700", + "Timestamp": "2024-05-16T09:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043400", + "Timestamp": "2024-05-16T09:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.118000", + "Timestamp": "2024-05-16T09:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.113000", + "Timestamp": "2024-05-16T09:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.988000", + "Timestamp": "2024-05-16T09:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.233900", + "Timestamp": "2024-05-16T09:47:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.232600", + "Timestamp": "2024-05-16T09:47:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.228900", + "Timestamp": "2024-05-16T09:47:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.227600", + "Timestamp": "2024-05-16T09:47:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103900", + "Timestamp": "2024-05-16T09:47:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-16T09:47:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.475400", + "Timestamp": "2024-05-16T09:47:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.579700", + "Timestamp": "2024-05-16T09:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.683400", + "Timestamp": "2024-05-16T09:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.154200", + "Timestamp": "2024-05-16T09:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.662500", + "Timestamp": "2024-05-16T09:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.657500", + "Timestamp": "2024-05-16T09:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.532500", + "Timestamp": "2024-05-16T09:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.883500", + "Timestamp": "2024-05-16T09:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.878500", + "Timestamp": "2024-05-16T09:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.753500", + "Timestamp": "2024-05-16T09:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224700", + "Timestamp": "2024-05-16T09:46:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.576000", + "Timestamp": "2024-05-16T09:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.530600", + "Timestamp": "2024-05-16T09:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.701200", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.671200", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.571200", + "Timestamp": "2024-05-16T09:46:45.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.711100", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.706100", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.581100", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.122200", + "Timestamp": "2024-05-16T09:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.414500", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.384500", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.284500", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.470300", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.465300", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.340300", + "Timestamp": "2024-05-16T09:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229500", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.138100", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.133100", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.008100", + "Timestamp": "2024-05-16T09:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.340500", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.335500", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.210500", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.523900", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.518900", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.393900", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.815700", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.785700", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.685700", + "Timestamp": "2024-05-16T09:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144400", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140700", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084400", + "Timestamp": "2024-05-16T09:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.050600", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.591300", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.586300", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.461300", + "Timestamp": "2024-05-16T09:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.900200", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152900", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148900", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092900", + "Timestamp": "2024-05-16T09:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.851400", + "Timestamp": "2024-05-16T09:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117400", + "Timestamp": "2024-05-16T09:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119600", + "Timestamp": "2024-05-16T09:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113700", + "Timestamp": "2024-05-16T09:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115900", + "Timestamp": "2024-05-16T09:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057400", + "Timestamp": "2024-05-16T09:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059600", + "Timestamp": "2024-05-16T09:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.400500", + "Timestamp": "2024-05-16T09:45:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.395500", + "Timestamp": "2024-05-16T09:45:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.270500", + "Timestamp": "2024-05-16T09:45:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.227300", + "Timestamp": "2024-05-16T09:43:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.147700", + "Timestamp": "2024-05-16T09:43:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.374800", + "Timestamp": "2024-05-16T09:43:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.480800", + "Timestamp": "2024-05-16T09:43:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.369800", + "Timestamp": "2024-05-16T09:43:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.475800", + "Timestamp": "2024-05-16T09:43:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.244800", + "Timestamp": "2024-05-16T09:43:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.350800", + "Timestamp": "2024-05-16T09:43:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.020800", + "Timestamp": "2024-05-16T09:34:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.020900", + "Timestamp": "2024-05-16T09:34:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082800", + "Timestamp": "2024-05-16T09:33:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079100", + "Timestamp": "2024-05-16T09:33:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022800", + "Timestamp": "2024-05-16T09:33:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.905700", + "Timestamp": "2024-05-16T09:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.900700", + "Timestamp": "2024-05-16T09:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.775700", + "Timestamp": "2024-05-16T09:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126700", + "Timestamp": "2024-05-16T09:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122700", + "Timestamp": "2024-05-16T09:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066700", + "Timestamp": "2024-05-16T09:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.719100", + "Timestamp": "2024-05-16T09:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.714100", + "Timestamp": "2024-05-16T09:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.589100", + "Timestamp": "2024-05-16T09:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148500", + "Timestamp": "2024-05-16T09:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144500", + "Timestamp": "2024-05-16T09:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088500", + "Timestamp": "2024-05-16T09:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.242800", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.237800", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112800", + "Timestamp": "2024-05-16T09:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.373100", + "Timestamp": "2024-05-16T09:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.022000", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.213000", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.732300", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.727300", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.602300", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.006300", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.329400", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.335200", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324400", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.330200", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199400", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.205200", + "Timestamp": "2024-05-16T09:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.841200", + "Timestamp": "2024-05-16T09:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431800", + "Timestamp": "2024-05-16T09:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T09:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087600", + "Timestamp": "2024-05-16T09:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083900", + "Timestamp": "2024-05-16T09:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027600", + "Timestamp": "2024-05-16T09:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.668500", + "Timestamp": "2024-05-16T09:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214800", + "Timestamp": "2024-05-16T09:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.683600", + "Timestamp": "2024-05-16T09:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.653600", + "Timestamp": "2024-05-16T09:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.553600", + "Timestamp": "2024-05-16T09:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.773000", + "Timestamp": "2024-05-16T09:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.768000", + "Timestamp": "2024-05-16T09:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.643000", + "Timestamp": "2024-05-16T09:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.454000", + "Timestamp": "2024-05-16T09:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.246100", + "Timestamp": "2024-05-16T09:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.504000", + "Timestamp": "2024-05-16T09:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.727100", + "Timestamp": "2024-05-16T09:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.244000", + "Timestamp": "2024-05-16T09:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.214000", + "Timestamp": "2024-05-16T09:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114000", + "Timestamp": "2024-05-16T09:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.957600", + "Timestamp": "2024-05-16T09:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.631300", + "Timestamp": "2024-05-16T09:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.626300", + "Timestamp": "2024-05-16T09:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.501300", + "Timestamp": "2024-05-16T09:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.225200", + "Timestamp": "2024-05-16T09:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166400", + "Timestamp": "2024-05-16T09:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162700", + "Timestamp": "2024-05-16T09:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T09:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.357900", + "Timestamp": "2024-05-16T09:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.397900", + "Timestamp": "2024-05-16T09:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.297900", + "Timestamp": "2024-05-16T09:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.298100", + "Timestamp": "2024-05-16T09:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.293100", + "Timestamp": "2024-05-16T09:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.168100", + "Timestamp": "2024-05-16T09:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.145700", + "Timestamp": "2024-05-16T09:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.097600", + "Timestamp": "2024-05-16T09:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.374100", + "Timestamp": "2024-05-16T09:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.344100", + "Timestamp": "2024-05-16T09:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.244100", + "Timestamp": "2024-05-16T09:31:49.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.235700", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.231700", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175700", + "Timestamp": "2024-05-16T09:31:46.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.559800", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.554800", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.429800", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.246400", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.241400", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-16T09:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.147300", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.142300", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.017300", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.883300", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.160100", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.156100", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100100", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.837000", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.832000", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.707000", + "Timestamp": "2024-05-16T09:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.034700", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.334000", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.029700", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.329000", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.904700", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.204000", + "Timestamp": "2024-05-16T09:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.463400", + "Timestamp": "2024-05-16T09:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.657500", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.652500", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.527500", + "Timestamp": "2024-05-16T09:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.380400", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.375400", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.250400", + "Timestamp": "2024-05-16T09:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.375800", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.345800", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.245800", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.096600", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.091600", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.966600", + "Timestamp": "2024-05-16T09:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.366400", + "Timestamp": "2024-05-16T09:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.919400", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.914400", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.789400", + "Timestamp": "2024-05-16T09:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.477000", + "Timestamp": "2024-05-16T09:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.467200", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.462200", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.337200", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.392000", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.387000", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.262000", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.331600", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.326600", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.201600", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.804200", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.799200", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.674200", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.485100", + "Timestamp": "2024-05-16T09:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.190400", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.187400", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.130400", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.419500", + "Timestamp": "2024-05-16T09:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.866800", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.513900", + "Timestamp": "2024-05-16T09:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.397100", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.392100", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.267100", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.425600", + "Timestamp": "2024-05-16T09:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.376600", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.371600", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.246600", + "Timestamp": "2024-05-16T09:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215300", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077700", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074000", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017700", + "Timestamp": "2024-05-16T09:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.395500", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.365500", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.265500", + "Timestamp": "2024-05-16T09:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.479400", + "Timestamp": "2024-05-16T09:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.605600", + "Timestamp": "2024-05-16T09:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.600600", + "Timestamp": "2024-05-16T09:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.475600", + "Timestamp": "2024-05-16T09:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.386800", + "Timestamp": "2024-05-16T09:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.381800", + "Timestamp": "2024-05-16T09:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.256800", + "Timestamp": "2024-05-16T09:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.297900", + "Timestamp": "2024-05-16T09:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077000", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.048000", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017000", + "Timestamp": "2024-05-16T09:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.687600", + "Timestamp": "2024-05-16T09:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.682600", + "Timestamp": "2024-05-16T09:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.557600", + "Timestamp": "2024-05-16T09:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.452300", + "Timestamp": "2024-05-16T09:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.438900", + "Timestamp": "2024-05-16T09:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.447300", + "Timestamp": "2024-05-16T09:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.433900", + "Timestamp": "2024-05-16T09:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.322300", + "Timestamp": "2024-05-16T09:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.308900", + "Timestamp": "2024-05-16T09:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.366400", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.361400", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.236400", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077700", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.048700", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017700", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.628400", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.598400", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.498400", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.768300", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.763300", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.638300", + "Timestamp": "2024-05-16T09:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.531200", + "Timestamp": "2024-05-16T09:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.501200", + "Timestamp": "2024-05-16T09:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.401200", + "Timestamp": "2024-05-16T09:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.475800", + "Timestamp": "2024-05-16T09:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.470800", + "Timestamp": "2024-05-16T09:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.345800", + "Timestamp": "2024-05-16T09:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.748800", + "Timestamp": "2024-05-16T09:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.743800", + "Timestamp": "2024-05-16T09:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.618800", + "Timestamp": "2024-05-16T09:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.935700", + "Timestamp": "2024-05-16T09:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.466400", + "Timestamp": "2024-05-16T09:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.481600", + "Timestamp": "2024-05-16T09:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.476600", + "Timestamp": "2024-05-16T09:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.351600", + "Timestamp": "2024-05-16T09:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306500", + "Timestamp": "2024-05-16T09:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301500", + "Timestamp": "2024-05-16T09:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176500", + "Timestamp": "2024-05-16T09:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.488500", + "Timestamp": "2024-05-16T09:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.483500", + "Timestamp": "2024-05-16T09:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.358500", + "Timestamp": "2024-05-16T09:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.689100", + "Timestamp": "2024-05-16T09:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.363400", + "Timestamp": "2024-05-16T09:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.358400", + "Timestamp": "2024-05-16T09:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.233400", + "Timestamp": "2024-05-16T09:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.078700", + "Timestamp": "2024-05-16T09:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.048700", + "Timestamp": "2024-05-16T09:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.948700", + "Timestamp": "2024-05-16T09:17:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.228300", + "Timestamp": "2024-05-16T09:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225400", + "Timestamp": "2024-05-16T09:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.411300", + "Timestamp": "2024-05-16T09:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.406300", + "Timestamp": "2024-05-16T09:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.281300", + "Timestamp": "2024-05-16T09:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.919300", + "Timestamp": "2024-05-16T09:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080700", + "Timestamp": "2024-05-16T09:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077000", + "Timestamp": "2024-05-16T09:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020700", + "Timestamp": "2024-05-16T09:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.394200", + "Timestamp": "2024-05-16T09:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147100", + "Timestamp": "2024-05-16T09:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143400", + "Timestamp": "2024-05-16T09:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087100", + "Timestamp": "2024-05-16T09:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.864400", + "Timestamp": "2024-05-16T09:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.268700", + "Timestamp": "2024-05-16T09:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.682400", + "Timestamp": "2024-05-16T09:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431000", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.390700", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.438200", + "Timestamp": "2024-05-16T09:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.608200", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.603200", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.478200", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.651000", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.646000", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.521000", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166300", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162300", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.090900", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.717000", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.687000", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.587000", + "Timestamp": "2024-05-16T09:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.598200", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.593200", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.468200", + "Timestamp": "2024-05-16T09:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.685100", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.680100", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.555100", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.381400", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.376400", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.251400", + "Timestamp": "2024-05-16T09:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.975800", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.970800", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.845800", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.697200", + "Timestamp": "2024-05-16T09:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.253600", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.248600", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123600", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.382800", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140700", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136700", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080700", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.320100", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.290100", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.190100", + "Timestamp": "2024-05-16T09:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.934600", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063900", + "Timestamp": "2024-05-16T09:03:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003900", + "Timestamp": "2024-05-16T09:03:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003900", + "Timestamp": "2024-05-16T09:03:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.670800", + "Timestamp": "2024-05-16T09:02:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.052800", + "Timestamp": "2024-05-16T09:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.047800", + "Timestamp": "2024-05-16T09:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.922800", + "Timestamp": "2024-05-16T09:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.446300", + "Timestamp": "2024-05-16T09:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.441300", + "Timestamp": "2024-05-16T09:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.316300", + "Timestamp": "2024-05-16T09:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.098700", + "Timestamp": "2024-05-16T09:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.854800", + "Timestamp": "2024-05-16T09:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.788500", + "Timestamp": "2024-05-16T09:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.783500", + "Timestamp": "2024-05-16T09:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.658500", + "Timestamp": "2024-05-16T09:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138500", + "Timestamp": "2024-05-16T09:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134800", + "Timestamp": "2024-05-16T09:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078500", + "Timestamp": "2024-05-16T09:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.817200", + "Timestamp": "2024-05-16T09:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233300", + "Timestamp": "2024-05-16T09:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.976000", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.971000", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.846000", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.157900", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.492700", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.487700", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.362700", + "Timestamp": "2024-05-16T09:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.561800", + "Timestamp": "2024-05-16T09:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.210500", + "Timestamp": "2024-05-16T09:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.382500", + "Timestamp": "2024-05-16T09:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.352500", + "Timestamp": "2024-05-16T09:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.252500", + "Timestamp": "2024-05-16T09:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.326100", + "Timestamp": "2024-05-16T09:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.296100", + "Timestamp": "2024-05-16T09:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.196100", + "Timestamp": "2024-05-16T09:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.400800", + "Timestamp": "2024-05-16T09:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.395800", + "Timestamp": "2024-05-16T09:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.270800", + "Timestamp": "2024-05-16T09:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098200", + "Timestamp": "2024-05-16T09:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094500", + "Timestamp": "2024-05-16T09:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038200", + "Timestamp": "2024-05-16T09:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.292500", + "Timestamp": "2024-05-16T09:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.287500", + "Timestamp": "2024-05-16T09:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162500", + "Timestamp": "2024-05-16T09:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.114100", + "Timestamp": "2024-05-16T09:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.109100", + "Timestamp": "2024-05-16T09:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.984100", + "Timestamp": "2024-05-16T09:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206900", + "Timestamp": "2024-05-16T09:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.241000", + "Timestamp": "2024-05-16T09:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.236000", + "Timestamp": "2024-05-16T09:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T09:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.339900", + "Timestamp": "2024-05-16T09:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.956900", + "Timestamp": "2024-05-16T09:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.427600", + "Timestamp": "2024-05-16T09:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.422600", + "Timestamp": "2024-05-16T09:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.297600", + "Timestamp": "2024-05-16T09:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.847700", + "Timestamp": "2024-05-16T09:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.842700", + "Timestamp": "2024-05-16T09:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.717700", + "Timestamp": "2024-05-16T09:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.385300", + "Timestamp": "2024-05-16T09:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.380300", + "Timestamp": "2024-05-16T09:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.255300", + "Timestamp": "2024-05-16T09:02:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.049100", + "Timestamp": "2024-05-16T09:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.019100", + "Timestamp": "2024-05-16T09:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.919100", + "Timestamp": "2024-05-16T09:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.911500", + "Timestamp": "2024-05-16T09:01:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096100", + "Timestamp": "2024-05-16T09:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092400", + "Timestamp": "2024-05-16T09:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036100", + "Timestamp": "2024-05-16T09:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417400", + "Timestamp": "2024-05-16T09:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.874500", + "Timestamp": "2024-05-16T09:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.869500", + "Timestamp": "2024-05-16T09:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.744500", + "Timestamp": "2024-05-16T09:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.042400", + "Timestamp": "2024-05-16T09:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.037400", + "Timestamp": "2024-05-16T09:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.912400", + "Timestamp": "2024-05-16T09:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118900", + "Timestamp": "2024-05-16T09:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114900", + "Timestamp": "2024-05-16T09:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058900", + "Timestamp": "2024-05-16T09:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.201200", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.196200", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.071200", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439500", + "Timestamp": "2024-05-16T09:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.144500", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.140800", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084500", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.526800", + "Timestamp": "2024-05-16T09:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.303900", + "Timestamp": "2024-05-16T09:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.248400", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.243400", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118400", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.399100", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.394100", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.269100", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.433400", + "Timestamp": "2024-05-16T09:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.756100", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.022100", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.017100", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.892100", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170200", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166500", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T09:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.049100", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.203300", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.036600", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.019100", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.173300", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.006600", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.919100", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.073300", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.906600", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.313200", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.283200", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.183200", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.590100", + "Timestamp": "2024-05-16T09:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.810100", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.184900", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179900", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054900", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.714400", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.709400", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.584400", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.350300", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.345300", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.220300", + "Timestamp": "2024-05-16T09:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.397900", + "Timestamp": "2024-05-16T09:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.392900", + "Timestamp": "2024-05-16T09:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.267900", + "Timestamp": "2024-05-16T09:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.391800", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.361800", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.261800", + "Timestamp": "2024-05-16T09:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.045400", + "Timestamp": "2024-05-16T09:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.330800", + "Timestamp": "2024-05-16T08:58:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.330800", + "Timestamp": "2024-05-16T08:58:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005900", + "Timestamp": "2024-05-16T08:48:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.528600", + "Timestamp": "2024-05-16T08:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.523600", + "Timestamp": "2024-05-16T08:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.398600", + "Timestamp": "2024-05-16T08:47:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.365400", + "Timestamp": "2024-05-16T08:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.360400", + "Timestamp": "2024-05-16T08:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.235400", + "Timestamp": "2024-05-16T08:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.081600", + "Timestamp": "2024-05-16T08:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.152900", + "Timestamp": "2024-05-16T08:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.555100", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.550100", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.425100", + "Timestamp": "2024-05-16T08:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.500500", + "Timestamp": "2024-05-16T08:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.495500", + "Timestamp": "2024-05-16T08:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.370500", + "Timestamp": "2024-05-16T08:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.662300", + "Timestamp": "2024-05-16T08:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.657300", + "Timestamp": "2024-05-16T08:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.532300", + "Timestamp": "2024-05-16T08:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.433300", + "Timestamp": "2024-05-16T08:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.666900", + "Timestamp": "2024-05-16T08:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.079300", + "Timestamp": "2024-05-16T08:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.547900", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.363300", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.358300", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.233300", + "Timestamp": "2024-05-16T08:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.390500", + "Timestamp": "2024-05-16T08:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.385500", + "Timestamp": "2024-05-16T08:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.260500", + "Timestamp": "2024-05-16T08:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091700", + "Timestamp": "2024-05-16T08:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088000", + "Timestamp": "2024-05-16T08:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031700", + "Timestamp": "2024-05-16T08:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.428900", + "Timestamp": "2024-05-16T08:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.423900", + "Timestamp": "2024-05-16T08:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.298900", + "Timestamp": "2024-05-16T08:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.661700", + "Timestamp": "2024-05-16T08:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.656700", + "Timestamp": "2024-05-16T08:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.531700", + "Timestamp": "2024-05-16T08:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.985000", + "Timestamp": "2024-05-16T08:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.980000", + "Timestamp": "2024-05-16T08:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.855000", + "Timestamp": "2024-05-16T08:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.682700", + "Timestamp": "2024-05-16T08:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.652700", + "Timestamp": "2024-05-16T08:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.552700", + "Timestamp": "2024-05-16T08:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.540600", + "Timestamp": "2024-05-16T08:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.565800", + "Timestamp": "2024-05-16T08:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.535600", + "Timestamp": "2024-05-16T08:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.560800", + "Timestamp": "2024-05-16T08:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.410600", + "Timestamp": "2024-05-16T08:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.435800", + "Timestamp": "2024-05-16T08:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.668500", + "Timestamp": "2024-05-16T08:46:57.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.663500", + "Timestamp": "2024-05-16T08:46:57.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.538500", + "Timestamp": "2024-05-16T08:46:57.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.466200", + "Timestamp": "2024-05-16T08:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.615000", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.231900", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.226900", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.101900", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.668100", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.663100", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.538100", + "Timestamp": "2024-05-16T08:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.273500", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.268500", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.143500", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.722200", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.717200", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.592200", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113700", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053700", + "Timestamp": "2024-05-16T08:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.171700", + "Timestamp": "2024-05-16T08:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.141700", + "Timestamp": "2024-05-16T08:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.041700", + "Timestamp": "2024-05-16T08:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.388500", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.383500", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.258500", + "Timestamp": "2024-05-16T08:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.765200", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.412800", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.407800", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.282800", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.637100", + "Timestamp": "2024-05-16T08:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.769100", + "Timestamp": "2024-05-16T08:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.433300", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.554800", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.549800", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.424800", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.414300", + "Timestamp": "2024-05-16T08:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.472300", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.467300", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.342300", + "Timestamp": "2024-05-16T08:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.712900", + "Timestamp": "2024-05-16T08:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.320800", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.558800", + "Timestamp": "2024-05-16T08:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.724600", + "Timestamp": "2024-05-16T08:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.406000", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.376000", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.276000", + "Timestamp": "2024-05-16T08:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138700", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135000", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078700", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.867700", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.697600", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.882600", + "Timestamp": "2024-05-16T08:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.605400", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.600400", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.475400", + "Timestamp": "2024-05-16T08:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.240000", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.235000", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T08:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077900", + "Timestamp": "2024-05-16T08:46:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078000", + "Timestamp": "2024-05-16T08:46:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074200", + "Timestamp": "2024-05-16T08:46:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074300", + "Timestamp": "2024-05-16T08:46:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017900", + "Timestamp": "2024-05-16T08:46:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018000", + "Timestamp": "2024-05-16T08:46:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.023700", + "Timestamp": "2024-05-16T08:46:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.024400", + "Timestamp": "2024-05-16T08:46:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.024000", + "Timestamp": "2024-05-16T08:46:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107800", + "Timestamp": "2024-05-16T08:33:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.677600", + "Timestamp": "2024-05-16T08:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.473400", + "Timestamp": "2024-05-16T08:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.393600", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.363600", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.263600", + "Timestamp": "2024-05-16T08:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.836000", + "Timestamp": "2024-05-16T08:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.831000", + "Timestamp": "2024-05-16T08:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.706000", + "Timestamp": "2024-05-16T08:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.540800", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.535800", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.410800", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.212000", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.208300", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.152000", + "Timestamp": "2024-05-16T08:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.519000", + "Timestamp": "2024-05-16T08:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.514000", + "Timestamp": "2024-05-16T08:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.389000", + "Timestamp": "2024-05-16T08:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.893800", + "Timestamp": "2024-05-16T08:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.888800", + "Timestamp": "2024-05-16T08:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.763800", + "Timestamp": "2024-05-16T08:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.364100", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.359100", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.234100", + "Timestamp": "2024-05-16T08:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T08:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.124800", + "Timestamp": "2024-05-16T08:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.119800", + "Timestamp": "2024-05-16T08:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.994800", + "Timestamp": "2024-05-16T08:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.464900", + "Timestamp": "2024-05-16T08:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216300", + "Timestamp": "2024-05-16T08:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.396600", + "Timestamp": "2024-05-16T08:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.391600", + "Timestamp": "2024-05-16T08:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.266600", + "Timestamp": "2024-05-16T08:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.914000", + "Timestamp": "2024-05-16T08:32:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.596700", + "Timestamp": "2024-05-16T08:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.591700", + "Timestamp": "2024-05-16T08:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.466700", + "Timestamp": "2024-05-16T08:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.811900", + "Timestamp": "2024-05-16T08:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.806900", + "Timestamp": "2024-05-16T08:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.681900", + "Timestamp": "2024-05-16T08:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.056900", + "Timestamp": "2024-05-16T08:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.026900", + "Timestamp": "2024-05-16T08:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.926900", + "Timestamp": "2024-05-16T08:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.289800", + "Timestamp": "2024-05-16T08:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.284800", + "Timestamp": "2024-05-16T08:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159800", + "Timestamp": "2024-05-16T08:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.186500", + "Timestamp": "2024-05-16T08:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.181500", + "Timestamp": "2024-05-16T08:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.056500", + "Timestamp": "2024-05-16T08:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.483900", + "Timestamp": "2024-05-16T08:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.478900", + "Timestamp": "2024-05-16T08:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.353900", + "Timestamp": "2024-05-16T08:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.396100", + "Timestamp": "2024-05-16T08:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.391100", + "Timestamp": "2024-05-16T08:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.266100", + "Timestamp": "2024-05-16T08:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.378300", + "Timestamp": "2024-05-16T08:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.348300", + "Timestamp": "2024-05-16T08:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.248300", + "Timestamp": "2024-05-16T08:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.871400", + "Timestamp": "2024-05-16T08:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.866400", + "Timestamp": "2024-05-16T08:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.741400", + "Timestamp": "2024-05-16T08:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.822700", + "Timestamp": "2024-05-16T08:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.792700", + "Timestamp": "2024-05-16T08:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.692700", + "Timestamp": "2024-05-16T08:32:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.631100", + "Timestamp": "2024-05-16T08:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.626100", + "Timestamp": "2024-05-16T08:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.501100", + "Timestamp": "2024-05-16T08:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.629800", + "Timestamp": "2024-05-16T08:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094900", + "Timestamp": "2024-05-16T08:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090900", + "Timestamp": "2024-05-16T08:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034900", + "Timestamp": "2024-05-16T08:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.616700", + "Timestamp": "2024-05-16T08:32:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.817300", + "Timestamp": "2024-05-16T08:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.468500", + "Timestamp": "2024-05-16T08:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.238900", + "Timestamp": "2024-05-16T08:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.234900", + "Timestamp": "2024-05-16T08:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.178900", + "Timestamp": "2024-05-16T08:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.980600", + "Timestamp": "2024-05-16T08:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.975600", + "Timestamp": "2024-05-16T08:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.850600", + "Timestamp": "2024-05-16T08:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.159300", + "Timestamp": "2024-05-16T08:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.598000", + "Timestamp": "2024-05-16T08:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.593000", + "Timestamp": "2024-05-16T08:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.468000", + "Timestamp": "2024-05-16T08:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.637500", + "Timestamp": "2024-05-16T08:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.607500", + "Timestamp": "2024-05-16T08:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.507500", + "Timestamp": "2024-05-16T08:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.333800", + "Timestamp": "2024-05-16T08:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.785000", + "Timestamp": "2024-05-16T08:31:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.481000", + "Timestamp": "2024-05-16T08:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.627400", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.622400", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.497400", + "Timestamp": "2024-05-16T08:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083200", + "Timestamp": "2024-05-16T08:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079500", + "Timestamp": "2024-05-16T08:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023200", + "Timestamp": "2024-05-16T08:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.230900", + "Timestamp": "2024-05-16T08:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.225900", + "Timestamp": "2024-05-16T08:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-16T08:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.463700", + "Timestamp": "2024-05-16T08:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.458700", + "Timestamp": "2024-05-16T08:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.333700", + "Timestamp": "2024-05-16T08:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.393500", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.388500", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.263500", + "Timestamp": "2024-05-16T08:31:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.711500", + "Timestamp": "2024-05-16T08:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.631800", + "Timestamp": "2024-05-16T08:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "8.637700", + "Timestamp": "2024-05-16T08:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173800", + "Timestamp": "2024-05-16T08:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.213800", + "Timestamp": "2024-05-16T08:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113800", + "Timestamp": "2024-05-16T08:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.896400", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.392400", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.387400", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.262400", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.447100", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.082900", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.071300", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.052900", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.041300", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.952900", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.941300", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.481300", + "Timestamp": "2024-05-16T08:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.520900", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.515900", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.390900", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219600", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307200", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302200", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.177200", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098000", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041700", + "Timestamp": "2024-05-16T08:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.615000", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.828900", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.823900", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.698900", + "Timestamp": "2024-05-16T08:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.832500", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.827500", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.702500", + "Timestamp": "2024-05-16T08:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094000", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090300", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034000", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068100", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039100", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008100", + "Timestamp": "2024-05-16T08:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.358900", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.353900", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.228900", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.090900", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.424500", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.579800", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.574800", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.449800", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.448200", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437400", + "Timestamp": "2024-05-16T08:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.198600", + "Timestamp": "2024-05-16T08:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.868000", + "Timestamp": "2024-05-16T08:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.783000", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.753000", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.653000", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.667200", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.792800", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.787800", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.662800", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.703100", + "Timestamp": "2024-05-16T08:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.986100", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.896100", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T08:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101800", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045800", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.568500", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.447400", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.442400", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.317400", + "Timestamp": "2024-05-16T08:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.909500", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.904500", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.779500", + "Timestamp": "2024-05-16T08:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.417000", + "Timestamp": "2024-05-16T08:31:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.387000", + "Timestamp": "2024-05-16T08:31:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.287000", + "Timestamp": "2024-05-16T08:31:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T08:28:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.847500", + "Timestamp": "2024-05-16T08:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.842500", + "Timestamp": "2024-05-16T08:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.717500", + "Timestamp": "2024-05-16T08:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.574400", + "Timestamp": "2024-05-16T08:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.569400", + "Timestamp": "2024-05-16T08:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.444400", + "Timestamp": "2024-05-16T08:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.636700", + "Timestamp": "2024-05-16T08:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.631700", + "Timestamp": "2024-05-16T08:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.506700", + "Timestamp": "2024-05-16T08:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.828900", + "Timestamp": "2024-05-16T08:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.823900", + "Timestamp": "2024-05-16T08:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.698900", + "Timestamp": "2024-05-16T08:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.085800", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T08:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.577300", + "Timestamp": "2024-05-16T08:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.572300", + "Timestamp": "2024-05-16T08:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.447300", + "Timestamp": "2024-05-16T08:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.706100", + "Timestamp": "2024-05-16T08:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.630700", + "Timestamp": "2024-05-16T08:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.390200", + "Timestamp": "2024-05-16T08:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.385200", + "Timestamp": "2024-05-16T08:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.260200", + "Timestamp": "2024-05-16T08:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.712900", + "Timestamp": "2024-05-16T08:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.246500", + "Timestamp": "2024-05-16T08:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.241500", + "Timestamp": "2024-05-16T08:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116500", + "Timestamp": "2024-05-16T08:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099600", + "Timestamp": "2024-05-16T08:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095600", + "Timestamp": "2024-05-16T08:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039600", + "Timestamp": "2024-05-16T08:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.001600", + "Timestamp": "2024-05-16T08:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.996600", + "Timestamp": "2024-05-16T08:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.871600", + "Timestamp": "2024-05-16T08:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.429100", + "Timestamp": "2024-05-16T08:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.424100", + "Timestamp": "2024-05-16T08:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.299100", + "Timestamp": "2024-05-16T08:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.390600", + "Timestamp": "2024-05-16T08:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.360600", + "Timestamp": "2024-05-16T08:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.260600", + "Timestamp": "2024-05-16T08:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.403100", + "Timestamp": "2024-05-16T08:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.074200", + "Timestamp": "2024-05-16T08:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.069200", + "Timestamp": "2024-05-16T08:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.944200", + "Timestamp": "2024-05-16T08:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.568200", + "Timestamp": "2024-05-16T08:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.563200", + "Timestamp": "2024-05-16T08:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.438200", + "Timestamp": "2024-05-16T08:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.835500", + "Timestamp": "2024-05-16T08:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.450600", + "Timestamp": "2024-05-16T08:17:13.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.445600", + "Timestamp": "2024-05-16T08:17:13.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.320600", + "Timestamp": "2024-05-16T08:17:13.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067800", + "Timestamp": "2024-05-16T08:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038800", + "Timestamp": "2024-05-16T08:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007800", + "Timestamp": "2024-05-16T08:17:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.787800", + "Timestamp": "2024-05-16T08:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.782800", + "Timestamp": "2024-05-16T08:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.657800", + "Timestamp": "2024-05-16T08:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.502400", + "Timestamp": "2024-05-16T08:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.497400", + "Timestamp": "2024-05-16T08:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.372400", + "Timestamp": "2024-05-16T08:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.460500", + "Timestamp": "2024-05-16T08:17:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.455500", + "Timestamp": "2024-05-16T08:17:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.330500", + "Timestamp": "2024-05-16T08:17:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T08:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141200", + "Timestamp": "2024-05-16T08:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041200", + "Timestamp": "2024-05-16T08:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.359800", + "Timestamp": "2024-05-16T08:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.354800", + "Timestamp": "2024-05-16T08:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.229800", + "Timestamp": "2024-05-16T08:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.859400", + "Timestamp": "2024-05-16T08:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.854400", + "Timestamp": "2024-05-16T08:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.729400", + "Timestamp": "2024-05-16T08:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.320200", + "Timestamp": "2024-05-16T08:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.315200", + "Timestamp": "2024-05-16T08:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.190200", + "Timestamp": "2024-05-16T08:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.940800", + "Timestamp": "2024-05-16T08:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.588300", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.309100", + "Timestamp": "2024-05-16T08:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.256000", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.251000", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126000", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.724700", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.719700", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.594700", + "Timestamp": "2024-05-16T08:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.534700", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.808400", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.803400", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.678400", + "Timestamp": "2024-05-16T08:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.512500", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.254900", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.385500", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.380500", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.255500", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.732100", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.727100", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.602100", + "Timestamp": "2024-05-16T08:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.567200", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.537200", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.437200", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098500", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094500", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038500", + "Timestamp": "2024-05-16T08:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.137200", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133200", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.077200", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.206800", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.201800", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.076800", + "Timestamp": "2024-05-16T08:16:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.455600", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.450600", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.325600", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.502700", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.497700", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.372700", + "Timestamp": "2024-05-16T08:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.420400", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.841800", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.836800", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.711800", + "Timestamp": "2024-05-16T08:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.392000", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.387000", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.262000", + "Timestamp": "2024-05-16T08:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145000", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141000", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085000", + "Timestamp": "2024-05-16T08:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324100", + "Timestamp": "2024-05-16T08:16:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319100", + "Timestamp": "2024-05-16T08:16:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194100", + "Timestamp": "2024-05-16T08:16:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.668800", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.663800", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.538800", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.904800", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.899800", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.774800", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.080300", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.075300", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.950300", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.529700", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.524700", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.399700", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.710600", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.267500", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.675200", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.645200", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.545200", + "Timestamp": "2024-05-16T08:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.598300", + "Timestamp": "2024-05-16T08:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.718300", + "Timestamp": "2024-05-16T08:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.593300", + "Timestamp": "2024-05-16T08:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.713300", + "Timestamp": "2024-05-16T08:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.468300", + "Timestamp": "2024-05-16T08:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.588300", + "Timestamp": "2024-05-16T08:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158100", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154400", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.461200", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.456200", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.331200", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.969000", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.844900", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095800", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035800", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.772900", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.767900", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.642900", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.295600", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.290600", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165600", + "Timestamp": "2024-05-16T08:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.957300", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.952300", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.827300", + "Timestamp": "2024-05-16T08:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071800", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068100", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011800", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.810700", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.805700", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.680700", + "Timestamp": "2024-05-16T08:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.759500", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.754500", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.629500", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.902600", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.877100", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.238200", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.233200", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.108200", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431600", + "Timestamp": "2024-05-16T08:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.562700", + "Timestamp": "2024-05-16T08:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.557700", + "Timestamp": "2024-05-16T08:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.432700", + "Timestamp": "2024-05-16T08:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.463600", + "Timestamp": "2024-05-16T08:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.751300", + "Timestamp": "2024-05-16T08:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.058000", + "Timestamp": "2024-05-16T08:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.492300", + "Timestamp": "2024-05-16T08:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.605200", + "Timestamp": "2024-05-16T08:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.600200", + "Timestamp": "2024-05-16T08:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.475200", + "Timestamp": "2024-05-16T08:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165600", + "Timestamp": "2024-05-16T08:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161600", + "Timestamp": "2024-05-16T08:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T08:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270000", + "Timestamp": "2024-05-16T08:02:10.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265000", + "Timestamp": "2024-05-16T08:02:10.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140000", + "Timestamp": "2024-05-16T08:02:10.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.435800", + "Timestamp": "2024-05-16T08:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362500", + "Timestamp": "2024-05-16T08:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.357500", + "Timestamp": "2024-05-16T08:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.232500", + "Timestamp": "2024-05-16T08:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.314900", + "Timestamp": "2024-05-16T08:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.525300", + "Timestamp": "2024-05-16T08:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.309900", + "Timestamp": "2024-05-16T08:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.520300", + "Timestamp": "2024-05-16T08:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.184900", + "Timestamp": "2024-05-16T08:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.395300", + "Timestamp": "2024-05-16T08:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.829100", + "Timestamp": "2024-05-16T08:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.335600", + "Timestamp": "2024-05-16T08:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.330600", + "Timestamp": "2024-05-16T08:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.205600", + "Timestamp": "2024-05-16T08:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.483900", + "Timestamp": "2024-05-16T08:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.453900", + "Timestamp": "2024-05-16T08:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.353900", + "Timestamp": "2024-05-16T08:02:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.040900", + "Timestamp": "2024-05-16T08:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.035900", + "Timestamp": "2024-05-16T08:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.910900", + "Timestamp": "2024-05-16T08:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086100", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082400", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026100", + "Timestamp": "2024-05-16T08:02:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Windows", + "SpotPrice": "12.094800", + "Timestamp": "2024-05-16T08:01:59.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.237600", + "Timestamp": "2024-05-16T08:01:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.476400", + "Timestamp": "2024-05-16T08:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.471400", + "Timestamp": "2024-05-16T08:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.346400", + "Timestamp": "2024-05-16T08:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.454000", + "Timestamp": "2024-05-16T08:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.449000", + "Timestamp": "2024-05-16T08:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.324000", + "Timestamp": "2024-05-16T08:01:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.024600", + "Timestamp": "2024-05-16T08:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.872000", + "Timestamp": "2024-05-16T08:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.867000", + "Timestamp": "2024-05-16T08:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.742000", + "Timestamp": "2024-05-16T08:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.002200", + "Timestamp": "2024-05-16T08:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.997200", + "Timestamp": "2024-05-16T08:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.872200", + "Timestamp": "2024-05-16T08:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.558100", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.553100", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.428100", + "Timestamp": "2024-05-16T08:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.401900", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.396900", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.271900", + "Timestamp": "2024-05-16T08:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.083700", + "Timestamp": "2024-05-16T08:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.242300", + "Timestamp": "2024-05-16T08:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.642100", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.637100", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.512100", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.258500", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.344200", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.253500", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.339200", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128500", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.214200", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.340100", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.335100", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.210100", + "Timestamp": "2024-05-16T08:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061800", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001800", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001800", + "Timestamp": "2024-05-16T08:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.445900", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.614300", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.609300", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.484300", + "Timestamp": "2024-05-16T08:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098600", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094900", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038600", + "Timestamp": "2024-05-16T08:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.379200", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.349200", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.249200", + "Timestamp": "2024-05-16T08:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042800", + "Timestamp": "2024-05-16T08:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.582900", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.646200", + "Timestamp": "2024-05-16T08:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233200", + "Timestamp": "2024-05-16T08:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.472100", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.467100", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.342100", + "Timestamp": "2024-05-16T08:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.567300", + "Timestamp": "2024-05-16T08:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.086600", + "Timestamp": "2024-05-16T08:01:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.093200", + "Timestamp": "2024-05-16T07:48:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125700", + "Timestamp": "2024-05-16T07:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122000", + "Timestamp": "2024-05-16T07:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065700", + "Timestamp": "2024-05-16T07:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.713600", + "Timestamp": "2024-05-16T07:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.032000", + "Timestamp": "2024-05-16T07:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.027000", + "Timestamp": "2024-05-16T07:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.902000", + "Timestamp": "2024-05-16T07:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.867800", + "Timestamp": "2024-05-16T07:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.467300", + "Timestamp": "2024-05-16T07:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.462300", + "Timestamp": "2024-05-16T07:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.337300", + "Timestamp": "2024-05-16T07:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.843600", + "Timestamp": "2024-05-16T07:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.264900", + "Timestamp": "2024-05-16T07:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139800", + "Timestamp": "2024-05-16T07:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136100", + "Timestamp": "2024-05-16T07:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079800", + "Timestamp": "2024-05-16T07:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.532600", + "Timestamp": "2024-05-16T07:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.527600", + "Timestamp": "2024-05-16T07:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.402600", + "Timestamp": "2024-05-16T07:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.465100", + "Timestamp": "2024-05-16T07:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.460100", + "Timestamp": "2024-05-16T07:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.335100", + "Timestamp": "2024-05-16T07:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.517100", + "Timestamp": "2024-05-16T07:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.512100", + "Timestamp": "2024-05-16T07:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.387100", + "Timestamp": "2024-05-16T07:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.845600", + "Timestamp": "2024-05-16T07:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.815600", + "Timestamp": "2024-05-16T07:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.715600", + "Timestamp": "2024-05-16T07:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294300", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289300", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164300", + "Timestamp": "2024-05-16T07:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113100", + "Timestamp": "2024-05-16T07:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T07:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053100", + "Timestamp": "2024-05-16T07:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096200", + "Timestamp": "2024-05-16T07:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092500", + "Timestamp": "2024-05-16T07:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036200", + "Timestamp": "2024-05-16T07:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.404400", + "Timestamp": "2024-05-16T07:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122800", + "Timestamp": "2024-05-16T07:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119100", + "Timestamp": "2024-05-16T07:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062800", + "Timestamp": "2024-05-16T07:47:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.290800", + "Timestamp": "2024-05-16T07:47:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.648900", + "Timestamp": "2024-05-16T07:47:10.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.349100", + "Timestamp": "2024-05-16T07:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.344100", + "Timestamp": "2024-05-16T07:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219100", + "Timestamp": "2024-05-16T07:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.453900", + "Timestamp": "2024-05-16T07:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.448900", + "Timestamp": "2024-05-16T07:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.323900", + "Timestamp": "2024-05-16T07:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067500", + "Timestamp": "2024-05-16T07:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037500", + "Timestamp": "2024-05-16T07:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007500", + "Timestamp": "2024-05-16T07:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.165000", + "Timestamp": "2024-05-16T07:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.160000", + "Timestamp": "2024-05-16T07:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.035000", + "Timestamp": "2024-05-16T07:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.456800", + "Timestamp": "2024-05-16T07:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.451800", + "Timestamp": "2024-05-16T07:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.326800", + "Timestamp": "2024-05-16T07:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.041800", + "Timestamp": "2024-05-16T07:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.258700", + "Timestamp": "2024-05-16T07:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.253700", + "Timestamp": "2024-05-16T07:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128700", + "Timestamp": "2024-05-16T07:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.293300", + "Timestamp": "2024-05-16T07:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.683000", + "Timestamp": "2024-05-16T07:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.805200", + "Timestamp": "2024-05-16T07:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.678000", + "Timestamp": "2024-05-16T07:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.800200", + "Timestamp": "2024-05-16T07:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.553000", + "Timestamp": "2024-05-16T07:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.675200", + "Timestamp": "2024-05-16T07:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.057400", + "Timestamp": "2024-05-16T07:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.052400", + "Timestamp": "2024-05-16T07:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.927400", + "Timestamp": "2024-05-16T07:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150500", + "Timestamp": "2024-05-16T07:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152500", + "Timestamp": "2024-05-16T07:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146500", + "Timestamp": "2024-05-16T07:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148500", + "Timestamp": "2024-05-16T07:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090500", + "Timestamp": "2024-05-16T07:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092500", + "Timestamp": "2024-05-16T07:46:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.818600", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.813600", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.688600", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.048900", + "Timestamp": "2024-05-16T07:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.681000", + "Timestamp": "2024-05-16T07:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.677100", + "Timestamp": "2024-05-16T07:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.438400", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221500", + "Timestamp": "2024-05-16T07:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.955200", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.950200", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.825200", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.820100", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.830200", + "Timestamp": "2024-05-16T07:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.401200", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.396200", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.271200", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101100", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141100", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041100", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.543000", + "Timestamp": "2024-05-16T07:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.373600", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.399100", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.394100", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.269100", + "Timestamp": "2024-05-16T07:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.425000", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.451300", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.446300", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.321300", + "Timestamp": "2024-05-16T07:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.650900", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.979200", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.645900", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.974200", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.520900", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.849200", + "Timestamp": "2024-05-16T07:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098500", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042500", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.580200", + "Timestamp": "2024-05-16T07:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134500", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130500", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074500", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.328400", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323400", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.198400", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.823200", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139700", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136000", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079700", + "Timestamp": "2024-05-16T07:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.087200", + "Timestamp": "2024-05-16T07:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.363800", + "Timestamp": "2024-05-16T07:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.358800", + "Timestamp": "2024-05-16T07:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.233800", + "Timestamp": "2024-05-16T07:46:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.830900", + "Timestamp": "2024-05-16T07:46:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.830400", + "Timestamp": "2024-05-16T07:46:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294100", + "Timestamp": "2024-05-16T07:45:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.289100", + "Timestamp": "2024-05-16T07:45:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "im4gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.164100", + "Timestamp": "2024-05-16T07:45:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.131600", + "Timestamp": "2024-05-16T07:43:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.835400", + "Timestamp": "2024-05-16T07:43:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.101600", + "Timestamp": "2024-05-16T07:43:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.805400", + "Timestamp": "2024-05-16T07:43:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.001600", + "Timestamp": "2024-05-16T07:43:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.705400", + "Timestamp": "2024-05-16T07:43:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.349400", + "Timestamp": "2024-05-16T07:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.319400", + "Timestamp": "2024-05-16T07:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.219400", + "Timestamp": "2024-05-16T07:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.943600", + "Timestamp": "2024-05-16T07:32:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.781100", + "Timestamp": "2024-05-16T07:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.776100", + "Timestamp": "2024-05-16T07:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.651100", + "Timestamp": "2024-05-16T07:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.645400", + "Timestamp": "2024-05-16T07:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.844100", + "Timestamp": "2024-05-16T07:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.235000", + "Timestamp": "2024-05-16T07:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.067700", + "Timestamp": "2024-05-16T07:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.429100", + "Timestamp": "2024-05-16T07:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.424100", + "Timestamp": "2024-05-16T07:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.299100", + "Timestamp": "2024-05-16T07:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.541400", + "Timestamp": "2024-05-16T07:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101000", + "Timestamp": "2024-05-16T07:32:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097000", + "Timestamp": "2024-05-16T07:32:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041000", + "Timestamp": "2024-05-16T07:32:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.381900", + "Timestamp": "2024-05-16T07:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T07:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153100", + "Timestamp": "2024-05-16T07:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149100", + "Timestamp": "2024-05-16T07:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093100", + "Timestamp": "2024-05-16T07:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.742300", + "Timestamp": "2024-05-16T07:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.767200", + "Timestamp": "2024-05-16T07:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.762200", + "Timestamp": "2024-05-16T07:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.637200", + "Timestamp": "2024-05-16T07:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093800", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090100", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033800", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.284900", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.279900", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.154900", + "Timestamp": "2024-05-16T07:31:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.454400", + "Timestamp": "2024-05-16T07:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.449400", + "Timestamp": "2024-05-16T07:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.324400", + "Timestamp": "2024-05-16T07:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.852300", + "Timestamp": "2024-05-16T07:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.475600", + "Timestamp": "2024-05-16T07:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.766300", + "Timestamp": "2024-05-16T07:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.761300", + "Timestamp": "2024-05-16T07:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.636300", + "Timestamp": "2024-05-16T07:31:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044900", + "Timestamp": "2024-05-16T07:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.885700", + "Timestamp": "2024-05-16T07:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.820000", + "Timestamp": "2024-05-16T07:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.661800", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.656800", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.531800", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.411000", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.406000", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.281000", + "Timestamp": "2024-05-16T07:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T07:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099800", + "Timestamp": "2024-05-16T07:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043500", + "Timestamp": "2024-05-16T07:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.491900", + "Timestamp": "2024-05-16T07:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.486900", + "Timestamp": "2024-05-16T07:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.361900", + "Timestamp": "2024-05-16T07:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.856300", + "Timestamp": "2024-05-16T07:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.672100", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099900", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039900", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417600", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.658000", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.619200", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.628000", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.589200", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.528000", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.489200", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.959800", + "Timestamp": "2024-05-16T07:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128800", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124800", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068800", + "Timestamp": "2024-05-16T07:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.982400", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.977400", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.852400", + "Timestamp": "2024-05-16T07:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.893800", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.888800", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.763800", + "Timestamp": "2024-05-16T07:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.414100", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.409100", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.284100", + "Timestamp": "2024-05-16T07:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.696700", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.239300", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.234300", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.425300", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.420300", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.295300", + "Timestamp": "2024-05-16T07:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.766900", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.308900", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.303900", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.178900", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.908000", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.878000", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.778000", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123900", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120200", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.063900", + "Timestamp": "2024-05-16T07:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.297900", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.292900", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167900", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148200", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144500", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088200", + "Timestamp": "2024-05-16T07:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.780500", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.775500", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.650500", + "Timestamp": "2024-05-16T07:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.780500", + "Timestamp": "2024-05-16T07:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324800", + "Timestamp": "2024-05-16T07:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319800", + "Timestamp": "2024-05-16T07:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194800", + "Timestamp": "2024-05-16T07:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.006000", + "Timestamp": "2024-05-16T07:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.001000", + "Timestamp": "2024-05-16T07:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.876000", + "Timestamp": "2024-05-16T07:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.455600", + "Timestamp": "2024-05-16T07:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.167100", + "Timestamp": "2024-05-16T07:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.612700", + "Timestamp": "2024-05-16T07:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.607700", + "Timestamp": "2024-05-16T07:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.482700", + "Timestamp": "2024-05-16T07:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T07:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-16T07:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041200", + "Timestamp": "2024-05-16T07:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-16T07:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141700", + "Timestamp": "2024-05-16T07:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041700", + "Timestamp": "2024-05-16T07:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T07:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.464100", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.459100", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.334100", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.347000", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.342000", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.217000", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.600400", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.595400", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.470400", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138100", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038100", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.481600", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.476600", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.351600", + "Timestamp": "2024-05-16T07:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.448300", + "Timestamp": "2024-05-16T07:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.212900", + "Timestamp": "2024-05-16T07:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.207900", + "Timestamp": "2024-05-16T07:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082900", + "Timestamp": "2024-05-16T07:17:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.559100", + "Timestamp": "2024-05-16T07:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.554100", + "Timestamp": "2024-05-16T07:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "is4gen.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.429100", + "Timestamp": "2024-05-16T07:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.473300", + "Timestamp": "2024-05-16T07:17:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.826700", + "Timestamp": "2024-05-16T07:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.821700", + "Timestamp": "2024-05-16T07:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.696700", + "Timestamp": "2024-05-16T07:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.602500", + "Timestamp": "2024-05-16T07:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.572500", + "Timestamp": "2024-05-16T07:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.472500", + "Timestamp": "2024-05-16T07:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.137200", + "Timestamp": "2024-05-16T07:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.132200", + "Timestamp": "2024-05-16T07:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.007200", + "Timestamp": "2024-05-16T07:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.751500", + "Timestamp": "2024-05-16T07:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.746500", + "Timestamp": "2024-05-16T07:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.621500", + "Timestamp": "2024-05-16T07:16:57.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.635300", + "Timestamp": "2024-05-16T07:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.630300", + "Timestamp": "2024-05-16T07:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.505300", + "Timestamp": "2024-05-16T07:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.856600", + "Timestamp": "2024-05-16T07:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.545100", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.540100", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.415100", + "Timestamp": "2024-05-16T07:16:44.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.766400", + "Timestamp": "2024-05-16T07:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.761400", + "Timestamp": "2024-05-16T07:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.636400", + "Timestamp": "2024-05-16T07:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.625000", + "Timestamp": "2024-05-16T07:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.942600", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.937600", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.812600", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.853300", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.823300", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.723300", + "Timestamp": "2024-05-16T07:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.755200", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.750200", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.625200", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.250700", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.245700", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.120700", + "Timestamp": "2024-05-16T07:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.296300", + "Timestamp": "2024-05-16T07:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.430400", + "Timestamp": "2024-05-16T07:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.388100", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.383100", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.258100", + "Timestamp": "2024-05-16T07:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.944400", + "Timestamp": "2024-05-16T07:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.836500", + "Timestamp": "2024-05-16T07:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.336300", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.367500", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.306300", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.337500", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.206300", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.237500", + "Timestamp": "2024-05-16T07:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.503800", + "Timestamp": "2024-05-16T07:16:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.682000", + "Timestamp": "2024-05-16T07:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.872900", + "Timestamp": "2024-05-16T07:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.867900", + "Timestamp": "2024-05-16T07:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.742900", + "Timestamp": "2024-05-16T07:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.444100", + "Timestamp": "2024-05-16T07:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.439100", + "Timestamp": "2024-05-16T07:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.314100", + "Timestamp": "2024-05-16T07:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.895700", + "Timestamp": "2024-05-16T07:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.441100", + "Timestamp": "2024-05-16T07:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.411100", + "Timestamp": "2024-05-16T07:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.311100", + "Timestamp": "2024-05-16T07:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100000", + "Timestamp": "2024-05-16T07:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T07:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040000", + "Timestamp": "2024-05-16T07:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.219700", + "Timestamp": "2024-05-16T07:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.014200", + "Timestamp": "2024-05-16T07:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.984200", + "Timestamp": "2024-05-16T07:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.884200", + "Timestamp": "2024-05-16T07:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.678400", + "Timestamp": "2024-05-16T07:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.673400", + "Timestamp": "2024-05-16T07:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.548400", + "Timestamp": "2024-05-16T07:02:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.741500", + "Timestamp": "2024-05-16T07:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.776100", + "Timestamp": "2024-05-16T07:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.474100", + "Timestamp": "2024-05-16T07:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.591600", + "Timestamp": "2024-05-16T07:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.778500", + "Timestamp": "2024-05-16T07:02:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.773500", + "Timestamp": "2024-05-16T07:02:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.648500", + "Timestamp": "2024-05-16T07:02:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.996000", + "Timestamp": "2024-05-16T07:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.682200", + "Timestamp": "2024-05-16T07:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.768100", + "Timestamp": "2024-05-16T07:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.763100", + "Timestamp": "2024-05-16T07:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.638100", + "Timestamp": "2024-05-16T07:02:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.424500", + "Timestamp": "2024-05-16T07:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.419500", + "Timestamp": "2024-05-16T07:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.294500", + "Timestamp": "2024-05-16T07:02:02.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.759100", + "Timestamp": "2024-05-16T07:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.754100", + "Timestamp": "2024-05-16T07:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.629100", + "Timestamp": "2024-05-16T07:01:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114400", + "Timestamp": "2024-05-16T07:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110400", + "Timestamp": "2024-05-16T07:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054400", + "Timestamp": "2024-05-16T07:01:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.879000", + "Timestamp": "2024-05-16T07:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.261300", + "Timestamp": "2024-05-16T07:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.231300", + "Timestamp": "2024-05-16T07:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.131300", + "Timestamp": "2024-05-16T07:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.340200", + "Timestamp": "2024-05-16T07:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.462700", + "Timestamp": "2024-05-16T07:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.457700", + "Timestamp": "2024-05-16T07:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.332700", + "Timestamp": "2024-05-16T07:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.251400", + "Timestamp": "2024-05-16T07:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.221400", + "Timestamp": "2024-05-16T07:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.121400", + "Timestamp": "2024-05-16T07:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.447800", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.442800", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.317800", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219400", + "Timestamp": "2024-05-16T07:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.840300", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.835300", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.710300", + "Timestamp": "2024-05-16T07:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360700", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.330700", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230700", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.884600", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.635200", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.630200", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.505200", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.748200", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.465300", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.460300", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.335300", + "Timestamp": "2024-05-16T07:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.659400", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104300", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144300", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044300", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131600", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125000", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127900", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121300", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071600", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065000", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.456900", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.451900", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.326900", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146100", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142400", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086100", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.171800", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.166800", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.041800", + "Timestamp": "2024-05-16T07:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116100", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.701600", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.444700", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170100", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166100", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-16T07:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.477700", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.754000", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.724000", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.624000", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.030700", + "Timestamp": "2024-05-16T07:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165800", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162100", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096400", + "Timestamp": "2024-05-16T07:01:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092400", + "Timestamp": "2024-05-16T07:01:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036400", + "Timestamp": "2024-05-16T07:01:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.252200", + "Timestamp": "2024-05-16T07:01:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.247200", + "Timestamp": "2024-05-16T07:01:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.122200", + "Timestamp": "2024-05-16T07:01:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.039500", + "Timestamp": "2024-05-16T06:49:13.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068700", + "Timestamp": "2024-05-16T06:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038700", + "Timestamp": "2024-05-16T06:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008700", + "Timestamp": "2024-05-16T06:47:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.574100", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.569100", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.444100", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.756200", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T06:47:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169500", + "Timestamp": "2024-05-16T06:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165500", + "Timestamp": "2024-05-16T06:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T06:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.905500", + "Timestamp": "2024-05-16T06:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139400", + "Timestamp": "2024-05-16T06:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134900", + "Timestamp": "2024-05-16T06:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135700", + "Timestamp": "2024-05-16T06:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131200", + "Timestamp": "2024-05-16T06:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079400", + "Timestamp": "2024-05-16T06:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074900", + "Timestamp": "2024-05-16T06:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131200", + "Timestamp": "2024-05-16T06:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127500", + "Timestamp": "2024-05-16T06:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071200", + "Timestamp": "2024-05-16T06:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.973300", + "Timestamp": "2024-05-16T06:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.943300", + "Timestamp": "2024-05-16T06:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.843300", + "Timestamp": "2024-05-16T06:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-16T06:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094400", + "Timestamp": "2024-05-16T06:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038100", + "Timestamp": "2024-05-16T06:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.447700", + "Timestamp": "2024-05-16T06:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.442700", + "Timestamp": "2024-05-16T06:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.317700", + "Timestamp": "2024-05-16T06:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-16T06:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.615100", + "Timestamp": "2024-05-16T06:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.610100", + "Timestamp": "2024-05-16T06:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.485100", + "Timestamp": "2024-05-16T06:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.561200", + "Timestamp": "2024-05-16T06:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.556200", + "Timestamp": "2024-05-16T06:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.431200", + "Timestamp": "2024-05-16T06:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.165600", + "Timestamp": "2024-05-16T06:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161900", + "Timestamp": "2024-05-16T06:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T06:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.842700", + "Timestamp": "2024-05-16T06:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.698800", + "Timestamp": "2024-05-16T06:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.693800", + "Timestamp": "2024-05-16T06:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.568800", + "Timestamp": "2024-05-16T06:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.713700", + "Timestamp": "2024-05-16T06:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.624600", + "Timestamp": "2024-05-16T06:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.619600", + "Timestamp": "2024-05-16T06:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.494600", + "Timestamp": "2024-05-16T06:47:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.875800", + "Timestamp": "2024-05-16T06:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.397800", + "Timestamp": "2024-05-16T06:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.392800", + "Timestamp": "2024-05-16T06:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.267800", + "Timestamp": "2024-05-16T06:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.279300", + "Timestamp": "2024-05-16T06:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.249300", + "Timestamp": "2024-05-16T06:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.149300", + "Timestamp": "2024-05-16T06:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.566200", + "Timestamp": "2024-05-16T06:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.561200", + "Timestamp": "2024-05-16T06:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.436200", + "Timestamp": "2024-05-16T06:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.458700", + "Timestamp": "2024-05-16T06:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.428700", + "Timestamp": "2024-05-16T06:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.328700", + "Timestamp": "2024-05-16T06:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.438900", + "Timestamp": "2024-05-16T06:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.433900", + "Timestamp": "2024-05-16T06:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.308900", + "Timestamp": "2024-05-16T06:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.408500", + "Timestamp": "2024-05-16T06:47:02.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.213300", + "Timestamp": "2024-05-16T06:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.183300", + "Timestamp": "2024-05-16T06:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.083300", + "Timestamp": "2024-05-16T06:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113600", + "Timestamp": "2024-05-16T06:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109600", + "Timestamp": "2024-05-16T06:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053600", + "Timestamp": "2024-05-16T06:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.898700", + "Timestamp": "2024-05-16T06:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.893700", + "Timestamp": "2024-05-16T06:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.768700", + "Timestamp": "2024-05-16T06:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.059800", + "Timestamp": "2024-05-16T06:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.009600", + "Timestamp": "2024-05-16T06:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.979600", + "Timestamp": "2024-05-16T06:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.879600", + "Timestamp": "2024-05-16T06:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.548600", + "Timestamp": "2024-05-16T06:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.366500", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.336500", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.236500", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.704500", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.699500", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.574500", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.328800", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.323800", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.198800", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218400", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.367900", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.337900", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.237900", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.300000", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.957100", + "Timestamp": "2024-05-16T06:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.303800", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273800", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.173800", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.436800", + "Timestamp": "2024-05-16T06:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.936900", + "Timestamp": "2024-05-16T06:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.282300", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.252300", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.152300", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141800", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137800", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081800", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.534800", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.529800", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.404800", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324300", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319300", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194300", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103600", + "Timestamp": "2024-05-16T06:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.012000", + "Timestamp": "2024-05-16T06:35:46.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.422000", + "Timestamp": "2024-05-16T06:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.264900", + "Timestamp": "2024-05-16T06:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.259900", + "Timestamp": "2024-05-16T06:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134900", + "Timestamp": "2024-05-16T06:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.565100", + "Timestamp": "2024-05-16T06:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.535100", + "Timestamp": "2024-05-16T06:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.435100", + "Timestamp": "2024-05-16T06:32:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.176900", + "Timestamp": "2024-05-16T06:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.325800", + "Timestamp": "2024-05-16T06:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.320800", + "Timestamp": "2024-05-16T06:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.195800", + "Timestamp": "2024-05-16T06:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.603100", + "Timestamp": "2024-05-16T06:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.598100", + "Timestamp": "2024-05-16T06:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.473100", + "Timestamp": "2024-05-16T06:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.473700", + "Timestamp": "2024-05-16T06:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.868700", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.838700", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.738700", + "Timestamp": "2024-05-16T06:32:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.609000", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.604000", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.479000", + "Timestamp": "2024-05-16T06:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.877400", + "Timestamp": "2024-05-16T06:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.379400", + "Timestamp": "2024-05-16T06:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.374400", + "Timestamp": "2024-05-16T06:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.249400", + "Timestamp": "2024-05-16T06:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078200", + "Timestamp": "2024-05-16T06:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118200", + "Timestamp": "2024-05-16T06:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018200", + "Timestamp": "2024-05-16T06:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072700", + "Timestamp": "2024-05-16T06:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043700", + "Timestamp": "2024-05-16T06:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012700", + "Timestamp": "2024-05-16T06:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.798700", + "Timestamp": "2024-05-16T06:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.793700", + "Timestamp": "2024-05-16T06:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.668700", + "Timestamp": "2024-05-16T06:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.840900", + "Timestamp": "2024-05-16T06:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.066300", + "Timestamp": "2024-05-16T06:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.608200", + "Timestamp": "2024-05-16T06:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101900", + "Timestamp": "2024-05-16T06:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098200", + "Timestamp": "2024-05-16T06:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041900", + "Timestamp": "2024-05-16T06:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.723300", + "Timestamp": "2024-05-16T06:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.167000", + "Timestamp": "2024-05-16T06:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.162000", + "Timestamp": "2024-05-16T06:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.037000", + "Timestamp": "2024-05-16T06:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.421900", + "Timestamp": "2024-05-16T06:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.416900", + "Timestamp": "2024-05-16T06:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.291900", + "Timestamp": "2024-05-16T06:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.689900", + "Timestamp": "2024-05-16T06:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.659900", + "Timestamp": "2024-05-16T06:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.559900", + "Timestamp": "2024-05-16T06:32:02.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.403700", + "Timestamp": "2024-05-16T06:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.398700", + "Timestamp": "2024-05-16T06:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.273700", + "Timestamp": "2024-05-16T06:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.636200", + "Timestamp": "2024-05-16T06:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.631200", + "Timestamp": "2024-05-16T06:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.506200", + "Timestamp": "2024-05-16T06:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.324000", + "Timestamp": "2024-05-16T06:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.471900", + "Timestamp": "2024-05-16T06:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.466900", + "Timestamp": "2024-05-16T06:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.341900", + "Timestamp": "2024-05-16T06:31:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.386600", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.812500", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.807500", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.682500", + "Timestamp": "2024-05-16T06:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.487400", + "Timestamp": "2024-05-16T06:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.482400", + "Timestamp": "2024-05-16T06:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.357400", + "Timestamp": "2024-05-16T06:31:43.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149500", + "Timestamp": "2024-05-16T06:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145500", + "Timestamp": "2024-05-16T06:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089500", + "Timestamp": "2024-05-16T06:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.719900", + "Timestamp": "2024-05-16T06:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.569500", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.461300", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.564500", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.456300", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.439500", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.331300", + "Timestamp": "2024-05-16T06:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.657100", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.572100", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.531700", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.069900", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.064900", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.939900", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.675200", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.670200", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.545200", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.767800", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.755700", + "Timestamp": "2024-05-16T06:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.697500", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.692500", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.567500", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.233300", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.228300", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209600", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.422800", + "Timestamp": "2024-05-16T06:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.564000", + "Timestamp": "2024-05-16T06:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.559000", + "Timestamp": "2024-05-16T06:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.434000", + "Timestamp": "2024-05-16T06:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T06:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T06:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049800", + "Timestamp": "2024-05-16T06:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.866200", + "Timestamp": "2024-05-16T06:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.874700", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.405200", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.400200", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.275200", + "Timestamp": "2024-05-16T06:31:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.059900", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.054900", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.929900", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.424800", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.419800", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.294800", + "Timestamp": "2024-05-16T06:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.167200", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.207200", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-16T06:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096800", + "Timestamp": "2024-05-16T06:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092800", + "Timestamp": "2024-05-16T06:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036800", + "Timestamp": "2024-05-16T06:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.457300", + "Timestamp": "2024-05-16T06:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.404100", + "Timestamp": "2024-05-16T06:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.427300", + "Timestamp": "2024-05-16T06:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.374100", + "Timestamp": "2024-05-16T06:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.327300", + "Timestamp": "2024-05-16T06:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.274100", + "Timestamp": "2024-05-16T06:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.987400", + "Timestamp": "2024-05-16T06:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.982400", + "Timestamp": "2024-05-16T06:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "im4gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.857400", + "Timestamp": "2024-05-16T06:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.711100", + "Timestamp": "2024-05-16T06:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094000", + "Timestamp": "2024-05-16T06:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090300", + "Timestamp": "2024-05-16T06:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034000", + "Timestamp": "2024-05-16T06:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210800", + "Timestamp": "2024-05-16T06:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.148200", + "Timestamp": "2024-05-16T06:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144500", + "Timestamp": "2024-05-16T06:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "is4gen.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088200", + "Timestamp": "2024-05-16T06:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.188600", + "Timestamp": "2024-05-16T06:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.158600", + "Timestamp": "2024-05-16T06:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.058600", + "Timestamp": "2024-05-16T06:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.349600", + "Timestamp": "2024-05-16T06:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319600", + "Timestamp": "2024-05-16T06:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219600", + "Timestamp": "2024-05-16T06:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.825800", + "Timestamp": "2024-05-16T06:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.930200", + "Timestamp": "2024-05-16T06:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.180100", + "Timestamp": "2024-05-16T06:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.176100", + "Timestamp": "2024-05-16T06:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120100", + "Timestamp": "2024-05-16T06:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.326800", + "Timestamp": "2024-05-16T06:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.321800", + "Timestamp": "2024-05-16T06:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196800", + "Timestamp": "2024-05-16T06:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.501700", + "Timestamp": "2024-05-16T06:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.471700", + "Timestamp": "2024-05-16T06:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.371700", + "Timestamp": "2024-05-16T06:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079800", + "Timestamp": "2024-05-16T06:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076100", + "Timestamp": "2024-05-16T06:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019800", + "Timestamp": "2024-05-16T06:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.356700", + "Timestamp": "2024-05-16T06:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.355400", + "Timestamp": "2024-05-16T06:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.351700", + "Timestamp": "2024-05-16T06:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.350400", + "Timestamp": "2024-05-16T06:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.226700", + "Timestamp": "2024-05-16T06:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.225400", + "Timestamp": "2024-05-16T06:17:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.480400", + "Timestamp": "2024-05-16T06:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.475400", + "Timestamp": "2024-05-16T06:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.350400", + "Timestamp": "2024-05-16T06:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.525400", + "Timestamp": "2024-05-16T06:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.520400", + "Timestamp": "2024-05-16T06:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.395400", + "Timestamp": "2024-05-16T06:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.419700", + "Timestamp": "2024-05-16T06:17:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.326200", + "Timestamp": "2024-05-16T06:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.484000", + "Timestamp": "2024-05-16T06:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.479000", + "Timestamp": "2024-05-16T06:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.354000", + "Timestamp": "2024-05-16T06:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.887800", + "Timestamp": "2024-05-16T06:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.882800", + "Timestamp": "2024-05-16T06:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.757800", + "Timestamp": "2024-05-16T06:16:55.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.419600", + "Timestamp": "2024-05-16T06:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.472000", + "Timestamp": "2024-05-16T06:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.569300", + "Timestamp": "2024-05-16T06:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.467000", + "Timestamp": "2024-05-16T06:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.564300", + "Timestamp": "2024-05-16T06:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.342000", + "Timestamp": "2024-05-16T06:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.439300", + "Timestamp": "2024-05-16T06:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.818200", + "Timestamp": "2024-05-16T06:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.813200", + "Timestamp": "2024-05-16T06:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.688200", + "Timestamp": "2024-05-16T06:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075800", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.072100", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015800", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.228300", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.223300", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098300", + "Timestamp": "2024-05-16T06:16:46.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.121300", + "Timestamp": "2024-05-16T06:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.116300", + "Timestamp": "2024-05-16T06:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.991300", + "Timestamp": "2024-05-16T06:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.195200", + "Timestamp": "2024-05-16T06:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271700", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266700", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141700", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.278400", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.248400", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148400", + "Timestamp": "2024-05-16T06:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200000", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.195000", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070000", + "Timestamp": "2024-05-16T06:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.768300", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.763300", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.638300", + "Timestamp": "2024-05-16T06:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.693300", + "Timestamp": "2024-05-16T06:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108300", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104300", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048300", + "Timestamp": "2024-05-16T06:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.096500", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.091500", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.966500", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.114700", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.045100", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.040100", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.915100", + "Timestamp": "2024-05-16T06:16:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158700", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155000", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098700", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.743500", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.131000", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.126000", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.001000", + "Timestamp": "2024-05-16T06:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.415500", + "Timestamp": "2024-05-16T06:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.933100", + "Timestamp": "2024-05-16T06:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.491600", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.486600", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.361600", + "Timestamp": "2024-05-16T06:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118000", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114300", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058000", + "Timestamp": "2024-05-16T06:16:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.848900", + "Timestamp": "2024-05-16T06:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.421700", + "Timestamp": "2024-05-16T06:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.422200", + "Timestamp": "2024-05-16T06:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.098900", + "Timestamp": "2024-05-16T06:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.093900", + "Timestamp": "2024-05-16T06:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.968900", + "Timestamp": "2024-05-16T06:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.442200", + "Timestamp": "2024-05-16T06:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.437200", + "Timestamp": "2024-05-16T06:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.312200", + "Timestamp": "2024-05-16T06:02:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.303300", + "Timestamp": "2024-05-16T06:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.852600", + "Timestamp": "2024-05-16T06:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.847600", + "Timestamp": "2024-05-16T06:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.722600", + "Timestamp": "2024-05-16T06:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.814400", + "Timestamp": "2024-05-16T06:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.813800", + "Timestamp": "2024-05-16T06:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109600", + "Timestamp": "2024-05-16T06:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.539400", + "Timestamp": "2024-05-16T06:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.534400", + "Timestamp": "2024-05-16T06:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.409400", + "Timestamp": "2024-05-16T06:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233800", + "Timestamp": "2024-05-16T06:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.744700", + "Timestamp": "2024-05-16T06:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.471500", + "Timestamp": "2024-05-16T06:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.466500", + "Timestamp": "2024-05-16T06:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.341500", + "Timestamp": "2024-05-16T06:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061700", + "Timestamp": "2024-05-16T06:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001700", + "Timestamp": "2024-05-16T06:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001700", + "Timestamp": "2024-05-16T06:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.745100", + "Timestamp": "2024-05-16T06:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089100", + "Timestamp": "2024-05-16T06:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085400", + "Timestamp": "2024-05-16T06:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029100", + "Timestamp": "2024-05-16T06:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.211800", + "Timestamp": "2024-05-16T06:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.206800", + "Timestamp": "2024-05-16T06:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.081800", + "Timestamp": "2024-05-16T06:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.342800", + "Timestamp": "2024-05-16T06:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.337800", + "Timestamp": "2024-05-16T06:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212800", + "Timestamp": "2024-05-16T06:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.758600", + "Timestamp": "2024-05-16T06:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.753600", + "Timestamp": "2024-05-16T06:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.628600", + "Timestamp": "2024-05-16T06:02:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.317300", + "Timestamp": "2024-05-16T06:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.287300", + "Timestamp": "2024-05-16T06:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.187300", + "Timestamp": "2024-05-16T06:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.473100", + "Timestamp": "2024-05-16T06:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.468100", + "Timestamp": "2024-05-16T06:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.343100", + "Timestamp": "2024-05-16T06:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.605300", + "Timestamp": "2024-05-16T06:02:10.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.750500", + "Timestamp": "2024-05-16T06:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.745500", + "Timestamp": "2024-05-16T06:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.620500", + "Timestamp": "2024-05-16T06:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.978200", + "Timestamp": "2024-05-16T06:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.461400", + "Timestamp": "2024-05-16T06:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157500", + "Timestamp": "2024-05-16T06:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153800", + "Timestamp": "2024-05-16T06:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097500", + "Timestamp": "2024-05-16T06:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.239900", + "Timestamp": "2024-05-16T06:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.234900", + "Timestamp": "2024-05-16T06:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-16T06:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.233100", + "Timestamp": "2024-05-16T06:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.228100", + "Timestamp": "2024-05-16T06:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.103100", + "Timestamp": "2024-05-16T06:01:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093900", + "Timestamp": "2024-05-16T06:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090200", + "Timestamp": "2024-05-16T06:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033900", + "Timestamp": "2024-05-16T06:01:49.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.366700", + "Timestamp": "2024-05-16T06:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.603000", + "Timestamp": "2024-05-16T06:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.646200", + "Timestamp": "2024-05-16T06:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.333500", + "Timestamp": "2024-05-16T06:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.328500", + "Timestamp": "2024-05-16T06:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.203500", + "Timestamp": "2024-05-16T06:01:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.280600", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.190300", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185300", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060300", + "Timestamp": "2024-05-16T06:01:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089800", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085800", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029800", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.881900", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.876900", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.751900", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.876800", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.871800", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.746800", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.753200", + "Timestamp": "2024-05-16T06:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.399100", + "Timestamp": "2024-05-16T06:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.394100", + "Timestamp": "2024-05-16T06:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.269100", + "Timestamp": "2024-05-16T06:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.474600", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.469600", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.344600", + "Timestamp": "2024-05-16T06:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.028800", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.023800", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.898800", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.367700", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.362700", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.237700", + "Timestamp": "2024-05-16T06:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.768200", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.763200", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "is4gen.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.638200", + "Timestamp": "2024-05-16T06:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.104800", + "Timestamp": "2024-05-16T06:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084100", + "Timestamp": "2024-05-16T06:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080400", + "Timestamp": "2024-05-16T06:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024100", + "Timestamp": "2024-05-16T06:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.784300", + "Timestamp": "2024-05-16T05:51:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.784300", + "Timestamp": "2024-05-16T05:51:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.784300", + "Timestamp": "2024-05-16T05:51:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111600", + "Timestamp": "2024-05-16T05:48:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219600", + "Timestamp": "2024-05-16T05:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.667100", + "Timestamp": "2024-05-16T05:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.662100", + "Timestamp": "2024-05-16T05:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.537100", + "Timestamp": "2024-05-16T05:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.931400", + "Timestamp": "2024-05-16T05:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.926400", + "Timestamp": "2024-05-16T05:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.801400", + "Timestamp": "2024-05-16T05:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.790800", + "Timestamp": "2024-05-16T05:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.588300", + "Timestamp": "2024-05-16T05:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.583300", + "Timestamp": "2024-05-16T05:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.458300", + "Timestamp": "2024-05-16T05:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T05:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142000", + "Timestamp": "2024-05-16T05:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139000", + "Timestamp": "2024-05-16T05:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082000", + "Timestamp": "2024-05-16T05:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124600", + "Timestamp": "2024-05-16T05:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164600", + "Timestamp": "2024-05-16T05:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064600", + "Timestamp": "2024-05-16T05:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.517600", + "Timestamp": "2024-05-16T05:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.487600", + "Timestamp": "2024-05-16T05:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.387600", + "Timestamp": "2024-05-16T05:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.625100", + "Timestamp": "2024-05-16T05:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.620100", + "Timestamp": "2024-05-16T05:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.495100", + "Timestamp": "2024-05-16T05:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154600", + "Timestamp": "2024-05-16T05:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150600", + "Timestamp": "2024-05-16T05:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094600", + "Timestamp": "2024-05-16T05:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.501900", + "Timestamp": "2024-05-16T05:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.496900", + "Timestamp": "2024-05-16T05:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.371900", + "Timestamp": "2024-05-16T05:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.510900", + "Timestamp": "2024-05-16T05:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.505900", + "Timestamp": "2024-05-16T05:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.380900", + "Timestamp": "2024-05-16T05:47:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.467000", + "Timestamp": "2024-05-16T05:47:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.462000", + "Timestamp": "2024-05-16T05:47:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.337000", + "Timestamp": "2024-05-16T05:47:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.912200", + "Timestamp": "2024-05-16T05:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.907200", + "Timestamp": "2024-05-16T05:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.782200", + "Timestamp": "2024-05-16T05:47:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.789200", + "Timestamp": "2024-05-16T05:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.564800", + "Timestamp": "2024-05-16T05:46:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071400", + "Timestamp": "2024-05-16T05:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042400", + "Timestamp": "2024-05-16T05:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011400", + "Timestamp": "2024-05-16T05:46:44.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.905300", + "Timestamp": "2024-05-16T05:46:43.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.431500", + "Timestamp": "2024-05-16T05:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.937500", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.932500", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.807500", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.677300", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152200", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158700", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.148500", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.155000", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092200", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098700", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046500", + "Timestamp": "2024-05-16T05:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102300", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098600", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042300", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.212300", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.207300", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082300", + "Timestamp": "2024-05-16T05:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139600", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135900", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079600", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.549000", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.544000", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.419000", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.304000", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.299000", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.174000", + "Timestamp": "2024-05-16T05:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.040700", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.035700", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.910700", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.436900", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.898400", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.429600", + "Timestamp": "2024-05-16T05:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.097300", + "Timestamp": "2024-05-16T05:46:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211400", + "Timestamp": "2024-05-16T05:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.223900", + "Timestamp": "2024-05-16T05:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.422900", + "Timestamp": "2024-05-16T05:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.417900", + "Timestamp": "2024-05-16T05:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.292900", + "Timestamp": "2024-05-16T05:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082900", + "Timestamp": "2024-05-16T05:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080300", + "Timestamp": "2024-05-16T05:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079200", + "Timestamp": "2024-05-16T05:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076600", + "Timestamp": "2024-05-16T05:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022900", + "Timestamp": "2024-05-16T05:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020300", + "Timestamp": "2024-05-16T05:46:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064300", + "Timestamp": "2024-05-16T05:46:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004300", + "Timestamp": "2024-05-16T05:46:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004300", + "Timestamp": "2024-05-16T05:46:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219500", + "Timestamp": "2024-05-16T05:45:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.172600", + "Timestamp": "2024-05-16T05:45:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168000", + "Timestamp": "2024-05-16T05:45:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168600", + "Timestamp": "2024-05-16T05:45:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.164000", + "Timestamp": "2024-05-16T05:45:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-16T05:45:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-16T05:45:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.099600", + "Timestamp": "2024-05-16T05:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.393300", + "Timestamp": "2024-05-16T05:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.385800", + "Timestamp": "2024-05-16T05:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.388300", + "Timestamp": "2024-05-16T05:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.380800", + "Timestamp": "2024-05-16T05:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.263300", + "Timestamp": "2024-05-16T05:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.255800", + "Timestamp": "2024-05-16T05:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.741100", + "Timestamp": "2024-05-16T05:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.889900", + "Timestamp": "2024-05-16T05:32:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.522300", + "Timestamp": "2024-05-16T05:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.517300", + "Timestamp": "2024-05-16T05:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.392300", + "Timestamp": "2024-05-16T05:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.383000", + "Timestamp": "2024-05-16T05:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.378000", + "Timestamp": "2024-05-16T05:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.253000", + "Timestamp": "2024-05-16T05:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.800500", + "Timestamp": "2024-05-16T05:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.978500", + "Timestamp": "2024-05-16T05:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.973500", + "Timestamp": "2024-05-16T05:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.848500", + "Timestamp": "2024-05-16T05:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.292400", + "Timestamp": "2024-05-16T05:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.262400", + "Timestamp": "2024-05-16T05:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162400", + "Timestamp": "2024-05-16T05:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.321300", + "Timestamp": "2024-05-16T05:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.316300", + "Timestamp": "2024-05-16T05:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.191300", + "Timestamp": "2024-05-16T05:32:13.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.504600", + "Timestamp": "2024-05-16T05:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.474600", + "Timestamp": "2024-05-16T05:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.374600", + "Timestamp": "2024-05-16T05:32:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.703100", + "Timestamp": "2024-05-16T05:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.698100", + "Timestamp": "2024-05-16T05:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.573100", + "Timestamp": "2024-05-16T05:32:10.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.882600", + "Timestamp": "2024-05-16T05:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.877600", + "Timestamp": "2024-05-16T05:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.752600", + "Timestamp": "2024-05-16T05:32:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.261700", + "Timestamp": "2024-05-16T05:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.257700", + "Timestamp": "2024-05-16T05:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.201700", + "Timestamp": "2024-05-16T05:32:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.913600", + "Timestamp": "2024-05-16T05:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.908600", + "Timestamp": "2024-05-16T05:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.783600", + "Timestamp": "2024-05-16T05:31:59.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T05:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T05:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040800", + "Timestamp": "2024-05-16T05:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.422300", + "Timestamp": "2024-05-16T05:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T05:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.598100", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.593100", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.468100", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.306100", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276100", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176100", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.871600", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.880600", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.902400", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.712600", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.684300", + "Timestamp": "2024-05-16T05:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.679300", + "Timestamp": "2024-05-16T05:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.554300", + "Timestamp": "2024-05-16T05:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.234200", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.048000", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.428200", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.423200", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.298200", + "Timestamp": "2024-05-16T05:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.975400", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.970400", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.845400", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139200", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135200", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079200", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.469700", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118000", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.422800", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.417800", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.292800", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.087300", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.057300", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.957300", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.432700", + "Timestamp": "2024-05-16T05:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.153700", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.148700", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.023700", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138200", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134200", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078200", + "Timestamp": "2024-05-16T05:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T05:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095200", + "Timestamp": "2024-05-16T05:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039200", + "Timestamp": "2024-05-16T05:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.456300", + "Timestamp": "2024-05-16T05:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431500", + "Timestamp": "2024-05-16T05:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.178700", + "Timestamp": "2024-05-16T05:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.175000", + "Timestamp": "2024-05-16T05:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118700", + "Timestamp": "2024-05-16T05:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065000", + "Timestamp": "2024-05-16T05:19:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.036300", + "Timestamp": "2024-05-16T05:19:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005000", + "Timestamp": "2024-05-16T05:19:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.205500", + "Timestamp": "2024-05-16T05:17:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077400", + "Timestamp": "2024-05-16T05:17:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073700", + "Timestamp": "2024-05-16T05:17:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017400", + "Timestamp": "2024-05-16T05:17:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.906200", + "Timestamp": "2024-05-16T05:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.901200", + "Timestamp": "2024-05-16T05:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.776200", + "Timestamp": "2024-05-16T05:17:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.641700", + "Timestamp": "2024-05-16T05:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.623700", + "Timestamp": "2024-05-16T05:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.618700", + "Timestamp": "2024-05-16T05:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.493700", + "Timestamp": "2024-05-16T05:17:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.806300", + "Timestamp": "2024-05-16T05:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.801300", + "Timestamp": "2024-05-16T05:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.676300", + "Timestamp": "2024-05-16T05:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.507200", + "Timestamp": "2024-05-16T05:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.502200", + "Timestamp": "2024-05-16T05:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.377200", + "Timestamp": "2024-05-16T05:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.836800", + "Timestamp": "2024-05-16T05:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.831800", + "Timestamp": "2024-05-16T05:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.706800", + "Timestamp": "2024-05-16T05:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.245900", + "Timestamp": "2024-05-16T05:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.429900", + "Timestamp": "2024-05-16T05:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.424900", + "Timestamp": "2024-05-16T05:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.299900", + "Timestamp": "2024-05-16T05:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.973700", + "Timestamp": "2024-05-16T05:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.968700", + "Timestamp": "2024-05-16T05:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.843700", + "Timestamp": "2024-05-16T05:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.610800", + "Timestamp": "2024-05-16T05:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.605800", + "Timestamp": "2024-05-16T05:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.480800", + "Timestamp": "2024-05-16T05:17:03.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.796900", + "Timestamp": "2024-05-16T05:17:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.791900", + "Timestamp": "2024-05-16T05:17:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.666900", + "Timestamp": "2024-05-16T05:17:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.547500", + "Timestamp": "2024-05-16T05:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.542500", + "Timestamp": "2024-05-16T05:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.417500", + "Timestamp": "2024-05-16T05:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.648700", + "Timestamp": "2024-05-16T05:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.643700", + "Timestamp": "2024-05-16T05:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.518700", + "Timestamp": "2024-05-16T05:16:59.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209200", + "Timestamp": "2024-05-16T05:16:56.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-16T05:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092800", + "Timestamp": "2024-05-16T05:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036500", + "Timestamp": "2024-05-16T05:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.874000", + "Timestamp": "2024-05-16T05:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.869000", + "Timestamp": "2024-05-16T05:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.744000", + "Timestamp": "2024-05-16T05:16:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.531300", + "Timestamp": "2024-05-16T05:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.501300", + "Timestamp": "2024-05-16T05:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.401300", + "Timestamp": "2024-05-16T05:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.580700", + "Timestamp": "2024-05-16T05:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.410900", + "Timestamp": "2024-05-16T05:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.405900", + "Timestamp": "2024-05-16T05:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.280900", + "Timestamp": "2024-05-16T05:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.824300", + "Timestamp": "2024-05-16T05:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146200", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142200", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086200", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330400", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325400", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200400", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.806800", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.799400", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.794400", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.669400", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.966200", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.446000", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.441000", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.316000", + "Timestamp": "2024-05-16T05:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.106200", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.101200", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.976200", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.526100", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.521100", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.396100", + "Timestamp": "2024-05-16T05:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.953700", + "Timestamp": "2024-05-16T05:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.809200", + "Timestamp": "2024-05-16T05:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.889700", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.884700", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.759700", + "Timestamp": "2024-05-16T05:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.180000", + "Timestamp": "2024-05-16T05:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.176300", + "Timestamp": "2024-05-16T05:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.120000", + "Timestamp": "2024-05-16T05:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.404000", + "Timestamp": "2024-05-16T05:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.399000", + "Timestamp": "2024-05-16T05:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.274000", + "Timestamp": "2024-05-16T05:02:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.842300", + "Timestamp": "2024-05-16T05:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.787300", + "Timestamp": "2024-05-16T05:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.937300", + "Timestamp": "2024-05-16T05:02:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.935700", + "Timestamp": "2024-05-16T05:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.930700", + "Timestamp": "2024-05-16T05:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.805700", + "Timestamp": "2024-05-16T05:02:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.185400", + "Timestamp": "2024-05-16T05:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.182400", + "Timestamp": "2024-05-16T05:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T05:02:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.522700", + "Timestamp": "2024-05-16T05:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.517700", + "Timestamp": "2024-05-16T05:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.392700", + "Timestamp": "2024-05-16T05:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.790800", + "Timestamp": "2024-05-16T05:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.785800", + "Timestamp": "2024-05-16T05:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.660800", + "Timestamp": "2024-05-16T05:02:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.129300", + "Timestamp": "2024-05-16T05:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.124300", + "Timestamp": "2024-05-16T05:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.999300", + "Timestamp": "2024-05-16T05:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.006300", + "Timestamp": "2024-05-16T05:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.001300", + "Timestamp": "2024-05-16T05:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.876300", + "Timestamp": "2024-05-16T05:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.235800", + "Timestamp": "2024-05-16T05:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.651100", + "Timestamp": "2024-05-16T05:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.646100", + "Timestamp": "2024-05-16T05:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.521100", + "Timestamp": "2024-05-16T05:02:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.850700", + "Timestamp": "2024-05-16T05:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.251500", + "Timestamp": "2024-05-16T05:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.246500", + "Timestamp": "2024-05-16T05:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121500", + "Timestamp": "2024-05-16T05:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.542300", + "Timestamp": "2024-05-16T05:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.537300", + "Timestamp": "2024-05-16T05:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.412300", + "Timestamp": "2024-05-16T05:02:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.890200", + "Timestamp": "2024-05-16T05:01:55.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.421300", + "Timestamp": "2024-05-16T05:01:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T05:01:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209800", + "Timestamp": "2024-05-16T05:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.560300", + "Timestamp": "2024-05-16T05:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102700", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099000", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042700", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.012600", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.007600", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.882600", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073700", + "Timestamp": "2024-05-16T05:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070000", + "Timestamp": "2024-05-16T05:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013700", + "Timestamp": "2024-05-16T05:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.975600", + "Timestamp": "2024-05-16T05:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.741300", + "Timestamp": "2024-05-16T05:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.755800", + "Timestamp": "2024-05-16T05:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.736300", + "Timestamp": "2024-05-16T05:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.750800", + "Timestamp": "2024-05-16T05:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.611300", + "Timestamp": "2024-05-16T05:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.625800", + "Timestamp": "2024-05-16T05:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T05:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092000", + "Timestamp": "2024-05-16T05:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036000", + "Timestamp": "2024-05-16T05:01:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.487800", + "Timestamp": "2024-05-16T05:01:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.039200", + "Timestamp": "2024-05-16T04:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.139700", + "Timestamp": "2024-05-16T04:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.109700", + "Timestamp": "2024-05-16T04:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.009700", + "Timestamp": "2024-05-16T04:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.835600", + "Timestamp": "2024-05-16T04:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T04:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.232700", + "Timestamp": "2024-05-16T04:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.033700", + "Timestamp": "2024-05-16T04:47:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.305000", + "Timestamp": "2024-05-16T04:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.300000", + "Timestamp": "2024-05-16T04:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175000", + "Timestamp": "2024-05-16T04:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.855100", + "Timestamp": "2024-05-16T04:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.735700", + "Timestamp": "2024-05-16T04:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.730700", + "Timestamp": "2024-05-16T04:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.605700", + "Timestamp": "2024-05-16T04:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.837100", + "Timestamp": "2024-05-16T04:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.807100", + "Timestamp": "2024-05-16T04:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.707100", + "Timestamp": "2024-05-16T04:47:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.607200", + "Timestamp": "2024-05-16T04:47:13.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.577200", + "Timestamp": "2024-05-16T04:47:13.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.477200", + "Timestamp": "2024-05-16T04:47:13.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.245800", + "Timestamp": "2024-05-16T04:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.240800", + "Timestamp": "2024-05-16T04:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115800", + "Timestamp": "2024-05-16T04:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.298600", + "Timestamp": "2024-05-16T04:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.293600", + "Timestamp": "2024-05-16T04:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.168600", + "Timestamp": "2024-05-16T04:47:11.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.877300", + "Timestamp": "2024-05-16T04:47:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.276200", + "Timestamp": "2024-05-16T04:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.271200", + "Timestamp": "2024-05-16T04:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.146200", + "Timestamp": "2024-05-16T04:47:04.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.444300", + "Timestamp": "2024-05-16T04:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.439300", + "Timestamp": "2024-05-16T04:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.314300", + "Timestamp": "2024-05-16T04:47:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.806300", + "Timestamp": "2024-05-16T04:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.801300", + "Timestamp": "2024-05-16T04:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.676300", + "Timestamp": "2024-05-16T04:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.422400", + "Timestamp": "2024-05-16T04:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.365400", + "Timestamp": "2024-05-16T04:46:50.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.506000", + "Timestamp": "2024-05-16T04:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.501000", + "Timestamp": "2024-05-16T04:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.376000", + "Timestamp": "2024-05-16T04:46:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111100", + "Timestamp": "2024-05-16T04:46:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.451500", + "Timestamp": "2024-05-16T04:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.457700", + "Timestamp": "2024-05-16T04:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.865500", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.449700", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.504300", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.499300", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.374300", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.480000", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.415500", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.410500", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.285500", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.936800", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.713500", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.682900", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149900", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146200", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "im4gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089900", + "Timestamp": "2024-05-16T04:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063700", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003700", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003700", + "Timestamp": "2024-05-16T04:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103200", + "Timestamp": "2024-05-16T04:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T04:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043200", + "Timestamp": "2024-05-16T04:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.938400", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.251300", + "Timestamp": "2024-05-16T04:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.246300", + "Timestamp": "2024-05-16T04:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121300", + "Timestamp": "2024-05-16T04:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.823100", + "Timestamp": "2024-05-16T04:46:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.818100", + "Timestamp": "2024-05-16T04:46:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.693100", + "Timestamp": "2024-05-16T04:46:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-16T04:35:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-16T04:35:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-16T04:35:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.409500", + "Timestamp": "2024-05-16T04:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.404500", + "Timestamp": "2024-05-16T04:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.279500", + "Timestamp": "2024-05-16T04:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.235700", + "Timestamp": "2024-05-16T04:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.231700", + "Timestamp": "2024-05-16T04:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175700", + "Timestamp": "2024-05-16T04:32:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078100", + "Timestamp": "2024-05-16T04:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074400", + "Timestamp": "2024-05-16T04:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018100", + "Timestamp": "2024-05-16T04:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.444900", + "Timestamp": "2024-05-16T04:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.776100", + "Timestamp": "2024-05-16T04:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.771100", + "Timestamp": "2024-05-16T04:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.646100", + "Timestamp": "2024-05-16T04:32:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.499300", + "Timestamp": "2024-05-16T04:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.494300", + "Timestamp": "2024-05-16T04:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.369300", + "Timestamp": "2024-05-16T04:32:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.762800", + "Timestamp": "2024-05-16T04:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.757800", + "Timestamp": "2024-05-16T04:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.632800", + "Timestamp": "2024-05-16T04:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.788800", + "Timestamp": "2024-05-16T04:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.783800", + "Timestamp": "2024-05-16T04:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.658800", + "Timestamp": "2024-05-16T04:32:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.883000", + "Timestamp": "2024-05-16T04:32:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.468500", + "Timestamp": "2024-05-16T04:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.185500", + "Timestamp": "2024-05-16T04:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.193400", + "Timestamp": "2024-05-16T04:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164300", + "Timestamp": "2024-05-16T04:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160600", + "Timestamp": "2024-05-16T04:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104300", + "Timestamp": "2024-05-16T04:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.081700", + "Timestamp": "2024-05-16T04:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.076700", + "Timestamp": "2024-05-16T04:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.951700", + "Timestamp": "2024-05-16T04:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.187400", + "Timestamp": "2024-05-16T04:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.182400", + "Timestamp": "2024-05-16T04:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.057400", + "Timestamp": "2024-05-16T04:31:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.308800", + "Timestamp": "2024-05-16T04:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.278800", + "Timestamp": "2024-05-16T04:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.178800", + "Timestamp": "2024-05-16T04:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133200", + "Timestamp": "2024-05-16T04:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129200", + "Timestamp": "2024-05-16T04:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073200", + "Timestamp": "2024-05-16T04:31:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.486200", + "Timestamp": "2024-05-16T04:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.396200", + "Timestamp": "2024-05-16T04:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.391200", + "Timestamp": "2024-05-16T04:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.266200", + "Timestamp": "2024-05-16T04:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.437300", + "Timestamp": "2024-05-16T04:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.432300", + "Timestamp": "2024-05-16T04:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.307300", + "Timestamp": "2024-05-16T04:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.640400", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.635400", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.510400", + "Timestamp": "2024-05-16T04:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.416800", + "Timestamp": "2024-05-16T04:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064000", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3a.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.004000", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3a.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.004000", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.232000", + "Timestamp": "2024-05-16T04:31:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.326500", + "Timestamp": "2024-05-16T04:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.321500", + "Timestamp": "2024-05-16T04:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196500", + "Timestamp": "2024-05-16T04:31:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.919400", + "Timestamp": "2024-05-16T04:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.479900", + "Timestamp": "2024-05-16T04:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362100", + "Timestamp": "2024-05-16T04:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.357100", + "Timestamp": "2024-05-16T04:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.232100", + "Timestamp": "2024-05-16T04:31:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145500", + "Timestamp": "2024-05-16T04:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141500", + "Timestamp": "2024-05-16T04:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085500", + "Timestamp": "2024-05-16T04:31:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.291300", + "Timestamp": "2024-05-16T04:31:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068400", + "Timestamp": "2024-05-16T04:29:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.064700", + "Timestamp": "2024-05-16T04:29:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008400", + "Timestamp": "2024-05-16T04:29:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.726400", + "Timestamp": "2024-05-16T04:28:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.726400", + "Timestamp": "2024-05-16T04:28:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.726400", + "Timestamp": "2024-05-16T04:28:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061800", + "Timestamp": "2024-05-16T04:26:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001800", + "Timestamp": "2024-05-16T04:26:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001800", + "Timestamp": "2024-05-16T04:26:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073100", + "Timestamp": "2024-05-16T04:17:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044100", + "Timestamp": "2024-05-16T04:17:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013100", + "Timestamp": "2024-05-16T04:17:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.521400", + "Timestamp": "2024-05-16T04:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.516400", + "Timestamp": "2024-05-16T04:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.391400", + "Timestamp": "2024-05-16T04:17:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.348900", + "Timestamp": "2024-05-16T04:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.343900", + "Timestamp": "2024-05-16T04:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.218900", + "Timestamp": "2024-05-16T04:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.850600", + "Timestamp": "2024-05-16T04:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.845600", + "Timestamp": "2024-05-16T04:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.720600", + "Timestamp": "2024-05-16T04:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.971500", + "Timestamp": "2024-05-16T04:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.941500", + "Timestamp": "2024-05-16T04:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.841500", + "Timestamp": "2024-05-16T04:17:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.347500", + "Timestamp": "2024-05-16T04:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.402800", + "Timestamp": "2024-05-16T04:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.317500", + "Timestamp": "2024-05-16T04:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.372800", + "Timestamp": "2024-05-16T04:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.217500", + "Timestamp": "2024-05-16T04:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.272800", + "Timestamp": "2024-05-16T04:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.456100", + "Timestamp": "2024-05-16T04:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.648000", + "Timestamp": "2024-05-16T04:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.618000", + "Timestamp": "2024-05-16T04:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.518000", + "Timestamp": "2024-05-16T04:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.267700", + "Timestamp": "2024-05-16T04:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.843600", + "Timestamp": "2024-05-16T04:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.283400", + "Timestamp": "2024-05-16T04:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.278400", + "Timestamp": "2024-05-16T04:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.153400", + "Timestamp": "2024-05-16T04:17:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.836900", + "Timestamp": "2024-05-16T04:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.555400", + "Timestamp": "2024-05-16T04:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.550400", + "Timestamp": "2024-05-16T04:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.425400", + "Timestamp": "2024-05-16T04:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100300", + "Timestamp": "2024-05-16T04:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096600", + "Timestamp": "2024-05-16T04:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040300", + "Timestamp": "2024-05-16T04:17:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.221500", + "Timestamp": "2024-05-16T04:17:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.882100", + "Timestamp": "2024-05-16T04:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T04:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098500", + "Timestamp": "2024-05-16T04:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042500", + "Timestamp": "2024-05-16T04:17:05.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.600700", + "Timestamp": "2024-05-16T04:16:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.035300", + "Timestamp": "2024-05-16T04:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.030300", + "Timestamp": "2024-05-16T04:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.905300", + "Timestamp": "2024-05-16T04:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.020700", + "Timestamp": "2024-05-16T04:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "d2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.106300", + "Timestamp": "2024-05-16T04:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.407400", + "Timestamp": "2024-05-16T04:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.402400", + "Timestamp": "2024-05-16T04:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.277400", + "Timestamp": "2024-05-16T04:16:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.343900", + "Timestamp": "2024-05-16T04:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.338900", + "Timestamp": "2024-05-16T04:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.213900", + "Timestamp": "2024-05-16T04:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.874300", + "Timestamp": "2024-05-16T04:16:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.558300", + "Timestamp": "2024-05-16T04:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.553300", + "Timestamp": "2024-05-16T04:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.428300", + "Timestamp": "2024-05-16T04:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.454500", + "Timestamp": "2024-05-16T04:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.449500", + "Timestamp": "2024-05-16T04:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.324500", + "Timestamp": "2024-05-16T04:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.290000", + "Timestamp": "2024-05-16T04:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.285000", + "Timestamp": "2024-05-16T04:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.160000", + "Timestamp": "2024-05-16T04:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139900", + "Timestamp": "2024-05-16T04:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135900", + "Timestamp": "2024-05-16T04:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079900", + "Timestamp": "2024-05-16T04:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.247500", + "Timestamp": "2024-05-16T04:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.242500", + "Timestamp": "2024-05-16T04:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.117500", + "Timestamp": "2024-05-16T04:16:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170500", + "Timestamp": "2024-05-16T04:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165500", + "Timestamp": "2024-05-16T04:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040500", + "Timestamp": "2024-05-16T04:16:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.913700", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.883700", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.783700", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.553000", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046600", + "Timestamp": "2024-05-16T04:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.219100", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.214100", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.089100", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.233600", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.228600", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103600", + "Timestamp": "2024-05-16T04:16:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.649100", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.644100", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.519100", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211300", + "Timestamp": "2024-05-16T04:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.103800", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.098800", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.973800", + "Timestamp": "2024-05-16T04:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.480600", + "Timestamp": "2024-05-16T04:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.475600", + "Timestamp": "2024-05-16T04:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.350600", + "Timestamp": "2024-05-16T04:02:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.209600", + "Timestamp": "2024-05-16T04:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170700", + "Timestamp": "2024-05-16T04:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165700", + "Timestamp": "2024-05-16T04:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040700", + "Timestamp": "2024-05-16T04:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.534200", + "Timestamp": "2024-05-16T04:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.529200", + "Timestamp": "2024-05-16T04:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "im4gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.404200", + "Timestamp": "2024-05-16T04:02:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.413600", + "Timestamp": "2024-05-16T04:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.408600", + "Timestamp": "2024-05-16T04:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.283600", + "Timestamp": "2024-05-16T04:02:13.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.812900", + "Timestamp": "2024-05-16T04:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.807900", + "Timestamp": "2024-05-16T04:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.682900", + "Timestamp": "2024-05-16T04:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.941900", + "Timestamp": "2024-05-16T04:02:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.175600", + "Timestamp": "2024-05-16T04:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.990100", + "Timestamp": "2024-05-16T04:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.960100", + "Timestamp": "2024-05-16T04:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.860100", + "Timestamp": "2024-05-16T04:01:56.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.115600", + "Timestamp": "2024-05-16T04:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111900", + "Timestamp": "2024-05-16T04:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.055600", + "Timestamp": "2024-05-16T04:01:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.583700", + "Timestamp": "2024-05-16T04:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.578700", + "Timestamp": "2024-05-16T04:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.453700", + "Timestamp": "2024-05-16T04:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.663000", + "Timestamp": "2024-05-16T04:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.658000", + "Timestamp": "2024-05-16T04:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.533000", + "Timestamp": "2024-05-16T04:01:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-16T04:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.960500", + "Timestamp": "2024-05-16T04:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.955500", + "Timestamp": "2024-05-16T04:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.830500", + "Timestamp": "2024-05-16T04:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106500", + "Timestamp": "2024-05-16T04:01:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T04:01:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "is4gen.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-16T04:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "is4gen.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-16T04:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "is4gen.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040200", + "Timestamp": "2024-05-16T04:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.646700", + "Timestamp": "2024-05-16T04:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.548800", + "Timestamp": "2024-05-16T04:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.518800", + "Timestamp": "2024-05-16T04:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.418800", + "Timestamp": "2024-05-16T04:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.388400", + "Timestamp": "2024-05-16T04:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.383400", + "Timestamp": "2024-05-16T04:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.258400", + "Timestamp": "2024-05-16T04:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.181500", + "Timestamp": "2024-05-16T04:01:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.277600", + "Timestamp": "2024-05-16T04:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.272600", + "Timestamp": "2024-05-16T04:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.147600", + "Timestamp": "2024-05-16T04:01:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.152200", + "Timestamp": "2024-05-16T03:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.147200", + "Timestamp": "2024-05-16T03:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.022200", + "Timestamp": "2024-05-16T03:47:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.873300", + "Timestamp": "2024-05-16T03:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.816900", + "Timestamp": "2024-05-16T03:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.040600", + "Timestamp": "2024-05-16T03:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.035600", + "Timestamp": "2024-05-16T03:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.910600", + "Timestamp": "2024-05-16T03:47:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084200", + "Timestamp": "2024-05-16T03:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080500", + "Timestamp": "2024-05-16T03:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024200", + "Timestamp": "2024-05-16T03:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216800", + "Timestamp": "2024-05-16T03:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103600", + "Timestamp": "2024-05-16T03:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099600", + "Timestamp": "2024-05-16T03:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043600", + "Timestamp": "2024-05-16T03:47:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.243300", + "Timestamp": "2024-05-16T03:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.070500", + "Timestamp": "2024-05-16T03:47:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.648500", + "Timestamp": "2024-05-16T03:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.643500", + "Timestamp": "2024-05-16T03:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.518500", + "Timestamp": "2024-05-16T03:47:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124000", + "Timestamp": "2024-05-16T03:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120300", + "Timestamp": "2024-05-16T03:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064000", + "Timestamp": "2024-05-16T03:47:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.456000", + "Timestamp": "2024-05-16T03:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.426000", + "Timestamp": "2024-05-16T03:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.326000", + "Timestamp": "2024-05-16T03:47:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101800", + "Timestamp": "2024-05-16T03:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-16T03:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041800", + "Timestamp": "2024-05-16T03:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.669400", + "Timestamp": "2024-05-16T03:46:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.455200", + "Timestamp": "2024-05-16T03:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098400", + "Timestamp": "2024-05-16T03:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094700", + "Timestamp": "2024-05-16T03:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038400", + "Timestamp": "2024-05-16T03:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221300", + "Timestamp": "2024-05-16T03:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.617200", + "Timestamp": "2024-05-16T03:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.612200", + "Timestamp": "2024-05-16T03:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "im4gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.487200", + "Timestamp": "2024-05-16T03:46:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T03:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.379100", + "Timestamp": "2024-05-16T03:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.374100", + "Timestamp": "2024-05-16T03:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.249100", + "Timestamp": "2024-05-16T03:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.487900", + "Timestamp": "2024-05-16T03:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.482900", + "Timestamp": "2024-05-16T03:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.357900", + "Timestamp": "2024-05-16T03:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.353700", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.323700", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.223700", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.384000", + "Timestamp": "2024-05-16T03:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.379000", + "Timestamp": "2024-05-16T03:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.254000", + "Timestamp": "2024-05-16T03:46:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096900", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040900", + "Timestamp": "2024-05-16T03:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T03:46:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.138500", + "Timestamp": "2024-05-16T03:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.134800", + "Timestamp": "2024-05-16T03:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.078500", + "Timestamp": "2024-05-16T03:46:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.120100", + "Timestamp": "2024-05-16T03:46:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-16T03:46:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.060100", + "Timestamp": "2024-05-16T03:46:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077700", + "Timestamp": "2024-05-16T03:45:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076300", + "Timestamp": "2024-05-16T03:45:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.048700", + "Timestamp": "2024-05-16T03:45:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.047300", + "Timestamp": "2024-05-16T03:45:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017700", + "Timestamp": "2024-05-16T03:45:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016300", + "Timestamp": "2024-05-16T03:45:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.097600", + "Timestamp": "2024-05-16T03:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.649400", + "Timestamp": "2024-05-16T03:32:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.446900", + "Timestamp": "2024-05-16T03:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.441900", + "Timestamp": "2024-05-16T03:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.316900", + "Timestamp": "2024-05-16T03:32:06.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.619600", + "Timestamp": "2024-05-16T03:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.589600", + "Timestamp": "2024-05-16T03:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.489600", + "Timestamp": "2024-05-16T03:32:01.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.039000", + "Timestamp": "2024-05-16T03:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.205600", + "Timestamp": "2024-05-16T03:31:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086200", + "Timestamp": "2024-05-16T03:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082500", + "Timestamp": "2024-05-16T03:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026200", + "Timestamp": "2024-05-16T03:31:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.631600", + "Timestamp": "2024-05-16T03:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.626600", + "Timestamp": "2024-05-16T03:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.501600", + "Timestamp": "2024-05-16T03:31:47.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.635900", + "Timestamp": "2024-05-16T03:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.630900", + "Timestamp": "2024-05-16T03:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.505900", + "Timestamp": "2024-05-16T03:31:45.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.775700", + "Timestamp": "2024-05-16T03:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.060800", + "Timestamp": "2024-05-16T03:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.055800", + "Timestamp": "2024-05-16T03:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.930800", + "Timestamp": "2024-05-16T03:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.359400", + "Timestamp": "2024-05-16T03:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.329400", + "Timestamp": "2024-05-16T03:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.229400", + "Timestamp": "2024-05-16T03:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431900", + "Timestamp": "2024-05-16T03:31:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.073400", + "Timestamp": "2024-05-16T03:17:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220300", + "Timestamp": "2024-05-16T03:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.631400", + "Timestamp": "2024-05-16T03:17:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.653300", + "Timestamp": "2024-05-16T03:17:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.850300", + "Timestamp": "2024-05-16T03:17:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.365100", + "Timestamp": "2024-05-16T03:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.360100", + "Timestamp": "2024-05-16T03:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.235100", + "Timestamp": "2024-05-16T03:17:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.657300", + "Timestamp": "2024-05-16T03:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.652300", + "Timestamp": "2024-05-16T03:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.527300", + "Timestamp": "2024-05-16T03:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.411600", + "Timestamp": "2024-05-16T03:17:02.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.684300", + "Timestamp": "2024-05-16T03:16:58.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.237600", + "Timestamp": "2024-05-16T03:16:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.043700", + "Timestamp": "2024-05-16T03:16:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096100", + "Timestamp": "2024-05-16T03:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092400", + "Timestamp": "2024-05-16T03:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036100", + "Timestamp": "2024-05-16T03:16:49.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.851000", + "Timestamp": "2024-05-16T03:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.846000", + "Timestamp": "2024-05-16T03:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.721000", + "Timestamp": "2024-05-16T03:16:48.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.819600", + "Timestamp": "2024-05-16T03:16:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.544200", + "Timestamp": "2024-05-16T03:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.514200", + "Timestamp": "2024-05-16T03:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.414200", + "Timestamp": "2024-05-16T03:16:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071300", + "Timestamp": "2024-05-16T03:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.067600", + "Timestamp": "2024-05-16T03:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011300", + "Timestamp": "2024-05-16T03:16:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.077100", + "Timestamp": "2024-05-16T03:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117100", + "Timestamp": "2024-05-16T03:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017100", + "Timestamp": "2024-05-16T03:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.518900", + "Timestamp": "2024-05-16T03:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.513900", + "Timestamp": "2024-05-16T03:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.388900", + "Timestamp": "2024-05-16T03:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.848900", + "Timestamp": "2024-05-16T03:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.843900", + "Timestamp": "2024-05-16T03:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.718900", + "Timestamp": "2024-05-16T03:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.393800", + "Timestamp": "2024-05-16T03:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.363800", + "Timestamp": "2024-05-16T03:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.263800", + "Timestamp": "2024-05-16T03:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.556800", + "Timestamp": "2024-05-16T03:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.551800", + "Timestamp": "2024-05-16T03:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "is4gen.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.426800", + "Timestamp": "2024-05-16T03:16:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.748100", + "Timestamp": "2024-05-16T03:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.743100", + "Timestamp": "2024-05-16T03:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.618100", + "Timestamp": "2024-05-16T03:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.101200", + "Timestamp": "2024-05-16T03:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.249400", + "Timestamp": "2024-05-16T03:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.244400", + "Timestamp": "2024-05-16T03:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119400", + "Timestamp": "2024-05-16T03:02:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.235700", + "Timestamp": "2024-05-16T03:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.230700", + "Timestamp": "2024-05-16T03:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T03:02:14.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.653000", + "Timestamp": "2024-05-16T03:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.648000", + "Timestamp": "2024-05-16T03:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.523000", + "Timestamp": "2024-05-16T03:02:09.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.187200", + "Timestamp": "2024-05-16T03:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.182200", + "Timestamp": "2024-05-16T03:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057200", + "Timestamp": "2024-05-16T03:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T03:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101500", + "Timestamp": "2024-05-16T03:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045200", + "Timestamp": "2024-05-16T03:01:45.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218400", + "Timestamp": "2024-05-16T03:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "4.955800", + "Timestamp": "2024-05-16T03:01:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.925400", + "Timestamp": "2024-05-16T03:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.895400", + "Timestamp": "2024-05-16T03:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.795400", + "Timestamp": "2024-05-16T03:01:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.162800", + "Timestamp": "2024-05-16T03:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.202800", + "Timestamp": "2024-05-16T03:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T03:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231500", + "Timestamp": "2024-05-16T03:01:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.959500", + "Timestamp": "2024-05-16T03:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.876800", + "Timestamp": "2024-05-16T02:54:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.876800", + "Timestamp": "2024-05-16T02:54:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062600", + "Timestamp": "2024-05-16T02:48:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-16T02:48:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002600", + "Timestamp": "2024-05-16T02:48:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097400", + "Timestamp": "2024-05-16T02:47:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137400", + "Timestamp": "2024-05-16T02:47:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037400", + "Timestamp": "2024-05-16T02:47:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211000", + "Timestamp": "2024-05-16T02:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215400", + "Timestamp": "2024-05-16T02:47:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101100", + "Timestamp": "2024-05-16T02:47:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T02:47:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041100", + "Timestamp": "2024-05-16T02:47:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.241800", + "Timestamp": "2024-05-16T02:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.236800", + "Timestamp": "2024-05-16T02:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111800", + "Timestamp": "2024-05-16T02:47:00.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.482800", + "Timestamp": "2024-05-16T02:46:59.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.941900", + "Timestamp": "2024-05-16T02:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.936900", + "Timestamp": "2024-05-16T02:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.811900", + "Timestamp": "2024-05-16T02:46:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.366200", + "Timestamp": "2024-05-16T02:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.361200", + "Timestamp": "2024-05-16T02:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.236200", + "Timestamp": "2024-05-16T02:46:52.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215400", + "Timestamp": "2024-05-16T02:46:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072900", + "Timestamp": "2024-05-16T02:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069200", + "Timestamp": "2024-05-16T02:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012900", + "Timestamp": "2024-05-16T02:46:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.410800", + "Timestamp": "2024-05-16T02:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.418900", + "Timestamp": "2024-05-16T02:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.388900", + "Timestamp": "2024-05-16T02:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "inf2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.288900", + "Timestamp": "2024-05-16T02:46:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070600", + "Timestamp": "2024-05-16T02:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041600", + "Timestamp": "2024-05-16T02:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010600", + "Timestamp": "2024-05-16T02:46:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-16T02:46:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.817700", + "Timestamp": "2024-05-16T02:46:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220000", + "Timestamp": "2024-05-16T02:43:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216500", + "Timestamp": "2024-05-16T02:32:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.824500", + "Timestamp": "2024-05-16T02:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073200", + "Timestamp": "2024-05-16T02:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069500", + "Timestamp": "2024-05-16T02:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013200", + "Timestamp": "2024-05-16T02:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.421600", + "Timestamp": "2024-05-16T02:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105500", + "Timestamp": "2024-05-16T02:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215300", + "Timestamp": "2024-05-16T02:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.121400", + "Timestamp": "2024-05-16T02:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.117700", + "Timestamp": "2024-05-16T02:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061400", + "Timestamp": "2024-05-16T02:31:44.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.442100", + "Timestamp": "2024-05-16T02:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.126500", + "Timestamp": "2024-05-16T02:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.939400", + "Timestamp": "2024-05-16T02:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.909400", + "Timestamp": "2024-05-16T02:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.809400", + "Timestamp": "2024-05-16T02:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.218700", + "Timestamp": "2024-05-16T02:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119400", + "Timestamp": "2024-05-16T02:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115700", + "Timestamp": "2024-05-16T02:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059400", + "Timestamp": "2024-05-16T02:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.413200", + "Timestamp": "2024-05-16T02:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.976700", + "Timestamp": "2024-05-16T02:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.971700", + "Timestamp": "2024-05-16T02:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.846700", + "Timestamp": "2024-05-16T02:31:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.592200", + "Timestamp": "2024-05-16T02:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.474400", + "Timestamp": "2024-05-16T02:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070100", + "Timestamp": "2024-05-16T02:17:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066400", + "Timestamp": "2024-05-16T02:17:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010100", + "Timestamp": "2024-05-16T02:17:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.624800", + "Timestamp": "2024-05-16T02:17:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.787400", + "Timestamp": "2024-05-16T02:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210400", + "Timestamp": "2024-05-16T02:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.442800", + "Timestamp": "2024-05-16T02:17:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.782700", + "Timestamp": "2024-05-16T02:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.777700", + "Timestamp": "2024-05-16T02:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.652700", + "Timestamp": "2024-05-16T02:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.161700", + "Timestamp": "2024-05-16T02:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157700", + "Timestamp": "2024-05-16T02:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-16T02:17:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.062300", + "Timestamp": "2024-05-16T02:17:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131200", + "Timestamp": "2024-05-16T02:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127500", + "Timestamp": "2024-05-16T02:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071200", + "Timestamp": "2024-05-16T02:16:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.556700", + "Timestamp": "2024-05-16T02:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "11.980000", + "Timestamp": "2024-05-16T02:16:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208400", + "Timestamp": "2024-05-16T02:02:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111700", + "Timestamp": "2024-05-16T02:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.843100", + "Timestamp": "2024-05-16T02:02:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.479100", + "Timestamp": "2024-05-16T02:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.474100", + "Timestamp": "2024-05-16T02:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.349100", + "Timestamp": "2024-05-16T02:01:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.113400", + "Timestamp": "2024-05-16T02:01:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.130000", + "Timestamp": "2024-05-16T02:01:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.523200", + "Timestamp": "2024-05-16T01:51:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.523200", + "Timestamp": "2024-05-16T01:51:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.523200", + "Timestamp": "2024-05-16T01:51:40.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084200", + "Timestamp": "2024-05-16T01:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080500", + "Timestamp": "2024-05-16T01:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024200", + "Timestamp": "2024-05-16T01:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.181900", + "Timestamp": "2024-05-16T01:47:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075100", + "Timestamp": "2024-05-16T01:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071400", + "Timestamp": "2024-05-16T01:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015100", + "Timestamp": "2024-05-16T01:46:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170600", + "Timestamp": "2024-05-16T01:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166600", + "Timestamp": "2024-05-16T01:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T01:32:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.094900", + "Timestamp": "2024-05-16T01:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091200", + "Timestamp": "2024-05-16T01:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.034900", + "Timestamp": "2024-05-16T01:32:18.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158600", + "Timestamp": "2024-05-16T01:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154600", + "Timestamp": "2024-05-16T01:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098600", + "Timestamp": "2024-05-16T01:31:34.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065000", + "Timestamp": "2024-05-16T01:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.005000", + "Timestamp": "2024-05-16T01:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005000", + "Timestamp": "2024-05-16T01:31:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129700", + "Timestamp": "2024-05-16T01:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169700", + "Timestamp": "2024-05-16T01:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069700", + "Timestamp": "2024-05-16T01:31:31.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T01:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099500", + "Timestamp": "2024-05-16T01:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043500", + "Timestamp": "2024-05-16T01:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.253800", + "Timestamp": "2024-05-16T01:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.223800", + "Timestamp": "2024-05-16T01:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123800", + "Timestamp": "2024-05-16T01:31:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.334400", + "Timestamp": "2024-05-16T01:17:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.336000", + "Timestamp": "2024-05-16T01:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.331000", + "Timestamp": "2024-05-16T01:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.206000", + "Timestamp": "2024-05-16T01:17:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.880900", + "Timestamp": "2024-05-16T01:17:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.236900", + "Timestamp": "2024-05-16T01:16:53.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080100", + "Timestamp": "2024-05-16T01:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076400", + "Timestamp": "2024-05-16T01:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020100", + "Timestamp": "2024-05-16T01:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.484500", + "Timestamp": "2024-05-16T01:16:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153600", + "Timestamp": "2024-05-16T01:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149600", + "Timestamp": "2024-05-16T01:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093600", + "Timestamp": "2024-05-16T01:16:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.475700", + "Timestamp": "2024-05-16T01:02:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.230800", - "Timestamp": "2019-10-15T13:43:35.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102700", + "Timestamp": "2024-05-16T01:02:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.152800", + "Timestamp": "2024-05-16T01:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149100", + "Timestamp": "2024-05-16T01:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.092800", + "Timestamp": "2024-05-16T01:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.433900", + "Timestamp": "2024-05-16T01:01:42.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.039600", + "Timestamp": "2024-05-16T01:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.857200", + "Timestamp": "2024-05-16T01:01:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140100", + "Timestamp": "2024-05-16T00:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136100", + "Timestamp": "2024-05-16T00:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080100", + "Timestamp": "2024-05-16T00:47:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.332500", + "Timestamp": "2024-05-16T00:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.327500", + "Timestamp": "2024-05-16T00:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.202500", + "Timestamp": "2024-05-16T00:47:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225900", + "Timestamp": "2024-05-16T00:46:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.473700", + "Timestamp": "2024-05-16T00:46:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.912900", + "Timestamp": "2024-05-16T00:32:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.522400", + "Timestamp": "2024-05-16T00:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.517400", + "Timestamp": "2024-05-16T00:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.392400", + "Timestamp": "2024-05-16T00:32:23.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093600", + "Timestamp": "2024-05-16T00:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.089900", + "Timestamp": "2024-05-16T00:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033600", + "Timestamp": "2024-05-16T00:32:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.112900", + "Timestamp": "2024-05-16T00:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.107900", + "Timestamp": "2024-05-16T00:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.982900", + "Timestamp": "2024-05-16T00:32:17.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102100", + "Timestamp": "2024-05-16T00:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098400", + "Timestamp": "2024-05-16T00:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042100", + "Timestamp": "2024-05-16T00:32:16.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.415400", + "Timestamp": "2024-05-16T00:31:55.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110400", + "Timestamp": "2024-05-16T00:31:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169300", + "Timestamp": "2024-05-16T00:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.209300", + "Timestamp": "2024-05-16T00:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109300", + "Timestamp": "2024-05-16T00:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.265100", + "Timestamp": "2024-05-16T00:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.235100", + "Timestamp": "2024-05-16T00:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.135100", + "Timestamp": "2024-05-16T00:31:32.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.765800", + "Timestamp": "2024-05-16T00:31:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010300", + "Timestamp": "2024-05-16T00:25:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010300", + "Timestamp": "2024-05-16T00:25:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072800", + "Timestamp": "2024-05-16T00:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t4g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069100", + "Timestamp": "2024-05-16T00:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t4g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012800", + "Timestamp": "2024-05-16T00:17:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.090200", + "Timestamp": "2024-05-16T00:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.085200", + "Timestamp": "2024-05-16T00:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.960200", + "Timestamp": "2024-05-16T00:16:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210200", + "Timestamp": "2024-05-16T00:16:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.649100", + "Timestamp": "2024-05-16T00:16:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108000", + "Timestamp": "2024-05-16T00:02:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T00:02:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.041300", + "Timestamp": "2024-05-16T00:01:46.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.474900", + "Timestamp": "2024-05-16T00:01:26.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219600", + "Timestamp": "2024-05-15T23:47:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.206700", + "Timestamp": "2024-05-15T23:47:24.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T13:43:35.000Z" + "Timestamp": "2024-05-15T23:47:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.173300", - "Timestamp": "2019-10-15T13:43:07.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127100", + "Timestamp": "2024-05-15T23:47:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.173300", - "Timestamp": "2019-10-15T13:43:07.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070800", + "Timestamp": "2024-05-15T23:47:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.173300", - "Timestamp": "2019-10-15T13:43:07.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-15T23:47:17.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.825000", - "Timestamp": "2019-10-15T13:42:53.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100000", + "Timestamp": "2024-05-15T23:47:17.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.825000", - "Timestamp": "2019-10-15T13:42:53.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044000", + "Timestamp": "2024-05-15T23:47:17.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.498800", - "Timestamp": "2019-10-15T13:42:35.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-15T23:46:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.498800", - "Timestamp": "2019-10-15T13:42:35.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-15T23:46:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.498800", - "Timestamp": "2019-10-15T13:42:35.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045700", + "Timestamp": "2024-05-15T23:46:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.141300", - "Timestamp": "2019-10-15T13:42:03.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080000", + "Timestamp": "2024-05-15T23:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.141300", - "Timestamp": "2019-10-15T13:42:03.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120000", + "Timestamp": "2024-05-15T23:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.141300", - "Timestamp": "2019-10-15T13:42:03.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020000", + "Timestamp": "2024-05-15T23:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", + "AvailabilityZone": "eu-west-3a", "InstanceType": "i3en.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.181300", - "Timestamp": "2019-10-15T13:42:03.000Z" + "ProductDescription": "Windows", + "SpotPrice": "0.118400", + "Timestamp": "2024-05-15T23:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.181300", - "Timestamp": "2019-10-15T13:42:03.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.139500", + "Timestamp": "2024-05-15T23:46:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.181300", - "Timestamp": "2019-10-15T13:42:03.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135500", + "Timestamp": "2024-05-15T23:46:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.081300", - "Timestamp": "2019-10-15T13:42:03.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079500", + "Timestamp": "2024-05-15T23:46:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.081300", - "Timestamp": "2019-10-15T13:42:03.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-15T23:41:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.081300", - "Timestamp": "2019-10-15T13:42:03.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.289000", + "Timestamp": "2024-05-15T23:41:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.825000", - "Timestamp": "2019-10-15T13:41:53.000Z" + "SpotPrice": "0.289000", + "Timestamp": "2024-05-15T23:41:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.825000", - "Timestamp": "2019-10-15T13:41:53.000Z" + "SpotPrice": "0.289000", + "Timestamp": "2024-05-15T23:41:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.351000", - "Timestamp": "2019-10-15T13:40:53.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.084400", + "Timestamp": "2024-05-15T23:32:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.351000", - "Timestamp": "2019-10-15T13:40:53.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080700", + "Timestamp": "2024-05-15T23:32:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.321000", - "Timestamp": "2019-10-15T13:40:53.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024400", + "Timestamp": "2024-05-15T23:32:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.321000", - "Timestamp": "2019-10-15T13:40:53.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101600", + "Timestamp": "2024-05-15T23:32:17.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.221000", - "Timestamp": "2019-10-15T13:40:53.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097900", + "Timestamp": "2024-05-15T23:32:17.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.221000", - "Timestamp": "2019-10-15T13:40:53.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041600", + "Timestamp": "2024-05-15T23:32:17.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.351000", - "Timestamp": "2019-10-15T13:40:53.000Z" + "SpotPrice": "0.103100", + "Timestamp": "2024-05-15T23:31:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099400", + "Timestamp": "2024-05-15T23:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043100", + "Timestamp": "2024-05-15T23:31:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-15T23:31:41.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.351000", - "Timestamp": "2019-10-15T13:40:53.000Z" + "SpotPrice": "0.092200", + "Timestamp": "2024-05-15T23:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.321000", - "Timestamp": "2019-10-15T13:40:53.000Z" + "SpotPrice": "0.088500", + "Timestamp": "2024-05-15T23:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032200", + "Timestamp": "2024-05-15T23:31:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.039000", + "Timestamp": "2024-05-15T23:31:35.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.559600", + "Timestamp": "2024-05-15T23:24:19.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070100", + "Timestamp": "2024-05-15T23:23:21.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i-flex.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.321000", - "Timestamp": "2019-10-15T13:40:53.000Z" + "SpotPrice": "0.066400", + "Timestamp": "2024-05-15T23:23:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i-flex.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.221000", - "Timestamp": "2019-10-15T13:40:53.000Z" + "SpotPrice": "0.010100", + "Timestamp": "2024-05-15T23:23:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068100", + "Timestamp": "2024-05-15T23:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039100", + "Timestamp": "2024-05-15T23:17:12.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3.small", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.221000", - "Timestamp": "2019-10-15T13:40:53.000Z" + "SpotPrice": "0.008100", + "Timestamp": "2024-05-15T23:17:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.910900", - "Timestamp": "2019-10-15T13:40:35.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.875800", + "Timestamp": "2024-05-15T23:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.910900", - "Timestamp": "2019-10-15T13:40:35.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113800", + "Timestamp": "2024-05-15T23:16:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.910900", - "Timestamp": "2019-10-15T13:40:35.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-15T23:16:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.624900", - "Timestamp": "2019-10-15T13:40:35.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053800", + "Timestamp": "2024-05-15T23:16:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.624900", - "Timestamp": "2019-10-15T13:40:35.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.810600", + "Timestamp": "2024-05-15T23:15:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.624900", - "Timestamp": "2019-10-15T13:40:35.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.810600", + "Timestamp": "2024-05-15T23:15:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.594900", - "Timestamp": "2019-10-15T13:40:35.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.805600", + "Timestamp": "2024-05-15T23:15:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.594900", - "Timestamp": "2019-10-15T13:40:35.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.805600", + "Timestamp": "2024-05-15T23:15:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.594900", - "Timestamp": "2019-10-15T13:40:35.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.680600", + "Timestamp": "2024-05-15T23:15:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.494900", - "Timestamp": "2019-10-15T13:40:35.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.680600", + "Timestamp": "2024-05-15T23:15:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.494900", - "Timestamp": "2019-10-15T13:40:35.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.568600", + "Timestamp": "2024-05-15T23:15:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.494900", - "Timestamp": "2019-10-15T13:40:35.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.568600", + "Timestamp": "2024-05-15T23:15:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.134500", - "Timestamp": "2019-10-15T13:33:47.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.568600", + "Timestamp": "2024-05-15T23:15:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.174500", - "Timestamp": "2019-10-15T13:33:47.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063600", + "Timestamp": "2024-05-15T23:03:15.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.074500", - "Timestamp": "2019-10-15T13:33:47.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003600", + "Timestamp": "2024-05-15T23:03:15.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.060400", - "Timestamp": "2019-10-15T13:31:23.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003600", + "Timestamp": "2024-05-15T23:03:15.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.914800", - "Timestamp": "2019-10-15T13:26:09.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.437300", + "Timestamp": "2024-05-15T23:02:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.884800", - "Timestamp": "2019-10-15T13:26:09.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224000", + "Timestamp": "2024-05-15T23:02:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.784800", - "Timestamp": "2019-10-15T13:26:09.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.248600", + "Timestamp": "2024-05-15T23:01:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.135400", - "Timestamp": "2019-10-15T13:25:54.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.243600", + "Timestamp": "2024-05-15T23:01:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.175400", - "Timestamp": "2019-10-15T13:25:54.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118600", + "Timestamp": "2024-05-15T23:01:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.075400", - "Timestamp": "2019-10-15T13:25:54.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073800", + "Timestamp": "2024-05-15T23:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.372300", - "Timestamp": "2019-10-15T13:16:37.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070100", + "Timestamp": "2024-05-15T23:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.342300", - "Timestamp": "2019-10-15T13:16:37.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013800", + "Timestamp": "2024-05-15T23:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.242300", - "Timestamp": "2019-10-15T13:16:37.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.855500", + "Timestamp": "2024-05-15T22:47:17.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.952200", - "Timestamp": "2019-10-15T13:14:57.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.390300", + "Timestamp": "2024-05-15T22:47:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.922200", - "Timestamp": "2019-10-15T13:14:57.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116100", + "Timestamp": "2024-05-15T22:46:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.822200", - "Timestamp": "2019-10-15T13:14:57.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096200", + "Timestamp": "2024-05-15T22:46:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.125400", - "Timestamp": "2019-10-15T13:08:48.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092500", + "Timestamp": "2024-05-15T22:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036200", + "Timestamp": "2024-05-15T22:46:37.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113800", + "Timestamp": "2024-05-15T22:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-15T22:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053800", + "Timestamp": "2024-05-15T22:46:27.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-15T22:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143800", + "Timestamp": "2024-05-15T22:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043800", + "Timestamp": "2024-05-15T22:32:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.472100", + "Timestamp": "2024-05-15T22:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.467100", + "Timestamp": "2024-05-15T22:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.342100", + "Timestamp": "2024-05-15T22:32:15.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086800", + "Timestamp": "2024-05-15T22:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083100", + "Timestamp": "2024-05-15T22:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026800", + "Timestamp": "2024-05-15T22:31:57.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.626200", + "Timestamp": "2024-05-15T22:31:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090300", + "Timestamp": "2024-05-15T22:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086600", + "Timestamp": "2024-05-15T22:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030300", + "Timestamp": "2024-05-15T22:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096200", + "Timestamp": "2024-05-15T22:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092200", + "Timestamp": "2024-05-15T22:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036200", + "Timestamp": "2024-05-15T22:31:30.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080400", + "Timestamp": "2024-05-15T22:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076700", + "Timestamp": "2024-05-15T22:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020400", + "Timestamp": "2024-05-15T22:16:38.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.338200", + "Timestamp": "2024-05-15T22:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.333200", + "Timestamp": "2024-05-15T22:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.208200", + "Timestamp": "2024-05-15T22:16:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.415200", + "Timestamp": "2024-05-15T22:16:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116100", + "Timestamp": "2024-05-15T22:02:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118500", + "Timestamp": "2024-05-15T22:02:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-15T22:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092200", + "Timestamp": "2024-05-15T22:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035900", + "Timestamp": "2024-05-15T22:02:22.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075100", + "Timestamp": "2024-05-15T22:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071400", + "Timestamp": "2024-05-15T22:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015100", + "Timestamp": "2024-05-15T22:02:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.185600", + "Timestamp": "2024-05-15T22:02:07.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116600", + "Timestamp": "2024-05-15T22:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112900", + "Timestamp": "2024-05-15T22:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056600", + "Timestamp": "2024-05-15T22:01:33.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146400", + "Timestamp": "2024-05-15T22:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142400", + "Timestamp": "2024-05-15T22:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086400", + "Timestamp": "2024-05-15T22:01:29.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.011900", + "Timestamp": "2024-05-15T22:01:25.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.114600", + "Timestamp": "2024-05-15T21:46:39.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.789100", + "Timestamp": "2024-05-15T21:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.784100", + "Timestamp": "2024-05-15T21:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.659100", + "Timestamp": "2024-05-15T21:46:36.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063100", + "Timestamp": "2024-05-15T21:45:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063400", + "Timestamp": "2024-05-15T21:45:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061800", + "Timestamp": "2024-05-15T21:45:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003100", + "Timestamp": "2024-05-15T21:45:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003400", + "Timestamp": "2024-05-15T21:45:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001800", + "Timestamp": "2024-05-15T21:45:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003100", + "Timestamp": "2024-05-15T21:45:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003400", + "Timestamp": "2024-05-15T21:45:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001800", + "Timestamp": "2024-05-15T21:45:51.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.864400", + "Timestamp": "2024-05-15T21:45:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.859400", + "Timestamp": "2024-05-15T21:45:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.734400", + "Timestamp": "2024-05-15T21:45:08.000Z" + }, + { + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.150400", + "Timestamp": "2024-05-15T21:41:54.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "im4gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085600", + "Timestamp": "2024-05-15T21:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "im4gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.081900", + "Timestamp": "2024-05-15T21:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3a", + "InstanceType": "im4gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025600", + "Timestamp": "2024-05-15T21:32:28.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093700", + "Timestamp": "2024-05-15T21:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090000", + "Timestamp": "2024-05-15T21:32:20.000Z" + }, + { + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033700", + "Timestamp": "2024-05-15T21:32:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.165400", - "Timestamp": "2019-10-15T13:08:48.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097900", + "Timestamp": "2024-05-15T21:32:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.065400", - "Timestamp": "2019-10-15T13:08:48.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093900", + "Timestamp": "2024-05-15T21:32:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.249400", - "Timestamp": "2019-10-15T13:00:34.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037900", + "Timestamp": "2024-05-15T21:32:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126300", - "Timestamp": "2019-10-15T13:00:13.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-15T21:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.249400", - "Timestamp": "2019-10-15T12:52:34.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098900", + "Timestamp": "2024-05-15T21:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252500", - "Timestamp": "2019-10-15T12:48:31.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042900", + "Timestamp": "2024-05-15T21:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252500", - "Timestamp": "2019-10-15T12:48:31.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211000", + "Timestamp": "2024-05-15T21:17:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252500", - "Timestamp": "2019-10-15T12:48:31.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.042300", + "Timestamp": "2024-05-15T21:17:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.128500", - "Timestamp": "2019-10-15T12:45:37.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116400", + "Timestamp": "2024-05-15T21:16:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.168500", - "Timestamp": "2019-10-15T12:45:37.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-15T21:16:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.068500", - "Timestamp": "2019-10-15T12:45:37.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056400", + "Timestamp": "2024-05-15T21:16:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.398700", - "Timestamp": "2019-10-15T12:43:33.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070200", + "Timestamp": "2024-05-15T21:16:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.368700", - "Timestamp": "2019-10-15T12:43:33.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.066500", + "Timestamp": "2024-05-15T21:16:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.268700", - "Timestamp": "2019-10-15T12:43:33.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.010200", + "Timestamp": "2024-05-15T21:16:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.371900", - "Timestamp": "2019-10-15T12:43:13.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063700", + "Timestamp": "2024-05-15T21:03:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.341900", - "Timestamp": "2019-10-15T12:43:13.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.035000", + "Timestamp": "2024-05-15T21:03:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.241900", - "Timestamp": "2019-10-15T12:43:13.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003700", + "Timestamp": "2024-05-15T21:03:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.131400", - "Timestamp": "2019-10-15T12:43:05.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062200", + "Timestamp": "2024-05-15T21:03:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.171400", - "Timestamp": "2019-10-15T12:43:05.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t4g.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002200", + "Timestamp": "2024-05-15T21:03:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.071400", - "Timestamp": "2019-10-15T12:43:05.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t4g.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002200", + "Timestamp": "2024-05-15T21:03:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "8.376400", - "Timestamp": "2019-10-15T12:41:37.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.265100", + "Timestamp": "2024-05-15T21:02:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "8.376400", - "Timestamp": "2019-10-15T12:41:37.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.260100", + "Timestamp": "2024-05-15T21:02:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "p2.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "8.346400", - "Timestamp": "2019-10-15T12:41:37.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.135100", + "Timestamp": "2024-05-15T21:02:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "p2.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "8.346400", - "Timestamp": "2019-10-15T12:41:37.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080700", + "Timestamp": "2024-05-15T21:01:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "8.246400", - "Timestamp": "2019-10-15T12:41:37.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077000", + "Timestamp": "2024-05-15T21:01:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "8.246400", - "Timestamp": "2019-10-15T12:41:37.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020700", + "Timestamp": "2024-05-15T21:01:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "11.190400", - "Timestamp": "2019-10-15T12:41:37.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432400", + "Timestamp": "2024-05-15T21:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "11.190400", - "Timestamp": "2019-10-15T12:41:37.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.419500", + "Timestamp": "2024-05-15T21:01:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.436600", - "Timestamp": "2019-10-15T12:41:35.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086100", + "Timestamp": "2024-05-15T20:47:17.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.436600", - "Timestamp": "2019-10-15T12:41:35.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082400", + "Timestamp": "2024-05-15T20:47:17.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.436600", - "Timestamp": "2019-10-15T12:41:35.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026100", + "Timestamp": "2024-05-15T20:47:17.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.406600", - "Timestamp": "2019-10-15T12:41:35.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118400", + "Timestamp": "2024-05-15T20:46:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.406600", - "Timestamp": "2019-10-15T12:41:35.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114700", + "Timestamp": "2024-05-15T20:46:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.406600", - "Timestamp": "2019-10-15T12:41:35.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5dn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.058400", + "Timestamp": "2024-05-15T20:46:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.306600", - "Timestamp": "2019-10-15T12:41:35.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.469000", + "Timestamp": "2024-05-15T20:46:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.306600", - "Timestamp": "2019-10-15T12:41:35.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-15T20:32:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.306600", - "Timestamp": "2019-10-15T12:41:35.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219200", + "Timestamp": "2024-05-15T20:32:05.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.226200", - "Timestamp": "2019-10-15T12:41:20.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086200", + "Timestamp": "2024-05-15T20:31:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.196200", - "Timestamp": "2019-10-15T12:41:20.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082500", + "Timestamp": "2024-05-15T20:31:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.096200", - "Timestamp": "2019-10-15T12:41:20.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026200", + "Timestamp": "2024-05-15T20:31:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.250600", - "Timestamp": "2019-10-15T12:40:34.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142300", + "Timestamp": "2024-05-15T20:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.250600", - "Timestamp": "2019-10-15T12:40:34.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138300", + "Timestamp": "2024-05-15T20:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.250600", - "Timestamp": "2019-10-15T12:40:34.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082300", + "Timestamp": "2024-05-15T20:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3a.medium", "ProductDescription": "Windows", - "SpotPrice": "3.650000", - "Timestamp": "2019-10-15T12:38:02.000Z" + "SpotPrice": "0.024600", + "Timestamp": "2024-05-15T20:28:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t2.micro", "ProductDescription": "Windows", - "SpotPrice": "3.650000", - "Timestamp": "2019-10-15T12:38:02.000Z" + "SpotPrice": "0.007700", + "Timestamp": "2024-05-15T20:17:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.650000", - "Timestamp": "2019-10-15T12:38:02.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.873500", + "Timestamp": "2024-05-15T20:17:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.650000", - "Timestamp": "2019-10-15T12:38:02.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.456300", + "Timestamp": "2024-05-15T20:17:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i-flex.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.572000", - "Timestamp": "2019-10-15T12:37:50.000Z" + "SpotPrice": "0.093900", + "Timestamp": "2024-05-15T20:16:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.572000", - "Timestamp": "2019-10-15T12:37:50.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090200", + "Timestamp": "2024-05-15T20:16:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.542000", - "Timestamp": "2019-10-15T12:37:50.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033900", + "Timestamp": "2024-05-15T20:16:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.542000", - "Timestamp": "2019-10-15T12:37:50.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105600", + "Timestamp": "2024-05-15T20:02:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.442000", - "Timestamp": "2019-10-15T12:37:50.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088400", + "Timestamp": "2024-05-15T20:01:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.442000", - "Timestamp": "2019-10-15T12:37:50.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084700", + "Timestamp": "2024-05-15T20:01:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.572000", - "Timestamp": "2019-10-15T12:37:38.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028400", + "Timestamp": "2024-05-15T20:01:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.542000", - "Timestamp": "2019-10-15T12:37:38.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.665400", + "Timestamp": "2024-05-15T19:52:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.442000", - "Timestamp": "2019-10-15T12:37:38.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.665400", + "Timestamp": "2024-05-15T19:52:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.498800", - "Timestamp": "2019-10-15T12:30:35.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.665400", + "Timestamp": "2024-05-15T19:52:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5dn.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124700", - "Timestamp": "2019-10-15T12:27:35.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-15T19:47:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.699600", - "Timestamp": "2019-10-15T12:27:20.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005500", + "Timestamp": "2024-05-15T19:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.669600", - "Timestamp": "2019-10-15T12:27:20.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.312300", + "Timestamp": "2024-05-15T19:22:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.569600", - "Timestamp": "2019-10-15T12:27:20.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.312300", + "Timestamp": "2024-05-15T19:22:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.263300", - "Timestamp": "2019-10-15T12:26:54.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.880800", + "Timestamp": "2024-05-15T19:20:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.233300", - "Timestamp": "2019-10-15T12:26:54.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.880800", + "Timestamp": "2024-05-15T19:20:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.133300", - "Timestamp": "2019-10-15T12:26:54.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.880800", + "Timestamp": "2024-05-15T19:20:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.226200", - "Timestamp": "2019-10-15T12:24:20.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.044000", + "Timestamp": "2024-05-15T19:16:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.196200", - "Timestamp": "2019-10-15T12:24:20.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.764400", + "Timestamp": "2024-05-15T19:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.096200", - "Timestamp": "2019-10-15T12:24:20.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106000", + "Timestamp": "2024-05-15T19:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.391600", - "Timestamp": "2019-10-15T12:18:29.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102000", + "Timestamp": "2024-05-15T19:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.361600", - "Timestamp": "2019-10-15T12:18:29.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046000", + "Timestamp": "2024-05-15T19:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.261600", - "Timestamp": "2019-10-15T12:18:29.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-15T19:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.010100", - "Timestamp": "2019-10-15T12:12:35.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207900", + "Timestamp": "2024-05-15T19:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3.nano", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.006600", - "Timestamp": "2019-10-15T12:12:22.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101500", + "Timestamp": "2024-05-15T19:02:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3.nano", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.006600", - "Timestamp": "2019-10-15T12:12:22.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141500", + "Timestamp": "2024-05-15T19:02:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3.nano", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.006600", - "Timestamp": "2019-10-15T12:12:22.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041500", + "Timestamp": "2024-05-15T19:02:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.062000", - "Timestamp": "2019-10-15T12:10:08.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099400", + "Timestamp": "2024-05-15T19:02:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.062000", - "Timestamp": "2019-10-15T12:10:08.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095400", + "Timestamp": "2024-05-15T19:02:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.062000", - "Timestamp": "2019-10-15T12:10:08.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.039400", + "Timestamp": "2024-05-15T19:02:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3.nano", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.102000", - "Timestamp": "2019-10-15T12:10:08.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098200", + "Timestamp": "2024-05-15T19:02:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3.nano", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.102000", - "Timestamp": "2019-10-15T12:10:08.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138200", + "Timestamp": "2024-05-15T19:02:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3.nano", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.102000", - "Timestamp": "2019-10-15T12:10:08.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038200", + "Timestamp": "2024-05-15T19:02:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3.nano", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T12:10:08.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.124300", + "Timestamp": "2024-05-15T19:01:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3.nano", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T12:10:08.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120600", + "Timestamp": "2024-05-15T19:01:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3.nano", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T12:10:08.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.064300", + "Timestamp": "2024-05-15T19:01:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.096300", - "Timestamp": "2019-10-15T12:09:36.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-15T19:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.136300", - "Timestamp": "2019-10-15T12:09:36.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098000", + "Timestamp": "2024-05-15T19:01:14.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.036300", - "Timestamp": "2019-10-15T12:09:36.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094000", + "Timestamp": "2024-05-15T19:01:14.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.319600", - "Timestamp": "2019-10-15T12:04:57.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.038000", + "Timestamp": "2024-05-15T19:01:14.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.176400", - "Timestamp": "2019-10-15T12:02:08.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.156200", + "Timestamp": "2024-05-15T18:59:15.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.146400", - "Timestamp": "2019-10-15T12:02:08.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.093100", + "Timestamp": "2024-05-15T18:47:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.046400", - "Timestamp": "2019-10-15T12:02:08.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.208100", + "Timestamp": "2024-05-15T18:46:55.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.128500", - "Timestamp": "2019-10-15T11:58:59.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129900", + "Timestamp": "2024-05-15T18:46:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.168500", - "Timestamp": "2019-10-15T11:58:59.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126200", + "Timestamp": "2024-05-15T18:46:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.068500", - "Timestamp": "2019-10-15T11:58:59.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069900", + "Timestamp": "2024-05-15T18:46:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5dn.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094300", - "Timestamp": "2019-10-15T11:51:31.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.large", + "ProductDescription": "Windows", + "SpotPrice": "0.038900", + "Timestamp": "2024-05-15T18:46:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5dn.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-15T11:51:31.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.012000", + "Timestamp": "2024-05-15T18:36:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5dn.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034300", - "Timestamp": "2019-10-15T11:51:31.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.024600", + "Timestamp": "2024-05-15T18:32:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.060400", - "Timestamp": "2019-10-15T11:51:22.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116200", + "Timestamp": "2024-05-15T18:32:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.699600", - "Timestamp": "2019-10-15T11:47:51.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112500", + "Timestamp": "2024-05-15T18:32:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.669600", - "Timestamp": "2019-10-15T11:47:51.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056200", + "Timestamp": "2024-05-15T18:32:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.569600", - "Timestamp": "2019-10-15T11:47:51.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102300", + "Timestamp": "2024-05-15T18:16:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.040800", - "Timestamp": "2019-10-15T11:41:28.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.650900", + "Timestamp": "2024-05-15T18:13:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.040800", - "Timestamp": "2019-10-15T11:41:28.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.650900", + "Timestamp": "2024-05-15T18:13:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.486600", - "Timestamp": "2019-10-15T11:41:09.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.645900", + "Timestamp": "2024-05-15T18:13:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.486600", - "Timestamp": "2019-10-15T11:41:09.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.645900", + "Timestamp": "2024-05-15T18:13:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.486600", - "Timestamp": "2019-10-15T11:41:09.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.520900", + "Timestamp": "2024-05-15T18:13:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.065800", - "Timestamp": "2019-10-15T11:40:41.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.520900", + "Timestamp": "2024-05-15T18:13:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.065800", - "Timestamp": "2019-10-15T11:40:41.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.936900", + "Timestamp": "2024-05-15T18:13:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.035800", - "Timestamp": "2019-10-15T11:40:41.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.936900", + "Timestamp": "2024-05-15T18:13:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.035800", - "Timestamp": "2019-10-15T11:40:41.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063800", + "Timestamp": "2024-05-15T18:05:50.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.005800", - "Timestamp": "2019-10-15T11:40:41.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003800", + "Timestamp": "2024-05-15T18:05:50.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.005800", - "Timestamp": "2019-10-15T11:40:41.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003800", + "Timestamp": "2024-05-15T18:05:50.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.small", + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5ad.large", "ProductDescription": "Windows", - "SpotPrice": "0.040800", - "Timestamp": "2019-10-15T11:39:41.000Z" + "SpotPrice": "0.104200", + "Timestamp": "2024-05-15T18:05:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.small", + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3a.medium", "ProductDescription": "Windows", - "SpotPrice": "0.040800", - "Timestamp": "2019-10-15T11:39:41.000Z" + "SpotPrice": "0.024700", + "Timestamp": "2024-05-15T18:02:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.065800", - "Timestamp": "2019-10-15T11:39:41.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105100", + "Timestamp": "2024-05-15T18:02:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.065800", - "Timestamp": "2019-10-15T11:39:41.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.181300", + "Timestamp": "2024-05-15T18:01:47.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.035800", - "Timestamp": "2019-10-15T11:39:41.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-15T17:58:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.035800", - "Timestamp": "2019-10-15T11:39:41.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-15T17:58:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.005800", - "Timestamp": "2019-10-15T11:39:41.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-15T17:58:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.005800", - "Timestamp": "2019-10-15T11:39:41.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-15T17:47:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.404100", - "Timestamp": "2019-10-15T11:38:38.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.491200", + "Timestamp": "2024-05-15T17:36:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.374100", - "Timestamp": "2019-10-15T11:38:38.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.486200", + "Timestamp": "2024-05-15T17:36:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.274100", - "Timestamp": "2019-10-15T11:38:38.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.361200", + "Timestamp": "2024-05-15T17:36:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.249400", - "Timestamp": "2019-10-15T11:36:21.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.metal", + "ProductDescription": "Windows", + "SpotPrice": "9.249200", + "Timestamp": "2024-05-15T17:36:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c4.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.219400", - "Timestamp": "2019-10-15T11:36:21.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067600", + "Timestamp": "2024-05-15T17:32:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.119400", - "Timestamp": "2019-10-15T11:36:21.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038600", + "Timestamp": "2024-05-15T17:32:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.030200", - "Timestamp": "2019-10-15T11:26:31.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007600", + "Timestamp": "2024-05-15T17:32:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.030200", - "Timestamp": "2019-10-15T11:26:31.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-15T17:32:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.030200", - "Timestamp": "2019-10-15T11:26:31.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099700", + "Timestamp": "2024-05-15T17:32:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-15T11:25:32.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043700", + "Timestamp": "2024-05-15T17:32:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.237000", - "Timestamp": "2019-10-15T11:25:32.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5dn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.111800", + "Timestamp": "2024-05-15T17:32:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.137000", - "Timestamp": "2019-10-15T11:25:32.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104900", + "Timestamp": "2024-05-15T17:32:00.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.249400", - "Timestamp": "2019-10-15T11:24:16.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108500", + "Timestamp": "2024-05-15T17:17:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.404100", - "Timestamp": "2019-10-15T11:21:38.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010400", + "Timestamp": "2024-05-15T17:17:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.374100", - "Timestamp": "2019-10-15T11:21:38.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.085900", + "Timestamp": "2024-05-15T17:16:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.274100", - "Timestamp": "2019-10-15T11:21:38.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082200", + "Timestamp": "2024-05-15T17:16:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5dn.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126300", - "Timestamp": "2019-10-15T11:17:44.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.025900", + "Timestamp": "2024-05-15T17:16:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.060400", - "Timestamp": "2019-10-15T11:17:22.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097000", + "Timestamp": "2024-05-15T17:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.391600", - "Timestamp": "2019-10-15T11:15:36.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093300", + "Timestamp": "2024-05-15T17:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.361600", - "Timestamp": "2019-10-15T11:15:36.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037000", + "Timestamp": "2024-05-15T17:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.261600", - "Timestamp": "2019-10-15T11:15:36.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "r4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107600", + "Timestamp": "2024-05-15T17:16:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t2.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.068800", - "Timestamp": "2019-10-15T11:14:12.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.249200", + "Timestamp": "2024-05-15T17:10:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t2.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.038800", - "Timestamp": "2019-10-15T11:14:12.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.249200", + "Timestamp": "2024-05-15T17:10:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t2.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.008800", - "Timestamp": "2019-10-15T11:14:12.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.249200", + "Timestamp": "2024-05-15T17:10:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.260800", - "Timestamp": "2019-10-15T11:07:20.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.491200", + "Timestamp": "2024-05-15T17:10:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.230800", - "Timestamp": "2019-10-15T11:07:20.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.491200", + "Timestamp": "2024-05-15T17:10:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T11:07:20.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.486200", + "Timestamp": "2024-05-15T17:10:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.391600", - "Timestamp": "2019-10-15T11:06:23.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.486200", + "Timestamp": "2024-05-15T17:10:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.361600", - "Timestamp": "2019-10-15T11:06:23.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.361200", + "Timestamp": "2024-05-15T17:10:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.261600", - "Timestamp": "2019-10-15T11:06:23.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.361200", + "Timestamp": "2024-05-15T17:10:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.176400", - "Timestamp": "2019-10-15T11:04:46.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t2.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.023700", + "Timestamp": "2024-05-15T17:10:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.146400", - "Timestamp": "2019-10-15T11:04:46.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.020800", + "Timestamp": "2024-05-15T17:10:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.046400", - "Timestamp": "2019-10-15T11:04:46.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.020600", + "Timestamp": "2024-05-15T17:10:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5dn.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094300", - "Timestamp": "2019-10-15T11:01:25.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.023600", + "Timestamp": "2024-05-15T17:10:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5dn.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-15T11:01:25.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067700", + "Timestamp": "2024-05-15T17:10:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5dn.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034300", - "Timestamp": "2019-10-15T11:01:25.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038700", + "Timestamp": "2024-05-15T17:10:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.992800", - "Timestamp": "2019-10-15T11:00:21.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007700", + "Timestamp": "2024-05-15T17:10:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.992800", - "Timestamp": "2019-10-15T11:00:21.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-15T17:02:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.311300", - "Timestamp": "2019-10-15T11:00:15.000Z" + "SpotPrice": "3.523200", + "Timestamp": "2024-05-15T16:53:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.091200", - "Timestamp": "2019-10-15T11:00:06.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.523200", + "Timestamp": "2024-05-15T16:53:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.131200", - "Timestamp": "2019-10-15T11:00:06.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010700", + "Timestamp": "2024-05-15T16:46:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.031200", - "Timestamp": "2019-10-15T11:00:06.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065000", + "Timestamp": "2024-05-15T16:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.391600", - "Timestamp": "2019-10-15T10:47:28.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.036300", + "Timestamp": "2024-05-15T16:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.361600", - "Timestamp": "2019-10-15T10:47:28.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005000", + "Timestamp": "2024-05-15T16:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.261600", - "Timestamp": "2019-10-15T10:47:28.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207400", + "Timestamp": "2024-05-15T16:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.130400", - "Timestamp": "2019-10-15T10:46:55.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063300", + "Timestamp": "2024-05-15T16:18:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.170400", - "Timestamp": "2019-10-15T10:46:55.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003300", + "Timestamp": "2024-05-15T16:18:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.070400", - "Timestamp": "2019-10-15T10:46:55.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003300", + "Timestamp": "2024-05-15T16:18:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.404100", - "Timestamp": "2019-10-15T10:44:31.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215300", + "Timestamp": "2024-05-15T16:16:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.374100", - "Timestamp": "2019-10-15T10:44:31.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3a.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.006000", + "Timestamp": "2024-05-15T16:03:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.274100", - "Timestamp": "2019-10-15T10:44:31.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072700", + "Timestamp": "2024-05-15T16:02:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.123100", - "Timestamp": "2019-10-15T10:42:26.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069000", + "Timestamp": "2024-05-15T16:02:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.123100", - "Timestamp": "2019-10-15T10:42:26.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012700", + "Timestamp": "2024-05-15T16:02:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.123100", - "Timestamp": "2019-10-15T10:42:26.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.062300", + "Timestamp": "2024-05-15T15:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.246300", - "Timestamp": "2019-10-15T10:40:26.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.195000", + "Timestamp": "2024-05-15T15:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.246300", - "Timestamp": "2019-10-15T10:40:26.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.761600", + "Timestamp": "2024-05-15T15:36:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.246300", - "Timestamp": "2019-10-15T10:40:26.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.761600", + "Timestamp": "2024-05-15T15:36:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.091100", - "Timestamp": "2019-10-15T10:39:40.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.761600", + "Timestamp": "2024-05-15T15:36:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.131100", - "Timestamp": "2019-10-15T10:39:40.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-15T15:31:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.031100", - "Timestamp": "2019-10-15T10:39:40.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103600", + "Timestamp": "2024-05-15T15:17:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t2.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.071000", - "Timestamp": "2019-10-15T10:38:31.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068000", + "Timestamp": "2024-05-15T15:17:01.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t2.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.041000", - "Timestamp": "2019-10-15T10:38:31.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039000", + "Timestamp": "2024-05-15T15:17:01.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t2.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.011000", - "Timestamp": "2019-10-15T10:38:31.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008000", + "Timestamp": "2024-05-15T15:17:01.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.119700", - "Timestamp": "2019-10-15T10:38:00.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.414900", + "Timestamp": "2024-05-15T14:47:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.159700", - "Timestamp": "2019-10-15T10:38:00.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-15T14:47:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.059700", - "Timestamp": "2019-10-15T10:38:00.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.086400", + "Timestamp": "2024-05-15T14:47:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.010100", - "Timestamp": "2019-10-15T10:26:31.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082700", + "Timestamp": "2024-05-15T14:47:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.505000", - "Timestamp": "2019-10-15T10:22:32.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026400", + "Timestamp": "2024-05-15T14:47:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.997600", - "Timestamp": "2019-10-15T10:21:46.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "is4gen.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100900", + "Timestamp": "2024-05-15T14:47:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.990400", - "Timestamp": "2019-10-15T10:11:08.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "is4gen.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097200", + "Timestamp": "2024-05-15T14:47:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.997600", - "Timestamp": "2019-10-15T10:08:54.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "is4gen.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040900", + "Timestamp": "2024-05-15T14:47:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.260800", - "Timestamp": "2019-10-15T10:02:46.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102200", + "Timestamp": "2024-05-15T14:46:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.230800", - "Timestamp": "2019-10-15T10:02:46.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.825800", + "Timestamp": "2024-05-15T14:46:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T10:02:46.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-15T14:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.249400", - "Timestamp": "2019-10-15T10:01:19.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099800", + "Timestamp": "2024-05-15T14:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-15T09:53:32.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043800", + "Timestamp": "2024-05-15T14:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.237000", - "Timestamp": "2019-10-15T09:53:32.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102700", + "Timestamp": "2024-05-15T14:32:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.137000", - "Timestamp": "2019-10-15T09:53:32.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.091300", + "Timestamp": "2024-05-15T14:18:17.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.997600", - "Timestamp": "2019-10-15T09:52:35.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062500", + "Timestamp": "2024-05-15T14:01:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.995200", - "Timestamp": "2019-10-15T09:51:36.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-15T14:01:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.404100", - "Timestamp": "2019-10-15T09:49:35.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-15T14:01:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.374100", - "Timestamp": "2019-10-15T09:49:35.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072500", + "Timestamp": "2024-05-15T14:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.274100", - "Timestamp": "2019-10-15T09:49:35.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.043500", + "Timestamp": "2024-05-15T14:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5dn.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092700", - "Timestamp": "2019-10-15T09:48:33.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.012500", + "Timestamp": "2024-05-15T14:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5dn.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-15T09:48:33.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211200", + "Timestamp": "2024-05-15T13:31:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5dn.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032700", - "Timestamp": "2019-10-15T09:48:33.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.104400", + "Timestamp": "2024-05-15T13:17:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.226200", - "Timestamp": "2019-10-15T09:42:43.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010800", + "Timestamp": "2024-05-15T13:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.226200", - "Timestamp": "2019-10-15T09:42:43.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.010400", + "Timestamp": "2024-05-15T13:07:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.226200", - "Timestamp": "2019-10-15T09:42:43.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.810600", + "Timestamp": "2024-05-15T13:07:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.196200", - "Timestamp": "2019-10-15T09:42:43.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.810600", + "Timestamp": "2024-05-15T13:07:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.196200", - "Timestamp": "2019-10-15T09:42:43.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.805600", + "Timestamp": "2024-05-15T13:07:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.196200", - "Timestamp": "2019-10-15T09:42:43.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2idn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.805600", + "Timestamp": "2024-05-15T13:07:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.096200", - "Timestamp": "2019-10-15T09:42:43.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.680600", + "Timestamp": "2024-05-15T13:07:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.096200", - "Timestamp": "2019-10-15T09:42:43.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.680600", + "Timestamp": "2024-05-15T13:07:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.096200", - "Timestamp": "2019-10-15T09:42:43.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.568600", + "Timestamp": "2024-05-15T13:06:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.040200", - "Timestamp": "2019-10-15T09:42:43.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.568600", + "Timestamp": "2024-05-15T13:06:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.040200", - "Timestamp": "2019-10-15T09:42:43.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2idn.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.568600", + "Timestamp": "2024-05-15T13:06:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.040200", - "Timestamp": "2019-10-15T09:42:43.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220200", + "Timestamp": "2024-05-15T13:04:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.246300", - "Timestamp": "2019-10-15T09:42:25.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220200", + "Timestamp": "2024-05-15T13:04:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.246300", - "Timestamp": "2019-10-15T09:42:25.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220200", + "Timestamp": "2024-05-15T13:04:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.122300", - "Timestamp": "2019-10-15T09:41:11.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210200", + "Timestamp": "2024-05-15T12:46:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.122300", - "Timestamp": "2019-10-15T09:41:11.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063600", + "Timestamp": "2024-05-15T12:33:04.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.162300", - "Timestamp": "2019-10-15T09:41:11.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003600", + "Timestamp": "2024-05-15T12:33:04.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.162300", - "Timestamp": "2019-10-15T09:41:11.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003600", + "Timestamp": "2024-05-15T12:33:04.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.062300", - "Timestamp": "2019-10-15T09:41:11.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075900", + "Timestamp": "2024-05-15T12:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.062300", - "Timestamp": "2019-10-15T09:41:11.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.072200", + "Timestamp": "2024-05-15T12:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.492600", - "Timestamp": "2019-10-15T09:40:53.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015900", + "Timestamp": "2024-05-15T12:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.492600", - "Timestamp": "2019-10-15T09:40:53.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440400", + "Timestamp": "2024-05-15T12:28:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.492600", - "Timestamp": "2019-10-15T09:40:53.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440400", + "Timestamp": "2024-05-15T12:28:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.088300", - "Timestamp": "2019-10-15T09:40:03.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440400", + "Timestamp": "2024-05-15T12:28:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.088300", - "Timestamp": "2019-10-15T09:40:03.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.452800", + "Timestamp": "2024-05-15T12:19:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.088300", - "Timestamp": "2019-10-15T09:40:03.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.452800", + "Timestamp": "2024-05-15T12:19:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.128300", - "Timestamp": "2019-10-15T09:40:03.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.452800", + "Timestamp": "2024-05-15T12:19:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.128300", - "Timestamp": "2019-10-15T09:40:03.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.578100", + "Timestamp": "2024-05-15T12:18:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.128300", - "Timestamp": "2019-10-15T09:40:03.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063700", + "Timestamp": "2024-05-15T12:03:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.028300", - "Timestamp": "2019-10-15T09:40:03.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003700", + "Timestamp": "2024-05-15T12:03:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.028300", - "Timestamp": "2019-10-15T09:40:03.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003700", + "Timestamp": "2024-05-15T12:03:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.028300", - "Timestamp": "2019-10-15T09:40:03.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "t2.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.006700", + "Timestamp": "2024-05-15T12:02:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.055900", - "Timestamp": "2019-10-15T09:39:12.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068200", + "Timestamp": "2024-05-15T12:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.055900", - "Timestamp": "2019-10-15T09:39:12.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.064500", + "Timestamp": "2024-05-15T12:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.055900", - "Timestamp": "2019-10-15T09:39:12.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008200", + "Timestamp": "2024-05-15T12:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.030200", - "Timestamp": "2019-10-15T09:27:30.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118400", + "Timestamp": "2024-05-15T12:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.030200", - "Timestamp": "2019-10-15T09:27:30.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.411300", + "Timestamp": "2024-05-15T11:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.030200", - "Timestamp": "2019-10-15T09:27:30.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.810600", + "Timestamp": "2024-05-15T11:29:53.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.010100", - "Timestamp": "2019-10-15T09:25:34.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.810600", + "Timestamp": "2024-05-15T11:29:53.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.992800", - "Timestamp": "2019-10-15T09:24:19.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.805600", + "Timestamp": "2024-05-15T11:29:53.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.128500", - "Timestamp": "2019-10-15T09:23:37.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.805600", + "Timestamp": "2024-05-15T11:29:53.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.168500", - "Timestamp": "2019-10-15T09:23:37.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.680600", + "Timestamp": "2024-05-15T11:29:53.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.068500", - "Timestamp": "2019-10-15T09:23:37.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.680600", + "Timestamp": "2024-05-15T11:29:53.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.255200", - "Timestamp": "2019-10-15T09:23:17.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.624600", + "Timestamp": "2024-05-15T11:29:53.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.225200", - "Timestamp": "2019-10-15T09:23:17.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.624600", + "Timestamp": "2024-05-15T11:29:53.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.125200", - "Timestamp": "2019-10-15T09:23:17.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.676500", + "Timestamp": "2024-05-15T11:28:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.699600", - "Timestamp": "2019-10-15T09:17:57.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.676500", + "Timestamp": "2024-05-15T11:28:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.669600", - "Timestamp": "2019-10-15T09:17:57.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.676500", + "Timestamp": "2024-05-15T11:28:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.569600", - "Timestamp": "2019-10-15T09:17:57.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.390500", + "Timestamp": "2024-05-15T11:28:10.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252500", - "Timestamp": "2019-10-15T09:15:52.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.390500", + "Timestamp": "2024-05-15T11:28:10.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.311300", - "Timestamp": "2019-10-15T09:15:14.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.385500", + "Timestamp": "2024-05-15T11:28:10.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.126600", - "Timestamp": "2019-10-15T09:12:20.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.385500", + "Timestamp": "2024-05-15T11:28:10.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.096600", - "Timestamp": "2019-10-15T09:12:20.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.260500", + "Timestamp": "2024-05-15T11:28:10.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.996600", - "Timestamp": "2019-10-15T09:12:20.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.260500", + "Timestamp": "2024-05-15T11:28:10.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5dn.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.010100", - "Timestamp": "2019-10-15T09:11:30.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063100", + "Timestamp": "2024-05-15T11:26:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.260800", - "Timestamp": "2019-10-15T09:01:16.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003100", + "Timestamp": "2024-05-15T11:26:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.230800", - "Timestamp": "2019-10-15T09:01:16.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003100", + "Timestamp": "2024-05-15T11:26:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T09:01:16.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.704400", + "Timestamp": "2024-05-12T00:31:55.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.163300", - "Timestamp": "2019-10-15T08:57:37.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.635500", + "Timestamp": "2024-05-11T18:47:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124700", - "Timestamp": "2019-10-15T08:53:21.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.605500", + "Timestamp": "2024-05-11T18:47:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.128500", - "Timestamp": "2019-10-15T08:47:28.000Z" + "AvailabilityZone": "eu-west-3b", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.505500", + "Timestamp": "2024-05-11T18:47:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.168500", - "Timestamp": "2019-10-15T08:47:28.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.661100", + "Timestamp": "2024-03-22T07:17:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.068500", - "Timestamp": "2019-10-15T08:47:28.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.125800", + "Timestamp": "2024-03-22T05:17:00.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.249400", - "Timestamp": "2019-10-15T08:45:15.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.095800", + "Timestamp": "2024-03-22T05:17:00.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.311300", - "Timestamp": "2019-10-15T08:44:36.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "d2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.995800", + "Timestamp": "2024-03-22T05:17:00.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.624900", - "Timestamp": "2019-10-15T08:43:04.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.294300", + "Timestamp": "2024-03-07T09:02:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.624900", - "Timestamp": "2019-10-15T08:43:04.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "d2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334300", + "Timestamp": "2024-03-07T09:02:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.624900", - "Timestamp": "2019-10-15T08:43:04.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.234300", + "Timestamp": "2024-03-07T09:02:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.594900", - "Timestamp": "2019-10-15T08:43:04.000Z" + "AvailabilityZone": "eu-west-3c", + "InstanceType": "d2.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.417300", + "Timestamp": "2024-03-07T08:56:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.594900", - "Timestamp": "2019-10-15T08:43:04.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.696800", + "Timestamp": "2024-03-06T13:32:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.594900", - "Timestamp": "2019-10-15T08:43:04.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.856300", + "Timestamp": "2024-03-06T12:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.494900", - "Timestamp": "2019-10-15T08:43:04.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.826300", + "Timestamp": "2024-03-06T12:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.494900", - "Timestamp": "2019-10-15T08:43:04.000Z" + "AvailabilityZone": "eu-west-3a", + "InstanceType": "d2.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.726300", + "Timestamp": "2024-03-06T12:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.494900", - "Timestamp": "2019-10-15T08:43:04.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.967900", + "Timestamp": "2024-05-16T14:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.992800", - "Timestamp": "2019-10-15T08:42:43.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.962900", + "Timestamp": "2024-05-16T14:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.992800", - "Timestamp": "2019-10-15T08:42:43.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.837900", + "Timestamp": "2024-05-16T14:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.243000", - "Timestamp": "2019-10-15T08:42:27.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.660800", + "Timestamp": "2024-05-16T14:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.243000", - "Timestamp": "2019-10-15T08:42:27.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.655800", + "Timestamp": "2024-05-16T14:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.213000", - "Timestamp": "2019-10-15T08:42:27.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.530800", + "Timestamp": "2024-05-16T14:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.213000", - "Timestamp": "2019-10-15T08:42:27.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.967800", + "Timestamp": "2024-05-16T14:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.113000", - "Timestamp": "2019-10-15T08:42:27.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.962800", + "Timestamp": "2024-05-16T14:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.113000", - "Timestamp": "2019-10-15T08:42:27.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.837800", + "Timestamp": "2024-05-16T14:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.537000", - "Timestamp": "2019-10-15T08:42:06.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.444900", + "Timestamp": "2024-05-16T14:16:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.537000", - "Timestamp": "2019-10-15T08:42:06.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.439900", + "Timestamp": "2024-05-16T14:16:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.988000", - "Timestamp": "2019-10-15T08:42:03.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.314900", + "Timestamp": "2024-05-16T14:16:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.988000", - "Timestamp": "2019-10-15T08:42:03.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.069100", + "Timestamp": "2024-05-16T14:16:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.988000", - "Timestamp": "2019-10-15T08:42:03.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.848200", + "Timestamp": "2024-05-16T14:16:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.260800", - "Timestamp": "2019-10-15T08:41:57.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.734700", + "Timestamp": "2024-05-16T14:16:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.230800", - "Timestamp": "2019-10-15T08:41:57.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.843200", + "Timestamp": "2024-05-16T14:16:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T08:41:57.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.729700", + "Timestamp": "2024-05-16T14:16:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.093300", - "Timestamp": "2019-10-15T08:41:46.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.718200", + "Timestamp": "2024-05-16T14:16:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.133300", - "Timestamp": "2019-10-15T08:41:46.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.604700", + "Timestamp": "2024-05-16T14:16:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.033300", - "Timestamp": "2019-10-15T08:41:46.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079400", + "Timestamp": "2024-05-16T14:16:15.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.537000", - "Timestamp": "2019-10-15T08:41:23.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075700", + "Timestamp": "2024-05-16T14:16:15.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.537000", - "Timestamp": "2019-10-15T08:41:23.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019400", + "Timestamp": "2024-05-16T14:16:15.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.914800", - "Timestamp": "2019-10-15T08:41:00.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078900", + "Timestamp": "2024-05-16T14:16:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.914800", - "Timestamp": "2019-10-15T08:41:00.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081800", + "Timestamp": "2024-05-16T14:16:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.884800", - "Timestamp": "2019-10-15T08:41:00.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118900", + "Timestamp": "2024-05-16T14:16:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.884800", - "Timestamp": "2019-10-15T08:41:00.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121800", + "Timestamp": "2024-05-16T14:16:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.784800", - "Timestamp": "2019-10-15T08:41:00.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.018900", + "Timestamp": "2024-05-16T14:16:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.784800", - "Timestamp": "2019-10-15T08:41:00.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021800", + "Timestamp": "2024-05-16T14:16:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.243000", - "Timestamp": "2019-10-15T08:40:36.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.539000", + "Timestamp": "2024-05-16T14:16:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.243000", - "Timestamp": "2019-10-15T08:40:36.000Z" - }, - { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.213000", - "Timestamp": "2019-10-15T08:40:36.000Z" + "SpotPrice": "0.399800", + "Timestamp": "2024-05-16T14:16:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.213000", - "Timestamp": "2019-10-15T08:40:36.000Z" + "SpotPrice": "0.394800", + "Timestamp": "2024-05-16T14:16:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.113000", - "Timestamp": "2019-10-15T08:40:36.000Z" + "SpotPrice": "0.269800", + "Timestamp": "2024-05-16T14:16:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.113000", - "Timestamp": "2019-10-15T08:40:36.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.471400", + "Timestamp": "2024-05-16T14:16:10.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.174000", - "Timestamp": "2019-10-15T08:40:27.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.466400", + "Timestamp": "2024-05-16T14:16:10.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.174000", - "Timestamp": "2019-10-15T08:40:27.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.341400", + "Timestamp": "2024-05-16T14:16:10.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.174000", - "Timestamp": "2019-10-15T08:40:27.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.635800", + "Timestamp": "2024-05-16T14:16:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.144000", - "Timestamp": "2019-10-15T08:40:27.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "10.352800", + "Timestamp": "2024-05-16T14:16:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r4.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.144000", - "Timestamp": "2019-10-15T08:40:27.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.630800", + "Timestamp": "2024-05-16T14:16:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.144000", - "Timestamp": "2019-10-15T08:40:27.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "10.347800", + "Timestamp": "2024-05-16T14:16:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.044000", - "Timestamp": "2019-10-15T08:40:27.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.505800", + "Timestamp": "2024-05-16T14:16:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.044000", - "Timestamp": "2019-10-15T08:40:27.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "10.222800", + "Timestamp": "2024-05-16T14:16:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.044000", - "Timestamp": "2019-10-15T08:40:27.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.462000", + "Timestamp": "2024-05-16T14:16:00.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.125400", - "Timestamp": "2019-10-15T08:35:56.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.457000", + "Timestamp": "2024-05-16T14:16:00.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.165400", - "Timestamp": "2019-10-15T08:35:56.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.332000", + "Timestamp": "2024-05-16T14:16:00.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.065400", - "Timestamp": "2019-10-15T08:35:56.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.146200", + "Timestamp": "2024-05-16T14:15:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.074000", - "Timestamp": "2019-10-15T08:34:29.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.116200", + "Timestamp": "2024-05-16T14:15:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.074000", - "Timestamp": "2019-10-15T08:34:29.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.016200", + "Timestamp": "2024-05-16T14:15:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.125400", - "Timestamp": "2019-10-15T08:34:27.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214600", + "Timestamp": "2024-05-16T14:15:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.165400", - "Timestamp": "2019-10-15T08:34:27.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.616100", + "Timestamp": "2024-05-16T14:15:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5dn.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.065400", - "Timestamp": "2019-10-15T08:34:27.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.611100", + "Timestamp": "2024-05-16T14:15:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.237000", - "Timestamp": "2019-10-15T08:33:11.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.486100", + "Timestamp": "2024-05-16T14:15:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.237000", - "Timestamp": "2019-10-15T08:33:11.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "10.726300", + "Timestamp": "2024-05-16T14:15:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "8.640000", - "Timestamp": "2019-10-15T08:31:51.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "10.721300", + "Timestamp": "2024-05-16T14:15:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092700", - "Timestamp": "2019-10-15T08:28:25.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "10.596300", + "Timestamp": "2024-05-16T14:15:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-15T08:28:25.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.402700", + "Timestamp": "2024-05-16T14:15:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032700", - "Timestamp": "2019-10-15T08:28:25.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.994000", + "Timestamp": "2024-05-16T14:02:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5dn.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124700", - "Timestamp": "2019-10-15T08:09:33.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.989000", + "Timestamp": "2024-05-16T14:02:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.505000", - "Timestamp": "2019-10-15T08:05:46.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.864000", + "Timestamp": "2024-05-16T14:02:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.040200", - "Timestamp": "2019-10-15T07:41:53.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.954800", + "Timestamp": "2024-05-16T14:02:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.418300", - "Timestamp": "2019-10-15T07:40:55.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207600", + "Timestamp": "2024-05-16T14:02:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.418300", - "Timestamp": "2019-10-15T07:40:55.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.520000", + "Timestamp": "2024-05-16T14:02:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.248300", - "Timestamp": "2019-10-15T07:40:55.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.619300", + "Timestamp": "2024-05-16T14:01:59.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.248300", - "Timestamp": "2019-10-15T07:40:55.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.614300", + "Timestamp": "2024-05-16T14:01:59.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m2.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.218300", - "Timestamp": "2019-10-15T07:40:55.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.489300", + "Timestamp": "2024-05-16T14:01:59.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m2.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.218300", - "Timestamp": "2019-10-15T07:40:55.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.626300", + "Timestamp": "2024-05-16T14:01:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.118300", - "Timestamp": "2019-10-15T07:40:55.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-16T14:01:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.118300", - "Timestamp": "2019-10-15T07:40:55.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145700", + "Timestamp": "2024-05-16T14:01:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.248300", - "Timestamp": "2019-10-15T07:40:55.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045700", + "Timestamp": "2024-05-16T14:01:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.248300", - "Timestamp": "2019-10-15T07:40:55.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m1.large", + "ProductDescription": "Windows", + "SpotPrice": "0.183800", + "Timestamp": "2024-05-16T14:01:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.218300", - "Timestamp": "2019-10-15T07:40:55.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.118000", + "Timestamp": "2024-05-16T14:01:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.218300", - "Timestamp": "2019-10-15T07:40:55.000Z" + "SpotPrice": "0.114300", + "Timestamp": "2024-05-16T14:01:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.118300", - "Timestamp": "2019-10-15T07:40:55.000Z" + "SpotPrice": "0.058000", + "Timestamp": "2024-05-16T14:01:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.118300", - "Timestamp": "2019-10-15T07:40:55.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210800", + "Timestamp": "2024-05-16T14:01:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.418300", - "Timestamp": "2019-10-15T07:40:55.000Z" + "SpotPrice": "2.604000", + "Timestamp": "2024-05-16T14:01:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.418300", - "Timestamp": "2019-10-15T07:40:55.000Z" + "SpotPrice": "2.776800", + "Timestamp": "2024-05-16T14:01:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.952200", - "Timestamp": "2019-10-15T07:39:16.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.408400", + "Timestamp": "2024-05-16T14:01:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.952200", - "Timestamp": "2019-10-15T07:39:16.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.433600", + "Timestamp": "2024-05-16T14:01:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.952200", - "Timestamp": "2019-10-15T07:39:16.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075800", + "Timestamp": "2024-05-16T14:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.922200", - "Timestamp": "2019-10-15T07:39:16.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.072100", + "Timestamp": "2024-05-16T14:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.922200", - "Timestamp": "2019-10-15T07:39:16.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015800", + "Timestamp": "2024-05-16T14:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.922200", - "Timestamp": "2019-10-15T07:39:16.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.457700", + "Timestamp": "2024-05-16T14:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.822200", - "Timestamp": "2019-10-15T07:39:16.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.640000", + "Timestamp": "2024-05-16T14:01:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.822200", - "Timestamp": "2019-10-15T07:39:16.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141000", + "Timestamp": "2024-05-16T14:01:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.822200", - "Timestamp": "2019-10-15T07:39:16.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137300", + "Timestamp": "2024-05-16T14:01:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.015600", - "Timestamp": "2019-10-15T07:38:32.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.081000", + "Timestamp": "2024-05-16T14:01:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.015600", - "Timestamp": "2019-10-15T07:38:32.000Z" + "SpotPrice": "3.384600", + "Timestamp": "2024-05-16T14:01:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.378600", - "Timestamp": "2019-10-15T07:38:18.000Z" + "SpotPrice": "0.111900", + "Timestamp": "2024-05-16T14:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.378600", - "Timestamp": "2019-10-15T07:38:18.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108200", + "Timestamp": "2024-05-16T14:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.348600", - "Timestamp": "2019-10-15T07:38:18.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051900", + "Timestamp": "2024-05-16T14:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.026300", + "Timestamp": "2024-05-16T14:01:29.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.348600", - "Timestamp": "2019-10-15T07:38:18.000Z" + "SpotPrice": "1.021300", + "Timestamp": "2024-05-16T14:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.248600", - "Timestamp": "2019-10-15T07:38:18.000Z" + "SpotPrice": "0.896300", + "Timestamp": "2024-05-16T14:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.248600", - "Timestamp": "2019-10-15T07:38:18.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065100", + "Timestamp": "2024-05-16T14:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.015600", - "Timestamp": "2019-10-15T07:36:42.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.036400", + "Timestamp": "2024-05-16T14:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.015600", - "Timestamp": "2019-10-15T07:36:42.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005100", + "Timestamp": "2024-05-16T14:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094300", - "Timestamp": "2019-10-15T07:35:47.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.951100", + "Timestamp": "2024-05-16T14:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-15T07:35:47.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.946100", + "Timestamp": "2024-05-16T14:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034300", - "Timestamp": "2019-10-15T07:35:47.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.821100", + "Timestamp": "2024-05-16T14:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.249400", - "Timestamp": "2019-10-15T07:32:18.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273800", + "Timestamp": "2024-05-16T14:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.249400", - "Timestamp": "2019-10-15T07:32:18.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.243800", + "Timestamp": "2024-05-16T14:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.267700", - "Timestamp": "2019-10-15T07:25:44.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143800", + "Timestamp": "2024-05-16T14:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.237700", - "Timestamp": "2019-10-15T07:25:44.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.295100", + "Timestamp": "2024-05-16T14:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.137700", - "Timestamp": "2019-10-15T07:25:44.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265100", + "Timestamp": "2024-05-16T14:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5dn.12xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.030200", - "Timestamp": "2019-10-15T07:24:53.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.165100", + "Timestamp": "2024-05-16T14:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.133700", - "Timestamp": "2019-10-15T07:17:03.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.402800", + "Timestamp": "2024-05-16T14:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r4.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.173700", - "Timestamp": "2019-10-15T07:17:03.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.397800", + "Timestamp": "2024-05-16T14:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r4.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.073700", - "Timestamp": "2019-10-15T07:17:03.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.272800", + "Timestamp": "2024-05-16T14:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.391600", - "Timestamp": "2019-10-15T07:10:35.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067000", + "Timestamp": "2024-05-16T14:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.361600", - "Timestamp": "2019-10-15T07:10:35.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038000", + "Timestamp": "2024-05-16T14:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5dn.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.261600", - "Timestamp": "2019-10-15T07:10:35.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.007000", + "Timestamp": "2024-05-16T14:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5dn.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092700", - "Timestamp": "2019-10-15T07:10:16.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.734800", + "Timestamp": "2024-05-16T14:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5dn.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-15T07:10:16.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.729800", + "Timestamp": "2024-05-16T14:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5dn.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032700", - "Timestamp": "2019-10-15T07:10:16.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.604800", + "Timestamp": "2024-05-16T14:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.395900", - "Timestamp": "2019-10-15T07:09:37.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T14:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.365900", - "Timestamp": "2019-10-15T07:09:37.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100000", + "Timestamp": "2024-05-16T14:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.265900", - "Timestamp": "2019-10-15T07:09:37.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044000", + "Timestamp": "2024-05-16T14:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.391600", - "Timestamp": "2019-10-15T07:05:34.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.451500", + "Timestamp": "2024-05-16T14:01:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.361600", - "Timestamp": "2019-10-15T07:05:34.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.446500", + "Timestamp": "2024-05-16T14:01:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.261600", - "Timestamp": "2019-10-15T07:05:34.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.321500", + "Timestamp": "2024-05-16T14:01:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.176400", - "Timestamp": "2019-10-15T07:01:47.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270300", + "Timestamp": "2024-05-16T14:01:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.146400", - "Timestamp": "2019-10-15T07:01:47.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265300", + "Timestamp": "2024-05-16T14:01:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.046400", - "Timestamp": "2019-10-15T07:01:47.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140300", + "Timestamp": "2024-05-16T14:01:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.128500", - "Timestamp": "2019-10-15T06:54:01.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.452600", + "Timestamp": "2024-05-16T14:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.168500", - "Timestamp": "2019-10-15T06:54:01.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.447600", + "Timestamp": "2024-05-16T14:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.068500", - "Timestamp": "2019-10-15T06:54:01.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.322600", + "Timestamp": "2024-05-16T14:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.774400", - "Timestamp": "2019-10-15T06:49:53.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.591800", + "Timestamp": "2024-05-16T14:01:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.744400", - "Timestamp": "2019-10-15T06:49:53.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.586800", + "Timestamp": "2024-05-16T14:01:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5dn.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.644400", - "Timestamp": "2019-10-15T06:49:53.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.461800", + "Timestamp": "2024-05-16T14:01:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.125400", - "Timestamp": "2019-10-15T06:47:31.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.282600", + "Timestamp": "2024-05-16T14:01:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.165400", - "Timestamp": "2019-10-15T06:47:31.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.277600", + "Timestamp": "2024-05-16T14:01:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.065400", - "Timestamp": "2019-10-15T06:47:31.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.152600", + "Timestamp": "2024-05-16T14:01:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.595200", - "Timestamp": "2019-10-15T06:42:35.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112700", + "Timestamp": "2024-05-16T14:01:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.595200", - "Timestamp": "2019-10-15T06:42:35.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109000", + "Timestamp": "2024-05-16T14:01:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.990400", - "Timestamp": "2019-10-15T06:42:23.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052700", + "Timestamp": "2024-05-16T14:01:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.134200", - "Timestamp": "2019-10-15T06:42:16.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.763600", + "Timestamp": "2024-05-16T14:01:17.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.134200", - "Timestamp": "2019-10-15T06:42:16.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.733600", + "Timestamp": "2024-05-16T14:01:17.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.088200", - "Timestamp": "2019-10-15T06:42:07.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.633600", + "Timestamp": "2024-05-16T14:01:17.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.088200", - "Timestamp": "2019-10-15T06:42:07.000Z" + "SpotPrice": "1.130100", + "Timestamp": "2024-05-16T14:01:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.128200", - "Timestamp": "2019-10-15T06:42:07.000Z" + "SpotPrice": "1.125100", + "Timestamp": "2024-05-16T14:01:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.128200", - "Timestamp": "2019-10-15T06:42:07.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.000100", + "Timestamp": "2024-05-16T14:01:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.028200", - "Timestamp": "2019-10-15T06:42:07.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-16T14:01:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100000", + "Timestamp": "2024-05-16T14:01:16.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.028200", - "Timestamp": "2019-10-15T06:42:07.000Z" + "SpotPrice": "0.044000", + "Timestamp": "2024-05-16T14:01:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "4.253200", - "Timestamp": "2019-10-15T06:41:35.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.429000", + "Timestamp": "2024-05-16T14:01:15.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "p2.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "4.223200", - "Timestamp": "2019-10-15T06:41:35.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.399000", + "Timestamp": "2024-05-16T14:01:15.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "4.123200", - "Timestamp": "2019-10-15T06:41:35.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.299000", + "Timestamp": "2024-05-16T14:01:15.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.952200", - "Timestamp": "2019-10-15T06:41:29.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129200", + "Timestamp": "2024-05-16T14:01:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.952200", - "Timestamp": "2019-10-15T06:41:29.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125200", + "Timestamp": "2024-05-16T14:01:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.952200", - "Timestamp": "2019-10-15T06:41:29.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069200", + "Timestamp": "2024-05-16T14:01:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.922200", - "Timestamp": "2019-10-15T06:41:29.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176300", + "Timestamp": "2024-05-16T14:01:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.922200", - "Timestamp": "2019-10-15T06:41:29.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172600", + "Timestamp": "2024-05-16T14:01:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.922200", - "Timestamp": "2019-10-15T06:41:29.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116300", + "Timestamp": "2024-05-16T14:01:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.822200", - "Timestamp": "2019-10-15T06:41:29.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.771900", + "Timestamp": "2024-05-16T14:01:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.822200", - "Timestamp": "2019-10-15T06:41:29.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.766900", + "Timestamp": "2024-05-16T14:01:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.822200", - "Timestamp": "2019-10-15T06:41:29.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.641900", + "Timestamp": "2024-05-16T14:01:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.430000", - "Timestamp": "2019-10-15T06:40:58.000Z" + "SpotPrice": "0.325000", + "Timestamp": "2024-05-16T14:01:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.430000", - "Timestamp": "2019-10-15T06:40:58.000Z" + "SpotPrice": "0.387400", + "Timestamp": "2024-05-16T14:01:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.400000", - "Timestamp": "2019-10-15T06:40:58.000Z" + "SpotPrice": "0.320000", + "Timestamp": "2024-05-16T14:01:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.400000", - "Timestamp": "2019-10-15T06:40:58.000Z" + "SpotPrice": "0.382400", + "Timestamp": "2024-05-16T14:01:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.300000", - "Timestamp": "2019-10-15T06:40:58.000Z" + "SpotPrice": "0.195000", + "Timestamp": "2024-05-16T14:01:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.300000", - "Timestamp": "2019-10-15T06:40:58.000Z" + "SpotPrice": "0.257400", + "Timestamp": "2024-05-16T14:01:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c1.medium", "ProductDescription": "Windows", - "SpotPrice": "0.460000", - "Timestamp": "2019-10-15T06:40:58.000Z" + "SpotPrice": "0.225800", + "Timestamp": "2024-05-16T14:01:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.460000", - "Timestamp": "2019-10-15T06:40:58.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.589700", + "Timestamp": "2024-05-16T14:01:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.430000", - "Timestamp": "2019-10-15T06:40:50.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.559700", + "Timestamp": "2024-05-16T14:01:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.430000", - "Timestamp": "2019-10-15T06:40:50.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.459700", + "Timestamp": "2024-05-16T14:01:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "g2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.400000", - "Timestamp": "2019-10-15T06:40:50.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.944300", + "Timestamp": "2024-05-16T14:01:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "g2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.400000", - "Timestamp": "2019-10-15T06:40:50.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.939300", + "Timestamp": "2024-05-16T14:01:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.300000", - "Timestamp": "2019-10-15T06:40:50.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.814300", + "Timestamp": "2024-05-16T14:01:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.300000", - "Timestamp": "2019-10-15T06:40:50.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.492300", + "Timestamp": "2024-05-16T14:01:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.460000", - "Timestamp": "2019-10-15T06:40:19.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.462300", + "Timestamp": "2024-05-16T14:01:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.460000", - "Timestamp": "2019-10-15T06:40:19.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.362300", + "Timestamp": "2024-05-16T14:01:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.134200", - "Timestamp": "2019-10-15T06:39:50.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.557300", + "Timestamp": "2024-05-16T14:01:05.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.134200", - "Timestamp": "2019-10-15T06:39:50.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.527300", + "Timestamp": "2024-05-16T14:01:05.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.088200", - "Timestamp": "2019-10-15T06:38:16.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.427300", + "Timestamp": "2024-05-16T14:01:05.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.088200", - "Timestamp": "2019-10-15T06:38:16.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.377000", + "Timestamp": "2024-05-16T14:01:04.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.128200", - "Timestamp": "2019-10-15T06:38:16.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372000", + "Timestamp": "2024-05-16T14:01:04.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.128200", - "Timestamp": "2019-10-15T06:38:16.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.247000", + "Timestamp": "2024-05-16T14:01:04.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.028200", - "Timestamp": "2019-10-15T06:38:16.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.538100", + "Timestamp": "2024-05-16T14:01:04.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.028200", - "Timestamp": "2019-10-15T06:38:16.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.295700", + "Timestamp": "2024-05-16T14:01:02.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t2.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.009000", - "Timestamp": "2019-10-15T06:37:27.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.290700", + "Timestamp": "2024-05-16T14:01:02.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t2.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.009000", - "Timestamp": "2019-10-15T06:37:27.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.165700", + "Timestamp": "2024-05-16T14:01:02.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t2.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.009000", - "Timestamp": "2019-10-15T06:37:27.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.674400", + "Timestamp": "2024-05-16T14:01:02.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.990400", - "Timestamp": "2019-10-15T06:36:56.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143600", + "Timestamp": "2024-05-16T14:01:02.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t2.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.064400", - "Timestamp": "2019-10-15T06:36:41.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139600", + "Timestamp": "2024-05-16T14:01:02.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t2.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.064400", - "Timestamp": "2019-10-15T06:36:41.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083600", + "Timestamp": "2024-05-16T14:01:02.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t2.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.064400", - "Timestamp": "2019-10-15T06:36:41.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.755200", + "Timestamp": "2024-05-16T14:00:59.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t2.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.014400", - "Timestamp": "2019-10-15T06:36:41.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.420900", + "Timestamp": "2024-05-16T14:00:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t2.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.014400", - "Timestamp": "2019-10-15T06:36:41.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.131300", + "Timestamp": "2024-05-16T14:00:55.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t2.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.014400", - "Timestamp": "2019-10-15T06:36:41.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127300", + "Timestamp": "2024-05-16T14:00:55.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t2.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.004400", - "Timestamp": "2019-10-15T06:36:41.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.071300", + "Timestamp": "2024-05-16T14:00:55.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t2.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.004400", - "Timestamp": "2019-10-15T06:36:41.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071200", + "Timestamp": "2024-05-16T14:00:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t2.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.004400", - "Timestamp": "2019-10-15T06:36:41.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042200", + "Timestamp": "2024-05-16T14:00:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.990400", - "Timestamp": "2019-10-15T06:22:30.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3a.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011200", + "Timestamp": "2024-05-16T14:00:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.326700", - "Timestamp": "2019-10-15T06:21:31.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.713700", + "Timestamp": "2024-05-16T13:55:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.845300", - "Timestamp": "2019-10-15T06:11:31.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.708700", + "Timestamp": "2024-05-16T13:55:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.845300", - "Timestamp": "2019-10-15T06:11:31.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.583700", + "Timestamp": "2024-05-16T13:55:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.845300", - "Timestamp": "2019-10-15T06:11:31.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.501800", + "Timestamp": "2024-05-16T13:48:56.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.031300", - "Timestamp": "2019-10-15T06:11:29.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092200", + "Timestamp": "2024-05-16T13:48:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.031300", - "Timestamp": "2019-10-15T06:11:29.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088500", + "Timestamp": "2024-05-16T13:48:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "3.031300", - "Timestamp": "2019-10-15T06:11:29.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032200", + "Timestamp": "2024-05-16T13:48:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.001300", - "Timestamp": "2019-10-15T06:11:29.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.520000", + "Timestamp": "2024-05-16T13:47:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "x1.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.001300", - "Timestamp": "2019-10-15T06:11:29.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.710100", + "Timestamp": "2024-05-16T13:47:02.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "3.001300", - "Timestamp": "2019-10-15T06:11:29.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220000", + "Timestamp": "2024-05-16T13:46:59.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.901300", - "Timestamp": "2019-10-15T06:11:29.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.534200", + "Timestamp": "2024-05-16T13:46:55.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.901300", - "Timestamp": "2019-10-15T06:11:29.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.504200", + "Timestamp": "2024-05-16T13:46:55.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.901300", - "Timestamp": "2019-10-15T06:11:29.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.404200", + "Timestamp": "2024-05-16T13:46:55.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "2.674000", - "Timestamp": "2019-10-15T06:05:30.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "11.232900", + "Timestamp": "2024-05-16T13:46:54.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "2.644000", - "Timestamp": "2019-10-15T06:05:30.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "11.202900", + "Timestamp": "2024-05-16T13:46:54.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "2.544000", - "Timestamp": "2019-10-15T06:05:30.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "11.102900", + "Timestamp": "2024-05-16T13:46:54.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.122300", - "Timestamp": "2019-10-15T06:03:52.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.151400", + "Timestamp": "2024-05-16T13:46:50.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.122300", - "Timestamp": "2019-10-15T06:03:52.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.049600", + "Timestamp": "2024-05-16T13:46:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.162300", - "Timestamp": "2019-10-15T06:03:52.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.242800", + "Timestamp": "2024-05-16T13:46:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.162300", - "Timestamp": "2019-10-15T06:03:52.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.793900", + "Timestamp": "2024-05-16T13:46:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.062300", - "Timestamp": "2019-10-15T06:03:52.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.888800", + "Timestamp": "2024-05-16T13:46:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.062300", - "Timestamp": "2019-10-15T06:03:52.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.883800", + "Timestamp": "2024-05-16T13:46:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.246300", - "Timestamp": "2019-10-15T06:03:45.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.758800", + "Timestamp": "2024-05-16T13:46:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.246300", - "Timestamp": "2019-10-15T06:03:45.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.776800", + "Timestamp": "2024-05-16T13:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.246300", - "Timestamp": "2019-10-15T06:03:45.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.433600", + "Timestamp": "2024-05-16T13:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.492600", - "Timestamp": "2019-10-15T06:02:53.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.252800", + "Timestamp": "2024-05-16T13:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.492600", - "Timestamp": "2019-10-15T06:02:53.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.719400", + "Timestamp": "2024-05-16T13:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.505000", - "Timestamp": "2019-10-15T05:43:30.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.714400", + "Timestamp": "2024-05-16T13:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.127700", - "Timestamp": "2019-10-15T05:43:23.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.589400", + "Timestamp": "2024-05-16T13:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.167700", - "Timestamp": "2019-10-15T05:43:23.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.307200", + "Timestamp": "2024-05-16T13:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.067700", - "Timestamp": "2019-10-15T05:43:23.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.303200", + "Timestamp": "2024-05-16T13:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.462400", - "Timestamp": "2019-10-15T05:42:44.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.247200", + "Timestamp": "2024-05-16T13:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.462400", - "Timestamp": "2019-10-15T05:42:44.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.342200", + "Timestamp": "2024-05-16T13:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.462400", - "Timestamp": "2019-10-15T05:42:44.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.337200", + "Timestamp": "2024-05-16T13:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.071700", - "Timestamp": "2019-10-15T05:42:05.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212200", + "Timestamp": "2024-05-16T13:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.071700", - "Timestamp": "2019-10-15T05:42:05.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.528400", + "Timestamp": "2024-05-16T13:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.111700", - "Timestamp": "2019-10-15T05:42:05.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.498400", + "Timestamp": "2024-05-16T13:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.111700", - "Timestamp": "2019-10-15T05:42:05.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.398400", + "Timestamp": "2024-05-16T13:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.011700", - "Timestamp": "2019-10-15T05:42:05.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423100", + "Timestamp": "2024-05-16T13:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.011700", - "Timestamp": "2019-10-15T05:42:05.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.312700", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.307700", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.182700", + "Timestamp": "2024-05-16T13:46:33.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.256100", + "Timestamp": "2024-05-16T13:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.536800", - "Timestamp": "2019-10-15T05:41:42.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.252400", + "Timestamp": "2024-05-16T13:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.536800", - "Timestamp": "2019-10-15T05:41:42.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.196100", + "Timestamp": "2024-05-16T13:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.536800", - "Timestamp": "2019-10-15T05:41:42.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.011800", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.506800", - "Timestamp": "2019-10-15T05:41:42.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.156100", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.506800", - "Timestamp": "2019-10-15T05:41:42.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.151100", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.506800", - "Timestamp": "2019-10-15T05:41:42.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.026100", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.406800", - "Timestamp": "2019-10-15T05:41:42.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m1.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075500", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.406800", - "Timestamp": "2019-10-15T05:41:42.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m1.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.045500", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.406800", - "Timestamp": "2019-10-15T05:41:42.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m1.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015500", + "Timestamp": "2024-05-16T13:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092700", - "Timestamp": "2019-10-15T05:41:18.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.287300", + "Timestamp": "2024-05-16T13:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092700", - "Timestamp": "2019-10-15T05:41:18.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.282300", + "Timestamp": "2024-05-16T13:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092700", - "Timestamp": "2019-10-15T05:41:18.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.157300", + "Timestamp": "2024-05-16T13:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-15T05:41:18.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.684700", + "Timestamp": "2024-05-16T13:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-15T05:41:18.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.368400", + "Timestamp": "2024-05-16T13:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-15T05:41:18.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.363400", + "Timestamp": "2024-05-16T13:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032700", - "Timestamp": "2019-10-15T05:41:18.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.238400", + "Timestamp": "2024-05-16T13:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032700", - "Timestamp": "2019-10-15T05:41:18.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.418500", + "Timestamp": "2024-05-16T13:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032700", - "Timestamp": "2019-10-15T05:41:18.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.413500", + "Timestamp": "2024-05-16T13:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124700", - "Timestamp": "2019-10-15T05:41:13.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.288500", + "Timestamp": "2024-05-16T13:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", + "AvailabilityZone": "sa-east-1b", "InstanceType": "m5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124700", - "Timestamp": "2019-10-15T05:41:13.000Z" + "ProductDescription": "Windows", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T13:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124700", - "Timestamp": "2019-10-15T05:41:13.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.548800", + "Timestamp": "2024-05-16T13:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.081700", - "Timestamp": "2019-10-15T05:41:01.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-16T13:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.081700", - "Timestamp": "2019-10-15T05:41:01.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136500", + "Timestamp": "2024-05-16T13:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.071700", - "Timestamp": "2019-10-15T05:41:01.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036500", + "Timestamp": "2024-05-16T13:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.medium", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.071700", - "Timestamp": "2019-10-15T05:41:01.000Z" + "SpotPrice": "0.197300", + "Timestamp": "2024-05-16T13:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.medium", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.111700", - "Timestamp": "2019-10-15T05:41:01.000Z" + "SpotPrice": "0.193300", + "Timestamp": "2024-05-16T13:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.medium", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137300", + "Timestamp": "2024-05-16T13:46:28.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.447700", + "Timestamp": "2024-05-16T13:46:27.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.111700", - "Timestamp": "2019-10-15T05:41:01.000Z" + "SpotPrice": "0.442700", + "Timestamp": "2024-05-16T13:46:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.medium", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.011700", - "Timestamp": "2019-10-15T05:41:01.000Z" + "SpotPrice": "0.317700", + "Timestamp": "2024-05-16T13:46:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.011700", - "Timestamp": "2019-10-15T05:41:01.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.388900", + "Timestamp": "2024-05-16T13:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.081700", - "Timestamp": "2019-10-15T05:41:00.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.383900", + "Timestamp": "2024-05-16T13:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.081700", - "Timestamp": "2019-10-15T05:41:00.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.258900", + "Timestamp": "2024-05-16T13:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.958800", - "Timestamp": "2019-10-15T05:40:48.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.487500", + "Timestamp": "2024-05-16T13:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.958800", - "Timestamp": "2019-10-15T05:40:48.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.457500", + "Timestamp": "2024-05-16T13:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.958800", - "Timestamp": "2019-10-15T05:40:48.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.357500", + "Timestamp": "2024-05-16T13:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.176400", - "Timestamp": "2019-10-15T05:40:21.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.864500", + "Timestamp": "2024-05-16T13:46:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.176400", - "Timestamp": "2019-10-15T05:40:21.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.692600", + "Timestamp": "2024-05-16T13:46:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.176400", - "Timestamp": "2019-10-15T05:40:21.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.687600", + "Timestamp": "2024-05-16T13:46:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.146400", - "Timestamp": "2019-10-15T05:40:21.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.562600", + "Timestamp": "2024-05-16T13:46:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.146400", - "Timestamp": "2019-10-15T05:40:21.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360900", + "Timestamp": "2024-05-16T13:46:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.146400", - "Timestamp": "2019-10-15T05:40:21.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.355900", + "Timestamp": "2024-05-16T13:46:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.046400", - "Timestamp": "2019-10-15T05:40:21.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230900", + "Timestamp": "2024-05-16T13:46:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.046400", - "Timestamp": "2019-10-15T05:40:21.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.240700", + "Timestamp": "2024-05-16T13:46:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.046400", - "Timestamp": "2019-10-15T05:40:21.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.235700", + "Timestamp": "2024-05-16T13:46:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124600", - "Timestamp": "2019-10-15T05:38:02.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T13:46:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124600", - "Timestamp": "2019-10-15T05:38:02.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.335100", + "Timestamp": "2024-05-16T13:46:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r4.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124600", - "Timestamp": "2019-10-15T05:38:02.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.330100", + "Timestamp": "2024-05-16T13:46:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092600", - "Timestamp": "2019-10-15T05:33:38.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.205100", + "Timestamp": "2024-05-16T13:46:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092600", - "Timestamp": "2019-10-15T05:33:38.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116300", + "Timestamp": "2024-05-16T13:46:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092600", - "Timestamp": "2019-10-15T05:33:38.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-16T13:46:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132600", - "Timestamp": "2019-10-15T05:33:38.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056300", + "Timestamp": "2024-05-16T13:46:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132600", - "Timestamp": "2019-10-15T05:33:38.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.352600", + "Timestamp": "2024-05-16T13:46:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132600", - "Timestamp": "2019-10-15T05:33:38.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.347600", + "Timestamp": "2024-05-16T13:46:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032600", - "Timestamp": "2019-10-15T05:33:38.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.222600", + "Timestamp": "2024-05-16T13:46:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032600", - "Timestamp": "2019-10-15T05:33:38.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076800", + "Timestamp": "2024-05-16T13:46:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032600", - "Timestamp": "2019-10-15T05:33:38.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073100", + "Timestamp": "2024-05-16T13:46:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.195600", - "Timestamp": "2019-10-15T05:31:08.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016800", + "Timestamp": "2024-05-16T13:46:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.195600", - "Timestamp": "2019-10-15T05:31:08.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.183800", + "Timestamp": "2024-05-16T13:46:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.195600", - "Timestamp": "2019-10-15T05:31:08.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.180100", + "Timestamp": "2024-05-16T13:46:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "z1d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.235600", - "Timestamp": "2019-10-15T05:31:08.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123800", + "Timestamp": "2024-05-16T13:46:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.235600", - "Timestamp": "2019-10-15T05:31:08.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.116000", + "Timestamp": "2024-05-16T13:46:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "z1d.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.235600", - "Timestamp": "2019-10-15T05:31:08.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-16T13:46:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T05:31:08.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056000", + "Timestamp": "2024-05-16T13:46:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T05:31:08.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.171800", + "Timestamp": "2024-05-16T13:46:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T05:31:08.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.168100", + "Timestamp": "2024-05-16T13:46:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.990400", - "Timestamp": "2019-10-15T05:29:54.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111800", + "Timestamp": "2024-05-16T13:46:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.249400", - "Timestamp": "2019-10-15T05:24:14.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.089900", + "Timestamp": "2024-05-16T13:46:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-15T05:23:32.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.059900", + "Timestamp": "2024-05-16T13:46:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.237000", - "Timestamp": "2019-10-15T05:23:32.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.959900", + "Timestamp": "2024-05-16T13:46:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5dn.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.137000", - "Timestamp": "2019-10-15T05:23:32.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.517200", + "Timestamp": "2024-05-16T13:46:03.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.653200", - "Timestamp": "2019-10-15T05:15:57.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135600", + "Timestamp": "2024-05-16T13:45:55.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.623200", - "Timestamp": "2019-10-15T05:15:57.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131600", + "Timestamp": "2024-05-16T13:45:55.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.523200", - "Timestamp": "2019-10-15T05:15:57.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075600", + "Timestamp": "2024-05-16T13:45:55.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.995200", - "Timestamp": "2019-10-15T05:14:34.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.918400", + "Timestamp": "2024-05-16T13:44:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.505000", - "Timestamp": "2019-10-15T05:13:20.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.232400", + "Timestamp": "2024-05-16T13:31:50.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.914800", - "Timestamp": "2019-10-15T05:05:00.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.228400", + "Timestamp": "2024-05-16T13:31:50.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.884800", - "Timestamp": "2019-10-15T05:05:00.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172400", + "Timestamp": "2024-05-16T13:31:50.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5dn.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.784800", - "Timestamp": "2019-10-15T05:05:00.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.846000", + "Timestamp": "2024-05-16T13:31:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.125400", - "Timestamp": "2019-10-15T05:03:06.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T13:31:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.165400", - "Timestamp": "2019-10-15T05:03:06.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102600", + "Timestamp": "2024-05-16T13:31:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.065400", - "Timestamp": "2019-10-15T05:03:06.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046300", + "Timestamp": "2024-05-16T13:31:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.997600", - "Timestamp": "2019-10-15T04:59:33.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.209500", + "Timestamp": "2024-05-16T13:31:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5dn.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.498800", - "Timestamp": "2019-10-15T04:56:56.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.204500", + "Timestamp": "2024-05-16T13:31:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5dn.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092700", - "Timestamp": "2019-10-15T04:47:40.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.079500", + "Timestamp": "2024-05-16T13:31:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5dn.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-15T04:47:40.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083400", + "Timestamp": "2024-05-16T13:31:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5dn.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032700", - "Timestamp": "2019-10-15T04:47:40.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123400", + "Timestamp": "2024-05-16T13:31:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.319600", - "Timestamp": "2019-10-15T04:41:54.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023400", + "Timestamp": "2024-05-16T13:31:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.319600", - "Timestamp": "2019-10-15T04:41:54.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.859700", + "Timestamp": "2024-05-16T13:31:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.995200", - "Timestamp": "2019-10-15T04:41:48.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.521200", + "Timestamp": "2024-05-16T13:31:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.995200", - "Timestamp": "2019-10-15T04:41:48.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.516200", + "Timestamp": "2024-05-16T13:31:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.012700", - "Timestamp": "2019-10-15T04:41:02.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.391200", + "Timestamp": "2024-05-16T13:31:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.012700", - "Timestamp": "2019-10-15T04:41:02.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.728600", + "Timestamp": "2024-05-16T13:31:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.012700", - "Timestamp": "2019-10-15T04:41:02.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.723600", + "Timestamp": "2024-05-16T13:31:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.699600", - "Timestamp": "2019-10-15T04:40:59.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.598600", + "Timestamp": "2024-05-16T13:31:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.699600", - "Timestamp": "2019-10-15T04:40:59.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.012000", + "Timestamp": "2024-05-16T13:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.699600", - "Timestamp": "2019-10-15T04:40:59.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.007000", + "Timestamp": "2024-05-16T13:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.669600", - "Timestamp": "2019-10-15T04:40:59.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.882000", + "Timestamp": "2024-05-16T13:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.669600", - "Timestamp": "2019-10-15T04:40:59.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.828900", + "Timestamp": "2024-05-16T13:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.669600", - "Timestamp": "2019-10-15T04:40:59.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.798900", + "Timestamp": "2024-05-16T13:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.569600", - "Timestamp": "2019-10-15T04:40:59.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.698900", + "Timestamp": "2024-05-16T13:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.569600", - "Timestamp": "2019-10-15T04:40:59.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T13:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.569600", - "Timestamp": "2019-10-15T04:40:59.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130300", + "Timestamp": "2024-05-16T13:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.995200", - "Timestamp": "2019-10-15T04:40:49.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074300", + "Timestamp": "2024-05-16T13:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.995200", - "Timestamp": "2019-10-15T04:40:49.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431700", + "Timestamp": "2024-05-16T13:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.995200", - "Timestamp": "2019-10-15T04:40:49.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.704500", + "Timestamp": "2024-05-16T13:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.653200", - "Timestamp": "2019-10-15T04:40:08.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.674500", + "Timestamp": "2024-05-16T13:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.653200", - "Timestamp": "2019-10-15T04:40:08.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.574500", + "Timestamp": "2024-05-16T13:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.623200", - "Timestamp": "2019-10-15T04:40:08.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.065100", + "Timestamp": "2024-05-16T13:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.623200", - "Timestamp": "2019-10-15T04:40:08.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.060100", + "Timestamp": "2024-05-16T13:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.523200", - "Timestamp": "2019-10-15T04:40:08.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.935100", + "Timestamp": "2024-05-16T13:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.523200", - "Timestamp": "2019-10-15T04:40:08.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.686800", + "Timestamp": "2024-05-16T13:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.985600", - "Timestamp": "2019-10-15T04:39:56.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.681800", + "Timestamp": "2024-05-16T13:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.985600", - "Timestamp": "2019-10-15T04:39:56.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.556800", + "Timestamp": "2024-05-16T13:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.985600", - "Timestamp": "2019-10-15T04:39:56.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.643200", + "Timestamp": "2024-05-16T13:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.653200", - "Timestamp": "2019-10-15T04:39:15.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.638200", + "Timestamp": "2024-05-16T13:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.653200", - "Timestamp": "2019-10-15T04:39:15.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.513200", + "Timestamp": "2024-05-16T13:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.653200", - "Timestamp": "2019-10-15T04:39:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.796300", + "Timestamp": "2024-05-16T13:31:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.623200", - "Timestamp": "2019-10-15T04:39:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.791300", + "Timestamp": "2024-05-16T13:31:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.623200", - "Timestamp": "2019-10-15T04:39:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.666300", + "Timestamp": "2024-05-16T13:31:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.623200", - "Timestamp": "2019-10-15T04:39:15.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.306900", + "Timestamp": "2024-05-16T13:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.523200", - "Timestamp": "2019-10-15T04:39:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.528700", + "Timestamp": "2024-05-16T13:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.523200", - "Timestamp": "2019-10-15T04:39:15.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.301900", + "Timestamp": "2024-05-16T13:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.523200", - "Timestamp": "2019-10-15T04:39:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.523700", + "Timestamp": "2024-05-16T13:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.063500", - "Timestamp": "2019-10-15T04:38:29.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.176900", + "Timestamp": "2024-05-16T13:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.micro", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.063500", - "Timestamp": "2019-10-15T04:38:29.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.398700", + "Timestamp": "2024-05-16T13:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.103500", - "Timestamp": "2019-10-15T04:38:29.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.989800", + "Timestamp": "2024-05-16T13:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.micro", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.103500", - "Timestamp": "2019-10-15T04:38:29.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.984800", + "Timestamp": "2024-05-16T13:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.003500", - "Timestamp": "2019-10-15T04:38:29.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.859800", + "Timestamp": "2024-05-16T13:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.003500", - "Timestamp": "2019-10-15T04:38:29.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429300", + "Timestamp": "2024-05-16T13:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.105600", - "Timestamp": "2019-10-15T04:37:43.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.953700", + "Timestamp": "2024-05-16T13:31:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.105600", - "Timestamp": "2019-10-15T04:37:43.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.923700", + "Timestamp": "2024-05-16T13:31:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.105600", - "Timestamp": "2019-10-15T04:37:43.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.823700", + "Timestamp": "2024-05-16T13:31:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.075600", - "Timestamp": "2019-10-15T04:37:43.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.758300", + "Timestamp": "2024-05-16T13:31:14.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.075600", - "Timestamp": "2019-10-15T04:37:43.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.753300", + "Timestamp": "2024-05-16T13:31:14.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.075600", - "Timestamp": "2019-10-15T04:37:43.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.628300", + "Timestamp": "2024-05-16T13:31:14.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.975600", - "Timestamp": "2019-10-15T04:37:43.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.154400", + "Timestamp": "2024-05-16T13:31:14.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.975600", - "Timestamp": "2019-10-15T04:37:43.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150700", + "Timestamp": "2024-05-16T13:31:14.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.975600", - "Timestamp": "2019-10-15T04:37:43.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094400", + "Timestamp": "2024-05-16T13:31:14.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.039800", - "Timestamp": "2019-10-15T04:20:09.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.123700", + "Timestamp": "2024-05-16T13:31:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.039800", - "Timestamp": "2019-10-15T04:20:09.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.118700", + "Timestamp": "2024-05-16T13:31:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.039800", - "Timestamp": "2019-10-15T04:20:09.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.993700", + "Timestamp": "2024-05-16T13:31:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.498800", - "Timestamp": "2019-10-15T04:18:32.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.167900", + "Timestamp": "2024-05-16T13:31:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.995200", - "Timestamp": "2019-10-15T04:16:34.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.162900", + "Timestamp": "2024-05-16T13:31:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.985600", - "Timestamp": "2019-10-15T04:09:31.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.037900", + "Timestamp": "2024-05-16T13:31:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.089700", - "Timestamp": "2019-10-15T04:02:37.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.005700", + "Timestamp": "2024-05-16T13:31:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.129700", - "Timestamp": "2019-10-15T04:02:37.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.308600", + "Timestamp": "2024-05-16T13:31:10.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.029700", - "Timestamp": "2019-10-15T04:02:37.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.278600", + "Timestamp": "2024-05-16T13:31:10.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.766000", - "Timestamp": "2019-10-15T03:56:23.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.178600", + "Timestamp": "2024-05-16T13:31:10.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.766000", - "Timestamp": "2019-10-15T03:56:23.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.392900", + "Timestamp": "2024-05-16T13:31:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.766000", - "Timestamp": "2019-10-15T03:56:23.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.362900", + "Timestamp": "2024-05-16T13:31:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.318000", - "Timestamp": "2019-10-15T03:55:03.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.262900", + "Timestamp": "2024-05-16T13:31:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.358000", - "Timestamp": "2019-10-15T03:55:03.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.423000", + "Timestamp": "2024-05-16T13:31:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.258000", - "Timestamp": "2019-10-15T03:55:03.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.418000", + "Timestamp": "2024-05-16T13:31:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.040200", - "Timestamp": "2019-10-15T03:55:01.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.293000", + "Timestamp": "2024-05-16T13:31:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c4.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.089900", - "Timestamp": "2019-10-15T03:48:47.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.257300", + "Timestamp": "2024-05-16T13:31:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c4.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.129900", - "Timestamp": "2019-10-15T03:48:47.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.252300", + "Timestamp": "2024-05-16T13:31:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c4.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.029900", - "Timestamp": "2019-10-15T03:48:47.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.127300", + "Timestamp": "2024-05-16T13:31:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.254600", - "Timestamp": "2019-10-15T03:45:51.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.812600", + "Timestamp": "2024-05-16T13:31:02.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.224600", - "Timestamp": "2019-10-15T03:45:51.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.136900", + "Timestamp": "2024-05-16T13:30:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.124600", - "Timestamp": "2019-10-15T03:45:51.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.176900", + "Timestamp": "2024-05-16T13:30:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.422700", - "Timestamp": "2019-10-15T03:41:53.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.076900", + "Timestamp": "2024-05-16T13:30:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.422700", - "Timestamp": "2019-10-15T03:41:53.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.224200", + "Timestamp": "2024-05-16T13:18:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "x1e.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.462700", - "Timestamp": "2019-10-15T03:41:53.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T13:18:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "x1e.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.462700", - "Timestamp": "2019-10-15T03:41:53.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T13:18:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.362700", - "Timestamp": "2019-10-15T03:41:53.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.821300", + "Timestamp": "2024-05-16T13:17:49.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.362700", - "Timestamp": "2019-10-15T03:41:53.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.783600", + "Timestamp": "2024-05-16T13:17:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.104600", - "Timestamp": "2019-10-15T03:41:40.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.205300", + "Timestamp": "2024-05-16T13:17:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.104600", - "Timestamp": "2019-10-15T03:41:40.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061400", + "Timestamp": "2024-05-16T13:17:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.104600", - "Timestamp": "2019-10-15T03:41:39.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001400", + "Timestamp": "2024-05-16T13:17:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.104600", - "Timestamp": "2019-10-15T03:41:39.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001400", + "Timestamp": "2024-05-16T13:17:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.089600", - "Timestamp": "2019-10-15T03:41:39.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066500", + "Timestamp": "2024-05-16T13:17:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.089600", - "Timestamp": "2019-10-15T03:41:39.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.062800", + "Timestamp": "2024-05-16T13:17:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.129600", - "Timestamp": "2019-10-15T03:41:39.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006500", + "Timestamp": "2024-05-16T13:17:26.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.129600", - "Timestamp": "2019-10-15T03:41:39.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.039700", + "Timestamp": "2024-05-16T13:17:17.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.473300", + "Timestamp": "2024-05-16T13:17:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.029600", - "Timestamp": "2019-10-15T03:41:39.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.290100", + "Timestamp": "2024-05-16T13:17:01.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.029600", - "Timestamp": "2019-10-15T03:41:39.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.285100", + "Timestamp": "2024-05-16T13:17:01.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089600", - "Timestamp": "2019-10-15T03:41:39.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.160100", + "Timestamp": "2024-05-16T13:17:01.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m2.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089600", - "Timestamp": "2019-10-15T03:41:39.000Z" + "SpotPrice": "0.580600", + "Timestamp": "2024-05-16T13:17:00.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m2.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.129600", - "Timestamp": "2019-10-15T03:41:39.000Z" + "SpotPrice": "0.575600", + "Timestamp": "2024-05-16T13:17:00.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.129600", - "Timestamp": "2019-10-15T03:41:39.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.450600", + "Timestamp": "2024-05-16T13:17:00.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029600", - "Timestamp": "2019-10-15T03:41:39.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.322900", + "Timestamp": "2024-05-16T13:16:49.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029600", - "Timestamp": "2019-10-15T03:41:39.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.317900", + "Timestamp": "2024-05-16T13:16:49.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.546700", - "Timestamp": "2019-10-15T03:41:35.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.192900", + "Timestamp": "2024-05-16T13:16:49.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.546700", - "Timestamp": "2019-10-15T03:41:35.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.159300", + "Timestamp": "2024-05-16T13:16:45.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.123100", - "Timestamp": "2019-10-15T03:40:19.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.199300", + "Timestamp": "2024-05-16T13:16:45.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.123100", - "Timestamp": "2019-10-15T03:40:19.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099300", + "Timestamp": "2024-05-16T13:16:45.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.125400", - "Timestamp": "2019-10-15T03:34:26.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.155300", + "Timestamp": "2024-05-16T13:16:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.165400", - "Timestamp": "2019-10-15T03:34:26.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151600", + "Timestamp": "2024-05-16T13:16:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.065400", - "Timestamp": "2019-10-15T03:34:26.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095300", + "Timestamp": "2024-05-16T13:16:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.010100", - "Timestamp": "2019-10-15T03:33:39.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.676900", + "Timestamp": "2024-05-16T13:16:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.010100", - "Timestamp": "2019-10-15T03:33:39.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.671900", + "Timestamp": "2024-05-16T13:16:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.010100", - "Timestamp": "2019-10-15T03:33:39.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.546900", + "Timestamp": "2024-05-16T13:16:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.912500", - "Timestamp": "2019-10-15T03:00:45.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "16.181300", + "Timestamp": "2024-05-16T13:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.912500", - "Timestamp": "2019-10-15T03:00:45.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.472500", + "Timestamp": "2024-05-16T13:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "7.138000", - "Timestamp": "2019-10-15T02:53:50.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.467500", + "Timestamp": "2024-05-16T13:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "7.108000", - "Timestamp": "2019-10-15T02:53:50.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.342500", + "Timestamp": "2024-05-16T13:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "7.008000", - "Timestamp": "2019-10-15T02:53:50.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.947400", + "Timestamp": "2024-05-16T13:16:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.990400", - "Timestamp": "2019-10-15T02:42:54.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.942400", + "Timestamp": "2024-05-16T13:16:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.083300", - "Timestamp": "2019-10-15T02:42:34.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.817400", + "Timestamp": "2024-05-16T13:16:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.083300", - "Timestamp": "2019-10-15T02:42:34.000Z" + "SpotPrice": "0.427500", + "Timestamp": "2024-05-16T13:16:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.123300", - "Timestamp": "2019-10-15T02:42:34.000Z" + "SpotPrice": "0.422500", + "Timestamp": "2024-05-16T13:16:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.123300", - "Timestamp": "2019-10-15T02:42:34.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.297500", + "Timestamp": "2024-05-16T13:16:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.023300", - "Timestamp": "2019-10-15T02:42:34.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.034600", + "Timestamp": "2024-05-16T13:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.023300", - "Timestamp": "2019-10-15T02:42:34.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.029600", + "Timestamp": "2024-05-16T13:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.552800", - "Timestamp": "2019-10-15T02:41:54.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.904600", + "Timestamp": "2024-05-16T13:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.552800", - "Timestamp": "2019-10-15T02:41:54.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.440800", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5dn.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.985600", - "Timestamp": "2019-10-15T02:41:54.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.435800", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.512200", - "Timestamp": "2019-10-15T02:41:19.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.310800", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.512200", - "Timestamp": "2019-10-15T02:41:19.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.218100", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.512200", - "Timestamp": "2019-10-15T02:41:19.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.213100", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "5.210800", - "Timestamp": "2019-10-15T02:40:54.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.088100", + "Timestamp": "2024-05-16T13:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "p3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "5.180800", - "Timestamp": "2019-10-15T02:40:54.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.677400", + "Timestamp": "2024-05-16T13:16:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "5.080800", - "Timestamp": "2019-10-15T02:40:54.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.672400", + "Timestamp": "2024-05-16T13:16:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.455200", - "Timestamp": "2019-10-15T02:40:44.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.547400", + "Timestamp": "2024-05-16T13:16:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.455200", - "Timestamp": "2019-10-15T02:40:44.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.894700", + "Timestamp": "2024-05-16T13:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.455200", - "Timestamp": "2019-10-15T02:40:44.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.889700", + "Timestamp": "2024-05-16T13:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.425200", - "Timestamp": "2019-10-15T02:40:44.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.764700", + "Timestamp": "2024-05-16T13:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.425200", - "Timestamp": "2019-10-15T02:40:44.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.435700", + "Timestamp": "2024-05-16T13:16:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.425200", - "Timestamp": "2019-10-15T02:40:44.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.430700", + "Timestamp": "2024-05-16T13:16:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.325200", - "Timestamp": "2019-10-15T02:40:44.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.305700", + "Timestamp": "2024-05-16T13:16:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.325200", - "Timestamp": "2019-10-15T02:40:44.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156900", + "Timestamp": "2024-05-16T13:16:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.325200", - "Timestamp": "2019-10-15T02:40:44.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152900", + "Timestamp": "2024-05-16T13:16:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.226200", - "Timestamp": "2019-10-15T02:39:57.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096900", + "Timestamp": "2024-05-16T13:16:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.226200", - "Timestamp": "2019-10-15T02:39:57.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.325000", + "Timestamp": "2024-05-16T13:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.226200", - "Timestamp": "2019-10-15T02:39:57.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.320000", + "Timestamp": "2024-05-16T13:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.196200", - "Timestamp": "2019-10-15T02:39:57.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195000", + "Timestamp": "2024-05-16T13:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.196200", - "Timestamp": "2019-10-15T02:39:57.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170100", + "Timestamp": "2024-05-16T13:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.196200", - "Timestamp": "2019-10-15T02:39:57.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.210100", + "Timestamp": "2024-05-16T13:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.096200", - "Timestamp": "2019-10-15T02:39:57.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110100", + "Timestamp": "2024-05-16T13:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.096200", - "Timestamp": "2019-10-15T02:39:57.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.328000", + "Timestamp": "2024-05-16T13:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.096200", - "Timestamp": "2019-10-15T02:39:57.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323000", + "Timestamp": "2024-05-16T13:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.083300", - "Timestamp": "2019-10-15T02:39:51.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.198000", + "Timestamp": "2024-05-16T13:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.083300", - "Timestamp": "2019-10-15T02:39:51.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.672200", + "Timestamp": "2024-05-16T13:16:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.123300", - "Timestamp": "2019-10-15T02:39:51.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.667200", + "Timestamp": "2024-05-16T13:16:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.123300", - "Timestamp": "2019-10-15T02:39:51.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.542200", + "Timestamp": "2024-05-16T13:16:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m1.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.023300", - "Timestamp": "2019-10-15T02:39:51.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.954400", + "Timestamp": "2024-05-16T13:16:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m1.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.023300", - "Timestamp": "2019-10-15T02:39:51.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.949400", + "Timestamp": "2024-05-16T13:16:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.346600", - "Timestamp": "2019-10-15T02:39:28.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.824400", + "Timestamp": "2024-05-16T13:16:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.346600", - "Timestamp": "2019-10-15T02:39:28.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.156500", + "Timestamp": "2024-05-16T13:16:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.346600", - "Timestamp": "2019-10-15T02:39:28.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152800", + "Timestamp": "2024-05-16T13:16:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092700", - "Timestamp": "2019-10-15T02:39:25.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-16T13:16:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092700", - "Timestamp": "2019-10-15T02:39:25.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.880100", + "Timestamp": "2024-05-16T13:16:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092700", - "Timestamp": "2019-10-15T02:39:25.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.243700", + "Timestamp": "2024-05-16T13:16:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-15T02:39:25.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.875100", + "Timestamp": "2024-05-16T13:16:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-15T02:39:25.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.238700", + "Timestamp": "2024-05-16T13:16:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-15T02:39:25.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.750100", + "Timestamp": "2024-05-16T13:16:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032700", - "Timestamp": "2019-10-15T02:39:25.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.113700", + "Timestamp": "2024-05-16T13:16:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032700", - "Timestamp": "2019-10-15T02:39:25.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.587200", + "Timestamp": "2024-05-16T13:16:15.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032700", - "Timestamp": "2019-10-15T02:39:25.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170400", + "Timestamp": "2024-05-16T13:16:14.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "z1d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.159800", - "Timestamp": "2019-10-15T02:39:20.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166400", + "Timestamp": "2024-05-16T13:16:14.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.159800", - "Timestamp": "2019-10-15T02:39:20.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110400", + "Timestamp": "2024-05-16T13:16:14.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "z1d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.159800", - "Timestamp": "2019-10-15T02:39:20.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.195600", + "Timestamp": "2024-05-16T13:16:14.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.693200", - "Timestamp": "2019-10-15T02:39:13.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.467100", + "Timestamp": "2024-05-16T13:16:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.693200", - "Timestamp": "2019-10-15T02:39:13.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.397000", + "Timestamp": "2024-05-16T13:16:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.693200", - "Timestamp": "2019-10-15T02:39:13.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.392000", + "Timestamp": "2024-05-16T13:16:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.985100", - "Timestamp": "2019-10-15T02:39:13.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.267000", + "Timestamp": "2024-05-16T13:16:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.985100", - "Timestamp": "2019-10-15T02:39:13.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.848400", + "Timestamp": "2024-05-16T13:16:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.985100", - "Timestamp": "2019-10-15T02:39:13.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.185500", + "Timestamp": "2024-05-16T13:16:10.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.699600", - "Timestamp": "2019-10-15T02:39:10.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.917100", + "Timestamp": "2024-05-16T13:16:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.699600", - "Timestamp": "2019-10-15T02:39:10.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.887100", + "Timestamp": "2024-05-16T13:16:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.669600", - "Timestamp": "2019-10-15T02:39:10.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.787100", + "Timestamp": "2024-05-16T13:16:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.669600", - "Timestamp": "2019-10-15T02:39:10.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.409300", + "Timestamp": "2024-05-16T13:16:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.569600", - "Timestamp": "2019-10-15T02:39:10.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.379300", + "Timestamp": "2024-05-16T13:16:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.569600", - "Timestamp": "2019-10-15T02:39:10.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.279300", + "Timestamp": "2024-05-16T13:16:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "5.826000", - "Timestamp": "2019-10-15T02:39:08.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.233700", + "Timestamp": "2024-05-16T13:16:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "5.796000", - "Timestamp": "2019-10-15T02:39:08.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.228700", + "Timestamp": "2024-05-16T13:16:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "5.696000", - "Timestamp": "2019-10-15T02:39:08.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.103700", + "Timestamp": "2024-05-16T13:16:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.631000", - "Timestamp": "2019-10-15T02:38:55.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.470000", + "Timestamp": "2024-05-16T13:16:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.631000", - "Timestamp": "2019-10-15T02:38:55.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.271900", + "Timestamp": "2024-05-16T13:16:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "g3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.601000", - "Timestamp": "2019-10-15T02:38:55.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.266900", + "Timestamp": "2024-05-16T13:16:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "g3.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.601000", - "Timestamp": "2019-10-15T02:38:55.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.141900", + "Timestamp": "2024-05-16T13:16:08.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.501000", - "Timestamp": "2019-10-15T02:38:55.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.977900", + "Timestamp": "2024-05-16T13:16:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "g3.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.501000", - "Timestamp": "2019-10-15T02:38:55.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.947900", + "Timestamp": "2024-05-16T13:16:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124700", - "Timestamp": "2019-10-15T02:38:50.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.847900", + "Timestamp": "2024-05-16T13:16:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124700", - "Timestamp": "2019-10-15T02:38:50.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.618900", + "Timestamp": "2024-05-16T13:16:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124700", - "Timestamp": "2019-10-15T02:38:50.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.588900", + "Timestamp": "2024-05-16T13:16:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.222600", - "Timestamp": "2019-10-15T02:38:46.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.488900", + "Timestamp": "2024-05-16T13:16:07.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.222600", - "Timestamp": "2019-10-15T02:38:46.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.391300", + "Timestamp": "2024-05-16T13:16:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.222600", - "Timestamp": "2019-10-15T02:38:46.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.361300", + "Timestamp": "2024-05-16T13:16:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.262600", - "Timestamp": "2019-10-15T02:38:46.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.261300", + "Timestamp": "2024-05-16T13:16:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.262600", - "Timestamp": "2019-10-15T02:38:46.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.375900", + "Timestamp": "2024-05-16T13:16:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.262600", - "Timestamp": "2019-10-15T02:38:46.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.370900", + "Timestamp": "2024-05-16T13:16:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.162600", - "Timestamp": "2019-10-15T02:38:46.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.245900", + "Timestamp": "2024-05-16T13:16:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.162600", - "Timestamp": "2019-10-15T02:38:46.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.489400", + "Timestamp": "2024-05-16T13:16:02.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.162600", - "Timestamp": "2019-10-15T02:38:46.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.459400", + "Timestamp": "2024-05-16T13:16:02.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "z1d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.127800", - "Timestamp": "2019-10-15T02:38:45.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.359400", + "Timestamp": "2024-05-16T13:16:02.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.127800", - "Timestamp": "2019-10-15T02:38:45.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.189500", + "Timestamp": "2024-05-16T13:15:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "z1d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.127800", - "Timestamp": "2019-10-15T02:38:45.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.197200", + "Timestamp": "2024-05-16T13:15:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "z1d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.167800", - "Timestamp": "2019-10-15T02:38:45.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.185500", + "Timestamp": "2024-05-16T13:15:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.167800", - "Timestamp": "2019-10-15T02:38:45.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193200", + "Timestamp": "2024-05-16T13:15:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "z1d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.167800", - "Timestamp": "2019-10-15T02:38:45.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129500", + "Timestamp": "2024-05-16T13:15:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "z1d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.067800", - "Timestamp": "2019-10-15T02:38:45.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137200", + "Timestamp": "2024-05-16T13:15:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "z1d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.067800", - "Timestamp": "2019-10-15T02:38:45.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.579200", + "Timestamp": "2024-05-16T13:15:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "z1d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.067800", - "Timestamp": "2019-10-15T02:38:45.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.549200", + "Timestamp": "2024-05-16T13:15:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.209200", - "Timestamp": "2019-10-15T02:38:40.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.449200", + "Timestamp": "2024-05-16T13:15:51.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.209200", - "Timestamp": "2019-10-15T02:38:40.000Z" + "SpotPrice": "0.855200", + "Timestamp": "2024-05-16T13:02:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.119200", - "Timestamp": "2019-10-15T02:38:40.000Z" + "SpotPrice": "0.239600", + "Timestamp": "2024-05-16T13:02:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.119200", - "Timestamp": "2019-10-15T02:38:40.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.234600", + "Timestamp": "2024-05-16T13:02:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.159200", - "Timestamp": "2019-10-15T02:38:40.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109600", + "Timestamp": "2024-05-16T13:02:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.159200", - "Timestamp": "2019-10-15T02:38:40.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.702400", + "Timestamp": "2024-05-16T13:02:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.059200", - "Timestamp": "2019-10-15T02:38:40.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.076200", + "Timestamp": "2024-05-16T13:02:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.059200", - "Timestamp": "2019-10-15T02:38:40.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.522400", + "Timestamp": "2024-05-16T13:02:15.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.209200", - "Timestamp": "2019-10-15T02:38:39.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.683700", + "Timestamp": "2024-05-16T13:02:02.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.209200", - "Timestamp": "2019-10-15T02:38:39.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.774000", + "Timestamp": "2024-05-16T13:01:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "12.960000", - "Timestamp": "2019-10-15T02:38:31.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.769000", + "Timestamp": "2024-05-16T13:01:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.624900", - "Timestamp": "2019-10-15T02:38:25.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.644000", + "Timestamp": "2024-05-16T13:01:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.metal", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.624900", - "Timestamp": "2019-10-15T02:38:25.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.845000", + "Timestamp": "2024-05-16T13:01:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.594900", - "Timestamp": "2019-10-15T02:38:25.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.656800", + "Timestamp": "2024-05-16T13:01:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.metal", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.594900", - "Timestamp": "2019-10-15T02:38:25.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.840000", + "Timestamp": "2024-05-16T13:01:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.494900", - "Timestamp": "2019-10-15T02:38:25.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.651800", + "Timestamp": "2024-05-16T13:01:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.metal", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.494900", - "Timestamp": "2019-10-15T02:38:25.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.715000", + "Timestamp": "2024-05-16T13:01:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.379100", - "Timestamp": "2019-10-15T02:38:16.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.526800", + "Timestamp": "2024-05-16T13:01:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.379100", - "Timestamp": "2019-10-15T02:38:16.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.452800", + "Timestamp": "2024-05-16T13:01:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.349100", - "Timestamp": "2019-10-15T02:38:16.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.329600", + "Timestamp": "2024-05-16T13:01:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.349100", - "Timestamp": "2019-10-15T02:38:16.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324600", + "Timestamp": "2024-05-16T13:01:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.249100", - "Timestamp": "2019-10-15T02:38:16.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.199600", + "Timestamp": "2024-05-16T13:01:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.249100", - "Timestamp": "2019-10-15T02:38:16.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.588500", + "Timestamp": "2024-05-16T13:01:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.985600", - "Timestamp": "2019-10-15T02:37:51.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.583500", + "Timestamp": "2024-05-16T13:01:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.985600", - "Timestamp": "2019-10-15T02:37:51.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.458500", + "Timestamp": "2024-05-16T13:01:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.391600", - "Timestamp": "2019-10-15T02:37:51.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158400", + "Timestamp": "2024-05-16T13:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.391600", - "Timestamp": "2019-10-15T02:37:51.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154400", + "Timestamp": "2024-05-16T13:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.361600", - "Timestamp": "2019-10-15T02:37:51.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098400", + "Timestamp": "2024-05-16T13:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.361600", - "Timestamp": "2019-10-15T02:37:51.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.522800", + "Timestamp": "2024-05-16T13:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.261600", - "Timestamp": "2019-10-15T02:37:51.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.517800", + "Timestamp": "2024-05-16T13:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.261600", - "Timestamp": "2019-10-15T02:37:51.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.392800", + "Timestamp": "2024-05-16T13:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.260800", - "Timestamp": "2019-10-15T02:37:49.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.442500", + "Timestamp": "2024-05-16T13:01:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.260800", - "Timestamp": "2019-10-15T02:37:49.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.437500", + "Timestamp": "2024-05-16T13:01:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.230800", - "Timestamp": "2019-10-15T02:37:49.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.312500", + "Timestamp": "2024-05-16T13:01:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.230800", - "Timestamp": "2019-10-15T02:37:49.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.281300", + "Timestamp": "2024-05-16T13:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T02:37:49.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.277300", + "Timestamp": "2024-05-16T13:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T02:37:49.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.221300", + "Timestamp": "2024-05-16T13:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.119200", - "Timestamp": "2019-10-15T02:37:41.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.544000", + "Timestamp": "2024-05-16T13:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.119200", - "Timestamp": "2019-10-15T02:37:41.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.539000", + "Timestamp": "2024-05-16T13:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.159200", - "Timestamp": "2019-10-15T02:37:41.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.414000", + "Timestamp": "2024-05-16T13:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.159200", - "Timestamp": "2019-10-15T02:37:41.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.998200", + "Timestamp": "2024-05-16T13:01:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.059200", - "Timestamp": "2019-10-15T02:37:41.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.993200", + "Timestamp": "2024-05-16T13:01:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.059200", - "Timestamp": "2019-10-15T02:37:41.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.868200", + "Timestamp": "2024-05-16T13:01:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t2.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.068800", - "Timestamp": "2019-10-15T02:37:31.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.727800", + "Timestamp": "2024-05-16T13:01:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t2.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.038800", - "Timestamp": "2019-10-15T02:37:31.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.722800", + "Timestamp": "2024-05-16T13:01:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t2.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.008800", - "Timestamp": "2019-10-15T02:37:31.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.597800", + "Timestamp": "2024-05-16T13:01:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "8.674000", - "Timestamp": "2019-10-15T02:37:28.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.634800", + "Timestamp": "2024-05-16T13:01:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "8.644000", - "Timestamp": "2019-10-15T02:37:28.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.629800", + "Timestamp": "2024-05-16T13:01:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "8.544000", - "Timestamp": "2019-10-15T02:37:28.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.504800", + "Timestamp": "2024-05-16T13:01:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.806900", - "Timestamp": "2019-10-15T02:37:13.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.386300", + "Timestamp": "2024-05-16T13:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.metal", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.806900", - "Timestamp": "2019-10-15T02:37:13.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.381300", + "Timestamp": "2024-05-16T13:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t2.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.018000", - "Timestamp": "2019-10-15T02:37:05.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.256300", + "Timestamp": "2024-05-16T13:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t2.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.018000", - "Timestamp": "2019-10-15T02:37:05.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.930700", + "Timestamp": "2024-05-16T13:01:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t2.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.018000", - "Timestamp": "2019-10-15T02:37:05.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.265800", + "Timestamp": "2024-05-16T13:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.997600", - "Timestamp": "2019-10-15T02:36:46.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T13:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.997600", - "Timestamp": "2019-10-15T02:36:46.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098900", + "Timestamp": "2024-05-16T13:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.006400", - "Timestamp": "2019-10-15T02:36:29.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042900", + "Timestamp": "2024-05-16T13:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.006400", - "Timestamp": "2019-10-15T02:36:29.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.840900", + "Timestamp": "2024-05-16T13:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.006400", - "Timestamp": "2019-10-15T02:36:29.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.581600", + "Timestamp": "2024-05-16T13:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.nano", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.061800", - "Timestamp": "2019-10-15T02:36:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.352500", + "Timestamp": "2024-05-16T13:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.nano", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.061800", - "Timestamp": "2019-10-15T02:36:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.347500", + "Timestamp": "2024-05-16T13:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.nano", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.061800", - "Timestamp": "2019-10-15T02:36:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.222500", + "Timestamp": "2024-05-16T13:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.nano", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-15T02:36:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169100", + "Timestamp": "2024-05-16T13:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.nano", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-15T02:36:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.209100", + "Timestamp": "2024-05-16T13:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.nano", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-15T02:36:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109100", + "Timestamp": "2024-05-16T13:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.nano", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.001800", - "Timestamp": "2019-10-15T02:36:15.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.590800", + "Timestamp": "2024-05-16T13:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.nano", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.001800", - "Timestamp": "2019-10-15T02:36:15.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.585800", + "Timestamp": "2024-05-16T13:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.nano", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.001800", - "Timestamp": "2019-10-15T02:36:15.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.460800", + "Timestamp": "2024-05-16T13:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.498800", - "Timestamp": "2019-10-15T02:36:13.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.353700", + "Timestamp": "2024-05-16T13:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.498800", - "Timestamp": "2019-10-15T02:36:13.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323700", + "Timestamp": "2024-05-16T13:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.072800", - "Timestamp": "2019-10-15T02:35:32.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.223700", + "Timestamp": "2024-05-16T13:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.072800", - "Timestamp": "2019-10-15T02:35:32.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166400", + "Timestamp": "2024-05-16T13:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.125300", - "Timestamp": "2019-10-15T02:35:31.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.162700", + "Timestamp": "2024-05-16T13:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.125300", - "Timestamp": "2019-10-15T02:35:31.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T13:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092700", - "Timestamp": "2019-10-15T02:35:24.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.121600", + "Timestamp": "2024-05-16T13:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092700", - "Timestamp": "2019-10-15T02:35:24.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.116600", + "Timestamp": "2024-05-16T13:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092700", - "Timestamp": "2019-10-15T02:35:24.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.991600", + "Timestamp": "2024-05-16T13:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-15T02:35:24.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.412400", + "Timestamp": "2024-05-16T13:01:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-15T02:35:24.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.407400", + "Timestamp": "2024-05-16T13:01:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-15T02:35:24.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.282400", + "Timestamp": "2024-05-16T13:01:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032700", - "Timestamp": "2019-10-15T02:35:24.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.348100", + "Timestamp": "2024-05-16T13:01:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032700", - "Timestamp": "2019-10-15T02:35:24.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.318100", + "Timestamp": "2024-05-16T13:01:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032700", - "Timestamp": "2019-10-15T02:35:24.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.218100", + "Timestamp": "2024-05-16T13:01:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.130600", - "Timestamp": "2019-10-15T02:35:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.014300", + "Timestamp": "2024-05-16T13:01:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.130600", - "Timestamp": "2019-10-15T02:35:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.415200", + "Timestamp": "2024-05-16T13:01:02.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.130600", - "Timestamp": "2019-10-15T02:35:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.385200", + "Timestamp": "2024-05-16T13:01:02.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124700", - "Timestamp": "2019-10-15T02:35:13.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.285200", + "Timestamp": "2024-05-16T13:01:02.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124700", - "Timestamp": "2019-10-15T02:35:13.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.228600", + "Timestamp": "2024-05-16T13:01:01.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.124700", - "Timestamp": "2019-10-15T02:35:13.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3a.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.024500", + "Timestamp": "2024-05-16T13:00:59.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126300", - "Timestamp": "2019-10-15T02:35:09.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110900", + "Timestamp": "2024-05-16T12:59:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126300", - "Timestamp": "2019-10-15T02:35:09.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.433600", + "Timestamp": "2024-05-16T12:49:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126300", - "Timestamp": "2019-10-15T02:35:09.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021800", + "Timestamp": "2024-05-16T12:48:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.604600", - "Timestamp": "2019-10-15T02:34:57.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021800", + "Timestamp": "2024-05-16T12:48:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.604600", - "Timestamp": "2019-10-15T02:34:57.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.462400", + "Timestamp": "2024-05-16T12:48:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.604600", - "Timestamp": "2019-10-15T02:34:57.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.790700", + "Timestamp": "2024-05-16T12:46:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.574600", - "Timestamp": "2019-10-15T02:34:57.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.785700", + "Timestamp": "2024-05-16T12:46:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.574600", - "Timestamp": "2019-10-15T02:34:57.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.660700", + "Timestamp": "2024-05-16T12:46:48.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.574600", - "Timestamp": "2019-10-15T02:34:57.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.750500", + "Timestamp": "2024-05-16T12:46:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.474600", - "Timestamp": "2019-10-15T02:34:57.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.412100", + "Timestamp": "2024-05-16T12:46:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.474600", - "Timestamp": "2019-10-15T02:34:57.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.407100", + "Timestamp": "2024-05-16T12:46:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.474600", - "Timestamp": "2019-10-15T02:34:57.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.282100", + "Timestamp": "2024-05-16T12:46:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.783300", - "Timestamp": "2019-10-15T02:34:56.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097700", + "Timestamp": "2024-05-16T12:46:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.783300", - "Timestamp": "2019-10-15T02:34:56.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094000", + "Timestamp": "2024-05-16T12:46:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.753300", - "Timestamp": "2019-10-15T02:34:56.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037700", + "Timestamp": "2024-05-16T12:46:43.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.753300", - "Timestamp": "2019-10-15T02:34:56.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.830600", + "Timestamp": "2024-05-16T12:46:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.653300", - "Timestamp": "2019-10-15T02:34:56.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.800600", + "Timestamp": "2024-05-16T12:46:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.653300", - "Timestamp": "2019-10-15T02:34:56.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.700600", + "Timestamp": "2024-05-16T12:46:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.288100", - "Timestamp": "2019-10-15T02:34:54.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.486100", + "Timestamp": "2024-05-16T12:46:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.288100", - "Timestamp": "2019-10-15T02:34:54.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.481100", + "Timestamp": "2024-05-16T12:46:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.060400", - "Timestamp": "2019-10-15T02:34:33.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.356100", + "Timestamp": "2024-05-16T12:46:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.060400", - "Timestamp": "2019-10-15T02:34:33.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.481300", + "Timestamp": "2024-05-16T12:46:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.060400", - "Timestamp": "2019-10-15T02:34:33.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330000", + "Timestamp": "2024-05-16T12:46:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122100", - "Timestamp": "2019-10-15T02:34:23.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325000", + "Timestamp": "2024-05-16T12:46:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122100", - "Timestamp": "2019-10-15T02:34:23.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200000", + "Timestamp": "2024-05-16T12:46:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.162100", - "Timestamp": "2019-10-15T02:34:23.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.181000", + "Timestamp": "2024-05-16T12:46:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.162100", - "Timestamp": "2019-10-15T02:34:23.000Z" + "SpotPrice": "0.177000", + "Timestamp": "2024-05-16T12:46:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062100", - "Timestamp": "2019-10-15T02:34:23.000Z" + "SpotPrice": "0.121000", + "Timestamp": "2024-05-16T12:46:41.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062100", - "Timestamp": "2019-10-15T02:34:23.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431600", + "Timestamp": "2024-05-16T12:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094300", - "Timestamp": "2019-10-15T02:34:23.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.382300", + "Timestamp": "2024-05-16T12:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094300", - "Timestamp": "2019-10-15T02:34:23.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.377300", + "Timestamp": "2024-05-16T12:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094300", - "Timestamp": "2019-10-15T02:34:23.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.252300", + "Timestamp": "2024-05-16T12:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-15T02:34:23.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.507100", + "Timestamp": "2024-05-16T12:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-15T02:34:23.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.502100", + "Timestamp": "2024-05-16T12:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-15T02:34:23.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.377100", + "Timestamp": "2024-05-16T12:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034300", - "Timestamp": "2019-10-15T02:34:23.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.213100", + "Timestamp": "2024-05-16T12:46:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5ad.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034300", - "Timestamp": "2019-10-15T02:34:23.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.208100", + "Timestamp": "2024-05-16T12:46:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034300", - "Timestamp": "2019-10-15T02:34:23.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.083100", + "Timestamp": "2024-05-16T12:46:39.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.254600", - "Timestamp": "2019-10-15T02:34:13.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.660800", + "Timestamp": "2024-05-16T12:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.254600", - "Timestamp": "2019-10-15T02:34:13.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.312200", + "Timestamp": "2024-05-16T12:46:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.224600", - "Timestamp": "2019-10-15T02:34:13.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.282200", + "Timestamp": "2024-05-16T12:46:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.224600", - "Timestamp": "2019-10-15T02:34:13.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.182200", + "Timestamp": "2024-05-16T12:46:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.124600", - "Timestamp": "2019-10-15T02:34:13.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146400", + "Timestamp": "2024-05-16T12:46:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.124600", - "Timestamp": "2019-10-15T02:34:13.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142700", + "Timestamp": "2024-05-16T12:46:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.069800", - "Timestamp": "2019-10-15T02:34:10.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086400", + "Timestamp": "2024-05-16T12:46:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.medium", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.069800", - "Timestamp": "2019-10-15T02:34:10.000Z" + "SpotPrice": "0.379700", + "Timestamp": "2024-05-16T12:46:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.medium", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.109800", - "Timestamp": "2019-10-15T02:34:10.000Z" + "SpotPrice": "0.349700", + "Timestamp": "2024-05-16T12:46:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.medium", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.249700", + "Timestamp": "2024-05-16T12:46:36.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.205700", + "Timestamp": "2024-05-16T12:46:34.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t2.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.109800", - "Timestamp": "2019-10-15T02:34:10.000Z" + "SpotPrice": "0.175700", + "Timestamp": "2024-05-16T12:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.medium", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t2.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.009800", - "Timestamp": "2019-10-15T02:34:10.000Z" + "SpotPrice": "0.075700", + "Timestamp": "2024-05-16T12:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.009800", - "Timestamp": "2019-10-15T02:34:10.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.296800", + "Timestamp": "2024-05-16T12:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.288100", - "Timestamp": "2019-10-15T02:34:02.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266800", + "Timestamp": "2024-05-16T12:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r3.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.288100", - "Timestamp": "2019-10-15T02:34:02.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.166800", + "Timestamp": "2024-05-16T12:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.072800", - "Timestamp": "2019-10-15T02:33:41.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.403400", + "Timestamp": "2024-05-16T12:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.medium", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.072800", - "Timestamp": "2019-10-15T02:33:41.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.398400", + "Timestamp": "2024-05-16T12:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.774400", - "Timestamp": "2019-10-15T02:33:32.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.273400", + "Timestamp": "2024-05-16T12:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.774400", - "Timestamp": "2019-10-15T02:33:32.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.918900", + "Timestamp": "2024-05-16T12:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.774400", - "Timestamp": "2019-10-15T02:33:32.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.833000", + "Timestamp": "2024-05-16T12:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.744400", - "Timestamp": "2019-10-15T02:33:32.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.913900", + "Timestamp": "2024-05-16T12:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.744400", - "Timestamp": "2019-10-15T02:33:32.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.828000", + "Timestamp": "2024-05-16T12:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.744400", - "Timestamp": "2019-10-15T02:33:32.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.788900", + "Timestamp": "2024-05-16T12:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.644400", - "Timestamp": "2019-10-15T02:33:32.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.703000", + "Timestamp": "2024-05-16T12:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.644400", - "Timestamp": "2019-10-15T02:33:32.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.503300", + "Timestamp": "2024-05-16T12:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.644400", - "Timestamp": "2019-10-15T02:33:32.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.498300", + "Timestamp": "2024-05-16T12:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "11.424000", - "Timestamp": "2019-10-15T02:33:31.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.373300", + "Timestamp": "2024-05-16T12:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.492600", - "Timestamp": "2019-10-15T02:33:30.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.960400", + "Timestamp": "2024-05-16T12:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.492600", - "Timestamp": "2019-10-15T02:33:30.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.955400", + "Timestamp": "2024-05-16T12:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.492600", - "Timestamp": "2019-10-15T02:33:30.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.830400", + "Timestamp": "2024-05-16T12:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.069800", - "Timestamp": "2019-10-15T02:33:19.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.449500", + "Timestamp": "2024-05-16T12:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.medium", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.069800", - "Timestamp": "2019-10-15T02:33:19.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.444500", + "Timestamp": "2024-05-16T12:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.109800", - "Timestamp": "2019-10-15T02:33:19.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.319500", + "Timestamp": "2024-05-16T12:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.medium", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.109800", - "Timestamp": "2019-10-15T02:33:19.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.890300", + "Timestamp": "2024-05-16T12:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.009800", - "Timestamp": "2019-10-15T02:33:19.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.195000", + "Timestamp": "2024-05-16T12:46:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.medium", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.009800", - "Timestamp": "2019-10-15T02:33:19.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.235000", + "Timestamp": "2024-05-16T12:46:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126300", - "Timestamp": "2019-10-15T02:33:14.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.135000", + "Timestamp": "2024-05-16T12:46:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126300", - "Timestamp": "2019-10-15T02:33:14.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.501400", + "Timestamp": "2024-05-16T12:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126300", - "Timestamp": "2019-10-15T02:33:14.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.497700", + "Timestamp": "2024-05-16T12:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "4.802000", - "Timestamp": "2019-10-15T02:33:07.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.441400", + "Timestamp": "2024-05-16T12:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "4.772000", - "Timestamp": "2019-10-15T02:33:07.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.267600", + "Timestamp": "2024-05-16T12:46:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "4.672000", - "Timestamp": "2019-10-15T02:33:07.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.262600", + "Timestamp": "2024-05-16T12:46:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.379100", - "Timestamp": "2019-10-15T02:32:55.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.137600", + "Timestamp": "2024-05-16T12:46:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.349100", - "Timestamp": "2019-10-15T02:32:55.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.990700", + "Timestamp": "2024-05-16T12:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.249100", - "Timestamp": "2019-10-15T02:32:55.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.985700", + "Timestamp": "2024-05-16T12:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.699600", - "Timestamp": "2019-10-15T02:32:39.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.860700", + "Timestamp": "2024-05-16T12:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.699600", - "Timestamp": "2019-10-15T02:32:39.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.667800", + "Timestamp": "2024-05-16T12:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.699600", - "Timestamp": "2019-10-15T02:32:39.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.662800", + "Timestamp": "2024-05-16T12:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.669600", - "Timestamp": "2019-10-15T02:32:39.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.537800", + "Timestamp": "2024-05-16T12:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.669600", - "Timestamp": "2019-10-15T02:32:39.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174900", + "Timestamp": "2024-05-16T12:46:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.669600", - "Timestamp": "2019-10-15T02:32:39.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.171200", + "Timestamp": "2024-05-16T12:46:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.569600", - "Timestamp": "2019-10-15T02:32:39.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114900", + "Timestamp": "2024-05-16T12:46:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.569600", - "Timestamp": "2019-10-15T02:32:39.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.813900", + "Timestamp": "2024-05-16T12:46:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.569600", - "Timestamp": "2019-10-15T02:32:39.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.808900", + "Timestamp": "2024-05-16T12:46:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.392000", - "Timestamp": "2019-10-15T02:32:33.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.683900", + "Timestamp": "2024-05-16T12:46:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.392000", - "Timestamp": "2019-10-15T02:32:33.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.883300", + "Timestamp": "2024-05-16T12:46:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "7.616000", - "Timestamp": "2019-10-15T02:32:31.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.878300", + "Timestamp": "2024-05-16T12:46:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.025500", - "Timestamp": "2019-10-15T02:32:30.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.753300", + "Timestamp": "2024-05-16T12:46:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.025500", - "Timestamp": "2019-10-15T02:32:30.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.145700", + "Timestamp": "2024-05-16T12:46:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.small", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.025500", - "Timestamp": "2019-10-15T02:32:30.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.140700", + "Timestamp": "2024-05-16T12:46:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.091100", - "Timestamp": "2019-10-15T02:32:19.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.015700", + "Timestamp": "2024-05-16T12:46:12.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.091100", - "Timestamp": "2019-10-15T02:32:19.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.229000", + "Timestamp": "2024-05-16T12:46:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.091100", - "Timestamp": "2019-10-15T02:32:19.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.186800", + "Timestamp": "2024-05-16T12:46:10.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.131100", - "Timestamp": "2019-10-15T02:32:19.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.182800", + "Timestamp": "2024-05-16T12:46:10.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.131100", - "Timestamp": "2019-10-15T02:32:19.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.126800", + "Timestamp": "2024-05-16T12:46:10.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5d.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.131100", - "Timestamp": "2019-10-15T02:32:19.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089200", + "Timestamp": "2024-05-16T12:46:04.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.031100", - "Timestamp": "2019-10-15T02:32:19.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129200", + "Timestamp": "2024-05-16T12:46:04.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.031100", - "Timestamp": "2019-10-15T02:32:19.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.029200", + "Timestamp": "2024-05-16T12:46:04.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.031100", - "Timestamp": "2019-10-15T02:32:19.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114100", + "Timestamp": "2024-05-16T12:46:02.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.216600", - "Timestamp": "2019-10-15T02:32:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125700", + "Timestamp": "2024-05-16T12:46:02.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.216600", - "Timestamp": "2019-10-15T02:32:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110400", + "Timestamp": "2024-05-16T12:46:02.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.985100", - "Timestamp": "2019-10-15T02:31:59.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122000", + "Timestamp": "2024-05-16T12:46:02.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.985100", - "Timestamp": "2019-10-15T02:31:59.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054100", + "Timestamp": "2024-05-16T12:46:02.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.985100", - "Timestamp": "2019-10-15T02:31:59.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065700", + "Timestamp": "2024-05-16T12:46:02.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.690600", - "Timestamp": "2019-10-15T02:31:45.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.845200", + "Timestamp": "2024-05-16T12:35:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.690600", - "Timestamp": "2019-10-15T02:31:45.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.815200", + "Timestamp": "2024-05-16T12:35:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.660600", - "Timestamp": "2019-10-15T02:31:45.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.715200", + "Timestamp": "2024-05-16T12:35:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.660600", - "Timestamp": "2019-10-15T02:31:45.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.380800", + "Timestamp": "2024-05-16T12:32:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.560600", - "Timestamp": "2019-10-15T02:31:45.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.021000", + "Timestamp": "2024-05-16T12:32:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.560600", - "Timestamp": "2019-10-15T02:31:45.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.991000", + "Timestamp": "2024-05-16T12:32:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.321000", - "Timestamp": "2019-10-15T02:31:33.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.891000", + "Timestamp": "2024-05-16T12:32:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.321000", - "Timestamp": "2019-10-15T02:31:33.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.777500", + "Timestamp": "2024-05-16T12:32:00.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.361000", - "Timestamp": "2019-10-15T02:31:33.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.922700", + "Timestamp": "2024-05-16T12:32:00.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "x2iedn.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.361000", - "Timestamp": "2019-10-15T02:31:33.000Z" + "SpotPrice": "0.917700", + "Timestamp": "2024-05-16T12:32:00.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "x2iedn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.261000", - "Timestamp": "2019-10-15T02:31:33.000Z" + "SpotPrice": "0.792700", + "Timestamp": "2024-05-16T12:32:00.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.261000", - "Timestamp": "2019-10-15T02:31:33.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.443400", + "Timestamp": "2024-05-16T12:31:53.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.392000", - "Timestamp": "2019-10-15T02:31:33.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.498700", + "Timestamp": "2024-05-16T12:31:53.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.392000", - "Timestamp": "2019-10-15T02:31:33.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.438400", + "Timestamp": "2024-05-16T12:31:53.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.392000", - "Timestamp": "2019-10-15T02:31:33.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.493700", + "Timestamp": "2024-05-16T12:31:53.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094300", - "Timestamp": "2019-10-15T02:31:28.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.313400", + "Timestamp": "2024-05-16T12:31:53.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094300", - "Timestamp": "2019-10-15T02:31:28.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.368700", + "Timestamp": "2024-05-16T12:31:53.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094300", - "Timestamp": "2019-10-15T02:31:28.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T12:31:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-15T02:31:28.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107700", + "Timestamp": "2024-05-16T12:31:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-15T02:31:28.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051400", + "Timestamp": "2024-05-16T12:31:52.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-15T02:31:28.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.381600", + "Timestamp": "2024-05-16T12:31:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034300", - "Timestamp": "2019-10-15T02:31:28.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.351600", + "Timestamp": "2024-05-16T12:31:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034300", - "Timestamp": "2019-10-15T02:31:28.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.251600", + "Timestamp": "2024-05-16T12:31:46.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5a.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034300", - "Timestamp": "2019-10-15T02:31:28.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211500", + "Timestamp": "2024-05-16T12:31:44.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.985600", - "Timestamp": "2019-10-15T02:31:26.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.539200", + "Timestamp": "2024-05-16T12:31:42.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.985600", - "Timestamp": "2019-10-15T02:31:26.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207600", + "Timestamp": "2024-05-16T12:31:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "5.985600", - "Timestamp": "2019-10-15T02:31:26.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.024500", + "Timestamp": "2024-05-16T12:31:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.952200", - "Timestamp": "2019-10-15T02:31:16.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.019500", + "Timestamp": "2024-05-16T12:31:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.922200", - "Timestamp": "2019-10-15T02:31:16.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.894500", + "Timestamp": "2024-05-16T12:31:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.822200", - "Timestamp": "2019-10-15T02:31:16.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.205000", + "Timestamp": "2024-05-16T12:31:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "c5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.123100", - "Timestamp": "2019-10-15T02:31:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.200000", + "Timestamp": "2024-05-16T12:31:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "c5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.123100", - "Timestamp": "2019-10-15T02:31:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.075000", + "Timestamp": "2024-05-16T12:31:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5d.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.123100", - "Timestamp": "2019-10-15T02:31:15.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210200", + "Timestamp": "2024-05-16T12:31:40.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.321000", - "Timestamp": "2019-10-15T02:31:11.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.349200", + "Timestamp": "2024-05-16T12:31:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.321000", - "Timestamp": "2019-10-15T02:31:11.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.344200", + "Timestamp": "2024-05-16T12:31:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.321000", - "Timestamp": "2019-10-15T02:31:11.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219200", + "Timestamp": "2024-05-16T12:31:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.361000", - "Timestamp": "2019-10-15T02:31:11.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.692300", + "Timestamp": "2024-05-16T12:31:38.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.361000", - "Timestamp": "2019-10-15T02:31:11.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.416400", + "Timestamp": "2024-05-16T12:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.361000", - "Timestamp": "2019-10-15T02:31:11.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.411400", + "Timestamp": "2024-05-16T12:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.261000", - "Timestamp": "2019-10-15T02:31:11.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.286400", + "Timestamp": "2024-05-16T12:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.261000", - "Timestamp": "2019-10-15T02:31:11.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115700", + "Timestamp": "2024-05-16T12:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.261000", - "Timestamp": "2019-10-15T02:31:11.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330300", + "Timestamp": "2024-05-16T12:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.067100", - "Timestamp": "2019-10-15T02:29:53.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325300", + "Timestamp": "2024-05-16T12:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.067100", - "Timestamp": "2019-10-15T02:29:53.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200300", + "Timestamp": "2024-05-16T12:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.small", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.067100", - "Timestamp": "2019-10-15T02:29:53.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.831700", + "Timestamp": "2024-05-16T12:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.107100", - "Timestamp": "2019-10-15T02:29:53.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.826700", + "Timestamp": "2024-05-16T12:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.107100", - "Timestamp": "2019-10-15T02:29:53.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.701700", + "Timestamp": "2024-05-16T12:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.small", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.107100", - "Timestamp": "2019-10-15T02:29:53.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.452400", + "Timestamp": "2024-05-16T12:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "t3a.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.007100", - "Timestamp": "2019-10-15T02:29:53.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.681000", + "Timestamp": "2024-05-16T12:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "t3a.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.007100", - "Timestamp": "2019-10-15T02:29:53.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.676000", + "Timestamp": "2024-05-16T12:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "t3a.small", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.007100", - "Timestamp": "2019-10-15T02:29:53.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.551000", + "Timestamp": "2024-05-16T12:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.653200", - "Timestamp": "2019-10-15T02:27:40.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.802900", + "Timestamp": "2024-05-16T12:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.623200", - "Timestamp": "2019-10-15T02:27:40.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.797900", + "Timestamp": "2024-05-16T12:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.523200", - "Timestamp": "2019-10-15T02:27:40.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.672900", + "Timestamp": "2024-05-16T12:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.092700", - "Timestamp": "2019-10-15T02:21:14.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163700", + "Timestamp": "2024-05-16T12:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-15T02:21:14.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160000", + "Timestamp": "2024-05-16T12:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.032700", - "Timestamp": "2019-10-15T02:21:14.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103700", + "Timestamp": "2024-05-16T12:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.914800", - "Timestamp": "2019-10-15T02:11:30.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.702400", + "Timestamp": "2024-05-16T12:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.884800", - "Timestamp": "2019-10-15T02:11:30.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.438100", + "Timestamp": "2024-05-16T12:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.784800", - "Timestamp": "2019-10-15T02:11:30.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.433100", + "Timestamp": "2024-05-16T12:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "4.040200", - "Timestamp": "2019-10-15T02:11:00.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.308100", + "Timestamp": "2024-05-16T12:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.914800", - "Timestamp": "2019-10-15T01:55:30.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.451500", + "Timestamp": "2024-05-16T12:31:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.884800", - "Timestamp": "2019-10-15T01:55:30.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.446500", + "Timestamp": "2024-05-16T12:31:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.12xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.784800", - "Timestamp": "2019-10-15T01:55:30.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.321500", + "Timestamp": "2024-05-16T12:31:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.456400", - "Timestamp": "2019-10-15T01:45:33.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.992000", + "Timestamp": "2024-05-16T12:31:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.456400", - "Timestamp": "2019-10-15T01:45:33.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.717200", + "Timestamp": "2024-05-16T12:31:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.456400", - "Timestamp": "2019-10-15T01:43:37.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.987000", + "Timestamp": "2024-05-16T12:31:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.456400", - "Timestamp": "2019-10-15T01:43:37.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.712200", + "Timestamp": "2024-05-16T12:31:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.365400", - "Timestamp": "2019-10-15T01:42:59.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.862000", + "Timestamp": "2024-05-16T12:31:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.365400", - "Timestamp": "2019-10-15T01:42:59.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.587200", + "Timestamp": "2024-05-16T12:31:29.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.405400", - "Timestamp": "2019-10-15T01:42:59.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.238600", + "Timestamp": "2024-05-16T12:31:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.405400", - "Timestamp": "2019-10-15T01:42:59.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.233600", + "Timestamp": "2024-05-16T12:31:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.305400", - "Timestamp": "2019-10-15T01:42:59.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-16T12:31:28.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.305400", - "Timestamp": "2019-10-15T01:42:59.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.926800", + "Timestamp": "2024-05-16T12:31:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "1.010100", - "Timestamp": "2019-10-15T01:42:35.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.896800", + "Timestamp": "2024-05-16T12:31:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "2.008000", - "Timestamp": "2019-10-15T01:42:35.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.796800", + "Timestamp": "2024-05-16T12:31:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r4.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.365400", - "Timestamp": "2019-10-15T01:42:34.000Z" + "SpotPrice": "0.282200", + "Timestamp": "2024-05-16T12:31:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r4.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.365400", - "Timestamp": "2019-10-15T01:42:34.000Z" + "SpotPrice": "0.242100", + "Timestamp": "2024-05-16T12:31:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r4.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.405400", - "Timestamp": "2019-10-15T01:42:34.000Z" + "SpotPrice": "0.252200", + "Timestamp": "2024-05-16T12:31:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r4.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.405400", - "Timestamp": "2019-10-15T01:42:34.000Z" + "SpotPrice": "0.212100", + "Timestamp": "2024-05-16T12:31:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r4.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.305400", - "Timestamp": "2019-10-15T01:42:34.000Z" + "SpotPrice": "0.152200", + "Timestamp": "2024-05-16T12:31:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r4.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.305400", - "Timestamp": "2019-10-15T01:42:34.000Z" + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T12:31:27.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.404100", - "Timestamp": "2019-10-15T01:41:45.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.419700", + "Timestamp": "2024-05-16T12:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.402000", - "Timestamp": "2019-10-15T01:41:45.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.389700", + "Timestamp": "2024-05-16T12:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.374100", - "Timestamp": "2019-10-15T01:41:45.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.289700", + "Timestamp": "2024-05-16T12:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.372000", - "Timestamp": "2019-10-15T01:41:45.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.402500", + "Timestamp": "2024-05-16T12:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.274100", - "Timestamp": "2019-10-15T01:41:45.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.372500", + "Timestamp": "2024-05-16T12:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.272000", - "Timestamp": "2019-10-15T01:41:45.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.272500", + "Timestamp": "2024-05-16T12:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.997600", - "Timestamp": "2019-10-15T01:39:46.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091100", + "Timestamp": "2024-05-16T12:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.997600", - "Timestamp": "2019-10-15T01:39:46.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087400", + "Timestamp": "2024-05-16T12:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.391600", - "Timestamp": "2019-10-15T01:38:18.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031100", + "Timestamp": "2024-05-16T12:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.391600", - "Timestamp": "2019-10-15T01:38:18.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.429100", + "Timestamp": "2024-05-16T12:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.361600", - "Timestamp": "2019-10-15T01:38:18.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.424100", + "Timestamp": "2024-05-16T12:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.361600", - "Timestamp": "2019-10-15T01:38:18.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.299100", + "Timestamp": "2024-05-16T12:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.261600", - "Timestamp": "2019-10-15T01:38:18.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.804200", + "Timestamp": "2024-05-16T12:31:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.261600", - "Timestamp": "2019-10-15T01:38:18.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.799200", + "Timestamp": "2024-05-16T12:31:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.260800", - "Timestamp": "2019-10-15T01:31:12.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.674200", + "Timestamp": "2024-05-16T12:31:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.230800", - "Timestamp": "2019-10-15T01:31:12.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.896800", + "Timestamp": "2024-05-16T12:31:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T01:31:12.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.891800", + "Timestamp": "2024-05-16T12:31:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.128500", - "Timestamp": "2019-10-15T01:29:42.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.766800", + "Timestamp": "2024-05-16T12:31:22.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.168500", - "Timestamp": "2019-10-15T01:29:42.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176200", + "Timestamp": "2024-05-16T12:31:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5dn.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.068500", - "Timestamp": "2019-10-15T01:29:42.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172500", + "Timestamp": "2024-05-16T12:31:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.176400", - "Timestamp": "2019-10-15T01:29:00.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116200", + "Timestamp": "2024-05-16T12:31:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.146400", - "Timestamp": "2019-10-15T01:29:00.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.968400", + "Timestamp": "2024-05-16T12:31:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.046400", - "Timestamp": "2019-10-15T01:29:00.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.963400", + "Timestamp": "2024-05-16T12:31:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.653200", - "Timestamp": "2019-10-15T01:12:39.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.838400", + "Timestamp": "2024-05-16T12:31:20.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.623200", - "Timestamp": "2019-10-15T01:12:39.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.243700", + "Timestamp": "2024-05-16T12:31:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m5n.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.523200", - "Timestamp": "2019-10-15T01:12:39.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.238700", + "Timestamp": "2024-05-16T12:31:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.774400", - "Timestamp": "2019-10-15T01:07:27.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113700", + "Timestamp": "2024-05-16T12:31:19.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.744400", - "Timestamp": "2019-10-15T01:07:27.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.576000", + "Timestamp": "2024-05-16T12:31:18.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.644400", - "Timestamp": "2019-10-15T01:07:27.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.142400", + "Timestamp": "2024-05-16T12:31:17.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "5.210800", - "Timestamp": "2019-10-15T00:58:53.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138400", + "Timestamp": "2024-05-16T12:31:17.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "p3.8xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "5.180800", - "Timestamp": "2019-10-15T00:58:53.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.082400", + "Timestamp": "2024-05-16T12:31:17.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "p3.8xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "5.080800", - "Timestamp": "2019-10-15T00:58:53.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.393800", + "Timestamp": "2024-05-16T12:31:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5n.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126300", - "Timestamp": "2019-10-15T00:58:31.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.388800", + "Timestamp": "2024-05-16T12:31:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1c", - "InstanceType": "r5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126300", - "Timestamp": "2019-10-15T00:48:14.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.263800", + "Timestamp": "2024-05-16T12:31:16.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126300", - "Timestamp": "2019-10-15T00:48:14.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-16T12:31:15.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.large", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.126300", - "Timestamp": "2019-10-15T00:48:14.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092200", + "Timestamp": "2024-05-16T12:31:15.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094300", - "Timestamp": "2019-10-15T00:46:23.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035900", + "Timestamp": "2024-05-16T12:31:15.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.large", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.094300", - "Timestamp": "2019-10-15T00:46:23.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.546000", + "Timestamp": "2024-05-16T12:31:15.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-15T00:46:23.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.541000", + "Timestamp": "2024-05-16T12:31:15.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.large", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.134300", - "Timestamp": "2019-10-15T00:46:23.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.416000", + "Timestamp": "2024-05-16T12:31:15.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034300", - "Timestamp": "2019-10-15T00:46:23.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133200", + "Timestamp": "2024-05-16T12:31:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5.large", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.034300", - "Timestamp": "2019-10-15T00:46:23.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129500", + "Timestamp": "2024-05-16T12:31:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "13.105600", - "Timestamp": "2019-10-15T00:43:32.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073200", + "Timestamp": "2024-05-16T12:31:13.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "13.105600", - "Timestamp": "2019-10-15T00:43:32.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.450300", + "Timestamp": "2024-05-16T12:31:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "10.291600", - "Timestamp": "2019-10-15T00:43:31.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.445300", + "Timestamp": "2024-05-16T12:31:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "10.291600", - "Timestamp": "2019-10-15T00:43:31.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.320300", + "Timestamp": "2024-05-16T12:31:11.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "p3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "10.261600", - "Timestamp": "2019-10-15T00:43:31.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157000", + "Timestamp": "2024-05-16T12:31:10.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "p3.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "10.261600", - "Timestamp": "2019-10-15T00:43:31.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.197000", + "Timestamp": "2024-05-16T12:31:10.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "10.161600", - "Timestamp": "2019-10-15T00:43:31.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097000", + "Timestamp": "2024-05-16T12:31:10.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "10.161600", - "Timestamp": "2019-10-15T00:43:31.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.782500", + "Timestamp": "2024-05-16T12:31:10.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.119300", - "Timestamp": "2019-10-15T00:38:29.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.777500", + "Timestamp": "2024-05-16T12:31:10.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.119300", - "Timestamp": "2019-10-15T00:38:29.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.652500", + "Timestamp": "2024-05-16T12:31:10.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.159300", - "Timestamp": "2019-10-15T00:38:29.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.468900", + "Timestamp": "2024-05-16T12:31:10.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.159300", - "Timestamp": "2019-10-15T00:38:29.000Z" + "SpotPrice": "0.463900", + "Timestamp": "2024-05-16T12:31:10.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.059300", - "Timestamp": "2019-10-15T00:38:29.000Z" + "SpotPrice": "0.338900", + "Timestamp": "2024-05-16T12:31:10.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.059300", - "Timestamp": "2019-10-15T00:38:29.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.077000", + "Timestamp": "2024-05-16T12:31:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.119300", - "Timestamp": "2019-10-15T00:35:44.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080100", + "Timestamp": "2024-05-16T12:31:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.119300", - "Timestamp": "2019-10-15T00:35:44.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076400", + "Timestamp": "2024-05-16T12:31:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.159300", - "Timestamp": "2019-10-15T00:35:44.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020100", + "Timestamp": "2024-05-16T12:31:09.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.159300", - "Timestamp": "2019-10-15T00:35:44.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.194500", + "Timestamp": "2024-05-16T12:31:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.059300", - "Timestamp": "2019-10-15T00:35:44.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190800", + "Timestamp": "2024-05-16T12:31:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "m3.xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.059300", - "Timestamp": "2019-10-15T00:35:44.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134500", + "Timestamp": "2024-05-16T12:31:06.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5dn.16xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "3.990400", - "Timestamp": "2019-10-15T00:34:54.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220200", + "Timestamp": "2024-05-16T12:31:03.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.254600", - "Timestamp": "2019-10-15T00:20:43.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.512700", + "Timestamp": "2024-05-16T12:31:03.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.224600", - "Timestamp": "2019-10-15T00:20:43.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.920200", + "Timestamp": "2024-05-16T12:30:58.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.124600", - "Timestamp": "2019-10-15T00:20:43.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.537000", + "Timestamp": "2024-05-16T12:30:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5n.xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "0.252500", - "Timestamp": "2019-10-15T00:17:49.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.532000", + "Timestamp": "2024-05-16T12:30:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "0.391600", - "Timestamp": "2019-10-15T00:15:32.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.407000", + "Timestamp": "2024-05-16T12:30:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "0.361600", - "Timestamp": "2019-10-15T00:15:32.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066500", + "Timestamp": "2024-05-16T12:30:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "m5n.4xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "0.261600", - "Timestamp": "2019-10-15T00:15:32.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037500", + "Timestamp": "2024-05-16T12:30:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1b", - "InstanceType": "r5n.24xlarge", - "ProductDescription": "Windows (Amazon VPC)", - "SpotPrice": "6.060400", - "Timestamp": "2019-10-15T00:09:30.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006500", + "Timestamp": "2024-05-16T12:30:57.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux (Amazon VPC)", - "SpotPrice": "1.226200", - "Timestamp": "2019-10-15T00:05:55.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.204000", + "Timestamp": "2024-05-16T12:30:53.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "SUSE Linux (Amazon VPC)", - "SpotPrice": "1.196200", - "Timestamp": "2019-10-15T00:05:55.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.244000", + "Timestamp": "2024-05-16T12:30:53.000Z" }, { - "AvailabilityZone": "ap-southeast-1a", - "InstanceType": "r5dn.16xlarge", - "ProductDescription": "Linux/UNIX (Amazon VPC)", - "SpotPrice": "1.096200", - "Timestamp": "2019-10-15T00:05:55.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144000", + "Timestamp": "2024-05-16T12:30:53.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.269700", - "Timestamp": "2019-10-16T03:00:25.000Z" + "SpotPrice": "0.201900", + "Timestamp": "2024-05-16T12:16:57.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.239700", - "Timestamp": "2019-10-16T03:00:25.000Z" + "SpotPrice": "0.197900", + "Timestamp": "2024-05-16T12:16:57.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.139700", - "Timestamp": "2019-10-16T03:00:25.000Z" + "SpotPrice": "0.141900", + "Timestamp": "2024-05-16T12:16:57.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x1e.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.218600", - "Timestamp": "2019-10-16T03:00:16.000Z" + "SpotPrice": "14.303800", + "Timestamp": "2024-05-16T12:16:54.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m1.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125700", - "Timestamp": "2019-10-16T03:00:14.000Z" + "SpotPrice": "0.118800", + "Timestamp": "2024-05-16T12:16:48.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m1.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.165700", - "Timestamp": "2019-10-16T03:00:14.000Z" + "SpotPrice": "0.158800", + "Timestamp": "2024-05-16T12:16:48.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m1.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065700", - "Timestamp": "2019-10-16T03:00:14.000Z" + "SpotPrice": "0.058800", + "Timestamp": "2024-05-16T12:16:48.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.109700", - "Timestamp": "2019-10-16T02:52:40.000Z" + "SpotPrice": "0.771700", + "Timestamp": "2024-05-16T12:16:44.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.079700", - "Timestamp": "2019-10-16T02:52:40.000Z" + "SpotPrice": "0.766700", + "Timestamp": "2024-05-16T12:16:44.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.979700", - "Timestamp": "2019-10-16T02:52:40.000Z" + "SpotPrice": "0.641700", + "Timestamp": "2024-05-16T12:16:44.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.202200", - "Timestamp": "2019-10-16T02:48:22.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.815800", + "Timestamp": "2024-05-16T12:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.202200", - "Timestamp": "2019-10-16T02:48:22.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.785800", + "Timestamp": "2024-05-16T12:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.685800", + "Timestamp": "2024-05-16T12:16:40.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5n.18xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.202200", - "Timestamp": "2019-10-16T02:48:22.000Z" + "SpotPrice": "4.058700", + "Timestamp": "2024-05-16T12:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.270200", - "Timestamp": "2019-10-16T02:46:58.000Z" + "SpotPrice": "7.936300", + "Timestamp": "2024-05-16T12:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.270200", - "Timestamp": "2019-10-16T02:46:58.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.931300", + "Timestamp": "2024-05-16T12:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.806300", + "Timestamp": "2024-05-16T12:16:40.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.270200", - "Timestamp": "2019-10-16T02:46:58.000Z" + "SpotPrice": "0.572200", + "Timestamp": "2024-05-16T12:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.240200", - "Timestamp": "2019-10-16T02:46:58.000Z" + "SpotPrice": "0.567200", + "Timestamp": "2024-05-16T12:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.240200", - "Timestamp": "2019-10-16T02:46:58.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.442200", + "Timestamp": "2024-05-16T12:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.526000", + "Timestamp": "2024-05-16T12:16:39.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.240200", - "Timestamp": "2019-10-16T02:46:58.000Z" + "SpotPrice": "0.521000", + "Timestamp": "2024-05-16T12:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.140200", - "Timestamp": "2019-10-16T02:46:58.000Z" + "SpotPrice": "0.396000", + "Timestamp": "2024-05-16T12:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.140200", - "Timestamp": "2019-10-16T02:46:58.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.041100", + "Timestamp": "2024-05-16T12:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.985900", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.955900", + "Timestamp": "2024-05-16T12:16:37.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.18xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.140200", - "Timestamp": "2019-10-16T02:46:58.000Z" + "SpotPrice": "1.855900", + "Timestamp": "2024-05-16T12:16:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.552800", - "Timestamp": "2019-10-16T02:46:52.000Z" + "SpotPrice": "0.432300", + "Timestamp": "2024-05-16T12:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.690400", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.187100", + "Timestamp": "2024-05-16T12:16:35.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5zn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "10.291600", - "Timestamp": "2019-10-16T02:46:36.000Z" + "SpotPrice": "0.148100", + "Timestamp": "2024-05-16T12:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5zn.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "10.261600", - "Timestamp": "2019-10-16T02:46:36.000Z" + "SpotPrice": "0.144400", + "Timestamp": "2024-05-16T12:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5zn.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "10.161600", - "Timestamp": "2019-10-16T02:46:36.000Z" + "SpotPrice": "0.088100", + "Timestamp": "2024-05-16T12:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "p3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "13.105600", - "Timestamp": "2019-10-16T02:45:36.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T12:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151400", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051400", + "Timestamp": "2024-05-16T12:16:31.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.268300", - "Timestamp": "2019-10-16T02:44:14.000Z" + "SpotPrice": "0.204600", + "Timestamp": "2024-05-16T12:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.238300", - "Timestamp": "2019-10-16T02:44:14.000Z" + "SpotPrice": "0.200900", + "Timestamp": "2024-05-16T12:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.138300", - "Timestamp": "2019-10-16T02:44:14.000Z" + "SpotPrice": "0.144600", + "Timestamp": "2024-05-16T12:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.128900", - "Timestamp": "2019-10-16T02:43:30.000Z" + "SpotPrice": "0.080100", + "Timestamp": "2024-05-16T12:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.168900", - "Timestamp": "2019-10-16T02:43:30.000Z" + "SpotPrice": "0.076400", + "Timestamp": "2024-05-16T12:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.068900", - "Timestamp": "2019-10-16T02:43:30.000Z" + "SpotPrice": "0.020100", + "Timestamp": "2024-05-16T12:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125600", - "Timestamp": "2019-10-16T02:41:21.000Z" + "SpotPrice": "0.646500", + "Timestamp": "2024-05-16T12:16:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125600", - "Timestamp": "2019-10-16T02:41:21.000Z" + "SpotPrice": "0.649200", + "Timestamp": "2024-05-16T12:16:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.165600", - "Timestamp": "2019-10-16T02:41:21.000Z" + "SpotPrice": "0.641500", + "Timestamp": "2024-05-16T12:16:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.165600", - "Timestamp": "2019-10-16T02:41:21.000Z" + "SpotPrice": "0.644200", + "Timestamp": "2024-05-16T12:16:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065600", - "Timestamp": "2019-10-16T02:41:21.000Z" + "SpotPrice": "0.516500", + "Timestamp": "2024-05-16T12:16:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065600", - "Timestamp": "2019-10-16T02:41:21.000Z" + "SpotPrice": "0.519200", + "Timestamp": "2024-05-16T12:16:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.076300", - "Timestamp": "2019-10-16T02:41:06.000Z" + "SpotPrice": "5.665500", + "Timestamp": "2024-05-16T12:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.076300", - "Timestamp": "2019-10-16T02:41:06.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.805500", + "Timestamp": "2024-05-16T12:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.076300", - "Timestamp": "2019-10-16T02:41:06.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.800500", + "Timestamp": "2024-05-16T12:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.998300", - "Timestamp": "2019-10-16T02:40:54.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.675500", + "Timestamp": "2024-05-16T12:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.998300", - "Timestamp": "2019-10-16T02:40:54.000Z" + "SpotPrice": "0.149700", + "Timestamp": "2024-05-16T12:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.998300", - "Timestamp": "2019-10-16T02:40:54.000Z" + "SpotPrice": "0.200200", + "Timestamp": "2024-05-16T12:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.968300", - "Timestamp": "2019-10-16T02:40:54.000Z" + "SpotPrice": "0.145700", + "Timestamp": "2024-05-16T12:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.968300", - "Timestamp": "2019-10-16T02:40:54.000Z" + "SpotPrice": "0.196200", + "Timestamp": "2024-05-16T12:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089700", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140200", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.203000", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.968300", - "Timestamp": "2019-10-16T02:40:54.000Z" + "SpotPrice": "0.198000", + "Timestamp": "2024-05-16T12:16:26.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073000", + "Timestamp": "2024-05-16T12:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.868300", - "Timestamp": "2019-10-16T02:40:54.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.202900", + "Timestamp": "2024-05-16T12:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.868300", - "Timestamp": "2019-10-16T02:40:54.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.197900", + "Timestamp": "2024-05-16T12:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.868300", - "Timestamp": "2019-10-16T02:40:54.000Z" + "SpotPrice": "1.072900", + "Timestamp": "2024-05-16T12:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.295200", - "Timestamp": "2019-10-16T02:35:55.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.225400", + "Timestamp": "2024-05-16T12:16:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.145200", - "Timestamp": "2019-10-16T02:35:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.220400", + "Timestamp": "2024-05-16T12:16:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.147900", - "Timestamp": "2019-10-16T02:35:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.095400", + "Timestamp": "2024-05-16T12:16:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.408800", - "Timestamp": "2019-10-16T02:27:05.000Z" + "SpotPrice": "1.096700", + "Timestamp": "2024-05-16T12:16:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.378800", - "Timestamp": "2019-10-16T02:27:05.000Z" + "SpotPrice": "1.091700", + "Timestamp": "2024-05-16T12:16:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.278800", - "Timestamp": "2019-10-16T02:27:05.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "z1d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.301500", - "Timestamp": "2019-10-16T02:19:06.000Z" + "SpotPrice": "0.966700", + "Timestamp": "2024-05-16T12:16:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129000", - "Timestamp": "2019-10-16T02:18:29.000Z" + "SpotPrice": "0.173100", + "Timestamp": "2024-05-16T12:16:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.169000", - "Timestamp": "2019-10-16T02:18:29.000Z" + "SpotPrice": "0.169100", + "Timestamp": "2024-05-16T12:16:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069000", - "Timestamp": "2019-10-16T02:18:29.000Z" + "SpotPrice": "0.113100", + "Timestamp": "2024-05-16T12:16:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.280000", - "Timestamp": "2019-10-16T02:18:22.000Z" + "SpotPrice": "0.922000", + "Timestamp": "2024-05-16T12:16:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.250000", - "Timestamp": "2019-10-16T02:18:22.000Z" + "SpotPrice": "0.917000", + "Timestamp": "2024-05-16T12:16:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.150000", - "Timestamp": "2019-10-16T02:18:22.000Z" + "SpotPrice": "0.792000", + "Timestamp": "2024-05-16T12:16:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.metal-48xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.133200", - "Timestamp": "2019-10-16T02:10:29.000Z" + "SpotPrice": "2.226600", + "Timestamp": "2024-05-16T12:16:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.metal-48xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.173200", - "Timestamp": "2019-10-16T02:10:29.000Z" + "SpotPrice": "2.221600", + "Timestamp": "2024-05-16T12:16:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.073200", - "Timestamp": "2019-10-16T02:10:29.000Z" + "SpotPrice": "2.096600", + "Timestamp": "2024-05-16T12:16:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1e.32xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "11.736400", - "Timestamp": "2019-10-16T02:02:07.000Z" + "SpotPrice": "0.621100", + "Timestamp": "2024-05-16T12:16:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1e.32xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "11.706400", - "Timestamp": "2019-10-16T02:02:07.000Z" + "SpotPrice": "0.616100", + "Timestamp": "2024-05-16T12:16:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1e.32xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "11.606400", - "Timestamp": "2019-10-16T02:02:07.000Z" + "SpotPrice": "0.491100", + "Timestamp": "2024-05-16T12:16:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "inf1.6xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.303800", - "Timestamp": "2019-10-16T01:54:02.000Z" + "SpotPrice": "0.355700", + "Timestamp": "2024-05-16T12:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "inf1.6xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.273800", - "Timestamp": "2019-10-16T01:54:02.000Z" + "SpotPrice": "0.350700", + "Timestamp": "2024-05-16T12:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "inf1.6xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.173800", - "Timestamp": "2019-10-16T01:54:02.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m1.large", - "ProductDescription": "Windows", - "SpotPrice": "0.161300", - "Timestamp": "2019-10-16T01:53:52.000Z" + "SpotPrice": "0.225700", + "Timestamp": "2024-05-16T12:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.760200", - "Timestamp": "2019-10-16T01:53:41.000Z" + "SpotPrice": "0.317800", + "Timestamp": "2024-05-16T12:16:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.730200", - "Timestamp": "2019-10-16T01:53:41.000Z" + "SpotPrice": "0.312800", + "Timestamp": "2024-05-16T12:16:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.630200", - "Timestamp": "2019-10-16T01:53:41.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.384500", - "Timestamp": "2019-10-16T01:53:25.000Z" + "SpotPrice": "0.187800", + "Timestamp": "2024-05-16T12:16:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.284700", - "Timestamp": "2019-10-16T01:45:14.000Z" + "SpotPrice": "0.095300", + "Timestamp": "2024-05-16T12:16:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.254700", - "Timestamp": "2019-10-16T01:45:14.000Z" + "SpotPrice": "0.091300", + "Timestamp": "2024-05-16T12:16:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.154700", - "Timestamp": "2019-10-16T01:45:14.000Z" + "SpotPrice": "0.035300", + "Timestamp": "2024-05-16T12:16:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g4dn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.302400", - "Timestamp": "2019-10-16T01:37:22.000Z" + "SpotPrice": "0.273400", + "Timestamp": "2024-05-16T12:16:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.524500", - "Timestamp": "2019-10-16T01:37:03.000Z" + "SpotPrice": "2.975400", + "Timestamp": "2024-05-16T12:16:17.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "6.193300", - "Timestamp": "2019-10-16T01:36:52.000Z" + "SpotPrice": "1.373300", + "Timestamp": "2024-05-16T12:16:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "6.163300", - "Timestamp": "2019-10-16T01:36:52.000Z" + "SpotPrice": "1.368300", + "Timestamp": "2024-05-16T12:16:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "6.063300", - "Timestamp": "2019-10-16T01:36:52.000Z" + "SpotPrice": "1.243300", + "Timestamp": "2024-05-16T12:16:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.764000", - "Timestamp": "2019-10-16T01:36:48.000Z" + "SpotPrice": "0.271500", + "Timestamp": "2024-05-16T12:16:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.734000", - "Timestamp": "2019-10-16T01:36:48.000Z" + "SpotPrice": "0.266500", + "Timestamp": "2024-05-16T12:16:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.634000", - "Timestamp": "2019-10-16T01:36:48.000Z" + "SpotPrice": "0.141500", + "Timestamp": "2024-05-16T12:16:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.760400", - "Timestamp": "2019-10-16T01:28:47.000Z" + "SpotPrice": "1.554100", + "Timestamp": "2024-05-16T12:16:13.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.730400", - "Timestamp": "2019-10-16T01:28:47.000Z" + "SpotPrice": "1.524100", + "Timestamp": "2024-05-16T12:16:13.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.630400", - "Timestamp": "2019-10-16T01:28:47.000Z" + "SpotPrice": "1.424100", + "Timestamp": "2024-05-16T12:16:13.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.269800", - "Timestamp": "2019-10-16T01:28:24.000Z" + "SpotPrice": "0.475900", + "Timestamp": "2024-05-16T12:16:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.239800", - "Timestamp": "2019-10-16T01:28:24.000Z" + "SpotPrice": "0.470900", + "Timestamp": "2024-05-16T12:16:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.139800", - "Timestamp": "2019-10-16T01:28:24.000Z" + "SpotPrice": "0.345900", + "Timestamp": "2024-05-16T12:16:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.263900", - "Timestamp": "2019-10-16T01:20:38.000Z" + "SpotPrice": "0.130000", + "Timestamp": "2024-05-16T12:16:03.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r3.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.233900", - "Timestamp": "2019-10-16T01:20:38.000Z" + "SpotPrice": "0.170000", + "Timestamp": "2024-05-16T12:16:03.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r3.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.133900", - "Timestamp": "2019-10-16T01:20:38.000Z" + "SpotPrice": "0.070000", + "Timestamp": "2024-05-16T12:16:03.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.099900", + "Timestamp": "2024-05-16T12:16:01.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.131200", - "Timestamp": "2019-10-16T01:20:32.000Z" + "SpotPrice": "0.420400", + "Timestamp": "2024-05-16T12:16:01.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.171200", - "Timestamp": "2019-10-16T01:20:32.000Z" + "SpotPrice": "0.390400", + "Timestamp": "2024-05-16T12:16:01.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.071200", - "Timestamp": "2019-10-16T01:20:32.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.684900", - "Timestamp": "2019-10-16T01:12:08.000Z" + "SpotPrice": "0.290400", + "Timestamp": "2024-05-16T12:16:01.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.405700", - "Timestamp": "2019-10-16T01:11:40.000Z" + "SpotPrice": "0.479900", + "Timestamp": "2024-05-16T12:15:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.375700", - "Timestamp": "2019-10-16T01:11:40.000Z" + "SpotPrice": "0.474900", + "Timestamp": "2024-05-16T12:15:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.275700", - "Timestamp": "2019-10-16T01:11:40.000Z" + "SpotPrice": "0.349900", + "Timestamp": "2024-05-16T12:15:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m3.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.246000", - "Timestamp": "2019-10-16T01:11:39.000Z" + "SpotPrice": "0.134300", + "Timestamp": "2024-05-16T12:15:55.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m3.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.286000", - "Timestamp": "2019-10-16T01:11:39.000Z" + "SpotPrice": "0.130300", + "Timestamp": "2024-05-16T12:15:55.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m3.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.186000", - "Timestamp": "2019-10-16T01:11:39.000Z" + "SpotPrice": "0.074300", + "Timestamp": "2024-05-16T12:15:55.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.323200", - "Timestamp": "2019-10-16T01:03:26.000Z" + "SpotPrice": "0.571300", + "Timestamp": "2024-05-16T12:13:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.293200", - "Timestamp": "2019-10-16T01:03:26.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.996400", + "Timestamp": "2024-05-16T12:13:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.193200", - "Timestamp": "2019-10-16T01:03:26.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.396400", + "Timestamp": "2024-05-16T12:13:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "z1d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.276300", - "Timestamp": "2019-10-16T01:03:24.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.566300", + "Timestamp": "2024-05-16T12:13:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "z1d.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.316300", - "Timestamp": "2019-10-16T01:03:24.000Z" + "SpotPrice": "0.991400", + "Timestamp": "2024-05-16T12:13:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "z1d.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.391400", + "Timestamp": "2024-05-16T12:13:39.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.216300", - "Timestamp": "2019-10-16T01:03:24.000Z" + "SpotPrice": "0.441300", + "Timestamp": "2024-05-16T12:13:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.359500", - "Timestamp": "2019-10-16T00:55:25.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.866400", + "Timestamp": "2024-05-16T12:13:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.284600", - "Timestamp": "2019-10-16T00:55:11.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.266400", + "Timestamp": "2024-05-16T12:13:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.254600", - "Timestamp": "2019-10-16T00:55:11.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.384200", + "Timestamp": "2024-05-16T12:13:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.154600", - "Timestamp": "2019-10-16T00:55:11.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.384200", + "Timestamp": "2024-05-16T12:13:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.107800", - "Timestamp": "2019-10-16T00:55:10.000Z" + "SpotPrice": "3.384200", + "Timestamp": "2024-05-16T12:13:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3a.nano", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.006400", - "Timestamp": "2019-10-16T00:50:19.000Z" + "SpotPrice": "0.216100", + "Timestamp": "2024-05-16T12:13:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3a.nano", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.006400", - "Timestamp": "2019-10-16T00:50:19.000Z" + "SpotPrice": "0.216100", + "Timestamp": "2024-05-16T12:13:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.949200", - "Timestamp": "2019-10-16T00:46:03.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216100", + "Timestamp": "2024-05-16T12:13:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.metal", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.949200", - "Timestamp": "2019-10-16T00:46:03.000Z" + "SpotPrice": "0.146500", + "Timestamp": "2024-05-16T12:13:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.metal", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.949200", - "Timestamp": "2019-10-16T00:46:03.000Z" + "SpotPrice": "0.112300", + "Timestamp": "2024-05-16T12:13:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.919200", - "Timestamp": "2019-10-16T00:46:03.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.150100", + "Timestamp": "2024-05-16T12:13:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.metal", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.919200", - "Timestamp": "2019-10-16T00:46:03.000Z" + "SpotPrice": "0.142800", + "Timestamp": "2024-05-16T12:13:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.metal", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.919200", - "Timestamp": "2019-10-16T00:46:03.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.metal", - "ProductDescription": "Windows", - "SpotPrice": "6.235200", - "Timestamp": "2019-10-16T00:46:03.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.metal", - "ProductDescription": "Windows", - "SpotPrice": "6.235200", - "Timestamp": "2019-10-16T00:46:03.000Z" + "SpotPrice": "0.108600", + "Timestamp": "2024-05-16T12:13:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.metal", - "ProductDescription": "Windows", - "SpotPrice": "6.235200", - "Timestamp": "2019-10-16T00:46:03.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146400", + "Timestamp": "2024-05-16T12:13:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.metal", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.819200", - "Timestamp": "2019-10-16T00:46:03.000Z" + "SpotPrice": "0.086500", + "Timestamp": "2024-05-16T12:13:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.metal", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.819200", - "Timestamp": "2019-10-16T00:46:03.000Z" + "SpotPrice": "0.052300", + "Timestamp": "2024-05-16T12:13:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.metal", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.819200", - "Timestamp": "2019-10-16T00:46:03.000Z" + "SpotPrice": "0.090100", + "Timestamp": "2024-05-16T12:13:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m1.medium", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.081700", - "Timestamp": "2019-10-16T00:39:46.000Z" + "SpotPrice": "0.846000", + "Timestamp": "2024-05-16T12:02:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.191900", - "Timestamp": "2019-10-16T00:30:31.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.692800", + "Timestamp": "2024-05-16T12:02:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.231900", - "Timestamp": "2019-10-16T00:30:31.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.420400", + "Timestamp": "2024-05-16T12:02:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.131900", - "Timestamp": "2019-10-16T00:30:31.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.238800", + "Timestamp": "2024-05-16T12:02:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m4.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m2.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095600", - "Timestamp": "2019-10-16T00:30:00.000Z" + "SpotPrice": "0.197400", + "Timestamp": "2024-05-16T12:02:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m4.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m2.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-16T00:30:00.000Z" + "SpotPrice": "0.237400", + "Timestamp": "2024-05-16T12:02:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m4.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m2.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035600", - "Timestamp": "2019-10-16T00:30:00.000Z" + "SpotPrice": "0.137400", + "Timestamp": "2024-05-16T12:02:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.417800", - "Timestamp": "2019-10-16T00:29:53.000Z" + "SpotPrice": "0.215700", + "Timestamp": "2024-05-16T12:02:02.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.387800", - "Timestamp": "2019-10-16T00:29:53.000Z" + "SpotPrice": "0.210700", + "Timestamp": "2024-05-16T12:02:02.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.287800", - "Timestamp": "2019-10-16T00:29:53.000Z" + "SpotPrice": "0.085700", + "Timestamp": "2024-05-16T12:02:02.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125800", - "Timestamp": "2019-10-16T00:21:27.000Z" + "SpotPrice": "0.102800", + "Timestamp": "2024-05-16T12:02:01.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.165800", - "Timestamp": "2019-10-16T00:21:27.000Z" + "SpotPrice": "0.099100", + "Timestamp": "2024-05-16T12:02:01.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065800", - "Timestamp": "2019-10-16T00:21:27.000Z" + "SpotPrice": "0.042800", + "Timestamp": "2024-05-16T12:02:01.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.353800", - "Timestamp": "2019-10-16T00:13:25.000Z" + "SpotPrice": "1.812600", + "Timestamp": "2024-05-16T12:01:57.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.438000", - "Timestamp": "2019-10-16T00:05:24.000Z" + "SpotPrice": "0.341900", + "Timestamp": "2024-05-16T12:01:56.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.408000", - "Timestamp": "2019-10-16T00:05:24.000Z" + "SpotPrice": "0.336900", + "Timestamp": "2024-05-16T12:01:56.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.308000", - "Timestamp": "2019-10-16T00:05:24.000Z" + "SpotPrice": "0.211900", + "Timestamp": "2024-05-16T12:01:56.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.136500", - "Timestamp": "2019-10-16T00:05:23.000Z" + "SpotPrice": "0.240300", + "Timestamp": "2024-05-16T12:01:54.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.176500", - "Timestamp": "2019-10-16T00:05:23.000Z" + "SpotPrice": "0.235300", + "Timestamp": "2024-05-16T12:01:54.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.076500", - "Timestamp": "2019-10-16T00:05:23.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.145900", - "Timestamp": "2019-10-16T00:05:16.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.859400", - "Timestamp": "2019-10-15T23:56:55.000Z" + "SpotPrice": "0.110300", + "Timestamp": "2024-05-16T12:01:54.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129900", - "Timestamp": "2019-10-15T23:56:51.000Z" + "SpotPrice": "0.468400", + "Timestamp": "2024-05-16T12:01:53.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.169900", - "Timestamp": "2019-10-15T23:56:51.000Z" + "SpotPrice": "0.463400", + "Timestamp": "2024-05-16T12:01:53.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069900", - "Timestamp": "2019-10-15T23:56:51.000Z" + "SpotPrice": "0.338400", + "Timestamp": "2024-05-16T12:01:53.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129100", - "Timestamp": "2019-10-15T23:56:50.000Z" + "SpotPrice": "0.832600", + "Timestamp": "2024-05-16T12:01:53.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.169100", - "Timestamp": "2019-10-15T23:56:50.000Z" + "SpotPrice": "0.827600", + "Timestamp": "2024-05-16T12:01:53.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069100", - "Timestamp": "2019-10-15T23:56:50.000Z" + "SpotPrice": "0.702600", + "Timestamp": "2024-05-16T12:01:53.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.241300", + "Timestamp": "2024-05-16T12:01:50.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.927200", - "Timestamp": "2019-10-15T23:56:46.000Z" + "SpotPrice": "1.722700", + "Timestamp": "2024-05-16T12:01:46.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.897200", - "Timestamp": "2019-10-15T23:56:46.000Z" + "SpotPrice": "1.717700", + "Timestamp": "2024-05-16T12:01:46.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.797200", - "Timestamp": "2019-10-15T23:56:46.000Z" + "SpotPrice": "1.592700", + "Timestamp": "2024-05-16T12:01:46.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.130300", - "Timestamp": "2019-10-15T23:56:26.000Z" + "SpotPrice": "0.346800", + "Timestamp": "2024-05-16T12:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c4.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.170300", - "Timestamp": "2019-10-15T23:56:26.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.336300", + "Timestamp": "2024-05-16T12:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.070300", - "Timestamp": "2019-10-15T23:56:26.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.316800", + "Timestamp": "2024-05-16T12:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.447300", - "Timestamp": "2019-10-15T23:56:24.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.306300", + "Timestamp": "2024-05-16T12:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.417300", - "Timestamp": "2019-10-15T23:56:24.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.216800", + "Timestamp": "2024-05-16T12:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.317300", - "Timestamp": "2019-10-15T23:56:24.000Z" + "SpotPrice": "0.206300", + "Timestamp": "2024-05-16T12:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t2.large", - "ProductDescription": "Windows", - "SpotPrice": "0.063000", - "Timestamp": "2019-10-15T23:48:47.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.661200", + "Timestamp": "2024-05-16T12:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t2.large", - "ProductDescription": "Windows", - "SpotPrice": "0.063000", - "Timestamp": "2019-10-15T23:48:47.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.656200", + "Timestamp": "2024-05-16T12:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t2.large", - "ProductDescription": "Windows", - "SpotPrice": "0.063000", - "Timestamp": "2019-10-15T23:48:47.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.531200", + "Timestamp": "2024-05-16T12:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m1.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.301000", - "Timestamp": "2019-10-15T23:48:46.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.151700", + "Timestamp": "2024-05-16T12:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.271000", - "Timestamp": "2019-10-15T23:48:24.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.146700", + "Timestamp": "2024-05-16T12:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t2.small", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.021700", + "Timestamp": "2024-05-16T12:01:36.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.018400", - "Timestamp": "2019-10-15T23:48:11.000Z" + "SpotPrice": "0.230200", + "Timestamp": "2024-05-16T12:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.421400", - "Timestamp": "2019-10-15T23:48:08.000Z" + "SpotPrice": "0.198000", + "Timestamp": "2024-05-16T12:01:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7gd.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.391400", - "Timestamp": "2019-10-15T23:48:08.000Z" + "SpotPrice": "0.193000", + "Timestamp": "2024-05-16T12:01:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.291400", - "Timestamp": "2019-10-15T23:48:08.000Z" + "SpotPrice": "0.068000", + "Timestamp": "2024-05-16T12:01:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5ad.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.152500", - "Timestamp": "2019-10-15T23:47:47.000Z" + "SpotPrice": "0.596800", + "Timestamp": "2024-05-16T12:01:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.large", "ProductDescription": "Windows", - "SpotPrice": "6.152500", - "Timestamp": "2019-10-15T23:47:47.000Z" + "SpotPrice": "0.125700", + "Timestamp": "2024-05-16T12:01:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t2.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095000", - "Timestamp": "2019-10-15T23:46:55.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-16T12:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t2.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095000", - "Timestamp": "2019-10-15T23:46:55.000Z" + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T12:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t2.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095000", - "Timestamp": "2019-10-15T23:46:55.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106000", + "Timestamp": "2024-05-16T12:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t2.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135000", - "Timestamp": "2019-10-15T23:46:55.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049700", + "Timestamp": "2024-05-16T12:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t2.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135000", - "Timestamp": "2019-10-15T23:46:55.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.434500", + "Timestamp": "2024-05-16T12:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t2.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135000", - "Timestamp": "2019-10-15T23:46:55.000Z" + "SpotPrice": "1.429500", + "Timestamp": "2024-05-16T12:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t2.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035000", - "Timestamp": "2019-10-15T23:46:55.000Z" + "SpotPrice": "1.304500", + "Timestamp": "2024-05-16T12:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t2.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035000", - "Timestamp": "2019-10-15T23:46:55.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.242000", + "Timestamp": "2024-05-16T12:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t2.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035000", - "Timestamp": "2019-10-15T23:46:55.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.237000", + "Timestamp": "2024-05-16T12:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.866500", - "Timestamp": "2019-10-15T23:46:46.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.112000", + "Timestamp": "2024-05-16T12:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.866500", - "Timestamp": "2019-10-15T23:46:46.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.836500", - "Timestamp": "2019-10-15T23:46:46.000Z" + "SpotPrice": "6.313700", + "Timestamp": "2024-05-16T12:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.836500", - "Timestamp": "2019-10-15T23:46:46.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.736500", - "Timestamp": "2019-10-15T23:46:46.000Z" + "SpotPrice": "6.308700", + "Timestamp": "2024-05-16T12:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.736500", - "Timestamp": "2019-10-15T23:46:46.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.512700", - "Timestamp": "2019-10-15T23:44:53.000Z" + "SpotPrice": "6.183700", + "Timestamp": "2024-05-16T12:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.512700", - "Timestamp": "2019-10-15T23:44:53.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.235500", + "Timestamp": "2024-05-16T12:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.512700", - "Timestamp": "2019-10-15T23:44:53.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.230500", + "Timestamp": "2024-05-16T12:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3a.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067100", - "Timestamp": "2019-10-15T23:44:50.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105500", + "Timestamp": "2024-05-16T12:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3a.small", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5n.9xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067100", - "Timestamp": "2019-10-15T23:44:50.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3a.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.107100", - "Timestamp": "2019-10-15T23:44:50.000Z" + "SpotPrice": "1.096000", + "Timestamp": "2024-05-16T12:01:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3a.small", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5n.9xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.107100", - "Timestamp": "2019-10-15T23:44:50.000Z" + "SpotPrice": "1.091000", + "Timestamp": "2024-05-16T12:01:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3a.small", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5n.9xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007100", - "Timestamp": "2019-10-15T23:44:50.000Z" + "SpotPrice": "0.966000", + "Timestamp": "2024-05-16T12:01:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3a.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007100", - "Timestamp": "2019-10-15T23:44:50.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.339100", + "Timestamp": "2024-05-16T12:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3a.small", - "ProductDescription": "Windows", - "SpotPrice": "0.025500", - "Timestamp": "2019-10-15T23:44:50.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.334100", + "Timestamp": "2024-05-16T12:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3a.small", - "ProductDescription": "Windows", - "SpotPrice": "0.025500", - "Timestamp": "2019-10-15T23:44:50.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.209100", + "Timestamp": "2024-05-16T12:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.128900", - "Timestamp": "2019-10-15T23:44:13.000Z" + "SpotPrice": "0.176500", + "Timestamp": "2024-05-16T12:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.128900", - "Timestamp": "2019-10-15T23:44:13.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172800", + "Timestamp": "2024-05-16T12:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.128900", - "Timestamp": "2019-10-15T23:44:13.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.116500", + "Timestamp": "2024-05-16T12:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5d.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.168900", - "Timestamp": "2019-10-15T23:44:13.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.582600", + "Timestamp": "2024-05-16T12:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.168900", - "Timestamp": "2019-10-15T23:44:13.000Z" + "SpotPrice": "0.578900", + "Timestamp": "2024-05-16T12:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5d.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.168900", - "Timestamp": "2019-10-15T23:44:13.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.522600", + "Timestamp": "2024-05-16T12:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", + "AvailabilityZone": "sa-east-1c", "InstanceType": "c5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.068900", - "Timestamp": "2019-10-15T23:44:13.000Z" + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164900", + "Timestamp": "2024-05-16T12:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", + "AvailabilityZone": "sa-east-1c", "InstanceType": "c5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.068900", - "Timestamp": "2019-10-15T23:44:13.000Z" + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160900", + "Timestamp": "2024-05-16T12:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", + "AvailabilityZone": "sa-east-1c", "InstanceType": "c5d.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.068900", - "Timestamp": "2019-10-15T23:44:13.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.274700", - "Timestamp": "2019-10-15T23:44:07.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.274700", - "Timestamp": "2019-10-15T23:44:07.000Z" + "SpotPrice": "0.104900", + "Timestamp": "2024-05-16T12:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.274700", - "Timestamp": "2019-10-15T23:44:07.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.244700", - "Timestamp": "2019-10-15T23:44:07.000Z" + "SpotPrice": "2.055500", + "Timestamp": "2024-05-16T12:01:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.244700", - "Timestamp": "2019-10-15T23:44:07.000Z" + "SpotPrice": "2.025500", + "Timestamp": "2024-05-16T12:01:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.244700", - "Timestamp": "2019-10-15T23:44:07.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.925500", + "Timestamp": "2024-05-16T12:01:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.144700", - "Timestamp": "2019-10-15T23:44:07.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.093400", + "Timestamp": "2024-05-16T12:01:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.144700", - "Timestamp": "2019-10-15T23:44:07.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.088400", + "Timestamp": "2024-05-16T12:01:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.144700", - "Timestamp": "2019-10-15T23:44:07.000Z" + "SpotPrice": "0.963400", + "Timestamp": "2024-05-16T12:01:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.252900", - "Timestamp": "2019-10-15T23:43:36.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.831300", + "Timestamp": "2024-05-16T12:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.252900", - "Timestamp": "2019-10-15T23:43:36.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.826300", + "Timestamp": "2024-05-16T12:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.252900", - "Timestamp": "2019-10-15T23:43:36.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.701300", + "Timestamp": "2024-05-16T12:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.519600", - "Timestamp": "2019-10-15T23:41:31.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146000", + "Timestamp": "2024-05-16T12:01:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.519600", - "Timestamp": "2019-10-15T23:41:31.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142000", + "Timestamp": "2024-05-16T12:01:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.519600", - "Timestamp": "2019-10-15T23:41:31.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086000", + "Timestamp": "2024-05-16T12:01:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096200", - "Timestamp": "2019-10-15T23:40:40.000Z" + "SpotPrice": "2.936600", + "Timestamp": "2024-05-16T12:01:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5ad.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096200", - "Timestamp": "2019-10-15T23:40:40.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.931600", + "Timestamp": "2024-05-16T12:01:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5ad.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096200", - "Timestamp": "2019-10-15T23:40:40.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.806600", + "Timestamp": "2024-05-16T12:01:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136200", - "Timestamp": "2019-10-15T23:40:40.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.355500", + "Timestamp": "2024-05-16T12:01:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5ad.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136200", - "Timestamp": "2019-10-15T23:40:40.000Z" + "SpotPrice": "2.350500", + "Timestamp": "2024-05-16T12:01:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5ad.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136200", - "Timestamp": "2019-10-15T23:40:40.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.225500", + "Timestamp": "2024-05-16T12:01:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036200", - "Timestamp": "2019-10-15T23:40:40.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.380800", + "Timestamp": "2024-05-16T12:01:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5ad.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036200", - "Timestamp": "2019-10-15T23:40:40.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.192000", + "Timestamp": "2024-05-16T12:01:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5ad.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.162000", + "Timestamp": "2024-05-16T12:01:18.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.18xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036200", - "Timestamp": "2019-10-15T23:40:40.000Z" + "SpotPrice": "1.062000", + "Timestamp": "2024-05-16T12:01:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c3.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.023300", - "Timestamp": "2019-10-15T23:39:38.000Z" + "SpotPrice": "0.307000", + "Timestamp": "2024-05-16T12:01:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c3.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.993300", - "Timestamp": "2019-10-15T23:39:38.000Z" + "SpotPrice": "0.277000", + "Timestamp": "2024-05-16T12:01:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c3.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.893300", - "Timestamp": "2019-10-15T23:39:38.000Z" + "SpotPrice": "0.177000", + "Timestamp": "2024-05-16T12:01:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.849200", + "Timestamp": "2024-05-16T12:01:13.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x2iedn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.056500", - "Timestamp": "2019-10-15T23:31:50.000Z" + "SpotPrice": "0.809600", + "Timestamp": "2024-05-16T12:01:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x2iedn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.026500", - "Timestamp": "2019-10-15T23:31:50.000Z" + "SpotPrice": "0.804600", + "Timestamp": "2024-05-16T12:01:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x2iedn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.926500", - "Timestamp": "2019-10-15T23:31:50.000Z" + "SpotPrice": "0.679600", + "Timestamp": "2024-05-16T12:01:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5n.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.159900", - "Timestamp": "2019-10-15T23:23:37.000Z" + "SpotPrice": "0.175500", + "Timestamp": "2024-05-16T12:01:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5n.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.129900", - "Timestamp": "2019-10-15T23:23:37.000Z" + "SpotPrice": "0.171500", + "Timestamp": "2024-05-16T12:01:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5n.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.029900", - "Timestamp": "2019-10-15T23:23:37.000Z" + "SpotPrice": "0.115500", + "Timestamp": "2024-05-16T12:01:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.789200", - "Timestamp": "2019-10-15T23:15:56.000Z" + "SpotPrice": "0.968400", + "Timestamp": "2024-05-16T12:01:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.759200", - "Timestamp": "2019-10-15T23:15:56.000Z" + "SpotPrice": "0.963400", + "Timestamp": "2024-05-16T12:01:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.659200", - "Timestamp": "2019-10-15T23:15:56.000Z" + "SpotPrice": "0.838400", + "Timestamp": "2024-05-16T12:01:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.272500", - "Timestamp": "2019-10-15T23:06:37.000Z" + "SpotPrice": "5.046200", + "Timestamp": "2024-05-16T12:01:11.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126900", - "Timestamp": "2019-10-15T23:06:31.000Z" + "SpotPrice": "0.172900", + "Timestamp": "2024-05-16T12:01:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.166900", - "Timestamp": "2019-10-15T23:06:31.000Z" + "SpotPrice": "0.169200", + "Timestamp": "2024-05-16T12:01:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066900", - "Timestamp": "2019-10-15T23:06:31.000Z" + "SpotPrice": "0.112900", + "Timestamp": "2024-05-16T12:01:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.metal", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.451600", - "Timestamp": "2019-10-15T23:06:31.000Z" + "SpotPrice": "1.157100", + "Timestamp": "2024-05-16T12:01:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.metal", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5a.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "4.421600", - "Timestamp": "2019-10-15T23:06:31.000Z" + "SpotPrice": "1.152100", + "Timestamp": "2024-05-16T12:01:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.metal", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.321600", - "Timestamp": "2019-10-15T23:06:31.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.575000", - "Timestamp": "2019-10-15T22:59:04.000Z" + "SpotPrice": "1.027100", + "Timestamp": "2024-05-16T12:01:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.393200", - "Timestamp": "2019-10-15T22:58:37.000Z" + "SpotPrice": "2.812000", + "Timestamp": "2024-05-16T12:01:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.363200", - "Timestamp": "2019-10-15T22:58:37.000Z" + "SpotPrice": "2.807000", + "Timestamp": "2024-05-16T12:01:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.263200", - "Timestamp": "2019-10-15T22:58:37.000Z" + "SpotPrice": "2.682000", + "Timestamp": "2024-05-16T12:01:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.271300", - "Timestamp": "2019-10-15T22:58:24.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173600", + "Timestamp": "2024-05-16T12:01:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.655000", - "Timestamp": "2019-10-15T22:44:06.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169900", + "Timestamp": "2024-05-16T12:01:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.655000", - "Timestamp": "2019-10-15T22:44:06.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113600", + "Timestamp": "2024-05-16T12:01:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.655000", - "Timestamp": "2019-10-15T22:44:06.000Z" + "SpotPrice": "0.779100", + "Timestamp": "2024-05-16T12:01:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.625000", - "Timestamp": "2019-10-15T22:44:06.000Z" + "SpotPrice": "0.774100", + "Timestamp": "2024-05-16T12:01:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.625000", - "Timestamp": "2019-10-15T22:44:06.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.649100", + "Timestamp": "2024-05-16T12:01:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.128700", + "Timestamp": "2024-05-16T12:01:01.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.625000", - "Timestamp": "2019-10-15T22:44:06.000Z" + "SpotPrice": "0.124700", + "Timestamp": "2024-05-16T12:01:01.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.525000", - "Timestamp": "2019-10-15T22:44:06.000Z" + "SpotPrice": "0.068700", + "Timestamp": "2024-05-16T12:01:01.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.525000", - "Timestamp": "2019-10-15T22:44:06.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231200", + "Timestamp": "2024-05-16T11:59:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.525000", - "Timestamp": "2019-10-15T22:44:06.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.172100", + "Timestamp": "2024-05-16T11:58:02.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3a.large", "ProductDescription": "Windows", - "SpotPrice": "2.181000", - "Timestamp": "2019-10-15T22:43:30.000Z" + "SpotPrice": "0.039700", + "Timestamp": "2024-05-16T11:48:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r3.large", "ProductDescription": "Windows", - "SpotPrice": "2.181000", - "Timestamp": "2019-10-15T22:43:30.000Z" + "SpotPrice": "0.127000", + "Timestamp": "2024-05-16T11:47:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r3.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.181000", - "Timestamp": "2019-10-15T22:43:30.000Z" + "SpotPrice": "0.874900", + "Timestamp": "2024-05-16T11:47:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.949200", - "Timestamp": "2019-10-15T22:42:25.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.820500", + "Timestamp": "2024-05-16T11:47:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.949200", - "Timestamp": "2019-10-15T22:42:25.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.538500", + "Timestamp": "2024-05-16T11:47:13.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.949200", - "Timestamp": "2019-10-15T22:42:25.000Z" + "SpotPrice": "0.173200", + "Timestamp": "2024-05-16T11:47:01.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.919200", - "Timestamp": "2019-10-15T22:42:25.000Z" + "SpotPrice": "0.169500", + "Timestamp": "2024-05-16T11:47:01.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.919200", - "Timestamp": "2019-10-15T22:42:25.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113200", + "Timestamp": "2024-05-16T11:47:01.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.180300", + "Timestamp": "2024-05-16T11:46:59.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.919200", - "Timestamp": "2019-10-15T22:42:25.000Z" + "SpotPrice": "3.175300", + "Timestamp": "2024-05-16T11:46:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.819200", - "Timestamp": "2019-10-15T22:42:25.000Z" + "SpotPrice": "3.050300", + "Timestamp": "2024-05-16T11:46:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.819200", - "Timestamp": "2019-10-15T22:42:25.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.089200", + "Timestamp": "2024-05-16T11:46:56.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129200", + "Timestamp": "2024-05-16T11:46:56.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.819200", - "Timestamp": "2019-10-15T22:42:25.000Z" + "SpotPrice": "0.029200", + "Timestamp": "2024-05-16T11:46:56.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.104600", - "Timestamp": "2019-10-15T22:41:39.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.727600", + "Timestamp": "2024-05-16T11:46:56.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.104600", - "Timestamp": "2019-10-15T22:41:39.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.722600", + "Timestamp": "2024-05-16T11:46:56.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089600", - "Timestamp": "2019-10-15T22:41:39.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.597600", + "Timestamp": "2024-05-16T11:46:56.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m2.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089600", - "Timestamp": "2019-10-15T22:41:39.000Z" + "SpotPrice": "0.126800", + "Timestamp": "2024-05-16T11:46:55.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m2.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.129600", - "Timestamp": "2019-10-15T22:41:39.000Z" + "SpotPrice": "0.122800", + "Timestamp": "2024-05-16T11:46:55.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m2.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066800", + "Timestamp": "2024-05-16T11:46:55.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.368500", + "Timestamp": "2024-05-16T11:46:46.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.129600", - "Timestamp": "2019-10-15T22:41:39.000Z" + "SpotPrice": "0.363500", + "Timestamp": "2024-05-16T11:46:46.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m2.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029600", - "Timestamp": "2019-10-15T22:41:39.000Z" + "SpotPrice": "0.238500", + "Timestamp": "2024-05-16T11:46:46.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m2.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126200", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122500", + "Timestamp": "2024-05-16T11:46:39.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t4g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029600", - "Timestamp": "2019-10-15T22:41:39.000Z" + "SpotPrice": "0.066200", + "Timestamp": "2024-05-16T11:46:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.235200", - "Timestamp": "2019-10-15T22:41:26.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.051500", + "Timestamp": "2024-05-16T11:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.235200", - "Timestamp": "2019-10-15T22:41:26.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.046500", + "Timestamp": "2024-05-16T11:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.235200", - "Timestamp": "2019-10-15T22:41:26.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.921500", + "Timestamp": "2024-05-16T11:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.422700", - "Timestamp": "2019-10-15T22:41:16.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.660900", + "Timestamp": "2024-05-16T11:46:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.422700", - "Timestamp": "2019-10-15T22:41:16.000Z" + "SpotPrice": "3.837700", + "Timestamp": "2024-05-16T11:46:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.462700", - "Timestamp": "2019-10-15T22:41:16.000Z" + "SpotPrice": "3.832700", + "Timestamp": "2024-05-16T11:46:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.707700", + "Timestamp": "2024-05-16T11:46:37.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354000", + "Timestamp": "2024-05-16T11:46:34.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r4.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.462700", - "Timestamp": "2019-10-15T22:41:16.000Z" + "SpotPrice": "0.324000", + "Timestamp": "2024-05-16T11:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "x1e.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r4.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.362700", - "Timestamp": "2019-10-15T22:41:16.000Z" + "SpotPrice": "0.224000", + "Timestamp": "2024-05-16T11:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.362700", - "Timestamp": "2019-10-15T22:41:16.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.479100", + "Timestamp": "2024-05-16T11:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.546700", - "Timestamp": "2019-10-15T22:41:16.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.474100", + "Timestamp": "2024-05-16T11:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1e.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.546700", - "Timestamp": "2019-10-15T22:41:16.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.349100", + "Timestamp": "2024-05-16T11:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135300", - "Timestamp": "2019-10-15T22:37:44.000Z" + "SpotPrice": "0.717300", + "Timestamp": "2024-05-16T11:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175300", - "Timestamp": "2019-10-15T22:37:44.000Z" + "SpotPrice": "0.712300", + "Timestamp": "2024-05-16T11:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075300", - "Timestamp": "2019-10-15T22:37:44.000Z" + "SpotPrice": "0.587300", + "Timestamp": "2024-05-16T11:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.137500", - "Timestamp": "2019-10-15T22:21:02.000Z" + "SpotPrice": "1.155400", + "Timestamp": "2024-05-16T11:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.177500", - "Timestamp": "2019-10-15T22:21:02.000Z" + "SpotPrice": "1.150400", + "Timestamp": "2024-05-16T11:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.077500", - "Timestamp": "2019-10-15T22:21:02.000Z" + "SpotPrice": "1.025400", + "Timestamp": "2024-05-16T11:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.211600", - "Timestamp": "2019-10-15T22:12:38.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.091600", + "Timestamp": "2024-05-16T11:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.101700", - "Timestamp": "2019-10-15T22:10:04.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.061600", + "Timestamp": "2024-05-16T11:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.101700", - "Timestamp": "2019-10-15T22:10:04.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.961600", + "Timestamp": "2024-05-16T11:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.101700", - "Timestamp": "2019-10-15T22:10:04.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.444500", + "Timestamp": "2024-05-16T11:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.287700", - "Timestamp": "2019-10-15T22:10:04.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.439500", + "Timestamp": "2024-05-16T11:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.287700", - "Timestamp": "2019-10-15T22:10:04.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.314500", + "Timestamp": "2024-05-16T11:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.287700", - "Timestamp": "2019-10-15T22:10:04.000Z" + "SpotPrice": "0.987800", + "Timestamp": "2024-05-16T11:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.257700", - "Timestamp": "2019-10-15T22:10:04.000Z" + "SpotPrice": "0.982800", + "Timestamp": "2024-05-16T11:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.257700", - "Timestamp": "2019-10-15T22:10:04.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.857800", + "Timestamp": "2024-05-16T11:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.257700", - "Timestamp": "2019-10-15T22:10:04.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.874700", + "Timestamp": "2024-05-16T11:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.157700", - "Timestamp": "2019-10-15T22:10:04.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.332500", + "Timestamp": "2024-05-16T11:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.157700", - "Timestamp": "2019-10-15T22:10:04.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302500", + "Timestamp": "2024-05-16T11:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.157700", - "Timestamp": "2019-10-15T22:10:04.000Z" + "SpotPrice": "0.202500", + "Timestamp": "2024-05-16T11:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.276200", - "Timestamp": "2019-10-15T22:09:57.000Z" + "SpotPrice": "1.797900", + "Timestamp": "2024-05-16T11:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.276200", - "Timestamp": "2019-10-15T22:09:57.000Z" + "SpotPrice": "0.840800", + "Timestamp": "2024-05-16T11:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.276200", - "Timestamp": "2019-10-15T22:09:57.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.237300", + "Timestamp": "2024-05-16T11:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.750200", - "Timestamp": "2019-10-15T22:09:57.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232300", + "Timestamp": "2024-05-16T11:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.750200", - "Timestamp": "2019-10-15T22:09:57.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T11:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-16T11:46:29.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.750200", - "Timestamp": "2019-10-15T22:09:57.000Z" + "SpotPrice": "1.200600", + "Timestamp": "2024-05-16T11:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.720200", - "Timestamp": "2019-10-15T22:09:57.000Z" + "SpotPrice": "1.195600", + "Timestamp": "2024-05-16T11:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.720200", - "Timestamp": "2019-10-15T22:09:57.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.070600", + "Timestamp": "2024-05-16T11:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.865800", + "Timestamp": "2024-05-16T11:46:28.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.720200", - "Timestamp": "2019-10-15T22:09:57.000Z" + "SpotPrice": "0.835800", + "Timestamp": "2024-05-16T11:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.620200", - "Timestamp": "2019-10-15T22:09:57.000Z" + "SpotPrice": "0.735800", + "Timestamp": "2024-05-16T11:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.620200", - "Timestamp": "2019-10-15T22:09:57.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.174800", + "Timestamp": "2024-05-16T11:46:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.171100", + "Timestamp": "2024-05-16T11:46:27.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.620200", - "Timestamp": "2019-10-15T22:09:57.000Z" + "SpotPrice": "0.114800", + "Timestamp": "2024-05-16T11:46:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.235200", - "Timestamp": "2019-10-15T22:09:47.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.862600", + "Timestamp": "2024-05-16T11:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.235200", - "Timestamp": "2019-10-15T22:09:47.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.857600", + "Timestamp": "2024-05-16T11:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.235200", - "Timestamp": "2019-10-15T22:09:47.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.732600", + "Timestamp": "2024-05-16T11:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.949200", - "Timestamp": "2019-10-15T22:09:47.000Z" + "SpotPrice": "0.169500", + "Timestamp": "2024-05-16T11:46:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.949200", - "Timestamp": "2019-10-15T22:09:47.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165500", + "Timestamp": "2024-05-16T11:46:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T11:46:24.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.949200", - "Timestamp": "2019-10-15T22:09:47.000Z" + "SpotPrice": "1.482000", + "Timestamp": "2024-05-16T11:46:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.919200", - "Timestamp": "2019-10-15T22:09:47.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.551000", + "Timestamp": "2024-05-16T11:46:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.919200", - "Timestamp": "2019-10-15T22:09:47.000Z" + "SpotPrice": "1.477000", + "Timestamp": "2024-05-16T11:46:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.919200", - "Timestamp": "2019-10-15T22:09:47.000Z" + "SpotPrice": "1.546000", + "Timestamp": "2024-05-16T11:46:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.819200", - "Timestamp": "2019-10-15T22:09:47.000Z" + "SpotPrice": "1.352000", + "Timestamp": "2024-05-16T11:46:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.819200", - "Timestamp": "2019-10-15T22:09:47.000Z" + "SpotPrice": "1.421000", + "Timestamp": "2024-05-16T11:46:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.819200", - "Timestamp": "2019-10-15T22:09:47.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.461600", + "Timestamp": "2024-05-16T11:46:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.116800", - "Timestamp": "2019-10-15T22:09:44.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.456600", + "Timestamp": "2024-05-16T11:46:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.708800", - "Timestamp": "2019-10-15T22:09:44.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.331600", + "Timestamp": "2024-05-16T11:46:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.708800", - "Timestamp": "2019-10-15T22:09:44.000Z" + "SpotPrice": "0.944000", + "Timestamp": "2024-05-16T11:46:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.086800", - "Timestamp": "2019-10-15T22:09:44.000Z" + "SpotPrice": "0.939000", + "Timestamp": "2024-05-16T11:46:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.678800", - "Timestamp": "2019-10-15T22:09:44.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.814000", + "Timestamp": "2024-05-16T11:46:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.678800", - "Timestamp": "2019-10-15T22:09:44.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.066800", + "Timestamp": "2024-05-16T11:46:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.986800", - "Timestamp": "2019-10-15T22:09:44.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.061800", + "Timestamp": "2024-05-16T11:46:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.578800", - "Timestamp": "2019-10-15T22:09:44.000Z" + "SpotPrice": "4.936800", + "Timestamp": "2024-05-16T11:46:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.578800", - "Timestamp": "2019-10-15T22:09:44.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102300", + "Timestamp": "2024-05-16T11:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.489300", - "Timestamp": "2019-10-15T22:09:44.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098600", + "Timestamp": "2024-05-16T11:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.050800", - "Timestamp": "2019-10-15T22:09:44.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042300", + "Timestamp": "2024-05-16T11:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.050800", - "Timestamp": "2019-10-15T22:09:44.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.563500", + "Timestamp": "2024-05-16T11:46:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126500", - "Timestamp": "2019-10-15T22:09:28.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.558500", + "Timestamp": "2024-05-16T11:46:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126500", - "Timestamp": "2019-10-15T22:09:28.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.433500", + "Timestamp": "2024-05-16T11:46:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126500", - "Timestamp": "2019-10-15T22:09:28.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "8.181700", + "Timestamp": "2024-05-16T11:46:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094500", - "Timestamp": "2019-10-15T22:09:28.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "8.176700", + "Timestamp": "2024-05-16T11:46:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094500", - "Timestamp": "2019-10-15T22:09:28.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "8.051700", + "Timestamp": "2024-05-16T11:46:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5d.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094500", - "Timestamp": "2019-10-15T22:09:28.000Z" + "SpotPrice": "0.257400", + "Timestamp": "2024-05-16T11:46:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5d.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134500", - "Timestamp": "2019-10-15T22:09:28.000Z" + "SpotPrice": "0.252400", + "Timestamp": "2024-05-16T11:46:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5d.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134500", - "Timestamp": "2019-10-15T22:09:28.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127400", + "Timestamp": "2024-05-16T11:46:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5d.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134500", - "Timestamp": "2019-10-15T22:09:28.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.325800", + "Timestamp": "2024-05-16T11:46:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034500", - "Timestamp": "2019-10-15T22:09:28.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.320800", + "Timestamp": "2024-05-16T11:46:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5d.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034500", - "Timestamp": "2019-10-15T22:09:28.000Z" + "SpotPrice": "1.195800", + "Timestamp": "2024-05-16T11:46:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034500", - "Timestamp": "2019-10-15T22:09:28.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.323500", + "Timestamp": "2024-05-16T11:46:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "a1.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.068900", - "Timestamp": "2019-10-15T22:09:27.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.318500", + "Timestamp": "2024-05-16T11:46:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "a1.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.068900", - "Timestamp": "2019-10-15T22:09:27.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.193500", + "Timestamp": "2024-05-16T11:46:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "a1.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.108900", - "Timestamp": "2019-10-15T22:09:27.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.275700", + "Timestamp": "2024-05-16T11:46:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "a1.medium", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.108900", - "Timestamp": "2019-10-15T22:09:27.000Z" + "SpotPrice": "0.270700", + "Timestamp": "2024-05-16T11:46:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "a1.medium", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.008900", - "Timestamp": "2019-10-15T22:09:27.000Z" + "SpotPrice": "0.145700", + "Timestamp": "2024-05-16T11:46:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "a1.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.008900", - "Timestamp": "2019-10-15T22:09:27.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.960700", + "Timestamp": "2024-05-16T11:46:11.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122500", - "Timestamp": "2019-10-15T22:08:33.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.955700", + "Timestamp": "2024-05-16T11:46:11.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122500", - "Timestamp": "2019-10-15T22:08:33.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.830700", + "Timestamp": "2024-05-16T11:46:11.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122500", - "Timestamp": "2019-10-15T22:08:33.000Z" + "SpotPrice": "0.174400", + "Timestamp": "2024-05-16T11:46:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.162500", - "Timestamp": "2019-10-15T22:08:33.000Z" + "SpotPrice": "0.170700", + "Timestamp": "2024-05-16T11:46:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.162500", - "Timestamp": "2019-10-15T22:08:33.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114400", + "Timestamp": "2024-05-16T11:46:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.162500", - "Timestamp": "2019-10-15T22:08:33.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.716800", + "Timestamp": "2024-05-16T11:46:09.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062500", - "Timestamp": "2019-10-15T22:08:33.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.081200", + "Timestamp": "2024-05-16T11:46:09.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062500", - "Timestamp": "2019-10-15T22:08:33.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.076200", + "Timestamp": "2024-05-16T11:46:09.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062500", - "Timestamp": "2019-10-15T22:08:33.000Z" + "SpotPrice": "0.951200", + "Timestamp": "2024-05-16T11:46:09.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.274500", - "Timestamp": "2019-10-15T22:08:32.000Z" + "SpotPrice": "0.229600", + "Timestamp": "2024-05-16T11:46:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.274500", - "Timestamp": "2019-10-15T22:08:32.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.296300", + "Timestamp": "2024-05-16T11:46:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.274500", - "Timestamp": "2019-10-15T22:08:32.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.291300", + "Timestamp": "2024-05-16T11:46:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.346600", - "Timestamp": "2019-10-15T22:07:56.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.166300", + "Timestamp": "2024-05-16T11:46:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.346600", - "Timestamp": "2019-10-15T22:07:56.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.749400", + "Timestamp": "2024-05-16T11:46:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.346600", - "Timestamp": "2019-10-15T22:07:56.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.744400", + "Timestamp": "2024-05-16T11:46:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.222600", - "Timestamp": "2019-10-15T22:07:56.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.619400", + "Timestamp": "2024-05-16T11:46:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.222600", - "Timestamp": "2019-10-15T22:07:56.000Z" + "SpotPrice": "0.101300", + "Timestamp": "2024-05-16T11:45:53.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097600", + "Timestamp": "2024-05-16T11:45:53.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041300", + "Timestamp": "2024-05-16T11:45:53.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.222600", - "Timestamp": "2019-10-15T22:07:56.000Z" + "SpotPrice": "0.510800", + "Timestamp": "2024-05-16T11:32:51.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.262600", - "Timestamp": "2019-10-15T22:07:56.000Z" + "SpotPrice": "0.505800", + "Timestamp": "2024-05-16T11:32:51.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3en.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.262600", - "Timestamp": "2019-10-15T22:07:56.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.380800", + "Timestamp": "2024-05-16T11:32:51.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.320400", + "Timestamp": "2024-05-16T11:32:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.262600", - "Timestamp": "2019-10-15T22:07:56.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.162600", - "Timestamp": "2019-10-15T22:07:56.000Z" + "SpotPrice": "0.315400", + "Timestamp": "2024-05-16T11:32:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3en.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.162600", - "Timestamp": "2019-10-15T22:07:56.000Z" + "SpotPrice": "0.190400", + "Timestamp": "2024-05-16T11:32:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3en.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.162600", - "Timestamp": "2019-10-15T22:07:56.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.174400", + "Timestamp": "2024-05-16T11:32:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.956900", - "Timestamp": "2019-10-15T22:07:55.000Z" + "SpotPrice": "0.387800", + "Timestamp": "2024-05-16T11:31:51.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.956900", - "Timestamp": "2019-10-15T22:07:55.000Z" + "SpotPrice": "0.316500", + "Timestamp": "2024-05-16T11:31:51.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.926900", - "Timestamp": "2019-10-15T22:07:55.000Z" + "SpotPrice": "0.357800", + "Timestamp": "2024-05-16T11:31:51.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.926900", - "Timestamp": "2019-10-15T22:07:55.000Z" + "SpotPrice": "0.286500", + "Timestamp": "2024-05-16T11:31:51.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.826900", - "Timestamp": "2019-10-15T22:07:55.000Z" + "SpotPrice": "0.257800", + "Timestamp": "2024-05-16T11:31:51.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.826900", - "Timestamp": "2019-10-15T22:07:55.000Z" + "SpotPrice": "0.186500", + "Timestamp": "2024-05-16T11:31:51.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.034900", - "Timestamp": "2019-10-15T22:07:55.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.446900", + "Timestamp": "2024-05-16T11:31:49.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.034900", - "Timestamp": "2019-10-15T22:07:55.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.416900", + "Timestamp": "2024-05-16T11:31:49.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.metal", - "ProductDescription": "Windows", - "SpotPrice": "6.069800", - "Timestamp": "2019-10-15T22:07:46.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.316900", + "Timestamp": "2024-05-16T11:31:49.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.metal", - "ProductDescription": "Windows", - "SpotPrice": "6.069800", - "Timestamp": "2019-10-15T22:07:46.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.841000", + "Timestamp": "2024-05-16T11:31:47.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.783800", - "Timestamp": "2019-10-15T22:07:46.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.836000", + "Timestamp": "2024-05-16T11:31:47.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.783800", - "Timestamp": "2019-10-15T22:07:46.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.711000", + "Timestamp": "2024-05-16T11:31:47.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.753800", - "Timestamp": "2019-10-15T22:07:46.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.679400", + "Timestamp": "2024-05-16T11:31:42.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.metal", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.753800", - "Timestamp": "2019-10-15T22:07:46.000Z" + "SpotPrice": "1.674400", + "Timestamp": "2024-05-16T11:31:42.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.metal", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.653800", - "Timestamp": "2019-10-15T22:07:46.000Z" + "SpotPrice": "1.549400", + "Timestamp": "2024-05-16T11:31:42.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.653800", - "Timestamp": "2019-10-15T22:07:46.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.153900", + "Timestamp": "2024-05-16T11:31:42.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r3.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094800", - "Timestamp": "2019-10-15T21:56:17.000Z" + "SpotPrice": "0.271200", + "Timestamp": "2024-05-16T11:31:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r3.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134800", - "Timestamp": "2019-10-15T21:56:17.000Z" + "SpotPrice": "0.266200", + "Timestamp": "2024-05-16T11:31:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r3.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034800", - "Timestamp": "2019-10-15T21:56:17.000Z" + "SpotPrice": "0.141200", + "Timestamp": "2024-05-16T11:31:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.264000", - "Timestamp": "2019-10-15T21:49:43.000Z" + "SpotPrice": "1.703000", + "Timestamp": "2024-05-16T11:31:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.234000", - "Timestamp": "2019-10-15T21:49:43.000Z" + "SpotPrice": "1.698000", + "Timestamp": "2024-05-16T11:31:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.134000", - "Timestamp": "2019-10-15T21:49:43.000Z" + "SpotPrice": "1.573000", + "Timestamp": "2024-05-16T11:31:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.769700", - "Timestamp": "2019-10-15T21:48:18.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.859500", + "Timestamp": "2024-05-16T11:31:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.769700", - "Timestamp": "2019-10-15T21:48:18.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.739700", - "Timestamp": "2019-10-15T21:48:18.000Z" + "SpotPrice": "4.557200", + "Timestamp": "2024-05-16T11:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.739700", - "Timestamp": "2019-10-15T21:48:18.000Z" + "SpotPrice": "4.552200", + "Timestamp": "2024-05-16T11:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5ad.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.639700", - "Timestamp": "2019-10-15T21:48:18.000Z" + "SpotPrice": "4.427200", + "Timestamp": "2024-05-16T11:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.639700", - "Timestamp": "2019-10-15T21:48:18.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.450100", + "Timestamp": "2024-05-16T11:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.117600", - "Timestamp": "2019-10-15T21:48:03.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.445100", + "Timestamp": "2024-05-16T11:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.117600", - "Timestamp": "2019-10-15T21:48:03.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.320100", + "Timestamp": "2024-05-16T11:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.281600", - "Timestamp": "2019-10-15T21:47:05.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.221400", + "Timestamp": "2024-05-16T11:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.281600", - "Timestamp": "2019-10-15T21:47:05.000Z" + "SpotPrice": "2.845400", + "Timestamp": "2024-05-16T11:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.281600", - "Timestamp": "2019-10-15T21:47:05.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.840400", + "Timestamp": "2024-05-16T11:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.251600", - "Timestamp": "2019-10-15T21:47:05.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.715400", + "Timestamp": "2024-05-16T11:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.251600", - "Timestamp": "2019-10-15T21:47:05.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.618300", + "Timestamp": "2024-05-16T11:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5a.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.251600", - "Timestamp": "2019-10-15T21:47:05.000Z" + "SpotPrice": "0.613300", + "Timestamp": "2024-05-16T11:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5a.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.151600", - "Timestamp": "2019-10-15T21:47:05.000Z" + "SpotPrice": "0.488300", + "Timestamp": "2024-05-16T11:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.151600", - "Timestamp": "2019-10-15T21:47:05.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.562600", + "Timestamp": "2024-05-16T11:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.151600", - "Timestamp": "2019-10-15T21:47:05.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.557600", + "Timestamp": "2024-05-16T11:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.519600", - "Timestamp": "2019-10-15T21:47:05.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.432600", + "Timestamp": "2024-05-16T11:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.519600", - "Timestamp": "2019-10-15T21:47:05.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.947000", + "Timestamp": "2024-05-16T11:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.519600", - "Timestamp": "2019-10-15T21:47:05.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.942000", + "Timestamp": "2024-05-16T11:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.039600", - "Timestamp": "2019-10-15T21:47:03.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.817000", + "Timestamp": "2024-05-16T11:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.039600", - "Timestamp": "2019-10-15T21:47:03.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.009600", - "Timestamp": "2019-10-15T21:47:03.000Z" + "SpotPrice": "0.071400", + "Timestamp": "2024-05-16T11:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.009600", - "Timestamp": "2019-10-15T21:47:03.000Z" + "SpotPrice": "0.042400", + "Timestamp": "2024-05-16T11:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.909600", - "Timestamp": "2019-10-15T21:47:03.000Z" + "SpotPrice": "0.011400", + "Timestamp": "2024-05-16T11:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.909600", - "Timestamp": "2019-10-15T21:47:03.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.335900", + "Timestamp": "2024-05-16T11:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.049600", - "Timestamp": "2019-10-15T21:45:12.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.330900", + "Timestamp": "2024-05-16T11:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.049600", - "Timestamp": "2019-10-15T21:45:12.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.205900", + "Timestamp": "2024-05-16T11:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.049600", - "Timestamp": "2019-10-15T21:45:12.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.855400", + "Timestamp": "2024-05-16T11:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.707600", - "Timestamp": "2019-10-15T21:44:11.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.850400", + "Timestamp": "2024-05-16T11:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.707600", - "Timestamp": "2019-10-15T21:44:11.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.725400", + "Timestamp": "2024-05-16T11:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.707600", - "Timestamp": "2019-10-15T21:44:11.000Z" + "SpotPrice": "0.156700", + "Timestamp": "2024-05-16T11:31:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.677600", - "Timestamp": "2019-10-15T21:44:11.000Z" + "SpotPrice": "0.153000", + "Timestamp": "2024-05-16T11:31:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r4.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.677600", - "Timestamp": "2019-10-15T21:44:11.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096700", + "Timestamp": "2024-05-16T11:31:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.380000", + "Timestamp": "2024-05-16T11:31:27.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.677600", - "Timestamp": "2019-10-15T21:44:11.000Z" + "SpotPrice": "1.350000", + "Timestamp": "2024-05-16T11:31:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.577600", - "Timestamp": "2019-10-15T21:44:11.000Z" + "SpotPrice": "1.250000", + "Timestamp": "2024-05-16T11:31:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.577600", - "Timestamp": "2019-10-15T21:44:11.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.990700", + "Timestamp": "2024-05-16T11:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.577600", - "Timestamp": "2019-10-15T21:44:11.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.985700", + "Timestamp": "2024-05-16T11:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3a.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-15T21:42:34.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.860700", + "Timestamp": "2024-05-16T11:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3a.micro", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063600", - "Timestamp": "2019-10-15T21:42:34.000Z" + "SpotPrice": "0.791900", + "Timestamp": "2024-05-16T11:31:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3a.micro", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.103600", - "Timestamp": "2019-10-15T21:42:34.000Z" + "SpotPrice": "0.786900", + "Timestamp": "2024-05-16T11:31:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3a.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.103600", - "Timestamp": "2019-10-15T21:42:34.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.661900", + "Timestamp": "2024-05-16T11:31:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003600", - "Timestamp": "2019-10-15T21:42:34.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079500", + "Timestamp": "2024-05-16T11:31:13.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003600", - "Timestamp": "2019-10-15T21:42:34.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.075800", + "Timestamp": "2024-05-16T11:31:13.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012800", - "Timestamp": "2019-10-15T21:42:34.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.019500", + "Timestamp": "2024-05-16T11:31:13.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012800", - "Timestamp": "2019-10-15T21:42:34.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.868400", + "Timestamp": "2024-05-16T11:31:13.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Windows", - "SpotPrice": "17.494400", - "Timestamp": "2019-10-15T21:41:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.863400", + "Timestamp": "2024-05-16T11:31:13.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.271600", - "Timestamp": "2019-10-15T21:32:45.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.738400", + "Timestamp": "2024-05-16T11:31:13.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.142600", - "Timestamp": "2019-10-15T21:32:41.000Z" + "SpotPrice": "1.203300", + "Timestamp": "2024-05-16T11:31:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.182600", - "Timestamp": "2019-10-15T21:32:41.000Z" + "SpotPrice": "1.173300", + "Timestamp": "2024-05-16T11:31:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.082600", - "Timestamp": "2019-10-15T21:32:41.000Z" + "SpotPrice": "1.073300", + "Timestamp": "2024-05-16T11:31:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.549000", - "Timestamp": "2019-10-15T21:25:49.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.109200", + "Timestamp": "2024-05-16T11:31:09.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.549000", - "Timestamp": "2019-10-15T21:25:49.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.104200", + "Timestamp": "2024-05-16T11:31:09.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.549000", - "Timestamp": "2019-10-15T21:25:49.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.979200", + "Timestamp": "2024-05-16T11:31:09.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3a.nano", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i-flex.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061800", - "Timestamp": "2019-10-15T21:24:55.000Z" + "SpotPrice": "0.607400", + "Timestamp": "2024-05-16T11:31:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3a.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061800", - "Timestamp": "2019-10-15T21:24:55.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.602400", + "Timestamp": "2024-05-16T11:31:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3a.nano", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-15T21:24:55.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.477400", + "Timestamp": "2024-05-16T11:31:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3a.nano", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.763600", + "Timestamp": "2024-05-16T11:31:05.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.101800", - "Timestamp": "2019-10-15T21:24:55.000Z" + "SpotPrice": "2.758600", + "Timestamp": "2024-05-16T11:31:05.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3a.nano", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001800", - "Timestamp": "2019-10-15T21:24:55.000Z" + "SpotPrice": "2.633600", + "Timestamp": "2024-05-16T11:31:05.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3a.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001800", - "Timestamp": "2019-10-15T21:24:55.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130200", + "Timestamp": "2024-05-16T11:31:04.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t3.small", - "ProductDescription": "Windows", - "SpotPrice": "0.026300", - "Timestamp": "2019-10-15T21:24:55.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126500", + "Timestamp": "2024-05-16T11:31:04.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3.small", - "ProductDescription": "Windows", - "SpotPrice": "0.026300", - "Timestamp": "2019-10-15T21:24:55.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070200", + "Timestamp": "2024-05-16T11:31:04.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3.small", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.026300", - "Timestamp": "2019-10-15T21:24:55.000Z" + "SpotPrice": "0.545500", + "Timestamp": "2024-05-16T11:31:03.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.274400", - "Timestamp": "2019-10-15T21:24:43.000Z" + "SpotPrice": "0.687400", + "Timestamp": "2024-05-16T11:31:03.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.244400", - "Timestamp": "2019-10-15T21:24:43.000Z" + "SpotPrice": "0.682400", + "Timestamp": "2024-05-16T11:31:03.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.144400", - "Timestamp": "2019-10-15T21:24:43.000Z" + "SpotPrice": "0.557400", + "Timestamp": "2024-05-16T11:31:03.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.524400", - "Timestamp": "2019-10-15T21:24:18.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.494000", + "Timestamp": "2024-05-16T11:30:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.524400", - "Timestamp": "2019-10-15T21:24:18.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.489000", + "Timestamp": "2024-05-16T11:30:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.255000", - "Timestamp": "2019-10-15T21:24:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.364000", + "Timestamp": "2024-05-16T11:30:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.255000", - "Timestamp": "2019-10-15T21:24:17.000Z" + "SpotPrice": "11.261600", + "Timestamp": "2024-05-16T11:30:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.255000", - "Timestamp": "2019-10-15T21:24:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "11.256600", + "Timestamp": "2024-05-16T11:30:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.225000", - "Timestamp": "2019-10-15T21:24:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "11.131600", + "Timestamp": "2024-05-16T11:30:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.225000", - "Timestamp": "2019-10-15T21:24:17.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.350800", + "Timestamp": "2024-05-16T11:30:55.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.225000", - "Timestamp": "2019-10-15T21:24:17.000Z" + "SpotPrice": "0.345800", + "Timestamp": "2024-05-16T11:30:55.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.125000", - "Timestamp": "2019-10-15T21:24:17.000Z" + "SpotPrice": "0.220800", + "Timestamp": "2024-05-16T11:30:55.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.125000", - "Timestamp": "2019-10-15T21:24:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.208300", + "Timestamp": "2024-05-16T11:30:50.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.125000", - "Timestamp": "2019-10-15T21:24:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.178300", + "Timestamp": "2024-05-16T11:30:50.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.079600", - "Timestamp": "2019-10-15T21:24:16.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.078300", + "Timestamp": "2024-05-16T11:30:50.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3en.6xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.079600", - "Timestamp": "2019-10-15T21:24:16.000Z" + "SpotPrice": "3.458100", + "Timestamp": "2024-05-16T11:17:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3en.6xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.079600", - "Timestamp": "2019-10-15T21:24:16.000Z" + "SpotPrice": "0.420400", + "Timestamp": "2024-05-16T11:17:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3en.6xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.105600", - "Timestamp": "2019-10-15T21:24:16.000Z" + "SpotPrice": "0.968400", + "Timestamp": "2024-05-16T11:17:01.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.105600", - "Timestamp": "2019-10-15T21:24:16.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.963400", + "Timestamp": "2024-05-16T11:17:01.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3en.6xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.838400", + "Timestamp": "2024-05-16T11:17:01.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gd.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.105600", - "Timestamp": "2019-10-15T21:24:16.000Z" + "SpotPrice": "0.130500", + "Timestamp": "2024-05-16T11:16:58.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3en.6xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gd.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.075600", - "Timestamp": "2019-10-15T21:24:16.000Z" + "SpotPrice": "0.126800", + "Timestamp": "2024-05-16T11:16:58.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.075600", - "Timestamp": "2019-10-15T21:24:16.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070500", + "Timestamp": "2024-05-16T11:16:58.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3en.6xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.663500", + "Timestamp": "2024-05-16T11:16:54.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x1e.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.075600", - "Timestamp": "2019-10-15T21:24:16.000Z" + "SpotPrice": "7.633500", + "Timestamp": "2024-05-16T11:16:54.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3en.6xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x1e.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.975600", - "Timestamp": "2019-10-15T21:24:16.000Z" + "SpotPrice": "7.533500", + "Timestamp": "2024-05-16T11:16:54.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3en.6xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.975600", - "Timestamp": "2019-10-15T21:24:16.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354500", + "Timestamp": "2024-05-16T11:16:49.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3en.6xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324500", + "Timestamp": "2024-05-16T11:16:49.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c4.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.975600", - "Timestamp": "2019-10-15T21:24:16.000Z" + "SpotPrice": "0.224500", + "Timestamp": "2024-05-16T11:16:49.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.512400", - "Timestamp": "2019-10-15T21:24:00.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.359500", + "Timestamp": "2024-05-16T11:16:46.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.512400", - "Timestamp": "2019-10-15T21:24:00.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.354500", + "Timestamp": "2024-05-16T11:16:46.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.512400", - "Timestamp": "2019-10-15T21:24:00.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.229500", + "Timestamp": "2024-05-16T11:16:46.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t3.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067900", - "Timestamp": "2019-10-15T21:23:53.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.981900", + "Timestamp": "2024-05-16T11:16:42.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067900", - "Timestamp": "2019-10-15T21:23:53.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.769300", + "Timestamp": "2024-05-16T11:16:41.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3.small", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.9xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067900", - "Timestamp": "2019-10-15T21:23:53.000Z" + "SpotPrice": "1.250700", + "Timestamp": "2024-05-16T11:16:41.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t3.small", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.9xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.107900", - "Timestamp": "2019-10-15T21:23:53.000Z" + "SpotPrice": "1.245700", + "Timestamp": "2024-05-16T11:16:41.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.107900", - "Timestamp": "2019-10-15T21:23:53.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.120700", + "Timestamp": "2024-05-16T11:16:41.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3.small", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.209100", + "Timestamp": "2024-05-16T11:16:40.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "inf1.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.107900", - "Timestamp": "2019-10-15T21:23:53.000Z" + "SpotPrice": "0.204100", + "Timestamp": "2024-05-16T11:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t3.small", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "inf1.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007900", - "Timestamp": "2019-10-15T21:23:53.000Z" + "SpotPrice": "0.079100", + "Timestamp": "2024-05-16T11:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007900", - "Timestamp": "2019-10-15T21:23:53.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.498100", + "Timestamp": "2024-05-16T11:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007900", - "Timestamp": "2019-10-15T21:23:53.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.493100", + "Timestamp": "2024-05-16T11:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.182400", - "Timestamp": "2019-10-15T21:23:18.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.368100", + "Timestamp": "2024-05-16T11:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.182400", - "Timestamp": "2019-10-15T21:23:18.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.709900", + "Timestamp": "2024-05-16T11:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "g3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.152400", - "Timestamp": "2019-10-15T21:23:18.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.252700", + "Timestamp": "2024-05-16T11:16:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.152400", - "Timestamp": "2019-10-15T21:23:18.000Z" + "SpotPrice": "0.247700", + "Timestamp": "2024-05-16T11:16:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "g3.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.052400", - "Timestamp": "2019-10-15T21:23:18.000Z" + "SpotPrice": "0.122700", + "Timestamp": "2024-05-16T11:16:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "g3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.052400", - "Timestamp": "2019-10-15T21:23:18.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.660800", + "Timestamp": "2024-05-16T11:16:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.455200", - "Timestamp": "2019-10-15T21:23:16.000Z" + "SpotPrice": "1.319300", + "Timestamp": "2024-05-16T11:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.455200", - "Timestamp": "2019-10-15T21:23:16.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.314300", + "Timestamp": "2024-05-16T11:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.455200", - "Timestamp": "2019-10-15T21:23:16.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.189300", + "Timestamp": "2024-05-16T11:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.425200", - "Timestamp": "2019-10-15T21:23:16.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.439200", + "Timestamp": "2024-05-16T11:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", + "AvailabilityZone": "sa-east-1c", "InstanceType": "i3en.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.425200", - "Timestamp": "2019-10-15T21:23:16.000Z" + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.364700", + "Timestamp": "2024-05-16T11:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", + "AvailabilityZone": "sa-east-1c", "InstanceType": "i3en.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.425200", - "Timestamp": "2019-10-15T21:23:16.000Z" + "SpotPrice": "0.359700", + "Timestamp": "2024-05-16T11:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", + "AvailabilityZone": "sa-east-1c", "InstanceType": "i3en.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.325200", - "Timestamp": "2019-10-15T21:23:16.000Z" + "SpotPrice": "0.234700", + "Timestamp": "2024-05-16T11:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.325200", - "Timestamp": "2019-10-15T21:23:16.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.870100", + "Timestamp": "2024-05-16T11:16:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3en.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.840100", + "Timestamp": "2024-05-16T11:16:32.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r4.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.325200", - "Timestamp": "2019-10-15T21:23:16.000Z" + "SpotPrice": "0.740100", + "Timestamp": "2024-05-16T11:16:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.693200", - "Timestamp": "2019-10-15T21:23:01.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.805400", + "Timestamp": "2024-05-16T11:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.693200", - "Timestamp": "2019-10-15T21:23:01.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.800400", + "Timestamp": "2024-05-16T11:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3en.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.693200", - "Timestamp": "2019-10-15T21:23:01.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.675400", + "Timestamp": "2024-05-16T11:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5a.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097900", - "Timestamp": "2019-10-15T21:22:04.000Z" + "SpotPrice": "0.794700", + "Timestamp": "2024-05-16T11:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.196000", - "Timestamp": "2019-10-15T21:22:04.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.789700", + "Timestamp": "2024-05-16T11:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097900", - "Timestamp": "2019-10-15T21:22:04.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.664700", + "Timestamp": "2024-05-16T11:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5a.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137900", - "Timestamp": "2019-10-15T21:22:04.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.459200", + "Timestamp": "2024-05-16T11:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.236000", - "Timestamp": "2019-10-15T21:22:04.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.596900", + "Timestamp": "2024-05-16T11:16:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5a.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137900", - "Timestamp": "2019-10-15T21:22:04.000Z" + "SpotPrice": "0.591900", + "Timestamp": "2024-05-16T11:16:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5a.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037900", - "Timestamp": "2019-10-15T21:22:04.000Z" + "SpotPrice": "0.466900", + "Timestamp": "2024-05-16T11:16:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.136000", - "Timestamp": "2019-10-15T21:22:04.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.713700", + "Timestamp": "2024-05-16T11:16:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037900", - "Timestamp": "2019-10-15T21:22:04.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.708700", + "Timestamp": "2024-05-16T11:16:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.129900", - "Timestamp": "2019-10-15T21:22:03.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.583700", + "Timestamp": "2024-05-16T11:16:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.222700", - "Timestamp": "2019-10-15T21:22:03.000Z" + "SpotPrice": "5.380800", + "Timestamp": "2024-05-16T11:16:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.129900", - "Timestamp": "2019-10-15T21:22:03.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.713700", + "Timestamp": "2024-05-16T11:16:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.529100", - "Timestamp": "2019-10-15T21:21:53.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.708700", + "Timestamp": "2024-05-16T11:16:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.529100", - "Timestamp": "2019-10-15T21:21:53.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.583700", + "Timestamp": "2024-05-16T11:16:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.529100", - "Timestamp": "2019-10-15T21:21:53.000Z" + "SpotPrice": "2.209000", + "Timestamp": "2024-05-16T11:16:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.819100", - "Timestamp": "2019-10-15T21:21:53.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119400", + "Timestamp": "2024-05-16T11:16:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.819100", - "Timestamp": "2019-10-15T21:21:53.000Z" + "SpotPrice": "1.257200", + "Timestamp": "2024-05-16T11:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.819100", - "Timestamp": "2019-10-15T21:21:53.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.252200", + "Timestamp": "2024-05-16T11:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m4.10xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.789100", - "Timestamp": "2019-10-15T21:21:53.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.127200", + "Timestamp": "2024-05-16T11:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.789100", - "Timestamp": "2019-10-15T21:21:53.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.459000", + "Timestamp": "2024-05-16T11:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.789100", - "Timestamp": "2019-10-15T21:21:53.000Z" + "SpotPrice": "0.454000", + "Timestamp": "2024-05-16T11:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.689100", - "Timestamp": "2019-10-15T21:21:53.000Z" + "SpotPrice": "0.329000", + "Timestamp": "2024-05-16T11:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.689100", - "Timestamp": "2019-10-15T21:21:53.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.907400", + "Timestamp": "2024-05-16T11:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.689100", - "Timestamp": "2019-10-15T21:21:53.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.301300", + "Timestamp": "2024-05-16T11:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.136700", - "Timestamp": "2019-10-15T21:21:51.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m2.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.271300", + "Timestamp": "2024-05-16T11:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.136700", - "Timestamp": "2019-10-15T21:21:51.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.171300", + "Timestamp": "2024-05-16T11:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.136700", - "Timestamp": "2019-10-15T21:21:51.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163400", + "Timestamp": "2024-05-16T11:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.130400", - "Timestamp": "2019-10-15T21:21:51.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159400", + "Timestamp": "2024-05-16T11:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123100", - "Timestamp": "2019-10-15T21:21:51.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103400", + "Timestamp": "2024-05-16T11:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123100", - "Timestamp": "2019-10-15T21:21:51.000Z" + "SpotPrice": "1.478600", + "Timestamp": "2024-05-16T11:16:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.170400", - "Timestamp": "2019-10-15T21:21:51.000Z" + "SpotPrice": "1.473600", + "Timestamp": "2024-05-16T11:16:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.163100", - "Timestamp": "2019-10-15T21:21:51.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.348600", + "Timestamp": "2024-05-16T11:16:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.573300", + "Timestamp": "2024-05-16T11:16:22.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.163100", - "Timestamp": "2019-10-15T21:21:51.000Z" + "SpotPrice": "0.543300", + "Timestamp": "2024-05-16T11:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.070400", - "Timestamp": "2019-10-15T21:21:51.000Z" + "SpotPrice": "0.443300", + "Timestamp": "2024-05-16T11:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063100", - "Timestamp": "2019-10-15T21:21:51.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113400", + "Timestamp": "2024-05-16T11:16:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063100", - "Timestamp": "2019-10-15T21:21:51.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T11:16:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "p2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.646600", - "Timestamp": "2019-10-15T21:21:44.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.053400", + "Timestamp": "2024-05-16T11:16:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.646600", - "Timestamp": "2019-10-15T21:21:44.000Z" + "SpotPrice": "6.867200", + "Timestamp": "2024-05-16T11:16:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m4.10xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.522600", - "Timestamp": "2019-10-15T21:21:44.000Z" + "SpotPrice": "1.188100", + "Timestamp": "2024-05-16T11:16:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "p2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.522600", - "Timestamp": "2019-10-15T21:21:44.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.158100", + "Timestamp": "2024-05-16T11:16:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "p2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.562600", - "Timestamp": "2019-10-15T21:21:44.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.058100", + "Timestamp": "2024-05-16T11:16:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.143400", + "Timestamp": "2024-05-16T11:16:15.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.562600", - "Timestamp": "2019-10-15T21:21:44.000Z" + "SpotPrice": "3.138400", + "Timestamp": "2024-05-16T11:16:15.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.462600", - "Timestamp": "2019-10-15T21:21:44.000Z" + "SpotPrice": "3.013400", + "Timestamp": "2024-05-16T11:16:15.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "p2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.462600", - "Timestamp": "2019-10-15T21:21:44.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.146400", + "Timestamp": "2024-05-16T11:16:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.050800", - "Timestamp": "2019-10-15T21:21:43.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.116400", + "Timestamp": "2024-05-16T11:16:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.050800", - "Timestamp": "2019-10-15T21:21:43.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.016400", + "Timestamp": "2024-05-16T11:16:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c1.medium", "ProductDescription": "Windows", - "SpotPrice": "2.050800", - "Timestamp": "2019-10-15T21:21:43.000Z" + "SpotPrice": "0.115700", + "Timestamp": "2024-05-16T11:16:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.708800", - "Timestamp": "2019-10-15T21:21:43.000Z" + "SpotPrice": "1.786900", + "Timestamp": "2024-05-16T11:16:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.708800", - "Timestamp": "2019-10-15T21:21:43.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.756900", + "Timestamp": "2024-05-16T11:16:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.708800", - "Timestamp": "2019-10-15T21:21:43.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.656900", + "Timestamp": "2024-05-16T11:16:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.678800", - "Timestamp": "2019-10-15T21:21:43.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.389500", + "Timestamp": "2024-05-16T11:16:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.678800", - "Timestamp": "2019-10-15T21:21:43.000Z" + "SpotPrice": "1.359500", + "Timestamp": "2024-05-16T11:16:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.678800", - "Timestamp": "2019-10-15T21:21:43.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.259500", + "Timestamp": "2024-05-16T11:16:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.578800", - "Timestamp": "2019-10-15T21:21:43.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.190200", + "Timestamp": "2024-05-16T11:16:04.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.578800", - "Timestamp": "2019-10-15T21:21:43.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.186200", + "Timestamp": "2024-05-16T11:16:04.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.578800", - "Timestamp": "2019-10-15T21:21:43.000Z" + "SpotPrice": "0.130200", + "Timestamp": "2024-05-16T11:16:04.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "12.466000", - "Timestamp": "2019-10-15T21:21:36.000Z" + "SpotPrice": "0.289000", + "Timestamp": "2024-05-16T11:16:04.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.830800", - "Timestamp": "2019-10-15T21:21:36.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.284000", + "Timestamp": "2024-05-16T11:16:04.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "p2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "12.436000", - "Timestamp": "2019-10-15T21:21:36.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.159000", + "Timestamp": "2024-05-16T11:16:04.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "p2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.800800", - "Timestamp": "2019-10-15T21:21:36.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "7.275000", + "Timestamp": "2024-05-16T11:15:57.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "12.336000", - "Timestamp": "2019-10-15T21:21:36.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.245000", + "Timestamp": "2024-05-16T11:15:57.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.700800", - "Timestamp": "2019-10-15T21:21:36.000Z" + "SpotPrice": "7.145000", + "Timestamp": "2024-05-16T11:15:57.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "13.808000", - "Timestamp": "2019-10-15T21:21:36.000Z" + "SpotPrice": "3.640200", + "Timestamp": "2024-05-16T11:13:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.172800", - "Timestamp": "2019-10-15T21:21:36.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.128900", - "Timestamp": "2019-10-15T21:21:34.000Z" + "SpotPrice": "4.060400", + "Timestamp": "2024-05-16T11:13:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.128900", - "Timestamp": "2019-10-15T21:21:34.000Z" + "SpotPrice": "0.826200", + "Timestamp": "2024-05-16T11:13:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.128900", - "Timestamp": "2019-10-15T21:21:34.000Z" + "SpotPrice": "1.373000", + "Timestamp": "2024-05-16T11:13:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.168900", - "Timestamp": "2019-10-15T21:21:34.000Z" + "SpotPrice": "0.821200", + "Timestamp": "2024-05-16T11:13:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.168900", - "Timestamp": "2019-10-15T21:21:34.000Z" + "SpotPrice": "1.368000", + "Timestamp": "2024-05-16T11:13:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5n.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.168900", - "Timestamp": "2019-10-15T21:21:34.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.696200", + "Timestamp": "2024-05-16T11:13:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.068900", - "Timestamp": "2019-10-15T21:21:34.000Z" + "SpotPrice": "1.243000", + "Timestamp": "2024-05-16T11:13:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.068900", - "Timestamp": "2019-10-15T21:21:34.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.546200", + "Timestamp": "2024-05-16T11:03:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.541200", + "Timestamp": "2024-05-16T11:03:28.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.068900", - "Timestamp": "2019-10-15T21:21:34.000Z" + "SpotPrice": "0.416200", + "Timestamp": "2024-05-16T11:03:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.large", "ProductDescription": "Windows", - "SpotPrice": "0.252900", - "Timestamp": "2019-10-15T21:21:34.000Z" + "SpotPrice": "0.108500", + "Timestamp": "2024-05-16T11:02:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.252900", - "Timestamp": "2019-10-15T21:21:34.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.901100", + "Timestamp": "2024-05-16T11:02:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.252900", - "Timestamp": "2019-10-15T21:21:34.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.896100", + "Timestamp": "2024-05-16T11:02:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.metal", - "ProductDescription": "Windows", - "SpotPrice": "6.152500", - "Timestamp": "2019-10-15T21:21:18.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.771100", + "Timestamp": "2024-05-16T11:02:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.metal", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.152500", - "Timestamp": "2019-10-15T21:21:18.000Z" + "SpotPrice": "5.076200", + "Timestamp": "2024-05-16T11:02:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.metal", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.152500", - "Timestamp": "2019-10-15T21:21:18.000Z" + "SpotPrice": "2.575200", + "Timestamp": "2024-05-16T11:02:00.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.metal", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x2iedn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.866500", - "Timestamp": "2019-10-15T21:21:18.000Z" + "SpotPrice": "0.222600", + "Timestamp": "2024-05-16T11:02:00.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.866500", - "Timestamp": "2019-10-15T21:21:18.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.218900", + "Timestamp": "2024-05-16T11:02:00.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.866500", - "Timestamp": "2019-10-15T21:21:18.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162600", + "Timestamp": "2024-05-16T11:02:00.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.836500", - "Timestamp": "2019-10-15T21:21:18.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.718700", + "Timestamp": "2024-05-16T11:01:53.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.836500", - "Timestamp": "2019-10-15T21:21:18.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.640600", + "Timestamp": "2024-05-16T11:01:50.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.metal", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.836500", - "Timestamp": "2019-10-15T21:21:18.000Z" + "SpotPrice": "2.635600", + "Timestamp": "2024-05-16T11:01:50.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.metal", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.736500", - "Timestamp": "2019-10-15T21:21:18.000Z" + "SpotPrice": "2.510600", + "Timestamp": "2024-05-16T11:01:50.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.736500", - "Timestamp": "2019-10-15T21:21:18.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.096200", + "Timestamp": "2024-05-16T11:01:46.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.736500", - "Timestamp": "2019-10-15T21:21:18.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.091200", + "Timestamp": "2024-05-16T11:01:46.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.130100", - "Timestamp": "2019-10-15T21:21:17.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.966200", + "Timestamp": "2024-05-16T11:01:46.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.130100", - "Timestamp": "2019-10-15T21:21:17.000Z" + "SpotPrice": "1.920400", + "Timestamp": "2024-05-16T11:01:42.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.130100", - "Timestamp": "2019-10-15T21:21:17.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.915400", + "Timestamp": "2024-05-16T11:01:42.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.170100", - "Timestamp": "2019-10-15T21:21:17.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.790400", + "Timestamp": "2024-05-16T11:01:42.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.170100", - "Timestamp": "2019-10-15T21:21:17.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061400", + "Timestamp": "2024-05-16T11:01:42.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t4g.nano", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.170100", - "Timestamp": "2019-10-15T21:21:17.000Z" + "SpotPrice": "0.001400", + "Timestamp": "2024-05-16T11:01:42.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t4g.nano", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.070100", - "Timestamp": "2019-10-15T21:21:17.000Z" + "SpotPrice": "0.001400", + "Timestamp": "2024-05-16T11:01:42.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.070100", - "Timestamp": "2019-10-15T21:21:17.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.925600", + "Timestamp": "2024-05-16T11:01:41.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.070100", - "Timestamp": "2019-10-15T21:21:17.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.896200", + "Timestamp": "2024-05-16T11:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.111100", - "Timestamp": "2019-10-15T21:21:17.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.891200", + "Timestamp": "2024-05-16T11:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.111100", - "Timestamp": "2019-10-15T21:21:17.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.766200", + "Timestamp": "2024-05-16T11:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.111100", - "Timestamp": "2019-10-15T21:21:17.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.662200", + "Timestamp": "2024-05-16T11:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.274700", - "Timestamp": "2019-10-15T21:21:17.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.632200", + "Timestamp": "2024-05-16T11:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.274700", - "Timestamp": "2019-10-15T21:21:17.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.532200", + "Timestamp": "2024-05-16T11:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.274700", - "Timestamp": "2019-10-15T21:21:17.000Z" + "SpotPrice": "0.205600", + "Timestamp": "2024-05-16T11:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.244700", - "Timestamp": "2019-10-15T21:21:17.000Z" + "SpotPrice": "0.201900", + "Timestamp": "2024-05-16T11:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.244700", - "Timestamp": "2019-10-15T21:21:17.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.145600", + "Timestamp": "2024-05-16T11:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.244700", - "Timestamp": "2019-10-15T21:21:17.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.553600", + "Timestamp": "2024-05-16T11:01:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.144700", - "Timestamp": "2019-10-15T21:21:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.367200", + "Timestamp": "2024-05-16T11:01:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.144700", - "Timestamp": "2019-10-15T21:21:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.337200", + "Timestamp": "2024-05-16T11:01:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m4.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.144700", - "Timestamp": "2019-10-15T21:21:17.000Z" + "SpotPrice": "1.237200", + "Timestamp": "2024-05-16T11:01:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.512700", - "Timestamp": "2019-10-15T21:21:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.245500", + "Timestamp": "2024-05-16T11:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.512700", - "Timestamp": "2019-10-15T21:21:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.240500", + "Timestamp": "2024-05-16T11:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.512700", - "Timestamp": "2019-10-15T21:21:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.115500", + "Timestamp": "2024-05-16T11:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.958800", - "Timestamp": "2019-10-15T21:21:15.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163800", + "Timestamp": "2024-05-16T11:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.958800", - "Timestamp": "2019-10-15T21:21:15.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159800", + "Timestamp": "2024-05-16T11:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.958800", - "Timestamp": "2019-10-15T21:21:15.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T11:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "z1d.3xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.536800", - "Timestamp": "2019-10-15T21:21:15.000Z" + "SpotPrice": "0.336000", + "Timestamp": "2024-05-16T11:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.536800", - "Timestamp": "2019-10-15T21:21:15.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.331000", + "Timestamp": "2024-05-16T11:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "z1d.3xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.206000", + "Timestamp": "2024-05-16T11:01:33.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.6xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.536800", - "Timestamp": "2019-10-15T21:21:15.000Z" + "SpotPrice": "0.525700", + "Timestamp": "2024-05-16T11:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "z1d.3xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.6xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.506800", - "Timestamp": "2019-10-15T21:21:15.000Z" + "SpotPrice": "0.520700", + "Timestamp": "2024-05-16T11:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.506800", - "Timestamp": "2019-10-15T21:21:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.395700", + "Timestamp": "2024-05-16T11:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.506800", - "Timestamp": "2019-10-15T21:21:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.545500", + "Timestamp": "2024-05-16T11:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.406800", - "Timestamp": "2019-10-15T21:21:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.515500", + "Timestamp": "2024-05-16T11:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "z1d.3xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.9xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.406800", - "Timestamp": "2019-10-15T21:21:15.000Z" + "SpotPrice": "1.415500", + "Timestamp": "2024-05-16T11:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "z1d.3xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.406800", - "Timestamp": "2019-10-15T21:21:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.731000", + "Timestamp": "2024-05-16T11:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.025400", - "Timestamp": "2019-10-15T21:20:20.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.726000", + "Timestamp": "2024-05-16T11:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.025400", - "Timestamp": "2019-10-15T21:20:20.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.601000", + "Timestamp": "2024-05-16T11:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.025400", - "Timestamp": "2019-10-15T21:20:20.000Z" + "SpotPrice": "0.817500", + "Timestamp": "2024-05-16T11:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.419400", - "Timestamp": "2019-10-15T21:20:20.000Z" + "SpotPrice": "0.876700", + "Timestamp": "2024-05-16T11:01:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.419400", - "Timestamp": "2019-10-15T21:20:20.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.846700", + "Timestamp": "2024-05-16T11:01:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.419400", - "Timestamp": "2019-10-15T21:20:20.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.746700", + "Timestamp": "2024-05-16T11:01:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", + "AvailabilityZone": "sa-east-1b", "InstanceType": "m5.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.389400", - "Timestamp": "2019-10-15T21:20:20.000Z" + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.523100", + "Timestamp": "2024-05-16T11:01:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", + "AvailabilityZone": "sa-east-1b", "InstanceType": "m5.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.389400", - "Timestamp": "2019-10-15T21:20:20.000Z" + "SpotPrice": "0.493100", + "Timestamp": "2024-05-16T11:01:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", + "AvailabilityZone": "sa-east-1b", "InstanceType": "m5.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.389400", - "Timestamp": "2019-10-15T21:20:20.000Z" + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.393100", + "Timestamp": "2024-05-16T11:01:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.289400", - "Timestamp": "2019-10-15T21:20:20.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.144200", + "Timestamp": "2024-05-16T11:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.289400", - "Timestamp": "2019-10-15T21:20:20.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.139200", + "Timestamp": "2024-05-16T11:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.metal-24xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.289400", - "Timestamp": "2019-10-15T21:20:20.000Z" + "SpotPrice": "1.014200", + "Timestamp": "2024-05-16T11:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r4.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097000", - "Timestamp": "2019-10-15T21:20:19.000Z" + "SpotPrice": "0.315200", + "Timestamp": "2024-05-16T11:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096100", - "Timestamp": "2019-10-15T21:20:19.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.310200", + "Timestamp": "2024-05-16T11:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096100", - "Timestamp": "2019-10-15T21:20:19.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.185200", + "Timestamp": "2024-05-16T11:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r4.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137000", - "Timestamp": "2019-10-15T21:20:19.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.877500", + "Timestamp": "2024-05-16T11:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r4.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6g.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136100", - "Timestamp": "2019-10-15T21:20:19.000Z" + "SpotPrice": "0.872500", + "Timestamp": "2024-05-16T11:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r4.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136100", - "Timestamp": "2019-10-15T21:20:19.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.747500", + "Timestamp": "2024-05-16T11:01:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037000", - "Timestamp": "2019-10-15T21:20:19.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.793400", + "Timestamp": "2024-05-16T11:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036100", - "Timestamp": "2019-10-15T21:20:19.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.788400", + "Timestamp": "2024-05-16T11:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r4.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036100", - "Timestamp": "2019-10-15T21:20:19.000Z" + "SpotPrice": "0.663400", + "Timestamp": "2024-05-16T11:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.128100", - "Timestamp": "2019-10-15T21:20:19.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.442100", + "Timestamp": "2024-05-16T11:01:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.128100", - "Timestamp": "2019-10-15T21:20:19.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.437100", + "Timestamp": "2024-05-16T11:01:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.128100", - "Timestamp": "2019-10-15T21:20:19.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.312100", + "Timestamp": "2024-05-16T11:01:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.708400", - "Timestamp": "2019-10-15T21:20:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.798900", + "Timestamp": "2024-05-16T11:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.111700", - "Timestamp": "2019-10-15T21:20:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.793900", + "Timestamp": "2024-05-16T11:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.111700", - "Timestamp": "2019-10-15T21:20:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.668900", + "Timestamp": "2024-05-16T11:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.912500", - "Timestamp": "2019-10-15T21:20:15.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.149400", + "Timestamp": "2024-05-16T11:01:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.912500", - "Timestamp": "2019-10-15T21:20:15.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.144400", + "Timestamp": "2024-05-16T11:01:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.912500", - "Timestamp": "2019-10-15T21:20:15.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.019400", + "Timestamp": "2024-05-16T11:01:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.740500", - "Timestamp": "2019-10-15T21:20:15.000Z" + "SpotPrice": "0.494100", + "Timestamp": "2024-05-16T11:01:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.740500", - "Timestamp": "2019-10-15T21:20:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.489100", + "Timestamp": "2024-05-16T11:01:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.740500", - "Timestamp": "2019-10-15T21:20:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.364100", + "Timestamp": "2024-05-16T11:01:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.710500", - "Timestamp": "2019-10-15T21:20:15.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.989200", + "Timestamp": "2024-05-16T11:01:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.710500", - "Timestamp": "2019-10-15T21:20:15.000Z" + "SpotPrice": "0.984200", + "Timestamp": "2024-05-16T11:01:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.710500", - "Timestamp": "2019-10-15T21:20:15.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.859200", + "Timestamp": "2024-05-16T11:01:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.610500", - "Timestamp": "2019-10-15T21:20:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.344000", + "Timestamp": "2024-05-16T11:01:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.610500", - "Timestamp": "2019-10-15T21:20:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.314000", + "Timestamp": "2024-05-16T11:01:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.610500", - "Timestamp": "2019-10-15T21:20:15.000Z" + "SpotPrice": "0.214000", + "Timestamp": "2024-05-16T11:01:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.505800", - "Timestamp": "2019-10-15T21:20:11.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.303000", + "Timestamp": "2024-05-16T11:01:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.505800", - "Timestamp": "2019-10-15T21:20:11.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298000", + "Timestamp": "2024-05-16T11:01:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.505800", - "Timestamp": "2019-10-15T21:20:11.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.173000", + "Timestamp": "2024-05-16T11:01:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.278100", - "Timestamp": "2019-10-15T21:20:11.000Z" + "SpotPrice": "0.459700", + "Timestamp": "2024-05-16T11:01:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.268600", - "Timestamp": "2019-10-15T21:20:11.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.454700", + "Timestamp": "2024-05-16T11:01:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.329700", + "Timestamp": "2024-05-16T11:01:18.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.269500", - "Timestamp": "2019-10-15T21:20:11.000Z" + "SpotPrice": "1.210800", + "Timestamp": "2024-05-16T11:01:15.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.248100", - "Timestamp": "2019-10-15T21:20:11.000Z" + "SpotPrice": "1.180800", + "Timestamp": "2024-05-16T11:01:15.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m4.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.238600", - "Timestamp": "2019-10-15T21:20:11.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.080800", + "Timestamp": "2024-05-16T11:01:15.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.838300", + "Timestamp": "2024-05-16T11:01:10.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.239500", - "Timestamp": "2019-10-15T21:20:11.000Z" + "SpotPrice": "1.808300", + "Timestamp": "2024-05-16T11:01:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.148100", - "Timestamp": "2019-10-15T21:20:11.000Z" + "SpotPrice": "1.708300", + "Timestamp": "2024-05-16T11:01:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.138600", - "Timestamp": "2019-10-15T21:20:11.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t2.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068200", + "Timestamp": "2024-05-16T11:01:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.038200", + "Timestamp": "2024-05-16T11:01:07.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t2.small", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.139500", - "Timestamp": "2019-10-15T21:20:11.000Z" + "SpotPrice": "0.008200", + "Timestamp": "2024-05-16T11:01:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.558000", - "Timestamp": "2019-10-15T21:20:08.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.318700", + "Timestamp": "2024-05-16T11:01:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.296200", - "Timestamp": "2019-10-15T21:20:08.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.315000", + "Timestamp": "2024-05-16T11:01:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.296200", - "Timestamp": "2019-10-15T21:20:08.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.258700", + "Timestamp": "2024-05-16T11:01:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.434000", - "Timestamp": "2019-10-15T21:20:07.000Z" + "SpotPrice": "3.861100", + "Timestamp": "2024-05-16T11:01:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.172200", - "Timestamp": "2019-10-15T21:20:07.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.856100", + "Timestamp": "2024-05-16T11:01:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.172200", - "Timestamp": "2019-10-15T21:20:07.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.731100", + "Timestamp": "2024-05-16T11:01:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.474000", - "Timestamp": "2019-10-15T21:20:07.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214900", + "Timestamp": "2024-05-16T11:01:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.212200", - "Timestamp": "2019-10-15T21:20:07.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.658100", + "Timestamp": "2024-05-16T11:00:56.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5zn.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.212200", - "Timestamp": "2019-10-15T21:20:07.000Z" + "SpotPrice": "0.653100", + "Timestamp": "2024-05-16T11:00:56.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5zn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.374000", - "Timestamp": "2019-10-15T21:20:07.000Z" + "SpotPrice": "0.528100", + "Timestamp": "2024-05-16T11:00:56.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.112200", - "Timestamp": "2019-10-15T21:20:07.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.190900", + "Timestamp": "2024-05-16T11:00:55.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.112200", - "Timestamp": "2019-10-15T21:20:07.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.185900", + "Timestamp": "2024-05-16T11:00:55.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.998300", - "Timestamp": "2019-10-15T21:20:06.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.060900", + "Timestamp": "2024-05-16T11:00:55.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gd.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.998300", - "Timestamp": "2019-10-15T21:20:06.000Z" + "SpotPrice": "0.596600", + "Timestamp": "2024-05-16T11:00:53.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gd.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.968300", - "Timestamp": "2019-10-15T21:20:06.000Z" + "SpotPrice": "0.591600", + "Timestamp": "2024-05-16T11:00:53.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.968300", - "Timestamp": "2019-10-15T21:20:06.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.466600", + "Timestamp": "2024-05-16T11:00:53.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.274000", + "Timestamp": "2024-05-16T10:49:15.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.868300", - "Timestamp": "2019-10-15T21:20:06.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269000", + "Timestamp": "2024-05-16T10:49:15.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.868300", - "Timestamp": "2019-10-15T21:20:06.000Z" + "SpotPrice": "0.144000", + "Timestamp": "2024-05-16T10:49:15.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3en.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.076300", - "Timestamp": "2019-10-15T21:20:06.000Z" + "SpotPrice": "0.512000", + "Timestamp": "2024-05-16T10:48:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5a.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.076300", - "Timestamp": "2019-10-15T21:20:06.000Z" + "SpotPrice": "2.491200", + "Timestamp": "2024-05-16T10:47:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.116000", - "Timestamp": "2019-10-15T21:20:04.000Z" + "SpotPrice": "0.429200", + "Timestamp": "2024-05-16T10:47:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.592400", - "Timestamp": "2019-10-15T21:20:04.000Z" + "SpotPrice": "3.472000", + "Timestamp": "2024-05-16T10:47:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.592400", - "Timestamp": "2019-10-15T21:20:04.000Z" + "SpotPrice": "0.221800", + "Timestamp": "2024-05-16T10:47:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.878000", - "Timestamp": "2019-10-15T21:20:04.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.102700", + "Timestamp": "2024-05-16T10:47:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1e.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.354400", - "Timestamp": "2019-10-15T21:20:04.000Z" + "SpotPrice": "1.880300", + "Timestamp": "2024-05-16T10:47:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.354400", - "Timestamp": "2019-10-15T21:20:04.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.850300", + "Timestamp": "2024-05-16T10:47:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.848000", - "Timestamp": "2019-10-15T21:20:04.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.750300", + "Timestamp": "2024-05-16T10:47:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.324400", - "Timestamp": "2019-10-15T21:20:04.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.100000", + "Timestamp": "2024-05-16T10:46:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.324400", - "Timestamp": "2019-10-15T21:20:04.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "3.909900", + "Timestamp": "2024-05-16T10:46:48.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.748000", - "Timestamp": "2019-10-15T21:20:04.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360400", + "Timestamp": "2024-05-16T10:46:46.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.224400", - "Timestamp": "2019-10-15T21:20:04.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.355400", + "Timestamp": "2024-05-16T10:46:46.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.224400", - "Timestamp": "2019-10-15T21:20:04.000Z" + "SpotPrice": "0.230400", + "Timestamp": "2024-05-16T10:46:46.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.342800", - "Timestamp": "2019-10-15T21:20:02.000Z" + "SpotPrice": "0.892600", + "Timestamp": "2024-05-16T10:46:43.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.342800", - "Timestamp": "2019-10-15T21:20:02.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.862600", + "Timestamp": "2024-05-16T10:46:43.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.762600", + "Timestamp": "2024-05-16T10:46:43.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.342800", - "Timestamp": "2019-10-15T21:20:02.000Z" + "SpotPrice": "10.744400", + "Timestamp": "2024-05-16T10:46:43.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.312800", - "Timestamp": "2019-10-15T21:20:02.000Z" + "SpotPrice": "10.739400", + "Timestamp": "2024-05-16T10:46:43.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.312800", - "Timestamp": "2019-10-15T21:20:02.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "10.614400", + "Timestamp": "2024-05-16T10:46:43.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.312800", - "Timestamp": "2019-10-15T21:20:02.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.836800", + "Timestamp": "2024-05-16T10:46:42.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.212800", - "Timestamp": "2019-10-15T21:20:02.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123800", + "Timestamp": "2024-05-16T10:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.212800", - "Timestamp": "2019-10-15T21:20:02.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119800", + "Timestamp": "2024-05-16T10:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.212800", - "Timestamp": "2019-10-15T21:20:02.000Z" + "SpotPrice": "0.063800", + "Timestamp": "2024-05-16T10:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.039200", - "Timestamp": "2019-10-15T21:19:58.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.896700", + "Timestamp": "2024-05-16T10:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.039200", - "Timestamp": "2019-10-15T21:19:58.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.891700", + "Timestamp": "2024-05-16T10:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.039200", - "Timestamp": "2019-10-15T21:19:58.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.766700", + "Timestamp": "2024-05-16T10:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.433200", - "Timestamp": "2019-10-15T21:19:58.000Z" + "SpotPrice": "5.757100", + "Timestamp": "2024-05-16T10:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.433200", - "Timestamp": "2019-10-15T21:19:58.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.752100", + "Timestamp": "2024-05-16T10:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.433200", - "Timestamp": "2019-10-15T21:19:58.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.627100", + "Timestamp": "2024-05-16T10:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.403200", - "Timestamp": "2019-10-15T21:19:58.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.443300", + "Timestamp": "2024-05-16T10:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7g.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.403200", - "Timestamp": "2019-10-15T21:19:58.000Z" + "SpotPrice": "0.438300", + "Timestamp": "2024-05-16T10:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.403200", - "Timestamp": "2019-10-15T21:19:58.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.313300", + "Timestamp": "2024-05-16T10:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.303200", - "Timestamp": "2019-10-15T21:19:58.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.352500", + "Timestamp": "2024-05-16T10:46:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.303200", - "Timestamp": "2019-10-15T21:19:58.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.347500", + "Timestamp": "2024-05-16T10:46:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.303200", - "Timestamp": "2019-10-15T21:19:58.000Z" + "SpotPrice": "1.222500", + "Timestamp": "2024-05-16T10:46:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.750200", - "Timestamp": "2019-10-15T21:19:44.000Z" + "SpotPrice": "2.131900", + "Timestamp": "2024-05-16T10:46:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.750200", - "Timestamp": "2019-10-15T21:19:44.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.101900", + "Timestamp": "2024-05-16T10:46:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.001900", + "Timestamp": "2024-05-16T10:46:35.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.750200", - "Timestamp": "2019-10-15T21:19:44.000Z" + "SpotPrice": "1.741100", + "Timestamp": "2024-05-16T10:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.720200", - "Timestamp": "2019-10-15T21:19:44.000Z" + "SpotPrice": "1.736100", + "Timestamp": "2024-05-16T10:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.720200", - "Timestamp": "2019-10-15T21:19:44.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.611100", + "Timestamp": "2024-05-16T10:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.591600", + "Timestamp": "2024-05-16T10:46:34.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.720200", - "Timestamp": "2019-10-15T21:19:44.000Z" + "SpotPrice": "0.586600", + "Timestamp": "2024-05-16T10:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.620200", - "Timestamp": "2019-10-15T21:19:44.000Z" + "SpotPrice": "0.461600", + "Timestamp": "2024-05-16T10:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.620200", - "Timestamp": "2019-10-15T21:19:44.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.595900", + "Timestamp": "2024-05-16T10:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.620200", - "Timestamp": "2019-10-15T21:19:44.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.590900", + "Timestamp": "2024-05-16T10:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.276200", - "Timestamp": "2019-10-15T21:19:44.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.465900", + "Timestamp": "2024-05-16T10:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.276200", - "Timestamp": "2019-10-15T21:19:44.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.305000", + "Timestamp": "2024-05-16T10:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.276200", - "Timestamp": "2019-10-15T21:19:44.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.300000", + "Timestamp": "2024-05-16T10:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c1.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.076400", - "Timestamp": "2019-10-15T21:19:42.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.175000", + "Timestamp": "2024-05-16T10:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c1.medium", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t4g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.076400", - "Timestamp": "2019-10-15T21:19:42.000Z" + "SpotPrice": "0.121300", + "Timestamp": "2024-05-16T10:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c1.medium", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t4g.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.116400", - "Timestamp": "2019-10-15T21:19:42.000Z" + "SpotPrice": "0.117600", + "Timestamp": "2024-05-16T10:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c1.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.116400", - "Timestamp": "2019-10-15T21:19:42.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.061300", + "Timestamp": "2024-05-16T10:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c1.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.016400", - "Timestamp": "2019-10-15T21:19:42.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.189800", + "Timestamp": "2024-05-16T10:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c1.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.016400", - "Timestamp": "2019-10-15T21:19:42.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.184800", + "Timestamp": "2024-05-16T10:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c1.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.118400", - "Timestamp": "2019-10-15T21:19:42.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059800", + "Timestamp": "2024-05-16T10:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c1.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.118400", - "Timestamp": "2019-10-15T21:19:42.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.650200", + "Timestamp": "2024-05-16T10:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.505800", - "Timestamp": "2019-10-15T21:19:39.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.645200", + "Timestamp": "2024-05-16T10:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.505800", - "Timestamp": "2019-10-15T21:19:39.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.520200", + "Timestamp": "2024-05-16T10:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.505800", - "Timestamp": "2019-10-15T21:19:39.000Z" + "SpotPrice": "0.855200", + "Timestamp": "2024-05-16T10:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267800", - "Timestamp": "2019-10-15T21:19:39.000Z" + "SpotPrice": "0.975200", + "Timestamp": "2024-05-16T10:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267800", - "Timestamp": "2019-10-15T21:19:39.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.945200", + "Timestamp": "2024-05-16T10:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.845200", + "Timestamp": "2024-05-16T10:46:28.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267800", - "Timestamp": "2019-10-15T21:19:39.000Z" + "SpotPrice": "2.148500", + "Timestamp": "2024-05-16T10:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.237800", - "Timestamp": "2019-10-15T21:19:39.000Z" + "SpotPrice": "2.143500", + "Timestamp": "2024-05-16T10:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.237800", - "Timestamp": "2019-10-15T21:19:39.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.018500", + "Timestamp": "2024-05-16T10:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.237800", - "Timestamp": "2019-10-15T21:19:39.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.069300", + "Timestamp": "2024-05-16T10:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.137800", - "Timestamp": "2019-10-15T21:19:39.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.195200", + "Timestamp": "2024-05-16T10:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.137800", - "Timestamp": "2019-10-15T21:19:39.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.191200", + "Timestamp": "2024-05-16T10:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.137800", - "Timestamp": "2019-10-15T21:19:39.000Z" + "SpotPrice": "0.135200", + "Timestamp": "2024-05-16T10:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.256400", - "Timestamp": "2019-10-15T21:19:37.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.966000", + "Timestamp": "2024-05-16T10:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.256400", - "Timestamp": "2019-10-15T21:19:37.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.961000", + "Timestamp": "2024-05-16T10:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.256400", - "Timestamp": "2019-10-15T21:19:37.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.836000", + "Timestamp": "2024-05-16T10:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132400", - "Timestamp": "2019-10-15T21:19:37.000Z" + "SpotPrice": "0.126700", + "Timestamp": "2024-05-16T10:46:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132400", - "Timestamp": "2019-10-15T21:19:37.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123000", + "Timestamp": "2024-05-16T10:46:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132400", - "Timestamp": "2019-10-15T21:19:37.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066700", + "Timestamp": "2024-05-16T10:46:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172400", - "Timestamp": "2019-10-15T21:19:37.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.426900", + "Timestamp": "2024-05-16T10:46:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172400", - "Timestamp": "2019-10-15T21:19:37.000Z" + "SpotPrice": "0.421900", + "Timestamp": "2024-05-16T10:46:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172400", - "Timestamp": "2019-10-15T21:19:37.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.296900", + "Timestamp": "2024-05-16T10:46:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072400", - "Timestamp": "2019-10-15T21:19:37.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119400", + "Timestamp": "2024-05-16T10:46:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072400", - "Timestamp": "2019-10-15T21:19:37.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159400", + "Timestamp": "2024-05-16T10:46:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m4.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072400", - "Timestamp": "2019-10-15T21:19:37.000Z" + "SpotPrice": "0.059400", + "Timestamp": "2024-05-16T10:46:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096200", - "Timestamp": "2019-10-15T21:19:33.000Z" + "SpotPrice": "0.716100", + "Timestamp": "2024-05-16T10:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096200", - "Timestamp": "2019-10-15T21:19:33.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.711100", + "Timestamp": "2024-05-16T10:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096200", - "Timestamp": "2019-10-15T21:19:33.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.586100", + "Timestamp": "2024-05-16T10:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136200", - "Timestamp": "2019-10-15T21:19:33.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.636200", + "Timestamp": "2024-05-16T10:46:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136200", - "Timestamp": "2019-10-15T21:19:33.000Z" + "SpotPrice": "1.631200", + "Timestamp": "2024-05-16T10:46:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136200", - "Timestamp": "2019-10-15T21:19:33.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.506200", + "Timestamp": "2024-05-16T10:46:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036200", - "Timestamp": "2019-10-15T21:19:33.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.555600", + "Timestamp": "2024-05-16T10:46:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036200", - "Timestamp": "2019-10-15T21:19:33.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.550600", + "Timestamp": "2024-05-16T10:46:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036200", - "Timestamp": "2019-10-15T21:19:33.000Z" + "SpotPrice": "0.425600", + "Timestamp": "2024-05-16T10:46:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.128200", - "Timestamp": "2019-10-15T21:19:33.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.809600", + "Timestamp": "2024-05-16T10:46:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.128200", - "Timestamp": "2019-10-15T21:19:33.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.779600", + "Timestamp": "2024-05-16T10:46:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.128200", - "Timestamp": "2019-10-15T21:19:33.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.679600", + "Timestamp": "2024-05-16T10:46:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.917600", - "Timestamp": "2019-10-15T21:14:19.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.428100", + "Timestamp": "2024-05-16T10:46:17.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.917600", - "Timestamp": "2019-10-15T21:14:19.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.423100", + "Timestamp": "2024-05-16T10:46:17.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.917600", - "Timestamp": "2019-10-15T21:14:19.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.298100", + "Timestamp": "2024-05-16T10:46:17.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5n.metal", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.783800", - "Timestamp": "2019-10-15T21:13:45.000Z" + "SpotPrice": "4.072100", + "Timestamp": "2024-05-16T10:46:13.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5n.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.783800", - "Timestamp": "2019-10-15T21:13:45.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.067100", + "Timestamp": "2024-05-16T10:46:13.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5n.metal", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.942100", + "Timestamp": "2024-05-16T10:46:13.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.783800", - "Timestamp": "2019-10-15T21:13:45.000Z" + "SpotPrice": "0.713800", + "Timestamp": "2024-05-16T10:46:13.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5n.metal", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.753800", - "Timestamp": "2019-10-15T21:13:45.000Z" + "SpotPrice": "0.708800", + "Timestamp": "2024-05-16T10:46:13.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5n.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.753800", - "Timestamp": "2019-10-15T21:13:45.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.583800", + "Timestamp": "2024-05-16T10:46:13.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5n.metal", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.679800", + "Timestamp": "2024-05-16T10:46:12.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.753800", - "Timestamp": "2019-10-15T21:13:45.000Z" + "SpotPrice": "5.674800", + "Timestamp": "2024-05-16T10:46:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5n.metal", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.653800", - "Timestamp": "2019-10-15T21:13:45.000Z" + "SpotPrice": "5.549800", + "Timestamp": "2024-05-16T10:46:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5n.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.653800", - "Timestamp": "2019-10-15T21:13:45.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T10:46:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5n.metal", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-16T10:46:12.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.653800", - "Timestamp": "2019-10-15T21:13:45.000Z" + "SpotPrice": "0.044200", + "Timestamp": "2024-05-16T10:46:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i-flex.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.943600", - "Timestamp": "2019-10-15T21:13:22.000Z" + "SpotPrice": "0.149800", + "Timestamp": "2024-05-16T10:46:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.943600", - "Timestamp": "2019-10-15T21:13:22.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146100", + "Timestamp": "2024-05-16T10:46:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089800", + "Timestamp": "2024-05-16T10:46:10.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t4g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.943600", - "Timestamp": "2019-10-15T21:13:22.000Z" + "SpotPrice": "0.287200", + "Timestamp": "2024-05-16T10:46:09.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t4g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.913600", - "Timestamp": "2019-10-15T21:13:22.000Z" + "SpotPrice": "0.282200", + "Timestamp": "2024-05-16T10:46:09.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.913600", - "Timestamp": "2019-10-15T21:13:22.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.157200", + "Timestamp": "2024-05-16T10:46:09.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.149100", + "Timestamp": "2024-05-16T10:46:08.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.913600", - "Timestamp": "2019-10-15T21:13:22.000Z" + "SpotPrice": "0.145400", + "Timestamp": "2024-05-16T10:46:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.813600", - "Timestamp": "2019-10-15T21:13:22.000Z" + "SpotPrice": "0.089100", + "Timestamp": "2024-05-16T10:46:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "z1d.6xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.813600", - "Timestamp": "2019-10-15T21:13:22.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069800", + "Timestamp": "2024-05-16T10:46:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "z1d.6xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040800", + "Timestamp": "2024-05-16T10:46:06.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3.small", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.813600", - "Timestamp": "2019-10-15T21:13:22.000Z" + "SpotPrice": "0.009800", + "Timestamp": "2024-05-16T10:46:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3a.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.174000", - "Timestamp": "2019-10-15T21:12:17.000Z" + "SpotPrice": "0.082300", + "Timestamp": "2024-05-16T10:46:03.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.174000", - "Timestamp": "2019-10-15T21:12:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078600", + "Timestamp": "2024-05-16T10:46:03.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.174000", - "Timestamp": "2019-10-15T21:12:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3a.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022300", + "Timestamp": "2024-05-16T10:46:03.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.144000", - "Timestamp": "2019-10-15T21:12:17.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "13.407400", + "Timestamp": "2024-05-16T10:45:58.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.144000", - "Timestamp": "2019-10-15T21:12:17.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068000", + "Timestamp": "2024-05-16T10:32:17.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.144000", - "Timestamp": "2019-10-15T21:12:17.000Z" + "SpotPrice": "0.039000", + "Timestamp": "2024-05-16T10:32:17.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.044000", - "Timestamp": "2019-10-15T21:12:17.000Z" + "SpotPrice": "0.008000", + "Timestamp": "2024-05-16T10:32:17.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.044000", - "Timestamp": "2019-10-15T21:12:17.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073600", + "Timestamp": "2024-05-16T10:32:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069900", + "Timestamp": "2024-05-16T10:32:16.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.044000", - "Timestamp": "2019-10-15T21:12:17.000Z" + "SpotPrice": "0.013600", + "Timestamp": "2024-05-16T10:32:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.081200", - "Timestamp": "2019-10-15T21:11:51.000Z" + "SpotPrice": "1.109200", + "Timestamp": "2024-05-16T10:32:09.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.081200", - "Timestamp": "2019-10-15T21:11:51.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.104200", + "Timestamp": "2024-05-16T10:32:09.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.081200", - "Timestamp": "2019-10-15T21:11:51.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.979200", + "Timestamp": "2024-05-16T10:32:09.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.051200", - "Timestamp": "2019-10-15T21:11:51.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.858400", + "Timestamp": "2024-05-16T10:31:56.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.051200", - "Timestamp": "2019-10-15T21:11:51.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.563500", + "Timestamp": "2024-05-16T10:31:44.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5a.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.051200", - "Timestamp": "2019-10-15T21:11:51.000Z" + "SpotPrice": "0.558500", + "Timestamp": "2024-05-16T10:31:44.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.951200", - "Timestamp": "2019-10-15T21:11:51.000Z" + "SpotPrice": "0.433500", + "Timestamp": "2024-05-16T10:31:44.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.951200", - "Timestamp": "2019-10-15T21:11:51.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.415200", + "Timestamp": "2024-05-16T10:31:41.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.951200", - "Timestamp": "2019-10-15T21:11:51.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.376900", + "Timestamp": "2024-05-16T10:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5n.metal", - "ProductDescription": "Windows", - "SpotPrice": "4.965800", - "Timestamp": "2019-10-15T21:11:49.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.371900", + "Timestamp": "2024-05-16T10:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5n.metal", - "ProductDescription": "Windows", - "SpotPrice": "4.965800", - "Timestamp": "2019-10-15T21:11:49.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.246900", + "Timestamp": "2024-05-16T10:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5n.metal", - "ProductDescription": "Windows", - "SpotPrice": "4.965800", - "Timestamp": "2019-10-15T21:11:49.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.598700", + "Timestamp": "2024-05-16T10:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.835200", - "Timestamp": "2019-10-15T21:11:39.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.593700", + "Timestamp": "2024-05-16T10:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.835200", - "Timestamp": "2019-10-15T21:11:39.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.468700", + "Timestamp": "2024-05-16T10:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.835200", - "Timestamp": "2019-10-15T21:11:39.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.128400", + "Timestamp": "2024-05-16T10:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.128200", - "Timestamp": "2019-10-15T21:11:26.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.123400", + "Timestamp": "2024-05-16T10:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.128200", - "Timestamp": "2019-10-15T21:11:26.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.998400", + "Timestamp": "2024-05-16T10:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.128200", - "Timestamp": "2019-10-15T21:11:26.000Z" + "SpotPrice": "1.716800", + "Timestamp": "2024-05-16T10:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "a1.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095700", - "Timestamp": "2019-10-15T21:11:19.000Z" + "SpotPrice": "0.470600", + "Timestamp": "2024-05-16T10:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "a1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095700", - "Timestamp": "2019-10-15T21:11:19.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.465600", + "Timestamp": "2024-05-16T10:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "a1.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135700", - "Timestamp": "2019-10-15T21:11:19.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.340600", + "Timestamp": "2024-05-16T10:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "a1.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135700", - "Timestamp": "2019-10-15T21:11:19.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079900", + "Timestamp": "2024-05-16T10:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "a1.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035700", - "Timestamp": "2019-10-15T21:11:19.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076200", + "Timestamp": "2024-05-16T10:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "a1.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035700", - "Timestamp": "2019-10-15T21:11:19.000Z" + "SpotPrice": "0.019900", + "Timestamp": "2024-05-16T10:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.129900", - "Timestamp": "2019-10-15T21:11:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.674300", + "Timestamp": "2024-05-16T10:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.129900", - "Timestamp": "2019-10-15T21:11:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.669300", + "Timestamp": "2024-05-16T10:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.129900", - "Timestamp": "2019-10-15T21:11:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.544300", + "Timestamp": "2024-05-16T10:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "z1d.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "inf1.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.757200", - "Timestamp": "2019-10-15T21:10:51.000Z" + "SpotPrice": "0.116600", + "Timestamp": "2024-05-16T10:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.757200", - "Timestamp": "2019-10-15T21:10:51.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-16T10:31:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "z1d.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.056600", + "Timestamp": "2024-05-16T10:31:32.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.757200", - "Timestamp": "2019-10-15T21:10:51.000Z" + "SpotPrice": "2.619500", + "Timestamp": "2024-05-16T10:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "z1d.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.727200", - "Timestamp": "2019-10-15T21:10:51.000Z" + "SpotPrice": "2.589500", + "Timestamp": "2024-05-16T10:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.727200", - "Timestamp": "2019-10-15T21:10:51.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.489500", + "Timestamp": "2024-05-16T10:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.727200", - "Timestamp": "2019-10-15T21:10:51.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.593600", + "Timestamp": "2024-05-16T10:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.627200", - "Timestamp": "2019-10-15T21:10:51.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.649600", + "Timestamp": "2024-05-16T10:31:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "z1d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.627200", - "Timestamp": "2019-10-15T21:10:51.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.644600", + "Timestamp": "2024-05-16T10:31:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "z1d.12xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.627200", - "Timestamp": "2019-10-15T21:10:51.000Z" + "SpotPrice": "1.519600", + "Timestamp": "2024-05-16T10:31:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m3.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092800", - "Timestamp": "2019-10-15T21:10:48.000Z" + "SpotPrice": "2.744200", + "Timestamp": "2024-05-16T10:31:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m3.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092800", - "Timestamp": "2019-10-15T21:10:48.000Z" + "SpotPrice": "2.822700", + "Timestamp": "2024-05-16T10:31:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m3.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132800", - "Timestamp": "2019-10-15T21:10:48.000Z" + "SpotPrice": "2.739200", + "Timestamp": "2024-05-16T10:31:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m3.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132800", - "Timestamp": "2019-10-15T21:10:48.000Z" + "SpotPrice": "2.817700", + "Timestamp": "2024-05-16T10:31:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m3.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032800", - "Timestamp": "2019-10-15T21:10:48.000Z" + "SpotPrice": "2.614200", + "Timestamp": "2024-05-16T10:31:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m3.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032800", - "Timestamp": "2019-10-15T21:10:48.000Z" + "SpotPrice": "2.692700", + "Timestamp": "2024-05-16T10:31:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5ad.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.433200", - "Timestamp": "2019-10-15T21:10:47.000Z" + "SpotPrice": "1.064700", + "Timestamp": "2024-05-16T10:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.433200", - "Timestamp": "2019-10-15T21:10:47.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.059700", + "Timestamp": "2024-05-16T10:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.934700", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5n.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.433200", - "Timestamp": "2019-10-15T21:10:47.000Z" + "SpotPrice": "0.578900", + "Timestamp": "2024-05-16T10:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5n.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.403200", - "Timestamp": "2019-10-15T21:10:47.000Z" + "SpotPrice": "0.573900", + "Timestamp": "2024-05-16T10:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.403200", - "Timestamp": "2019-10-15T21:10:47.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.448900", + "Timestamp": "2024-05-16T10:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.067100", + "Timestamp": "2024-05-16T10:31:26.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gn.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.403200", - "Timestamp": "2019-10-15T21:10:47.000Z" + "SpotPrice": "0.038100", + "Timestamp": "2024-05-16T10:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gn.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.303200", - "Timestamp": "2019-10-15T21:10:47.000Z" + "SpotPrice": "0.007100", + "Timestamp": "2024-05-16T10:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.303200", - "Timestamp": "2019-10-15T21:10:47.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123300", + "Timestamp": "2024-05-16T10:31:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119600", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.303200", - "Timestamp": "2019-10-15T21:10:47.000Z" + "SpotPrice": "0.063300", + "Timestamp": "2024-05-16T10:31:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.128200", - "Timestamp": "2019-10-15T21:10:43.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.601200", + "Timestamp": "2024-05-16T10:31:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.128200", - "Timestamp": "2019-10-15T21:10:43.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.596200", + "Timestamp": "2024-05-16T10:31:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.128200", - "Timestamp": "2019-10-15T21:10:43.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.471200", + "Timestamp": "2024-05-16T10:31:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m3.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096200", - "Timestamp": "2019-10-15T21:10:37.000Z" + "SpotPrice": "0.355000", + "Timestamp": "2024-05-16T10:31:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096200", - "Timestamp": "2019-10-15T21:10:37.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325000", + "Timestamp": "2024-05-16T10:31:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.225000", + "Timestamp": "2024-05-16T10:31:25.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096200", - "Timestamp": "2019-10-15T21:10:37.000Z" + "SpotPrice": "1.428900", + "Timestamp": "2024-05-16T10:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5a.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136200", - "Timestamp": "2019-10-15T21:10:37.000Z" + "SpotPrice": "1.423900", + "Timestamp": "2024-05-16T10:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136200", - "Timestamp": "2019-10-15T21:10:37.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.298900", + "Timestamp": "2024-05-16T10:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.955100", + "Timestamp": "2024-05-16T10:31:23.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.969600", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136200", - "Timestamp": "2019-10-15T21:10:37.000Z" + "SpotPrice": "0.964600", + "Timestamp": "2024-05-16T10:31:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036200", - "Timestamp": "2019-10-15T21:10:37.000Z" + "SpotPrice": "0.839600", + "Timestamp": "2024-05-16T10:31:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036200", - "Timestamp": "2019-10-15T21:10:37.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.471300", + "Timestamp": "2024-05-16T10:31:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.466300", + "Timestamp": "2024-05-16T10:31:22.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036200", - "Timestamp": "2019-10-15T21:10:37.000Z" + "SpotPrice": "0.341300", + "Timestamp": "2024-05-16T10:31:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.metal", "ProductDescription": "Windows", - "SpotPrice": "2.078400", - "Timestamp": "2019-10-15T21:10:33.000Z" + "SpotPrice": "6.892600", + "Timestamp": "2024-05-16T10:31:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.078400", - "Timestamp": "2019-10-15T21:10:33.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.394400", + "Timestamp": "2024-05-16T10:31:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.078400", - "Timestamp": "2019-10-15T21:10:33.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.389400", + "Timestamp": "2024-05-16T10:31:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.039200", - "Timestamp": "2019-10-15T21:10:32.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.264400", + "Timestamp": "2024-05-16T10:31:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.039200", - "Timestamp": "2019-10-15T21:10:32.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114300", + "Timestamp": "2024-05-16T10:31:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.039200", - "Timestamp": "2019-10-15T21:10:32.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T10:31:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.998500", - "Timestamp": "2019-10-15T21:10:32.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054300", + "Timestamp": "2024-05-16T10:31:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.998500", - "Timestamp": "2019-10-15T21:10:32.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.710000", + "Timestamp": "2024-05-16T10:31:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.998500", - "Timestamp": "2019-10-15T21:10:32.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.705000", + "Timestamp": "2024-05-16T10:31:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097900", - "Timestamp": "2019-10-15T21:10:22.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.580000", + "Timestamp": "2024-05-16T10:31:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097900", - "Timestamp": "2019-10-15T21:10:22.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.378000", + "Timestamp": "2024-05-16T10:31:13.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097900", - "Timestamp": "2019-10-15T21:10:22.000Z" + "SpotPrice": "0.174800", + "Timestamp": "2024-05-16T10:31:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137900", - "Timestamp": "2019-10-15T21:10:22.000Z" + "SpotPrice": "0.170800", + "Timestamp": "2024-05-16T10:31:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137900", - "Timestamp": "2019-10-15T21:10:22.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114800", + "Timestamp": "2024-05-16T10:31:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.342700", + "Timestamp": "2024-05-16T10:31:09.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c4.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137900", - "Timestamp": "2019-10-15T21:10:22.000Z" + "SpotPrice": "0.312700", + "Timestamp": "2024-05-16T10:31:09.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c4.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037900", - "Timestamp": "2019-10-15T21:10:22.000Z" + "SpotPrice": "0.212700", + "Timestamp": "2024-05-16T10:31:09.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037900", - "Timestamp": "2019-10-15T21:10:22.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.532500", + "Timestamp": "2024-05-16T10:31:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037900", - "Timestamp": "2019-10-15T21:10:22.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126000", + "Timestamp": "2024-05-16T10:31:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126500", - "Timestamp": "2019-10-15T21:10:22.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166000", + "Timestamp": "2024-05-16T10:31:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126500", - "Timestamp": "2019-10-15T21:10:22.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066000", + "Timestamp": "2024-05-16T10:31:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126500", - "Timestamp": "2019-10-15T21:10:22.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.316300", + "Timestamp": "2024-05-16T10:31:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.159200", - "Timestamp": "2019-10-15T21:10:20.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.311300", + "Timestamp": "2024-05-16T10:31:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3en.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.159200", - "Timestamp": "2019-10-15T21:10:20.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186300", + "Timestamp": "2024-05-16T10:31:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3en.12xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.metal", "ProductDescription": "Windows", - "SpotPrice": "4.159200", - "Timestamp": "2019-10-15T21:10:20.000Z" + "SpotPrice": "6.152700", + "Timestamp": "2024-05-16T10:31:04.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.252900", - "Timestamp": "2019-10-15T21:10:06.000Z" + "SpotPrice": "3.644800", + "Timestamp": "2024-05-16T10:31:01.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m2.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.252900", - "Timestamp": "2019-10-15T21:10:06.000Z" + "SpotPrice": "0.151200", + "Timestamp": "2024-05-16T10:31:01.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x2iedn.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.252900", - "Timestamp": "2019-10-15T21:10:06.000Z" + "SpotPrice": "0.709500", + "Timestamp": "2024-05-16T10:30:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t4g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.392500", - "Timestamp": "2019-10-15T21:10:01.000Z" + "SpotPrice": "0.074300", + "Timestamp": "2024-05-16T10:30:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.392500", - "Timestamp": "2019-10-15T21:10:01.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070600", + "Timestamp": "2024-05-16T10:30:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c4.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.362500", - "Timestamp": "2019-10-15T21:10:01.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.014300", + "Timestamp": "2024-05-16T10:30:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.362500", - "Timestamp": "2019-10-15T21:10:01.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090800", + "Timestamp": "2024-05-16T10:30:57.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.262500", - "Timestamp": "2019-10-15T21:10:01.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087100", + "Timestamp": "2024-05-16T10:30:57.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.262500", - "Timestamp": "2019-10-15T21:10:01.000Z" + "SpotPrice": "0.030800", + "Timestamp": "2024-05-16T10:30:57.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.736400", - "Timestamp": "2019-10-15T21:09:50.000Z" + "SpotPrice": "4.319100", + "Timestamp": "2024-05-16T10:16:58.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.736400", - "Timestamp": "2019-10-15T21:09:50.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.314100", + "Timestamp": "2024-05-16T10:16:58.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.189100", + "Timestamp": "2024-05-16T10:16:58.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.736400", - "Timestamp": "2019-10-15T21:09:50.000Z" + "SpotPrice": "0.075700", + "Timestamp": "2024-05-16T10:16:56.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gd.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.706400", - "Timestamp": "2019-10-15T21:09:50.000Z" + "SpotPrice": "0.072000", + "Timestamp": "2024-05-16T10:16:56.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.706400", - "Timestamp": "2019-10-15T21:09:50.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015700", + "Timestamp": "2024-05-16T10:16:56.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117600", + "Timestamp": "2024-05-16T10:16:52.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t2.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.706400", - "Timestamp": "2019-10-15T21:09:50.000Z" + "SpotPrice": "0.157600", + "Timestamp": "2024-05-16T10:16:52.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t2.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.606400", - "Timestamp": "2019-10-15T21:09:50.000Z" + "SpotPrice": "0.057600", + "Timestamp": "2024-05-16T10:16:52.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.606400", - "Timestamp": "2019-10-15T21:09:50.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.408700", + "Timestamp": "2024-05-16T10:16:50.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.606400", - "Timestamp": "2019-10-15T21:09:50.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.000900", + "Timestamp": "2024-05-16T10:16:49.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.346000", - "Timestamp": "2019-10-15T21:09:45.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.995900", + "Timestamp": "2024-05-16T10:16:49.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.346000", - "Timestamp": "2019-10-15T21:09:45.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.870900", + "Timestamp": "2024-05-16T10:16:49.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.346000", - "Timestamp": "2019-10-15T21:09:45.000Z" + "SpotPrice": "3.619400", + "Timestamp": "2024-05-16T10:16:46.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m4.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i-flex.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094500", - "Timestamp": "2019-10-15T21:09:28.000Z" + "SpotPrice": "0.273100", + "Timestamp": "2024-05-16T10:16:43.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094500", - "Timestamp": "2019-10-15T21:09:28.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268100", + "Timestamp": "2024-05-16T10:16:43.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m4.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134500", - "Timestamp": "2019-10-15T21:09:28.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.143100", + "Timestamp": "2024-05-16T10:16:43.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m4.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134500", - "Timestamp": "2019-10-15T21:09:28.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.375100", + "Timestamp": "2024-05-16T10:16:42.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034500", - "Timestamp": "2019-10-15T21:09:28.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.370100", + "Timestamp": "2024-05-16T10:16:42.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m4.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034500", - "Timestamp": "2019-10-15T21:09:28.000Z" + "SpotPrice": "0.245100", + "Timestamp": "2024-05-16T10:16:42.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m1.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.083300", - "Timestamp": "2019-10-15T21:08:54.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.851200", + "Timestamp": "2024-05-16T10:16:41.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m1.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.083300", - "Timestamp": "2019-10-15T21:08:54.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m1.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.123300", - "Timestamp": "2019-10-15T21:08:54.000Z" + "SpotPrice": "0.377500", + "Timestamp": "2024-05-16T10:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m1.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.123300", - "Timestamp": "2019-10-15T21:08:54.000Z" + "SpotPrice": "0.372500", + "Timestamp": "2024-05-16T10:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m1.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.023300", - "Timestamp": "2019-10-15T21:08:54.000Z" + "SpotPrice": "0.247500", + "Timestamp": "2024-05-16T10:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m1.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.023300", - "Timestamp": "2019-10-15T21:08:54.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.969300", + "Timestamp": "2024-05-16T10:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.525400", - "Timestamp": "2019-10-15T21:07:40.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.964300", + "Timestamp": "2024-05-16T10:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.523700", - "Timestamp": "2019-10-15T20:59:40.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.839300", + "Timestamp": "2024-05-16T10:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.279400", - "Timestamp": "2019-10-15T20:59:35.000Z" + "SpotPrice": "4.831400", + "Timestamp": "2024-05-16T10:16:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.249400", - "Timestamp": "2019-10-15T20:59:35.000Z" + "SpotPrice": "4.826400", + "Timestamp": "2024-05-16T10:16:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.149400", - "Timestamp": "2019-10-15T20:59:35.000Z" + "SpotPrice": "4.701400", + "Timestamp": "2024-05-16T10:16:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.284800", - "Timestamp": "2019-10-15T20:59:07.000Z" + "SpotPrice": "0.388000", + "Timestamp": "2024-05-16T10:16:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.254800", - "Timestamp": "2019-10-15T20:59:07.000Z" + "SpotPrice": "0.383000", + "Timestamp": "2024-05-16T10:16:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.154800", - "Timestamp": "2019-10-15T20:59:07.000Z" + "SpotPrice": "0.258000", + "Timestamp": "2024-05-16T10:16:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.311000", - "Timestamp": "2019-10-15T20:51:10.000Z" + "SpotPrice": "0.216300", + "Timestamp": "2024-05-16T10:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.281000", - "Timestamp": "2019-10-15T20:51:10.000Z" + "SpotPrice": "0.211300", + "Timestamp": "2024-05-16T10:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.181000", - "Timestamp": "2019-10-15T20:51:10.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.783800", - "Timestamp": "2019-10-15T20:47:28.000Z" + "SpotPrice": "0.086300", + "Timestamp": "2024-05-16T10:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.783800", - "Timestamp": "2019-10-15T20:47:28.000Z" + "SpotPrice": "0.773500", + "Timestamp": "2024-05-16T10:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.783800", - "Timestamp": "2019-10-15T20:47:28.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.768500", + "Timestamp": "2024-05-16T10:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.753800", - "Timestamp": "2019-10-15T20:47:28.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.643500", + "Timestamp": "2024-05-16T10:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.753800", - "Timestamp": "2019-10-15T20:47:28.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.644500", + "Timestamp": "2024-05-16T10:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.753800", - "Timestamp": "2019-10-15T20:47:28.000Z" + "SpotPrice": "0.639500", + "Timestamp": "2024-05-16T10:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.653800", - "Timestamp": "2019-10-15T20:47:28.000Z" + "SpotPrice": "0.514500", + "Timestamp": "2024-05-16T10:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.653800", - "Timestamp": "2019-10-15T20:47:28.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.701300", + "Timestamp": "2024-05-16T10:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.653800", - "Timestamp": "2019-10-15T20:47:28.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.696300", + "Timestamp": "2024-05-16T10:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.069800", - "Timestamp": "2019-10-15T20:46:36.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.571300", + "Timestamp": "2024-05-16T10:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.069800", - "Timestamp": "2019-10-15T20:46:36.000Z" + "SpotPrice": "1.752600", + "Timestamp": "2024-05-16T10:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.069800", - "Timestamp": "2019-10-15T20:46:36.000Z" + "SpotPrice": "1.128300", + "Timestamp": "2024-05-16T10:16:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.408100", - "Timestamp": "2019-10-15T20:43:09.000Z" + "SpotPrice": "0.455500", + "Timestamp": "2024-05-16T10:16:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.378100", - "Timestamp": "2019-10-15T20:43:09.000Z" + "SpotPrice": "0.450500", + "Timestamp": "2024-05-16T10:16:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.278100", - "Timestamp": "2019-10-15T20:43:09.000Z" + "SpotPrice": "0.325500", + "Timestamp": "2024-05-16T10:16:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "z1d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.310300", - "Timestamp": "2019-10-15T20:42:55.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.332000", + "Timestamp": "2024-05-16T10:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.069300", - "Timestamp": "2019-10-15T20:42:52.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.327000", + "Timestamp": "2024-05-16T10:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.069300", - "Timestamp": "2019-10-15T20:42:52.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.202000", + "Timestamp": "2024-05-16T10:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m3.medium", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.069300", - "Timestamp": "2019-10-15T20:42:52.000Z" + "SpotPrice": "0.100700", + "Timestamp": "2024-05-16T10:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m3.medium", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.109300", - "Timestamp": "2019-10-15T20:42:52.000Z" + "SpotPrice": "0.097000", + "Timestamp": "2024-05-16T10:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m3.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.109300", - "Timestamp": "2019-10-15T20:42:52.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.040700", + "Timestamp": "2024-05-16T10:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m3.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.109300", - "Timestamp": "2019-10-15T20:42:52.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125600", + "Timestamp": "2024-05-16T10:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.009300", - "Timestamp": "2019-10-15T20:42:52.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121900", + "Timestamp": "2024-05-16T10:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m3.medium", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.009300", - "Timestamp": "2019-10-15T20:42:52.000Z" + "SpotPrice": "0.065600", + "Timestamp": "2024-05-16T10:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.009300", - "Timestamp": "2019-10-15T20:42:52.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.931200", + "Timestamp": "2024-05-16T10:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.072300", - "Timestamp": "2019-10-15T20:42:51.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.901200", + "Timestamp": "2024-05-16T10:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.072300", - "Timestamp": "2019-10-15T20:42:51.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.801200", + "Timestamp": "2024-05-16T10:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.072300", - "Timestamp": "2019-10-15T20:42:51.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.788400", + "Timestamp": "2024-05-16T10:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091300", - "Timestamp": "2019-10-15T20:42:36.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.783400", + "Timestamp": "2024-05-16T10:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091300", - "Timestamp": "2019-10-15T20:42:36.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.658400", + "Timestamp": "2024-05-16T10:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c3.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m4.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091300", - "Timestamp": "2019-10-15T20:42:36.000Z" + "SpotPrice": "0.308800", + "Timestamp": "2024-05-16T10:16:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c3.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m4.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.131300", - "Timestamp": "2019-10-15T20:42:36.000Z" + "SpotPrice": "0.278800", + "Timestamp": "2024-05-16T10:16:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.131300", - "Timestamp": "2019-10-15T20:42:36.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.178800", + "Timestamp": "2024-05-16T10:16:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c3.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.604800", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.131300", - "Timestamp": "2019-10-15T20:42:36.000Z" + "SpotPrice": "0.599800", + "Timestamp": "2024-05-16T10:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c3.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031300", - "Timestamp": "2019-10-15T20:42:36.000Z" + "SpotPrice": "0.474800", + "Timestamp": "2024-05-16T10:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031300", - "Timestamp": "2019-10-15T20:42:36.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.921800", + "Timestamp": "2024-05-16T10:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c3.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.916800", + "Timestamp": "2024-05-16T10:16:22.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031300", - "Timestamp": "2019-10-15T20:42:36.000Z" + "SpotPrice": "0.791800", + "Timestamp": "2024-05-16T10:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.137300", - "Timestamp": "2019-10-15T20:42:36.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.457600", + "Timestamp": "2024-05-16T10:16:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.137300", - "Timestamp": "2019-10-15T20:42:36.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.452600", + "Timestamp": "2024-05-16T10:16:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.137300", - "Timestamp": "2019-10-15T20:42:36.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.327600", + "Timestamp": "2024-05-16T10:16:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.617800", - "Timestamp": "2019-10-15T20:42:36.000Z" + "SpotPrice": "3.419500", + "Timestamp": "2024-05-16T10:16:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.617800", - "Timestamp": "2019-10-15T20:42:36.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.414500", + "Timestamp": "2024-05-16T10:16:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.289500", + "Timestamp": "2024-05-16T10:16:21.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.617800", - "Timestamp": "2019-10-15T20:42:36.000Z" + "SpotPrice": "3.491400", + "Timestamp": "2024-05-16T10:16:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.587800", - "Timestamp": "2019-10-15T20:42:36.000Z" + "SpotPrice": "3.486400", + "Timestamp": "2024-05-16T10:16:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.587800", - "Timestamp": "2019-10-15T20:42:36.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.361400", + "Timestamp": "2024-05-16T10:16:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.587800", - "Timestamp": "2019-10-15T20:42:36.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216100", + "Timestamp": "2024-05-16T10:16:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.487800", - "Timestamp": "2019-10-15T20:42:36.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114700", + "Timestamp": "2024-05-16T10:16:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.487800", - "Timestamp": "2019-10-15T20:42:36.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T10:16:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.487800", - "Timestamp": "2019-10-15T20:42:36.000Z" + "SpotPrice": "0.054700", + "Timestamp": "2024-05-16T10:16:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3en.3xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.039800", - "Timestamp": "2019-10-15T20:42:35.000Z" + "SpotPrice": "0.211100", + "Timestamp": "2024-05-16T10:16:17.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.039800", - "Timestamp": "2019-10-15T20:42:35.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T10:16:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3en.3xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.039800", - "Timestamp": "2019-10-15T20:42:35.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145800", + "Timestamp": "2024-05-16T10:16:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t2.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.009000", - "Timestamp": "2019-10-15T20:41:55.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.045800", + "Timestamp": "2024-05-16T10:16:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t2.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.009000", - "Timestamp": "2019-10-15T20:41:55.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.044600", + "Timestamp": "2024-05-16T10:16:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t2.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.009000", - "Timestamp": "2019-10-15T20:41:55.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.039600", + "Timestamp": "2024-05-16T10:16:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t2.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.064400", - "Timestamp": "2019-10-15T20:41:28.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.914600", + "Timestamp": "2024-05-16T10:16:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t2.micro", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.064400", - "Timestamp": "2019-10-15T20:41:28.000Z" + "SpotPrice": "0.387600", + "Timestamp": "2024-05-16T10:16:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t2.micro", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.064400", - "Timestamp": "2019-10-15T20:41:28.000Z" + "SpotPrice": "0.420000", + "Timestamp": "2024-05-16T10:16:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t2.micro", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.014400", - "Timestamp": "2019-10-15T20:41:28.000Z" + "SpotPrice": "0.357600", + "Timestamp": "2024-05-16T10:16:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t2.micro", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.014400", - "Timestamp": "2019-10-15T20:41:28.000Z" + "SpotPrice": "0.390000", + "Timestamp": "2024-05-16T10:16:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t2.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.014400", - "Timestamp": "2019-10-15T20:41:28.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.257600", + "Timestamp": "2024-05-16T10:16:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t2.micro", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.004400", - "Timestamp": "2019-10-15T20:41:28.000Z" + "SpotPrice": "0.290000", + "Timestamp": "2024-05-16T10:16:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t2.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.004400", - "Timestamp": "2019-10-15T20:41:28.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065700", + "Timestamp": "2024-05-16T10:16:05.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t2.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.004400", - "Timestamp": "2019-10-15T20:41:28.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037000", + "Timestamp": "2024-05-16T10:16:05.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.524000", - "Timestamp": "2019-10-15T20:34:40.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005700", + "Timestamp": "2024-05-16T10:16:05.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.340000", - "Timestamp": "2019-10-15T20:34:38.000Z" + "SpotPrice": "0.105600", + "Timestamp": "2024-05-16T10:16:04.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.310000", - "Timestamp": "2019-10-15T20:34:38.000Z" + "SpotPrice": "0.101900", + "Timestamp": "2024-05-16T10:16:04.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.210000", - "Timestamp": "2019-10-15T20:34:38.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.086700", - "Timestamp": "2019-10-15T20:26:14.000Z" + "SpotPrice": "0.045600", + "Timestamp": "2024-05-16T10:16:04.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.056700", - "Timestamp": "2019-10-15T20:26:14.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.458100", + "Timestamp": "2024-05-16T10:16:04.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.956700", - "Timestamp": "2019-10-15T20:26:14.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.511900", + "Timestamp": "2024-05-16T10:16:02.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.301600", - "Timestamp": "2019-10-15T20:25:53.000Z" + "SpotPrice": "5.432700", + "Timestamp": "2024-05-16T10:16:02.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.812500", + "Timestamp": "2024-05-16T10:16:01.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.750200", - "Timestamp": "2019-10-15T20:17:33.000Z" + "SpotPrice": "1.198400", + "Timestamp": "2024-05-16T10:16:00.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.720200", - "Timestamp": "2019-10-15T20:17:33.000Z" + "SpotPrice": "1.193400", + "Timestamp": "2024-05-16T10:16:00.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.620200", - "Timestamp": "2019-10-15T20:17:33.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "8.689400", - "Timestamp": "2019-10-15T20:17:29.000Z" + "SpotPrice": "1.068400", + "Timestamp": "2024-05-16T10:16:00.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.552400", - "Timestamp": "2019-10-15T20:14:53.000Z" + "SpotPrice": "5.078400", + "Timestamp": "2024-05-16T10:14:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.552400", - "Timestamp": "2019-10-15T20:14:53.000Z" + "SpotPrice": "5.078400", + "Timestamp": "2024-05-16T10:14:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.552400", - "Timestamp": "2019-10-15T20:14:53.000Z" + "SpotPrice": "5.078400", + "Timestamp": "2024-05-16T10:14:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.370400", - "Timestamp": "2019-10-15T20:13:52.000Z" + "SpotPrice": "0.792400", + "Timestamp": "2024-05-16T10:14:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.370400", - "Timestamp": "2019-10-15T20:13:52.000Z" + "SpotPrice": "0.792400", + "Timestamp": "2024-05-16T10:14:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.370400", - "Timestamp": "2019-10-15T20:13:52.000Z" + "SpotPrice": "1.158000", + "Timestamp": "2024-05-16T10:14:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.340400", - "Timestamp": "2019-10-15T20:13:52.000Z" + "SpotPrice": "0.787400", + "Timestamp": "2024-05-16T10:14:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.340400", - "Timestamp": "2019-10-15T20:13:52.000Z" + "SpotPrice": "0.787400", + "Timestamp": "2024-05-16T10:14:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5a.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.340400", - "Timestamp": "2019-10-15T20:13:52.000Z" + "SpotPrice": "1.153000", + "Timestamp": "2024-05-16T10:14:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.240400", - "Timestamp": "2019-10-15T20:13:52.000Z" + "SpotPrice": "0.662400", + "Timestamp": "2024-05-16T10:14:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.240400", - "Timestamp": "2019-10-15T20:13:52.000Z" + "SpotPrice": "0.662400", + "Timestamp": "2024-05-16T10:14:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.240400", - "Timestamp": "2019-10-15T20:13:52.000Z" + "SpotPrice": "1.028000", + "Timestamp": "2024-05-16T10:14:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.757700", - "Timestamp": "2019-10-15T20:08:44.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128000", + "Timestamp": "2024-05-16T10:08:55.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.727700", - "Timestamp": "2019-10-15T20:08:44.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T10:04:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.627700", - "Timestamp": "2019-10-15T20:08:44.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.385600", + "Timestamp": "2024-05-16T10:02:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t2.medium", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c3.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.035500", - "Timestamp": "2019-10-15T20:07:51.000Z" + "SpotPrice": "0.198500", + "Timestamp": "2024-05-16T10:02:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t2.medium", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m3.medium", "ProductDescription": "Windows", - "SpotPrice": "0.035500", - "Timestamp": "2019-10-15T20:07:51.000Z" + "SpotPrice": "0.072500", + "Timestamp": "2024-05-16T10:02:11.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t2.medium", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.035500", - "Timestamp": "2019-10-15T20:07:51.000Z" + "SpotPrice": "0.201000", + "Timestamp": "2024-05-16T10:02:04.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.099100", - "Timestamp": "2019-10-15T20:07:49.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.344300", + "Timestamp": "2024-05-16T10:01:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.099100", - "Timestamp": "2019-10-15T20:07:49.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.339300", + "Timestamp": "2024-05-16T10:01:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.099100", - "Timestamp": "2019-10-15T20:07:49.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.214300", + "Timestamp": "2024-05-16T10:01:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t2.medium", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t2.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.077500", - "Timestamp": "2019-10-15T20:05:30.000Z" + "SpotPrice": "0.274500", + "Timestamp": "2024-05-16T10:01:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.077500", - "Timestamp": "2019-10-15T20:05:30.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.244500", + "Timestamp": "2024-05-16T10:01:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.077500", - "Timestamp": "2019-10-15T20:05:30.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144500", + "Timestamp": "2024-05-16T10:01:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t2.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.117500", - "Timestamp": "2019-10-15T20:05:30.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.783600", + "Timestamp": "2024-05-16T10:01:56.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t2.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.117500", - "Timestamp": "2019-10-15T20:05:30.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.381500", + "Timestamp": "2024-05-16T10:01:56.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t2.medium", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6g.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.117500", - "Timestamp": "2019-10-15T20:05:30.000Z" + "SpotPrice": "0.376500", + "Timestamp": "2024-05-16T10:01:56.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t2.medium", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.017500", - "Timestamp": "2019-10-15T20:05:30.000Z" + "SpotPrice": "0.251500", + "Timestamp": "2024-05-16T10:01:56.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t2.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.017500", - "Timestamp": "2019-10-15T20:05:30.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.121200", + "Timestamp": "2024-05-16T10:01:41.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t2.medium", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.116200", + "Timestamp": "2024-05-16T10:01:41.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.017500", - "Timestamp": "2019-10-15T20:05:30.000Z" + "SpotPrice": "0.991200", + "Timestamp": "2024-05-16T10:01:41.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3en.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.282800", - "Timestamp": "2019-10-15T20:00:49.000Z" + "SpotPrice": "1.858000", + "Timestamp": "2024-05-16T10:01:41.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3en.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.252800", - "Timestamp": "2019-10-15T20:00:49.000Z" + "SpotPrice": "1.853000", + "Timestamp": "2024-05-16T10:01:41.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3en.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.152800", - "Timestamp": "2019-10-15T20:00:49.000Z" + "SpotPrice": "1.728000", + "Timestamp": "2024-05-16T10:01:41.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.076300", - "Timestamp": "2019-10-15T19:50:05.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.554400", + "Timestamp": "2024-05-16T10:01:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.076300", - "Timestamp": "2019-10-15T19:50:05.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.549400", + "Timestamp": "2024-05-16T10:01:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.998300", - "Timestamp": "2019-10-15T19:49:53.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.424400", + "Timestamp": "2024-05-16T10:01:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.998300", - "Timestamp": "2019-10-15T19:49:53.000Z" + "SpotPrice": "1.540000", + "Timestamp": "2024-05-16T10:01:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.968300", - "Timestamp": "2019-10-15T19:49:53.000Z" + "SpotPrice": "1.535000", + "Timestamp": "2024-05-16T10:01:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.968300", - "Timestamp": "2019-10-15T19:49:53.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.410000", + "Timestamp": "2024-05-16T10:01:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.868300", - "Timestamp": "2019-10-15T19:49:53.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.641100", + "Timestamp": "2024-05-16T10:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.636100", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.868300", - "Timestamp": "2019-10-15T19:49:53.000Z" + "SpotPrice": "0.511100", + "Timestamp": "2024-05-16T10:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.409400", - "Timestamp": "2019-10-15T19:44:26.000Z" + "SpotPrice": "0.316300", + "Timestamp": "2024-05-16T10:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.409400", - "Timestamp": "2019-10-15T19:44:26.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.311300", + "Timestamp": "2024-05-16T10:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.186300", + "Timestamp": "2024-05-16T10:01:37.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6gd.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.409400", - "Timestamp": "2019-10-15T19:44:26.000Z" + "SpotPrice": "0.393500", + "Timestamp": "2024-05-16T10:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6gd.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.379400", - "Timestamp": "2019-10-15T19:44:26.000Z" + "SpotPrice": "0.388500", + "Timestamp": "2024-05-16T10:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.379400", - "Timestamp": "2019-10-15T19:44:26.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.263500", + "Timestamp": "2024-05-16T10:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.624000", + "Timestamp": "2024-05-16T10:01:33.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.379400", - "Timestamp": "2019-10-15T19:44:26.000Z" + "SpotPrice": "1.619000", + "Timestamp": "2024-05-16T10:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.279400", - "Timestamp": "2019-10-15T19:44:26.000Z" + "SpotPrice": "1.494000", + "Timestamp": "2024-05-16T10:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.279400", - "Timestamp": "2019-10-15T19:44:26.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.727500", + "Timestamp": "2024-05-16T10:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.279400", - "Timestamp": "2019-10-15T19:44:26.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.722500", + "Timestamp": "2024-05-16T10:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.106700", - "Timestamp": "2019-10-15T19:44:20.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.597500", + "Timestamp": "2024-05-16T10:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.106700", - "Timestamp": "2019-10-15T19:44:20.000Z" + "SpotPrice": "0.769100", + "Timestamp": "2024-05-16T10:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.146700", - "Timestamp": "2019-10-15T19:44:20.000Z" + "SpotPrice": "0.764100", + "Timestamp": "2024-05-16T10:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m1.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.146700", - "Timestamp": "2019-10-15T19:44:20.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.639100", + "Timestamp": "2024-05-16T10:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m1.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.046700", - "Timestamp": "2019-10-15T19:44:20.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.650700", + "Timestamp": "2024-05-16T10:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.645700", + "Timestamp": "2024-05-16T10:01:32.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.046700", - "Timestamp": "2019-10-15T19:44:20.000Z" + "SpotPrice": "0.520700", + "Timestamp": "2024-05-16T10:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.223400", - "Timestamp": "2019-10-15T19:44:06.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.811700", + "Timestamp": "2024-05-16T10:01:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.223400", - "Timestamp": "2019-10-15T19:44:06.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.806700", + "Timestamp": "2024-05-16T10:01:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.223400", - "Timestamp": "2019-10-15T19:44:06.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.681700", + "Timestamp": "2024-05-16T10:01:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.739000", - "Timestamp": "2019-10-15T19:43:52.000Z" + "SpotPrice": "1.406900", + "Timestamp": "2024-05-16T10:01:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.709000", - "Timestamp": "2019-10-15T19:43:52.000Z" + "SpotPrice": "1.401900", + "Timestamp": "2024-05-16T10:01:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.609000", - "Timestamp": "2019-10-15T19:43:52.000Z" + "SpotPrice": "1.276900", + "Timestamp": "2024-05-16T10:01:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.274700", - "Timestamp": "2019-10-15T19:42:35.000Z" + "SpotPrice": "0.075200", + "Timestamp": "2024-05-16T10:01:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.274700", - "Timestamp": "2019-10-15T19:42:35.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.046200", + "Timestamp": "2024-05-16T10:01:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015200", + "Timestamp": "2024-05-16T10:01:31.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.274700", - "Timestamp": "2019-10-15T19:42:35.000Z" + "SpotPrice": "0.971800", + "Timestamp": "2024-05-16T10:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.244700", - "Timestamp": "2019-10-15T19:42:35.000Z" + "SpotPrice": "0.966800", + "Timestamp": "2024-05-16T10:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.244700", - "Timestamp": "2019-10-15T19:42:35.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.841800", + "Timestamp": "2024-05-16T10:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.244700", - "Timestamp": "2019-10-15T19:42:35.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069900", + "Timestamp": "2024-05-16T10:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.144700", - "Timestamp": "2019-10-15T19:42:35.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-16T10:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m3.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.144700", - "Timestamp": "2019-10-15T19:42:35.000Z" + "SpotPrice": "0.009900", + "Timestamp": "2024-05-16T10:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.144700", - "Timestamp": "2019-10-15T19:42:35.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.869400", + "Timestamp": "2024-05-16T10:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t4g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097900", - "Timestamp": "2019-10-15T19:41:37.000Z" + "SpotPrice": "0.083600", + "Timestamp": "2024-05-16T10:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097900", - "Timestamp": "2019-10-15T19:41:37.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079900", + "Timestamp": "2024-05-16T10:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023600", + "Timestamp": "2024-05-16T10:01:29.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097900", - "Timestamp": "2019-10-15T19:41:37.000Z" + "SpotPrice": "0.575400", + "Timestamp": "2024-05-16T10:01:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137900", - "Timestamp": "2019-10-15T19:41:37.000Z" + "SpotPrice": "0.570400", + "Timestamp": "2024-05-16T10:01:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137900", - "Timestamp": "2019-10-15T19:41:37.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.445400", + "Timestamp": "2024-05-16T10:01:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.993500", + "Timestamp": "2024-05-16T10:01:27.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137900", - "Timestamp": "2019-10-15T19:41:37.000Z" + "SpotPrice": "0.988500", + "Timestamp": "2024-05-16T10:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037900", - "Timestamp": "2019-10-15T19:41:37.000Z" + "SpotPrice": "0.863500", + "Timestamp": "2024-05-16T10:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037900", - "Timestamp": "2019-10-15T19:41:37.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.280100", + "Timestamp": "2024-05-16T10:01:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276400", + "Timestamp": "2024-05-16T10:01:26.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5zn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037900", - "Timestamp": "2019-10-15T19:41:37.000Z" + "SpotPrice": "0.220100", + "Timestamp": "2024-05-16T10:01:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.metal", "ProductDescription": "Windows", - "SpotPrice": "0.129900", - "Timestamp": "2019-10-15T19:41:36.000Z" + "SpotPrice": "16.889500", + "Timestamp": "2024-05-16T10:01:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.129900", - "Timestamp": "2019-10-15T19:41:36.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.362200", + "Timestamp": "2024-05-16T10:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.129900", - "Timestamp": "2019-10-15T19:41:36.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.332200", + "Timestamp": "2024-05-16T10:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.348400", - "Timestamp": "2019-10-15T19:27:42.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.232200", + "Timestamp": "2024-05-16T10:01:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.136600", - "Timestamp": "2019-10-15T19:27:38.000Z" + "SpotPrice": "1.474900", + "Timestamp": "2024-05-16T10:01:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.176600", - "Timestamp": "2019-10-15T19:27:38.000Z" + "SpotPrice": "1.469900", + "Timestamp": "2024-05-16T10:01:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.076600", - "Timestamp": "2019-10-15T19:27:38.000Z" + "SpotPrice": "1.344900", + "Timestamp": "2024-05-16T10:01:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.269500", - "Timestamp": "2019-10-15T19:27:32.000Z" + "SpotPrice": "8.079700", + "Timestamp": "2024-05-16T10:01:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.239500", - "Timestamp": "2019-10-15T19:27:32.000Z" + "SpotPrice": "8.074700", + "Timestamp": "2024-05-16T10:01:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.139500", - "Timestamp": "2019-10-15T19:27:32.000Z" + "SpotPrice": "7.949700", + "Timestamp": "2024-05-16T10:01:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.419600", - "Timestamp": "2019-10-15T19:11:21.000Z" + "SpotPrice": "0.080000", + "Timestamp": "2024-05-16T10:01:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gd.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.389600", - "Timestamp": "2019-10-15T19:11:21.000Z" + "SpotPrice": "0.076300", + "Timestamp": "2024-05-16T10:01:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.289600", - "Timestamp": "2019-10-15T19:11:21.000Z" + "SpotPrice": "0.020000", + "Timestamp": "2024-05-16T10:01:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.128900", - "Timestamp": "2019-10-15T19:11:10.000Z" + "SpotPrice": "0.112300", + "Timestamp": "2024-05-16T10:01:17.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.168900", - "Timestamp": "2019-10-15T19:11:10.000Z" + "SpotPrice": "0.108600", + "Timestamp": "2024-05-16T10:01:17.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.068900", - "Timestamp": "2019-10-15T19:11:10.000Z" + "SpotPrice": "0.052300", + "Timestamp": "2024-05-16T10:01:17.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.875800", + "Timestamp": "2024-05-16T10:01:13.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.436300", - "Timestamp": "2019-10-15T19:11:07.000Z" + "SpotPrice": "0.323900", + "Timestamp": "2024-05-16T10:01:11.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.406300", - "Timestamp": "2019-10-15T19:11:07.000Z" + "SpotPrice": "0.293900", + "Timestamp": "2024-05-16T10:01:11.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.306300", - "Timestamp": "2019-10-15T19:11:07.000Z" + "SpotPrice": "0.193900", + "Timestamp": "2024-05-16T10:01:11.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.384000", - "Timestamp": "2019-10-15T19:10:42.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.338200", + "Timestamp": "2024-05-16T10:01:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.392000", - "Timestamp": "2019-10-15T19:08:08.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.333200", + "Timestamp": "2024-05-16T10:01:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.392000", - "Timestamp": "2019-10-15T19:08:08.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.208200", + "Timestamp": "2024-05-16T10:01:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.18xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.392000", - "Timestamp": "2019-10-15T19:08:08.000Z" + "SpotPrice": "3.851400", + "Timestamp": "2024-05-16T10:01:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.321000", - "Timestamp": "2019-10-15T19:07:57.000Z" + "SpotPrice": "2.535400", + "Timestamp": "2024-05-16T10:01:09.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.321000", - "Timestamp": "2019-10-15T19:07:57.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.505400", + "Timestamp": "2024-05-16T10:01:09.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.405400", + "Timestamp": "2024-05-16T10:01:09.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.321000", - "Timestamp": "2019-10-15T19:07:57.000Z" + "SpotPrice": "0.304700", + "Timestamp": "2024-05-16T10:01:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.361000", - "Timestamp": "2019-10-15T19:07:57.000Z" + "SpotPrice": "0.274700", + "Timestamp": "2024-05-16T10:01:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "d2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.361000", - "Timestamp": "2019-10-15T19:07:57.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.174700", + "Timestamp": "2024-05-16T10:01:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t2.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130600", + "Timestamp": "2024-05-16T10:01:07.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t2.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.361000", - "Timestamp": "2019-10-15T19:07:57.000Z" + "SpotPrice": "0.170600", + "Timestamp": "2024-05-16T10:01:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t2.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.261000", - "Timestamp": "2019-10-15T19:07:57.000Z" + "SpotPrice": "0.070600", + "Timestamp": "2024-05-16T10:01:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.261000", - "Timestamp": "2019-10-15T19:07:57.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129500", + "Timestamp": "2024-05-16T10:01:03.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.261000", - "Timestamp": "2019-10-15T19:07:57.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125800", + "Timestamp": "2024-05-16T10:01:03.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.148100", - "Timestamp": "2019-10-15T19:02:04.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069500", + "Timestamp": "2024-05-16T10:01:03.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m4.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.095400", - "Timestamp": "2019-10-15T18:53:32.000Z" + "SpotPrice": "0.152200", + "Timestamp": "2024-05-16T10:01:03.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m4.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6g.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.135400", - "Timestamp": "2019-10-15T18:53:32.000Z" + "SpotPrice": "0.148500", + "Timestamp": "2024-05-16T10:01:03.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m4.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.035400", - "Timestamp": "2019-10-15T18:53:32.000Z" + "SpotPrice": "0.092200", + "Timestamp": "2024-05-16T10:01:03.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5a.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096200", - "Timestamp": "2019-10-15T18:47:26.000Z" + "SpotPrice": "0.159500", + "Timestamp": "2024-05-16T10:01:01.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096200", - "Timestamp": "2019-10-15T18:47:26.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.199500", + "Timestamp": "2024-05-16T10:01:01.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5a.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099500", + "Timestamp": "2024-05-16T10:01:01.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x2iedn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.096200", - "Timestamp": "2019-10-15T18:47:26.000Z" + "SpotPrice": "0.466900", + "Timestamp": "2024-05-16T10:00:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5a.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x2iedn.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136200", - "Timestamp": "2019-10-15T18:47:26.000Z" + "SpotPrice": "0.461900", + "Timestamp": "2024-05-16T10:00:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5a.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136200", - "Timestamp": "2019-10-15T18:47:26.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.336900", + "Timestamp": "2024-05-16T10:00:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5a.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076400", + "Timestamp": "2024-05-16T10:00:59.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i-flex.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.136200", - "Timestamp": "2019-10-15T18:47:26.000Z" + "SpotPrice": "0.072700", + "Timestamp": "2024-05-16T10:00:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5a.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i-flex.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036200", - "Timestamp": "2019-10-15T18:47:26.000Z" + "SpotPrice": "0.016400", + "Timestamp": "2024-05-16T10:00:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036200", - "Timestamp": "2019-10-15T18:47:26.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.588300", + "Timestamp": "2024-05-16T10:00:50.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.036200", - "Timestamp": "2019-10-15T18:47:26.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.558300", + "Timestamp": "2024-05-16T10:00:50.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.128200", - "Timestamp": "2019-10-15T18:47:06.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "6.458300", + "Timestamp": "2024-05-16T10:00:50.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5a.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3.nano", "ProductDescription": "Windows", - "SpotPrice": "0.128200", - "Timestamp": "2019-10-15T18:47:06.000Z" + "SpotPrice": "0.005400", + "Timestamp": "2024-05-16T10:00:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5a.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.128200", - "Timestamp": "2019-10-15T18:47:06.000Z" + "SpotPrice": "1.729000", + "Timestamp": "2024-05-16T09:47:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m1.medium", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.071700", - "Timestamp": "2019-10-15T18:46:26.000Z" + "SpotPrice": "1.262800", + "Timestamp": "2024-05-16T09:47:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m1.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.071700", - "Timestamp": "2019-10-15T18:46:26.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.257800", + "Timestamp": "2024-05-16T09:47:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m1.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.111700", - "Timestamp": "2019-10-15T18:46:26.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.132800", + "Timestamp": "2024-05-16T09:47:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m1.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.111700", - "Timestamp": "2019-10-15T18:46:26.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.673600", + "Timestamp": "2024-05-16T09:47:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m1.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.011700", - "Timestamp": "2019-10-15T18:46:26.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.222600", + "Timestamp": "2024-05-16T09:47:13.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m1.medium", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1e.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.218600", + "Timestamp": "2024-05-16T09:47:13.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1e.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.011700", - "Timestamp": "2019-10-15T18:46:26.000Z" + "SpotPrice": "0.162600", + "Timestamp": "2024-05-16T09:47:13.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "6.134900", - "Timestamp": "2019-10-15T18:45:20.000Z" + "SpotPrice": "0.093800", + "Timestamp": "2024-05-16T09:47:03.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "6.104900", - "Timestamp": "2019-10-15T18:45:20.000Z" + "SpotPrice": "0.090100", + "Timestamp": "2024-05-16T09:47:03.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "6.004900", - "Timestamp": "2019-10-15T18:45:20.000Z" + "SpotPrice": "0.033800", + "Timestamp": "2024-05-16T09:47:03.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.039600", - "Timestamp": "2019-10-15T18:44:39.000Z" + "SpotPrice": "0.353000", + "Timestamp": "2024-05-16T09:46:50.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.039600", - "Timestamp": "2019-10-15T18:44:39.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.348000", + "Timestamp": "2024-05-16T09:46:50.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.009600", - "Timestamp": "2019-10-15T18:44:39.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.223000", + "Timestamp": "2024-05-16T09:46:50.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.408000", + "Timestamp": "2024-05-16T09:46:50.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.009600", - "Timestamp": "2019-10-15T18:44:39.000Z" + "SpotPrice": "0.403000", + "Timestamp": "2024-05-16T09:46:50.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.909600", - "Timestamp": "2019-10-15T18:44:39.000Z" + "SpotPrice": "0.278000", + "Timestamp": "2024-05-16T09:46:50.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.909600", - "Timestamp": "2019-10-15T18:44:39.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.908400", + "Timestamp": "2024-05-16T09:46:49.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.117600", - "Timestamp": "2019-10-15T18:44:21.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.903400", + "Timestamp": "2024-05-16T09:46:49.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.117600", - "Timestamp": "2019-10-15T18:44:21.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.778400", + "Timestamp": "2024-05-16T09:46:49.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.metal", "ProductDescription": "Windows", - "SpotPrice": "3.117600", - "Timestamp": "2019-10-15T18:44:21.000Z" + "SpotPrice": "5.131200", + "Timestamp": "2024-05-16T09:46:42.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3a.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.088500", - "Timestamp": "2019-10-15T18:44:03.000Z" + "SpotPrice": "0.338100", + "Timestamp": "2024-05-16T09:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.088500", - "Timestamp": "2019-10-15T18:44:03.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.333100", + "Timestamp": "2024-05-16T09:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3a.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.128500", - "Timestamp": "2019-10-15T18:44:03.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.208100", + "Timestamp": "2024-05-16T09:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3a.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.128500", - "Timestamp": "2019-10-15T18:44:03.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.087400", + "Timestamp": "2024-05-16T09:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.028500", - "Timestamp": "2019-10-15T18:44:03.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083400", + "Timestamp": "2024-05-16T09:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3a.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.028500", - "Timestamp": "2019-10-15T18:44:03.000Z" + "SpotPrice": "0.027400", + "Timestamp": "2024-05-16T09:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135800", - "Timestamp": "2019-10-15T18:43:50.000Z" + "SpotPrice": "2.036800", + "Timestamp": "2024-05-16T09:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135800", - "Timestamp": "2019-10-15T18:43:50.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.031800", + "Timestamp": "2024-05-16T09:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135800", - "Timestamp": "2019-10-15T18:43:50.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.906800", + "Timestamp": "2024-05-16T09:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5a.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175800", - "Timestamp": "2019-10-15T18:43:50.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.467000", + "Timestamp": "2024-05-16T09:46:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i-flex.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175800", - "Timestamp": "2019-10-15T18:43:50.000Z" + "SpotPrice": "0.462000", + "Timestamp": "2024-05-16T09:46:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5a.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175800", - "Timestamp": "2019-10-15T18:43:50.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.337000", + "Timestamp": "2024-05-16T09:46:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075800", - "Timestamp": "2019-10-15T18:43:50.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141900", + "Timestamp": "2024-05-16T09:46:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075800", - "Timestamp": "2019-10-15T18:43:50.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.181900", + "Timestamp": "2024-05-16T09:46:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r3.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075800", - "Timestamp": "2019-10-15T18:43:50.000Z" + "SpotPrice": "0.081900", + "Timestamp": "2024-05-16T09:46:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.039600", - "Timestamp": "2019-10-15T18:43:44.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.414400", + "Timestamp": "2024-05-16T09:46:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.039600", - "Timestamp": "2019-10-15T18:43:44.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.452400", + "Timestamp": "2024-05-16T09:46:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5ad.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.039600", - "Timestamp": "2019-10-15T18:43:44.000Z" + "SpotPrice": "0.644000", + "Timestamp": "2024-05-16T09:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5ad.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.009600", - "Timestamp": "2019-10-15T18:43:44.000Z" + "SpotPrice": "0.639000", + "Timestamp": "2024-05-16T09:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.009600", - "Timestamp": "2019-10-15T18:43:44.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.514000", + "Timestamp": "2024-05-16T09:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.728800", + "Timestamp": "2024-05-16T09:46:33.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.009600", - "Timestamp": "2019-10-15T18:43:44.000Z" + "SpotPrice": "0.723800", + "Timestamp": "2024-05-16T09:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.909600", - "Timestamp": "2019-10-15T18:43:44.000Z" + "SpotPrice": "0.598800", + "Timestamp": "2024-05-16T09:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.909600", - "Timestamp": "2019-10-15T18:43:44.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.318500", + "Timestamp": "2024-05-16T09:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.909600", - "Timestamp": "2019-10-15T18:43:44.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.313500", + "Timestamp": "2024-05-16T09:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.259800", - "Timestamp": "2019-10-15T18:43:41.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.188500", + "Timestamp": "2024-05-16T09:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.259800", - "Timestamp": "2019-10-15T18:43:41.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.678600", + "Timestamp": "2024-05-16T09:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.259800", - "Timestamp": "2019-10-15T18:43:41.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.673600", + "Timestamp": "2024-05-16T09:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.056100", - "Timestamp": "2019-10-15T18:43:16.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5zn.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.548600", + "Timestamp": "2024-05-16T09:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.056100", - "Timestamp": "2019-10-15T18:43:16.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.451600", + "Timestamp": "2024-05-16T09:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.117600", - "Timestamp": "2019-10-15T18:43:02.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.446600", + "Timestamp": "2024-05-16T09:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.117600", - "Timestamp": "2019-10-15T18:43:02.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.321600", + "Timestamp": "2024-05-16T09:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.117600", - "Timestamp": "2019-10-15T18:43:02.000Z" + "SpotPrice": "2.568200", + "Timestamp": "2024-05-16T09:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "x1e.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.metal-48xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.031600", - "Timestamp": "2019-10-15T18:42:34.000Z" + "SpotPrice": "1.672200", + "Timestamp": "2024-05-16T09:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.031600", - "Timestamp": "2019-10-15T18:42:34.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.667200", + "Timestamp": "2024-05-16T09:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.001600", - "Timestamp": "2019-10-15T18:42:34.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.542200", + "Timestamp": "2024-05-16T09:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.001600", - "Timestamp": "2019-10-15T18:42:34.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.245200", + "Timestamp": "2024-05-16T09:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.901600", - "Timestamp": "2019-10-15T18:42:34.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.240200", + "Timestamp": "2024-05-16T09:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1e.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.901600", - "Timestamp": "2019-10-15T18:42:34.000Z" + "SpotPrice": "0.115200", + "Timestamp": "2024-05-16T09:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "x1e.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.373600", - "Timestamp": "2019-10-15T18:42:14.000Z" + "SpotPrice": "0.444700", + "Timestamp": "2024-05-16T09:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1e.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.373600", - "Timestamp": "2019-10-15T18:42:14.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.091400", + "Timestamp": "2024-05-16T09:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.261300", - "Timestamp": "2019-10-15T18:41:07.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087400", + "Timestamp": "2024-05-16T09:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.261300", - "Timestamp": "2019-10-15T18:41:07.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.031400", + "Timestamp": "2024-05-16T09:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.244100", - "Timestamp": "2019-10-15T18:40:58.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.626300", + "Timestamp": "2024-05-16T09:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.244100", - "Timestamp": "2019-10-15T18:40:58.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.214100", - "Timestamp": "2019-10-15T18:40:58.000Z" + "SpotPrice": "1.047000", + "Timestamp": "2024-05-16T09:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.214100", - "Timestamp": "2019-10-15T18:40:58.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.114100", - "Timestamp": "2019-10-15T18:40:58.000Z" + "SpotPrice": "1.042000", + "Timestamp": "2024-05-16T09:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.114100", - "Timestamp": "2019-10-15T18:40:58.000Z" + "SpotPrice": "0.917000", + "Timestamp": "2024-05-16T09:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1e.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.580800", - "Timestamp": "2019-10-15T18:21:35.000Z" + "SpotPrice": "0.080000", + "Timestamp": "2024-05-16T09:46:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1e.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.550800", - "Timestamp": "2019-10-15T18:21:35.000Z" + "SpotPrice": "0.076300", + "Timestamp": "2024-05-16T09:46:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1e.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.450800", - "Timestamp": "2019-10-15T18:21:35.000Z" + "SpotPrice": "0.020000", + "Timestamp": "2024-05-16T09:46:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m1.medium", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.081700", - "Timestamp": "2019-10-15T18:07:22.000Z" + "SpotPrice": "1.692100", + "Timestamp": "2024-05-16T09:46:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.metal", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5ad.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.949200", - "Timestamp": "2019-10-15T18:06:18.000Z" + "SpotPrice": "0.335400", + "Timestamp": "2024-05-16T09:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.metal", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5ad.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.919200", - "Timestamp": "2019-10-15T18:06:18.000Z" + "SpotPrice": "0.330400", + "Timestamp": "2024-05-16T09:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.metal", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5ad.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.819200", - "Timestamp": "2019-10-15T18:06:18.000Z" + "SpotPrice": "0.205400", + "Timestamp": "2024-05-16T09:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "6.235200", - "Timestamp": "2019-10-15T18:05:46.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.248700", + "Timestamp": "2024-05-16T09:46:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.145300", - "Timestamp": "2019-10-15T18:04:20.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.243700", + "Timestamp": "2024-05-16T09:46:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.405600", - "Timestamp": "2019-10-15T17:43:58.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.118700", + "Timestamp": "2024-05-16T09:46:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.405600", - "Timestamp": "2019-10-15T17:43:58.000Z" + "SpotPrice": "0.576600", + "Timestamp": "2024-05-16T09:46:17.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.375600", - "Timestamp": "2019-10-15T17:43:58.000Z" + "SpotPrice": "0.571600", + "Timestamp": "2024-05-16T09:46:17.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.375600", - "Timestamp": "2019-10-15T17:43:58.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.446600", + "Timestamp": "2024-05-16T09:46:17.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.275600", - "Timestamp": "2019-10-15T17:43:58.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104600", + "Timestamp": "2024-05-16T09:46:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.275600", - "Timestamp": "2019-10-15T17:43:58.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.144600", + "Timestamp": "2024-05-16T09:46:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.499300", - "Timestamp": "2019-10-15T17:43:46.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044600", + "Timestamp": "2024-05-16T09:46:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3a.medium", "ProductDescription": "Windows", - "SpotPrice": "0.499300", - "Timestamp": "2019-10-15T17:43:46.000Z" + "SpotPrice": "0.024600", + "Timestamp": "2024-05-16T09:46:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r4.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.499300", - "Timestamp": "2019-10-15T17:43:46.000Z" + "SpotPrice": "0.240000", + "Timestamp": "2024-05-16T09:46:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.011600", - "Timestamp": "2019-10-15T17:43:37.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.241800", + "Timestamp": "2024-05-16T09:46:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.011600", - "Timestamp": "2019-10-15T17:43:37.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.236800", + "Timestamp": "2024-05-16T09:46:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.011600", - "Timestamp": "2019-10-15T17:43:37.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.111800", + "Timestamp": "2024-05-16T09:46:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.261300", - "Timestamp": "2019-10-15T17:43:19.000Z" + "SpotPrice": "0.371600", + "Timestamp": "2024-05-16T09:46:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.231300", - "Timestamp": "2019-10-15T17:43:19.000Z" + "SpotPrice": "0.366600", + "Timestamp": "2024-05-16T09:46:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.131300", - "Timestamp": "2019-10-15T17:43:19.000Z" + "SpotPrice": "0.241600", + "Timestamp": "2024-05-16T09:46:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.156800", - "Timestamp": "2019-10-15T17:41:38.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.146900", + "Timestamp": "2024-05-16T09:46:05.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.156800", - "Timestamp": "2019-10-15T17:41:38.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143200", + "Timestamp": "2024-05-16T09:46:05.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.156800", - "Timestamp": "2019-10-15T17:41:38.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.086900", + "Timestamp": "2024-05-16T09:46:05.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.342800", - "Timestamp": "2019-10-15T17:41:38.000Z" + "SpotPrice": "5.430200", + "Timestamp": "2024-05-16T09:46:05.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.342800", - "Timestamp": "2019-10-15T17:41:38.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.425200", + "Timestamp": "2024-05-16T09:46:05.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.300200", + "Timestamp": "2024-05-16T09:46:05.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.342800", - "Timestamp": "2019-10-15T17:41:38.000Z" + "SpotPrice": "0.546200", + "Timestamp": "2024-05-16T09:33:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7g.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.312800", - "Timestamp": "2019-10-15T17:41:38.000Z" + "SpotPrice": "0.541200", + "Timestamp": "2024-05-16T09:33:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.312800", - "Timestamp": "2019-10-15T17:41:38.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.416200", + "Timestamp": "2024-05-16T09:33:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.312800", - "Timestamp": "2019-10-15T17:41:38.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.257800", + "Timestamp": "2024-05-16T09:32:42.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.212800", - "Timestamp": "2019-10-15T17:41:38.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.252800", + "Timestamp": "2024-05-16T09:32:42.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "g4dn.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.212800", - "Timestamp": "2019-10-15T17:41:38.000Z" + "SpotPrice": "0.127800", + "Timestamp": "2024-05-16T09:32:42.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", + "AvailabilityZone": "sa-east-1a", "InstanceType": "r5a.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.212800", - "Timestamp": "2019-10-15T17:41:38.000Z" + "ProductDescription": "Windows", + "SpotPrice": "3.523200", + "Timestamp": "2024-05-16T09:32:05.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3a.small", "ProductDescription": "Windows", - "SpotPrice": "0.512700", - "Timestamp": "2019-10-15T17:41:21.000Z" + "SpotPrice": "0.024200", + "Timestamp": "2024-05-16T09:31:50.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.512700", - "Timestamp": "2019-10-15T17:41:21.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.085300", + "Timestamp": "2024-05-16T09:31:42.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.512700", - "Timestamp": "2019-10-15T17:41:21.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.080300", + "Timestamp": "2024-05-16T09:31:42.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.274700", - "Timestamp": "2019-10-15T17:41:13.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.955300", + "Timestamp": "2024-05-16T09:31:42.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.274700", - "Timestamp": "2019-10-15T17:41:13.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217200", + "Timestamp": "2024-05-16T09:31:41.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.274700", - "Timestamp": "2019-10-15T17:41:13.000Z" + "SpotPrice": "1.068300", + "Timestamp": "2024-05-16T09:31:41.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6g.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.244700", - "Timestamp": "2019-10-15T17:41:13.000Z" + "SpotPrice": "1.063300", + "Timestamp": "2024-05-16T09:31:41.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.244700", - "Timestamp": "2019-10-15T17:41:13.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.938300", + "Timestamp": "2024-05-16T09:31:41.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.858000", + "Timestamp": "2024-05-16T09:31:40.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.244700", - "Timestamp": "2019-10-15T17:41:13.000Z" + "SpotPrice": "1.853000", + "Timestamp": "2024-05-16T09:31:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.144700", - "Timestamp": "2019-10-15T17:41:13.000Z" + "SpotPrice": "1.728000", + "Timestamp": "2024-05-16T09:31:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.144700", - "Timestamp": "2019-10-15T17:41:13.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.363200", + "Timestamp": "2024-05-16T09:31:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.144700", - "Timestamp": "2019-10-15T17:41:13.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.469100", + "Timestamp": "2024-05-16T09:31:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "z1d.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.401200", - "Timestamp": "2019-10-15T17:17:08.000Z" + "SpotPrice": "0.568200", + "Timestamp": "2024-05-16T09:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.401200", - "Timestamp": "2019-10-15T17:17:08.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.563200", + "Timestamp": "2024-05-16T09:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.401200", - "Timestamp": "2019-10-15T17:17:08.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.438200", + "Timestamp": "2024-05-16T09:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.371200", - "Timestamp": "2019-10-15T17:17:08.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.321600", + "Timestamp": "2024-05-16T09:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.371200", - "Timestamp": "2019-10-15T17:17:08.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.389400", + "Timestamp": "2024-05-16T09:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "z1d.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i-flex.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.371200", - "Timestamp": "2019-10-15T17:17:08.000Z" + "SpotPrice": "0.384400", + "Timestamp": "2024-05-16T09:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "z1d.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i-flex.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.271200", - "Timestamp": "2019-10-15T17:17:08.000Z" + "SpotPrice": "0.259400", + "Timestamp": "2024-05-16T09:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.271200", - "Timestamp": "2019-10-15T17:17:08.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.188900", + "Timestamp": "2024-05-16T09:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.271200", - "Timestamp": "2019-10-15T17:17:08.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.183900", + "Timestamp": "2024-05-16T09:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.639200", - "Timestamp": "2019-10-15T17:17:07.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.058900", + "Timestamp": "2024-05-16T09:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.639200", - "Timestamp": "2019-10-15T17:17:07.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.181300", + "Timestamp": "2024-05-16T09:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "z1d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.639200", - "Timestamp": "2019-10-15T17:17:07.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177600", + "Timestamp": "2024-05-16T09:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.855400", - "Timestamp": "2019-10-15T17:17:05.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121300", + "Timestamp": "2024-05-16T09:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1e.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g4dn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.855400", - "Timestamp": "2019-10-15T17:17:05.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.825400", - "Timestamp": "2019-10-15T17:17:05.000Z" + "SpotPrice": "0.346400", + "Timestamp": "2024-05-16T09:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1e.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g4dn.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.825400", - "Timestamp": "2019-10-15T17:17:05.000Z" + "SpotPrice": "0.341400", + "Timestamp": "2024-05-16T09:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "x1e.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g4dn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.725400", - "Timestamp": "2019-10-15T17:17:05.000Z" + "SpotPrice": "0.216400", + "Timestamp": "2024-05-16T09:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.725400", - "Timestamp": "2019-10-15T17:17:05.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.617500", + "Timestamp": "2024-05-16T09:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.093400", - "Timestamp": "2019-10-15T17:17:05.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.612500", + "Timestamp": "2024-05-16T09:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1e.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.093400", - "Timestamp": "2019-10-15T17:17:05.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.487500", + "Timestamp": "2024-05-16T09:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.050800", - "Timestamp": "2019-10-15T17:16:44.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324700", + "Timestamp": "2024-05-16T09:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.050800", - "Timestamp": "2019-10-15T17:16:44.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319700", + "Timestamp": "2024-05-16T09:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.050800", - "Timestamp": "2019-10-15T17:16:44.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194700", + "Timestamp": "2024-05-16T09:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.708800", - "Timestamp": "2019-10-15T17:16:44.000Z" + "SpotPrice": "4.197000", + "Timestamp": "2024-05-16T09:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.708800", - "Timestamp": "2019-10-15T17:16:44.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.192000", + "Timestamp": "2024-05-16T09:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.067000", + "Timestamp": "2024-05-16T09:31:30.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.708800", - "Timestamp": "2019-10-15T17:16:44.000Z" + "SpotPrice": "0.173600", + "Timestamp": "2024-05-16T09:31:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.678800", - "Timestamp": "2019-10-15T17:16:44.000Z" + "SpotPrice": "0.169900", + "Timestamp": "2024-05-16T09:31:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.678800", - "Timestamp": "2019-10-15T17:16:44.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113600", + "Timestamp": "2024-05-16T09:31:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.678800", - "Timestamp": "2019-10-15T17:16:44.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.522400", + "Timestamp": "2024-05-16T09:31:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.578800", - "Timestamp": "2019-10-15T17:16:44.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.251000", + "Timestamp": "2024-05-16T09:31:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.578800", - "Timestamp": "2019-10-15T17:16:44.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.246000", + "Timestamp": "2024-05-16T09:31:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.578800", - "Timestamp": "2019-10-15T17:16:44.000Z" + "SpotPrice": "2.121000", + "Timestamp": "2024-05-16T09:31:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "6.114000", - "Timestamp": "2019-10-15T17:16:41.000Z" + "SpotPrice": "0.877400", + "Timestamp": "2024-05-16T09:31:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.925200", - "Timestamp": "2019-10-15T17:16:41.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.872400", + "Timestamp": "2024-05-16T09:31:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.747400", + "Timestamp": "2024-05-16T09:31:29.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "inf2.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.925200", - "Timestamp": "2019-10-15T17:16:41.000Z" + "SpotPrice": "2.336800", + "Timestamp": "2024-05-16T09:31:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "inf2.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "6.084000", - "Timestamp": "2019-10-15T17:16:41.000Z" + "SpotPrice": "2.306800", + "Timestamp": "2024-05-16T09:31:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.895200", - "Timestamp": "2019-10-15T17:16:41.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "inf2.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.206800", + "Timestamp": "2024-05-16T09:31:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.895200", - "Timestamp": "2019-10-15T17:16:41.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.213500", + "Timestamp": "2024-05-16T09:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.984000", - "Timestamp": "2019-10-15T17:16:41.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.208500", + "Timestamp": "2024-05-16T09:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "inf1.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.795200", - "Timestamp": "2019-10-15T17:16:41.000Z" + "SpotPrice": "0.083500", + "Timestamp": "2024-05-16T09:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.795200", - "Timestamp": "2019-10-15T17:16:41.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.228000", + "Timestamp": "2024-05-16T09:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.928000", - "Timestamp": "2019-10-15T17:16:41.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.223000", + "Timestamp": "2024-05-16T09:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.739200", - "Timestamp": "2019-10-15T17:16:41.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.098000", + "Timestamp": "2024-05-16T09:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.739200", - "Timestamp": "2019-10-15T17:16:41.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.452800", + "Timestamp": "2024-05-16T09:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126500", - "Timestamp": "2019-10-15T17:16:40.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.447800", + "Timestamp": "2024-05-16T09:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126500", - "Timestamp": "2019-10-15T17:16:40.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.322800", + "Timestamp": "2024-05-16T09:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5n.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.126500", - "Timestamp": "2019-10-15T17:16:40.000Z" + "SpotPrice": "2.629500", + "Timestamp": "2024-05-16T09:31:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5n.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094500", - "Timestamp": "2019-10-15T17:16:40.000Z" + "SpotPrice": "0.360400", + "Timestamp": "2024-05-16T09:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5n.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094500", - "Timestamp": "2019-10-15T17:16:40.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.355400", + "Timestamp": "2024-05-16T09:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5n.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.230400", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r3.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094500", - "Timestamp": "2019-10-15T17:16:40.000Z" + "SpotPrice": "0.270000", + "Timestamp": "2024-05-16T09:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5n.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r3.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134500", - "Timestamp": "2019-10-15T17:16:40.000Z" + "SpotPrice": "0.240000", + "Timestamp": "2024-05-16T09:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5n.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134500", - "Timestamp": "2019-10-15T17:16:40.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140000", + "Timestamp": "2024-05-16T09:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5n.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.295300", + "Timestamp": "2024-05-16T09:31:24.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m4.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134500", - "Timestamp": "2019-10-15T17:16:40.000Z" + "SpotPrice": "0.265300", + "Timestamp": "2024-05-16T09:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5n.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m4.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034500", - "Timestamp": "2019-10-15T17:16:40.000Z" + "SpotPrice": "0.165300", + "Timestamp": "2024-05-16T09:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5n.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034500", - "Timestamp": "2019-10-15T17:16:40.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157800", + "Timestamp": "2024-05-16T09:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5n.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034500", - "Timestamp": "2019-10-15T17:16:40.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153800", + "Timestamp": "2024-05-16T09:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.263600", - "Timestamp": "2019-10-15T17:16:38.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097800", + "Timestamp": "2024-05-16T09:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.261300", - "Timestamp": "2019-10-15T17:16:38.000Z" + "SpotPrice": "0.253600", + "Timestamp": "2024-05-16T09:31:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.233600", - "Timestamp": "2019-10-15T17:16:38.000Z" + "SpotPrice": "0.248600", + "Timestamp": "2024-05-16T09:31:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.123600", + "Timestamp": "2024-05-16T09:31:20.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157200", + "Timestamp": "2024-05-16T09:31:19.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.231300", - "Timestamp": "2019-10-15T17:16:38.000Z" + "SpotPrice": "0.153200", + "Timestamp": "2024-05-16T09:31:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.133600", - "Timestamp": "2019-10-15T17:16:38.000Z" + "SpotPrice": "0.097200", + "Timestamp": "2024-05-16T09:31:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.131300", - "Timestamp": "2019-10-15T17:16:38.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.436000", + "Timestamp": "2024-05-16T09:31:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.652000", - "Timestamp": "2019-10-15T17:16:35.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.521100", + "Timestamp": "2024-05-16T09:31:17.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.652000", - "Timestamp": "2019-10-15T17:16:35.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.459500", + "Timestamp": "2024-05-16T09:31:17.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.652000", - "Timestamp": "2019-10-15T17:16:35.000Z" + "SpotPrice": "1.268600", + "Timestamp": "2024-05-16T09:31:15.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.622000", - "Timestamp": "2019-10-15T17:16:35.000Z" + "SpotPrice": "1.263600", + "Timestamp": "2024-05-16T09:31:15.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.622000", - "Timestamp": "2019-10-15T17:16:35.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.138600", + "Timestamp": "2024-05-16T09:31:15.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114200", + "Timestamp": "2024-05-16T09:31:12.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6gd.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.622000", - "Timestamp": "2019-10-15T17:16:35.000Z" + "SpotPrice": "0.110500", + "Timestamp": "2024-05-16T09:31:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.522000", - "Timestamp": "2019-10-15T17:16:35.000Z" + "SpotPrice": "0.054200", + "Timestamp": "2024-05-16T09:31:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.522000", - "Timestamp": "2019-10-15T17:16:35.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.328600", + "Timestamp": "2024-05-16T09:31:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.298600", + "Timestamp": "2024-05-16T09:31:10.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.522000", - "Timestamp": "2019-10-15T17:16:35.000Z" + "SpotPrice": "0.198600", + "Timestamp": "2024-05-16T09:31:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.743000", - "Timestamp": "2019-10-15T17:16:35.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.966800", + "Timestamp": "2024-05-16T09:31:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.743000", - "Timestamp": "2019-10-15T17:16:35.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.961800", + "Timestamp": "2024-05-16T09:31:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.836800", + "Timestamp": "2024-05-16T09:31:08.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.metal", "ProductDescription": "Windows", - "SpotPrice": "0.743000", - "Timestamp": "2019-10-15T17:16:35.000Z" + "SpotPrice": "5.150500", + "Timestamp": "2024-05-16T09:31:03.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.419400", - "Timestamp": "2019-10-15T17:16:29.000Z" + "SpotPrice": "1.396400", + "Timestamp": "2024-05-16T09:30:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.419400", - "Timestamp": "2019-10-15T17:16:29.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.391400", + "Timestamp": "2024-05-16T09:30:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.419400", - "Timestamp": "2019-10-15T17:16:29.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.266400", + "Timestamp": "2024-05-16T09:30:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.389400", - "Timestamp": "2019-10-15T17:16:29.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128000", + "Timestamp": "2024-05-16T09:22:55.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.389400", - "Timestamp": "2019-10-15T17:16:29.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.072000", + "Timestamp": "2024-05-16T09:20:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.389400", - "Timestamp": "2019-10-15T17:16:29.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.198500", + "Timestamp": "2024-05-16T09:17:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.289400", - "Timestamp": "2019-10-15T17:16:29.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211500", + "Timestamp": "2024-05-16T09:16:51.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.289400", - "Timestamp": "2019-10-15T17:16:29.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.413700", + "Timestamp": "2024-05-16T09:16:48.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.383700", + "Timestamp": "2024-05-16T09:16:48.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.289400", - "Timestamp": "2019-10-15T17:16:29.000Z" + "SpotPrice": "0.283700", + "Timestamp": "2024-05-16T09:16:48.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.metal", "ProductDescription": "Windows", - "SpotPrice": "1.025400", - "Timestamp": "2019-10-15T17:16:29.000Z" + "SpotPrice": "3.909600", + "Timestamp": "2024-05-16T09:16:47.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.025400", - "Timestamp": "2019-10-15T17:16:29.000Z" + "SpotPrice": "1.836800", + "Timestamp": "2024-05-16T09:16:42.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.metal-24xl", "ProductDescription": "Windows", - "SpotPrice": "1.025400", - "Timestamp": "2019-10-15T17:16:29.000Z" + "SpotPrice": "5.076200", + "Timestamp": "2024-05-16T09:16:41.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092800", - "Timestamp": "2019-10-15T17:16:26.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.925600", + "Timestamp": "2024-05-16T09:16:41.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c4.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092800", - "Timestamp": "2019-10-15T17:16:26.000Z" + "SpotPrice": "0.833400", + "Timestamp": "2024-05-16T09:16:41.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092800", - "Timestamp": "2019-10-15T17:16:26.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.828400", + "Timestamp": "2024-05-16T09:16:41.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c4.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132800", - "Timestamp": "2019-10-15T17:16:26.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.703400", + "Timestamp": "2024-05-16T09:16:41.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c4.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132800", - "Timestamp": "2019-10-15T17:16:26.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.152500", + "Timestamp": "2024-05-16T09:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c4.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132800", - "Timestamp": "2019-10-15T17:16:26.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.384200", + "Timestamp": "2024-05-16T09:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032800", - "Timestamp": "2019-10-15T17:16:26.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.377600", + "Timestamp": "2024-05-16T09:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032800", - "Timestamp": "2019-10-15T17:16:26.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.372600", + "Timestamp": "2024-05-16T09:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c4.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032800", - "Timestamp": "2019-10-15T17:16:26.000Z" + "SpotPrice": "0.247600", + "Timestamp": "2024-05-16T09:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c4.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.124800", - "Timestamp": "2019-10-15T17:16:25.000Z" + "SpotPrice": "1.793600", + "Timestamp": "2024-05-16T09:16:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.124800", - "Timestamp": "2019-10-15T17:16:25.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.510800", + "Timestamp": "2024-05-16T09:16:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.124800", - "Timestamp": "2019-10-15T17:16:25.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.505800", + "Timestamp": "2024-05-16T09:16:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126500", - "Timestamp": "2019-10-15T17:16:23.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.380800", + "Timestamp": "2024-05-16T09:16:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126500", - "Timestamp": "2019-10-15T17:16:23.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164200", + "Timestamp": "2024-05-16T09:16:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.126500", - "Timestamp": "2019-10-15T17:16:23.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.160200", + "Timestamp": "2024-05-16T09:16:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094500", - "Timestamp": "2019-10-15T17:16:23.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T09:16:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094500", - "Timestamp": "2019-10-15T17:16:23.000Z" + "SpotPrice": "0.238800", + "Timestamp": "2024-05-16T09:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094500", - "Timestamp": "2019-10-15T17:16:23.000Z" + "SpotPrice": "0.254300", + "Timestamp": "2024-05-16T09:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134500", - "Timestamp": "2019-10-15T17:16:23.000Z" + "SpotPrice": "0.233800", + "Timestamp": "2024-05-16T09:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134500", - "Timestamp": "2019-10-15T17:16:23.000Z" + "SpotPrice": "0.249300", + "Timestamp": "2024-05-16T09:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134500", - "Timestamp": "2019-10-15T17:16:23.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108800", + "Timestamp": "2024-05-16T09:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034500", - "Timestamp": "2019-10-15T17:16:23.000Z" + "SpotPrice": "0.124300", + "Timestamp": "2024-05-16T09:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034500", - "Timestamp": "2019-10-15T17:16:23.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.178400", + "Timestamp": "2024-05-16T09:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174400", + "Timestamp": "2024-05-16T09:16:34.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g4dn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034500", - "Timestamp": "2019-10-15T17:16:23.000Z" + "SpotPrice": "0.118400", + "Timestamp": "2024-05-16T09:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.419400", - "Timestamp": "2019-10-15T17:09:24.000Z" + "SpotPrice": "1.244500", + "Timestamp": "2024-05-16T09:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.419400", - "Timestamp": "2019-10-15T17:09:24.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.239500", + "Timestamp": "2024-05-16T09:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.114500", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.419400", - "Timestamp": "2019-10-15T17:09:24.000Z" + "SpotPrice": "0.291800", + "Timestamp": "2024-05-16T09:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gn.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.389400", - "Timestamp": "2019-10-15T17:09:24.000Z" + "SpotPrice": "0.286800", + "Timestamp": "2024-05-16T09:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.389400", - "Timestamp": "2019-10-15T17:09:24.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.161800", + "Timestamp": "2024-05-16T09:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.166700", + "Timestamp": "2024-05-16T09:16:33.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.389400", - "Timestamp": "2019-10-15T17:09:24.000Z" + "SpotPrice": "0.163000", + "Timestamp": "2024-05-16T09:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.289400", - "Timestamp": "2019-10-15T17:09:24.000Z" + "SpotPrice": "0.106700", + "Timestamp": "2024-05-16T09:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.289400", - "Timestamp": "2019-10-15T17:09:24.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130700", + "Timestamp": "2024-05-16T09:16:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.289400", - "Timestamp": "2019-10-15T17:09:24.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170700", + "Timestamp": "2024-05-16T09:16:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.785000", - "Timestamp": "2019-10-15T17:08:38.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070700", + "Timestamp": "2024-05-16T09:16:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.195500", - "Timestamp": "2019-10-15T17:08:38.000Z" + "SpotPrice": "0.837400", + "Timestamp": "2024-05-16T09:16:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.755000", - "Timestamp": "2019-10-15T17:08:38.000Z" + "SpotPrice": "0.832400", + "Timestamp": "2024-05-16T09:16:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c1.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.165500", - "Timestamp": "2019-10-15T17:08:38.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.707400", + "Timestamp": "2024-05-16T09:16:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c1.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.655000", - "Timestamp": "2019-10-15T17:08:38.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.679600", + "Timestamp": "2024-05-16T09:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.674600", + "Timestamp": "2024-05-16T09:16:31.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065500", - "Timestamp": "2019-10-15T17:08:38.000Z" + "SpotPrice": "1.549600", + "Timestamp": "2024-05-16T09:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.475500", - "Timestamp": "2019-10-15T17:08:38.000Z" + "SpotPrice": "2.565600", + "Timestamp": "2024-05-16T09:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.475500", - "Timestamp": "2019-10-15T17:08:38.000Z" + "SpotPrice": "0.207800", + "Timestamp": "2024-05-16T09:16:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.101700", - "Timestamp": "2019-10-15T17:08:34.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "6.079300", + "Timestamp": "2024-05-16T09:16:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.101700", - "Timestamp": "2019-10-15T17:08:34.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.074300", + "Timestamp": "2024-05-16T09:16:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.101700", - "Timestamp": "2019-10-15T17:08:34.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.949300", + "Timestamp": "2024-05-16T09:16:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6gd.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.866500", - "Timestamp": "2019-10-15T17:08:07.000Z" + "SpotPrice": "1.234800", + "Timestamp": "2024-05-16T09:16:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.866500", - "Timestamp": "2019-10-15T17:08:07.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.229800", + "Timestamp": "2024-05-16T09:16:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.104800", + "Timestamp": "2024-05-16T09:16:30.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.866500", - "Timestamp": "2019-10-15T17:08:07.000Z" + "SpotPrice": "2.734300", + "Timestamp": "2024-05-16T09:16:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.836500", - "Timestamp": "2019-10-15T17:08:07.000Z" + "SpotPrice": "2.729300", + "Timestamp": "2024-05-16T09:16:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.836500", - "Timestamp": "2019-10-15T17:08:07.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.604300", + "Timestamp": "2024-05-16T09:16:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.475600", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6gd.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.836500", - "Timestamp": "2019-10-15T17:08:07.000Z" + "SpotPrice": "0.470600", + "Timestamp": "2024-05-16T09:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.736500", - "Timestamp": "2019-10-15T17:08:07.000Z" + "SpotPrice": "0.345600", + "Timestamp": "2024-05-16T09:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.736500", - "Timestamp": "2019-10-15T17:08:07.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.758800", + "Timestamp": "2024-05-16T09:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.728800", + "Timestamp": "2024-05-16T09:16:28.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.736500", - "Timestamp": "2019-10-15T17:08:07.000Z" + "SpotPrice": "0.628800", + "Timestamp": "2024-05-16T09:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.025400", - "Timestamp": "2019-10-15T17:08:06.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.390500", + "Timestamp": "2024-05-16T09:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.025400", - "Timestamp": "2019-10-15T17:08:06.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.385500", + "Timestamp": "2024-05-16T09:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.025400", - "Timestamp": "2019-10-15T17:08:06.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.260500", + "Timestamp": "2024-05-16T09:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.039200", - "Timestamp": "2019-10-15T17:08:06.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.181100", + "Timestamp": "2024-05-16T09:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.039200", - "Timestamp": "2019-10-15T17:08:06.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177100", + "Timestamp": "2024-05-16T09:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.039200", - "Timestamp": "2019-10-15T17:08:06.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121100", + "Timestamp": "2024-05-16T09:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.152500", - "Timestamp": "2019-10-15T17:07:49.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104500", + "Timestamp": "2024-05-16T09:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.152500", - "Timestamp": "2019-10-15T17:07:49.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100800", + "Timestamp": "2024-05-16T09:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.152500", - "Timestamp": "2019-10-15T17:07:49.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044500", + "Timestamp": "2024-05-16T09:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "inf1.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.287700", - "Timestamp": "2019-10-15T17:07:45.000Z" + "SpotPrice": "0.255800", + "Timestamp": "2024-05-16T09:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.287700", - "Timestamp": "2019-10-15T17:07:45.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.250800", + "Timestamp": "2024-05-16T09:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "inf1.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.125800", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.287700", - "Timestamp": "2019-10-15T17:07:45.000Z" + "SpotPrice": "0.796400", + "Timestamp": "2024-05-16T09:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.257700", - "Timestamp": "2019-10-15T17:07:45.000Z" + "SpotPrice": "0.791400", + "Timestamp": "2024-05-16T09:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.257700", - "Timestamp": "2019-10-15T17:07:45.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.666400", + "Timestamp": "2024-05-16T09:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082900", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.257700", - "Timestamp": "2019-10-15T17:07:45.000Z" + "SpotPrice": "0.078900", + "Timestamp": "2024-05-16T09:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.157700", - "Timestamp": "2019-10-15T17:07:45.000Z" + "SpotPrice": "0.022900", + "Timestamp": "2024-05-16T09:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.157700", - "Timestamp": "2019-10-15T17:07:45.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.361900", + "Timestamp": "2024-05-16T09:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.356900", + "Timestamp": "2024-05-16T09:16:26.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.157700", - "Timestamp": "2019-10-15T17:07:45.000Z" + "SpotPrice": "0.231900", + "Timestamp": "2024-05-16T09:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.256200", - "Timestamp": "2019-10-15T17:07:32.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.663400", + "Timestamp": "2024-05-16T09:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.256200", - "Timestamp": "2019-10-15T17:07:32.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.658400", + "Timestamp": "2024-05-16T09:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.256200", - "Timestamp": "2019-10-15T17:07:32.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.533400", + "Timestamp": "2024-05-16T09:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.249600", - "Timestamp": "2019-10-15T17:07:27.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.567800", + "Timestamp": "2024-05-16T09:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.249600", - "Timestamp": "2019-10-15T17:07:27.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.562800", + "Timestamp": "2024-05-16T09:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.249600", - "Timestamp": "2019-10-15T17:07:27.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.437800", + "Timestamp": "2024-05-16T09:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t2.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.433200", - "Timestamp": "2019-10-15T17:07:26.000Z" + "SpotPrice": "0.205900", + "Timestamp": "2024-05-16T09:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.433200", - "Timestamp": "2019-10-15T17:07:26.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.175900", + "Timestamp": "2024-05-16T09:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.075900", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.433200", - "Timestamp": "2019-10-15T17:07:26.000Z" + "SpotPrice": "0.368700", + "Timestamp": "2024-05-16T09:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gd.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.403200", - "Timestamp": "2019-10-15T17:07:26.000Z" + "SpotPrice": "0.363700", + "Timestamp": "2024-05-16T09:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.403200", - "Timestamp": "2019-10-15T17:07:26.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.238700", + "Timestamp": "2024-05-16T09:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.641900", + "Timestamp": "2024-05-16T09:16:25.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.403200", - "Timestamp": "2019-10-15T17:07:26.000Z" + "SpotPrice": "1.636900", + "Timestamp": "2024-05-16T09:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.303200", - "Timestamp": "2019-10-15T17:07:26.000Z" + "SpotPrice": "1.511900", + "Timestamp": "2024-05-16T09:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.303200", - "Timestamp": "2019-10-15T17:07:26.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163900", + "Timestamp": "2024-05-16T09:16:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159900", + "Timestamp": "2024-05-16T09:16:24.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.303200", - "Timestamp": "2019-10-15T17:07:26.000Z" + "SpotPrice": "0.103900", + "Timestamp": "2024-05-16T09:16:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3en.3xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.285100", - "Timestamp": "2019-10-15T17:07:25.000Z" + "SpotPrice": "0.349700", + "Timestamp": "2024-05-16T09:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.285100", - "Timestamp": "2019-10-15T17:07:25.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.344700", + "Timestamp": "2024-05-16T09:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219700", + "Timestamp": "2024-05-16T09:16:22.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.285100", - "Timestamp": "2019-10-15T17:07:25.000Z" + "SpotPrice": "1.661300", + "Timestamp": "2024-05-16T09:16:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.255100", - "Timestamp": "2019-10-15T17:07:25.000Z" + "SpotPrice": "1.631300", + "Timestamp": "2024-05-16T09:16:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.255100", - "Timestamp": "2019-10-15T17:07:25.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.531300", + "Timestamp": "2024-05-16T09:16:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.255100", - "Timestamp": "2019-10-15T17:07:25.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.562000", + "Timestamp": "2024-05-16T09:16:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.155100", - "Timestamp": "2019-10-15T17:07:25.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.557000", + "Timestamp": "2024-05-16T09:16:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.6xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.155100", - "Timestamp": "2019-10-15T17:07:25.000Z" + "SpotPrice": "0.432000", + "Timestamp": "2024-05-16T09:16:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.155100", - "Timestamp": "2019-10-15T17:07:25.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.380800", + "Timestamp": "2024-05-16T09:16:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c4.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132200", - "Timestamp": "2019-10-15T17:06:47.000Z" + "SpotPrice": "0.118400", + "Timestamp": "2024-05-16T09:16:17.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c4.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172200", - "Timestamp": "2019-10-15T17:06:47.000Z" + "SpotPrice": "0.158400", + "Timestamp": "2024-05-16T09:16:17.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c4.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072200", - "Timestamp": "2019-10-15T17:06:47.000Z" + "SpotPrice": "0.058400", + "Timestamp": "2024-05-16T09:16:17.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.025400", - "Timestamp": "2019-10-15T17:06:32.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.968400", + "Timestamp": "2024-05-16T09:16:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.025400", - "Timestamp": "2019-10-15T17:06:32.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.963400", + "Timestamp": "2024-05-16T09:16:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.025400", - "Timestamp": "2019-10-15T17:06:32.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.838400", + "Timestamp": "2024-05-16T09:16:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.419400", - "Timestamp": "2019-10-15T17:06:08.000Z" + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T09:16:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.419400", - "Timestamp": "2019-10-15T17:06:08.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099300", + "Timestamp": "2024-05-16T09:16:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043000", + "Timestamp": "2024-05-16T09:16:10.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i-flex.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.419400", - "Timestamp": "2019-10-15T17:06:08.000Z" + "SpotPrice": "0.073100", + "Timestamp": "2024-05-16T09:16:09.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i-flex.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.389400", - "Timestamp": "2019-10-15T17:06:08.000Z" + "SpotPrice": "0.069400", + "Timestamp": "2024-05-16T09:16:09.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.389400", - "Timestamp": "2019-10-15T17:06:08.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013100", + "Timestamp": "2024-05-16T09:16:09.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.389400", - "Timestamp": "2019-10-15T17:06:08.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.476800", + "Timestamp": "2024-05-16T09:16:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.289400", - "Timestamp": "2019-10-15T17:06:08.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.125600", + "Timestamp": "2024-05-16T09:16:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.289400", - "Timestamp": "2019-10-15T17:06:08.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121900", + "Timestamp": "2024-05-16T09:16:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.289400", - "Timestamp": "2019-10-15T17:06:08.000Z" + "SpotPrice": "0.065600", + "Timestamp": "2024-05-16T09:16:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.489100", - "Timestamp": "2019-10-15T17:04:11.000Z" + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T09:16:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.459100", - "Timestamp": "2019-10-15T17:04:11.000Z" + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T09:16:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.359100", - "Timestamp": "2019-10-15T17:04:11.000Z" + "SpotPrice": "0.049800", + "Timestamp": "2024-05-16T09:16:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m1.large", - "ProductDescription": "Windows", - "SpotPrice": "0.159500", - "Timestamp": "2019-10-15T17:03:56.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.127400", + "Timestamp": "2024-05-16T09:16:03.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.156800", - "Timestamp": "2019-10-15T16:52:54.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.123700", + "Timestamp": "2024-05-16T09:16:03.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.156800", - "Timestamp": "2019-10-15T16:52:54.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.067400", + "Timestamp": "2024-05-16T09:16:03.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.156800", - "Timestamp": "2019-10-15T16:52:54.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.040100", + "Timestamp": "2024-05-16T09:16:03.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.933200", - "Timestamp": "2019-10-15T16:45:13.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.035100", + "Timestamp": "2024-05-16T09:16:03.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.933200", - "Timestamp": "2019-10-15T16:45:13.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.910100", + "Timestamp": "2024-05-16T09:16:03.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "5.903200", - "Timestamp": "2019-10-15T16:45:13.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.359500", + "Timestamp": "2024-05-16T09:16:02.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1e.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "5.903200", - "Timestamp": "2019-10-15T16:45:13.000Z" + "SpotPrice": "3.354500", + "Timestamp": "2024-05-16T09:16:02.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "x1e.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.803200", - "Timestamp": "2019-10-15T16:45:13.000Z" + "SpotPrice": "3.229500", + "Timestamp": "2024-05-16T09:16:02.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1e.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.828200", + "Timestamp": "2024-05-16T09:16:02.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.823200", + "Timestamp": "2024-05-16T09:16:02.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.803200", - "Timestamp": "2019-10-15T16:45:13.000Z" + "SpotPrice": "0.698200", + "Timestamp": "2024-05-16T09:16:02.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "a1.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.272900", - "Timestamp": "2019-10-15T16:44:49.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.663400", + "Timestamp": "2024-05-16T09:16:01.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "a1.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.272900", - "Timestamp": "2019-10-15T16:44:49.000Z" + "SpotPrice": "1.143200", + "Timestamp": "2024-05-16T09:16:01.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "a1.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.242900", - "Timestamp": "2019-10-15T16:44:49.000Z" + "SpotPrice": "1.138200", + "Timestamp": "2024-05-16T09:16:01.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "a1.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.242900", - "Timestamp": "2019-10-15T16:44:49.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.013200", + "Timestamp": "2024-05-16T09:16:01.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "a1.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.142900", - "Timestamp": "2019-10-15T16:44:49.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111000", + "Timestamp": "2024-05-16T09:16:01.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "a1.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151000", + "Timestamp": "2024-05-16T09:16:01.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m2.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.142900", - "Timestamp": "2019-10-15T16:44:49.000Z" + "SpotPrice": "0.051000", + "Timestamp": "2024-05-16T09:16:01.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.747200", - "Timestamp": "2019-10-15T16:44:29.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.961700", + "Timestamp": "2024-05-16T09:15:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1e.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.747200", - "Timestamp": "2019-10-15T16:44:29.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.956700", + "Timestamp": "2024-05-16T09:15:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m1.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.065800", - "Timestamp": "2019-10-15T16:44:16.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.831700", + "Timestamp": "2024-05-16T09:15:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m1.small", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.065800", - "Timestamp": "2019-10-15T16:44:16.000Z" + "SpotPrice": "0.282200", + "Timestamp": "2024-05-16T09:15:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m1.small", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.035800", - "Timestamp": "2019-10-15T16:44:16.000Z" + "SpotPrice": "0.278200", + "Timestamp": "2024-05-16T09:15:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m1.small", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.222200", + "Timestamp": "2024-05-16T09:15:59.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.100500", + "Timestamp": "2024-05-16T09:15:58.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.035800", - "Timestamp": "2019-10-15T16:44:16.000Z" + "SpotPrice": "1.095500", + "Timestamp": "2024-05-16T09:15:58.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m1.small", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.005800", - "Timestamp": "2019-10-15T16:44:16.000Z" + "SpotPrice": "0.970500", + "Timestamp": "2024-05-16T09:15:58.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m1.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.005800", - "Timestamp": "2019-10-15T16:44:16.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.501800", + "Timestamp": "2024-05-16T09:15:55.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.626000", - "Timestamp": "2019-10-15T16:43:38.000Z" + "SpotPrice": "0.327200", + "Timestamp": "2024-05-16T09:15:50.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.578800", - "Timestamp": "2019-10-15T16:43:38.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.322200", + "Timestamp": "2024-05-16T09:15:50.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.197200", + "Timestamp": "2024-05-16T09:15:50.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.578800", - "Timestamp": "2019-10-15T16:43:38.000Z" + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T09:03:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.596000", - "Timestamp": "2019-10-15T16:43:38.000Z" + "SpotPrice": "0.092000", + "Timestamp": "2024-05-16T09:03:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.548800", - "Timestamp": "2019-10-15T16:43:38.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036000", + "Timestamp": "2024-05-16T09:03:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.548800", - "Timestamp": "2019-10-15T16:43:38.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.809700", + "Timestamp": "2024-05-16T09:02:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.496000", - "Timestamp": "2019-10-15T16:43:38.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.809700", + "Timestamp": "2024-05-16T09:02:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.448800", - "Timestamp": "2019-10-15T16:43:38.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.477600", + "Timestamp": "2024-05-16T09:02:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.448800", - "Timestamp": "2019-10-15T16:43:38.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.867200", + "Timestamp": "2024-05-16T09:02:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m1.small", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.metal", "ProductDescription": "Windows", - "SpotPrice": "0.040800", - "Timestamp": "2019-10-15T16:43:37.000Z" + "SpotPrice": "6.726400", + "Timestamp": "2024-05-16T09:02:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m1.small", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.040800", - "Timestamp": "2019-10-15T16:43:37.000Z" + "SpotPrice": "0.210800", + "Timestamp": "2024-05-16T09:02:21.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.044800", + "Timestamp": "2024-05-16T09:02:17.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.476200", + "Timestamp": "2024-05-16T09:02:05.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.290200", + "Timestamp": "2024-05-16T09:02:05.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.285200", + "Timestamp": "2024-05-16T09:02:05.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.160200", + "Timestamp": "2024-05-16T09:02:05.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.232000", - "Timestamp": "2019-10-15T16:43:24.000Z" + "SpotPrice": "3.710700", + "Timestamp": "2024-05-16T09:02:01.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.184800", - "Timestamp": "2019-10-15T16:43:24.000Z" + "SpotPrice": "2.584600", + "Timestamp": "2024-05-16T09:02:00.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.184800", - "Timestamp": "2019-10-15T16:43:24.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.881900", + "Timestamp": "2024-05-16T09:01:50.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.259800", - "Timestamp": "2019-10-15T16:42:08.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.876900", + "Timestamp": "2024-05-16T09:01:50.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.259800", - "Timestamp": "2019-10-15T16:42:08.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.751900", + "Timestamp": "2024-05-16T09:01:50.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5n.metal", "ProductDescription": "Windows", - "SpotPrice": "0.259800", - "Timestamp": "2019-10-15T16:42:08.000Z" + "SpotPrice": "3.909600", + "Timestamp": "2024-05-16T09:01:47.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "z1d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.757200", - "Timestamp": "2019-10-15T16:41:39.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.830400", + "Timestamp": "2024-05-16T09:01:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "z1d.metal", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.757200", - "Timestamp": "2019-10-15T16:41:39.000Z" + "SpotPrice": "2.314400", + "Timestamp": "2024-05-16T09:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "z1d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.757200", - "Timestamp": "2019-10-15T16:41:39.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.309400", + "Timestamp": "2024-05-16T09:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "z1d.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.727200", - "Timestamp": "2019-10-15T16:41:39.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.184400", + "Timestamp": "2024-05-16T09:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "z1d.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.727200", - "Timestamp": "2019-10-15T16:41:39.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.535500", + "Timestamp": "2024-05-16T09:01:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "z1d.metal", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.727200", - "Timestamp": "2019-10-15T16:41:39.000Z" + "SpotPrice": "2.530500", + "Timestamp": "2024-05-16T09:01:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "z1d.metal", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.627200", - "Timestamp": "2019-10-15T16:41:39.000Z" + "SpotPrice": "2.405500", + "Timestamp": "2024-05-16T09:01:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "z1d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.627200", - "Timestamp": "2019-10-15T16:41:39.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432300", + "Timestamp": "2024-05-16T09:01:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "z1d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.627200", - "Timestamp": "2019-10-15T16:41:39.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.389400", + "Timestamp": "2024-05-16T09:01:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1e.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.186800", - "Timestamp": "2019-10-15T16:41:13.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.384400", + "Timestamp": "2024-05-16T09:01:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "z1d.metal", - "ProductDescription": "Windows", - "SpotPrice": "3.835200", - "Timestamp": "2019-10-15T16:41:04.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.259400", + "Timestamp": "2024-05-16T09:01:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "z1d.metal", - "ProductDescription": "Windows", - "SpotPrice": "3.835200", - "Timestamp": "2019-10-15T16:41:04.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.236400", + "Timestamp": "2024-05-16T09:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "z1d.metal", - "ProductDescription": "Windows", - "SpotPrice": "3.835200", - "Timestamp": "2019-10-15T16:41:04.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.231400", + "Timestamp": "2024-05-16T09:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.064000", - "Timestamp": "2019-10-15T16:40:47.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T09:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3.micro", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063900", - "Timestamp": "2019-10-15T16:40:47.000Z" + "SpotPrice": "0.494400", + "Timestamp": "2024-05-16T09:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063900", - "Timestamp": "2019-10-15T16:40:47.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.489400", + "Timestamp": "2024-05-16T09:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t3.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.104000", - "Timestamp": "2019-10-15T16:40:47.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.364400", + "Timestamp": "2024-05-16T09:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.103900", - "Timestamp": "2019-10-15T16:40:47.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.240200", + "Timestamp": "2024-05-16T09:01:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3.micro", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7g.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.103900", - "Timestamp": "2019-10-15T16:40:47.000Z" + "SpotPrice": "0.235200", + "Timestamp": "2024-05-16T09:01:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t3.micro", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.004000", - "Timestamp": "2019-10-15T16:40:47.000Z" + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T09:01:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003900", - "Timestamp": "2019-10-15T16:40:47.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.227700", + "Timestamp": "2024-05-16T09:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003900", - "Timestamp": "2019-10-15T16:40:47.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.223700", + "Timestamp": "2024-05-16T09:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t3.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.013100", - "Timestamp": "2019-10-15T16:40:46.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167700", + "Timestamp": "2024-05-16T09:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.013100", - "Timestamp": "2019-10-15T16:40:46.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.290500", + "Timestamp": "2024-05-16T09:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.013100", - "Timestamp": "2019-10-15T16:40:46.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.285500", + "Timestamp": "2024-05-16T09:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.128800", - "Timestamp": "2019-10-15T16:08:48.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.160500", + "Timestamp": "2024-05-16T09:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.128800", - "Timestamp": "2019-10-15T16:08:48.000Z" + "SpotPrice": "0.335500", + "Timestamp": "2024-05-16T09:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.168800", - "Timestamp": "2019-10-15T16:08:48.000Z" + "SpotPrice": "0.305500", + "Timestamp": "2024-05-16T09:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.205500", + "Timestamp": "2024-05-16T09:01:29.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.182300", + "Timestamp": "2024-05-16T09:01:27.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i-flex.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.168800", - "Timestamp": "2019-10-15T16:08:48.000Z" + "SpotPrice": "0.177300", + "Timestamp": "2024-05-16T09:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i-flex.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.068800", - "Timestamp": "2019-10-15T16:08:48.000Z" + "SpotPrice": "0.052300", + "Timestamp": "2024-05-16T09:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.068800", - "Timestamp": "2019-10-15T16:08:48.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.203100", + "Timestamp": "2024-05-16T09:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.294800", - "Timestamp": "2019-10-15T16:07:57.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198100", + "Timestamp": "2024-05-16T09:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.294800", - "Timestamp": "2019-10-15T16:07:57.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073100", + "Timestamp": "2024-05-16T09:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.294800", - "Timestamp": "2019-10-15T16:07:57.000Z" + "SpotPrice": "7.003500", + "Timestamp": "2024-05-16T09:01:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g4dn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.433200", - "Timestamp": "2019-10-15T15:46:33.000Z" + "SpotPrice": "1.154600", + "Timestamp": "2024-05-16T09:01:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g4dn.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.403200", - "Timestamp": "2019-10-15T15:46:33.000Z" + "SpotPrice": "1.149600", + "Timestamp": "2024-05-16T09:01:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g4dn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.303200", - "Timestamp": "2019-10-15T15:46:33.000Z" + "SpotPrice": "1.024600", + "Timestamp": "2024-05-16T09:01:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.572000", - "Timestamp": "2019-10-15T15:46:32.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.726800", + "Timestamp": "2024-05-16T09:01:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.572000", - "Timestamp": "2019-10-15T15:46:32.000Z" + "SpotPrice": "0.436600", + "Timestamp": "2024-05-16T09:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.572000", - "Timestamp": "2019-10-15T15:46:32.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.431600", + "Timestamp": "2024-05-16T09:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.542000", - "Timestamp": "2019-10-15T15:46:32.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.306600", + "Timestamp": "2024-05-16T09:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.542000", - "Timestamp": "2019-10-15T15:46:32.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080000", + "Timestamp": "2024-05-16T09:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.542000", - "Timestamp": "2019-10-15T15:46:32.000Z" + "SpotPrice": "0.076300", + "Timestamp": "2024-05-16T09:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.442000", - "Timestamp": "2019-10-15T15:46:32.000Z" + "SpotPrice": "0.020000", + "Timestamp": "2024-05-16T09:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.442000", - "Timestamp": "2019-10-15T15:46:32.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.297100", + "Timestamp": "2024-05-16T09:01:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.442000", - "Timestamp": "2019-10-15T15:46:32.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.292100", + "Timestamp": "2024-05-16T09:01:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.650000", - "Timestamp": "2019-10-15T15:46:31.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.167100", + "Timestamp": "2024-05-16T09:01:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.650000", - "Timestamp": "2019-10-15T15:46:31.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.140500", + "Timestamp": "2024-05-16T09:01:17.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.650000", - "Timestamp": "2019-10-15T15:46:31.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.136800", + "Timestamp": "2024-05-16T09:01:17.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.418800", - "Timestamp": "2019-10-15T15:46:20.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.080500", + "Timestamp": "2024-05-16T09:01:17.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.418800", - "Timestamp": "2019-10-15T15:46:20.000Z" + "SpotPrice": "0.419700", + "Timestamp": "2024-05-16T09:01:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.388800", - "Timestamp": "2019-10-15T15:46:20.000Z" + "SpotPrice": "0.414700", + "Timestamp": "2024-05-16T09:01:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.388800", - "Timestamp": "2019-10-15T15:46:20.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.289700", + "Timestamp": "2024-05-16T09:01:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.288800", - "Timestamp": "2019-10-15T15:46:20.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.194000", + "Timestamp": "2024-05-16T09:01:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.288800", - "Timestamp": "2019-10-15T15:46:20.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.234000", + "Timestamp": "2024-05-16T09:01:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.024800", - "Timestamp": "2019-10-15T15:46:16.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.134000", + "Timestamp": "2024-05-16T09:01:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.024800", - "Timestamp": "2019-10-15T15:46:16.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.117900", + "Timestamp": "2024-05-16T09:01:15.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.024800", - "Timestamp": "2019-10-15T15:46:16.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.114200", + "Timestamp": "2024-05-16T09:01:15.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.039200", - "Timestamp": "2019-10-15T15:45:31.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057900", + "Timestamp": "2024-05-16T09:01:15.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t2.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.039200", - "Timestamp": "2019-10-15T15:45:31.000Z" + "SpotPrice": "0.070800", + "Timestamp": "2024-05-16T09:01:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.039200", - "Timestamp": "2019-10-15T15:45:31.000Z" + "SpotPrice": "1.014200", + "Timestamp": "2024-05-16T09:01:11.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "x1e.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.186800", - "Timestamp": "2019-10-15T15:44:13.000Z" + "SpotPrice": "1.719700", + "Timestamp": "2024-05-16T09:01:09.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "x1e.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.580800", - "Timestamp": "2019-10-15T15:43:35.000Z" + "SpotPrice": "1.037900", + "Timestamp": "2024-05-16T09:01:05.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "x1e.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.550800", - "Timestamp": "2019-10-15T15:43:35.000Z" + "SpotPrice": "1.032900", + "Timestamp": "2024-05-16T09:01:05.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "x1e.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.450800", - "Timestamp": "2019-10-15T15:43:35.000Z" + "SpotPrice": "0.907900", + "Timestamp": "2024-05-16T09:01:05.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097900", - "Timestamp": "2019-10-15T15:43:30.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.355000", + "Timestamp": "2024-05-16T09:01:04.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5ad.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097900", - "Timestamp": "2019-10-15T15:43:30.000Z" + "SpotPrice": "0.307600", + "Timestamp": "2024-05-16T09:00:58.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5ad.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097900", - "Timestamp": "2019-10-15T15:43:30.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.303600", + "Timestamp": "2024-05-16T09:00:58.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137900", - "Timestamp": "2019-10-15T15:43:30.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.247600", + "Timestamp": "2024-05-16T09:00:58.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5ad.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137900", - "Timestamp": "2019-10-15T15:43:30.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.258100", + "Timestamp": "2024-05-16T09:00:57.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5ad.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i-flex.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137900", - "Timestamp": "2019-10-15T15:43:30.000Z" + "SpotPrice": "0.253100", + "Timestamp": "2024-05-16T09:00:57.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i-flex.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037900", - "Timestamp": "2019-10-15T15:43:30.000Z" + "SpotPrice": "0.128100", + "Timestamp": "2024-05-16T09:00:57.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5ad.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037900", - "Timestamp": "2019-10-15T15:43:30.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.200800", + "Timestamp": "2024-05-16T09:00:55.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5ad.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.196800", + "Timestamp": "2024-05-16T09:00:55.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037900", - "Timestamp": "2019-10-15T15:43:30.000Z" + "SpotPrice": "0.140800", + "Timestamp": "2024-05-16T09:00:55.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.129900", - "Timestamp": "2019-10-15T15:43:30.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095000", + "Timestamp": "2024-05-16T09:00:55.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.129900", - "Timestamp": "2019-10-15T15:43:30.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091300", + "Timestamp": "2024-05-16T09:00:55.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5ad.large", - "ProductDescription": "Windows", - "SpotPrice": "0.129900", - "Timestamp": "2019-10-15T15:43:30.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035000", + "Timestamp": "2024-05-16T09:00:55.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.235200", - "Timestamp": "2019-10-15T15:43:15.000Z" + "SpotPrice": "0.217000", + "Timestamp": "2024-05-16T08:47:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.metal", "ProductDescription": "Windows", - "SpotPrice": "6.235200", - "Timestamp": "2019-10-15T15:43:15.000Z" + "SpotPrice": "10.153900", + "Timestamp": "2024-05-16T08:47:04.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.235200", - "Timestamp": "2019-10-15T15:43:15.000Z" + "SpotPrice": "0.221800", + "Timestamp": "2024-05-16T08:46:51.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5zn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.949200", - "Timestamp": "2019-10-15T15:43:15.000Z" + "SpotPrice": "0.149100", + "Timestamp": "2024-05-16T08:46:46.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.949200", - "Timestamp": "2019-10-15T15:43:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5zn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145400", + "Timestamp": "2024-05-16T08:46:46.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089100", + "Timestamp": "2024-05-16T08:46:46.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.949200", - "Timestamp": "2019-10-15T15:43:15.000Z" + "SpotPrice": "0.636500", + "Timestamp": "2024-05-16T08:46:42.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.919200", - "Timestamp": "2019-10-15T15:43:15.000Z" + "SpotPrice": "0.631500", + "Timestamp": "2024-05-16T08:46:42.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.919200", - "Timestamp": "2019-10-15T15:43:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.506500", + "Timestamp": "2024-05-16T08:46:42.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.339100", + "Timestamp": "2024-05-16T08:46:39.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i-flex.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.919200", - "Timestamp": "2019-10-15T15:43:15.000Z" + "SpotPrice": "0.334100", + "Timestamp": "2024-05-16T08:46:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i-flex.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.819200", - "Timestamp": "2019-10-15T15:43:15.000Z" + "SpotPrice": "0.209100", + "Timestamp": "2024-05-16T08:46:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.819200", - "Timestamp": "2019-10-15T15:43:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.643800", + "Timestamp": "2024-05-16T08:46:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.819200", - "Timestamp": "2019-10-15T15:43:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.463900", + "Timestamp": "2024-05-16T08:46:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3en.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.141300", - "Timestamp": "2019-10-15T15:43:00.000Z" + "SpotPrice": "0.571300", + "Timestamp": "2024-05-16T08:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3en.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.141300", - "Timestamp": "2019-10-15T15:43:00.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.566300", + "Timestamp": "2024-05-16T08:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3en.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.141300", - "Timestamp": "2019-10-15T15:43:00.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.441300", + "Timestamp": "2024-05-16T08:46:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3en.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.181300", - "Timestamp": "2019-10-15T15:43:00.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.373400", + "Timestamp": "2024-05-16T08:46:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3en.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.181300", - "Timestamp": "2019-10-15T15:43:00.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.590400", + "Timestamp": "2024-05-16T08:46:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3en.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.181300", - "Timestamp": "2019-10-15T15:43:00.000Z" + "SpotPrice": "0.368400", + "Timestamp": "2024-05-16T08:46:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3en.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.081300", - "Timestamp": "2019-10-15T15:43:00.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.585400", + "Timestamp": "2024-05-16T08:46:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3en.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.081300", - "Timestamp": "2019-10-15T15:43:00.000Z" + "SpotPrice": "0.243400", + "Timestamp": "2024-05-16T08:46:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3en.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.081300", - "Timestamp": "2019-10-15T15:43:00.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3en.large", - "ProductDescription": "Windows", - "SpotPrice": "0.173300", - "Timestamp": "2019-10-15T15:43:00.000Z" + "SpotPrice": "0.460400", + "Timestamp": "2024-05-16T08:46:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3en.large", - "ProductDescription": "Windows", - "SpotPrice": "0.173300", - "Timestamp": "2019-10-15T15:43:00.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.334700", + "Timestamp": "2024-05-16T08:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3en.large", - "ProductDescription": "Windows", - "SpotPrice": "0.173300", - "Timestamp": "2019-10-15T15:43:00.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.329700", + "Timestamp": "2024-05-16T08:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.589500", - "Timestamp": "2019-10-15T15:42:16.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.204700", + "Timestamp": "2024-05-16T08:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.589500", - "Timestamp": "2019-10-15T15:42:16.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.218400", + "Timestamp": "2024-05-16T08:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.589500", - "Timestamp": "2019-10-15T15:42:16.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.214400", + "Timestamp": "2024-05-16T08:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.152500", - "Timestamp": "2019-10-15T15:41:35.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.158400", + "Timestamp": "2024-05-16T08:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.152500", - "Timestamp": "2019-10-15T15:41:35.000Z" + "SpotPrice": "0.231200", + "Timestamp": "2024-05-16T08:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.152500", - "Timestamp": "2019-10-15T15:41:35.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.327200", + "Timestamp": "2024-05-16T08:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.866500", - "Timestamp": "2019-10-15T15:41:22.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.322200", + "Timestamp": "2024-05-16T08:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.866500", - "Timestamp": "2019-10-15T15:41:22.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.197200", + "Timestamp": "2024-05-16T08:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.866500", - "Timestamp": "2019-10-15T15:41:22.000Z" + "SpotPrice": "0.187900", + "Timestamp": "2024-05-16T08:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.836500", - "Timestamp": "2019-10-15T15:41:22.000Z" + "SpotPrice": "0.184200", + "Timestamp": "2024-05-16T08:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.836500", - "Timestamp": "2019-10-15T15:41:22.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127900", + "Timestamp": "2024-05-16T08:46:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.836500", - "Timestamp": "2019-10-15T15:41:22.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.234200", + "Timestamp": "2024-05-16T08:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.736500", - "Timestamp": "2019-10-15T15:41:22.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.230200", + "Timestamp": "2024-05-16T08:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5a.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.736500", - "Timestamp": "2019-10-15T15:41:22.000Z" + "SpotPrice": "0.174200", + "Timestamp": "2024-05-16T08:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.736500", - "Timestamp": "2019-10-15T15:41:22.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.236200", + "Timestamp": "2024-05-16T08:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t3.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006600", - "Timestamp": "2019-10-15T14:51:58.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.276200", + "Timestamp": "2024-05-16T08:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006600", - "Timestamp": "2019-10-15T14:51:58.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.176200", + "Timestamp": "2024-05-16T08:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006600", - "Timestamp": "2019-10-15T14:51:58.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.923300", + "Timestamp": "2024-05-16T08:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062000", - "Timestamp": "2019-10-15T14:49:26.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.918300", + "Timestamp": "2024-05-16T08:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062000", - "Timestamp": "2019-10-15T14:49:26.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.793300", + "Timestamp": "2024-05-16T08:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3.nano", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062000", - "Timestamp": "2019-10-15T14:49:26.000Z" + "SpotPrice": "0.429500", + "Timestamp": "2024-05-16T08:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t3.nano", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.102000", - "Timestamp": "2019-10-15T14:49:26.000Z" + "SpotPrice": "0.399500", + "Timestamp": "2024-05-16T08:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3.nano", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.102000", - "Timestamp": "2019-10-15T14:49:26.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.299500", + "Timestamp": "2024-05-16T08:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3.nano", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.102000", - "Timestamp": "2019-10-15T14:49:26.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.467200", + "Timestamp": "2024-05-16T08:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t3.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T14:49:26.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.462200", + "Timestamp": "2024-05-16T08:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3.nano", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5zn.3xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T14:49:26.000Z" + "SpotPrice": "0.337200", + "Timestamp": "2024-05-16T08:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T14:49:26.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.386700", + "Timestamp": "2024-05-16T08:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.209200", - "Timestamp": "2019-10-15T14:45:20.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.381700", + "Timestamp": "2024-05-16T08:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.209200", - "Timestamp": "2019-10-15T14:45:20.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.256700", + "Timestamp": "2024-05-16T08:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.119200", - "Timestamp": "2019-10-15T14:45:19.000Z" + "SpotPrice": "2.244500", + "Timestamp": "2024-05-16T08:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.119200", - "Timestamp": "2019-10-15T14:45:19.000Z" + "SpotPrice": "2.211700", + "Timestamp": "2024-05-16T08:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.159200", - "Timestamp": "2019-10-15T14:45:19.000Z" + "SpotPrice": "2.239500", + "Timestamp": "2024-05-16T08:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.159200", - "Timestamp": "2019-10-15T14:45:19.000Z" + "SpotPrice": "2.206700", + "Timestamp": "2024-05-16T08:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.059200", - "Timestamp": "2019-10-15T14:45:19.000Z" + "SpotPrice": "2.114500", + "Timestamp": "2024-05-16T08:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m2.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.059200", - "Timestamp": "2019-10-15T14:45:19.000Z" + "SpotPrice": "2.081700", + "Timestamp": "2024-05-16T08:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.552400", - "Timestamp": "2019-10-15T14:44:35.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.844400", + "Timestamp": "2024-05-16T08:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.552400", - "Timestamp": "2019-10-15T14:44:35.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.839400", + "Timestamp": "2024-05-16T08:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.552400", - "Timestamp": "2019-10-15T14:44:35.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.714400", + "Timestamp": "2024-05-16T08:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.117000", - "Timestamp": "2019-10-15T14:44:24.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.003500", + "Timestamp": "2024-05-16T08:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.117000", - "Timestamp": "2019-10-15T14:44:24.000Z" + "SpotPrice": "0.444000", + "Timestamp": "2024-05-16T08:46:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.157000", - "Timestamp": "2019-10-15T14:44:24.000Z" + "SpotPrice": "0.439000", + "Timestamp": "2024-05-16T08:46:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.157000", - "Timestamp": "2019-10-15T14:44:24.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.314000", + "Timestamp": "2024-05-16T08:46:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.057000", - "Timestamp": "2019-10-15T14:44:24.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.153400", + "Timestamp": "2024-05-16T08:46:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.148400", + "Timestamp": "2024-05-16T08:46:27.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.057000", - "Timestamp": "2019-10-15T14:44:24.000Z" + "SpotPrice": "2.023400", + "Timestamp": "2024-05-16T08:46:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.130600", - "Timestamp": "2019-10-15T14:44:09.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.969100", + "Timestamp": "2024-05-16T08:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.130600", - "Timestamp": "2019-10-15T14:44:09.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.964100", + "Timestamp": "2024-05-16T08:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.370400", - "Timestamp": "2019-10-15T14:44:04.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.839100", + "Timestamp": "2024-05-16T08:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gd.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.370400", - "Timestamp": "2019-10-15T14:44:04.000Z" + "SpotPrice": "0.147000", + "Timestamp": "2024-05-16T08:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.370400", - "Timestamp": "2019-10-15T14:44:04.000Z" + "SpotPrice": "0.124800", + "Timestamp": "2024-05-16T08:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gd.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.340400", - "Timestamp": "2019-10-15T14:44:04.000Z" + "SpotPrice": "0.143300", + "Timestamp": "2024-05-16T08:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.340400", - "Timestamp": "2019-10-15T14:44:04.000Z" + "SpotPrice": "0.121100", + "Timestamp": "2024-05-16T08:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.340400", - "Timestamp": "2019-10-15T14:44:04.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.087000", + "Timestamp": "2024-05-16T08:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.240400", - "Timestamp": "2019-10-15T14:44:04.000Z" + "SpotPrice": "0.064800", + "Timestamp": "2024-05-16T08:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.314500", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.309500", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.240400", - "Timestamp": "2019-10-15T14:44:04.000Z" + "SpotPrice": "0.184500", + "Timestamp": "2024-05-16T08:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.179700", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.175700", + "Timestamp": "2024-05-16T08:46:26.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.240400", - "Timestamp": "2019-10-15T14:44:04.000Z" + "SpotPrice": "0.119700", + "Timestamp": "2024-05-16T08:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.680000", - "Timestamp": "2019-10-15T14:43:31.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m4.10xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.158100", + "Timestamp": "2024-05-16T08:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.680000", - "Timestamp": "2019-10-15T14:43:31.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.650000", - "Timestamp": "2019-10-15T14:43:31.000Z" + "SpotPrice": "1.000600", + "Timestamp": "2024-05-16T08:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.650000", - "Timestamp": "2019-10-15T14:43:31.000Z" + "SpotPrice": "0.995600", + "Timestamp": "2024-05-16T08:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.550000", - "Timestamp": "2019-10-15T14:43:31.000Z" + "SpotPrice": "0.870600", + "Timestamp": "2024-05-16T08:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.550000", - "Timestamp": "2019-10-15T14:43:31.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.681300", + "Timestamp": "2024-05-16T08:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.958000", - "Timestamp": "2019-10-15T14:43:30.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.676300", + "Timestamp": "2024-05-16T08:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.958000", - "Timestamp": "2019-10-15T14:43:30.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.551300", + "Timestamp": "2024-05-16T08:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m4.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.958000", - "Timestamp": "2019-10-15T14:43:30.000Z" + "SpotPrice": "0.431900", + "Timestamp": "2024-05-16T08:46:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.011600", - "Timestamp": "2019-10-15T14:43:02.000Z" + "SpotPrice": "0.955100", + "Timestamp": "2024-05-16T08:46:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.011600", - "Timestamp": "2019-10-15T14:43:02.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.300400", + "Timestamp": "2024-05-16T08:46:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.011600", - "Timestamp": "2019-10-15T14:43:02.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.295400", + "Timestamp": "2024-05-16T08:46:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.399400", - "Timestamp": "2019-10-15T14:43:00.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170400", + "Timestamp": "2024-05-16T08:46:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.399400", - "Timestamp": "2019-10-15T14:43:00.000Z" + "SpotPrice": "3.897400", + "Timestamp": "2024-05-16T08:46:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "g2.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.369400", - "Timestamp": "2019-10-15T14:43:00.000Z" + "SpotPrice": "3.892400", + "Timestamp": "2024-05-16T08:46:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "g2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.369400", - "Timestamp": "2019-10-15T14:43:00.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.767400", + "Timestamp": "2024-05-16T08:46:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.269400", - "Timestamp": "2019-10-15T14:43:00.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.380800", + "Timestamp": "2024-05-16T08:46:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.269400", - "Timestamp": "2019-10-15T14:43:00.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.045500", + "Timestamp": "2024-05-16T08:46:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.429400", - "Timestamp": "2019-10-15T14:43:00.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.040500", + "Timestamp": "2024-05-16T08:46:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "g2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.429400", - "Timestamp": "2019-10-15T14:43:00.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.915500", + "Timestamp": "2024-05-16T08:46:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5ad.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.405600", - "Timestamp": "2019-10-15T14:42:31.000Z" + "SpotPrice": "1.625600", + "Timestamp": "2024-05-16T08:46:17.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.405600", - "Timestamp": "2019-10-15T14:42:31.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.620600", + "Timestamp": "2024-05-16T08:46:17.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.495600", + "Timestamp": "2024-05-16T08:46:17.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.405600", - "Timestamp": "2019-10-15T14:42:31.000Z" + "SpotPrice": "1.806900", + "Timestamp": "2024-05-16T08:46:13.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.375600", - "Timestamp": "2019-10-15T14:42:31.000Z" + "SpotPrice": "1.801900", + "Timestamp": "2024-05-16T08:46:13.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.375600", - "Timestamp": "2019-10-15T14:42:31.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.676900", + "Timestamp": "2024-05-16T08:46:13.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068300", + "Timestamp": "2024-05-16T08:46:10.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.375600", - "Timestamp": "2019-10-15T14:42:31.000Z" + "SpotPrice": "0.039300", + "Timestamp": "2024-05-16T08:46:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.275600", - "Timestamp": "2019-10-15T14:42:31.000Z" + "SpotPrice": "0.008300", + "Timestamp": "2024-05-16T08:46:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.275600", - "Timestamp": "2019-10-15T14:42:31.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.470200", + "Timestamp": "2024-05-16T08:46:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.275600", - "Timestamp": "2019-10-15T14:42:31.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.699200", + "Timestamp": "2024-05-16T08:46:01.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.9xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125700", - "Timestamp": "2019-10-15T14:33:10.000Z" + "SpotPrice": "0.833100", + "Timestamp": "2024-05-16T08:45:48.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.9xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.165700", - "Timestamp": "2019-10-15T14:33:10.000Z" + "SpotPrice": "0.803100", + "Timestamp": "2024-05-16T08:45:48.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.9xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065700", - "Timestamp": "2019-10-15T14:33:10.000Z" + "SpotPrice": "0.703100", + "Timestamp": "2024-05-16T08:45:48.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.large", "ProductDescription": "Windows", - "SpotPrice": "8.397100", - "Timestamp": "2019-10-15T14:25:21.000Z" + "SpotPrice": "0.119400", + "Timestamp": "2024-05-16T08:33:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m3.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.147200", - "Timestamp": "2019-10-15T14:25:19.000Z" + "SpotPrice": "3.673600", + "Timestamp": "2024-05-16T08:32:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.232600", - "Timestamp": "2019-10-15T14:06:28.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423100", + "Timestamp": "2024-05-16T08:32:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.232600", - "Timestamp": "2019-10-15T14:06:28.000Z" + "SpotPrice": "0.586500", + "Timestamp": "2024-05-16T08:32:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.232600", - "Timestamp": "2019-10-15T14:06:28.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.581500", + "Timestamp": "2024-05-16T08:32:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m4.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.202600", - "Timestamp": "2019-10-15T14:06:28.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.456500", + "Timestamp": "2024-05-16T08:32:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m4.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.202600", - "Timestamp": "2019-10-15T14:06:28.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3en.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T08:31:57.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3en.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.202600", - "Timestamp": "2019-10-15T14:06:28.000Z" + "SpotPrice": "0.092000", + "Timestamp": "2024-05-16T08:31:57.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3en.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.102600", - "Timestamp": "2019-10-15T14:06:28.000Z" + "SpotPrice": "0.036000", + "Timestamp": "2024-05-16T08:31:57.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.102600", - "Timestamp": "2019-10-15T14:06:28.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.198000", + "Timestamp": "2024-05-16T08:31:55.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.194000", + "Timestamp": "2024-05-16T08:31:55.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.102600", - "Timestamp": "2019-10-15T14:06:28.000Z" + "SpotPrice": "0.138000", + "Timestamp": "2024-05-16T08:31:55.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.152500", - "Timestamp": "2019-10-15T13:44:15.000Z" + "SpotPrice": "2.538100", + "Timestamp": "2024-05-16T08:31:44.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3.xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.152500", - "Timestamp": "2019-10-15T13:44:15.000Z" + "SpotPrice": "0.123200", + "Timestamp": "2024-05-16T08:31:44.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.152500", - "Timestamp": "2019-10-15T13:44:15.000Z" + "SpotPrice": "0.830300", + "Timestamp": "2024-05-16T08:31:42.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132400", - "Timestamp": "2019-10-15T13:44:07.000Z" + "SpotPrice": "2.010600", + "Timestamp": "2024-05-16T08:31:41.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132400", - "Timestamp": "2019-10-15T13:44:07.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.980600", + "Timestamp": "2024-05-16T08:31:41.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.880600", + "Timestamp": "2024-05-16T08:31:41.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132400", - "Timestamp": "2019-10-15T13:44:07.000Z" + "SpotPrice": "1.451900", + "Timestamp": "2024-05-16T08:31:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172400", - "Timestamp": "2019-10-15T13:44:07.000Z" + "SpotPrice": "1.446900", + "Timestamp": "2024-05-16T08:31:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5a.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172400", - "Timestamp": "2019-10-15T13:44:07.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.321900", + "Timestamp": "2024-05-16T08:31:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.578000", + "Timestamp": "2024-05-16T08:31:39.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r4.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172400", - "Timestamp": "2019-10-15T13:44:07.000Z" + "SpotPrice": "0.548000", + "Timestamp": "2024-05-16T08:31:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r4.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072400", - "Timestamp": "2019-10-15T13:44:07.000Z" + "SpotPrice": "0.448000", + "Timestamp": "2024-05-16T08:31:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072400", - "Timestamp": "2019-10-15T13:44:07.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.252600", + "Timestamp": "2024-05-16T08:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.151800", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.147800", + "Timestamp": "2024-05-16T08:31:37.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072400", - "Timestamp": "2019-10-15T13:44:07.000Z" + "SpotPrice": "0.091800", + "Timestamp": "2024-05-16T08:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c3.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.256400", - "Timestamp": "2019-10-15T13:43:39.000Z" + "SpotPrice": "1.588000", + "Timestamp": "2024-05-16T08:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.large", "ProductDescription": "Windows", - "SpotPrice": "0.256400", - "Timestamp": "2019-10-15T13:43:39.000Z" + "SpotPrice": "0.105100", + "Timestamp": "2024-05-16T08:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m3.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.256400", - "Timestamp": "2019-10-15T13:43:39.000Z" + "SpotPrice": "0.308000", + "Timestamp": "2024-05-16T08:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.609600", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.537000", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.448400", + "Timestamp": "2024-05-16T08:31:32.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.323800", - "Timestamp": "2019-10-15T13:43:15.000Z" + "SpotPrice": "0.563100", + "Timestamp": "2024-05-16T08:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.293800", - "Timestamp": "2019-10-15T13:43:15.000Z" + "SpotPrice": "0.558100", + "Timestamp": "2024-05-16T08:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.193800", - "Timestamp": "2019-10-15T13:43:15.000Z" + "SpotPrice": "0.433100", + "Timestamp": "2024-05-16T08:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "27.616000", - "Timestamp": "2019-10-15T13:41:52.000Z" + "SpotPrice": "5.163900", + "Timestamp": "2024-05-16T08:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "27.616000", - "Timestamp": "2019-10-15T13:41:52.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.109200", + "Timestamp": "2024-05-16T08:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "24.802000", - "Timestamp": "2019-10-15T13:41:52.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.104200", + "Timestamp": "2024-05-16T08:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.979200", + "Timestamp": "2024-05-16T08:31:31.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.metal-24xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "24.802000", - "Timestamp": "2019-10-15T13:41:52.000Z" + "SpotPrice": "1.092100", + "Timestamp": "2024-05-16T08:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.metal-24xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "24.772000", - "Timestamp": "2019-10-15T13:41:52.000Z" + "SpotPrice": "1.087100", + "Timestamp": "2024-05-16T08:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.962100", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.718500", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5a.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "24.772000", - "Timestamp": "2019-10-15T13:41:52.000Z" + "SpotPrice": "0.713500", + "Timestamp": "2024-05-16T08:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "24.672000", - "Timestamp": "2019-10-15T13:41:52.000Z" + "SpotPrice": "0.588500", + "Timestamp": "2024-05-16T08:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.910000", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.905000", + "Timestamp": "2024-05-16T08:31:30.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "inf1.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "24.672000", - "Timestamp": "2019-10-15T13:41:52.000Z" + "SpotPrice": "0.780000", + "Timestamp": "2024-05-16T08:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.405600", - "Timestamp": "2019-10-15T13:26:29.000Z" + "SpotPrice": "0.989800", + "Timestamp": "2024-05-16T08:31:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.375600", - "Timestamp": "2019-10-15T13:26:29.000Z" + "SpotPrice": "0.984800", + "Timestamp": "2024-05-16T08:31:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.275600", - "Timestamp": "2019-10-15T13:26:29.000Z" + "SpotPrice": "0.859800", + "Timestamp": "2024-05-16T08:31:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267900", - "Timestamp": "2019-10-15T13:26:24.000Z" + "SpotPrice": "0.786700", + "Timestamp": "2024-05-16T08:31:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.237900", - "Timestamp": "2019-10-15T13:26:24.000Z" + "SpotPrice": "0.781700", + "Timestamp": "2024-05-16T08:31:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.137900", - "Timestamp": "2019-10-15T13:26:24.000Z" + "SpotPrice": "0.656700", + "Timestamp": "2024-05-16T08:31:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.large", "ProductDescription": "Windows", - "SpotPrice": "4.101700", - "Timestamp": "2019-10-15T13:13:19.000Z" + "SpotPrice": "0.107000", + "Timestamp": "2024-05-16T08:31:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.101700", - "Timestamp": "2019-10-15T13:13:19.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.205900", + "Timestamp": "2024-05-16T08:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.101700", - "Timestamp": "2019-10-15T13:13:19.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.200900", + "Timestamp": "2024-05-16T08:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m1.large", - "ProductDescription": "Windows", - "SpotPrice": "0.160300", - "Timestamp": "2019-10-15T13:09:55.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.075900", + "Timestamp": "2024-05-16T08:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.287700", - "Timestamp": "2019-10-15T13:06:22.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.496100", + "Timestamp": "2024-05-16T08:31:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.287700", - "Timestamp": "2019-10-15T13:06:22.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.963800", + "Timestamp": "2024-05-16T08:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.287700", - "Timestamp": "2019-10-15T13:06:22.000Z" + "SpotPrice": "2.819300", + "Timestamp": "2024-05-16T08:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.257700", - "Timestamp": "2019-10-15T13:06:22.000Z" + "SpotPrice": "2.814300", + "Timestamp": "2024-05-16T08:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.257700", - "Timestamp": "2019-10-15T13:06:22.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.689300", + "Timestamp": "2024-05-16T08:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.501600", + "Timestamp": "2024-05-16T08:31:23.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.257700", - "Timestamp": "2019-10-15T13:06:22.000Z" + "SpotPrice": "0.497900", + "Timestamp": "2024-05-16T08:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.157700", - "Timestamp": "2019-10-15T13:06:22.000Z" + "SpotPrice": "0.441600", + "Timestamp": "2024-05-16T08:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.157700", - "Timestamp": "2019-10-15T13:06:22.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.080800", + "Timestamp": "2024-05-16T08:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.157700", - "Timestamp": "2019-10-15T13:06:22.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.075800", + "Timestamp": "2024-05-16T08:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.344000", - "Timestamp": "2019-10-15T13:01:40.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.950800", + "Timestamp": "2024-05-16T08:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.128900", - "Timestamp": "2019-10-15T13:00:41.000Z" + "SpotPrice": "0.792400", + "Timestamp": "2024-05-16T08:31:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.168900", - "Timestamp": "2019-10-15T13:00:41.000Z" + "SpotPrice": "0.787400", + "Timestamp": "2024-05-16T08:31:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.068900", - "Timestamp": "2019-10-15T13:00:41.000Z" + "SpotPrice": "0.662400", + "Timestamp": "2024-05-16T08:31:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "a1.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.077900", - "Timestamp": "2019-10-15T12:48:05.000Z" + "SpotPrice": "10.345000", + "Timestamp": "2024-05-16T08:31:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "a1.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.077900", - "Timestamp": "2019-10-15T12:48:05.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "10.340000", + "Timestamp": "2024-05-16T08:31:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "a1.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.117900", - "Timestamp": "2019-10-15T12:48:05.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "10.215000", + "Timestamp": "2024-05-16T08:31:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "a1.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.117900", - "Timestamp": "2019-10-15T12:48:05.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103000", + "Timestamp": "2024-05-16T08:31:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "a1.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.017900", - "Timestamp": "2019-10-15T12:48:05.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099000", + "Timestamp": "2024-05-16T08:31:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "a1.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "inf1.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.017900", - "Timestamp": "2019-10-15T12:48:05.000Z" + "SpotPrice": "0.043000", + "Timestamp": "2024-05-16T08:31:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.098000", - "Timestamp": "2019-10-15T12:47:02.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.322200", + "Timestamp": "2024-05-16T08:31:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.098000", - "Timestamp": "2019-10-15T12:47:02.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.317200", + "Timestamp": "2024-05-16T08:31:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.098000", - "Timestamp": "2019-10-15T12:47:02.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.192200", + "Timestamp": "2024-05-16T08:31:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t2.small", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.068800", - "Timestamp": "2019-10-15T12:46:50.000Z" + "SpotPrice": "0.404100", + "Timestamp": "2024-05-16T08:31:17.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t2.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.068800", - "Timestamp": "2019-10-15T12:46:50.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.399100", + "Timestamp": "2024-05-16T08:31:17.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t2.small", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.274100", + "Timestamp": "2024-05-16T08:31:17.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.068800", - "Timestamp": "2019-10-15T12:46:50.000Z" + "SpotPrice": "0.251600", + "Timestamp": "2024-05-16T08:31:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t2.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.038800", - "Timestamp": "2019-10-15T12:46:50.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.189400", + "Timestamp": "2024-05-16T08:31:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t2.small", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.038800", - "Timestamp": "2019-10-15T12:46:50.000Z" + "SpotPrice": "0.247600", + "Timestamp": "2024-05-16T08:31:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t2.small", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3en.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.038800", - "Timestamp": "2019-10-15T12:46:50.000Z" + "SpotPrice": "0.185400", + "Timestamp": "2024-05-16T08:31:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t2.small", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.008800", - "Timestamp": "2019-10-15T12:46:50.000Z" + "SpotPrice": "0.191600", + "Timestamp": "2024-05-16T08:31:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t2.small", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3en.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.008800", - "Timestamp": "2019-10-15T12:46:50.000Z" + "SpotPrice": "0.129400", + "Timestamp": "2024-05-16T08:31:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t2.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.008800", - "Timestamp": "2019-10-15T12:46:50.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.153900", + "Timestamp": "2024-05-16T08:31:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.380000", - "Timestamp": "2019-10-15T12:46:24.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.150200", + "Timestamp": "2024-05-16T08:31:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.380000", - "Timestamp": "2019-10-15T12:46:24.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093900", + "Timestamp": "2024-05-16T08:31:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.380000", - "Timestamp": "2019-10-15T12:46:24.000Z" + "SpotPrice": "0.174500", + "Timestamp": "2024-05-16T08:31:13.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.350000", - "Timestamp": "2019-10-15T12:46:24.000Z" + "SpotPrice": "0.170800", + "Timestamp": "2024-05-16T08:31:13.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c3.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.350000", - "Timestamp": "2019-10-15T12:46:24.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114500", + "Timestamp": "2024-05-16T08:31:13.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.350000", - "Timestamp": "2019-10-15T12:46:24.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.685600", + "Timestamp": "2024-05-16T08:31:11.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.250000", - "Timestamp": "2019-10-15T12:46:24.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.680600", + "Timestamp": "2024-05-16T08:31:11.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.250000", - "Timestamp": "2019-10-15T12:46:24.000Z" + "SpotPrice": "0.555600", + "Timestamp": "2024-05-16T08:31:11.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.250000", - "Timestamp": "2019-10-15T12:46:24.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.302300", + "Timestamp": "2024-05-16T08:31:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t2.small", - "ProductDescription": "Windows", - "SpotPrice": "0.018000", - "Timestamp": "2019-10-15T12:45:31.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.297300", + "Timestamp": "2024-05-16T08:31:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.144600", - "Timestamp": "2019-10-15T12:45:18.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.172300", + "Timestamp": "2024-05-16T08:31:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.845300", - "Timestamp": "2019-10-15T12:44:00.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.225200", + "Timestamp": "2024-05-16T08:31:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.845300", - "Timestamp": "2019-10-15T12:44:00.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.220200", + "Timestamp": "2024-05-16T08:31:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.031300", - "Timestamp": "2019-10-15T12:43:57.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.095200", + "Timestamp": "2024-05-16T08:31:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.031300", - "Timestamp": "2019-10-15T12:43:57.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.001300", - "Timestamp": "2019-10-15T12:43:57.000Z" + "SpotPrice": "1.117500", + "Timestamp": "2024-05-16T08:31:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.001300", - "Timestamp": "2019-10-15T12:43:57.000Z" + "SpotPrice": "1.112500", + "Timestamp": "2024-05-16T08:31:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.901300", - "Timestamp": "2019-10-15T12:43:57.000Z" + "SpotPrice": "0.987500", + "Timestamp": "2024-05-16T08:31:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.901300", - "Timestamp": "2019-10-15T12:43:57.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.425400", + "Timestamp": "2024-05-16T08:31:09.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.247000", - "Timestamp": "2019-10-15T12:43:46.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.420400", + "Timestamp": "2024-05-16T08:31:09.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.116100", - "Timestamp": "2019-10-15T12:43:46.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.295400", + "Timestamp": "2024-05-16T08:31:09.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.116100", - "Timestamp": "2019-10-15T12:43:46.000Z" + "SpotPrice": "0.741600", + "Timestamp": "2024-05-16T08:31:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.287000", - "Timestamp": "2019-10-15T12:43:46.000Z" + "SpotPrice": "0.736600", + "Timestamp": "2024-05-16T08:31:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.156100", - "Timestamp": "2019-10-15T12:43:46.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.611600", + "Timestamp": "2024-05-16T08:31:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.221700", + "Timestamp": "2024-05-16T08:31:06.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.156100", - "Timestamp": "2019-10-15T12:43:46.000Z" + "SpotPrice": "1.216700", + "Timestamp": "2024-05-16T08:31:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.187000", - "Timestamp": "2019-10-15T12:43:46.000Z" + "SpotPrice": "1.091700", + "Timestamp": "2024-05-16T08:31:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.056100", - "Timestamp": "2019-10-15T12:43:46.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T08:30:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146400", + "Timestamp": "2024-05-16T08:30:59.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m3.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.056100", - "Timestamp": "2019-10-15T12:43:46.000Z" + "SpotPrice": "0.046400", + "Timestamp": "2024-05-16T08:30:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.279000", - "Timestamp": "2019-10-15T12:43:37.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.101400", + "Timestamp": "2024-05-16T08:30:54.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.148100", - "Timestamp": "2019-10-15T12:43:37.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.097700", + "Timestamp": "2024-05-16T08:30:54.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.148100", - "Timestamp": "2019-10-15T12:43:37.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041400", + "Timestamp": "2024-05-16T08:30:54.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.234800", - "Timestamp": "2019-10-15T12:43:30.000Z" + "SpotPrice": "1.202600", + "Timestamp": "2024-05-16T08:30:53.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.204800", - "Timestamp": "2019-10-15T12:43:30.000Z" + "SpotPrice": "1.197600", + "Timestamp": "2024-05-16T08:30:53.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "g3.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.104800", - "Timestamp": "2019-10-15T12:43:30.000Z" + "SpotPrice": "1.072600", + "Timestamp": "2024-05-16T08:30:53.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.048800", - "Timestamp": "2019-10-15T12:43:30.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.204600", + "Timestamp": "2024-05-16T08:30:53.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "g3.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.048800", - "Timestamp": "2019-10-15T12:43:30.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.244600", + "Timestamp": "2024-05-16T08:30:53.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144600", + "Timestamp": "2024-05-16T08:30:53.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x1e.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.262200", - "Timestamp": "2019-10-15T12:43:15.000Z" + "SpotPrice": "6.320400", + "Timestamp": "2024-05-16T08:30:49.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "g3.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3.large", "ProductDescription": "Windows", - "SpotPrice": "1.262200", - "Timestamp": "2019-10-15T12:43:15.000Z" + "SpotPrice": "0.043800", + "Timestamp": "2024-05-16T08:17:41.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6gd.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.122000", - "Timestamp": "2019-10-15T12:41:34.000Z" + "SpotPrice": "0.096500", + "Timestamp": "2024-05-16T08:17:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.027600", - "Timestamp": "2019-10-15T12:41:34.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092800", + "Timestamp": "2024-05-16T08:17:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.027600", - "Timestamp": "2019-10-15T12:41:34.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036500", + "Timestamp": "2024-05-16T08:17:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.092000", - "Timestamp": "2019-10-15T12:41:34.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.448400", + "Timestamp": "2024-05-16T08:17:08.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.997600", - "Timestamp": "2019-10-15T12:41:34.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.465400", + "Timestamp": "2024-05-16T08:16:57.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6g.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.997600", - "Timestamp": "2019-10-15T12:41:34.000Z" + "SpotPrice": "0.460400", + "Timestamp": "2024-05-16T08:16:57.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.992000", - "Timestamp": "2019-10-15T12:41:34.000Z" + "SpotPrice": "0.335400", + "Timestamp": "2024-05-16T08:16:57.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.897600", - "Timestamp": "2019-10-15T12:41:34.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135900", + "Timestamp": "2024-05-16T08:16:56.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131900", + "Timestamp": "2024-05-16T08:16:56.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.897600", - "Timestamp": "2019-10-15T12:41:34.000Z" + "SpotPrice": "0.075900", + "Timestamp": "2024-05-16T08:16:56.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.464000", - "Timestamp": "2019-10-15T12:40:55.000Z" + "SpotPrice": "0.211500", + "Timestamp": "2024-05-16T08:16:51.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.369600", - "Timestamp": "2019-10-15T12:40:55.000Z" + "SpotPrice": "0.097800", + "Timestamp": "2024-05-16T08:16:51.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.369600", - "Timestamp": "2019-10-15T12:40:55.000Z" + "SpotPrice": "0.231400", + "Timestamp": "2024-05-16T08:16:48.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.736400", - "Timestamp": "2019-10-15T12:40:46.000Z" + "SpotPrice": "0.622400", + "Timestamp": "2024-05-16T08:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.736400", - "Timestamp": "2019-10-15T12:40:46.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.617400", + "Timestamp": "2024-05-16T08:16:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.492400", + "Timestamp": "2024-05-16T08:16:40.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.736400", - "Timestamp": "2019-10-15T12:40:46.000Z" + "SpotPrice": "0.169200", + "Timestamp": "2024-05-16T08:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.706400", - "Timestamp": "2019-10-15T12:40:46.000Z" + "SpotPrice": "0.165200", + "Timestamp": "2024-05-16T08:16:39.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109200", + "Timestamp": "2024-05-16T08:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.706400", - "Timestamp": "2019-10-15T12:40:46.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.364200", + "Timestamp": "2024-05-16T08:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.706400", - "Timestamp": "2019-10-15T12:40:46.000Z" + "SpotPrice": "0.359200", + "Timestamp": "2024-05-16T08:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.606400", - "Timestamp": "2019-10-15T12:40:46.000Z" + "SpotPrice": "0.234200", + "Timestamp": "2024-05-16T08:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.606400", - "Timestamp": "2019-10-15T12:40:46.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.475300", + "Timestamp": "2024-05-16T08:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.606400", - "Timestamp": "2019-10-15T12:40:46.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.470300", + "Timestamp": "2024-05-16T08:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.078400", - "Timestamp": "2019-10-15T12:40:46.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.345300", + "Timestamp": "2024-05-16T08:16:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.078400", - "Timestamp": "2019-10-15T12:40:46.000Z" + "SpotPrice": "5.252900", + "Timestamp": "2024-05-16T08:16:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.078400", - "Timestamp": "2019-10-15T12:40:46.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.649000", + "Timestamp": "2024-05-16T08:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.032400", - "Timestamp": "2019-10-15T12:15:53.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.644000", + "Timestamp": "2024-05-16T08:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.032400", - "Timestamp": "2019-10-15T12:15:53.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.519000", + "Timestamp": "2024-05-16T08:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3en.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.18xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.032400", - "Timestamp": "2019-10-15T12:15:53.000Z" + "SpotPrice": "1.194400", + "Timestamp": "2024-05-16T08:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3en.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.18xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "4.002400", - "Timestamp": "2019-10-15T12:15:53.000Z" + "SpotPrice": "1.164400", + "Timestamp": "2024-05-16T08:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "4.002400", - "Timestamp": "2019-10-15T12:15:53.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.064400", + "Timestamp": "2024-05-16T08:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3en.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.443000", + "Timestamp": "2024-05-16T08:16:34.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "4.002400", - "Timestamp": "2019-10-15T12:15:53.000Z" + "SpotPrice": "0.438000", + "Timestamp": "2024-05-16T08:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3en.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.902400", - "Timestamp": "2019-10-15T12:15:53.000Z" + "SpotPrice": "0.313000", + "Timestamp": "2024-05-16T08:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.902400", - "Timestamp": "2019-10-15T12:15:53.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.187100", + "Timestamp": "2024-05-16T08:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3en.24xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.129400", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.099400", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r4.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.902400", - "Timestamp": "2019-10-15T12:15:53.000Z" + "SpotPrice": "0.999400", + "Timestamp": "2024-05-16T08:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.866500", - "Timestamp": "2019-10-15T12:07:15.000Z" + "SpotPrice": "0.156600", + "Timestamp": "2024-05-16T08:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.866500", - "Timestamp": "2019-10-15T12:07:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.152900", + "Timestamp": "2024-05-16T08:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.096600", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.866500", - "Timestamp": "2019-10-15T12:07:15.000Z" + "SpotPrice": "0.254700", + "Timestamp": "2024-05-16T08:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.836500", - "Timestamp": "2019-10-15T12:07:15.000Z" + "SpotPrice": "0.251000", + "Timestamp": "2024-05-16T08:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.836500", - "Timestamp": "2019-10-15T12:07:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194700", + "Timestamp": "2024-05-16T08:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.458400", + "Timestamp": "2024-05-16T08:16:33.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.836500", - "Timestamp": "2019-10-15T12:07:15.000Z" + "SpotPrice": "0.453400", + "Timestamp": "2024-05-16T08:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.736500", - "Timestamp": "2019-10-15T12:07:15.000Z" + "SpotPrice": "0.328400", + "Timestamp": "2024-05-16T08:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.736500", - "Timestamp": "2019-10-15T12:07:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.418200", + "Timestamp": "2024-05-16T08:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.736500", - "Timestamp": "2019-10-15T12:07:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.413200", + "Timestamp": "2024-05-16T08:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "6.152500", - "Timestamp": "2019-10-15T12:06:26.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.288200", + "Timestamp": "2024-05-16T08:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.metal", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i-flex.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.152500", - "Timestamp": "2019-10-15T12:06:26.000Z" + "SpotPrice": "0.401900", + "Timestamp": "2024-05-16T08:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.866500", - "Timestamp": "2019-10-15T12:05:19.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T08:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.metal", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.866500", - "Timestamp": "2019-10-15T12:05:19.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.836500", - "Timestamp": "2019-10-15T12:05:19.000Z" + "SpotPrice": "0.169700", + "Timestamp": "2024-05-16T08:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.metal", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.836500", - "Timestamp": "2019-10-15T12:05:19.000Z" + "SpotPrice": "0.165700", + "Timestamp": "2024-05-16T08:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.metal", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.736500", - "Timestamp": "2019-10-15T12:05:19.000Z" + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T08:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.736500", - "Timestamp": "2019-10-15T12:05:19.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.929600", + "Timestamp": "2024-05-16T08:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t1.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T11:46:55.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.899600", + "Timestamp": "2024-05-16T08:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t1.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T11:46:55.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.799600", + "Timestamp": "2024-05-16T08:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.metal", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.949200", - "Timestamp": "2019-10-15T11:46:49.000Z" + "SpotPrice": "1.621600", + "Timestamp": "2024-05-16T08:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.949200", - "Timestamp": "2019-10-15T11:46:49.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.591600", + "Timestamp": "2024-05-16T08:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.919200", - "Timestamp": "2019-10-15T11:46:49.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.491600", + "Timestamp": "2024-05-16T08:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.919200", - "Timestamp": "2019-10-15T11:46:49.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.851700", + "Timestamp": "2024-05-16T08:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.819200", - "Timestamp": "2019-10-15T11:46:49.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.846700", + "Timestamp": "2024-05-16T08:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.metal", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.819200", - "Timestamp": "2019-10-15T11:46:49.000Z" + "SpotPrice": "1.721700", + "Timestamp": "2024-05-16T08:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.metal", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c4.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.235200", - "Timestamp": "2019-10-15T11:46:44.000Z" + "SpotPrice": "0.429800", + "Timestamp": "2024-05-16T08:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "6.235200", - "Timestamp": "2019-10-15T11:46:44.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.585300", + "Timestamp": "2024-05-16T08:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t1.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062000", - "Timestamp": "2019-10-15T11:46:23.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.555300", + "Timestamp": "2024-05-16T08:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t1.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062000", - "Timestamp": "2019-10-15T11:46:23.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m4.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.455300", + "Timestamp": "2024-05-16T08:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t1.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-15T11:46:23.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.652600", + "Timestamp": "2024-05-16T08:16:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t1.micro", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.012000", - "Timestamp": "2019-10-15T11:46:23.000Z" + "SpotPrice": "0.647600", + "Timestamp": "2024-05-16T08:16:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t1.micro", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T11:46:23.000Z" + "SpotPrice": "0.522600", + "Timestamp": "2024-05-16T08:16:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t1.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002000", - "Timestamp": "2019-10-15T11:46:23.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.035200", + "Timestamp": "2024-05-16T08:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267500", - "Timestamp": "2019-10-15T11:45:12.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.030200", + "Timestamp": "2024-05-16T08:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267500", - "Timestamp": "2019-10-15T11:45:12.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.905200", + "Timestamp": "2024-05-16T08:16:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267500", - "Timestamp": "2019-10-15T11:45:12.000Z" + "SpotPrice": "1.100100", + "Timestamp": "2024-05-16T08:16:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.237500", - "Timestamp": "2019-10-15T11:45:12.000Z" + "SpotPrice": "1.070100", + "Timestamp": "2024-05-16T08:16:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.237500", - "Timestamp": "2019-10-15T11:45:12.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.970100", + "Timestamp": "2024-05-16T08:16:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.237500", - "Timestamp": "2019-10-15T11:45:12.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.193900", + "Timestamp": "2024-05-16T08:16:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.137500", - "Timestamp": "2019-10-15T11:45:12.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.188900", + "Timestamp": "2024-05-16T08:16:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.137500", - "Timestamp": "2019-10-15T11:45:12.000Z" + "SpotPrice": "1.063900", + "Timestamp": "2024-05-16T08:16:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.137500", - "Timestamp": "2019-10-15T11:45:12.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.111700", + "Timestamp": "2024-05-16T08:16:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267800", - "Timestamp": "2019-10-15T11:45:12.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.151700", + "Timestamp": "2024-05-16T08:16:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267800", - "Timestamp": "2019-10-15T11:45:12.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051700", + "Timestamp": "2024-05-16T08:16:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267800", - "Timestamp": "2019-10-15T11:45:12.000Z" + "SpotPrice": "0.742700", + "Timestamp": "2024-05-16T08:16:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.237800", - "Timestamp": "2019-10-15T11:45:12.000Z" + "SpotPrice": "0.737700", + "Timestamp": "2024-05-16T08:16:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.237800", - "Timestamp": "2019-10-15T11:45:12.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.612700", + "Timestamp": "2024-05-16T08:16:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.237800", - "Timestamp": "2019-10-15T11:45:12.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.119700", + "Timestamp": "2024-05-16T08:16:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.137800", - "Timestamp": "2019-10-15T11:45:12.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159700", + "Timestamp": "2024-05-16T08:16:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c4.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.137800", - "Timestamp": "2019-10-15T11:45:12.000Z" + "SpotPrice": "0.059700", + "Timestamp": "2024-05-16T08:16:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.137800", - "Timestamp": "2019-10-15T11:45:12.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.520200", + "Timestamp": "2024-05-16T08:16:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.505800", - "Timestamp": "2019-10-15T11:43:48.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.515200", + "Timestamp": "2024-05-16T08:16:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.505800", - "Timestamp": "2019-10-15T11:43:48.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.390200", + "Timestamp": "2024-05-16T08:16:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.505800", - "Timestamp": "2019-10-15T11:43:48.000Z" + "SpotPrice": "5.429000", + "Timestamp": "2024-05-16T08:16:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.117600", - "Timestamp": "2019-10-15T11:43:38.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.300000", + "Timestamp": "2024-05-16T08:16:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.117600", - "Timestamp": "2019-10-15T11:43:38.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.295000", + "Timestamp": "2024-05-16T08:16:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.039600", - "Timestamp": "2019-10-15T11:43:30.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.170000", + "Timestamp": "2024-05-16T08:16:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.039600", - "Timestamp": "2019-10-15T11:43:30.000Z" + "SpotPrice": "0.416300", + "Timestamp": "2024-05-16T08:16:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.009600", - "Timestamp": "2019-10-15T11:43:30.000Z" + "SpotPrice": "0.411300", + "Timestamp": "2024-05-16T08:16:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.009600", - "Timestamp": "2019-10-15T11:43:30.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.286300", + "Timestamp": "2024-05-16T08:16:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.909600", - "Timestamp": "2019-10-15T11:43:30.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.113900", + "Timestamp": "2024-05-16T08:16:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.109900", + "Timestamp": "2024-05-16T08:16:12.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.909600", - "Timestamp": "2019-10-15T11:43:30.000Z" + "SpotPrice": "0.053900", + "Timestamp": "2024-05-16T08:16:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.133100", - "Timestamp": "2019-10-15T11:38:40.000Z" + "SpotPrice": "0.349300", + "Timestamp": "2024-05-16T08:16:11.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.173100", - "Timestamp": "2019-10-15T11:38:40.000Z" + "SpotPrice": "0.319300", + "Timestamp": "2024-05-16T08:16:11.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.073100", - "Timestamp": "2019-10-15T11:38:40.000Z" + "SpotPrice": "0.219300", + "Timestamp": "2024-05-16T08:16:11.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.207600", - "Timestamp": "2019-10-15T10:47:47.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.729700", + "Timestamp": "2024-05-16T08:16:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.207600", - "Timestamp": "2019-10-15T10:47:47.000Z" + "SpotPrice": "0.547100", + "Timestamp": "2024-05-16T08:16:09.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.177600", - "Timestamp": "2019-10-15T10:47:47.000Z" + "SpotPrice": "0.542100", + "Timestamp": "2024-05-16T08:16:09.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.177600", - "Timestamp": "2019-10-15T10:47:47.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.417100", + "Timestamp": "2024-05-16T08:16:09.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.077600", - "Timestamp": "2019-10-15T10:47:47.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.545700", + "Timestamp": "2024-05-16T08:16:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.077600", - "Timestamp": "2019-10-15T10:47:47.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.654100", + "Timestamp": "2024-05-16T08:15:57.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "g2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.355600", - "Timestamp": "2019-10-15T10:47:47.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.649100", + "Timestamp": "2024-05-16T08:15:57.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "g2.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.524100", + "Timestamp": "2024-05-16T08:15:57.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1e.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.355600", - "Timestamp": "2019-10-15T10:47:47.000Z" + "SpotPrice": "9.419400", + "Timestamp": "2024-05-16T08:15:49.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t3.medium", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.034200", - "Timestamp": "2019-10-15T10:46:38.000Z" + "SpotPrice": "3.587200", + "Timestamp": "2024-05-16T08:14:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3.medium", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.034200", - "Timestamp": "2019-10-15T10:46:38.000Z" + "SpotPrice": "3.587200", + "Timestamp": "2024-05-16T08:14:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3.medium", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.034200", - "Timestamp": "2019-10-15T10:46:38.000Z" + "SpotPrice": "3.587200", + "Timestamp": "2024-05-16T08:14:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "z1d.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127800", - "Timestamp": "2019-10-15T10:46:32.000Z" + "SpotPrice": "0.203000", + "Timestamp": "2024-05-16T08:12:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "z1d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.286000", - "Timestamp": "2019-10-15T10:46:32.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198000", + "Timestamp": "2024-05-16T08:12:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "z1d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127800", - "Timestamp": "2019-10-15T10:46:32.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073000", + "Timestamp": "2024-05-16T08:12:10.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "z1d.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.167800", - "Timestamp": "2019-10-15T10:46:32.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.374200", + "Timestamp": "2024-05-16T08:03:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "z1d.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.326000", - "Timestamp": "2019-10-15T10:46:32.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.450500", + "Timestamp": "2024-05-16T08:02:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "z1d.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.167800", - "Timestamp": "2019-10-15T10:46:32.000Z" + "SpotPrice": "1.445500", + "Timestamp": "2024-05-16T08:02:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "z1d.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067800", - "Timestamp": "2019-10-15T10:46:32.000Z" + "SpotPrice": "1.320500", + "Timestamp": "2024-05-16T08:02:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "z1d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.226000", - "Timestamp": "2019-10-15T10:46:32.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211500", + "Timestamp": "2024-05-16T08:02:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "z1d.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.636500", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.631500", + "Timestamp": "2024-05-16T08:02:27.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067800", - "Timestamp": "2019-10-15T10:46:32.000Z" + "SpotPrice": "0.506500", + "Timestamp": "2024-05-16T08:02:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.075800", - "Timestamp": "2019-10-15T10:46:28.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226200", + "Timestamp": "2024-05-16T08:02:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.075800", - "Timestamp": "2019-10-15T10:46:28.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.044800", + "Timestamp": "2024-05-16T08:02:17.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3.medium", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.075800", - "Timestamp": "2019-10-15T10:46:28.000Z" + "SpotPrice": "1.059800", + "Timestamp": "2024-05-16T08:02:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t3.medium", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.115800", - "Timestamp": "2019-10-15T10:46:28.000Z" + "SpotPrice": "1.054800", + "Timestamp": "2024-05-16T08:02:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.115800", - "Timestamp": "2019-10-15T10:46:28.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.929800", + "Timestamp": "2024-05-16T08:02:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3.medium", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.465400", + "Timestamp": "2024-05-16T08:01:57.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6g.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.115800", - "Timestamp": "2019-10-15T10:46:28.000Z" + "SpotPrice": "0.460400", + "Timestamp": "2024-05-16T08:01:57.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t3.medium", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.015800", - "Timestamp": "2019-10-15T10:46:28.000Z" + "SpotPrice": "0.335400", + "Timestamp": "2024-05-16T08:01:57.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.015800", - "Timestamp": "2019-10-15T10:46:28.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.107200", + "Timestamp": "2024-05-16T08:01:52.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.015800", - "Timestamp": "2019-10-15T10:46:28.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.103500", + "Timestamp": "2024-05-16T08:01:52.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "z1d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.159800", - "Timestamp": "2019-10-15T10:45:51.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047200", + "Timestamp": "2024-05-16T08:01:52.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "z1d.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.159800", - "Timestamp": "2019-10-15T10:45:51.000Z" + "SpotPrice": "1.761600", + "Timestamp": "2024-05-16T08:01:51.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.050800", - "Timestamp": "2019-10-15T10:44:32.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169500", + "Timestamp": "2024-05-16T08:01:50.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.050800", - "Timestamp": "2019-10-15T10:44:32.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165800", + "Timestamp": "2024-05-16T08:01:50.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.050800", - "Timestamp": "2019-10-15T10:44:32.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109500", + "Timestamp": "2024-05-16T08:01:50.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "a1.metal", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.272900", - "Timestamp": "2019-10-15T10:44:20.000Z" + "SpotPrice": "1.299400", + "Timestamp": "2024-05-16T08:01:47.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "a1.metal", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.272900", - "Timestamp": "2019-10-15T10:44:20.000Z" + "SpotPrice": "3.600000", + "Timestamp": "2024-05-16T08:01:47.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "a1.metal", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.242900", - "Timestamp": "2019-10-15T10:44:20.000Z" + "SpotPrice": "1.269400", + "Timestamp": "2024-05-16T08:01:47.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "a1.metal", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.242900", - "Timestamp": "2019-10-15T10:44:20.000Z" + "SpotPrice": "3.570000", + "Timestamp": "2024-05-16T08:01:47.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "a1.metal", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.142900", - "Timestamp": "2019-10-15T10:44:20.000Z" + "SpotPrice": "1.169400", + "Timestamp": "2024-05-16T08:01:47.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "a1.metal", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.142900", - "Timestamp": "2019-10-15T10:44:20.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.708800", - "Timestamp": "2019-10-15T10:43:30.000Z" + "SpotPrice": "3.470000", + "Timestamp": "2024-05-16T08:01:47.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.708800", - "Timestamp": "2019-10-15T10:43:30.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.510400", + "Timestamp": "2024-05-16T08:01:46.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.708800", - "Timestamp": "2019-10-15T10:43:30.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.678800", - "Timestamp": "2019-10-15T10:43:30.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.678800", - "Timestamp": "2019-10-15T10:43:30.000Z" + "SpotPrice": "1.474000", + "Timestamp": "2024-05-16T08:01:43.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.678800", - "Timestamp": "2019-10-15T10:43:30.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.578800", - "Timestamp": "2019-10-15T10:43:30.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.578800", - "Timestamp": "2019-10-15T10:43:30.000Z" + "SpotPrice": "1.469000", + "Timestamp": "2024-05-16T08:01:43.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.578800", - "Timestamp": "2019-10-15T10:43:30.000Z" + "SpotPrice": "1.344000", + "Timestamp": "2024-05-16T08:01:43.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.273300", - "Timestamp": "2019-10-15T10:43:15.000Z" + "SpotPrice": "4.981900", + "Timestamp": "2024-05-16T08:01:42.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.273300", - "Timestamp": "2019-10-15T10:43:15.000Z" + "SpotPrice": "0.830300", + "Timestamp": "2024-05-16T08:01:42.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.large", "ProductDescription": "Windows", - "SpotPrice": "0.273300", - "Timestamp": "2019-10-15T10:43:15.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.256100", - "Timestamp": "2019-10-15T10:43:15.000Z" + "SpotPrice": "0.105900", + "Timestamp": "2024-05-16T08:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.256100", - "Timestamp": "2019-10-15T10:43:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-16T08:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.256100", - "Timestamp": "2019-10-15T10:43:15.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.226100", - "Timestamp": "2019-10-15T10:43:15.000Z" + "SpotPrice": "0.874600", + "Timestamp": "2024-05-16T08:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.226100", - "Timestamp": "2019-10-15T10:43:15.000Z" + "SpotPrice": "0.869600", + "Timestamp": "2024-05-16T08:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.226100", - "Timestamp": "2019-10-15T10:43:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.744600", + "Timestamp": "2024-05-16T08:01:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.126100", - "Timestamp": "2019-10-15T10:43:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.561000", + "Timestamp": "2024-05-16T08:01:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.126100", - "Timestamp": "2019-10-15T10:43:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.556000", + "Timestamp": "2024-05-16T08:01:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.126100", - "Timestamp": "2019-10-15T10:43:15.000Z" + "SpotPrice": "4.431000", + "Timestamp": "2024-05-16T08:01:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t4g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.287700", - "Timestamp": "2019-10-15T10:40:46.000Z" + "SpotPrice": "0.270600", + "Timestamp": "2024-05-16T08:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.287700", - "Timestamp": "2019-10-15T10:40:46.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.265600", + "Timestamp": "2024-05-16T08:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.287700", - "Timestamp": "2019-10-15T10:40:46.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.140600", + "Timestamp": "2024-05-16T08:01:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.257700", - "Timestamp": "2019-10-15T10:40:46.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.459400", + "Timestamp": "2024-05-16T08:01:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i-flex.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.257700", - "Timestamp": "2019-10-15T10:40:46.000Z" + "SpotPrice": "0.454400", + "Timestamp": "2024-05-16T08:01:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.257700", - "Timestamp": "2019-10-15T10:40:46.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.329400", + "Timestamp": "2024-05-16T08:01:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.157700", - "Timestamp": "2019-10-15T10:40:46.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.785000", + "Timestamp": "2024-05-16T08:01:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.157700", - "Timestamp": "2019-10-15T10:40:46.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.780000", + "Timestamp": "2024-05-16T08:01:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.157700", - "Timestamp": "2019-10-15T10:40:46.000Z" + "SpotPrice": "2.655000", + "Timestamp": "2024-05-16T08:01:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.101700", - "Timestamp": "2019-10-15T10:40:46.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.559400", + "Timestamp": "2024-05-16T08:01:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.101700", - "Timestamp": "2019-10-15T10:40:46.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.416500", + "Timestamp": "2024-05-16T08:01:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.101700", - "Timestamp": "2019-10-15T10:40:46.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.529400", + "Timestamp": "2024-05-16T08:01:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t2.small", - "ProductDescription": "Windows", - "SpotPrice": "0.018000", - "Timestamp": "2019-10-15T10:13:54.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.386500", + "Timestamp": "2024-05-16T08:01:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.318400", - "Timestamp": "2019-10-15T09:47:52.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.429400", + "Timestamp": "2024-05-16T08:01:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.318400", - "Timestamp": "2019-10-15T09:47:52.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.286500", + "Timestamp": "2024-05-16T08:01:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3en.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "8.318400", - "Timestamp": "2019-10-15T09:47:52.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.177300", + "Timestamp": "2024-05-16T08:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.011600", - "Timestamp": "2019-10-15T09:44:38.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.173600", + "Timestamp": "2024-05-16T08:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.011600", - "Timestamp": "2019-10-15T09:44:38.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.117300", + "Timestamp": "2024-05-16T08:01:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3en.6xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.011600", - "Timestamp": "2019-10-15T09:44:38.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.405600", - "Timestamp": "2019-10-15T09:43:42.000Z" + "SpotPrice": "1.536000", + "Timestamp": "2024-05-16T08:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.405600", - "Timestamp": "2019-10-15T09:43:42.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.375600", - "Timestamp": "2019-10-15T09:43:42.000Z" + "SpotPrice": "2.966500", + "Timestamp": "2024-05-16T08:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.375600", - "Timestamp": "2019-10-15T09:43:42.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.275600", - "Timestamp": "2019-10-15T09:43:42.000Z" + "SpotPrice": "2.961500", + "Timestamp": "2024-05-16T08:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.275600", - "Timestamp": "2019-10-15T09:43:42.000Z" + "SpotPrice": "2.836500", + "Timestamp": "2024-05-16T08:01:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.370400", - "Timestamp": "2019-10-15T09:43:34.000Z" + "SpotPrice": "0.157000", + "Timestamp": "2024-05-16T08:01:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.370400", - "Timestamp": "2019-10-15T09:43:34.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.153300", + "Timestamp": "2024-05-16T08:01:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.370400", - "Timestamp": "2019-10-15T09:43:34.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097000", + "Timestamp": "2024-05-16T08:01:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.340400", - "Timestamp": "2019-10-15T09:43:34.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.157100", + "Timestamp": "2024-05-16T08:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c3.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.340400", - "Timestamp": "2019-10-15T09:43:34.000Z" + "SpotPrice": "0.197100", + "Timestamp": "2024-05-16T08:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.340400", - "Timestamp": "2019-10-15T09:43:34.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.097100", + "Timestamp": "2024-05-16T08:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.240400", - "Timestamp": "2019-10-15T09:43:34.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.947600", + "Timestamp": "2024-05-16T08:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.240400", - "Timestamp": "2019-10-15T09:43:34.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.917600", + "Timestamp": "2024-05-16T08:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.9xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.240400", - "Timestamp": "2019-10-15T09:43:34.000Z" + "SpotPrice": "0.817600", + "Timestamp": "2024-05-16T08:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.552400", - "Timestamp": "2019-10-15T09:43:31.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.342700", + "Timestamp": "2024-05-16T08:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.552400", - "Timestamp": "2019-10-15T09:43:31.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.337700", + "Timestamp": "2024-05-16T08:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.552400", - "Timestamp": "2019-10-15T09:43:31.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212700", + "Timestamp": "2024-05-16T08:01:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r3.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.147400", - "Timestamp": "2019-10-15T09:42:05.000Z" + "SpotPrice": "1.736000", + "Timestamp": "2024-05-16T08:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r3.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.147400", - "Timestamp": "2019-10-15T09:42:05.000Z" + "SpotPrice": "1.890400", + "Timestamp": "2024-05-16T08:01:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r3.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.metal", "ProductDescription": "Windows", - "SpotPrice": "0.147400", - "Timestamp": "2019-10-15T09:42:05.000Z" + "SpotPrice": "7.003500", + "Timestamp": "2024-05-16T08:01:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r3.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094400", - "Timestamp": "2019-10-15T09:41:29.000Z" + "SpotPrice": "0.881400", + "Timestamp": "2024-05-16T08:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r3.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134400", - "Timestamp": "2019-10-15T09:41:29.000Z" + "SpotPrice": "0.851400", + "Timestamp": "2024-05-16T08:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r3.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034400", - "Timestamp": "2019-10-15T09:41:29.000Z" + "SpotPrice": "0.751400", + "Timestamp": "2024-05-16T08:01:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r3.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094400", - "Timestamp": "2019-10-15T09:34:29.000Z" + "SpotPrice": "3.450400", + "Timestamp": "2024-05-16T08:01:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r3.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134400", - "Timestamp": "2019-10-15T09:34:29.000Z" + "SpotPrice": "3.445400", + "Timestamp": "2024-05-16T08:01:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r3.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034400", - "Timestamp": "2019-10-15T09:34:29.000Z" + "SpotPrice": "3.320400", + "Timestamp": "2024-05-16T08:01:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.133100", - "Timestamp": "2019-10-15T09:15:38.000Z" + "SpotPrice": "0.618500", + "Timestamp": "2024-05-16T08:01:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5a.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.173100", - "Timestamp": "2019-10-15T09:15:38.000Z" + "SpotPrice": "0.613500", + "Timestamp": "2024-05-16T08:01:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.073100", - "Timestamp": "2019-10-15T09:15:38.000Z" + "SpotPrice": "0.488500", + "Timestamp": "2024-05-16T08:01:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.406200", - "Timestamp": "2019-10-15T09:11:38.000Z" + "SpotPrice": "0.134700", + "Timestamp": "2024-05-16T08:01:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.406200", - "Timestamp": "2019-10-15T09:11:38.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174700", + "Timestamp": "2024-05-16T08:01:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "g3s.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.446200", - "Timestamp": "2019-10-15T09:11:38.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.074700", + "Timestamp": "2024-05-16T08:01:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "g3s.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.446200", - "Timestamp": "2019-10-15T09:11:38.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.056500", + "Timestamp": "2024-05-16T08:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.346200", - "Timestamp": "2019-10-15T09:11:38.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.051500", + "Timestamp": "2024-05-16T08:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.346200", - "Timestamp": "2019-10-15T09:11:38.000Z" + "SpotPrice": "1.926500", + "Timestamp": "2024-05-16T08:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.351000", - "Timestamp": "2019-10-15T08:43:57.000Z" + "SpotPrice": "5.165200", + "Timestamp": "2024-05-16T08:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.351000", - "Timestamp": "2019-10-15T08:43:57.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.160200", + "Timestamp": "2024-05-16T08:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.351000", - "Timestamp": "2019-10-15T08:43:57.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.035200", + "Timestamp": "2024-05-16T08:01:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.321000", - "Timestamp": "2019-10-15T08:43:57.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.457100", + "Timestamp": "2024-05-16T08:01:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.321000", - "Timestamp": "2019-10-15T08:43:57.000Z" + "SpotPrice": "1.452100", + "Timestamp": "2024-05-16T08:01:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.321000", - "Timestamp": "2019-10-15T08:43:57.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.327100", + "Timestamp": "2024-05-16T08:01:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.221000", - "Timestamp": "2019-10-15T08:43:57.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.612600", + "Timestamp": "2024-05-16T08:01:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.221000", - "Timestamp": "2019-10-15T08:43:57.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.607600", + "Timestamp": "2024-05-16T08:01:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.221000", - "Timestamp": "2019-10-15T08:43:57.000Z" + "SpotPrice": "3.482600", + "Timestamp": "2024-05-16T08:01:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.825000", - "Timestamp": "2019-10-15T08:43:49.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.941000", + "Timestamp": "2024-05-16T08:01:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.825000", - "Timestamp": "2019-10-15T08:43:49.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.936000", + "Timestamp": "2024-05-16T08:01:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.825000", - "Timestamp": "2019-10-15T08:43:49.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.811000", + "Timestamp": "2024-05-16T08:01:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "a1.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.201400", - "Timestamp": "2019-10-15T08:43:22.000Z" + "SpotPrice": "0.346100", + "Timestamp": "2024-05-16T08:01:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "a1.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.201400", - "Timestamp": "2019-10-15T08:43:22.000Z" + "SpotPrice": "0.352800", + "Timestamp": "2024-05-16T08:01:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "a1.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.171400", - "Timestamp": "2019-10-15T08:43:22.000Z" + "SpotPrice": "0.341100", + "Timestamp": "2024-05-16T08:01:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "a1.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.171400", - "Timestamp": "2019-10-15T08:43:22.000Z" + "SpotPrice": "0.347800", + "Timestamp": "2024-05-16T08:01:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "a1.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.071400", - "Timestamp": "2019-10-15T08:43:22.000Z" + "SpotPrice": "0.216100", + "Timestamp": "2024-05-16T08:01:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "a1.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.071400", - "Timestamp": "2019-10-15T08:43:22.000Z" + "SpotPrice": "0.222800", + "Timestamp": "2024-05-16T08:01:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.998300", - "Timestamp": "2019-10-15T08:43:15.000Z" + "SpotPrice": "0.076000", + "Timestamp": "2024-05-16T08:01:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.998300", - "Timestamp": "2019-10-15T08:43:15.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.072300", + "Timestamp": "2024-05-16T08:01:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.998300", - "Timestamp": "2019-10-15T08:43:15.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016000", + "Timestamp": "2024-05-16T08:01:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.968300", - "Timestamp": "2019-10-15T08:43:15.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.890500", + "Timestamp": "2024-05-16T08:01:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.968300", - "Timestamp": "2019-10-15T08:43:15.000Z" + "SpotPrice": "1.885500", + "Timestamp": "2024-05-16T08:01:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.968300", - "Timestamp": "2019-10-15T08:43:15.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.760500", + "Timestamp": "2024-05-16T08:01:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.868300", - "Timestamp": "2019-10-15T08:43:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T08:01:15.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.868300", - "Timestamp": "2019-10-15T08:43:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108400", + "Timestamp": "2024-05-16T08:01:15.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.868300", - "Timestamp": "2019-10-15T08:43:15.000Z" + "SpotPrice": "0.052100", + "Timestamp": "2024-05-16T08:01:15.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.070300", - "Timestamp": "2019-10-15T08:43:15.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.642800", + "Timestamp": "2024-05-16T08:01:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.070300", - "Timestamp": "2019-10-15T08:43:15.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.612800", + "Timestamp": "2024-05-16T08:01:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.070300", - "Timestamp": "2019-10-15T08:43:15.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.512800", + "Timestamp": "2024-05-16T08:01:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.638200", - "Timestamp": "2019-10-15T08:41:52.000Z" + "SpotPrice": "3.589700", + "Timestamp": "2024-05-16T08:01:13.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3en.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.400200", - "Timestamp": "2019-10-15T08:41:24.000Z" + "SpotPrice": "0.274000", + "Timestamp": "2024-05-16T08:01:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3en.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.370200", - "Timestamp": "2019-10-15T08:41:24.000Z" + "SpotPrice": "0.269000", + "Timestamp": "2024-05-16T08:01:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "p3.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3en.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.270200", - "Timestamp": "2019-10-15T08:41:24.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.252900", - "Timestamp": "2019-10-15T08:40:47.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.252900", - "Timestamp": "2019-10-15T08:40:47.000Z" + "SpotPrice": "0.144000", + "Timestamp": "2024-05-16T08:01:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x2iedn.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.252900", - "Timestamp": "2019-10-15T08:40:47.000Z" + "SpotPrice": "1.837400", + "Timestamp": "2024-05-16T08:01:12.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T08:40:47.000Z" + "SpotPrice": "0.199300", + "Timestamp": "2024-05-16T08:01:11.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.170800", - "Timestamp": "2019-10-15T08:40:47.000Z" + "SpotPrice": "0.195600", + "Timestamp": "2024-05-16T08:01:11.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.070800", - "Timestamp": "2019-10-15T08:40:47.000Z" + "SpotPrice": "0.139300", + "Timestamp": "2024-05-16T08:01:11.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.218000", - "Timestamp": "2019-10-15T07:45:13.000Z" + "SpotPrice": "0.161700", + "Timestamp": "2024-05-16T08:01:11.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.218000", - "Timestamp": "2019-10-15T07:45:13.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.157700", + "Timestamp": "2024-05-16T08:01:11.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.218000", - "Timestamp": "2019-10-15T07:45:13.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-16T08:01:11.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.188000", - "Timestamp": "2019-10-15T07:45:13.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.278400", + "Timestamp": "2024-05-16T08:01:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.9xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.188000", - "Timestamp": "2019-10-15T07:45:13.000Z" + "SpotPrice": "1.248400", + "Timestamp": "2024-05-16T08:01:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.188000", - "Timestamp": "2019-10-15T07:45:13.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.148400", + "Timestamp": "2024-05-16T08:01:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.088000", - "Timestamp": "2019-10-15T07:45:13.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.079100", + "Timestamp": "2024-05-16T08:01:03.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.088000", - "Timestamp": "2019-10-15T07:45:13.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119100", + "Timestamp": "2024-05-16T08:01:03.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t2.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.088000", - "Timestamp": "2019-10-15T07:45:13.000Z" + "SpotPrice": "0.019100", + "Timestamp": "2024-05-16T08:01:03.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.512700", - "Timestamp": "2019-10-15T07:44:46.000Z" + "SpotPrice": "5.514200", + "Timestamp": "2024-05-16T08:01:02.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.512700", - "Timestamp": "2019-10-15T07:44:46.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.514700", + "Timestamp": "2024-05-16T08:01:01.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.512700", - "Timestamp": "2019-10-15T07:44:46.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.509700", + "Timestamp": "2024-05-16T08:01:01.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.078400", - "Timestamp": "2019-10-15T07:43:59.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.384700", + "Timestamp": "2024-05-16T08:01:01.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.large", "ProductDescription": "Windows", - "SpotPrice": "2.078400", - "Timestamp": "2019-10-15T07:43:59.000Z" + "SpotPrice": "0.114800", + "Timestamp": "2024-05-16T08:01:01.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.078400", - "Timestamp": "2019-10-15T07:43:59.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.291900", + "Timestamp": "2024-05-16T08:01:00.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.766000", - "Timestamp": "2019-10-15T07:43:56.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.286900", + "Timestamp": "2024-05-16T08:01:00.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.766000", - "Timestamp": "2019-10-15T07:43:56.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.161900", + "Timestamp": "2024-05-16T08:01:00.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.766000", - "Timestamp": "2019-10-15T07:43:56.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.281600", - "Timestamp": "2019-10-15T07:43:50.000Z" + "SpotPrice": "1.851200", + "Timestamp": "2024-05-16T07:47:41.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.281600", - "Timestamp": "2019-10-15T07:43:50.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.251600", - "Timestamp": "2019-10-15T07:43:50.000Z" + "SpotPrice": "0.342800", + "Timestamp": "2024-05-16T07:47:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.251600", - "Timestamp": "2019-10-15T07:43:50.000Z" + "SpotPrice": "0.337800", + "Timestamp": "2024-05-16T07:47:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.151600", - "Timestamp": "2019-10-15T07:43:50.000Z" + "SpotPrice": "0.212800", + "Timestamp": "2024-05-16T07:47:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.151600", - "Timestamp": "2019-10-15T07:43:50.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.226200", + "Timestamp": "2024-05-16T07:47:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.736400", - "Timestamp": "2019-10-15T07:43:47.000Z" + "SpotPrice": "0.546200", + "Timestamp": "2024-05-16T07:47:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.736400", - "Timestamp": "2019-10-15T07:43:47.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.541200", + "Timestamp": "2024-05-16T07:47:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.736400", - "Timestamp": "2019-10-15T07:43:47.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7g.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.416200", + "Timestamp": "2024-05-16T07:47:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.706400", - "Timestamp": "2019-10-15T07:43:47.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.607100", + "Timestamp": "2024-05-16T07:47:04.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.706400", - "Timestamp": "2019-10-15T07:43:47.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.326600", + "Timestamp": "2024-05-16T07:46:53.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6g.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.706400", - "Timestamp": "2019-10-15T07:43:47.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.606400", - "Timestamp": "2019-10-15T07:43:47.000Z" + "SpotPrice": "0.321600", + "Timestamp": "2024-05-16T07:46:53.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.606400", - "Timestamp": "2019-10-15T07:43:47.000Z" + "SpotPrice": "0.196600", + "Timestamp": "2024-05-16T07:46:53.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.606400", - "Timestamp": "2019-10-15T07:43:47.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "11.274900", + "Timestamp": "2024-05-16T07:46:53.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.156800", - "Timestamp": "2019-10-15T07:43:30.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "11.244900", + "Timestamp": "2024-05-16T07:46:53.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.156800", - "Timestamp": "2019-10-15T07:43:30.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "11.144900", + "Timestamp": "2024-05-16T07:46:53.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.156800", - "Timestamp": "2019-10-15T07:43:30.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.342800", - "Timestamp": "2019-10-15T07:43:30.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.342800", - "Timestamp": "2019-10-15T07:43:30.000Z" + "SpotPrice": "0.211500", + "Timestamp": "2024-05-16T07:46:51.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.342800", - "Timestamp": "2019-10-15T07:43:30.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.312800", - "Timestamp": "2019-10-15T07:43:30.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.312800", - "Timestamp": "2019-10-15T07:43:30.000Z" + "SpotPrice": "0.556600", + "Timestamp": "2024-05-16T07:46:49.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6g.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.312800", - "Timestamp": "2019-10-15T07:43:30.000Z" + "SpotPrice": "0.551600", + "Timestamp": "2024-05-16T07:46:49.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.212800", - "Timestamp": "2019-10-15T07:43:30.000Z" + "SpotPrice": "0.426600", + "Timestamp": "2024-05-16T07:46:49.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.212800", - "Timestamp": "2019-10-15T07:43:30.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.234700", + "Timestamp": "2024-05-16T07:46:46.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.212800", - "Timestamp": "2019-10-15T07:43:30.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.229700", + "Timestamp": "2024-05-16T07:46:46.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.519600", - "Timestamp": "2019-10-15T07:43:23.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104700", + "Timestamp": "2024-05-16T07:46:46.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.519600", - "Timestamp": "2019-10-15T07:43:23.000Z" + "SpotPrice": "3.433600", + "Timestamp": "2024-05-16T07:46:41.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.519600", - "Timestamp": "2019-10-15T07:43:23.000Z" + "SpotPrice": "10.153900", + "Timestamp": "2024-05-16T07:46:40.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.074300", - "Timestamp": "2019-10-15T07:43:17.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3a.medium", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.18xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.074300", - "Timestamp": "2019-10-15T07:43:17.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3a.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.114300", - "Timestamp": "2019-10-15T07:43:17.000Z" + "SpotPrice": "1.993900", + "Timestamp": "2024-05-16T07:46:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3a.medium", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.18xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.114300", - "Timestamp": "2019-10-15T07:43:17.000Z" + "SpotPrice": "1.963900", + "Timestamp": "2024-05-16T07:46:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3a.medium", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.18xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.014300", - "Timestamp": "2019-10-15T07:43:17.000Z" + "SpotPrice": "1.863900", + "Timestamp": "2024-05-16T07:46:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.014300", - "Timestamp": "2019-10-15T07:43:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.774200", + "Timestamp": "2024-05-16T07:46:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.059100", - "Timestamp": "2019-10-15T07:43:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.769200", + "Timestamp": "2024-05-16T07:46:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.059100", - "Timestamp": "2019-10-15T07:43:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.644200", + "Timestamp": "2024-05-16T07:46:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.059100", - "Timestamp": "2019-10-15T07:43:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.593500", + "Timestamp": "2024-05-16T07:46:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091500", - "Timestamp": "2019-10-15T07:43:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.588500", + "Timestamp": "2024-05-16T07:46:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091500", - "Timestamp": "2019-10-15T07:43:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.463500", + "Timestamp": "2024-05-16T07:46:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091500", - "Timestamp": "2019-10-15T07:43:15.000Z" + "SpotPrice": "0.189800", + "Timestamp": "2024-05-16T07:46:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t3.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.131500", - "Timestamp": "2019-10-15T07:43:15.000Z" + "SpotPrice": "0.185800", + "Timestamp": "2024-05-16T07:46:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.131500", - "Timestamp": "2019-10-15T07:43:15.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.129800", + "Timestamp": "2024-05-16T07:46:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.131500", - "Timestamp": "2019-10-15T07:43:15.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.588000", + "Timestamp": "2024-05-16T07:46:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031500", - "Timestamp": "2019-10-15T07:43:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.999200", + "Timestamp": "2024-05-16T07:46:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031500", - "Timestamp": "2019-10-15T07:43:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.994200", + "Timestamp": "2024-05-16T07:46:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031500", - "Timestamp": "2019-10-15T07:43:15.000Z" + "SpotPrice": "2.869200", + "Timestamp": "2024-05-16T07:46:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.032700", - "Timestamp": "2019-10-15T07:43:10.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.874400", + "Timestamp": "2024-05-16T07:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.032700", - "Timestamp": "2019-10-15T07:43:10.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.869400", + "Timestamp": "2024-05-16T07:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135800", - "Timestamp": "2019-10-15T07:43:00.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.744400", + "Timestamp": "2024-05-16T07:46:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135800", - "Timestamp": "2019-10-15T07:43:00.000Z" + "SpotPrice": "0.096200", + "Timestamp": "2024-05-16T07:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135800", - "Timestamp": "2019-10-15T07:43:00.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092500", + "Timestamp": "2024-05-16T07:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175800", - "Timestamp": "2019-10-15T07:43:00.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.036200", + "Timestamp": "2024-05-16T07:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175800", - "Timestamp": "2019-10-15T07:43:00.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.545800", + "Timestamp": "2024-05-16T07:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.18xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175800", - "Timestamp": "2019-10-15T07:43:00.000Z" + "SpotPrice": "2.515800", + "Timestamp": "2024-05-16T07:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.18xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075800", - "Timestamp": "2019-10-15T07:43:00.000Z" + "SpotPrice": "2.415800", + "Timestamp": "2024-05-16T07:46:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075800", - "Timestamp": "2019-10-15T07:43:00.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.324200", + "Timestamp": "2024-05-16T07:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075800", - "Timestamp": "2019-10-15T07:43:00.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319200", + "Timestamp": "2024-05-16T07:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.259800", - "Timestamp": "2019-10-15T07:42:59.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.194200", + "Timestamp": "2024-05-16T07:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.259800", - "Timestamp": "2019-10-15T07:42:59.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.175000", + "Timestamp": "2024-05-16T07:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.259800", - "Timestamp": "2019-10-15T07:42:59.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.171300", + "Timestamp": "2024-05-16T07:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.256400", - "Timestamp": "2019-10-15T07:42:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115000", + "Timestamp": "2024-05-16T07:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.256400", - "Timestamp": "2019-10-15T07:42:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.011300", + "Timestamp": "2024-05-16T07:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.256400", - "Timestamp": "2019-10-15T07:42:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.006300", + "Timestamp": "2024-05-16T07:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132400", - "Timestamp": "2019-10-15T07:41:56.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.881300", + "Timestamp": "2024-05-16T07:46:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r4.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132400", - "Timestamp": "2019-10-15T07:41:56.000Z" + "SpotPrice": "1.026000", + "Timestamp": "2024-05-16T07:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132400", - "Timestamp": "2019-10-15T07:41:56.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.996000", + "Timestamp": "2024-05-16T07:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172400", - "Timestamp": "2019-10-15T07:41:56.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r4.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.896000", + "Timestamp": "2024-05-16T07:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172400", - "Timestamp": "2019-10-15T07:41:56.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.594300", + "Timestamp": "2024-05-16T07:46:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172400", - "Timestamp": "2019-10-15T07:41:56.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.549100", + "Timestamp": "2024-05-16T07:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072400", - "Timestamp": "2019-10-15T07:41:56.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.544100", + "Timestamp": "2024-05-16T07:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072400", - "Timestamp": "2019-10-15T07:41:56.000Z" + "SpotPrice": "2.419100", + "Timestamp": "2024-05-16T07:46:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072400", - "Timestamp": "2019-10-15T07:41:56.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.090100", + "Timestamp": "2024-05-16T07:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.456400", - "Timestamp": "2019-10-15T07:41:14.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086400", + "Timestamp": "2024-05-16T07:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.456400", - "Timestamp": "2019-10-15T07:41:14.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.030100", + "Timestamp": "2024-05-16T07:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.metal", "ProductDescription": "Windows", - "SpotPrice": "0.456400", - "Timestamp": "2019-10-15T07:41:14.000Z" + "SpotPrice": "7.005000", + "Timestamp": "2024-05-16T07:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.365400", - "Timestamp": "2019-10-15T07:40:55.000Z" + "SpotPrice": "0.342100", + "Timestamp": "2024-05-16T07:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.365400", - "Timestamp": "2019-10-15T07:40:55.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.337100", + "Timestamp": "2024-05-16T07:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.365400", - "Timestamp": "2019-10-15T07:40:55.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212100", + "Timestamp": "2024-05-16T07:46:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.405400", - "Timestamp": "2019-10-15T07:40:55.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.164200", + "Timestamp": "2024-05-16T07:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.405400", - "Timestamp": "2019-10-15T07:40:55.000Z" + "SpotPrice": "0.160200", + "Timestamp": "2024-05-16T07:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.405400", - "Timestamp": "2019-10-15T07:40:55.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T07:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.305400", - "Timestamp": "2019-10-15T07:40:55.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.413400", + "Timestamp": "2024-05-16T07:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.305400", - "Timestamp": "2019-10-15T07:40:55.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.408400", + "Timestamp": "2024-05-16T07:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.305400", - "Timestamp": "2019-10-15T07:40:55.000Z" + "SpotPrice": "0.283400", + "Timestamp": "2024-05-16T07:46:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "g3s.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t2.medium", "ProductDescription": "Windows", - "SpotPrice": "0.530200", - "Timestamp": "2019-10-15T06:47:21.000Z" + "SpotPrice": "0.025400", + "Timestamp": "2024-05-16T07:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "g3s.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.530200", - "Timestamp": "2019-10-15T06:47:21.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.169700", + "Timestamp": "2024-05-16T07:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3en.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.032400", - "Timestamp": "2019-10-15T06:44:54.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.165700", + "Timestamp": "2024-05-16T07:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3en.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.032400", - "Timestamp": "2019-10-15T06:44:54.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T07:46:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3en.metal", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5n.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.032400", - "Timestamp": "2019-10-15T06:44:54.000Z" + "SpotPrice": "0.388200", + "Timestamp": "2024-05-16T07:46:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3en.metal", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5n.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "4.002400", - "Timestamp": "2019-10-15T06:44:54.000Z" + "SpotPrice": "0.383200", + "Timestamp": "2024-05-16T07:46:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3en.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "4.002400", - "Timestamp": "2019-10-15T06:44:54.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.258200", + "Timestamp": "2024-05-16T07:46:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3en.metal", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112300", + "Timestamp": "2024-05-16T07:46:23.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "4.002400", - "Timestamp": "2019-10-15T06:44:54.000Z" + "SpotPrice": "0.108600", + "Timestamp": "2024-05-16T07:46:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3en.metal", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.902400", - "Timestamp": "2019-10-15T06:44:54.000Z" + "SpotPrice": "0.052300", + "Timestamp": "2024-05-16T07:46:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3en.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.902400", - "Timestamp": "2019-10-15T06:44:54.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.297300", + "Timestamp": "2024-05-16T07:46:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3en.metal", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.292300", + "Timestamp": "2024-05-16T07:46:22.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.902400", - "Timestamp": "2019-10-15T06:44:54.000Z" + "SpotPrice": "1.167300", + "Timestamp": "2024-05-16T07:46:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "i3en.metal", - "ProductDescription": "Windows", - "SpotPrice": "8.318400", - "Timestamp": "2019-10-15T06:44:24.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088900", + "Timestamp": "2024-05-16T07:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "i3en.metal", - "ProductDescription": "Windows", - "SpotPrice": "8.318400", - "Timestamp": "2019-10-15T06:44:24.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.085200", + "Timestamp": "2024-05-16T07:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "i3en.metal", - "ProductDescription": "Windows", - "SpotPrice": "8.318400", - "Timestamp": "2019-10-15T06:44:24.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i-flex.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028900", + "Timestamp": "2024-05-16T07:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.276200", - "Timestamp": "2019-10-15T06:43:30.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.099000", + "Timestamp": "2024-05-16T07:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.276200", - "Timestamp": "2019-10-15T06:43:30.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.094000", + "Timestamp": "2024-05-16T07:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.276200", - "Timestamp": "2019-10-15T06:43:30.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.969000", + "Timestamp": "2024-05-16T07:46:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.750200", - "Timestamp": "2019-10-15T06:43:30.000Z" + "SpotPrice": "0.181500", + "Timestamp": "2024-05-16T07:46:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.750200", - "Timestamp": "2019-10-15T06:43:30.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177500", + "Timestamp": "2024-05-16T07:46:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121500", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.750200", - "Timestamp": "2019-10-15T06:43:30.000Z" + "SpotPrice": "3.462200", + "Timestamp": "2024-05-16T07:46:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.720200", - "Timestamp": "2019-10-15T06:43:30.000Z" + "SpotPrice": "3.457200", + "Timestamp": "2024-05-16T07:46:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.720200", - "Timestamp": "2019-10-15T06:43:30.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.332200", + "Timestamp": "2024-05-16T07:46:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6g.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.935400", + "Timestamp": "2024-05-16T07:46:20.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6g.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.720200", - "Timestamp": "2019-10-15T06:43:30.000Z" + "SpotPrice": "0.930400", + "Timestamp": "2024-05-16T07:46:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.620200", - "Timestamp": "2019-10-15T06:43:30.000Z" + "SpotPrice": "0.805400", + "Timestamp": "2024-05-16T07:46:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.620200", - "Timestamp": "2019-10-15T06:43:30.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095200", + "Timestamp": "2024-05-16T07:46:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.620200", - "Timestamp": "2019-10-15T06:43:30.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.091200", + "Timestamp": "2024-05-16T07:46:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132400", - "Timestamp": "2019-10-15T06:40:45.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035200", + "Timestamp": "2024-05-16T07:46:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.132400", - "Timestamp": "2019-10-15T06:40:45.000Z" + "SpotPrice": "0.461800", + "Timestamp": "2024-05-16T07:46:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172400", - "Timestamp": "2019-10-15T06:40:45.000Z" + "SpotPrice": "0.456800", + "Timestamp": "2024-05-16T07:46:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.172400", - "Timestamp": "2019-10-15T06:40:45.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.331800", + "Timestamp": "2024-05-16T07:46:18.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072400", - "Timestamp": "2019-10-15T06:40:45.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126400", + "Timestamp": "2024-05-16T07:46:17.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122700", + "Timestamp": "2024-05-16T07:46:17.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t4g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.072400", - "Timestamp": "2019-10-15T06:40:45.000Z" + "SpotPrice": "0.066400", + "Timestamp": "2024-05-16T07:46:17.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g4dn.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.256400", - "Timestamp": "2019-10-15T06:40:45.000Z" + "SpotPrice": "1.841800", + "Timestamp": "2024-05-16T07:46:13.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c1.medium", "ProductDescription": "Windows", - "SpotPrice": "0.256400", - "Timestamp": "2019-10-15T06:40:45.000Z" + "SpotPrice": "0.226100", + "Timestamp": "2024-05-16T07:46:11.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.093200", + "Timestamp": "2024-05-16T07:46:11.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.133200", + "Timestamp": "2024-05-16T07:46:11.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.033200", + "Timestamp": "2024-05-16T07:46:11.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.256400", - "Timestamp": "2019-10-15T06:40:45.000Z" + "SpotPrice": "0.841200", + "Timestamp": "2024-05-16T07:46:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g4dn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.284400", - "Timestamp": "2019-10-15T06:12:02.000Z" + "SpotPrice": "3.049700", + "Timestamp": "2024-05-16T07:46:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g4dn.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.254400", - "Timestamp": "2019-10-15T06:12:02.000Z" + "SpotPrice": "3.044700", + "Timestamp": "2024-05-16T07:46:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g4dn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.154400", - "Timestamp": "2019-10-15T06:12:02.000Z" + "SpotPrice": "2.919700", + "Timestamp": "2024-05-16T07:46:06.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1e.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.519600", - "Timestamp": "2019-10-15T05:46:41.000Z" + "SpotPrice": "4.949200", + "Timestamp": "2024-05-16T07:46:01.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c1.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.519600", - "Timestamp": "2019-10-15T05:46:41.000Z" + "SpotPrice": "0.420400", + "Timestamp": "2024-05-16T07:45:55.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.519600", - "Timestamp": "2019-10-15T05:46:41.000Z" + "SpotPrice": "0.216100", + "Timestamp": "2024-05-16T07:32:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.281600", - "Timestamp": "2019-10-15T05:46:03.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.448400", + "Timestamp": "2024-05-16T07:32:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.281600", - "Timestamp": "2019-10-15T05:46:03.000Z" + "SpotPrice": "0.087400", + "Timestamp": "2024-05-16T07:32:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.281600", - "Timestamp": "2019-10-15T05:46:03.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.083400", + "Timestamp": "2024-05-16T07:32:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.251600", - "Timestamp": "2019-10-15T05:46:03.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.027400", + "Timestamp": "2024-05-16T07:32:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.251600", - "Timestamp": "2019-10-15T05:46:03.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.598600", + "Timestamp": "2024-05-16T07:31:57.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5a.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.251600", - "Timestamp": "2019-10-15T05:46:03.000Z" + "SpotPrice": "0.593600", + "Timestamp": "2024-05-16T07:31:57.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.151600", - "Timestamp": "2019-10-15T05:46:03.000Z" + "SpotPrice": "0.468600", + "Timestamp": "2024-05-16T07:31:57.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.151600", - "Timestamp": "2019-10-15T05:46:03.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "14.160200", + "Timestamp": "2024-05-16T07:31:53.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.151600", - "Timestamp": "2019-10-15T05:46:03.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.325300", + "Timestamp": "2024-05-16T07:31:46.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.319600", - "Timestamp": "2019-10-15T05:44:26.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.320300", + "Timestamp": "2024-05-16T07:31:46.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.319600", - "Timestamp": "2019-10-15T05:44:26.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.195300", + "Timestamp": "2024-05-16T07:31:46.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.319600", - "Timestamp": "2019-10-15T05:44:26.000Z" + "SpotPrice": "1.660900", + "Timestamp": "2024-05-16T07:31:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.195600", - "Timestamp": "2019-10-15T05:44:26.000Z" + "SpotPrice": "0.125600", + "Timestamp": "2024-05-16T07:31:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.195600", - "Timestamp": "2019-10-15T05:44:26.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121600", + "Timestamp": "2024-05-16T07:31:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.195600", - "Timestamp": "2019-10-15T05:44:26.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.065600", + "Timestamp": "2024-05-16T07:31:39.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "z1d.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.235600", - "Timestamp": "2019-10-15T05:44:26.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076800", + "Timestamp": "2024-05-16T07:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.235600", - "Timestamp": "2019-10-15T05:44:26.000Z" + "SpotPrice": "0.073100", + "Timestamp": "2024-05-16T07:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "z1d.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.235600", - "Timestamp": "2019-10-15T05:44:26.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.016800", + "Timestamp": "2024-05-16T07:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T05:44:26.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.078600", + "Timestamp": "2024-05-16T07:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "z1d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T05:44:26.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.073600", + "Timestamp": "2024-05-16T07:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "z1d.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.135600", - "Timestamp": "2019-10-15T05:44:26.000Z" + "SpotPrice": "0.948600", + "Timestamp": "2024-05-16T07:31:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5n.18xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.949200", - "Timestamp": "2019-10-15T05:43:42.000Z" + "SpotPrice": "0.727600", + "Timestamp": "2024-05-16T07:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.949200", - "Timestamp": "2019-10-15T05:43:42.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.722600", + "Timestamp": "2024-05-16T07:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.949200", - "Timestamp": "2019-10-15T05:43:42.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.597600", + "Timestamp": "2024-05-16T07:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.919200", - "Timestamp": "2019-10-15T05:43:42.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215800", + "Timestamp": "2024-05-16T07:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.919200", - "Timestamp": "2019-10-15T05:43:42.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.234700", + "Timestamp": "2024-05-16T07:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.919200", - "Timestamp": "2019-10-15T05:43:42.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.819200", - "Timestamp": "2019-10-15T05:43:42.000Z" + "SpotPrice": "1.229700", + "Timestamp": "2024-05-16T07:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.819200", - "Timestamp": "2019-10-15T05:43:42.000Z" + "SpotPrice": "1.104700", + "Timestamp": "2024-05-16T07:31:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.819200", - "Timestamp": "2019-10-15T05:43:42.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.470200", + "Timestamp": "2024-05-16T07:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.235200", - "Timestamp": "2019-10-15T05:43:25.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.465200", + "Timestamp": "2024-05-16T07:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.235200", - "Timestamp": "2019-10-15T05:43:25.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.340200", + "Timestamp": "2024-05-16T07:31:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.235200", - "Timestamp": "2019-10-15T05:43:25.000Z" + "SpotPrice": "0.423400", + "Timestamp": "2024-05-16T07:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.039600", - "Timestamp": "2019-10-15T04:56:21.000Z" + "SpotPrice": "0.993100", + "Timestamp": "2024-05-16T07:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.009600", - "Timestamp": "2019-10-15T04:56:21.000Z" + "SpotPrice": "0.988100", + "Timestamp": "2024-05-16T07:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.909600", - "Timestamp": "2019-10-15T04:56:21.000Z" + "SpotPrice": "0.863100", + "Timestamp": "2024-05-16T07:31:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.248300", - "Timestamp": "2019-10-15T04:47:49.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.768500", + "Timestamp": "2024-05-16T07:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.248300", - "Timestamp": "2019-10-15T04:47:49.000Z" + "SpotPrice": "0.084900", + "Timestamp": "2024-05-16T07:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.218300", - "Timestamp": "2019-10-15T04:47:49.000Z" + "SpotPrice": "0.124900", + "Timestamp": "2024-05-16T07:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.218300", - "Timestamp": "2019-10-15T04:47:49.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.024900", + "Timestamp": "2024-05-16T07:31:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.118300", - "Timestamp": "2019-10-15T04:47:49.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.416400", + "Timestamp": "2024-05-16T07:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.411400", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.118300", - "Timestamp": "2019-10-15T04:47:49.000Z" + "SpotPrice": "1.286400", + "Timestamp": "2024-05-16T07:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.418300", - "Timestamp": "2019-10-15T04:47:34.000Z" + "SpotPrice": "0.243100", + "Timestamp": "2024-05-16T07:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t2.medium", "ProductDescription": "Windows", - "SpotPrice": "0.418300", - "Timestamp": "2019-10-15T04:47:34.000Z" + "SpotPrice": "0.025900", + "Timestamp": "2024-05-16T07:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.042000", - "Timestamp": "2019-10-15T04:43:49.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114800", + "Timestamp": "2024-05-16T07:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.042000", - "Timestamp": "2019-10-15T04:43:49.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110800", + "Timestamp": "2024-05-16T07:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.042000", - "Timestamp": "2019-10-15T04:43:49.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.054800", + "Timestamp": "2024-05-16T07:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.405000", - "Timestamp": "2019-10-15T04:43:17.000Z" + "SpotPrice": "1.221900", + "Timestamp": "2024-05-16T07:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.405000", - "Timestamp": "2019-10-15T04:43:17.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.216900", + "Timestamp": "2024-05-16T07:31:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.091900", + "Timestamp": "2024-05-16T07:31:31.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.405000", - "Timestamp": "2019-10-15T04:43:17.000Z" + "SpotPrice": "0.320200", + "Timestamp": "2024-05-16T07:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r3.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.375000", - "Timestamp": "2019-10-15T04:43:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.270700", + "Timestamp": "2024-05-16T07:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.375000", - "Timestamp": "2019-10-15T04:43:17.000Z" + "SpotPrice": "0.315200", + "Timestamp": "2024-05-16T07:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3a.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.375000", - "Timestamp": "2019-10-15T04:43:17.000Z" + "SpotPrice": "0.265700", + "Timestamp": "2024-05-16T07:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.275000", - "Timestamp": "2019-10-15T04:43:17.000Z" + "SpotPrice": "0.190200", + "Timestamp": "2024-05-16T07:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.275000", - "Timestamp": "2019-10-15T04:43:17.000Z" + "SpotPrice": "0.140700", + "Timestamp": "2024-05-16T07:31:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.275000", - "Timestamp": "2019-10-15T04:43:17.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.334600", + "Timestamp": "2024-05-16T07:31:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.196000", - "Timestamp": "2019-10-15T04:43:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.329600", + "Timestamp": "2024-05-16T07:31:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.196000", - "Timestamp": "2019-10-15T04:43:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.204600", + "Timestamp": "2024-05-16T07:31:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.196000", - "Timestamp": "2019-10-15T04:43:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.104200", + "Timestamp": "2024-05-16T07:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.630000", - "Timestamp": "2019-10-15T04:43:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-16T07:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.630000", - "Timestamp": "2019-10-15T04:43:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.044200", + "Timestamp": "2024-05-16T07:31:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.630000", - "Timestamp": "2019-10-15T04:43:15.000Z" + "SpotPrice": "0.166700", + "Timestamp": "2024-05-16T07:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.600000", - "Timestamp": "2019-10-15T04:43:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.141100", + "Timestamp": "2024-05-16T07:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.600000", - "Timestamp": "2019-10-15T04:43:15.000Z" + "SpotPrice": "0.163000", + "Timestamp": "2024-05-16T07:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.600000", - "Timestamp": "2019-10-15T04:43:15.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.500000", - "Timestamp": "2019-10-15T04:43:15.000Z" + "SpotPrice": "0.137400", + "Timestamp": "2024-05-16T07:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.500000", - "Timestamp": "2019-10-15T04:43:15.000Z" + "SpotPrice": "0.106700", + "Timestamp": "2024-05-16T07:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.500000", - "Timestamp": "2019-10-15T04:43:15.000Z" + "SpotPrice": "0.081100", + "Timestamp": "2024-05-16T07:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.932300", - "Timestamp": "2019-10-15T04:43:15.000Z" + "SpotPrice": "5.882000", + "Timestamp": "2024-05-16T07:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.932300", - "Timestamp": "2019-10-15T04:43:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.877000", + "Timestamp": "2024-05-16T07:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "x1.32xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "5.902300", - "Timestamp": "2019-10-15T04:43:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.752000", + "Timestamp": "2024-05-16T07:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1.32xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "5.902300", - "Timestamp": "2019-10-15T04:43:15.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.350000", + "Timestamp": "2024-05-16T07:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.802300", - "Timestamp": "2019-10-15T04:43:15.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.345000", + "Timestamp": "2024-05-16T07:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.802300", - "Timestamp": "2019-10-15T04:43:15.000Z" + "SpotPrice": "0.220000", + "Timestamp": "2024-05-16T07:31:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "11.690300", - "Timestamp": "2019-10-15T04:43:15.000Z" + "SpotPrice": "0.220300", + "Timestamp": "2024-05-16T07:31:23.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows", - "SpotPrice": "11.690300", - "Timestamp": "2019-10-15T04:43:15.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.109800", + "Timestamp": "2024-05-16T07:31:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.405600", - "Timestamp": "2019-10-15T04:40:46.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106100", + "Timestamp": "2024-05-16T07:31:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.405600", - "Timestamp": "2019-10-15T04:40:46.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049800", + "Timestamp": "2024-05-16T07:31:22.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.405600", - "Timestamp": "2019-10-15T04:40:46.000Z" + "SpotPrice": "1.446900", + "Timestamp": "2024-05-16T07:31:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.375600", - "Timestamp": "2019-10-15T04:40:46.000Z" + "SpotPrice": "1.441900", + "Timestamp": "2024-05-16T07:31:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.375600", - "Timestamp": "2019-10-15T04:40:46.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.316900", + "Timestamp": "2024-05-16T07:31:20.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173100", + "Timestamp": "2024-05-16T07:31:19.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.375600", - "Timestamp": "2019-10-15T04:40:46.000Z" + "SpotPrice": "0.169400", + "Timestamp": "2024-05-16T07:31:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.275600", - "Timestamp": "2019-10-15T04:40:46.000Z" + "SpotPrice": "0.113100", + "Timestamp": "2024-05-16T07:31:19.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.275600", - "Timestamp": "2019-10-15T04:40:46.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.282800", + "Timestamp": "2024-05-16T07:31:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.275600", - "Timestamp": "2019-10-15T04:40:46.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.277800", + "Timestamp": "2024-05-16T07:31:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.011600", - "Timestamp": "2019-10-15T04:40:46.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.152800", + "Timestamp": "2024-05-16T07:31:16.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.011600", - "Timestamp": "2019-10-15T04:40:46.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.133300", + "Timestamp": "2024-05-16T07:31:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.011600", - "Timestamp": "2019-10-15T04:40:46.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129600", + "Timestamp": "2024-05-16T07:31:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "x1e.32xlarge", - "ProductDescription": "Windows", - "SpotPrice": "17.494400", - "Timestamp": "2019-10-15T03:46:55.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.073300", + "Timestamp": "2024-05-16T07:31:14.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267800", - "Timestamp": "2019-10-15T03:46:30.000Z" + "SpotPrice": "0.086600", + "Timestamp": "2024-05-16T07:31:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.267800", - "Timestamp": "2019-10-15T03:46:30.000Z" + "SpotPrice": "0.083600", + "Timestamp": "2024-05-16T07:31:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6gd.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.237800", - "Timestamp": "2019-10-15T03:46:30.000Z" + "SpotPrice": "0.082900", + "Timestamp": "2024-05-16T07:31:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.237800", - "Timestamp": "2019-10-15T03:46:30.000Z" + "SpotPrice": "0.079900", + "Timestamp": "2024-05-16T07:31:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.137800", - "Timestamp": "2019-10-15T03:46:30.000Z" + "SpotPrice": "0.026600", + "Timestamp": "2024-05-16T07:31:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.137800", - "Timestamp": "2019-10-15T03:46:30.000Z" + "SpotPrice": "0.023600", + "Timestamp": "2024-05-16T07:31:07.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.505800", - "Timestamp": "2019-10-15T03:46:10.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.505800", - "Timestamp": "2019-10-15T03:46:10.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i-flex.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.505800", - "Timestamp": "2019-10-15T03:46:10.000Z" + "SpotPrice": "0.821300", + "Timestamp": "2024-05-16T07:31:00.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "x1e.32xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "11.736400", - "Timestamp": "2019-10-15T03:46:10.000Z" + "SpotPrice": "0.885200", + "Timestamp": "2024-05-16T07:17:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "x1e.32xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "11.706400", - "Timestamp": "2019-10-15T03:46:10.000Z" + "SpotPrice": "0.880200", + "Timestamp": "2024-05-16T07:17:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "x1e.32xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "11.606400", - "Timestamp": "2019-10-15T03:46:10.000Z" + "SpotPrice": "0.755200", + "Timestamp": "2024-05-16T07:17:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135800", - "Timestamp": "2019-10-15T03:43:00.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.640000", + "Timestamp": "2024-05-16T07:17:24.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135800", - "Timestamp": "2019-10-15T03:43:00.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.462800", + "Timestamp": "2024-05-16T07:17:04.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.135800", - "Timestamp": "2019-10-15T03:43:00.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.575200", + "Timestamp": "2024-05-16T07:16:59.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175800", - "Timestamp": "2019-10-15T03:43:00.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x1e.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "14.315300", + "Timestamp": "2024-05-16T07:16:53.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175800", - "Timestamp": "2019-10-15T03:43:00.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.368600", + "Timestamp": "2024-05-16T07:16:52.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.175800", - "Timestamp": "2019-10-15T03:43:00.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075800", - "Timestamp": "2019-10-15T03:43:00.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075800", - "Timestamp": "2019-10-15T03:43:00.000Z" + "SpotPrice": "0.363600", + "Timestamp": "2024-05-16T07:16:52.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.075800", - "Timestamp": "2019-10-15T03:43:00.000Z" + "SpotPrice": "0.238600", + "Timestamp": "2024-05-16T07:16:52.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5ad.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.259800", - "Timestamp": "2019-10-15T03:43:00.000Z" + "SpotPrice": "0.597400", + "Timestamp": "2024-05-16T07:16:47.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.metal", "ProductDescription": "Windows", - "SpotPrice": "0.259800", - "Timestamp": "2019-10-15T03:43:00.000Z" + "SpotPrice": "5.380900", + "Timestamp": "2024-05-16T07:16:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5ad.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i-flex.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.259800", - "Timestamp": "2019-10-15T03:43:00.000Z" + "SpotPrice": "1.642600", + "Timestamp": "2024-05-16T07:16:38.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125700", - "Timestamp": "2019-10-15T02:59:48.000Z" + "SpotPrice": "0.981800", + "Timestamp": "2024-05-16T07:16:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.165700", - "Timestamp": "2019-10-15T02:59:48.000Z" + "SpotPrice": "0.951800", + "Timestamp": "2024-05-16T07:16:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065700", - "Timestamp": "2019-10-15T02:59:48.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.202200", - "Timestamp": "2019-10-15T02:47:40.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.202200", - "Timestamp": "2019-10-15T02:47:40.000Z" + "SpotPrice": "0.851800", + "Timestamp": "2024-05-16T07:16:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.202200", - "Timestamp": "2019-10-15T02:47:40.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3en.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.270200", - "Timestamp": "2019-10-15T02:46:33.000Z" + "SpotPrice": "0.995900", + "Timestamp": "2024-05-16T07:16:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.270200", - "Timestamp": "2019-10-15T02:46:33.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.990900", + "Timestamp": "2024-05-16T07:16:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.270200", - "Timestamp": "2019-10-15T02:46:33.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.865900", + "Timestamp": "2024-05-16T07:16:37.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.240200", - "Timestamp": "2019-10-15T02:46:33.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.384700", + "Timestamp": "2024-05-16T07:16:36.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.240200", - "Timestamp": "2019-10-15T02:46:33.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.266100", + "Timestamp": "2024-05-16T07:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7gd.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.240200", - "Timestamp": "2019-10-15T02:46:33.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.140200", - "Timestamp": "2019-10-15T02:46:33.000Z" + "SpotPrice": "0.261100", + "Timestamp": "2024-05-16T07:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.140200", - "Timestamp": "2019-10-15T02:46:33.000Z" + "SpotPrice": "0.136100", + "Timestamp": "2024-05-16T07:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.140200", - "Timestamp": "2019-10-15T02:46:33.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.219000", + "Timestamp": "2024-05-16T07:16:35.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "p3.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.552800", - "Timestamp": "2019-10-15T02:46:17.000Z" + "SpotPrice": "0.440000", + "Timestamp": "2024-05-16T07:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "10.291600", - "Timestamp": "2019-10-15T02:46:01.000Z" + "SpotPrice": "4.293100", + "Timestamp": "2024-05-16T07:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "10.261600", - "Timestamp": "2019-10-15T02:46:01.000Z" + "SpotPrice": "4.288100", + "Timestamp": "2024-05-16T07:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "10.161600", - "Timestamp": "2019-10-15T02:46:01.000Z" + "SpotPrice": "4.163100", + "Timestamp": "2024-05-16T07:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "p3.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "13.105600", - "Timestamp": "2019-10-15T02:45:04.000Z" + "SpotPrice": "2.865400", + "Timestamp": "2024-05-16T07:16:34.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.128900", - "Timestamp": "2019-10-15T02:42:31.000Z" + "SpotPrice": "4.194400", + "Timestamp": "2024-05-16T07:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.168900", - "Timestamp": "2019-10-15T02:42:31.000Z" + "SpotPrice": "4.189400", + "Timestamp": "2024-05-16T07:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.068900", - "Timestamp": "2019-10-15T02:42:31.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125600", - "Timestamp": "2019-10-15T02:40:47.000Z" + "SpotPrice": "4.064400", + "Timestamp": "2024-05-16T07:16:33.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.125600", - "Timestamp": "2019-10-15T02:40:47.000Z" - }, - { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.165600", - "Timestamp": "2019-10-15T02:40:47.000Z" + "SpotPrice": "2.483800", + "Timestamp": "2024-05-16T07:16:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.165600", - "Timestamp": "2019-10-15T02:40:47.000Z" + "SpotPrice": "2.453800", + "Timestamp": "2024-05-16T07:16:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065600", - "Timestamp": "2019-10-15T02:40:47.000Z" + "SpotPrice": "2.353800", + "Timestamp": "2024-05-16T07:16:32.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.065600", - "Timestamp": "2019-10-15T02:40:47.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.522400", + "Timestamp": "2024-05-16T07:16:31.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.998300", - "Timestamp": "2019-10-15T02:40:46.000Z" + "SpotPrice": "1.274500", + "Timestamp": "2024-05-16T07:16:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.998300", - "Timestamp": "2019-10-15T02:40:46.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.269500", + "Timestamp": "2024-05-16T07:16:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.998300", - "Timestamp": "2019-10-15T02:40:46.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.144500", + "Timestamp": "2024-05-16T07:16:30.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.968300", - "Timestamp": "2019-10-15T02:40:46.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.592900", + "Timestamp": "2024-05-16T07:16:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.968300", - "Timestamp": "2019-10-15T02:40:46.000Z" + "SpotPrice": "0.587900", + "Timestamp": "2024-05-16T07:16:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.968300", - "Timestamp": "2019-10-15T02:40:46.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.462900", + "Timestamp": "2024-05-16T07:16:29.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.868300", - "Timestamp": "2019-10-15T02:40:46.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130400", + "Timestamp": "2024-05-16T07:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.868300", - "Timestamp": "2019-10-15T02:40:46.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.126700", + "Timestamp": "2024-05-16T07:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.868300", - "Timestamp": "2019-10-15T02:40:46.000Z" + "SpotPrice": "0.070400", + "Timestamp": "2024-05-16T07:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.076300", - "Timestamp": "2019-10-15T02:40:46.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.450100", + "Timestamp": "2024-05-16T07:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.076300", - "Timestamp": "2019-10-15T02:40:46.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.445100", + "Timestamp": "2024-05-16T07:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.076300", - "Timestamp": "2019-10-15T02:40:46.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.320100", + "Timestamp": "2024-05-16T07:16:28.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1e.32xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "11.736400", - "Timestamp": "2019-10-15T02:01:09.000Z" + "SpotPrice": "0.286500", + "Timestamp": "2024-05-16T07:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1e.32xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "11.706400", - "Timestamp": "2019-10-15T02:01:09.000Z" + "SpotPrice": "0.256500", + "Timestamp": "2024-05-16T07:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "x1e.32xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "11.606400", - "Timestamp": "2019-10-15T02:01:09.000Z" + "SpotPrice": "0.156500", + "Timestamp": "2024-05-16T07:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.136300", - "Timestamp": "2019-10-15T01:28:03.000Z" + "SpotPrice": "0.135900", + "Timestamp": "2024-05-16T07:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.176300", - "Timestamp": "2019-10-15T01:28:03.000Z" + "SpotPrice": "0.132200", + "Timestamp": "2024-05-16T07:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.076300", - "Timestamp": "2019-10-15T01:28:03.000Z" + "SpotPrice": "0.075900", + "Timestamp": "2024-05-16T07:16:27.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m3.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.246000", - "Timestamp": "2019-10-15T01:10:40.000Z" + "SpotPrice": "2.950300", + "Timestamp": "2024-05-16T07:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m3.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.286000", - "Timestamp": "2019-10-15T01:10:40.000Z" + "SpotPrice": "2.945300", + "Timestamp": "2024-05-16T07:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "m3.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.186000", - "Timestamp": "2019-10-15T01:10:40.000Z" + "SpotPrice": "2.820300", + "Timestamp": "2024-05-16T07:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006400", - "Timestamp": "2019-10-15T00:49:21.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.170700", + "Timestamp": "2024-05-16T07:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006400", - "Timestamp": "2019-10-15T00:49:21.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.166700", + "Timestamp": "2024-05-16T07:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.metal", - "ProductDescription": "Windows", - "SpotPrice": "6.235200", - "Timestamp": "2019-10-15T00:45:35.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110700", + "Timestamp": "2024-05-16T07:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.metal", - "ProductDescription": "Windows", - "SpotPrice": "6.235200", - "Timestamp": "2019-10-15T00:45:35.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.996400", + "Timestamp": "2024-05-16T07:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.metal", - "ProductDescription": "Windows", - "SpotPrice": "6.235200", - "Timestamp": "2019-10-15T00:45:35.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.991400", + "Timestamp": "2024-05-16T07:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.949200", - "Timestamp": "2019-10-15T00:45:23.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.866400", + "Timestamp": "2024-05-16T07:16:26.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.metal", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.949200", - "Timestamp": "2019-10-15T00:45:23.000Z" + "SpotPrice": "0.238500", + "Timestamp": "2024-05-16T07:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.949200", - "Timestamp": "2019-10-15T00:45:23.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.234500", + "Timestamp": "2024-05-16T07:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.919200", - "Timestamp": "2019-10-15T00:45:23.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.178500", + "Timestamp": "2024-05-16T07:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.919200", - "Timestamp": "2019-10-15T00:45:23.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.737500", + "Timestamp": "2024-05-16T07:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.metal", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.919200", - "Timestamp": "2019-10-15T00:45:23.000Z" + "SpotPrice": "1.732500", + "Timestamp": "2024-05-16T07:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2b", - "InstanceType": "r5.metal", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.819200", - "Timestamp": "2019-10-15T00:45:23.000Z" + "SpotPrice": "1.607500", + "Timestamp": "2024-05-16T07:16:25.000Z" }, { - "AvailabilityZone": "ap-southeast-2c", - "InstanceType": "r5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.819200", - "Timestamp": "2019-10-15T00:45:23.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.392500", + "Timestamp": "2024-05-16T07:16:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "r5.metal", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.362500", + "Timestamp": "2024-05-16T07:16:21.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.819200", - "Timestamp": "2019-10-15T00:45:23.000Z" + "SpotPrice": "0.262500", + "Timestamp": "2024-05-16T07:16:21.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "m1.medium", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.081700", - "Timestamp": "2019-10-15T00:39:16.000Z" + "SpotPrice": "2.577000", + "Timestamp": "2024-05-16T07:16:17.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.metal", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.069800", - "Timestamp": "2019-10-10T13:01:45.000Z" + "SpotPrice": "0.904800", + "Timestamp": "2024-05-16T07:16:15.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.metal", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c4.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.783800", - "Timestamp": "2019-10-10T13:01:26.000Z" + "SpotPrice": "0.313300", + "Timestamp": "2024-05-16T07:16:15.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.metal", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c4.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.753800", - "Timestamp": "2019-10-10T13:01:26.000Z" + "SpotPrice": "0.283300", + "Timestamp": "2024-05-16T07:16:15.000Z" }, { - "AvailabilityZone": "ap-southeast-2a", - "InstanceType": "c5.metal", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c4.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.653800", - "Timestamp": "2019-10-10T13:01:26.000Z" - }, - { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.967800", - "Timestamp": "2019-10-16T03:00:49.000Z" + "SpotPrice": "0.183300", + "Timestamp": "2024-05-16T07:16:15.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.967800", - "Timestamp": "2019-10-16T03:00:49.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.881000", + "Timestamp": "2024-05-16T07:16:13.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.363600", - "Timestamp": "2019-10-16T03:00:46.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.876000", + "Timestamp": "2024-05-16T07:16:13.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.233600", - "Timestamp": "2019-10-16T03:00:46.000Z" + "SpotPrice": "0.751000", + "Timestamp": "2024-05-16T07:16:13.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.333000", - "Timestamp": "2019-10-16T02:53:12.000Z" + "SpotPrice": "0.507700", + "Timestamp": "2024-05-16T07:16:10.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.502700", + "Timestamp": "2024-05-16T07:16:10.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.203000", - "Timestamp": "2019-10-16T02:53:12.000Z" + "SpotPrice": "0.377700", + "Timestamp": "2024-05-16T07:16:10.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.393000", - "Timestamp": "2019-10-16T02:52:41.000Z" + "SpotPrice": "1.891000", + "Timestamp": "2024-05-16T07:16:09.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.263000", - "Timestamp": "2019-10-16T02:52:41.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.886000", + "Timestamp": "2024-05-16T07:16:09.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5.metal", - "ProductDescription": "Windows", - "SpotPrice": "7.509000", - "Timestamp": "2019-10-16T02:52:37.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.761000", + "Timestamp": "2024-05-16T07:16:09.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.406500", - "Timestamp": "2019-10-16T02:44:50.000Z" + "SpotPrice": "0.403400", + "Timestamp": "2024-05-16T07:16:09.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.398400", + "Timestamp": "2024-05-16T07:16:09.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.276500", - "Timestamp": "2019-10-16T02:44:50.000Z" + "SpotPrice": "0.273400", + "Timestamp": "2024-05-16T07:16:09.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.159700", - "Timestamp": "2019-10-16T02:44:50.000Z" + "SpotPrice": "0.073800", + "Timestamp": "2024-05-16T07:16:07.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070100", + "Timestamp": "2024-05-16T07:16:07.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.099700", - "Timestamp": "2019-10-16T02:44:50.000Z" + "SpotPrice": "0.013800", + "Timestamp": "2024-05-16T07:16:07.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.111000", - "Timestamp": "2019-10-16T02:44:28.000Z" + "SpotPrice": "0.175100", + "Timestamp": "2024-05-16T07:16:03.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.171100", + "Timestamp": "2024-05-16T07:16:03.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.051000", - "Timestamp": "2019-10-16T02:44:28.000Z" + "SpotPrice": "0.115100", + "Timestamp": "2024-05-16T07:16:03.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.340000", - "Timestamp": "2019-10-16T02:35:57.000Z" + "SpotPrice": "0.450500", + "Timestamp": "2024-05-16T07:15:53.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.210000", - "Timestamp": "2019-10-16T02:35:57.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.445500", + "Timestamp": "2024-05-16T07:15:53.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.295800", - "Timestamp": "2019-10-16T02:35:49.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.320500", + "Timestamp": "2024-05-16T07:15:53.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.165800", - "Timestamp": "2019-10-16T02:35:49.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-16T07:05:40.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.280000", - "Timestamp": "2019-10-16T02:35:45.000Z" + "SpotPrice": "2.898600", + "Timestamp": "2024-05-16T07:03:26.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.893600", + "Timestamp": "2024-05-16T07:03:26.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.150000", - "Timestamp": "2019-10-16T02:35:45.000Z" + "SpotPrice": "2.768600", + "Timestamp": "2024-05-16T07:03:26.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t2.medium", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.006700", + "Timestamp": "2024-05-16T07:02:24.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c4.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.078700", - "Timestamp": "2019-10-16T02:35:35.000Z" + "SpotPrice": "0.377000", + "Timestamp": "2024-05-16T07:02:14.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t2.medium", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.347000", + "Timestamp": "2024-05-16T07:02:14.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c4.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.018700", - "Timestamp": "2019-10-16T02:35:35.000Z" + "SpotPrice": "0.247000", + "Timestamp": "2024-05-16T07:02:14.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.846000", + "Timestamp": "2024-05-16T07:01:55.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.657300", - "Timestamp": "2019-10-16T02:27:46.000Z" + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T07:01:53.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.095500", + "Timestamp": "2024-05-16T07:01:53.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.527300", - "Timestamp": "2019-10-16T02:27:46.000Z" + "SpotPrice": "0.039200", + "Timestamp": "2024-05-16T07:01:53.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.317400", - "Timestamp": "2019-10-16T02:27:27.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.732200", + "Timestamp": "2024-05-16T07:01:51.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.187400", - "Timestamp": "2019-10-16T02:27:27.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.820500", + "Timestamp": "2024-05-16T07:01:51.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.261100", - "Timestamp": "2019-10-16T02:10:52.000Z" + "SpotPrice": "0.116300", + "Timestamp": "2024-05-16T07:01:51.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112600", + "Timestamp": "2024-05-16T07:01:51.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.131100", - "Timestamp": "2019-10-16T02:10:52.000Z" + "SpotPrice": "0.056300", + "Timestamp": "2024-05-16T07:01:51.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.651800", - "Timestamp": "2019-10-16T02:10:38.000Z" + "SpotPrice": "0.889200", + "Timestamp": "2024-05-16T07:01:47.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.884200", + "Timestamp": "2024-05-16T07:01:47.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.521800", - "Timestamp": "2019-10-16T02:10:38.000Z" + "SpotPrice": "0.759200", + "Timestamp": "2024-05-16T07:01:47.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.874900", + "Timestamp": "2024-05-16T07:01:43.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.424700", - "Timestamp": "2019-10-16T02:02:35.000Z" + "SpotPrice": "1.330400", + "Timestamp": "2024-05-16T07:01:42.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.325400", + "Timestamp": "2024-05-16T07:01:42.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.294700", - "Timestamp": "2019-10-16T02:02:35.000Z" + "SpotPrice": "1.200400", + "Timestamp": "2024-05-16T07:01:42.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.316400", - "Timestamp": "2019-10-16T02:02:24.000Z" + "SpotPrice": "0.571600", + "Timestamp": "2024-05-16T07:01:42.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.186400", - "Timestamp": "2019-10-16T02:02:24.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.566600", + "Timestamp": "2024-05-16T07:01:42.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.268200", - "Timestamp": "2019-10-16T02:01:16.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.441600", + "Timestamp": "2024-05-16T07:01:42.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.268200", - "Timestamp": "2019-10-16T02:01:16.000Z" + "SpotPrice": "0.645000", + "Timestamp": "2024-05-16T07:01:42.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.138200", - "Timestamp": "2019-10-16T02:01:16.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.640000", + "Timestamp": "2024-05-16T07:01:42.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.138200", - "Timestamp": "2019-10-16T02:01:16.000Z" + "SpotPrice": "0.515000", + "Timestamp": "2024-05-16T07:01:42.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.200200", - "Timestamp": "2019-10-16T02:00:30.000Z" + "SpotPrice": "10.155600", + "Timestamp": "2024-05-16T07:01:40.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.200200", - "Timestamp": "2019-10-16T02:00:30.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075100", + "Timestamp": "2024-05-16T07:01:40.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.489400", - "Timestamp": "2019-10-16T01:59:59.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071400", + "Timestamp": "2024-05-16T07:01:40.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.489400", - "Timestamp": "2019-10-16T01:59:59.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015100", + "Timestamp": "2024-05-16T07:01:40.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127700", - "Timestamp": "2019-10-16T01:54:07.000Z" + "SpotPrice": "0.412600", + "Timestamp": "2024-05-16T07:01:39.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067700", - "Timestamp": "2019-10-16T01:54:07.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.407600", + "Timestamp": "2024-05-16T07:01:39.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "7.420100", - "Timestamp": "2019-10-16T01:48:24.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.282600", + "Timestamp": "2024-05-16T07:01:39.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.metal-24xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.371300", - "Timestamp": "2019-10-16T01:46:05.000Z" + "SpotPrice": "1.143000", + "Timestamp": "2024-05-16T07:01:38.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.138000", + "Timestamp": "2024-05-16T07:01:38.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.metal-24xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.241300", - "Timestamp": "2019-10-16T01:46:05.000Z" + "SpotPrice": "1.013000", + "Timestamp": "2024-05-16T07:01:38.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3en.6xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.391800", - "Timestamp": "2019-10-16T01:45:42.000Z" + "SpotPrice": "0.562000", + "Timestamp": "2024-05-16T07:01:37.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.261800", - "Timestamp": "2019-10-16T01:45:42.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.557000", + "Timestamp": "2024-05-16T07:01:37.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t2.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.035300", - "Timestamp": "2019-10-16T01:41:12.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.432000", + "Timestamp": "2024-05-16T07:01:37.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t2.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.035300", - "Timestamp": "2019-10-16T01:41:12.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.409500", + "Timestamp": "2024-05-16T07:01:36.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.489700", - "Timestamp": "2019-10-16T01:38:22.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.379500", + "Timestamp": "2024-05-16T07:01:36.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.489700", - "Timestamp": "2019-10-16T01:38:22.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.279500", + "Timestamp": "2024-05-16T07:01:36.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m4.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.489700", - "Timestamp": "2019-10-16T01:38:22.000Z" + "SpotPrice": "0.431600", + "Timestamp": "2024-05-16T07:01:36.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.251700", - "Timestamp": "2019-10-16T01:38:12.000Z" + "SpotPrice": "0.593000", + "Timestamp": "2024-05-16T07:01:35.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.251700", - "Timestamp": "2019-10-16T01:38:12.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.588000", + "Timestamp": "2024-05-16T07:01:35.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.251700", - "Timestamp": "2019-10-16T01:38:12.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.463000", + "Timestamp": "2024-05-16T07:01:35.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.121700", - "Timestamp": "2019-10-16T01:38:12.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.147000", + "Timestamp": "2024-05-16T07:01:34.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.121700", - "Timestamp": "2019-10-16T01:38:12.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143000", + "Timestamp": "2024-05-16T07:01:34.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.121700", - "Timestamp": "2019-10-16T01:38:12.000Z" + "SpotPrice": "0.087000", + "Timestamp": "2024-05-16T07:01:34.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.628700", - "Timestamp": "2019-10-16T01:37:40.000Z" + "SpotPrice": "0.134500", + "Timestamp": "2024-05-16T07:01:34.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130500", + "Timestamp": "2024-05-16T07:01:34.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.568700", - "Timestamp": "2019-10-16T01:37:40.000Z" + "SpotPrice": "0.074500", + "Timestamp": "2024-05-16T07:01:34.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.797600", - "Timestamp": "2019-10-16T01:37:31.000Z" + "SpotPrice": "0.089800", + "Timestamp": "2024-05-16T07:01:33.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129800", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.667600", - "Timestamp": "2019-10-16T01:37:31.000Z" + "SpotPrice": "0.029800", + "Timestamp": "2024-05-16T07:01:33.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.602300", - "Timestamp": "2019-10-16T01:37:11.000Z" + "SpotPrice": "0.116200", + "Timestamp": "2024-05-16T07:01:33.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T07:01:33.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.472300", - "Timestamp": "2019-10-16T01:37:11.000Z" + "SpotPrice": "0.056200", + "Timestamp": "2024-05-16T07:01:33.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.164200", - "Timestamp": "2019-10-16T01:29:11.000Z" + "SpotPrice": "0.815700", + "Timestamp": "2024-05-16T07:01:32.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.810700", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.104200", - "Timestamp": "2019-10-16T01:29:11.000Z" + "SpotPrice": "0.685700", + "Timestamp": "2024-05-16T07:01:32.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.609600", + "Timestamp": "2024-05-16T07:01:32.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.370100", - "Timestamp": "2019-10-16T01:29:05.000Z" + "SpotPrice": "0.682800", + "Timestamp": "2024-05-16T07:01:30.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.677800", + "Timestamp": "2024-05-16T07:01:30.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.240100", - "Timestamp": "2019-10-16T01:29:05.000Z" + "SpotPrice": "0.552800", + "Timestamp": "2024-05-16T07:01:30.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090600", - "Timestamp": "2019-10-16T01:21:32.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.970100", + "Timestamp": "2024-05-16T07:01:29.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030600", - "Timestamp": "2019-10-16T01:21:32.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.285000", + "Timestamp": "2024-05-16T07:01:29.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "g4dn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.149100", - "Timestamp": "2019-10-16T01:12:27.000Z" + "SpotPrice": "3.329700", + "Timestamp": "2024-05-16T07:01:27.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.324700", + "Timestamp": "2024-05-16T07:01:27.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "g4dn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.089100", - "Timestamp": "2019-10-16T01:12:27.000Z" + "SpotPrice": "3.199700", + "Timestamp": "2024-05-16T07:01:27.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3en.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.139300", - "Timestamp": "2019-10-16T01:04:30.000Z" + "SpotPrice": "1.863600", + "Timestamp": "2024-05-16T07:01:26.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3en.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.858600", + "Timestamp": "2024-05-16T07:01:26.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3en.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.009300", - "Timestamp": "2019-10-16T01:04:30.000Z" + "SpotPrice": "1.733600", + "Timestamp": "2024-05-16T07:01:26.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.316700", - "Timestamp": "2019-10-16T01:04:11.000Z" + "SpotPrice": "1.950800", + "Timestamp": "2024-05-16T07:01:26.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.186700", - "Timestamp": "2019-10-16T01:04:11.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.945800", + "Timestamp": "2024-05-16T07:01:26.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "a1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.190100", - "Timestamp": "2019-10-16T01:01:18.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.820800", + "Timestamp": "2024-05-16T07:01:26.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "a1.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "g4dn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.190100", - "Timestamp": "2019-10-16T01:01:18.000Z" + "SpotPrice": "2.446600", + "Timestamp": "2024-05-16T07:01:26.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "a1.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060100", - "Timestamp": "2019-10-16T01:01:18.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.441600", + "Timestamp": "2024-05-16T07:01:26.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "a1.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "g4dn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060100", - "Timestamp": "2019-10-16T01:01:18.000Z" + "SpotPrice": "2.316600", + "Timestamp": "2024-05-16T07:01:26.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t3.micro", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063400", - "Timestamp": "2019-10-16T01:01:01.000Z" + "SpotPrice": "0.214500", + "Timestamp": "2024-05-16T07:01:25.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063400", - "Timestamp": "2019-10-16T01:01:01.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.209500", + "Timestamp": "2024-05-16T07:01:25.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t3.micro", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.084500", + "Timestamp": "2024-05-16T07:01:25.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063400", - "Timestamp": "2019-10-16T01:01:01.000Z" + "SpotPrice": "0.132200", + "Timestamp": "2024-05-16T07:01:24.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003400", - "Timestamp": "2019-10-16T01:01:01.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172200", + "Timestamp": "2024-05-16T07:01:24.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "t3.micro", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003400", - "Timestamp": "2019-10-16T01:01:01.000Z" + "SpotPrice": "0.072200", + "Timestamp": "2024-05-16T07:01:24.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003400", - "Timestamp": "2019-10-16T01:01:01.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.614900", + "Timestamp": "2024-05-16T07:01:24.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t3.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012600", - "Timestamp": "2019-10-16T01:00:55.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.584900", + "Timestamp": "2024-05-16T07:01:24.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "t3.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012600", - "Timestamp": "2019-10-16T01:00:55.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.484900", + "Timestamp": "2024-05-16T07:01:24.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t3.micro", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.metal-24xl", "ProductDescription": "Windows", - "SpotPrice": "0.012600", - "Timestamp": "2019-10-16T01:00:55.000Z" + "SpotPrice": "5.431800", + "Timestamp": "2024-05-16T07:01:23.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t2.small", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.385000", - "Timestamp": "2019-10-16T01:00:41.000Z" + "SpotPrice": "0.069800", + "Timestamp": "2024-05-16T07:01:23.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.385000", - "Timestamp": "2019-10-16T01:00:41.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t2.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.039800", + "Timestamp": "2024-05-16T07:01:23.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t2.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009800", + "Timestamp": "2024-05-16T07:01:23.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.385000", - "Timestamp": "2019-10-16T01:00:41.000Z" + "SpotPrice": "0.183600", + "Timestamp": "2024-05-16T07:01:22.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.255000", - "Timestamp": "2019-10-16T01:00:41.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.179900", + "Timestamp": "2024-05-16T07:01:22.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.255000", - "Timestamp": "2019-10-16T01:00:41.000Z" + "SpotPrice": "0.123600", + "Timestamp": "2024-05-16T07:01:22.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.255000", - "Timestamp": "2019-10-16T01:00:41.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.103300", + "Timestamp": "2024-05-16T07:01:21.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.991000", - "Timestamp": "2019-10-16T01:00:20.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.143300", + "Timestamp": "2024-05-16T07:01:21.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.991000", - "Timestamp": "2019-10-16T01:00:20.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.043300", + "Timestamp": "2024-05-16T07:01:21.000Z" }, { - "AvailabilityZone": "ap-south-1a", + "AvailabilityZone": "sa-east-1a", "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.991000", - "Timestamp": "2019-10-16T01:00:20.000Z" + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.750500", + "Timestamp": "2024-05-16T07:01:19.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.474100", - "Timestamp": "2019-10-16T00:52:18.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.745500", + "Timestamp": "2024-05-16T07:01:19.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.474100", - "Timestamp": "2019-10-16T00:52:18.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.620500", + "Timestamp": "2024-05-16T07:01:19.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.121300", - "Timestamp": "2019-10-16T00:52:07.000Z" - }, - { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.061300", - "Timestamp": "2019-10-16T00:52:07.000Z" + "SpotPrice": "2.660900", + "Timestamp": "2024-05-16T07:01:13.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.371300", - "Timestamp": "2019-10-16T00:47:20.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.655900", + "Timestamp": "2024-05-16T07:01:13.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.241300", - "Timestamp": "2019-10-16T00:47:20.000Z" + "SpotPrice": "2.530900", + "Timestamp": "2024-05-16T07:01:13.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x2iedn.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.112900", - "Timestamp": "2019-10-16T00:47:20.000Z" + "SpotPrice": "0.810100", + "Timestamp": "2024-05-16T07:01:11.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.805100", + "Timestamp": "2024-05-16T07:01:11.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x2iedn.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.052900", - "Timestamp": "2019-10-16T00:47:20.000Z" + "SpotPrice": "0.680100", + "Timestamp": "2024-05-16T07:01:11.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.596100", - "Timestamp": "2019-10-16T00:39:40.000Z" + "SpotPrice": "1.094100", + "Timestamp": "2024-05-16T07:00:56.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.089100", + "Timestamp": "2024-05-16T07:00:56.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.466100", - "Timestamp": "2019-10-16T00:39:40.000Z" + "SpotPrice": "0.964100", + "Timestamp": "2024-05-16T07:00:56.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c1.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.363300", - "Timestamp": "2019-10-16T00:39:35.000Z" + "SpotPrice": "0.229600", + "Timestamp": "2024-05-16T07:00:55.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.233300", - "Timestamp": "2019-10-16T00:39:35.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.199600", + "Timestamp": "2024-05-16T07:00:55.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.285600", - "Timestamp": "2019-10-16T00:39:01.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.099600", + "Timestamp": "2024-05-16T07:00:55.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.155600", - "Timestamp": "2019-10-16T00:39:01.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.489000", + "Timestamp": "2024-05-16T06:51:57.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.694600", - "Timestamp": "2019-10-16T00:38:59.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-16T06:47:35.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.564600", - "Timestamp": "2019-10-16T00:38:59.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.553600", + "Timestamp": "2024-05-16T06:47:33.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r3.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089800", - "Timestamp": "2019-10-16T00:31:24.000Z" + "SpotPrice": "0.084900", + "Timestamp": "2024-05-16T06:47:33.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r3.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.124900", + "Timestamp": "2024-05-16T06:47:33.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029800", - "Timestamp": "2019-10-16T00:31:24.000Z" + "SpotPrice": "0.024900", + "Timestamp": "2024-05-16T06:47:33.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.264600", - "Timestamp": "2019-10-16T00:30:36.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.660600", + "Timestamp": "2024-05-16T06:47:01.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.134600", - "Timestamp": "2019-10-16T00:30:36.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.025100", + "Timestamp": "2024-05-16T06:46:53.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.102400", - "Timestamp": "2019-10-16T00:30:23.000Z" + "SpotPrice": "0.348300", + "Timestamp": "2024-05-16T06:46:51.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.042400", - "Timestamp": "2019-10-16T00:30:23.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.318300", + "Timestamp": "2024-05-16T06:46:51.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.130400", - "Timestamp": "2019-10-16T00:22:31.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.218300", + "Timestamp": "2024-05-16T06:46:51.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.070400", - "Timestamp": "2019-10-16T00:22:31.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.794000", + "Timestamp": "2024-05-16T06:46:41.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.280100", - "Timestamp": "2019-10-16T00:22:30.000Z" + "SpotPrice": "1.130200", + "Timestamp": "2024-05-16T06:46:41.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.125200", + "Timestamp": "2024-05-16T06:46:41.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.150100", - "Timestamp": "2019-10-16T00:22:30.000Z" + "SpotPrice": "1.000200", + "Timestamp": "2024-05-16T06:46:41.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.576600", - "Timestamp": "2019-10-16T00:22:29.000Z" + "SpotPrice": "0.717700", + "Timestamp": "2024-05-16T06:46:39.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.712700", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.446600", - "Timestamp": "2019-10-16T00:22:29.000Z" + "SpotPrice": "0.587700", + "Timestamp": "2024-05-16T06:46:39.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.248100", - "Timestamp": "2019-10-16T00:22:23.000Z" + "SpotPrice": "3.066900", + "Timestamp": "2024-05-16T06:46:39.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.036900", + "Timestamp": "2024-05-16T06:46:39.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.118100", - "Timestamp": "2019-10-16T00:22:23.000Z" + "SpotPrice": "2.936900", + "Timestamp": "2024-05-16T06:46:39.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.118900", - "Timestamp": "2019-10-16T00:18:54.000Z" + "SpotPrice": "1.261800", + "Timestamp": "2024-05-16T06:46:38.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.256800", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.058900", - "Timestamp": "2019-10-16T00:18:54.000Z" + "SpotPrice": "1.131800", + "Timestamp": "2024-05-16T06:46:38.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.366100", - "Timestamp": "2019-10-16T00:14:18.000Z" + "SpotPrice": "0.478900", + "Timestamp": "2024-05-16T06:46:38.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.473900", + "Timestamp": "2024-05-16T06:46:38.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.236100", - "Timestamp": "2019-10-16T00:14:18.000Z" + "SpotPrice": "0.348900", + "Timestamp": "2024-05-16T06:46:38.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.363700", - "Timestamp": "2019-10-16T00:14:13.000Z" + "SpotPrice": "0.124300", + "Timestamp": "2024-05-16T06:46:36.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.120300", + "Timestamp": "2024-05-16T06:46:36.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.233700", - "Timestamp": "2019-10-16T00:14:13.000Z" + "SpotPrice": "0.064300", + "Timestamp": "2024-05-16T06:46:36.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r4.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093600", - "Timestamp": "2019-10-16T00:13:37.000Z" + "SpotPrice": "1.800700", + "Timestamp": "2024-05-16T06:46:35.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r4.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.795700", + "Timestamp": "2024-05-16T06:46:35.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033600", - "Timestamp": "2019-10-16T00:13:37.000Z" + "SpotPrice": "1.670700", + "Timestamp": "2024-05-16T06:46:35.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c4.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.866400", - "Timestamp": "2019-10-16T00:05:58.000Z" + "SpotPrice": "0.372500", + "Timestamp": "2024-05-16T06:46:34.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.342500", + "Timestamp": "2024-05-16T06:46:34.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c4.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.736400", - "Timestamp": "2019-10-16T00:05:58.000Z" + "SpotPrice": "0.242500", + "Timestamp": "2024-05-16T06:46:34.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.250300", - "Timestamp": "2019-10-16T00:05:30.000Z" + "SpotPrice": "0.119000", + "Timestamp": "2024-05-16T06:46:32.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.115000", + "Timestamp": "2024-05-16T06:46:32.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.120300", - "Timestamp": "2019-10-16T00:05:30.000Z" + "SpotPrice": "0.059000", + "Timestamp": "2024-05-16T06:46:32.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.239200", - "Timestamp": "2019-10-16T00:00:58.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.918800", + "Timestamp": "2024-05-16T06:46:32.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.239200", - "Timestamp": "2019-10-16T00:00:58.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.888800", + "Timestamp": "2024-05-16T06:46:32.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.979600", - "Timestamp": "2019-10-16T00:00:19.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.18xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.788800", + "Timestamp": "2024-05-16T06:46:32.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.18xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.979600", - "Timestamp": "2019-10-16T00:00:19.000Z" + "SpotPrice": "2.647900", + "Timestamp": "2024-05-16T06:46:31.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.979600", - "Timestamp": "2019-10-16T00:00:19.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.617900", + "Timestamp": "2024-05-16T06:46:31.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.18xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.849600", - "Timestamp": "2019-10-16T00:00:19.000Z" + "SpotPrice": "2.517900", + "Timestamp": "2024-05-16T06:46:31.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.849600", - "Timestamp": "2019-10-16T00:00:19.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.109200", + "Timestamp": "2024-05-16T06:46:30.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.104200", + "Timestamp": "2024-05-16T06:46:30.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.849600", - "Timestamp": "2019-10-16T00:00:19.000Z" + "SpotPrice": "0.979200", + "Timestamp": "2024-05-16T06:46:30.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5n.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.321600", - "Timestamp": "2019-10-16T00:00:19.000Z" + "SpotPrice": "0.874400", + "Timestamp": "2024-05-16T06:46:29.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.321600", - "Timestamp": "2019-10-16T00:00:19.000Z" + "SpotPrice": "0.685300", + "Timestamp": "2024-05-16T06:46:28.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.321600", - "Timestamp": "2019-10-16T00:00:19.000Z" + "SpotPrice": "5.679300", + "Timestamp": "2024-05-16T06:46:27.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.308100", - "Timestamp": "2019-10-15T23:59:44.000Z" + "SpotPrice": "0.300700", + "Timestamp": "2024-05-16T06:46:26.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.308100", - "Timestamp": "2019-10-15T23:59:44.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.295700", + "Timestamp": "2024-05-16T06:46:26.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.248100", - "Timestamp": "2019-10-15T23:59:44.000Z" + "SpotPrice": "0.170700", + "Timestamp": "2024-05-16T06:46:26.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.248100", - "Timestamp": "2019-10-15T23:59:44.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.345200", + "Timestamp": "2024-05-16T06:46:24.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.142300", - "Timestamp": "2019-10-15T23:57:07.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.340200", + "Timestamp": "2024-05-16T06:46:24.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.082300", - "Timestamp": "2019-10-15T23:57:07.000Z" + "SpotPrice": "1.215200", + "Timestamp": "2024-05-16T06:46:24.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.596200", - "Timestamp": "2019-10-15T23:57:05.000Z" + "SpotPrice": "1.447000", + "Timestamp": "2024-05-16T06:46:24.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.442000", + "Timestamp": "2024-05-16T06:46:24.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.536200", - "Timestamp": "2019-10-15T23:57:05.000Z" + "SpotPrice": "1.317000", + "Timestamp": "2024-05-16T06:46:24.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.383000", - "Timestamp": "2019-10-15T23:48:36.000Z" + "SpotPrice": "0.204900", + "Timestamp": "2024-05-16T06:46:22.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.253000", - "Timestamp": "2019-10-15T23:48:36.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.201200", + "Timestamp": "2024-05-16T06:46:22.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.416100", - "Timestamp": "2019-10-15T23:48:32.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144900", + "Timestamp": "2024-05-16T06:46:22.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6gd.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090700", - "Timestamp": "2019-10-15T23:44:09.000Z" + "SpotPrice": "0.545900", + "Timestamp": "2024-05-16T06:46:20.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.540900", + "Timestamp": "2024-05-16T06:46:20.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030700", - "Timestamp": "2019-10-15T23:44:09.000Z" + "SpotPrice": "0.415900", + "Timestamp": "2024-05-16T06:46:20.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.590400", - "Timestamp": "2019-10-15T23:43:48.000Z" + "SpotPrice": "5.021100", + "Timestamp": "2024-05-16T06:46:20.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.590400", - "Timestamp": "2019-10-15T23:43:48.000Z" + "SpotPrice": "5.075000", + "Timestamp": "2024-05-16T06:46:20.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.590400", - "Timestamp": "2019-10-15T23:43:48.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.016100", + "Timestamp": "2024-05-16T06:46:20.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.460400", - "Timestamp": "2019-10-15T23:43:48.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.070000", + "Timestamp": "2024-05-16T06:46:20.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.460400", - "Timestamp": "2019-10-15T23:43:48.000Z" + "SpotPrice": "4.891100", + "Timestamp": "2024-05-16T06:46:20.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.460400", - "Timestamp": "2019-10-15T23:43:48.000Z" + "SpotPrice": "4.945000", + "Timestamp": "2024-05-16T06:46:20.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.231000", + "Timestamp": "2024-05-16T06:46:19.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123800", - "Timestamp": "2019-10-15T23:41:27.000Z" + "SpotPrice": "0.094800", + "Timestamp": "2024-05-16T06:46:19.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090800", + "Timestamp": "2024-05-16T06:46:19.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063800", - "Timestamp": "2019-10-15T23:41:27.000Z" + "SpotPrice": "0.034800", + "Timestamp": "2024-05-16T06:46:19.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.876400", - "Timestamp": "2019-10-15T23:41:11.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.297200", + "Timestamp": "2024-05-16T06:46:19.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.876400", - "Timestamp": "2019-10-15T23:41:11.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.292200", + "Timestamp": "2024-05-16T06:46:19.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.876400", - "Timestamp": "2019-10-15T23:41:11.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.167200", + "Timestamp": "2024-05-16T06:46:19.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.463100", - "Timestamp": "2019-10-15T23:40:44.000Z" + "SpotPrice": "0.370500", + "Timestamp": "2024-05-16T06:46:17.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.403100", - "Timestamp": "2019-10-15T23:40:44.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.365500", + "Timestamp": "2024-05-16T06:46:17.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.361800", - "Timestamp": "2019-10-15T23:37:18.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.240500", + "Timestamp": "2024-05-16T06:46:17.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.361800", - "Timestamp": "2019-10-15T23:37:18.000Z" + "SpotPrice": "0.394600", + "Timestamp": "2024-05-16T06:46:15.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.366200", - "Timestamp": "2019-10-15T23:37:18.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.389600", + "Timestamp": "2024-05-16T06:46:15.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.231800", - "Timestamp": "2019-10-15T23:37:18.000Z" + "SpotPrice": "0.264600", + "Timestamp": "2024-05-16T06:46:15.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.231800", - "Timestamp": "2019-10-15T23:37:18.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.864400", + "Timestamp": "2024-05-16T06:46:13.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.859400", + "Timestamp": "2024-05-16T06:46:13.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.236200", - "Timestamp": "2019-10-15T23:37:18.000Z" + "SpotPrice": "1.734400", + "Timestamp": "2024-05-16T06:46:13.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.967800", - "Timestamp": "2019-10-15T23:37:17.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.272900", + "Timestamp": "2024-05-16T06:46:11.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.967800", - "Timestamp": "2019-10-15T23:37:17.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267900", + "Timestamp": "2024-05-16T06:46:11.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.967800", - "Timestamp": "2019-10-15T23:37:17.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142900", + "Timestamp": "2024-05-16T06:46:11.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.355200", - "Timestamp": "2019-10-15T23:37:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.928200", + "Timestamp": "2024-05-16T06:46:10.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.355200", - "Timestamp": "2019-10-15T23:37:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.923200", + "Timestamp": "2024-05-16T06:46:10.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.355200", - "Timestamp": "2019-10-15T23:37:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.798200", + "Timestamp": "2024-05-16T06:46:10.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.173200", - "Timestamp": "2019-10-15T23:37:17.000Z" + "SpotPrice": "2.129900", + "Timestamp": "2024-05-16T06:46:09.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.173200", - "Timestamp": "2019-10-15T23:37:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.124900", + "Timestamp": "2024-05-16T06:46:09.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.999900", + "Timestamp": "2024-05-16T06:46:09.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "x2iedn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.173200", - "Timestamp": "2019-10-15T23:37:17.000Z" + "SpotPrice": "0.438700", + "Timestamp": "2024-05-16T06:45:59.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.043200", - "Timestamp": "2019-10-15T23:37:17.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.435000", + "Timestamp": "2024-05-16T06:45:59.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "x2iedn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.043200", - "Timestamp": "2019-10-15T23:37:17.000Z" + "SpotPrice": "0.378700", + "Timestamp": "2024-05-16T06:45:59.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.043200", - "Timestamp": "2019-10-15T23:37:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.920300", + "Timestamp": "2024-05-16T06:45:57.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m4.large", "ProductDescription": "Windows", - "SpotPrice": "1.958800", - "Timestamp": "2019-10-15T23:32:27.000Z" + "SpotPrice": "0.107900", + "Timestamp": "2024-05-16T06:32:33.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.958800", - "Timestamp": "2019-10-15T23:32:27.000Z" + "SpotPrice": "0.201000", + "Timestamp": "2024-05-16T06:32:33.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.958800", - "Timestamp": "2019-10-15T23:32:27.000Z" + "SpotPrice": "7.003500", + "Timestamp": "2024-05-16T06:32:26.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.982400", + "Timestamp": "2024-05-16T06:32:18.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120100", - "Timestamp": "2019-10-15T23:24:29.000Z" + "SpotPrice": "0.521700", + "Timestamp": "2024-05-16T06:32:16.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060100", - "Timestamp": "2019-10-15T23:24:29.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.516700", + "Timestamp": "2024-05-16T06:32:16.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5.metal", - "ProductDescription": "Windows", - "SpotPrice": "7.594700", - "Timestamp": "2019-10-15T23:23:48.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.391700", + "Timestamp": "2024-05-16T06:32:16.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.100800", - "Timestamp": "2019-10-15T23:15:33.000Z" + "SpotPrice": "0.353600", + "Timestamp": "2024-05-16T06:31:54.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.348600", + "Timestamp": "2024-05-16T06:31:54.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.040800", - "Timestamp": "2019-10-15T23:15:33.000Z" + "SpotPrice": "0.223600", + "Timestamp": "2024-05-16T06:31:54.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5.metal", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.122200", + "Timestamp": "2024-05-16T06:31:54.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.222000", - "Timestamp": "2019-10-15T23:15:18.000Z" + "SpotPrice": "0.244400", + "Timestamp": "2024-05-16T06:31:52.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.092000", - "Timestamp": "2019-10-15T23:15:18.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.239400", + "Timestamp": "2024-05-16T06:31:52.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.180700", - "Timestamp": "2019-10-15T23:06:53.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.114400", + "Timestamp": "2024-05-16T06:31:52.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.982000", - "Timestamp": "2019-10-15T23:01:06.000Z" + "SpotPrice": "5.077400", + "Timestamp": "2024-05-16T06:31:44.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.982000", - "Timestamp": "2019-10-15T23:01:06.000Z" + "SpotPrice": "2.539200", + "Timestamp": "2024-05-16T06:31:41.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5n.18xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.982000", - "Timestamp": "2019-10-15T23:01:06.000Z" + "SpotPrice": "4.046900", + "Timestamp": "2024-05-16T06:31:39.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.3xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.640000", - "Timestamp": "2019-10-15T23:00:39.000Z" + "SpotPrice": "0.464000", + "Timestamp": "2024-05-16T06:31:36.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.640000", - "Timestamp": "2019-10-15T23:00:39.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.459000", + "Timestamp": "2024-05-16T06:31:36.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.640000", - "Timestamp": "2019-10-15T23:00:39.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.334000", + "Timestamp": "2024-05-16T06:31:36.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.510000", - "Timestamp": "2019-10-15T23:00:39.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.447900", + "Timestamp": "2024-05-16T06:31:36.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.510000", - "Timestamp": "2019-10-15T23:00:39.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.442900", + "Timestamp": "2024-05-16T06:31:36.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.510000", - "Timestamp": "2019-10-15T23:00:39.000Z" + "SpotPrice": "0.317900", + "Timestamp": "2024-05-16T06:31:36.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6gd.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.623800", - "Timestamp": "2019-10-15T22:50:31.000Z" + "SpotPrice": "0.075100", + "Timestamp": "2024-05-16T06:31:36.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.493800", - "Timestamp": "2019-10-15T22:50:31.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.046100", + "Timestamp": "2024-05-16T06:31:36.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.131300", - "Timestamp": "2019-10-15T22:50:20.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.015100", + "Timestamp": "2024-05-16T06:31:36.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.071300", - "Timestamp": "2019-10-15T22:50:20.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.868000", + "Timestamp": "2024-05-16T06:31:36.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.344900", - "Timestamp": "2019-10-15T22:50:10.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.215800", + "Timestamp": "2024-05-16T06:31:36.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.214900", - "Timestamp": "2019-10-15T22:50:10.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105100", + "Timestamp": "2024-05-16T06:31:34.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.270000", - "Timestamp": "2019-10-15T22:42:04.000Z" + "SpotPrice": "4.966800", + "Timestamp": "2024-05-16T06:31:34.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.961800", + "Timestamp": "2024-05-16T06:31:34.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.140000", - "Timestamp": "2019-10-15T22:42:04.000Z" + "SpotPrice": "4.836800", + "Timestamp": "2024-05-16T06:31:34.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.526000", - "Timestamp": "2019-10-15T22:42:04.000Z" + "SpotPrice": "0.691200", + "Timestamp": "2024-05-16T06:31:34.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.396000", - "Timestamp": "2019-10-15T22:42:04.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.686200", + "Timestamp": "2024-05-16T06:31:34.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.290100", - "Timestamp": "2019-10-15T22:32:49.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.561200", + "Timestamp": "2024-05-16T06:31:34.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.290100", - "Timestamp": "2019-10-15T22:32:49.000Z" + "SpotPrice": "0.479800", + "Timestamp": "2024-05-16T06:31:32.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.160100", - "Timestamp": "2019-10-15T22:32:49.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.474800", + "Timestamp": "2024-05-16T06:31:32.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.160100", - "Timestamp": "2019-10-15T22:32:49.000Z" + "SpotPrice": "0.349800", + "Timestamp": "2024-05-16T06:31:32.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "i2.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.9xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.896100", - "Timestamp": "2019-10-15T22:31:50.000Z" + "SpotPrice": "1.891800", + "Timestamp": "2024-05-16T06:31:32.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "i2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.896100", - "Timestamp": "2019-10-15T22:31:50.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.881200", + "Timestamp": "2024-05-16T06:31:31.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.365900", - "Timestamp": "2019-10-15T22:25:22.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.876200", + "Timestamp": "2024-05-16T06:31:31.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.235900", - "Timestamp": "2019-10-15T22:25:22.000Z" + "SpotPrice": "0.751200", + "Timestamp": "2024-05-16T06:31:31.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.351400", - "Timestamp": "2019-10-15T22:17:39.000Z" + "SpotPrice": "0.146500", + "Timestamp": "2024-05-16T06:31:30.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.142800", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.221400", - "Timestamp": "2019-10-15T22:17:39.000Z" + "SpotPrice": "0.086500", + "Timestamp": "2024-05-16T06:31:30.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t2.medium", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.078800", - "Timestamp": "2019-10-15T22:17:06.000Z" + "SpotPrice": "1.109800", + "Timestamp": "2024-05-16T06:31:30.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t2.medium", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.104800", + "Timestamp": "2024-05-16T06:31:30.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.018800", - "Timestamp": "2019-10-15T22:17:06.000Z" + "SpotPrice": "0.979800", + "Timestamp": "2024-05-16T06:31:30.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m1.small", "ProductDescription": "Windows", - "SpotPrice": "7.560600", - "Timestamp": "2019-10-15T22:14:51.000Z" + "SpotPrice": "0.046100", + "Timestamp": "2024-05-16T06:31:29.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.946000", - "Timestamp": "2019-10-15T22:14:51.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.296600", + "Timestamp": "2024-05-16T06:31:28.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.946000", - "Timestamp": "2019-10-15T22:14:51.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.291600", + "Timestamp": "2024-05-16T06:31:28.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.616800", - "Timestamp": "2019-10-15T22:09:17.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.166600", + "Timestamp": "2024-05-16T06:31:28.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.616800", - "Timestamp": "2019-10-15T22:09:17.000Z" + "SpotPrice": "1.301600", + "Timestamp": "2024-05-16T06:31:27.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.616800", - "Timestamp": "2019-10-15T22:09:17.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.296600", + "Timestamp": "2024-05-16T06:31:27.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.486800", - "Timestamp": "2019-10-15T22:09:17.000Z" + "SpotPrice": "1.171600", + "Timestamp": "2024-05-16T06:31:27.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.486800", - "Timestamp": "2019-10-15T22:09:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.364700", + "Timestamp": "2024-05-16T06:31:27.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.486800", - "Timestamp": "2019-10-15T22:09:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.359700", + "Timestamp": "2024-05-16T06:31:27.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.150000", - "Timestamp": "2019-10-15T22:01:18.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.234700", + "Timestamp": "2024-05-16T06:31:27.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.150000", - "Timestamp": "2019-10-15T22:01:18.000Z" + "SpotPrice": "0.079800", + "Timestamp": "2024-05-16T06:31:27.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.020000", - "Timestamp": "2019-10-15T22:01:18.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076100", + "Timestamp": "2024-05-16T06:31:27.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.020000", - "Timestamp": "2019-10-15T22:01:18.000Z" + "SpotPrice": "0.019800", + "Timestamp": "2024-05-16T06:31:27.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.964000", - "Timestamp": "2019-10-15T22:00:31.000Z" + "SpotPrice": "5.484100", + "Timestamp": "2024-05-16T06:31:27.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.964000", - "Timestamp": "2019-10-15T22:00:31.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.480400", + "Timestamp": "2024-05-16T06:31:26.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.727800", - "Timestamp": "2019-10-15T21:54:33.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.475400", + "Timestamp": "2024-05-16T06:31:26.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.727800", - "Timestamp": "2019-10-15T21:54:33.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.350400", + "Timestamp": "2024-05-16T06:31:26.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.727800", - "Timestamp": "2019-10-15T21:54:33.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.126400", + "Timestamp": "2024-05-16T06:31:26.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.483900", - "Timestamp": "2019-10-15T21:54:09.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.096400", + "Timestamp": "2024-05-16T06:31:26.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.483900", - "Timestamp": "2019-10-15T21:54:09.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.996400", + "Timestamp": "2024-05-16T06:31:26.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.483900", - "Timestamp": "2019-10-15T21:54:09.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.891800", + "Timestamp": "2024-05-16T06:31:26.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.245900", - "Timestamp": "2019-10-15T21:53:59.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.861800", + "Timestamp": "2024-05-16T06:31:26.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.245900", - "Timestamp": "2019-10-15T21:53:59.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.761800", + "Timestamp": "2024-05-16T06:31:26.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.245900", - "Timestamp": "2019-10-15T21:53:59.000Z" + "SpotPrice": "0.419800", + "Timestamp": "2024-05-16T06:31:21.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.115900", - "Timestamp": "2019-10-15T21:53:59.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.414800", + "Timestamp": "2024-05-16T06:31:21.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5n.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.115900", - "Timestamp": "2019-10-15T21:53:59.000Z" + "SpotPrice": "0.289800", + "Timestamp": "2024-05-16T06:31:21.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5n.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.115900", - "Timestamp": "2019-10-15T21:53:59.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.243800", + "Timestamp": "2024-05-16T06:31:19.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.238800", + "Timestamp": "2024-05-16T06:31:19.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.121800", - "Timestamp": "2019-10-15T21:53:08.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.113800", + "Timestamp": "2024-05-16T06:31:19.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.121800", - "Timestamp": "2019-10-15T21:53:08.000Z" + "SpotPrice": "1.767600", + "Timestamp": "2024-05-16T06:31:18.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.121800", - "Timestamp": "2019-10-15T21:53:08.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.762600", + "Timestamp": "2024-05-16T06:31:18.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "d2.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.991800", - "Timestamp": "2019-10-15T21:53:08.000Z" + "SpotPrice": "1.637600", + "Timestamp": "2024-05-16T06:31:18.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.991800", - "Timestamp": "2019-10-15T21:53:08.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.553600", + "Timestamp": "2024-05-16T06:31:17.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "d2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.991800", - "Timestamp": "2019-10-15T21:53:08.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.846400", + "Timestamp": "2024-05-16T06:31:12.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.384900", - "Timestamp": "2019-10-15T21:52:39.000Z" + "SpotPrice": "1.298400", + "Timestamp": "2024-05-16T06:31:10.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.293400", + "Timestamp": "2024-05-16T06:31:10.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.254900", - "Timestamp": "2019-10-15T21:52:39.000Z" + "SpotPrice": "1.168400", + "Timestamp": "2024-05-16T06:31:10.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.364900", - "Timestamp": "2019-10-15T21:52:17.000Z" + "SpotPrice": "0.065700", + "Timestamp": "2024-05-16T06:31:04.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.036700", + "Timestamp": "2024-05-16T06:31:04.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.234900", - "Timestamp": "2019-10-15T21:52:17.000Z" + "SpotPrice": "0.005700", + "Timestamp": "2024-05-16T06:31:04.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1e.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.121300", - "Timestamp": "2019-10-15T21:51:48.000Z" + "SpotPrice": "3.607200", + "Timestamp": "2024-05-16T06:31:00.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.577200", + "Timestamp": "2024-05-16T06:31:00.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1e.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.061300", - "Timestamp": "2019-10-15T21:51:48.000Z" + "SpotPrice": "3.477200", + "Timestamp": "2024-05-16T06:31:00.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.846700", - "Timestamp": "2019-10-15T21:51:30.000Z" + "SpotPrice": "0.551700", + "Timestamp": "2024-05-16T06:30:58.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.521700", + "Timestamp": "2024-05-16T06:30:58.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c3.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.716700", - "Timestamp": "2019-10-15T21:51:30.000Z" + "SpotPrice": "0.421700", + "Timestamp": "2024-05-16T06:30:58.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.657000", - "Timestamp": "2019-10-15T21:43:41.000Z" + "SpotPrice": "1.223200", + "Timestamp": "2024-05-16T06:30:57.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.527000", - "Timestamp": "2019-10-15T21:43:41.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.218200", + "Timestamp": "2024-05-16T06:30:57.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.958800", - "Timestamp": "2019-10-15T21:38:54.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.093200", + "Timestamp": "2024-05-16T06:30:57.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.958800", - "Timestamp": "2019-10-15T21:38:54.000Z" + "SpotPrice": "0.421600", + "Timestamp": "2024-05-16T06:17:33.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.958800", - "Timestamp": "2019-10-15T21:38:54.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.709200", + "Timestamp": "2024-05-16T06:17:30.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.393200", - "Timestamp": "2019-10-15T21:35:23.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.704200", + "Timestamp": "2024-05-16T06:17:30.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.263200", - "Timestamp": "2019-10-15T21:35:23.000Z" + "SpotPrice": "0.579200", + "Timestamp": "2024-05-16T06:17:30.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.355200", - "Timestamp": "2019-10-15T21:31:55.000Z" + "SpotPrice": "3.372800", + "Timestamp": "2024-05-16T06:17:29.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.355200", - "Timestamp": "2019-10-15T21:31:55.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "8.201700", + "Timestamp": "2024-05-16T06:17:00.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.355200", - "Timestamp": "2019-10-15T21:31:55.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "8.196700", + "Timestamp": "2024-05-16T06:17:00.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.122400", - "Timestamp": "2019-10-15T21:27:10.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "8.071700", + "Timestamp": "2024-05-16T06:17:00.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.122400", - "Timestamp": "2019-10-15T21:27:10.000Z" + "SpotPrice": "2.755200", + "Timestamp": "2024-05-16T06:16:58.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.18xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.122400", - "Timestamp": "2019-10-15T21:27:10.000Z" + "SpotPrice": "3.783700", + "Timestamp": "2024-05-16T06:16:55.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.279800", - "Timestamp": "2019-10-15T21:26:54.000Z" + "SpotPrice": "2.658100", + "Timestamp": "2024-05-16T06:16:53.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.653100", + "Timestamp": "2024-05-16T06:16:53.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.149800", - "Timestamp": "2019-10-15T21:26:54.000Z" + "SpotPrice": "2.528100", + "Timestamp": "2024-05-16T06:16:53.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5n.9xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.342200", - "Timestamp": "2019-10-15T21:26:29.000Z" + "SpotPrice": "1.095400", + "Timestamp": "2024-05-16T06:16:49.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.090400", + "Timestamp": "2024-05-16T06:16:49.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5n.9xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.212200", - "Timestamp": "2019-10-15T21:26:29.000Z" + "SpotPrice": "0.965400", + "Timestamp": "2024-05-16T06:16:49.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.791900", - "Timestamp": "2019-10-15T21:20:28.000Z" + "SpotPrice": "2.538400", + "Timestamp": "2024-05-16T06:16:44.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.837900", + "Timestamp": "2024-05-16T06:16:42.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.832900", + "Timestamp": "2024-05-16T06:16:42.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.707900", + "Timestamp": "2024-05-16T06:16:42.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.791900", - "Timestamp": "2019-10-15T21:20:28.000Z" + "SpotPrice": "0.217200", + "Timestamp": "2024-05-16T06:16:41.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.449900", - "Timestamp": "2019-10-15T21:20:19.000Z" + "SpotPrice": "1.540200", + "Timestamp": "2024-05-16T06:16:37.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.449900", - "Timestamp": "2019-10-15T21:20:19.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.535200", + "Timestamp": "2024-05-16T06:16:37.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "i2.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.319900", - "Timestamp": "2019-10-15T21:20:19.000Z" + "SpotPrice": "1.410200", + "Timestamp": "2024-05-16T06:16:37.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "i2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.319900", - "Timestamp": "2019-10-15T21:20:19.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.857400", + "Timestamp": "2024-05-16T06:16:36.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.876400", - "Timestamp": "2019-10-15T21:19:38.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.852400", + "Timestamp": "2024-05-16T06:16:36.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.876400", - "Timestamp": "2019-10-15T21:19:38.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.727400", + "Timestamp": "2024-05-16T06:16:36.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.876400", - "Timestamp": "2019-10-15T21:19:38.000Z" + "SpotPrice": "1.717500", + "Timestamp": "2024-05-16T06:16:33.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.590400", - "Timestamp": "2019-10-15T21:19:23.000Z" + "SpotPrice": "0.109700", + "Timestamp": "2024-05-16T06:16:33.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.590400", - "Timestamp": "2019-10-15T21:19:23.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.106000", + "Timestamp": "2024-05-16T06:16:33.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.590400", - "Timestamp": "2019-10-15T21:19:23.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.049700", + "Timestamp": "2024-05-16T06:16:33.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.460400", - "Timestamp": "2019-10-15T21:19:23.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.963800", + "Timestamp": "2024-05-16T06:16:32.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.460400", - "Timestamp": "2019-10-15T21:19:23.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.641000", + "Timestamp": "2024-05-16T06:16:32.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.460400", - "Timestamp": "2019-10-15T21:19:23.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.630500", + "Timestamp": "2024-05-16T06:16:30.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5.metal", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.352300", - "Timestamp": "2019-10-15T21:19:13.000Z" + "SpotPrice": "0.497500", + "Timestamp": "2024-05-16T06:16:30.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5.metal", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.600500", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.467500", + "Timestamp": "2024-05-16T06:16:30.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.222300", - "Timestamp": "2019-10-15T21:19:13.000Z" + "SpotPrice": "0.500500", + "Timestamp": "2024-05-16T06:16:30.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.086900", - "Timestamp": "2019-10-15T21:19:09.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.367500", + "Timestamp": "2024-05-16T06:16:30.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.086900", - "Timestamp": "2019-10-15T21:19:09.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.661600", + "Timestamp": "2024-05-16T06:16:29.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t3.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.086900", - "Timestamp": "2019-10-15T21:19:09.000Z" + "SpotPrice": "0.910500", + "Timestamp": "2024-05-16T06:16:29.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.026900", - "Timestamp": "2019-10-15T21:19:09.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.905500", + "Timestamp": "2024-05-16T06:16:29.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "t3.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.026900", - "Timestamp": "2019-10-15T21:19:09.000Z" + "SpotPrice": "0.780500", + "Timestamp": "2024-05-16T06:16:29.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.026900", - "Timestamp": "2019-10-15T21:19:09.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.581800", + "Timestamp": "2024-05-16T06:16:25.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.242000", - "Timestamp": "2019-10-15T21:19:06.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.576800", + "Timestamp": "2024-05-16T06:16:25.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.242000", - "Timestamp": "2019-10-15T21:19:06.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.451800", + "Timestamp": "2024-05-16T06:16:25.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.242000", - "Timestamp": "2019-10-15T21:19:06.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.954900", + "Timestamp": "2024-05-16T06:16:25.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.054500", - "Timestamp": "2019-10-15T21:18:45.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.924900", + "Timestamp": "2024-05-16T06:16:25.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "t3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.054500", - "Timestamp": "2019-10-15T21:18:45.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.824900", + "Timestamp": "2024-05-16T06:16:25.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t3.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.054500", - "Timestamp": "2019-10-15T21:18:45.000Z" + "SpotPrice": "5.044800", + "Timestamp": "2024-05-16T06:16:24.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c4.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.098300", - "Timestamp": "2019-10-15T21:18:19.000Z" + "SpotPrice": "1.451900", + "Timestamp": "2024-05-16T06:16:21.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c4.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.446900", + "Timestamp": "2024-05-16T06:16:21.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.038300", - "Timestamp": "2019-10-15T21:18:19.000Z" + "SpotPrice": "1.321900", + "Timestamp": "2024-05-16T06:16:21.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i-flex.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101700", - "Timestamp": "2019-10-15T21:18:17.000Z" + "SpotPrice": "0.153500", + "Timestamp": "2024-05-16T06:16:15.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041700", - "Timestamp": "2019-10-15T21:18:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.149800", + "Timestamp": "2024-05-16T06:16:15.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "i3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.145100", - "Timestamp": "2019-10-15T21:16:49.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.093500", + "Timestamp": "2024-05-16T06:16:15.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "i3.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.145100", - "Timestamp": "2019-10-15T21:16:49.000Z" + "SpotPrice": "0.265900", + "Timestamp": "2024-05-16T06:16:14.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "i3.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.metal", "ProductDescription": "Windows", - "SpotPrice": "0.145100", - "Timestamp": "2019-10-15T21:16:49.000Z" + "SpotPrice": "9.965300", + "Timestamp": "2024-05-16T06:16:10.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.860200", - "Timestamp": "2019-10-15T21:16:27.000Z" + "SpotPrice": "6.314600", + "Timestamp": "2024-05-16T06:16:08.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.860200", - "Timestamp": "2019-10-15T21:16:27.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "6.309600", + "Timestamp": "2024-05-16T06:16:08.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.730200", - "Timestamp": "2019-10-15T21:16:27.000Z" + "SpotPrice": "6.184600", + "Timestamp": "2024-05-16T06:16:08.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.730200", - "Timestamp": "2019-10-15T21:16:27.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.931500", + "Timestamp": "2024-05-16T06:16:06.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "i3.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.113100", - "Timestamp": "2019-10-15T21:16:00.000Z" + "SpotPrice": "0.131500", + "Timestamp": "2024-05-16T06:15:52.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "i3.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.113100", - "Timestamp": "2019-10-15T21:16:00.000Z" + "SpotPrice": "0.134400", + "Timestamp": "2024-05-16T06:15:52.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "i3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.113100", - "Timestamp": "2019-10-15T21:16:00.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.127500", + "Timestamp": "2024-05-16T06:15:52.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "i3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.053100", - "Timestamp": "2019-10-15T21:16:00.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.130400", + "Timestamp": "2024-05-16T06:15:52.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "i3.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.053100", - "Timestamp": "2019-10-15T21:16:00.000Z" + "SpotPrice": "0.071500", + "Timestamp": "2024-05-16T06:15:52.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "i3.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.053100", - "Timestamp": "2019-10-15T21:16:00.000Z" + "SpotPrice": "0.074400", + "Timestamp": "2024-05-16T06:15:52.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.large", "ProductDescription": "Windows", - "SpotPrice": "0.242000", - "Timestamp": "2019-10-15T21:15:50.000Z" + "SpotPrice": "0.114800", + "Timestamp": "2024-05-16T06:10:00.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3en.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.242000", - "Timestamp": "2019-10-15T21:15:50.000Z" + "SpotPrice": "3.072000", + "Timestamp": "2024-05-16T06:05:25.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "i2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.350100", - "Timestamp": "2019-10-15T21:15:30.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.940600", + "Timestamp": "2024-05-16T06:04:00.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.350100", - "Timestamp": "2019-10-15T21:15:30.000Z" + "SpotPrice": "0.338100", + "Timestamp": "2024-05-16T06:03:39.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "i2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.290100", - "Timestamp": "2019-10-15T21:15:30.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.333100", + "Timestamp": "2024-05-16T06:03:39.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.290100", - "Timestamp": "2019-10-15T21:15:30.000Z" + "SpotPrice": "0.208100", + "Timestamp": "2024-05-16T06:03:39.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t3.small", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.025100", - "Timestamp": "2019-10-15T21:15:26.000Z" + "SpotPrice": "0.211600", + "Timestamp": "2024-05-16T06:02:56.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t3.small", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.large", "ProductDescription": "Windows", - "SpotPrice": "0.025100", - "Timestamp": "2019-10-15T21:15:26.000Z" + "SpotPrice": "0.109400", + "Timestamp": "2024-05-16T06:02:54.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "t3.small", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.metal", "ProductDescription": "Windows", - "SpotPrice": "0.025100", - "Timestamp": "2019-10-15T21:15:26.000Z" + "SpotPrice": "7.641000", + "Timestamp": "2024-05-16T06:02:39.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.938200", - "Timestamp": "2019-10-15T21:15:18.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t4g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071800", + "Timestamp": "2024-05-16T06:02:29.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t4g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.068100", + "Timestamp": "2024-05-16T06:02:29.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t4g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.011800", + "Timestamp": "2024-05-16T06:02:29.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3a.medium", "ProductDescription": "Windows", - "SpotPrice": "2.938200", - "Timestamp": "2019-10-15T21:15:18.000Z" + "SpotPrice": "0.024500", + "Timestamp": "2024-05-16T06:02:29.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.938200", - "Timestamp": "2019-10-15T21:15:18.000Z" + "SpotPrice": "3.321600", + "Timestamp": "2024-05-16T06:02:21.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "a1.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067500", - "Timestamp": "2019-10-15T21:14:19.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.940600", + "Timestamp": "2024-05-16T06:02:00.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "a1.medium", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067500", - "Timestamp": "2019-10-15T21:14:19.000Z" + "SpotPrice": "0.209600", + "Timestamp": "2024-05-16T06:01:48.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "a1.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007500", - "Timestamp": "2019-10-15T21:14:19.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.204600", + "Timestamp": "2024-05-16T06:01:48.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "a1.medium", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007500", - "Timestamp": "2019-10-15T21:14:19.000Z" + "SpotPrice": "0.079600", + "Timestamp": "2024-05-16T06:01:48.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t3.small", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-15T21:14:05.000Z" + "SpotPrice": "0.335700", + "Timestamp": "2024-05-16T06:01:48.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "t3.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-15T21:14:05.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.330700", + "Timestamp": "2024-05-16T06:01:48.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t3.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.066700", - "Timestamp": "2019-10-15T21:14:05.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.205700", + "Timestamp": "2024-05-16T06:01:48.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006700", - "Timestamp": "2019-10-15T21:14:05.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.143300", + "Timestamp": "2024-05-16T06:01:44.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006700", - "Timestamp": "2019-10-15T21:14:05.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.139300", + "Timestamp": "2024-05-16T06:01:44.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t3.small", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.006700", - "Timestamp": "2019-10-15T21:14:05.000Z" + "SpotPrice": "0.083300", + "Timestamp": "2024-05-16T06:01:44.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.554800", - "Timestamp": "2019-10-15T21:13:36.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.433600", + "Timestamp": "2024-05-16T06:01:44.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.554800", - "Timestamp": "2019-10-15T21:13:36.000Z" + "SpotPrice": "0.173500", + "Timestamp": "2024-05-16T06:01:43.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.554800", - "Timestamp": "2019-10-15T21:13:36.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169800", + "Timestamp": "2024-05-16T06:01:43.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.424800", - "Timestamp": "2019-10-15T21:13:36.000Z" + "SpotPrice": "0.113500", + "Timestamp": "2024-05-16T06:01:43.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.424800", - "Timestamp": "2019-10-15T21:13:36.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440000", + "Timestamp": "2024-05-16T06:01:41.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.424800", - "Timestamp": "2019-10-15T21:13:36.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.688000", + "Timestamp": "2024-05-16T06:01:39.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.160800", - "Timestamp": "2019-10-15T21:13:35.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.683000", + "Timestamp": "2024-05-16T06:01:39.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.160800", - "Timestamp": "2019-10-15T21:13:35.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.558000", + "Timestamp": "2024-05-16T06:01:39.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.160800", - "Timestamp": "2019-10-15T21:13:35.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.233400", + "Timestamp": "2024-05-16T06:01:38.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.571500", - "Timestamp": "2019-10-15T21:10:24.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "inf2.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.203400", + "Timestamp": "2024-05-16T06:01:38.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "inf2.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.441500", - "Timestamp": "2019-10-15T21:10:24.000Z" + "SpotPrice": "1.103400", + "Timestamp": "2024-05-16T06:01:38.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.097500", - "Timestamp": "2019-10-15T21:10:18.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.563300", + "Timestamp": "2024-05-16T06:01:37.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.097500", - "Timestamp": "2019-10-15T21:10:18.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.558300", + "Timestamp": "2024-05-16T06:01:37.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.177600", - "Timestamp": "2019-10-15T21:07:53.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.433300", + "Timestamp": "2024-05-16T06:01:37.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.177600", - "Timestamp": "2019-10-15T21:07:53.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.393200", + "Timestamp": "2024-05-16T06:01:36.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.177600", - "Timestamp": "2019-10-15T21:07:53.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.363200", + "Timestamp": "2024-05-16T06:01:36.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.263200", + "Timestamp": "2024-05-16T06:01:36.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.651600", - "Timestamp": "2019-10-15T21:07:44.000Z" + "SpotPrice": "3.485800", + "Timestamp": "2024-05-16T06:01:35.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.455800", + "Timestamp": "2024-05-16T06:01:35.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.521600", - "Timestamp": "2019-10-15T21:07:44.000Z" + "SpotPrice": "3.355800", + "Timestamp": "2024-05-16T06:01:35.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5d.metal", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.389600", - "Timestamp": "2019-10-15T21:07:36.000Z" + "SpotPrice": "1.760000", + "Timestamp": "2024-05-16T06:01:33.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.389600", - "Timestamp": "2019-10-15T21:07:36.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "5.899100", + "Timestamp": "2024-05-16T06:01:32.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.389600", - "Timestamp": "2019-10-15T21:07:36.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "5.894100", + "Timestamp": "2024-05-16T06:01:32.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.103600", - "Timestamp": "2019-10-15T21:07:35.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "5.769100", + "Timestamp": "2024-05-16T06:01:32.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5d.metal", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.103600", - "Timestamp": "2019-10-15T21:07:35.000Z" + "SpotPrice": "1.109200", + "Timestamp": "2024-05-16T06:01:30.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.103600", - "Timestamp": "2019-10-15T21:07:35.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.104200", + "Timestamp": "2024-05-16T06:01:30.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5d.metal", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.973600", - "Timestamp": "2019-10-15T21:07:35.000Z" + "SpotPrice": "0.979200", + "Timestamp": "2024-05-16T06:01:30.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.973600", - "Timestamp": "2019-10-15T21:07:35.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.716000", + "Timestamp": "2024-05-16T06:01:29.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5d.metal", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.711000", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.973600", - "Timestamp": "2019-10-15T21:07:35.000Z" + "SpotPrice": "2.586000", + "Timestamp": "2024-05-16T06:01:29.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.389600", - "Timestamp": "2019-10-15T21:07:26.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.328700", + "Timestamp": "2024-05-16T06:01:29.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.389600", - "Timestamp": "2019-10-15T21:07:26.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323700", + "Timestamp": "2024-05-16T06:01:29.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.389600", - "Timestamp": "2019-10-15T21:07:26.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.198700", + "Timestamp": "2024-05-16T06:01:29.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123700", - "Timestamp": "2019-10-15T21:07:26.000Z" + "SpotPrice": "1.825900", + "Timestamp": "2024-05-16T06:01:29.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.820900", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063700", - "Timestamp": "2019-10-15T21:07:26.000Z" + "SpotPrice": "1.695900", + "Timestamp": "2024-05-16T06:01:29.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r3.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.257500", - "Timestamp": "2019-10-15T21:07:22.000Z" + "SpotPrice": "0.409900", + "Timestamp": "2024-05-16T06:01:29.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.257500", - "Timestamp": "2019-10-15T21:07:22.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.379900", + "Timestamp": "2024-05-16T06:01:29.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.279900", + "Timestamp": "2024-05-16T06:01:29.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.702700", + "Timestamp": "2024-05-16T06:01:28.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.257500", - "Timestamp": "2019-10-15T21:07:22.000Z" + "SpotPrice": "2.268200", + "Timestamp": "2024-05-16T06:01:25.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.127500", - "Timestamp": "2019-10-15T21:07:22.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.263200", + "Timestamp": "2024-05-16T06:01:25.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.127500", - "Timestamp": "2019-10-15T21:07:22.000Z" + "SpotPrice": "2.138200", + "Timestamp": "2024-05-16T06:01:25.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.127500", - "Timestamp": "2019-10-15T21:07:22.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m2.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.562500", + "Timestamp": "2024-05-16T06:01:25.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.metal", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.103600", - "Timestamp": "2019-10-15T21:07:18.000Z" + "SpotPrice": "0.150100", + "Timestamp": "2024-05-16T06:01:22.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5.metal", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146400", + "Timestamp": "2024-05-16T06:01:22.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090100", + "Timestamp": "2024-05-16T06:01:22.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.103600", - "Timestamp": "2019-10-15T21:07:18.000Z" + "SpotPrice": "0.193300", + "Timestamp": "2024-05-16T06:01:22.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5.metal", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.103600", - "Timestamp": "2019-10-15T21:07:18.000Z" + "SpotPrice": "0.170900", + "Timestamp": "2024-05-16T06:01:22.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.973600", - "Timestamp": "2019-10-15T21:07:18.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.189600", + "Timestamp": "2024-05-16T06:01:22.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.973600", - "Timestamp": "2019-10-15T21:07:18.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.167200", + "Timestamp": "2024-05-16T06:01:22.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5.metal", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.973600", - "Timestamp": "2019-10-15T21:07:18.000Z" + "SpotPrice": "0.133300", + "Timestamp": "2024-05-16T06:01:22.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.863900", - "Timestamp": "2019-10-15T21:07:13.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110900", + "Timestamp": "2024-05-16T06:01:22.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.large", "ProductDescription": "Windows", - "SpotPrice": "0.863900", - "Timestamp": "2019-10-15T21:07:13.000Z" + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T06:01:21.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.large", "ProductDescription": "Windows", - "SpotPrice": "0.863900", - "Timestamp": "2019-10-15T21:07:13.000Z" + "SpotPrice": "0.107300", + "Timestamp": "2024-05-16T06:01:21.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.660000", - "Timestamp": "2019-10-15T21:07:09.000Z" + "SpotPrice": "0.380700", + "Timestamp": "2024-05-16T06:01:16.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.660000", - "Timestamp": "2019-10-15T21:07:09.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.350700", + "Timestamp": "2024-05-16T06:01:16.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.530000", - "Timestamp": "2019-10-15T21:07:09.000Z" + "SpotPrice": "0.250700", + "Timestamp": "2024-05-16T06:01:16.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.530000", - "Timestamp": "2019-10-15T21:07:09.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.261300", + "Timestamp": "2024-05-16T06:01:16.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.247700", - "Timestamp": "2019-10-15T21:07:09.000Z" + "SpotPrice": "5.055000", + "Timestamp": "2024-05-16T06:01:10.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247700", - "Timestamp": "2019-10-15T21:07:09.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.400100", + "Timestamp": "2024-05-16T06:01:08.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247700", - "Timestamp": "2019-10-15T21:07:09.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.395100", + "Timestamp": "2024-05-16T06:01:08.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.625900", - "Timestamp": "2019-10-15T21:07:08.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.270100", + "Timestamp": "2024-05-16T06:01:08.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m1.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.625900", - "Timestamp": "2019-10-15T21:07:08.000Z" + "SpotPrice": "0.189900", + "Timestamp": "2024-05-16T06:01:06.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.625900", - "Timestamp": "2019-10-15T21:07:08.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.229900", + "Timestamp": "2024-05-16T06:01:06.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m1.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.495900", - "Timestamp": "2019-10-15T21:07:08.000Z" + "SpotPrice": "0.129900", + "Timestamp": "2024-05-16T06:01:06.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "d2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.495900", - "Timestamp": "2019-10-15T21:07:08.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.571600", + "Timestamp": "2024-05-16T06:01:06.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.566600", + "Timestamp": "2024-05-16T06:01:06.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "d2.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.495900", - "Timestamp": "2019-10-15T21:07:08.000Z" + "SpotPrice": "0.441600", + "Timestamp": "2024-05-16T06:01:06.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.495500", - "Timestamp": "2019-10-15T21:06:45.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.271500", + "Timestamp": "2024-05-16T06:01:04.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.495500", - "Timestamp": "2019-10-15T21:06:45.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.266500", + "Timestamp": "2024-05-16T06:01:04.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.495500", - "Timestamp": "2019-10-15T21:06:45.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.141500", + "Timestamp": "2024-05-16T06:01:04.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5.metal", - "ProductDescription": "Windows", - "SpotPrice": "7.516700", - "Timestamp": "2019-10-15T21:01:34.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.438700", + "Timestamp": "2024-05-16T06:01:00.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.121000", - "Timestamp": "2019-10-15T21:01:09.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.433700", + "Timestamp": "2024-05-16T06:01:00.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.121000", - "Timestamp": "2019-10-15T21:01:09.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.308700", + "Timestamp": "2024-05-16T06:01:00.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.825400", - "Timestamp": "2019-10-15T21:00:54.000Z" + "SpotPrice": "1.157800", + "Timestamp": "2024-05-16T06:00:57.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.825400", - "Timestamp": "2019-10-15T21:00:54.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.152800", + "Timestamp": "2024-05-16T06:00:57.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.825400", - "Timestamp": "2019-10-15T21:00:54.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.027800", + "Timestamp": "2024-05-16T06:00:57.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.695400", - "Timestamp": "2019-10-15T21:00:54.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "3.376000", + "Timestamp": "2024-05-16T06:00:53.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.695400", - "Timestamp": "2019-10-15T21:00:54.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.371000", + "Timestamp": "2024-05-16T06:00:53.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.695400", - "Timestamp": "2019-10-15T21:00:54.000Z" + "SpotPrice": "3.246000", + "Timestamp": "2024-05-16T06:00:53.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t2.large", "ProductDescription": "Windows", - "SpotPrice": "0.121000", - "Timestamp": "2019-10-15T21:00:51.000Z" + "SpotPrice": "0.042900", + "Timestamp": "2024-05-16T05:55:27.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t2.large", "ProductDescription": "Windows", - "SpotPrice": "0.121000", - "Timestamp": "2019-10-15T21:00:51.000Z" + "SpotPrice": "0.042900", + "Timestamp": "2024-05-16T05:55:27.000Z" }, { - "AvailabilityZone": "ap-south-1a", + "AvailabilityZone": "sa-east-1c", "InstanceType": "c5.large", "ProductDescription": "Windows", - "SpotPrice": "0.121000", - "Timestamp": "2019-10-15T21:00:51.000Z" - }, - { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.967800", - "Timestamp": "2019-10-15T21:00:50.000Z" + "SpotPrice": "0.105100", + "Timestamp": "2024-05-16T05:54:31.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.967800", - "Timestamp": "2019-10-15T21:00:50.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.262800", + "Timestamp": "2024-05-16T05:47:31.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.967800", - "Timestamp": "2019-10-15T21:00:50.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.257800", + "Timestamp": "2024-05-16T05:47:31.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.580400", - "Timestamp": "2019-10-15T21:00:50.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.132800", + "Timestamp": "2024-05-16T05:47:31.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.580400", - "Timestamp": "2019-10-15T21:00:50.000Z" + "SpotPrice": "5.380800", + "Timestamp": "2024-05-16T05:47:29.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.580400", - "Timestamp": "2019-10-15T21:00:50.000Z" + "SpotPrice": "3.778600", + "Timestamp": "2024-05-16T05:46:58.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.253200", - "Timestamp": "2019-10-15T21:00:38.000Z" + "SpotPrice": "0.968000", + "Timestamp": "2024-05-16T05:46:57.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.123200", - "Timestamp": "2019-10-15T21:00:38.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.963000", + "Timestamp": "2024-05-16T05:46:57.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.903400", - "Timestamp": "2019-10-15T21:00:36.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.838000", + "Timestamp": "2024-05-16T05:46:57.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g4dn.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.903400", - "Timestamp": "2019-10-15T21:00:36.000Z" + "SpotPrice": "0.495800", + "Timestamp": "2024-05-16T05:46:48.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.903400", - "Timestamp": "2019-10-15T21:00:36.000Z" + "SpotPrice": "0.887200", + "Timestamp": "2024-05-16T05:46:45.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.595200", - "Timestamp": "2019-10-15T21:00:20.000Z" + "SpotPrice": "1.851200", + "Timestamp": "2024-05-16T05:46:40.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "p2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.595200", - "Timestamp": "2019-10-15T21:00:20.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.030600", + "Timestamp": "2024-05-16T05:46:40.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089300", - "Timestamp": "2019-10-15T21:00:07.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.025600", + "Timestamp": "2024-05-16T05:46:40.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m4.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029300", - "Timestamp": "2019-10-15T21:00:07.000Z" + "SpotPrice": "0.900600", + "Timestamp": "2024-05-16T05:46:40.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.199700", - "Timestamp": "2019-10-15T20:53:09.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.866800", + "Timestamp": "2024-05-16T05:46:38.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.069700", - "Timestamp": "2019-10-15T20:53:09.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.730300", + "Timestamp": "2024-05-16T05:46:38.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.707500", - "Timestamp": "2019-10-15T20:45:44.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.725300", + "Timestamp": "2024-05-16T05:46:38.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.577500", - "Timestamp": "2019-10-15T20:45:44.000Z" + "SpotPrice": "0.600300", + "Timestamp": "2024-05-16T05:46:38.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.318400", - "Timestamp": "2019-10-15T20:45:36.000Z" + "SpotPrice": "0.111400", + "Timestamp": "2024-05-16T05:46:37.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.188400", - "Timestamp": "2019-10-15T20:45:36.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-16T05:46:37.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "d2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.581600", - "Timestamp": "2019-10-15T20:42:37.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.051400", + "Timestamp": "2024-05-16T05:46:37.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.658700", - "Timestamp": "2019-10-15T20:28:17.000Z" + "SpotPrice": "0.116700", + "Timestamp": "2024-05-16T05:46:36.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.113000", + "Timestamp": "2024-05-16T05:46:36.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.528700", - "Timestamp": "2019-10-15T20:28:17.000Z" + "SpotPrice": "0.056700", + "Timestamp": "2024-05-16T05:46:36.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.979400", - "Timestamp": "2019-10-15T20:22:05.000Z" + "SpotPrice": "0.457800", + "Timestamp": "2024-05-16T05:46:34.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.979400", - "Timestamp": "2019-10-15T20:22:05.000Z" + "SpotPrice": "7.484800", + "Timestamp": "2024-05-16T05:46:34.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.979400", - "Timestamp": "2019-10-15T20:22:05.000Z" + "SpotPrice": "0.231200", + "Timestamp": "2024-05-16T05:46:33.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.296700", - "Timestamp": "2019-10-15T20:20:35.000Z" + "SpotPrice": "4.015900", + "Timestamp": "2024-05-16T05:46:32.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.010900", + "Timestamp": "2024-05-16T05:46:32.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.166700", - "Timestamp": "2019-10-15T20:20:35.000Z" + "SpotPrice": "3.885900", + "Timestamp": "2024-05-16T05:46:32.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.458500", - "Timestamp": "2019-10-15T20:20:12.000Z" + "SpotPrice": "0.502500", + "Timestamp": "2024-05-16T05:46:31.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.497500", + "Timestamp": "2024-05-16T05:46:31.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.328500", - "Timestamp": "2019-10-15T20:20:12.000Z" + "SpotPrice": "0.372500", + "Timestamp": "2024-05-16T05:46:31.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "a1.metal", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.250100", - "Timestamp": "2019-10-15T20:19:34.000Z" + "SpotPrice": "2.845400", + "Timestamp": "2024-05-16T05:46:31.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "a1.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.120100", - "Timestamp": "2019-10-15T20:19:34.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.840400", + "Timestamp": "2024-05-16T05:46:31.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.122400", - "Timestamp": "2019-10-15T20:13:05.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.715400", + "Timestamp": "2024-05-16T05:46:31.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.122400", - "Timestamp": "2019-10-15T20:13:05.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.123200", + "Timestamp": "2024-05-16T05:46:30.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.322000", - "Timestamp": "2019-10-15T20:12:33.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.119200", + "Timestamp": "2024-05-16T05:46:30.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.192000", - "Timestamp": "2019-10-15T20:12:33.000Z" + "SpotPrice": "0.063200", + "Timestamp": "2024-05-16T05:46:30.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.164600", - "Timestamp": "2019-10-15T20:12:09.000Z" + "SpotPrice": "0.175100", + "Timestamp": "2024-05-16T05:46:29.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.104600", - "Timestamp": "2019-10-15T20:12:09.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.171400", + "Timestamp": "2024-05-16T05:46:29.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.368000", - "Timestamp": "2019-10-15T20:11:57.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3a.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.115100", + "Timestamp": "2024-05-16T05:46:29.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.238000", - "Timestamp": "2019-10-15T20:11:57.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.681600", + "Timestamp": "2024-05-16T05:46:28.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "inf1.6xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.347000", - "Timestamp": "2019-10-15T20:11:38.000Z" + "SpotPrice": "0.356200", + "Timestamp": "2024-05-16T05:46:27.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "p2.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.351200", + "Timestamp": "2024-05-16T05:46:27.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "inf1.6xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.217000", - "Timestamp": "2019-10-15T20:11:38.000Z" + "SpotPrice": "0.226200", + "Timestamp": "2024-05-16T05:46:27.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r4.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090400", - "Timestamp": "2019-10-15T20:10:26.000Z" + "SpotPrice": "0.476600", + "Timestamp": "2024-05-16T05:46:25.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030400", - "Timestamp": "2019-10-15T20:10:26.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.471600", + "Timestamp": "2024-05-16T05:46:25.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.373400", - "Timestamp": "2019-10-15T20:10:11.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.346600", + "Timestamp": "2024-05-16T05:46:25.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.373400", - "Timestamp": "2019-10-15T20:10:11.000Z" + "SpotPrice": "0.318300", + "Timestamp": "2024-05-16T05:46:25.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.243400", - "Timestamp": "2019-10-15T20:10:11.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.313300", + "Timestamp": "2024-05-16T05:46:25.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.243400", - "Timestamp": "2019-10-15T20:10:11.000Z" + "SpotPrice": "0.188300", + "Timestamp": "2024-05-16T05:46:25.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.368300", - "Timestamp": "2019-10-15T20:03:43.000Z" + "SpotPrice": "0.216500", + "Timestamp": "2024-05-16T05:46:24.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.211500", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.238300", - "Timestamp": "2019-10-15T20:03:43.000Z" + "SpotPrice": "0.086500", + "Timestamp": "2024-05-16T05:46:24.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.122000", - "Timestamp": "2019-10-15T20:03:13.000Z" + "SpotPrice": "1.043900", + "Timestamp": "2024-05-16T05:46:24.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.013900", + "Timestamp": "2024-05-16T05:46:24.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.062000", - "Timestamp": "2019-10-15T20:03:13.000Z" + "SpotPrice": "0.913900", + "Timestamp": "2024-05-16T05:46:24.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.258600", - "Timestamp": "2019-10-15T20:01:23.000Z" + "SpotPrice": "0.992600", + "Timestamp": "2024-05-16T05:46:22.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.258600", - "Timestamp": "2019-10-15T20:01:23.000Z" + "SpotPrice": "1.100100", + "Timestamp": "2024-05-16T05:46:22.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.987600", + "Timestamp": "2024-05-16T05:46:22.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.095100", + "Timestamp": "2024-05-16T05:46:22.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.128600", - "Timestamp": "2019-10-15T20:01:23.000Z" + "SpotPrice": "0.862600", + "Timestamp": "2024-05-16T05:46:22.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "4.128600", - "Timestamp": "2019-10-15T20:01:23.000Z" + "SpotPrice": "0.970100", + "Timestamp": "2024-05-16T05:46:22.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows", - "SpotPrice": "10.016600", - "Timestamp": "2019-10-15T20:01:11.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.168100", + "Timestamp": "2024-05-16T05:46:21.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows", - "SpotPrice": "10.016600", - "Timestamp": "2019-10-15T20:01:11.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.208100", + "Timestamp": "2024-05-16T05:46:21.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.829200", - "Timestamp": "2019-10-15T20:00:19.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-16T05:46:21.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.829200", - "Timestamp": "2019-10-15T20:00:19.000Z" + "SpotPrice": "0.173400", + "Timestamp": "2024-05-16T05:46:21.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.829200", - "Timestamp": "2019-10-15T20:00:19.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.169400", + "Timestamp": "2024-05-16T05:46:21.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.699200", - "Timestamp": "2019-10-15T20:00:19.000Z" + "SpotPrice": "0.113400", + "Timestamp": "2024-05-16T05:46:21.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.699200", - "Timestamp": "2019-10-15T20:00:19.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.480000", + "Timestamp": "2024-05-16T05:46:20.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.699200", - "Timestamp": "2019-10-15T20:00:19.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.434000", + "Timestamp": "2024-05-16T05:46:06.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.643200", - "Timestamp": "2019-10-15T20:00:19.000Z" + "SpotPrice": "0.475600", + "Timestamp": "2024-05-16T05:46:00.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.643200", - "Timestamp": "2019-10-15T20:00:19.000Z" + "SpotPrice": "2.226700", + "Timestamp": "2024-05-16T05:45:59.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "i3.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.643200", - "Timestamp": "2019-10-15T20:00:19.000Z" + "SpotPrice": "2.691700", + "Timestamp": "2024-05-16T05:45:55.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.699400", - "Timestamp": "2019-10-15T20:00:18.000Z" + "SpotPrice": "5.059200", + "Timestamp": "2024-05-16T05:44:50.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3en.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.699400", - "Timestamp": "2019-10-15T20:00:18.000Z" + "SpotPrice": "0.512000", + "Timestamp": "2024-05-16T05:32:16.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.163900", - "Timestamp": "2019-10-15T19:55:21.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.749400", + "Timestamp": "2024-05-16T05:31:44.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.103900", - "Timestamp": "2019-10-15T19:55:21.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.690600", + "Timestamp": "2024-05-16T05:31:44.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.341500", - "Timestamp": "2019-10-15T19:55:03.000Z" + "SpotPrice": "0.119700", + "Timestamp": "2024-05-16T05:31:40.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.211500", - "Timestamp": "2019-10-15T19:55:03.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.116000", + "Timestamp": "2024-05-16T05:31:40.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.404700", - "Timestamp": "2019-10-15T19:54:55.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.059700", + "Timestamp": "2024-05-16T05:31:40.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.274700", - "Timestamp": "2019-10-15T19:54:55.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.750700", + "Timestamp": "2024-05-16T05:31:37.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.111100", - "Timestamp": "2019-10-15T19:54:53.000Z" + "SpotPrice": "0.970200", + "Timestamp": "2024-05-16T05:31:37.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.965200", + "Timestamp": "2024-05-16T05:31:37.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.051100", - "Timestamp": "2019-10-15T19:54:53.000Z" + "SpotPrice": "0.840200", + "Timestamp": "2024-05-16T05:31:37.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3en.3xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.694100", - "Timestamp": "2019-10-15T19:47:19.000Z" + "SpotPrice": "0.346000", + "Timestamp": "2024-05-16T05:31:36.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.341000", + "Timestamp": "2024-05-16T05:31:36.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3en.3xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.564100", - "Timestamp": "2019-10-15T19:47:19.000Z" + "SpotPrice": "0.216000", + "Timestamp": "2024-05-16T05:31:36.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.112400", - "Timestamp": "2019-10-15T19:46:21.000Z" + "SpotPrice": "0.096400", + "Timestamp": "2024-05-16T05:31:35.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092700", + "Timestamp": "2024-05-16T05:31:35.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.052400", - "Timestamp": "2019-10-15T19:46:21.000Z" + "SpotPrice": "0.036400", + "Timestamp": "2024-05-16T05:31:35.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.394100", - "Timestamp": "2019-10-15T19:39:04.000Z" + "SpotPrice": "0.165200", + "Timestamp": "2024-05-16T05:31:35.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.264100", - "Timestamp": "2019-10-15T19:39:04.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.161200", + "Timestamp": "2024-05-16T05:31:35.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.128100", - "Timestamp": "2019-10-15T19:38:25.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.105200", + "Timestamp": "2024-05-16T05:31:35.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.068100", - "Timestamp": "2019-10-15T19:38:25.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.187100", + "Timestamp": "2024-05-16T05:31:34.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.576100", - "Timestamp": "2019-10-15T19:38:11.000Z" + "SpotPrice": "0.329900", + "Timestamp": "2024-05-16T05:31:34.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.324900", + "Timestamp": "2024-05-16T05:31:34.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.446100", - "Timestamp": "2019-10-15T19:38:11.000Z" + "SpotPrice": "0.199900", + "Timestamp": "2024-05-16T05:31:34.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.119000", - "Timestamp": "2019-10-15T19:36:48.000Z" + "SpotPrice": "0.764600", + "Timestamp": "2024-05-16T05:31:33.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.734600", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c3.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.059000", - "Timestamp": "2019-10-15T19:36:48.000Z" + "SpotPrice": "0.634600", + "Timestamp": "2024-05-16T05:31:33.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123200", - "Timestamp": "2019-10-15T19:30:27.000Z" + "SpotPrice": "0.199500", + "Timestamp": "2024-05-16T05:31:33.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.195800", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063200", - "Timestamp": "2019-10-15T19:30:27.000Z" + "SpotPrice": "0.139500", + "Timestamp": "2024-05-16T05:31:33.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r3.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089300", - "Timestamp": "2019-10-15T19:25:45.000Z" + "SpotPrice": "1.156900", + "Timestamp": "2024-05-16T05:31:33.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r3.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.151900", + "Timestamp": "2024-05-16T05:31:33.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029300", - "Timestamp": "2019-10-15T19:25:45.000Z" + "SpotPrice": "1.026900", + "Timestamp": "2024-05-16T05:31:33.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.311900", - "Timestamp": "2019-10-15T19:21:25.000Z" + "SpotPrice": "1.245500", + "Timestamp": "2024-05-16T05:31:32.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.240500", + "Timestamp": "2024-05-16T05:31:32.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.181900", - "Timestamp": "2019-10-15T19:21:25.000Z" + "SpotPrice": "1.115500", + "Timestamp": "2024-05-16T05:31:32.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.166100", - "Timestamp": "2019-10-15T19:14:00.000Z" + "SpotPrice": "0.625900", + "Timestamp": "2024-05-16T05:31:30.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.595900", + "Timestamp": "2024-05-16T05:31:30.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.036100", - "Timestamp": "2019-10-15T19:14:00.000Z" + "SpotPrice": "0.495900", + "Timestamp": "2024-05-16T05:31:30.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i-flex.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.261900", - "Timestamp": "2019-10-15T19:13:33.000Z" + "SpotPrice": "0.920100", + "Timestamp": "2024-05-16T05:31:28.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.915100", + "Timestamp": "2024-05-16T05:31:28.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i-flex.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.131900", - "Timestamp": "2019-10-15T19:13:33.000Z" + "SpotPrice": "0.790100", + "Timestamp": "2024-05-16T05:31:28.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "16.145700", + "Timestamp": "2024-05-16T05:31:26.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.424400", - "Timestamp": "2019-10-15T19:13:29.000Z" + "SpotPrice": "0.428400", + "Timestamp": "2024-05-16T05:31:25.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.423400", + "Timestamp": "2024-05-16T05:31:25.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.294400", - "Timestamp": "2019-10-15T19:13:29.000Z" + "SpotPrice": "0.298400", + "Timestamp": "2024-05-16T05:31:25.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.374900", - "Timestamp": "2019-10-15T19:13:26.000Z" + "SpotPrice": "0.446600", + "Timestamp": "2024-05-16T05:31:25.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.441600", + "Timestamp": "2024-05-16T05:31:25.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.244900", - "Timestamp": "2019-10-15T19:13:26.000Z" + "SpotPrice": "0.316600", + "Timestamp": "2024-05-16T05:31:25.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.693000", + "Timestamp": "2024-05-16T05:31:24.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.363500", - "Timestamp": "2019-10-15T19:13:25.000Z" + "SpotPrice": "1.206000", + "Timestamp": "2024-05-16T05:31:23.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.201000", + "Timestamp": "2024-05-16T05:31:23.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.233500", - "Timestamp": "2019-10-15T19:13:25.000Z" + "SpotPrice": "1.076000", + "Timestamp": "2024-05-16T05:31:23.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.264800", - "Timestamp": "2019-10-15T19:13:16.000Z" + "SpotPrice": "0.158800", + "Timestamp": "2024-05-16T05:31:21.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154800", + "Timestamp": "2024-05-16T05:31:21.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.134800", - "Timestamp": "2019-10-15T19:13:16.000Z" + "SpotPrice": "0.098800", + "Timestamp": "2024-05-16T05:31:21.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.866700", - "Timestamp": "2019-10-15T19:13:08.000Z" + "SpotPrice": "0.197600", + "Timestamp": "2024-05-16T05:31:20.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193600", + "Timestamp": "2024-05-16T05:31:20.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.736700", - "Timestamp": "2019-10-15T19:13:08.000Z" + "SpotPrice": "0.137600", + "Timestamp": "2024-05-16T05:31:20.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.099900", - "Timestamp": "2019-10-15T19:12:55.000Z" + "SpotPrice": "0.091400", + "Timestamp": "2024-05-16T05:31:18.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.087700", + "Timestamp": "2024-05-16T05:31:18.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.039900", - "Timestamp": "2019-10-15T19:12:55.000Z" + "SpotPrice": "0.031400", + "Timestamp": "2024-05-16T05:31:18.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.895000", - "Timestamp": "2019-10-15T19:10:50.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.044800", + "Timestamp": "2024-05-16T05:31:10.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.895000", - "Timestamp": "2019-10-15T19:10:50.000Z" + "SpotPrice": "0.116300", + "Timestamp": "2024-05-16T05:31:07.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.895000", - "Timestamp": "2019-10-15T19:10:50.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.112300", + "Timestamp": "2024-05-16T05:31:07.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.765000", - "Timestamp": "2019-10-15T19:10:50.000Z" + "SpotPrice": "0.056300", + "Timestamp": "2024-05-16T05:31:07.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.765000", - "Timestamp": "2019-10-15T19:10:50.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.776800", + "Timestamp": "2024-05-16T05:30:56.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.135800", + "Timestamp": "2024-05-16T05:30:49.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.131800", + "Timestamp": "2024-05-16T05:30:49.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.765000", - "Timestamp": "2019-10-15T19:10:50.000Z" + "SpotPrice": "0.075800", + "Timestamp": "2024-05-16T05:30:49.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3en.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.973000", - "Timestamp": "2019-10-15T19:10:45.000Z" + "SpotPrice": "6.144000", + "Timestamp": "2024-05-16T05:17:04.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.metal", "ProductDescription": "Windows", - "SpotPrice": "2.973000", - "Timestamp": "2019-10-15T19:10:45.000Z" + "SpotPrice": "5.150400", + "Timestamp": "2024-05-16T05:17:02.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.973000", - "Timestamp": "2019-10-15T19:10:45.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.469300", + "Timestamp": "2024-05-16T05:16:42.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.934600", - "Timestamp": "2019-10-15T19:10:21.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.464300", + "Timestamp": "2024-05-16T05:16:42.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.934600", - "Timestamp": "2019-10-15T19:10:21.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.339300", + "Timestamp": "2024-05-16T05:16:42.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6gd.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.250800", - "Timestamp": "2019-10-15T19:05:29.000Z" + "SpotPrice": "0.622800", + "Timestamp": "2024-05-16T05:16:39.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.617800", + "Timestamp": "2024-05-16T05:16:39.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.120800", - "Timestamp": "2019-10-15T19:05:29.000Z" + "SpotPrice": "0.492800", + "Timestamp": "2024-05-16T05:16:39.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.652800", - "Timestamp": "2019-10-15T18:56:48.000Z" + "SpotPrice": "2.090500", + "Timestamp": "2024-05-16T05:16:39.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.9xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.060500", + "Timestamp": "2024-05-16T05:16:39.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.522800", - "Timestamp": "2019-10-15T18:56:48.000Z" + "SpotPrice": "1.960500", + "Timestamp": "2024-05-16T05:16:39.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5a.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.369500", - "Timestamp": "2019-10-15T18:56:46.000Z" + "SpotPrice": "0.187100", + "Timestamp": "2024-05-16T05:16:38.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.183100", + "Timestamp": "2024-05-16T05:16:38.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.239500", - "Timestamp": "2019-10-15T18:56:46.000Z" + "SpotPrice": "0.127100", + "Timestamp": "2024-05-16T05:16:38.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.285400", - "Timestamp": "2019-10-15T18:56:30.000Z" + "SpotPrice": "1.524000", + "Timestamp": "2024-05-16T05:16:36.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.714500", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.519000", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.709500", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.155400", - "Timestamp": "2019-10-15T18:56:30.000Z" + "SpotPrice": "1.394000", + "Timestamp": "2024-05-16T05:16:36.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.584500", + "Timestamp": "2024-05-16T05:16:36.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.280800", - "Timestamp": "2019-10-15T18:56:29.000Z" + "SpotPrice": "2.339300", + "Timestamp": "2024-05-16T05:16:35.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.334300", + "Timestamp": "2024-05-16T05:16:35.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.150800", - "Timestamp": "2019-10-15T18:56:29.000Z" + "SpotPrice": "2.209300", + "Timestamp": "2024-05-16T05:16:35.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.148600", - "Timestamp": "2019-10-15T18:48:46.000Z" + "SpotPrice": "1.124100", + "Timestamp": "2024-05-16T05:16:34.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.119100", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.088600", - "Timestamp": "2019-10-15T18:48:46.000Z" + "SpotPrice": "0.994100", + "Timestamp": "2024-05-16T05:16:34.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5n.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432500", + "Timestamp": "2024-05-16T05:16:34.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089000", - "Timestamp": "2019-10-15T18:48:45.000Z" + "SpotPrice": "3.240500", + "Timestamp": "2024-05-16T05:16:32.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.235500", + "Timestamp": "2024-05-16T05:16:32.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5n.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029000", - "Timestamp": "2019-10-15T18:48:45.000Z" + "SpotPrice": "3.110500", + "Timestamp": "2024-05-16T05:16:32.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.601600", - "Timestamp": "2019-10-15T18:48:36.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.448400", + "Timestamp": "2024-05-16T05:16:31.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.471600", - "Timestamp": "2019-10-15T18:48:36.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429500", + "Timestamp": "2024-05-16T05:16:29.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.625600", - "Timestamp": "2019-10-15T18:48:35.000Z" + "SpotPrice": "2.243200", + "Timestamp": "2024-05-16T05:16:29.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "p2.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.238200", + "Timestamp": "2024-05-16T05:16:29.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.565600", - "Timestamp": "2019-10-15T18:48:35.000Z" + "SpotPrice": "2.113200", + "Timestamp": "2024-05-16T05:16:29.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m4.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090400", - "Timestamp": "2019-10-15T18:48:25.000Z" + "SpotPrice": "0.332900", + "Timestamp": "2024-05-16T05:16:25.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030400", - "Timestamp": "2019-10-15T18:48:25.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.302900", + "Timestamp": "2024-05-16T05:16:25.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.797400", - "Timestamp": "2019-10-15T18:48:03.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.202900", + "Timestamp": "2024-05-16T05:16:25.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.667400", - "Timestamp": "2019-10-15T18:48:03.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.140400", + "Timestamp": "2024-05-16T05:16:25.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.593700", - "Timestamp": "2019-10-15T18:47:49.000Z" + "SpotPrice": "0.204700", + "Timestamp": "2024-05-16T05:16:25.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "i3.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.200700", + "Timestamp": "2024-05-16T05:16:25.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.463700", - "Timestamp": "2019-10-15T18:47:49.000Z" + "SpotPrice": "0.144700", + "Timestamp": "2024-05-16T05:16:25.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.031800", - "Timestamp": "2019-10-15T18:40:05.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.283100", + "Timestamp": "2024-05-16T05:16:24.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "t3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.031800", - "Timestamp": "2019-10-15T18:40:05.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.242200", + "Timestamp": "2024-05-16T05:16:24.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.031800", - "Timestamp": "2019-10-15T18:40:05.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.253100", + "Timestamp": "2024-05-16T05:16:24.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093500", - "Timestamp": "2019-10-15T18:39:41.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.212200", + "Timestamp": "2024-05-16T05:16:24.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r4.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r4.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033500", - "Timestamp": "2019-10-15T18:39:41.000Z" + "SpotPrice": "0.153100", + "Timestamp": "2024-05-16T05:16:24.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.073400", - "Timestamp": "2019-10-15T18:38:44.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r4.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112200", + "Timestamp": "2024-05-16T05:16:24.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "t3.medium", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.073400", - "Timestamp": "2019-10-15T18:38:44.000Z" + "SpotPrice": "0.576000", + "Timestamp": "2024-05-16T05:16:24.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.073400", - "Timestamp": "2019-10-15T18:38:44.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.571000", + "Timestamp": "2024-05-16T05:16:24.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t3.medium", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.013400", - "Timestamp": "2019-10-15T18:38:44.000Z" + "SpotPrice": "0.446000", + "Timestamp": "2024-05-16T05:16:24.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.013400", - "Timestamp": "2019-10-15T18:38:44.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.376300", + "Timestamp": "2024-05-16T05:16:24.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.013400", - "Timestamp": "2019-10-15T18:38:44.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.371300", + "Timestamp": "2024-05-16T05:16:24.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t2.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.064300", - "Timestamp": "2019-10-15T18:36:47.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.246300", + "Timestamp": "2024-05-16T05:16:24.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t2.micro", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.064300", - "Timestamp": "2019-10-15T18:36:47.000Z" + "SpotPrice": "0.331700", + "Timestamp": "2024-05-16T05:16:24.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t2.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.004300", - "Timestamp": "2019-10-15T18:36:47.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.326700", + "Timestamp": "2024-05-16T05:16:24.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t2.micro", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.004300", - "Timestamp": "2019-10-15T18:36:47.000Z" + "SpotPrice": "0.201700", + "Timestamp": "2024-05-16T05:16:24.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t2.micro", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.9xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.008900", - "Timestamp": "2019-10-15T18:36:47.000Z" + "SpotPrice": "1.954800", + "Timestamp": "2024-05-16T05:16:19.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t2.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.008900", - "Timestamp": "2019-10-15T18:36:47.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.525200", + "Timestamp": "2024-05-16T05:16:19.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.248800", - "Timestamp": "2019-10-15T18:14:39.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.3xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.520200", + "Timestamp": "2024-05-16T05:16:19.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.3xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.118800", - "Timestamp": "2019-10-15T18:14:39.000Z" + "SpotPrice": "0.395200", + "Timestamp": "2024-05-16T05:16:19.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r3.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089700", - "Timestamp": "2019-10-15T18:06:47.000Z" + "SpotPrice": "0.323400", + "Timestamp": "2024-05-16T05:16:16.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r3.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.318400", + "Timestamp": "2024-05-16T05:16:16.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029700", - "Timestamp": "2019-10-15T18:06:47.000Z" + "SpotPrice": "0.193400", + "Timestamp": "2024-05-16T05:16:16.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.173200", - "Timestamp": "2019-10-15T17:34:04.000Z" + "SpotPrice": "3.403000", + "Timestamp": "2024-05-16T05:16:08.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.173200", - "Timestamp": "2019-10-15T17:34:04.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.373000", + "Timestamp": "2024-05-16T05:16:08.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "3.273000", + "Timestamp": "2024-05-16T05:16:08.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.173200", - "Timestamp": "2019-10-15T17:34:04.000Z" + "SpotPrice": "0.129700", + "Timestamp": "2024-05-16T05:16:07.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.043200", - "Timestamp": "2019-10-15T17:34:04.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125700", + "Timestamp": "2024-05-16T05:16:07.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5n.18xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.043200", - "Timestamp": "2019-10-15T17:34:04.000Z" + "SpotPrice": "0.069700", + "Timestamp": "2024-05-16T05:16:07.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5n.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.043200", - "Timestamp": "2019-10-15T17:34:04.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.238800", + "Timestamp": "2024-05-16T05:16:06.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t2.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.140300", - "Timestamp": "2019-10-15T17:32:49.000Z" + "SpotPrice": "0.137400", + "Timestamp": "2024-05-16T05:15:59.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177400", + "Timestamp": "2024-05-16T05:15:59.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t2.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.080300", - "Timestamp": "2019-10-15T17:32:49.000Z" + "SpotPrice": "0.077400", + "Timestamp": "2024-05-16T05:15:59.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.131200", - "Timestamp": "2019-10-15T17:16:43.000Z" + "SpotPrice": "0.593100", + "Timestamp": "2024-05-16T05:15:57.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.588100", + "Timestamp": "2024-05-16T05:15:57.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.071200", - "Timestamp": "2019-10-15T17:16:43.000Z" + "SpotPrice": "0.463100", + "Timestamp": "2024-05-16T05:15:57.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.419500", - "Timestamp": "2019-10-15T17:12:19.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.145700", + "Timestamp": "2024-05-16T05:15:57.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.419500", - "Timestamp": "2019-10-15T17:12:19.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.141700", + "Timestamp": "2024-05-16T05:15:57.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.254700", - "Timestamp": "2019-10-15T17:09:27.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085700", + "Timestamp": "2024-05-16T05:15:57.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.254700", - "Timestamp": "2019-10-15T17:09:27.000Z" + "SpotPrice": "2.784300", + "Timestamp": "2024-05-16T05:15:56.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m3.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.254700", - "Timestamp": "2019-10-15T17:09:27.000Z" + "SpotPrice": "0.290100", + "Timestamp": "2024-05-16T05:02:32.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.290200", - "Timestamp": "2019-10-15T17:09:22.000Z" + "SpotPrice": "6.867200", + "Timestamp": "2024-05-16T05:02:29.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.290200", - "Timestamp": "2019-10-15T17:09:22.000Z" + "SpotPrice": "4.982400", + "Timestamp": "2024-05-16T05:02:25.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i-flex.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.290200", - "Timestamp": "2019-10-15T17:09:22.000Z" + "SpotPrice": "1.607500", + "Timestamp": "2024-05-16T05:01:58.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.237500", - "Timestamp": "2019-10-15T17:09:03.000Z" + "SpotPrice": "0.797900", + "Timestamp": "2024-05-16T05:01:57.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.237500", - "Timestamp": "2019-10-15T17:09:03.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.792900", + "Timestamp": "2024-05-16T05:01:57.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.237500", - "Timestamp": "2019-10-15T17:09:03.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.667900", + "Timestamp": "2024-05-16T05:01:57.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.107500", - "Timestamp": "2019-10-15T17:09:03.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.374900", + "Timestamp": "2024-05-16T05:01:52.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.107500", - "Timestamp": "2019-10-15T17:09:03.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.369900", + "Timestamp": "2024-05-16T05:01:52.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.107500", - "Timestamp": "2019-10-15T17:09:03.000Z" + "SpotPrice": "0.244900", + "Timestamp": "2024-05-16T05:01:52.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.915400", - "Timestamp": "2019-10-15T17:08:58.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.273000", + "Timestamp": "2024-05-16T05:01:49.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.915400", - "Timestamp": "2019-10-15T17:08:58.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.218200", + "Timestamp": "2024-05-16T05:01:49.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.101400", - "Timestamp": "2019-10-15T17:08:19.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.268000", + "Timestamp": "2024-05-16T05:01:49.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.101400", - "Timestamp": "2019-10-15T17:08:19.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.213200", + "Timestamp": "2024-05-16T05:01:49.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.971400", - "Timestamp": "2019-10-15T17:08:19.000Z" + "SpotPrice": "0.143000", + "Timestamp": "2024-05-16T05:01:49.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.971400", - "Timestamp": "2019-10-15T17:08:19.000Z" + "SpotPrice": "0.088200", + "Timestamp": "2024-05-16T05:01:49.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.166200", - "Timestamp": "2019-10-15T17:08:12.000Z" + "SpotPrice": "0.494900", + "Timestamp": "2024-05-16T05:01:49.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.166200", - "Timestamp": "2019-10-15T17:08:12.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.464900", + "Timestamp": "2024-05-16T05:01:49.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.106200", - "Timestamp": "2019-10-15T17:08:12.000Z" + "SpotPrice": "0.364900", + "Timestamp": "2024-05-16T05:01:49.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.106200", - "Timestamp": "2019-10-15T17:08:12.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.129000", + "Timestamp": "2024-05-16T05:01:39.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.102600", - "Timestamp": "2019-10-15T17:07:43.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125000", + "Timestamp": "2024-05-16T05:01:39.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.042600", - "Timestamp": "2019-10-15T17:07:43.000Z" + "SpotPrice": "0.069000", + "Timestamp": "2024-05-16T05:01:39.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "a1.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.250100", - "Timestamp": "2019-10-15T17:06:36.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.692300", + "Timestamp": "2024-05-16T05:01:36.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "a1.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.868000", + "Timestamp": "2024-05-16T05:01:36.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.250100", - "Timestamp": "2019-10-15T17:06:36.000Z" + "SpotPrice": "1.450500", + "Timestamp": "2024-05-16T05:01:34.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "a1.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.445500", + "Timestamp": "2024-05-16T05:01:34.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.120100", - "Timestamp": "2019-10-15T17:06:36.000Z" + "SpotPrice": "1.320500", + "Timestamp": "2024-05-16T05:01:34.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "a1.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.289700", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.284700", + "Timestamp": "2024-05-16T05:01:32.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.120100", - "Timestamp": "2019-10-15T17:06:36.000Z" + "SpotPrice": "1.159700", + "Timestamp": "2024-05-16T05:01:32.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c4.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3.large", "ProductDescription": "Windows", - "SpotPrice": "0.119600", - "Timestamp": "2019-10-15T17:06:22.000Z" + "SpotPrice": "0.041200", + "Timestamp": "2024-05-16T05:01:31.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c4.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.119600", - "Timestamp": "2019-10-15T17:06:22.000Z" + "SpotPrice": "7.187900", + "Timestamp": "2024-05-16T05:01:31.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5d.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090400", - "Timestamp": "2019-10-15T17:06:12.000Z" + "SpotPrice": "0.567700", + "Timestamp": "2024-05-16T05:01:30.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090400", - "Timestamp": "2019-10-15T17:06:12.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.562700", + "Timestamp": "2024-05-16T05:01:30.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5d.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.437700", + "Timestamp": "2024-05-16T05:01:30.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090400", - "Timestamp": "2019-10-15T17:06:12.000Z" + "SpotPrice": "0.129100", + "Timestamp": "2024-05-16T05:01:29.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030400", - "Timestamp": "2019-10-15T17:06:12.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.125400", + "Timestamp": "2024-05-16T05:01:29.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5d.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030400", - "Timestamp": "2019-10-15T17:06:12.000Z" + "SpotPrice": "0.069100", + "Timestamp": "2024-05-16T05:01:29.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030400", - "Timestamp": "2019-10-15T17:06:12.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.846100", + "Timestamp": "2024-05-16T05:01:29.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5zn.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.660000", - "Timestamp": "2019-10-15T17:06:07.000Z" + "SpotPrice": "0.761800", + "Timestamp": "2024-05-16T05:01:29.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.660000", - "Timestamp": "2019-10-15T17:06:07.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.756800", + "Timestamp": "2024-05-16T05:01:29.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5zn.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.631800", + "Timestamp": "2024-05-16T05:01:29.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m3.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.660000", - "Timestamp": "2019-10-15T17:06:07.000Z" + "SpotPrice": "0.089400", + "Timestamp": "2024-05-16T05:01:27.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.530000", - "Timestamp": "2019-10-15T17:06:07.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.129400", + "Timestamp": "2024-05-16T05:01:27.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m3.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.530000", - "Timestamp": "2019-10-15T17:06:07.000Z" + "SpotPrice": "0.029400", + "Timestamp": "2024-05-16T05:01:27.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.530000", - "Timestamp": "2019-10-15T17:06:07.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.119400", + "Timestamp": "2024-05-16T05:01:26.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c4.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.088300", - "Timestamp": "2019-10-15T17:06:07.000Z" + "SpotPrice": "2.721200", + "Timestamp": "2024-05-16T05:01:25.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c4.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.716200", + "Timestamp": "2024-05-16T05:01:25.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.028300", - "Timestamp": "2019-10-15T17:06:07.000Z" + "SpotPrice": "2.591200", + "Timestamp": "2024-05-16T05:01:25.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.122400", - "Timestamp": "2019-10-15T17:06:04.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.761000", + "Timestamp": "2024-05-16T05:01:25.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.122400", - "Timestamp": "2019-10-15T17:06:04.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.756000", + "Timestamp": "2024-05-16T05:01:25.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.122400", - "Timestamp": "2019-10-15T17:06:04.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.631000", + "Timestamp": "2024-05-16T05:01:25.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.946000", - "Timestamp": "2019-10-15T17:05:54.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "4.627900", + "Timestamp": "2024-05-16T05:01:24.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.946000", - "Timestamp": "2019-10-15T17:05:54.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.622900", + "Timestamp": "2024-05-16T05:01:24.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.946000", - "Timestamp": "2019-10-15T17:05:54.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "4.497900", + "Timestamp": "2024-05-16T05:01:24.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.247700", - "Timestamp": "2019-10-15T17:01:33.000Z" + "SpotPrice": "0.902400", + "Timestamp": "2024-05-16T05:01:24.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247700", - "Timestamp": "2019-10-15T17:01:33.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.381700", + "Timestamp": "2024-05-16T05:01:22.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.247700", - "Timestamp": "2019-10-15T17:01:33.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.351700", + "Timestamp": "2024-05-16T05:01:22.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.251700", + "Timestamp": "2024-05-16T05:01:22.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.118000", - "Timestamp": "2019-10-15T17:01:19.000Z" + "SpotPrice": "1.000100", + "Timestamp": "2024-05-16T05:01:19.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.995100", + "Timestamp": "2024-05-16T05:01:19.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.058000", - "Timestamp": "2019-10-15T17:01:19.000Z" + "SpotPrice": "0.870100", + "Timestamp": "2024-05-16T05:01:19.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.242000", - "Timestamp": "2019-10-15T17:00:58.000Z" + "SpotPrice": "1.804800", + "Timestamp": "2024-05-16T05:01:17.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.242000", - "Timestamp": "2019-10-15T17:00:58.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.202200", + "Timestamp": "2024-05-16T05:01:14.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.242000", - "Timestamp": "2019-10-15T17:00:58.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.198200", + "Timestamp": "2024-05-16T05:01:14.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123700", - "Timestamp": "2019-10-15T17:00:49.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.142200", + "Timestamp": "2024-05-16T05:01:14.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.123700", - "Timestamp": "2019-10-15T17:00:49.000Z" + "SpotPrice": "0.090600", + "Timestamp": "2024-05-16T05:01:13.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063700", - "Timestamp": "2019-10-15T17:00:49.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.086900", + "Timestamp": "2024-05-16T05:01:13.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.063700", - "Timestamp": "2019-10-15T17:00:49.000Z" + "SpotPrice": "0.030600", + "Timestamp": "2024-05-16T05:01:13.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123900", - "Timestamp": "2019-10-15T17:00:36.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095900", + "Timestamp": "2024-05-16T05:01:11.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123900", - "Timestamp": "2019-10-15T17:00:36.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135900", + "Timestamp": "2024-05-16T05:01:11.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123900", - "Timestamp": "2019-10-15T17:00:36.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035900", + "Timestamp": "2024-05-16T05:01:11.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.361800", - "Timestamp": "2019-10-15T17:00:33.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.726400", + "Timestamp": "2024-05-16T05:01:10.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.361800", - "Timestamp": "2019-10-15T17:00:33.000Z" + "SpotPrice": "0.339900", + "Timestamp": "2024-05-16T05:01:06.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.361800", - "Timestamp": "2019-10-15T17:00:33.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.309900", + "Timestamp": "2024-05-16T05:01:06.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.231800", - "Timestamp": "2019-10-15T17:00:33.000Z" + "SpotPrice": "0.209900", + "Timestamp": "2024-05-16T05:01:06.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.231800", - "Timestamp": "2019-10-15T17:00:33.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.674300", + "Timestamp": "2024-05-16T05:01:03.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5n.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.669300", + "Timestamp": "2024-05-16T05:01:03.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7gd.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.231800", - "Timestamp": "2019-10-15T17:00:33.000Z" + "SpotPrice": "0.544300", + "Timestamp": "2024-05-16T05:01:03.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.967800", - "Timestamp": "2019-10-15T17:00:20.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.824300", + "Timestamp": "2024-05-16T05:01:03.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.967800", - "Timestamp": "2019-10-15T17:00:20.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.794300", + "Timestamp": "2024-05-16T05:01:03.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5n.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.967800", - "Timestamp": "2019-10-15T17:00:20.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.694300", + "Timestamp": "2024-05-16T05:01:03.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.121000", - "Timestamp": "2019-10-15T17:00:13.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.499600", + "Timestamp": "2024-05-16T05:00:58.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.121000", - "Timestamp": "2019-10-15T17:00:13.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.494600", + "Timestamp": "2024-05-16T05:00:58.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5n.large", - "ProductDescription": "Windows", - "SpotPrice": "0.121000", - "Timestamp": "2019-10-15T17:00:13.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.369600", + "Timestamp": "2024-05-16T05:00:58.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5n.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089000", - "Timestamp": "2019-10-15T17:00:10.000Z" + "SpotPrice": "1.093700", + "Timestamp": "2024-05-16T05:00:56.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5n.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089000", - "Timestamp": "2019-10-15T17:00:10.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.063700", + "Timestamp": "2024-05-16T05:00:56.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5n.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029000", - "Timestamp": "2019-10-15T17:00:10.000Z" + "SpotPrice": "0.963700", + "Timestamp": "2024-05-16T05:00:56.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5n.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.114300", + "Timestamp": "2024-05-16T05:00:56.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T05:00:56.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029000", - "Timestamp": "2019-10-15T17:00:10.000Z" + "SpotPrice": "0.054300", + "Timestamp": "2024-05-16T05:00:56.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091900", - "Timestamp": "2019-10-15T16:59:50.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.788300", + "Timestamp": "2024-05-16T05:00:56.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5d.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c4.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091900", - "Timestamp": "2019-10-15T16:59:50.000Z" + "SpotPrice": "0.830100", + "Timestamp": "2024-05-16T05:00:54.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091900", - "Timestamp": "2019-10-15T16:59:50.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c4.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.800100", + "Timestamp": "2024-05-16T05:00:54.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5d.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c4.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031900", - "Timestamp": "2019-10-15T16:59:50.000Z" + "SpotPrice": "0.700100", + "Timestamp": "2024-05-16T05:00:54.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031900", - "Timestamp": "2019-10-15T16:59:50.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "11.600600", + "Timestamp": "2024-05-16T04:48:26.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031900", - "Timestamp": "2019-10-15T16:59:50.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.891800", + "Timestamp": "2024-05-16T04:48:26.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.520900", - "Timestamp": "2019-10-15T16:43:32.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m4.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.452800", + "Timestamp": "2024-05-16T04:47:40.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.520900", - "Timestamp": "2019-10-15T16:43:32.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.858400", + "Timestamp": "2024-05-16T04:47:25.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5.metal", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.520900", - "Timestamp": "2019-10-15T16:43:32.000Z" + "SpotPrice": "1.475200", + "Timestamp": "2024-05-16T04:46:56.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.390900", - "Timestamp": "2019-10-15T16:43:32.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.470200", + "Timestamp": "2024-05-16T04:46:56.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.metal", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.390900", - "Timestamp": "2019-10-15T16:43:32.000Z" + "SpotPrice": "1.345200", + "Timestamp": "2024-05-16T04:46:56.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.390900", - "Timestamp": "2019-10-15T16:43:32.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.814200", + "Timestamp": "2024-05-16T04:46:51.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.363900", - "Timestamp": "2019-10-15T16:42:57.000Z" + "SpotPrice": "0.680800", + "Timestamp": "2024-05-16T04:46:41.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.233900", - "Timestamp": "2019-10-15T16:42:57.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.675800", + "Timestamp": "2024-05-16T04:46:41.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.806900", - "Timestamp": "2019-10-15T16:42:34.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.550800", + "Timestamp": "2024-05-16T04:46:41.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.806900", - "Timestamp": "2019-10-15T16:42:34.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.420000", + "Timestamp": "2024-05-16T04:46:40.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.806900", - "Timestamp": "2019-10-15T16:42:34.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.390000", + "Timestamp": "2024-05-16T04:46:40.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.616800", - "Timestamp": "2019-10-15T16:37:18.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.290000", + "Timestamp": "2024-05-16T04:46:40.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.616800", - "Timestamp": "2019-10-15T16:37:18.000Z" + "SpotPrice": "0.717900", + "Timestamp": "2024-05-16T04:46:38.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.486800", - "Timestamp": "2019-10-15T16:37:18.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.712900", + "Timestamp": "2024-05-16T04:46:38.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.486800", - "Timestamp": "2019-10-15T16:37:18.000Z" + "SpotPrice": "0.587900", + "Timestamp": "2024-05-16T04:46:38.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.241800", - "Timestamp": "2019-10-15T16:37:17.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.158100", + "Timestamp": "2024-05-16T04:46:37.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.241800", - "Timestamp": "2019-10-15T16:37:17.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.154100", + "Timestamp": "2024-05-16T04:46:37.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.520900", - "Timestamp": "2019-10-15T16:00:43.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-16T04:46:37.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.520900", - "Timestamp": "2019-10-15T16:00:43.000Z" + "SpotPrice": "1.209600", + "Timestamp": "2024-05-16T04:46:36.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.520900", - "Timestamp": "2019-10-15T16:00:43.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.179600", + "Timestamp": "2024-05-16T04:46:36.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.390900", - "Timestamp": "2019-10-15T16:00:43.000Z" + "SpotPrice": "1.079600", + "Timestamp": "2024-05-16T04:46:36.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.390900", - "Timestamp": "2019-10-15T16:00:43.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429200", + "Timestamp": "2024-05-16T04:46:36.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.661900", + "Timestamp": "2024-05-16T04:46:35.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.656900", + "Timestamp": "2024-05-16T04:46:35.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.390900", - "Timestamp": "2019-10-15T16:00:43.000Z" - }, - { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.806900", - "Timestamp": "2019-10-15T16:00:32.000Z" + "SpotPrice": "1.531900", + "Timestamp": "2024-05-16T04:46:35.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.806900", - "Timestamp": "2019-10-15T16:00:32.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.926500", + "Timestamp": "2024-05-16T04:46:34.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.806900", - "Timestamp": "2019-10-15T16:00:32.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.921500", + "Timestamp": "2024-05-16T04:46:34.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "11.190400", - "Timestamp": "2019-10-15T16:00:21.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.796500", + "Timestamp": "2024-05-16T04:46:34.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.xlarge", "ProductDescription": "Windows", - "SpotPrice": "11.190400", - "Timestamp": "2019-10-15T16:00:21.000Z" + "SpotPrice": "0.221500", + "Timestamp": "2024-05-16T04:46:33.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "8.376400", - "Timestamp": "2019-10-15T16:00:21.000Z" + "SpotPrice": "1.477500", + "Timestamp": "2024-05-16T04:46:30.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "8.376400", - "Timestamp": "2019-10-15T16:00:21.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.472500", + "Timestamp": "2024-05-16T04:46:30.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "p2.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "8.246400", - "Timestamp": "2019-10-15T16:00:21.000Z" + "SpotPrice": "1.347500", + "Timestamp": "2024-05-16T04:46:30.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "p2.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "8.246400", - "Timestamp": "2019-10-15T16:00:21.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.990500", + "Timestamp": "2024-05-16T04:46:28.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.483900", - "Timestamp": "2019-10-15T15:59:45.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.985500", + "Timestamp": "2024-05-16T04:46:28.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.483900", - "Timestamp": "2019-10-15T15:59:45.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6g.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.860500", + "Timestamp": "2024-05-16T04:46:28.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.483900", - "Timestamp": "2019-10-15T15:59:45.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.319400", + "Timestamp": "2024-05-16T04:46:28.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.178400", - "Timestamp": "2019-10-15T15:53:24.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.314400", + "Timestamp": "2024-05-16T04:46:28.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.118400", - "Timestamp": "2019-10-15T15:53:24.000Z" + "SpotPrice": "0.189400", + "Timestamp": "2024-05-16T04:46:28.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.615700", - "Timestamp": "2019-10-15T15:45:37.000Z" + "SpotPrice": "7.922400", + "Timestamp": "2024-05-16T04:46:26.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.485700", - "Timestamp": "2019-10-15T15:45:37.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "7.917400", + "Timestamp": "2024-05-16T04:46:26.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.957700", - "Timestamp": "2019-10-15T15:45:18.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "7.792400", + "Timestamp": "2024-05-16T04:46:26.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.957700", - "Timestamp": "2019-10-15T15:45:18.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.300000", + "Timestamp": "2024-05-16T04:46:25.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.367400", - "Timestamp": "2019-10-15T15:20:05.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t4g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.295000", + "Timestamp": "2024-05-16T04:46:25.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t4g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.237400", - "Timestamp": "2019-10-15T15:20:05.000Z" + "SpotPrice": "0.170000", + "Timestamp": "2024-05-16T04:46:25.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.119900", - "Timestamp": "2019-10-15T15:19:06.000Z" + "SpotPrice": "3.188300", + "Timestamp": "2024-05-16T04:46:24.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.183300", + "Timestamp": "2024-05-16T04:46:24.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.059900", - "Timestamp": "2019-10-15T15:19:06.000Z" + "SpotPrice": "3.058300", + "Timestamp": "2024-05-16T04:46:24.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120900", - "Timestamp": "2019-10-15T14:59:28.000Z" + "SpotPrice": "1.509300", + "Timestamp": "2024-05-16T04:46:23.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120900", - "Timestamp": "2019-10-15T14:59:28.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.504300", + "Timestamp": "2024-05-16T04:46:23.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.379300", + "Timestamp": "2024-05-16T04:46:23.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120900", - "Timestamp": "2019-10-15T14:59:28.000Z" + "SpotPrice": "0.584600", + "Timestamp": "2024-05-16T04:46:23.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060900", - "Timestamp": "2019-10-15T14:59:28.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.580900", + "Timestamp": "2024-05-16T04:46:23.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060900", - "Timestamp": "2019-10-15T14:59:28.000Z" + "SpotPrice": "0.524600", + "Timestamp": "2024-05-16T04:46:23.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060900", - "Timestamp": "2019-10-15T14:59:28.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.650000", + "Timestamp": "2024-05-16T04:46:20.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.244900", - "Timestamp": "2019-10-15T14:59:22.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.645000", + "Timestamp": "2024-05-16T04:46:20.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.244900", - "Timestamp": "2019-10-15T14:59:22.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.520000", + "Timestamp": "2024-05-16T04:46:20.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.244900", - "Timestamp": "2019-10-15T14:59:22.000Z" + "SpotPrice": "0.195700", + "Timestamp": "2024-05-16T04:46:18.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.118800", - "Timestamp": "2019-10-15T14:54:26.000Z" - }, - { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.058800", - "Timestamp": "2019-10-15T14:54:26.000Z" + "SpotPrice": "2.022900", + "Timestamp": "2024-05-16T04:46:12.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.078800", - "Timestamp": "2019-10-15T14:37:47.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.992900", + "Timestamp": "2024-05-16T04:46:12.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t2.medium", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.018800", - "Timestamp": "2019-10-15T14:37:47.000Z" + "SpotPrice": "1.892900", + "Timestamp": "2024-05-16T04:46:12.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "a1.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.250100", - "Timestamp": "2019-10-15T14:27:53.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m1.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.095300", + "Timestamp": "2024-05-16T04:46:10.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "a1.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.120100", - "Timestamp": "2019-10-15T14:27:53.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.730700", + "Timestamp": "2024-05-16T04:46:06.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.metal", "ProductDescription": "Windows", - "SpotPrice": "0.244700", - "Timestamp": "2019-10-15T14:00:03.000Z" + "SpotPrice": "5.510400", + "Timestamp": "2024-05-16T04:45:51.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.metal", "ProductDescription": "Windows", - "SpotPrice": "0.244700", - "Timestamp": "2019-10-15T14:00:03.000Z" + "SpotPrice": "5.510400", + "Timestamp": "2024-05-16T04:45:51.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.194300", - "Timestamp": "2019-10-15T13:41:52.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.692100", + "Timestamp": "2024-05-16T04:34:21.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gd.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.194300", - "Timestamp": "2019-10-15T13:41:52.000Z" + "SpotPrice": "0.074300", + "Timestamp": "2024-05-16T04:33:21.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.064300", - "Timestamp": "2019-10-15T13:41:52.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.070600", + "Timestamp": "2024-05-16T04:33:21.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gd.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.064300", - "Timestamp": "2019-10-15T13:41:52.000Z" + "SpotPrice": "0.014300", + "Timestamp": "2024-05-16T04:33:21.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.008300", - "Timestamp": "2019-10-15T13:41:25.000Z" + "SpotPrice": "2.575200", + "Timestamp": "2024-05-16T04:32:16.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.008300", - "Timestamp": "2019-10-15T13:41:25.000Z" + "SpotPrice": "1.717900", + "Timestamp": "2024-05-16T04:31:51.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.871200", - "Timestamp": "2019-10-15T13:00:31.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.388300", + "Timestamp": "2024-05-16T04:31:51.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.871200", - "Timestamp": "2019-10-15T13:00:31.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.358300", + "Timestamp": "2024-05-16T04:31:51.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.113800", - "Timestamp": "2019-10-15T13:00:15.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.258300", + "Timestamp": "2024-05-16T04:31:51.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "t3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.113800", - "Timestamp": "2019-10-15T13:00:15.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.542200", + "Timestamp": "2024-05-16T04:31:40.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.113800", - "Timestamp": "2019-10-15T13:00:15.000Z" + "SpotPrice": "0.526100", + "Timestamp": "2024-05-16T04:31:40.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.053800", - "Timestamp": "2019-10-15T13:00:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.521100", + "Timestamp": "2024-05-16T04:31:40.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.053800", - "Timestamp": "2019-10-15T13:00:15.000Z" + "SpotPrice": "0.396100", + "Timestamp": "2024-05-16T04:31:40.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.723400", + "Timestamp": "2024-05-16T04:31:39.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.718400", + "Timestamp": "2024-05-16T04:31:39.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.053800", - "Timestamp": "2019-10-15T13:00:15.000Z" + "SpotPrice": "0.593400", + "Timestamp": "2024-05-16T04:31:39.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.057200", - "Timestamp": "2019-10-15T13:00:07.000Z" + "SpotPrice": "0.468600", + "Timestamp": "2024-05-16T04:31:38.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.057200", - "Timestamp": "2019-10-15T13:00:07.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.463600", + "Timestamp": "2024-05-16T04:31:38.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m4.16xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.927200", - "Timestamp": "2019-10-15T13:00:07.000Z" + "SpotPrice": "0.338600", + "Timestamp": "2024-05-16T04:31:38.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.927200", - "Timestamp": "2019-10-15T13:00:07.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.399400", + "Timestamp": "2024-05-16T04:31:33.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.127400", - "Timestamp": "2019-10-15T12:59:47.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.394400", + "Timestamp": "2024-05-16T04:31:33.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "t3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.127400", - "Timestamp": "2019-10-15T12:59:47.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.269400", + "Timestamp": "2024-05-16T04:31:33.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.large", "ProductDescription": "Windows", - "SpotPrice": "0.127400", - "Timestamp": "2019-10-15T12:59:47.000Z" + "SpotPrice": "0.126400", + "Timestamp": "2024-05-16T04:31:33.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t2.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.068600", - "Timestamp": "2019-10-15T12:00:47.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.587200", + "Timestamp": "2024-05-16T04:31:29.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t2.small", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.068600", - "Timestamp": "2019-10-15T12:00:47.000Z" + "SpotPrice": "1.436600", + "Timestamp": "2024-05-16T04:31:29.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t2.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.008600", - "Timestamp": "2019-10-15T12:00:47.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.431600", + "Timestamp": "2024-05-16T04:31:29.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t2.small", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.008600", - "Timestamp": "2019-10-15T12:00:47.000Z" + "SpotPrice": "1.306600", + "Timestamp": "2024-05-16T04:31:29.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.242000", - "Timestamp": "2019-10-15T12:00:07.000Z" + "SpotPrice": "0.448400", + "Timestamp": "2024-05-16T04:31:28.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.242000", - "Timestamp": "2019-10-15T12:00:07.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.740700", + "Timestamp": "2024-05-16T04:31:26.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.242000", - "Timestamp": "2019-10-15T12:00:07.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.735700", + "Timestamp": "2024-05-16T04:31:26.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t2.small", - "ProductDescription": "Windows", - "SpotPrice": "0.017800", - "Timestamp": "2019-10-15T12:00:04.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.610700", + "Timestamp": "2024-05-16T04:31:26.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t2.small", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5ad.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.017800", - "Timestamp": "2019-10-15T12:00:04.000Z" + "SpotPrice": "3.472000", + "Timestamp": "2024-05-16T04:31:25.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m4.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.118000", - "Timestamp": "2019-10-15T11:59:43.000Z" + "SpotPrice": "0.170200", + "Timestamp": "2024-05-16T04:31:22.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.118000", - "Timestamp": "2019-10-15T11:59:43.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.210200", + "Timestamp": "2024-05-16T04:31:22.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m4.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.110200", + "Timestamp": "2024-05-16T04:31:22.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.118000", - "Timestamp": "2019-10-15T11:59:43.000Z" + "SpotPrice": "0.080200", + "Timestamp": "2024-05-16T04:31:22.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5n.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.058000", - "Timestamp": "2019-10-15T11:59:43.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076500", + "Timestamp": "2024-05-16T04:31:22.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.058000", - "Timestamp": "2019-10-15T11:59:43.000Z" + "SpotPrice": "0.020200", + "Timestamp": "2024-05-16T04:31:22.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5n.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.367400", + "Timestamp": "2024-05-16T04:31:19.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.704600", + "Timestamp": "2024-05-16T04:31:19.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.337400", + "Timestamp": "2024-05-16T04:31:19.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.674600", + "Timestamp": "2024-05-16T04:31:19.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.058000", - "Timestamp": "2019-10-15T11:59:43.000Z" + "SpotPrice": "1.237400", + "Timestamp": "2024-05-16T04:31:19.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.478400", - "Timestamp": "2019-10-15T11:44:59.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.574600", + "Timestamp": "2024-05-16T04:31:19.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.478400", - "Timestamp": "2019-10-15T11:44:59.000Z" + "SpotPrice": "5.553600", + "Timestamp": "2024-05-16T04:31:16.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.118800", - "Timestamp": "2019-10-15T11:33:47.000Z" + "SpotPrice": "0.094400", + "Timestamp": "2024-05-16T04:31:12.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.090700", + "Timestamp": "2024-05-16T04:31:12.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.058800", - "Timestamp": "2019-10-15T11:33:47.000Z" + "SpotPrice": "0.034400", + "Timestamp": "2024-05-16T04:31:12.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.640000", - "Timestamp": "2019-10-15T11:00:39.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.metal", + "ProductDescription": "Windows", + "SpotPrice": "10.024300", + "Timestamp": "2024-05-16T04:31:09.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x2idn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.640000", - "Timestamp": "2019-10-15T11:00:39.000Z" + "SpotPrice": "2.080800", + "Timestamp": "2024-05-16T04:18:09.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "x2idn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.640000", - "Timestamp": "2019-10-15T11:00:39.000Z" + "SpotPrice": "2.080800", + "Timestamp": "2024-05-16T04:18:09.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.510000", - "Timestamp": "2019-10-15T11:00:39.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.080800", + "Timestamp": "2024-05-16T04:18:09.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.510000", - "Timestamp": "2019-10-15T11:00:39.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.075800", + "Timestamp": "2024-05-16T04:18:09.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.510000", - "Timestamp": "2019-10-15T11:00:39.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.075800", + "Timestamp": "2024-05-16T04:18:09.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.150000", - "Timestamp": "2019-10-15T11:00:22.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.075800", + "Timestamp": "2024-05-16T04:18:09.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.metal", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x2idn.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.020000", - "Timestamp": "2019-10-15T11:00:22.000Z" + "SpotPrice": "1.950800", + "Timestamp": "2024-05-16T04:18:09.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.982000", - "Timestamp": "2019-10-15T11:00:11.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.950800", + "Timestamp": "2024-05-16T04:18:09.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.982000", - "Timestamp": "2019-10-15T11:00:11.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x2idn.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.950800", + "Timestamp": "2024-05-16T04:18:09.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5d.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x2idn.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.982000", - "Timestamp": "2019-10-15T11:00:11.000Z" + "SpotPrice": "6.366800", + "Timestamp": "2024-05-16T04:18:09.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.metal", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "x2idn.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.436000", - "Timestamp": "2019-10-15T11:00:05.000Z" + "SpotPrice": "6.366800", + "Timestamp": "2024-05-16T04:18:09.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r3.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x2idn.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.120900", - "Timestamp": "2019-10-15T10:37:16.000Z" + "SpotPrice": "6.366800", + "Timestamp": "2024-05-16T04:18:09.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r3.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.120900", - "Timestamp": "2019-10-15T10:37:16.000Z" + "SpotPrice": "3.372800", + "Timestamp": "2024-05-16T04:17:28.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129100", - "Timestamp": "2019-10-15T10:01:24.000Z" + "SpotPrice": "0.555600", + "Timestamp": "2024-05-16T04:17:24.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129100", - "Timestamp": "2019-10-15T10:01:24.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.550600", + "Timestamp": "2024-05-16T04:17:24.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069100", - "Timestamp": "2019-10-15T10:01:24.000Z" + "SpotPrice": "0.425600", + "Timestamp": "2024-05-16T04:17:24.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069100", - "Timestamp": "2019-10-15T10:01:24.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.273400", + "Timestamp": "2024-05-16T04:17:10.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.964000", - "Timestamp": "2019-10-15T10:01:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.901800", + "Timestamp": "2024-05-16T04:17:00.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.964000", - "Timestamp": "2019-10-15T10:01:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.896800", + "Timestamp": "2024-05-16T04:17:00.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.964000", - "Timestamp": "2019-10-15T10:01:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.771800", + "Timestamp": "2024-05-16T04:17:00.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.110100", - "Timestamp": "2019-10-15T10:01:01.000Z" + "SpotPrice": "6.642600", + "Timestamp": "2024-05-16T04:16:47.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.110100", - "Timestamp": "2019-10-15T10:01:01.000Z" + "SpotPrice": "0.459200", + "Timestamp": "2024-05-16T04:16:47.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.483900", - "Timestamp": "2019-10-15T10:00:32.000Z" + "SpotPrice": "0.229800", + "Timestamp": "2024-05-16T04:16:43.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.483900", - "Timestamp": "2019-10-15T10:00:32.000Z" + "SpotPrice": "5.131200", + "Timestamp": "2024-05-16T04:16:41.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.483900", - "Timestamp": "2019-10-15T10:00:32.000Z" + "SpotPrice": "5.131200", + "Timestamp": "2024-05-16T04:16:41.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r3.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.245900", - "Timestamp": "2019-10-15T10:00:26.000Z" + "SpotPrice": "0.315100", + "Timestamp": "2024-05-16T04:16:38.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.115900", - "Timestamp": "2019-10-15T10:00:26.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.285100", + "Timestamp": "2024-05-16T04:16:38.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.150000", - "Timestamp": "2019-10-15T10:00:17.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.185100", + "Timestamp": "2024-05-16T04:16:38.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.150000", - "Timestamp": "2019-10-15T10:00:17.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429200", + "Timestamp": "2024-05-16T04:16:35.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.150000", - "Timestamp": "2019-10-15T10:00:17.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.385600", + "Timestamp": "2024-05-16T04:16:32.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.020000", - "Timestamp": "2019-10-15T10:00:17.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.858000", + "Timestamp": "2024-05-16T04:16:29.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.020000", - "Timestamp": "2019-10-15T10:00:17.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.853000", + "Timestamp": "2024-05-16T04:16:29.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.020000", - "Timestamp": "2019-10-15T10:00:17.000Z" + "SpotPrice": "1.728000", + "Timestamp": "2024-05-16T04:16:29.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.947900", - "Timestamp": "2019-10-15T09:41:05.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.834800", + "Timestamp": "2024-05-16T04:16:28.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.947900", - "Timestamp": "2019-10-15T09:41:05.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.829800", + "Timestamp": "2024-05-16T04:16:28.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.709900", - "Timestamp": "2019-10-15T09:40:48.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.704800", + "Timestamp": "2024-05-16T04:16:28.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.709900", - "Timestamp": "2019-10-15T09:40:48.000Z" + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T04:16:28.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "i2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.579900", - "Timestamp": "2019-10-15T09:40:48.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-16T04:16:28.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "i2.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.579900", - "Timestamp": "2019-10-15T09:40:48.000Z" + "SpotPrice": "0.042900", + "Timestamp": "2024-05-16T04:16:28.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.917600", - "Timestamp": "2019-10-15T09:00:35.000Z" + "SpotPrice": "1.012000", + "Timestamp": "2024-05-16T04:16:28.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.917600", - "Timestamp": "2019-10-15T09:00:35.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062900", + "Timestamp": "2024-05-16T04:16:28.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.917600", - "Timestamp": "2019-10-15T09:00:35.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002900", + "Timestamp": "2024-05-16T04:16:28.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.967300", - "Timestamp": "2019-10-15T09:00:23.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3a.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002900", + "Timestamp": "2024-05-16T04:16:28.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.967300", - "Timestamp": "2019-10-15T09:00:23.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.758800", + "Timestamp": "2024-05-16T04:16:26.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089000", - "Timestamp": "2019-10-15T09:00:20.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.728800", + "Timestamp": "2024-05-16T04:16:26.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089000", - "Timestamp": "2019-10-15T09:00:20.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.628800", + "Timestamp": "2024-05-16T04:16:26.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5d.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.089000", - "Timestamp": "2019-10-15T09:00:20.000Z" + "SpotPrice": "0.649200", + "Timestamp": "2024-05-16T04:16:26.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029000", - "Timestamp": "2019-10-15T09:00:20.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.644200", + "Timestamp": "2024-05-16T04:16:26.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5d.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029000", - "Timestamp": "2019-10-15T09:00:20.000Z" + "SpotPrice": "0.519200", + "Timestamp": "2024-05-16T04:16:26.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.029000", - "Timestamp": "2019-10-15T09:00:20.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c4.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107500", + "Timestamp": "2024-05-16T04:16:24.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5d.metal", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.150000", - "Timestamp": "2019-10-15T09:00:09.000Z" + "SpotPrice": "0.486600", + "Timestamp": "2024-05-16T04:16:21.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.150000", - "Timestamp": "2019-10-15T09:00:09.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.481600", + "Timestamp": "2024-05-16T04:16:21.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5d.metal", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.356600", + "Timestamp": "2024-05-16T04:16:21.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.150000", - "Timestamp": "2019-10-15T09:00:09.000Z" + "SpotPrice": "0.142500", + "Timestamp": "2024-05-16T04:16:14.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.020000", - "Timestamp": "2019-10-15T09:00:09.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.138500", + "Timestamp": "2024-05-16T04:16:14.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5d.metal", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.020000", - "Timestamp": "2019-10-15T09:00:09.000Z" + "SpotPrice": "0.082500", + "Timestamp": "2024-05-16T04:16:14.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5d.metal", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.173900", + "Timestamp": "2024-05-16T04:16:13.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170200", + "Timestamp": "2024-05-16T04:16:13.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.020000", - "Timestamp": "2019-10-15T09:00:09.000Z" + "SpotPrice": "0.113900", + "Timestamp": "2024-05-16T04:16:13.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.103600", - "Timestamp": "2019-10-15T09:00:04.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.726400", + "Timestamp": "2024-05-16T04:16:09.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x1e.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.103600", - "Timestamp": "2019-10-15T09:00:04.000Z" + "SpotPrice": "3.489000", + "Timestamp": "2024-05-16T04:16:00.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.103600", - "Timestamp": "2019-10-15T09:00:04.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x1e.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "3.459000", + "Timestamp": "2024-05-16T04:16:00.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5d.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x1e.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.973600", - "Timestamp": "2019-10-15T09:00:04.000Z" + "SpotPrice": "3.359000", + "Timestamp": "2024-05-16T04:16:00.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.973600", - "Timestamp": "2019-10-15T09:00:04.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.353900", + "Timestamp": "2024-05-16T04:15:54.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.973600", - "Timestamp": "2019-10-15T09:00:04.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.323900", + "Timestamp": "2024-05-16T04:15:54.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.436000", - "Timestamp": "2019-10-15T08:59:59.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.223900", + "Timestamp": "2024-05-16T04:15:54.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.436000", - "Timestamp": "2019-10-15T08:59:59.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.953000", + "Timestamp": "2024-05-16T04:15:53.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5d.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.436000", - "Timestamp": "2019-10-15T08:59:59.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.948000", + "Timestamp": "2024-05-16T04:15:53.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.121000", - "Timestamp": "2019-10-15T08:59:56.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.823000", + "Timestamp": "2024-05-16T04:15:53.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5d.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x2iedn.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.121000", - "Timestamp": "2019-10-15T08:59:56.000Z" + "SpotPrice": "0.693100", + "Timestamp": "2024-05-16T04:05:58.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5d.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.121000", - "Timestamp": "2019-10-15T08:59:56.000Z" + "SpotPrice": "2.642400", + "Timestamp": "2024-05-16T04:01:55.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i-flex.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.361300", - "Timestamp": "2019-10-15T08:59:37.000Z" + "SpotPrice": "0.086100", + "Timestamp": "2024-05-16T04:01:39.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.082400", + "Timestamp": "2024-05-16T04:01:39.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i-flex.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.231300", - "Timestamp": "2019-10-15T08:59:37.000Z" + "SpotPrice": "0.026100", + "Timestamp": "2024-05-16T04:01:39.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.177600", - "Timestamp": "2019-10-15T08:36:49.000Z" + "SpotPrice": "5.187100", + "Timestamp": "2024-05-16T04:01:34.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.177600", - "Timestamp": "2019-10-15T08:36:49.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.682400", + "Timestamp": "2024-05-16T04:01:34.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.177600", - "Timestamp": "2019-10-15T08:36:49.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.677400", + "Timestamp": "2024-05-16T04:01:34.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.651600", - "Timestamp": "2019-10-15T08:36:48.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.48xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.552400", + "Timestamp": "2024-05-16T04:01:34.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.651600", - "Timestamp": "2019-10-15T08:36:48.000Z" + "SpotPrice": "1.267600", + "Timestamp": "2024-05-16T04:01:33.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.651600", - "Timestamp": "2019-10-15T08:36:48.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.262600", + "Timestamp": "2024-05-16T04:01:33.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.521600", - "Timestamp": "2019-10-15T08:36:48.000Z" + "SpotPrice": "1.137600", + "Timestamp": "2024-05-16T04:01:33.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.521600", - "Timestamp": "2019-10-15T08:36:48.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.783800", + "Timestamp": "2024-05-16T04:01:33.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.778800", + "Timestamp": "2024-05-16T04:01:33.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.521600", - "Timestamp": "2019-10-15T08:36:48.000Z" + "SpotPrice": "0.653800", + "Timestamp": "2024-05-16T04:01:33.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t2.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094600", - "Timestamp": "2019-10-15T08:00:38.000Z" + "SpotPrice": "0.507600", + "Timestamp": "2024-05-16T04:01:33.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t2.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094600", - "Timestamp": "2019-10-15T08:00:38.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.502600", + "Timestamp": "2024-05-16T04:01:33.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t2.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034600", - "Timestamp": "2019-10-15T08:00:38.000Z" + "SpotPrice": "0.377600", + "Timestamp": "2024-05-16T04:01:33.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t2.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034600", - "Timestamp": "2019-10-15T08:00:38.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.727600", + "Timestamp": "2024-05-16T04:01:32.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.639600", - "Timestamp": "2019-10-15T08:00:28.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.722600", + "Timestamp": "2024-05-16T04:01:32.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.597600", + "Timestamp": "2024-05-16T04:01:32.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.metal-48xl", "ProductDescription": "Windows", - "SpotPrice": "3.639600", - "Timestamp": "2019-10-15T08:00:28.000Z" + "SpotPrice": "10.935000", + "Timestamp": "2024-05-16T04:01:29.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.639600", - "Timestamp": "2019-10-15T08:00:28.000Z" + "SpotPrice": "0.840800", + "Timestamp": "2024-05-16T04:01:22.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.113600", - "Timestamp": "2019-10-15T07:59:59.000Z" + "SpotPrice": "0.350900", + "Timestamp": "2024-05-16T04:01:22.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.113600", - "Timestamp": "2019-10-15T07:59:59.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.345900", + "Timestamp": "2024-05-16T04:01:22.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.113600", - "Timestamp": "2019-10-15T07:59:59.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.220900", + "Timestamp": "2024-05-16T04:01:22.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.983600", - "Timestamp": "2019-10-15T07:59:59.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.072700", + "Timestamp": "2024-05-16T04:01:20.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "d2.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.983600", - "Timestamp": "2019-10-15T07:59:59.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069000", + "Timestamp": "2024-05-16T04:01:20.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "d2.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gd.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.983600", - "Timestamp": "2019-10-15T07:59:59.000Z" + "SpotPrice": "0.012700", + "Timestamp": "2024-05-16T04:01:20.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t2.large", - "ProductDescription": "Windows", - "SpotPrice": "0.062600", - "Timestamp": "2019-10-15T07:59:48.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.994400", + "Timestamp": "2024-05-16T04:01:19.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t2.large", - "ProductDescription": "Windows", - "SpotPrice": "0.062600", - "Timestamp": "2019-10-15T07:59:48.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.989400", + "Timestamp": "2024-05-16T04:01:19.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "a1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090000", - "Timestamp": "2019-10-15T07:37:17.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.864400", + "Timestamp": "2024-05-16T04:01:19.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "a1.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.090000", - "Timestamp": "2019-10-15T07:37:17.000Z" + "SpotPrice": "0.194600", + "Timestamp": "2024-05-16T04:01:17.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "a1.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030000", - "Timestamp": "2019-10-15T07:37:17.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.190900", + "Timestamp": "2024-05-16T04:01:17.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "a1.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.030000", - "Timestamp": "2019-10-15T07:37:17.000Z" + "SpotPrice": "0.134600", + "Timestamp": "2024-05-16T04:01:17.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.355200", - "Timestamp": "2019-10-15T07:12:38.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.645900", + "Timestamp": "2024-05-16T04:01:11.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.355200", - "Timestamp": "2019-10-15T07:12:38.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.640900", + "Timestamp": "2024-05-16T04:01:11.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.355200", - "Timestamp": "2019-10-15T07:12:38.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.515900", + "Timestamp": "2024-05-16T04:01:11.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.173200", - "Timestamp": "2019-10-15T06:43:32.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214900", + "Timestamp": "2024-05-16T04:01:05.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.173200", - "Timestamp": "2019-10-15T06:43:32.000Z" + "SpotPrice": "0.806600", + "Timestamp": "2024-05-16T04:01:00.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.173200", - "Timestamp": "2019-10-15T06:43:32.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.801600", + "Timestamp": "2024-05-16T04:01:00.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5d.18xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.043200", - "Timestamp": "2019-10-15T06:43:32.000Z" + "SpotPrice": "0.676600", + "Timestamp": "2024-05-16T04:01:00.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.043200", - "Timestamp": "2019-10-15T06:43:32.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.896800", + "Timestamp": "2024-05-16T03:51:33.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.043200", - "Timestamp": "2019-10-15T06:43:32.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3.nano", + "ProductDescription": "Windows", + "SpotPrice": "0.005400", + "Timestamp": "2024-05-16T03:49:14.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.483600", - "Timestamp": "2019-10-15T06:01:20.000Z" + "SpotPrice": "0.420400", + "Timestamp": "2024-05-16T03:47:29.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.metal", "ProductDescription": "Windows", - "SpotPrice": "0.483600", - "Timestamp": "2019-10-15T06:01:20.000Z" + "SpotPrice": "5.150400", + "Timestamp": "2024-05-16T03:47:01.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.917600", - "Timestamp": "2019-10-15T06:00:41.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.673000", + "Timestamp": "2024-05-16T03:46:41.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.917600", - "Timestamp": "2019-10-15T06:00:41.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.668000", + "Timestamp": "2024-05-16T03:46:41.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.543000", + "Timestamp": "2024-05-16T03:46:41.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.917600", - "Timestamp": "2019-10-15T06:00:41.000Z" + "SpotPrice": "3.384200", + "Timestamp": "2024-05-16T03:46:39.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.103600", - "Timestamp": "2019-10-15T06:00:35.000Z" + "SpotPrice": "0.278700", + "Timestamp": "2024-05-16T03:46:35.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.103600", - "Timestamp": "2019-10-15T06:00:35.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.273700", + "Timestamp": "2024-05-16T03:46:35.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.148700", + "Timestamp": "2024-05-16T03:46:35.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.103600", - "Timestamp": "2019-10-15T06:00:35.000Z" + "SpotPrice": "1.871900", + "Timestamp": "2024-05-16T03:46:35.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.973600", - "Timestamp": "2019-10-15T06:00:35.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.866900", + "Timestamp": "2024-05-16T03:46:35.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.973600", - "Timestamp": "2019-10-15T06:00:35.000Z" + "SpotPrice": "1.741900", + "Timestamp": "2024-05-16T03:46:35.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.973600", - "Timestamp": "2019-10-15T06:00:35.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083200", + "Timestamp": "2024-05-16T03:46:33.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.489700", - "Timestamp": "2019-10-15T06:00:20.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.079500", + "Timestamp": "2024-05-16T03:46:33.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023200", + "Timestamp": "2024-05-16T03:46:33.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.metal-24xl", "ProductDescription": "Windows", - "SpotPrice": "0.489700", - "Timestamp": "2019-10-15T06:00:20.000Z" + "SpotPrice": "5.187200", + "Timestamp": "2024-05-16T03:46:32.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r3.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.489700", - "Timestamp": "2019-10-15T06:00:20.000Z" + "SpotPrice": "0.254000", + "Timestamp": "2024-05-16T03:46:30.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091900", - "Timestamp": "2019-10-15T06:00:18.000Z" + "SpotPrice": "0.519000", + "Timestamp": "2024-05-16T03:46:29.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091900", - "Timestamp": "2019-10-15T06:00:18.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.514000", + "Timestamp": "2024-05-16T03:46:29.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6g.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031900", - "Timestamp": "2019-10-15T06:00:18.000Z" + "SpotPrice": "0.389000", + "Timestamp": "2024-05-16T03:46:29.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.329200", + "Timestamp": "2024-05-16T03:46:27.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.299200", + "Timestamp": "2024-05-16T03:46:27.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031900", - "Timestamp": "2019-10-15T06:00:18.000Z" + "SpotPrice": "0.199200", + "Timestamp": "2024-05-16T03:46:27.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t3.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006300", - "Timestamp": "2019-10-15T06:00:00.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.403600", + "Timestamp": "2024-05-16T03:46:26.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "t3.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006300", - "Timestamp": "2019-10-15T06:00:00.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.373600", + "Timestamp": "2024-05-16T03:46:26.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t3.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006300", - "Timestamp": "2019-10-15T06:00:00.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.273600", + "Timestamp": "2024-05-16T03:46:26.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061700", - "Timestamp": "2019-10-15T05:59:58.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.256000", + "Timestamp": "2024-05-16T03:46:26.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "t3.nano", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i-flex.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061700", - "Timestamp": "2019-10-15T05:59:58.000Z" + "SpotPrice": "0.078100", + "Timestamp": "2024-05-16T03:46:23.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061700", - "Timestamp": "2019-10-15T05:59:58.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i-flex.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.074400", + "Timestamp": "2024-05-16T03:46:23.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t3.nano", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i-flex.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001700", - "Timestamp": "2019-10-15T05:59:58.000Z" + "SpotPrice": "0.018100", + "Timestamp": "2024-05-16T03:46:23.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "t3.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001700", - "Timestamp": "2019-10-15T05:59:58.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.773200", + "Timestamp": "2024-05-16T03:46:23.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t3.nano", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.768200", + "Timestamp": "2024-05-16T03:46:23.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001700", - "Timestamp": "2019-10-15T05:59:58.000Z" + "SpotPrice": "0.643200", + "Timestamp": "2024-05-16T03:46:23.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123900", - "Timestamp": "2019-10-15T05:59:50.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.349500", + "Timestamp": "2024-05-16T03:46:21.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123900", - "Timestamp": "2019-10-15T05:59:50.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.344500", + "Timestamp": "2024-05-16T03:46:21.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.123900", - "Timestamp": "2019-10-15T05:59:50.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.219500", + "Timestamp": "2024-05-16T03:46:21.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.257500", - "Timestamp": "2019-10-15T05:01:29.000Z" + "SpotPrice": "0.106600", + "Timestamp": "2024-05-16T03:46:19.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.127500", - "Timestamp": "2019-10-15T05:01:29.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102900", + "Timestamp": "2024-05-16T03:46:19.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.495500", - "Timestamp": "2019-10-15T05:00:30.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046600", + "Timestamp": "2024-05-16T03:46:19.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.495500", - "Timestamp": "2019-10-15T05:00:30.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.451700", + "Timestamp": "2024-05-16T03:46:15.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.495500", - "Timestamp": "2019-10-15T05:00:30.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.446700", + "Timestamp": "2024-05-16T03:46:15.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5n.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.520900", - "Timestamp": "2019-10-15T05:00:27.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.321700", + "Timestamp": "2024-05-16T03:46:15.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5n.metal", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.520900", - "Timestamp": "2019-10-15T05:00:27.000Z" + "SpotPrice": "2.817400", + "Timestamp": "2024-05-16T03:46:02.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5n.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.520900", - "Timestamp": "2019-10-15T05:00:27.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.787400", + "Timestamp": "2024-05-16T03:46:02.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5n.metal", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.390900", - "Timestamp": "2019-10-15T05:00:27.000Z" + "SpotPrice": "2.687400", + "Timestamp": "2024-05-16T03:46:02.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5n.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.390900", - "Timestamp": "2019-10-15T05:00:27.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.910000", + "Timestamp": "2024-05-16T03:34:02.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5n.metal", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.905000", + "Timestamp": "2024-05-16T03:34:02.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "inf1.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.390900", - "Timestamp": "2019-10-15T05:00:27.000Z" + "SpotPrice": "0.780000", + "Timestamp": "2024-05-16T03:34:02.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.244900", - "Timestamp": "2019-10-15T05:00:16.000Z" + "SpotPrice": "0.896800", + "Timestamp": "2024-05-16T03:33:33.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r3.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.244900", - "Timestamp": "2019-10-15T05:00:16.000Z" + "SpotPrice": "0.507900", + "Timestamp": "2024-05-16T03:32:27.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.metal", "ProductDescription": "Windows", - "SpotPrice": "0.244900", - "Timestamp": "2019-10-15T05:00:16.000Z" + "SpotPrice": "5.548800", + "Timestamp": "2024-05-16T03:32:24.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5n.metal", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.18xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.702900", - "Timestamp": "2019-10-15T05:00:01.000Z" + "SpotPrice": "3.848400", + "Timestamp": "2024-05-16T03:32:13.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5n.metal", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i-flex.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.702900", - "Timestamp": "2019-10-15T05:00:01.000Z" + "SpotPrice": "0.803700", + "Timestamp": "2024-05-16T03:32:12.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5n.metal", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.702900", - "Timestamp": "2019-10-15T05:00:01.000Z" + "SpotPrice": "2.755200", + "Timestamp": "2024-05-16T03:32:08.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.328600", + "Timestamp": "2024-05-16T03:31:58.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.323600", + "Timestamp": "2024-05-16T03:31:58.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.198600", + "Timestamp": "2024-05-16T03:31:58.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.938200", - "Timestamp": "2019-10-15T04:59:58.000Z" + "SpotPrice": "1.686400", + "Timestamp": "2024-05-16T03:31:57.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.938200", - "Timestamp": "2019-10-15T04:59:58.000Z" + "SpotPrice": "1.750900", + "Timestamp": "2024-05-16T03:31:56.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.860200", - "Timestamp": "2019-10-15T04:59:53.000Z" + "SpotPrice": "0.076900", + "Timestamp": "2024-05-16T03:31:44.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.860200", - "Timestamp": "2019-10-15T04:59:53.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073200", + "Timestamp": "2024-05-16T03:31:44.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.730200", - "Timestamp": "2019-10-15T04:59:53.000Z" + "SpotPrice": "0.016900", + "Timestamp": "2024-05-16T03:31:44.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.730200", - "Timestamp": "2019-10-15T04:59:53.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.349400", + "Timestamp": "2024-05-16T03:31:40.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.177600", - "Timestamp": "2019-10-15T04:44:17.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.319400", + "Timestamp": "2024-05-16T03:31:40.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.177600", - "Timestamp": "2019-10-15T04:44:17.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.219400", + "Timestamp": "2024-05-16T03:31:40.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.177600", - "Timestamp": "2019-10-15T04:44:17.000Z" + "SpotPrice": "10.154000", + "Timestamp": "2024-05-16T03:31:40.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.651600", - "Timestamp": "2019-10-15T04:44:17.000Z" + "SpotPrice": "0.834100", + "Timestamp": "2024-05-16T03:31:39.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.651600", - "Timestamp": "2019-10-15T04:44:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.829100", + "Timestamp": "2024-05-16T03:31:39.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.704100", + "Timestamp": "2024-05-16T03:31:39.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.651600", - "Timestamp": "2019-10-15T04:44:17.000Z" + "SpotPrice": "0.369400", + "Timestamp": "2024-05-16T03:31:37.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c5n.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.521600", - "Timestamp": "2019-10-15T04:44:17.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.364400", + "Timestamp": "2024-05-16T03:31:37.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.521600", - "Timestamp": "2019-10-15T04:44:17.000Z" + "SpotPrice": "0.239400", + "Timestamp": "2024-05-16T03:31:37.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c5n.9xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.240600", + "Timestamp": "2024-05-16T03:31:33.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.235600", + "Timestamp": "2024-05-16T03:31:33.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.521600", - "Timestamp": "2019-10-15T04:44:17.000Z" + "SpotPrice": "0.110600", + "Timestamp": "2024-05-16T03:31:33.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.978900", - "Timestamp": "2019-10-15T04:00:33.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.432300", + "Timestamp": "2024-05-16T03:31:33.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.978900", - "Timestamp": "2019-10-15T04:00:33.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.427300", + "Timestamp": "2024-05-16T03:31:33.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.483900", - "Timestamp": "2019-10-15T04:00:32.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.302300", + "Timestamp": "2024-05-16T03:31:33.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.483900", - "Timestamp": "2019-10-15T04:00:32.000Z" + "SpotPrice": "0.423200", + "Timestamp": "2024-05-16T03:31:32.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.895000", - "Timestamp": "2019-10-15T04:00:28.000Z" + "SpotPrice": "0.215800", + "Timestamp": "2024-05-16T03:31:32.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.895000", - "Timestamp": "2019-10-15T04:00:28.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.210800", + "Timestamp": "2024-05-16T03:31:32.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.895000", - "Timestamp": "2019-10-15T04:00:28.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.085800", + "Timestamp": "2024-05-16T03:31:32.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.765000", - "Timestamp": "2019-10-15T04:00:28.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.866800", + "Timestamp": "2024-05-16T03:31:31.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.765000", - "Timestamp": "2019-10-15T04:00:28.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.836800", + "Timestamp": "2024-05-16T03:31:31.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.765000", - "Timestamp": "2019-10-15T04:00:28.000Z" + "SpotPrice": "0.736800", + "Timestamp": "2024-05-16T03:31:31.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.956800", - "Timestamp": "2019-10-15T04:00:14.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r4.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088000", + "Timestamp": "2024-05-16T03:31:30.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.956800", - "Timestamp": "2019-10-15T04:00:14.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r4.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128000", + "Timestamp": "2024-05-16T03:31:30.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "a1.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.075000", - "Timestamp": "2019-10-15T04:00:06.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028000", + "Timestamp": "2024-05-16T03:31:30.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "a1.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.075000", - "Timestamp": "2019-10-15T04:00:06.000Z" + "SpotPrice": "0.225600", + "Timestamp": "2024-05-16T03:31:27.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "a1.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.015000", - "Timestamp": "2019-10-15T04:00:06.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.220600", + "Timestamp": "2024-05-16T03:31:27.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "a1.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.015000", - "Timestamp": "2019-10-15T04:00:06.000Z" + "SpotPrice": "0.095600", + "Timestamp": "2024-05-16T03:31:27.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.973000", - "Timestamp": "2019-10-15T03:59:49.000Z" + "SpotPrice": "10.858100", + "Timestamp": "2024-05-16T03:31:27.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.large", "ProductDescription": "Windows", - "SpotPrice": "2.973000", - "Timestamp": "2019-10-15T03:59:49.000Z" + "SpotPrice": "0.110100", + "Timestamp": "2024-05-16T03:31:26.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.large", "ProductDescription": "Windows", - "SpotPrice": "2.973000", - "Timestamp": "2019-10-15T03:59:49.000Z" + "SpotPrice": "0.115800", + "Timestamp": "2024-05-16T03:31:24.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i-flex.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.373400", - "Timestamp": "2019-10-15T03:44:50.000Z" + "SpotPrice": "0.236300", + "Timestamp": "2024-05-16T03:31:24.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i-flex.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.231300", + "Timestamp": "2024-05-16T03:31:24.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i-flex.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.243400", - "Timestamp": "2019-10-15T03:44:50.000Z" + "SpotPrice": "0.106300", + "Timestamp": "2024-05-16T03:31:24.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.979400", - "Timestamp": "2019-10-15T03:44:47.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.845200", + "Timestamp": "2024-05-16T03:31:23.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.979400", - "Timestamp": "2019-10-15T03:44:47.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.815200", + "Timestamp": "2024-05-16T03:31:23.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.979400", - "Timestamp": "2019-10-15T03:44:47.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.715200", + "Timestamp": "2024-05-16T03:31:23.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c3.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.385000", - "Timestamp": "2019-10-15T03:01:29.000Z" + "SpotPrice": "0.308100", + "Timestamp": "2024-05-16T03:31:22.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.385000", - "Timestamp": "2019-10-15T03:01:29.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.278100", + "Timestamp": "2024-05-16T03:31:22.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.178100", + "Timestamp": "2024-05-16T03:31:22.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.385000", - "Timestamp": "2019-10-15T03:01:29.000Z" + "SpotPrice": "1.587400", + "Timestamp": "2024-05-16T03:31:12.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.255000", - "Timestamp": "2019-10-15T03:01:29.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.557400", + "Timestamp": "2024-05-16T03:31:12.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.255000", - "Timestamp": "2019-10-15T03:01:29.000Z" + "SpotPrice": "1.457400", + "Timestamp": "2024-05-16T03:31:12.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.255000", - "Timestamp": "2019-10-15T03:01:29.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c1.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163400", + "Timestamp": "2024-05-16T03:31:11.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.991000", - "Timestamp": "2019-10-15T03:01:05.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c1.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.203400", + "Timestamp": "2024-05-16T03:31:11.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.991000", - "Timestamp": "2019-10-15T03:01:05.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c1.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.103400", + "Timestamp": "2024-05-16T03:31:11.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g4dn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.991000", - "Timestamp": "2019-10-15T03:01:05.000Z" + "SpotPrice": "0.274300", + "Timestamp": "2024-05-16T03:31:10.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.967800", - "Timestamp": "2019-10-15T03:00:33.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.517800", + "Timestamp": "2024-05-16T03:31:00.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.967800", - "Timestamp": "2019-10-15T03:00:33.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.512800", + "Timestamp": "2024-05-16T03:31:00.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.268200", - "Timestamp": "2019-10-15T02:00:33.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g5.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.387800", + "Timestamp": "2024-05-16T03:31:00.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x1e.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.268200", - "Timestamp": "2019-10-15T02:00:33.000Z" + "SpotPrice": "4.252800", + "Timestamp": "2024-05-16T03:30:49.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.138200", - "Timestamp": "2019-10-15T02:00:33.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x1e.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "4.222800", + "Timestamp": "2024-05-16T03:30:49.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x1e.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.138200", - "Timestamp": "2019-10-15T02:00:33.000Z" + "SpotPrice": "4.122800", + "Timestamp": "2024-05-16T03:30:49.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.200200", - "Timestamp": "2019-10-15T01:59:49.000Z" + "SpotPrice": "0.226200", + "Timestamp": "2024-05-16T03:19:26.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.200200", - "Timestamp": "2019-10-15T01:59:49.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.188900", + "Timestamp": "2024-05-16T03:18:06.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t2.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.035300", - "Timestamp": "2019-10-15T01:40:47.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "inf2.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.228900", + "Timestamp": "2024-05-16T03:18:06.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t2.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.035300", - "Timestamp": "2019-10-15T01:40:47.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "inf2.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.128900", + "Timestamp": "2024-05-16T03:18:06.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.251700", - "Timestamp": "2019-10-15T01:37:31.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214600", + "Timestamp": "2024-05-16T03:17:02.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.251700", - "Timestamp": "2019-10-15T01:37:31.000Z" + "SpotPrice": "0.297700", + "Timestamp": "2024-05-16T03:16:52.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.251700", - "Timestamp": "2019-10-15T01:37:31.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.292700", + "Timestamp": "2024-05-16T03:16:52.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6g.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.121700", - "Timestamp": "2019-10-15T01:37:31.000Z" + "SpotPrice": "0.167700", + "Timestamp": "2024-05-16T03:16:52.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.121700", - "Timestamp": "2019-10-15T01:37:31.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.729000", + "Timestamp": "2024-05-16T03:16:50.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.121700", - "Timestamp": "2019-10-15T01:37:31.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.208000", + "Timestamp": "2024-05-16T03:16:46.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.489700", - "Timestamp": "2019-10-15T01:37:31.000Z" + "SpotPrice": "0.210300", + "Timestamp": "2024-05-16T03:16:41.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.metal", "ProductDescription": "Windows", - "SpotPrice": "0.489700", - "Timestamp": "2019-10-15T01:37:31.000Z" + "SpotPrice": "5.131200", + "Timestamp": "2024-05-16T03:16:41.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.large", "ProductDescription": "Windows", - "SpotPrice": "0.489700", - "Timestamp": "2019-10-15T01:37:31.000Z" + "SpotPrice": "0.105100", + "Timestamp": "2024-05-16T03:16:38.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "a1.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.190100", - "Timestamp": "2019-10-15T01:00:19.000Z" + "SpotPrice": "0.075500", + "Timestamp": "2024-05-16T03:16:32.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "a1.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.190100", - "Timestamp": "2019-10-15T01:00:19.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.071800", + "Timestamp": "2024-05-16T03:16:32.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "a1.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gn.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060100", - "Timestamp": "2019-10-15T01:00:19.000Z" + "SpotPrice": "0.015500", + "Timestamp": "2024-05-16T03:16:32.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "a1.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060100", - "Timestamp": "2019-10-15T01:00:19.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.477600", + "Timestamp": "2024-05-16T03:16:32.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i-flex.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.991000", - "Timestamp": "2019-10-15T01:00:16.000Z" + "SpotPrice": "0.200900", + "Timestamp": "2024-05-16T03:16:31.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.991000", - "Timestamp": "2019-10-15T01:00:16.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.106400", + "Timestamp": "2024-05-16T03:16:30.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.991000", - "Timestamp": "2019-10-15T01:00:16.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.102700", + "Timestamp": "2024-05-16T03:16:30.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063400", - "Timestamp": "2019-10-15T01:00:16.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t4g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.046400", + "Timestamp": "2024-05-16T03:16:30.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "t3.micro", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063400", - "Timestamp": "2019-10-15T01:00:16.000Z" + "SpotPrice": "0.150700", + "Timestamp": "2024-05-16T03:16:29.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063400", - "Timestamp": "2019-10-15T01:00:16.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146700", + "Timestamp": "2024-05-16T03:16:29.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t3.micro", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003400", - "Timestamp": "2019-10-15T01:00:16.000Z" + "SpotPrice": "0.090700", + "Timestamp": "2024-05-16T03:16:29.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003400", - "Timestamp": "2019-10-15T01:00:16.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.846000", + "Timestamp": "2024-05-16T03:16:28.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t3.micro", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.056300", + "Timestamp": "2024-05-16T03:16:26.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.026300", + "Timestamp": "2024-05-16T03:16:26.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003400", - "Timestamp": "2019-10-15T01:00:16.000Z" + "SpotPrice": "1.926300", + "Timestamp": "2024-05-16T03:16:26.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "t3.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012600", - "Timestamp": "2019-10-15T00:59:56.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.320400", + "Timestamp": "2024-05-16T03:16:25.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "t3.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012600", - "Timestamp": "2019-10-15T00:59:56.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.315400", + "Timestamp": "2024-05-16T03:16:25.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "t3.micro", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190400", + "Timestamp": "2024-05-16T03:16:25.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.012600", - "Timestamp": "2019-10-15T00:59:56.000Z" + "SpotPrice": "0.840800", + "Timestamp": "2024-05-16T03:16:22.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.metal-48xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.385000", - "Timestamp": "2019-10-15T00:59:51.000Z" + "SpotPrice": "2.258100", + "Timestamp": "2024-05-16T03:16:20.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.385000", - "Timestamp": "2019-10-15T00:59:51.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.253100", + "Timestamp": "2024-05-16T03:16:20.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.128100", + "Timestamp": "2024-05-16T03:16:20.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5n.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.385000", - "Timestamp": "2019-10-15T00:59:51.000Z" + "SpotPrice": "0.733600", + "Timestamp": "2024-05-16T03:16:17.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.255000", - "Timestamp": "2019-10-15T00:59:51.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.728600", + "Timestamp": "2024-05-16T03:16:17.000Z" }, { - "AvailabilityZone": "ap-south-1c", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5n.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.255000", - "Timestamp": "2019-10-15T00:59:51.000Z" + "SpotPrice": "0.603600", + "Timestamp": "2024-05-16T03:16:17.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073300", + "Timestamp": "2024-05-16T03:16:14.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.044300", + "Timestamp": "2024-05-16T03:16:14.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r5.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3a.small", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.255000", - "Timestamp": "2019-10-15T00:59:51.000Z" - }, - { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "i2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.474100", - "Timestamp": "2019-10-15T00:52:02.000Z" + "SpotPrice": "0.013300", + "Timestamp": "2024-05-16T03:16:14.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "i2.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.metal", "ProductDescription": "Windows", - "SpotPrice": "0.474100", - "Timestamp": "2019-10-15T00:52:02.000Z" + "SpotPrice": "9.963800", + "Timestamp": "2024-05-16T03:16:09.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3a.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.121300", - "Timestamp": "2019-10-15T00:51:26.000Z" - }, - { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.061300", - "Timestamp": "2019-10-15T00:51:26.000Z" + "SpotPrice": "0.096900", + "Timestamp": "2024-05-16T03:16:02.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.118900", - "Timestamp": "2019-10-15T00:17:59.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3a.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093200", + "Timestamp": "2024-05-16T03:16:02.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3a.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.058900", - "Timestamp": "2019-10-15T00:17:59.000Z" + "SpotPrice": "0.036900", + "Timestamp": "2024-05-16T03:16:02.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.large", "ProductDescription": "Windows", - "SpotPrice": "0.432100", - "Timestamp": "2019-10-15T00:00:16.000Z" + "SpotPrice": "0.115600", + "Timestamp": "2024-05-16T03:14:10.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "d2.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t1.micro", "ProductDescription": "Windows", - "SpotPrice": "0.432100", - "Timestamp": "2019-10-15T00:00:16.000Z" + "SpotPrice": "0.032700", + "Timestamp": "2024-05-16T03:13:40.000Z" }, { - "AvailabilityZone": "ap-south-1b", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.489400", - "Timestamp": "2019-10-14T21:18:40.000Z" + "SpotPrice": "0.846200", + "Timestamp": "2024-05-16T03:05:01.000Z" }, { - "AvailabilityZone": "ap-south-1a", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3a.nano", "ProductDescription": "Windows", - "SpotPrice": "0.489400", - "Timestamp": "2019-10-14T21:18:40.000Z" + "SpotPrice": "0.006100", + "Timestamp": "2024-05-16T03:02:30.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "m4.xlarge", + "InstanceType": "i4i.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.143700", - "Timestamp": "2019-10-16T02:56:34.000Z" + "SpotPrice": "1.095400", + "Timestamp": "2024-05-16T03:02:12.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "m4.xlarge", + "InstanceType": "i4i.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.183700", - "Timestamp": "2019-10-16T02:56:34.000Z" + "SpotPrice": "1.090400", + "Timestamp": "2024-05-16T03:02:12.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "m4.xlarge", + "InstanceType": "i4i.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.083700", - "Timestamp": "2019-10-16T02:56:34.000Z" + "SpotPrice": "0.965400", + "Timestamp": "2024-05-16T03:02:12.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211600", + "Timestamp": "2024-05-16T03:02:10.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c4.xlarge", + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.690400", + "Timestamp": "2024-05-16T03:01:54.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m4.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.138000", - "Timestamp": "2019-10-16T02:55:57.000Z" + "SpotPrice": "0.447500", + "Timestamp": "2024-05-16T03:01:40.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c4.xlarge", + "InstanceType": "m4.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.178000", - "Timestamp": "2019-10-16T02:55:57.000Z" + "SpotPrice": "0.417500", + "Timestamp": "2024-05-16T03:01:40.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c4.xlarge", + "InstanceType": "m4.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.078000", - "Timestamp": "2019-10-16T02:55:57.000Z" + "SpotPrice": "0.317500", + "Timestamp": "2024-05-16T03:01:40.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.xlarge", + "InstanceType": "r3.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.150700", - "Timestamp": "2019-10-16T02:55:57.000Z" + "SpotPrice": "0.409900", + "Timestamp": "2024-05-16T03:01:39.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.xlarge", + "InstanceType": "r3.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.190700", - "Timestamp": "2019-10-16T02:55:57.000Z" + "SpotPrice": "0.379900", + "Timestamp": "2024-05-16T03:01:39.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.xlarge", + "InstanceType": "r3.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.090700", - "Timestamp": "2019-10-16T02:55:57.000Z" + "SpotPrice": "0.279900", + "Timestamp": "2024-05-16T03:01:39.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.142900", - "Timestamp": "2019-10-16T02:55:48.000Z" + "SpotPrice": "0.096000", + "Timestamp": "2024-05-16T03:01:39.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.182900", - "Timestamp": "2019-10-16T02:55:48.000Z" + "SpotPrice": "0.092000", + "Timestamp": "2024-05-16T03:01:39.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.082900", - "Timestamp": "2019-10-16T02:55:48.000Z" + "SpotPrice": "0.036000", + "Timestamp": "2024-05-16T03:01:39.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.large", + "InstanceType": "r5n.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.149200", - "Timestamp": "2019-10-16T02:55:42.000Z" + "SpotPrice": "1.849600", + "Timestamp": "2024-05-16T03:01:38.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.462400", + "Timestamp": "2024-05-16T03:01:37.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.195600", + "Timestamp": "2024-05-16T03:01:32.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.562600", - "Timestamp": "2019-10-16T02:55:25.000Z" + "SpotPrice": "0.257500", + "Timestamp": "2024-05-16T03:01:31.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6g.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.532600", - "Timestamp": "2019-10-16T02:55:25.000Z" + "SpotPrice": "0.252500", + "Timestamp": "2024-05-16T03:01:31.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6g.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.432600", - "Timestamp": "2019-10-16T02:55:25.000Z" + "SpotPrice": "0.127500", + "Timestamp": "2024-05-16T03:01:31.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.12xlarge", + "InstanceType": "r6g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.516600", - "Timestamp": "2019-10-16T02:31:27.000Z" + "SpotPrice": "0.068100", + "Timestamp": "2024-05-16T03:01:30.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.12xlarge", + "InstanceType": "r6g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.486600", - "Timestamp": "2019-10-16T02:31:27.000Z" + "SpotPrice": "0.039100", + "Timestamp": "2024-05-16T03:01:30.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.12xlarge", + "InstanceType": "r6g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.386600", - "Timestamp": "2019-10-16T02:31:27.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.194200", - "Timestamp": "2019-10-16T02:22:40.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.164200", - "Timestamp": "2019-10-16T02:22:40.000Z" + "SpotPrice": "0.008100", + "Timestamp": "2024-05-16T03:01:30.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.064200", - "Timestamp": "2019-10-16T02:22:40.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.798600", + "Timestamp": "2024-05-16T03:01:28.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.xlarge", + "InstanceType": "c6i.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.140300", - "Timestamp": "2019-10-16T02:22:25.000Z" + "SpotPrice": "2.852400", + "Timestamp": "2024-05-16T03:01:23.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.xlarge", + "InstanceType": "c6i.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.180300", - "Timestamp": "2019-10-16T02:22:25.000Z" + "SpotPrice": "2.847400", + "Timestamp": "2024-05-16T03:01:23.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.xlarge", + "InstanceType": "c6i.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.080300", - "Timestamp": "2019-10-16T02:22:25.000Z" + "SpotPrice": "2.722400", + "Timestamp": "2024-05-16T03:01:23.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.24xlarge", + "InstanceType": "m7g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.568200", - "Timestamp": "2019-10-16T02:22:25.000Z" + "SpotPrice": "0.079800", + "Timestamp": "2024-05-16T03:01:11.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.24xlarge", + "InstanceType": "m7g.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.538200", - "Timestamp": "2019-10-16T02:22:25.000Z" + "SpotPrice": "0.076100", + "Timestamp": "2024-05-16T03:01:11.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.24xlarge", + "InstanceType": "m7g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.438200", - "Timestamp": "2019-10-16T02:22:25.000Z" + "SpotPrice": "0.019800", + "Timestamp": "2024-05-16T03:01:11.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.013200", - "Timestamp": "2019-10-16T02:14:15.000Z" + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.731000", + "Timestamp": "2024-05-16T02:49:43.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "x2idn.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.060700", - "Timestamp": "2019-10-16T02:13:52.000Z" + "SpotPrice": "2.731000", + "Timestamp": "2024-05-16T02:49:43.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x2idn.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.030700", - "Timestamp": "2019-10-16T02:13:52.000Z" + "SpotPrice": "2.726000", + "Timestamp": "2024-05-16T02:49:43.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.930700", - "Timestamp": "2019-10-16T02:13:52.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.726000", + "Timestamp": "2024-05-16T02:49:43.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.749700", - "Timestamp": "2019-10-16T01:57:51.000Z" + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.601000", + "Timestamp": "2024-05-16T02:49:43.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.162500", - "Timestamp": "2019-10-16T01:57:44.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.601000", + "Timestamp": "2024-05-16T02:49:43.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.202500", - "Timestamp": "2019-10-16T01:57:44.000Z" + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.489000", + "Timestamp": "2024-05-16T02:49:43.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.102500", - "Timestamp": "2019-10-16T01:57:44.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.489000", + "Timestamp": "2024-05-16T02:49:43.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.4xlarge", + "InstanceType": "x2idn.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "8.489000", + "Timestamp": "2024-05-16T02:49:43.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.metal-24xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.416300", - "Timestamp": "2019-10-16T01:57:26.000Z" + "SpotPrice": "0.790200", + "Timestamp": "2024-05-16T02:47:52.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.4xlarge", + "InstanceType": "c7i.metal-24xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.386300", - "Timestamp": "2019-10-16T01:57:26.000Z" + "SpotPrice": "0.785200", + "Timestamp": "2024-05-16T02:47:52.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.4xlarge", + "InstanceType": "c7i.metal-24xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.286300", - "Timestamp": "2019-10-16T01:57:26.000Z" + "SpotPrice": "0.660200", + "Timestamp": "2024-05-16T02:47:52.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.134400", - "Timestamp": "2019-10-16T01:54:25.000Z" + "SpotPrice": "0.896800", + "Timestamp": "2024-05-16T02:47:33.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.134400", - "Timestamp": "2019-10-16T01:54:25.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082800", + "Timestamp": "2024-05-16T02:47:28.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006500", - "Timestamp": "2019-10-16T01:53:34.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.078800", + "Timestamp": "2024-05-16T02:47:28.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3a.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.006500", - "Timestamp": "2019-10-16T01:53:34.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022800", + "Timestamp": "2024-05-16T02:47:28.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.large", + "InstanceType": "r4.large", "ProductDescription": "Windows", - "SpotPrice": "0.165700", - "Timestamp": "2019-10-16T01:50:39.000Z" + "SpotPrice": "0.120000", + "Timestamp": "2024-05-16T02:47:21.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.large", + "InstanceType": "r4.large", "ProductDescription": "Windows", - "SpotPrice": "0.163500", - "Timestamp": "2019-10-16T01:50:39.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.100800", - "Timestamp": "2019-10-16T01:49:35.000Z" + "SpotPrice": "0.120000", + "Timestamp": "2024-05-16T02:47:21.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m4.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.140800", - "Timestamp": "2019-10-16T01:49:35.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.839800", + "Timestamp": "2024-05-16T02:46:54.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.040800", - "Timestamp": "2019-10-16T01:49:35.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.072000", + "Timestamp": "2024-05-16T02:46:53.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.12xlarge", + "InstanceType": "c6a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.029200", - "Timestamp": "2019-10-16T01:49:33.000Z" + "SpotPrice": "0.433400", + "Timestamp": "2024-05-16T02:46:46.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.24xlarge", + "InstanceType": "m7i.metal-48xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.185900", - "Timestamp": "2019-10-16T01:49:30.000Z" + "SpotPrice": "1.672200", + "Timestamp": "2024-05-16T02:46:40.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.24xlarge", + "InstanceType": "m7i.metal-48xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.155900", - "Timestamp": "2019-10-16T01:49:30.000Z" + "SpotPrice": "1.667200", + "Timestamp": "2024-05-16T02:46:40.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.24xlarge", + "InstanceType": "m7i.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.055900", - "Timestamp": "2019-10-16T01:49:30.000Z" + "SpotPrice": "1.542200", + "Timestamp": "2024-05-16T02:46:40.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3a.xlarge", + "InstanceType": "m5ad.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120800", - "Timestamp": "2019-10-16T01:49:28.000Z" + "SpotPrice": "0.944800", + "Timestamp": "2024-05-16T02:46:34.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120800", - "Timestamp": "2019-10-16T01:49:28.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.939800", + "Timestamp": "2024-05-16T02:46:34.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3a.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.160800", - "Timestamp": "2019-10-16T01:49:28.000Z" + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.814800", + "Timestamp": "2024-05-16T02:46:34.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3a.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.160800", - "Timestamp": "2019-10-16T01:49:28.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.316600", + "Timestamp": "2024-05-16T02:46:32.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060800", - "Timestamp": "2019-10-16T01:49:28.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.286600", + "Timestamp": "2024-05-16T02:46:32.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3a.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060800", - "Timestamp": "2019-10-16T01:49:28.000Z" + "SpotPrice": "0.186600", + "Timestamp": "2024-05-16T02:46:32.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.12xlarge", + "InstanceType": "r6gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.509200", - "Timestamp": "2019-10-16T01:49:27.000Z" + "SpotPrice": "0.094000", + "Timestamp": "2024-05-16T02:46:32.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.12xlarge", + "InstanceType": "r6gd.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.479200", - "Timestamp": "2019-10-16T01:49:27.000Z" + "SpotPrice": "0.090300", + "Timestamp": "2024-05-16T02:46:32.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.12xlarge", + "InstanceType": "r6gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.379200", - "Timestamp": "2019-10-16T01:49:27.000Z" + "SpotPrice": "0.034000", + "Timestamp": "2024-05-16T02:46:32.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "7.952400", - "Timestamp": "2019-10-16T01:49:25.000Z" + "SpotPrice": "3.321300", + "Timestamp": "2024-05-16T02:46:28.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "7.952400", - "Timestamp": "2019-10-16T01:49:25.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102500", + "Timestamp": "2024-05-16T02:46:23.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3a.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067600", - "Timestamp": "2019-10-16T01:49:25.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098800", + "Timestamp": "2024-05-16T02:46:23.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.042500", + "Timestamp": "2024-05-16T02:46:23.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3a.small", + "InstanceType": "m4.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.067600", - "Timestamp": "2019-10-16T01:49:25.000Z" + "SpotPrice": "0.117000", + "Timestamp": "2024-05-16T02:46:22.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3a.small", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m4.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.107600", - "Timestamp": "2019-10-16T01:49:25.000Z" + "SpotPrice": "0.157000", + "Timestamp": "2024-05-16T02:46:22.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3a.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.107600", - "Timestamp": "2019-10-16T01:49:25.000Z" + "InstanceType": "m4.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.057000", + "Timestamp": "2024-05-16T02:46:22.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3a.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007600", - "Timestamp": "2019-10-16T01:49:25.000Z" + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.867200", + "Timestamp": "2024-05-16T02:46:22.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3a.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.007600", - "Timestamp": "2019-10-16T01:49:25.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.216100", + "Timestamp": "2024-05-16T02:46:20.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3a.small", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.026300", - "Timestamp": "2019-10-16T01:49:25.000Z" + "SpotPrice": "5.553600", + "Timestamp": "2024-05-16T02:46:16.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3a.small", + "InstanceType": "r7i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.026000", - "Timestamp": "2019-10-16T01:49:25.000Z" + "SpotPrice": "0.904800", + "Timestamp": "2024-05-16T02:46:14.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.metal", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.xlarge", "ProductDescription": "Windows", - "SpotPrice": "7.816900", - "Timestamp": "2019-10-16T01:49:14.000Z" + "SpotPrice": "0.210200", + "Timestamp": "2024-05-16T02:46:12.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5d.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.098600", - "Timestamp": "2019-10-16T01:48:54.000Z" + "SpotPrice": "0.342800", + "Timestamp": "2024-05-16T02:46:08.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5d.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.138600", - "Timestamp": "2019-10-16T01:48:54.000Z" + "SpotPrice": "0.337800", + "Timestamp": "2024-05-16T02:46:08.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5d.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.038600", - "Timestamp": "2019-10-16T01:48:54.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.317800", - "Timestamp": "2019-10-16T01:48:34.000Z" + "SpotPrice": "0.212800", + "Timestamp": "2024-05-16T02:46:08.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5ad.xlarge", + "InstanceType": "m1.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.317800", - "Timestamp": "2019-10-16T01:48:34.000Z" + "SpotPrice": "0.377100", + "Timestamp": "2024-05-16T02:46:05.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3a.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061900", - "Timestamp": "2019-10-16T01:48:34.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.909600", + "Timestamp": "2024-05-16T02:45:58.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3a.nano", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.061900", - "Timestamp": "2019-10-16T01:48:34.000Z" + "SpotPrice": "0.567800", + "Timestamp": "2024-05-16T02:32:39.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3a.nano", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.101900", - "Timestamp": "2019-10-16T01:48:34.000Z" + "SpotPrice": "0.562800", + "Timestamp": "2024-05-16T02:32:39.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3a.nano", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.101900", - "Timestamp": "2019-10-16T01:48:34.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.437800", + "Timestamp": "2024-05-16T02:32:39.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3a.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001900", - "Timestamp": "2019-10-16T01:48:34.000Z" + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-16T02:32:32.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3a.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.001900", - "Timestamp": "2019-10-16T01:48:34.000Z" + "InstanceType": "r5b.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.925600", + "Timestamp": "2024-05-16T02:32:17.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5ad.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.158900", - "Timestamp": "2019-10-16T01:48:15.000Z" + "SpotPrice": "2.690400", + "Timestamp": "2024-05-16T02:31:58.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5ad.large", + "InstanceType": "m6a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.158900", - "Timestamp": "2019-10-16T01:48:15.000Z" + "SpotPrice": "2.539300", + "Timestamp": "2024-05-16T02:31:48.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3a.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063800", - "Timestamp": "2019-10-16T01:48:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.910200", + "Timestamp": "2024-05-16T02:31:44.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3a.micro", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.063800", - "Timestamp": "2019-10-16T01:48:15.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3a.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.103800", - "Timestamp": "2019-10-16T01:48:15.000Z" + "SpotPrice": "2.768700", + "Timestamp": "2024-05-16T02:31:41.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3a.micro", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.103800", - "Timestamp": "2019-10-16T01:48:15.000Z" + "SpotPrice": "2.763700", + "Timestamp": "2024-05-16T02:31:41.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3a.micro", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003800", - "Timestamp": "2019-10-16T01:48:15.000Z" + "SpotPrice": "2.638700", + "Timestamp": "2024-05-16T02:31:41.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3a.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.003800", - "Timestamp": "2019-10-16T01:48:15.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.013000", - "Timestamp": "2019-10-16T01:48:15.000Z" + "InstanceType": "c3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097300", + "Timestamp": "2024-05-16T02:31:40.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3a.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.013000", - "Timestamp": "2019-10-16T01:48:15.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091400", - "Timestamp": "2019-10-16T01:47:59.000Z" + "InstanceType": "c3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.137300", + "Timestamp": "2024-05-16T02:31:40.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.091800", - "Timestamp": "2019-10-16T01:47:59.000Z" + "InstanceType": "c3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.037300", + "Timestamp": "2024-05-16T02:31:40.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3a.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.131400", - "Timestamp": "2019-10-16T01:47:59.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.442100", + "Timestamp": "2024-05-16T02:31:39.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3a.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7g.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.131800", - "Timestamp": "2019-10-16T01:47:59.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031400", - "Timestamp": "2019-10-16T01:47:59.000Z" + "SpotPrice": "0.437100", + "Timestamp": "2024-05-16T02:31:39.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3a.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.031800", - "Timestamp": "2019-10-16T01:47:59.000Z" + "SpotPrice": "0.312100", + "Timestamp": "2024-05-16T02:31:39.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3a.large", + "InstanceType": "c5a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.058000", - "Timestamp": "2019-10-16T01:47:59.000Z" + "SpotPrice": "2.491200", + "Timestamp": "2024-05-16T02:31:29.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3a.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.metal", "ProductDescription": "Windows", - "SpotPrice": "0.058000", - "Timestamp": "2019-10-16T01:47:59.000Z" + "SpotPrice": "10.153900", + "Timestamp": "2024-05-16T02:31:28.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3a.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.075200", - "Timestamp": "2019-10-16T01:47:56.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.681600", + "Timestamp": "2024-05-16T02:31:28.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3a.medium", + "InstanceType": "c6g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.075200", - "Timestamp": "2019-10-16T01:47:56.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3a.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.115200", - "Timestamp": "2019-10-16T01:47:56.000Z" + "SpotPrice": "0.071500", + "Timestamp": "2024-05-16T02:31:23.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3a.medium", + "InstanceType": "c6g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.115200", - "Timestamp": "2019-10-16T01:47:56.000Z" + "SpotPrice": "0.042500", + "Timestamp": "2024-05-16T02:31:23.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3a.medium", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.015200", - "Timestamp": "2019-10-16T01:47:56.000Z" + "SpotPrice": "0.011500", + "Timestamp": "2024-05-16T02:31:23.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3a.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.015200", - "Timestamp": "2019-10-16T01:47:56.000Z" + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "11.290300", + "Timestamp": "2024-05-16T02:31:03.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.033600", - "Timestamp": "2019-10-16T01:47:56.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6id.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "11.285300", + "Timestamp": "2024-05-16T02:31:03.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3a.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.033600", - "Timestamp": "2019-10-16T01:47:56.000Z" + "InstanceType": "m6id.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "11.160300", + "Timestamp": "2024-05-16T02:31:03.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.207300", - "Timestamp": "2019-10-16T01:47:53.000Z" + "InstanceType": "r5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.510400", + "Timestamp": "2024-05-16T02:31:01.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.xlarge", + "InstanceType": "t4g.small", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.207300", - "Timestamp": "2019-10-16T01:47:53.000Z" + "SpotPrice": "0.065500", + "Timestamp": "2024-05-16T02:17:32.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t4g.small", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.247300", - "Timestamp": "2019-10-16T01:47:53.000Z" + "SpotPrice": "0.036800", + "Timestamp": "2024-05-16T02:17:32.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.247300", - "Timestamp": "2019-10-16T01:47:53.000Z" + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005500", + "Timestamp": "2024-05-16T02:17:32.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.147300", - "Timestamp": "2019-10-16T01:47:53.000Z" + "InstanceType": "t3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.249200", + "Timestamp": "2024-05-16T02:16:35.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.147300", - "Timestamp": "2019-10-16T01:47:53.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.244200", + "Timestamp": "2024-05-16T02:16:35.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.331300", - "Timestamp": "2019-10-16T01:47:53.000Z" + "InstanceType": "t3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.119200", + "Timestamp": "2024-05-16T02:16:35.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.331300", - "Timestamp": "2019-10-16T01:47:53.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t4g.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.065200", + "Timestamp": "2024-05-16T02:16:32.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.542200", - "Timestamp": "2019-10-16T01:47:50.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t4g.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.036500", + "Timestamp": "2024-05-16T02:16:32.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.542200", - "Timestamp": "2019-10-16T01:47:50.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t4g.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.005200", + "Timestamp": "2024-05-16T02:16:32.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3a.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.268900", - "Timestamp": "2019-10-16T01:47:50.000Z" + "SpotPrice": "0.105400", + "Timestamp": "2024-05-16T02:16:32.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3a.2xlarge", + "InstanceType": "c6a.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.274500", - "Timestamp": "2019-10-16T01:47:50.000Z" + "SpotPrice": "6.642600", + "Timestamp": "2024-05-16T02:16:27.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.251700", - "Timestamp": "2019-10-16T01:47:50.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3a.2xlarge", + "InstanceType": "t4g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.251700", - "Timestamp": "2019-10-16T01:47:50.000Z" + "SpotPrice": "0.074200", + "Timestamp": "2024-05-16T02:16:27.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.221700", - "Timestamp": "2019-10-16T01:47:50.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3a.2xlarge", + "InstanceType": "t4g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.221700", - "Timestamp": "2019-10-16T01:47:50.000Z" + "SpotPrice": "0.070500", + "Timestamp": "2024-05-16T02:16:27.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3a.2xlarge", + "InstanceType": "t4g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.121700", - "Timestamp": "2019-10-16T01:47:50.000Z" + "SpotPrice": "0.014200", + "Timestamp": "2024-05-16T02:16:27.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.121700", - "Timestamp": "2019-10-16T01:47:50.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.122700", + "Timestamp": "2024-05-16T02:16:08.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.084300", - "Timestamp": "2019-10-16T01:46:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.118700", + "Timestamp": "2024-05-16T02:16:08.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "5.084300", - "Timestamp": "2019-10-16T01:46:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.062700", + "Timestamp": "2024-05-16T02:16:08.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.666400", - "Timestamp": "2019-10-16T01:46:15.000Z" + "InstanceType": "m6id.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.323200", + "Timestamp": "2024-05-16T02:08:33.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.metal", + "InstanceType": "r5.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.666400", - "Timestamp": "2019-10-16T01:46:15.000Z" + "SpotPrice": "1.094800", + "Timestamp": "2024-05-16T02:02:35.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.metal", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.636400", - "Timestamp": "2019-10-16T01:46:15.000Z" + "SpotPrice": "1.089800", + "Timestamp": "2024-05-16T02:02:35.000Z" }, { "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.964800", + "Timestamp": "2024-05-16T02:02:35.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", "InstanceType": "r5d.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.636400", - "Timestamp": "2019-10-16T01:46:15.000Z" + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.224400", + "Timestamp": "2024-05-16T02:02:15.000Z" }, { - "AvailabilityZone": "sa-east-1c", + "AvailabilityZone": "sa-east-1b", "InstanceType": "r5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.536400", - "Timestamp": "2019-10-16T01:46:15.000Z" + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.219400", + "Timestamp": "2024-05-16T02:02:15.000Z" }, { - "AvailabilityZone": "sa-east-1a", + "AvailabilityZone": "sa-east-1b", "InstanceType": "r5d.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.536400", - "Timestamp": "2019-10-16T01:46:15.000Z" + "SpotPrice": "1.094400", + "Timestamp": "2024-05-16T02:02:15.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.metal", + "InstanceType": "r5b.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "7.952400", - "Timestamp": "2019-10-16T01:46:14.000Z" + "SpotPrice": "0.462800", + "Timestamp": "2024-05-16T02:02:03.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.metal", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "7.825300", - "Timestamp": "2019-10-16T01:46:14.000Z" + "SpotPrice": "1.793600", + "Timestamp": "2024-05-16T02:01:36.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.large", + "InstanceType": "m6g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.133700", - "Timestamp": "2019-10-16T01:45:41.000Z" + "SpotPrice": "0.095700", + "Timestamp": "2024-05-16T02:01:33.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.133700", - "Timestamp": "2019-10-16T01:45:41.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.092000", + "Timestamp": "2024-05-16T02:01:33.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.173700", - "Timestamp": "2019-10-16T01:45:41.000Z" + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035700", + "Timestamp": "2024-05-16T02:01:33.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.173700", - "Timestamp": "2019-10-16T01:45:41.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076100", + "Timestamp": "2024-05-16T02:01:32.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.073700", - "Timestamp": "2019-10-16T01:45:41.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.072400", + "Timestamp": "2024-05-16T02:01:32.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.073700", - "Timestamp": "2019-10-16T01:45:41.000Z" + "SpotPrice": "0.016100", + "Timestamp": "2024-05-16T02:01:32.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.325400", - "Timestamp": "2019-10-16T01:45:39.000Z" + "SpotPrice": "10.152500", + "Timestamp": "2024-05-16T01:55:38.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.4xlarge", + "InstanceType": "x1.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.325400", - "Timestamp": "2019-10-16T01:45:39.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.719400", - "Timestamp": "2019-10-16T01:45:38.000Z" + "SpotPrice": "4.244500", + "Timestamp": "2024-05-16T01:48:11.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.4xlarge", + "InstanceType": "x1.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.719400", - "Timestamp": "2019-10-16T01:45:38.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.689400", - "Timestamp": "2019-10-16T01:45:38.000Z" + "SpotPrice": "1.430500", + "Timestamp": "2024-05-16T01:48:11.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.4xlarge", + "InstanceType": "x1.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.689400", - "Timestamp": "2019-10-16T01:45:38.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.589400", - "Timestamp": "2019-10-16T01:45:38.000Z" + "SpotPrice": "1.400500", + "Timestamp": "2024-05-16T01:48:11.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.4xlarge", + "InstanceType": "x1.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.589400", - "Timestamp": "2019-10-16T01:45:38.000Z" + "SpotPrice": "1.300500", + "Timestamp": "2024-05-16T01:48:11.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.2xlarge", + "InstanceType": "r6i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.662700", - "Timestamp": "2019-10-16T01:44:52.000Z" + "SpotPrice": "0.448600", + "Timestamp": "2024-05-16T01:46:30.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.662700", - "Timestamp": "2019-10-16T01:44:52.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.330300", + "Timestamp": "2024-05-16T01:46:29.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.424700", - "Timestamp": "2019-10-16T01:44:51.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.325300", + "Timestamp": "2024-05-16T01:46:29.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5ad.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.200300", + "Timestamp": "2024-05-16T01:46:29.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.2xlarge", + "InstanceType": "m5a.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.424700", - "Timestamp": "2019-10-16T01:44:51.000Z" + "SpotPrice": "1.198500", + "Timestamp": "2024-05-16T01:46:24.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5a.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.394700", - "Timestamp": "2019-10-16T01:44:51.000Z" + "SpotPrice": "1.193500", + "Timestamp": "2024-05-16T01:46:24.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.394700", - "Timestamp": "2019-10-16T01:44:51.000Z" + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.068500", + "Timestamp": "2024-05-16T01:46:24.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.294700", - "Timestamp": "2019-10-16T01:44:51.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.731000", + "Timestamp": "2024-05-16T01:37:55.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.294700", - "Timestamp": "2019-10-16T01:44:51.000Z" + "InstanceType": "x1.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.701000", + "Timestamp": "2024-05-16T01:37:55.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.898200", - "Timestamp": "2019-10-16T01:44:28.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x1.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.601000", + "Timestamp": "2024-05-16T01:37:55.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.898200", - "Timestamp": "2019-10-16T01:44:28.000Z" + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.491000", + "Timestamp": "2024-05-16T01:34:44.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.868200", - "Timestamp": "2019-10-16T01:44:28.000Z" + "InstanceType": "r3.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.689700", + "Timestamp": "2024-05-16T01:32:28.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r3.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.868200", - "Timestamp": "2019-10-16T01:44:28.000Z" + "SpotPrice": "0.659700", + "Timestamp": "2024-05-16T01:32:28.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.768200", - "Timestamp": "2019-10-16T01:44:28.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.12xlarge", + "InstanceType": "r3.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.768200", - "Timestamp": "2019-10-16T01:44:28.000Z" + "SpotPrice": "0.559700", + "Timestamp": "2024-05-16T01:32:28.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.12xlarge", + "InstanceType": "c7i-flex.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.976200", - "Timestamp": "2019-10-16T01:44:28.000Z" + "SpotPrice": "0.803700", + "Timestamp": "2024-05-16T01:32:11.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.12xlarge", + "InstanceType": "c5ad.xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.976200", - "Timestamp": "2019-10-16T01:44:28.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.666400", - "Timestamp": "2019-10-16T01:44:25.000Z" + "SpotPrice": "0.210800", + "Timestamp": "2024-05-16T01:32:11.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.24xlarge", + "InstanceType": "r5d.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.666400", - "Timestamp": "2019-10-16T01:44:25.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.636400", - "Timestamp": "2019-10-16T01:44:25.000Z" + "SpotPrice": "1.224400", + "Timestamp": "2024-05-16T01:32:04.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.24xlarge", + "InstanceType": "r5d.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.636400", - "Timestamp": "2019-10-16T01:44:25.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.536400", - "Timestamp": "2019-10-16T01:44:25.000Z" + "SpotPrice": "1.219400", + "Timestamp": "2024-05-16T01:32:04.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.24xlarge", + "InstanceType": "r5d.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.536400", - "Timestamp": "2019-10-16T01:44:25.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.960000", - "Timestamp": "2019-10-16T01:44:17.000Z" + "SpotPrice": "1.094400", + "Timestamp": "2024-05-16T01:32:04.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.960000", - "Timestamp": "2019-10-16T01:44:17.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.2xlarge", + "InstanceType": "c6a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.608400", - "Timestamp": "2019-10-16T01:43:45.000Z" + "SpotPrice": "0.830300", + "Timestamp": "2024-05-16T01:31:40.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.2xlarge", + "InstanceType": "r3.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.600300", - "Timestamp": "2019-10-16T01:43:45.000Z" + "SpotPrice": "1.751200", + "Timestamp": "2024-05-16T01:31:37.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.193800", - "Timestamp": "2019-10-16T01:43:34.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5ad.xlarge", + "InstanceType": "m7i-flex.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.193800", - "Timestamp": "2019-10-16T01:43:34.000Z" + "SpotPrice": "0.118100", + "Timestamp": "2024-05-16T01:31:36.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.233800", - "Timestamp": "2019-10-16T01:43:34.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5ad.xlarge", + "InstanceType": "m7i-flex.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.233800", - "Timestamp": "2019-10-16T01:43:34.000Z" + "SpotPrice": "0.114400", + "Timestamp": "2024-05-16T01:31:36.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5ad.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.133800", - "Timestamp": "2019-10-16T01:43:34.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5ad.xlarge", + "InstanceType": "m7i-flex.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.133800", - "Timestamp": "2019-10-16T01:43:34.000Z" + "SpotPrice": "0.058100", + "Timestamp": "2024-05-16T01:31:36.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5ad.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126900", - "Timestamp": "2019-10-16T01:43:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.014400", + "Timestamp": "2024-05-16T01:31:34.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5ad.large", + "InstanceType": "m6a.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126900", - "Timestamp": "2019-10-16T01:43:15.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5ad.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.166900", - "Timestamp": "2019-10-16T01:43:15.000Z" + "SpotPrice": "0.570600", + "Timestamp": "2024-05-16T01:31:33.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5ad.large", + "InstanceType": "m6a.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.166900", - "Timestamp": "2019-10-16T01:43:15.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5ad.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066900", - "Timestamp": "2019-10-16T01:43:15.000Z" + "SpotPrice": "0.565600", + "Timestamp": "2024-05-16T01:31:33.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5ad.large", + "InstanceType": "m6a.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066900", - "Timestamp": "2019-10-16T01:43:15.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.426000", - "Timestamp": "2019-10-16T01:43:04.000Z" + "SpotPrice": "0.440600", + "Timestamp": "2024-05-16T01:31:33.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.426000", - "Timestamp": "2019-10-16T01:43:04.000Z" + "SpotPrice": "0.338100", + "Timestamp": "2024-05-16T01:31:31.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7g.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.396000", - "Timestamp": "2019-10-16T01:43:04.000Z" + "SpotPrice": "0.333100", + "Timestamp": "2024-05-16T01:31:31.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.396000", - "Timestamp": "2019-10-16T01:43:04.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.208100", + "Timestamp": "2024-05-16T01:31:31.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.296000", - "Timestamp": "2019-10-16T01:43:04.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.760000", + "Timestamp": "2024-05-16T01:31:29.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.296000", - "Timestamp": "2019-10-16T01:43:04.000Z" + "InstanceType": "m5d.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.760000", + "Timestamp": "2024-05-16T01:31:29.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5ad.8xlarge", + "InstanceType": "m6id.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.200200", - "Timestamp": "2019-10-16T01:42:57.000Z" + "SpotPrice": "0.150100", + "Timestamp": "2024-05-16T01:31:26.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.200200", - "Timestamp": "2019-10-16T01:42:57.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.146400", + "Timestamp": "2024-05-16T01:31:26.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.170200", - "Timestamp": "2019-10-16T01:42:57.000Z" + "InstanceType": "m6id.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.090100", + "Timestamp": "2024-05-16T01:31:26.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.960000", + "Timestamp": "2024-05-16T01:31:25.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.170200", - "Timestamp": "2019-10-16T01:42:57.000Z" + "InstanceType": "c5d.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.102700", + "Timestamp": "2024-05-16T01:31:19.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5ad.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.070200", - "Timestamp": "2019-10-16T01:42:57.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.098700", + "Timestamp": "2024-05-16T01:31:19.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5ad.8xlarge", + "InstanceType": "c5d.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.070200", - "Timestamp": "2019-10-16T01:42:57.000Z" + "SpotPrice": "0.042700", + "Timestamp": "2024-05-16T01:31:19.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5ad.2xlarge", + "InstanceType": "r4.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.635500", - "Timestamp": "2019-10-16T01:42:54.000Z" + "SpotPrice": "0.480000", + "Timestamp": "2024-05-16T01:31:19.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5ad.2xlarge", + "InstanceType": "m7i-flex.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.635500", - "Timestamp": "2019-10-16T01:42:54.000Z" + "SpotPrice": "0.410600", + "Timestamp": "2024-05-16T01:31:16.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.397500", - "Timestamp": "2019-10-16T01:42:54.000Z" + "SpotPrice": "0.081200", + "Timestamp": "2024-05-16T01:30:56.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.397500", - "Timestamp": "2019-10-16T01:42:54.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.077500", + "Timestamp": "2024-05-16T01:30:56.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021200", + "Timestamp": "2024-05-16T01:30:56.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.367500", - "Timestamp": "2019-10-16T01:42:54.000Z" + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.280000", + "Timestamp": "2024-05-16T01:17:55.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.367500", - "Timestamp": "2019-10-16T01:42:54.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092200", + "Timestamp": "2024-05-16T01:17:10.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5ad.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.267500", - "Timestamp": "2019-10-16T01:42:54.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088500", + "Timestamp": "2024-05-16T01:17:10.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5ad.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6gd.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.267500", - "Timestamp": "2019-10-16T01:42:54.000Z" + "SpotPrice": "0.032200", + "Timestamp": "2024-05-16T01:17:10.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "7.626500", - "Timestamp": "2019-10-16T01:42:51.000Z" + "SpotPrice": "4.981900", + "Timestamp": "2024-05-16T01:16:40.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5ad.24xlarge", + "InstanceType": "m5zn.6xlarge", "ProductDescription": "Windows", - "SpotPrice": "7.626500", - "Timestamp": "2019-10-16T01:42:51.000Z" + "SpotPrice": "1.419900", + "Timestamp": "2024-05-16T01:16:27.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.metal-24xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.340500", - "Timestamp": "2019-10-16T01:42:51.000Z" + "SpotPrice": "0.901100", + "Timestamp": "2024-05-16T01:16:26.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.340500", - "Timestamp": "2019-10-16T01:42:51.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.896100", + "Timestamp": "2024-05-16T01:16:26.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.310500", - "Timestamp": "2019-10-16T01:42:51.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.771100", + "Timestamp": "2024-05-16T01:16:26.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.310500", - "Timestamp": "2019-10-16T01:42:51.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.071300", + "Timestamp": "2024-05-16T01:16:26.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5ad.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.210500", - "Timestamp": "2019-10-16T01:42:51.000Z" + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.042300", + "Timestamp": "2024-05-16T01:16:26.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5ad.24xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3a.small", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.210500", - "Timestamp": "2019-10-16T01:42:51.000Z" + "SpotPrice": "0.011300", + "Timestamp": "2024-05-16T01:16:26.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5ad.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.271100", - "Timestamp": "2019-10-16T01:42:50.000Z" + "SpotPrice": "3.520000", + "Timestamp": "2024-05-16T01:16:23.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5ad.4xlarge", + "InstanceType": "c7i.metal-48xl", "ProductDescription": "Windows", - "SpotPrice": "1.271100", - "Timestamp": "2019-10-16T01:42:50.000Z" + "SpotPrice": "10.152500", + "Timestamp": "2024-05-16T01:16:22.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.665100", - "Timestamp": "2019-10-16T01:42:50.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5ad.4xlarge", + "InstanceType": "m6i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.665100", - "Timestamp": "2019-10-16T01:42:50.000Z" + "SpotPrice": "0.155400", + "Timestamp": "2024-05-16T01:16:20.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.635100", - "Timestamp": "2019-10-16T01:42:50.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5ad.4xlarge", + "InstanceType": "m6i.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.635100", - "Timestamp": "2019-10-16T01:42:50.000Z" + "SpotPrice": "0.151700", + "Timestamp": "2024-05-16T01:16:20.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5ad.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.535100", - "Timestamp": "2019-10-16T01:42:50.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5ad.4xlarge", + "InstanceType": "m6i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.535100", - "Timestamp": "2019-10-16T01:42:50.000Z" + "SpotPrice": "0.095400", + "Timestamp": "2024-05-16T01:16:20.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5ad.16xlarge", + "InstanceType": "m6g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.270300", - "Timestamp": "2019-10-16T01:41:18.000Z" + "SpotPrice": "0.521700", + "Timestamp": "2024-05-16T01:16:11.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.270300", - "Timestamp": "2019-10-16T01:41:18.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.516700", + "Timestamp": "2024-05-16T01:16:11.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.240300", - "Timestamp": "2019-10-16T01:41:18.000Z" + "InstanceType": "m6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.391700", + "Timestamp": "2024-05-16T01:16:11.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.240300", - "Timestamp": "2019-10-16T01:41:18.000Z" + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.384600", + "Timestamp": "2024-05-16T01:15:56.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5ad.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.140300", - "Timestamp": "2019-10-16T01:41:18.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.761800", + "Timestamp": "2024-05-16T01:13:25.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5ad.16xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.756800", + "Timestamp": "2024-05-16T01:13:25.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.140300", - "Timestamp": "2019-10-16T01:41:18.000Z" + "SpotPrice": "0.631800", + "Timestamp": "2024-05-16T01:13:25.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5ad.12xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.metal", "ProductDescription": "Windows", - "SpotPrice": "3.813300", - "Timestamp": "2019-10-16T01:41:15.000Z" + "SpotPrice": "2.839800", + "Timestamp": "2024-05-16T01:13:25.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5ad.12xlarge", + "InstanceType": "m5zn.metal", "ProductDescription": "Windows", - "SpotPrice": "3.813300", - "Timestamp": "2019-10-16T01:41:15.000Z" + "SpotPrice": "2.839800", + "Timestamp": "2024-05-16T01:13:25.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.735300", - "Timestamp": "2019-10-16T01:41:14.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5ad.12xlarge", + "InstanceType": "inf2.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.735300", - "Timestamp": "2019-10-16T01:41:14.000Z" + "SpotPrice": "0.464500", + "Timestamp": "2024-05-16T01:06:24.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.705300", - "Timestamp": "2019-10-16T01:41:14.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5ad.12xlarge", + "InstanceType": "inf2.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.705300", - "Timestamp": "2019-10-16T01:41:14.000Z" + "SpotPrice": "0.434500", + "Timestamp": "2024-05-16T01:06:24.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5ad.12xlarge", + "InstanceType": "inf2.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.605300", - "Timestamp": "2019-10-16T01:41:14.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5ad.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.605300", - "Timestamp": "2019-10-16T01:41:14.000Z" + "SpotPrice": "0.334500", + "Timestamp": "2024-05-16T01:06:24.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.xlarge", + "InstanceType": "r4.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.165500", - "Timestamp": "2019-10-16T01:41:14.000Z" + "SpotPrice": "0.960000", + "Timestamp": "2024-05-16T01:03:25.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120100", - "Timestamp": "2019-10-16T01:40:41.000Z" + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.859800", + "Timestamp": "2024-05-16T01:01:23.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.120100", - "Timestamp": "2019-10-16T01:40:41.000Z" + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.840900", + "Timestamp": "2024-05-16T01:01:05.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.160100", - "Timestamp": "2019-10-16T01:40:41.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.440900", + "Timestamp": "2024-05-16T00:46:38.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.large", + "InstanceType": "m6i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.160100", - "Timestamp": "2019-10-16T01:40:41.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060100", - "Timestamp": "2019-10-16T01:40:41.000Z" + "SpotPrice": "0.435900", + "Timestamp": "2024-05-16T00:46:38.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.large", + "InstanceType": "m6i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.060100", - "Timestamp": "2019-10-16T01:40:41.000Z" + "SpotPrice": "0.310900", + "Timestamp": "2024-05-16T00:46:38.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.152100", - "Timestamp": "2019-10-16T01:40:41.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.955500", + "Timestamp": "2024-05-16T00:46:38.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.large", - "ProductDescription": "Windows", - "SpotPrice": "0.152100", - "Timestamp": "2019-10-16T01:40:41.000Z" + "InstanceType": "c6a.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.950500", + "Timestamp": "2024-05-16T00:46:38.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.635500", - "Timestamp": "2019-10-16T01:40:39.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.825500", + "Timestamp": "2024-05-16T00:46:38.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.2xlarge", + "InstanceType": "r5n.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.626300", - "Timestamp": "2019-10-16T01:40:39.000Z" + "SpotPrice": "0.925200", + "Timestamp": "2024-05-16T00:46:36.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.xlarge", + "InstanceType": "t3a.nano", "ProductDescription": "Windows", - "SpotPrice": "0.304200", - "Timestamp": "2019-10-16T01:40:38.000Z" + "SpotPrice": "0.006100", + "Timestamp": "2024-05-16T00:46:28.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3a.nano", "ProductDescription": "Windows", - "SpotPrice": "0.304200", - "Timestamp": "2019-10-16T01:40:38.000Z" + "SpotPrice": "0.005400", + "Timestamp": "2024-05-16T00:46:28.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.xlarge", + "InstanceType": "c6gn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.180200", - "Timestamp": "2019-10-16T01:40:38.000Z" + "SpotPrice": "0.342800", + "Timestamp": "2024-05-16T00:33:31.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.180200", - "Timestamp": "2019-10-16T01:40:38.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.337800", + "Timestamp": "2024-05-16T00:33:31.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.220200", - "Timestamp": "2019-10-16T01:40:38.000Z" + "InstanceType": "c6gn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.212800", + "Timestamp": "2024-05-16T00:33:31.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.220200", - "Timestamp": "2019-10-16T01:40:38.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.163400", + "Timestamp": "2024-05-16T00:31:43.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.120200", - "Timestamp": "2019-10-16T01:40:38.000Z" + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.159700", + "Timestamp": "2024-05-16T00:31:43.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.120200", - "Timestamp": "2019-10-16T01:40:38.000Z" + "SpotPrice": "0.103400", + "Timestamp": "2024-05-16T00:31:43.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.8xlarge", + "InstanceType": "r5d.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.433500", - "Timestamp": "2019-10-16T01:39:52.000Z" + "SpotPrice": "3.673600", + "Timestamp": "2024-05-16T00:31:40.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.8xlarge", + "InstanceType": "m7i.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.401600", - "Timestamp": "2019-10-16T01:39:52.000Z" + "SpotPrice": "5.187100", + "Timestamp": "2024-05-16T00:31:39.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.091500", - "Timestamp": "2019-10-16T01:39:51.000Z" + "InstanceType": "r7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.619400", + "Timestamp": "2024-05-16T00:31:39.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.8xlarge", + "InstanceType": "t3a.nano", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.091500", - "Timestamp": "2019-10-16T01:39:51.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.061500", - "Timestamp": "2019-10-16T01:39:51.000Z" + "SpotPrice": "0.063200", + "Timestamp": "2024-05-16T00:31:37.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.8xlarge", + "InstanceType": "t3a.nano", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.061500", - "Timestamp": "2019-10-16T01:39:51.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.961500", - "Timestamp": "2019-10-16T01:39:51.000Z" + "SpotPrice": "0.003200", + "Timestamp": "2024-05-16T00:31:37.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.8xlarge", + "InstanceType": "t3a.nano", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.961500", - "Timestamp": "2019-10-16T01:39:51.000Z" + "SpotPrice": "0.003200", + "Timestamp": "2024-05-16T00:31:37.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.large", "ProductDescription": "Windows", - "SpotPrice": "1.216800", - "Timestamp": "2019-10-16T01:39:25.000Z" + "SpotPrice": "0.105100", + "Timestamp": "2024-05-16T00:31:33.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.4xlarge", + "InstanceType": "r5n.metal", "ProductDescription": "Windows", - "SpotPrice": "1.216800", - "Timestamp": "2019-10-16T01:39:25.000Z" + "SpotPrice": "5.548800", + "Timestamp": "2024-05-16T00:31:32.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.610800", - "Timestamp": "2019-10-16T01:39:25.000Z" + "SpotPrice": "0.749200", + "Timestamp": "2024-05-16T00:31:25.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.610800", - "Timestamp": "2019-10-16T01:39:25.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.744200", + "Timestamp": "2024-05-16T00:31:25.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.580800", - "Timestamp": "2019-10-16T01:39:25.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.619200", + "Timestamp": "2024-05-16T00:31:25.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.580800", - "Timestamp": "2019-10-16T01:39:25.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.156100", + "Timestamp": "2024-05-16T00:31:19.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.480800", - "Timestamp": "2019-10-16T01:39:25.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.151100", + "Timestamp": "2024-05-16T00:31:19.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.480800", - "Timestamp": "2019-10-16T01:39:25.000Z" + "SpotPrice": "2.026100", + "Timestamp": "2024-05-16T00:31:19.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.metal", + "InstanceType": "c5.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.588500", - "Timestamp": "2019-10-16T01:38:45.000Z" + "SpotPrice": "2.522400", + "Timestamp": "2024-05-16T00:31:10.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.metal", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.588500", - "Timestamp": "2019-10-16T01:38:45.000Z" + "SpotPrice": "2.565600", + "Timestamp": "2024-05-16T00:30:57.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.370400", - "Timestamp": "2019-10-16T01:38:45.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.2xlarge", + "InstanceType": "m5d.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.370400", - "Timestamp": "2019-10-16T01:38:45.000Z" + "SpotPrice": "0.994000", + "Timestamp": "2024-05-16T00:17:55.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.340400", - "Timestamp": "2019-10-16T01:38:45.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.2xlarge", + "InstanceType": "m5d.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.340400", - "Timestamp": "2019-10-16T01:38:45.000Z" + "SpotPrice": "0.964000", + "Timestamp": "2024-05-16T00:17:55.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.2xlarge", + "InstanceType": "m5d.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.240400", - "Timestamp": "2019-10-16T01:38:45.000Z" + "SpotPrice": "0.864000", + "Timestamp": "2024-05-16T00:17:55.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.240400", - "Timestamp": "2019-10-16T01:38:45.000Z" + "InstanceType": "m6a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.077000", + "Timestamp": "2024-05-16T00:16:43.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.014600", - "Timestamp": "2019-10-16T01:38:34.000Z" + "SpotPrice": "0.761800", + "Timestamp": "2024-05-16T00:16:27.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.756800", + "Timestamp": "2024-05-16T00:16:27.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.631800", + "Timestamp": "2024-05-16T00:16:27.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.24xlarge", + "InstanceType": "m7gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.014600", - "Timestamp": "2019-10-16T01:38:34.000Z" + "SpotPrice": "0.077000", + "Timestamp": "2024-05-16T00:16:25.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7gd.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.984600", - "Timestamp": "2019-10-16T01:38:34.000Z" + "SpotPrice": "0.073300", + "Timestamp": "2024-05-16T00:16:25.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.984600", - "Timestamp": "2019-10-16T01:38:34.000Z" + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017000", + "Timestamp": "2024-05-16T00:16:25.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.884600", - "Timestamp": "2019-10-16T01:38:34.000Z" + "InstanceType": "i3en.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.132000", + "Timestamp": "2024-05-16T00:16:22.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3en.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.128000", + "Timestamp": "2024-05-16T00:16:22.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3en.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.884600", - "Timestamp": "2019-10-16T01:38:34.000Z" + "SpotPrice": "0.072000", + "Timestamp": "2024-05-16T00:16:22.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.24xlarge", + "InstanceType": "c5a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "7.300600", - "Timestamp": "2019-10-16T01:38:34.000Z" + "SpotPrice": "0.415200", + "Timestamp": "2024-05-16T00:16:13.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "7.300600", - "Timestamp": "2019-10-16T01:38:34.000Z" + "SpotPrice": "6.726400", + "Timestamp": "2024-05-16T00:16:11.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.16xlarge", + "InstanceType": "c6in.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.867100", - "Timestamp": "2019-10-16T01:38:15.000Z" + "SpotPrice": "5.252600", + "Timestamp": "2024-05-16T00:16:01.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.867100", - "Timestamp": "2019-10-16T01:38:15.000Z" + "InstanceType": "c1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.331100", + "Timestamp": "2024-05-16T00:15:53.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.053100", - "Timestamp": "2019-10-16T01:38:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.301100", + "Timestamp": "2024-05-16T00:15:53.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.16xlarge", + "InstanceType": "c1.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.201100", + "Timestamp": "2024-05-16T00:15:53.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.501800", + "Timestamp": "2024-05-16T00:15:53.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.053100", - "Timestamp": "2019-10-16T01:38:15.000Z" + "SpotPrice": "0.081100", + "Timestamp": "2024-05-16T00:02:29.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.16xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.023100", - "Timestamp": "2019-10-16T01:38:15.000Z" + "SpotPrice": "0.077400", + "Timestamp": "2024-05-16T00:02:29.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021100", + "Timestamp": "2024-05-16T00:02:29.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.023100", - "Timestamp": "2019-10-16T01:38:15.000Z" + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.858100", + "Timestamp": "2024-05-16T00:02:26.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5d.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.848400", + "Timestamp": "2024-05-16T00:02:12.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.923100", - "Timestamp": "2019-10-16T01:38:15.000Z" + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.968400", + "Timestamp": "2024-05-16T00:02:11.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.923100", - "Timestamp": "2019-10-16T01:38:15.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.963400", + "Timestamp": "2024-05-16T00:02:11.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.650300", - "Timestamp": "2019-10-16T01:37:59.000Z" + "InstanceType": "c6i.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.838400", + "Timestamp": "2024-05-16T00:02:11.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.650300", - "Timestamp": "2019-10-16T01:37:59.000Z" + "SpotPrice": "1.692100", + "Timestamp": "2024-05-16T00:01:59.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.572300", - "Timestamp": "2019-10-16T01:37:59.000Z" + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.909600", + "Timestamp": "2024-05-16T00:01:57.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.12xlarge", + "InstanceType": "i3en.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.572300", - "Timestamp": "2019-10-16T01:37:59.000Z" + "SpotPrice": "1.858000", + "Timestamp": "2024-05-16T00:01:43.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3en.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.542300", - "Timestamp": "2019-10-16T01:37:59.000Z" + "SpotPrice": "1.853000", + "Timestamp": "2024-05-16T00:01:43.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.542300", - "Timestamp": "2019-10-16T01:37:59.000Z" + "InstanceType": "i3en.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.728000", + "Timestamp": "2024-05-16T00:01:43.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5a.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.442300", - "Timestamp": "2019-10-16T01:37:59.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097900", + "Timestamp": "2024-05-16T00:01:34.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5a.12xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094200", + "Timestamp": "2024-05-16T00:01:34.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6g.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.442300", - "Timestamp": "2019-10-16T01:37:59.000Z" + "SpotPrice": "0.037900", + "Timestamp": "2024-05-16T00:01:34.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.metal", + "InstanceType": "i3en.3xlarge", "ProductDescription": "Windows", - "SpotPrice": "7.626500", - "Timestamp": "2019-10-16T01:37:56.000Z" + "SpotPrice": "0.768000", + "Timestamp": "2024-05-16T00:01:32.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.metal", - "ProductDescription": "Windows", - "SpotPrice": "7.626500", - "Timestamp": "2019-10-16T01:37:56.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080400", + "Timestamp": "2024-05-16T00:01:25.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.340500", - "Timestamp": "2019-10-16T01:37:56.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076700", + "Timestamp": "2024-05-16T00:01:25.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.metal", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020400", + "Timestamp": "2024-05-16T00:01:25.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.340500", - "Timestamp": "2019-10-16T01:37:56.000Z" + "SpotPrice": "0.101700", + "Timestamp": "2024-05-16T00:01:15.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.metal", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "3.310500", - "Timestamp": "2019-10-16T01:37:56.000Z" + "SpotPrice": "0.097700", + "Timestamp": "2024-05-16T00:01:15.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.041700", + "Timestamp": "2024-05-16T00:01:15.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.310500", - "Timestamp": "2019-10-16T01:37:56.000Z" + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.112400", + "Timestamp": "2024-05-16T00:01:12.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.210500", - "Timestamp": "2019-10-16T01:37:56.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.108700", + "Timestamp": "2024-05-16T00:01:12.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.metal", + "InstanceType": "r5b.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.210500", - "Timestamp": "2019-10-16T01:37:56.000Z" + "SpotPrice": "0.052400", + "Timestamp": "2024-05-16T00:01:12.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.xlarge", + "InstanceType": "i4i.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.193800", - "Timestamp": "2019-10-16T01:37:53.000Z" + "SpotPrice": "0.181300", + "Timestamp": "2024-05-16T00:01:05.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.193800", - "Timestamp": "2019-10-16T01:37:53.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.177300", + "Timestamp": "2024-05-16T00:01:05.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.233800", - "Timestamp": "2019-10-16T01:37:53.000Z" + "InstanceType": "i4i.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.121300", + "Timestamp": "2024-05-16T00:01:05.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.339600", + "Timestamp": "2024-05-16T00:01:02.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.233800", - "Timestamp": "2019-10-16T01:37:53.000Z" + "SpotPrice": "1.334600", + "Timestamp": "2024-05-16T00:01:02.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.xlarge", + "InstanceType": "m6id.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.133800", - "Timestamp": "2019-10-16T01:37:53.000Z" + "SpotPrice": "1.209600", + "Timestamp": "2024-05-16T00:01:02.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.133800", - "Timestamp": "2019-10-16T01:37:53.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.517400", + "Timestamp": "2024-05-16T00:00:59.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.xlarge", + "InstanceType": "g4dn.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.317800", - "Timestamp": "2019-10-16T01:37:53.000Z" + "SpotPrice": "3.683700", + "Timestamp": "2024-05-15T23:59:00.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.317800", - "Timestamp": "2019-10-16T01:37:53.000Z" + "SpotPrice": "3.683700", + "Timestamp": "2024-05-15T23:59:00.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.large", + "InstanceType": "g4dn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126900", - "Timestamp": "2019-10-16T01:37:50.000Z" + "SpotPrice": "0.869700", + "Timestamp": "2024-05-15T23:58:59.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.869700", + "Timestamp": "2024-05-15T23:58:59.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.large", + "InstanceType": "g4dn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.126900", - "Timestamp": "2019-10-16T01:37:50.000Z" + "SpotPrice": "0.869700", + "Timestamp": "2024-05-15T23:58:59.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.large", + "InstanceType": "g4dn.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.166900", - "Timestamp": "2019-10-16T01:37:50.000Z" + "SpotPrice": "0.864700", + "Timestamp": "2024-05-15T23:58:59.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.864700", + "Timestamp": "2024-05-15T23:58:59.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.large", + "InstanceType": "g4dn.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.166900", - "Timestamp": "2019-10-16T01:37:50.000Z" + "SpotPrice": "0.864700", + "Timestamp": "2024-05-15T23:58:59.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.large", + "InstanceType": "g4dn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066900", - "Timestamp": "2019-10-16T01:37:50.000Z" + "SpotPrice": "0.739700", + "Timestamp": "2024-05-15T23:58:59.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.066900", - "Timestamp": "2019-10-16T01:37:50.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.158900", - "Timestamp": "2019-10-16T01:37:50.000Z" + "SpotPrice": "0.739700", + "Timestamp": "2024-05-15T23:58:59.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.158900", - "Timestamp": "2019-10-16T01:37:50.000Z" + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.739700", + "Timestamp": "2024-05-15T23:58:59.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-16T01:36:15.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.xlarge", + "InstanceType": "m6id.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-16T01:36:15.000Z" + "SpotPrice": "3.548800", + "Timestamp": "2024-05-15T23:58:57.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.4xlarge", + "InstanceType": "x2iedn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.271100", - "Timestamp": "2019-10-16T01:36:15.000Z" + "SpotPrice": "0.346600", + "Timestamp": "2024-05-15T23:57:57.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.4xlarge", + "InstanceType": "x2iedn.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.271100", - "Timestamp": "2019-10-16T01:36:15.000Z" + "SpotPrice": "0.346600", + "Timestamp": "2024-05-15T23:57:57.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.4xlarge", + "InstanceType": "x2iedn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.665100", - "Timestamp": "2019-10-16T01:36:14.000Z" + "SpotPrice": "4.031500", + "Timestamp": "2024-05-15T23:54:44.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.4xlarge", + "InstanceType": "x2iedn.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.665100", - "Timestamp": "2019-10-16T01:36:14.000Z" + "SpotPrice": "4.031500", + "Timestamp": "2024-05-15T23:54:44.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.4xlarge", + "InstanceType": "x2iedn.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.635100", - "Timestamp": "2019-10-16T01:36:14.000Z" + "SpotPrice": "4.026500", + "Timestamp": "2024-05-15T23:54:44.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.4xlarge", + "InstanceType": "x2iedn.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.635100", - "Timestamp": "2019-10-16T01:36:14.000Z" + "SpotPrice": "4.026500", + "Timestamp": "2024-05-15T23:54:44.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.4xlarge", + "InstanceType": "x2iedn.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.535100", - "Timestamp": "2019-10-16T01:36:14.000Z" + "SpotPrice": "3.901500", + "Timestamp": "2024-05-15T23:54:44.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.4xlarge", + "InstanceType": "x2iedn.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.535100", - "Timestamp": "2019-10-16T01:36:14.000Z" + "SpotPrice": "3.901500", + "Timestamp": "2024-05-15T23:54:44.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.24xlarge", + "InstanceType": "x2iedn.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "7.626500", - "Timestamp": "2019-10-16T01:35:40.000Z" + "SpotPrice": "8.317500", + "Timestamp": "2024-05-15T23:54:43.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.24xlarge", + "InstanceType": "x2iedn.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "7.626500", - "Timestamp": "2019-10-16T01:35:40.000Z" + "SpotPrice": "8.317500", + "Timestamp": "2024-05-15T23:54:43.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t4g.micro", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.340500", - "Timestamp": "2019-10-16T01:35:40.000Z" + "SpotPrice": "0.061300", + "Timestamp": "2024-05-15T23:54:20.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "3.340500", - "Timestamp": "2019-10-16T01:35:40.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t4g.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001300", + "Timestamp": "2024-05-15T23:54:20.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t4g.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001300", + "Timestamp": "2024-05-15T23:54:20.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.310500", - "Timestamp": "2019-10-16T01:35:40.000Z" + "InstanceType": "t3.medium", + "ProductDescription": "Windows", + "SpotPrice": "0.025600", + "Timestamp": "2024-05-15T23:54:08.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "3.310500", - "Timestamp": "2019-10-16T01:35:40.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.094800", + "Timestamp": "2024-05-15T23:53:20.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.210500", - "Timestamp": "2019-10-16T01:35:40.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.089800", + "Timestamp": "2024-05-15T23:53:20.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.210500", - "Timestamp": "2019-10-16T01:35:40.000Z" + "SpotPrice": "0.964800", + "Timestamp": "2024-05-15T23:53:20.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.397500", - "Timestamp": "2019-10-16T01:35:38.000Z" + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.273400", + "Timestamp": "2024-05-15T23:53:09.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.2xlarge", + "InstanceType": "c6g.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.397500", - "Timestamp": "2019-10-16T01:35:38.000Z" + "SpotPrice": "0.297700", + "Timestamp": "2024-05-15T23:50:52.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6g.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.367500", - "Timestamp": "2019-10-16T01:35:38.000Z" + "SpotPrice": "0.292700", + "Timestamp": "2024-05-15T23:50:52.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.2xlarge", + "InstanceType": "c6g.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167700", + "Timestamp": "2024-05-15T23:50:52.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.790200", + "Timestamp": "2024-05-15T23:50:52.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i.metal-24xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.367500", - "Timestamp": "2019-10-16T01:35:38.000Z" + "SpotPrice": "0.785200", + "Timestamp": "2024-05-15T23:50:52.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.2xlarge", + "InstanceType": "c7i.metal-24xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.267500", - "Timestamp": "2019-10-16T01:35:38.000Z" + "SpotPrice": "0.660200", + "Timestamp": "2024-05-15T23:50:52.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.267500", - "Timestamp": "2019-10-16T01:35:38.000Z" + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220000", + "Timestamp": "2024-05-15T23:48:32.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.metal", "ProductDescription": "Windows", - "SpotPrice": "1.067900", - "Timestamp": "2019-10-16T01:34:51.000Z" + "SpotPrice": "7.174400", + "Timestamp": "2024-05-15T23:47:47.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5d.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.427600", + "Timestamp": "2024-05-15T23:47:05.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.4xlarge", + "InstanceType": "i3en.metal", "ProductDescription": "Windows", - "SpotPrice": "1.067900", - "Timestamp": "2019-10-16T01:34:51.000Z" + "SpotPrice": "6.144000", + "Timestamp": "2024-05-15T23:47:01.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.735300", - "Timestamp": "2019-10-16T01:34:51.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.846200", + "Timestamp": "2024-05-15T23:47:00.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.12xlarge", + "InstanceType": "m5d.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.735300", - "Timestamp": "2019-10-16T01:34:51.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.705300", - "Timestamp": "2019-10-16T01:34:51.000Z" + "SpotPrice": "0.994000", + "Timestamp": "2024-05-15T23:46:54.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.12xlarge", + "InstanceType": "m5d.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.705300", - "Timestamp": "2019-10-16T01:34:51.000Z" + "SpotPrice": "0.964000", + "Timestamp": "2024-05-15T23:46:54.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5d.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.605300", - "Timestamp": "2019-10-16T01:34:51.000Z" + "SpotPrice": "0.864000", + "Timestamp": "2024-05-15T23:46:54.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.605300", - "Timestamp": "2019-10-16T01:34:51.000Z" + "InstanceType": "c6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.363200", + "Timestamp": "2024-05-15T23:46:49.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.813300", - "Timestamp": "2019-10-16T01:34:51.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.449200", + "Timestamp": "2024-05-15T23:46:49.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.813300", - "Timestamp": "2019-10-16T01:34:51.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.444200", + "Timestamp": "2024-05-15T23:46:49.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.534000", - "Timestamp": "2019-10-16T01:34:25.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.319200", + "Timestamp": "2024-05-15T23:46:49.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5ad.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.534000", - "Timestamp": "2019-10-16T01:34:25.000Z" + "SpotPrice": "0.902400", + "Timestamp": "2024-05-15T23:46:47.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.274500", - "Timestamp": "2019-10-16T01:34:25.000Z" + "InstanceType": "c6in.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.178500", + "Timestamp": "2024-05-15T23:46:33.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.274500", - "Timestamp": "2019-10-16T01:34:25.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.174800", + "Timestamp": "2024-05-15T23:46:33.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.150500", - "Timestamp": "2019-10-16T01:34:25.000Z" + "InstanceType": "c6in.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.118500", + "Timestamp": "2024-05-15T23:46:33.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.150500", - "Timestamp": "2019-10-16T01:34:25.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115700", + "Timestamp": "2024-05-15T23:46:27.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.190500", - "Timestamp": "2019-10-16T01:34:25.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.423800", + "Timestamp": "2024-05-15T23:46:27.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.190500", - "Timestamp": "2019-10-16T01:34:25.000Z" + "SpotPrice": "0.418800", + "Timestamp": "2024-05-15T23:46:27.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.090500", - "Timestamp": "2019-10-16T01:34:25.000Z" + "SpotPrice": "0.293800", + "Timestamp": "2024-05-15T23:46:27.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.090500", - "Timestamp": "2019-10-16T01:34:25.000Z" + "InstanceType": "c5n.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.217200", + "Timestamp": "2024-05-15T23:46:26.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.302500", - "Timestamp": "2019-10-16T01:33:45.000Z" + "InstanceType": "c6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210200", + "Timestamp": "2024-05-15T23:46:24.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.metal", + "InstanceType": "x2idn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.302500", - "Timestamp": "2019-10-16T01:33:45.000Z" + "SpotPrice": "1.430500", + "Timestamp": "2024-05-15T23:46:17.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.metal", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x2idn.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.272500", - "Timestamp": "2019-10-16T01:33:45.000Z" + "SpotPrice": "1.425500", + "Timestamp": "2024-05-15T23:46:17.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.272500", - "Timestamp": "2019-10-16T01:33:45.000Z" + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.300500", + "Timestamp": "2024-05-15T23:46:17.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.172500", - "Timestamp": "2019-10-16T01:33:45.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.758800", + "Timestamp": "2024-05-15T23:46:17.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.metal", + "InstanceType": "c5.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.728800", + "Timestamp": "2024-05-15T23:46:17.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.172500", - "Timestamp": "2019-10-16T01:33:45.000Z" + "SpotPrice": "0.628800", + "Timestamp": "2024-05-15T23:46:17.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.271700", - "Timestamp": "2019-10-16T01:33:34.000Z" + "InstanceType": "c6gn.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.066700", + "Timestamp": "2024-05-15T23:33:33.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.314600", - "Timestamp": "2019-10-16T01:33:34.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gn.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.037700", + "Timestamp": "2024-05-15T23:33:33.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.105300", - "Timestamp": "2019-10-16T01:33:34.000Z" + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006700", + "Timestamp": "2024-05-15T23:33:33.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5a.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.105300", - "Timestamp": "2019-10-16T01:33:34.000Z" + "SpotPrice": "0.998800", + "Timestamp": "2024-05-15T23:32:04.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.large", + "InstanceType": "r5a.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.145300", - "Timestamp": "2019-10-16T01:33:34.000Z" + "SpotPrice": "0.993800", + "Timestamp": "2024-05-15T23:32:04.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.868800", + "Timestamp": "2024-05-15T23:32:04.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.099200", + "Timestamp": "2024-05-15T23:31:44.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.145300", - "Timestamp": "2019-10-16T01:33:34.000Z" + "SpotPrice": "0.095500", + "Timestamp": "2024-05-15T23:31:44.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.045300", - "Timestamp": "2019-10-16T01:33:34.000Z" + "SpotPrice": "0.039200", + "Timestamp": "2024-05-15T23:31:44.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.045300", - "Timestamp": "2019-10-16T01:33:34.000Z" + "InstanceType": "c6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.261800", + "Timestamp": "2024-05-15T23:31:41.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.137300", - "Timestamp": "2019-10-16T01:33:34.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.256800", + "Timestamp": "2024-05-15T23:31:41.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.137300", - "Timestamp": "2019-10-16T01:33:34.000Z" + "InstanceType": "c6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.131800", + "Timestamp": "2024-05-15T23:31:41.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.4xlarge", + "InstanceType": "c3.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.492100", - "Timestamp": "2019-10-16T01:33:15.000Z" + "SpotPrice": "0.297300", + "Timestamp": "2024-05-15T23:31:31.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.492100", - "Timestamp": "2019-10-16T01:33:15.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.267300", + "Timestamp": "2024-05-15T23:31:31.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.462100", - "Timestamp": "2019-10-16T01:33:15.000Z" + "InstanceType": "c3.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.167300", + "Timestamp": "2024-05-15T23:31:31.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.514300", + "Timestamp": "2024-05-15T23:31:24.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.24xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.462100", - "Timestamp": "2019-10-16T01:33:15.000Z" + "SpotPrice": "1.509300", + "Timestamp": "2024-05-15T23:31:24.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.362100", - "Timestamp": "2019-10-16T01:33:15.000Z" + "SpotPrice": "1.384300", + "Timestamp": "2024-05-15T23:31:24.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.4xlarge", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.360400", + "Timestamp": "2024-05-15T23:31:16.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.355400", + "Timestamp": "2024-05-15T23:31:16.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.362100", - "Timestamp": "2019-10-16T01:33:15.000Z" + "SpotPrice": "0.230400", + "Timestamp": "2024-05-15T23:31:16.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.4xlarge", + "InstanceType": "r5d.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.098100", - "Timestamp": "2019-10-16T01:33:15.000Z" + "SpotPrice": "0.918400", + "Timestamp": "2024-05-15T23:31:02.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061700", + "Timestamp": "2024-05-15T23:31:00.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.001700", + "Timestamp": "2024-05-15T23:31:00.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.001700", + "Timestamp": "2024-05-15T23:31:00.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.4xlarge", + "InstanceType": "c6i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.098100", - "Timestamp": "2019-10-16T01:33:15.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.302500", - "Timestamp": "2019-10-16T01:32:56.000Z" + "SpotPrice": "0.210200", + "Timestamp": "2024-05-15T23:30:24.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i-flex.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.302500", - "Timestamp": "2019-10-16T01:32:56.000Z" + "SpotPrice": "0.339100", + "Timestamp": "2024-05-15T23:29:31.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i-flex.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.272500", - "Timestamp": "2019-10-16T01:32:56.000Z" + "SpotPrice": "0.334100", + "Timestamp": "2024-05-15T23:29:31.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.272500", - "Timestamp": "2019-10-16T01:32:56.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.209100", + "Timestamp": "2024-05-15T23:29:31.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.172500", - "Timestamp": "2019-10-16T01:32:56.000Z" + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.607500", + "Timestamp": "2024-05-15T23:29:04.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.172500", - "Timestamp": "2019-10-16T01:32:56.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i-flex.large", + "ProductDescription": "Windows", + "SpotPrice": "0.100500", + "Timestamp": "2024-05-15T23:27:58.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i-flex.large", "ProductDescription": "Windows", - "SpotPrice": "6.588500", - "Timestamp": "2019-10-16T01:32:56.000Z" + "SpotPrice": "0.100500", + "Timestamp": "2024-05-15T23:27:58.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.24xlarge", + "InstanceType": "c7i-flex.large", "ProductDescription": "Windows", - "SpotPrice": "6.588500", - "Timestamp": "2019-10-16T01:32:56.000Z" + "SpotPrice": "0.100500", + "Timestamp": "2024-05-15T23:27:58.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i-flex.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.216300", - "Timestamp": "2019-10-16T01:32:53.000Z" + "SpotPrice": "0.073100", + "Timestamp": "2024-05-15T23:27:54.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.12xlarge", + "InstanceType": "c7i-flex.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.216300", - "Timestamp": "2019-10-16T01:32:53.000Z" + "SpotPrice": "0.073100", + "Timestamp": "2024-05-15T23:27:54.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i-flex.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.186300", - "Timestamp": "2019-10-16T01:32:53.000Z" + "SpotPrice": "0.069400", + "Timestamp": "2024-05-15T23:27:54.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.12xlarge", + "InstanceType": "c7i-flex.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.186300", - "Timestamp": "2019-10-16T01:32:53.000Z" + "SpotPrice": "0.069400", + "Timestamp": "2024-05-15T23:27:54.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.12xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i-flex.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.086300", - "Timestamp": "2019-10-16T01:32:53.000Z" + "SpotPrice": "0.013100", + "Timestamp": "2024-05-15T23:27:54.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.12xlarge", + "InstanceType": "c7i-flex.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.086300", - "Timestamp": "2019-10-16T01:32:53.000Z" + "SpotPrice": "0.013100", + "Timestamp": "2024-05-15T23:27:54.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.294300", - "Timestamp": "2019-10-16T01:32:53.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.12xlarge", + "InstanceType": "c7i-flex.xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.294300", - "Timestamp": "2019-10-16T01:32:53.000Z" + "SpotPrice": "0.200900", + "Timestamp": "2024-05-15T23:27:31.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5a.xlarge", + "InstanceType": "g4dn.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.253400", - "Timestamp": "2019-10-16T01:32:50.000Z" + "SpotPrice": "0.495800", + "Timestamp": "2024-05-15T23:26:46.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.xlarge", + "InstanceType": "c5a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.253400", - "Timestamp": "2019-10-16T01:32:50.000Z" + "SpotPrice": "3.321600", + "Timestamp": "2024-05-15T23:21:47.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.2xlarge", + "InstanceType": "c7i-flex.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.311000", - "Timestamp": "2019-10-16T01:32:50.000Z" + "SpotPrice": "0.182300", + "Timestamp": "2024-05-15T23:17:28.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i-flex.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.303000", - "Timestamp": "2019-10-16T01:32:50.000Z" + "SpotPrice": "0.182300", + "Timestamp": "2024-05-15T23:17:28.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.2xlarge", + "InstanceType": "c7i-flex.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.281000", - "Timestamp": "2019-10-16T01:32:50.000Z" + "SpotPrice": "0.177300", + "Timestamp": "2024-05-15T23:17:28.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i-flex.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.273000", - "Timestamp": "2019-10-16T01:32:50.000Z" + "SpotPrice": "0.177300", + "Timestamp": "2024-05-15T23:17:28.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.2xlarge", + "InstanceType": "c7i-flex.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.181000", - "Timestamp": "2019-10-16T01:32:50.000Z" + "SpotPrice": "0.052300", + "Timestamp": "2024-05-15T23:17:28.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i-flex.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.173000", - "Timestamp": "2019-10-16T01:32:50.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.541600", - "Timestamp": "2019-10-16T01:32:50.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.540200", - "Timestamp": "2019-10-16T01:32:50.000Z" + "SpotPrice": "0.052300", + "Timestamp": "2024-05-15T23:17:28.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5ad.large", + "InstanceType": "c7i-flex.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101500", - "Timestamp": "2019-10-16T01:31:18.000Z" + "SpotPrice": "0.234500", + "Timestamp": "2024-05-15T23:17:23.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.large", + "InstanceType": "c7i-flex.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.101500", - "Timestamp": "2019-10-16T01:31:18.000Z" + "SpotPrice": "0.234500", + "Timestamp": "2024-05-15T23:17:23.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5ad.large", + "InstanceType": "c7i-flex.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.141500", - "Timestamp": "2019-10-16T01:31:18.000Z" + "SpotPrice": "0.229500", + "Timestamp": "2024-05-15T23:17:23.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.large", + "InstanceType": "c7i-flex.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.141500", - "Timestamp": "2019-10-16T01:31:18.000Z" + "SpotPrice": "0.229500", + "Timestamp": "2024-05-15T23:17:23.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5ad.large", + "InstanceType": "c7i-flex.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041500", - "Timestamp": "2019-10-16T01:31:18.000Z" + "SpotPrice": "0.104500", + "Timestamp": "2024-05-15T23:17:23.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.large", + "InstanceType": "c7i-flex.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.041500", - "Timestamp": "2019-10-16T01:31:18.000Z" + "SpotPrice": "0.104500", + "Timestamp": "2024-05-15T23:17:23.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5ad.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i-flex.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.133500", - "Timestamp": "2019-10-16T01:31:17.000Z" + "SpotPrice": "0.803700", + "Timestamp": "2024-05-15T23:17:11.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.metal", "ProductDescription": "Windows", - "SpotPrice": "0.133500", - "Timestamp": "2019-10-16T01:31:17.000Z" + "SpotPrice": "5.044800", + "Timestamp": "2024-05-15T23:17:07.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.143000", - "Timestamp": "2019-10-16T01:31:14.000Z" + "SpotPrice": "1.245500", + "Timestamp": "2024-05-15T23:16:57.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.143000", - "Timestamp": "2019-10-16T01:31:14.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.240500", + "Timestamp": "2024-05-15T23:16:57.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.115500", + "Timestamp": "2024-05-15T23:16:57.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.183000", - "Timestamp": "2019-10-16T01:31:14.000Z" + "InstanceType": "c6gn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.449200", + "Timestamp": "2024-05-15T23:16:48.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gn.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.183000", - "Timestamp": "2019-10-16T01:31:14.000Z" + "SpotPrice": "0.444200", + "Timestamp": "2024-05-15T23:16:48.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5ad.xlarge", + "InstanceType": "c6gn.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.083000", - "Timestamp": "2019-10-16T01:31:14.000Z" + "SpotPrice": "0.319200", + "Timestamp": "2024-05-15T23:16:48.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.083000", - "Timestamp": "2019-10-16T01:31:14.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.416400", + "Timestamp": "2024-05-15T23:16:47.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.081600", - "Timestamp": "2019-10-16T01:30:38.000Z" + "InstanceType": "r6i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.411400", + "Timestamp": "2024-05-15T23:16:47.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.081600", - "Timestamp": "2019-10-16T01:30:38.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.286400", + "Timestamp": "2024-05-15T23:16:47.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.793800", - "Timestamp": "2019-10-16T01:30:38.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.401900", + "Timestamp": "2024-05-15T23:16:40.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.793800", - "Timestamp": "2019-10-16T01:30:38.000Z" + "InstanceType": "c7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.401900", + "Timestamp": "2024-05-15T23:16:40.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.763800", - "Timestamp": "2019-10-16T01:30:38.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t4g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073300", + "Timestamp": "2024-05-15T23:16:31.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.8xlarge", + "InstanceType": "t4g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.763800", - "Timestamp": "2019-10-16T01:30:38.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.663800", - "Timestamp": "2019-10-16T01:30:38.000Z" + "SpotPrice": "0.069600", + "Timestamp": "2024-05-15T23:16:31.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.8xlarge", + "InstanceType": "t4g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.663800", - "Timestamp": "2019-10-16T01:30:38.000Z" + "SpotPrice": "0.013300", + "Timestamp": "2024-05-15T23:16:31.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5ad.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.metal-48xl", "ProductDescription": "Windows", - "SpotPrice": "2.135800", - "Timestamp": "2019-10-16T01:30:38.000Z" + "SpotPrice": "10.858100", + "Timestamp": "2024-05-15T23:16:26.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.135800", - "Timestamp": "2019-10-16T01:30:38.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.040800", - "Timestamp": "2019-10-16T01:29:51.000Z" + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.156100", + "Timestamp": "2024-05-15T23:16:23.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.065900", - "Timestamp": "2019-10-16T01:29:51.000Z" + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "2.151100", + "Timestamp": "2024-05-15T23:16:23.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.461900", - "Timestamp": "2019-10-16T01:29:51.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "2.026100", + "Timestamp": "2024-05-15T23:16:23.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.4xlarge", + "InstanceType": "c6i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.461900", - "Timestamp": "2019-10-16T01:29:51.000Z" + "SpotPrice": "0.129200", + "Timestamp": "2024-05-15T23:16:22.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5ad.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6i.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.431900", - "Timestamp": "2019-10-16T01:29:51.000Z" + "SpotPrice": "0.125500", + "Timestamp": "2024-05-15T23:16:22.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.431900", - "Timestamp": "2019-10-16T01:29:51.000Z" + "InstanceType": "c6i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.069200", + "Timestamp": "2024-05-15T23:16:22.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.331900", - "Timestamp": "2019-10-16T01:29:51.000Z" + "InstanceType": "m7i-flex.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.431900", + "Timestamp": "2024-05-15T23:16:16.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.331900", - "Timestamp": "2019-10-16T01:29:51.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.849600", + "Timestamp": "2024-05-15T23:16:11.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t2.medium", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.040300", - "Timestamp": "2019-10-16T01:29:48.000Z" + "SpotPrice": "6.144000", + "Timestamp": "2024-05-15T23:16:02.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t2.medium", + "InstanceType": "m6a.large", "ProductDescription": "Windows", - "SpotPrice": "0.040300", - "Timestamp": "2019-10-16T01:29:48.000Z" + "SpotPrice": "0.105800", + "Timestamp": "2024-05-15T23:14:00.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t2.medium", + "InstanceType": "m6a.large", "ProductDescription": "Windows", - "SpotPrice": "0.040300", - "Timestamp": "2019-10-16T01:29:48.000Z" + "SpotPrice": "0.105800", + "Timestamp": "2024-05-15T23:14:00.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.082300", - "Timestamp": "2019-10-16T01:29:30.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.820500", + "Timestamp": "2024-05-15T23:02:49.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "t2.medium", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.082300", - "Timestamp": "2019-10-16T01:29:30.000Z" + "SpotPrice": "0.349100", + "Timestamp": "2024-05-15T23:02:36.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t2.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.122300", - "Timestamp": "2019-10-16T01:29:30.000Z" - }, - { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "t2.medium", + "InstanceType": "i4i.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.122300", - "Timestamp": "2019-10-16T01:29:30.000Z" + "SpotPrice": "0.344100", + "Timestamp": "2024-05-15T23:02:36.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t2.medium", + "InstanceType": "i4i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.022300", - "Timestamp": "2019-10-16T01:29:30.000Z" + "SpotPrice": "0.219100", + "Timestamp": "2024-05-15T23:02:36.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "t2.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.022300", - "Timestamp": "2019-10-16T01:29:30.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i4i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.955100", + "Timestamp": "2024-05-15T23:02:36.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t2.medium", + "InstanceType": "r6g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.082300", - "Timestamp": "2019-10-16T01:29:30.000Z" + "SpotPrice": "0.068000", + "Timestamp": "2024-05-15T23:02:31.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t2.medium", + "InstanceType": "r6g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.122300", - "Timestamp": "2019-10-16T01:29:30.000Z" + "SpotPrice": "0.039000", + "Timestamp": "2024-05-15T23:02:31.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t2.medium", + "InstanceType": "r6g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.022300", - "Timestamp": "2019-10-16T01:29:30.000Z" + "SpotPrice": "0.008000", + "Timestamp": "2024-05-15T23:02:31.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.296000", - "Timestamp": "2019-10-16T01:29:28.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.642600", + "Timestamp": "2024-05-15T23:02:27.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.296000", - "Timestamp": "2019-10-16T01:29:28.000Z" + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-15T23:02:12.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.266000", - "Timestamp": "2019-10-16T01:29:28.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220200", + "Timestamp": "2024-05-15T23:01:58.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.266000", - "Timestamp": "2019-10-16T01:29:28.000Z" + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.236700", + "Timestamp": "2024-05-15T23:01:47.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.166000", - "Timestamp": "2019-10-16T01:29:28.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.761800", + "Timestamp": "2024-05-15T23:01:46.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.166000", - "Timestamp": "2019-10-16T01:29:28.000Z" + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.756800", + "Timestamp": "2024-05-15T23:01:46.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.407500", - "Timestamp": "2019-10-16T01:29:25.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5zn.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.631800", + "Timestamp": "2024-05-15T23:01:46.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.24xlarge", + "InstanceType": "m5a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.407500", - "Timestamp": "2019-10-16T01:29:25.000Z" + "SpotPrice": "1.692800", + "Timestamp": "2024-05-15T23:01:45.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.metal", + "InstanceType": "m6a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.262600", - "Timestamp": "2019-10-16T01:29:25.000Z" + "SpotPrice": "5.077000", + "Timestamp": "2024-05-15T23:01:43.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.metal", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.large", "ProductDescription": "Windows", - "SpotPrice": "6.262600", - "Timestamp": "2019-10-16T01:29:25.000Z" + "SpotPrice": "0.113100", + "Timestamp": "2024-05-15T23:01:32.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.121500", - "Timestamp": "2019-10-16T01:29:25.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.24xlarge", + "InstanceType": "t3.nano", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.121500", - "Timestamp": "2019-10-16T01:29:25.000Z" + "SpotPrice": "0.062400", + "Timestamp": "2024-05-15T23:01:23.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.091500", - "Timestamp": "2019-10-16T01:29:25.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.24xlarge", + "InstanceType": "t3.nano", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.091500", - "Timestamp": "2019-10-16T01:29:25.000Z" + "SpotPrice": "0.002400", + "Timestamp": "2024-05-15T23:01:23.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5ad.24xlarge", + "InstanceType": "t3.nano", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.991500", - "Timestamp": "2019-10-16T01:29:25.000Z" + "SpotPrice": "0.002400", + "Timestamp": "2024-05-15T23:01:23.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.991500", - "Timestamp": "2019-10-16T01:29:25.000Z" + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.863200", + "Timestamp": "2024-05-15T23:01:12.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.129500", - "Timestamp": "2019-10-16T01:28:34.000Z" + "InstanceType": "m5a.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126900", + "Timestamp": "2024-05-15T23:01:09.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5d.large", - "ProductDescription": "Windows", - "SpotPrice": "0.129500", - "Timestamp": "2019-10-16T01:28:34.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122900", + "Timestamp": "2024-05-15T23:01:09.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.457700", - "Timestamp": "2019-10-16T01:28:34.000Z" + "InstanceType": "m5a.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.066900", + "Timestamp": "2024-05-15T23:01:09.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.457700", - "Timestamp": "2019-10-16T01:28:34.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.427700", - "Timestamp": "2019-10-16T01:28:34.000Z" + "SpotPrice": "0.066500", + "Timestamp": "2024-05-15T23:01:02.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.427700", - "Timestamp": "2019-10-16T01:28:34.000Z" + "SpotPrice": "0.062800", + "Timestamp": "2024-05-15T23:01:02.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5ad.16xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.327700", - "Timestamp": "2019-10-16T01:28:34.000Z" + "SpotPrice": "0.006500", + "Timestamp": "2024-05-15T23:01:02.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.327700", - "Timestamp": "2019-10-16T01:28:34.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.384200", + "Timestamp": "2024-05-15T22:59:38.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.125700", - "Timestamp": "2019-10-16T01:28:15.000Z" + "SpotPrice": "0.499800", + "Timestamp": "2024-05-15T22:50:12.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.125700", - "Timestamp": "2019-10-16T01:28:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.494800", + "Timestamp": "2024-05-15T22:50:12.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.095700", - "Timestamp": "2019-10-16T01:28:15.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.369800", + "Timestamp": "2024-05-15T22:50:12.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.095700", - "Timestamp": "2019-10-16T01:28:15.000Z" + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.644600", + "Timestamp": "2024-05-15T22:47:41.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5ad.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.995700", - "Timestamp": "2019-10-16T01:28:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.639600", + "Timestamp": "2024-05-15T22:47:41.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.12xlarge", + "InstanceType": "r6g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.995700", - "Timestamp": "2019-10-16T01:28:15.000Z" + "SpotPrice": "0.514600", + "Timestamp": "2024-05-15T22:47:41.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5d.9xlarge", + "InstanceType": "r7i.large", "ProductDescription": "Windows", - "SpotPrice": "2.330400", - "Timestamp": "2019-10-16T01:28:15.000Z" + "SpotPrice": "0.113100", + "Timestamp": "2024-05-15T22:47:31.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5d.9xlarge", + "InstanceType": "r7i.large", "ProductDescription": "Windows", - "SpotPrice": "2.330400", - "Timestamp": "2019-10-16T01:28:15.000Z" + "SpotPrice": "0.113100", + "Timestamp": "2024-05-15T22:47:31.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5ad.12xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.203700", - "Timestamp": "2019-10-16T01:28:15.000Z" + "SpotPrice": "10.152500", + "Timestamp": "2024-05-15T22:47:12.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5ad.12xlarge", + "InstanceType": "m7i.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.203700", - "Timestamp": "2019-10-16T01:28:15.000Z" + "SpotPrice": "10.374200", + "Timestamp": "2024-05-15T22:47:11.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.407600", - "Timestamp": "2019-10-16T01:27:57.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.730700", + "Timestamp": "2024-05-15T22:47:05.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.407600", - "Timestamp": "2019-10-16T01:27:57.000Z" + "InstanceType": "c4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214900", + "Timestamp": "2024-05-15T22:47:03.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.377600", - "Timestamp": "2019-10-16T01:27:57.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214600", + "Timestamp": "2024-05-15T22:47:01.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.377600", - "Timestamp": "2019-10-16T01:27:57.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.548800", + "Timestamp": "2024-05-15T22:46:59.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.277600", - "Timestamp": "2019-10-16T01:27:57.000Z" + "InstanceType": "m6id.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.097600", + "Timestamp": "2024-05-15T22:46:57.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.277600", - "Timestamp": "2019-10-16T01:27:57.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5a.4xlarge", + "InstanceType": "r7i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.013600", - "Timestamp": "2019-10-16T01:27:57.000Z" + "SpotPrice": "3.619400", + "Timestamp": "2024-05-15T22:46:39.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.013600", - "Timestamp": "2019-10-16T01:27:57.000Z" + "SpotPrice": "0.864500", + "Timestamp": "2024-05-15T22:46:37.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5a.large", + "InstanceType": "m7g.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094700", - "Timestamp": "2019-10-16T01:27:54.000Z" + "SpotPrice": "0.237400", + "Timestamp": "2024-05-15T22:46:31.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.094700", - "Timestamp": "2019-10-16T01:27:54.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7g.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.232400", + "Timestamp": "2024-05-15T22:46:31.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5a.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134700", - "Timestamp": "2019-10-16T01:27:54.000Z" + "InstanceType": "m7g.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.107400", + "Timestamp": "2024-05-15T22:46:31.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.134700", - "Timestamp": "2019-10-16T01:27:54.000Z" + "InstanceType": "inf1.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.105700", + "Timestamp": "2024-05-15T22:46:20.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5a.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034700", - "Timestamp": "2019-10-16T01:27:54.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "inf1.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.101700", + "Timestamp": "2024-05-15T22:46:20.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.large", + "InstanceType": "inf1.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.034700", - "Timestamp": "2019-10-16T01:27:54.000Z" + "SpotPrice": "0.045700", + "Timestamp": "2024-05-15T22:46:20.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5a.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.126700", - "Timestamp": "2019-10-16T01:27:54.000Z" + "SpotPrice": "0.880000", + "Timestamp": "2024-05-15T22:46:20.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.126700", - "Timestamp": "2019-10-16T01:27:54.000Z" + "SpotPrice": "1.870400", + "Timestamp": "2024-05-15T22:45:54.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129400", - "Timestamp": "2019-10-16T01:27:51.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.870400", + "Timestamp": "2024-05-15T22:45:54.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.129400", - "Timestamp": "2019-10-16T01:27:51.000Z" + "InstanceType": "i3.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.870400", + "Timestamp": "2024-05-15T22:45:54.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5a.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.169400", - "Timestamp": "2019-10-16T01:27:51.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t4g.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.061000", + "Timestamp": "2024-05-15T22:45:24.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.xlarge", + "InstanceType": "t4g.nano", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.169400", - "Timestamp": "2019-10-16T01:27:51.000Z" + "SpotPrice": "0.001000", + "Timestamp": "2024-05-15T22:45:24.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5a.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t4g.nano", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069400", - "Timestamp": "2019-10-16T01:27:51.000Z" + "SpotPrice": "0.001000", + "Timestamp": "2024-05-15T22:45:24.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.069400", - "Timestamp": "2019-10-16T01:27:51.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.076200", + "Timestamp": "2024-05-15T22:32:24.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5d.4xlarge", + "InstanceType": "c5.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.035700", - "Timestamp": "2019-10-16T01:27:50.000Z" + "SpotPrice": "0.420400", + "Timestamp": "2024-05-15T22:32:03.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5d.4xlarge", + "InstanceType": "r5d.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.035700", - "Timestamp": "2019-10-16T01:27:50.000Z" + "SpotPrice": "1.836800", + "Timestamp": "2024-05-15T22:32:02.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.027200", - "Timestamp": "2019-10-16T01:27:50.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.607900", + "Timestamp": "2024-05-15T22:31:54.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.602900", + "Timestamp": "2024-05-15T22:31:54.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.477900", + "Timestamp": "2024-05-15T22:31:54.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.8xlarge", + "InstanceType": "c5d.metal", "ProductDescription": "Windows", - "SpotPrice": "2.027200", - "Timestamp": "2019-10-16T01:27:50.000Z" + "SpotPrice": "5.131200", + "Timestamp": "2024-05-15T22:31:40.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.685200", - "Timestamp": "2019-10-16T01:27:49.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3.small", + "ProductDescription": "Windows", + "SpotPrice": "0.039600", + "Timestamp": "2024-05-15T22:31:40.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.8xlarge", + "InstanceType": "m7g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.685200", - "Timestamp": "2019-10-16T01:27:49.000Z" + "SpotPrice": "0.066500", + "Timestamp": "2024-05-15T22:31:39.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5a.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.655200", - "Timestamp": "2019-10-16T01:27:49.000Z" + "SpotPrice": "0.062800", + "Timestamp": "2024-05-15T22:31:39.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.655200", - "Timestamp": "2019-10-16T01:27:49.000Z" + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006500", + "Timestamp": "2024-05-15T22:31:39.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5a.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.555200", - "Timestamp": "2019-10-16T01:27:49.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5n.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.098100", + "Timestamp": "2024-05-15T22:31:36.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.8xlarge", + "InstanceType": "c5n.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.094100", + "Timestamp": "2024-05-15T22:31:36.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5n.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.555200", - "Timestamp": "2019-10-16T01:27:49.000Z" + "SpotPrice": "0.038100", + "Timestamp": "2024-05-15T22:31:36.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r3.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.506800", - "Timestamp": "2019-10-16T01:26:14.000Z" + "SpotPrice": "0.507900", + "Timestamp": "2024-05-15T22:18:26.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.506800", - "Timestamp": "2019-10-16T01:26:14.000Z" + "SpotPrice": "0.846400", + "Timestamp": "2024-05-15T22:17:11.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.274800", - "Timestamp": "2019-10-16T01:26:14.000Z" + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.858400", + "Timestamp": "2024-05-15T22:17:01.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.2xlarge", + "InstanceType": "c6gd.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.268800", - "Timestamp": "2019-10-16T01:26:14.000Z" + "SpotPrice": "0.510800", + "Timestamp": "2024-05-15T22:17:00.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5a.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gd.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.244800", - "Timestamp": "2019-10-16T01:26:14.000Z" + "SpotPrice": "0.505800", + "Timestamp": "2024-05-15T22:17:00.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.238800", - "Timestamp": "2019-10-16T01:26:14.000Z" + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.380800", + "Timestamp": "2024-05-15T22:17:00.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.144800", - "Timestamp": "2019-10-16T01:26:14.000Z" + "InstanceType": "r5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.804800", + "Timestamp": "2024-05-15T22:16:53.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.138800", - "Timestamp": "2019-10-16T01:26:14.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.220000", + "Timestamp": "2024-05-15T22:16:48.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.240400", - "Timestamp": "2019-10-16T01:25:41.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.236700", + "Timestamp": "2024-05-15T22:16:46.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.240400", - "Timestamp": "2019-10-16T01:25:41.000Z" + "SpotPrice": "1.224400", + "Timestamp": "2024-05-15T22:16:41.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5a.16xlarge", + "InstanceType": "r5d.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.210400", - "Timestamp": "2019-10-16T01:25:41.000Z" + "SpotPrice": "1.219400", + "Timestamp": "2024-05-15T22:16:41.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.094400", + "Timestamp": "2024-05-15T22:16:41.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.078900", + "Timestamp": "2024-05-15T22:16:33.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.210400", - "Timestamp": "2019-10-16T01:25:41.000Z" + "SpotPrice": "0.075200", + "Timestamp": "2024-05-15T22:16:33.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5a.16xlarge", + "InstanceType": "m6id.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.110400", - "Timestamp": "2019-10-16T01:25:41.000Z" + "SpotPrice": "0.018900", + "Timestamp": "2024-05-15T22:16:33.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.110400", - "Timestamp": "2019-10-16T01:25:41.000Z" + "InstanceType": "c6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.321300", + "Timestamp": "2024-05-15T22:16:08.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5a.16xlarge", + "InstanceType": "r5a.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.054400", - "Timestamp": "2019-10-16T01:25:41.000Z" + "SpotPrice": "5.284800", + "Timestamp": "2024-05-15T22:16:04.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "4.054400", - "Timestamp": "2019-10-16T01:25:41.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6g.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069400", + "Timestamp": "2024-05-15T22:12:10.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.998600", - "Timestamp": "2019-10-16T01:25:38.000Z" + "InstanceType": "m6g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040400", + "Timestamp": "2024-05-15T22:12:10.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009400", + "Timestamp": "2024-05-15T22:12:10.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.998600", - "Timestamp": "2019-10-16T01:25:38.000Z" + "SpotPrice": "0.896800", + "Timestamp": "2024-05-15T22:06:27.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5a.24xlarge", + "InstanceType": "x2iedn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.795600", - "Timestamp": "2019-10-16T01:25:38.000Z" + "SpotPrice": "2.731000", + "Timestamp": "2024-05-15T22:03:00.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.24xlarge", + "InstanceType": "x2iedn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.795600", - "Timestamp": "2019-10-16T01:25:38.000Z" + "SpotPrice": "2.731000", + "Timestamp": "2024-05-15T22:03:00.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5a.24xlarge", + "InstanceType": "x2iedn.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.765600", - "Timestamp": "2019-10-16T01:25:38.000Z" + "SpotPrice": "2.726000", + "Timestamp": "2024-05-15T22:03:00.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.24xlarge", + "InstanceType": "x2iedn.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.765600", - "Timestamp": "2019-10-16T01:25:38.000Z" + "SpotPrice": "2.726000", + "Timestamp": "2024-05-15T22:03:00.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5a.24xlarge", + "InstanceType": "x2iedn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.665600", - "Timestamp": "2019-10-16T01:25:38.000Z" + "SpotPrice": "2.601000", + "Timestamp": "2024-05-15T22:03:00.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.24xlarge", + "InstanceType": "x2iedn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.665600", - "Timestamp": "2019-10-16T01:25:38.000Z" + "SpotPrice": "2.601000", + "Timestamp": "2024-05-15T22:03:00.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.962800", - "Timestamp": "2019-10-16T01:24:51.000Z" + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.545000", + "Timestamp": "2024-05-15T22:03:00.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.962800", - "Timestamp": "2019-10-16T01:24:51.000Z" + "InstanceType": "x2iedn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.545000", + "Timestamp": "2024-05-15T22:03:00.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.932800", - "Timestamp": "2019-10-16T01:24:51.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.044800", + "Timestamp": "2024-05-15T22:02:56.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.932800", - "Timestamp": "2019-10-16T01:24:51.000Z" + "InstanceType": "c5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.044800", + "Timestamp": "2024-05-15T22:02:56.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.832800", - "Timestamp": "2019-10-16T01:24:51.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.793600", + "Timestamp": "2024-05-15T22:02:50.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5a.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.832800", - "Timestamp": "2019-10-16T01:24:51.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.548800", + "Timestamp": "2024-05-15T22:01:59.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5d.xlarge", + "InstanceType": "m5d.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.258900", - "Timestamp": "2019-10-16T01:24:28.000Z" + "SpotPrice": "0.440000", + "Timestamp": "2024-05-15T22:01:40.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5d.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.258900", - "Timestamp": "2019-10-16T01:24:28.000Z" + "SpotPrice": "0.440400", + "Timestamp": "2024-05-15T22:01:40.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.134900", - "Timestamp": "2019-10-16T01:24:28.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5d.xlarge", + "InstanceType": "r7i.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.134900", - "Timestamp": "2019-10-16T01:24:28.000Z" + "SpotPrice": "0.081100", + "Timestamp": "2024-05-15T22:01:36.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5d.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.174900", - "Timestamp": "2019-10-16T01:24:28.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5d.xlarge", + "InstanceType": "r7i.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.174900", - "Timestamp": "2019-10-16T01:24:28.000Z" + "SpotPrice": "0.077400", + "Timestamp": "2024-05-15T22:01:36.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5d.xlarge", + "InstanceType": "r7i.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.074900", - "Timestamp": "2019-10-16T01:24:28.000Z" + "SpotPrice": "0.021100", + "Timestamp": "2024-05-15T22:01:36.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5d.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.074900", - "Timestamp": "2019-10-16T01:24:28.000Z" + "InstanceType": "m5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.385600", + "Timestamp": "2024-05-15T22:01:34.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.976600", - "Timestamp": "2019-10-16T01:24:25.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.875400", + "Timestamp": "2024-05-15T22:01:28.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.metal", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.976600", - "Timestamp": "2019-10-16T01:24:25.000Z" + "SpotPrice": "0.172000", + "Timestamp": "2024-05-15T22:01:21.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.metal", + "InstanceType": "t3.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.946600", - "Timestamp": "2019-10-16T01:24:25.000Z" + "SpotPrice": "0.168300", + "Timestamp": "2024-05-15T22:01:21.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.946600", - "Timestamp": "2019-10-16T01:24:25.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.112000", + "Timestamp": "2024-05-15T22:01:21.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.846600", - "Timestamp": "2019-10-16T01:24:25.000Z" + "InstanceType": "c5a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207600", + "Timestamp": "2024-05-15T22:00:26.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.846600", - "Timestamp": "2019-10-16T01:24:25.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.858400", + "Timestamp": "2024-05-15T21:59:01.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5d.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097500", - "Timestamp": "2019-10-16T01:23:34.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.858400", + "Timestamp": "2024-05-15T21:59:01.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5d.large", + "InstanceType": "m7g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097500", - "Timestamp": "2019-10-16T01:23:34.000Z" + "SpotPrice": "0.073000", + "Timestamp": "2024-05-15T21:57:52.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5d.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7g.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137500", - "Timestamp": "2019-10-16T01:23:34.000Z" + "SpotPrice": "0.069300", + "Timestamp": "2024-05-15T21:57:52.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5d.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137500", - "Timestamp": "2019-10-16T01:23:34.000Z" + "InstanceType": "m7g.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013000", + "Timestamp": "2024-05-15T21:57:52.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037500", - "Timestamp": "2019-10-16T01:23:34.000Z" + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214600", + "Timestamp": "2024-05-15T21:57:49.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5d.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037500", - "Timestamp": "2019-10-16T01:23:34.000Z" + "InstanceType": "m5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.214600", + "Timestamp": "2024-05-15T21:57:49.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.804400", - "Timestamp": "2019-10-16T01:23:15.000Z" + "InstanceType": "m5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.736000", + "Timestamp": "2024-05-15T21:57:27.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.880000", + "Timestamp": "2024-05-15T21:57:20.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.804400", - "Timestamp": "2019-10-16T01:23:15.000Z" + "InstanceType": "m5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.880000", + "Timestamp": "2024-05-15T21:57:20.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.774400", - "Timestamp": "2019-10-16T01:23:15.000Z" + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.461200", + "Timestamp": "2024-05-15T21:56:39.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5d.9xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5a.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.774400", - "Timestamp": "2019-10-16T01:23:15.000Z" + "SpotPrice": "0.456200", + "Timestamp": "2024-05-15T21:56:39.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5d.9xlarge", + "InstanceType": "m5a.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.674400", - "Timestamp": "2019-10-16T01:23:15.000Z" + "SpotPrice": "0.331200", + "Timestamp": "2024-05-15T21:56:39.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5d.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.674400", - "Timestamp": "2019-10-16T01:23:15.000Z" + "InstanceType": "m5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.539200", + "Timestamp": "2024-05-15T21:56:39.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5d.4xlarge", + "InstanceType": "r6g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.429700", - "Timestamp": "2019-10-16T01:22:57.000Z" + "SpotPrice": "0.515900", + "Timestamp": "2024-05-15T21:56:22.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.429700", - "Timestamp": "2019-10-16T01:22:57.000Z" + "SpotPrice": "0.515900", + "Timestamp": "2024-05-15T21:56:22.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5d.4xlarge", + "InstanceType": "r6g.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.399700", - "Timestamp": "2019-10-16T01:22:57.000Z" + "SpotPrice": "0.510900", + "Timestamp": "2024-05-15T21:56:22.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6g.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.399700", - "Timestamp": "2019-10-16T01:22:57.000Z" + "SpotPrice": "0.510900", + "Timestamp": "2024-05-15T21:56:22.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5d.4xlarge", + "InstanceType": "r6g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.299700", - "Timestamp": "2019-10-16T01:22:57.000Z" + "SpotPrice": "0.385900", + "Timestamp": "2024-05-15T21:56:22.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5d.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.299700", - "Timestamp": "2019-10-16T01:22:57.000Z" + "SpotPrice": "0.385900", + "Timestamp": "2024-05-15T21:56:22.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.517900", - "Timestamp": "2019-10-16T01:22:54.000Z" + "SpotPrice": "0.256000", + "Timestamp": "2024-05-15T21:47:24.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5d.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.517900", - "Timestamp": "2019-10-16T01:22:54.000Z" + "SpotPrice": "2.642400", + "Timestamp": "2024-05-15T21:47:12.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5d.2xlarge", + "InstanceType": "t2.micro", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.279900", - "Timestamp": "2019-10-16T01:22:54.000Z" + "SpotPrice": "0.062800", + "Timestamp": "2024-05-15T21:47:02.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5d.2xlarge", + "InstanceType": "t2.micro", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.279900", - "Timestamp": "2019-10-16T01:22:54.000Z" + "SpotPrice": "0.064500", + "Timestamp": "2024-05-15T21:47:02.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5d.2xlarge", + "InstanceType": "t2.micro", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.249900", - "Timestamp": "2019-10-16T01:22:54.000Z" + "SpotPrice": "0.002800", + "Timestamp": "2024-05-15T21:47:02.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5d.2xlarge", + "InstanceType": "t2.micro", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.249900", - "Timestamp": "2019-10-16T01:22:54.000Z" + "SpotPrice": "0.004500", + "Timestamp": "2024-05-15T21:47:02.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5d.2xlarge", + "InstanceType": "t2.micro", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.149900", - "Timestamp": "2019-10-16T01:22:54.000Z" + "SpotPrice": "0.002800", + "Timestamp": "2024-05-15T21:47:02.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5d.2xlarge", + "InstanceType": "t2.micro", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.149900", - "Timestamp": "2019-10-16T01:22:54.000Z" + "SpotPrice": "0.004500", + "Timestamp": "2024-05-15T21:47:02.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5d.18xlarge", + "InstanceType": "t2.micro", "ProductDescription": "Windows", - "SpotPrice": "4.660800", - "Timestamp": "2019-10-16T01:22:51.000Z" + "SpotPrice": "0.006500", + "Timestamp": "2024-05-15T21:47:02.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5d.18xlarge", + "InstanceType": "t2.micro", "ProductDescription": "Windows", - "SpotPrice": "4.660800", - "Timestamp": "2019-10-16T01:22:51.000Z" + "SpotPrice": "0.006500", + "Timestamp": "2024-05-15T21:47:02.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.478800", - "Timestamp": "2019-10-16T01:22:51.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.280000", + "Timestamp": "2024-05-15T21:46:57.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.478800", - "Timestamp": "2019-10-16T01:22:51.000Z" + "InstanceType": "c5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.529600", + "Timestamp": "2024-05-15T21:46:55.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.448800", - "Timestamp": "2019-10-16T01:22:51.000Z" + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.076200", + "Timestamp": "2024-05-15T21:46:44.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.548800", + "Timestamp": "2024-05-15T21:46:20.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.448800", - "Timestamp": "2019-10-16T01:22:51.000Z" + "InstanceType": "c6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-15T21:46:09.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.348800", - "Timestamp": "2019-10-16T01:22:51.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.088800", + "Timestamp": "2024-05-15T21:46:08.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5d.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.348800", - "Timestamp": "2019-10-16T01:22:51.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.084800", + "Timestamp": "2024-05-15T21:46:08.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.metal", - "ProductDescription": "Windows", - "SpotPrice": "5.997100", - "Timestamp": "2019-10-16T01:22:49.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.028800", + "Timestamp": "2024-05-15T21:46:08.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.metal", + "InstanceType": "c4.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.997100", - "Timestamp": "2019-10-16T01:22:49.000Z" + "SpotPrice": "1.903000", + "Timestamp": "2024-05-15T21:45:59.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.metal", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.711100", - "Timestamp": "2019-10-16T01:22:49.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.metal", + "InstanceType": "c4.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.711100", - "Timestamp": "2019-10-16T01:22:49.000Z" + "SpotPrice": "0.143700", + "Timestamp": "2024-05-15T21:45:59.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.metal", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.681100", - "Timestamp": "2019-10-16T01:22:49.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.metal", + "InstanceType": "c4.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.681100", - "Timestamp": "2019-10-16T01:22:49.000Z" + "SpotPrice": "0.183700", + "Timestamp": "2024-05-15T21:45:59.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.metal", + "InstanceType": "c4.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.581100", - "Timestamp": "2019-10-16T01:22:49.000Z" + "SpotPrice": "0.083700", + "Timestamp": "2024-05-15T21:45:59.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.metal", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.581100", - "Timestamp": "2019-10-16T01:22:49.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.24xlarge", + "InstanceType": "m5a.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "6.418000", - "Timestamp": "2019-10-16T01:21:14.000Z" + "SpotPrice": "0.123000", + "Timestamp": "2024-05-15T21:43:25.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.711100", - "Timestamp": "2019-10-16T01:21:14.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.24xlarge", + "InstanceType": "m5a.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "6.388000", - "Timestamp": "2019-10-16T01:21:14.000Z" + "SpotPrice": "0.119000", + "Timestamp": "2024-05-15T21:43:25.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.681100", - "Timestamp": "2019-10-16T01:21:14.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.24xlarge", + "InstanceType": "m5a.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "6.288000", - "Timestamp": "2019-10-16T01:21:14.000Z" + "SpotPrice": "0.063000", + "Timestamp": "2024-05-15T21:43:25.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.581100", - "Timestamp": "2019-10-16T01:21:14.000Z" + "InstanceType": "m5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-15T21:43:25.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.24xlarge", + "InstanceType": "t3a.micro", "ProductDescription": "Windows", - "SpotPrice": "5.997100", - "Timestamp": "2019-10-16T01:21:14.000Z" + "SpotPrice": "0.010900", + "Timestamp": "2024-05-15T21:42:11.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.24xlarge", + "InstanceType": "t3a.micro", "ProductDescription": "Windows", - "SpotPrice": "5.997100", - "Timestamp": "2019-10-16T01:21:14.000Z" + "SpotPrice": "0.010700", + "Timestamp": "2024-05-15T21:42:11.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.12xlarge", + "InstanceType": "t3a.micro", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.920600", - "Timestamp": "2019-10-16T01:20:38.000Z" + "SpotPrice": "0.064800", + "Timestamp": "2024-05-15T21:41:17.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.12xlarge", + "InstanceType": "t3a.micro", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.920600", - "Timestamp": "2019-10-16T01:20:38.000Z" + "SpotPrice": "0.064800", + "Timestamp": "2024-05-15T21:41:17.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.12xlarge", + "InstanceType": "t3a.micro", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.890600", - "Timestamp": "2019-10-16T01:20:38.000Z" + "SpotPrice": "0.004800", + "Timestamp": "2024-05-15T21:41:17.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.12xlarge", + "InstanceType": "t3a.micro", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.890600", - "Timestamp": "2019-10-16T01:20:38.000Z" + "SpotPrice": "0.004800", + "Timestamp": "2024-05-15T21:41:17.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.12xlarge", + "InstanceType": "t3a.micro", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.790600", - "Timestamp": "2019-10-16T01:20:38.000Z" + "SpotPrice": "0.004800", + "Timestamp": "2024-05-15T21:41:17.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.12xlarge", + "InstanceType": "t3a.micro", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.790600", - "Timestamp": "2019-10-16T01:20:38.000Z" + "SpotPrice": "0.004800", + "Timestamp": "2024-05-15T21:41:17.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.large", "ProductDescription": "Windows", - "SpotPrice": "0.140500", - "Timestamp": "2019-10-16T00:59:34.000Z" + "SpotPrice": "0.107300", + "Timestamp": "2024-05-15T21:37:56.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.107300", + "Timestamp": "2024-05-15T21:37:56.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m1.xlarge", + "InstanceType": "m6i.large", "ProductDescription": "Windows", - "SpotPrice": "0.282200", - "Timestamp": "2019-10-16T00:50:42.000Z" + "SpotPrice": "0.107300", + "Timestamp": "2024-05-15T21:37:56.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r4.large", + "InstanceType": "m5ad.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.105400", - "Timestamp": "2019-10-16T00:50:21.000Z" + "SpotPrice": "0.658000", + "Timestamp": "2024-05-15T21:37:29.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r4.large", + "InstanceType": "m5ad.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.145400", - "Timestamp": "2019-10-16T00:50:21.000Z" + "SpotPrice": "0.653000", + "Timestamp": "2024-05-15T21:37:29.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r4.large", + "InstanceType": "m5ad.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.045400", - "Timestamp": "2019-10-16T00:50:21.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Windows", - "SpotPrice": "6.845500", - "Timestamp": "2019-10-16T00:43:34.000Z" + "SpotPrice": "0.528000", + "Timestamp": "2024-05-15T21:37:29.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "x1.16xlarge", + "InstanceType": "c5d.xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.845500", - "Timestamp": "2019-10-16T00:43:34.000Z" + "SpotPrice": "0.213800", + "Timestamp": "2024-05-15T21:37:11.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "x1.32xlarge", + "InstanceType": "c7i.metal-48xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "7.933000", - "Timestamp": "2019-10-16T00:43:08.000Z" + "SpotPrice": "1.450500", + "Timestamp": "2024-05-15T21:37:01.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.450500", + "Timestamp": "2024-05-15T21:37:01.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "x1.32xlarge", + "InstanceType": "c7i.metal-48xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "7.933000", - "Timestamp": "2019-10-16T00:43:08.000Z" + "SpotPrice": "1.450500", + "Timestamp": "2024-05-15T21:37:01.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "x1.32xlarge", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.445500", + "Timestamp": "2024-05-15T21:37:01.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.metal-48xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "7.903000", - "Timestamp": "2019-10-16T00:43:08.000Z" + "SpotPrice": "1.445500", + "Timestamp": "2024-05-15T21:37:01.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "x1.32xlarge", + "InstanceType": "c7i.metal-48xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "7.903000", - "Timestamp": "2019-10-16T00:43:08.000Z" + "SpotPrice": "1.445500", + "Timestamp": "2024-05-15T21:37:01.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "x1.32xlarge", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.320500", + "Timestamp": "2024-05-15T21:37:01.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "7.803000", - "Timestamp": "2019-10-16T00:43:08.000Z" + "SpotPrice": "1.320500", + "Timestamp": "2024-05-15T21:37:01.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "x1.32xlarge", + "InstanceType": "c7i.metal-48xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "7.803000", - "Timestamp": "2019-10-16T00:43:08.000Z" + "SpotPrice": "1.320500", + "Timestamp": "2024-05-15T21:37:01.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.031500", - "Timestamp": "2019-10-16T00:43:07.000Z" + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.152500", + "Timestamp": "2024-05-15T21:37:00.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.152500", + "Timestamp": "2024-05-15T21:37:00.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.031500", - "Timestamp": "2019-10-16T00:43:07.000Z" + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.420400", + "Timestamp": "2024-05-15T21:36:57.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "4.001500", - "Timestamp": "2019-10-16T00:43:07.000Z" + "InstanceType": "i3en.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.144000", + "Timestamp": "2024-05-15T21:36:54.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "x1.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "4.001500", - "Timestamp": "2019-10-16T00:43:07.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3en.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.858000", + "Timestamp": "2024-05-15T21:36:54.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.901500", - "Timestamp": "2019-10-16T00:43:07.000Z" + "InstanceType": "i3en.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.853000", + "Timestamp": "2024-05-15T21:36:54.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3en.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.901500", - "Timestamp": "2019-10-16T00:43:07.000Z" + "SpotPrice": "1.728000", + "Timestamp": "2024-05-15T21:36:54.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "x1.32xlarge", + "InstanceType": "r4.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "13.691000", - "Timestamp": "2019-10-16T00:42:47.000Z" + "SpotPrice": "3.840000", + "Timestamp": "2024-05-15T21:36:03.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Windows", - "SpotPrice": "13.691000", - "Timestamp": "2019-10-16T00:42:47.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.2xlarge", + "InstanceType": "r4.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.307900", - "Timestamp": "2019-10-16T00:32:02.000Z" + "SpotPrice": "3.840000", + "Timestamp": "2024-05-15T21:36:03.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.682800", - "Timestamp": "2019-10-16T00:32:02.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.307900", - "Timestamp": "2019-10-16T00:32:02.000Z" + "InstanceType": "c6gn.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073300", + "Timestamp": "2024-05-15T21:35:50.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.290700", - "Timestamp": "2019-10-16T00:31:52.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gn.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.069600", + "Timestamp": "2024-05-15T21:35:50.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.665600", - "Timestamp": "2019-10-16T00:31:52.000Z" + "InstanceType": "c6gn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.013300", + "Timestamp": "2024-05-15T21:35:50.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.290700", - "Timestamp": "2019-10-16T00:31:52.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.434400", + "Timestamp": "2024-05-15T21:35:17.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.260700", - "Timestamp": "2019-10-16T00:31:52.000Z" + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.794000", + "Timestamp": "2024-05-15T21:35:12.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.635600", - "Timestamp": "2019-10-16T00:31:52.000Z" + "InstanceType": "t3a.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.064800", + "Timestamp": "2024-05-15T21:34:10.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3a.micro", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.260700", - "Timestamp": "2019-10-16T00:31:52.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.160700", - "Timestamp": "2019-10-16T00:31:52.000Z" + "SpotPrice": "0.004800", + "Timestamp": "2024-05-15T21:34:10.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t3.2xlarge", + "InstanceType": "t3a.micro", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.535600", - "Timestamp": "2019-10-16T00:31:52.000Z" + "SpotPrice": "0.004800", + "Timestamp": "2024-05-15T21:34:10.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.160700", - "Timestamp": "2019-10-16T00:31:52.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3a.micro", + "ProductDescription": "Windows", + "SpotPrice": "0.011900", + "Timestamp": "2024-05-15T21:34:10.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r4.8xlarge", + "InstanceType": "m6i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.155700", - "Timestamp": "2019-10-15T23:50:55.000Z" + "SpotPrice": "0.214600", + "Timestamp": "2024-05-15T21:34:04.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "r4.8xlarge", + "InstanceType": "c5ad.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.155700", - "Timestamp": "2019-10-15T23:50:55.000Z" + "SpotPrice": "0.843200", + "Timestamp": "2024-05-15T21:33:59.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r4.8xlarge", + "InstanceType": "c5ad.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.155700", - "Timestamp": "2019-10-15T23:50:55.000Z" + "SpotPrice": "0.843200", + "Timestamp": "2024-05-15T21:33:59.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.813700", - "Timestamp": "2019-10-15T23:50:49.000Z" + "InstanceType": "i4i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.730700", + "Timestamp": "2024-05-15T21:33:11.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.813700", - "Timestamp": "2019-10-15T23:50:49.000Z" + "InstanceType": "r5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.690400", + "Timestamp": "2024-05-15T21:33:10.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r4.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.813700", - "Timestamp": "2019-10-15T23:50:49.000Z" + "SpotPrice": "1.416400", + "Timestamp": "2024-05-15T21:33:02.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r4.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.783700", - "Timestamp": "2019-10-15T23:50:49.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.416400", + "Timestamp": "2024-05-15T21:33:02.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "r4.8xlarge", + "InstanceType": "r6i.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.783700", - "Timestamp": "2019-10-15T23:50:49.000Z" + "SpotPrice": "1.411400", + "Timestamp": "2024-05-15T21:33:02.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r4.8xlarge", + "InstanceType": "r6i.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.783700", - "Timestamp": "2019-10-15T23:50:49.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r4.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.683700", - "Timestamp": "2019-10-15T23:50:49.000Z" + "SpotPrice": "1.411400", + "Timestamp": "2024-05-15T21:33:02.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "r4.8xlarge", + "InstanceType": "r6i.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.683700", - "Timestamp": "2019-10-15T23:50:49.000Z" + "SpotPrice": "1.286400", + "Timestamp": "2024-05-15T21:33:02.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r4.8xlarge", + "InstanceType": "r6i.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.683700", - "Timestamp": "2019-10-15T23:50:49.000Z" + "SpotPrice": "1.286400", + "Timestamp": "2024-05-15T21:33:02.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "7.174400", + "Timestamp": "2024-05-15T21:33:02.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.large", + "InstanceType": "r6i.metal", "ProductDescription": "Windows", - "SpotPrice": "0.142800", - "Timestamp": "2019-10-15T23:30:11.000Z" + "SpotPrice": "7.174400", + "Timestamp": "2024-05-15T21:33:02.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.100800", - "Timestamp": "2019-10-15T23:30:05.000Z" + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.467600", + "Timestamp": "2024-05-15T21:32:54.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.100800", - "Timestamp": "2019-10-15T23:30:05.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.467600", + "Timestamp": "2024-05-15T21:32:54.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.140800", - "Timestamp": "2019-10-15T23:30:05.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.467600", + "Timestamp": "2024-05-15T21:32:54.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.140800", - "Timestamp": "2019-10-15T23:30:05.000Z" + "InstanceType": "i3.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.420000", + "Timestamp": "2024-05-15T21:32:54.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.040800", - "Timestamp": "2019-10-15T23:30:05.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.390000", + "Timestamp": "2024-05-15T21:32:54.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.large", + "InstanceType": "i3.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.040800", - "Timestamp": "2019-10-15T23:30:05.000Z" + "SpotPrice": "0.290000", + "Timestamp": "2024-05-15T21:32:54.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.751600", - "Timestamp": "2019-10-15T23:30:04.000Z" + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.707200", + "Timestamp": "2024-05-15T21:32:45.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.751600", - "Timestamp": "2019-10-15T23:30:04.000Z" + "InstanceType": "r5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.707200", + "Timestamp": "2024-05-15T21:32:45.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.721600", - "Timestamp": "2019-10-15T23:30:04.000Z" + "InstanceType": "m3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.580100", + "Timestamp": "2024-05-15T21:32:30.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.721600", - "Timestamp": "2019-10-15T23:30:04.000Z" + "InstanceType": "m3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.580100", + "Timestamp": "2024-05-15T21:32:30.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.621600", - "Timestamp": "2019-10-15T23:30:04.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c4.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.621600", - "Timestamp": "2019-10-15T23:30:04.000Z" + "InstanceType": "m7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.374200", + "Timestamp": "2024-05-15T21:32:27.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c4.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.metal-48xl", "ProductDescription": "Windows", - "SpotPrice": "2.277600", - "Timestamp": "2019-10-15T23:29:56.000Z" + "SpotPrice": "10.374200", + "Timestamp": "2024-05-15T21:32:27.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c4.8xlarge", + "InstanceType": "m7i.metal-48xl", "ProductDescription": "Windows", - "SpotPrice": "2.277600", - "Timestamp": "2019-10-15T23:29:56.000Z" + "SpotPrice": "10.374200", + "Timestamp": "2024-05-15T21:32:27.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.143000", - "Timestamp": "2019-10-15T23:11:08.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.918400", + "Timestamp": "2024-05-15T21:31:58.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m4.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.183000", - "Timestamp": "2019-10-15T23:11:08.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.858400", + "Timestamp": "2024-05-15T21:31:53.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.083000", - "Timestamp": "2019-10-15T23:11:08.000Z" + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.714500", + "Timestamp": "2024-05-15T21:31:47.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "m1.medium", + "InstanceType": "c6i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.073700", - "Timestamp": "2019-10-15T23:07:21.000Z" + "SpotPrice": "3.363200", + "Timestamp": "2024-05-15T21:31:45.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m1.medium", + "InstanceType": "c7i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.073700", - "Timestamp": "2019-10-15T23:07:21.000Z" + "SpotPrice": "2.538100", + "Timestamp": "2024-05-15T21:31:42.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m1.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.071700", - "Timestamp": "2019-10-15T23:07:21.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.660600", + "Timestamp": "2024-05-15T21:31:42.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m1.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.071700", - "Timestamp": "2019-10-15T23:07:21.000Z" + "InstanceType": "t2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.121500", + "Timestamp": "2024-05-15T21:31:38.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "m1.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.111700", - "Timestamp": "2019-10-15T23:07:21.000Z" + "InstanceType": "m6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423100", + "Timestamp": "2024-05-15T21:31:33.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m1.medium", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.222600", + "Timestamp": "2024-05-15T21:31:33.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x2iedn.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.111700", - "Timestamp": "2019-10-15T23:07:21.000Z" + "SpotPrice": "0.218900", + "Timestamp": "2024-05-15T21:31:33.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m1.medium", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x2iedn.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.011700", - "Timestamp": "2019-10-15T23:07:21.000Z" + "SpotPrice": "0.162600", + "Timestamp": "2024-05-15T21:31:33.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m1.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.011700", - "Timestamp": "2019-10-15T23:07:21.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "9.963800", + "Timestamp": "2024-05-15T21:31:32.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r3.large", + "InstanceType": "m6a.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.108100", - "Timestamp": "2019-10-15T22:45:22.000Z" + "SpotPrice": "1.011300", + "Timestamp": "2024-05-15T21:31:23.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r3.large", + "InstanceType": "m6a.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.148100", - "Timestamp": "2019-10-15T22:45:22.000Z" + "SpotPrice": "1.006300", + "Timestamp": "2024-05-15T21:31:23.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r3.large", + "InstanceType": "m6a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.048100", - "Timestamp": "2019-10-15T22:45:22.000Z" + "SpotPrice": "0.881300", + "Timestamp": "2024-05-15T21:31:23.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.185900", - "Timestamp": "2019-10-15T22:43:32.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.702400", + "Timestamp": "2024-05-15T21:31:05.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.24xlarge", + "InstanceType": "c6g.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.185900", - "Timestamp": "2019-10-15T22:43:32.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.24xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.155900", - "Timestamp": "2019-10-15T22:43:32.000Z" + "SpotPrice": "0.465400", + "Timestamp": "2024-05-15T21:31:01.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.24xlarge", + "InstanceType": "c6g.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.155900", - "Timestamp": "2019-10-15T22:43:32.000Z" + "SpotPrice": "0.460400", + "Timestamp": "2024-05-15T21:31:01.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6g.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.055900", - "Timestamp": "2019-10-15T22:43:32.000Z" + "SpotPrice": "0.335400", + "Timestamp": "2024-05-15T21:31:01.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.24xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.055900", - "Timestamp": "2019-10-15T22:43:32.000Z" + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207600", + "Timestamp": "2024-05-15T21:19:43.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.471900", - "Timestamp": "2019-10-15T22:43:09.000Z" + "SpotPrice": "0.423200", + "Timestamp": "2024-05-15T21:17:47.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.24xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.471900", - "Timestamp": "2019-10-15T22:43:09.000Z" + "SpotPrice": "2.593600", + "Timestamp": "2024-05-15T21:17:36.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.098800", - "Timestamp": "2019-10-15T22:42:58.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.044800", + "Timestamp": "2024-05-15T21:17:36.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c4.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.098800", - "Timestamp": "2019-10-15T22:42:58.000Z" + "SpotPrice": "0.107400", + "Timestamp": "2024-05-15T21:17:19.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c4.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.138800", - "Timestamp": "2019-10-15T22:42:58.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c4.large", + "InstanceType": "r5b.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.138800", - "Timestamp": "2019-10-15T22:42:58.000Z" + "SpotPrice": "0.103700", + "Timestamp": "2024-05-15T21:17:19.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c4.large", + "InstanceType": "r5b.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.038800", - "Timestamp": "2019-10-15T22:42:58.000Z" + "SpotPrice": "0.047400", + "Timestamp": "2024-05-15T21:17:19.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.038800", - "Timestamp": "2019-10-15T22:42:58.000Z" + "InstanceType": "c3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.794000", + "Timestamp": "2024-05-15T21:17:12.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c4.large", + "InstanceType": "c5d.9xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T22:42:54.000Z" + "SpotPrice": "1.924200", + "Timestamp": "2024-05-15T21:16:47.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.3xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.768000", + "Timestamp": "2024-05-15T21:16:45.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c4.large", + "InstanceType": "c5a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.130800", - "Timestamp": "2019-10-15T22:42:54.000Z" + "SpotPrice": "0.415200", + "Timestamp": "2024-05-15T21:16:44.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t2.small", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.071200", - "Timestamp": "2019-10-15T22:08:31.000Z" + "SpotPrice": "0.402200", + "Timestamp": "2024-05-15T21:16:33.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "t2.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.071200", - "Timestamp": "2019-10-15T22:08:31.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.397200", + "Timestamp": "2024-05-15T21:16:33.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t2.small", + "InstanceType": "m7gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.272200", + "Timestamp": "2024-05-15T21:16:33.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.071200", - "Timestamp": "2019-10-15T22:08:31.000Z" + "SpotPrice": "0.112000", + "Timestamp": "2024-05-15T21:16:32.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t2.small", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.041200", - "Timestamp": "2019-10-15T22:08:31.000Z" + "SpotPrice": "0.108300", + "Timestamp": "2024-05-15T21:16:32.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t2.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.041200", - "Timestamp": "2019-10-15T22:08:31.000Z" + "InstanceType": "m6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.052000", + "Timestamp": "2024-05-15T21:16:32.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t2.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.041200", - "Timestamp": "2019-10-15T22:08:31.000Z" + "InstanceType": "c5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.522400", + "Timestamp": "2024-05-15T21:16:32.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t2.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.011200", - "Timestamp": "2019-10-15T22:08:31.000Z" + "InstanceType": "r5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.440400", + "Timestamp": "2024-05-15T21:16:29.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t2.small", + "InstanceType": "r5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.924800", + "Timestamp": "2024-05-15T21:16:29.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.674300", + "Timestamp": "2024-05-15T21:16:28.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.669300", + "Timestamp": "2024-05-15T21:16:28.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.011200", - "Timestamp": "2019-10-15T22:08:31.000Z" + "SpotPrice": "0.544300", + "Timestamp": "2024-05-15T21:16:28.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t2.small", + "InstanceType": "m5d.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.280000", + "Timestamp": "2024-05-15T21:16:12.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.100200", + "Timestamp": "2024-05-15T21:15:08.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-15T21:15:08.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.011200", - "Timestamp": "2019-10-15T22:08:31.000Z" + "SpotPrice": "0.040200", + "Timestamp": "2024-05-15T21:15:08.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t2.small", + "InstanceType": "r6i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.020400", - "Timestamp": "2019-10-15T22:08:31.000Z" + "SpotPrice": "0.224200", + "Timestamp": "2024-05-15T21:15:08.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t2.small", + "InstanceType": "r6i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.020400", - "Timestamp": "2019-10-15T22:08:31.000Z" + "SpotPrice": "0.224200", + "Timestamp": "2024-05-15T21:15:08.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t2.small", + "InstanceType": "r6i.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.020400", - "Timestamp": "2019-10-15T22:08:31.000Z" + "SpotPrice": "0.224200", + "Timestamp": "2024-05-15T21:15:08.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.278000", - "Timestamp": "2019-10-15T22:04:30.000Z" + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-15T21:13:42.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-15T21:13:42.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.278000", - "Timestamp": "2019-10-15T22:04:30.000Z" + "InstanceType": "i3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.116900", + "Timestamp": "2024-05-15T21:13:42.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.248000", - "Timestamp": "2019-10-15T22:04:30.000Z" + "InstanceType": "r6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.076100", + "Timestamp": "2024-05-15T21:13:42.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6g.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.248000", - "Timestamp": "2019-10-15T22:04:30.000Z" + "SpotPrice": "0.072400", + "Timestamp": "2024-05-15T21:13:42.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c3.2xlarge", + "InstanceType": "r6g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.148000", - "Timestamp": "2019-10-15T22:04:30.000Z" + "SpotPrice": "0.016100", + "Timestamp": "2024-05-15T21:13:42.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.555600", + "Timestamp": "2024-05-15T21:11:18.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gn.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.550600", + "Timestamp": "2024-05-15T21:11:18.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.148000", - "Timestamp": "2019-10-15T22:04:30.000Z" + "SpotPrice": "0.425600", + "Timestamp": "2024-05-15T21:11:18.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c3.2xlarge", + "InstanceType": "m7i-flex.large", "ProductDescription": "Windows", - "SpotPrice": "0.480000", - "Timestamp": "2019-10-15T22:04:27.000Z" + "SpotPrice": "0.102700", + "Timestamp": "2024-05-15T21:11:11.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c3.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i-flex.large", "ProductDescription": "Windows", - "SpotPrice": "0.480000", - "Timestamp": "2019-10-15T22:04:27.000Z" + "SpotPrice": "0.102700", + "Timestamp": "2024-05-15T21:11:11.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m4.4xlarge", + "InstanceType": "r7i.metal-48xl", + "ProductDescription": "Windows", + "SpotPrice": "10.858100", + "Timestamp": "2024-05-15T21:11:11.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.429000", + "Timestamp": "2024-05-15T21:11:10.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t4g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.457000", - "Timestamp": "2019-10-15T22:04:22.000Z" + "SpotPrice": "0.067500", + "Timestamp": "2024-05-15T21:10:56.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t4g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.427000", - "Timestamp": "2019-10-15T22:04:22.000Z" + "SpotPrice": "0.063800", + "Timestamp": "2024-05-15T21:10:56.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t4g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.327000", - "Timestamp": "2019-10-15T22:04:22.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.157300", - "Timestamp": "2019-10-15T21:45:29.000Z" + "SpotPrice": "0.007500", + "Timestamp": "2024-05-15T21:10:56.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.3xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.157300", - "Timestamp": "2019-10-15T21:45:29.000Z" + "SpotPrice": "0.709900", + "Timestamp": "2024-05-15T21:10:54.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.16xlarge", + "InstanceType": "r5a.large", "ProductDescription": "Windows", - "SpotPrice": "4.314600", - "Timestamp": "2019-10-15T21:45:27.000Z" + "SpotPrice": "0.110100", + "Timestamp": "2024-05-15T21:10:54.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.16xlarge", + "InstanceType": "r5a.large", "ProductDescription": "Windows", - "SpotPrice": "4.314600", - "Timestamp": "2019-10-15T21:45:27.000Z" + "SpotPrice": "0.110100", + "Timestamp": "2024-05-15T21:10:54.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "m1.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.065800", - "Timestamp": "2019-10-15T21:45:26.000Z" + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-15T21:10:50.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m1.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.065800", - "Timestamp": "2019-10-15T21:45:26.000Z" + "InstanceType": "c5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108600", + "Timestamp": "2024-05-15T21:10:50.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "m1.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.035800", - "Timestamp": "2019-10-15T21:45:26.000Z" + "InstanceType": "c5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-15T21:10:44.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m1.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.035800", - "Timestamp": "2019-10-15T21:45:26.000Z" + "InstanceType": "c5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105400", + "Timestamp": "2024-05-15T21:10:44.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.745800", + "Timestamp": "2024-05-15T21:10:42.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "m1.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.005800", - "Timestamp": "2019-10-15T21:45:26.000Z" + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.745800", + "Timestamp": "2024-05-15T21:10:42.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m1.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.005800", - "Timestamp": "2019-10-15T21:45:26.000Z" + "InstanceType": "g4dn.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.745800", + "Timestamp": "2024-05-15T21:10:42.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.16xlarge", + "InstanceType": "r7i.metal-24xl", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.500600", - "Timestamp": "2019-10-15T21:45:26.000Z" + "SpotPrice": "1.143000", + "Timestamp": "2024-05-15T21:10:37.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.500600", - "Timestamp": "2019-10-15T21:45:26.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.138000", + "Timestamp": "2024-05-15T21:10:37.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.470600", - "Timestamp": "2019-10-15T21:45:26.000Z" + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.013000", + "Timestamp": "2024-05-15T21:10:37.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.470600", - "Timestamp": "2019-10-15T21:45:26.000Z" + "InstanceType": "c6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105100", + "Timestamp": "2024-05-15T21:10:33.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.370600", - "Timestamp": "2019-10-15T21:45:26.000Z" + "InstanceType": "r5n.large", + "ProductDescription": "Windows", + "SpotPrice": "0.115600", + "Timestamp": "2024-05-15T21:10:32.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.013400", + "Timestamp": "2024-05-15T21:10:31.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.370600", - "Timestamp": "2019-10-15T21:45:26.000Z" + "InstanceType": "t2.small", + "ProductDescription": "Windows", + "SpotPrice": "0.012900", + "Timestamp": "2024-05-15T21:10:31.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t2.large", + "InstanceType": "c6g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.104600", - "Timestamp": "2019-10-15T21:45:12.000Z" + "SpotPrice": "0.465400", + "Timestamp": "2024-05-15T21:10:15.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t2.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.104600", - "Timestamp": "2019-10-15T21:45:12.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t2.large", + "InstanceType": "c6g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.104600", - "Timestamp": "2019-10-15T21:45:12.000Z" + "SpotPrice": "0.465400", + "Timestamp": "2024-05-15T21:10:15.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t2.large", + "InstanceType": "c6g.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.144600", - "Timestamp": "2019-10-15T21:45:12.000Z" + "SpotPrice": "0.460400", + "Timestamp": "2024-05-15T21:10:15.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t2.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.144600", - "Timestamp": "2019-10-15T21:45:12.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t2.large", + "InstanceType": "c6g.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.144600", - "Timestamp": "2019-10-15T21:45:12.000Z" + "SpotPrice": "0.460400", + "Timestamp": "2024-05-15T21:10:15.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t2.large", + "InstanceType": "c6g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.044600", - "Timestamp": "2019-10-15T21:45:12.000Z" + "SpotPrice": "0.335400", + "Timestamp": "2024-05-15T21:10:15.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t2.large", + "InstanceType": "c6g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.044600", - "Timestamp": "2019-10-15T21:45:12.000Z" + "SpotPrice": "0.335400", + "Timestamp": "2024-05-15T21:10:15.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r4.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.240000", + "Timestamp": "2024-05-15T21:10:11.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t2.large", + "InstanceType": "r7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.429000", + "Timestamp": "2024-05-15T21:10:09.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.713700", + "Timestamp": "2024-05-15T21:09:36.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.708700", + "Timestamp": "2024-05-15T21:09:36.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.044600", - "Timestamp": "2019-10-15T21:45:12.000Z" + "SpotPrice": "0.583700", + "Timestamp": "2024-05-15T21:09:36.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.815300", - "Timestamp": "2019-10-15T21:45:03.000Z" + "SpotPrice": "0.083600", + "Timestamp": "2024-05-15T21:09:32.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.8xlarge", + "InstanceType": "r5n.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.815300", - "Timestamp": "2019-10-15T21:45:03.000Z" + "SpotPrice": "0.083600", + "Timestamp": "2024-05-15T21:09:32.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.785300", - "Timestamp": "2019-10-15T21:45:03.000Z" + "SpotPrice": "0.079600", + "Timestamp": "2024-05-15T21:09:32.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.8xlarge", + "InstanceType": "r5n.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.785300", - "Timestamp": "2019-10-15T21:45:03.000Z" + "SpotPrice": "0.079600", + "Timestamp": "2024-05-15T21:09:32.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5d.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.685300", - "Timestamp": "2019-10-15T21:45:03.000Z" + "SpotPrice": "0.023600", + "Timestamp": "2024-05-15T21:09:32.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5d.8xlarge", + "InstanceType": "r5n.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.685300", - "Timestamp": "2019-10-15T21:45:03.000Z" + "SpotPrice": "0.023600", + "Timestamp": "2024-05-15T21:09:32.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m1.small", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.036800", - "Timestamp": "2019-10-15T21:44:54.000Z" + "SpotPrice": "0.207600", + "Timestamp": "2024-05-15T21:09:30.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m1.small", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.036800", - "Timestamp": "2019-10-15T21:44:54.000Z" + "SpotPrice": "5.800300", + "Timestamp": "2024-05-15T21:09:27.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t2.large", + "InstanceType": "m5.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.072600", - "Timestamp": "2019-10-15T21:44:53.000Z" + "SpotPrice": "5.150400", + "Timestamp": "2024-05-15T21:09:22.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "t2.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.072600", - "Timestamp": "2019-10-15T21:44:53.000Z" + "SpotPrice": "5.150400", + "Timestamp": "2024-05-15T21:09:22.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t2.large", + "InstanceType": "r5n.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.072600", - "Timestamp": "2019-10-15T21:44:53.000Z" + "SpotPrice": "2.774400", + "Timestamp": "2024-05-15T21:09:19.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.100800", - "Timestamp": "2019-10-15T21:38:48.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-15T21:09:08.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "m4.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.140800", - "Timestamp": "2019-10-15T21:38:48.000Z" + "InstanceType": "m7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108100", + "Timestamp": "2024-05-15T21:09:08.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "m4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.040800", - "Timestamp": "2019-10-15T21:38:48.000Z" + "InstanceType": "r7i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.714500", + "Timestamp": "2024-05-15T21:08:25.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3en.6xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.536000", + "Timestamp": "2024-05-15T21:08:23.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3en.6xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.143600", - "Timestamp": "2019-10-15T21:38:42.000Z" + "SpotPrice": "0.562000", + "Timestamp": "2024-05-15T21:08:23.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3en.6xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.183600", - "Timestamp": "2019-10-15T21:38:42.000Z" + "SpotPrice": "0.557000", + "Timestamp": "2024-05-15T21:08:23.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3en.6xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.083600", - "Timestamp": "2019-10-15T21:38:42.000Z" + "SpotPrice": "0.432000", + "Timestamp": "2024-05-15T21:08:23.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.107700", - "Timestamp": "2019-10-15T21:38:22.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.225600", + "Timestamp": "2024-05-15T21:02:58.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r4.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.147700", - "Timestamp": "2019-10-15T21:38:22.000Z" + "InstanceType": "m7i-flex.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.821300", + "Timestamp": "2024-05-15T21:02:38.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.047700", - "Timestamp": "2019-10-15T21:38:22.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429200", + "Timestamp": "2024-05-15T21:02:26.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.16xlarge", + "InstanceType": "r6i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.314600", - "Timestamp": "2019-10-15T21:36:26.000Z" + "SpotPrice": "1.793600", + "Timestamp": "2024-05-15T21:02:11.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.16xlarge", + "InstanceType": "r5n.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.314600", - "Timestamp": "2019-10-15T21:36:26.000Z" + "SpotPrice": "3.699200", + "Timestamp": "2024-05-15T21:02:08.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.500600", - "Timestamp": "2019-10-15T21:36:18.000Z" + "InstanceType": "m4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.863200", + "Timestamp": "2024-05-15T21:02:03.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.500600", - "Timestamp": "2019-10-15T21:36:18.000Z" + "SpotPrice": "0.086300", + "Timestamp": "2024-05-15T21:01:53.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.16xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.470600", - "Timestamp": "2019-10-15T21:36:18.000Z" + "SpotPrice": "0.082600", + "Timestamp": "2024-05-15T21:01:53.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.026300", + "Timestamp": "2024-05-15T21:01:53.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.470600", - "Timestamp": "2019-10-15T21:36:18.000Z" + "InstanceType": "c5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.982400", + "Timestamp": "2024-05-15T21:01:49.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.370600", - "Timestamp": "2019-10-15T21:36:18.000Z" + "InstanceType": "m6a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-15T21:01:46.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.370600", - "Timestamp": "2019-10-15T21:36:18.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.607500", + "Timestamp": "2024-05-15T21:01:35.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.384600", + "Timestamp": "2024-05-15T21:01:35.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.2xlarge", + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.774400", + "Timestamp": "2024-05-15T21:01:34.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c7i-flex.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.297000", - "Timestamp": "2019-10-15T21:33:54.000Z" + "SpotPrice": "0.086100", + "Timestamp": "2024-05-15T21:01:32.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.2xlarge", + "InstanceType": "c7i-flex.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.267000", - "Timestamp": "2019-10-15T21:33:54.000Z" + "SpotPrice": "0.082400", + "Timestamp": "2024-05-15T21:01:32.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.2xlarge", + "InstanceType": "c7i-flex.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.167000", - "Timestamp": "2019-10-15T21:33:54.000Z" + "SpotPrice": "0.026100", + "Timestamp": "2024-05-15T21:01:32.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.140400", - "Timestamp": "2019-10-15T21:30:44.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.883000", + "Timestamp": "2024-05-15T21:01:32.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.878000", + "Timestamp": "2024-05-15T21:01:32.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.753000", + "Timestamp": "2024-05-15T21:01:32.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.304400", - "Timestamp": "2019-10-15T21:30:29.000Z" + "SpotPrice": "0.443100", + "Timestamp": "2024-05-15T21:01:31.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.274400", - "Timestamp": "2019-10-15T21:30:29.000Z" + "SpotPrice": "0.438100", + "Timestamp": "2024-05-15T21:01:31.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m4.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.174400", - "Timestamp": "2019-10-15T21:30:29.000Z" + "SpotPrice": "0.313100", + "Timestamp": "2024-05-15T21:01:31.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.455700", - "Timestamp": "2019-10-15T21:29:43.000Z" + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.642600", + "Timestamp": "2024-05-15T21:01:31.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.455700", - "Timestamp": "2019-10-15T21:29:43.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.491000", + "Timestamp": "2024-05-15T21:01:24.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r3.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.425700", - "Timestamp": "2019-10-15T21:29:43.000Z" + "InstanceType": "r4.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.354000", + "Timestamp": "2024-05-15T21:01:17.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r4.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.425700", - "Timestamp": "2019-10-15T21:29:43.000Z" + "SpotPrice": "0.324000", + "Timestamp": "2024-05-15T21:01:17.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r3.4xlarge", + "InstanceType": "r4.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.325700", - "Timestamp": "2019-10-15T21:29:43.000Z" + "SpotPrice": "0.224000", + "Timestamp": "2024-05-15T21:01:17.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.325700", - "Timestamp": "2019-10-15T21:29:43.000Z" + "InstanceType": "c5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.059200", + "Timestamp": "2024-05-15T21:01:04.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r3.4xlarge", + "InstanceType": "i3en.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.920700", - "Timestamp": "2019-10-15T21:29:43.000Z" + "SpotPrice": "6.144000", + "Timestamp": "2024-05-15T21:00:55.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r3.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.920700", - "Timestamp": "2019-10-15T21:29:43.000Z" + "SpotPrice": "2.522400", + "Timestamp": "2024-05-15T21:00:48.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.2xlarge", + "InstanceType": "g4dn.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.531200", - "Timestamp": "2019-10-15T21:19:19.000Z" + "SpotPrice": "1.841800", + "Timestamp": "2024-05-15T21:00:07.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g4dn.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.531200", - "Timestamp": "2019-10-15T21:19:19.000Z" + "SpotPrice": "1.841800", + "Timestamp": "2024-05-15T21:00:07.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-15T20:50:11.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.293200", - "Timestamp": "2019-10-15T21:19:19.000Z" + "InstanceType": "c5a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.103800", + "Timestamp": "2024-05-15T20:50:11.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.263200", - "Timestamp": "2019-10-15T21:19:19.000Z" + "InstanceType": "m5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.846400", + "Timestamp": "2024-05-15T20:46:46.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.163200", - "Timestamp": "2019-10-15T21:19:19.000Z" + "InstanceType": "x1e.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.386200", + "Timestamp": "2024-05-15T20:42:43.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m4.2xlarge", + "InstanceType": "x1e.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.296500", - "Timestamp": "2019-10-15T21:13:17.000Z" + "SpotPrice": "0.780200", + "Timestamp": "2024-05-15T20:42:43.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m4.2xlarge", + "InstanceType": "x1e.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.266500", - "Timestamp": "2019-10-15T21:13:17.000Z" + "SpotPrice": "0.750200", + "Timestamp": "2024-05-15T20:42:43.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m4.2xlarge", + "InstanceType": "x1e.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.166500", - "Timestamp": "2019-10-15T21:13:17.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "i3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.145800", - "Timestamp": "2019-10-15T21:11:18.000Z" + "SpotPrice": "0.650200", + "Timestamp": "2024-05-15T20:42:43.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "i3.large", + "InstanceType": "c5ad.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.145800", - "Timestamp": "2019-10-15T21:11:18.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "i3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.185800", - "Timestamp": "2019-10-15T21:11:18.000Z" + "SpotPrice": "0.104100", + "Timestamp": "2024-05-15T20:31:35.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "i3.large", + "InstanceType": "c5ad.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.185800", - "Timestamp": "2019-10-15T21:11:18.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "i3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.085800", - "Timestamp": "2019-10-15T21:11:18.000Z" + "SpotPrice": "0.100100", + "Timestamp": "2024-05-15T20:31:35.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "i3.large", + "InstanceType": "c5ad.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.085800", - "Timestamp": "2019-10-15T21:11:18.000Z" + "SpotPrice": "0.044100", + "Timestamp": "2024-05-15T20:31:35.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "i3.large", + "InstanceType": "c5.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.177800", - "Timestamp": "2019-10-15T21:11:18.000Z" + "SpotPrice": "0.840800", + "Timestamp": "2024-05-15T20:31:27.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "i3.large", + "InstanceType": "r5ad.large", "ProductDescription": "Windows", - "SpotPrice": "0.177800", - "Timestamp": "2019-10-15T21:11:18.000Z" + "SpotPrice": "0.112800", + "Timestamp": "2024-05-15T20:31:25.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.6xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.311500", - "Timestamp": "2019-10-15T21:09:55.000Z" + "SpotPrice": "1.419900", + "Timestamp": "2024-05-15T20:31:13.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3en.xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.311500", - "Timestamp": "2019-10-15T21:09:55.000Z" + "SpotPrice": "0.256000", + "Timestamp": "2024-05-15T20:23:35.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r4.16xlarge", + "InstanceType": "r5b.large", "ProductDescription": "Windows", - "SpotPrice": "4.311500", - "Timestamp": "2019-10-15T21:09:55.000Z" + "SpotPrice": "0.115700", + "Timestamp": "2024-05-15T20:23:29.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r4.16xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.497500", - "Timestamp": "2019-10-15T21:09:55.000Z" + "SpotPrice": "0.083700", + "Timestamp": "2024-05-15T20:22:29.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.497500", - "Timestamp": "2019-10-15T21:09:55.000Z" + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080000", + "Timestamp": "2024-05-15T20:22:29.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.497500", - "Timestamp": "2019-10-15T21:09:55.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023700", + "Timestamp": "2024-05-15T20:22:29.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.467500", - "Timestamp": "2019-10-15T21:09:55.000Z" + "InstanceType": "m7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.432300", + "Timestamp": "2024-05-15T20:17:34.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-15T20:16:43.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "r4.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.467500", - "Timestamp": "2019-10-15T21:09:55.000Z" + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207600", + "Timestamp": "2024-05-15T20:16:42.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.467500", - "Timestamp": "2019-10-15T21:09:55.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.451900", + "Timestamp": "2024-05-15T20:16:41.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.367500", - "Timestamp": "2019-10-15T21:09:55.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.446900", + "Timestamp": "2024-05-15T20:16:41.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "r4.16xlarge", + "InstanceType": "m6a.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.367500", - "Timestamp": "2019-10-15T21:09:55.000Z" + "SpotPrice": "1.321900", + "Timestamp": "2024-05-15T20:16:41.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r4.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.367500", - "Timestamp": "2019-10-15T21:09:55.000Z" + "InstanceType": "m7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.187100", + "Timestamp": "2024-05-15T20:16:38.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r4.xlarge", + "InstanceType": "c3.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.147800", - "Timestamp": "2019-10-15T21:05:20.000Z" + "SpotPrice": "0.083500", + "Timestamp": "2024-05-15T20:16:35.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r4.xlarge", + "InstanceType": "c3.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.187800", - "Timestamp": "2019-10-15T21:05:20.000Z" + "SpotPrice": "0.123500", + "Timestamp": "2024-05-15T20:16:35.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r4.xlarge", + "InstanceType": "c3.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.087800", - "Timestamp": "2019-10-15T21:05:20.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.355600", - "Timestamp": "2019-10-15T21:03:46.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "i3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.355600", - "Timestamp": "2019-10-15T21:03:46.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "i3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.231600", - "Timestamp": "2019-10-15T21:03:23.000Z" + "SpotPrice": "0.023500", + "Timestamp": "2024-05-15T20:16:35.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.231600", - "Timestamp": "2019-10-15T21:03:23.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "i3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.271600", - "Timestamp": "2019-10-15T21:03:23.000Z" + "SpotPrice": "0.969600", + "Timestamp": "2024-05-15T20:16:34.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.271600", - "Timestamp": "2019-10-15T21:03:23.000Z" + "SpotPrice": "0.964600", + "Timestamp": "2024-05-15T20:16:34.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "i3.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6i.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.171600", - "Timestamp": "2019-10-15T21:03:23.000Z" + "SpotPrice": "0.839600", + "Timestamp": "2024-05-15T20:16:34.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "i3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.171600", - "Timestamp": "2019-10-15T21:03:23.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.174400", + "Timestamp": "2024-05-15T20:16:27.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "m3.large", + "InstanceType": "t4g.nano", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.099600", - "Timestamp": "2019-10-15T20:49:06.000Z" + "SpotPrice": "0.061000", + "Timestamp": "2024-05-15T20:16:23.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "m3.large", + "InstanceType": "t4g.nano", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.139600", - "Timestamp": "2019-10-15T20:49:06.000Z" + "SpotPrice": "0.001000", + "Timestamp": "2024-05-15T20:16:23.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "m3.large", + "InstanceType": "t4g.nano", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.039600", - "Timestamp": "2019-10-15T20:49:06.000Z" + "SpotPrice": "0.001000", + "Timestamp": "2024-05-15T20:16:23.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3.small", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.460600", - "Timestamp": "2019-10-15T20:48:43.000Z" + "SpotPrice": "0.088300", + "Timestamp": "2024-05-15T20:15:57.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069600", + "Timestamp": "2024-05-15T20:15:57.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3.small", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.430600", - "Timestamp": "2019-10-15T20:48:43.000Z" + "SpotPrice": "0.059300", + "Timestamp": "2024-05-15T20:15:57.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040600", + "Timestamp": "2024-05-15T20:15:57.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3.small", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.330600", - "Timestamp": "2019-10-15T20:48:43.000Z" + "SpotPrice": "0.028300", + "Timestamp": "2024-05-15T20:15:57.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.134700", - "Timestamp": "2019-10-15T20:45:27.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3.small", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009600", + "Timestamp": "2024-05-15T20:15:57.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "r4.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.metal", "ProductDescription": "Windows", - "SpotPrice": "0.134700", - "Timestamp": "2019-10-15T20:45:27.000Z" + "SpotPrice": "10.153900", + "Timestamp": "2024-05-15T20:15:05.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r4.large", - "ProductDescription": "Windows", - "SpotPrice": "0.134700", - "Timestamp": "2019-10-15T20:45:27.000Z" + "InstanceType": "m6a.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.451900", + "Timestamp": "2024-05-15T20:14:41.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.265400", - "Timestamp": "2019-10-15T20:36:43.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.446900", + "Timestamp": "2024-05-15T20:14:41.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r3.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.265400", - "Timestamp": "2019-10-15T20:36:43.000Z" + "InstanceType": "m6a.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.321900", + "Timestamp": "2024-05-15T20:14:41.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r3.8xlarge", + "InstanceType": "r5ad.large", "ProductDescription": "Windows", - "SpotPrice": "1.842300", - "Timestamp": "2019-10-15T20:36:41.000Z" + "SpotPrice": "0.112800", + "Timestamp": "2024-05-15T20:14:25.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m4.large", "ProductDescription": "Windows", - "SpotPrice": "6.788000", - "Timestamp": "2019-10-15T20:36:41.000Z" + "SpotPrice": "0.107900", + "Timestamp": "2024-05-15T20:14:25.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.842300", - "Timestamp": "2019-10-15T20:36:41.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5ad.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.080800", + "Timestamp": "2024-05-15T20:13:02.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.781300", - "Timestamp": "2019-10-15T20:36:38.000Z" + "InstanceType": "r5ad.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.076800", + "Timestamp": "2024-05-15T20:13:02.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "5.727000", - "Timestamp": "2019-10-15T20:36:38.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5ad.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.020800", + "Timestamp": "2024-05-15T20:13:02.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r3.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.781300", - "Timestamp": "2019-10-15T20:36:38.000Z" + "SpotPrice": "0.528400", + "Timestamp": "2024-05-15T20:02:28.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r3.8xlarge", + "InstanceType": "i3.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.751300", - "Timestamp": "2019-10-15T20:36:38.000Z" + "SpotPrice": "0.498400", + "Timestamp": "2024-05-15T20:02:28.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "r3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "5.697000", - "Timestamp": "2019-10-15T20:36:38.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.398400", + "Timestamp": "2024-05-15T20:02:28.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.751300", - "Timestamp": "2019-10-15T20:36:38.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.145000", + "Timestamp": "2024-05-15T20:02:27.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.651300", - "Timestamp": "2019-10-15T20:36:38.000Z" + "InstanceType": "m6i.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.716800", + "Timestamp": "2024-05-15T20:01:48.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "5.597000", - "Timestamp": "2019-10-15T20:36:38.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.891800", + "Timestamp": "2024-05-15T20:01:44.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.651300", - "Timestamp": "2019-10-15T20:36:38.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.415200", + "Timestamp": "2024-05-15T20:01:42.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.379900", - "Timestamp": "2019-10-15T20:36:28.000Z" + "SpotPrice": "0.512000", + "Timestamp": "2024-05-15T20:01:42.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.16xlarge", + "InstanceType": "c6in.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.379900", - "Timestamp": "2019-10-15T20:36:28.000Z" + "SpotPrice": "0.875400", + "Timestamp": "2024-05-15T20:01:36.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.16xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.565900", - "Timestamp": "2019-10-15T20:36:27.000Z" + "SpotPrice": "0.462200", + "Timestamp": "2024-05-15T20:01:26.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.565900", - "Timestamp": "2019-10-15T20:36:27.000Z" + "InstanceType": "r6g.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.457200", + "Timestamp": "2024-05-15T20:01:26.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.535900", - "Timestamp": "2019-10-15T20:36:27.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.332200", + "Timestamp": "2024-05-15T20:01:26.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.535900", - "Timestamp": "2019-10-15T20:36:27.000Z" + "InstanceType": "m6g.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.097100", + "Timestamp": "2024-05-15T20:01:25.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.435900", - "Timestamp": "2019-10-15T20:36:27.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6g.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.093400", + "Timestamp": "2024-05-15T20:01:25.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.16xlarge", + "InstanceType": "m6g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.435900", - "Timestamp": "2019-10-15T20:36:27.000Z" + "SpotPrice": "0.037100", + "Timestamp": "2024-05-15T20:01:25.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.141400", - "Timestamp": "2019-10-15T20:36:01.000Z" + "InstanceType": "c3.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.397000", + "Timestamp": "2024-05-15T19:55:27.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.141400", - "Timestamp": "2019-10-15T20:36:01.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.181400", - "Timestamp": "2019-10-15T20:36:01.000Z" + "SpotPrice": "0.521700", + "Timestamp": "2024-05-15T19:48:37.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.181400", - "Timestamp": "2019-10-15T20:36:01.000Z" + "SpotPrice": "0.516700", + "Timestamp": "2024-05-15T19:48:37.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r3.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.081400", - "Timestamp": "2019-10-15T20:36:01.000Z" + "SpotPrice": "0.391700", + "Timestamp": "2024-05-15T19:48:37.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.081400", - "Timestamp": "2019-10-15T20:36:01.000Z" + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.284800", + "Timestamp": "2024-05-15T19:47:29.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.xlarge", + "InstanceType": "r5.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.143200", - "Timestamp": "2019-10-15T20:31:58.000Z" + "SpotPrice": "1.094800", + "Timestamp": "2024-05-15T19:47:15.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.xlarge", + "InstanceType": "r5.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.183200", - "Timestamp": "2019-10-15T20:31:58.000Z" + "SpotPrice": "1.089800", + "Timestamp": "2024-05-15T19:47:15.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.xlarge", + "InstanceType": "r5.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.083200", - "Timestamp": "2019-10-15T20:31:58.000Z" + "SpotPrice": "0.964800", + "Timestamp": "2024-05-15T19:47:15.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m4.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.100900", - "Timestamp": "2019-10-15T20:31:31.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.451200", + "Timestamp": "2024-05-15T19:47:12.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m4.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.140900", - "Timestamp": "2019-10-15T20:31:31.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Windows", + "SpotPrice": "5.076200", + "Timestamp": "2024-05-15T19:46:43.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m4.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.040900", - "Timestamp": "2019-10-15T20:31:31.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.865400", + "Timestamp": "2024-05-15T19:46:38.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.722000", - "Timestamp": "2019-10-15T20:30:17.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-15T19:46:36.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c3.8xlarge", + "InstanceType": "r5n.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.722000", - "Timestamp": "2019-10-15T20:30:17.000Z" + "SpotPrice": "0.224400", + "Timestamp": "2024-05-15T19:46:35.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5n.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.692000", - "Timestamp": "2019-10-15T20:30:17.000Z" + "SpotPrice": "0.219400", + "Timestamp": "2024-05-15T19:46:35.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c3.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.692000", - "Timestamp": "2019-10-15T20:30:17.000Z" + "InstanceType": "r5n.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094400", + "Timestamp": "2024-05-15T19:46:35.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c3.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.592000", - "Timestamp": "2019-10-15T20:30:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.795600", + "Timestamp": "2024-05-15T19:46:29.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c3.8xlarge", + "InstanceType": "r5ad.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.790600", + "Timestamp": "2024-05-15T19:46:29.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5ad.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.592000", - "Timestamp": "2019-10-15T20:30:17.000Z" + "SpotPrice": "0.665600", + "Timestamp": "2024-05-15T19:46:29.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c3.8xlarge", + "InstanceType": "r5n.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.920000", - "Timestamp": "2019-10-15T20:30:01.000Z" + "SpotPrice": "0.924800", + "Timestamp": "2024-05-15T19:46:28.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c3.8xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.920000", - "Timestamp": "2019-10-15T20:30:01.000Z" + "SpotPrice": "0.846200", + "Timestamp": "2024-05-15T19:46:18.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.140600", - "Timestamp": "2019-10-15T20:23:18.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.large", + "ProductDescription": "Windows", + "SpotPrice": "0.118300", + "Timestamp": "2024-05-15T19:46:14.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.180600", - "Timestamp": "2019-10-15T20:23:18.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-15T19:46:03.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.080600", - "Timestamp": "2019-10-15T20:23:18.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.200900", + "Timestamp": "2024-05-15T19:31:51.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.4xlarge", + "InstanceType": "g4dn.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.456300", - "Timestamp": "2019-10-15T20:09:54.000Z" + "SpotPrice": "0.149400", + "Timestamp": "2024-05-15T19:31:45.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.456300", - "Timestamp": "2019-10-15T20:09:54.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "g4dn.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.145400", + "Timestamp": "2024-05-15T19:31:45.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.426300", - "Timestamp": "2019-10-15T20:09:54.000Z" + "InstanceType": "g4dn.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.089400", + "Timestamp": "2024-05-15T19:31:45.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.426300", - "Timestamp": "2019-10-15T20:09:54.000Z" + "InstanceType": "r5a.24xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.998800", + "Timestamp": "2024-05-15T19:31:33.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.326300", - "Timestamp": "2019-10-15T20:09:54.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5a.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.993800", + "Timestamp": "2024-05-15T19:31:33.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.4xlarge", + "InstanceType": "r5a.24xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.326300", - "Timestamp": "2019-10-15T20:09:54.000Z" + "SpotPrice": "0.868800", + "Timestamp": "2024-05-15T19:31:33.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.4xlarge", + "InstanceType": "r6i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.062300", - "Timestamp": "2019-10-15T20:09:54.000Z" + "SpotPrice": "0.896800", + "Timestamp": "2024-05-15T19:31:31.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.062300", - "Timestamp": "2019-10-15T20:09:54.000Z" + "SpotPrice": "2.491000", + "Timestamp": "2024-05-15T19:31:23.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.xlarge", + "InstanceType": "m6a.48xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.150500", - "Timestamp": "2019-10-15T19:58:54.000Z" + "SpotPrice": "1.451900", + "Timestamp": "2024-05-15T19:17:23.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.xlarge", + "InstanceType": "m6a.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.190500", - "Timestamp": "2019-10-15T19:58:54.000Z" + "SpotPrice": "1.446900", + "Timestamp": "2024-05-15T19:17:23.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.xlarge", + "InstanceType": "m6a.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.090500", - "Timestamp": "2019-10-15T19:58:54.000Z" + "SpotPrice": "1.321900", + "Timestamp": "2024-05-15T19:17:23.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r4.large", + "InstanceType": "m1.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.105500", - "Timestamp": "2019-10-15T19:49:50.000Z" + "SpotPrice": "0.118700", + "Timestamp": "2024-05-15T19:16:43.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r4.large", + "InstanceType": "m1.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.145500", - "Timestamp": "2019-10-15T19:49:50.000Z" + "SpotPrice": "0.158700", + "Timestamp": "2024-05-15T19:16:43.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r4.large", + "InstanceType": "m1.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.045500", - "Timestamp": "2019-10-15T19:49:50.000Z" + "SpotPrice": "0.058700", + "Timestamp": "2024-05-15T19:16:43.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g4dn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.308600", - "Timestamp": "2019-10-15T19:43:54.000Z" + "SpotPrice": "0.499800", + "Timestamp": "2024-05-15T19:16:34.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.308600", - "Timestamp": "2019-10-15T19:43:54.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.494800", + "Timestamp": "2024-05-15T19:16:34.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.308600", - "Timestamp": "2019-10-15T19:43:54.000Z" + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.369800", + "Timestamp": "2024-05-15T19:16:34.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.278600", - "Timestamp": "2019-10-15T19:43:54.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.570600", + "Timestamp": "2024-05-15T19:16:06.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t2.2xlarge", + "InstanceType": "m6a.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.278600", - "Timestamp": "2019-10-15T19:43:54.000Z" + "SpotPrice": "0.565600", + "Timestamp": "2024-05-15T19:16:06.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.278600", - "Timestamp": "2019-10-15T19:43:54.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.440600", + "Timestamp": "2024-05-15T19:16:06.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.178600", - "Timestamp": "2019-10-15T19:43:54.000Z" + "InstanceType": "m7i-flex.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.205300", + "Timestamp": "2024-05-15T19:14:41.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.178600", - "Timestamp": "2019-10-15T19:43:54.000Z" + "InstanceType": "c5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.106900", + "Timestamp": "2024-05-15T19:13:21.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.178600", - "Timestamp": "2019-10-15T19:43:54.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t2.2xlarge", + "InstanceType": "c5d.large", "ProductDescription": "Windows", - "SpotPrice": "0.240600", - "Timestamp": "2019-10-15T19:42:42.000Z" + "SpotPrice": "0.106900", + "Timestamp": "2024-05-15T19:13:21.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "t2.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3.metal", "ProductDescription": "Windows", - "SpotPrice": "0.240600", - "Timestamp": "2019-10-15T19:42:42.000Z" + "SpotPrice": "3.740800", + "Timestamp": "2024-05-15T19:10:24.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t2.2xlarge", + "InstanceType": "i3.metal", "ProductDescription": "Windows", - "SpotPrice": "0.240600", - "Timestamp": "2019-10-15T19:42:42.000Z" + "SpotPrice": "3.740800", + "Timestamp": "2024-05-15T19:10:24.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.nano", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062500", - "Timestamp": "2019-10-15T19:42:41.000Z" - }, - { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "t3.nano", + "InstanceType": "i3.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.068400", - "Timestamp": "2019-10-15T19:42:41.000Z" + "SpotPrice": "0.926800", + "Timestamp": "2024-05-15T19:10:24.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.nano", + "InstanceType": "i3.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062500", - "Timestamp": "2019-10-15T19:42:41.000Z" + "SpotPrice": "0.926800", + "Timestamp": "2024-05-15T19:10:24.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.nano", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.102500", - "Timestamp": "2019-10-15T19:42:41.000Z" - }, - { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "t3.nano", + "InstanceType": "i3.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.108400", - "Timestamp": "2019-10-15T19:42:41.000Z" + "SpotPrice": "0.896800", + "Timestamp": "2024-05-15T19:10:24.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.nano", + "InstanceType": "i3.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.102500", - "Timestamp": "2019-10-15T19:42:41.000Z" + "SpotPrice": "0.896800", + "Timestamp": "2024-05-15T19:10:24.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.nano", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002500", - "Timestamp": "2019-10-15T19:42:41.000Z" - }, - { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "t3.nano", + "InstanceType": "i3.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.008400", - "Timestamp": "2019-10-15T19:42:41.000Z" + "SpotPrice": "0.796800", + "Timestamp": "2024-05-15T19:10:24.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.nano", + "InstanceType": "i3.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002500", - "Timestamp": "2019-10-15T19:42:41.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.007100", - "Timestamp": "2019-10-15T19:42:33.000Z" - }, - { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "t3.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.013000", - "Timestamp": "2019-10-15T19:42:33.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.nano", - "ProductDescription": "Windows", - "SpotPrice": "0.007100", - "Timestamp": "2019-10-15T19:42:33.000Z" + "SpotPrice": "0.796800", + "Timestamp": "2024-05-15T19:10:24.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m3.medium", + "InstanceType": "r6g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.069500", - "Timestamp": "2019-10-15T19:42:30.000Z" + "SpotPrice": "0.644600", + "Timestamp": "2024-05-15T19:05:42.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "m3.medium", + "InstanceType": "r6g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.069500", - "Timestamp": "2019-10-15T19:42:30.000Z" + "SpotPrice": "0.644600", + "Timestamp": "2024-05-15T19:05:42.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m3.medium", + "InstanceType": "r6g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.069500", - "Timestamp": "2019-10-15T19:42:30.000Z" + "SpotPrice": "0.644600", + "Timestamp": "2024-05-15T19:05:42.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m3.medium", + "InstanceType": "r6g.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.109500", - "Timestamp": "2019-10-15T19:42:30.000Z" + "SpotPrice": "0.639600", + "Timestamp": "2024-05-15T19:05:42.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "m3.medium", + "InstanceType": "r6g.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.109500", - "Timestamp": "2019-10-15T19:42:30.000Z" + "SpotPrice": "0.639600", + "Timestamp": "2024-05-15T19:05:42.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m3.medium", + "InstanceType": "r6g.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.109500", - "Timestamp": "2019-10-15T19:42:30.000Z" + "SpotPrice": "0.639600", + "Timestamp": "2024-05-15T19:05:42.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m3.medium", + "InstanceType": "r6g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.009500", - "Timestamp": "2019-10-15T19:42:30.000Z" + "SpotPrice": "0.514600", + "Timestamp": "2024-05-15T19:05:42.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "m3.medium", + "InstanceType": "r6g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.009500", - "Timestamp": "2019-10-15T19:42:30.000Z" + "SpotPrice": "0.514600", + "Timestamp": "2024-05-15T19:05:42.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m3.medium", + "InstanceType": "r6g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.009500", - "Timestamp": "2019-10-15T19:42:30.000Z" + "SpotPrice": "0.514600", + "Timestamp": "2024-05-15T19:05:42.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m3.medium", + "InstanceType": "i4i.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.072500", - "Timestamp": "2019-10-15T19:42:10.000Z" + "SpotPrice": "7.641000", + "Timestamp": "2024-05-15T19:05:20.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m3.medium", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.072500", - "Timestamp": "2019-10-15T19:42:10.000Z" + "SpotPrice": "7.641000", + "Timestamp": "2024-05-15T19:05:20.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m3.medium", + "InstanceType": "m3.large", "ProductDescription": "Windows", - "SpotPrice": "0.072500", - "Timestamp": "2019-10-15T19:42:10.000Z" + "SpotPrice": "0.145000", + "Timestamp": "2024-05-15T19:04:27.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.278100", - "Timestamp": "2019-10-15T19:41:43.000Z" + "SpotPrice": "0.459200", + "Timestamp": "2024-05-15T19:03:56.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.067800", - "Timestamp": "2019-10-15T19:36:25.000Z" + "SpotPrice": "3.587200", + "Timestamp": "2024-05-15T19:03:45.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "t3.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m3.medium", "ProductDescription": "Windows", - "SpotPrice": "0.161500", - "Timestamp": "2019-10-15T19:36:25.000Z" + "SpotPrice": "0.072800", + "Timestamp": "2024-05-15T19:02:35.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c3.large", "ProductDescription": "Windows", - "SpotPrice": "0.067800", - "Timestamp": "2019-10-15T19:36:25.000Z" + "SpotPrice": "0.099300", + "Timestamp": "2024-05-15T19:01:41.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.100200", - "Timestamp": "2019-10-15T19:36:07.000Z" + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-15T19:01:40.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "t3.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.193900", - "Timestamp": "2019-10-15T19:36:07.000Z" + "SpotPrice": "0.198000", + "Timestamp": "2024-05-15T19:01:40.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.100200", - "Timestamp": "2019-10-15T19:36:07.000Z" + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193000", + "Timestamp": "2024-05-15T19:01:40.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.068000", + "Timestamp": "2024-05-15T19:01:40.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.140200", - "Timestamp": "2019-10-15T19:36:07.000Z" + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.238800", + "Timestamp": "2024-05-15T19:01:36.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.233900", - "Timestamp": "2019-10-15T19:36:07.000Z" + "InstanceType": "c7i.metal-24xl", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.790200", + "Timestamp": "2024-05-15T19:01:36.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.metal-24xl", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.140200", - "Timestamp": "2019-10-15T19:36:07.000Z" + "SpotPrice": "0.785200", + "Timestamp": "2024-05-15T19:01:36.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.metal-24xl", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.040200", - "Timestamp": "2019-10-15T19:36:07.000Z" + "SpotPrice": "0.660200", + "Timestamp": "2024-05-15T19:01:36.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.133900", - "Timestamp": "2019-10-15T19:36:07.000Z" + "InstanceType": "c5n.18xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.727600", + "Timestamp": "2024-05-15T19:01:31.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.18xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.722600", + "Timestamp": "2024-05-15T19:01:31.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5n.18xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.040200", - "Timestamp": "2019-10-15T19:36:07.000Z" + "SpotPrice": "0.597600", + "Timestamp": "2024-05-15T19:01:31.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.531200", - "Timestamp": "2019-10-15T19:35:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t1.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.082000", + "Timestamp": "2024-05-15T19:01:30.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.531200", - "Timestamp": "2019-10-15T19:35:15.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t1.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.022000", + "Timestamp": "2024-05-15T19:01:30.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m4.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.531200", - "Timestamp": "2019-10-15T19:35:15.000Z" + "InstanceType": "t1.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.022000", + "Timestamp": "2024-05-15T19:01:30.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.xlarge", + "InstanceType": "t3a.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.162300", - "Timestamp": "2019-10-15T19:16:19.000Z" + "SpotPrice": "0.080200", + "Timestamp": "2024-05-15T19:01:20.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.xlarge", + "InstanceType": "t3a.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.202300", - "Timestamp": "2019-10-15T19:16:19.000Z" + "SpotPrice": "0.076500", + "Timestamp": "2024-05-15T19:01:20.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.xlarge", + "InstanceType": "t3a.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.102300", - "Timestamp": "2019-10-15T19:16:19.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.146900", - "Timestamp": "2019-10-15T19:16:16.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.186900", - "Timestamp": "2019-10-15T19:16:16.000Z" + "SpotPrice": "0.020200", + "Timestamp": "2024-05-15T19:01:20.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.086900", - "Timestamp": "2019-10-15T19:16:16.000Z" + "InstanceType": "m5a.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.423200", + "Timestamp": "2024-05-15T18:59:47.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.149300", - "Timestamp": "2019-10-15T19:09:54.000Z" + "InstanceType": "m5ad.large", + "ProductDescription": "Windows", + "SpotPrice": "0.108500", + "Timestamp": "2024-05-15T18:56:36.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t2.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.149300", - "Timestamp": "2019-10-15T19:09:54.000Z" + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.855200", + "Timestamp": "2024-05-15T18:55:40.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t2.xlarge", + "InstanceType": "c6g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.149300", - "Timestamp": "2019-10-15T19:09:54.000Z" + "SpotPrice": "0.213800", + "Timestamp": "2024-05-15T18:54:25.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6g.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.189300", - "Timestamp": "2019-10-15T19:09:54.000Z" + "SpotPrice": "0.208800", + "Timestamp": "2024-05-15T18:54:25.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "t2.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.189300", - "Timestamp": "2019-10-15T19:09:54.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083800", + "Timestamp": "2024-05-15T18:54:25.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t2.xlarge", + "InstanceType": "r6gd.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.096500", + "Timestamp": "2024-05-15T18:54:19.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6gd.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.189300", - "Timestamp": "2019-10-15T19:09:54.000Z" + "SpotPrice": "0.092800", + "Timestamp": "2024-05-15T18:54:19.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t2.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.089300", - "Timestamp": "2019-10-15T19:09:54.000Z" + "SpotPrice": "0.036500", + "Timestamp": "2024-05-15T18:54:19.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "t2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.089300", - "Timestamp": "2019-10-15T19:09:54.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.254000", + "Timestamp": "2024-05-15T18:53:42.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t2.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.089300", - "Timestamp": "2019-10-15T19:09:54.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.069100", + "Timestamp": "2024-05-15T18:53:27.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.130300", - "Timestamp": "2019-10-15T19:09:54.000Z" + "InstanceType": "r6gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.040100", + "Timestamp": "2024-05-15T18:53:27.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "t2.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.130300", - "Timestamp": "2019-10-15T19:09:54.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.009100", + "Timestamp": "2024-05-15T18:53:27.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t2.xlarge", + "InstanceType": "t3a.small", "ProductDescription": "Windows", - "SpotPrice": "0.130300", - "Timestamp": "2019-10-15T19:09:54.000Z" + "SpotPrice": "0.021400", + "Timestamp": "2024-05-15T18:53:25.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "r4.large", + "InstanceType": "m6g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.102700", - "Timestamp": "2019-10-15T19:03:21.000Z" + "SpotPrice": "0.066600", + "Timestamp": "2024-05-15T18:52:17.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "r4.large", + "InstanceType": "m6g.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.142700", - "Timestamp": "2019-10-15T19:03:21.000Z" + "SpotPrice": "0.037600", + "Timestamp": "2024-05-15T18:52:17.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "r4.large", + "InstanceType": "m6g.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.042700", - "Timestamp": "2019-10-15T19:03:21.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.847900", - "Timestamp": "2019-10-15T18:54:42.000Z" + "SpotPrice": "0.006600", + "Timestamp": "2024-05-15T18:52:17.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.8xlarge", + "InstanceType": "x1e.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.847900", - "Timestamp": "2019-10-15T18:54:42.000Z" + "SpotPrice": "0.222600", + "Timestamp": "2024-05-15T18:47:51.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.8xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x1e.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.817900", - "Timestamp": "2019-10-15T18:54:42.000Z" + "SpotPrice": "0.218600", + "Timestamp": "2024-05-15T18:47:51.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.817900", - "Timestamp": "2019-10-15T18:54:42.000Z" + "InstanceType": "x1e.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.162600", + "Timestamp": "2024-05-15T18:47:51.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.717900", - "Timestamp": "2019-10-15T18:54:42.000Z" + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.346600", + "Timestamp": "2024-05-15T18:47:51.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.717900", - "Timestamp": "2019-10-15T18:54:42.000Z" + "InstanceType": "x1e.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.346600", + "Timestamp": "2024-05-15T18:47:51.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.8xlarge", + "InstanceType": "m6id.metal", "ProductDescription": "Windows", - "SpotPrice": "2.189900", - "Timestamp": "2019-10-15T18:54:41.000Z" + "SpotPrice": "7.097600", + "Timestamp": "2024-05-15T18:47:12.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.189900", - "Timestamp": "2019-10-15T18:54:41.000Z" + "InstanceType": "r3.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.130100", + "Timestamp": "2024-05-15T18:46:37.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m1.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.281400", - "Timestamp": "2019-10-15T18:51:43.000Z" + "InstanceType": "r3.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.170100", + "Timestamp": "2024-05-15T18:46:37.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "c1.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.097900", - "Timestamp": "2019-10-15T18:43:27.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r3.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.070100", + "Timestamp": "2024-05-15T18:46:37.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c1.medium", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.large", "ProductDescription": "Windows", - "SpotPrice": "0.097900", - "Timestamp": "2019-10-15T18:43:27.000Z" + "SpotPrice": "0.115700", + "Timestamp": "2024-05-15T18:46:33.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "c1.medium", + "InstanceType": "m7gd.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.077900", - "Timestamp": "2019-10-15T18:42:17.000Z" + "SpotPrice": "0.077000", + "Timestamp": "2024-05-15T18:35:39.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c1.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.077900", - "Timestamp": "2019-10-15T18:42:17.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7gd.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.073300", + "Timestamp": "2024-05-15T18:35:39.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "c1.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.117900", - "Timestamp": "2019-10-15T18:42:17.000Z" + "InstanceType": "m7gd.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.017000", + "Timestamp": "2024-05-15T18:35:39.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c1.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.117900", - "Timestamp": "2019-10-15T18:42:17.000Z" + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.674300", + "Timestamp": "2024-05-15T18:35:35.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "c1.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.017900", - "Timestamp": "2019-10-15T18:42:17.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.669300", + "Timestamp": "2024-05-15T18:35:35.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c1.medium", + "InstanceType": "m7gd.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.017900", - "Timestamp": "2019-10-15T18:42:17.000Z" + "SpotPrice": "0.544300", + "Timestamp": "2024-05-15T18:35:35.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.103300", - "Timestamp": "2019-10-15T18:36:22.000Z" + "SpotPrice": "0.402200", + "Timestamp": "2024-05-15T18:35:35.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7gd.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.143300", - "Timestamp": "2019-10-15T18:36:22.000Z" + "SpotPrice": "0.397200", + "Timestamp": "2024-05-15T18:35:35.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7gd.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.043300", - "Timestamp": "2019-10-15T18:36:22.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.134800", - "Timestamp": "2019-10-15T18:36:18.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.large", - "ProductDescription": "Windows", - "SpotPrice": "0.134800", - "Timestamp": "2019-10-15T18:36:18.000Z" + "SpotPrice": "0.272200", + "Timestamp": "2024-05-15T18:35:35.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.502800", - "Timestamp": "2019-10-15T18:30:27.000Z" + "SpotPrice": "0.538200", + "Timestamp": "2024-05-15T18:35:34.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "i3.8xlarge", + "InstanceType": "m7gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.502800", - "Timestamp": "2019-10-15T18:30:27.000Z" + "SpotPrice": "0.538200", + "Timestamp": "2024-05-15T18:35:34.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7gd.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.472800", - "Timestamp": "2019-10-15T18:30:27.000Z" + "SpotPrice": "0.533200", + "Timestamp": "2024-05-15T18:35:34.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "i3.8xlarge", + "InstanceType": "m7gd.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.472800", - "Timestamp": "2019-10-15T18:30:27.000Z" + "SpotPrice": "0.533200", + "Timestamp": "2024-05-15T18:35:34.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "i3.8xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.372800", - "Timestamp": "2019-10-15T18:30:27.000Z" + "SpotPrice": "0.408200", + "Timestamp": "2024-05-15T18:35:34.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "i3.8xlarge", + "InstanceType": "m7gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.372800", - "Timestamp": "2019-10-15T18:30:27.000Z" + "SpotPrice": "0.408200", + "Timestamp": "2024-05-15T18:35:34.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.844800", - "Timestamp": "2019-10-15T18:30:27.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068500", + "Timestamp": "2024-05-15T18:35:32.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "i3.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.844800", - "Timestamp": "2019-10-15T18:30:27.000Z" + "InstanceType": "m7gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.068500", + "Timestamp": "2024-05-15T18:35:32.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.261700", - "Timestamp": "2019-10-15T18:09:55.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.064800", + "Timestamp": "2024-05-15T18:35:32.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c4.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.261700", - "Timestamp": "2019-10-15T18:09:55.000Z" + "InstanceType": "m7gd.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.064800", + "Timestamp": "2024-05-15T18:35:32.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008500", + "Timestamp": "2024-05-15T18:35:32.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7gd.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.008500", + "Timestamp": "2024-05-15T18:35:32.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7gd.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.138100", - "Timestamp": "2019-10-15T18:09:55.000Z" + "SpotPrice": "0.094000", + "Timestamp": "2024-05-15T18:35:23.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c4.xlarge", + "InstanceType": "m7gd.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.137700", - "Timestamp": "2019-10-15T18:09:55.000Z" + "SpotPrice": "0.094000", + "Timestamp": "2024-05-15T18:35:23.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7gd.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.178100", - "Timestamp": "2019-10-15T18:09:55.000Z" + "SpotPrice": "0.090300", + "Timestamp": "2024-05-15T18:35:23.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c4.xlarge", + "InstanceType": "m7gd.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.177700", - "Timestamp": "2019-10-15T18:09:55.000Z" + "SpotPrice": "0.090300", + "Timestamp": "2024-05-15T18:35:23.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c4.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.078100", - "Timestamp": "2019-10-15T18:09:55.000Z" + "SpotPrice": "0.034000", + "Timestamp": "2024-05-15T18:35:23.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c4.xlarge", + "InstanceType": "m7gd.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.077700", - "Timestamp": "2019-10-15T18:09:55.000Z" + "SpotPrice": "0.034000", + "Timestamp": "2024-05-15T18:35:23.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.210300", + "Timestamp": "2024-05-15T18:32:17.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.150400", + "Timestamp": "2024-05-15T18:31:23.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m4.xlarge", + "InstanceType": "r3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.142600", - "Timestamp": "2019-10-15T17:53:15.000Z" + "SpotPrice": "0.689700", + "Timestamp": "2024-05-15T18:31:10.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m4.xlarge", + "InstanceType": "r3.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.182600", - "Timestamp": "2019-10-15T17:53:15.000Z" + "SpotPrice": "0.659700", + "Timestamp": "2024-05-15T18:31:10.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m4.xlarge", + "InstanceType": "r3.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.082600", - "Timestamp": "2019-10-15T17:53:15.000Z" + "SpotPrice": "0.559700", + "Timestamp": "2024-05-15T18:31:10.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.4xlarge", + "InstanceType": "r5ad.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.078600", - "Timestamp": "2019-10-15T17:36:24.000Z" + "SpotPrice": "0.229100", + "Timestamp": "2024-05-15T18:30:58.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.4xlarge", + "InstanceType": "c5d.24xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.078600", - "Timestamp": "2019-10-15T17:36:24.000Z" + "SpotPrice": "5.131200", + "Timestamp": "2024-05-15T18:30:57.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.338600", + "Timestamp": "2024-05-15T18:16:39.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211600", + "Timestamp": "2024-05-15T18:16:17.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.4xlarge", + "InstanceType": "m6g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.472600", - "Timestamp": "2019-10-15T17:36:08.000Z" + "SpotPrice": "0.521700", + "Timestamp": "2024-05-15T18:12:37.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.4xlarge", + "InstanceType": "m6g.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.472600", - "Timestamp": "2019-10-15T17:36:08.000Z" + "SpotPrice": "0.521700", + "Timestamp": "2024-05-15T18:12:37.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.4xlarge", + "InstanceType": "m6g.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.442600", - "Timestamp": "2019-10-15T17:36:08.000Z" + "SpotPrice": "0.516700", + "Timestamp": "2024-05-15T18:12:37.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.4xlarge", + "InstanceType": "m6g.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.442600", - "Timestamp": "2019-10-15T17:36:08.000Z" + "SpotPrice": "0.516700", + "Timestamp": "2024-05-15T18:12:37.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.4xlarge", + "InstanceType": "m6g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.342600", - "Timestamp": "2019-10-15T17:36:08.000Z" + "SpotPrice": "0.391700", + "Timestamp": "2024-05-15T18:12:37.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.4xlarge", + "InstanceType": "m6g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.342600", - "Timestamp": "2019-10-15T17:36:08.000Z" + "SpotPrice": "0.391700", + "Timestamp": "2024-05-15T18:12:37.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m3.2xlarge", + "InstanceType": "r5.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.659400", - "Timestamp": "2019-10-15T17:30:19.000Z" + "SpotPrice": "0.224200", + "Timestamp": "2024-05-15T18:05:26.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6a.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.659400", - "Timestamp": "2019-10-15T17:30:19.000Z" + "SpotPrice": "6.769300", + "Timestamp": "2024-05-15T18:04:36.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m3.2xlarge", + "InstanceType": "m5zn.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.659400", - "Timestamp": "2019-10-15T17:30:19.000Z" + "SpotPrice": "0.473300", + "Timestamp": "2024-05-15T18:01:52.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.285400", - "Timestamp": "2019-10-15T17:30:19.000Z" - }, - { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m3.2xlarge", + "InstanceType": "inf1.24xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.285400", - "Timestamp": "2019-10-15T17:30:19.000Z" + "SpotPrice": "0.910000", + "Timestamp": "2024-05-15T18:01:34.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.285400", - "Timestamp": "2019-10-15T17:30:19.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "inf1.24xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.905000", + "Timestamp": "2024-05-15T18:01:34.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.255400", - "Timestamp": "2019-10-15T17:30:19.000Z" + "InstanceType": "inf1.24xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.780000", + "Timestamp": "2024-05-15T18:01:34.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "m3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.255400", - "Timestamp": "2019-10-15T17:30:19.000Z" + "InstanceType": "c5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.830400", + "Timestamp": "2024-05-15T18:01:32.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.255400", - "Timestamp": "2019-10-15T17:30:19.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.840800", + "Timestamp": "2024-05-15T18:01:30.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.155400", - "Timestamp": "2019-10-15T17:30:19.000Z" + "InstanceType": "m6a.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.451900", + "Timestamp": "2024-05-15T18:01:23.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.155400", - "Timestamp": "2019-10-15T17:30:19.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.48xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.446900", + "Timestamp": "2024-05-15T18:01:23.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m3.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.155400", - "Timestamp": "2019-10-15T17:30:19.000Z" + "SpotPrice": "1.321900", + "Timestamp": "2024-05-15T18:01:23.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.12xlarge", + "InstanceType": "c5d.xlarge", "ProductDescription": "Windows", - "SpotPrice": "3.235900", - "Timestamp": "2019-10-15T17:29:42.000Z" + "SpotPrice": "0.226800", + "Timestamp": "2024-05-15T18:01:22.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Windows", - "SpotPrice": "3.235900", - "Timestamp": "2019-10-15T17:29:42.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.994000", + "Timestamp": "2024-05-15T18:01:21.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.157900", - "Timestamp": "2019-10-15T17:29:40.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.964000", + "Timestamp": "2024-05-15T18:01:21.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.157900", - "Timestamp": "2019-10-15T17:29:40.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.864000", + "Timestamp": "2024-05-15T18:01:21.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.12xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.127900", - "Timestamp": "2019-10-15T17:29:40.000Z" + "InstanceType": "t4g.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062600", + "Timestamp": "2024-05-15T18:01:15.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.12xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t4g.micro", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.127900", - "Timestamp": "2019-10-15T17:29:40.000Z" + "SpotPrice": "0.002600", + "Timestamp": "2024-05-15T18:01:15.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.12xlarge", + "InstanceType": "t4g.micro", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.027900", - "Timestamp": "2019-10-15T17:29:40.000Z" + "SpotPrice": "0.002600", + "Timestamp": "2024-05-15T18:01:15.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.12xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.027900", - "Timestamp": "2019-10-15T17:29:40.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.693100", + "Timestamp": "2024-05-15T18:00:29.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t2.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.065600", - "Timestamp": "2019-10-15T17:12:01.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x1e.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.693100", + "Timestamp": "2024-05-15T18:00:29.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "t2.micro", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x1e.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.065600", - "Timestamp": "2019-10-15T17:12:01.000Z" + "SpotPrice": "0.455100", + "Timestamp": "2024-05-15T18:00:29.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t2.micro", + "InstanceType": "x1e.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.065600", - "Timestamp": "2019-10-15T17:12:01.000Z" + "SpotPrice": "0.455100", + "Timestamp": "2024-05-15T18:00:29.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t2.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.015600", - "Timestamp": "2019-10-15T17:12:01.000Z" - }, - { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "t2.micro", + "InstanceType": "x1e.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.015600", - "Timestamp": "2019-10-15T17:12:01.000Z" + "SpotPrice": "0.425100", + "Timestamp": "2024-05-15T18:00:29.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t2.micro", + "InstanceType": "x1e.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.015600", - "Timestamp": "2019-10-15T17:12:01.000Z" + "SpotPrice": "0.425100", + "Timestamp": "2024-05-15T18:00:29.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t2.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.005600", - "Timestamp": "2019-10-15T17:12:01.000Z" - }, - { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "t2.micro", + "InstanceType": "x1e.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.005600", - "Timestamp": "2019-10-15T17:12:01.000Z" + "SpotPrice": "0.325100", + "Timestamp": "2024-05-15T18:00:29.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t2.micro", + "InstanceType": "x1e.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.005600", - "Timestamp": "2019-10-15T17:12:01.000Z" + "SpotPrice": "0.325100", + "Timestamp": "2024-05-15T18:00:29.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t2.micro", + "InstanceType": "c6a.large", "ProductDescription": "Windows", - "SpotPrice": "0.010200", - "Timestamp": "2019-10-15T17:11:50.000Z" + "SpotPrice": "0.103800", + "Timestamp": "2024-05-15T17:59:56.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t2.micro", + "InstanceType": "c6a.large", "ProductDescription": "Windows", - "SpotPrice": "0.010200", - "Timestamp": "2019-10-15T17:11:50.000Z" + "SpotPrice": "0.103800", + "Timestamp": "2024-05-15T17:59:56.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t2.micro", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.010200", - "Timestamp": "2019-10-15T17:11:50.000Z" + "SpotPrice": "0.229600", + "Timestamp": "2024-05-15T17:52:38.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m2.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x2iedn.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.132300", - "Timestamp": "2019-10-15T17:11:42.000Z" + "SpotPrice": "2.772500", + "Timestamp": "2024-05-15T17:50:52.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m2.xlarge", + "InstanceType": "x2iedn.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.132300", - "Timestamp": "2019-10-15T17:11:42.000Z" + "SpotPrice": "2.772500", + "Timestamp": "2024-05-15T17:50:52.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m2.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x2iedn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092300", - "Timestamp": "2019-10-15T17:11:27.000Z" + "SpotPrice": "1.430500", + "Timestamp": "2024-05-15T17:50:52.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m2.xlarge", + "InstanceType": "x2iedn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.092300", - "Timestamp": "2019-10-15T17:11:27.000Z" + "SpotPrice": "1.430500", + "Timestamp": "2024-05-15T17:50:52.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m2.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x2iedn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132300", - "Timestamp": "2019-10-15T17:11:27.000Z" + "SpotPrice": "1.425500", + "Timestamp": "2024-05-15T17:50:52.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m2.xlarge", + "InstanceType": "x2iedn.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.132300", - "Timestamp": "2019-10-15T17:11:27.000Z" + "SpotPrice": "1.425500", + "Timestamp": "2024-05-15T17:50:52.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m2.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x2iedn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032300", - "Timestamp": "2019-10-15T17:11:27.000Z" + "SpotPrice": "1.300500", + "Timestamp": "2024-05-15T17:50:52.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m2.xlarge", + "InstanceType": "x2iedn.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.032300", - "Timestamp": "2019-10-15T17:11:27.000Z" - }, - { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.264500", - "Timestamp": "2019-10-15T17:11:27.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.264500", - "Timestamp": "2019-10-15T17:11:27.000Z" - }, - { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.124500", - "Timestamp": "2019-10-15T17:11:26.000Z" + "SpotPrice": "1.300500", + "Timestamp": "2024-05-15T17:50:52.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m2.2xlarge", + "InstanceType": "c6g.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.124500", - "Timestamp": "2019-10-15T17:11:26.000Z" - }, - { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m2.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.164500", - "Timestamp": "2019-10-15T17:11:26.000Z" + "SpotPrice": "0.381500", + "Timestamp": "2024-05-15T17:49:40.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m2.2xlarge", + "InstanceType": "c6g.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.164500", - "Timestamp": "2019-10-15T17:11:26.000Z" - }, - { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m2.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.064500", - "Timestamp": "2019-10-15T17:11:26.000Z" + "SpotPrice": "0.376500", + "Timestamp": "2024-05-15T17:49:40.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m2.2xlarge", + "InstanceType": "c6g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.064500", - "Timestamp": "2019-10-15T17:11:26.000Z" + "SpotPrice": "0.251500", + "Timestamp": "2024-05-15T17:49:40.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.565900", - "Timestamp": "2019-10-15T17:06:36.000Z" + "InstanceType": "r5a.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.523200", + "Timestamp": "2024-05-15T17:46:58.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.565900", - "Timestamp": "2019-10-15T17:06:36.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i4i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.477600", + "Timestamp": "2024-05-15T17:46:38.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.535900", - "Timestamp": "2019-10-15T17:06:36.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.073300", + "Timestamp": "2024-05-15T17:45:59.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.535900", - "Timestamp": "2019-10-15T17:06:36.000Z" + "SpotPrice": "0.069600", + "Timestamp": "2024-05-15T17:45:59.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.435900", - "Timestamp": "2019-10-15T17:06:36.000Z" + "SpotPrice": "0.013300", + "Timestamp": "2024-05-15T17:45:59.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.435900", - "Timestamp": "2019-10-15T17:06:36.000Z" + "InstanceType": "x2iedn.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.386300", + "Timestamp": "2024-05-15T17:42:42.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5.16xlarge", + "InstanceType": "m6id.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.379900", - "Timestamp": "2019-10-15T17:06:36.000Z" + "SpotPrice": "0.443600", + "Timestamp": "2024-05-15T17:42:39.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5.16xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t2.xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.379900", - "Timestamp": "2019-10-15T17:06:36.000Z" + "SpotPrice": "0.070800", + "Timestamp": "2024-05-15T17:41:34.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.065000", - "Timestamp": "2019-10-15T17:06:35.000Z" + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-15T17:41:17.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t3.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.076700", - "Timestamp": "2019-10-15T17:06:35.000Z" + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-15T17:41:17.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.micro", + "InstanceType": "c7i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.105800", + "Timestamp": "2024-05-15T17:41:17.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gn.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.065100", - "Timestamp": "2019-10-15T17:06:35.000Z" + "SpotPrice": "0.066700", + "Timestamp": "2024-05-15T17:40:31.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.micro", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gn.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.105000", - "Timestamp": "2019-10-15T17:06:35.000Z" + "SpotPrice": "0.037700", + "Timestamp": "2024-05-15T17:40:31.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t3.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.116700", - "Timestamp": "2019-10-15T17:06:35.000Z" + "InstanceType": "c6gn.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006700", + "Timestamp": "2024-05-15T17:40:31.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.105100", - "Timestamp": "2019-10-15T17:06:35.000Z" + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.954800", + "Timestamp": "2024-05-15T17:32:00.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.005000", - "Timestamp": "2019-10-15T17:06:35.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.880800", + "Timestamp": "2024-05-15T17:31:58.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.016700", - "Timestamp": "2019-10-15T17:06:35.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.005100", - "Timestamp": "2019-10-15T17:06:35.000Z" + "InstanceType": "r5n.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.774400", + "Timestamp": "2024-05-15T17:31:58.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.micro", + "InstanceType": "r5a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.014200", - "Timestamp": "2019-10-15T17:06:35.000Z" + "SpotPrice": "1.761600", + "Timestamp": "2024-05-15T17:31:40.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "t3.micro", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m5.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.025900", - "Timestamp": "2019-10-15T17:06:35.000Z" + "SpotPrice": "3.433600", + "Timestamp": "2024-05-15T17:31:32.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.micro", + "InstanceType": "c5a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.014200", - "Timestamp": "2019-10-15T17:06:35.000Z" + "SpotPrice": "0.830400", + "Timestamp": "2024-05-15T17:31:32.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "m4.2xlarge", + "InstanceType": "c7i-flex.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.293200", - "Timestamp": "2019-10-15T17:03:52.000Z" + "SpotPrice": "0.086100", + "Timestamp": "2024-05-15T17:31:28.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "m4.2xlarge", + "InstanceType": "c7i-flex.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.263200", - "Timestamp": "2019-10-15T17:03:52.000Z" + "SpotPrice": "0.126100", + "Timestamp": "2024-05-15T17:31:28.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "m4.2xlarge", + "InstanceType": "c7i-flex.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.163200", - "Timestamp": "2019-10-15T17:03:52.000Z" + "SpotPrice": "0.026100", + "Timestamp": "2024-05-15T17:31:28.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "t1.micro", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062700", - "Timestamp": "2019-10-15T16:25:11.000Z" + "SpotPrice": "0.224800", + "Timestamp": "2024-05-15T17:31:28.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t1.micro", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.062700", - "Timestamp": "2019-10-15T16:25:11.000Z" + "InstanceType": "r5b.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.219800", + "Timestamp": "2024-05-15T17:31:28.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "t1.micro", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.012700", - "Timestamp": "2019-10-15T16:25:11.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.094800", + "Timestamp": "2024-05-15T17:31:28.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t1.micro", + "InstanceType": "m7gd.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.266100", + "Timestamp": "2024-05-15T17:31:24.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7gd.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.012700", - "Timestamp": "2019-10-15T16:25:11.000Z" + "SpotPrice": "0.261100", + "Timestamp": "2024-05-15T17:31:24.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "t1.micro", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m7gd.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002700", - "Timestamp": "2019-10-15T16:25:11.000Z" + "SpotPrice": "0.136100", + "Timestamp": "2024-05-15T17:31:24.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t1.micro", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.002700", - "Timestamp": "2019-10-15T16:25:11.000Z" + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.257800", + "Timestamp": "2024-05-15T17:31:16.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "t1.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012700", - "Timestamp": "2019-10-15T16:25:09.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.252800", + "Timestamp": "2024-05-15T17:31:16.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t1.micro", - "ProductDescription": "Windows", - "SpotPrice": "0.012700", - "Timestamp": "2019-10-15T16:25:09.000Z" + "InstanceType": "g4dn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.127800", + "Timestamp": "2024-05-15T17:31:16.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.816400", - "Timestamp": "2019-10-15T16:17:44.000Z" + "InstanceType": "r4.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.920000", + "Timestamp": "2024-05-15T17:31:14.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.816400", - "Timestamp": "2019-10-15T16:17:44.000Z" + "SpotPrice": "1.245500", + "Timestamp": "2024-05-15T17:31:13.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.786400", - "Timestamp": "2019-10-15T16:17:44.000Z" + "SpotPrice": "1.240500", + "Timestamp": "2024-05-15T17:31:13.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "i3.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.786400", - "Timestamp": "2019-10-15T16:17:44.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.115500", + "Timestamp": "2024-05-15T17:31:13.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.686400", - "Timestamp": "2019-10-15T16:17:44.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.640000", + "Timestamp": "2024-05-15T17:17:31.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "i3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.686400", - "Timestamp": "2019-10-15T16:17:44.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.458100", + "Timestamp": "2024-05-15T17:16:40.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "i3.4xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.422400", - "Timestamp": "2019-10-15T16:17:29.000Z" + "SpotPrice": "1.910200", + "Timestamp": "2024-05-15T17:16:39.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "i3.4xlarge", + "InstanceType": "r5a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.422400", - "Timestamp": "2019-10-15T16:17:29.000Z" + "SpotPrice": "0.440400", + "Timestamp": "2024-05-15T17:16:28.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i.48xlarge", + "ProductDescription": "Windows", + "SpotPrice": "10.374200", + "Timestamp": "2024-05-15T17:16:23.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c3.large", + "InstanceType": "m5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.716800", + "Timestamp": "2024-05-15T17:15:54.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "x2idn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097000", - "Timestamp": "2019-10-15T15:42:55.000Z" + "SpotPrice": "1.430500", + "Timestamp": "2024-05-15T17:09:16.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c3.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "x2idn.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.097000", - "Timestamp": "2019-10-15T15:42:55.000Z" + "SpotPrice": "1.430500", + "Timestamp": "2024-05-15T17:09:16.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c3.large", + "InstanceType": "x2idn.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137000", - "Timestamp": "2019-10-15T15:42:55.000Z" + "SpotPrice": "1.425500", + "Timestamp": "2024-05-15T17:09:16.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c3.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "x2idn.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.137000", - "Timestamp": "2019-10-15T15:42:55.000Z" + "SpotPrice": "1.425500", + "Timestamp": "2024-05-15T17:09:16.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c3.large", + "InstanceType": "x2idn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037000", - "Timestamp": "2019-10-15T15:42:55.000Z" + "SpotPrice": "1.300500", + "Timestamp": "2024-05-15T17:09:16.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c3.large", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "x2idn.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.037000", - "Timestamp": "2019-10-15T15:42:55.000Z" + "SpotPrice": "1.300500", + "Timestamp": "2024-05-15T17:09:16.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r3.2xlarge", + "InstanceType": "x2idn.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.530800", - "Timestamp": "2019-10-15T15:42:52.000Z" + "SpotPrice": "4.244500", + "Timestamp": "2024-05-15T17:09:16.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r3.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "x2idn.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.530800", - "Timestamp": "2019-10-15T15:42:52.000Z" + "SpotPrice": "4.244500", + "Timestamp": "2024-05-15T17:09:16.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.292800", - "Timestamp": "2019-10-15T15:42:39.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "x2idn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "4.244500", + "Timestamp": "2024-05-15T17:09:16.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r3.2xlarge", + "InstanceType": "i3en.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.292800", - "Timestamp": "2019-10-15T15:42:39.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.262800", - "Timestamp": "2019-10-15T15:42:39.000Z" + "SpotPrice": "0.096000", + "Timestamp": "2024-05-15T17:02:30.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r3.2xlarge", + "InstanceType": "i3en.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.262800", - "Timestamp": "2019-10-15T15:42:39.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.162800", - "Timestamp": "2019-10-15T15:42:39.000Z" + "SpotPrice": "0.092000", + "Timestamp": "2024-05-15T17:02:30.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r3.2xlarge", + "InstanceType": "i3en.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.162800", - "Timestamp": "2019-10-15T15:42:39.000Z" + "SpotPrice": "0.036000", + "Timestamp": "2024-05-15T17:02:30.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.120000", - "Timestamp": "2019-10-15T15:42:21.000Z" + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.274800", + "Timestamp": "2024-05-15T17:02:24.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.120000", - "Timestamp": "2019-10-15T15:42:21.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5a.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.269800", + "Timestamp": "2024-05-15T17:02:24.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.269700", - "Timestamp": "2019-10-15T15:32:27.000Z" + "InstanceType": "r5a.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.144800", + "Timestamp": "2024-05-15T17:02:24.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.269700", - "Timestamp": "2019-10-15T15:32:27.000Z" + "SpotPrice": "1.774400", + "Timestamp": "2024-05-15T17:01:47.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.147500", - "Timestamp": "2019-10-15T15:32:27.000Z" + "SpotPrice": "0.069100", + "Timestamp": "2024-05-15T17:01:38.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.medium", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.187500", - "Timestamp": "2019-10-15T15:32:27.000Z" + "SpotPrice": "0.040100", + "Timestamp": "2024-05-15T17:01:38.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.medium", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.087500", - "Timestamp": "2019-10-15T15:32:27.000Z" + "SpotPrice": "0.009100", + "Timestamp": "2024-05-15T17:01:38.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m6i.metal", + "ProductDescription": "Windows", + "SpotPrice": "6.867200", + "Timestamp": "2024-05-15T17:01:38.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r4.2xlarge", + "InstanceType": "c4.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.538900", - "Timestamp": "2019-10-15T15:30:13.000Z" + "SpotPrice": "1.903000", + "Timestamp": "2024-05-15T17:01:36.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.metal", "ProductDescription": "Windows", - "SpotPrice": "0.538900", - "Timestamp": "2019-10-15T15:30:13.000Z" + "SpotPrice": "7.641000", + "Timestamp": "2024-05-15T17:01:31.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r4.2xlarge", + "InstanceType": "m5zn.large", "ProductDescription": "Windows", - "SpotPrice": "0.538900", - "Timestamp": "2019-10-15T15:30:13.000Z" + "SpotPrice": "0.118300", + "Timestamp": "2024-05-15T17:01:13.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.300900", - "Timestamp": "2019-10-15T15:30:08.000Z" + "SpotPrice": "0.406000", + "Timestamp": "2024-05-15T17:01:04.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "r4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.300900", - "Timestamp": "2019-10-15T15:30:08.000Z" + "InstanceType": "g5.4xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.401000", + "Timestamp": "2024-05-15T17:01:04.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.276000", + "Timestamp": "2024-05-15T17:01:04.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.300900", - "Timestamp": "2019-10-15T15:30:08.000Z" + "SpotPrice": "0.213800", + "Timestamp": "2024-05-15T17:01:03.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r4.2xlarge", + "InstanceType": "c6g.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.270900", - "Timestamp": "2019-10-15T15:30:08.000Z" + "SpotPrice": "0.208800", + "Timestamp": "2024-05-15T17:01:03.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "r4.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.270900", - "Timestamp": "2019-10-15T15:30:08.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.083800", + "Timestamp": "2024-05-15T17:01:03.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.32xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.109200", + "Timestamp": "2024-05-15T17:01:00.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.270900", - "Timestamp": "2019-10-15T15:30:08.000Z" + "SpotPrice": "1.104200", + "Timestamp": "2024-05-15T17:01:00.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r4.2xlarge", + "InstanceType": "m6i.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.170900", - "Timestamp": "2019-10-15T15:30:08.000Z" + "SpotPrice": "0.979200", + "Timestamp": "2024-05-15T17:01:00.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "r4.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.267600", + "Timestamp": "2024-05-15T17:00:59.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.262600", + "Timestamp": "2024-05-15T17:00:59.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.170900", - "Timestamp": "2019-10-15T15:30:08.000Z" + "SpotPrice": "1.137600", + "Timestamp": "2024-05-15T17:00:59.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r4.2xlarge", + "InstanceType": "m1.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.075600", + "Timestamp": "2024-05-15T17:00:52.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m1.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.045600", + "Timestamp": "2024-05-15T17:00:52.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m1.small", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.170900", - "Timestamp": "2019-10-15T15:30:08.000Z" + "SpotPrice": "0.015600", + "Timestamp": "2024-05-15T17:00:52.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "i3.2xlarge", + "InstanceType": "c6a.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.711200", - "Timestamp": "2019-10-15T15:25:28.000Z" + "SpotPrice": "3.321300", + "Timestamp": "2024-05-15T16:48:30.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "i3.2xlarge", + "InstanceType": "r5.large", "ProductDescription": "Windows", - "SpotPrice": "0.711200", - "Timestamp": "2019-10-15T15:25:28.000Z" + "SpotPrice": "0.112100", + "Timestamp": "2024-05-15T16:47:35.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.473200", - "Timestamp": "2019-10-15T15:25:28.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.166600", + "Timestamp": "2024-05-15T16:46:48.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.473200", - "Timestamp": "2019-10-15T15:25:28.000Z" + "InstanceType": "c6in.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.750900", + "Timestamp": "2024-05-15T16:46:41.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "i3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.443200", - "Timestamp": "2019-10-15T15:25:28.000Z" + "InstanceType": "t3a.small", + "ProductDescription": "Windows", + "SpotPrice": "0.021400", + "Timestamp": "2024-05-15T16:46:33.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "i3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.443200", - "Timestamp": "2019-10-15T15:25:28.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.692300", + "Timestamp": "2024-05-15T16:46:30.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.343200", - "Timestamp": "2019-10-15T15:25:28.000Z" + "InstanceType": "c5n.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.868800", + "Timestamp": "2024-05-15T16:46:21.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "i3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.343200", - "Timestamp": "2019-10-15T15:25:28.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.262800", + "Timestamp": "2024-05-15T16:46:02.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "m1.large", - "ProductDescription": "Windows", - "SpotPrice": "0.147300", - "Timestamp": "2019-10-15T15:03:41.000Z" + "InstanceType": "r5n.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.257800", + "Timestamp": "2024-05-15T16:46:02.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m1.large", - "ProductDescription": "Windows", - "SpotPrice": "0.147300", - "Timestamp": "2019-10-15T15:03:41.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5n.metal", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "1.132800", + "Timestamp": "2024-05-15T16:46:02.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3.micro", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.063300", + "Timestamp": "2024-05-15T16:43:47.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "m1.large", + "InstanceType": "t3.micro", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.083300", - "Timestamp": "2019-10-15T15:03:41.000Z" + "SpotPrice": "0.065000", + "Timestamp": "2024-05-15T16:43:47.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m1.large", + "InstanceType": "t3.micro", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.083300", - "Timestamp": "2019-10-15T15:03:41.000Z" + "SpotPrice": "0.063300", + "Timestamp": "2024-05-15T16:43:47.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3.micro", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.003300", + "Timestamp": "2024-05-15T16:43:47.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "m1.large", + "InstanceType": "t3.micro", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.123300", - "Timestamp": "2019-10-15T15:03:41.000Z" + "SpotPrice": "0.005000", + "Timestamp": "2024-05-15T16:43:47.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m1.large", + "InstanceType": "t3.micro", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.123300", - "Timestamp": "2019-10-15T15:03:41.000Z" + "SpotPrice": "0.003300", + "Timestamp": "2024-05-15T16:43:47.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3.micro", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.003300", + "Timestamp": "2024-05-15T16:43:47.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "m1.large", + "InstanceType": "t3.micro", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.023300", - "Timestamp": "2019-10-15T15:03:41.000Z" + "SpotPrice": "0.005000", + "Timestamp": "2024-05-15T16:43:47.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m1.large", + "InstanceType": "t3.micro", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.023300", - "Timestamp": "2019-10-15T15:03:41.000Z" + "SpotPrice": "0.003300", + "Timestamp": "2024-05-15T16:43:47.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.xlarge", + "InstanceType": "t3.micro", "ProductDescription": "Windows", - "SpotPrice": "0.153900", - "Timestamp": "2019-10-15T14:35:55.000Z" + "SpotPrice": "0.010900", + "Timestamp": "2024-05-15T16:43:46.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3.micro", "ProductDescription": "Windows", - "SpotPrice": "0.341400", - "Timestamp": "2019-10-15T14:35:55.000Z" + "SpotPrice": "0.010900", + "Timestamp": "2024-05-15T16:43:46.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.165300", - "Timestamp": "2019-10-15T14:35:55.000Z" + "SpotPrice": "2.690400", + "Timestamp": "2024-05-15T16:31:46.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t3.xlarge", + "InstanceType": "m6a.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.327800", - "Timestamp": "2019-10-15T14:35:55.000Z" + "SpotPrice": "1.011300", + "Timestamp": "2024-05-15T16:31:41.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t3.xlarge", + "InstanceType": "m6a.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.367800", - "Timestamp": "2019-10-15T14:35:55.000Z" + "SpotPrice": "1.006300", + "Timestamp": "2024-05-15T16:31:41.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t3.xlarge", + "InstanceType": "m6a.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.267800", - "Timestamp": "2019-10-15T14:35:55.000Z" + "SpotPrice": "0.881300", + "Timestamp": "2024-05-15T16:31:41.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "m1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.106700", - "Timestamp": "2019-10-15T13:54:41.000Z" + "InstanceType": "c5a.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.491200", + "Timestamp": "2024-05-15T16:31:39.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.106700", - "Timestamp": "2019-10-15T13:54:41.000Z" + "InstanceType": "m5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.208000", + "Timestamp": "2024-05-15T16:31:30.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "m1.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.146700", - "Timestamp": "2019-10-15T13:54:41.000Z" + "InstanceType": "m7g.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.546200", + "Timestamp": "2024-05-15T16:31:19.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m1.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7g.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.146700", - "Timestamp": "2019-10-15T13:54:41.000Z" + "SpotPrice": "0.541200", + "Timestamp": "2024-05-15T16:31:19.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "m1.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.046700", - "Timestamp": "2019-10-15T13:54:41.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m1.xlarge", + "InstanceType": "m7g.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.046700", - "Timestamp": "2019-10-15T13:54:41.000Z" + "SpotPrice": "0.416200", + "Timestamp": "2024-05-15T16:31:19.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.134000", - "Timestamp": "2019-10-15T13:32:27.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c3.xlarge", + "InstanceType": "c5n.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.134000", - "Timestamp": "2019-10-15T13:32:27.000Z" + "SpotPrice": "0.175700", + "Timestamp": "2024-05-15T16:31:16.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.174000", - "Timestamp": "2019-10-15T13:32:27.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c3.xlarge", + "InstanceType": "c5n.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.174000", - "Timestamp": "2019-10-15T13:32:27.000Z" + "SpotPrice": "0.171700", + "Timestamp": "2024-05-15T16:31:16.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c3.xlarge", + "InstanceType": "c5n.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.074000", - "Timestamp": "2019-10-15T13:32:27.000Z" + "SpotPrice": "0.115700", + "Timestamp": "2024-05-15T16:31:16.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.074000", - "Timestamp": "2019-10-15T13:32:27.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c3.xlarge", + "InstanceType": "m5ad.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.240000", - "Timestamp": "2019-10-15T13:32:27.000Z" + "SpotPrice": "2.604000", + "Timestamp": "2024-05-15T16:31:16.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c3.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5d.large", "ProductDescription": "Windows", - "SpotPrice": "0.240000", - "Timestamp": "2019-10-15T13:32:27.000Z" + "SpotPrice": "0.114800", + "Timestamp": "2024-05-15T16:31:06.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.390200", - "Timestamp": "2019-10-15T13:30:08.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.9xlarge", + "InstanceType": "r5a.xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.390200", - "Timestamp": "2019-10-15T13:30:08.000Z" + "SpotPrice": "0.220200", + "Timestamp": "2024-05-15T16:30:58.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.864200", - "Timestamp": "2019-10-15T13:30:05.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.9xlarge", + "InstanceType": "m4.xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.864200", - "Timestamp": "2019-10-15T13:30:05.000Z" + "SpotPrice": "0.180600", + "Timestamp": "2024-05-15T16:30:55.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.834200", - "Timestamp": "2019-10-15T13:30:05.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.9xlarge", + "InstanceType": "m4.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.834200", - "Timestamp": "2019-10-15T13:30:05.000Z" + "SpotPrice": "0.220600", + "Timestamp": "2024-05-15T16:30:55.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.9xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.734200", - "Timestamp": "2019-10-15T13:30:05.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.9xlarge", + "InstanceType": "m4.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.734200", - "Timestamp": "2019-10-15T13:30:05.000Z" + "SpotPrice": "0.120600", + "Timestamp": "2024-05-15T16:30:55.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.435300", - "Timestamp": "2019-10-15T12:51:20.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i-flex.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.642600", + "Timestamp": "2024-05-15T16:17:30.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.435300", - "Timestamp": "2019-10-15T12:51:20.000Z" + "InstanceType": "m5.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.575200", + "Timestamp": "2024-05-15T16:17:00.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.435300", - "Timestamp": "2019-10-15T12:51:20.000Z" + "InstanceType": "c5d.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.924200", + "Timestamp": "2024-05-15T16:16:42.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m4.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.405300", - "Timestamp": "2019-10-15T12:51:20.000Z" + "InstanceType": "m5d.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.280000", + "Timestamp": "2024-05-15T16:16:40.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "m4.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.405300", - "Timestamp": "2019-10-15T12:51:20.000Z" + "InstanceType": "x2iedn.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.559700", + "Timestamp": "2024-05-15T16:16:32.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m4.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.405300", - "Timestamp": "2019-10-15T12:51:20.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.305300", - "Timestamp": "2019-10-15T12:51:20.000Z" + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.415600", + "Timestamp": "2024-05-15T16:16:27.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m4.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.305300", - "Timestamp": "2019-10-15T12:51:20.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.410600", + "Timestamp": "2024-05-15T16:16:27.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m4.16xlarge", + "InstanceType": "c6gd.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.305300", - "Timestamp": "2019-10-15T12:51:20.000Z" + "SpotPrice": "0.285600", + "Timestamp": "2024-05-15T16:16:27.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.265600", - "Timestamp": "2019-10-15T12:43:04.000Z" + "SpotPrice": "0.224200", + "Timestamp": "2024-05-15T16:02:25.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r3.large", "ProductDescription": "Windows", - "SpotPrice": "0.265600", - "Timestamp": "2019-10-15T12:43:04.000Z" + "SpotPrice": "0.127000", + "Timestamp": "2024-05-15T16:02:18.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m4.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.265600", - "Timestamp": "2019-10-15T12:43:04.000Z" + "SpotPrice": "0.437700", + "Timestamp": "2024-05-15T16:01:41.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r3.large", + "InstanceType": "i4i.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-15T12:32:28.000Z" + "SpotPrice": "1.910200", + "Timestamp": "2024-05-15T16:01:39.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r3.large", + "InstanceType": "t3a.medium", "ProductDescription": "Windows", - "SpotPrice": "0.132700", - "Timestamp": "2019-10-15T12:32:28.000Z" + "SpotPrice": "0.032500", + "Timestamp": "2024-05-15T16:01:39.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r3.large", + "InstanceType": "r6g.large", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.100700", - "Timestamp": "2019-10-15T12:32:27.000Z" + "SpotPrice": "0.076100", + "Timestamp": "2024-05-15T16:01:30.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r3.large", + "InstanceType": "r6g.large", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.140700", - "Timestamp": "2019-10-15T12:32:27.000Z" + "SpotPrice": "0.072400", + "Timestamp": "2024-05-15T16:01:30.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r3.large", + "InstanceType": "r6g.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.040700", - "Timestamp": "2019-10-15T12:32:27.000Z" + "SpotPrice": "0.016100", + "Timestamp": "2024-05-15T16:01:30.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.48xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.529100", - "Timestamp": "2019-10-15T12:32:26.000Z" + "SpotPrice": "10.858100", + "Timestamp": "2024-05-15T16:01:30.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m2.4xlarge", + "InstanceType": "r7i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.529100", - "Timestamp": "2019-10-15T12:32:26.000Z" + "SpotPrice": "2.714500", + "Timestamp": "2024-05-15T16:01:24.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.259100", - "Timestamp": "2019-10-15T12:32:26.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c5ad.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.686400", + "Timestamp": "2024-05-15T16:01:22.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5n.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.849600", + "Timestamp": "2024-05-15T16:01:04.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7g.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.259100", - "Timestamp": "2019-10-15T12:32:26.000Z" + "SpotPrice": "0.234000", + "Timestamp": "2024-05-15T15:47:33.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m2.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7g.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.229100", - "Timestamp": "2019-10-15T12:32:26.000Z" + "SpotPrice": "0.229000", + "Timestamp": "2024-05-15T15:47:33.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7g.4xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.104000", + "Timestamp": "2024-05-15T15:47:33.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m2.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.229100", - "Timestamp": "2019-10-15T12:32:26.000Z" + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.994000", + "Timestamp": "2024-05-15T15:46:59.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m2.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.129100", - "Timestamp": "2019-10-15T12:32:26.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i3en.12xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.989000", + "Timestamp": "2024-05-15T15:46:59.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m2.4xlarge", + "InstanceType": "i3en.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.129100", - "Timestamp": "2019-10-15T12:32:26.000Z" + "SpotPrice": "0.864000", + "Timestamp": "2024-05-15T15:46:59.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.329700", - "Timestamp": "2019-10-15T12:30:49.000Z" + "SpotPrice": "0.229600", + "Timestamp": "2024-05-15T15:46:37.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "m3.xlarge", + "InstanceType": "i4i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.329700", - "Timestamp": "2019-10-15T12:30:49.000Z" + "SpotPrice": "2.865400", + "Timestamp": "2024-05-15T15:46:37.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m3.xlarge", + "InstanceType": "g4dn.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.329700", - "Timestamp": "2019-10-15T12:30:49.000Z" + "SpotPrice": "0.940600", + "Timestamp": "2024-05-15T15:46:30.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.080200", - "Timestamp": "2019-10-15T12:30:00.000Z" + "InstanceType": "r5ad.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.414400", + "Timestamp": "2024-05-15T15:46:26.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "t3.medium", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "g4dn.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.127200", - "Timestamp": "2019-10-15T12:30:00.000Z" + "SpotPrice": "0.499800", + "Timestamp": "2024-05-15T15:46:25.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.080200", - "Timestamp": "2019-10-15T12:30:00.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.494800", + "Timestamp": "2024-05-15T15:46:25.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.120200", - "Timestamp": "2019-10-15T12:30:00.000Z" + "InstanceType": "g4dn.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.369800", + "Timestamp": "2024-05-15T15:46:25.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "t3.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.167200", - "Timestamp": "2019-10-15T12:30:00.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3a.nano", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.062800", + "Timestamp": "2024-05-15T15:46:14.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.medium", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3a.nano", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.120200", - "Timestamp": "2019-10-15T12:30:00.000Z" + "SpotPrice": "0.002800", + "Timestamp": "2024-05-15T15:46:14.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.medium", + "InstanceType": "t3a.nano", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.020200", - "Timestamp": "2019-10-15T12:30:00.000Z" + "SpotPrice": "0.002800", + "Timestamp": "2024-05-15T15:46:14.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.067200", - "Timestamp": "2019-10-15T12:30:00.000Z" + "InstanceType": "r5.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.793600", + "Timestamp": "2024-05-15T15:45:57.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.020200", - "Timestamp": "2019-10-15T12:30:00.000Z" + "InstanceType": "i3en.large", + "ProductDescription": "Windows", + "SpotPrice": "0.128000", + "Timestamp": "2024-05-15T15:34:30.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m3.xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gd.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.137700", - "Timestamp": "2019-10-15T12:29:49.000Z" + "SpotPrice": "0.177600", + "Timestamp": "2024-05-15T15:33:23.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.137700", - "Timestamp": "2019-10-15T12:29:49.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.172600", + "Timestamp": "2024-05-15T15:33:23.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m3.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.137700", - "Timestamp": "2019-10-15T12:29:49.000Z" + "InstanceType": "c6gd.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.047600", + "Timestamp": "2024-05-15T15:33:23.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.177700", - "Timestamp": "2019-10-15T12:29:49.000Z" + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.935200", + "Timestamp": "2024-05-15T15:33:19.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "m3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.177700", - "Timestamp": "2019-10-15T12:29:49.000Z" + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.935200", + "Timestamp": "2024-05-15T15:33:19.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m3.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.177700", - "Timestamp": "2019-10-15T12:29:49.000Z" + "InstanceType": "i3.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.935200", + "Timestamp": "2024-05-15T15:33:19.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.077700", - "Timestamp": "2019-10-15T12:29:49.000Z" + "InstanceType": "r7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.429000", + "Timestamp": "2024-05-15T15:32:51.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233800", + "Timestamp": "2024-05-15T15:32:43.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "m3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.077700", - "Timestamp": "2019-10-15T12:29:49.000Z" + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233800", + "Timestamp": "2024-05-15T15:32:43.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m3.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.077700", - "Timestamp": "2019-10-15T12:29:49.000Z" + "InstanceType": "i3.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.233800", + "Timestamp": "2024-05-15T15:32:43.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5b.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.462800", + "Timestamp": "2024-05-15T15:32:19.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.medium", + "InstanceType": "m6a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.038600", - "Timestamp": "2019-10-15T12:29:36.000Z" + "SpotPrice": "2.538500", + "Timestamp": "2024-05-15T15:31:54.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.085600", - "Timestamp": "2019-10-15T12:29:36.000Z" + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.546200", + "Timestamp": "2024-05-15T15:31:43.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.medium", - "ProductDescription": "Windows", - "SpotPrice": "0.038600", - "Timestamp": "2019-10-15T12:29:36.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.541200", + "Timestamp": "2024-05-15T15:31:43.000Z" }, { - "AvailabilityZone": "sa-east-1c", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.416200", + "Timestamp": "2024-05-15T15:31:43.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.875600", - "Timestamp": "2019-10-15T12:03:55.000Z" + "ProductDescription": "Windows", + "SpotPrice": "3.740800", + "Timestamp": "2024-05-15T15:31:43.000Z" }, { "AvailabilityZone": "sa-east-1a", "InstanceType": "i3.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "2.875600", - "Timestamp": "2019-10-15T12:03:55.000Z" + "ProductDescription": "Windows", + "SpotPrice": "3.740800", + "Timestamp": "2024-05-15T15:31:43.000Z" }, { - "AvailabilityZone": "sa-east-1c", + "AvailabilityZone": "sa-east-1b", "InstanceType": "i3.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "2.845600", - "Timestamp": "2019-10-15T12:03:55.000Z" + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.926800", + "Timestamp": "2024-05-15T15:31:43.000Z" }, { - "AvailabilityZone": "sa-east-1a", + "AvailabilityZone": "sa-east-1b", "InstanceType": "i3.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "2.845600", - "Timestamp": "2019-10-15T12:03:55.000Z" + "SpotPrice": "0.896800", + "Timestamp": "2024-05-15T15:31:43.000Z" }, { - "AvailabilityZone": "sa-east-1c", + "AvailabilityZone": "sa-east-1b", "InstanceType": "i3.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.745600", - "Timestamp": "2019-10-15T12:03:55.000Z" + "SpotPrice": "0.796800", + "Timestamp": "2024-05-15T15:31:43.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "i3.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "2.745600", - "Timestamp": "2019-10-15T12:03:55.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6in.large", + "ProductDescription": "Windows", + "SpotPrice": "0.109400", + "Timestamp": "2024-05-15T15:31:41.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "i3.16xlarge", + "InstanceType": "r5a.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "5.689600", - "Timestamp": "2019-10-15T12:03:55.000Z" + "SpotPrice": "0.880800", + "Timestamp": "2024-05-15T15:31:38.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "i3.16xlarge", + "InstanceType": "t3a.large", "ProductDescription": "Windows", - "SpotPrice": "5.689600", - "Timestamp": "2019-10-15T12:03:55.000Z" + "SpotPrice": "0.049700", + "Timestamp": "2024-05-15T15:31:17.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.644600", + "Timestamp": "2024-05-15T15:27:30.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.639600", + "Timestamp": "2024-05-15T15:27:30.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6g.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.514600", + "Timestamp": "2024-05-15T15:27:30.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m4.16xlarge", + "InstanceType": "g4dn.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.249300", - "Timestamp": "2019-10-15T11:42:54.000Z" + "SpotPrice": "2.872900", + "Timestamp": "2024-05-15T15:17:44.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "m4.16xlarge", + "InstanceType": "g4dn.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.249300", - "Timestamp": "2019-10-15T11:42:54.000Z" + "SpotPrice": "2.872900", + "Timestamp": "2024-05-15T15:17:44.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m4.16xlarge", + "InstanceType": "g4dn.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.249300", - "Timestamp": "2019-10-15T11:42:54.000Z" + "SpotPrice": "2.872900", + "Timestamp": "2024-05-15T15:16:44.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "c1.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m4.10xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.391800", - "Timestamp": "2019-10-15T11:32:26.000Z" + "SpotPrice": "2.158000", + "Timestamp": "2024-05-15T15:16:44.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c1.xlarge", + "InstanceType": "m7i-flex.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.391800", - "Timestamp": "2019-10-15T11:32:26.000Z" + "SpotPrice": "0.205300", + "Timestamp": "2024-05-15T15:16:35.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "c1.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.201800", - "Timestamp": "2019-10-15T11:32:26.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r6i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.896800", + "Timestamp": "2024-05-15T15:16:30.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c1.xlarge", + "InstanceType": "c5d.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.201800", - "Timestamp": "2019-10-15T11:32:26.000Z" - }, - { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "c1.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.171800", - "Timestamp": "2019-10-15T11:32:26.000Z" + "SpotPrice": "0.845200", + "Timestamp": "2024-05-15T15:16:25.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c1.xlarge", + "InstanceType": "c5d.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.171800", - "Timestamp": "2019-10-15T11:32:26.000Z" - }, - { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "c1.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.071800", - "Timestamp": "2019-10-15T11:32:26.000Z" + "SpotPrice": "0.815200", + "Timestamp": "2024-05-15T15:16:25.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c1.xlarge", + "InstanceType": "c5d.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.071800", - "Timestamp": "2019-10-15T11:32:26.000Z" + "SpotPrice": "0.715200", + "Timestamp": "2024-05-15T15:16:25.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.large", + "InstanceType": "i3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.103100", - "Timestamp": "2019-10-15T11:12:42.000Z" + "SpotPrice": "0.528400", + "Timestamp": "2024-05-15T15:01:56.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.large", + "InstanceType": "i3.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.143100", - "Timestamp": "2019-10-15T11:12:42.000Z" + "SpotPrice": "0.498400", + "Timestamp": "2024-05-15T15:01:56.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.large", + "InstanceType": "i3.8xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.043100", - "Timestamp": "2019-10-15T11:12:42.000Z" + "SpotPrice": "0.398400", + "Timestamp": "2024-05-15T15:01:56.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.157300", - "Timestamp": "2019-10-15T10:25:28.000Z" + "InstanceType": "r5b.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.083700", + "Timestamp": "2024-05-15T15:01:48.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Windows", - "SpotPrice": "2.157300", - "Timestamp": "2019-10-15T10:25:28.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.080000", + "Timestamp": "2024-05-15T15:01:48.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.815300", - "Timestamp": "2019-10-15T10:24:55.000Z" + "InstanceType": "r5b.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.023700", + "Timestamp": "2024-05-15T15:01:48.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.815300", - "Timestamp": "2019-10-15T10:24:55.000Z" + "InstanceType": "c1.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.521100", + "Timestamp": "2024-05-15T15:01:46.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.785300", - "Timestamp": "2019-10-15T10:24:55.000Z" + "InstanceType": "r7i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.452400", + "Timestamp": "2024-05-15T15:01:36.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6a.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "6.769300", + "Timestamp": "2024-05-15T15:01:23.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6in.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.003500", + "Timestamp": "2024-05-15T15:01:22.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.8xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.785300", - "Timestamp": "2019-10-15T10:24:55.000Z" + "InstanceType": "t3a.small", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.070500", + "Timestamp": "2024-05-15T15:01:00.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.8xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.685300", - "Timestamp": "2019-10-15T10:24:55.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3a.small", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.041500", + "Timestamp": "2024-05-15T15:01:00.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.8xlarge", + "InstanceType": "t3a.small", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.685300", - "Timestamp": "2019-10-15T10:24:55.000Z" + "SpotPrice": "0.010500", + "Timestamp": "2024-05-15T15:01:00.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.380800", + "Timestamp": "2024-05-15T15:00:56.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.8xlarge", + "InstanceType": "x2iedn.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.847900", - "Timestamp": "2019-10-15T10:04:16.000Z" + "SpotPrice": "5.332000", + "Timestamp": "2024-05-15T14:56:15.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.8xlarge", + "InstanceType": "x2iedn.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.847900", - "Timestamp": "2019-10-15T10:04:16.000Z" + "SpotPrice": "5.332000", + "Timestamp": "2024-05-15T14:56:15.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.8xlarge", + "InstanceType": "x2iedn.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.817900", - "Timestamp": "2019-10-15T10:04:16.000Z" + "SpotPrice": "5.327000", + "Timestamp": "2024-05-15T14:56:15.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.8xlarge", + "InstanceType": "x2iedn.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.817900", - "Timestamp": "2019-10-15T10:04:16.000Z" + "SpotPrice": "5.327000", + "Timestamp": "2024-05-15T14:56:15.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.8xlarge", + "InstanceType": "x2iedn.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.717900", - "Timestamp": "2019-10-15T10:04:16.000Z" + "SpotPrice": "5.202000", + "Timestamp": "2024-05-15T14:56:15.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.8xlarge", + "InstanceType": "x2iedn.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.717900", - "Timestamp": "2019-10-15T10:04:16.000Z" + "SpotPrice": "5.202000", + "Timestamp": "2024-05-15T14:56:15.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r5d.8xlarge", + "InstanceType": "x2iedn.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.189900", - "Timestamp": "2019-10-15T10:03:20.000Z" + "SpotPrice": "11.090000", + "Timestamp": "2024-05-15T14:56:14.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r5d.8xlarge", + "InstanceType": "x2iedn.32xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.189900", - "Timestamp": "2019-10-15T10:03:20.000Z" + "SpotPrice": "11.090000", + "Timestamp": "2024-05-15T14:56:14.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m3.large", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.098800", - "Timestamp": "2019-10-15T09:32:25.000Z" + "InstanceType": "c7i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.211500", + "Timestamp": "2024-05-15T14:54:47.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m3.large", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gd.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.098800", - "Timestamp": "2019-10-15T09:32:25.000Z" + "SpotPrice": "0.415600", + "Timestamp": "2024-05-15T14:48:29.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m3.large", + "InstanceType": "c6gd.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.138800", - "Timestamp": "2019-10-15T09:32:25.000Z" + "SpotPrice": "0.410600", + "Timestamp": "2024-05-15T14:48:29.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m3.large", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.138800", - "Timestamp": "2019-10-15T09:32:25.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6gd.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.285600", + "Timestamp": "2024-05-15T14:48:29.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.038800", - "Timestamp": "2019-10-15T09:32:25.000Z" + "InstanceType": "r5.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.380800", + "Timestamp": "2024-05-15T14:47:56.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m3.large", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.038800", - "Timestamp": "2019-10-15T09:32:25.000Z" + "InstanceType": "r3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.095000", + "Timestamp": "2024-05-15T14:46:31.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m3.large", - "ProductDescription": "Windows", - "SpotPrice": "0.164800", - "Timestamp": "2019-10-15T09:32:25.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.135000", + "Timestamp": "2024-05-15T14:46:31.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m3.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r3.large", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.035000", + "Timestamp": "2024-05-15T14:46:31.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.164800", - "Timestamp": "2019-10-15T09:32:25.000Z" + "SpotPrice": "0.904800", + "Timestamp": "2024-05-15T14:46:12.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m3.large", + "InstanceType": "c4.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.164800", - "Timestamp": "2019-10-15T09:32:25.000Z" + "SpotPrice": "0.429800", + "Timestamp": "2024-05-15T14:43:56.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3.nano", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.440800", - "Timestamp": "2019-10-15T09:16:57.000Z" + "SpotPrice": "0.062500", + "Timestamp": "2024-05-15T14:43:06.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.440800", - "Timestamp": "2019-10-15T09:16:57.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3.nano", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-15T14:43:06.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3.nano", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.002500", + "Timestamp": "2024-05-15T14:43:06.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c4.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.410800", - "Timestamp": "2019-10-15T09:16:57.000Z" + "InstanceType": "c6g.12xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.381500", + "Timestamp": "2024-05-15T14:32:39.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6g.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.410800", - "Timestamp": "2019-10-15T09:16:57.000Z" + "SpotPrice": "0.376500", + "Timestamp": "2024-05-15T14:32:39.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c4.4xlarge", + "InstanceType": "c6g.12xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.310800", - "Timestamp": "2019-10-15T09:16:57.000Z" + "SpotPrice": "0.251500", + "Timestamp": "2024-05-15T14:32:39.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.310800", - "Timestamp": "2019-10-15T09:16:57.000Z" + "InstanceType": "m6i.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.429200", + "Timestamp": "2024-05-15T14:32:25.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c4.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7i-flex.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.046800", - "Timestamp": "2019-10-15T09:16:56.000Z" + "SpotPrice": "0.410600", + "Timestamp": "2024-05-15T14:32:12.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c4.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "1.046800", - "Timestamp": "2019-10-15T09:16:56.000Z" + "InstanceType": "t2.medium", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.081900", + "Timestamp": "2024-05-15T14:31:43.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.301300", - "Timestamp": "2019-10-15T09:03:57.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t2.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.121900", + "Timestamp": "2024-05-15T14:31:43.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.301300", - "Timestamp": "2019-10-15T09:03:57.000Z" + "InstanceType": "t2.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.021900", + "Timestamp": "2024-05-15T14:31:43.000Z" + }, + { + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.099300", + "Timestamp": "2024-05-15T14:31:40.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.271300", - "Timestamp": "2019-10-15T09:03:57.000Z" + "InstanceType": "r5b.metal", + "ProductDescription": "Windows", + "SpotPrice": "5.553600", + "Timestamp": "2024-05-15T14:31:33.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.271300", - "Timestamp": "2019-10-15T09:03:57.000Z" + "InstanceType": "i4i.metal", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "1.883000", + "Timestamp": "2024-05-15T14:31:30.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.171300", - "Timestamp": "2019-10-15T09:03:57.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.metal", + "ProductDescription": "SUSE Linux", + "SpotPrice": "1.878000", + "Timestamp": "2024-05-15T14:31:30.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.2xlarge", + "InstanceType": "i4i.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.171300", - "Timestamp": "2019-10-15T09:03:57.000Z" + "SpotPrice": "1.753000", + "Timestamp": "2024-05-15T14:31:30.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m5.2xlarge", + "InstanceType": "m6i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.539300", - "Timestamp": "2019-10-15T09:03:27.000Z" + "SpotPrice": "0.429200", + "Timestamp": "2024-05-15T14:31:25.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m5.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r5b.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.539300", - "Timestamp": "2019-10-15T09:03:27.000Z" + "SpotPrice": "0.231400", + "Timestamp": "2024-05-15T14:17:43.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.small", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r5b.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.028500", - "Timestamp": "2019-10-15T08:54:42.000Z" + "SpotPrice": "0.231400", + "Timestamp": "2024-05-15T14:17:43.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t3.small", + "InstanceType": "m5d.metal", "ProductDescription": "Windows", - "SpotPrice": "0.051900", - "Timestamp": "2019-10-15T08:54:42.000Z" + "SpotPrice": "5.280000", + "Timestamp": "2024-05-15T14:17:25.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.small", + "InstanceType": "m1.large", "ProductDescription": "Windows", - "SpotPrice": "0.028500", - "Timestamp": "2019-10-15T08:54:42.000Z" + "SpotPrice": "0.183800", + "Timestamp": "2024-05-15T14:01:41.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.070100", - "Timestamp": "2019-10-15T08:54:42.000Z" + "InstanceType": "c5n.9xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.954800", + "Timestamp": "2024-05-15T14:01:41.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "t3.small", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.093500", - "Timestamp": "2019-10-15T08:54:42.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6a.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.207600", + "Timestamp": "2024-05-15T14:01:40.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.small", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.12xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.070100", - "Timestamp": "2019-10-15T08:54:42.000Z" + "SpotPrice": "0.994000", + "Timestamp": "2024-05-15T14:01:40.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.small", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3en.12xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.110100", - "Timestamp": "2019-10-15T08:54:42.000Z" + "SpotPrice": "0.989000", + "Timestamp": "2024-05-15T14:01:40.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t3.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.133500", - "Timestamp": "2019-10-15T08:54:42.000Z" + "InstanceType": "i3en.12xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.864000", + "Timestamp": "2024-05-15T14:01:40.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.small", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.110100", - "Timestamp": "2019-10-15T08:54:42.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.433600", + "Timestamp": "2024-05-15T14:01:36.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.010100", - "Timestamp": "2019-10-15T08:54:42.000Z" + "InstanceType": "c6in.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.626300", + "Timestamp": "2024-05-15T14:01:31.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.033500", - "Timestamp": "2019-10-15T08:54:42.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.640000", + "Timestamp": "2024-05-15T14:01:30.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.small", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.010100", - "Timestamp": "2019-10-15T08:54:42.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5d.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.520000", + "Timestamp": "2024-05-15T14:01:28.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "r4.xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.145500", - "Timestamp": "2019-10-15T08:35:55.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5ad.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.604000", + "Timestamp": "2024-05-15T14:01:15.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.16xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.145500", - "Timestamp": "2019-10-15T08:35:55.000Z" + "SpotPrice": "0.734800", + "Timestamp": "2024-05-15T14:00:57.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.16xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.185500", - "Timestamp": "2019-10-15T08:35:55.000Z" + "SpotPrice": "0.729800", + "Timestamp": "2024-05-15T14:00:57.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r4.xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.185500", - "Timestamp": "2019-10-15T08:35:55.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6id.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.604800", + "Timestamp": "2024-05-15T14:00:57.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "r4.xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.085500", - "Timestamp": "2019-10-15T08:35:55.000Z" + "InstanceType": "r5d.12xlarge", + "ProductDescription": "Windows", + "SpotPrice": "2.755200", + "Timestamp": "2024-05-15T14:00:51.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.713700", + "Timestamp": "2024-05-15T13:54:37.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.708700", + "Timestamp": "2024-05-15T13:54:37.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r6gd.16xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.085500", - "Timestamp": "2019-10-15T08:35:55.000Z" + "SpotPrice": "0.583700", + "Timestamp": "2024-05-15T13:54:37.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r4.xlarge", + "InstanceType": "c6in.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.269500", - "Timestamp": "2019-10-15T08:35:55.000Z" + "SpotPrice": "3.501800", + "Timestamp": "2024-05-15T13:48:39.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.092200", + "Timestamp": "2024-05-15T13:47:40.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.088500", + "Timestamp": "2024-05-15T13:47:40.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6g.xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.032200", + "Timestamp": "2024-05-15T13:47:40.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "r4.xlarge", + "InstanceType": "m5d.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.269500", - "Timestamp": "2019-10-15T08:35:55.000Z" + "SpotPrice": "0.220000", + "Timestamp": "2024-05-15T13:46:48.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r4.xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m6i.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.269500", - "Timestamp": "2019-10-15T08:35:55.000Z" + "SpotPrice": "3.433600", + "Timestamp": "2024-05-15T13:46:36.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m4.10xlarge", + "InstanceType": "m6a.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.655800", - "Timestamp": "2019-10-15T08:32:26.000Z" + "SpotPrice": "0.423100", + "Timestamp": "2024-05-15T13:46:31.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m4.10xlarge", + "InstanceType": "m5d.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "2.655800", - "Timestamp": "2019-10-15T08:32:26.000Z" + "SpotPrice": "3.520000", + "Timestamp": "2024-05-15T13:46:28.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.945800", - "Timestamp": "2019-10-15T08:32:26.000Z" + "SpotPrice": "0.528400", + "Timestamp": "2024-05-15T13:46:27.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.945800", - "Timestamp": "2019-10-15T08:32:26.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.498400", + "Timestamp": "2024-05-15T13:46:27.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "i3.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.398400", + "Timestamp": "2024-05-15T13:46:27.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m4.10xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.915800", - "Timestamp": "2019-10-15T08:32:26.000Z" + "InstanceType": "m7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.864500", + "Timestamp": "2024-05-15T13:46:22.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m4.10xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.48xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "2.156100", + "Timestamp": "2024-05-15T13:46:21.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r7i.48xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.915800", - "Timestamp": "2019-10-15T08:32:26.000Z" + "SpotPrice": "2.151100", + "Timestamp": "2024-05-15T13:46:21.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m4.10xlarge", + "InstanceType": "r7i.48xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.815800", - "Timestamp": "2019-10-15T08:32:26.000Z" + "SpotPrice": "2.026100", + "Timestamp": "2024-05-15T13:46:21.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5d.large", + "ProductDescription": "Windows", + "SpotPrice": "0.110000", + "Timestamp": "2024-05-15T13:46:18.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m4.10xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.815800", - "Timestamp": "2019-10-15T08:32:26.000Z" + "InstanceType": "r5n.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.548800", + "Timestamp": "2024-05-15T13:46:11.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "m4.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5d.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.132800", - "Timestamp": "2019-10-15T06:54:42.000Z" + "SpotPrice": "0.918400", + "Timestamp": "2024-05-15T13:43:40.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m4.large", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "r5.xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.132800", - "Timestamp": "2019-10-15T06:54:42.000Z" + "SpotPrice": "0.224200", + "Timestamp": "2024-05-15T13:17:54.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.large", + "ProductDescription": "Windows", + "SpotPrice": "0.112100", + "Timestamp": "2024-05-15T13:17:43.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m4.large", + "InstanceType": "r6i.large", "ProductDescription": "Windows", - "SpotPrice": "0.132800", - "Timestamp": "2019-10-15T06:54:42.000Z" + "SpotPrice": "0.112100", + "Timestamp": "2024-05-15T13:17:43.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m4.large", + "InstanceType": "t4g.micro", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.100800", - "Timestamp": "2019-10-15T06:54:42.000Z" + "SpotPrice": "0.061400", + "Timestamp": "2024-05-15T13:17:15.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m4.large", + "InstanceType": "t4g.micro", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.140800", - "Timestamp": "2019-10-15T06:54:42.000Z" + "SpotPrice": "0.001400", + "Timestamp": "2024-05-15T13:17:15.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "m4.large", + "InstanceType": "t4g.micro", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.040800", - "Timestamp": "2019-10-15T06:54:42.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.265600", - "Timestamp": "2019-10-15T06:42:06.000Z" + "SpotPrice": "0.001400", + "Timestamp": "2024-05-15T13:17:15.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.xlarge", + "InstanceType": "m7i-flex.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.265600", - "Timestamp": "2019-10-15T06:42:06.000Z" + "SpotPrice": "0.821300", + "Timestamp": "2024-05-15T13:17:09.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.18xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.077900", - "Timestamp": "2019-10-15T06:17:19.000Z" + "SpotPrice": "3.783600", + "Timestamp": "2024-05-15T13:16:50.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "r4.4xlarge", + "InstanceType": "m7i-flex.xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.077900", - "Timestamp": "2019-10-15T06:17:19.000Z" + "SpotPrice": "0.205300", + "Timestamp": "2024-05-15T13:16:47.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5zn.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.077900", - "Timestamp": "2019-10-15T06:17:19.000Z" + "SpotPrice": "0.473300", + "Timestamp": "2024-05-15T13:16:42.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.471900", - "Timestamp": "2019-10-15T06:17:19.000Z" + "InstanceType": "t3a.large", + "ProductDescription": "Windows", + "SpotPrice": "0.039700", + "Timestamp": "2024-05-15T13:16:39.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7g.medium", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.471900", - "Timestamp": "2019-10-15T06:17:19.000Z" + "SpotPrice": "0.066500", + "Timestamp": "2024-05-15T13:16:30.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.471900", - "Timestamp": "2019-10-15T06:17:19.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m7g.medium", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.062800", + "Timestamp": "2024-05-15T13:16:30.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r4.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.441900", - "Timestamp": "2019-10-15T06:17:19.000Z" + "InstanceType": "m7g.medium", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.006500", + "Timestamp": "2024-05-15T13:16:30.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.441900", - "Timestamp": "2019-10-15T06:17:19.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "inf1.6xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.325000", + "Timestamp": "2024-05-15T13:16:12.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "r4.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "inf1.6xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.441900", - "Timestamp": "2019-10-15T06:17:19.000Z" + "SpotPrice": "0.320000", + "Timestamp": "2024-05-15T13:16:12.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "r4.4xlarge", + "InstanceType": "inf1.6xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.341900", - "Timestamp": "2019-10-15T06:17:19.000Z" + "SpotPrice": "0.195000", + "Timestamp": "2024-05-15T13:16:12.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.341900", - "Timestamp": "2019-10-15T06:17:19.000Z" + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c5d.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.855200", + "Timestamp": "2024-05-15T13:02:28.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "r4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.341900", - "Timestamp": "2019-10-15T06:17:19.000Z" + "InstanceType": "c7i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.076200", + "Timestamp": "2024-05-15T13:01:51.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.285400", - "Timestamp": "2019-10-15T05:36:39.000Z" + "InstanceType": "r5b.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.702400", + "Timestamp": "2024-05-15T13:01:40.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c4.2xlarge", + "InstanceType": "i4i.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.285400", - "Timestamp": "2019-10-15T05:36:39.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c4.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.255400", - "Timestamp": "2019-10-15T05:36:39.000Z" + "SpotPrice": "0.239600", + "Timestamp": "2024-05-15T13:01:38.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c4.2xlarge", + "InstanceType": "i4i.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.255400", - "Timestamp": "2019-10-15T05:36:39.000Z" + "SpotPrice": "0.234600", + "Timestamp": "2024-05-15T13:01:38.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "i4i.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.155400", - "Timestamp": "2019-10-15T05:36:39.000Z" + "SpotPrice": "0.109600", + "Timestamp": "2024-05-15T13:01:38.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c4.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.155400", - "Timestamp": "2019-10-15T05:36:39.000Z" + "InstanceType": "g4dn.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.683700", + "Timestamp": "2024-05-15T13:01:33.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c4.2xlarge", + "InstanceType": "m4.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.523400", - "Timestamp": "2019-10-15T05:36:39.000Z" + "SpotPrice": "3.452800", + "Timestamp": "2024-05-15T13:01:31.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c4.2xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "c6i.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.523400", - "Timestamp": "2019-10-15T05:36:39.000Z" - }, - { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.456300", - "Timestamp": "2019-10-15T05:30:23.000Z" - }, - { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m4.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.426300", - "Timestamp": "2019-10-15T05:30:23.000Z" - }, - { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m4.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.326300", - "Timestamp": "2019-10-15T05:30:23.000Z" + "SpotPrice": "2.522400", + "Timestamp": "2024-05-15T13:01:31.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "m4.4xlarge", + "InstanceType": "m6id.large", "ProductDescription": "Windows", - "SpotPrice": "1.062300", - "Timestamp": "2019-10-15T05:29:56.000Z" + "SpotPrice": "0.110900", + "Timestamp": "2024-05-15T12:58:41.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "m5.16xlarge", "ProductDescription": "Windows", - "SpotPrice": "1.062300", - "Timestamp": "2019-10-15T05:29:56.000Z" + "SpotPrice": "3.433600", + "Timestamp": "2024-05-15T12:48:31.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "m4.4xlarge", + "AvailabilityZone": "sa-east-1c", + "InstanceType": "t3.small", "ProductDescription": "Windows", - "SpotPrice": "1.062300", - "Timestamp": "2019-10-15T05:29:56.000Z" + "SpotPrice": "0.021800", + "Timestamp": "2024-05-15T12:48:15.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.18xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "t3.small", "ProductDescription": "Windows", - "SpotPrice": "4.780500", - "Timestamp": "2019-10-15T04:19:18.000Z" + "SpotPrice": "0.021800", + "Timestamp": "2024-05-15T12:48:15.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.18xlarge", + "InstanceType": "r5n.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "4.780500", - "Timestamp": "2019-10-15T04:19:18.000Z" + "SpotPrice": "0.462400", + "Timestamp": "2024-05-15T12:47:24.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.598500", - "Timestamp": "2019-10-15T04:19:18.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.18xlarge", + "InstanceType": "c5d.metal", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "1.598500", - "Timestamp": "2019-10-15T04:19:18.000Z" + "SpotPrice": "0.845200", + "Timestamp": "2024-05-15T12:34:41.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.18xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "1.568500", - "Timestamp": "2019-10-15T04:19:18.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.18xlarge", + "InstanceType": "c5d.metal", "ProductDescription": "SUSE Linux", - "SpotPrice": "1.568500", - "Timestamp": "2019-10-15T04:19:18.000Z" + "SpotPrice": "0.815200", + "Timestamp": "2024-05-15T12:34:41.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c5.18xlarge", + "InstanceType": "c5d.metal", "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.468500", - "Timestamp": "2019-10-15T04:19:18.000Z" + "SpotPrice": "0.715200", + "Timestamp": "2024-05-15T12:34:41.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c5.18xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "1.468500", - "Timestamp": "2019-10-15T04:19:18.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.922700", + "Timestamp": "2024-05-15T12:31:47.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.960000", - "Timestamp": "2019-10-15T01:43:26.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.917700", + "Timestamp": "2024-05-15T12:31:47.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "c3.4xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "x2iedn.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.792700", + "Timestamp": "2024-05-15T12:31:47.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "r7i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.960000", - "Timestamp": "2019-10-15T01:43:26.000Z" + "SpotPrice": "0.452400", + "Timestamp": "2024-05-15T12:31:35.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.426000", - "Timestamp": "2019-10-15T01:43:03.000Z" + "InstanceType": "r6i.24xlarge", + "ProductDescription": "Windows", + "SpotPrice": "5.380800", + "Timestamp": "2024-05-15T12:31:31.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c3.4xlarge", + "InstanceType": "r6i.32xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.426000", - "Timestamp": "2019-10-15T01:43:03.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c3.4xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.396000", - "Timestamp": "2019-10-15T01:43:03.000Z" + "SpotPrice": "1.416400", + "Timestamp": "2024-05-15T12:31:30.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c3.4xlarge", + "InstanceType": "r6i.32xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.396000", - "Timestamp": "2019-10-15T01:43:03.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "c3.4xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.296000", - "Timestamp": "2019-10-15T01:43:03.000Z" + "SpotPrice": "1.411400", + "Timestamp": "2024-05-15T12:31:30.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "c3.4xlarge", + "InstanceType": "r6i.32xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.296000", - "Timestamp": "2019-10-15T01:43:03.000Z" + "SpotPrice": "1.286400", + "Timestamp": "2024-05-15T12:31:30.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t2.medium", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.040300", - "Timestamp": "2019-10-15T01:29:45.000Z" + "SpotPrice": "1.692300", + "Timestamp": "2024-05-15T12:31:29.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t2.medium", + "InstanceType": "c6i.2xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.040300", - "Timestamp": "2019-10-15T01:29:45.000Z" + "SpotPrice": "0.420400", + "Timestamp": "2024-05-15T12:01:56.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t2.medium", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m5a.8xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.040300", - "Timestamp": "2019-10-15T01:29:45.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.082300", - "Timestamp": "2019-10-15T01:29:29.000Z" + "SpotPrice": "1.692800", + "Timestamp": "2024-05-15T12:01:42.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t2.medium", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.082300", - "Timestamp": "2019-10-15T01:29:29.000Z" + "InstanceType": "c7i.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.846000", + "Timestamp": "2024-05-15T12:01:41.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t2.medium", + "InstanceType": "m2.2xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.082300", - "Timestamp": "2019-10-15T01:29:29.000Z" + "SpotPrice": "0.197400", + "Timestamp": "2024-05-15T12:01:37.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t2.medium", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m2.2xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.122300", - "Timestamp": "2019-10-15T01:29:29.000Z" + "SpotPrice": "0.237400", + "Timestamp": "2024-05-15T12:01:37.000Z" }, { - "AvailabilityZone": "sa-east-1b", - "InstanceType": "t2.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.122300", - "Timestamp": "2019-10-15T01:29:29.000Z" + "AvailabilityZone": "sa-east-1a", + "InstanceType": "m2.2xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.137400", + "Timestamp": "2024-05-15T12:01:37.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t2.medium", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.122300", - "Timestamp": "2019-10-15T01:29:29.000Z" + "InstanceType": "i4i.xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.238800", + "Timestamp": "2024-05-15T12:01:33.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t2.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.022300", - "Timestamp": "2019-10-15T01:29:29.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.198000", + "Timestamp": "2024-05-15T12:01:32.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t2.medium", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.022300", - "Timestamp": "2019-10-15T01:29:29.000Z" + "InstanceType": "m7gd.2xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.193000", + "Timestamp": "2024-05-15T12:01:32.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t2.medium", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m7gd.2xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.022300", - "Timestamp": "2019-10-15T01:29:29.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "7.933000", - "Timestamp": "2019-10-15T00:43:06.000Z" + "SpotPrice": "0.068000", + "Timestamp": "2024-05-15T12:01:32.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "x1.32xlarge", + "InstanceType": "c7i-flex.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "7.933000", - "Timestamp": "2019-10-15T00:43:06.000Z" + "SpotPrice": "0.339100", + "Timestamp": "2024-05-15T12:01:23.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "sa-east-1a", + "InstanceType": "c7i-flex.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "7.903000", - "Timestamp": "2019-10-15T00:43:06.000Z" + "SpotPrice": "0.309100", + "Timestamp": "2024-05-15T12:01:23.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "x1.32xlarge", + "InstanceType": "c7i-flex.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.209100", + "Timestamp": "2024-05-15T12:01:23.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.176500", + "Timestamp": "2024-05-15T12:01:23.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "7.903000", - "Timestamp": "2019-10-15T00:43:06.000Z" + "SpotPrice": "0.172800", + "Timestamp": "2024-05-15T12:01:23.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "7.803000", - "Timestamp": "2019-10-15T00:43:06.000Z" + "SpotPrice": "0.116500", + "Timestamp": "2024-05-15T12:01:23.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "x1.32xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "7.803000", - "Timestamp": "2019-10-15T00:43:06.000Z" + "InstanceType": "c5a.8xlarge", + "ProductDescription": "Windows", + "SpotPrice": "1.661000", + "Timestamp": "2024-05-15T12:01:18.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "x1.16xlarge", + "InstanceType": "r5n.xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.845500", - "Timestamp": "2019-10-15T00:42:55.000Z" + "SpotPrice": "0.231200", + "Timestamp": "2024-05-15T11:59:19.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "x1.16xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "g5.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "6.845500", - "Timestamp": "2019-10-15T00:42:55.000Z" + "SpotPrice": "3.172100", + "Timestamp": "2024-05-15T11:57:55.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "x1.32xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3a.large", "ProductDescription": "Windows", - "SpotPrice": "13.691000", - "Timestamp": "2019-10-15T00:42:33.000Z" + "SpotPrice": "0.039700", + "Timestamp": "2024-05-15T11:47:39.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "x1.32xlarge", + "InstanceType": "r3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.127000", + "Timestamp": "2024-05-15T11:47:17.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "m6a.12xlarge", "ProductDescription": "Windows", - "SpotPrice": "13.691000", - "Timestamp": "2019-10-15T00:42:33.000Z" + "SpotPrice": "2.538500", + "Timestamp": "2024-05-15T11:46:53.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.031500", - "Timestamp": "2019-10-15T00:42:30.000Z" + "InstanceType": "i4i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.820500", + "Timestamp": "2024-05-15T11:46:34.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "x1.16xlarge", + "InstanceType": "r4.4xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "4.031500", - "Timestamp": "2019-10-15T00:42:30.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "4.001500", - "Timestamp": "2019-10-15T00:42:30.000Z" + "SpotPrice": "0.354000", + "Timestamp": "2024-05-15T11:46:33.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "x1.16xlarge", + "InstanceType": "r4.4xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "4.001500", - "Timestamp": "2019-10-15T00:42:30.000Z" - }, - { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "x1.16xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.901500", - "Timestamp": "2019-10-15T00:42:30.000Z" + "SpotPrice": "0.324000", + "Timestamp": "2024-05-15T11:46:33.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "x1.16xlarge", + "InstanceType": "r4.4xlarge", "ProductDescription": "Linux/UNIX", - "SpotPrice": "3.901500", - "Timestamp": "2019-10-15T00:42:30.000Z" + "SpotPrice": "0.224000", + "Timestamp": "2024-05-15T11:46:33.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.2xlarge", + "InstanceType": "r3.4xlarge", "ProductDescription": "Windows", - "SpotPrice": "0.307900", - "Timestamp": "2019-10-15T00:31:27.000Z" + "SpotPrice": "0.874900", + "Timestamp": "2024-05-15T11:46:32.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.682800", - "Timestamp": "2019-10-15T00:31:27.000Z" - }, - { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Windows", - "SpotPrice": "0.307900", - "Timestamp": "2019-10-15T00:31:27.000Z" + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.510800", + "Timestamp": "2024-05-15T11:32:40.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.290700", - "Timestamp": "2019-10-15T00:31:27.000Z" + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.505800", + "Timestamp": "2024-05-15T11:32:40.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.665600", - "Timestamp": "2019-10-15T00:31:27.000Z" + "InstanceType": "c6gd.16xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.380800", + "Timestamp": "2024-05-15T11:32:40.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.8xlarge", "ProductDescription": "Red Hat Enterprise Linux", - "SpotPrice": "0.290700", - "Timestamp": "2019-10-15T00:31:27.000Z" + "SpotPrice": "0.320400", + "Timestamp": "2024-05-15T11:31:31.000Z" }, { - "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c6gd.8xlarge", "ProductDescription": "SUSE Linux", - "SpotPrice": "0.260700", - "Timestamp": "2019-10-15T00:31:27.000Z" + "SpotPrice": "0.315400", + "Timestamp": "2024-05-15T11:31:31.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.635600", - "Timestamp": "2019-10-15T00:31:27.000Z" + "InstanceType": "c6gd.8xlarge", + "ProductDescription": "Linux/UNIX", + "SpotPrice": "0.190400", + "Timestamp": "2024-05-15T11:31:31.000Z" + }, + { + "AvailabilityZone": "sa-east-1c", + "InstanceType": "r6i.32xlarge", + "ProductDescription": "Windows", + "SpotPrice": "7.174400", + "Timestamp": "2024-05-15T11:31:27.000Z" }, { "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.2xlarge", - "ProductDescription": "SUSE Linux", - "SpotPrice": "0.260700", - "Timestamp": "2019-10-15T00:31:27.000Z" + "InstanceType": "c4.4xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.859500", + "Timestamp": "2024-05-15T11:31:24.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "c5.2xlarge", + "ProductDescription": "Windows", + "SpotPrice": "0.420400", + "Timestamp": "2024-05-15T11:16:43.000Z" }, { "AvailabilityZone": "sa-east-1c", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.160700", - "Timestamp": "2019-10-15T00:31:27.000Z" + "InstanceType": "m7i.16xlarge", + "ProductDescription": "Windows", + "SpotPrice": "3.458100", + "Timestamp": "2024-05-15T11:16:38.000Z" }, { "AvailabilityZone": "sa-east-1b", - "InstanceType": "t3.2xlarge", - "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.535600", - "Timestamp": "2019-10-15T00:31:27.000Z" + "InstanceType": "t3.large", + "ProductDescription": "Windows", + "SpotPrice": "0.054400", + "Timestamp": "2024-04-20T10:01:23.000Z" }, { - "AvailabilityZone": "sa-east-1a", - "InstanceType": "t3.2xlarge", + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3.large", + "ProductDescription": "Red Hat Enterprise Linux", + "SpotPrice": "0.126100", + "Timestamp": "2024-03-31T05:12:10.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3.large", + "ProductDescription": "SUSE Linux", + "SpotPrice": "0.122400", + "Timestamp": "2024-03-31T05:12:10.000Z" + }, + { + "AvailabilityZone": "sa-east-1b", + "InstanceType": "t3.large", "ProductDescription": "Linux/UNIX", - "SpotPrice": "0.160700", - "Timestamp": "2019-10-15T00:31:27.000Z" + "SpotPrice": "0.066100", + "Timestamp": "2024-03-31T05:12:10.000Z" } -] +] \ No newline at end of file